LDA is used to classify text in a document to a particular topic. It builds a topic per document model and words per topic model, modeled as Dirichlet distributions.
The dataset we'll use is a list of over one million news headlines published over a period of 15 years. We'll start by loading it from the abcnews-date-text.csv file.
import boto3
import pandas as pd
from sagemaker import get_execution_role
role = get_execution_role()
bucket='demo-tensorflow'
data_key = 'abcnews-date-text.csv'
data_location = 's3://{}/{}'.format(bucket, data_key)
No handlers could be found for logger "sagemaker"
'''
Load the dataset from the CSV and save it to 'data_text'
'''
import pandas as pd
# data = pd.read_csv('abcnews-date-text.csv', error_bad_lines=False);
data = pd.read_csv(data_location);
# We only need the Headlines text column from the data
data_text = data[:300000][['headline_text']];
data_text['index'] = data_text.index
documents = data_text
data['headline_text'][9]
'australia is locked into war timetable opp'
Let's glance at the dataset:
data['headline_text'][4]
'air nz strike to affect australian travellers'
'''
Get the total number of documents
'''
print(len(documents))
300000
documents[:5]
| headline_text | index | |
|---|---|---|
| 0 | aba decides against community broadcasting lic... | 0 |
| 1 | act fire witnesses must be aware of defamation | 1 |
| 2 | a g calls for infrastructure protection summit | 2 |
| 3 | air nz staff in aust strike for pay rise | 3 |
| 4 | air nz strike to affect australian travellers | 4 |
We will perform the following steps:
!pip install gensim
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support Collecting gensim Downloading https://files.pythonhosted.org/packages/c9/51/ad37b316482ac55357471ab5ae22bb4ca0cd018ee400cdfda5afebf6994f/gensim-3.8.3-cp27-cp27mu-manylinux1_x86_64.whl (24.2MB) |████████████████████████████████| 24.2MB 14.2MB/s eta 0:00:01 Requirement already satisfied: six>=1.5.0 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from gensim) (1.12.0) Requirement already satisfied: scipy<=1.2.3 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from gensim) (1.2.1) Collecting smart-open<1.11,>=1.8.1 (from gensim) Downloading https://files.pythonhosted.org/packages/62/56/f7ce76c281a8a0dd8a8f5fcfeadcde1b817f80bc85ad903f1264dbdf38ad/smart_open-1.10.1.tar.gz (92kB) |████████████████████████████████| 102kB 37.6MB/s ta 0:00:01 Collecting numpy<=1.16.1 (from gensim) Downloading https://files.pythonhosted.org/packages/e0/b5/63b79fe426433fa1cd110eb04a94ec0c6967e56e5f57c98caf455a5fb6e2/numpy-1.16.1-cp27-cp27mu-manylinux1_x86_64.whl (17.0MB) |████████████████████████████████| 17.0MB 55.6MB/s eta 0:00:01 Requirement already satisfied: requests in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from smart-open<1.11,>=1.8.1->gensim) (2.22.0) Requirement already satisfied: boto3 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from smart-open<1.11,>=1.8.1->gensim) (1.15.16) Collecting bz2file (from smart-open<1.11,>=1.8.1->gensim) Downloading https://files.pythonhosted.org/packages/61/39/122222b5e85cd41c391b68a99ee296584b2a2d1d233e7ee32b4532384f2d/bz2file-0.98.tar.gz Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (3.0.4) Requirement already satisfied: idna<2.9,>=2.5 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (2.8) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (1.25.10) Requirement already satisfied: certifi>=2017.4.17 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (2019.11.28) Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from boto3->smart-open<1.11,>=1.8.1->gensim) (0.10.0) Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from boto3->smart-open<1.11,>=1.8.1->gensim) (0.3.0) Requirement already satisfied: botocore<1.19.0,>=1.18.16 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from boto3->smart-open<1.11,>=1.8.1->gensim) (1.18.16) Requirement already satisfied: futures<4.0.0,>=2.2.0; python_version == "2.7" in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from s3transfer<0.4.0,>=0.3.0->boto3->smart-open<1.11,>=1.8.1->gensim) (3.3.0) Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from botocore<1.19.0,>=1.18.16->boto3->smart-open<1.11,>=1.8.1->gensim) (2.8.0) Building wheels for collected packages: smart-open, bz2file Building wheel for smart-open (setup.py) ... done Created wheel for smart-open: filename=smart_open-1.10.1-cp27-none-any.whl size=76880 sha256=6357e7bb5dbae44d16f52d09c8634be84fb2f28d29448dc501045ad75796961d Stored in directory: /home/ec2-user/.cache/pip/wheels/b3/fb/d8/81d8a571570e2ae612a1771d5ce8dc51972f1ce60d0e1ddc4b Building wheel for bz2file (setup.py) ... done Created wheel for bz2file: filename=bz2file-0.98-cp27-none-any.whl size=6884 sha256=1b08f5d6b3d2f267b3eba433e9f251b944c3731e9bdc356efd227ec7481a0357 Stored in directory: /home/ec2-user/.cache/pip/wheels/81/75/d6/e1317bf09bf1af5a30befc2a007869fa6e1f516b8f7c591cb9 Successfully built smart-open bz2file Installing collected packages: bz2file, smart-open, numpy, gensim Found existing installation: numpy 1.16.5 Uninstalling numpy-1.16.5: Successfully uninstalled numpy-1.16.5 Successfully installed bz2file-0.98 gensim-3.8.3 numpy-1.16.1 smart-open-1.10.1 WARNING: You are using pip version 19.2.3, however version 20.2.4 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
'''
Loading Gensim and nltk libraries
'''
# pip install gensim
import gensim
from gensim.utils import simple_preprocess
from gensim.parsing.preprocessing import STOPWORDS
from nltk.stem import WordNetLemmatizer, SnowballStemmer
from nltk.stem.porter import *
import numpy as np
np.random.seed(400)
import nltk
nltk.download('wordnet')
[nltk_data] Downloading package wordnet to /home/ec2-user/nltk_data... [nltk_data] Unzipping corpora/wordnet.zip.
True
Before preprocessing our dataset, let's first look at an lemmatizing example. What would be the output if we lemmatized the word 'went':
print(WordNetLemmatizer().lemmatize('went', pos = 'v')) # past tense to present tense
go
Let's also look at a stemming example. Let's throw a number of words at the stemmer and see how it deals with each one:
stemmer = SnowballStemmer("english")
original_words = ['caresses', 'flies', 'dies', 'mules', 'denied','died', 'agreed', 'owned',
'humbled', 'sized','meeting', 'stating', 'siezing', 'itemization','sensational',
'traditional', 'reference', 'colonizer','plotted']
singles = [stemmer.stem(plural) for plural in original_words]
pd.DataFrame(data={'original word':original_words, 'stemmed':singles })
| original word | stemmed | |
|---|---|---|
| 0 | caresses | caress |
| 1 | flies | fli |
| 2 | dies | die |
| 3 | mules | mule |
| 4 | denied | deni |
| 5 | died | die |
| 6 | agreed | agre |
| 7 | owned | own |
| 8 | humbled | humbl |
| 9 | sized | size |
| 10 | meeting | meet |
| 11 | stating | state |
| 12 | siezing | siez |
| 13 | itemization | item |
| 14 | sensational | sensat |
| 15 | traditional | tradit |
| 16 | reference | refer |
| 17 | colonizer | colon |
| 18 | plotted | plot |
# Lemmatize verbs by specifying pos
lemmed = [WordNetLemmatizer().lemmatize(w, pos='v') for w in original_words]
pd.DataFrame({'original word':original_words, 'lem':lemmed })
# print(lemmed)
| lem | original word | |
|---|---|---|
| 0 | caress | caresses |
| 1 | fly | flies |
| 2 | die | dies |
| 3 | mules | mules |
| 4 | deny | denied |
| 5 | die | died |
| 6 | agree | agreed |
| 7 | own | owned |
| 8 | humble | humbled |
| 9 | size | sized |
| 10 | meet | meeting |
| 11 | state | stating |
| 12 | siezing | siezing |
| 13 | itemization | itemization |
| 14 | sensational | sensational |
| 15 | traditional | traditional |
| 16 | reference | reference |
| 17 | colonizer | colonizer |
| 18 | plot | plotted |
'''
Write a function to perform the pre processing steps on the entire dataset
'''
def lemmatize_stemming(text):
return stemmer.stem(WordNetLemmatizer().lemmatize(text, pos='v'))
# return WordNetLemmatizer().lemmatize(stemmer.stem(text))
# Tokenize and lemmatize
def preprocess(text):
result=[]
for token in gensim.utils.simple_preprocess(text) :
if token not in gensim.parsing.preprocessing.STOPWORDS and len(token) > 3:
result.append(lemmatize_stemming(token))
print(result)
return result
print(len(documents))
300000
'''
Preview a document after preprocessing
'''
document_num = 0
doc_sample = documents[documents['index'] == document_num].values[0][0]
print("document 0 is : " , documents['headline_text'][0])
print(doc_sample[4])
print("Original document: ")
words = []
for word in doc_sample.split(' '):
words.append(word)
print(words)
print("\n\nTokenized and lemmatized document: ")
print(preprocess(doc_sample))
('document 0 is : ', 'aba decides against community broadcasting licence')
d
Original document:
['aba', 'decides', 'against', 'community', 'broadcasting', 'licence']
Tokenized and lemmatized document:
[u'decid', u'communiti', u'broadcast', u'licenc']
[u'decid', u'communiti', u'broadcast', u'licenc']
documents
| headline_text | index | |
|---|---|---|
| 0 | aba decides against community broadcasting lic... | 0 |
| 1 | act fire witnesses must be aware of defamation | 1 |
| 2 | a g calls for infrastructure protection summit | 2 |
| 3 | air nz staff in aust strike for pay rise | 3 |
| 4 | air nz strike to affect australian travellers | 4 |
| 5 | ambitious olsson wins triple jump | 5 |
| 6 | antic delighted with record breaking barca | 6 |
| 7 | aussie qualifier stosur wastes four memphis match | 7 |
| 8 | aust addresses un security council over iraq | 8 |
| 9 | australia is locked into war timetable opp | 9 |
| 10 | australia to contribute 10 million in aid to iraq | 10 |
| 11 | barca take record as robson celebrates birthda... | 11 |
| 12 | bathhouse plans move ahead | 12 |
| 13 | big hopes for launceston cycling championship | 13 |
| 14 | big plan to boost paroo water supplies | 14 |
| 15 | blizzard buries united states in bills | 15 |
| 16 | brigadier dismisses reports troops harassed in | 16 |
| 17 | british combat troops arriving daily in kuwait | 17 |
| 18 | bryant leads lakers to double overtime win | 18 |
| 19 | bushfire victims urged to see centrelink | 19 |
| 20 | businesses should prepare for terrorist attacks | 20 |
| 21 | calleri avenges final defeat to eliminate massu | 21 |
| 22 | call for ethanol blend fuel to go ahead | 22 |
| 23 | carews freak goal leaves roma in ruins | 23 |
| 24 | cemeteries miss out on funds | 24 |
| 25 | code of conduct toughens organ donation regula... | 25 |
| 26 | commonwealth bank cuts fixed home loan rates | 26 |
| 27 | community urged to help homeless youth | 27 |
| 28 | council chief executive fails to secure position | 28 |
| 29 | councillor to contest wollongong as independent | 29 |
| ... | ... | ... |
| 299970 | bore water over use could lead to prosecutions | 299970 |
| 299971 | bottleshop owner backs call for long neck beer... | 299971 |
| 299972 | bracks defends former minister over mokbel deal | 299972 |
| 299973 | bracks rejects one size fits all curriculum ch... | 299973 |
| 299974 | broken hill saves summer water | 299974 |
| 299975 | broughton hall audit reveals serious breaches | 299975 |
| 299976 | broughton hall fails key standards | 299976 |
| 299977 | broughton hall safe for residents govt says | 299977 |
| 299978 | burn off at conservation park aims to prevent | 299978 |
| 299979 | burns suspended for two games | 299979 |
| 299980 | business chamber backs industry water conserva... | 299980 |
| 299981 | cahill targets comeback at asian cup | 299981 |
| 299982 | call for new alice springs land release | 299982 |
| 299983 | call to recognise early settlement indigenous | 299983 |
| 299984 | canadian minister under fire amid afghan torture | 299984 |
| 299985 | cattle truck crashes near northam | 299985 |
| 299986 | charged afl players accept sanctions | 299986 |
| 299987 | charter boat operators urged to pay levy for j... | 299987 |
| 299988 | children reflect on anzac sacrifice at war mem... | 299988 |
| 299989 | chinese authorities detain environmental activist | 299989 |
| 299990 | chipman supports alp candidate | 299990 |
| 299991 | climate debate heats up | 299991 |
| 299992 | closer pm1 news | 299992 |
| 299993 | cohen wants public to have water management power | 299993 |
| 299994 | community technology centre at lightning ridge to | 299994 |
| 299995 | commuters evacuated from circular quay train | 299995 |
| 299996 | companies invest billions in png gas industry | 299996 |
| 299997 | company looks to expand basalt quarry | 299997 |
| 299998 | cooloola mayor flags support for super council | 299998 |
| 299999 | cosgrove relieved vcs staying in aust | 299999 |
300000 rows × 2 columns
Let's now preprocess all the news headlines we have. To do that, let's use the map function from pandas to apply preprocess() to the headline_text column
Note: This may take a few minutes (it take 6 minutes on my laptop)
# TODO: preprocess all the headlines, saving the list of results as 'processed_docs'
processed_docs = documents['headline_text'].map(preprocess)
[u'decid', u'communiti', u'broadcast', u'licenc'] [u'wit', u'awar', u'defam'] [u'call', u'infrastructur', u'protect', u'summit'] [u'staff', u'aust', u'strike', u'rise'] [u'strike', u'affect', u'australian', u'travel'] [u'ambiti', u'olsson', u'win', u'tripl', u'jump'] [u'antic', u'delight', u'record', u'break', u'barca'] [u'aussi', u'qualifi', u'stosur', u'wast', u'memphi', u'match'] [u'aust', u'address', u'secur', u'council', u'iraq'] [u'australia', u'lock', u'timet'] [u'australia', u'contribut', u'million', u'iraq'] [u'barca', u'record', u'robson', u'celebr', u'birthday'] [u'bathhous', u'plan', u'ahead'] [u'hop', u'launceston', u'cycl', u'championship'] [u'plan', u'boost', u'paroo', u'water', u'suppli'] [u'blizzard', u'buri', u'unit', u'state', u'bill'] [u'brigadi', u'dismiss', u'report', u'troop', u'harass'] [u'british', u'combat', u'troop', u'arriv', u'daili', u'kuwait'] [u'bryant', u'lead', u'laker', u'doubl', u'overtim'] [u'bushfir', u'victim', u'urg', u'centrelink'] [u'busi', u'prepar', u'terrorist', u'attack'] [u'calleri', u'aveng', u'final', u'defeat', u'elimin', u'massu'] [u'ethanol', u'blend', u'fuel', u'ahead'] [u'carew', u'freak', u'goal', u'leav', u'roma', u'ruin'] [u'cemeteri', u'miss', u'fund'] [u'code', u'conduct', u'toughen', u'organ', u'donat', u'regul'] [u'commonwealth', u'bank', u'cut', u'fix', u'home', u'loan', u'rat'] [u'communiti', u'urg', u'help', u'homeless', u'youth'] [u'council', u'chief', u'execut', u'fail', u'secur', u'posit'] [u'councillor', u'contest', u'wollongong', u'independ'] [u'council', u'move', u'protect', u'heritag', u'garden'] [u'council', u'welcom', u'ambul', u'levi', u'decis'] [u'council', u'welcom', u'insur', u'breakthrough'] [u'crean', u'tell', u'leadership', u'critic', u'shut'] [u'dargo', u'threat', u'expect', u'rise'] [u'death', u'toll', u'continu', u'climb', u'south', u'korean', u'subway'] [u'dem', u'hold', u'plebiscit', u'iraqi', u'conflict'] [u'dent', u'down', u'philippoussi', u'break', u'thriller'] [u'villier', u'learn', u'fate', u'march'] [u'digit', u'commonplac', u'summit'] [u'direct', u'anger', u'govt', u'soldier', u'crean', u'urg'] [u'disput', u'smithton', u'veget', u'process', u'plant'] [u'maul', u'month', u'toddler'] [u'die', u'korean', u'subway', u'passeng', u'phone', u'help'] [u'england', u'chang', u'wale', u'match'] [u'tri', u'recov', u'chemic', u'clean', u'cost'] [u'express', u'seek', u'build', u'livestock'] [u'introduc', u'nation', u'insur'] [u'firefight', u'contain', u'acid', u'spill'] [u'injur', u'head', u'highway', u'crash'] [u'freedom', u'record', u'profit', u'success'] [u'fund', u'alloc', u'domest', u'violenc', u'victim'] [u'fund', u'alloc', u'youth', u'risk'] [u'fund', u'announc', u'bridg', u'work'] [u'fund', u'cadel', u'upgrad'] [u'fund', u'help', u'restor', u'cossack'] [u'german', u'court', u'verdict', u'sept', u'accus'] [u'gilchrist', u'back', u'rest', u'polici'] [u'girl', u'injur', u'head', u'highway', u'crash'] [u'gold', u'coast', u'hear', u'bilbi', u'project'] [u'golf', u'club', u'feel', u'smoke', u'impact'] [u'govt', u'blame', u'ethanol', u'unpopular'] [u'green', u'offer', u'polic', u'station', u'altern'] [u'griffith', u'project', u'knock'] [u'group', u'meet', u'north', u'west', u'rock'] [u'hacker', u'gain', u'access', u'million', u'credit', u'card'] [u'hanson', u'grossli', u'naiv', u'issu', u'costa'] [u'hanson', u'come'] [u'harrington', u'rare', u'break'] [u'health', u'minist', u'back', u'organ', u'tissu', u'storag'] [u'heavi', u'metal', u'deposit', u'survey', u'near'] [u'injur', u'rio', u'pull', u'bueno', u'air', u'open'] [u'inquest', u'find', u'man', u'death', u'accident'] [u'investig', u'underway', u'death', u'toll', u'korean'] [u'investig', u'underway', u'elster', u'creek', u'spill'] [u'iraq', u'neighbour', u'plead', u'continu', u'inspect'] [u'iraq', u'rebuild', u'white', u'hous'] [u'irish', u'arrest', u'omagh', u'bomb'] [u'irrig', u'vote', u'river', u'manag'] [u'isra', u'forc', u'push', u'gaza', u'strip'] [u'juri', u'consid', u'verdict', u'murder', u'case'] [u'juvenil', u'offend', u'unlik', u'reoffend'] [u'kelli', u'disgust', u'alleg', u'ethanol', u'scare'] [u'kelli', u'surpris', u'ethanol', u'confid'] [u'korean', u'subway', u'miss'] [u'minut', u'hand', u'alinghi', u'lead'] [u'demand', u'forc', u'servic', u'cut'] [u'arrest', u'central', u'hijack', u'attempt'] [u'charg', u'cooma', u'murder'] [u'fin', u'aborigin', u'tent', u'embassi', u'raid'] [u'jail', u'keno', u'fraud'] [u'knife', u'hijack', u'light', u'plane'] [u'martin', u'lobbi', u'lose', u'seat'] [u'massiv', u'drug', u'crop', u'discov', u'western'] [u'mayor', u'warn', u'landfil', u'protest'] [u'meet', u'consid', u'tick', u'clearanc', u'cost'] [u'meet', u'focus', u'break', u'hill', u'water', u'woe'] [u'moder', u'lift', u'wag', u'growth'] [u'young', u'drink', u'alcohol'] [u'water', u'restrict', u'predict', u'northern'] [u'women', u'urg', u'councillor'] [u'high', u'educ', u'live'] [u'rais', u'hospit', u'concern', u'parliament'] [u'reject', u'ambul', u'levi', u'claim'] [u'mugab', u'touch', u'pari', u'summit'] [u'nation', u'galleri', u'get', u'clear'] [u'nato', u'give', u'green', u'light', u'defend', u'turkey'] [u'defend', u'aborigin', u'tent', u'embassi', u'raid'] [u'zealand', u'impos', u'visa', u'entri', u'zimbabw'] [u'effect', u'whoop', u'cough', u'vaccin'] [u'govt', u'hold', u'veget'] [u'defend', u'claim', u'run', u'race', u'campaign'] [u'pledg', u'drought', u'relief'] [u'govt', u'boost', u'nurs', u'number', u'oversea', u'intak'] [u'korean', u'seek', u'asylum', u'japanes', u'embassi'] [u'nurs', u'student', u'intak'] [u'brother', u'time', u'say', u'ganguli', u'senior'] [u'omodei', u'stay', u'polit'] [u'onesteel', u'invest', u'whyalla', u'steelwork'] [u'opposit', u'urg', u'help', u'protect', u'recherch'] [u'orient', u'begin', u'student'] [u'osullivan', u'world', u'cross', u'countri', u'doubt'] [u'pagan', u'say', u'rule', u'chang', u'necessari'] [u'pair', u'face', u'court', u'murder'] [u'patterson', u'defend', u'decis', u'attend', u'health'] [u'patterson', u'display', u'govt', u'arrog', u'crean'] [u'patterson', u'snub', u'health', u'meet', u'avoid', u'lion'] [u'peac', u'agreement', u'bring', u'respit', u'venezuela'] [u'pienaar', u'shin', u'ajax', u'frustrat', u'arsenal'] [u'plan', u'second', u'skatepark'] [u'plan', u'encourag', u'farmer', u'plantat', u'timber'] [u'nurs', u'strike', u'colleagu', u'rap'] [u'polic', u'crack', u'driver', u'safeti'] [u'polic', u'defend', u'aborigin', u'tent', u'embassi', u'raid'] [u'policewomen', u'accus', u'featur', u'feder', u'crime'] [u'probe', u'launch', u'plane', u'crash'] [u'program', u'monitor', u'forest', u'harvest', u'area'] [u'public', u'urg', u'check', u'cylind'] [u'public', u'warn', u'phone', u'scam'] [u'qanta', u'intern', u'crew', u'strike'] [u'qanta', u'plan', u'job', u'outrag', u'union'] [u'plan', u'northern', u'rout', u'sack'] [u'question', u'public', u'anger', u'grow', u'korean', u'subway'] [u'rabbit', u'control', u'program', u'trial'] [u'radioact', u'spill', u'wmcs', u'olymp'] [u'rain', u'eas', u'wheatbelt', u'water', u'woe'] [u'read', u'divis'] [u'record', u'gladston', u'ventur'] [u'refshaug', u'win', u'defam', u'court', u'case'] [u'regul', u'inspect', u'canola', u'trial'] [u'report', u'highlight', u'contain', u'termin', u'potenti'] [u'resourc', u'stock', u'boost', u'ord'] [u'restraint', u'order', u'issu', u'anti', u'discrimin'] [u'reject', u'claim', u'author', u'spurn'] [u'ricciuto', u'undergo', u'surgeri', u'injur', u'ankl'] [u'rice', u'closur', u'work'] [u'angri', u'report', u'troop', u'harass'] [u'safeti', u'review', u'begin', u'bushwalk', u'death'] [u'premier', u'call', u'action', u'river', u'murray'] [u'saudi', u'arabian', u'stand', u'trial', u'qaeda'] [u'saudi', u'arabia', u'tell', u'arab', u'iraq', u'inevit'] [u'search', u'continu', u'victim', u'south', u'korean', u'subway'] [u'second', u'resolut', u'iraq', u'expect', u'short'] [u'shire', u'offer', u'assur', u'financ'] [u'palestinian', u'kill', u'gaza', u'incurs'] [u'slow', u'recoveri', u'predict', u'aust', u'economi'] [u'smoke', u'ban', u'tabcorp', u'line'] [u'snowtown', u'murder', u'trial', u'delay'] [u'state', u'forc', u'label', u'ethanol', u'fuel'] [u'station', u'fix', u'home', u'phone', u'servic'] [u'sterrey', u'steer', u'shark'] [u'sign', u'miss', u'fisherman'] [u'stop', u'chang', u'rule', u'fan', u'tell'] [u'sugar', u'industri', u'plan', u'reveal'] [u'surg', u'sale', u'aust'] [u'swiss', u'challeng', u'look', u'futur'] [u'taipan', u'place', u'futur', u'public', u'hand'] [u'talk', u'asian', u'nuclear', u'arm', u'race', u'unhelp', u'downer'] [u'tasmanian', u'scientist', u'search', u'east', u'coast'] [u'taylor', u'deni', u'call', u'waugh', u'quit'] [u'teen', u'face', u'court', u'drug', u'charg'] [u'test', u'show', u'dioxin', u'drink', u'water', u'standard'] [u'thousand', u'rememb', u'anniversari', u'darwin'] [u'union', u'member', u'support', u'public', u'protest'] [u'continu', u'tree', u'diseas', u'studi'] [u'british', u'aircraft', u'attack', u'iraq', u'target'] [u'stock', u'fee', u'pellet', u'affect'] [u'local', u'council', u'welcom', u'singl', u'poll'] [u'victorian', u'scientist', u'honour', u'award'] [u'vowl', u'retir', u'season'] [u'wale', u'coach', u'accus', u'player', u'belittl'] [u'warn', u'hear', u'friday'] [u'webb', u'favourit', u'ladi', u'master'] [u'widn', u'abandon', u'paul'] [u'wildlif', u'sanctuari', u'plan', u'reveal'] [u'william', u'say', u'tight', u'bowl', u'warrior'] [u'wine', u'chief', u'bounc', u'sack'] [u'worksaf', u'probe', u'potato', u'harvest', u'injuri'] [u'dead', u'rebel', u'bomb', u'raid', u'philippin', u'armi'] [u'abattoir', u'sale'] [u'academ', u'upbeat', u'higher', u'educ', u'review'] [u'administr', u'appoint', u'land', u'council'] [u'declar', u'lose', u'parliamentari', u'seat'] [u'amcor', u'record', u'solid', u'profit', u'result'] [u'america', u'fourth', u'race', u'cancel'] [u'arsenal', u'pois', u'swoop', u'beckham', u'report'] [u'aust', u'drink', u'alcohol', u'smoke', u'studi'] [u'austeel', u'releas', u'soon', u'govt'] [u'australian', u'flag', u'celebr', u'birthday'] [u'hold', u'meet', u'port', u'kembla', u'job'] [u'babi', u'bad', u'burn', u'brisban', u'hous'] [u'weather', u'caus', u'iranian', u'plane', u'crash'] [u'beckham', u'lead', u'deplet', u'juve'] [u'bewar', u'standard', u'alcohol', u'drink'] [u'bilbi', u'dream', u'realiti'] [u'brisban', u'sparki', u'head', u'strike'] [u'britain', u'tell', u'nation', u'leav', u'iraq', u'kuwait'] [u'british', u'high', u'court', u'overturn', u'blair', u'asylum'] [u'british', u'magician', u'entomb', u'chees'] [u'bungl', u'leav', u'doctor', u'wait', u'practis'] [u'bushfir', u'coroni', u'inquiri', u'wind'] [u'bush', u'thank', u'nato', u'support', u'turkey'] [u'ambo', u'help', u'wake', u'fund', u'chang'] [u'canegrow', u'hope', u'late', u'summer', u'rain'] [u'capriati', u'hungri', u'dubai'] [u'celt', u'underdog', u'uefa', u'clash', u'oneil'] [u'chamber', u'vow', u'smash', u'world', u'mark'] [u'charvi', u'pay', u'penalti', u'humphrey', u'earn', u'shock'] [u'christma', u'detent', u'centr', u'claim', u'quash'] [u'claim', u'defenc', u'spend', u'prioriti', u'health'] [u'claim', u'educ', u'polici', u'caus', u'high', u'indigen'] [u'claim', u'code', u'protect', u'autopsi', u'consent'] [u'claim', u'educ', u'polici', u'caus', u'high', u'indigen'] [u'colleg', u'continu', u'work', u'experi'] [u'concern', u'probe', u'cover', u'legal'] [u'concord', u'make', u'emerg', u'land', u'canada'] [u'coroni', u'inquiri', u'expect', u'hospit', u'death'] [u'council', u'chief', u'lament', u'advertis', u'decis'] [u'council', u'general', u'manag', u'step'] [u'council', u'offer', u'vandal', u'report', u'reward'] [u'countri', u'race', u'club', u'hold', u'fear'] [u'court', u'rule', u'longford', u'compo', u'today'] [u'cristal', u'match', u'libertador', u'lose', u'streak'] [u'cuper', u'slam', u'inter', u'recoba'] [u'deportivo', u'slip', u'buoyant', u'swiss', u'minnow', u'basel'] [u'distanc', u'swimmer', u'maroney', u'call', u'quit'] [u'dixon', u'dismiss', u'qanta', u'monopoli', u'claim'] [u'downer', u'warn', u'iraq', u'action', u'begin', u'soon'] [u'drought', u'break', u'rain', u'month', u'away'] [u'drought', u'impact', u'reach'] [u'drought', u'take', u'toll', u'insect'] [u'earli', u'childhood', u'develop', u'receiv', u'research'] [u'elli', u'webb', u'place', u'ladi', u'master'] [u'employe', u'grant', u'restrain', u'order'] [u'england', u'choke', u'burger', u'king'] [u'england', u'morri'] [u'investig', u'radioact', u'spill'] [u'esso', u'respons', u'econom', u'loss'] [u'esso', u'win', u'class', u'action', u'longford'] [u'etienn', u'agre', u'tyson', u'fight'] [u'famili', u'confront', u'korean', u'presid', u'elect'] [u'fan', u'join', u'flower', u'olonga', u'anti', u'mugab', u'protest'] [u'ferguson', u'hail', u'beckham', u'unit', u'victori'] [u'fewer', u'australian', u'jail'] [u'fifa', u'boss', u'prepar', u'postpon', u'match'] [u'firefight', u'tell', u'attend', u'blaze'] [u'fish', u'clean', u'facil', u'plan', u'announc'] [u'flight', u'attend', u'action', u'wont', u'affect', u'bundaberg'] [u'forest', u'allianc', u'reject', u'hindranc', u'claim'] [u'bank', u'worker', u'plead', u'guilti', u'theft', u'charg'] [u'treasur', u'charg', u'start'] [u'forum', u'put', u'focus', u'region', u'need'] [u'nomin', u'nat', u'charter', u'tower', u'preselect'] [u'franc', u'drop', u'merceron', u'gelez', u'face', u'scot'] [u'french', u'expedit', u'site', u'heritag', u'protect'] [u'fuel', u'price', u'jump', u'newcastl'] [u'fulham', u'smash', u'west', u'brom', u'quickfir', u'trio'] [u'ganguli', u'lead', u'india', u'victori'] [u'gartner', u'win', u'wind'] [u'gippsland', u'firefight', u'remain', u'guard'] [u'govt', u'canvass', u'way', u'improv', u'child', u'develop'] [u'govt', u'work', u'coron', u'suicid', u'report'] [u'greenpeac', u'call', u'canola'] [u'green', u'dump', u'anti', u'terror', u'kit', u'howard', u'doorstep'] [u'group', u'air', u'truanci', u'concern'] [u'group', u'prais', u'outgo', u'opposit', u'agricultur'] [u'group', u'reef', u'build'] [u'hagan', u'blood', u'rooki', u'penrith'] [u'houllier', u'back', u'owen', u'break', u'rush', u'score', u'record'] [u'howard', u'step', u'critic', u'anti', u'protest'] [u'howard', u'vow', u'stay', u'iraq', u'crisi'] [u'hussein', u'say', u'iraq', u'doesnt', u'want'] [u'illeg', u'fish', u'spot', u'identifi'] [u'immigr', u'raid', u'melbourn', u'draw', u'flak'] [u'impati', u'grow', u'water', u'manag', u'plan'] [u'indi', u'meet', u'like', u'includ', u'rain', u'race', u'talk'] [u'injuri', u'threaten', u'unit', u'final'] [u'seek', u'build', u'stage', u'bypass'] [u'investig', u'underway', u'qanta', u'skid'] [u'investor', u'plan', u'ethanol', u'plant', u'lament', u'trial'] [u'iran', u'militari', u'plane', u'crash', u'kill'] [u'iran', u'plane', u'crash', u'aboard'] [u'iraqi', u'human', u'shield', u'crime'] [u'itali', u'remain', u'unchang', u'ireland', u'clash'] [u'kalgoorli', u'boulder', u'crime', u'rate', u'declin'] [u'kayak', u'rescu', u'second', u'adventur'] [u'kirwan', u'stick', u'win', u'formula', u'ireland'] [u'korean', u'book', u'date', u'seed', u'roddick'] [u'landhold', u'contribut', u'discuss'] [u'lawyer', u'allow', u'visit', u'manus', u'detent', u'centr'] [u'lawyer', u'appeal', u'man', u'sept', u'convict'] [u'lawyer', u'review', u'case', u'esso', u'appeal'] [u'lend', u'leas', u'post', u'million', u'loss'] [u'lethal', u'back', u'point', u'rule', u'chang'] [u'airport', u'tunnel', u'remain', u'close', u'accid'] [u'macarthur', u'kingfish', u'suffer', u'minor', u'damag'] [u'apologis', u'plane', u'hijack'] [u'await', u'sentenc', u'denmark', u'murder'] [u'question', u'backpack', u'death'] [u'charg', u'roxbi', u'down', u'plane', u'incid'] [u'hospit', u'stab', u'attack'] [u'lose', u'defam', u'compo'] [u'murder', u'charg', u'refus', u'bail'] [u'face', u'court', u'alleg', u'hijack'] [u'face', u'court', u'attempt', u'arm', u'robberi'] [u'whack', u'thatcher', u'get', u'month', u'jail'] [u'maroney', u'call', u'quit'] [u'medal', u'recognis', u'island', u'effort'] [u'meet', u'consid', u'glenelg', u'river', u'futur'] [u'melbourn', u'receiv', u'massiv', u'compo', u'payout'] [u'mgladbach', u'leav', u'danger', u'zone', u'home'] [u'rat', u'challeng', u'result', u'expect', u'march'] [u'miner', u'explor', u'nickel', u'deposit'] [u'molotov', u'cocktail', u'suspect', u'melb', u'hotel'] [u'anti', u'ralli', u'plan'] [u'land', u'noosa', u'nation', u'park'] [u'teacher', u'danger', u'student', u'union'] [u'detain', u'immigr', u'raid'] [u'women', u'unlik', u'join', u'men', u'master'] [u'mosley', u'readi', u'engin', u'compromis'] [u'motorist', u'avoid', u'ethanol', u'blend', u'fuel', u'labor'] [u'crab', u'busi'] [u'murray', u'meet', u'wouldnt', u'detract', u'ministeri'] [u'nat', u'seek', u'probe', u'bushfir', u'probe'] [u'boat', u'take', u'waterway'] [u'zealand', u'discov', u'kenya', u'fate', u'thursday'] [u'fund', u'discuss', u'poll'] [u'penalti', u'church', u'damag', u'monument'] [u'coalit', u'make', u'magic', u'pud', u'elect'] [u'govt', u'announc', u'communiti', u'benefit', u'grant'] [u'offer', u'roll', u'classic', u'holden'] [u'price', u'high'] [u'oldfield', u'court', u'nation'] [u'nation', u'select', u'hear', u'continu'] [u'packer', u'hand', u'licenc', u'pistol', u'investig'] [u'pakistani', u'forc', u'chief', u'kill', u'crash'] [u'palaszczuk', u'wont', u'disast', u'fund', u'promis'] [u'park', u'protect', u'high', u'conserv', u'area'] [u'peac', u'group', u'deni', u'member', u'harass', u'soldier'] [u'peopl', u'trap', u'pile'] [u'pilot', u'make', u'emerg', u'land', u'adelaid', u'airport'] [u'player', u'continu', u'zimbabw', u'protest'] [u'critic', u'protest', u'disgrac', u'crean'] [u'defend', u'critic', u'anti', u'protest'] [u'polic', u'continu', u'probe', u'human', u'remain'] [u'polic', u'second', u'cannabi', u'crop'] [u'polic', u'hope', u'gain', u'edg', u'weapon', u'user'] [u'polic', u'locat', u'miss', u'famili', u'hous'] [u'polic', u'arrest', u'drug', u'raid'] [u'polic', u'seek', u'help', u'piraci'] [u'polic', u'offic', u'fight', u'chop', u'chop', u'trade'] [u'polic', u'wont', u'rule', u'link', u'drug', u'plantat'] [u'politician', u'breed', u'public', u'anti', u'troop', u'sentiment'] [u'pollock', u'deni', u'split', u'protea', u'camp'] [u'popul', u'drift', u'forc', u'feder', u'boundari'] [u'powel', u'visit', u'asia', u'eas', u'korean'] [u'predict', u'good', u'wheatbelt', u'rain'] [u'probe', u'launch', u'fatal', u'polic', u'pursuit'] [u'protest', u'condemn', u'howard', u'critic', u'anti'] [u'protocol', u'follow', u'immigr', u'raid'] [u'public', u'warn', u'snake', u'handl', u'danger'] [u'pump', u'continu', u'richmond', u'flood'] [u'qanta', u'draw', u'flak', u'redund', u'talk'] [u'qanta', u'flag', u'cut', u'despit', u'record', u'profit'] [u'qanta', u'record', u'million', u'profit'] [u'qfvg', u'upset', u'retail', u'price'] [u'govt', u'say', u'hospit', u'schedul'] [u'nat', u'close', u'deal', u'lib', u'springborg'] [u'race', u'club', u'sneak', u'point', u'peru'] [u'rain', u'boost', u'farmer', u'confid'] [u'rain', u'forc', u'aussi', u'bowl', u'chang', u'buchanan'] [u'raid', u'target', u'newsag'] [u'road', u'fund', u'tackl', u'flood'] [u'ronaldo', u'put', u'real', u'race'] [u'ruiz', u'trick', u'guatemala', u'rout', u'nicaragua'] [u'saff', u'gaug', u'feel', u'plan', u'crown', u'land'] [u'safin', u'escud', u'rotterdam', u'comeback', u'trail'] [u'govt', u'defend', u'move', u'forc', u'fine', u'default'] [u'govt', u'appeal', u'fish', u'decis'] [u'schmeichel', u'miss', u'arsenal', u'trip'] [u'school', u'reopen', u'paint', u'fume', u'scare'] [u'scotland', u'refus', u'panic'] [u'seaman', u'injuri', u'crisi', u'arsenal'] [u'self', u'clone', u'crayfish', u'threaten', u'nativ', u'speci'] [u'socceroo', u'creep', u'world', u'rank'] [u'solar', u'car', u'turn', u'head'] [u'sport', u'task', u'forc', u'plan', u'begin'] [u'start', u'america', u'race', u'delay'] [u'stone', u'stay', u'feder', u'liber', u'presid'] [u'need', u'good', u'downpour'] [u'taipan', u'keep', u'play', u'dream', u'aliv'] [u'polic', u'question', u'injur', u'hous'] [u'taxi', u'driver', u'face', u'trial'] [u'tension', u'increas', u'fighter', u'stray'] [u'terror', u'weapon', u'pose', u'minim', u'risk', u'british', u'expert'] [u'thousand', u'visit', u'dairi', u'field', u'day'] [u'isra', u'injur', u'hama', u'rocket'] [u'shuffl', u'pack', u'defeat', u'loom'] [u'tomasson', u'give', u'milan', u'narrow', u'lokomotiv'] [u'tough', u'time', u'ahead', u'water', u'alloc'] [u'tourism', u'industri', u'protect', u'iraq'] [u'trial', u'hear', u'woman', u'deni', u'kill', u'fianc'] [u'triathlet', u'bris', u'gold', u'coast', u'bikeway'] [u'truck', u'roll', u'destroy', u'furnitur'] [u'turkey', u'stand', u'firm', u'offer'] [u'turkey', u'undecid', u'gulf', u'attack'] [u'union', u'disun', u'mccain', u'enterpris', u'agreement'] [u'secur', u'council', u'end', u'open', u'debat'] [u'invit', u'talk', u'burmes', u'militari', u'junta'] [u'launch', u'homeland', u'secur', u'readi', u'campaign'] [u'market', u'remain', u'jitteri', u'shadow'] [u'tell', u'turkey', u'time', u'run', u'offer'] [u'action', u'europ'] [u'uzbek', u'journalist', u'sentenc', u'seven', u'year', u'jail'] [u'verstappen', u'pleas', u'minardi', u'track', u'debut'] [u'govt', u'speak', u'rice', u'closur', u'claim'] [u'crew', u'battl', u'bushfir', u'marangaroo'] [u'talk', u'take', u'toll', u'ord'] [u'iraq', u'cost', u'billion', u'economist'] [u'watkin', u'jeer', u'educ', u'forum'] [u'wine', u'destin'] [u'western', u'power', u'reveal', u'power', u'suppli', u'detail'] [u'wide', u'economi', u'grow', u'stronger'] [u'wine', u'export', u'urg', u'push', u'ahead'] [u'winemak', u'consid', u'loss', u'industri'] [u'woman', u'face', u'court', u'child', u'prostitut'] [u'yacht', u'lose', u'mast', u'trawler', u'incid'] [u'zimbabw', u'bar', u'british', u'report', u'world'] [u'accc', u'timid', u'petrol', u'price', u'investig'] [u'action', u'want', u'lower', u'indigen', u'unemploy', u'rate'] [u'rule', u'scrap', u'feder', u'seat', u'hurt'] [u'shut', u'malaga', u'claim', u'goalless', u'draw'] [u'allan', u'guilti', u'cash', u'charg'] [u'allan', u'unlik', u'appeal', u'fine'] [u'air', u'hospit', u'reform', u'concern'] [u'deliv', u'health', u'concern', u'list', u'politician'] [u'andersson', u'atwal', u'miss', u'record', u'malaysia'] [u'antarct', u'rock', u'global', u'warm'] [u'confid', u'growth', u'tough', u'environ'] [u'million', u'offic'] [u'arab', u'state', u'press', u'crime', u'condemn'] [u'dead', u'club'] [u'injur', u'rhode', u'island', u'nightclub'] [u'aussi', u'dollar', u'continu', u'climb'] [u'aust', u'qaeda', u'target', u'list'] [u'australia', u'withdraw', u'bougainvill', u'peac', u'monitor'] [u'aust', u'share', u'market', u'end', u'week', u'negat', u'territori'] [u'bartlett', u'vow', u'block', u'govt', u'plan', u'nuclear'] [u'beatti', u'unawar', u'tree', u'clear', u'fund', u'hold'] [u'bedi', u'label', u'murali', u'chucker'] [u'belgian', u'polic', u'recov', u'steal', u'work'] [u'port', u'kembla', u'product', u'restart'] [u'gun', u'busi', u'premier', u'leagu'] [u'blake', u'paradorn', u'upset', u'memphi'] [u'brack', u'back', u'rule', u'dean', u'year', u'pension'] [u'british', u'govt', u'clash', u'high', u'court', u'asylum'] [u'british', u'award', u'platform', u'iraq'] [u'briton', u'stab', u'death', u'bangkok'] [u'brothel', u'owner', u'acquit', u'hire', u'underag'] [u'brothel', u'owner', u'front', u'court', u'alleg', u'hire'] [u'burma', u'sentenc', u'jail', u'fin'] [u'bushfir', u'burn', u'hectar'] [u'cairn', u'canberra', u'grab', u'win'] [u'cairn', u'injur', u'kiwi', u'nightclub', u'brawl'] [u'cairn', u'injur', u'nightclub', u'brawl', u'report'] [u'scrap', u'nation', u'plantat', u'target'] [u'candlehold', u'recal', u'risk'] [u'carr', u'hook', u'brogden', u'debat'] [u'celt', u'sink', u'stuttgart'] [u'central', u'park', u'area', u'expand'] [u'centrelink', u'offer', u'drought', u'counsel'] [u'china', u'wage', u'chemic', u'chew', u'blob'] [u'chirac', u'mugab', u'talk', u'sidelin', u'africa', u'summit'] [u'christma', u'island', u'resid', u'awar', u'detent'] [u'claim', u'inventori', u'caus', u'high', u'petrol', u'price'] [u'claim', u'live', u'sheep', u'cattl', u'export', u'threaten'] [u'claim', u'rain', u'boost', u'stock', u'price'] [u'class', u'action', u'cost', u'esso'] [u'clinton', u'cancel', u'trip', u'india'] [u'coalit', u'promis', u'scrap', u'angler'] [u'committ', u'continu', u'goulburn', u'jail', u'riot'] [u'costello', u'unhappi', u'wasnt', u'consult', u'stone'] [u'council', u'approv', u'poultri', u'farm'] [u'council', u'await', u'rain'] [u'council', u'consid', u'indigen', u'caravan', u'park', u'plan'] [u'council', u'elect', u'plan'] [u'council', u'reject', u'combin', u'field', u'day', u'stand', u'idea'] [u'council', u'chang', u'tree', u'protect'] [u'council', u'fund', u'groundwat', u'studi'] [u'counsel', u'begin', u'sum', u'warn', u'dope', u'hear'] [u'crimin', u'charg', u'pend', u'south', u'korea', u'subway', u'probe'] [u'croc', u'prove', u'good', u'bullet'] [u'date', u'bushfir', u'coroni', u'inquiri'] [u'dean', u'receiv', u'lifetim', u'parliamentari', u'pension'] [u'death', u'spell', u'record', u'marriag'] [u'demon', u'thump', u'tiger'] [u'deportivo', u'cali', u'outclass', u'sulki', u'river', u'plate'] [u'deschamp', u'chase', u'flame', u'marseill'] [u'disast', u'fund', u'allow', u'shire', u'complet'] [u'dortmund', u'readi', u'hound', u'bayern'] [u'downpour', u'close', u'tourist', u'road'] [u'drought', u'impact', u'roadwork'] [u'drought', u'predict', u'long', u'last', u'impact'] [u'educ', u'dept', u'consid', u'rural', u'concern'] [u'famili', u'court', u'reject', u'invalid', u'transsexu'] [u'farmer', u'celebr', u'good', u'rain'] [u'fear', u'patterson', u'hide', u'news', u'health', u'minist'] [u'feder', u'fund', u'seek', u'wave', u'studi'] [u'govt', u'consid', u'appeal', u'transsexu'] [u'firefight', u'battl', u'contain', u'beechford', u'blaze'] [u'fisher', u'meet', u'minist', u'court', u'rule'] [u'fish', u'group', u'seek', u'action', u'pilchard', u'import'] [u'flight', u'attend', u'action', u'like', u'affect'] [u'footi', u'great', u'get', u'indigen', u'right', u'campaign'] [u'socceroo', u'coach', u'thomson', u'die'] [u'funer', u'hold', u'cricket', u'legend'] [u'funk', u'lead', u'elkington', u'california'] [u'gebrselassi', u'plan', u'world', u'record', u'comeback'] [u'wit', u'church', u'bell', u'hand'] [u'gold', u'coast', u'get', u'tourism', u'assur'] [u'group', u'concern', u'rain', u'bring', u'wrong', u'impress'] [u'group', u'get', u'clearer', u'understand', u'farmer'] [u'guga', u'reach', u'bueno', u'air', u'quarter'] [u'health', u'servic', u'speak', u'patient', u'death'] [u'hoddl', u'murder', u'grant', u'right', u'seek', u'judici'] [u'hors', u'ride', u'enact'] [u'howard', u'repeat', u'zimbabw', u'boycott'] [u'hundr', u'triathlet', u'head', u'coff'] [u'hungarian', u'thief', u'make', u'amend', u'post'] [u'hyypia', u'hero', u'liverpool', u'bounc'] [u'iaea', u'visit', u'iran', u'assess', u'nuclear', u'program'] [u'indian', u'jail', u'smuggl', u'pakistani', u'suitcas'] [u'indian', u'player', u'retrac', u'gandhi', u'journey'] [u'indonesia', u'say', u'australia', u'travel', u'warn'] [u'industri', u'action', u'impact', u'brisban', u'school'] [u'investig', u'underway', u'pile'] [u'investig', u'probe', u'hospit', u'staff', u'complaint'] [u'jackson', u'hit', u'explos', u'british', u'interview'] [u'japanes', u'tourist', u'drown', u'gold', u'coast', u'surf'] [u'joblink', u'issu', u'statement', u'sack'] [u'keegan', u'aim', u'bring', u'arsenal', u'earth'] [u'kenya', u'award', u'point', u'kiwi'] [u'kyli', u'minogu', u'posterior', u'brit'] [u'land', u'council', u'dismiss', u'administr', u'appoint'] [u'langer', u'name', u'player', u'year'] [u'liverpool', u'lazio', u'hold', u'krakow'] [u'llewellyn', u'impress', u'patterson'] [u'longreach', u'water', u'restrict', u'remain'] [u'loos', u'cannon', u'afridi', u'pakistan'] [u'lovenkrand', u'dream', u'hampden', u'return'] [u'water', u'spark', u'boat', u'lake', u'albert'] [u'male', u'bodi', u'murder', u'schoolgirl'] [u'accus', u'sell', u'bali', u'bomb', u'chemic', u'go'] [u'appear', u'court', u'charg', u'stuttl', u'murder'] [u'charg', u'stuttl', u'murder'] [u'fail', u'overturn', u'convict', u'bell'] [u'hospit', u'receiv', u'sever', u'electr'] [u'hospit', u'stab'] [u'jail', u'fatal', u'stab', u'facto'] [u'jail', u'life', u'murder'] [u'question', u'stuttl', u'murder'] [u'face', u'court', u'fatal'] [u'agre', u'deal', u'eriksson', u'ferguson'] [u'threaten', u'melbourn', u'water', u'suppli', u'bail'] [u'highlight', u'potenti', u'river', u'salin', u'problem'] [u'mayor', u'angri', u'mural', u'vandal'] [u'mine', u'giant', u'call', u'fund', u'boost', u'nativ'] [u'montgomeri', u'enter', u'indoor', u'nation'] [u'rain', u'delay', u'tougher', u'water', u'restrict'] [u'troop', u'help', u'hunt', u'sayyaf', u'rebel'] [u'want', u'tank', u'battalion', u'rumour', u'investig'] [u'welcom', u'polic', u'station', u'announc'] [u'nardel', u'close', u'receiv', u'appoint'] [u'nauru', u'appeal', u'help', u'nation', u'airlin'] [u'battl', u'britain', u'loom', u'uefa'] [u'newcastl', u'citi', u'notch', u'win', u'stallion', u'draw', u'south'] [u'commerci', u'crab', u'restrict', u'plan'] [u'disabl', u'respit', u'servic'] [u'korea', u'duck', u'nuclear', u'talk', u'summit'] [u'korea', u'warn', u'wont', u'peac'] [u'cost', u'blowout', u'forecast', u'water', u'treatment', u'plan'] [u'coron', u'clear', u'doc', u'death', u'toddler'] [u'grazier', u'record', u'heavi', u'rainfal'] [u'opp', u'drug', u'free', u'prison', u'plan', u'ameri'] [u'nurs', u'home', u'worker', u'suspend'] [u'olonga', u'sack', u'club'] [u'million', u'ticket', u'sell', u'rugbi', u'world'] [u'otago', u'open', u'super'] [u'owner', u'hesit', u'norther', u'oversea', u'jaunt'] [u'pair', u'face', u'court', u'machet', u'attack'] [u'palestinian', u'kill', u'gaza', u'strip', u'cross', u'point'] [u'patterson', u'irrespons', u'edmond'] [u'patterson', u'childish', u'minist'] [u'patterson', u'say', u'health', u'meet', u'wast', u'time'] [u'petrol', u'price', u'rise'] [u'petrol', u'break'] [u'plan', u'includ', u'puckapuny', u'cull'] [u'plan', u'intersect', u'revamp', u'begin'] [u'accus', u'european', u'countri', u'encourag', u'saddam'] [u'defend', u'protest', u'comment'] [u'choic', u'stay', u'iraq'] [u'prais', u'costello', u'leadership', u'patienc'] [u'governor', u'general', u'urg', u'elect', u'uniti'] [u'polic', u'charg', u'stab'] [u'polic', u'continu', u'investig', u'cannabi', u'crop'] [u'polic', u'station', u'face', u'uncertainti'] [u'powel', u'call', u'uphold'] [u'push', u'like', u'seek', u'age', u'care', u'worker'] [u'push', u'extend', u'fraser', u'world', u'heritag', u'list'] [u'qanta', u'plane', u'make', u'emerg', u'land'] [u'qanta', u'say', u'info', u'prime', u'terrorist'] [u'qanta', u'urg', u'updat', u'secur', u'shadow'] [u'govt', u'reject', u'land', u'acquisit', u'claim'] [u'racv', u'surpris', u'petrol', u'ration', u'talk'] [u'rail', u'firm', u'assess', u'worker', u'need'] [u'rain', u'bring', u'stock', u'loss'] [u'rain', u'caus', u'chao', u'melbourn', u'road'] [u'rain', u'expect', u'continu'] [u'rainfal', u'like', u'clear', u'weekend'] [u'rain', u'welcom', u'relief', u'drought'] [u'rain', u'drought', u'break'] [u'rain', u'offer', u'water', u'suppli', u'boost'] [u'rejuven', u'tyson', u'cure', u'cash', u'inject'] [u'resid', u'assur'] [u'retail', u'sector', u'air', u'trade', u'hour', u'review', u'concern'] [u'romario', u'jeer', u'team', u'brawl', u'fluminens', u'hold'] [u'round', u'world', u'forget'] [u'ruddock', u'commend', u'australia', u'travel', u'control'] [u'salin', u'expert', u'water', u'catchment'] [u'lose', u'seat', u'feder', u'parliament'] [u'soldier', u'charg', u'misconduct'] [u'schumach', u'seek', u'speed', u'nois'] [u'seaman', u'ajax', u'match'] [u'search', u'better', u'life', u'pay'] [u'second', u'nightclub', u'kill'] [u'senat', u'offer', u'input', u'coast', u'issu'] [u'dead', u'rhode', u'island', u'nightclub'] [u'shire', u'say', u'plan', u'polici', u'compromis'] [u'slap', u'paedophil', u'amput'] [u'state', u'territori', u'health', u'minist', u'arriv', u'meet'] [u'steal', u'wage', u'report', u'look', u'improv', u'indigen'] [u'strike', u'expect', u'mean', u'milk', u'shortag'] [u'strike', u'disrupt', u'milk', u'suppli'] [u'studi', u'consid', u'altern', u'crop', u'sugar', u'region'] [u'studi', u'probe', u'snowi', u'motorcycl', u'crash'] [u'teacher', u'shortag', u'wors', u'report'] [u'team', u'mat', u'send', u'best', u'wish', u'warn'] [u'telstra', u'chief', u'embarrass', u'billion', u'writedown'] [u'telstra', u'punish', u'massiv', u'hong', u'kong', u'write'] [u'telstra', u'hurt', u'joint', u'ventur'] [u'thiev', u'target', u'esper', u'car'] [u'timor', u'treati', u'ratfi', u'short', u'martin'] [u'troubl', u'torino', u'pray', u'miracl'] [u'tuckey', u'lament', u'gungahlin', u'drive', u'plan', u'problem'] [u'turkey', u'delay', u'vote', u'troop'] [u'turkey', u'dig', u'heel', u'lobbi', u'support'] [u'turkey', u'forc', u'weigh', u'strategi'] [u'union', u'condemn', u'qantass', u'contract', u'labour', u'plan'] [u'ask', u'indonesia', u'improv', u'human', u'right', u'record'] [u'boost', u'troop', u'number', u'philippin'] [u'chiropractor', u'address', u'gold', u'coast', u'gather'] [u'intellig', u'analyst', u'guilti', u'spi'] [u'research', u'prepar'] [u'valencia', u'sens', u'victori', u'benitez', u'benitez'] [u'govt', u'get', u'farmer', u'drought', u'updat'] [u'victorian', u'farmer', u'hope', u'rain', u'break', u'drought'] [u'victoria', u'welcom', u'rain', u'relief'] [u'vinnicomb', u'reject', u'freeway', u'claim'] [u'waratah', u'super', u'open'] [u'impact', u'exercis', u'unknown'] [u'warn', u'decis', u'saturday'] [u'warn', u'dope', u'hear', u'underway'] [u'william', u'mclaren', u'plan', u'court'] [u'wine', u'avocado', u'drive', u'mutton', u'wool'] [u'wisla', u'hold', u'lazio', u'goal', u'thriller'] [u'woodgat', u'tell', u'stay', u'away', u'elland', u'road'] [u'worker', u'return', u'work', u'burrup'] [u'youth', u'group', u'unhappi', u'appeal', u'carer'] [u'confirm', u'dead', u'nightclub'] [u'tourist', u'attract', u'honour', u'award', u'night'] [u'adelaid', u'break', u'port', u'heart'] [u'qaeda', u'member', u'jail', u'terrorist', u'plot'] [u'arafat', u'number', u'outlin', u'propos', u'ceasefir'] [u'athen', u'risk', u'turn', u'game', u'disast'] [u'australia', u'urg', u'abandon', u'zimbabw', u'world', u'match'] [u'black', u'black', u'cap'] [u'blix', u'order', u'destruct', u'iraqi', u'missil'] [u'botch', u'oper', u'leav', u'teenag', u'brain', u'damag'] [u'brockovich', u'take', u'cancer', u'crusad', u'court'] [u'brogden', u'accus', u'carr', u'fudg', u'ambul', u'figur'] [u'brumbi', u'red', u'ballymor'] [u'cairn', u'play', u'despit', u'brawl'] [u'australian', u'human', u'right'] [u'canberra', u'capit', u'championship'] [u'capit', u'flame', u'wnbl', u'titl'] [u'captain', u'refus', u'ship', u'wheat', u'iraq'] [u'children', u'right', u'overlook', u'advoc'] [u'confid', u'win', u'lower', u'hous', u'seat'] [u'coria', u'stun', u'nalbandian', u'reach', u'argentina', u'semi'] [u'croatia', u'launch', u'membership'] [u'crusad', u'begin', u'defenc'] [u'darwin', u'polic', u'investig', u'attempt', u'assault'] [u'davi', u'webb', u'share', u'master', u'lead'] [u'death', u'toll', u'rise', u'club', u'blaze'] [u'deputi', u'say', u'iraq', u'readi', u'dialogu'] [u'despit', u'rain', u'govt', u'say', u'drought', u'isnt'] [u'donald', u'leav', u'bangladesh', u'clash'] [u'dumbledor', u'replac', u'pick', u'potter', u'film'] [u'eagl', u'docker', u'despit'] [u'faldo', u'withdraw', u'match', u'play', u'tournament'] [u'farina', u'pay', u'tribut', u'thomson'] [u'femal', u'cosmonaut', u'feet', u'grind'] [u'ferrero', u'escud', u'hobbl', u'rotterdam'] [u'ferrero', u'rotterdam', u'campaign', u'end', u'agoni'] [u'flash', u'flood', u'keep', u'busi'] [u'star', u'koen', u'lick', u'cat'] [u'fourth', u'race', u'postpon'] [u'freeman', u'split', u'husband'] [u'french', u'african', u'leader', u'support', u'iraq', u'inspect'] [u'gebrselassi', u'break', u'mile', u'indoor'] [u'gebrselassi', u'break', u'feofanova', u'reach'] [u'gurkha', u'discrimin', u'case', u'fail', u'court'] [u'hear', u'adjourn', u'prison', u'riot'] [u'pain', u'sidelin', u'golf', u'legend', u'palmer'] [u'howel', u'lead', u'california'] [u'hussain', u'gile', u'recal', u'pakistan', u'clash'] [u'iaea', u'begin', u'iran', u'nuclear', u'assess'] [u'iraq', u'wheat', u'comment', u'polit', u'vail'] [u'jackson', u'lead', u'cap', u'titl'] [u'japan', u'back', u'campaign', u'fresh', u'iraq', u'vote'] [u'johnson', u'pittman', u'excel', u'canberra'] [u'kangaroo', u'thump', u'essendon', u'hawk', u'edg', u'saint'] [u'kookaburra', u'forc', u'dutch', u'draw'] [u'labor', u'target', u'council', u'golden', u'handshak'] [u'lara', u'jump', u'warn', u'defenc'] [u'light', u'wind', u'delay', u'fourth', u'america', u'race'] [u'likud', u'parti', u'coalit', u'partner'] [u'long', u'haul', u'grazier', u'rain', u'break'] [u'massa', u'test', u'drive', u'championship', u'win', u'ferrari'] [u'metro', u'recruit', u'women', u'driver', u'posit'] [u'newcastl', u'secur', u'spot'] [u'confirm', u'iraqi', u'wheat', u'order'] [u'greec', u'lightn', u'olymp', u'work', u'control'] [u'plan', u'inquiri', u'communiti', u'servic'] [u'health', u'minist', u'call', u'meet', u'cwealth'] [u'ntini', u'star', u'bangladesh', u'fell'] [u'mayor', u'play', u'terrorist', u'attack', u'specul'] [u'cricket', u'investig', u'durban', u'nightclub', u'brawl'] [u'price', u'hike', u'weigh', u'rat', u'decis'] [u'kill', u'fuel', u'barg', u'explod'] [u'pair', u'miss', u'fuel', u'barg', u'explod'] [u'pearson', u'rout', u'aussi', u'women'] [u'petrol', u'price', u'hike', u'compar', u'rate', u'rise'] [u'polic', u'come', u'beat', u'oppn', u'claim'] [u'polic', u'investig', u'muswellbrook', u'death'] [u'polic', u'treat', u'hunter', u'valley', u'death', u'murder'] [u'powel', u'leav', u'japan', u'talk', u'china'] [u'powel', u'start', u'asian', u'tour', u'north', u'korea', u'talk'] [u'protea', u'demolish', u'bangladesh'] [u'protest', u'afloat', u'deliv', u'peac', u'messag'] [u'public', u'concern', u'environ', u'statist'] [u'take', u'gong', u'aust', u'tourism', u'award'] [u'rain', u'bring', u'relief', u'farmer'] [u'rain', u'fall', u'drought', u'ravag', u'eastern', u'state'] [u'recoba', u'hand', u'match', u'champion'] [u'result', u'aid', u'vaccin', u'trial', u'releas'] [u'robo', u'deer', u'take', u'bullet', u'justic'] [u'roddick', u'head', u'semi', u'memphi'] [u'saddam', u'ponder', u'edict', u'scrap', u'missil'] [u'note', u'esteem', u'music', u'educ', u'die'] [u'govt', u'block', u'glenelg', u'high', u'rise', u'apart'] [u'sampra', u'withdraw', u'arizona', u'replac', u'hewitt'] [u'polic', u'close', u'schoolgirl', u'killer'] [u'seaman', u'rest', u'main', u'road', u'visit'] [u'searcher', u'fear', u'dead', u'china', u'ferri', u'sink'] [u'selector', u'announc', u'warn', u'replac', u'soon'] [u'sele', u'face', u'henin', u'hardenn', u'dubai', u'final'] [u'shop', u'owner', u'trial', u'accus', u'bali', u'bomb'] [u'korea', u'subway', u'staff', u'face', u'kill', u'charg'] [u'smigun', u'take', u'nordic', u'ski', u'world', u'championship'] [u'helen', u'super', u'leagu', u'season', u'open'] [u'stormer', u'slaughter', u'shark'] [u'stuttl', u'famili', u'welcom', u'travel', u'offer'] [u'sunrac', u'head', u'gloomi', u'final'] [u'shin', u'rmit', u'entri', u'race'] [u'taipan', u'stay', u'aliv', u'cannon', u'dodg', u'bullet'] [u'relay', u'rais', u'money', u'cancer', u'council'] [u'teenag', u'stab', u'fight'] [u'toll', u'rise', u'club'] [u'turkey', u'pois', u'iraq', u'deal'] [u'kill', u'motorbik', u'collis'] [u'warn', u'final', u'phase', u'iraq', u'stand'] [u'ulster', u'milit', u'declar', u'ceasefir'] [u'author', u'confirm', u'kill', u'club'] [u'ensur', u'american', u'semi', u'final'] [u'nightclub', u'death', u'toll', u'hit'] [u'prosecutor', u'slave', u'labour', u'case', u'samoa'] [u'stock', u'rise', u'follow', u'posit', u'iraqi', u'comment'] [u'govt', u'call', u'volunt', u'state', u'clean'] [u'say', u'polic', u'take', u'beat'] [u'warn', u'appeal', u'month'] [u'weather', u'chang', u'save', u'white', u'beach', u'shack'] [u'wood', u'remain', u'hunt'] [u'worker', u'electrocut', u'piggeri', u'repair'] [u'accus', u'peopl', u'smuggler', u'face', u'darwin', u'court'] [u'struggl', u'public', u'hous', u'demand'] [u'alic', u'forum', u'discuss', u'indigen', u'educ', u'issu'] [u'alinghi', u'fume', u'cancel'] [u'tumbl', u'greec', u'river'] [u'aussi', u'arriv', u'zimbabw'] [u'barca', u'deportivo', u'real', u'shine', u'spain'] [u'bayern', u'open', u'point'] [u'bevan', u'frustrat', u'lack', u'opportun'] [u'blair', u'put', u'case', u'iraq', u'pope'] [u'bradman', u'baggi', u'green', u'expect', u'fetch'] [u'britain', u'ralli', u'support', u'resolut'] [u'brown', u'claim', u'french', u'land', u'site', u'tassi'] [u'butcher', u'defend', u'beef', u'price'] [u'call', u'peac', u'iraqi', u'resolut'] [u'cambodian', u'deni', u'polit', u'emerg'] [u'carpark', u'shoot', u'spark', u'adelaid', u'manhunt'] [u'carr', u'plan', u'anti', u'drug', u'campaign'] [u'lover', u'march', u'rome', u'sacr', u'stray'] [u'cat', u'claw', u'dog'] [u'cat', u'claw', u'dog', u'pie', u'swoop', u'blue'] [u'coalit', u'launch', u'ahead', u'elect'] [u'colombian', u'rebel', u'demand', u'rescuer'] [u'consum', u'wear', u'cost', u'trolley', u'loss'] [u'council', u'deni', u'revenu', u'rais', u'park', u'fee'] [u'court', u'find', u'guilti', u'gross', u'ingratitud'] [u'cricket', u'associ', u'say', u'warn', u'harsh'] [u'defend', u'acquisit', u'investig'] [u'darwin', u'clear', u'play', u'super', u'match'] [u'davi', u'take', u'ladi', u'master'] [u'davison', u'plunder', u'record', u'centuri'] [u'dead', u'rock', u'club', u'whos', u'fault'] [u'dem', u'block', u'govt', u'spend', u'move'] [u'differ', u'beazley', u'stay', u'backbench'] [u'downer', u'expect', u'iraq', u'edict'] [u'downer', u'push', u'urgent', u'talk', u'north', u'korea'] [u'downer', u'unmov', u'iraqi', u'wheat', u'decis'] [u'drought', u'doom', u'turn', u'flood', u'gloom'] [u'protest', u'face', u'zimbabw', u'player', u'tell'] [u'england', u'deserv', u'favourit', u'oneil'] [u'england', u'grand', u'slam', u'dream', u'aliv'] [u'england', u'punish', u'disappoint', u'pakistan'] [u'fake', u'croc', u'scare', u'flamingo'] [u'fickl', u'weather', u'hold', u'race'] [u'firefight', u'continu', u'contain', u'effort', u'near'] [u'palestinian', u'armi', u'crackdown'] [u'flower', u'play', u'australia', u'report'] [u'forens', u'team', u'struggl', u'identifi', u'club'] [u'ambassador', u'criticis', u'howard', u'remark'] [u'freeman', u'expect', u'race', u'melbourn'] [u'gatecrash', u'blame', u'violenc', u'bali', u'thank'] [u'geelong', u'fight', u'ring', u'road', u'fund'] [u'govt', u'paper', u'discuss', u'preserv', u'adelaid'] [u'gunner', u'demolish', u'citi', u'stumbl'] [u'hampshir', u'chairman', u'call', u'review', u'cricket'] [u'hampshir', u'want', u'warn'] [u'hard', u'work', u'steal', u'craftsmen', u'ident'] [u'hayden', u'focus', u'cricket', u'polit'] [u'henin', u'hardenn', u'outlast', u'sele', u'dubai', u'thriller'] [u'hill', u'star', u'tiger', u'claim', u'chariti'] [u'hockeyroo', u'save', u'best', u'till'] [u'hotel', u'associ', u'fight', u'smoke'] [u'howel', u'extend', u'lead'] [u'hussain', u'hail', u'special', u'england', u'perform'] [u'iaea', u'say', u'iraqi', u'cooper', u'improv'] [u'iraqi', u'minist', u'say', u'protest', u'prompt', u'wheat', u'decis'] [u'king', u'regain', u'spot'] [u'lion', u'roll', u'swan'] [u'charg', u'bash', u'nightclub', u'door'] [u'charg', u'ormiston', u'attack'] [u'charg', u'attempt', u'murder', u'stab'] [u'fight', u'life', u'stab'] [u'stab', u'death', u'melbourn', u'brawl'] [u'maroney', u'make', u'swim'] [u'medicar', u'offic', u'busier', u'bulk', u'bill', u'dip'] [u'mirnyi', u'slay', u'feder', u'reach', u'rotterdam', u'final'] [u'missil', u'issu', u'resolv', u'pressur'] [u'monster', u'surf', u'sweep', u'woman', u'death'] [u'magic', u'martina'] [u'natasha', u'spat', u'wont', u'destroy', u'dem'] [u'nataus'] [u'newton', u'predict', u'armageddon', u'report'] [u'resolut', u'hussein', u'day', u'downer'] [u'kill', u'violenc', u'outsid', u'karachi', u'mosqu'] [u'green', u'parti', u'hand'] [u'receiv', u'cwealth', u'literaci', u'grant'] [u'odriscol', u'captur', u'record', u'ireland', u'down', u'itali'] [u'water', u'okay'] [u'opec', u'pledg', u'flow', u'despit'] [u'patterson', u'say', u'state', u'offer'] [u'pearson', u'say', u'bureaucraci', u'fail', u'indigen', u'welfar'] [u'perth', u'tiger', u'giant', u'notch', u'win'] [u'pilot', u'die', u'ultralight', u'plung'] [u'polanski', u'get', u'best', u'director', u'cesar', u'pianist'] [u'polic', u'arrest', u'pair', u'attack', u'brick', u'bottl'] [u'polic', u'search', u'shoot'] [u'pope', u'urg', u'blair', u'avert'] [u'crash', u'defeat', u'despit', u'ronaldinho'] [u'rain', u'need', u'central', u'west'] [u'raymond', u'defend', u'memphi', u'titl'] [u'research', u'turn', u'spotlight', u'bing', u'drink'] [u'roddick', u'want', u'dent', u'crown'] [u'african', u'weapon', u'inspector', u'iraq'] [u'polic', u'investig', u'fatal', u'road', u'crash'] [u'searcher', u'retriev', u'ultralight', u'pilot', u'bodi'] [u'search', u'intensifi', u'miss', u'pilot'] [u'search', u'begin', u'miss', u'pilot'] [u'busi', u'flash', u'flood', u'north', u'west'] [u'shark', u'steal', u'glori', u'perth'] [u'sherpa', u'plan', u'world', u'highest', u'cyber', u'cafe', u'oxygen'] [u'storm', u'whip', u'coast', u'northern', u'flood', u'steadi'] [u'striker', u'rout', u'kingz'] [u'striker', u'rout', u'kingz', u'unit', u'knight'] [u'tail', u'rescu', u'struggl'] [u'tamworth', u'flood', u'cost', u'million'] [u'teacher', u'student', u'guidelin', u'need', u'modifi'] [u'teenag', u'die', u'transplant'] [u'tendulkar', u'blaze', u'centuri', u'total'] [u'territori', u'search', u'comedi', u'talent'] [u'time', u'lucki', u'canberra', u'uni', u'brisban', u'campus'] [u'tight', u'secur', u'greet', u'cricket', u'zimbabw'] [u'tourist', u'foul', u'spill', u'milk'] [u'tropfest', u'turn', u'tarpfest'] [u'turkey', u'signal', u'ahead', u'troop'] [u'tyson', u'destroy', u'etienn', u'minut'] [u'vote', u'iraq', u'soon', u'march', u'powel'] [u'spain', u'draft', u'second', u'resolut'] [u'resolut'] [u'warn', u'appeal', u'delay', u'name', u'replac'] [u'warn', u'pollock'] [u'warn', u'water', u'contamin', u'recent', u'rain'] [u'struggl', u'final'] [u'waugh', u'expect', u'play', u'final'] [u'waugh', u'lead', u'blue', u'titl'] [u'weapon', u'expert', u'denounc', u'intellig', u'iraq'] [u'yemen', u'chopper', u'crash', u'kill', u'troop'] [u'dead', u'china', u'earthquak'] [u'academ', u'consid', u'indigen', u'cultur', u'role'] [u'adelaid', u'charg', u'firearm', u'offenc'] [u'ajax', u'lose', u'grind', u'utrecht', u'defeat'] [u'ord', u'jump', u'point', u'higher'] [u'choos', u'charlestown', u'candid'] [u'amino', u'level', u'link', u'malaria', u'treatment', u'research'] [u'anti', u'french', u'joke', u'censor', u'broadcast', u'complain'] [u'welcom', u'court', u'rule', u'chairman'] [u'kill', u'faction', u'afghan', u'fight'] [u'defend', u'grain', u'freight', u'spot', u'price', u'tender'] [u'beef', u'price', u'rise'] [u'billiton', u'reveal', u'profit', u'downturn'] [u'bloke', u'peel', u'pant', u'peac'] [u'bomb', u'alert', u'delay', u'domest', u'flight', u'philippin'] [u'boulami', u'ban', u'iaaf', u'sourc'] [u'drown', u'sweep', u'storm'] [u'bradman', u'baggi', u'green', u'tour'] [u'britain', u'concern', u'report', u'iraqi', u'missil'] [u'build', u'industri', u'shake'] [u'cabinet', u'meet', u'balanc', u'budget', u'prioriti'] [u'canberra', u'step', u'tourist', u'campaign'] [u'carr', u'consid', u'clarenc', u'battl'] [u'celtic', u'trophi'] [u'chavez', u'blast', u'media', u'violenc', u'continu'] [u'civilian', u'kill', u'gunmen', u'attack', u'minibus', u'east'] [u'claim', u'diamond', u'miner', u'murder', u'congo'] [u'claim', u'evid', u'unsolv', u'doubl', u'murder'] [u'clean', u'coal', u'technolog', u'year', u'away'] [u'coastal', u'graze', u'boom', u'lift', u'properti', u'price'] [u'combin', u'approach', u'tackl', u'grasshopp'] [u'committe', u'offer', u'age', u'care', u'warn'] [u'communiti', u'bank', u'share', u'trade', u'show', u'littl', u'chang'] [u'communiti', u'clean', u'drench'] [u'communiti', u'flock', u'wast', u'transfer', u'station'] [u'confer', u'focus', u'tuna', u'fisheri'] [u'council', u'host', u'farewel'] [u'council', u'resist', u'roster', u'pressur'] [u'custom', u'hous', u'restor', u'open'] [u'water', u'level', u'critic'] [u'death', u'toll', u'hit', u'bangladesh', u'local'] [u'dent', u'roll', u'roddick', u'jude', u'titl'] [u'deploy', u'troop', u'iraq', u'cost'] [u'doubl', u'murder', u'case', u'reopen'] [u'downer', u'say', u'help', u'post', u'iraq'] [u'downpour', u'bring', u'flash', u'flood'] [u'driver', u'urg', u'care', u'road'] [u'driver', u'urg', u'watch', u'wander', u'stock'] [u'driver', u'warn', u'slow'] [u'drought', u'assist', u'continu', u'farmer', u'carr'] [u'drought', u'bushfir', u'blame', u'tourism', u'slump'] [u'earthquak', u'death', u'toll', u'rise', u'china'] [u'earthquak', u'death', u'toll', u'rise'] [u'earthquak', u'kill', u'china'] [u'earthquak', u'kill', u'injur', u'thousand'] [u'earthquak', u'rock', u'china', u'dead'] [u'earthquak', u'shake', u'north', u'west', u'china'] [u'tour', u'guid', u'train', u'north'] [u'ecstasi', u'abus', u'singapor', u'drop', u'sharpli'] [u'egyptian', u'parliament', u'extend', u'emerg', u'law'] [u'electr', u'restor', u'major', u'suburb'] [u'gerrouj', u'fail', u'crack', u'gebrselassi', u'mark'] [u'emerg', u'crew', u'repair', u'flood', u'damag', u'home'] [u'england', u'send', u'vaughan', u'scan'] [u'enrag', u'vajpaye', u'tear', u'script', u'lash'] [u'fan', u'cash', u'save', u'york'] [u'farmer', u'hope', u'rain'] [u'farmer', u'slow', u'regist', u'dam'] [u'firefight', u'continu', u'contain', u'chemic', u'spill'] [u'firefight', u'struggl', u'contain', u'bushfir'] [u'threat', u'eas', u'gippsland', u'high', u'countri'] [u'figur', u'price', u'australia', u'oldest', u'bottl'] [u'flood', u'leav', u'motorist', u'strand'] [u'follow', u'rain', u'need', u'drought', u'break'] [u'forecast', u'call', u'drought'] [u'schoolteach', u'guilti', u'promot'] [u'forum', u'offer', u'council', u'candid'] [u'dead', u'ferri', u'sink'] [u'fourth', u'race', u'postpon'] [u'franc', u'continu', u'opposit', u'resolut'] [u'franc', u'remain', u'oppos', u'resolut'] [u'franc', u'sink', u'scotland'] [u'fund', u'approv', u'crookwel', u'canberra', u'link'] [u'fund', u'improv', u'crookwel', u'canberra', u'road'] [u'futur', u'matern', u'servic', u'hang', u'balanc'] [u'gaggl', u'gees', u'home'] [u'coast', u'keep', u'busi', u'heavi', u'rainfal'] [u'girl', u'succumb', u'road', u'crash', u'injuri'] [u'good', u'rain', u'fall', u'illawarra'] [u'govt', u'deni', u'forget', u'domest', u'issu'] [u'govt', u'promis', u'build', u'industri', u'report'] [u'hampshir', u'talk', u'wasim', u'replac', u'ban'] [u'hard', u'time', u'mine', u'attract'] [u'har', u'race', u'scratch', u'agricultur', u'show'] [u'hauritz', u'replac', u'warn', u'world', u'squad'] [u'hazelton', u'plan', u'orang', u'reunion'] [u'heat', u'meet', u'expect', u'poni'] [u'histor', u'home', u'futur', u'doubt'] [u'hobart', u'women', u'health', u'centr', u'reloc'] [u'hope', u'road', u'reopen', u'today'] [u'hospit', u'clear', u'ampute', u'compo', u'case'] [u'houllier', u'play', u'monaco'] [u'household', u'clean', u'water', u'assur'] [u'hous', u'pose', u'teacher', u'retent', u'problem'] [u'form', u'waugh', u'encourag', u'play'] [u'inspector', u'iran', u'uranium', u'enrich'] [u'iraq', u'commit', u'impact', u'health', u'budget', u'say'] [u'prospect', u'look', u'better'] [u'kidman', u'pick', u'best', u'actress', u'oscar'] [u'kidman', u'score', u'bafta'] [u'klim', u'miss', u'world', u'championship'] [u'land', u'valuat', u'releas'] [u'firi', u'return'] [u'lawyer', u'concern', u'guantanamo', u'suicid', u'attempt'] [u'lead', u'music', u'ident', u'die'] [u'liverpool', u'crash', u'citi', u'sinclair', u'lift', u'west'] [u'face', u'committ', u'hear', u'arson', u'charg'] [u'face', u'court', u'peopl', u'smuggl', u'charg'] [u'face', u'court', u'attempt', u'murder', u'charg'] [u'shrug', u'gigg', u'transfer', u'talk'] [u'marin', u'emerg', u'beacon', u'polic'] [u'marin', u'research', u'team', u'hunt', u'cancer', u'cure'] [u'marron', u'fin', u'season'] [u'mayor', u'think', u'criteria', u'restrict'] [u'mayor', u'want', u'park', u'plan', u'delay'] [u'methanex', u'aust', u'consid', u'worker', u'hous'] [u'mirnyi', u'captur', u'career', u'titl'] [u'rain', u'central'] [u'rain'] [u'moya', u'down', u'coria', u'claim', u'bueno', u'air', u'open'] [u'murder', u'hear', u'begin', u'bunburi', u'court'] [u'murrayland', u'export', u'brand'] [u'nake', u'rain', u'danc', u'ahead', u'weather'] [u'autopsi', u'polici', u'introduc'] [u'book', u'explor', u'aborigin', u'cultur'] [u'newcom', u'norah', u'jone', u'show', u'springsteen', u'whos', u'boss'] [u'law', u'propos', u'territori', u'rental', u'market'] [u'locum', u'servic', u'boost', u'wheatbelt', u'health'] [u'public', u'truste', u'appoint'] [u'align', u'leader', u'iraq'] [u'norah', u'jone', u'dont', u'know', u'win', u'song', u'year'] [u'north', u'land', u'valuat', u'releas'] [u'govt', u'promis', u'polic', u'unit'] [u'nation', u'preselect', u'resolv'] [u'onetel', u'chairman', u'respons', u'court', u'tell'] [u'oversea', u'athlet', u'domin', u'coff', u'harbour', u'triathlon'] [u'oversea', u'athlet', u'prove', u'good', u'coff', u'triathlon'] [u'pacif', u'head', u'accus', u'west', u'misus', u'intellig'] [u'perth', u'forc', u'school', u'evacu'] [u'plane', u'carri', u'afghan', u'minist', u'miss'] [u'polic', u'concern', u'acid', u'theft'] [u'polic', u'confid', u'hunter', u'return', u'today'] [u'polic', u'continu', u'probe', u'suspici', u'death'] [u'polic', u'ethic', u'unit', u'overse', u'fatal', u'crash', u'probe'] [u'polic', u'investig', u'alleg', u'cross'] [u'polic', u'reopen', u'doubl', u'murder', u'case'] [u'polic', u'rail', u'victim'] [u'polic', u'offic', u'hospit', u'alleg', u'fight'] [u'polic', u'recov', u'pilot', u'bodi'] [u'polic', u'speak', u'clearanc', u'rat'] [u'polic', u'investig', u'suspici', u'hors', u'shoot'] [u'pope', u'urg', u'cathol', u'fast', u'peac'] [u'legend', u'paul', u'mccartney', u'sing', u'privat'] [u'port', u'author', u'chief', u'push', u'jetti', u'boost'] [u'pound', u'describ', u'warn', u'anti', u'dope', u'hysteria'] [u'powel', u'begin', u'talk', u'china'] [u'powel', u'say', u'iraq', u'disarm'] [u'prawn', u'trawl', u'impact', u'spotlight'] [u'probe', u'launch', u'boat', u'tragedi'] [u'protest', u'meet', u'call', u'race', u'fund', u'boost'] [u'public', u'input', u'seek', u'fall', u'upgrad', u'plan'] [u'publish', u'axel', u'springer', u'black'] [u'opposit', u'air', u'river', u'flow', u'concern'] [u'queensland', u'teacher', u'industri'] [u'racism', u'increas'] [u'radcliff', u'open', u'season', u'record'] [u'rain', u'boost', u'water', u'storag'] [u'rain', u'bring', u'minor', u'flood'] [u'rain', u'doesnt', u'help', u'water', u'storag'] [u'rain', u'fall', u'hunter'] [u'rain', u'come', u'late', u'milk', u'produc'] [u'rain', u'expect', u'affect', u'vintag'] [u'rain', u'offer', u'firefight', u'differ', u'tack'] [u'rain', u'offer', u'respit', u'communiti'] [u'rain', u'prayer', u'answer'] [u'rain', u'top', u'reservoir'] [u'ranger', u'defend', u'amoruso', u'spit'] [u'ranger', u'park', u'croc'] [u'razorback', u'stay', u'aliv', u'king'] [u'real', u'sociedad', u'stay'] [u'reed', u'boat', u'captain', u'hop', u'avoid', u'sink', u'feel'] [u'region', u'aviat', u'issu', u'cwealth', u'spotlight'] [u'region', u'go', u'drought', u'flood'] [u'research', u'look', u'engag', u'student', u'scienc'] [u'riverland', u'event', u'clash'] [u'road', u'reopen', u'today'] [u'rockhampton', u'miss'] [u'safeti', u'author', u'okay', u'qantass', u'contract'] [u'govt', u'hop', u'seiz', u'profit', u'crime'] [u'school', u'ban', u'mobil', u'phone'] [u'secur', u'tight', u'ahead', u'australia', u'zimbabw', u'match'] [u'seedorf', u'take', u'swipe', u'italian', u'media'] [u'work', u'retain', u'wall'] [u'seven', u'kill', u'avalanch', u'tajikistan'] [u'sharon', u'sign', u'settler', u'parti'] [u'shire', u'focus', u'tourism', u'attract'] [u'simoni', u'prepar', u'giro'] [u'korea', u'arrest', u'subway', u'offici', u'disast'] [u'korea', u'arrest', u'subway', u'worker', u'disast'] [u'korean', u'presid', u'make', u'outgo', u'speech'] [u'spanish', u'protest', u'prestig', u'disast'] [u'state', u'water', u'flash', u'flood'] [u'submiss', u'flow', u'region', u'tourism'] [u'region', u'plan', u'riverina', u'tourism'] [u'sudan', u'allow', u'uganda', u'troop', u'pursu', u'rebel'] [u'sudanes', u'muslim', u'teacher', u'deport', u'fiji'] [u'survey', u'highlight', u'extend', u'trade', u'hour', u'support'] [u'health', u'author', u'join', u'autopsi', u'campaign'] [u'thailand', u'drug', u'blitz', u'claim', u'year', u'victim'] [u'humbl', u'british', u'threat'] [u'thorp', u'taper', u'ahead', u'nation', u'record'] [u'goal', u'minut', u'inter'] [u'juvenil', u'charg', u'upgrad', u'post'] [u'tourist', u'drown', u'reef'] [u'town', u'green', u'draft', u'plan', u'display'] [u'trucker', u'guilti', u'caus', u'driver', u'death'] [u'tyson', u'rush', u'lewi', u'rematch'] [u'union', u'join', u'highway', u'revamp', u'push'] [u'vaughan', u'doubt', u'india', u'game'] [u'vermeulen', u'readi', u'race'] [u'govt', u'launch', u'firebreak', u'probe'] [u'polic', u'investig', u'fatal', u'stab'] [u'polic', u'killer', u'sentenc', u'life', u'jail'] [u'warn', u'appeal'] [u'warn', u'drug', u'cheat', u'boss'] [u'benefit', u'miner', u'boom'] [u'water', u'safeti', u'skill', u'workshop', u'hold', u'school'] [u'weapon', u'inspector', u'find', u'respect', u'mbeki'] [u'weather', u'condit', u'spell', u'problem', u'dri'] [u'rock', u'pakistan', u'coach'] [u'weir', u'edg', u'howel', u'play'] [u'wheat', u'board', u'confid', u'futur', u'iraq', u'trade'] [u'wigan', u'blast', u'coach', u'castleford', u'loss'] [u'wild', u'weather', u'doesnt', u'deter', u'anti', u'protest'] [u'put', u'eckstein', u'ironman', u'tabl'] [u'woman', u'die', u'crash'] [u'woolworth', u'increas', u'half', u'year', u'profit'] [u'world', u'mass', u'trial', u'aid', u'vaccin', u'disappoint'] [u'zimbabw', u'hop', u'caus', u'upset'] [u'churchman', u'take', u'aussi'] [u'million', u'sack'] [u'aid', u'organis', u'disappoint', u'vaccin', u'result'] [u'staff', u'walk'] [u'akram', u'ask', u'replac', u'warn', u'hampshir'] [u'ambo', u'meet', u'hospit', u'crew', u'concern'] [u'chairman', u'retir', u'earli'] [u'annan', u'push', u'peac', u'cyprus'] [u'atsic', u'leader', u'face', u'court', u'brawl'] [u'atsic', u'improv', u'substandard', u'hous'] [u'aussi', u'dollar', u'hold', u'gain'] [u'aussi', u'women', u'ash'] [u'australian', u'dollar', u'reach', u'year', u'high'] [u'aust', u'help', u'lobbi', u'secur', u'council', u'downer'] [u'belgium', u'hop', u'race', u'year'] [u'bevan', u'like', u'namibia'] [u'blast', u'rock', u'univers', u'cafeteria', u'china'] [u'blast', u'rock', u'beij', u'univers'] [u'boat', u'owner', u'warn', u'rough', u'sea'] [u'bombay', u'longer', u'tax', u'stone'] [u'bomb', u'blast', u'hit', u'southern', u'afghan', u'offici', u'hous'] [u'bomb', u'scare', u'spark', u'evacu'] [u'sweep', u'drain', u'recov', u'hospit'] [u'brack', u'promis', u'relief'] [u'busi', u'confid', u'bottom'] [u'busi', u'look', u'closer', u'adelaid', u'link'] [u'legisl', u'customari', u'updat'] [u'candid', u'forum', u'highlight', u'communic'] [u'canegrow', u'welcom', u'rain'] [u'cash', u'assist', u'offer', u'flood', u'victim'] [u'celtic', u'bring', u'rest', u'star', u'uefa', u'clash'] [u'central', u'land', u'valu', u'rise'] [u'chemic', u'spill', u'close', u'hume', u'highway'] [u'china', u'dismiss', u'latest', u'draft', u'resolut', u'iraq'] [u'coast', u'begin', u'delug'] [u'collin', u'class', u'sub', u'return', u'duti'] [u'columbian', u'guerrilla', u'seiz', u'american', u'pow'] [u'concern', u'grow', u'miss', u'pilot'] [u'condamin', u'river', u'flow'] [u'cotton', u'week', u'coincid', u'worst', u'season'] [u'council', u'hop', u'water', u'effort', u'flush', u'success'] [u'councillor', u'compo'] [u'council', u'offer', u'land', u'valuat', u'rate', u'rise', u'assur'] [u'council', u'audit', u'water'] [u'council', u'merg', u'job'] [u'council', u'work', u'plan', u'dept', u'harboursid'] [u'council', u'wont', u'fund', u'servic'] [u'court', u'hear', u'evid', u'arson', u'committ'] [u'court', u'hear', u'challeng', u'racial', u'discrimin'] [u'court', u'tell', u'capsicum', u'spray', u'aborigin', u'leader'] [u'crean', u'say', u'match', u'determin'] [u'crean', u'say', u'malaysia', u'comment', u'inflammatori'] [u'death', u'toll', u'china', u'quak', u'rise'] [u'defenc', u'forc', u'job', u'hold', u'union'] [u'defenc', u'upgrad', u'jeopardis', u'terror', u'navi'] [u'depress', u'teenag', u'go', u'miss', u'gambier'] [u'villier', u'refus', u'polic', u'drug', u'test'] [u'disput', u'continu', u'histor', u'home', u'futur'] [u'downer', u'condemn', u'north', u'korea', u'missil', u'launch'] [u'drought', u'assist', u'expand'] [u'drown', u'fishermen', u'name'] [u'drug', u'kill', u'seven', u'million', u'year', u'studi'] [u'dump', u'candid', u'criticis', u'labor', u'parti'] [u'east', u'timor', u'seek', u'help', u'wiranto'] [u'england', u'thorp', u'want', u'play'] [u'ethiopia', u'bekel', u'eye', u'world', u'doubl'] [u'farmer', u'confer', u'discuss', u'trade'] [u'farmer', u'seek', u'fund', u'veget', u'plan'] [u'farmer', u'welcom', u'rain', u'relief'] [u'fear', u'air', u'sugar', u'job'] [u'ferguson', u'blast', u'obeid', u'faction', u'fight'] [u'servic', u'urg', u'caution', u'resid'] [u'court', u'beckham', u'kidnap', u'plot'] [u'flood', u'close', u'school', u'road'] [u'ambassador', u'urg', u'speak', u'north', u'korea'] [u'polic', u'offic', u'testifi', u'royal'] [u'forum', u'call', u'water', u'murray'] [u'soldier', u'kill', u'helicopt', u'crash'] [u'freeman', u'cours', u'melbourn', u'meet'] [u'ganguli', u'wari', u'england', u'threat'] [u'gold', u'coast', u'continu', u'fight', u'life'] [u'gollan', u'hit', u'height'] [u'govt', u'give', u'ahead', u'brisban', u'cruis', u'ship'] [u'govt', u'push', u'rise', u'childcar', u'worker'] [u'govt', u'tight', u'lip', u'univers', u'reform'] [u'greec', u'deni', u'game', u'prepar', u'schedul'] [u'green', u'candid', u'want', u'forest', u'commit'] [u'green', u'oppos', u'west', u'coast', u'wind', u'farm'] [u'group', u'consid', u'tick', u'clearanc', u'chemic'] [u'hawk', u'hang', u'fourth', u'place'] [u'heartbreak', u'rocker', u'howi', u'epstein', u'die', u'age'] [u'hemsley', u'claim', u'stage', u'gollan', u'lead'] [u'highway', u'open', u'flash', u'flood'] [u'hodgson', u'favourit', u'superbik', u'stutter'] [u'hope', u'rain', u'boost', u'water', u'storag'] [u'hospit', u'budget', u'microscop'] [u'hous', u'valuat', u'review'] [u'howard', u'prais', u'resolut', u'iraq'] [u'hurst', u'consid', u'closest', u'rival'] [u'bangladesh', u'play', u'test', u'kenya', u'coach'] [u'injuri', u'jinx', u'hit', u'ireland', u'championship', u'hop'] [u'insur', u'woe', u'shear', u'tradit'] [u'investig', u'sydney', u'rail', u'incid'] [u'iraq', u'invit', u'deleg', u'confirm', u'cooper'] [u'irrig', u'highlight', u'need', u'stop', u'blame', u'game'] [u'isra', u'armi', u'free', u'reuter', u'cameraman'] [u'jerusalem', u'snowfal'] [u'joey', u'oppon', u'unknown'] [u'joey', u'oceania', u'play'] [u'juve', u'coach', u'lippi', u'wari', u'troubl'] [u'keller', u'agre', u'year', u'spur', u'extens'] [u'kenyan', u'author', u'seiz', u'ivori', u'tusk', u'arrest'] [u'kewel', u'rush', u'prolong', u'stay', u'leed'] [u'kiwi', u'delay', u'brawl', u'report'] [u'krige', u'quit', u'south', u'africa', u'world'] [u'lawyer', u'surpris', u'corrupt', u'alleg'] [u'lihir', u'announc', u'declin', u'year', u'profit'] [u'long', u'miss', u'season', u'start'] [u'sugar', u'price', u'lead', u'lower', u'land', u'valuat'] [u'mackay', u'get', u'forens', u'offic'] [u'magnesium', u'smelter'] [u'die', u'crash'] [u'fin', u'drug', u'steal', u'good', u'charg'] [u'face', u'court', u'polic', u'assault', u'charg'] [u'mening', u'trial', u'focus', u'infant', u'respons'] [u'michael', u'jackson', u'sue', u'documentari', u'maker'] [u'ministri', u'construct', u'poor', u'build'] [u'miss', u'pilot', u'safe'] [u'miss', u'tourist', u'safe'] [u'rain', u'forecast', u'mackay'] [u'rain', u'need', u'drought'] [u'face', u'trail', u'vietnam'] [u'mugab', u'criticis', u'british', u'brother'] [u'natur', u'disast', u'area', u'declar'] [u'natur', u'disast', u'area', u'declar', u'downpour'] [u'hour', u'medic', u'servic', u'open'] [u'power', u'corrupt', u'watchdog'] [u'surveil', u'equip', u'monitor', u'shorelin'] [u'york', u'give', u'special', u'treatment', u'royalti'] [u'korea', u'fire', u'missil', u'japan'] [u'korea', u'launch', u'missil', u'wednesday'] [u'warn', u'worri', u'confid', u'aussi'] [u'govt', u'make', u'bulli', u'pass', u'pledg'] [u'nurs', u'home', u'disput', u'closer', u'resolut'] [u'say', u'peac', u'monitor', u'leav'] [u'octopus', u'learn', u'open', u'shrimp', u'jar'] [u'olonga', u'omiss', u'polit', u'streak'] [u'olymp', u'champion', u'schumann', u'world', u'indoor'] [u'onlin', u'poll', u'school', u'hour', u'launch'] [u'opera', u'mourn', u'death', u'bariton', u'singer'] [u'blame', u'popul', u'drop', u'public', u'servic', u'cull'] [u'pilot', u'explain', u'emerg', u'land'] [u'back', u'resolut', u'iraq'] [u'elect', u'allow', u'disput', u'solv'] [u'face', u'misconduct', u'charg'] [u'pngs', u'instal', u'opposit', u'leader'] [u'polic', u'associ', u'speak', u'safeti', u'issu'] [u'polic', u'issu', u'break', u'warn'] [u'polic', u'motorcycl', u'victim'] [u'polic', u'raid', u'find', u'cannabi', u'plant'] [u'polic', u'road', u'victim'] [u'poni', u'support', u'promis', u'fight'] [u'star', u'bad', u'draw', u'bomb', u'busker'] [u'powel', u'downplay', u'north', u'korea', u'missil', u'fire'] [u'select', u'fight', u'parramatta'] [u'probe', u'clear', u'council', u'general', u'manag'] [u'public', u'better', u'tast', u'water'] [u'qanta', u'boss', u'want', u'rein', u'cost'] [u'qanta', u'cabin', u'crew', u'threaten', u'industri', u'action'] [u'qanta', u'staff', u'return', u'work'] [u'govt', u'review', u'cruis', u'termin', u'plan'] [u'question', u'land', u'deal'] [u'quoll', u'move', u'cane', u'toad', u'threat'] [u'radcliff', u'contempl', u'marathon'] [u'rain', u'boost', u'tibooburra', u'water', u'sourc'] [u'rain', u'continu', u'fall', u'wide'] [u'rain', u'damag', u'wine', u'grape'] [u'rain', u'end', u'kosciuszko', u'drama'] [u'rainforest', u'provid', u'effect', u'cancer', u'treatment'] [u'rain', u'offer', u'respit', u'need'] [u'rain', u'spark', u'water', u'restrict', u'eas'] [u'rain', u'top', u'region', u'water', u'suppli'] [u'rare', u'drug', u'seiz', u'raid'] [u'real', u'estat', u'institut', u'air', u'land', u'valuat', u'concern'] [u'recycl', u'save', u'million', u'dollar'] [u'reiq', u'welcom', u'coast', u'land', u'valuat'] [u'restaur', u'save', u'demolit'] [u'revamp', u'virus', u'spread', u'globe'] [u'clip', u'wing', u'coff', u'servic'] [u'rise', u'river', u'isol', u'resid'] [u'swear', u'south', u'korean', u'presid'] [u'royal', u'commiss', u'tell', u'polic', u'train', u'corrupt'] [u'rubin', u'roll', u'return'] [u'rudd', u'call', u'downer', u'travel', u'north', u'korea'] [u'rule', u'plant', u'crop', u'strengthen'] [u'forum', u'discuss', u'murray', u'river', u'issu'] [u'saint', u'keen', u'warn', u'lend', u'hand'] [u'saleyard', u'see', u'record', u'price', u'stock'] [u'establish', u'anti', u'theft', u'law'] [u'schoolgirl', u'mother', u'unhappi', u'coron', u'find'] [u'secur', u'council', u'end', u'privat', u'debat', u'iraq'] [u'settlement', u'reach', u'whyalla', u'airlin', u'disput'] [u'seven', u'injur', u'explos', u'beij'] [u'share', u'market', u'plung', u'global', u'uncertainti'] [u'shire', u'complain', u'western', u'power', u'servic'] [u'shire', u'associ', u'confer', u'begin'] [u'snowtown', u'murder', u'trial', u'reveal', u'chill'] [u'southcorp', u'profit'] [u'south', u'korea', u'undet', u'missil', u'launch'] [u'spur', u'fulham', u'share', u'point'] [u'kilda', u'readi', u'welcom', u'warn'] [u'strength', u'dollar', u'surpris', u'market'] [u'student', u'parliamentari', u'educ'] [u'surviv', u'motiv', u'north', u'korean', u'regim', u'downer'] [u'swain', u'miss', u'rooster', u'clash'] [u'sydney', u'water', u'storag', u'level', u'despit', u'rain'] [u'tangara', u'train', u'take', u'track', u'safeti'] [u'tap', u'reveal', u'alleg', u'milit', u'campaign', u'bush'] [u'tasmanian', u'induct', u'photographi', u'hall', u'fame'] [u'tasmania', u'busi', u'buoyant', u'nation'] [u'offic', u'offer', u'extens', u'drought'] [u'tendulkar', u'drive', u'kill', u'say'] [u'threat', u'spark', u'america', u'warn'] [u'toad', u'menac', u'threaten', u'quoll'] [u'seed', u'nieminen', u'copenhagen'] [u'torino', u'sack', u'coach', u'day', u'crowd', u'troubl'] [u'tree', u'farm', u'concern', u'air'] [u'trial', u'aim', u'help', u'indigen', u'youth'] [u'trial', u'hear', u'discuss'] [u'trucki', u'dead', u'horror', u'smash'] [u'truck', u'fatal', u'crash', u'carri', u'regist', u'post'] [u'trucki', u'kill', u'horror', u'smash'] [u'union', u'health', u'meet', u'hospit', u'reform'] [u'union', u'includ', u'matern', u'leav', u'agreement'] [u'peacekeep', u'forc', u'line', u'border', u'near', u'west', u'timor'] [u'outliv', u'iraq', u'crisi', u'diplomat'] [u'carrier', u'arriv', u'gulf'] [u'saddam', u'time'] [u'vice', u'presid', u'rail', u'work', u'hand'] [u'vaughan', u'give', u'clear'] [u'lib', u'face', u'parliament', u'poll', u'disast'] [u'wagga', u'wagga', u'teen', u'pregnanc', u'rate', u'need', u'attent'] [u'opposit', u'appoint', u'agricultur', u'spokesman'] [u'warn', u'admit', u'second', u'offenc'] [u'warn', u'count', u'cost'] [u'warn', u'seek', u'advic', u'appeal'] [u'western', u'countri', u'remain', u'divid', u'iraq'] [u'wilkinson', u'tell', u'step', u'fight'] [u'wiranto', u'charg', u'crime', u'human'] [u'woman', u'charg', u'possess', u'rare', u'drug'] [u'youhana', u'lift', u'pakistan'] [u'defend', u'popul', u'shrink', u'claim'] [u'report', u'slam', u'warn', u'vagu', u'unsatisfactori'] [u'accc', u'ask', u'court', u'seiz', u'conman', u'foster', u'passport'] [u'accid', u'victim', u'name'] [u'milan', u'eas'] [u'examin', u'warn', u'anti', u'dope', u'find'] [u'akram', u'claim', u'pakistan', u'down', u'dutch'] [u'alston', u'seiz', u'glow', u'telstra', u'report'] [u'ambo', u'crew', u'commit'] [u'conced', u'overambiti'] [u'confirm', u'loss'] [u'lose', u'investor', u'confid'] [u'aquacultur', u'council', u'speak', u'kingfish', u'claim'] [u'armi', u'small', u'meet', u'demand'] [u'art', u'boost', u'spin', u'off'] [u'asic', u'charg', u'wine', u'giant', u'bottl', u'forecast'] [u'asic', u'urg', u'caution', u'insur', u'polici'] [u'achiev', u'profit', u'increas', u'month'] [u'tell', u'inform', u'withhold'] [u'atsic', u'chief', u'hinder', u'polic', u'brawl', u'court'] [u'atsic', u'deputi', u'ruddock', u'clash', u'clark', u'court', u'cost'] [u'aussi', u'dollar', u'hit', u'high'] [u'sport', u'award', u'finalist', u'announc'] [u'aust', u'airlin', u'look', u'asian', u'market'] [u'australia', u'mark', u'year', u'diplomaci', u'vietnam'] [u'australia', u'target', u'england', u'india'] [u'beatti', u'hit', u'obscen', u'corpor', u'payout'] [u'beatti', u'vow', u'walk', u'away', u'schooli'] [u'billiton', u'nativ', u'titl', u'effort', u'recognis'] [u'black', u'instal', u'hold', u'sculli', u'insist'] [u'black', u'stick', u'brink', u'rain', u'wash'] [u'blake', u'proclaim', u'innoc', u'wife', u'murder'] [u'board', u'defend', u'pest', u'control', u'rate', u'rise'] [u'botero', u'score', u'trick', u'bolivar', u'hammer', u'penarol'] [u'hospit', u'drain', u'ordeal'] [u'brazil', u'star', u'admit', u'world', u'fluke'] [u'bryant', u'score', u'streak', u'laker', u'streak'] [u'bundaberg', u'chang'] [u'bush', u'unimpress', u'iraqi', u'weapon', u'disclosur'] [u'bush', u'will', u'assassin', u'saddam', u'report'] [u'busi', u'usual', u'threat', u'boss'] [u'butler', u'predict', u'immin', u'action', u'iraq'] [u'campus', u'park', u'caus', u'headach'] [u'canberra', u'rebuild', u'bushfir'] [u'cane', u'farmer', u'deregul', u'concern'] [u'carr', u'announc', u'person', u'terror', u'unit'] [u'wash', u'river', u'driver', u'miss'] [u'cautious', u'welcom', u'crop', u'plan'] [u'china', u'deni', u'provid', u'north', u'korea', u'missil'] [u'china', u'quak', u'aftershock', u'death', u'toll'] [u'claim', u'rise', u'fuel', u'cost', u'lead', u'higher', u'freight'] [u'coalit', u'say', u'union', u'fight', u'delay', u'train', u'black'] [u'cohen', u'latest', u'england', u'injuri', u'worri'] [u'committe', u'consid', u'stock', u'rout', u'manag'] [u'conman', u'foster', u'plan', u'return', u'soon', u'court', u'hear'] [u'consult', u'question', u'valu', u'free', u'trade'] [u'coron', u'damn', u'polic', u'handl', u'fatal', u'domest'] [u'costa', u'accus', u'avoid', u'polic', u'corrupt'] [u'council', u'hop', u'avoid', u'elect', u'cost'] [u'council', u'offer', u'chariti', u'group', u'emerg', u'shelter'] [u'council', u'oppos', u'nuclear', u'wast', u'transport'] [u'council', u'nois', u'neighbourhood', u'issu'] [u'coupl', u'rescu', u'boat', u'run', u'aground'] [u'cowboy', u'look', u'sponsor'] [u'crane', u'hit', u'powerlin', u'driver', u'die', u'massiv', u'shock'] [u'crash', u'claim', u'motorcyclist'] [u'crowd', u'shout', u'immigr', u'offici'] [u'cuthbert', u'statu'] [u'dead', u'whale', u'turn', u'visitor', u'away'] [u'declin', u'male', u'teacher', u'continu'] [u'defenc', u'forc', u'focus', u'fight', u'terror'] [u'defenc', u'review', u'call', u'rebal', u'forc'] [u'democrat', u'urg', u'action', u'smoke', u'ban'] [u'deportivo', u'thank', u'doubl', u'boost'] [u'detaine', u'children', u'attend', u'port', u'augusta', u'school'] [u'canio', u'link', u'scottish', u'return'] [u'dollar', u'hit', u'high'] [u'downer', u'call', u'china', u'mediat', u'north', u'korea', u'crisi'] [u'doyl', u'demand', u'bushfir', u'inquiri'] [u'driver', u'urg', u'care', u'flood', u'area'] [u'dutch', u'captain', u'write', u'england', u'india', u'pakistan'] [u'earli', u'finish', u'predict', u'demolit'] [u'eccleston', u'back', u'mosley', u'rule', u'battl'] [u'environ', u'centr', u'open'] [u'eros', u'chemic', u'threaten', u'reef', u'report'] [u'expert', u'challeng', u'road', u'closur', u'issu'] [u'quarter', u'finalist', u'wolv', u'watford', u'draw'] [u'farmer', u'slow', u'seek', u'drought'] [u'farm', u'accid', u'claim', u'man', u'life'] [u'father', u'daughter'] [u'destroy', u'sign', u'write', u'busi'] [u'firefight', u'continu', u'wilder', u'area', u'effort'] [u'firefight', u'wash', u'away', u'waterbomb'] [u'fisher', u'face', u'court', u'charg'] [u'flood', u'warn', u'issu', u'river'] [u'champion', u'chela', u'beat', u'mexico'] [u'whyalla', u'director', u'prais', u'crash', u'compo'] [u'freeman', u'media', u'launch', u'end', u'shambl'] [u'french', u'galthi', u'withdraw'] [u'fuel', u'price', u'doubl', u'zimbabw'] [u'fund', u'announc', u'barcoo', u'centr'] [u'fyff', u'bendigo', u'mayor'] [u'gigg', u'fire', u'unit'] [u'glori', u'steal', u'yao', u'broadway', u'debut'] [u'golf', u'famili', u'affair', u'nicklaus', u'foursom'] [u'govt', u'condemn', u'claim', u'wont', u'interven'] [u'govt', u'defend', u'rise', u'award', u'earner'] [u'gulf', u'watcher', u'warn', u'aust', u'ship', u'littl', u'defenc'] [u'gunman', u'kill', u'wound'] [u'headmast', u'prais', u'staff', u'rescu', u'effort'] [u'henman', u'encourag', u'despit', u'round', u'defeat'] [u'herbert', u'tip', u'join', u'tiger'] [u'heroin', u'death', u'declin', u'report'] [u'highway', u'clean', u'continu', u'truck', u'crash'] [u'hill', u'satisfi', u'fleet'] [u'hodg', u'chaffey', u'match'] [u'holi', u'film', u'craze', u'itali'] [u'hong', u'kong', u'protest', u'secur'] [u'hospit', u'smoke', u'affect', u'profit', u'studi'] [u'examin', u'kenya', u'shock', u'world'] [u'immigr', u'swoop', u'bag', u'fruitpick'] [u'industri', u'action', u'increas', u'brisban'] [u'inspector', u'probe', u'public', u'pool'] [u'iraqi', u'like', u'east', u'timores', u'need', u'foreign'] [u'islam', u'countri', u'weapon', u'mahathir'] [u'jag', u'boss', u'lambi', u'step'] [u'jail', u'deterr', u'drug', u'user', u'research'] [u'judg', u'assess', u'tidi', u'town', u'entri'] [u'keegan', u'fear', u'citi', u'nearer', u'euro', u'elit'] [u'kefu', u'confirm', u'japan'] [u'kenyan', u'govern', u'suspend', u'soccer', u'feder'] [u'king', u'island', u'resign', u'high', u'fuel', u'price'] [u'kuerten', u'save', u'match', u'point', u'mexico'] [u'labor', u'fear', u'defenc', u'job'] [u'logger', u'protest', u'outsid', u'parliament'] [u'loss', u'sharehold', u'million'] [u'lower', u'winegrap', u'harvest', u'price', u'posit'] [u'mahathir', u'suggest', u'muslim', u'strike', u'stop', u'iraq'] [u'hurt', u'driveway', u'ordeal'] [u'jail', u'stepfath', u'kill'] [u'miss', u'wash', u'victoria', u'river'] [u'polic', u'assault', u'charg', u'remand', u'custodi'] [u'order', u'complet', u'communiti', u'work', u'train'] [u'suffer', u'massiv', u'electr', u'shock', u'hit'] [u'market', u'fight', u'close', u'point', u'higher'] [u'maroochi', u'council', u'consid', u'help', u'cooloola'] [u'marshal', u'abreast', u'parliamentari', u'rule'] [u'marsh', u'back', u'australia'] [u'mari', u'tear', u'offici', u'miracl', u'church', u'rule'] [u'minist', u'announc', u'graze', u'leas', u'rebat', u'extens'] [u'montgomeri', u'compet', u'championship'] [u'time', u'comment', u'region', u'develop'] [u'mosley', u'side', u'minardi', u'cash'] [u'highlight', u'doctor', u'shortag', u'woe'] [u'seek', u'support'] [u'murder', u'trial', u'hear', u'phone', u'tap'] [u'northampton', u'air', u'festiv', u'shift', u'concern'] [u'coalit', u'make', u'hospit', u'promis'] [u'rail', u'spotlight'] [u'polic', u'search', u'sweep', u'bridg'] [u'push', u'higher', u'crave', u'heat'] [u'oppn', u'suggest', u'minist', u'name', u'polic', u'graft'] [u'oscar', u'winner', u'hang', u'ballot'] [u'parliamentari', u'inquiri', u'call', u'bank', u'account'] [u'parliament', u'eject', u'breastfe'] [u'perth', u'ban', u'circus', u'anim', u'act'] [u'pink', u'snapper', u'limit', u'introduc'] [u'plan', u'boundari', u'releas', u'nation', u'park'] [u'polic', u'believ', u'trap', u'wash', u'away', u'vehicl'] [u'polic', u'investig', u'sexual', u'assault', u'perth', u'woman'] [u'polic', u'probe', u'child', u'death'] [u'polic', u'probe', u'shop', u'theft'] [u'polic', u'suspect', u'murder', u'bodi'] [u'polic', u'uproot', u'crop', u'cannabi', u'plant'] [u'pressur', u'water', u'author', u'support'] [u'priest', u'put', u'washer', u'booz', u'cycl'] [u'privat', u'school', u'student'] [u'probe', u'begin', u'industri', u'death'] [u'profit', u'warn', u'brisban', u'hoteli', u'ahead'] [u'program', u'underway', u'fight', u'park', u'weed'] [u'protest', u'halt', u'departur', u'woodchip', u'shipment'] [u'introduc', u'human', u'clone'] [u'tell', u'best', u'behaviour', u'webcast'] [u'race', u'club', u'appeal', u'meet', u'ahead'] [u'race', u'club', u'stun', u'nacion', u'montevideo'] [u'rain', u'help', u'lift', u'water', u'restrict'] [u'rain', u'eas', u'water', u'restrict'] [u'rain', u'offer', u'boost', u'grazier'] [u'rain', u'pour', u'eurobodalla', u'shire'] [u'reject', u'labor', u'candid', u'consid', u'independ'] [u'renew', u'pressur', u'bushfir', u'probe'] [u'report', u'argu', u'australian', u'stake', u'missil', u'defenc'] [u'rescuer', u'head', u'melbourn', u'plane', u'crash', u'site'] [u'reynold', u'sell', u'ambul', u'levi'] [u'riot', u'polic', u'clash', u'squatter', u'argentina'] [u'river', u'forum', u'resolut', u'question'] [u'ruddock', u'seek', u'greater', u'power', u'atsic'] [u'rumsfeld', u'give', u'mix', u'view', u'iraqi', u'firepow'] [u'saddam', u'rule', u'go', u'exil'] [u'saudi', u'agre', u'host', u'plan', u'iraq'] [u'savag', u'look', u'quieter', u'time'] [u'sawmil', u'job', u'threaten', u'recent', u'bushfir'] [u'school', u'convict', u'rapist', u'turn', u'literaci'] [u'schumach', u'roar', u'test'] [u'search', u'continu', u'firefight'] [u'secret', u'break', u'allow', u'terror'] [u'shake', u'agricultur', u'dept', u'job'] [u'channel', u'withdraw', u'pat', u'coverag'] [u'snowtown', u'judg', u'ban', u'juri', u'hear', u'album'] [u'southcorp', u'deni', u'disclosur', u'breach'] [u'storm', u'toll', u'banana', u'crop'] [u'submiss', u'flow', u'chicken', u'farm', u'plan'] [u'sydney', u'inject', u'room', u'needl', u'drug', u'board'] [u'tiger', u'world', u'match', u'play', u'showdown'] [u'seed', u'fall', u'copenhagen', u'open'] [u'torino', u'game', u'home'] [u'tougher', u'water', u'restrict', u'loom'] [u'tour', u'valencia', u'stage', u'lead', u'place'] [u'townsvill', u'coal', u'seam', u'methan'] [u'trainer', u'appeal', u'follow', u'oliv', u'death'] [u'trio', u'charg', u'drug', u'relat', u'offenc'] [u'truck', u'driver', u'campaign', u'road', u'safeti'] [u'truck', u'firm', u'announc', u'profit', u'boost'] [u'media', u'world', u'savag', u'publicist'] [u'parliament', u'debat', u'iraq', u'action'] [u'union', u'air', u'tertiari', u'educ', u'concern'] [u'union', u'face', u'challeng', u'increas', u'casual'] [u'union', u'seek', u'detail'] [u'unit', u'milan', u'advanc', u'quarter'] [u'missil', u'edict', u'iraq', u'make', u'differ'] [u'acknowledg', u'pakistani', u'cooper', u'qaeda'] [u'consum', u'confid', u'lowest', u'year'] [u'resum', u'food', u'north', u'korea'] [u'bomb', u'missil', u'site', u'iraq'] [u'venter', u'ban', u'week'] [u'govt', u'outlin', u'polici', u'direct'] [u'govt', u'urg', u'forest', u'harvest'] [u'victorian', u'silk', u'face', u'court', u'accus', u'contempt'] [u'villeneuv', u'unhappi', u'reliabl'] [u'virgin', u'blue', u'safeti', u'check', u'engin'] [u'wafl', u'waiv', u'docker', u'payment'] [u'wake', u'hospit', u'heart', u'attack'] [u'warn', u'imag', u'suffer', u'gilchrist'] [u'warn', u'take', u'chin'] [u'water', u'park', u'need', u'rain'] [u'weapon', u'inspector', u'need', u'time', u'blix'] [u'resourc', u'announc', u'loss'] [u'woman', u'die', u'meningococc', u'infect'] [u'woman', u'bodi', u'tie', u'stab'] [u'zimbabw', u'flower', u'save', u'player', u'revolt', u'sourc'] [u'million', u'develop', u'plan', u'maroochydor'] [u'speed', u'limit', u'come', u'forc'] [u'abbott', u'defend', u'govt', u'posit', u'award', u'rise'] [u'aborigin', u'advoc', u'pressur', u'polic', u'inquest'] [u'actor', u'continu', u'crusad', u'iraq', u'action'] [u'maker', u'deni', u'junk', u'food', u'commerici', u'caus', u'chunki'] [u'advertis', u'industri', u'criticis', u'junk', u'food'] [u'african', u'aid', u'orphan', u'shun', u'humanitarian'] [u'patrol', u'communic', u'sit', u'iraq'] [u'ajax', u'arsenal', u'cours', u'quarter'] [u'alcohol', u'restrict', u'success', u'polic'] [u'alleg', u'flasher', u'refus', u'bail'] [u'parti', u'clear', u'oasi', u'investig'] [u'ameri', u'wont', u'declar', u'drought', u'natur', u'disast'] [u'armi', u'say', u'sack', u'offic', u'scam'] [u'atsic', u'head', u'order', u'blockad', u'hotel', u'court', u'hear'] [u'aust', u'afford', u'missil', u'defenc', u'crean'] [u'aust', u'govt', u'embarrass', u'guantanamo', u'terri', u'hick'] [u'aust', u'post', u'work', u'resolv', u'mail', u'woe'] [u'australian', u'conting', u'gulf', u'top'] [u'aust', u'transport', u'infrastructur', u'suffer', u'report'] [u'author', u'meet', u'blue', u'green', u'alga'] [u'bali', u'survivor', u'unveil', u'memori'] [u'banana', u'farmer', u'offer', u'disast', u'relief'] [u'bank', u'launch', u'initi', u'combat', u'ident', u'fraud'] [u'ban', u'warn', u'allow', u'train', u'victoria'] [u'steel', u'record', u'half', u'year', u'profit'] [u'black', u'cap', u'crush', u'bangladesh'] [u'black', u'hawk', u'crash', u'colombia', u'dead'] [u'black', u'spot', u'fund', u'improv', u'riverland', u'road'] [u'blair', u'face', u'parti', u'revolt', u'iraq', u'stanc'] [u'bligh', u'interven', u'convict', u'rapist'] [u'remain', u'condit', u'drain', u'ordeal'] [u'bridg', u'delay', u'stop', u'develop', u'council'] [u'brogden', u'promis', u'npws', u'job', u'transfer', u'maitland'] [u'brogden', u'propos', u'school', u'disciplin', u'agreement'] [u'burnley', u'fulham', u'reach', u'quarter'] [u'burrendong', u'rise', u'relic'] [u'butterfli', u'face', u'extinct', u'threat'] [u'butt', u'campaign', u'balanc', u'tourist', u'board'] [u'cairn', u'mccullum', u'fin', u'nightclub', u'incid'] [u'waiv', u'rat', u'canberra', u'resid'] [u'cape', u'associ', u'consid', u'port', u'propos'] [u'ceduna', u'resid', u'turn', u'oppos', u'kingfish', u'farm'] [u'china', u'russia', u'unit', u'peac', u'iraq', u'solut'] [u'chines', u'forc', u'sleep', u'outdoor', u'follow'] [u'civic', u'centr', u'hall', u'eventu'] [u'coke', u'spray', u'wheat', u'crop', u'yield'] [u'confus', u'ask', u'world', u'tap'] [u'coron', u'hand', u'silo', u'death', u'find'] [u'costa', u'critic', u'magistr', u'decis'] [u'council', u'ask', u'rethink', u'elector', u'chang'] [u'council', u'back', u'sister', u'citi', u'plan'] [u'council', u'question', u'alga', u'studi', u'relev'] [u'council', u'support', u'baxter', u'children', u'school'] [u'council', u'waiv', u'rat', u'bushfir', u'victim'] [u'court', u'cut', u'paedophil', u'priest', u'jail', u'term'] [u'crash', u'investig', u'fail', u'establish', u'caus'] [u'crean', u'content', u'ambassador', u'contrit', u'talk'] [u'cricket', u'associ', u'call', u'drug', u'educ'] [u'csiro', u'hail', u'increas', u'rare', u'fish', u'popul'] [u'darl', u'down', u'join', u'lobbi', u'enterpris', u'zone'] [u'develop', u'hold', u'drought', u'condit'] [u'doc', u'work', u'boost', u'dareton', u'servic'] [u'downer', u'disturb', u'north', u'korean', u'nuclear', u'reactiv'] [u'driver', u'jail', u'road', u'rage', u'death', u'unborn', u'babi'] [u'engin', u'train', u'catch'] [u'farmer', u'appeal', u'joos', u'decis'] [u'farmer', u'concern', u'dept', u'cut'] [u'farmer', u'urg', u'complet', u'applic'] [u'fear', u'chines', u'quak', u'toll', u'rise'] [u'govt', u'consid', u'missil', u'defenc', u'hill'] [u'figur', u'highlight', u'water', u'woe'] [u'firefight', u'await', u'cooler', u'weather'] [u'firefight', u'bodi', u'flash', u'flood'] [u'fish', u'boat', u'tow', u'yeppoon'] [u'flash', u'flood', u'bring', u'relief', u'north'] [u'flower', u'pledg', u'continu', u'protest'] [u'fund', u'drought', u'restrict', u'iraqi', u'refuge', u'plan'] [u'german', u'dog', u'licens', u'poop'] [u'goalless', u'draw', u'inter', u'send', u'barcelona'] [u'govt', u'advertis', u'hospit', u'tender'] [u'grader', u'work', u'overtim', u'drench'] [u'grazier', u'confid', u'fair', u'hear', u'govt'] [u'grazier', u'urg', u'chang', u'disast', u'plan'] [u'green', u'go', u'rest', u'best', u'seek', u'world', u'berth'] [u'health', u'expert', u'vaccin', u'concern'] [u'highway', u'reopen', u'fatal', u'crash'] [u'hungerford', u'sate', u'rainfal'] [u'icac', u'hand', u'oasi', u'report'] [u'iluka', u'close', u'mildura', u'oper'] [u'indigen', u'cricket', u'battl', u'alic'] [u'investig', u'underway', u'bodi'] [u'invest', u'figur', u'better', u'expect'] [u'isisford', u'confid', u'tourist', u'project'] [u'israel', u'sharon', u'oust', u'netanyahu', u'seal', u'coalit'] [u'jail', u'firefight', u'turn', u'arsonist'] [u'japan', u'warn', u'nuclear', u'reaction'] [u'fear', u'aris', u'prison', u'closur'] [u'labor', u'unveil', u'plan', u'increas', u'bulk', u'bill'] [u'land', u'clear', u'plan', u'give', u'govt'] [u'lifesav', u'consid', u'rain', u'make', u'abil'] [u'major', u'stock', u'thump'] [u'jail', u'test', u'bring', u'rape', u'convict'] [u'face', u'trial', u'hardwar', u'store', u'blaze'] [u'maritim', u'worker', u'deplor', u'flag', u'conveni'] [u'molecul', u'protect', u'radiat', u'poison'] [u'rain', u'predict', u'mackay'] [u'support', u'stranger', u'rule', u'review'] [u'moya', u'surviv', u'scare', u'reach', u'mexican', u'quarter'] [u'call', u'woodchip', u'transport', u'review'] [u'concern', u'fund', u'claim'] [u'argu', u'region', u'health', u'staff'] [u'nasa', u'engin', u'foretel', u'shuttl', u'disast'] [u'hold', u'goorjian', u'incid'] [u'nehra', u'rip', u'england'] [u'netanyahu', u'accept', u'financ', u'portfolio', u'reshuffl'] [u'netbal', u'sue', u'pregnanc'] [u'figur', u'union', u'worker', u'wage'] [u'night', u'time', u'right', u'time', u'bacher'] [u'korea', u'restart', u'yongbyon', u'reactor', u'report'] [u'missil', u'missil', u'shield', u'downer', u'tell', u'china'] [u'support', u'second', u'resolut', u'chirac'] [u'pakistan', u'say', u'confid', u'ganguli'] [u'fisheri', u'monitor', u'river', u'fish', u'kill'] [u'senior', u'corrupt', u'investig', u'resign'] [u'govt', u'nurs', u'sympathi', u'breastfe'] [u'govt', u'reject', u'popul', u'propos'] [u'speaker', u'keep', u'abreast', u'parliament', u'rule'] [u'price', u'year', u'high'] [u'parri', u'council', u'defend', u'water', u'talk', u'withdraw'] [u'petit', u'oppos', u'brothel'] [u'back', u'missil', u'defenc', u'investig'] [u'say', u'missil', u'defenc', u'worth', u'explor'] [u'polic', u'interview', u'woman', u'incid'] [u'polic', u'investig', u'cannabi'] [u'polic', u'firefight', u'kill', u'flash', u'flood'] [u'polic', u'prepar', u'case', u'stab', u'charg'] [u'polic', u'probe', u'malle', u'cannabi'] [u'polic', u'downsiz', u'miss', u'search'] [u'pont', u'kill'] [u'public', u'meet', u'discuss', u'power', u'problem'] [u'public', u'urg', u'drug', u'dealer'] [u'criticis', u'propos', u'home', u'invas'] [u'govt', u'extend', u'vehicl', u'rego', u'lawnmow'] [u'showi', u'solv', u'murder', u'year'] [u'radiat', u'emiss', u'world', u'limit', u'studi'] [u'rain', u'expect', u'inland'] [u'rapper', u'releas', u'jail'] [u'record', u'break', u'nehra', u'rout', u'england'] [u'refuge', u'support', u'rais', u'appeal', u'fund'] [u'region', u'busi', u'work', u'drought'] [u'region', u'properti', u'price', u'rise'] [u'remot', u'terrain', u'hinder', u'bodi', u'recoveri', u'effort'] [u'resid', u'seek', u'duplex', u'develop', u'moratorium'] [u'rival', u'cancel', u'time', u'constraint'] [u'road', u'fund', u'cairn', u'slipway'] [u'robredo', u'shock', u'safin', u'dubai'] [u'rough', u'sea', u'postpon', u'race'] [u'ruddock', u'visit'] [u'saddam', u'destroy', u'missil', u'downer'] [u'scallop', u'project', u'closer', u'product'] [u'scath', u'report', u'public', u'sector', u'agenc'] [u'school', u'nomin', u'student', u'offici', u'role'] [u'scott', u'sink', u'langer', u'garcia', u'fall'] [u'search', u'resum', u'miss'] [u'separatist', u'deni', u'bomb', u'philippin', u'powerlin'] [u'wind', u'firefight', u'brace'] [u'sever', u'storm', u'lash', u'victoria'] [u'shearer', u'sink', u'bayer', u'leverkusen'] [u'shire', u'support', u'cattl', u'yard', u'propos'] [u'slater', u'doubl', u'blue', u'spree'] [u'star', u'war', u'cost', u'phantom', u'menac'] [u'south', u'east', u'rainfal', u'reliev', u'water', u'restrict'] [u'state', u'agenc', u'local', u'govt', u'rat'] [u'state', u'fight', u'spot', u'final'] [u'strong', u'dollar', u'offset', u'price', u'ract', u'protest'] [u'sydney', u'king', u'castl'] [u'taiwan', u'beef', u'missil', u'defens'] [u'tamworth', u'propos', u'leve', u'industri', u'area'] [u'tanker', u'mackay', u'run', u'aground'] [u'telstra', u'announc', u'half', u'year', u'profit'] [u'telstra', u'chief', u'bank', u'compani', u'formid'] [u'telstra', u'sale', u'agenda', u'unchang', u'profit', u'slump'] [u'tonga', u'ban', u'newspap', u'subvers'] [u'toppl', u'saddam', u'help', u'bring', u'peac', u'bush'] [u'totti', u'magic', u'give', u'roma', u'shock', u'valencia'] [u'transport', u'compani', u'face', u'court', u'cyanid'] [u'truck', u'blockad', u'lead', u'traffic', u'chao'] [u'truck', u'wheel', u'crash', u'hous'] [u'launch', u'season', u'launceston', u'concert'] [u'turkey', u'close', u'border', u'iraq', u'evacu', u'embassi'] [u'turkey', u'evacu', u'embassi', u'baghdad'] [u'turkey', u'readi', u'stamp', u'troop', u'deal'] [u'tweed', u'council', u'lift', u'water', u'restrict'] [u'teenag', u'charg', u'start', u'fire'] [u'govt', u'divid', u'iraq', u'posit'] [u'union', u'oppos', u'prison', u'closur', u'plan'] [u'secur', u'council', u'hold', u'close', u'session'] [u'farmer', u'australia', u'iraq', u'wheat', u'contract'] [u'desir', u'govern', u'iraq', u'special', u'envoy'] [u'move', u'eas', u'iraq', u'opposit', u'fear'] [u'nurs', u'home', u'patient', u'question', u'fatal'] [u'govt', u'bid', u'reform', u'industri', u'relat'] [u'video', u'tape', u'columbia', u'crew'] [u'virgin', u'chase', u'allianc', u'rocki', u'gladston'] [u'health', u'minist', u'name', u'corrupt', u'inquiri'] [u'polic', u'smoke', u'work', u'inquiri', u'figur', u'tell'] [u'union', u'want', u'greater', u'role', u'safeti'] [u'road', u'warn', u'fatal', u'motorcycl', u'crash'] [u'whale', u'carcass', u'tow'] [u'william', u'mclaren', u'ahead', u'rule', u'challeng'] [u'william', u'troubl', u'car', u'aerodynam'] [u'woman', u'search', u'nudge', u'beach'] [u'wood', u'advanc', u'upset', u'match', u'play', u'event'] [u'writer', u'withdraw', u'festiv', u'uneth', u'judg'] [u'back', u'landhold', u'incent', u'idea'] [u'yemen', u'arrest', u'arm', u'hospit'] [u'young', u'push', u'refuge', u'perman', u'resid'] [u'youth', u'centr', u'feasibl', u'microscop'] [u'youth', u'charg', u'sydney', u'stab'] [u'erad', u'plan', u'worth', u'csiro'] [u'abbott', u'consid', u'award', u'pay', u'worker'] [u'albani', u'await', u'sentenc', u'child', u'porn'] [u'allianc', u'airlin', u'halt', u'brisban', u'rout'] [u'ord', u'claw', u'point'] [u'appeal', u'long', u'sentenc', u'dismiss'] [u'armstrong', u'shape', u'despit', u'person', u'problem'] [u'arthur', u'advanc', u'copenhagen', u'quarter'] [u'auckland', u'waikato', u'blue'] [u'aussi', u'bowler', u'blow', u'away', u'namibian', u'coach'] [u'aust', u'closer', u'howard'] [u'bayern', u'close', u'titl', u'kaiserslautern'] [u'steel', u'continu', u'monitor', u'job', u'despit'] [u'bicker', u'nation', u'trust', u'heat'] [u'bird', u'return', u'townsvill', u'rain'] [u'blair', u'tell', u'iraq', u'time', u'game'] [u'brawl', u'glove', u'set', u'stage', u'jone', u'ruiz'] [u'hardi', u'merger', u'sharehold'] [u'brogden', u'eas', u'compo', u'rule', u'emerg'] [u'break', u'hill', u'protest', u'nuclear', u'wast', u'plan'] [u'break', u'mast', u'shatter', u'kiwi', u'dream'] [u'bucher', u'pull', u'world', u'indoor', u'championship'] [u'build', u'owner', u'warn', u'watch', u'legionella'] [u'bushfir', u'inquiri', u'wit', u'protect'] [u'cairn', u'health', u'watch', u'dengu', u'fever', u'case'] [u'cairn', u'focus', u'imag', u'chang'] [u'state', u'work', u'prevent'] [u'carr', u'promis', u'build', u'record'] [u'carr', u'promot', u'invest', u'opportun'] [u'claim', u'hospit', u'emerg', u'staff', u'break', u'point'] [u'claim', u'room', u'improv', u'indonesian', u'stock'] [u'clavet', u'quit'] [u'coalit', u'plan', u'bomb', u'iraq', u'zone'] [u'coalit', u'slam', u'delay', u'waterfal', u'disast', u'inquiri'] [u'compani', u'push', u'gold', u'mine', u'project'] [u'coraki', u'evan', u'head', u'room', u'mobil', u'phone', u'tower'] [u'costello', u'will', u'tighten', u'execut', u'payout'] [u'councillor', u'protest', u'iraq', u'motion'] [u'council', u'reject', u'propos', u'walkway', u'design'] [u'council', u'rule', u'renam', u'cureton'] [u'council', u'welcom', u'signag', u'decis'] [u'celebr', u'class', u'run'] [u'cyclon', u'near', u'coast', u'carri', u'littl', u'danger'] [u'dali', u'graphic', u'drench', u'galleri', u'flood'] [u'davi', u'hold', u'open', u'lead'] [u'davi', u'lead', u'open'] [u'disast', u'strike', u'team'] [u'drought', u'bring', u'posit', u'oliv', u'industri'] [u'drought', u'take', u'toll', u'nurseri'] [u'eagl', u'crow', u'clash', u'semi', u'final', u'spot'] [u'ental', u'hous', u'creat', u'nation', u'trust', u'divis'] [u'environ', u'group', u'question', u'tugun', u'bypass', u'plan'] [u'eriksson', u'pledg', u'futur', u'england'] [u'timor', u'indict', u'secur', u'forc', u'militia'] [u'farmer', u'afford', u'rais', u'pay'] [u'farmer', u'reliev', u'rainfal'] [u'farm', u'famili', u'drought', u'divers'] [u'film', u'underway', u'potter', u'instal'] [u'fitzroy', u'river', u'water', u'staff', u'strike'] [u'flash', u'flood', u'east', u'gippsland'] [u'flintoff', u'claim', u'england', u'stop', u'aussi'] [u'flood', u'cut', u'road', u'hall', u'creek', u'kununurra'] [u'flower', u'blignaut', u'brighten', u'olonga', u'gloom'] [u'foreign', u'donat', u'brisban', u'base', u'senat'] [u'mayor', u'speak', u'mismanag', u'report'] [u'fraser', u'share', u'lead', u'wind', u'sweep', u'adelaid', u'cours'] [u'fuel', u'price', u'tip', u'jump'] [u'garden', u'win', u'comp', u'site'] [u'fire', u'power', u'station', u'plan', u'illawarra'] [u'geraldton', u'host', u'major', u'event', u'weekend'] [u'girl', u'braveri', u'rescu', u'recognis'] [u'gonzalez', u'war', u'kuerten', u'moya'] [u'govt', u'give', u'telstra'] [u'govt', u'urg', u'fast', u'rail', u'plan', u'research'] [u'great', u'barrier', u'reef', u'reveget', u'program', u'begin'] [u'green', u'confront', u'carr', u'radioact', u'wast', u'issu'] [u'green', u'prefer', u'potenti', u'independ'] [u'guard', u'gun', u'mission', u'pakistan'] [u'gunner', u'advantag', u'absent', u'enemi'] [u'hang', u'onthi', u'rope', u'dodgi'] [u'hawk', u'secur', u'shoot', u'croc'] [u'health', u'minist', u'defend', u'cardiac', u'clinic'] [u'hib', u'face', u'cash', u'crisi', u'split', u'loom'] [u'hiker', u'die', u'attempt', u'king', u'canyon', u'trail'] [u'histor', u'church', u'list', u'heritag', u'regist'] [u'hop', u'plaza', u'redevelop', u'spark', u'nambour'] [u'howard', u'hose', u'earli', u'elect', u'talk'] [u'hunter', u'polic', u'prepar', u'potenti', u'terror'] [u'ident', u'dismiss', u'land', u'council', u'reveal'] [u'independ', u'palestinian', u'state', u'urgent', u'sharon'] [u'indian', u'booki', u'score', u'world', u'fever'] [u'indonesian', u'polic', u'cite', u'cleric', u'bashir', u'treason'] [u'iraq', u'agre', u'principl', u'destroy', u'missil'] [u'iraq', u'say', u'missil', u'destruct', u'start', u'tomorrow'] [u'isra', u'parliament', u'rubber', u'stamp', u'cabinet'] [u'jail', u'mosqu', u'arsonist', u'lose', u'freedom'] [u'juvenil', u'face', u'court', u'polic', u'hindranc'] [u'kemp', u'urg', u'global', u'approach', u'kyoto', u'protocol'] [u'kosmina', u'say', u'sack', u'laugh', u'stock'] [u'leaney', u'set', u'tiger', u'encount'] [u'life', u'term', u'robber', u'leav', u'victim', u'dead'] [u'liverpool', u'celtic', u'battl', u'britain'] [u'london', u'marathon', u'founder', u'chris', u'brasher', u'die'] [u'mackay', u'doctor', u'number', u'question'] [u'malpa', u'piggeri', u'give', u'ahead'] [u'allow', u'appeal', u'murder', u'convict'] [u'woman', u'hospit', u'head', u'crash'] [u'crush', u'death', u'drill', u'site'] [u'dead', u'freak', u'cricket', u'train', u'accid'] [u'die', u'cross', u'king', u'canyon'] [u'mbeki', u'apologis', u'briton', u'hold', u'error'] [u'mcgrath', u'skittl', u'namibia'] [u'medellin', u'edg', u'ecuador', u'barcelona'] [u'mildura', u'council', u'reveal', u'prefer', u'candid'] [u'minist', u'ask', u'retail', u'stand', u'produc'] [u'monaco', u'gun', u'marseill'] [u'monet', u'exhibit', u'near', u'rockhampton'] [u'public', u'access', u'plan', u'albani', u'port'] [u'moseley', u'thatcher', u'share', u'adelaid', u'lead'] [u'welcom', u'settl', u'nativ', u'titl', u'case', u'away'] [u'moya', u'dump', u'mexican', u'open'] [u'murdoch', u'claim', u'industri', u'regul'] [u'nake', u'rain', u'dancer', u'protect', u'glare'] [u'natwa'] [u'navi', u'boss', u'say', u'sailor', u'pressur', u'anthrax'] [u'netanyahu', u'accept', u'financ', u'minist'] [u'newcastl', u'maritim', u'worker', u'protest', u'sydney'] [u'facil', u'livestock', u'exchang', u'plan'] [u'korea', u'reactor', u'start', u'anger', u'atom', u'watchdog'] [u'korea', u'vow', u'yield', u'pressur'] [u'problem', u'give'] [u'north', u'korea', u'test', u'long', u'rang', u'missil', u'report'] [u'coalit', u'promis', u'crop', u'moratorium'] [u'govt', u'nuclear', u'wast', u'issu'] [u'opposit', u'pledg', u'moratorium'] [u'woman', u'head', u'surgic', u'colleg'] [u'price', u'approach', u'mark'] [u'price', u'contribut', u'massiv', u'caltex', u'turnaround'] [u'spill', u'phillip', u'island'] [u'olonga', u'sidelin', u'fourth', u'game'] [u'dead', u'injur', u'collis'] [u'onlin', u'credit', u'card', u'thief', u'bar'] [u'outspoken', u'liber', u'enthron', u'archbishop'] [u'pakistan', u'seiz', u'drug', u'bomb', u'smuggl'] [u'sport', u'rule', u'hurt', u'fan', u'murdoch'] [u'peac', u'envoy', u'establish', u'brisban', u'street', u'mission'] [u'perri', u'kick', u'crow', u'round'] [u'urg', u'free', u'trade', u'talk', u'caution'] [u'pigeon', u'drop', u'fail', u'ruffl', u'schuttler', u'feather'] [u'pittman', u'eye', u'record', u'world'] [u'plan', u'salin', u'problem', u'fix'] [u'polic', u'declar', u'oper', u'vike', u'success'] [u'polic', u'reject', u'assault', u'rate', u'claim'] [u'polic', u'probe', u'sideshow', u'oper', u'murder'] [u'pont', u'say', u'develop', u'nation', u'vital', u'cricket'] [u'portland', u'centr', u'move', u'closer', u'underwat', u'display'] [u'pressur', u'govt', u'corrupt', u'inquiri'] [u'princip', u'welcom', u'detent', u'centr', u'children'] [u'prison', u'lose', u'claim', u'return', u'work'] [u'probe', u'order', u'polic', u'polit'] [u'push', u'darl', u'down', u'transport', u'boost'] [u'rail', u'museum', u'run', u'steam'] [u'rainfal', u'water', u'flow', u'barwon', u'darl', u'river'] [u'rain', u'help', u'tame', u'bushfir'] [u'real', u'madrid', u'turn', u'attent', u'domest', u'duti'] [u'reiq', u'higlight', u'coast', u'disappear', u'budget', u'hous'] [u'request', u'fruit', u'fund', u'knock'] [u'resid', u'abl', u'appeal', u'bushfir', u'relief', u'refus'] [u'resid', u'mobil', u'phone', u'tower', u'fight'] [u'resurg', u'arazi', u'send', u'kafelnikov', u'pack'] [u'rhino', u'centr', u'mulder', u'forc', u'quit'] [u'river', u'plate', u'overcom', u'nerv', u'beat', u'libertad'] [u'rossner', u'favourit', u'women', u'road', u'world'] [u'rovanpera', u'lead', u'turkey', u'solberg', u'retir'] [u'continu', u'growth', u'forest', u'log'] [u'rower', u'madagascar'] [u'erupt', u'detent', u'centr', u'school', u'issu'] [u'ruddock', u'deni', u'withhold', u'land', u'council', u'fund'] [u'rural', u'real', u'estat', u'market', u'activ'] [u'rural', u'women', u'bare', u'necess', u'rain'] [u'russia', u'signal', u'veto', u'peac', u'secur', u'council'] [u'rychart', u'feel', u'pinch', u'roger', u'join'] [u'coron', u'probe', u'freak', u'accid'] [u'introduc', u'limit', u'build', u'area'] [u'invit', u'bali', u'victim', u'claim', u'compo'] [u'schole', u'liverpool', u'showdown'] [u'pipelin', u'construct', u'continu'] [u'scallop', u'farm', u'hervey'] [u'secur', u'council', u'minnow', u'demand', u'iraq', u'consensus'] [u'serena', u'william', u'tendin'] [u'silver', u'explor', u'turn', u'attent', u'gold'] [u'limo', u'dont', u'jenni', u'block'] [u'snowtown', u'accus', u'sleep', u'victim', u'court', u'hear'] [u'solberg', u'take', u'lead', u'turkey'] [u'star', u'middl', u'east', u'event'] [u'studi', u'reveal', u'high', u'death', u'rat', u'aborigin'] [u'suncorp', u'metway', u'record', u'half', u'year', u'surg'] [u'super', u'money', u'fund', u'brisban', u'tunnel', u'plan'] [u'sydney', u'airport', u'defend', u'terror', u'charg', u'plan'] [u'sydney', u'airport', u'charg', u'airlin'] [u'get', u'good', u'rainfal'] [u'govt', u'moratorium'] [u'receiv', u'good', u'rainfal'] [u'imparja', u'match'] [u'teen', u'charg', u'high', u'speed', u'chase'] [u'teen', u'charg', u'attempt', u'murder', u'policeman'] [u'teen', u'recov', u'meningococc', u'mening'] [u'telekom', u'star', u'savoldelli', u'month'] [u'telstra', u'wont', u'sell', u'commerci', u'viabl'] [u'tenni', u'collis', u'cours'] [u'thailand', u'appoint', u'panel', u'overse', u'drug'] [u'children', u'wound', u'gaza', u'strip', u'refuge', u'camp'] [u'polic', u'stand', u'wake', u'royal'] [u'timber', u'plantat', u'open', u'walcha'] [u'tourism', u'oper', u'drum', u'busi', u'japan'] [u'tourism', u'plan', u'releas', u'wagga', u'wagga'] [u'tourist', u'oper', u'feel', u'impact', u'insur'] [u'tour', u'valencia', u'stage', u'lead'] [u'train', u'hit', u'kill', u'elder', u'driver'] [u'treasur', u'petit', u'accc', u'chair', u'wait'] [u'troop', u'give', u'fund', u'prioriti', u'costello'] [u'jail', u'life', u'elder', u'woman', u'death'] [u'jail', u'suppli', u'ectasi', u'tablet'] [u'karat', u'champ', u'jail', u'perth', u'rape'] [u'scam', u'hit', u'wide', u'busi'] [u'deliber', u'resolut', u'iraq'] [u'union', u'back', u'qanta', u'swipe', u'card', u'time'] [u'union', u'seek', u'casual', u'jail', u'employ'] [u'meet', u'end', u'deadlock', u'resolut'] [u'deni', u'ignor', u'north', u'korea', u'crisi'] [u'lower', u'terrorist', u'alert'] [u'vote', u'human', u'clone'] [u'utah', u'town', u'moab', u'shun', u'link', u'bomb'] [u'vandal', u'close', u'lookout'] [u'vanston', u'wipe', u'ombudsman', u'welfar', u'concern'] [u'govt', u'announc', u'bushfir', u'relief'] [u'water', u'restrict', u'continu', u'despit', u'eas'] [u'north', u'coast', u'batten', u'cyclon'] [u'warn', u'algal', u'bloom', u'toxic'] [u'waterfal', u'crash', u'caus', u'unknown'] [u'water', u'restrict', u'domin', u'elect', u'talk'] [u'water', u'restrict', u'north', u'coast', u'eas'] [u'webber', u'predict', u'ferarri', u'fall', u'field'] [u'western', u'get', u'mobil', u'phone', u'boost'] [u'wicklow', u'hotel', u'buy', u'handsom'] [u'wild', u'weather', u'lash', u'northern'] [u'woman', u'jail', u'fraud', u'charg'] [u'wound', u'juve', u'scrap', u'inter', u'supremaci'] [u'zimbabw', u'deliv', u'final', u'insult', u'olonga'] [u'million', u'landmin', u'destroy', u'worldwid'] [u'adelaid', u'intern', u'film', u'festiv', u'kick'] [u'airpark', u'plan', u'port', u'dougla'] [u'alinghi', u'march', u'delay', u'postpon'] [u'alinghi', u'pois', u'histor'] [u'flight', u'ground', u'tokyo', u'airport'] [u'amnesti', u'intern', u'accus', u'solomon', u'polic'] [u'angler', u'ask', u'fish', u'differ', u'type', u'catch'] [u'anglican', u'church', u'repres', u'meet'] [u'annan', u'warn', u'cyrus', u'chanc', u'restor'] [u'worker', u'attack', u'brisban'] [u'arab', u'foreign', u'minist', u'meet', u'iraqi', u'summit'] [u'arafat', u'appoint', u'week'] [u'arrow', u'boss', u'head', u'judg'] [u'arsenal', u'cole', u'rule', u'week'] [u'arthur', u'charg', u'copenhagen', u'semi'] [u'kill', u'score', u'injur', u'taiwan'] [u'aussi', u'drum', u'tourism', u'japan'] [u'aust', u'farmer', u'suffer', u'free', u'trade'] [u'blair', u'accus', u'saddam', u'play', u'mind', u'game'] [u'blix', u'confid', u'iraq', u'destroy', u'missil'] [u'blix', u'welcom', u'announc', u'iraq', u'disarm'] [u'bomb', u'victim', u'cremat', u'bali', u'ceremoni'] [u'bomb', u'victim', u'cremat', u'bali', u'ceremoni'] [u'boro', u'releas', u'boksic'] [u'boulami', u'suspend', u'iaaf', u'pend', u'arbitr'] [u'brisban', u'discuss', u'busi', u'viabil'] [u'britain', u'draft', u'controversi', u'atlant', u'solut'] [u'britain', u'oldest', u'coupl', u'celebr', u'year'] [u'bull', u'book', u'gabba', u'final'] [u'burundi', u'popul', u'risk', u'brutal', u'civil'] [u'bushfir', u'wit', u'like', u'receiv', u'extra', u'legal'] [u'bush', u'saddam', u'step', u'iraqi', u'foreign'] [u'cairn', u'spot', u'win', u'clean', u'beach', u'year', u'award'] [u'better', u'mental', u'health', u'fund'] [u'roll', u'crash', u'hous'] [u'champion', u'crusad', u'red'] [u'chang', u'support', u'bushfir', u'victim'] [u'chechen', u'rebel', u'group', u'brand', u'terrorist'] [u'chines', u'economi', u'figur', u'signal', u'boom'] [u'claim', u'zimbabw', u'opposit', u'member'] [u'clean', u'continu', u'phillip', u'island'] [u'clijster', u'continu', u'march', u'arizona'] [u'costello', u'accc', u'chair', u'nomin'] [u'crazi', u'migrat', u'unlik', u'govt', u'say'] [u'cruis', u'compani', u'ferri', u'oper'] [u'curbishley', u'name', u'manag', u'month'] [u'cyclon', u'graham', u'lose', u'intens'] [u'cyclon', u'graham', u'travel', u'north', u'east'] [u'dizzi', u'england', u'clash'] [u'english', u'pair', u'open', u'titl'] [u'entri', u'canberra', u'reach', u'record', u'level'] [u'famili', u'turn', u'recoveri', u'centr', u'help'] [u'fear', u'anti', u'terror', u'polic', u'squad', u'drain'] [u'feder', u'novak', u'dubai', u'semi'] [u'ferguson', u'label', u'beckham', u'flash'] [u'fiba', u'concern', u'olymp', u'venu', u'construct'] [u'fifa', u'consid', u'life', u'dope', u'offenc'] [u'flood', u'predict', u'cyclon', u'graham', u'cross'] [u'flower', u'streak', u'lead', u'zimbabw', u'victori'] [u'russian', u'colonel', u'face', u'trial', u'suprem'] [u'freeman', u'cap', u'emot', u'week'] [u'french', u'soccer', u'mourn', u'batteux', u'death'] [u'gigg', u'deni', u'inter'] [u'gigg', u'doubt', u'leagu', u'final'] [u'glori', u'pressur', u'shark', u'devour', u'wolv'] [u'gonzalez', u'get', u'bortolo', u'green', u'light'] [u'gonzalez', u'ride', u'italian', u'giant'] [u'govt', u'prioriti', u'room', u'famili', u'room', u'swan'] [u'consid', u'charg', u'heftier', u'fee'] [u'green', u'call', u'homosexu', u'consent'] [u'green', u'forum', u'deal', u'membership', u'iraq'] [u'green', u'growth', u'major', u'parti', u'disillusion'] [u'hobart', u'rivulet', u'clean', u'water', u'qualiti'] [u'houllier', u'expect', u'owen', u'shine', u'unit'] [u'bowl', u'faster'] [u'indigen', u'exhibit', u'open'] [u'iraq', u'begin', u'destruct', u'ban', u'missil'] [u'iraqi', u'opposit', u'oppos', u'turkey', u'agreement'] [u'iraq', u'destroy', u'missil', u'earli', u'today'] [u'iraq', u'destroy', u'missil', u'weekend'] [u'ireland', u'tripl', u'boost', u'french', u'match'] [u'italian', u'township', u'offer', u'saddam', u'asylum'] [u'ivori', u'coast', u'presid', u'address', u'death', u'squad'] [u'jayasuriya', u'reliev', u'beat', u'windi'] [u'jewist', u'group', u'unimpress', u'anim', u'right', u'campaign'] [u'joey', u'fifa', u'world'] [u'john', u'celebr', u'return'] [u'jone', u'bid', u'heavyweight', u'crown', u'ruiz'] [u'judg', u'attack', u'walkinshaw', u'run', u'arrow'] [u'kean', u'hint', u'earli', u'retir', u'report'] [u'legal', u'women', u'conceiv', u'dead', u'husband'] [u'call', u'local', u'road', u'fund', u'increas'] [u'licklit', u'surg', u'ahead', u'tucson'] [u'maier', u'surgeri', u'train', u'month'] [u'injur', u'stuart', u'accid'] [u'mehrten', u'doubt', u'auckland', u'game'] [u'mexican', u'canadian', u'leader', u'peac'] [u'mido', u'releg', u'ajax', u'reserv'] [u'taiwan', u'tourist', u'train', u'derail'] [u'nasa', u'releas', u'columbia', u'entri', u'video'] [u'nice', u'unbeaten'] [u'kill', u'road', u'accid', u'thailand'] [u'korea', u'blame', u'caus', u'nuclear', u'rift'] [u'korean', u'lawyer', u'indict', u'nuke', u'crisi'] [u'korea', u'say', u'flight', u'prepar'] [u'author', u'investig', u'japanes', u'student'] [u'ogara', u'recal', u'franc', u'clash'] [u'ogilvi', u'lead', u'adelaid', u'field'] [u'spill', u'phillip', u'threaten', u'wildlif'] [u'opposit', u'pay', u'matern', u'leav'] [u'oprah', u'black', u'woman'] [u'peac', u'summit', u'hold', u'sydney'] [u'penguin', u'treat', u'phillip', u'island', u'spill'] [u'philippin', u'sign', u'counter', u'terror', u'pact'] [u'phillip', u'clean', u'continu', u'spill'] [u'pig', u'condemn', u'bullet', u'cellar'] [u'say', u'pay', u'matern', u'leav', u'card'] [u'pope', u'send', u'peac', u'envoy'] [u'prison', u'confer', u'hold', u'canberra'] [u'premier', u'warn', u'worker', u'walk', u'street'] [u'rain', u'help', u'water', u'level', u'rise', u'sydney'] [u'record', u'number', u'student', u'enrol', u'univers'] [u'red', u'injuri', u'worri'] [u'roo', u'semi'] [u'round', u'time', u'toad', u'north', u'coast'] [u'rumsfeld', u'accus', u'media', u'mislead', u'public'] [u'russia', u'veto', u'power', u'maintain', u'world'] [u'scott', u'lonard'] [u'sculptur', u'exhibit', u'reveal', u'tasmania'] [u'sequin', u'oxford', u'street'] [u'sheffield', u'boost', u'promot', u'hop'] [u'shuttl', u'program', u'outdat', u'aeronaut', u'expert', u'say'] [u'snow', u'begin', u'fall', u'fall', u'creek'] [u'socceroo', u'london', u'base'] [u'solomon', u'child', u'fli', u'brisban'] [u'sourc', u'spill', u'unknown'] [u'south', u'asia', u'stop', u'india', u'pakistan'] [u'sris', u'deal', u'windi', u'huge', u'blow', u'victori'] [u'sydney', u'mardi', u'gras', u'parad', u'dish', u'bite'] [u'sydney', u'gear', u'mardi', u'gras'] [u'sydney', u'mardi', u'gras', u'kick'] [u'telstra', u'employe', u'fear', u'job', u'say', u'union'] [u'thorp', u'cours', u'canberra', u'freestyl'] [u'thorp', u'plan', u'swim', u'seven', u'event', u'world'] [u'liabl', u'spill', u'fin'] [u'girl', u'injur', u'bomb', u'blast'] [u'tobacco', u'farmer', u'face', u'jail', u'black', u'market', u'trade'] [u'toddler', u'wander', u'street'] [u'anwar', u'lead', u'pakistan', u'charg', u'india'] [u'iraqi', u'arriv', u'egypt', u'arab', u'summit'] [u'tour', u'valencia', u'fourth', u'stage', u'lead'] [u'troop', u'readi', u'violenc', u'kick', u'annual'] [u'major', u'polit', u'parti', u'join', u'forc', u'austria'] [u'policemen', u'kill', u'outsid', u'consul'] [u'call', u'road', u'upgrad', u'fatal', u'accid'] [u'tyson', u'blast', u'pathet', u'king'] [u'call', u'saddam', u'resign'] [u'inspect', u'generat', u'result', u'franc'] [u'inspector', u'destroy', u'iraq', u'illeg'] [u'economi', u'fight', u'recess'] [u'restat', u'willing', u'disarm', u'iraq'] [u'slap', u'terror', u'sanction', u'chechen', u'rebel'] [u'stock', u'open', u'flat'] [u'virgin', u'blue', u'water', u'aviat', u'safeti'] [u'cyclon', u'warn', u'downgrad'] [u'govt', u'consid', u'radic', u'elector', u'reform'] [u'warn', u'irreplac', u'chairman'] [u'agre', u'intern', u'anti', u'smoke', u'treati'] [u'windi', u'struggl', u'lanka'] [u'windsurf', u'die', u'port', u'phillip'] [u'woodgat', u'newcastl', u'debut', u'chelsea'] [u'zabaleta', u'hand', u'kuerten', u'semi', u'final', u'defeat'] [u'zieg', u'make', u'quick', u'recoveri', u'thigh', u'injuri'] [u'zimbabw', u'clergymen', u'ralli', u'outsid', u'polic'] [u'zimbabw', u'polic', u'arrest', u'clergymen', u'protest'] [u'kill', u'light', u'plane', u'crash', u'russia'] [u'postal', u'offic', u'sack', u'tamper', u'mail'] [u'postal', u'offic', u'sack', u'alleg', u'mail'] [u'actu', u'rule', u'troop', u'ban'] [u'alinghi', u'take', u'america'] [u'injur', u'egyptian', u'librari'] [u'welcom', u'arrest', u'alleg', u'sept', u'mastermind'] [u'qaeda', u'suspect', u'arrest', u'pakistan'] [u'back', u'heroin', u'trial', u'addict'] [u'chief', u'say', u'compani', u'fight', u'surviv'] [u'arab', u'leader', u'reject', u'idea', u'militari', u'strike', u'iraq'] [u'arthur', u'fall', u'short', u'copenhagen'] [u'asylum', u'seeker', u'support', u'centr', u'face', u'closur'] [u'kill', u'injur', u'taiwan'] [u'dead', u'russian', u'plane', u'crash'] [u'aussi', u'rock', u'legend', u'add', u'music', u'classic', u'children'] [u'aussi', u'give', u'green', u'light', u'gallipoli', u'pilgrimag'] [u'aust', u'missil', u'defenc', u'shield', u'like', u'hill'] [u'australia', u'clean', u'tonn', u'rubbish'] [u'ballack', u'doubl', u'strike', u'lead', u'bayern', u'victori'] [u'belgian', u'museeuw', u'take', u'volk'] [u'bhutan', u'aim', u'erad', u'fruit', u'problem'] [u'bichel', u'claim', u'magnific', u'seven'] [u'bichel', u'set', u'australia', u'record'] [u'brazilian', u'team', u'player', u'send'] [u'brisban', u'brothel', u'owner', u'beef', u'secur'] [u'brisban', u'parachut', u'jumper', u'surviv', u'accid'] [u'britain', u'dismiss', u'iraq', u'destruct', u'ban'] [u'brookdal', u'wast', u'redirect', u'boulder'] [u'brumbi', u'shock', u'waratah'] [u'bush', u'commit', u'form', u'democraci', u'iraq'] [u'calleri', u'beat', u'zabaleta', u'claim', u'mexican', u'titl'] [u'inquiri', u'medic', u'workforc', u'strategi'] [u'carrigan', u'claim', u'geelong', u'world', u'open'] [u'carr', u'neglect', u'need', u'rural', u'peopl', u'deputi'] [u'carr', u'pitch', u'green', u'vote', u'plan'] [u'casa', u'launch', u'onlin', u'safeti', u'confer'] [u'castro', u'arriv', u'japan', u'visit'] [u'chamber', u'miss', u'world', u'indoor', u'spot'] [u'china', u'plan', u'moon', u'explor', u'program'] [u'chines', u'fan', u'keep', u'wait', u'gazza', u'debut'] [u'chirac', u'remain', u'oppos', u'iraq'] [u'clean', u'australia', u'turn'] [u'clean', u'continu', u'spill', u'phillip'] [u'clijster', u'scottsdal', u'final'] [u'coleman', u'feel', u'heat', u'bunni', u'thrash'] [u'concern', u'rais', u'doctor', u'hotlin', u'disconnect'] [u'confus', u'surround', u'turkey', u'decis', u'troop'] [u'crean', u'prais', u'iraq', u'decis', u'destroy', u'missil'] [u'crean', u'rule', u'medicar', u'levi', u'increas'] [u'doctor', u'shopper', u'abus', u'privaci', u'say'] [u'dunde', u'partick'] [u'feder', u'novak', u'clash', u'dubai', u'final'] [u'wont', u'bring', u'troop', u'home', u'crean'] [u'femal', u'candid', u'elect', u'merit', u'quota'] [u'injur', u'bullet', u'spray', u'belgian', u'parti'] [u'formula', u'car', u'arriv', u'melbourn'] [u'formula', u'expens', u'schumach'] [u'samoud', u'missil', u'destroy'] [u'franc', u'remain', u'oppos', u'resolut', u'lead'] [u'frigo', u'hold', u'claim', u'tour', u'valencia'] [u'govt', u'critic', u'gulf', u'black', u'plan'] [u'govt', u'overhaul', u'assist', u'packag', u'famili'] [u'green', u'parti', u'membership', u'tripl'] [u'hermakono', u'win', u'award', u'africa', u'film'] [u'hotel', u'bed', u'short', u'suppli', u'hobart'] [u'india', u'put', u'fan', u'frenzi'] [u'public', u'disarm', u'trimbl'] [u'iran', u'reformist', u'accept', u'council', u'elect', u'defeat'] [u'iraq', u'continu', u'conceal', u'ban', u'weapon', u'straw'] [u'iraq', u'destroy', u'ban', u'missil'] [u'iraqi', u'opposit', u'group', u'appoint', u'leadership', u'team'] [u'iraq', u'say', u'emir', u'agent', u'seek', u'saddam'] [u'jone', u'claim', u'titl', u'box', u'histori'] [u'kenya', u'cruis', u'super', u'six'] [u'hospic', u'staff', u'patient', u'evacu'] [u'qaeda', u'figur', u'arrest', u'pakistan'] [u'kuwaiti', u'nab', u'militari', u'hotel', u'suspect'] [u'lennox', u'lewi', u'hint', u'retir'] [u'lion', u'stun', u'geelong'] [u'local', u'darwin', u'hotel', u'rob'] [u'arrest', u'mortar', u'kuwait', u'hotel', u'releas'] [u'hospitalis', u'freo', u'attack'] [u'mardi', u'gras', u'number', u'organis', u'happi'] [u'mark', u'waugh', u'guid', u'blue', u'home'] [u'mckay', u'beat', u'davi', u'open', u'titl'] [u'mexican', u'food', u'fight', u'land', u'polic', u'water'] [u'middl', u'east', u'tension', u'distract', u'voter', u'carr'] [u'coach', u'resign'] [u'monaco', u'ditch', u'doubl'] [u'rural', u'doctor', u'need', u'confer', u'tell'] [u'nake', u'rain', u'danc', u'kick', u'victoria'] [u'nation', u'council', u'drug', u'oppos', u'heroin', u'trial'] [u'play', u'off', u'decid'] [u'newcastl', u'track', u'chelsea'] [u'regul', u'forc', u'compani', u'disclos', u'golden'] [u'rural', u'doctor', u'train', u'facil', u'establish'] [u'newspap', u'cartoonist', u'spotlight'] [u'zealand', u'tip', u'march'] [u'north', u'korea', u'warn', u'horrifi', u'nuclear', u'disast'] [u'coalit', u'rule', u'green', u'deal'] [u'polic', u'confirm', u'ident', u'asian', u'women'] [u'ogilvi', u'take', u'adelaid', u'open'] [u'parti', u'plan', u'senat', u'vote', u'unaccept'] [u'oversea', u'wine', u'lover', u'crack', u'aussi', u'tinni'] [u'pakistani', u'famili', u'shock', u'qaeda', u'arrest'] [u'pakistan', u'shatter', u'india', u'defeat'] [u'palestinian', u'girl', u'stray', u'bullet'] [u'philippin', u'australia', u'sign', u'secur', u'agreement'] [u'pie', u'semi'] [u'pilot', u'condit', u'dalbi', u'crash'] [u'welcom', u'arrest', u'suspect', u'qaeda', u'mastermind'] [u'polic', u'announc', u'breakthrough', u'falcon', u'murder'] [u'polic', u'arrest', u'darwin', u'doubl', u'murder'] [u'polic', u'arrest', u'murder', u'cooma', u'coupl'] [u'polic', u'deni', u'arrest', u'zimbabw', u'opposit'] [u'polic', u'door', u'knock', u'cooma', u'doubl', u'murder'] [u'portsmouth', u'rout', u'milwal', u'clear'] [u'power', u'thrash', u'south', u'striker', u'hold', u'newcastl'] [u'prostitut', u'target', u'brisban', u'street'] [u'protest', u'march', u'embassi', u'lodg'] [u'point', u'clear', u'late', u'winner'] [u'rabindra', u'reang', u'win', u'elect', u'rabindra', u'reang'] [u'ronaldo', u'star', u'real', u'demolit'] [u'ross', u'bridg', u'recognis', u'architectur', u'monument'] [u'environ', u'minist', u'consid', u'plastic'] [u'sainz', u'retain', u'lead', u'ralli', u'turkey'] [u'scientist', u'investig', u'sourc', u'spill'] [u'scott', u'book', u'tiger', u'clash', u'lonard'] [u'sculptur', u'prais', u'defunct', u'lira', u'unveil'] [u'septemb', u'alleg', u'mastermind', u'hand'] [u'execut', u'china'] [u'slashin', u'tendulkar', u'lead', u'india', u'crush'] [u'snow', u'season', u'start', u'south', u'wale'] [u'spirit', u'move', u'final', u'content'] [u'strong', u'wind', u'caus', u'havoc', u'cairn'] [u'struggl', u'modena', u'snatch', u'draw', u'parma'] [u'studi', u'consid', u'effect', u'bushfir', u'mental'] [u'suspect', u'qaeda', u'mastermind', u'arrest', u'pakistan'] [u'sydney', u'swim', u'good', u'caus'] [u'taipan', u'high'] [u'taiwan', u'tourist', u'train', u'crash'] [u'teacher', u'govt', u'talk', u'breakdown'] [u'teacher', u'union', u'educ', u'dept', u'meet', u'negoti'] [u'tension', u'reach', u'melt', u'point', u'arab', u'leagu', u'summit'] [u'thailand', u'admit', u'polic', u'execut'] [u'thailand', u'admit', u'polic', u'execut', u'suspect'] [u'thailand', u'polic', u'claim', u'kill', u'drug'] [u'thorp', u'pace', u'record'] [u'tiger', u'redback', u'hide'] [u'troop', u'smash', u'barrier', u'japan'] [u'turkey', u'say', u'friend', u'warn', u'iraq'] [u'turkish', u'cypriot', u'leader', u'stand', u'firm'] [u'turkish', u'govt', u'call', u'urgent', u'meet', u'block'] [u'gold', u'coaster', u'lifesav', u'award'] [u'palestinian', u'kill', u'wound', u'gaza', u'strip'] [u'women', u'dead', u'unit'] [u'inspector', u'seek', u'verif', u'iraq', u'destroy'] [u'union', u'deni', u'gulf', u'black', u'claim'] [u'unit', u'kenyon', u'deni', u'eriksson', u'headhunt'] [u'disappoint', u'troop', u'deploy', u'turkey'] [u'govt', u'interrog', u'suspect', u'qaeda'] [u'victorian', u'road', u'toll', u'rise', u'overnight', u'fatal'] [u'victorian', u'urg', u'vaccin', u'earli'] [u'walker', u'commemor', u'live', u'lose', u'bali', u'bomb'] [u'protest', u'begin', u'outsid', u'embassi'] [u'wood', u'tom', u'face', u'aussi', u'expens'] [u'zimmerman', u'complet', u'parramatta', u'man', u'swim'] [u'peopl', u'charg', u'weekend', u'polic', u'oper'] [u'modifi', u'radiat', u'safeti', u'standard'] [u'bushfir', u'inquiri', u'open'] [u'adelaid', u'danc', u'troup', u'head'] [u'traffic', u'control', u'glitch', u'dent', u'japan', u'high', u'tech'] [u'ajax', u'stay', u'touch', u'feyenoord', u'victori'] [u'algeria', u'offer', u'stir', u'welcom', u'chirac'] [u'algeria', u'sign', u'friendship', u'memo', u'franc'] [u'smile', u'sainz', u'win', u'ralli', u'turkey'] [u'show', u'stanwel', u'plant', u'design'] [u'american', u'squeez', u'prime', u'qaeda', u'suspect'] [u'anti', u'discrimin', u'offic', u'open', u'alic', u'spring'] [u'aristocrat', u'ax', u'oper'] [u'atletico', u'edg', u'malaga'] [u'atsic', u'critic', u'ceremoni', u'turnout'] [u'austereo', u'report', u'profit', u'slide'] [u'aust', u'muslim', u'leader', u'welcom', u'qaeda', u'arrest'] [u'aust', u'post', u'destroy', u'fridg', u'magnet', u'labor'] [u'australia', u'recognis', u'hero', u'braveri', u'award'] [u'australia', u'oldest', u'olympian', u'die', u'age'] [u'autumn', u'bring', u'cold', u'comfort'] [u'wheat', u'year', u'expect', u'aust', u'studi'] [u'black', u'tiger', u'prawn', u'harvest', u'offer', u'industri', u'hope'] [u'border', u'tighten', u'secur', u'crackdown'] [u'boyfriend', u'custodi', u'policewoman', u'death'] [u'britain', u'announc', u'month', u'long', u'amnesti'] [u'brogden', u'pledg', u'nurs', u'carr', u'say', u'tri'] [u'bull', u'young'] [u'bumper', u'grain', u'year', u'ahead', u'farm', u'forecast'] [u'age', u'care', u'fund'] [u'camplin', u'claim', u'tripl', u'crown'] [u'canberra', u'order', u'freeway', u'path', u'alburi'] [u'carr', u'happi', u'accept', u'green', u'prefer'] [u'theft', u'spark', u'intern', u'polic', u'probe'] [u'celtic', u'ranger', u'scottish', u'hors', u'race'] [u'centuri', u'turtl'] [u'chievo', u'come', u'torino'] [u'civil', u'libertarian', u'teen', u'right', u'choic'] [u'clark', u'involv', u'sieg', u'court', u'hear'] [u'coetzer', u'win', u'acapulco'] [u'cold', u'snap', u'hit', u'gippsland'] [u'communiti', u'forum', u'consid', u'kosciuszko'] [u'communiti', u'pitch', u'help', u'environ'] [u'concern', u'air', u'nation', u'park', u'plan'] [u'concert', u'rais', u'fund', u'drought', u'woe'] [u'cooma', u'shoot', u'victim', u'name'] [u'council', u'concern', u'soil', u'pollut', u'waterway'] [u'council', u'take', u'action', u'wander', u'stock'] [u'court', u'decid', u'murder', u'appeal'] [u'crean', u'say', u'senat', u'fight', u'govt', u'legisl'] [u'crisi', u'meet', u'hold', u'dairi', u'farmer'] [u'damag', u'cost', u'cyclon', u'increas'] [u'darwin', u'charg', u'doubl', u'murder'] [u'death', u'spark', u'polic', u'driver', u'care'] [u'debt', u'blowout', u'blame', u'drought', u'global', u'weak'] [u'deficit', u'blowout', u'peg', u'dollar'] [u'democrat', u'seek', u'accc', u'probe', u'basic', u'food', u'price'] [u'discuss', u'paper', u'discuss', u'resourc'] [u'dixon', u'win', u'round', u'indi', u'debut'] [u'dragila', u'set', u'indoor', u'pole', u'vault', u'world', u'mark'] [u'duck', u'number', u'wont', u'affect', u'long', u'term', u'hunter'] [u'dudek', u'differ', u'ferguson'] [u'elect', u'campaign', u'heat', u'bega'] [u'elect', u'turn', u'free', u'zone'] [u'emerg', u'servic', u'polic', u'tour', u'north'] [u'food', u'label', u'hype', u'free'] [u'europ', u'pacif', u'nation', u'sign', u'post', u'coloni', u'pact'] [u'evapor', u'basin', u'caus', u'stink'] [u'farmer', u'urg', u'cattl', u'immunis'] [u'farm', u'expert', u'meet', u'canola', u'discuss'] [u'feder', u'answer', u'critic', u'dubai'] [u'felin', u'spat', u'put', u'peopl', u'hospit'] [u'fiji', u'detain', u'journalist', u'cover', u'treason', u'case'] [u'destroy', u'unoccupi', u'hous'] [u'aussi', u'contest', u'world', u'indoor', u'championship'] [u'focus', u'win', u'whine', u'stoddart', u'tell'] [u'folk', u'festiv', u'declar', u'winner'] [u'chief', u'minist', u'enter', u'senat'] [u'forrest', u'defend', u'decis', u'accept', u'mobil', u'phone'] [u'forum', u'consid', u'indigen', u'communiti', u'futur'] [u'bounti', u'program', u'continu', u'gippsland'] [u'franc', u'confirm', u'opposit', u'second', u'resolut'] [u'free', u'meningococc', u'vaccin', u'offer'] [u'gerrard', u'owen', u'liverpool', u'leagu'] [u'govt', u'blame', u'bargain', u'breakdown'] [u'govt', u'opposit', u'offer', u'pledg', u'teacher'] [u'govt', u'urg', u'stanc', u'internet', u'porn'] [u'greec', u'open', u'novemb', u'militia', u'trial'] [u'group', u'defend', u'broadcast', u'parliament', u'tape'] [u'group', u'fight', u'primari', u'produc', u'right'] [u'gulpilil', u'honour', u'film', u'career'] [u'gunmen', u'attack', u'afghan', u'convoy', u'injuri'] [u'hamburg', u'climb', u'fifth'] [u'hodgson', u'start', u'superbik', u'season', u'doubl', u'victori'] [u'hospit', u'site', u'creat', u'debat'] [u'injuri', u'rock', u'red'] [u'inquest', u'begin', u'tourist', u'death'] [u'inquiri', u'begin', u'ralli', u'accid'] [u'inquiri', u'begin', u'sandon', u'develop'] [u'interest', u'parti', u'urg', u'regist', u'nativ'] [u'internet', u'increas'] [u'investor', u'dump', u'ceo', u'dire', u'forecast'] [u'ipswich', u'win', u'east', u'anglian', u'derbi'] [u'iran', u'conserv', u'local', u'elect'] [u'iraq', u'resum', u'destroy', u'missil'] [u'iraq', u'threaten', u'stop', u'missil', u'destruct'] [u'irympl', u'favour', u'home', u'ambul'] [u'islamist', u'stage', u'massiv', u'anti', u'ralli', u'pakistan'] [u'isra', u'push', u'gaza', u'leav', u'dead'] [u'israel', u'grant', u'civil', u'marriag', u'licens'] [u'rise', u'nation'] [u'judg', u'quash', u'petroulia', u'fraud', u'charg'] [u'jupit', u'finalis', u'merger', u'detail'] [u'kefu', u'undergo', u'injur', u'socket'] [u'kucera', u'win', u'copenhagen'] [u'kuwait', u'join', u'saddam', u'exil'] [u'labor', u'attack', u'vanston', u'famili', u'payment'] [u'labor', u'wont', u'support', u'tighter', u'porn', u'law'] [u'learner', u'driver', u'break', u'accid'] [u'lee', u'back', u'cross', u'media', u'chang'] [u'liberti', u'victoria', u'regret', u'health', u'record', u'rule'] [u'lifesav', u'honour', u'gold', u'coast', u'ceremoni'] [u'lyon', u'keep', u'hop', u'aliv', u'victori', u'auxerr'] [u'lyon', u'titl', u'hop', u'aliv'] [u'mackay', u'sugar', u'consid', u'doubl', u'sugar', u'aust', u'share'] [u'magic', u'nedv', u'fire', u'juve', u'inter'] [u'major', u'parti', u'criticis', u'green', u'drug', u'propos'] [u'accus', u'plot', u'shoot', u'parliament'] [u'admit', u'take', u'japanes', u'rock', u'star', u'million'] [u'arrest', u'connect', u'polic', u'death'] [u'escap', u'injuri', u'semi', u'trailer', u'accid'] [u'injur', u'fall', u'sunshin', u'beach', u'cliff'] [u'man', u'ill', u'plane', u'theft', u'crash', u'judg'] [u'polic', u'guard', u'hospit', u'shoot'] [u'mckinnon', u'independ', u'murray', u'darl'] [u'memori', u'hall', u'transform', u'galleri'] [u'midwiv', u'obstetrician', u'ralli', u'newcastl'] [u'milan', u'salvag', u'home', u'draw', u'atalanta'] [u'militia', u'suspect', u'kill', u'itali', u'train', u'shoot'] [u'minist', u'encourag', u'foreign', u'invest'] [u'minor', u'flood', u'north', u'west'] [u'dead', u'nigeria', u'fight'] [u'troubl', u'nation', u'trust'] [u'address', u'anti', u'nuclear', u'ralli', u'break', u'hill'] [u'highlight', u'tourist', u'commiss', u'woe'] [u'upset', u'allianc', u'decis'] [u'mundin', u'eye', u'world', u'titl', u'shoot'] [u'nake', u'rain', u'danc', u'declar', u'success', u'despit'] [u'nation', u'lose', u'wrestl', u'veteran', u'olymp'] [u'naturopath', u'face', u'charg', u'kill', u'sick', u'babi'] [u'blix', u'report', u'show', u'need', u'continu'] [u'group', u'consid', u'water', u'shortag'] [u'immunis', u'websit', u'launch'] [u'western', u'australian', u'braveri', u'award'] [u'nrma', u'attack', u'cost', u'loss'] [u'nrma', u'chief', u'step'] [u'support', u'limit', u'heroin', u'trial'] [u'govt', u'fund', u'water', u'suppli', u'project'] [u'say', u'govt', u'reneg', u'forestri', u'plan'] [u'tourist', u'guid', u'case', u'move', u'suprem', u'court'] [u'lose', u'sheep'] [u'offic', u'link', u'commission', u'murder'] [u'oppn', u'claim', u'govt', u'carer', u'allow', u'paint', u'sniff'] [u'door', u'dali', u'thief', u'sneak', u'paint', u'away'] [u'pakistani', u'protest', u'march'] [u'pakistan', u'hand', u'qaeda', u'suspect'] [u'pakistan', u'drink', u'chanc', u'saloon'] [u'polic', u'alarm', u'underag', u'drinker'] [u'polic', u'defend', u'doubl', u'demerit', u'scheme'] [u'polic', u'defend', u'doubl', u'demerit', u'scheme'] [u'policeman', u'charg', u'multipl', u'rape'] [u'polic', u'probe', u'jail', u'drug', u'effort'] [u'polic', u'interview', u'alleg', u'murder'] [u'pope', u'say', u'avenu', u'peac', u'explor'] [u'public', u'support', u'high', u'rail', u'link'] [u'begin', u'communiti', u'alcohol', u'restrict'] [u'petrol', u'price', u'cheaper', u'survey'] [u'ramsay', u'share', u'profit', u'figur'] [u'real', u'sociedad', u'stumbl', u'real', u'madrid', u'stay'] [u'renew', u'call', u'calder', u'freeway', u'fund'] [u'report', u'urg', u'break', u'farmer', u'conserv', u'land'] [u'resid', u'gear', u'wimmera', u'machineri', u'field'] [u'senat', u'provid', u'doubl', u'dissolut', u'trigger'] [u'essay', u'baffl', u'english', u'teacher'] [u'woodburi', u'home', u'remain', u'power'] [u'south', u'sack', u'coleman'] [u'south', u'west', u'victorian', u'honour', u'braveri', u'award'] [u'spurn', u'troop', u'deal', u'hurt', u'turkish', u'stock'] [u'stun', u'sugiyama', u'win', u'match', u'titl'] [u'sugiyama', u'beat', u'stevenson', u'scottsdal'] [u'summit', u'focus', u'indigen', u'justic', u'woe'] [u'supermarket', u'encourag', u'shopper', u'abandon', u'plastic'] [u'survey', u'start', u'basslink', u'connect'] [u'tableland', u'tourism', u'oper', u'discuss', u'futur'] [u'protest', u'block', u'truck', u'log', u'site'] [u'teacher', u'union', u'issu', u'strike', u'warn'] [u'teen', u'charg', u'blaze'] [u'teen', u'win', u'flag', u'comp', u'ironman', u'championship'] [u'thiev', u'demand', u'steal', u'item', u'carri'] [u'thigh', u'injuri', u'rule', u'szabo', u'world', u'indoor'] [u'thorp', u'trim', u'world', u'championship', u'assault'] [u'toddler', u'unharm', u'steal', u'drama'] [u'total', u'sprinkler', u'enforc'] [u'tugboat', u'strand', u'ship'] [u'turkey', u'undecid', u'continu', u'platform', u'debat'] [u'candid', u'run', u'broadsound', u'shire', u'mayor'] [u'surviv', u'parachut', u'accid'] [u'unhook', u'brake', u'blame', u'taiwan', u'train', u'disast'] [u'inspector', u'destroy', u'ban', u'missil'] [u'union', u'back', u'carr', u'promis', u'extra', u'fund'] [u'unit', u'draw', u'striker'] [u'say', u'qaeda', u'shake', u'arrest'] [u'trade', u'pact', u'wont', u'hurt', u'asia', u'partnership', u'minist'] [u'unmov', u'iraq', u'missil'] [u'utah', u'kirilenko', u'tip', u'grab', u'dramat', u'victori'] [u'dept', u'tell', u'releas', u'person', u'medic', u'record'] [u'govt', u'truck', u'log', u'protest'] [u'polic', u'fear', u'safeti', u'toddler', u'steal'] [u'victori', u'take', u'arsenal', u'closer', u'championship'] [u'visit', u'australian', u'incens', u'green'] [u'vital', u'tape', u'miss', u'tanner', u'case'] [u'wagga', u'schizophrenia', u'support', u'group'] [u'polic', u'seek', u'extradit', u'perth'] [u'warn', u'issu', u'free', u'trade', u'deal', u'report'] [u'warrior', u'wield'] [u'water', u'manag', u'plan', u'long', u'finalis'] [u'weaken', u'arsenal', u'outgun', u'charlton'] [u'unbeaten', u'pont'] [u'woman', u'hospit', u'surf', u'ordeal'] [u'wood', u'pull', u'dubai', u'desert', u'classic'] [u'wood', u'win', u'world', u'matchplay', u'titl'] [u'workcov', u'investig', u'riverland', u'small', u'busi'] [u'abar', u'predict', u'econom', u'growth', u'reduct'] [u'arson', u'accus', u'warn', u'match', u'lighter'] [u'guru', u'fail', u'sell', u'america', u'muslim'] [u'dismiss', u'coach', u'travel', u'concern'] [u'investig', u'impact', u'gambl', u'game'] [u'afma', u'probe', u'lose', u'tuna', u'incid'] [u'agforc', u'question', u'temporari', u'meatwork', u'closur'] [u'alleg', u'sept', u'mastermind', u'fli', u'pakistan'] [u'allianc', u'airlin', u'decis', u'upset'] [u'ord', u'shed', u'point', u'stock', u'falter'] [u'qaeda', u'suspect', u'arrest', u'yield', u'intellig', u'feast'] [u'back', u'bulk', u'bill', u'mean', u'test'] [u'anti', u'dope', u'code', u'complianc', u'olymp'] [u'channel', u'deliv', u'half', u'year', u'profit'] [u'call', u'director', u'emul', u'chair'] [u'want', u'drug', u'dealer', u'deduct'] [u'australia', u'seek', u'question', u'qaeda', u'suspect'] [u'babi', u'green', u'turtl', u'begin', u'long', u'walk', u'freedom'] [u'haven', u'nurs', u'home', u'futur', u'doubt'] [u'beachley', u'gear', u'surf', u'season'] [u'beachley', u'prepar', u'world', u'championship', u'tour'] [u'berlin', u'brothel', u'plan', u'dog', u'life', u'better'] [u'bevan', u'put', u'test', u'ambit', u'hold'] [u'biolog', u'survey', u'begin', u'pilbara'] [u'black', u'cat', u'provid', u'lucki', u'break', u'research'] [u'bodi', u'insid', u'wheel', u'drive'] [u'bosnich', u'remain', u'limbo'] [u'injur', u'balloon', u'accid'] [u'brack', u'wont', u'meet', u'grand', u'prix', u'block'] [u'brief', u'report', u'england', u'premier', u'leagu'] [u'break', u'hill', u'water', u'safeti', u'alert', u'lift'] [u'bryant', u'streak', u'end', u'laker'] [u'build', u'industri', u'find', u'tabl'] [u'bulk', u'bill', u'direct', u'incom'] [u'bureau', u'warn', u'pressur'] [u'calcul', u'cock', u'cost', u'protea', u'dear'] [u'refuge', u'give', u'visa', u'certainti'] [u'callous', u'parent', u'jail', u'year', u'babi', u'death'] [u'derelict', u'freighter'] [u'carr', u'claim', u'credit', u'drop', u'crime'] [u'cathol', u'male', u'teacher', u'push', u'reject'] [u'claim', u'fish', u'restrict', u'lead'] [u'clark', u'defend', u'wife', u'public', u'fund', u'holiday'] [u'coalit', u'plan', u'highway', u'upgrad', u'seat'] [u'coalit', u'punctur', u'labor', u'cycleway', u'idea'] [u'comment', u'seek', u'draft', u'tourism'] [u'communiti', u'group', u'protest', u'develop'] [u'confer', u'focus', u'farm', u'futur'] [u'convict', u'rapist', u'appeal', u'adult', u'teach'] [u'crean', u'play', u'poor', u'poll', u'show'] [u'crean', u'say', u'oecd', u'report', u'true', u'indic'] [u'dairi', u'farmer', u'fight', u'plan', u'land', u'rehab', u'charg'] [u'darwin', u'look', u'limit', u'itiner', u'number'] [u'depart', u'chair', u'declin', u'payout'] [u'disappoint', u'juvenil', u'crime', u'meet'] [u'distanc', u'issu', u'canadian', u'winter', u'game'] [u'doctor', u'guilti', u'misconduct', u'prison', u'death'] [u'dollar', u'hit', u'year', u'high'] [u'dollar', u'surg', u'year', u'high'] [u'drought', u'affect', u'gambier', u'tourism'] [u'drought', u'see', u'major', u'factor', u'month', u'deficit'] [u'enqvist', u'end', u'agassi', u'win', u'streak'] [u'extra', u'work', u'dole', u'scheme', u'announc', u'wide'] [u'famili', u'cite', u'arafat', u'court', u'jewish', u'death'] [u'februari', u'offer', u'good', u'rainfal', u'central', u'west'] [u'feder', u'govt', u'announc', u'chang'] [u'feder', u'govt', u'urg', u'commit', u'drought', u'relief'] [u'fedorov', u'confirm', u'marriag', u'divorc'] [u'forlan', u'expect'] [u'candid', u'nomin', u'tamworth', u'seat'] [u'turn', u'fals', u'alarm'] [u'franc', u'turn', u'place', u'injur'] [u'fund', u'chees', u'factori'] [u'geraldton', u'host', u'sport', u'event'] [u'girl', u'film', u'boyfriend', u'bash', u'trial', u'hear'] [u'grand', u'prix', u'blockad', u'forest', u'worker'] [u'group', u'say', u'market', u'pressur', u'determin', u'retail'] [u'half', u'age', u'home', u'run', u'loss', u'report'] [u'harvest', u'work', u'plummet', u'granit', u'belt'] [u'health', u'minist', u'admit', u'health', u'hotlin', u'cost'] [u'hinz', u'level', u'continu', u'climb'] [u'homeless', u'argu', u'right', u'park', u'life'] [u'hooper', u'hint', u'chang', u'rule', u'requir'] [u'houllier', u'expect', u'bounc', u'red'] [u'human', u'shield', u'home'] [u'illawarra', u'health', u'recognis', u'alcohol', u'effort'] [u'independ', u'predict', u'state', u'elect'] [u'indigen', u'group', u'age', u'care', u'train'] [u'institut', u'defend', u'award', u'despit', u'wall', u'collaps'] [u'iraq', u'say', u'civilian', u'kill', u'coalit', u'raid'] [u'iraq', u'scrap', u'missil'] [u'japan', u'send', u'envoy', u'mideast'] [u'jone', u'week', u'decid', u'titl'] [u'judg', u'enter', u'skate', u'park', u'debat'] [u'keegan', u'write', u'defens', u'pair'] [u'kefu', u'sidelin', u'month'] [u'knife', u'unlik', u'assist', u'murder', u'investig'] [u'labor', u'condemn', u'govt', u'alarm', u'deficit'] [u'labor', u'fund', u'seachang', u'clarenc'] [u'late', u'season', u'caus', u'road', u'headach'] [u'latham', u'link', u'europ'] [u'lazaridi', u'lead', u'citi', u'villa'] [u'lower', u'rosalind', u'park', u'restor'] [u'grade', u'cyclon', u'coast'] [u'mackay', u'school', u'teacher', u'stop', u'work'] [u'magistr', u'reject', u'communiti', u'meet', u'plan'] [u'charg', u'port', u'kembla', u'assault'] [u'charg', u'stab'] [u'charg', u'stab', u'attack', u'robberi'] [u'face', u'court', u'babi', u'manslaught'] [u'face', u'court', u'arrow', u'threat'] [u'jail', u'assault', u'secur', u'offic'] [u'face', u'court', u'bodi'] [u'face', u'court', u'water'] [u'reappear', u'court', u'geraldton', u'citi', u'bowl'] [u'focus', u'clash', u'leed'] [u'casualti', u'blast', u'philippin', u'airport'] [u'materi', u'girl', u'go', u'print'] [u'mayor', u'oppos', u'itiner', u'permit', u'idea'] [u'call', u'plastic', u'levi'] [u'namoi', u'valley', u'await', u'project', u'fund', u'approv'] [u'riverland', u'work', u'dole', u'project', u'announc'] [u'ireland', u'peac', u'talk'] [u'korea', u'encount', u'downer'] [u'korean', u'jet', u'shadow', u'plane'] [u'northern', u'tableland', u'candid', u'pay', u'tribut'] [u'coalit', u'demand', u'truth', u'waterfal', u'inquiri'] [u'crime', u'wane'] [u'teacher', u'offer', u'rise'] [u'teacher', u'receiv', u'improv', u'work', u'condit'] [u'delight', u'sorri', u'south', u'africa'] [u'open', u'letter', u'call', u'tiananmen', u'squar', u'inquiri'] [u'opposit', u'pledg', u'fund', u'fight', u'weed', u'feral'] [u'pair', u'charg', u'muswellbrook', u'man', u'death'] [u'pakistan', u'disarray', u'practic', u'bust'] [u'pari', u'love', u'match', u'look', u'unlik', u'prospect'] [u'perth', u'extradit', u'sydney'] [u'petrol', u'price', u'soar', u'north', u'west', u'victoria'] [u'philippin', u'warn', u'arm', u'race', u'missil', u'shield'] [u'plan', u'dalbi', u'wambo', u'council', u'merger'] [u'deni', u'bulk', u'bill', u'mean'] [u'polic', u'detain', u'gambier', u'chase'] [u'polic', u'impound', u'fine', u'driver'] [u'polic', u'probe', u'cabooltur', u'shoot'] [u'postal', u'worker', u'threaten', u'ban', u'anti', u'terror', u'kit'] [u'propos', u'ambul', u'chang', u'caus', u'concern'] [u'prosecutor', u'wont', u'chase', u'briton', u'broom', u'bash'] [u'protest', u'threaten', u'action'] [u'govt', u'consid', u'vehicl', u'registr'] [u'rain', u'snuff', u'vic', u'longest', u'fight'] [u'rain', u'danc', u'proceed', u'communiti', u'group'] [u'redback', u'unchang', u'chappel', u'game'] [u'return', u'anti', u'terror', u'kit', u'destroy', u'safeti', u'govt'] [u'ricegrow', u'cooper', u'work', u'reduc', u'cut'] [u'rio', u'gambil', u'advanc', u'florida'] [u'riverina', u'cancer', u'centr', u'soon', u'offer', u'medicar', u'cover'] [u'riverina', u'crop', u'chanc', u'look', u'slight'] [u'riverland', u'show', u'tourism', u'attract'] [u'roadwork', u'begin', u'gympi', u'brooloo', u'road'] [u'robert', u'give', u'catch', u'arsenal'] [u'runaway', u'smash', u'home', u'car'] [u'safer', u'volunt', u'worri', u'posit'] [u'francisco', u'resign', u'cover'] [u'sharehold', u'hope', u'boss', u'walli'] [u'shopkeep', u'help', u'polic', u'battl', u'solvent', u'abus'] [u'sibl', u'electrocut', u'touch', u'powerlin'] [u'singh', u'mickelson', u'withdraw', u'doral'] [u'korea', u'arrest', u'subway', u'arson', u'suspect'] [u'smoke', u'take', u'toll', u'border', u'club'] [u'south', u'africa', u'mourn', u'world', u'elimin'] [u'steven', u'clear', u'play', u'crow'] [u'stewart', u'urg', u'rule', u'chang', u'anxious', u'wait'] [u'strand', u'ship', u'final', u'free'] [u'strong', u'tremor', u'rattl', u'quak', u'china', u'provinc'] [u'studi', u'delay', u'plan', u'golf', u'cours'] [u'suspect', u'deal', u'goldcorp'] [u'suspens', u'stomp', u'flavel', u'world'] [u'aborigin', u'communiti', u'seek', u'fund', u'land'] [u'aborigin', u'communiti', u'seek', u'land', u'transfer', u'fund'] [u'teacher', u'strike', u'continu', u'north'] [u'teen', u'charg', u'supermarket', u'stab'] [u'teen', u'recov', u'meningococc', u'mening'] [u'thirteen', u'bullet', u'kill', u'woman', u'court', u'hear'] [u'thorp', u'set', u'sight', u'world', u'record'] [u'chopper', u'crash', u'jakarta', u'pool'] [u'hurt', u'bomb', u'attack', u'southern'] [u'timor', u'treati', u'readi', u'parliament'] [u'toddler', u'death', u'shock', u'resid'] [u'tribun', u'find', u'prison', u'psychiatrist', u'guilti'] [u'trulli', u'confid', u'friday', u'test', u'prove', u'boon'] [u'abattoir', u'slice', u'worker', u'number'] [u'mildura', u'face', u'court', u'drug', u'charg'] [u'send', u'birmingham', u'sink', u'villa'] [u'union', u'air', u'electrolux', u'concern'] [u'union', u'urg', u'sharehold', u'oust', u'telstra', u'chief'] [u'continu', u'militari', u'build', u'gulf'] [u'drop', u'bomb', u'iraq', u'zone'] [u'guidelin', u'highlight', u'cancer', u'risk', u'infant'] [u'olymp', u'committe', u'seek', u'extric', u'muck'] [u'rethink', u'strategi', u'turkey', u'reject'] [u'complain', u'north', u'korean', u'jet', u'shadow'] [u'push', u'iraq', u'vote', u'week'] [u'vail', u'discuss', u'medicin', u'subsidi', u'scheme'] [u'govt', u'approv', u'wind', u'farm'] [u'victoria', u'femal', u'polic', u'chaplain', u'begin', u'work'] [u'wannon', u'head', u'bushfir', u'review'] [u'polic', u'extradit', u'murder', u'suspect'] [u'waterfal', u'commission', u'critic', u'media'] [u'water', u'restrict', u'remain', u'despit', u'downpour'] [u'water', u'treatment', u'plant', u'damag', u'lightn', u'storm'] [u'webber', u'play', u'expect', u'ahead', u'australian'] [u'webber', u'relax', u'home', u'track', u'chanc'] [u'wilkinson', u'captain', u'england'] [u'wine', u'industri', u'year', u'billion', u'litr', u'vintag'] [u'woman', u'accus', u'shoot', u'husband', u'dead'] [u'aborigin', u'liaison', u'posit', u'continu'] [u'relief', u'packag', u'give', u'rebat', u'rural'] [u'agforc', u'say', u'drought', u'affect'] [u'alinghi', u'plan', u'friend', u'venu', u'undecid'] [u'american', u'samoan', u'move', u'marriag'] [u'bomb', u'explod', u'southern', u'philippin'] [u'anti', u'discrimin', u'offic', u'open', u'alic'] [u'aquat', u'centr', u'entri', u'charg', u'announc'] [u'architect', u'look', u'forward', u'wall', u'collaps', u'find'] [u'armstrong', u'rout', u'famous'] [u'arroyo', u'say', u'philippin', u'combat', u'soldier'] [u'asham', u'dublin', u'apologis', u'head', u'butt'] [u'aspirin', u'risk', u'throat', u'cancer', u'research'] [u'aussi', u'dollar', u'continu', u'climb'] [u'australia', u'appeal', u'public', u'flog', u'saudi'] [u'australia', u'face', u'lanka', u'six'] [u'australia', u'wari', u'lankan', u'spinner'] [u'aust', u'sharemarket', u'year'] [u'autopsi', u'report', u'releas', u'german', u'tourist', u'die'] [u'bacher', u'defend', u'world', u'rain', u'polici'] [u'bali', u'travel', u'warn', u'stay', u'high'] [u'banana', u'shire', u'vote', u'uphold', u'elector', u'decis'] [u'beachley', u'gold', u'coast', u'round'] [u'bergkamp', u'extend', u'stay', u'arsenal'] [u'beti', u'striker', u'toma', u'apologis', u'drive'] [u'blair', u'ivanov', u'discuss', u'iraq', u'crisi'] [u'brisban', u'barrist', u'head', u'mine', u'council'] [u'brisban', u'small', u'hous', u'plan', u'draw', u'critic'] [u'briton', u'make', u'second', u'row', u'attempt'] [u'brogden', u'pledg', u'hospit', u'wait', u'list'] [u'brumbi', u'drop', u'wayward', u'walker'] [u'bulk', u'bill', u'depend', u'larger', u'rebat', u'crean'] [u'bushfir', u'cost', u'expect', u'govt'] [u'busselton', u'bring'] [u'cairn', u'casino', u'futur', u'look', u'brighter'] [u'task', u'forc', u'address', u'land', u'council', u'woe'] [u'campasp', u'accept', u'mildura', u'posit'] [u'cape', u'york', u'author', u'lobbi', u'plan', u'race', u'meet'] [u'carlo', u'jackal', u'aid', u'face', u'court', u'germani'] [u'carr', u'promis', u'crackdown', u'scam'] [u'carr', u'quiet', u'waterfal', u'disput'] [u'chappel', u'leav', u'coach', u'door', u'open'] [u'china', u'nation', u'congress', u'open', u'beij'] [u'chines', u'congress', u'expect', u'announc', u'leadership'] [u'claim', u'draft', u'plan', u'establish', u'iraqi', u'govt'] [u'compo', u'coal', u'miner', u'extend', u'australia'] [u'want', u'log', u'polici', u'chang'] [u'coulthard', u'say', u'rule', u'encourag', u'collus'] [u'councillor', u'criticis', u'feder', u'bushfir', u'effort'] [u'council', u'seek', u'manag', u'fund'] [u'crean', u'slam', u'govt', u'respons', u'man', u'saudi', u'punish'] [u'cyclon', u'continu', u'drift', u'coastlin'] [u'cyclon', u'intensifi', u'coast'] [u'debat', u'victorian', u'drought', u'payment', u'applic'] [u'design', u'chang', u'renmark', u'entranc', u'wall'] [u'detaine', u'smash', u'window', u'door', u'baxter'] [u'dollar', u'tip', u'strengthen', u'rat', u'stay', u'hold'] [u'domest', u'violenc', u'common', u'rural', u'area', u'studi'] [u'don', u'condemn', u'pompey', u'rare', u'defeat'] [u'downer', u'urg', u'australian', u'leav', u'iraq'] [u'educ', u'union', u'want', u'school', u'resourc'] [u'electrolux', u'deni', u'job'] [u'farmer', u'welcom', u'moratorium', u'pledg'] [u'father', u'murder', u'woman', u'plead', u'public', u'help'] [u'fear', u'grow', u'gillespi', u'injuri'] [u'fifa', u'win', u'battl', u'dope', u'agenc'] [u'figur', u'highlight', u'age', u'care', u'home', u'woe'] [u'figur', u'decemb', u'econom', u'growth', u'subdu'] [u'firm', u'plan', u'nestl', u'factori'] [u'fishermen', u'hope', u'condit', u'right', u'catch'] [u'bond', u'director', u'reli', u'appeal', u'avoid'] [u'islam', u'guerilla', u'kill', u'indian', u'kashmir'] [u'german', u'devil', u'heaven'] [u'gold', u'coast', u'welcom', u'draft', u'tour', u'oper', u'legisl'] [u'goulburn', u'council', u'air', u'water', u'suppli', u'concern'] [u'govt', u'investig', u'return', u'anti', u'terror', u'kit'] [u'grain', u'grower', u'decid', u'merger'] [u'green', u'lobbi', u'labor', u'meet', u'demand', u'prefer'] [u'guard', u'colleagu', u'prison', u'shoot'] [u'hewitt', u'lead', u'australian', u'charg', u'arizona'] [u'holder', u'deportivo', u'confid', u'king', u'comeback'] [u'home', u'builder', u'nois', u'reduct', u'measur'] [u'hook', u'want', u'warn', u'train', u'bushrang'] [u'clear', u'race', u'melbourn'] [u'human', u'shield', u'determin', u'stay', u'iraq'] [u'indigen', u'issu', u'consid', u'weir', u'work'] [u'injur', u'gillespi', u'bow', u'cricket', u'world'] [u'irish', u'athlet', u'fail', u'dope', u'test'] [u'irrig', u'angri', u'water', u'share', u'plan'] [u'islam', u'leader', u'open', u'iraq', u'summit'] [u'israel', u'arrest', u'demolish', u'hous', u'west', u'bank'] [u'isra', u'sanction', u'choke', u'palestinian', u'prosper'] [u'jackson', u'call', u'bet'] [u'keira', u'prais', u'polic', u'work'] [u'killer', u'feder', u'seek', u'fresh', u'inquiri'] [u'kucera', u'urg', u'port', u'hedland', u'hospit', u'report'] [u'labor', u'advoc', u'special', u'visa', u'timor', u'refuge'] [u'land', u'council', u'disappoint', u'settlement', u'offer'] [u'late', u'winner', u'dent', u'portsmouth', u'titl', u'hop'] [u'leader', u'reject', u'critic', u'crime', u'bid'] [u'leader', u'struggl', u'reviv', u'ireland', u'peac', u'process'] [u'lead', u'nigerian', u'opposit', u'politician', u'assassin'] [u'lifesav', u'champ', u'readi'] [u'liverpool', u'want', u'houllier', u'life'] [u'long', u'boarder', u'noosa'] [u'face', u'court', u'attempt', u'murder', u'charg'] [u'appear', u'court', u'home', u'invas', u'charg'] [u'marseill', u'come', u'battl', u'french'] [u'martin', u'push', u'timor', u'treati', u'ratif'] [u'mayor', u'question', u'elect', u'pledg', u'relev'] [u'mcenro', u'name', u'laureus', u'sport', u'academi'] [u'media', u'watchdog', u'denounc', u'violenc', u'armenian'] [u'medicar', u'levi', u'rise', u'labor', u'costello'] [u'north', u'coast', u'go', u'state', u'crime', u'trend'] [u'mix', u'year', u'ahead', u'farm', u'commod'] [u'support', u'seek', u'chamber', u'commerc'] [u'student', u'brisban', u'march', u'anti'] [u'mother', u'tell', u'court', u'child', u'drop', u'babi', u'twice'] [u'motion', u'peac', u'end', u'councillor', u'evict'] [u'call', u'second', u'karratha', u'pharmaci'] [u'deni', u'drug', u'rehab', u'centr', u'claim'] [u'seek', u'chang', u'road', u'fund', u'formula'] [u'welcom', u'snowi', u'rehab', u'project', u'chang'] [u'deep', u'space', u'facil', u'open'] [u'newli', u'discov', u'daisi', u'plant', u'garden'] [u'malic', u'complac', u'columbia', u'tragedi', u'nasa'] [u'norway', u'player', u'help', u'toppl', u'england', u'die'] [u'approv', u'golden', u'point', u'rule'] [u'govt', u'releas', u'aborigin', u'affair', u'polici'] [u'govt', u'fund', u'elect', u'promis', u'budget'] [u'parti', u'guilti', u'polit', u'pragmat'] [u'woman', u'offer', u'bush', u'crucifixion', u'peac', u'deal'] [u'opposit', u'leader', u'assassin'] [u'pair', u'face', u'fraud', u'charg'] [u'palestinian', u'isra', u'disput', u'agenda'] [u'paradorn', u'crash', u'arizona'] [u'pastoralist', u'want', u'wild', u'answer'] [u'share', u'rise', u'strong', u'half', u'year', u'profit'] [u'peac', u'tshirt', u'land', u'strife'] [u'plane', u'engin', u'alleg', u'virgin', u'safeti', u'scar'] [u'plan', u'chang', u'wont', u'hurt', u'region'] [u'deni', u'plan', u'bulk', u'bill', u'mean', u'test'] [u'deni', u'troop', u'iraq'] [u'flag', u'possibl', u'decis', u'weekend'] [u'flag', u'possibl', u'decis', u'week'] [u'label', u'public', u'flog', u'appal', u'inhuman'] [u'govt', u'minist', u'oust', u'parliament'] [u'polic', u'evid', u'clark', u'contradictori', u'lawyer'] [u'polic', u'investig', u'elder', u'man', u'death'] [u'policeman', u'guilti', u'assault'] [u'polic', u'seek', u'extradit', u'pair'] [u'polic', u'road', u'safeti', u'campaign', u'success'] [u'polic', u'question', u'miss', u'document'] [u'politician', u'wrangl', u'fish', u'hall', u'fame'] [u'pont', u'pay', u'tribut', u'hussain'] [u'possibl', u'court', u'date', u'warn'] [u'postal', u'union', u'want', u'guarante', u'mail', u'safeti'] [u'postal', u'worker', u'agre', u'process', u'anti', u'terror'] [u'pound', u'slam', u'warn', u'lenienc'] [u'powel', u'optimist', u'grant', u'resolut'] [u'prayer', u'peac', u'mark', u'start', u'lend'] [u'prison', u'guard', u'charg', u'murder', u'inmat'] [u'push', u'environment', u'law', u'pass', u'quick'] [u'urg', u'driver', u'arm', u'insid'] [u'govt', u'appeal', u'coupl', u'jail', u'sentenc'] [u'postal', u'worker', u'concern', u'anti', u'terror'] [u'rain', u'stay', u'north', u'north', u'coast'] [u'rann', u'name', u'thinker', u'resid'] [u'rat', u'hold'] [u'rat', u'hold', u'dollar', u'hit', u'high'] [u'region', u'driver', u'urg', u'care'] [u'region', u'govt', u'work', u'remov', u'scourg'] [u'reliev', u'kefu', u'escap', u'surgeri'] [u'report', u'deliv', u'blast'] [u'resid', u'help', u'reduc', u'petti', u'crime'] [u'resid', u'face', u'dirti', u'water', u'problem'] [u'ridsdal', u'plan', u'spend', u'spree'] [u'emerg', u'age', u'care', u'centr'] [u'russia', u'refus', u'rule', u'veto', u'iraq'] [u'govt', u'invest', u'film'] [u'govt', u'reject', u'critic', u'region', u'effort'] [u'sailor', u'lodg', u'complaint', u'anthrax', u'vaccin'] [u'scientist', u'count', u'hundr', u'whale', u'ross'] [u'scud', u'arizona'] [u'sculli', u'transport', u'bureaucrat'] [u'selector', u'ponder', u'gillespi', u'replac'] [u'separatist', u'group', u'deni', u'involv', u'philippin'] [u'warn', u'hiker', u'sign', u'movement'] [u'shake', u'plan', u'boat', u'licenc'] [u'ship', u'free', u'sand', u'bank'] [u'south', u'african', u'calcul', u'unforgiv', u'waugh'] [u'south', u'say', u'fear', u'attack', u'north', u'korea', u'groundless'] [u'stone', u'roll', u'thankyou', u'careflight', u'helicopt'] [u'student', u'prais', u'anti', u'ralli'] [u'student', u'ralli', u'book', u'bomb'] [u'student', u'continu', u'protest'] [u'studi', u'reveal', u'politician', u'consid', u'power', u'seek'] [u'support', u'need', u'boost', u'worker', u'number'] [u'sydney', u'student', u'turn', u'forc', u'anti', u'ralli'] [u'tabcorp', u'merg', u'jupit'] [u'harvest', u'poppi', u'trial'] [u'telstra', u'deni', u'reduc', u'servic', u'age', u'disabl'] [u'telstra', u'reduc', u'specialis', u'servic', u'age'] [u'person', u'charg', u'man', u'death'] [u'thoma', u'thrill', u'award'] [u'thousand', u'student', u'ralli', u'anti', u'protest'] [u'tide', u'turn', u'favour', u'ocean', u'protect'] [u'tiger', u'showdown', u'bid', u'fifth', u'titl'] [u'seed', u'send', u'pack', u'event'] [u'toxic', u'wast', u'unlik', u'goldfield'] [u'traffic', u'manag', u'need', u'improv', u'survey'] [u'student', u'arrest', u'burn', u'flag', u'anti'] [u'union', u'call', u'smaller', u'class', u'improv', u'learn'] [u'union', u'warn', u'council', u'volunt', u'plan'] [u'monitor', u'indonesian', u'refuge'] [u'indic', u'abandon', u'second', u'resolut'] [u'poet', u'rise', u'iraq'] [u'send', u'bomber', u'deterr', u'north', u'korea'] [u'suspend', u'flight', u'japan'] [u'utrecht', u'reach', u'dutch', u'semi'] [u'venabl', u'tell', u'unit', u'concentr', u'europ'] [u'govt', u'refus', u'fund', u'rat', u'review'] [u'govt', u'target', u'fatigu', u'driver'] [u'wagga', u'rugbi', u'leagu', u'boost'] [u'wanganeen', u'say', u'travel', u'take', u'toll'] [u'water', u'crisi', u'deepen', u'world', u'suppli'] [u'water', u'restrict', u'lift', u'snowi', u'town'] [u'water', u'restrict', u'lift', u'nimbin'] [u'water', u'restrict', u'stay', u'tumbarumba'] [u'chang', u'fortun', u'wollongong'] [u'know', u'armidal', u'doctor', u'die'] [u'condit', u'claim', u'tourist', u'head', u'smash'] [u'wilkinson', u'honour', u'captain'] [u'wolf', u'send', u'pack', u'wolfsburg'] [u'woolgrow', u'urg', u'reinvent', u'sheep'] [u'work', u'begin', u'figtre', u'anglican', u'church'] [u'wright', u'threaten', u'action', u'literaci', u'materi', u'ban'] [u'highlight', u'reef', u'concern'] [u'yemeni', u'citizen', u'charg', u'support', u'qaeda'] [u'say', u'wollongong', u'communiti', u'radio'] [u'announc', u'imag', u'rethink'] [u'power', u'profit'] [u'safeti', u'bureau', u'report', u'timor', u'crash'] [u'welcom', u'coalit', u'health', u'strategi'] [u'angri', u'indian', u'star', u'boycott'] [u'apra', u'suspend', u'board', u'superannu', u'fund'] [u'assault', u'charg', u'atsic', u'leader', u'dismiss'] [u'basebal', u'legend', u'nilsson', u'bow'] [u'aussi', u'milkman', u'turn', u'golfer', u'carmichael', u'deliv'] [u'aust', u'share', u'market', u'finish'] [u'ban', u'warn', u'return', u'bench', u'support', u'victoria'] [u'basin', u'pump', u'begin', u'week'] [u'beachley', u'rid', u'gold', u'coast', u'streak'] [u'berger', u'quit', u'team', u'director'] [u'better', u'year', u'ahead', u'cattl', u'dairi', u'farmer'] [u'turnout', u'expect', u'guitar', u'championship'] [u'blame', u'duckworth', u'tell', u'south'] [u'blix', u'confid', u'extent', u'iraqi'] [u'blue', u'horror', u'lead', u'joust', u'crusad'] [u'bring', u'aussi', u'buoyant', u'lanka'] [u'britain', u'offer', u'amend', u'resolut'] [u'british', u'conductor', u'take', u'head', u'post', u'opera'] [u'confid', u'takeov', u'deal', u'ahead'] [u'report', u'profit', u'jump'] [u'break', u'hill', u'concern', u'request'] [u'bulldog', u'confirm', u'assault', u'probe'] [u'call', u'region', u'boost', u'sustain', u'growth'] [u'candid', u'contest', u'alburi', u'seat'] [u'cargil', u'beef', u'speak', u'job', u'figur'] [u'casanova', u'come', u'beat', u'muller'] [u'cathol', u'archdioces', u'merci', u'care', u'centr'] [u'celtic', u'face', u'crunch', u'fortnight', u'trophi', u'tilt'] [u'chemic', u'compani', u'prepar', u'draft'] [u'chiesa', u'goal', u'put', u'lazio', u'uefa'] [u'child', u'detaine', u'attend', u'primari', u'school'] [u'china', u'announc', u'record', u'budget', u'deficit'] [u'claim', u'elect', u'featur', u'convict', u'crimin'] [u'claim', u'psych', u'report', u'teenag', u'arsonist', u'bias'] [u'clark', u'defenc', u'request', u'charg', u'dismiss'] [u'investig'] [u'coalit', u'plan', u'swarm', u'iraq', u'zone'] [u'coff', u'hop', u'beat', u'gold', u'coast', u'lifesav', u'event'] [u'comment', u'super', u'success', u'pointless'] [u'commonwealth', u'offer', u'fund'] [u'consult', u'hospit', u'redevelop', u'plan'] [u'killer', u'transfer', u'act', u'mentor'] [u'coron', u'drive', u'upgrad', u'continu', u'draw'] [u'corrupt', u'watchdog', u'cite', u'polic', u'miss'] [u'cosmet', u'surgeri', u'start', u'bring', u'rear'] [u'council', u'back', u'nativ', u'veget', u'clearanc'] [u'council', u'say', u'load', u'zone', u'problem', u'unavoid'] [u'council', u'fear', u'possibl', u'rail', u'link', u'closur'] [u'court', u'order', u'doctor', u'incit', u'bulk', u'bill'] [u'court', u'tell', u'snowtown', u'accus', u'angri', u'miss'] [u'crow', u'recal', u'roo', u'semi'] [u'cyclon', u'continu', u'drift', u'queensland', u'coast'] [u'cyclon', u'lose', u'intens', u'head', u'north'] [u'deadlin', u'extend', u'coastal', u'develop'] [u'defenc', u'forc', u'readi', u'action', u'iraq'] [u'dent', u'downshift', u'serv', u'scottsdal'] [u'derbi', u'pair', u'face', u'court', u'incid'] [u'develop', u'ask', u'provid', u'inform'] [u'doctor', u'group', u'question', u'medicar'] [u'donald', u'quit', u'threat', u'world', u'snub'] [u'downer', u'deni', u'bulli', u'timor', u'treati'] [u'downer', u'head', u'dili', u'sign', u'east', u'timor'] [u'drainag', u'scheme'] [u'driver', u'urg', u'heed', u'flood', u'warn'] [u'elber', u'doubl', u'send', u'bayern', u'german', u'final'] [u'palestinian', u'kill', u'gaza', u'raid'] [u'storm', u'earli', u'lead', u'dubai'] [u'emkanimblaem', u'captain', u'stay', u'despit', u'inquiri', u'cloud'] [u'expert', u'issu', u'world', u'sugar', u'price', u'warn'] [u'fair', u'trade', u'polic', u'warn', u'swindl'] [u'farmer', u'alien', u'tree', u'clear', u'agforc'] [u'farmer', u'tell', u'capitalis', u'organ', u'canola'] [u'farm', u'subsidi', u'starv', u'africa', u'annan', u'tell', u'rich'] [u'north', u'banana', u'allow'] [u'feyenoord', u'line', u'semi', u'final', u'holder', u'ajax'] [u'fiji', u'aust', u'sign', u'counter', u'terror', u'agreement'] [u'fiji', u'soldier', u'trap', u'hoodlum', u'east', u'timor'] [u'damag', u'bairnsdal', u'build'] [u'fli', u'invad', u'bush'] [u'defenc', u'secretari', u'launch', u'anti'] [u'freeman', u'wave', u'grand', u'prix', u'flag'] [u'govt', u'agre', u'seqld', u'public', u'transport'] [u'govt', u'offer', u'help', u'small', u'busi', u'affect'] [u'green', u'question', u'burrup', u'develop'] [u'hill', u'tightlip', u'anthrax', u'vaccin', u'refus'] [u'hop', u'croc', u'match', u'boost', u'townsvill', u'profil'] [u'howard', u'condemn', u'latest', u'east', u'suicid', u'bomb'] [u'howard', u'deni', u'timor', u'treati', u'blackmail'] [u'howard', u'unimpress', u'student', u'anti', u'ralli'] [u'iraq', u'destroy', u'samoud', u'missil'] [u'iraqi', u'armi', u'profession', u'rapist', u'vanston'] [u'iraq', u'barrier', u'armstrong', u'tour', u'franc'] [u'israel', u'answer', u'bomb', u'refuge', u'camp'] [u'isra', u'secur', u'cabinet', u'meet', u'suicid'] [u'israel', u'raid', u'gaza', u'strip', u'retali', u'suicid'] [u'jewel', u'dangl', u'carat', u'thiev', u'accept'] [u'juri', u'retir', u'nightclub', u'shoot', u'trial'] [u'kalgoorli', u'hous', u'estat', u'facelift'] [u'keegan', u'boost', u'citi', u'bernstein', u'quit'] [u'keelti', u'question', u'need', u'senat', u'inquiri', u'bali'] [u'letter', u'health', u'fund', u'plan', u'hike'] [u'liabil', u'insur', u'leav', u'regatta', u'limbo'] [u'lithgow', u'power', u'time'] [u'mallorca', u'join', u'recreativo', u'king', u'final'] [u'beat', u'leed', u'newcastl', u'stumbl'] [u'maradona', u'junior', u'scotland'] [u'mcbride', u'hospit', u'brain', u'haemorrhag'] [u'meet', u'focus', u'child', u'care'] [u'melbourn', u'train', u'crash', u'probe', u'continu'] [u'mentor', u'program', u'review', u'robert', u'case'] [u'ahead', u'rolleston'] [u'miner', u'union', u'meet', u'attend'] [u'miss', u'teenag', u'declar', u'dead'] [u'women', u'seek', u'work', u'antarctica'] [u'say', u'land', u'forc', u'resid', u'away'] [u'conscienc', u'vote', u'clone'] [u'upbeat', u'wildlif', u'park'] [u'visit', u'impact', u'gippsland'] [u'nation', u'park', u'media', u'campaign'] [u'nat', u'question', u'drought', u'declar', u'zone'] [u'natur', u'resourc', u'dept', u'get', u'boost', u'clear'] [u'defend', u'kiwi', u'inclus', u'eye', u'china'] [u'life', u'plan', u'nestl', u'factori'] [u'evid', u'saudi', u'financ', u'bali', u'bomber', u'polic'] [u'noffk', u'stun', u'blue'] [u'noffk', u'star', u'bull', u'rock', u'blue'] [u'nomin', u'open', u'council', u'elect'] [u'need', u'resolut', u'china'] [u'northam', u'busi', u'unsur', u'space', u'centr', u'impact'] [u'tear', u'oust', u'protea', u'say', u'pont'] [u'elect', u'ballot', u'order', u'announc'] [u'prefer', u'deal', u'underway', u'nomin'] [u'govt', u'boost', u'indigen', u'job', u'scheme'] [u'polic', u'search', u'alleg', u'kidnapp'] [u'oakey', u'teacher', u'strike', u'today'] [u'ombudsman', u'hear', u'central', u'concern'] [u'pakistan', u'face', u'world', u'flop', u'probe'] [u'parti', u'pledg', u'power', u'polic'] [u'perilya', u'confid', u'life', u'reach'] [u'philippin', u'author', u'davao', u'airport', u'bomber'] [u'pioneer', u'honour', u'anniversari', u'hinkler', u'solo'] [u'blackmail', u'timor', u'treati', u'brown'] [u'recal', u'parliament', u'debat'] [u'prais', u'bachtiar', u'bali', u'investig'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'probe', u'crash', u'attempt', u'bank', u'robberi'] [u'powder', u'return', u'anti', u'terror', u'kit'] [u'probe', u'begin', u'death', u'prison'] [u'tourism', u'industri', u'await', u'cabinet'] [u'rain', u'hit', u'miss', u'western'] [u'ratepay', u'group', u'want', u'compulsori', u'vote'] [u'read', u'consolid', u'playoff', u'berth', u'wolv', u'stumbl'] [u'record', u'number', u'candid', u'run', u'poll'] [u'reed', u'boat', u'crew', u'embark', u'histor', u'voyag'] [u'resid', u'warn', u'mozzi', u'risk'] [u'retail', u'trade', u'figur', u'weaker', u'expect'] [u'revamp', u'nambour', u'birth', u'unit', u'open'] [u'volunt', u'protest', u'manag', u'plan'] [u'rio', u'ralli', u'past', u'verkerk', u'florida', u'quarter'] [u'brew', u'blue', u'ribbon', u'contractor', u'plan'] [u'condemn', u'protest', u'anzac', u'parad'] [u'rule', u'clark', u'case', u'march'] [u'saddam', u'issu', u'order', u'hide', u'weapon', u'powel'] [u'schumach', u'say', u'team', u'work', u'unfair'] [u'senat', u'pass', u'timor', u'treati'] [u'shire', u'hop', u'offer', u'leas', u'life'] [u'shire', u'look', u'share', u'health', u'resourc'] [u'space', u'giant', u'admit', u'pass', u'secret', u'china'] [u'special', u'visa', u'wont', u'help', u'timor', u'refuge'] [u'sport', u'club', u'unhappi', u'recreat', u'report'] [u'springborg', u'visit', u'ail'] [u'student', u'disciplin', u'truanci', u'anti'] [u'super', u'success', u'pointless', u'exercis'] [u'support', u'driver', u'fatigu', u'plan'] [u'suspect', u'arrest', u'solomon', u'polic', u'assassin'] [u'suspect', u'child', u'abus', u'victim', u'safe', u'victoria'] [u'takeov', u'deal', u'surpris', u'centrebet'] [u'talk', u'continu', u'stop', u'union', u'action', u'airlin'] [u'telstra', u'reject', u'claim', u'hinder', u'competit'] [u'telstra', u'domin', u'ongo', u'competit'] [u'test', u'test'] [u'councillor', u'south', u'coast', u'seat'] [u'palestinian', u'kill', u'isra', u'raid', u'gaza'] [u'tourism', u'industri', u'hop', u'japanes', u'visitor'] [u'tradit', u'owner', u'firm', u'continu', u'agreement'] [u'union', u'drop', u'industri', u'action', u'virgin', u'blue'] [u'unit', u'injuri', u'toll', u'take', u'kean', u'silvestr'] [u'upfront', u'fee', u'patient', u'minimis'] [u'homeless', u'cyclon', u'ravag'] [u'deploy', u'north', u'korea', u'shouldnt'] [u'expel', u'member', u'iraqi', u'mission'] [u'research', u'claim', u'aspirin', u'prevent', u'colon'] [u'vaughan', u'keen', u'england', u'captain'] [u'lobbi', u'govt', u'bushfir', u'support'] [u'virgin', u'safeti', u'disput', u'head'] [u'opposit', u'want', u'polic', u'station', u'list', u'public'] [u'iraq', u'immin', u'perth', u'reverend'] [u'memori', u'appropri', u'backdrop', u'protest'] [u'seal', u'long', u'term', u'suppli', u'deal', u'japan'] [u'water', u'flow', u'expect', u'reach', u'meninde'] [u'welfar', u'group', u'criticis', u'tabcorp', u'jupit', u'merger'] [u'wicket', u'tumbl', u'bull', u'rock', u'blue'] [u'woman', u'dead', u'children', u'injur', u'accid'] [u'woodchip', u'firm', u'angri', u'act', u'terror'] [u'wood', u'pleas', u'test', u'repair', u'knee'] [u'world', u'record', u'attempt', u'fail'] [u'world', u'sugar', u'price', u'tip', u'fall'] [u'youth', u'plead', u'guilti', u'loot', u'fire'] [u'zimbabw', u'fan', u'arrest', u'pakistan', u'match'] [u'aborigin', u'leadership', u'honour'] [u'coron', u'set', u'paramet', u'immigr', u'inquest'] [u'airlin', u'say', u'council', u'misunderstand', u'fund', u'letter'] [u'alianza', u'lima', u'undo', u'late', u'cobreloa', u'strike'] [u'alterc', u'leav', u'pair', u'hospit'] [u'expect', u'support', u'payment', u'scheme'] [u'amrozi', u'hand', u'prosecutor'] [u'arafat', u'nomin', u'deputi', u'palestinian', u'author'] [u'arafat', u'report', u'choos', u'prime', u'minist'] [u'paint', u'enter', u'archibald', u'prize'] [u'arson', u'squad', u'probe', u'hous', u'blaze'] [u'artist', u'withdraw', u'elect', u'campaign'] [u'roma', u'striker', u'montella', u'readi', u'quit', u'azzurri'] [u'aust', u'creat', u'ambassador', u'counter', u'terror'] [u'australia', u'charg', u'semi'] [u'barrichello', u'lead', u'qualifi'] [u'barrichello', u'upstag', u'schu'] [u'bergkamp', u'target', u'chelsea', u'clash'] [u'berri', u'barmera', u'council', u'give', u'field', u'road', u'prioriti'] [u'billiton', u'support', u'communiti', u'project'] [u'crowd', u'tip', u'folk', u'festiv'] [u'blaze', u'ravag', u'northcliff', u'hous'] [u'boca', u'junior', u'coast', u'libertador'] [u'briefcas', u'spark', u'fals', u'alarm', u'powel', u'hotel'] [u'broadband', u'internet', u'connect', u'surg'] [u'build', u'industri', u'inquiri', u'stunt', u'union'] [u'bulldoz', u'run', u'man'] [u'bull', u'slow', u'blue', u'chase'] [u'bush', u'call', u'multin', u'effort', u'north', u'korea'] [u'bushfir', u'affect', u'farmer', u'urg', u'appli'] [u'button', u'need', u'quick', u'start', u'say', u'fisichella'] [u'water', u'suppli', u'fund', u'fast', u'track'] [u'speed', u'indigen', u'negoti', u'process'] [u'cambodia', u'king', u'readi', u'abdic', u'request'] [u'candid', u'ballot', u'paper', u'posit'] [u'carr', u'plan', u'hospit', u'emerg', u'giant'] [u'carr', u'promis', u'lower', u'patient', u'wait', u'time'] [u'chievo', u'doubli', u'determin', u'master', u'milan'] [u'child', u'offenc', u'send', u'jail'] [u'claim', u'drought', u'imag', u'keep', u'tourist', u'away'] [u'claim', u'resign', u'littl', u'impact'] [u'communiti', u'doubt', u'insur', u'financi', u'viabil'] [u'communiti', u'farewel', u'young', u'shock', u'victim'] [u'coober', u'pedi', u'donat', u'opal', u'bendigo', u'race'] [u'cool', u'respons', u'give', u'antarct', u'posit'] [u'corinthian', u'fight', u'earn', u'semi', u'final', u'draw'] [u'coron', u'hand', u'bushfir', u'find'] [u'council', u'donat', u'fund', u'carniv', u'flower'] [u'council', u'seek', u'pedestrian', u'cross', u'fund'] [u'countri', u'mayor', u'associ', u'say', u'rate', u'peg'] [u'cross', u'examin', u'continu', u'burk'] [u'cub', u'bear', u'virtual', u'extinct', u'south', u'china', u'tiger'] [u'cyclon', u'erica', u'weaken', u'offshor'] [u'dean', u'charg', u'breach', u'elector', u'law'] [u'defenc', u'anchor', u'real', u'renaiss'] [u'dem', u'account', u'govt'] [u'drought', u'slash', u'farm', u'incom'] [u'dung', u'beetl', u'import', u'solut'] [u'editor', u'trial', u'akbar', u'caricatur'] [u'edward', u'address', u'issu', u'geraldton', u'meet'] [u'english', u'dismiss', u'aust', u'friend', u'plan'] [u'expo', u'focus', u'small', u'busi'] [u'dismiss', u'roo', u'friend', u'plan'] [u'famili', u'distress', u'hospit', u'wait'] [u'farmer', u'hop', u'rain'] [u'farmer', u'play', u'impact', u'rural', u'commod', u'index'] [u'farm', u'hero', u'induct', u'agricultur', u'hall'] [u'fenix', u'notch', u'libertador', u'goal'] [u'feofanova', u'miss', u'sindelfingen', u'meet'] [u'festiv', u'celebr', u'intern', u'women'] [u'commission', u'deni', u'muzzl', u'offic'] [u'firefight', u'contain', u'asphalt', u'factori', u'blaze'] [u'fischer', u'tempt', u'america'] [u'send', u'trial', u'sydney', u'gang', u'rap'] [u'year', u'compli', u'court', u'summon', u'india'] [u'flight', u'centr', u'announc', u'british', u'expans'] [u'flood', u'water', u'stall', u'cattl', u'export'] [u'forsyth', u'lead', u'dubai', u'lurk'] [u'south', u'korean', u'soldier', u'kill', u'timor', u'accid'] [u'french', u'readi', u'dublin', u'battl'] [u'fuel', u'steal', u'rise', u'polic'] [u'gambil', u'kendrick', u'advanc', u'delray', u'event'] [u'gap', u'iraq', u'kuwait', u'border', u'fenc', u'access'] [u'gilchrist', u'get', u'aust', u'blaze', u'start'] [u'set', u'sight', u'final', u'return'] [u'golfer', u'split', u'qatar', u'master'] [u'govt', u'bodi', u'order', u'compo', u'sydney', u'bushfir'] [u'govt', u'reject', u'claim', u'pacif', u'solut', u'fail'] [u'govt', u'wont', u'releas', u'prosecut', u'advic', u'build'] [u'gunnedah', u'spotlight', u'doctor', u'gather'] [u'half', u'children', u'overboard', u'allow', u'stay'] [u'hama', u'chief', u'bomb', u'maker', u'arrest'] [u'hewitt', u'scud', u'arizona'] [u'high', u'court', u'grant', u'woman', u'right', u'challeng'] [u'hop', u'motorcycl', u'safeti', u'campaign', u'curb'] [u'howard', u'play', u'compromis'] [u'human', u'shield', u'expel', u'iraq'] [u'hurrican', u'swamp', u'stormer', u'otago', u'bull'] [u'illawarra', u'green', u'launch', u'transport', u'polici'] [u'india', u'wont', u'repeat', u'kenya', u'mistak', u'ganguli'] [u'indigen', u'econom', u'forum', u'continu', u'alic'] [u'injur', u'arron', u'pull', u'world', u'indoor'] [u'insur', u'woe', u'threaten', u'poni', u'club', u'championship'] [u'high', u'mildura', u'abattoir', u'sale'] [u'intern', u'energi', u'contract', u'sign'] [u'iraq', u'engag', u'wil', u'charad', u'say', u'bush'] [u'iraq', u'unrest', u'gut', u'livestock', u'export'] [u'irympl', u'home', u'ambul', u'station'] [u'isra', u'tank', u'occupi', u'northern', u'gaza', u'strip'] [u'issu', u'overcom', u'project'] [u'japan', u'market', u'slump'] [u'jockey', u'return', u'gold', u'coast'] [u'juri', u'murder', u'trial'] [u'kahn', u'abus', u'longer', u'bayern'] [u'kaiserslautern', u'look', u'bundesliga', u'boost'] [u'kenya', u'opt', u'india'] [u'kosciuszko', u'nation', u'park', u'task', u'forc', u'keep', u'small'] [u'larg', u'hole', u'iraqi', u'kuwaiti', u'border', u'fenc'] [u'latham', u'red'] [u'lib', u'bega', u'candid', u'secur', u'spot', u'ballot'] [u'life', u'sweet', u'lolli', u'hungri', u'britain'] [u'macarthur', u'crippl', u'yacht', u'near', u'fail'] [u'appear', u'court', u'child', u'sexual', u'abus'] [u'die', u'mine', u'accid'] [u'mango', u'troppo', u'idea', u'grower'] [u'injur', u'blast'] [u'jail', u'assault', u'women'] [u'marin', u'expert', u'discuss', u'shark', u'number'] [u'market', u'hit', u'year'] [u'marseill', u'lure', u'velodrom', u'cauldron'] [u'media', u'group', u'urg', u'journalist', u'safeti', u'iraq'] [u'micronesia', u'presid', u'lose', u'nation', u'elect'] [u'minist', u'declar', u'atom', u'site', u'rehab', u'scratch'] [u'dengu', u'fever', u'case', u'confirm'] [u'tout', u'fish', u'lure', u'tourist'] [u'muscat', u'miss', u'firm', u'clash'] [u'nation', u'secur', u'issu', u'focus'] [u'nervous', u'investor', u'market', u'year'] [u'fisheri', u'protect', u'boat', u'patrol'] [u'soldier', u'kill', u'avalanch', u'indian'] [u'noffk', u'prove', u'potent'] [u'northam', u'chamber', u'commerc', u'presid'] [u'coalit', u'gambl', u'polici'] [u'health', u'deni', u'hospit', u'cut'] [u'polic', u'search', u'bodi', u'attach', u'cano'] [u'organis', u'unhappi', u'lack', u'pilot'] [u'pair', u'plead', u'guilti', u'polic', u'murder'] [u'palac', u'theatr', u'revamp'] [u'parkinson', u'gold', u'coast'] [u'plane', u'veer', u'tarmac', u'melbourn'] [u'welcom', u'laden', u'execut'] [u'polic', u'hunt', u'copper', u'wire', u'thiev'] [u'polic', u'injur', u'brawl', u'outsid', u'hotel'] [u'policeman', u'jail', u'student', u'offic', u'death'] [u'polic', u'probe', u'blaze', u'geriatr', u'home'] [u'polic', u'probe', u'suspici', u'death', u'rockhampton'] [u'polic', u'urg', u'long', u'weekend', u'road', u'safeti'] [u'postal', u'worker', u'send', u'home', u'chemic', u'scare'] [u'puppi', u'problem', u'pooch'] [u'qantaslink', u'announc', u'servic'] [u'queensland', u'split', u'clone', u'stem', u'cell'] [u'question', u'nuclear', u'test', u'site', u'clean'] [u'radcliff', u'male', u'pacemak', u'upset', u'kenyan', u'rival'] [u'raikkonen', u'put', u'mclaren', u'practic'] [u'recreativo', u'pois', u'year', u'drought'] [u'refuge', u'famili', u'await', u'lawyer', u'return'] [u'renmark', u'woman', u'charg', u'fatal', u'stab'] [u'rig', u'firm', u'fin', u'worker', u'death'] [u'riverland', u'polic', u'chief', u'step'] [u'rock', u'lobster', u'price', u'dive'] [u'row', u'competit', u'ahead'] [u'saddam', u'tell', u'bush', u'rememb', u'vietnam'] [u'sampra', u'like', u'skip', u'indian', u'well'] [u'sandalwood', u'see', u'super', u'farmer'] [u'savag', u'get', u'death', u'threat', u'dublin', u'head', u'butt'] [u'schooli', u'review', u'delay', u'frustrat', u'beatti'] [u'soorley', u'expect', u'stand', u'june'] [u'spirit', u'forc', u'final', u'kingz', u'shock', u'newcastl'] [u'student', u'injur', u'collid'] [u'sydney', u'regent', u'theatr', u'residenti', u'site'] [u'technic', u'problem', u'blame', u'algerian', u'plane', u'crash'] [u'teen', u'face', u'court', u'rape', u'charg'] [u'telstra', u'leav', u'hong', u'kong', u'lemon', u'fell'] [u'tennant', u'alic', u'teacher', u'accept'] [u'hand', u'financi', u'boost'] [u'tourism', u'push', u'aim', u'lure', u'coast', u'resid'] [u'tourism', u'retail', u'happi', u'posit', u'figur'] [u'turkish', u'militari', u'head', u'iraqi', u'border'] [u'oncologist', u'resign', u'ballarat', u'hospit'] [u'union', u'monitor', u'abattoir', u'chang'] [u'unit', u'owner', u'benefit', u'bodi', u'corpor', u'law'] [u'presid', u'say', u'iraq', u'justifi'] [u'secur', u'council', u'readi', u'debat', u'iraq', u'resolut'] [u'legal', u'accus', u'economis', u'case'] [u'polic', u'ask', u'explain', u'secret', u'file'] [u'viduka', u'warn', u'gunner'] [u'virgin', u'blue', u'conced', u'engin', u'flight', u'check'] [u'virtual', u'courtroom', u'grow', u'popular'] [u'govt', u'reject', u'hospit', u'close', u'claim'] [u'wale', u'scotland', u'wooden', u'spoon', u'chase'] [u'fear', u'forc', u'youth', u'championship'] [u'waugh', u'clark', u'lead', u'blue', u'reviv'] [u'wayn', u'dean', u'induct', u'surf', u'hall', u'fame'] [u'webber', u'make', u'fli', u'start'] [u'wenger', u'unmov', u'fergi', u'jib'] [u'westpac', u'centralis', u'offic'] [u'winni', u'mandela', u'face', u'fraud', u'charg'] [u'womadelaid', u'aim', u'kindr', u'vibe'] [u'world', u'pitch', u'suit', u'lanka', u'say', u'sangakkara'] [u'women', u'honour', u'equal', u'contribut'] [u'alic', u'darwin', u'rail', u'link', u'roll'] [u'anti', u'smoke', u'group', u'target', u'intern', u'women'] [u'anti', u'smoke', u'lobbi', u'support', u'coalit', u'tobacco'] [u'argentin', u'judg', u'indict', u'iranian', u'bomb'] [u'aust', u'charg', u'semi'] [u'australia', u'book', u'semi', u'final', u'spot'] [u'australia', u'order', u'embassi', u'home', u'iraq'] [u'gun', u'advanc', u'indian', u'well'] [u'blix', u'deliv', u'posit', u'report', u'iraq'] [u'blue', u'crush', u'crusad', u'red', u'remain', u'winless'] [u'blue', u'signal', u'intent', u'thrash', u'crusad'] [u'blue', u'meet', u'bull', u'final'] [u'bomber', u'thrash', u'dog', u'practic', u'match'] [u'bracken', u'playng', u'wait', u'game'] [u'broadband', u'crash', u'strand', u'telstra', u'surfer'] [u'broadway', u'strike', u'orchestra', u'cut'] [u'brogden', u'defend', u'industri', u'relat', u'polici'] [u'bull', u'struggl', u'declar'] [u'burma', u'claim', u'black', u'list', u'unfair'] [u'bushfir', u'appeal', u'chief', u'defend', u'alloc', u'assess'] [u'cat', u'clip', u'brumbi', u'super', u'thriller'] [u'withdraw', u'book'] [u'chile', u'decid', u'resolut', u'support'] [u'china', u'say', u'admit', u'bomb'] [u'coalit', u'crack', u'illeg', u'cigarett', u'sale'] [u'coulthard', u'win', u'aust', u'grand', u'prix'] [u'court', u'order', u'compens', u'srebrenica', u'massacr'] [u'cyclon', u'watch', u'storm', u'coast'] [u'docker', u'accus', u'port', u'rough', u'play'] [u'donald', u'announc', u'retir'] [u'downer', u'call', u'north', u'korea', u'ambassador', u'missil'] [u'duck', u'shoot', u'open', u'amid', u'protest'] [u'track', u'dubai'] [u'embassi', u'advis', u'australian', u'leav', u'israel'] [u'employ', u'welcom', u'coalit', u'polici'] [u'engin', u'work', u'bog', u'jumbo'] [u'enterpris', u'minist', u'defend', u'respons', u'question'] [u'expert', u'discuss', u'possibl', u'shark', u'extinct'] [u'extrem', u'fundrais', u'drive', u'irish', u'brother'] [u'driver', u'battl', u'pole', u'posit'] [u'fatal', u'mark', u'begin', u'long', u'weekend'] [u'fish', u'crush', u'martin', u'set', u'semi', u'clash', u'rio'] [u'kill', u'gaza', u'strip', u'fight'] [u'ganguli', u'guid', u'india', u'victori'] [u'govt', u'car', u'sell', u'minist', u'vip', u'address'] [u'group', u'lobbi', u'adopt'] [u'hama', u'secur', u'chief', u'kill', u'west', u'bank', u'attack'] [u'hantuchova', u'begin', u'defenc', u'victori'] [u'hewitt', u'scud', u'cours', u'final', u'showdown'] [u'hong', u'kong', u'angler', u'make', u'massiv', u'cannabi', u'catch'] [u'howard', u'face', u'small', u'protest', u'land'] [u'howard', u'face', u'anti', u'protest'] [u'howard', u'decid', u'troop', u'commit'] [u'human', u'right', u'court', u'order', u'srebrenica', u'massacr'] [u'hundr', u'ralli', u'peac', u'howard', u'open'] [u'indian', u'muslim', u'march', u'threat'] [u'injur', u'jayasuriya', u'doubt', u'india', u'clash'] [u'inquest', u'tourist', u'death', u'adjourn'] [u'internet', u'speed', u'record', u'break', u'say'] [u'iraq', u'destroy', u'samoud', u'missil', u'offici'] [u'iraq', u'domin', u'trip'] [u'jordan', u'deni', u'east', u'deal'] [u'king', u'cat', u'hawk', u'notch', u'play', u'win'] [u'klusen', u'despond', u'latest', u'heartbreak'] [u'labor', u'blast', u'delay', u'deport', u'iraq'] [u'labor', u'get', u'green', u'prefer', u'margin'] [u'land', u'owner', u'critic', u'cwealth', u'consult'] [u'alleg', u'imperson', u'taxi', u'driver'] [u'market', u'brace', u'pressur'] [u'mason', u'miss', u'bulldog', u'open'] [u'minardi', u'abort', u'qualifi', u'bold'] [u'muslim', u'cleric', u'sentenc', u'prison', u'incit'] [u'nauru', u'presid', u'critic', u'condit'] [u'owner', u'keen', u'reloc', u'cannon'] [u'board', u'calm', u'italian', u'polit', u'nerv'] [u'korea', u'spokesman', u'give', u'omin', u'warn'] [u'govt', u'criticis', u'elect', u'promis'] [u'polic', u'search', u'bodi', u'spot'] [u'omalley', u'trail', u'palmer', u'christchurch'] [u'minist', u'criticis', u'women', u'focus'] [u'oppn', u'say', u'bacon', u'deni', u'heritag'] [u'pampl', u'stay', u'touch'] [u'pedestrian', u'motorist', u'kill', u'road'] [u'pie', u'crow', u'decid'] [u'pie', u'season', u'final'] [u'polic', u'search', u'cano'] [u'polic', u'investig', u'fatal', u'pedestrian', u'accid'] [u'polic', u'investig', u'suspici', u'death', u'farm'] [u'pybus', u'readi', u'quit'] [u'qanta', u'train', u'strike', u'breaker', u'instead', u'staff'] [u'hockey', u'team', u'notch', u'win', u'darwin'] [u'radcliff', u'opt', u'cross', u'countri', u'defenc'] [u'red', u'remain', u'winless'] [u'red', u'remain', u'winless', u'brumbi', u'stun'] [u'rmit', u'plan', u'sell', u'bundoora', u'site'] [u'rooki', u'fail', u'spark', u'qualifi'] [u'roo', u'fine', u'tune', u'game', u'crow'] [u'call', u'action', u'gambl', u'issu'] [u'sampra', u'withdraw', u'indian', u'well'] [u'schu', u'borrow', u'barrichello', u'set', u'clinch'] [u'slater', u'fourth', u'round', u'gold', u'coast'] [u'soprano', u'star', u'gandolfini', u'sue', u'contract'] [u'south', u'america', u'host', u'soccer', u'world'] [u'stolz', u'move', u'second', u'christchurch'] [u'sunris', u'partner', u'look', u'asia', u'custom'] [u'reform', u'need', u'mine', u'explor', u'inquiri'] [u'teacher', u'threaten', u'industri', u'action', u'region'] [u'tens', u'secur', u'council', u'debat', u'continu'] [u'show', u'go', u'broadway', u'actor'] [u'trulli', u'fastest', u'practic'] [u'babyhol', u'give', u'birth', u'child'] [u'muslim', u'cleric', u'jail', u'incit', u'hostil'] [u'ulirach', u'ban', u'year', u'dope'] [u'secur', u'council', u'defer', u'iraq', u'decis'] [u'impos', u'econom', u'sanction', u'mugab', u'offici'] [u'troop', u'accus', u'enter', u'prohibit', u'zone'] [u'lib', u'tell', u'feder', u'butt'] [u'health', u'warn', u'pool', u'owner', u'amoeba'] [u'prison', u'crackdown', u'mobil', u'phone'] [u'weather', u'bureau', u'issu', u'cyclon', u'warn', u'tiwi'] [u'woman', u'critic', u'hurt', u'boonah', u'cliff', u'fall'] [u'zabel', u'secur', u'victori', u'season'] [u'zimbabwean', u'vermeulen', u'suffer', u'crack', u'skull'] [u'alinghi', u'crew', u'return', u'home', u'hero', u'welcom'] [u'ammunit', u'concern', u'hamper', u'shoot', u'rang'] [u'arson', u'attack', u'increas'] [u'aust', u'zealand', u'celebr', u'trade', u'agreement'] [u'aust', u'fail', u'reach', u'agreement', u'iraq'] [u'aust', u'iraq', u'differ', u'wont', u'affect', u'trade', u'howard'] [u'australia', u'upgrad', u'travel', u'warn', u'east'] [u'auxerr', u'lose', u'streak', u'renn'] [u'beachley', u'rid', u'high', u'gold', u'coast'] [u'black', u'cap', u'overpow', u'zimbabw'] [u'blair', u'threaten', u'quit', u'iraq'] [u'bomber', u'thrash', u'bulldog', u'practic', u'match'] [u'bomb', u'defus', u'centr', u'jeddah'] [u'british', u'proof', u'armour', u'jaguar', u'report'] [u'broadway', u'striker', u'march', u'theatr', u'stay', u'close'] [u'burn', u'properti', u'block', u'price', u'skyrocket'] [u'accid', u'southern', u'indian', u'leav', u'seven', u'dead'] [u'bushfir', u'helicopt', u'pilot', u'make', u'recoveri'] [u'bushfir', u'relief', u'fund', u'distribut', u'april'] [u'bush', u'say', u'mobil', u'weapon', u'laboratori'] [u'canberra', u'road', u'vamp'] [u'capriati', u'davenport', u'eas', u'indian', u'well', u'fourth'] [u'carlo', u'want', u'arsenal', u'madrid'] [u'carr', u'promis', u'smaller', u'class', u'labor', u'launch'] [u'cat', u'king', u'hawk', u'notch', u'play', u'win'] [u'celtic', u'take', u'firm', u'derbi'] [u'chelsea', u'forc', u'arsenal', u'draw'] [u'chilean', u'presid', u'say', u'deadlin', u'short'] [u'china', u'plan', u'massiv', u'reloc', u'scheme', u'beat'] [u'chines', u'farmer', u'suspect', u'cafe', u'bomb'] [u'coalit', u'pledg', u'fight', u'homeless'] [u'colombia', u'pena', u'take', u'fourth', u'stage', u'tour', u'murcia'] [u'come', u'festiv', u'children', u'kick'] [u'coron', u'investig', u'meningococc', u'mening'] [u'coron', u'warn', u'govt', u'clean', u'public', u'health'] [u'coulthard', u'win', u'aust', u'grand', u'prix'] [u'crean', u'say', u'lade', u'jail'] [u'crow', u'forc', u'travel', u'melbourn', u'preseason'] [u'crow', u'roll', u'roo'] [u'disappoint', u'start', u'matta'] [u'docker', u'accus', u'port', u'rough', u'play'] [u'docker', u'criticis', u'port', u'tactic'] [u'hunt'] [u'enriqu', u'week', u'coach'] [u'expert', u'say', u'aust', u'troop', u'gulf', u'novemb'] [u'fake', u'shark', u'highlight', u'extinct', u'worri'] [u'famili', u'care', u'centr', u'alight'] [u'ferrari', u'claim'] [u'fish', u'meet', u'gambil', u'florida', u'decid'] [u'franc', u'alain', u'ducass', u'name', u'world', u'best', u'cook'] [u'game', u'tasmanian', u'circus', u'festiv'] [u'german', u'leagu', u'match', u'report'] [u'glori'] [u'grand', u'prix', u'criticis', u'blatant', u'tobacco'] [u'green', u'tasmanian', u'duck', u'season'] [u'green', u'shoot', u'opposit', u'status'] [u'hagley', u'primari', u'school', u'develop'] [u'hama', u'threaten', u'target', u'isra', u'politician'] [u'henri', u'doubt', u'roma', u'clash'] [u'hewitt', u'agassi', u'draw', u'tough', u'oppon', u'indian'] [u'hewitt', u'philippoussi', u'clash', u'arizona', u'final'] [u'hewitt', u'dent', u'hop'] [u'howard', u'play', u'prospect', u'capit', u'punish'] [u'howard', u'promis', u'trade', u'deal', u'wont', u'shut'] [u'howard', u'talk', u'death', u'penalti', u'aust'] [u'humphrey', u'kick', u'ireland', u'sight', u'grand'] [u'hussain', u'call', u'separ', u'test'] [u'indonesian', u'stage', u'mass', u'prayer', u'iraq'] [u'indonesia', u'ralli', u'draw', u'peac'] [u'intern', u'crimin', u'court', u'elect', u'judg'] [u'intern', u'warrant', u'peruvian'] [u'intern', u'women', u'gather', u'end', u'violenc'] [u'intern', u'women', u'forum', u'anti'] [u'iraq', u'demand', u'sanction', u'blix', u'report'] [u'iraq', u'ambassador', u'deni', u'claim'] [u'iraq', u'archaeolog', u'treasur', u'threaten'] [u'iraq', u'say', u'use', u'fals', u'pretext', u'expel', u'envoy'] [u'iraq', u'scrap', u'missil', u'amid', u'british', u'threat'] [u'jailhous', u'dali', u'steal', u'prison', u'guard', u'report'] [u'japan', u'show', u'support'] [u'jayasuriya', u'line', u'india'] [u'jayawarden', u'form', u'slump', u'coach'] [u'jimmi', u'carter', u'oppos', u'unilater', u'attack', u'iraq'] [u'king', u'bhumibol', u'recov', u'hernia', u'oper'] [u'leopard', u'stray', u'indian', u'villag', u'injur'] [u'liverpool', u'good', u'bolton'] [u'macarthur', u'crippl', u'yacht', u'reach', u'australia'] [u'maltes', u'decid', u'join'] [u'bleed', u'death', u'shop', u'burglari'] [u'fight', u'life', u'blast', u'face'] [u'kill', u'accid', u'near', u'lismor'] [u'massiv', u'anti', u'protest', u'plan', u'indonesia'] [u'melbourn', u'hospit', u'fund', u'say'] [u'melbourn', u'hospit', u'face', u'crisi', u'say'] [u'mental', u'health', u'activist', u'lobbi', u'politician'] [u'militari', u'memorabilia', u'go', u'hammer'] [u'montoya', u'disappoint', u'second', u'place'] [u'arrest', u'expect', u'larg', u'drug', u'seizur'] [u'munich', u'clear', u'thump', u'leverkusen'] [u'nigerian', u'journalist', u'mean', u'miss', u'world', u'articl'] [u'korea', u'want', u'plane', u'crew', u'hostag'] [u'labor', u'parti', u'unveil', u'elect', u'promis'] [u'polic', u'target', u'phone', u'driver'] [u'bushfir', u'compens', u'stanhop'] [u'cyclon', u'watch', u'continu'] [u'nurs', u'union', u'ask', u'govt', u'hospit', u'attack'] [u'opposit', u'parti', u'question', u'time', u'iraqi'] [u'parti', u'govt', u'need', u'explain', u'decis'] [u'pampl', u'remain', u'content'] [u'photo', u'miss', u'shuttl', u'tile', u'newspap'] [u'accus', u'iraq', u'ambassador', u'spi'] [u'push', u'resolut', u'vote'] [u'rule', u'capit', u'punish', u'aust'] [u'polic', u'wit', u'gunshot', u'injuri'] [u'polic', u'hunt', u'clue'] [u'polit', u'parti', u'pressur', u'protect', u'public'] [u'star', u'adam', u'faith', u'die'] [u'port', u'davey', u'kent', u'group', u'marin', u'reserv', u'option'] [u'power', u'unit'] [u'prestig', u'destroy', u'showroom', u'break'] [u'cours', u'holland'] [u'qatar', u'master', u'ahead', u'despit', u'talk'] [u'real', u'extend', u'lead', u'crunch'] [u'recoba', u'doubl', u'lift', u'inter'] [u'redback', u'finish', u'season', u'style'] [u'report', u'aust', u'troop', u'iraq', u'offens', u'hill'] [u'resid', u'brace', u'possibl', u'cyclon'] [u'russia', u'say', u'british', u'resolut', u'iraq'] [u'saddam', u'hussein', u'accus', u'west', u'lie'] [u'saint', u'crush', u'widn', u'local', u'derbi'] [u'sampra', u'pull', u'tournament', u'report'] [u'sander', u'upset', u'klitschko', u'crown'] [u'saudi', u'deni', u'let', u'airfield'] [u'finish', u'season', u'style'] [u'scientist', u'protect', u'rare', u'orchid', u'lyrebird'] [u'scot', u'open', u'nation', u'account', u'wale', u'expens'] [u'search', u'miss', u'innisfail', u'resum'] [u'secur', u'guard', u'shoot', u'neck', u'popular', u'nightclub'] [u'shark', u'popul', u'rapid', u'declin', u'report'] [u'shed', u'destroy', u'cylind', u'car'] [u'samoud', u'missil', u'destroy'] [u'slipperi', u'travel', u'alarm', u'crew'] [u'spanish', u'leagu', u'report'] [u'stolz', u'runner', u'christchurch'] [u'student', u'payment', u'leap', u'year'] [u'toddler', u'shoot', u'rifl'] [u'tortur', u'bangladeshi', u'women', u'ralli', u'capit'] [u'tourist', u'coach', u'crash', u'czech', u'republ', u'dead'] [u'shop', u'storeroom', u'go', u'smoke'] [u'trade', u'practic', u'isnt', u'work', u'fel', u'say'] [u'tropic', u'fruit', u'produc', u'clear', u'irradi'] [u'turkish', u'wait', u'favour', u'troop', u'deal'] [u'border', u'observ', u'withdraw', u'iraq', u'kuwait'] [u'uni', u'reli', u'student', u'fee', u'govt', u'fund'] [u'nuclear', u'inspector', u'say', u'time', u'need'] [u'block', u'brisban', u'council', u'green', u'bridg', u'propos'] [u'militari', u'intensifi', u'search', u'qaeda', u'member'] [u'soldier', u'spot', u'saudi', u'arabia', u'airport'] [u'race', u'call'] [u'polic', u'charg', u'diamond', u'creek', u'murder'] [u'crime', u'drop', u'aid', u'technolog', u'polic'] [u'waratah', u'sink', u'shark', u'feast'] [u'wit', u'identifi', u'nightclub', u'drive', u'shooter'] [u'zimbabw', u'send', u'campbel'] [u'adult', u'child', u'melbourn', u'hous'] [u'coach', u'king', u'approach', u'windi'] [u'detaine', u'breakout'] [u'iraq', u'aust', u'angl'] [u'howardbali', u'stuff'] [u'review', u'tape', u'connolli', u'outburst'] [u'assist', u'philippin', u'terror', u'attack', u'probe'] [u'agassi', u'withdraw', u'indian', u'well'] [u'agforc', u'call', u'drought', u'relief', u'reform'] [u'agforc', u'speak', u'lack', u'applic'] [u'anderson', u'urg', u'state', u'resolv', u'accc', u'stalem'] [u'archaeologist', u'settl', u'religi', u'disput'] [u'critic', u'excus', u'danger', u'drive', u'trial'] [u'asylum', u'seeker', u'face', u'court', u'baxter', u'escap'] [u'aussi', u'surfer', u'edg', u'american', u'rival'] [u'australian', u'coal', u'export', u'chines', u'challeng'] [u'author', u'probe', u'groundwat', u'chemic', u'trace'] [u'autopsi', u'carri', u'melbourn', u'victim'] [u'babi', u'death', u'spark', u'investig'] [u'bali', u'link', u'iraq', u'say', u'bomb', u'victim'] [u'bali', u'link', u'iraq', u'say', u'bomb', u'victim', u'father'] [u'bank', u'face', u'properti', u'scam', u'accus'] [u'barri', u'sheen', u'lose', u'battl', u'cancer'] [u'promis', u'listen', u'resid'] [u'beachley', u'enjoy', u'demolit'] [u'beatl', u'lock', u'snip', u'spanish', u'hairdress'] [u'beatti', u'call', u'meet', u'bicker'] [u'beatti', u'say', u'race', u'fund', u'differ'] [u'bellami', u'behav', u'inter', u'match', u'say', u'robson'] [u'lade', u'escap', u'oper', u'taliban'] [u'blaze', u'destroy', u'prime', u'mover'] [u'bligh', u'say', u'class', u'size', u'meet', u'target'] [u'breed', u'servic', u'boost', u'beef', u'industri'] [u'british', u'minist', u'say', u'shell', u'quit'] [u'british', u'troop', u'prepar', u'iraq', u'invas'] [u'break', u'hill', u'council', u'seek', u'land'] [u'broom', u'look', u'famili', u'violenc', u'court'] [u'bunburi', u'dardanup', u'join', u'oppos', u'possibl', u'jail'] [u'burn', u'philp', u'get', u'ahead', u'goodman', u'fielder'] [u'bushfir', u'accus', u'appear', u'alleg', u'bail', u'violat'] [u'bushmast', u'vehicl', u'pass', u'test'] [u'cafl', u'appoint', u'general', u'manag'] [u'detent', u'centr', u'closur', u'consult'] [u'perman', u'venu', u'season', u'final'] [u'canoeist', u'recov', u'ocean', u'strand'] [u'carseldin', u'hope', u'play', u'final'] [u'chamber', u'unawar', u'crime', u'rise'] [u'chicago', u'win', u'best', u'film', u'screen', u'actor', u'guild'] [u'claim', u'public', u'hous', u'access', u'better'] [u'classi', u'norther', u'claim', u'australian'] [u'clijster', u'hantuchova', u'advanc', u'indian', u'well'] [u'coalit', u'pledg', u'increas', u'drought', u'transport'] [u'commonwealth', u'threaten', u'withdraw', u'forestri', u'fund'] [u'concern', u'govt', u'breach', u'forest', u'agreement'] [u'confer', u'shed', u'light', u'local', u'govt', u'financ'] [u'conga', u'ebola', u'death', u'toll', u'rise', u'govern'] [u'council', u'decid', u'wastewat', u'scheme'] [u'court', u'hear', u'damag', u'claim', u'hold'] [u'croydon', u'plan', u'water', u'pip', u'work'] [u'cyclon', u'erica', u'threaten', u'return'] [u'cyclon', u'warn', u'issu', u'darwin'] [u'danger', u'hewitt', u'down', u'scud', u'arizona'] [u'darwin', u'brace', u'wind'] [u'darwin', u'harbour', u'close', u'cyclon', u'craig', u'near'] [u'beer', u'pull', u'diamond', u'project'] [u'deloitt', u'announc', u'aust'] [u'develop', u'defend', u'newspap'] [u'ban', u'lanka', u'vermin', u'outburst'] [u'downer', u'deni', u'pressur', u'australia', u'expel'] [u'down', u'resid', u'turn', u'cotton', u'week'] [u'easter', u'shop', u'hour', u'caus', u'headach', u'festiv'] [u'electr', u'soar', u'heat'] [u'embassi', u'reveal', u'ask', u'expuls', u'diplomat'] [u'embassi', u'reveal', u'ask', u'expuls', u'iraqi'] [u'emerton', u'name', u'oceania', u'player', u'year'] [u'probe', u'henri', u'strike', u'coin'] [u'fear', u'yacht', u'lose', u'emerg', u'signal'] [u'fingleton', u'waiv', u'right', u'committ', u'hear'] [u'flinder', u'resid', u'welcom', u'rain'] [u'folk', u'festiv', u'declar', u'success'] [u'franc', u'ralli', u'support', u'iraq', u'resolut'] [u'free', u'class', u'dryland', u'farmer'] [u'furyk', u'hoch', u'leav', u'dark', u'doral'] [u'gambil', u'top', u'fish', u'delray', u'beach'] [u'attend', u'wagga', u'water', u'confer'] [u'goodman', u'fielder', u'takeov', u'edg', u'closer'] [u'govt', u'confirm', u'commit', u'aquat', u'habitat'] [u'grazier', u'busi', u'surviv', u'appli', u'help'] [u'greater', u'disclosur', u'execut', u'deal', u'meet'] [u'green', u'divid', u'prefer', u'distribut'] [u'group', u'lobbi', u'coupl'] [u'gympi', u'call', u'respit', u'care', u'servic'] [u'helicopt', u'firm', u'apologis', u'nois'] [u'hewitt', u'destroy', u'scud', u'arizona'] [u'hoch', u'tway', u'share', u'hole', u'lead', u'doral'] [u'hous', u'figur', u'highlight', u'downward', u'trend'] [u'sachin', u'say', u'wili', u'murali'] [u'immigr', u'dept', u'order', u'detent', u'centr', u'secur'] [u'india', u'look', u'secur', u'semi', u'final', u'spot'] [u'indigen', u'communiti', u'seek', u'justic'] [u'need', u'rest', u'say', u'tire', u'trescothick'] [u'investig', u'continu', u'kill', u'hous'] [u'iraqi', u'diplomat', u'probe', u'prompt', u'say', u'downer'] [u'iraq', u'wont', u'featur', u'indonesian', u'talk', u'downer', u'say'] [u'japan', u'play', u'north', u'korea', u'missil', u'launch'] [u'jayasuriya', u'percent', u'certain', u'face', u'india'] [u'jordan', u'effort', u'like', u'garden', u'farewel'] [u'kaiserslautern', u'rout'] [u'kayak', u'fight', u'odd', u'mental', u'health', u'awar'] [u'khannouchi', u'fernandez', u'kyoto', u'half', u'marathon'] [u'knight', u'rais', u'ticket', u'price'] [u'knowl', u'open', u'hospit', u'emerg', u'dept'] [u'lawyer', u'seek', u'releas', u'bakar', u'bashir'] [u'liber', u'criticis', u'atsic', u'leadership'] [u'lobster', u'industri', u'call', u'harsh', u'penalti'] [u'logger', u'work', u'reform', u'packag'] [u'turnout', u'mar', u'african', u'econom', u'summit'] [u'charg', u'cooma', u'murder'] [u'charg', u'orang', u'shoot'] [u'charg', u'polic', u'stab'] [u'charg', u'assault'] [u'charg', u'murder', u'miss'] [u'glide', u'plane', u'safeti'] [u'seek', u'overturn', u'passport'] [u'succumb', u'bash', u'injuri'] [u'massiv', u'bushfir', u'contain'] [u'medic', u'accommod', u'open'] [u'miss', u'yacht', u'locat', u'contact'] [u'dengu', u'fever', u'case', u'expect'] [u'morrison', u'overcom', u'occi', u'maiden', u'titl'] [u'mose', u'hail', u'chang', u'success'] [u'motor', u'race', u'world', u'mourn', u'sheen', u'death'] [u'murray', u'river', u'slow', u'food', u'take', u'centr', u'stage'] [u'nat', u'promis', u'conserv', u'servic'] [u'naurus', u'presid', u'die', u'washington'] [u'near', u'canberra', u'victim', u'plan'] [u'posit', u'help', u'drought', u'victim'] [u'goldman', u'sach', u'conflict', u'hear', u'tell'] [u'injuri', u'trawler'] [u'question', u'polit', u'thai'] [u'north', u'korea', u'fire', u'cruis', u'missil', u'say', u'south'] [u'govt', u'announc', u'mater', u'cancer', u'treatment', u'fund'] [u'govt', u'deni', u'park', u'addit', u'buy', u'green'] [u'premier', u'reaffirm', u'pledg', u'lower', u'class', u'size'] [u'prepar', u'cyclon', u'craig'] [u'chief', u'execut', u'wrestl', u'settl', u'disput'] [u'occi', u'gold', u'coast'] [u'dubbo', u'raaf', u'base', u'redevelop'] [u'ominami', u'win', u'nagoya', u'marathon'] [u'challeng', u'carr', u'educ'] [u'pair', u'life', u'sentenc', u'gracemer', u'murder'] [u'palestinian', u'council', u'decid', u'prime'] [u'pamphlet', u'anger', u'council', u'elect', u'candid'] [u'perman', u'breast', u'screen', u'unit', u'young'] [u'perth', u'lord', u'mayor', u'surpris', u'hammond', u'challeng'] [u'pie', u'field', u'strong', u'season', u'final'] [u'bali', u'comment', u'misunderstand', u'downer'] [u'minist', u'suspend', u'assault', u'charg'] [u'polic', u'probe', u'high', u'speed', u'crash'] [u'polic', u'stab', u'prompt', u'secur', u'review'] [u'polic', u'urg', u'safe', u'return', u'home'] [u'power', u'compani', u'fin', u'profit'] [u'primus', u'defend', u'power', u'play'] [u'properti', u'develop', u'help', u'homeless', u'green'] [u'ronaldinho', u'humbl', u'marseill'] [u'qanta', u'museum', u'name'] [u'quak', u'bare', u'rattl'] [u'quentin', u'bryce', u'choos', u'governor'] [u'race', u'club', u'await', u'compromis', u'plan', u'coverag'] [u'rainfal', u'hamper', u'farmer'] [u'rememb', u'bali', u'event', u'iraqi', u'howard'] [u'report', u'show', u'improv', u'hospit', u'health'] [u'rescu', u'beacon', u'caus', u'hour', u'wild', u'goos', u'chase'] [u'resid', u'sign', u'road', u'upgrad', u'petit'] [u'resid', u'urg', u'natur', u'cours'] [u'riverland', u'volunt', u'urg', u'speak'] [u'uefa', u'spot', u'stay', u'clear'] [u'ruddock', u'foreshadow', u'plan', u'deport', u'iranian', u'asylum'] [u'sailor', u'drive', u'charg', u'drop'] [u'polic', u'drive', u'shooter', u'surrend'] [u'sculptur', u'symposium', u'success'] [u'searcher', u'hope', u'contact', u'miss', u'yacht', u'soon'] [u'seven', u'arrest', u'famili', u'feud'] [u'share', u'market', u'falter', u'finish'] [u'sharon', u'endors', u'choic', u'palestinian'] [u'shellharbour', u'host', u'surf', u'lifesav', u'comp'] [u'shire', u'secur', u'pool', u'fund'] [u'shoot', u'victim', u'die', u'hospit'] [u'smoke', u'haze', u'southern'] [u'sociedad', u'stay', u'second', u'spain'] [u'sport', u'grant', u'award', u'west', u'group'] [u'springborg', u'attack', u'faction', u'deal', u'mayor'] [u'strand', u'american', u'rescu', u'antarctica'] [u'govt', u'pressur', u'review', u'governor', u'select'] [u'govt', u'slow', u'meander', u'legisl'] [u'tasmania', u'harvest', u'poppi'] [u'teacher', u'union', u'govt', u'head'] [u'team', u'coast', u'say', u'suspens', u'fair'] [u'teen', u'die', u'crash', u'injuri'] [u'test', u'confirm', u'remain', u'miss', u'toddler'] [u'test', u'test', u'test'] [u'trezeguet', u'target', u'juve', u'clear'] [u'tugun', u'bypass', u'announc'] [u'tugun', u'bypass', u'get', u'green', u'light'] [u'tumut', u'look', u'communiti', u'radio', u'station'] [u'reject', u'north', u'korea', u'demand', u'direct', u'talk'] [u'warplan', u'attack', u'iraqi', u'target'] [u'govt', u'ask', u'explain', u'fast', u'rail', u'cost', u'blow'] [u'govt', u'reject', u'critic'] [u'virus', u'larkham', u'home'] [u'virus', u'larkham', u'return', u'australia'] [u'wagga', u'blood', u'bank', u'offer', u'prize'] [u'govt', u'commit', u'salin', u'solut'] [u'windi', u'tour', u'squad', u'decis', u'loom'] [u'woman', u'sexual', u'assault', u'road', u'rage', u'incid'] [u'world', u'eye', u'disney', u'world'] [u'world', u'media', u'bed', u'militari'] [u'abigroup', u'hire', u'local', u'worker', u'rail', u'link', u'work'] [u'aborigin', u'lodg', u'million', u'claim', u'lose', u'wag'] [u'prefer', u'deal', u'disast', u'wait', u'happen'] [u'secur', u'green', u'prefer', u'burrinjuck'] [u'annan', u'meet', u'cyprus', u'leader', u'reunif'] [u'assur', u'offer', u'easter', u'sunday', u'trade'] [u'aussi', u'demolish', u'black', u'cap'] [u'author', u'hous', u'hous', u'fight', u'dengu'] [u'critic', u'diamond', u'shear', u'decis'] [u'babi', u'manslaught', u'trial', u'abort', u'juri'] [u'bacon', u'signal', u'parti', u'uniti', u'adopt'] [u'baildon', u'welcom', u'bypass', u'fund', u'pledg'] [u'bali', u'bomb', u'survivor', u'back', u'bali', u'iraq', u'link'] [u'bali', u'iraq', u'debat', u'deliber', u'polit', u'strategi'] [u'battl', u'loom', u'rise', u'land', u'rat'] [u'bilater', u'talk', u'forward'] [u'blewett', u'ban', u'drink', u'drive', u'charg'] [u'blix', u'defin', u'iraq', u'remain', u'disarma', u'task'] [u'brack', u'want', u'asylum', u'seeker', u'stay'] [u'breakdown', u'talk', u'rival', u'cyprus', u'leader'] [u'britain', u'lobbi', u'draft', u'resolut', u'support'] [u'broadway', u'theatr', u'engulf', u'dark'] [u'bull', u'dale', u'domest', u'final'] [u'busi', u'confid', u'record', u'biggest', u'fall'] [u'busi', u'continu', u'suffer', u'phone', u'woe'] [u'increas', u'fish', u'catch', u'monitor'] [u'manufactur', u'industri', u'council'] [u'call', u'train', u'speed', u'limit', u'lower'] [u'capriati', u'safin', u'sweat', u'indian', u'well'] [u'carlton', u'review', u'oper', u'wake', u'salari'] [u'theft', u'victoria'] [u'cathol', u'school', u'teacher', u'strike'] [u'cattl', u'export', u'ship', u'readi', u'leav'] [u'centr', u'get', u'fund', u'crime', u'prevent', u'project'] [u'cherri', u'air', u'fund', u'concern'] [u'china', u'reveal', u'execut', u'increas'] [u'claim', u'qaeda', u'suspect', u'lade'] [u'claim', u'club', u'unhappi', u'race', u'offer'] [u'claim', u'undermin', u'legitimaci', u'vote'] [u'coalit', u'pledg', u'rail', u'line', u'upgrad'] [u'communiti', u'tackl', u'social', u'woe'] [u'concern', u'australian', u'team', u'fund', u'athen'] [u'concern', u'delay', u'bushfir', u'hear'] [u'coonawarra', u'vintag'] [u'corinithian', u'qualifi', u'brazil', u'paulista', u'final'] [u'coulthard', u'encourag', u'ferrari', u'free', u'podium'] [u'council', u'back', u'park', u'restrict', u'plan'] [u'council', u'urg', u'embrac', u'park', u'issu'] [u'coupl', u'charg', u'babi', u'death'] [u'carniv', u'boost', u'port', u'lincoln'] [u'cyclon', u'craig', u'loom', u'east', u'darwin'] [u'cyclon', u'erica', u'reform', u'craig', u'impact', u'north'] [u'damag', u'weekend', u'exceed', u'million'] [u'daw', u'carseldin', u'clear', u'gabba', u'clash'] [u'delaney', u'appeal', u'resid', u'decis'] [u'denmark', u'builder', u'win', u'workmanship', u'award'] [u'dept', u'flood', u'manag'] [u'drought', u'take', u'toll', u'board', u'school'] [u'dubai', u'stage', u'world', u'swim', u'marathon', u'scrap'] [u'elector', u'commiss', u'issu', u'ballot', u'paper', u'remind'] [u'euro', u'unveil', u'tournament', u'match', u'schedul'] [u'expand', u'shop', u'option', u'impact', u'chamber'] [u'famili', u'plea', u'shoot', u'suspect', u'come'] [u'famili', u'farewel', u'motorcycl', u'race', u'legend'] [u'farmer', u'need', u'water', u'stay', u'aliv'] [u'farmer', u'blame', u'govt', u'bushfir', u'disast'] [u'feder', u'govern', u'seek', u'urgent', u'talk', u'north'] [u'fire', u'threaten', u'properti'] [u'fisheri', u'polici', u'aim', u'stop', u'exploit'] [u'fish', u'line', u'endang', u'giant', u'seabird'] [u'fleme', u'expect', u'aussi', u'attrit'] [u'forest', u'snatch', u'late', u'equalis'] [u'injur', u'balconi', u'collaps'] [u'peopl', u'rescu', u'boat', u'catch'] [u'franc', u'vow', u'vote', u'resolut'] [u'fuel', u'reduct', u'reduc', u'bushfir', u'threat'] [u'contract', u'boost', u'north', u'west', u'busi'] [u'gold', u'coast', u'surfer', u'win', u'tour', u'event'] [u'gold', u'coast', u'host', u'indi', u'year'] [u'govt', u'reach', u'dougla', u'arteri', u'compromis'] [u'govt', u'cessnock', u'job', u'strategi'] [u'green', u'prefer', u'alloc'] [u'group', u'urg', u'nomin', u'overse', u'wast', u'plant'] [u'group', u'continu', u'protest'] [u'hamackova', u'world'] [u'health', u'worker', u'rais', u'concern', u'differ'] [u'hewitt', u'get', u'aynaoui', u'reveng', u'match'] [u'hill', u'lead', u'sheen', u'tribut'] [u'histor', u'courthous', u'face', u'uncertain', u'futur'] [u'hope', u'doctor', u'remain', u'south', u'east'] [u'hope', u'peopl', u'dead', u'peanut', u'allergi'] [u'hospit', u'launch', u'transport', u'scheme'] [u'hospit', u'donat', u'surplus', u'medic', u'gear'] [u'hunter', u'winegrap', u'harvest', u'look', u'good'] [u'incent', u'lure', u'scallop', u'ranch', u'project'] [u'indonesia', u'name', u'suspect', u'envoy', u'bomb'] [u'indonesia', u'megawati', u'croon', u'love', u'song'] [u'inter', u'coach', u'cuper', u'mark', u'dangerman', u'robert'] [u'inter', u'midfield', u'zanetti', u'newcastl', u'clash'] [u'intern', u'crimin', u'court', u'inaugur'] [u'investig', u'frustrat', u'report', u'delay'] [u'iran', u'reject', u'claim', u'militari', u'nuclear'] [u'iraq', u'fail', u'declar', u'drone', u'aircraft'] [u'iraqi', u'diplomat', u'leav', u'canberra'] [u'iraq', u'scrap', u'illeg', u'missil', u'inspector'] [u'isra', u'kill', u'wound', u'hebron'] [u'japan', u'lead', u'newspap', u'vow', u'track'] [u'kafelnikov', u'surviv', u'czech', u'scare'] [u'keat', u'critic', u'relationship'] [u'kenya', u'mission', u'kill', u'critic'] [u'kenya', u'olymp', u'gold', u'medallist', u'temu', u'die'] [u'kewel', u'viduka', u'leav', u'leed', u'report'] [u'kidman', u'parent', u'oscar', u'ceremoni'] [u'kingstream', u'steel', u'plan', u'reform'] [u'domest', u'cricket', u'final'] [u'rule', u'final'] [u'demolish', u'black', u'cap'] [u'lockett', u'lynch', u'award', u'life'] [u'long', u'weekend', u'prove', u'posit', u'tourism'] [u'loom', u'iraq', u'conflict', u'hold', u'market', u'hostag'] [u'charg', u'stab', u'polic', u'secur', u'guard'] [u'evid', u'passport', u'refus'] [u'face', u'internet', u'paedophilia', u'child', u'charg'] [u'jail', u'year', u'murder', u'girlfriend'] [u'face', u'court', u'attempt', u'murder', u'charg'] [u'market', u'falter', u'share', u'drop', u'record'] [u'mark', u'target', u'shoot', u'championship'] [u'mauresmo', u'advanc', u'indian', u'well'] [u'mayor', u'air', u'concern', u'miss', u'toddler', u'case'] [u'mcguir', u'back', u'predetermin', u'preseason', u'final'] [u'meet', u'hold', u'lagoon', u'smell'] [u'hospit', u'crash'] [u'microwav', u'kill', u'breast', u'cancer', u'tumour'] [u'miss', u'teen', u'probe', u'prove', u'inconclus'] [u'highlight', u'letter', u'blunder'] [u'promis', u'fight', u'compo'] [u'want', u'constitut', u'reform', u'chang'] [u'want', u'mango', u'grower', u'levi'] [u'nation', u'bushfir', u'prevent', u'confer', u'open'] [u'nauru', u'deadlock', u'prevent', u'condol', u'motion'] [u'cyclon', u'form', u'south', u'pacif'] [u'trial', u'reduc', u'bat', u'botan', u'garden'] [u'dem', u'split', u'elect', u'ticket'] [u'govt', u'firm', u'nation', u'park', u'decis'] [u'cabinet', u'ratifi', u'land', u'deal'] [u'govern', u'reach', u'histor', u'nativ', u'titl'] [u'firm', u'seek', u'agreement', u'seismic', u'test'] [u'otway', u'burn', u'off', u'plan'] [u'park', u'plan', u'airmen', u'airwomen', u'reunion'] [u'peninsula', u'resid', u'brace', u'cyclon', u'craig'] [u'pipelin', u'approv', u'impact', u'fitzroy', u'plan'] [u'plan', u'store', u'greenhous', u'emiss', u'underground'] [u'defend', u'expuls', u'order', u'iraqi', u'diplomat'] [u'step', u'elect', u'campaign'] [u'outlin', u'case', u'iraq'] [u'polic', u'surf', u'victim'] [u'polic', u'probe', u'attack'] [u'polic', u'urg', u'parent', u'teach', u'stranger', u'danger'] [u'pont', u'issu', u'ball', u'warn', u'kiwi', u'drop'] [u'pont', u'ball', u'warn'] [u'pont', u'ball', u'warn', u'kiwi', u'drop', u'mcmillan'] [u'portman', u'profit', u'drop'] [u'poultri', u'firm', u'drop', u'build', u'plan'] [u'prison', u'decis', u'save', u'hundr', u'job'] [u'probe', u'begin', u'balconi', u'collaps'] [u'project', u'aim', u'save', u'indigen', u'stori'] [u'govt', u'offer', u'class', u'size', u'assur'] [u'push', u'crackdown', u'illeg', u'fish'] [u'queensland', u'cyclon', u'watch'] [u'question', u'rais', u'gmos'] [u'rain', u'hamper', u'goat', u'product'] [u'rain', u'help', u'dampen', u'bushfir'] [u'ratepay', u'group', u'want', u'compulsori', u'local', u'govt', u'vote'] [u'resid', u'hope', u'rain', u'heavi'] [u'romania', u'expel', u'iraqi', u'diplomat'] [u'roo', u'connolli', u'ask', u'explain', u'outburst'] [u'festiv', u'kick', u'event'] [u'govt', u'inject', u'hospit'] [u'govt', u'health', u'fund', u'alloc'] [u'sailor', u'rule', u'return', u'leagu'] [u'schu', u'hit', u'critic'] [u'senior', u'australian', u'intellig', u'offic', u'quit'] [u'sharehold', u'mix', u'feel', u'merger'] [u'share', u'price', u'tumbl', u'asia'] [u'showground', u'suggest', u'hospit', u'site'] [u'skywest', u'slash', u'staff', u'post', u'half', u'year', u'loss'] [u'smoke', u'haze', u'close', u'road'] [u'south', u'american', u'soccer', u'round'] [u'storm', u'caus', u'havoc', u'grafton'] [u'strike', u'continu', u'darken', u'broadway', u'music'] [u'studi', u'aim', u'urg', u'return', u'resid'] [u'sunderland', u'sack', u'wilkinson'] [u'beekeep', u'best', u'honey', u'season', u'near'] [u'tasmania', u'set', u'bodi', u'paint', u'world', u'record'] [u'paint', u'world', u'bodi', u'paint'] [u'tendulkar', u'best', u'form', u'ganguli'] [u'thailand', u'claim', u'product', u'world'] [u'thigh', u'strain', u'put', u'ronaldo', u'doubt', u'milan', u'match'] [u'thoma', u'traumat', u'tot', u'say', u'psychologist'] [u'season', u'good', u'visitor', u'tourist'] [u'trade', u'hour', u'plan', u'spark', u'region', u'concern'] [u'trawler', u'port', u'blaze'] [u'dengu', u'fever', u'case', u'confirm', u'north'] [u'stand', u'trial', u'steal', u'properti'] [u'inspector', u'need', u'time', u'crean'] [u'unit', u'owner', u'feel', u'ignor', u'schooli', u'debat'] [u'secur', u'council', u'hold', u'public', u'session'] [u'forc', u'satellit', u'blast', u'space'] [u'diplomat', u'resign', u'iraq', u'plan'] [u'engag', u'frantic', u'lobbi', u'resolut'] [u'releas', u'prison', u'guantanamo'] [u'govt', u'urg', u'penni', u'pinch', u'fast', u'train'] [u'volunt', u'group', u'hop', u'lower', u'liabil', u'premium'] [u'waff', u'confer', u'focus', u'climat', u'review'] [u'wall', u'slump', u'send', u'aust', u'market', u'year'] [u'fear', u'send', u'market', u'year'] [u'waugh', u'give', u'deadlin', u'test', u'decis'] [u'wilder', u'area', u'show', u'sign', u'recoveri'] [u'woman', u'hospit', u'crash'] [u'highlight', u'bird', u'concern'] [u'judg', u'swear', u'inaugur'] [u'commonwealth', u'game', u'blow', u'budget'] [u'adopt', u'regular', u'save'] [u'chief', u'say', u'umpir', u'abus', u'good', u'game'] [u'play', u'valencia', u'hold', u'ajax'] [u'american', u'jail', u'brisban', u'import'] [u'amnesti', u'call', u'polic', u'overhaul', u'afghanistan'] [u'commit', u'send', u'team', u'athen'] [u'arab', u'art', u'festiv', u'launch', u'amid', u'shadow'] [u'hop', u'boost', u'world', u'profit'] [u'survivor', u'armi', u'helicopt', u'crash'] [u'aust', u'market', u'continu', u'slide'] [u'australia', u'lead', u'anti', u'dope', u'say', u'minist'] [u'aust', u'urg', u'secur', u'council', u'face'] [u'barca', u'inter', u'block', u'newcastl'] [u'barcelona', u'eas'] [u'battl', u'intensifi', u'green', u'vote'] [u'bendigo', u'courthous', u'revamp'] [u'cattl', u'sale', u'begin'] [u'blue', u'arriv', u'brisban', u'final', u'showdown'] [u'boat', u'accid', u'claim', u'life'] [u'breakthrough', u'hospit', u'golden', u'staph'] [u'breakthrough', u'hors', u'centr', u'plan'] [u'brogden', u'claim', u'govt', u'doctor', u'hospit', u'data'] [u'bush', u'phone', u'howard', u'iraq', u'strategi'] [u'bush', u'race', u'meet', u'continu'] [u'busi', u'park', u'plan'] [u'rethink', u'adult', u'entertain', u'plan'] [u'call', u'help', u'australian', u'hold', u'cuba'] [u'extend', u'alcohol', u'restrict'] [u'candid', u'repeat', u'merger', u'opposit'] [u'capel', u'back', u'group', u'approach', u'aquif', u'concern'] [u'capello', u'slam', u'keown', u'act', u'totti', u'send'] [u'spark', u'investig'] [u'carr', u'defend', u'late', u'school', u'mail'] [u'carr', u'motlop', u'suspend'] [u'carr', u'campaign', u'capabl', u'hand', u'crean'] [u'cemeteri', u'reus', u'grave', u'crush', u'headston'] [u'chang', u'venu', u'howard', u'speech'] [u'children', u'forget', u'bushfir'] [u'christian', u'democrat', u'parti', u'field', u'illawarra'] [u'claim', u'author', u'ignor', u'warn'] [u'claim', u'timber', u'industri', u'yeadon', u'letter'] [u'claim', u'govt', u'health', u'review', u'need'] [u'coalit', u'consid', u'subsidi'] [u'coetzer', u'dethron', u'hantuchova', u'clijster', u'advanc'] [u'communiti', u'ralli', u'cattlemen'] [u'compani', u'rethink', u'practic', u'blaze'] [u'concern', u'air', u'return', u'voter', u'pack'] [u'consum', u'confid', u'world', u'market', u'slip'] [u'cooma', u'resid', u'meet', u'candid'] [u'corinthian', u'hammer', u'error', u'prone', u'strongest'] [u'coron', u'recommend', u'chang', u'blood'] [u'council', u'give', u'indoor', u'sport', u'complex'] [u'councillor', u'question', u'pathway', u'risk'] [u'coupl', u'seek', u'design', u'babi', u'save', u'termin'] [u'court', u'hear', u'drug', u'money', u'attack'] [u'court', u'reject', u'accc', u'foster'] [u'crime', u'stat', u'fall', u'categori'] [u'cyclon', u'craig', u'intensifi', u'near', u'cape', u'york'] [u'cyclon', u'bring', u'rain'] [u'darwin', u'theatr', u'lobbi', u'perman', u'base'] [u'dead', u'babi', u'twin', u'sister', u'remain', u'hospit'] [u'death', u'prompt', u'investig', u'ambul'] [u'decis', u'hold', u'defam', u'case', u'fairfax'] [u'diet', u'wont', u'leav', u'accc', u'case', u'end'] [u'downer', u'say', u'moral', u'back'] [u'drought', u'take', u'toll', u'cattl', u'industri', u'agforc'] [u'drought', u'transport', u'subsidi', u'plan'] [u'easter', u'trade', u'law', u'late', u'mayor'] [u'effort', u'underway', u'reduc', u'reef', u'pollut'] [u'ergon', u'boost', u'highfield', u'infrastructur'] [u'citizen', u'year', u'canberra'] [u'falun', u'gong', u'coupl', u'seek', u'clemenc', u'avoid'] [u'famili', u'say', u'father', u'saudi', u'arabia'] [u'farmer', u'continu', u'iraq', u'trade'] [u'feder', u'fund', u'seek', u'duke', u'highway'] [u'figur', u'fall', u'hunter', u'theft'] [u'forest', u'burn', u'control'] [u'bank', u'teller', u'settl', u'court', u'case', u'hold'] [u'great', u'lake', u'freez', u'time', u'year'] [u'green', u'demand', u'transport', u'solut'] [u'group', u'back', u'campaign', u'prevent', u'hospit', u'sale'] [u'group', u'offer', u'water', u'plan', u'advic', u'air', u'concern'] [u'group', u'offer', u'help', u'polic', u'stab'] [u'gunner', u'newcastl', u'champion', u'leagu', u'draw'] [u'hewitt', u'exact', u'reveng', u'aynaoui'] [u'hewitt', u'exact', u'reveng', u'aynaoui', u'scud', u'advanc'] [u'hope', u'reduc', u'domest', u'violenc', u'rate'] [u'hop', u'miss', u'yachtsman', u'see', u'drift', u'coast'] [u'hous', u'sector', u'remain', u'buoyant'] [u'husband', u'jail', u'attempt', u'murder'] [u'icac', u'ask', u'probe', u'subdivis', u'sewerag', u'charg'] [u'immunis', u'underway', u'vaccin', u'mishap'] [u'indigen', u'advisori', u'board', u'member', u'resign'] [u'injur', u'hodgson', u'doubt', u'world'] [u'inter', u'cancel', u'shearer', u'doubl'] [u'ipswich', u'drop', u'point', u'palac'] [u'iranian', u'asylum', u'seeker', u'frighten', u'detent'] [u'iraqi', u'communiti', u'march', u'offic'] [u'irish', u'presid', u'prais', u'noosa', u'support'] [u'rain'] [u'japanes', u'tourist', u'clip', u'wing', u'skydiv', u'mishap'] [u'johnson', u'return', u'england', u'skipper', u'scottish'] [u'judg', u'hand', u'woman', u'chair', u'fall'] [u'kewel', u'keen', u'stay', u'leed', u'manag'] [u'kivilev', u'die', u'head', u'injuri'] [u'kivilev', u'die', u'head', u'injuri', u'pari', u'nice'] [u'land', u'releas', u'agreement'] [u'landslid', u'threat', u'close', u'road'] [u'laverton', u'lament', u'lose', u'flight'] [u'societi', u'critic', u'govt', u'plan', u'bail'] [u'long', u'oncolog', u'servic', u'wait', u'near'] [u'malaysia', u'explain', u'round'] [u'accus', u'child', u'hold', u'custodi'] [u'arrest', u'bomb', u'threat', u'china'] [u'extradit', u'month', u'murder', u'inquiri'] [u'hospit', u'melbourn', u'blast'] [u'jail', u'diesel', u'theft'] [u'plead', u'guilti', u'assault', u'escap', u'jail', u'term'] [u'threaten', u'blow', u'media', u'agenc', u'china'] [u'matilda', u'waltz', u'world', u'berth'] [u'mayor', u'elect', u'slogan'] [u'mccarthi', u'get', u'sunderland', u'report'] [u'mccarthi', u'promis', u'miracl', u'sunderland'] [u'mcgradi', u'announc', u'extra', u'coast', u'offic'] [u'mcgrane', u'secur', u'green', u'countri', u'labor', u'prefer'] [u'miss', u'yacht', u'sailor', u'miss'] [u'talk', u'north', u'east', u'airlin', u'servic'] [u'worker', u'lose', u'job', u'bank'] [u'mother', u'charg', u'rape', u'daughter'] [u'motion', u'iraq', u'defeat'] [u'concern', u'candid', u'dont', u'live', u'elector'] [u'warn', u'bypass', u'protest'] [u'welcom', u'communic', u'grant'] [u'mural', u'work'] [u'resolut', u'downer'] [u'direct', u'bali', u'iraq', u'link', u'anderson'] [u'nomin', u'seek', u'nurs', u'award'] [u'north', u'tourism', u'push', u'ahead', u'europ'] [u'govt', u'name', u'polic', u'corrupt', u'inquiri'] [u'coalit', u'promis', u'rail', u'boost'] [u'competit', u'crack', u'umpir', u'abus'] [u'stand', u'read', u'recoveri', u'program'] [u'ralli', u'draw', u'capac', u'field'] [u'opposit', u'parti', u'defenc', u'analyst'] [u'otten', u'month'] [u'pakistan', u'say', u'difficult', u'support', u'iraq'] [u'parliament', u'get', u'paradis', u'updat'] [u'peac', u'walker', u'visit', u'canberra', u'memori'] [u'perren', u'win', u'honour'] [u'pirsa', u'happi', u'abalon', u'penalti'] [u'plan', u'acquir', u'land', u'portsea', u'move', u'step'] [u'polic', u'charg', u'teenag', u'brawl', u'sydney'] [u'polic', u'hold', u'properti', u'drug', u'raid'] [u'polic', u'investig', u'fatal', u'accid', u'gundagai'] [u'polic', u'charg', u'drug', u'raid'] [u'polic', u'probe', u'mildura', u'stab'] [u'polic', u'probe', u'roadsid', u'bodi'] [u'polic', u'reject', u'toddler', u'case', u'claim'] [u'potenti', u'save', u'butterfli', u'scientist'] [u'power', u'carr', u'add', u'charg', u'list'] [u'predict', u'alic', u'residenti', u'land', u'cost'] [u'prison', u'return', u'custodi'] [u'push', u'lifesav', u'clubhous', u'facil'] [u'want', u'nation', u'tail', u'dock'] [u'queensland', u'rail', u'win', u'tender'] [u'ralli', u'car', u'plan', u'fan'] [u'report', u'play', u'rabbit', u'farm', u'risk'] [u'resign', u'highlight', u'lack', u'support', u'govt'] [u'resign', u'show', u'govt', u'ignor', u'advic', u'iraq'] [u'boost', u'mildura', u'flight'] [u'riverland', u'polic', u'plan', u'baxter', u'reinforc'] [u'rocket', u'blast', u'jail', u'door', u'franc', u'escap'] [u'roma', u'grab', u'gunner', u'draw'] [u'ryan', u'want', u'earli', u'start', u'extens'] [u'sail', u'jacket', u'search', u'miss'] [u'sail', u'jacket', u'search', u'yachtsman'] [u'indigen', u'communiti', u'start', u'bush', u'tucker'] [u'school', u'staff', u'secur', u'boost', u'prove', u'cost'] [u'search', u'osama', u'lade', u'gain', u'momentum'] [u'secur', u'industri', u'call', u'nation', u'model'] [u'seminar', u'focus', u'suicid', u'prevent'] [u'serb', u'injur', u'belgrad', u'shoot', u'sourc'] [u'assault', u'brochur', u'aim', u'indigen', u'women'] [u'ratepay', u'rate', u'rise', u'cap'] [u'tafe', u'redund', u'expect'] [u'specul', u'hous', u'industri', u'head', u'soft'] [u'stem', u'cell', u'research', u'get', u'green', u'light'] [u'storm', u'coach', u'feel', u'pressur', u'perform'] [u'storm', u'wont', u'stop', u'jacaranda', u'festiv'] [u'survey', u'consid', u'high', u'risk', u'drink'] [u'task', u'forc', u'continu', u'land', u'clear', u'probe'] [u'telstra', u'spend', u'million', u'control', u'compani'] [u'threat', u'wheat', u'fungus', u'australia'] [u'tougher', u'water', u'restrict', u'possibl'] [u'tour', u'shed', u'light', u'facto', u'chang'] [u'turkey', u'falter', u'cyprus', u'reunif'] [u'turner', u'question', u'health', u'studi', u'announc'] [u'dead', u'gundagai', u'truck', u'crash'] [u'polic', u'helicopt', u'shoot', u'mexico'] [u'union', u'launch', u'rail', u'campaign'] [u'union', u'welcom', u'minist', u'visit'] [u'warn', u'reced', u'forest', u'cover', u'africa'] [u'aim', u'mother', u'bomb', u'saddam'] [u'court', u'decis', u'hick', u'astound', u'aust', u'lawyer'] [u'militari', u'helicopt', u'crash', u'state'] [u'valencia', u'hold', u'ajax', u'group', u'stalem'] [u'govt', u'pressur', u'boost', u'librari'] [u'victorian', u'parliament', u'okay', u'breastfe'] [u'video', u'trial', u'french'] [u'govt', u'pressur', u'stop', u'wast'] [u'wallabi', u'learn', u'protea', u'mistak', u'gregan'] [u'warn', u'blackmail', u'wit', u'statement'] [u'warn', u'blackmail', u'statement', u'withdraw'] [u'warn', u'shot', u'fire', u'turkish', u'anti', u'protest'] [u'senat', u'quit', u'poll'] [u'wast', u'arsenal', u'hold', u'roma'] [u'wetland', u'rehabilit', u'hit', u'snag'] [u'wife', u'murder', u'charg', u'get', u'bail'] [u'wind', u'help', u'turn', u'away'] [u'wing', u'name', u'face', u'eel'] [u'woodbridg', u'say', u'breakaway', u'group', u'fizzl'] [u'woomera', u'compound', u'close', u'month'] [u'world', u'semi', u'final', u'pitch', u'review'] [u'yacht', u'coast', u'miss'] [u'parliament', u'allow', u'breastfe', u'insid'] [u'vote', u'anti', u'languag'] [u'address', u'umpir', u'shortag'] [u'agreement', u'mine', u'nativ', u'titl', u'exist'] [u'group', u'stockpil', u'suppli', u'help', u'refuge'] [u'airlin', u'clear', u'servic', u'withdraw'] [u'attack', u'nat', u'candid', u'land', u'clear'] [u'doubt', u'benefit', u'govt', u'rural', u'insur'] [u'amaz', u'comeback', u'see', u'sixer', u'past', u'cat', u'hawk'] [u'defi', u'stock', u'market', u'retreat'] [u'tell', u'boss', u'leav', u'payout'] [u'anderson', u'appoint', u'coach', u'zealand'] [u'anderson', u'appoint', u'zealand', u'coach'] [u'earli', u'tast', u'later', u'battl'] [u'appeal', u'court', u'consid', u'arrang', u'marriag'] [u'asic', u'strike', u'deal', u'onetel', u'boss'] [u'aust', u'energi', u'forum', u'kick', u'darwin'] [u'australia', u'look', u'send', u'warn', u'messag', u'world'] [u'australia', u'unchang', u'davi', u'clash', u'sweden'] [u'quiet', u'sharehold', u'vote'] [u'back', u'council', u'build', u'regul', u'review'] [u'baptist', u'pastor', u'commit', u'stand', u'trial'] [u'birmingham', u'host', u'world', u'best', u'indoor'] [u'blair', u'commit', u'iraq', u'crisi', u'downer'] [u'blatter', u'support', u'expand', u'world'] [u'boost', u'griffith', u'dialysi', u'servic'] [u'britain', u'list', u'test', u'iraq', u'avoid'] [u'britain', u'set', u'fresh', u'demand', u'iraq', u'disarm'] [u'british', u'compromis', u'fail', u'veto', u'power'] [u'bull', u'line', u'waratah', u'wrestl'] [u'putt', u'resign', u'incorrect', u'accus'] [u'boost', u'medic', u'school', u'place'] [u'candid', u'councillor', u'threaten', u'refshaug'] [u'cattl', u'sale', u'declar', u'success'] [u'cessnock', u'forum', u'tackl', u'jobless', u'rate'] [u'chief', u'justic', u'call', u'appoint'] [u'claim', u'secur', u'vote', u'major', u'media'] [u'committe', u'hold', u'local', u'govt', u'cost', u'shift', u'hear'] [u'commonwealth', u'urg', u'reconsid', u'doctor'] [u'communiti', u'sport', u'consult', u'extend'] [u'council', u'retir'] [u'council', u'cite', u'rise', u'request', u'ridicul'] [u'councillor', u'back', u'ocean', u'outfal', u'plan'] [u'court', u'order', u'thredbo', u'disast', u'mediat'] [u'quit', u'tiger', u'vice', u'captainci'] [u'crean', u'call', u'restart', u'dump', u'site', u'search'] [u'crean', u'call', u'iraq', u'terrorist', u'link'] [u'crow', u'select', u'carey', u'collingwood', u'clash'] [u'cuckoo', u'squatter', u'get', u'evict', u'bird'] [u'cyclist', u'mourn', u'kivilev', u'death'] [u'cyclon', u'craig', u'weaken', u'tropic'] [u'danger', u'rail', u'cross', u'highlight'] [u'davi', u'squad', u'unchang', u'swiss'] [u'dead', u'shark', u'attack', u'prompt', u'campaign'] [u'rosa', u'return', u'drive', u'mclaren'] [u'delay', u'paedophil', u'case', u'frustrat', u'judg'] [u'democrat', u'dismiss', u'address', u'simper'] [u'develop', u'odd', u'council', u'gnarabup', u'beach'] [u'develop', u'maria', u'island', u'wont', u'disturb', u'nation'] [u'dollar', u'market', u'replay'] [u'dollar', u'slip', u'beneath', u'cent'] [u'drill', u'start', u'salin', u'studi'] [u'drug', u'accus', u'moroccan', u'accus', u'kenyan', u'rumour'] [u'eagl', u'face', u'demon', u'matera', u'brother'] [u'economist', u'predict', u'drop', u'total', u'employ'] [u'effort', u'underway', u'soon', u'unlock', u'natur'] [u'enron', u'execut', u'charg', u'fraud'] [u'escap', u'plane', u'forc', u'land'] [u'farmer', u'posit', u'drought', u'end'] [u'fate', u'oppos', u'striker', u'decid', u'celtic'] [u'fear', u'woomera', u'closur', u'deter', u'space', u'industri'] [u'field', u'day', u'expans', u'plan', u'shelv'] [u'firm', u'defend', u'rail', u'cut'] [u'firm', u'seek', u'desalin', u'plant', u'approv'] [u'fishermen', u'reject', u'marin', u'reserv', u'propos'] [u'council', u'consid', u'legal', u'action'] [u'chief', u'give', u'evid'] [u'franc', u'reject', u'britain', u'offer', u'iraq'] [u'french', u'respons', u'baffl', u'britain', u'howard', u'hit'] [u'deposit', u'dongara'] [u'geelong', u'mayor', u'account', u'fraud', u'earn', u'year', u'jail'] [u'gilbert', u'keen', u'finish', u'high'] [u'goodman', u'fielder', u'cave', u'takeov'] [u'govt', u'open', u'rout', u'competit'] [u'govt', u'tri', u'dismantl', u'atsic', u'robinson'] [u'welcom', u'medic', u'indemn', u'plan'] [u'hanson', u'tour', u'central', u'west'] [u'hawk', u'come', u'croc'] [u'hawk', u'swoop', u'croc'] [u'hewitt', u'advanc', u'safin', u'dismantl', u'scud'] [u'hewitt', u'fitz', u'gerald', u'camplin', u'sport', u'gong'] [u'home', u'lose', u'fire', u'rebuild'] [u'hop', u'fade', u'find', u'miss', u'yachtsman'] [u'hospit', u'emerg', u'figur', u'fuel', u'elect', u'debat'] [u'hospitalis', u'mexican', u'presid', u'refus', u'announc'] [u'howard', u'appeal', u'support', u'campaign', u'iraq'] [u'howard', u'state', u'case', u'iraq'] [u'huge', u'increas', u'peopl', u'catch', u'speed'] [u'hyster', u'communiti', u'respons', u'wast', u'plant', u'govt'] [u'india', u'say', u'malaysia', u'regret', u'raid', u'worker'] [u'inquiri', u'focus', u'region', u'bank', u'servic'] [u'investig', u'turbul', u'problem'] [u'iraq', u'deni', u'drone', u'aircraft', u'biolog', u'warfar'] [u'iraq', u'destroy', u'ban', u'missil'] [u'iraqi', u'communiti', u'want', u'reput', u'restor'] [u'iraq', u'peac', u'process', u'fall', u'apart', u'chile'] [u'japan', u'rocker', u'properti', u'manag', u'jail', u'fraud'] [u'figur', u'dont', u'match', u'strong', u'economi', u'labor'] [u'jobless', u'rate', u'fall', u'month'] [u'juvenil', u'custodi', u'doubl'] [u'kalgoorli', u'boulder', u'hous', u'market'] [u'kashmir', u'blast', u'kill'] [u'keel', u'apologis', u'court', u'onetel', u'collaps'] [u'kenya', u'snare', u'semi', u'berth'] [u'kidman', u'zellweg', u'oscar', u'cliffhang'] [u'labor', u'pledg', u'environ', u'boost'] [u'learn', u'pathway', u'trial', u'extend'] [u'local', u'farmer', u'feder', u'parliament'] [u'local', u'member', u'accus', u'cut', u'job'] [u'locust', u'increas', u'contain', u'condit'] [u'loss', u'airlin', u'wont', u'impact', u'town'] [u'love', u'concern', u'toss', u'despit', u'rain'] [u'lpga', u'tour', u'season', u'kick', u'tucson'] [u'major', u'produc', u'accus', u'boycott', u'forum'] [u'unfit', u'face', u'rape', u'trial'] [u'miss', u'polic', u'search', u'area'] [u'charg', u'grant', u'bail'] [u'stand', u'trial', u'toowoomba', u'murder'] [u'medic', u'indemn', u'plan', u'welcom'] [u'melbourn', u'comm', u'game', u'face', u'cost', u'blow'] [u'million', u'dollar', u'spend', u'protect', u'lake'] [u'minist', u'defend', u'time', u'woomera', u'closur'] [u'mobil', u'oper', u'theatr', u'visit', u'north', u'west'] [u'job', u'worker'] [u'rain', u'need', u'reduc', u'water', u'suppli', u'salin'] [u'mozzi', u'coil', u'hous', u'blaze'] [u'music', u'robot', u'predict', u'chart', u'hit'] [u'nauru', u'parliament', u'break', u'speaker', u'stalem'] [u'navi', u'wont', u'send', u'doctor', u'investig', u'home'] [u'netbal', u'award', u'damag', u'pregnanc'] [u'effort', u'curb', u'road', u'kill'] [u'guidelin', u'littl', u'impact', u'fisher'] [u'korea', u'close', u'nuclear', u'capabl', u'say'] [u'pat'] [u'coalit', u'pledg', u'specialist', u'rural', u'health', u'unit'] [u'opposit', u'accus', u'labor', u'soft', u'crime'] [u'offer', u'doesnt', u'appeas', u'coast', u'polic'] [u'accus', u'labor', u'emerg', u'dept', u'figur', u'cover'] [u'park', u'hand', u'indigen', u'communiti'] [u'patrol', u'boat', u'snub', u'confus', u'council'] [u'pelican', u'shore', u'develop', u'fault', u'councillor'] [u'philippin', u'militari', u'fight', u'rebel'] [u'pine', u'aid', u'effort', u'defenc'] [u'plan', u'decreas', u'park', u'cost', u'mere', u'public'] [u'fail', u'link', u'iraq', u'terror', u'crean'] [u'fail', u'truth', u'test', u'iraq', u'crean'] [u'state', u'case', u'iraq'] [u'polic', u'arrest', u'murder', u'seri', u'nigeria'] [u'policeman', u'guilti', u'rape'] [u'polic', u'probe', u'fatal', u'crash'] [u'pont', u'hop', u'send', u'warn', u'messag'] [u'port', u'pay', u'price', u'rough', u'docker'] [u'portsmouth', u'entrench', u'posit', u'atop', u'divis'] [u'premier', u'reject', u'overspend', u'claim'] [u'protest', u'ralli', u'give', u'iraq', u'speech'] [u'push', u'tail', u'dock', u'draw', u'critic'] [u'rain', u'help', u'break', u'illawarra', u'drought'] [u'real', u'milan', u'champion', u'lead'] [u'cross', u'seek', u'blood', u'donat'] [u'resid', u'penalis', u'stop'] [u'resid', u'unhappi', u'freeway', u'probe'] [u'rivercar', u'worker', u'help', u'boost', u'wetland'] [u'robertson', u'upbeat', u'elect', u'chanc'] [u'row', u'record', u'progress', u'slowli'] [u'russia', u'call', u'time', u'iraq'] [u'govt', u'misrepres', u'hous', u'issu', u'mcewen'] [u'scientist', u'walk', u'world', u'oldest', u'footstep'] [u'search', u'continu', u'miss', u'yachtsman'] [u'search', u'miss', u'yachtsman', u'suspend'] [u'secur', u'council', u'meet', u'iraq', u'draft'] [u'silver', u'spike', u'champ', u'begin', u'campaign'] [u'smart', u'phone', u'know', u'answer'] [u'sorenstam', u'miss', u'lpga', u'open'] [u'stomach', u'hit', u'indian', u'well', u'tournament'] [u'subject', u'teacher', u'drop', u'survey'] [u'survey', u'highlight', u'fewer', u'region', u'communic'] [u'surviv', u'rat', u'china', u'artifici', u'breed', u'panda'] [u'suspect', u'serbia', u'kill'] [u'tafe', u'want', u'local', u'worker', u'project'] [u'tasmanian', u'extradit', u'darwin'] [u'strike'] [u'tikolo', u'hail', u'kenya', u'greatest'] [u'timber', u'expans', u'promis', u'hundr', u'job'] [u'timber', u'worker', u'strike', u'better'] [u'tourist', u'train', u'north'] [u'troop', u'readi', u'cosgrov'] [u'turkey', u'fast', u'track', u'cabinet', u'vote'] [u'west', u'bank', u'battl'] [u'ullrich', u'team', u'confid', u'suspens', u'lift'] [u'unemploy', u'rate', u'fall'] [u'give', u'access', u'qlds', u'biggest', u'supercomput'] [u'team', u'resum', u'khmer', u'roug', u'talk'] [u'forc', u'command', u'arriv', u'qatar', u'base'] [u'girl', u'month', u'disappear'] [u'master', u'women', u'protest', u'go', u'court'] [u'stick', u'iraq', u'deadlin'] [u'trade', u'deficit', u'narrow', u'billion'] [u'govt', u'defend', u'season', u'effort'] [u'head', u'iraq', u'peac', u'campaign', u'worker'] [u'waugh', u'toss', u'test', u'futur'] [u'wheat', u'sharehold', u'elect', u'director'] [u'issu', u'global', u'health', u'alert', u'pneumonia'] [u'widow', u'unhappi', u'govt', u'respons'] [u'wildcat', u'lick', u'wound', u'dramat', u'loss'] [u'williamson', u'claim', u'second', u'packer', u'prize', u'ward'] [u'wind', u'farm', u'project', u'delay'] [u'woman', u'dead', u'accid'] [u'woman', u'guilti', u'receiv', u'secret'] [u'woman', u'stab', u'face'] [u'wood', u'mickelson', u'garcia', u'play', u'better', u'ball'] [u'worker', u'union', u'campaign', u'rise'] [u'world', u'artifici', u'brain', u'tissu', u'test'] [u'young', u'gun', u'jockey', u'limelight'] [u'zimbabw', u'minist', u'say', u'govt', u'amend', u'tough', u'media'] [u'civilian', u'kill', u'palestinian', u'upris'] [u'aborigin', u'legal', u'servic', u'appeal', u'court'] [u'aceh', u'live', u'timor', u'day', u'academ'] [u'resid', u'slug', u'petrol', u'price', u'hike'] [u'employe', u'agre', u'return', u'work'] [u'journalist', u'strike', u'preserv', u'credibl'] [u'airlin', u'appeal', u'court', u'rule', u'blood', u'clot'] [u'rout', u'open', u'competit', u'threshold'] [u'alic', u'spring', u'risk', u'attack'] [u'judg', u'parti', u'health', u'polici'] [u'batchelor', u'disput', u'court'] [u'antarct', u'suppli', u'ship', u'make'] [u'anti', u'dope', u'court', u'govern', u'sport'] [u'anti', u'protest', u'pelt', u'egg'] [u'kill', u'itali', u'pileup'] [u'aust', u'market', u'follow', u'global', u'rebound'] [u'australian', u'athlet', u'ask', u'lift', u'game'] [u'aust', u'free', u'trade', u'talk', u'begin'] [u'author', u'plan', u'investig', u'trefoil', u'plane'] [u'author', u'search', u'bomb', u'suspect'] [u'award', u'recognis', u'goolagong', u'cawley'] [u'bali', u'survivor', u'mccartney', u'return'] [u'bank', u'industri', u'move', u'tackl', u'fraud'] [u'bass', u'strait', u'ferri', u'turn', u'passeng'] [u'beach', u'manag', u'chang', u'expect'] [u'black', u'cap', u'chang', u'match'] [u'blake', u'stand', u'trial', u'wife', u'murder'] [u'bodi', u'leven', u'river'] [u'brack', u'launch', u'bushfir', u'probe'] [u'brigadi', u'prevent', u'attend', u'defenc', u'expo'] [u'britain', u'consid', u'crisi', u'summit'] [u'break', u'hill', u'jobless', u'rate', u'fall'] [u'brumbi', u'earn', u'bonus'] [u'bull', u'fight', u'slater'] [u'cairn', u'dengu', u'fever', u'outbreak', u'worsen'] [u'countri', u'polic', u'boost'] [u'releas', u'speed', u'statist'] [u'water', u'share', u'plan', u'review'] [u'carey', u'ricciuto', u'play', u'collingwood'] [u'cdep', u'seek', u'safeti', u'offic', u'scheme'] [u'child', u'care', u'centr', u'want', u'state', u'wide', u'rise'] [u'church', u'air', u'asylum', u'seeker', u'concern'] [u'church', u'fear', u'expel', u'iranian', u'asylum', u'seeker'] [u'claim', u'chopper', u'safeti', u'direct', u'like', u'impact'] [u'claim', u'site', u'near', u'break', u'hill', u'suitabl'] [u'clarenc', u'water', u'restrict', u'remov'] [u'clijster', u'cruis', u'indian', u'well', u'semi', u'final'] [u'climat', u'chang', u'caus', u'demis', u'mayan', u'report'] [u'resurrect', u'mandatori', u'sentenc'] [u'coff', u'look', u'forward', u'stronger', u'growth'] [u'commerci', u'fisher', u'seek', u'pariti'] [u'compani', u'cop', u'fine', u'diesel', u'spill'] [u'confer', u'hear', u'billionair', u'irrig', u'plan'] [u'copi', u'queensland', u'land', u'blow', u'domest'] [u'correct', u'centr', u'safeti', u'talk', u'continu'] [u'councillor', u'expel', u'call'] [u'council', u'loss', u'concern'] [u'court', u'reserv', u'appeal', u'decis', u'darci'] [u'court', u'say', u'backpack', u'respons', u'dive'] [u'court', u'decid', u'bail', u'case', u'accus'] [u'crow', u'gambl', u'carey'] [u'crow', u'carey', u'spare'] [u'dalbi', u'award', u'tender', u'desalin', u'plant'] [u'dead', u'woman', u'year', u'later'] [u'death', u'toll', u'rise', u'bombay', u'train', u'bomb'] [u'debat', u'rag', u'freeway', u'bypass'] [u'differ', u'resolv', u'mall', u'work'] [u'dolphin', u'hope', u'win', u'streak', u'aliv'] [u'dozen', u'arrest', u'serbian', u'kill', u'report'] [u'eagl', u'face', u'demon', u'matera', u'brother'] [u'eas', u'water', u'restrict', u'certainti'] [u'environ', u'strategi', u'introduc', u'japan'] [u'scan', u'propos', u'jail'] [u'feder', u'fund', u'black', u'spot'] [u'feder', u'fight', u'hurt', u'democrat'] [u'woman', u'choos', u'waff', u'section', u'presid'] [u'fisheri', u'dept', u'investig', u'death', u'southern'] [u'fitzroy', u'legend', u'die', u'age'] [u'franc', u'insist', u'peac', u'iraq', u'solut'] [u'fund', u'boost', u'limeston', u'coast', u'develop', u'board'] [u'project', u'burrup', u'peninsula', u'shelv'] [u'german', u'court', u'static', u'teacher'] [u'german', u'leader', u'condemn', u'logic'] [u'girl', u'hospit', u'adelaid'] [u'gold', u'coast', u'seek'] [u'gold', u'slump', u'month'] [u'govt', u'criticis', u'stall', u'superannu'] [u'govt', u'support', u'magnesium', u'smelter', u'studi'] [u'govt', u'wave', u'stick', u'golden', u'handshak'] [u'grey', u'water', u'put', u'spurt'] [u'harvey', u'norman', u'announc', u'profit', u'jump'] [u'health', u'insur', u'premium', u'rise'] [u'health', u'insur', u'year'] [u'health', u'servic', u'welcom', u'renal', u'unit', u'announc'] [u'hedc', u'continu', u'sasktel', u'effort'] [u'helicopt', u'head', u'stricken', u'bushwalk'] [u'hewitt', u'advanc', u'safin', u'dismantl', u'scud'] [u'hewitt', u'battl', u'quarter', u'final', u'berth'] [u'hollywood', u'star', u'rsvp', u'oscar'] [u'homicid', u'investig', u'launch', u'guilford', u'area'] [u'hope', u'improv', u'water', u'conserv', u'awar'] [u'hope', u'resolut', u'lifesav', u'club'] [u'howard', u'move', u'iraq', u'doubter'] [u'howard', u'defi', u'poll', u'join', u'iraq'] [u'inquiri', u'examin', u'aust', u'indon', u'relationship'] [u'interest', u'nativ', u'titl', u'parti', u'urg', u'regist'] [u'iraq', u'reject', u'british', u'propos', u'avoid'] [u'isra', u'guard', u'kill', u'armi', u'mistak'] [u'kane', u'grab', u'stroke', u'lead', u'lpga', u'season', u'open'] [u'kane', u'lead', u'lpga', u'season', u'open'] [u'khan', u'captur', u'zealand', u'falter'] [u'king', u'order', u'million', u'concert'] [u'bali', u'victim', u'buri', u'solemn', u'ceremoni'] [u'light', u'plane', u'mishap', u'caloundra'] [u'live', u'anim', u'export', u'declin'] [u'local', u'govt', u'merger', u'plan', u'hand', u'councillor'] [u'asbesto', u'level', u'armidal', u'univers'] [u'charg', u'offenc'] [u'dead', u'brawl', u'north', u'perth'] [u'die', u'restrain', u'neighbour'] [u'manhunt', u'shoot', u'adelaid'] [u'face', u'court', u'theft', u'charg'] [u'market', u'hold', u'earli', u'gain'] [u'mccarthi', u'step', u'premier', u'leagu', u'releg'] [u'medico', u'predict', u'iraqi', u'death'] [u'melbourn', u'adopt', u'malle', u'scheme'] [u'charg', u'separ', u'stab'] [u'mental', u'ill', u'educ', u'cours', u'begin'] [u'merger', u'servic', u'district'] [u'west', u'jobless', u'rate', u'fall'] [u'owner', u'look', u'worker', u'soon'] [u'minist', u'consid', u'worker', u'hous', u'shortag'] [u'monarch', u'butterfli', u'surviv', u'cold', u'winter'] [u'shopper', u'reject', u'plastic', u'survey'] [u'suburb', u'add', u'dengu', u'outbreak', u'area'] [u'iluka', u'mildura', u'worker', u'reloc', u'hamilton'] [u'want', u'pine', u'detail'] [u'mayor', u'hint', u'stand'] [u'nat', u'council', u'road', u'fund', u'concern'] [u'facil', u'aim', u'develop', u'juvenil', u'diabet'] [u'prevent', u'drug', u'approv'] [u'dead', u'injur', u'bomb', u'rip', u'bombay'] [u'korea', u'prepar', u'test', u'ballist', u'missil'] [u'north', u'west', u'jobless', u'rate', u'fall'] [u'note', u'owner', u'where', u'patriot'] [u'board', u'consid', u'storm', u'salari'] [u'govt', u'reject', u'claim', u'jail'] [u'nurs', u'temporari', u'repriev'] [u'nylex', u'face', u'hefti', u'fine', u'guilti', u'spill'] [u'dead', u'cyclon', u'hit', u'caledonia'] [u'opposit', u'second', u'regul', u'power', u'interconnector'] [u'parent', u'seek', u'school', u'answer'] [u'allow', u'breastfe'] [u'parliament', u'hous', u'consid', u'secur', u'measur'] [u'patient', u'treatment', u'cost', u'feder', u'respons'] [u'peac', u'anti', u'protest', u'stag', u'melbourn'] [u'pension', u'welfar', u'payment', u'increas'] [u'polic', u'abandon', u'road', u'pursuit'] [u'polic', u'launch', u'plan', u'target', u'drink', u'driver'] [u'polic', u'probe', u'diouf', u'spit', u'incid'] [u'polic', u'probe', u'home', u'invas'] [u'polit', u'magazin', u'close', u'chines', u'govt'] [u'port', u'kembla', u'steelwork', u'evacu'] [u'port', u'kembla', u'steelwork', u'extinguish'] [u'portrait', u'terror', u'sheikh', u'young'] [u'protest', u'target', u'centr', u'fund', u'announc'] [u'push', u'leagu', u'club', u'chang'] [u'govt', u'will', u'discuss', u'rural', u'transport'] [u'queensland', u'urg', u'toler', u'muslim'] [u'rain', u'help', u'eas', u'jobless', u'rate'] [u'refshaug', u'apologis', u'councillor'] [u'roadblock', u'parti', u'order', u'mediat'] [u'roff', u'trick', u'steer', u'crusad'] [u'rooster', u'crush', u'eel', u'season', u'open'] [u'rooster', u'eel', u'clash', u'kick', u'start', u'season'] [u'african', u'asbesto', u'compani', u'shell', u'million', u'compo'] [u'sawmil', u'oper', u'seek', u'licenc', u'compo'] [u'sawmil', u'worker', u'continu', u'campaign'] [u'school', u'high', u'tech'] [u'sculli', u'hit', u'rail'] [u'search', u'miss', u'yachtsman', u'scale'] [u'secur', u'council', u'end', u'talk', u'deadlock', u'remain'] [u'senden', u'shoot', u'american', u'trio'] [u'senden', u'shoot', u'american', u'trio'] [u'case', u'decis', u'split', u'age', u'care', u'industri'] [u'shire', u'look', u'forward', u'chang'] [u'singapor', u'warn', u'travel', u'virus', u'outbreak'] [u'slater', u'star', u'blue'] [u'soprano', u'film', u'delay', u'contract', u'disput'] [u'souri', u'outlin', u'region', u'road', u'fund'] [u'south', u'east', u'water', u'licens', u'levi'] [u'lanka', u'hop', u'zealand', u'defeat'] [u'staff', u'rail', u'station', u'mean', u'ticket', u'hike'] [u'storm', u'flood', u'sweep', u'canberra'] [u'super', u'reform', u'compromis', u'govt'] [u'sweden', u'expel', u'iraqi', u'diplomat'] [u'task', u'forc', u'probe', u'suicid', u'rate'] [u'teen', u'shoot', u'neck', u'sydney'] [u'palestinian', u'rebel', u'clash'] [u'tourism', u'council', u'call', u'weather', u'access', u'road'] [u'turkey', u'ban', u'main', u'kurdish', u'parti'] [u'dead', u'semi', u'trailer', u'car', u'collid'] [u'uefa', u'quarter', u'knife', u'edg'] [u'unemploy', u'rate', u'rise'] [u'human', u'right', u'chief', u'slam', u'guantanamo', u'black', u'hole'] [u'union', u'concern', u'qanta', u'drug', u'alcohol', u'polici'] [u'union', u'consid', u'legal', u'fight', u'outsourc'] [u'unit', u'count', u'euro', u'pressur', u'gunner'] [u'major', u'want', u'iraq', u'schroeder'] [u'unlik', u'reach', u'iraq', u'deal', u'howard'] [u'claim', u'unusu', u'activ', u'north', u'korea', u'test', u'sit'] [u'militari', u'mass', u'iraq', u'offens'] [u'plan', u'allianc'] [u'senat', u'outlaw', u'partial', u'birth', u'abort'] [u'plan', u'north', u'korea', u'sky'] [u'wallabi', u'captain', u'coff', u'ambassador'] [u'possibl', u'delay', u'rail', u'open'] [u'water', u'board', u'sign', u'infrastructur', u'spend'] [u'water', u'plan', u'scrutini'] [u'weapon', u'inspector', u'die', u'iraq', u'road', u'crash'] [u'andi', u'say', u'zimbabw', u'captain'] [u'wind', u'contribut', u'ultralight', u'crash'] [u'woman', u'die', u'crash'] [u'woman', u'front', u'court', u'stab'] [u'woomera', u'site', u'nuclear', u'dump', u'govt'] [u'worker', u'walk', u'asbesto'] [u'work', u'start', u'soon'] [u'worldcom', u'announc', u'billion', u'write'] [u'veteran', u'releas', u'hospit'] [u'aid', u'drug', u'show', u'promis', u'sign'] [u'alsac', u'amateur', u'seek', u'prolong', u'fairytal'] [u'american', u'qualifi', u'spadea', u'semi'] [u'anti', u'medic', u'group', u'meet'] [u'atapattu', u'centuri', u'put', u'lanka', u'good', u'posit'] [u'aussi', u'striker', u'sterjovski', u'give', u'lill', u'hope'] [u'barrichello', u'blame', u'han', u'melbourn', u'crash'] [u'begay', u'gain', u'share', u'lead', u'florida'] [u'blacklock', u'brillianc', u'enliven', u'waratah'] [u'blair', u'welcom', u'east', u'peac', u'roadmap'] [u'blix', u'complet', u'check', u'list', u'draft', u'iraq'] [u'blix', u'receiv', u'latest', u'report', u'list', u'iraq'] [u'blue', u'snatch', u'titl'] [u'bochum', u'stand', u'bayern', u'hors', u'race'] [u'brizuela', u'snatch', u'late', u'equalis', u'ecuador'] [u'bunni', u'bulldog', u'sweat'] [u'bunni', u'bulldog', u'sweat', u'raider', u'pillag'] [u'bush', u'delay', u'palestinian'] [u'bush', u'peac', u'roadmap', u'releas'] [u'bush', u'waiv', u'pakistan', u'sanction'] [u'cambodia', u'agre', u'trash', u'thai', u'embassi'] [u'canberra', u'polic', u'blitz', u'nightspot', u'park'] [u'carr', u'promis', u'region', u'park', u'coff'] [u'chile', u'propos', u'week', u'disarma', u'plan'] [u'china', u'presid'] [u'cipollini', u'sprint', u'season'] [u'clijster', u'overwhelm', u'martinez', u'advanc', u'final'] [u'commonwealth', u'game', u'swansong', u'freeman'] [u'crow', u'season', u'final'] [u'darwin', u'polic', u'charg', u'teenag', u'shoot'] [u'davenport', u'clijster', u'clash', u'indian', u'well', u'final'] [u'daw', u'kasper', u'strike', u'bull', u'dismiss', u'blue'] [u'defenc', u'criticis', u'late', u'asbesto', u'warn'] [u'democrat', u'releas', u'gulf', u'health'] [u'deportivo', u'turn', u'domest', u'duti', u'european'] [u'diouf', u'cop', u'spit', u'fine'] [u'dont', u'underestim', u'kenya', u'gilchrist'] [u'edilson', u'sack', u'japanes', u'club'] [u'wood', u'germani'] [u'expert', u'examin', u'bodi', u'dolphin'] [u'govt', u'collect', u'ambo', u'levi', u'medicar'] [u'flower', u'announc', u'intern', u'retir'] [u'french', u'hope', u'summit', u'assist', u'peac', u'process'] [u'ganguli', u'fight', u'australia', u'showdown'] [u'ganguli', u'want', u'lanka', u'final'] [u'gatlin', u'block', u'speed'] [u'gilchrist', u'back', u'pont', u'waugh', u'back'] [u'greenpeac', u'protest', u'clash', u'polic', u'spain'] [u'gremio', u'libertador', u'save', u'coach'] [u'group', u'campaign', u'urban', u'plan', u'platform'] [u'health', u'insur', u'clear', u'annual', u'increas'] [u'hewitt', u'indian', u'well', u'semi'] [u'hewitt'] [u'howel', u'remesi', u'qatar', u'leaderboard'] [u'hurrican', u'sweep', u'past', u'shark'] [u'india', u'stroll', u'kiwi'] [u'india', u'stroll', u'kiwi'] [u'inquiri', u'order', u'suspect', u'murder', u'escap'] [u'iranian', u'detaine', u'stage', u'hunger', u'strike'] [u'iranian', u'detaine', u'finish', u'hunger', u'strike'] [u'iraqi', u'troop', u'plant', u'northern', u'border', u'bomb'] [u'jiranek', u'readi', u'milan', u'czech'] [u'kazakh', u'vinokourov', u'dedic', u'stage', u'kivilev'] [u'kenya', u'test', u'status'] [u'king', u'elimin', u'tiger'] [u'kosciuszko', u'nation', u'park', u'road', u'open'] [u'kuerten', u'romp'] [u'lehmann', u'join', u'pitch', u'critic'] [u'local', u'council', u'poll', u'close'] [u'mallon', u'shoot', u'tucson'] [u'charg', u'break', u'enter', u'offenc'] [u'escap', u'polic', u'custodi', u'question'] [u'shire', u'drought', u'declar', u'despit', u'rain'] [u'mortlock', u'doubt', u'shoulder', u'knock'] [u'nant', u'tame', u'len', u'leader', u'sight'] [u'nasa', u'look', u'resum', u'shuttl', u'flight', u'year'] [u'drug', u'help', u'pregnanc', u'rat'] [u'zealand', u'cling', u'world', u'lifelin'] [u'govt', u'compens', u'farmer', u'protect'] [u'green', u'urg', u'ballot', u'option'] [u'oppn', u'critic', u'inact', u'train'] [u'oppn', u'question', u'treasuri', u'independ'] [u'race', u'extend', u'sportsbet', u'licenc'] [u'nurs', u'posit', u'advertis'] [u'nation', u'presid', u'elect', u'shelv'] [u'palestinian', u'immedi', u'implement'] [u'palestinian', u'cautious', u'bush', u'talk', u'roadmap'] [u'palmerston', u'council', u'consid', u'boundari', u'extens'] [u'perth', u'hill', u'see', u'high', u'risk'] [u'polic', u'search', u'glen', u'forest', u'women', u'remain'] [u'port', u'hedland', u'detaine', u'hunger', u'strike'] [u'pozzato', u'take', u'stage', u'lead', u'tirreno'] [u'season', u'give', u'crow', u'momentum', u'ricciuto'] [u'protest', u'plan', u'ralli', u'vigil', u'chanc'] [u'oppn', u'concern', u'race', u'cut'] [u'queensland', u'anlezark', u'fifth', u'birmingham'] [u'resid', u'shock', u'plane', u'crash'] [u'roff', u'trick', u'steer', u'win', u'way'] [u'roff', u'lead', u'brumbi'] [u'rooster', u'flier', u'season', u'start'] [u'lose', u'cruis', u'liner', u'stopov'] [u'road', u'toll', u'previous', u'year'] [u'shark', u'shoot', u'premiership'] [u'shark', u'shoot', u'premiership'] [u'shirvington', u'record', u'qualifi', u'time'] [u'sister', u'hospit', u'crash', u'bedroom'] [u'lanka', u'ax', u'jayawarden'] [u'storm', u'caus', u'havoc'] [u'super', u'offic', u'open', u'hobart'] [u'sydney', u'charg', u'break', u'enter'] [u'sydney', u'rooster', u'kick', u'season', u'victori'] [u'plane', u'crash', u'investig', u'month'] [u'tassi', u'north', u'west', u'mourn', u'kill', u'trefoil'] [u'teenag', u'victim', u'tasmanian', u'crash'] [u'river', u'crash', u'emelec', u'troubl', u'match'] [u'tiatto', u'slog', u'fit', u'battl'] [u'tiger', u'bite', u'dragon'] [u'tonga', u'smash', u'south', u'korea', u'world', u'play'] [u'john', u'travolta', u'headlin', u'oscar'] [u'union', u'accus', u'govt', u'finish', u'totalcar'] [u'unit', u'condemn', u'striker', u'poor', u'finish'] [u'unit', u'count', u'euro', u'pressur', u'gunner'] [u'wait', u'iraqi', u'report'] [u'stock', u'flat', u'amid', u'threat'] [u'peac', u'ralli', u'point', u'organis'] [u'odd', u'cwealth', u'forestri', u'polici'] [u'appear', u'brisban', u'court', u'fraud', u'charg'] [u'waratah', u'defeat', u'bull'] [u'warni', u'turn', u'talker'] [u'waugh', u'declar', u'windi', u'starter'] [u'waugh', u'west', u'indi'] [u'waugh', u'play'] [u'wildlif', u'offic', u'investig', u'dolphin', u'death'] [u'woman', u'charg', u'attempt', u'murder', u'burn'] [u'indian', u'policemen', u'kill', u'milit', u'attack'] [u'mercuri', u'success', u'media', u'award'] [u'aid', u'council', u'forc', u'close'] [u'labor', u'caucus', u'consid', u'inner', u'critic'] [u'plan', u'transpar', u'real', u'estat', u'industri'] [u'adelaid', u'dump', u'final'] [u'afghanistan', u'releas', u'pakistani', u'prison'] [u'anti', u'protest', u'confront'] [u'anti', u'protest', u'confront', u'howard'] [u'archaeologist', u'race', u'past'] [u'asia', u'power', u'ahead', u'japan', u'dynasti'] [u'aussi', u'doolan', u'content', u'arizona'] [u'aussi', u'shock', u'pollock', u'sack'] [u'aussi', u'slight', u'troubl', u'kenya'] [u'aussi', u'surviv', u'kenyan', u'scare'] [u'aust', u'hope', u'friend', u'assist', u'friend', u'free', u'trade'] [u'australian', u'dilemma', u'symond', u'harvey'] [u'belgium', u'refus', u'transit', u'forc', u'iraq'] [u'blix', u'consult', u'iraqi', u'invit'] [u'blue', u'wicket', u'fall'] [u'bodi', u'brisban', u'suburb'] [u'bordeau', u'end', u'lorient', u'french', u'defenc'] [u'bring', u'aussi', u'lanka'] [u'brogden', u'confid', u'upset', u'victori'] [u'bush', u'hold', u'littl', u'hope', u'peac', u'disarma'] [u'bush', u'prepar', u'american', u'iraq'] [u'carr', u'call', u'green', u'prefer'] [u'say', u'airport', u'fli', u'shaki', u'time'] [u'china', u'vote', u'presid'] [u'darwin', u'polic', u'interview', u'boy', u'threat'] [u'defenc', u'shouldnt', u'subject', u'veto', u'costello'] [u'devonish', u'take', u'gold', u'blight', u'final'] [u'dragila', u'make', u'shock', u'exit', u'birmingham'] [u'ebola', u'outbreak', u'claim', u'victim'] [u'ethnic', u'film', u'festiv', u'take', u'youth', u'direct'] [u'fergi', u'set', u'sight', u'perfect', u'finish'] [u'franc', u'say', u'day', u'away'] [u'greenpeac', u'protest', u'arrest', u'melbourn'] [u'gunner', u'face', u'champion', u'leagu', u'crisi'] [u'hansen', u'regain', u'tripl', u'jump', u'crown'] [u'heart', u'research', u'welcom', u'half', u'million', u'dollar'] [u'hewitt', u'await', u'challeng', u'semi', u'delay'] [u'hewitt', u'march', u'indian', u'well', u'final'] [u'highland', u'lose', u'cat', u'fail', u'grab', u'spot'] [u'hill', u'wont', u'comment', u'tortur', u'claim'] [u'igelstrom', u'set', u'breaststrok', u'short', u'cours', u'record'] [u'indonesian', u'tortur', u'timor'] [u'investig', u'describ', u'trefoil', u'crash', u'tragic'] [u'iraqi', u'minist', u'doubt', u'summit', u'bring', u'peac'] [u'iraq', u'issu', u'come', u'head'] [u'iraq', u'formal', u'foot'] [u'iraq', u'prepar', u'aggress'] [u'knight', u'bronco', u'open', u'account'] [u'lankan', u'charg', u'semi'] [u'late', u'helguera', u'goal', u'keep', u'real', u'spain'] [u'trick', u'set', u'kenya', u'stumbl'] [u'thank', u'pont', u'trick', u'advic'] [u'leonard', u'jump', u'second', u'amaz', u'charg'] [u'like', u'minded', u'help', u'free', u'trade', u'agreement'] [u'risk', u'killer', u'strain', u'pneumonia', u'aust'] [u'magpi', u'titl', u'race', u'robson'] [u'injur', u'campsi', u'jack'] [u'mccarthi', u'remain', u'posit', u'latest', u'setback'] [u'milan', u'lose', u'grind', u'juve'] [u'cicada', u'speci', u'discov'] [u'rat', u'rank', u'compani'] [u'decis', u'csiro', u'secur'] [u'polic', u'welcom', u'coalit', u'duti', u'polici'] [u'evalu', u'awar', u'campaign'] [u'fight', u'friend', u'deport'] [u'nurs', u'home', u'face', u'loss', u'accredit'] [u'olonga', u'like', u'treason', u'charg'] [u'olonga', u'quit', u'threat'] [u'olymp', u'adam', u'despit'] [u'ottk', u'claim', u'titl', u'mitchel'] [u'pakistan', u'arrest', u'qaeda', u'member'] [u'passeng', u'train', u'derail', u'victorian', u'border'] [u'player', u'fume', u'get', u'chop', u'qatar'] [u'player', u'fume', u'qatar', u'chop', u'decis'] [u'pollock', u'get', u'chop'] [u'port', u'elizabeth', u'experi', u'invalu', u'pont'] [u'port', u'melbourn', u'greenpeac', u'protest', u'end'] [u'season', u'give', u'crow', u'momentum', u'ricciuto'] [u'quarantin', u'say', u'tide', u'assist', u'pest', u'control'] [u'rann', u'lobbi', u'wast', u'dump', u'reject'] [u'rodriguez', u'sprint', u'pari', u'nice', u'glori'] [u'rover', u'blow', u'premiership', u'titl', u'race', u'apart'] [u'rover', u'blow', u'titl', u'race', u'wide', u'open'] [u'russian', u'restaur', u'ban', u'citizen'] [u'govt', u'offer', u'region', u'festiv', u'fund'] [u'serbian', u'polic', u'arrest', u'assassin'] [u'shearer', u'drop', u'hint', u'england', u'comeback'] [u'shiit', u'promis', u'action', u'saddam'] [u'shooter', u'adam', u'ban', u'year'] [u'shop', u'urg', u'promot', u'plastic', u'altern'] [u'sierra', u'leon', u'rebel', u'face', u'crime', u'tribun'] [u'south', u'prevail', u'score', u'blitz'] [u'spanish', u'talk', u'protest'] [u'spectat', u'gather', u'melbourn', u'osaka', u'send'] [u'stone', u'goal', u'give', u'pompey', u'wolv'] [u'storm', u'snatch', u'gasp', u'thriller'] [u'studi', u'suggest', u'upper', u'lead', u'downer'] [u'sunshin', u'coast', u'escape', u'turn'] [u'sunshin', u'coast', u'polic', u'recaptur', u'escape'] [u'super', u'mario', u'sprint', u'stage'] [u'teenag', u'kill', u'accid'] [u'thousand', u'march', u'world', u'possibl'] [u'thousand', u'respect', u'slay', u'serbian'] [u'tiger', u'dragon', u'doggi', u'raider'] [u'tonga', u'crush', u'south', u'korea', u'spain', u'tunisia'] [u'trefoil', u'island', u'crash', u'investig', u'hamper'] [u'warn', u'worldwid', u'threat', u'killer', u'pneumonia'] [u'protest', u'plan', u'surround', u'white', u'hous'] [u'peac', u'ralli', u'continu', u'weekend'] [u'viduka', u'doubl', u'strike', u'save', u'leed'] [u'polic', u'search', u'remain', u'miss', u'woman'] [u'water', u'suppli', u'summit', u'open', u'japan'] [u'week', u'long', u'search', u'miss', u'yachtsman', u'continu'] [u'wildcat', u'adelaid', u'season'] [u'aborigin', u'elder', u'assist', u'arnhem', u'manag'] [u'accid', u'hamper', u'servic'] [u'ajax', u'feyenoord', u'score', u'come', u'win'] [u'albani', u'biggest', u'jobless', u'fall'] [u'alleg', u'drug', u'dealer', u'face', u'court'] [u'art', u'group', u'welcom', u'festiv', u'boost'] [u'aussi', u'doolan', u'take', u'lpga', u'event', u'record'] [u'aussi', u'doolan', u'take', u'lpga', u'season', u'open'] [u'australian', u'human', u'shield', u'stay'] [u'australian', u'peac', u'activist', u'vow', u'stay', u'iraq'] [u'australian', u'urg', u'leav', u'iraq'] [u'australia', u'plan', u'intimid', u'lanka'] [u'bali', u'bomb', u'suspect', u'move', u'sunnier', u'spot'] [u'ballarat', u'assault', u'rise'] [u'boy', u'toy'] [u'chang', u'swan', u'hill', u'council'] [u'fine', u'illeg', u'fish'] [u'biologist', u'unsur', u'cane', u'toad', u'impact'] [u'bleed', u'head', u'liber', u'take', u'templ'] [u'blix', u'advis', u'withdraw', u'staff', u'iraq'] [u'blood', u'clot', u'test', u'speed', u'treatment'] [u'brack', u'defend', u'timelin'] [u'brisban', u'golfer', u'win', u'pambula', u'merimbula', u'event'] [u'britain', u'order', u'citizen', u'gulf'] [u'brogden', u'urg', u'voter', u'throw', u'labor'] [u'brown', u'declar', u'howard', u'bush', u'patsi'] [u'bush', u'phone', u'howard', u'iraq'] [u'busi', u'expect', u'quick', u'recoveri'] [u'cabinet', u'halt', u'march', u'iraq', u'democrat'] [u'cabinet', u'decid', u'commit', u'day'] [u'canberra', u'hospit', u'alert', u'pneumonia', u'threat'] [u'chamber', u'welcom', u'fast', u'eddi', u'news'] [u'chang', u'aplenti', u'council', u'elect'] [u'chang', u'plan', u'nasa', u'balloon'] [u'chariti', u'oper', u'admit', u'raffl', u'fraud'] [u'chest', u'ill', u'outbreak', u'reach', u'perth'] [u'citi', u'seek', u'injunct', u'stop', u'shark', u'match'] [u'coast', u'form', u'schooli', u'task', u'forc'] [u'cole', u'myer', u'announc', u'profit'] [u'communiti', u'safeti', u'spotlight'] [u'concern', u'air', u'refineri', u'emiss'] [u'connolli', u'fin', u'umpir', u'outburst'] [u'construct', u'union', u'reject', u'product', u'report'] [u'council', u'seek', u'nation', u'insur', u'scheme'] [u'council', u'want', u'reduc', u'relianc', u'plastic', u'bag'] [u'court', u'hear', u'kidnap', u'claim'] [u'crash', u'investig', u'hope', u'better', u'weather'] [u'croc', u'play', u'hop', u'live'] [u'democrat', u'ballot', u'show', u'staunch', u'opposit'] [u'democrat', u'campaign', u'western'] [u'dizzi', u'road', u'recoveri'] [u'doubl', u'murder', u'accus', u'stay', u'bar'] [u'downer', u'expect', u'week'] [u'season', u'cut', u'cream', u'product'] [u'saddam', u'resign', u'avert'] [u'export', u'benefit', u'seafood', u'handbook'] [u'farmer', u'time', u'submiss'] [u'farmer', u'group', u'offer', u'qualifi', u'support'] [u'farmer', u'protest', u'john', u'diseas', u'zone'] [u'farm', u'thinktank', u'plead', u'lifelin'] [u'fear', u'dengu', u'outbreak', u'spread'] [u'govt', u'victorian', u'applic'] [u'feofanova', u'set', u'indoor', u'pole', u'vault', u'record'] [u'ferguson', u'consid', u'give', u'youngster', u'premiership'] [u'fifa', u'allow', u'conduct', u'refere', u'radio', u'experi'] [u'team', u'watch', u'home', u'near', u'scarsdal', u'blaze'] [u'firm', u'pull', u'power', u'station', u'plan'] [u'fish', u'kill', u'link', u'rainfal'] [u'footbal', u'death', u'refer', u'coron'] [u'forest', u'audit', u'scheme'] [u'director', u'fight'] [u'ambassador', u'name', u'china', u'foreign', u'minist'] [u'forsayth', u'develop', u'busi', u'plan', u'wake', u'rail'] [u'fourth', u'stage', u'tirreno', u'adriatico', u'cancel'] [u'franc', u'decid', u'overnight', u'iraq', u'veto', u'blair'] [u'franc', u'russia', u'restat', u'veto', u'threat'] [u'germani', u'spurn', u'plea', u'iraq', u'back'] [u'gold', u'coast', u'get', u'station'] [u'govt', u'say', u'charg', u'freez', u'reckless'] [u'govt', u'upgrad', u'travel', u'alert', u'east'] [u'govt', u'warn', u'australian', u'risk', u'zone'] [u'graze', u'compani', u'settl', u'jackeroo', u'death', u'case'] [u'green', u'candid', u'highlight', u'issu'] [u'green', u'environment', u'conscienc'] [u'face', u'dental', u'woe'] [u'health', u'dept', u'play', u'dengu', u'outbreak', u'risk'] [u'hervey', u'scallop', u'hatcheri'] [u'hewitt', u'make'] [u'hobart', u'tunnel', u'viabl', u'say', u'economist'] [u'hong', u'kong', u'say', u'pneumonia'] [u'hope', u'health', u'breakthrough'] [u'hospit', u'death', u'result', u'second', u'murder', u'charg'] [u'howard', u'deni', u'role', u'free', u'trade', u'sweeten'] [u'howard', u'expect', u'iraq', u'diplomaci', u'come', u'head'] [u'howard', u'say', u'soldier', u'inquiri', u'cours'] [u'howard', u'wait', u'bush', u'summon', u'australian', u'troop'] [u'hundr', u'protest', u'loom'] [u'iceman', u'formula', u'one', u'properti'] [u'icpa', u'lobbi', u'recurr', u'fund'] [u'igelstrom', u'break', u'record'] [u'india', u'respect', u'kenya', u'srinath'] [u'injur', u'westhuizen', u'head', u'home'] [u'inquest', u'begin', u'fatal', u'shark', u'attack'] [u'inter', u'heat', u'juve', u'roma', u'flop'] [u'investig', u'continu', u'brisban', u'suspici'] [u'iraqi', u'detaine', u'nauru', u'dead'] [u'irish', u'presid', u'toast', u'pat', u'melbourn'] [u'isra', u'troop', u'enter', u'refuge', u'camp', u'kill'] [u'israel', u'lock', u'palestinian', u'area', u'festiv'] [u'israel', u'reject', u'critic', u'roadmap', u'propos', u'document'] [u'suffer', u'cronj', u'say', u'ax', u'pollock'] [u'johnson', u'win', u'hurdl', u'gold', u'jackson', u'farewel'] [u'journalist', u'urg', u'leav', u'baghdad'] [u'kirsten', u'join', u'donald', u'rhode', u'retir'] [u'knight', u'start', u'season', u'win', u'note'] [u'leonard', u'outlast', u'love', u'titl'] [u'level', u'restrict', u'come', u'forc'] [u'link', u'drug', u'crime', u'reason', u'unclear'] [u'magistr', u'quit', u'amid', u'lewd', u'alleg'] [u'major', u'parti', u'criticis', u'simplist', u'crime'] [u'charg', u'murder'] [u'face', u'court', u'murder', u'charg'] [u'face', u'drug', u'charg'] [u'jail', u'role', u'fatal', u'assault'] [u'market', u'stall', u'machin', u'rev'] [u'martyn', u'doubt', u'semi', u'final'] [u'martyn', u'struggl', u'finger', u'injuri'] [u'matera', u'hang', u'footbal', u'boot'] [u'mcgradi', u'want', u'dialogu', u'polic', u'union'] [u'mildura', u'mayor', u'lose', u'council', u'spot'] [u'plan', u'includ', u'road', u'survey'] [u'miner', u'list'] [u'mortlock', u'super', u'season'] [u'downplay', u'offic', u'breach'] [u'welcom', u'polic', u'station', u'progress'] [u'natur', u'fund', u'search', u'discard', u'origin'] [u'councillor', u'gannawarra', u'shire'] [u'cronj', u'claim', u'spark', u'protea', u'miseri'] [u'coalit', u'promis', u'southern', u'shoalhaven', u'hospit'] [u'say', u'miracl', u'avert'] [u'ogara', u'choos', u'world'] [u'pakistan', u'push', u'india', u'boycott'] [u'pasminco', u'record', u'loss'] [u'peter', u'matera', u'contempl', u'retir'] [u'plan', u'begin', u'indigen', u'job', u'scheme'] [u'expect', u'bush', u'troop', u'soon'] [u'give', u'west', u'papuan', u'second', u'refuge', u'chanc'] [u'polic', u'appeal', u'help', u'bash'] [u'polic', u'investig', u'park', u'cannabi', u'haul'] [u'polic', u'offic', u'face', u'court', u'fals', u'evid'] [u'polic', u'probe', u'fatal', u'hous', u'blaze'] [u'polic', u'probe', u'pedestrian', u'death'] [u'polic', u'seiz', u'illeg', u'porn', u'shop'] [u'polic', u'sidelin', u'detect', u'accus', u'drug', u'trade'] [u'polic', u'unruli', u'plane'] [u'polic', u'search', u'miss', u'yachtsman'] [u'polic', u'wont', u'link', u'drug', u'find'] [u'possibl', u'mysteri', u'pneumonia', u'case', u'report'] [u'potenti', u'dead', u'virus', u'spark', u'mozzi', u'warn'] [u'protest', u'ralli'] [u'push', u'medic', u'specialist'] [u'quick', u'victori', u'quagmir', u'iraq', u'analyst'] [u'race', u'cut', u'predict', u'spark', u'voter', u'backlash'] [u'race', u'meet', u'face'] [u'raider', u'prove', u'good', u'cowboy'] [u'report', u'confirm', u'danger', u'drink', u'swim'] [u'retail', u'chain', u'pay', u'thiev', u'steal', u'court', u'hear'] [u'week', u'baghdad', u'veteran'] [u'veteran', u'timor', u'inquiri'] [u'scheme', u'tackl', u'indigen', u'famili', u'violenc'] [u'sculli', u'announc', u'rail', u'commit'] [u'sculli', u'throw', u'surpris', u'parti', u'polici'] [u'secur', u'guard', u'bash', u'arm', u'hold'] [u'shearer', u'rule', u'possibl', u'england', u'return'] [u'shire', u'shelv', u'airport', u'revamp', u'plan'] [u'circuit', u'wind'] [u'silver', u'spike', u'champ', u'record'] [u'davi', u'hugh', u'dead'] [u'gaza', u'raid'] [u'skywest', u'servic'] [u'skywest', u'wont', u'rule', u'cut'] [u'socceroo', u'play', u'argentina'] [u'offer', u'voluntari', u'redund', u'shepparton'] [u'spur', u'boss', u'hoddl', u'rubbish', u'liverpool', u'diouf', u'claim'] [u'stage', u'khmer', u'roug', u'trial'] [u'statu', u'recognis', u'french', u'influenc'] [u'streak', u'insist', u'continu'] [u'struggl', u'restaurateur', u'turn', u'abalon', u'crime'] [u'stuttgart', u'hold', u'firm', u'champion', u'leagu', u'quest'] [u'super', u'power', u'accus', u'transpar'] [u'talli', u'escap', u'punch'] [u'tamworth', u'consid', u'coach', u'termin', u'limit'] [u'wetland', u'work', u'face', u'guidelin'] [u'teacher', u'welcom', u'oppn', u'disciplin', u'stanc'] [u'teen', u'jail', u'year', u'doig', u'murder'] [u'wrong', u'draw', u'talli'] [u'thoma', u'pull', u'world', u'titl'] [u'thoma', u'undergo', u'shoulder', u'surgeri'] [u'timber', u'mill', u'final', u'compo', u'offer'] [u'line', u'deni', u'biki', u'discrimin'] [u'union', u'seek', u'extra', u'payment', u'compulsori'] [u'work', u'hold', u'iraq', u'kuwait', u'buffer', u'zone'] [u'hit', u'phone', u'iraq', u'mandat'] [u'order', u'embassi', u'staff', u'east'] [u'order', u'diplomat', u'middl', u'east'] [u'valencia', u'slip', u'titl', u'pace'] [u'veget', u'plan', u'land', u'clear', u'green', u'group'] [u'govt', u'list', u'easter', u'sunday', u'trade', u'exempt'] [u'govt', u'urg', u'rethink', u'poki', u'signag'] [u'year', u'kitti'] [u'construct', u'industri'] [u'vinokurov', u'hang', u'retain', u'pari', u'nice', u'titl'] [u'virul', u'pneumonia', u'reach', u'australia'] [u'vote', u'hold', u'hardi', u'merger', u'plan'] [u'word', u'erupt', u'burrup', u'develop'] [u'cost', u'howard', u'lodg', u'lee'] [u'washington', u'take', u'metr', u'titl', u'cain'] [u'water', u'plan', u'question'] [u'waugh', u'battl', u'pont', u'name', u'deputi'] [u'wimbledon', u'ivanisev', u'tournament', u'report'] [u'woman', u'die', u'crash'] [u'women', u'nude', u'protest', u'loom'] [u'world', u'fallout', u'england', u'player'] [u'hop', u'widen', u'illeg', u'fisher'] [u'youth', u'servic', u'help', u'week', u'survey'] [u'zimbabw', u'stay', u'commonwealth', u'outer'] [u'bowden', u'group'] [u'acoss', u'urg', u'action', u'corpor', u'payout'] [u'adelaid', u'woman', u'stay', u'iraq', u'human', u'shield'] [u'audit', u'player', u'payment'] [u'age', u'care', u'fund', u'question'] [u'iraqi', u'diplomat', u'expel'] [u'anti', u'protest', u'messag', u'opera', u'hous'] [u'anti', u'protest', u'plan', u'shoot', u'parliament'] [u'arafat', u'conced', u'prime', u'minist', u'power'] [u'arsenal', u'face', u'break', u'week'] [u'athen', u'game', u'affect', u'iraq', u'crisi', u'minist'] [u'atsic', u'leader', u'critic', u'ineffici', u'report'] [u'australia', u'case', u'china', u'virus'] [u'australian', u'stock', u'ralli', u'morn', u'trade'] [u'australian', u'warn', u'leav', u'middl', u'east'] [u'bell', u'come', u'term', u'schooli', u'task', u'forc'] [u'bishop', u'say', u'lead', u'post', u'iraq', u'heal'] [u'blair', u'lose', u'iraq', u'stanc'] [u'brack', u'ban', u'feel', u'good', u'junket'] [u'brand', u'hatch', u'renam', u'curv', u'sheen'] [u'brazil', u'host', u'world'] [u'major', u'sharehold', u'support', u'merger'] [u'bush', u'phone', u'howard'] [u'bush', u'race', u'cut'] [u'busi', u'urg', u'easter', u'fair'] [u'broader', u'bushfir', u'probe'] [u'campaign', u'seek', u'fund', u'chang'] [u'cathol', u'lobbi', u'condemn', u'iraq', u'immor'] [u'champion', u'leagu', u'incom', u'cut', u'ajax', u'loss'] [u'chew', u'collar', u'viewer', u'complaint'] [u'childcar', u'centr', u'seek', u'support'] [u'china', u'call', u'secur', u'council', u'stop'] [u'chopper', u'crash', u'inquest', u'continu'] [u'claim', u'transport', u'chang', u'prove', u'cost'] [u'communiti', u'farewel'] [u'communiti', u'urg', u'toler', u'troop'] [u'concern', u'air', u'koala', u'legisl'] [u'council', u'deficit', u'studi'] [u'councillor', u'say', u'secess', u'debat'] [u'council', u'reconsid', u'draft', u'issu'] [u'council', u'continu'] [u'council', u'probe', u'plant', u'poison', u'claim'] [u'crean', u'urg', u'rethink', u'commit'] [u'crew', u'start', u'mop', u'brisban', u'spill'] [u'debat', u'erupt', u'breast', u'screen', u'access'] [u'defenc', u'union', u'tell', u'crean', u'fall', u'line'] [u'develop', u'squad', u'name', u'india', u'tour'] [u'dfat', u'upgrad', u'travel', u'warn', u'includ', u'syria'] [u'canio', u'stay', u'west'] [u'domest', u'violenc', u'victim', u'need', u'support', u'lawyer'] [u'dont', u'blame', u'troop', u'vietnam', u'vet'] [u'doubt', u'cast', u'hall', u'futur'] [u'doubt', u'cast', u'power', u'station', u'plan'] [u'drought', u'forc', u'extend', u'restrict'] [u'elect', u'rule', u'cull', u'minist'] [u'emerg', u'crew', u'attend', u'massiv', u'brisban', u'leak'] [u'emerg', u'water', u'plan', u'underway'] [u'eriksson', u'upbeat', u'futur'] [u'esso', u'fin', u'freezer', u'incid'] [u'famili', u'join', u'forest', u'search'] [u'fear', u'hold', u'miss'] [u'ferguson', u'blood', u'youth', u'deportivo'] [u'ferreira', u'turn', u'attent', u'court', u'matter'] [u'local', u'issu', u'rais', u'elect', u'forum'] [u'firefight', u'free', u'woman', u'hand'] [u'adelaid', u'darwin', u'train', u'member'] [u'fish', u'genet', u'tag'] [u'flee', u'team', u'wish', u'iraqi', u'good', u'luck'] [u'human', u'shield', u'satisfi', u'mission'] [u'free', u'trade', u'talk', u'discuss', u'medicin', u'scheme'] [u'discoveri', u'show', u'potenti'] [u'girdler', u'week'] [u'gold', u'coast', u'gear', u'lifesav', u'event'] [u'goorjian', u'wari', u'wound', u'croc'] [u'gough', u'agre', u'yorkshir', u'contract'] [u'govt', u'defend', u'legal', u'ground', u'attack', u'iraq'] [u'govt', u'urg', u'human', u'shield', u'leav', u'iraq'] [u'guid', u'offer', u'seafood', u'export', u'advic'] [u'gutless', u'howard', u'backbench', u'can', u'silenc'] [u'hall', u'declar', u'area'] [u'hat', u'nino', u'go', u'siesta'] [u'hawk', u'deal', u'blow', u'calf', u'injuri', u'holland'] [u'hayek', u'happi', u'despit', u'frida', u'loss'] [u'health', u'offici', u'continu', u'dengu', u'erad'] [u'herbert', u'kefu', u'expect', u'return', u'blue'] [u'holland', u'injuri', u'compound', u'hawthorn', u'woe'] [u'hospit', u'board', u'face', u'abolit'] [u'howard', u'commit', u'australian', u'troop'] [u'indigen', u'communiti', u'aid', u'booklet'] [u'indonesia', u'condemn', u'howard', u'decis'] [u'injur', u'knight', u'seek', u'medic', u'advic'] [u'inquest', u'hear', u'evid', u'woman', u'death'] [u'invest', u'fund', u'back', u'wine', u'merger'] [u'iraq', u'decis', u'split', u'parliament'] [u'iraqi', u'diaspora', u'fear', u'fire', u'line'] [u'iraq', u'outcom', u'send', u'messag', u'north', u'korea', u'downer'] [u'iraq', u'reject', u'exil', u'option'] [u'kenya', u'success', u'fairytal', u'say', u'tikolo'] [u'kili', u'blow', u'valencia', u'ahead', u'arsenal', u'game'] [u'knight', u'injuri', u'cloud'] [u'knopfler', u'fail', u'tyre', u'straight'] [u'labour', u'revolt', u'undermin', u'blair'] [u'larg', u'spill', u'threaten', u'brisban', u'river'] [u'lawyer', u'claim', u'forc', u'approv', u'illeg'] [u'symond', u'australia'] [u'lee', u'deem', u'iraq', u'basi'] [u'symond', u'australia', u'final'] [u'liverpool', u'drop', u'diouf', u'sutton', u'injur', u'celtic'] [u'long', u'hold', u'race', u'meet', u'prepar', u'wind'] [u'mackerel', u'tag', u'essenti', u'harvest', u'rat'] [u'malaysia', u'criticis', u'attack', u'plan'] [u'injur', u'tree', u'mishap'] [u'murder', u'charg', u'refus', u'bail'] [u'marina', u'plan', u'move', u'closer', u'realiti'] [u'market', u'maintain', u'earli', u'gain'] [u'market', u'ralli', u'prospect', u'short', u'iraq', u'conflict'] [u'mayor', u'talk', u'power'] [u'mcewen', u'cook', u'rank', u'cycl', u'elit'] [u'mcewen', u'retain', u'spot', u'cycl', u'elit'] [u'meet', u'focus', u'birdsvill', u'health', u'servic'] [u'death', u'inquest', u'find', u'today'] [u'industri', u'air', u'safeti', u'legisl', u'concern'] [u'delay', u'sober', u'shelter'] [u'mori', u'cop', u'week'] [u'evict', u'plane', u'defend', u'action'] [u'seek', u'stop', u'farm', u'bore', u'irrig'] [u'mundin', u'prim', u'titl', u'bout', u'crush'] [u'mundin', u'prove', u'strong', u'brazilian'] [u'nat', u'elector', u'boundari', u'chang', u'concern'] [u'nat', u'candid', u'want', u'polic', u'beat'] [u'nat', u'talk', u'water', u'infrastructur'] [u'nelli', u'harbour', u'talk', u'continu'] [u'nestl', u'negoti', u'union', u'redund'] [u'nomin', u'seek', u'train', u'award'] [u'govt', u'consid', u'desalin', u'plant'] [u'health', u'say', u'case', u'pneumonia', u'strain'] [u'minor', u'parti', u'urg', u'protest', u'vote'] [u'depart', u'investig', u'tear', u'mishap'] [u'nuke', u'asid', u'seoul', u'send', u'pyongyang'] [u'nurs', u'staff', u'disput', u'resolv'] [u'offici', u'concern', u'possibl', u'pneumonia'] [u'olonga', u'hop', u'tune', u'career'] [u'oppn', u'say', u'legal', u'cost'] [u'opposit', u'parti', u'block', u'senat', u'vote'] [u'palestinian', u'parliament', u'clear'] [u'parent', u'payout', u'son', u'death'] [u'parent', u'jackaroo', u'reliev', u'payout'] [u'park', u'provid', u'balanc', u'conserv'] [u'parti', u'promis', u'dear'] [u'polic', u'charg', u'oper', u'vike'] [u'polic', u'review', u'capsicum', u'spray', u'teen'] [u'polic', u'search', u'escap', u'inmat'] [u'polic', u'shop', u'raid', u'net', u'porn', u'video'] [u'powel', u'hand', u'match'] [u'probe', u'launch', u'rail', u'crash'] [u'propos', u'chemic', u'plant', u'rais', u'issu'] [u'qanta', u'temporarili', u'staff', u'level'] [u'coalit', u'want', u'budget', u'lay', u'bare', u'poll'] [u'racq', u'say', u'green', u'bridg', u'answer'] [u'rail', u'plan', u'draft', u'impact', u'studi', u'releas'] [u'rail', u'standardis', u'delay'] [u'rail', u'ticket', u'sale', u'week'] [u'ravanelli', u'offer', u'play', u'free', u'season'] [u'cross', u'run', u'darwin', u'youth', u'pilot', u'program'] [u'resid', u'question', u'disabl', u'servic'] [u'retir', u'politician', u'die'] [u'robinson', u'reject', u'effici', u'claim'] [u'rower', u'good', u'spirit', u'despit', u'poor', u'weather'] [u'saddam', u'heed', u'forc', u'howard', u'tell'] [u'saddam', u'reject', u'bush', u'ultimatum'] [u'hospit', u'alert', u'virus', u'symptom'] [u'senat', u'call', u'hick', u'assist'] [u'schroeder', u'reject', u'ultimatum', u'iraq'] [u'sculli', u'dismiss', u'liabil'] [u'senat', u'begin', u'debat', u'iraq', u'invas'] [u'serbia', u'arrest', u'warlord', u'widow', u'shoot'] [u'abus', u'probe', u'delay'] [u'shop', u'project', u'remain', u'limbo'] [u'smith', u'england', u'squad', u'scotland', u'match'] [u'snowtown', u'trial', u'continu', u'killer', u'dock'] [u'speed', u'rule', u'barcelona', u'clash'] [u'stone', u'offer', u'iraqi', u'refuge', u'assur'] [u'student', u'answer', u'bomb', u'walkout'] [u'support', u'polic', u'station'] [u'survey', u'highlight', u'tourist', u'spend', u'capac'] [u'suspend', u'sentenc', u'husband', u'stab'] [u'talli', u'cite', u'chief'] [u'tampa', u'crisi', u'peopl', u'smuggler', u'lose', u'appeal'] [u'hospit', u'brief', u'virus', u'outbreak'] [u'tasmania', u'provoc', u'murder', u'excus'] [u'team', u'peak', u'right', u'time', u'pont'] [u'teen', u'face', u'court', u'indec', u'deal', u'charg'] [u'tent', u'embassi', u'remov', u'tuckey'] [u'pressur', u'australia', u'whatmor'] [u'pretzel', u'make', u'cranki', u'french'] [u'test', u'dead', u'virus'] [u'thunderbird', u'lobbi', u'loyalti', u'rule'] [u'touch', u'footbal', u'hall', u'fame'] [u'trade', u'rid', u'higher', u'odd', u'short'] [u'trial', u'date', u'detaine', u'escap', u'charg'] [u'trucki', u'offer', u'kidney', u'grazier'] [u'tuna', u'industri', u'environment'] [u'turkey', u'readi', u'assist'] [u'turkey', u'reconsid', u'disallow', u'troop'] [u'campaign', u'push', u'fraser', u'coast'] [u'clear', u'contagion', u'symptom'] [u'bail', u'opera', u'hous', u'peac', u'graffiti'] [u'inspector', u'pull', u'baghdad'] [u'union', u'seek', u'hear', u'redund'] [u'student', u'turn', u'protest'] [u'unsecur', u'creditor', u'recov'] [u'grazier', u'beef', u'free', u'trade'] [u'troop', u'prepar', u'kuwaiti', u'desert'] [u'victorian', u'pair', u'test', u'dead', u'pneumonia', u'strain'] [u'break', u'citizen', u'target', u'oxfam'] [u'team', u'defend', u'mine', u'honour'] [u'water', u'hold', u'levi', u'draw', u'critic'] [u'weapon', u'inspector', u'pull', u'iraq'] [u'whan', u'welcom', u'green', u'prefer', u'plan'] [u'wheat', u'trade', u'iraq', u'earli', u'casualti'] [u'whitak', u'skipper', u'waratah'] [u'william', u'hop', u'repeat', u'malaysian', u'success'] [u'woman', u'home', u'pneumonia', u'test'] [u'women', u'sing', u'peac', u'parliament', u'foyer'] [u'world', u'leader', u'condemn', u'iraq', u'decis'] [u'yemeni', u'kill', u'foreign'] [u'million', u'upgrad', u'mitsubishi', u'motor'] [u'russian', u'dead', u'alcohol', u'poison'] [u'bequest', u'tasmanian', u'educ'] [u'aborigin', u'centr', u'investig', u'educ'] [u'accc', u'take', u'action', u'weight', u'loss', u'gadget'] [u'adelaid', u'clean', u'underway', u'storm'] [u'cancel', u'season', u'launch'] [u'critic', u'employ', u'intern', u'medic'] [u'american', u'coupl', u'charg', u'abduct', u'utah'] [u'andi', u'flower', u'sign', u'redback'] [u'anti', u'protest', u'unhappi', u'troop', u'commit'] [u'arafat', u'ask', u'deputi', u'assum', u'role'] [u'arsenal', u'newcastl', u'face', u'spanish', u'date'] [u'aussi', u'troop', u'campaign'] [u'australia', u'malaysia', u'oper', u'antarct'] [u'australia', u'reconsid', u'trip', u'loom'] [u'bacon', u'doesnt', u'support', u'troop', u'commit'] [u'beach', u'water', u'qualiti', u'get', u'thumb'] [u'black', u'name', u'best'] [u'black', u'name', u'best'] [u'blair', u'win', u'back', u'forc'] [u'bodi', u'discov', u'melbourn'] [u'breakthrough', u'identifi', u'mysteri', u'respiratori'] [u'brisban', u'team', u'develop', u'spinal', u'deform'] [u'bronco', u'boss', u'slam', u'hypocrit', u'jackson'] [u'bushfir', u'victim', u'get', u'advic', u'hotlin'] [u'busi', u'council', u'welcom', u'relief'] [u'fund', u'tackl', u'petrol', u'sniff'] [u'indigen', u'reunif', u'fund', u'boost'] [u'candid', u'give', u'reason', u'seat', u'decis'] [u'cannabi', u'crop', u'spark', u'polic', u'search'] [u'carr', u'brogden', u'street'] [u'china', u'free', u'sect', u'member', u'resid'] [u'chopper', u'crash', u'victim', u'die', u'hospit'] [u'clean', u'oper', u'underway', u'sever', u'storm'] [u'club', u'appli', u'race', u'date', u'rise'] [u'coast', u'doctor', u'shortag', u'highlight'] [u'concern', u'air', u'tree', u'clear', u'plan'] [u'council', u'chairman', u'surpris', u'cross', u'find'] [u'council', u'disappoint', u'health'] [u'council', u'get', u'stock', u'saleyard'] [u'council', u'resid', u'meet', u'age', u'care', u'plan'] [u'council', u'warpath', u'loom', u'conflict'] [u'council', u'tell', u'resolv', u'disput', u'intern'] [u'court', u'tell', u'evid', u'pilot', u'suffer', u'heart', u'attack'] [u'csiro', u'centr', u'gene', u'identif'] [u'deal', u'distributor', u'close', u'govt'] [u'demand', u'grow', u'field', u'day', u'sit'] [u'diver', u'search', u'river'] [u'result', u'hamper', u'foodchain', u'loss'] [u'doctor', u'monitor', u'woman', u'like', u'condit'] [u'don', u'offer', u'support', u'manag', u'awol', u'booz'] [u'don', u'warn', u'paterson', u'offer', u'support'] [u'downer', u'applaud', u'khmer', u'roug', u'tribun', u'deal'] [u'downer', u'doubt', u'start', u'tomorrow'] [u'dozen', u'dissid', u'arrest', u'cuba'] [u'drug', u'traffick', u'escap', u'death', u'penalti'] [u'dust', u'storm', u'move', u'melbourn'] [u'dust', u'storm', u'turn'] [u'earli', u'season', u'sugarcan', u'forecast', u'loom'] [u'rail', u'win', u'contract'] [u'estat', u'revamp'] [u'ethnic', u'kurd', u'fear', u'retaliatori', u'attack', u'hussein'] [u'factfil', u'forc', u'gulf'] [u'farina', u'fear', u'argentin', u'clash'] [u'farmer', u'benefit', u'steadi', u'crude', u'market'] [u'farmer', u'get', u'drought', u'fund'] [u'farmer', u'unhappi', u'decis'] [u'farmer', u'urg', u'vigil', u'diseas'] [u'fear', u'prove', u'cost', u'rural', u'industri'] [u'fergi', u'thumb', u'unit', u'youngster'] [u'firefight', u'wari', u'mornington', u'blaze'] [u'charg', u'brisban', u'teacher', u'assault'] [u'flee', u'iraqi', u'block', u'syrian', u'border'] [u'flower', u'sign', u'redback'] [u'forget', u'australia', u'sven'] [u'matilda', u'captain', u'posit', u'dope', u'test'] [u'matilda', u'captain', u'record', u'posit', u'drug', u'test'] [u'watford', u'striker', u'lose', u'plymouth'] [u'franc', u'drop', u'desailli', u'euro', u'qualifi'] [u'gallop', u'deni', u'hypocrisi', u'govt', u'motion'] [u'gembrook', u'control'] [u'gilchrist', u'applaud', u'fair', u'play'] [u'gilchrist', u'applaud', u'sport', u'walk'] [u'golden', u'time', u'ahead'] [u'govern', u'close', u'second', u'detent', u'centr'] [u'govt', u'offer', u'help', u'medic', u'indemn', u'crisi'] [u'grain', u'confer', u'defeat', u'plan'] [u'green', u'invit', u'carr', u'anti', u'protest'] [u'group', u'wont', u'accept', u'fund', u'boost', u'servic'] [u'heart', u'look', u'beat'] [u'holm', u'hop', u'seal', u'ironman', u'seri'] [u'hope', u'public', u'sway', u'poni', u'decis'] [u'hope', u'ratepay', u'green', u'levi'] [u'hundr', u'firefight', u'battl', u'martha', u'blaze'] [u'hundr', u'firefight', u'battl', u'blaze'] [u'indigen', u'heritag', u'studi', u'launch'] [u'iraqi', u'communiti', u'protest', u'violenc'] [u'iraqi', u'parliament', u'reject', u'ultimatum'] [u'iraqi', u'parliament', u'say'] [u'iraqi', u'public', u'prepar', u'worst'] [u'iraq', u'unlik', u'chemic', u'biolog', u'weapon'] [u'rule', u'pilot', u'unfair', u'dismiss', u'claim'] [u'irrig', u'seek', u'weir', u'water'] [u'isra', u'presid', u'secret', u'meet', u'palestinian'] [u'itali', u'support', u'stanc', u'iraq'] [u'ivori', u'coast', u'receiv', u'aid', u'fund'] [u'jone', u'fight', u'klitschko', u'retain', u'crown'] [u'king', u'brother', u'meet', u'redund'] [u'king', u'target', u'croc', u'turner'] [u'knight', u'lose', u'parson', u'kennedi'] [u'latif', u'get', u'pakistan', u'captain'] [u'lead', u'index', u'highlight', u'eas', u'growth', u'rate'] [u'lead', u'welcom', u'overhaul', u'sport', u'structur'] [u'leicest', u'close', u'premier', u'leagu', u'return'] [u'longreach', u'gear', u'tourism', u'season'] [u'water', u'stop', u'fish'] [u'luczak', u'get', u'chanc', u'miami'] [u'avoid', u'jail', u'assault'] [u'charg', u'illeg', u'abalon', u'haul'] [u'face', u'court', u'polic', u'death', u'threat'] [u'jail', u'sword', u'attack', u'sentenc'] [u'martin', u'question', u'clps', u'stanc', u'mandatori'] [u'martyn', u'outsid', u'chanc', u'play', u'final'] [u'melbourn', u'abandon', u'host', u'swim', u'champ'] [u'melbourn', u'abandon', u'host', u'world', u'swim'] [u'minist', u'ask', u'hospit', u'fund', u'explain'] [u'drought', u'fund', u'applic', u'wheatbelt'] [u'motel', u'blaze', u'investig'] [u'seek', u'ambul', u'levi', u'chang'] [u'urg', u'support', u'aussi', u'troop'] [u'urg', u'support', u'aust', u'troop'] [u'want', u'honour', u'titl', u'restrict'] [u'mysteri', u'ill', u'claim', u'live'] [u'mysteri', u'matilda', u'posit', u'dope', u'test'] [u'mysteri', u'pneumonia', u'claim', u'live', u'hong', u'kong'] [u'nairn', u'back', u'troop', u'commit'] [u'napl', u'get', u'royal', u'support', u'host', u'america'] [u'nasa', u'balloon', u'launch', u'flop'] [u'wast', u'dump', u'expir', u'month'] [u'chang', u'refuge', u'polici', u'iraq'] [u'crisi', u'german', u'footbal', u'despit', u'exit', u'dortmund'] [u'observ', u'contract'] [u'opera', u'hous', u'clean', u'continu'] [u'oscar', u'go', u'carpet'] [u'palm', u'beach', u'home', u'invas', u'investig'] [u'parent', u'reliev', u'manslaught', u'verdict'] [u'parliamentari', u'debat', u'iraq', u'enter'] [u'pasminco', u'reaffirm', u'desir', u'refloat'] [u'pasminco', u'upbeat', u'despit', u'loss'] [u'paysandu', u'libertador'] [u'picnic', u'race', u'face', u'uncertain', u'futur'] [u'pilot', u'die', u'light', u'aircraft', u'crash'] [u'polic', u'arrest', u'near', u'london', u'airport'] [u'polic', u'road', u'victim'] [u'polic', u'oper', u'end', u'arrest'] [u'polic', u'seiz', u'cannabi', u'plant'] [u'politician', u'warn', u'media', u'game'] [u'pont', u'warn', u'final', u'loom'] [u'predict', u'nino', u'demis', u'littl', u'impact'] [u'predict', u'gold', u'withstand', u'short'] [u'premiership', u'fergi', u'greatest', u'achiev'] [u'probe', u'chemic', u'claim'] [u'protest', u'lodg', u'stand'] [u'public', u'urg', u'avoid', u'conflict', u'anxieti'] [u'public', u'urg', u'australian', u'troop'] [u'health', u'play', u'dengu', u'concern'] [u'question', u'time', u'cancel', u'claim', u'gestapo', u'tactic'] [u'rag', u'chew', u'striker', u'year'] [u'real', u'juventus', u'seal', u'champ', u'leagu', u'quarter', u'spot'] [u'real', u'juventus', u'seal', u'quarter', u'spot'] [u'resid', u'unhappi', u'feder', u'grant', u'boost'] [u'rock', u'threaten', u'boati'] [u'saddam', u'hussein', u'feel', u'relax'] [u'safeti', u'bureau', u'releas', u'ship', u'crash', u'find'] [u'santo', u'investig', u'massiv', u'brisban'] [u'saudi', u'arabia', u'propos', u'exil', u'saddam', u'hussein'] [u'sawmil', u'worker', u'enter', u'week', u'strike'] [u'schumach', u'aim', u'return', u'podium'] [u'schumach', u'aim', u'return', u'podium', u'malaysia'] [u'seaman', u'valencia', u'decid'] [u'search', u'miss', u'scale'] [u'secur', u'concern', u'central', u'queensland', u'port'] [u'shire', u'welcom', u'sewerag', u'project', u'fund'] [u'socceroo', u'argentina', u'clash', u'call'] [u'socceroo', u'argentina', u'clash'] [u'south', u'korea', u'voic', u'support', u'iraq'] [u'stellar', u'market', u'hold', u'gain'] [u'striker', u'coach', u'soon'] [u'strong', u'cattl', u'price', u'continu'] [u'student', u'internet', u'boost'] [u'studi', u'consid', u'hunter', u'pollut'] [u'stun', u'gain', u'australian', u'market'] [u'support', u'call', u'easter', u'fair'] [u'swim', u'team', u'seek', u'safeti', u'guarante'] [u'tasmanian', u'head', u'worldwid', u'librari', u'network'] [u'terror', u'risk', u'increas'] [u'thailand', u'expel', u'iraqi', u'diplomat'] [u'thorp', u'hackett', u'prepar', u'renew', u'rivalri'] [u'arrest', u'near', u'london', u'airport', u'bomb'] [u'tiger'] [u'traffic', u'delay', u'expect', u'mildura', u'truck', u'crash'] [u'tram', u'commut', u'strand', u'glenelg', u'fault'] [u'transport', u'worker', u'cut', u'wont', u'affect', u'servic', u'govt'] [u'truck', u'decis', u'state', u'mareeba', u'mayor'] [u'turkey', u'approv', u'airspac'] [u'injur', u'helicopt', u'crash'] [u'guilti', u'forg', u'chequ'] [u'mysteri', u'respiratori', u'ill'] [u'uncertain', u'leav', u'rat', u'hold'] [u'union', u'plan', u'strike', u'protest'] [u'announc', u'final', u'deadlin', u'saddam'] [u'begin', u'propaganda', u'gulf'] [u'forc', u'iraq', u'border'] [u'start', u'tomorrow', u'deadlin'] [u'troop', u'sandstorm', u'kuwaiti', u'desert'] [u'network', u'agre', u'cooper'] [u'govt', u'reject', u'salin', u'claim'] [u'fear', u'forc', u'swim', u'trip', u'rethink'] [u'warn', u'river', u'flow'] [u'tip', u'send', u'fuel', u'price', u'higher'] [u'woman', u'pneumonia', u'scare', u'releas', u'hospit'] [u'women', u'pneumonia', u'scare', u'releas', u'hospit'] [u'woman', u'guilti', u'breach', u'anim', u'welfar'] [u'youth', u'game', u'sport', u'name'] [u'accid', u'spark', u'appeal', u'farm', u'safeti'] [u'seek', u'detail', u'warn', u'play', u'chariti'] [u'activist', u'charg', u'mandela', u'assassin'] [u'protest', u'gather', u'embassi'] [u'agreement', u'reach', u'reef', u'fleet', u'termin'] [u'raid', u'siren', u'sound', u'clear', u'baghdad'] [u'ord', u'hold', u'begin'] [u'keen', u'orang'] [u'ambassador', u'counter', u'terror', u'appoint'] [u'amend', u'suggest', u'anti', u'terror', u'law'] [u'analyst', u'specul', u'war', u'progress'] [u'anti', u'protest', u'flood', u'europ', u'citi', u'centr'] [u'anti', u'protest', u'street'] [u'area', u'reopen', u'recreat', u'haul', u'fish'] [u'arthur', u'down', u'qualifi', u'miami'] [u'head', u'mile', u'want', u'cash', u'player'] [u'auckland', u'blue', u'kefu'] [u'australia', u'get', u'green', u'light', u'extradit'] [u'australian', u'troop', u'howard'] [u'australian', u'troop', u'readi'] [u'barcelona', u'newcastl', u'european', u'adventur'] [u'bega', u'contest', u'heat'] [u'bell', u'elect', u'player', u'associ', u'presid'] [u'blair', u'frosti', u'dinner', u'chirac'] [u'britain', u'ask', u'turkey', u'airspac'] [u'bush', u'declar', u'iraq'] [u'fund', u'cull', u'wild', u'dog'] [u'cardiologist', u'gag', u'ambul', u'concern'] [u'carew', u'sink', u'arsenal'] [u'carr', u'give', u'support', u'monaro'] [u'carr', u'highlight', u'environment', u'achiev'] [u'ceremoni', u'mark', u'work', u'shop', u'complex'] [u'cheaper', u'fuel', u'result', u'iraq'] [u'coalit', u'promis', u'highway', u'upgrad'] [u'coast', u'licenc'] [u'comment', u'seek', u'retail', u'trade', u'deregul'] [u'continent', u'job', u'save', u'million'] [u'cooktown', u'turf', u'club', u'fight'] [u'council', u'seek', u'king', u'brother', u'meet'] [u'cuban', u'plane', u'land', u'hijack'] [u'deal', u'fast', u'track', u'develop'] [u'decis', u'whatmor', u'futur'] [u'dengu', u'outbreak', u'hit', u'suburb'] [u'dept', u'speak', u'land', u'clear'] [u'dfat', u'issu', u'warn', u'australian', u'remain'] [u'invest', u'million', u'review'] [u'disappoint', u'wenger', u'upbeat', u'doubl', u'chanc'] [u'doctor', u'group', u'welcom', u'obstetrician', u'subsidi', u'boost'] [u'doubt', u'cast', u'trade', u'hour', u'partial', u'deregul'] [u'downpour', u'caus', u'flood', u'damag'] [u'draw', u'roma', u'send', u'ajax'] [u'dust', u'storm', u'sydney', u'illawarra'] [u'dust', u'storm', u'toll', u'farmer'] [u'nacion', u'reviv', u'hop', u'injuri', u'time', u'winner'] [u'emerg', u'respons', u'fatal', u'crash', u'question'] [u'explos', u'rock', u'baghdad', u'jet', u'overhead'] [u'factfil', u'countri', u'offer', u'support', u'attack'] [u'factfil', u'iraq', u'militari', u'capabl'] [u'factfil', u'smart', u'bomb', u'eye', u'tool'] [u'famili', u'troop', u'attend', u'church', u'servic'] [u'farmer', u'hope', u'rain'] [u'farmer', u'meet', u'forest', u'manag'] [u'farm', u'group', u'seek', u'freight', u'subsidi', u'extens'] [u'head', u'mosley', u'cancel', u'malaysian', u'visit'] [u'firefight', u'burn', u'state', u'park'] [u'strike', u'prepar', u'land', u'battl'] [u'alic', u'resid', u'win', u'cycl', u'race'] [u'text', u'bush', u'declar', u'begin'] [u'fund', u'help', u'fast', u'track', u'bypass'] [u'fund', u'boost', u'carer', u'respit'] [u'ganguli', u'lead', u'india', u'final'] [u'alert', u'iraq', u'lob', u'scud', u'kuwait'] [u'explor', u'project', u'move', u'closer', u'realiti'] [u'gilbert', u'farewel', u'lifesav'] [u'govt', u'queri', u'payment', u'solicitor', u'mortgag', u'scheme'] [u'govt', u'reintroduc', u'asio'] [u'green', u'unveil', u'polit', u'fund'] [u'gulf', u'veteran', u'return', u'medal', u'protest'] [u'hackett', u'hop', u'duel', u'pool', u'go', u'ahead'] [u'harmoni', u'help', u'student', u'issu'] [u'helicopt', u'crash', u'inquest', u'adjourn'] [u'heritag', u'studi', u'see', u'reconcili', u'boost'] [u'highway', u'reopen', u'crash'] [u'hospit', u'clear', u'high', u'heart', u'surgeri', u'death', u'rate'] [u'howard', u'address', u'nation', u'iraq'] [u'human', u'shield', u'unconcern', u'safeti'] [u'increas', u'secur', u'parliament'] [u'increas', u'indigen', u'women', u'prison', u'report'] [u'india', u'go', u'kenya'] [u'indigen', u'compani', u'audit'] [u'investig', u'begin', u'fatal', u'helicopt', u'crash'] [u'iraq', u'condemn', u'aggress'] [u'iraq', u'deadlin', u'pass'] [u'iraq', u'declar', u'jihad'] [u'iraq', u'deni', u'fire', u'near', u'basra'] [u'iraqi', u'ambassador', u'return', u'baghdad'] [u'iraqi', u'envoy', u'say', u'attack', u'breach'] [u'iraqi', u'inform', u'ministri', u'claim', u'civilian', u'kill'] [u'iraqi', u'missil', u'kuwait', u'offici'] [u'iraqi', u'action', u'illeg', u'crean'] [u'iraq', u'warn', u'israel', u'tie'] [u'israel', u'high', u'state', u'alert', u'deadlin'] [u'jail', u'businessman', u'fin', u'wast', u'storag'] [u'killer', u'pneumonia', u'trace', u'hong', u'kong', u'hotel'] [u'king', u'game', u'away', u'grand', u'final'] [u'lack', u'action', u'death', u'custodi', u'say', u'coron'] [u'lack', u'afford', u'hous', u'result', u'poverti'] [u'land', u'seek', u'age', u'care', u'centr'] [u'laverton', u'wont', u'lose', u'servic'] [u'mackay', u'unlik', u'terrorist', u'target', u'mayor'] [u'major', u'bomb', u'raid', u'start', u'offici'] [u'major', u'parti', u'reveal', u'polici', u'cost'] [u'major', u'theft', u'australian', u'museum'] [u'malaysia', u'condemn', u'attack', u'iraq'] [u'mammal', u'collect', u'donat'] [u'convict', u'murder', u'parent'] [u'melbourn', u'osaka', u'fleet', u'gale', u'forc', u'wind'] [u'mental', u'health', u'accommod', u'servic', u'plan'] [u'militari', u'chaplain', u'wrestl', u'conscienc'] [u'million', u'seek', u'domest', u'violenc', u'scheme'] [u'minist', u'confid', u'farmer', u'wont', u'feel', u'impact'] [u'minist', u'defend', u'dept', u'youth', u'crime', u'claim'] [u'minor', u'parti', u'unsway', u'howard', u'address'] [u'missil', u'didnt', u'contain', u'chemic', u'report'] [u'molik', u'pratt', u'notch', u'miami', u'win'] [u'peopl', u'download', u'broadband'] [u'rain', u'spell', u'creek', u'river', u'flood'] [u'urg', u'resign', u'stanc'] [u'bush', u'nurs', u'centr', u'open'] [u'supplier', u'group', u'confirm'] [u'polic', u'chief', u'great', u'southern'] [u'regul', u'caravan', u'roadsid', u'stop'] [u'exhibit', u'open'] [u'nomin', u'close', u'soon', u'council', u'elect'] [u'order', u'start', u'grind', u'spokesman'] [u'parti', u'releas', u'elect', u'cost', u'today'] [u'player', u'super', u'judici', u'review'] [u'voic', u'regret', u'start'] [u'suppli', u'continu', u'say', u'opec'] [u'parent', u'complain', u'east', u'mail', u'charg'] [u'parliamentari', u'debat', u'conclud'] [u'parliament', u'continu', u'debat', u'iraqi', u'conflict'] [u'parti', u'campaign', u'demount', u'platform'] [u'phial', u'mysteri', u'substanc', u'sydney', u'airport'] [u'philippin', u'leader', u'warn', u'terrorist', u'attack'] [u'plan', u'underway', u'improv', u'local', u'iraqi', u'relat'] [u'polic', u'probe', u'tree', u'vandal'] [u'polic', u'protest', u'clash', u'turkey'] [u'polic', u'investig', u'fatal', u'gyrocopt', u'crash'] [u'portsmouth', u'march', u'thrash', u'coventri'] [u'powel', u'notifi', u'howard', u'impend'] [u'pratt', u'win', u'arthur', u'lose', u'florida', u'open'] [u'prestigi', u'scienc', u'research', u'fellowship', u'announc'] [u'priest', u'call', u'islam', u'nation', u'rise'] [u'profil', u'saddam', u'hussein'] [u'protest', u'clash', u'polic', u'anti', u'march'] [u'protest', u'stage', u'peac', u'vigil', u'pine'] [u'public', u'help', u'polic', u'drug', u'arrest'] [u'public', u'urg', u'consid', u'local', u'govt', u'posit'] [u'qbuild', u'employ', u'apprentic'] [u'raaf', u'base', u'consid', u'secur', u'boost'] [u'rain', u'threaten', u'kenya', u'india', u'clash'] [u'ranger', u'extend', u'lead', u'motherwel'] [u'report', u'iraqi', u'civilian', u'injuri'] [u'robson', u'blame', u'abysm', u'defend', u'loss'] [u'rural', u'doctor', u'welcom', u'indemn', u'support'] [u'ryle', u'dragon'] [u'saddam', u'vow', u'victori'] [u'saffi', u'anger', u'randel', u'outburst'] [u'schumach', u'deni', u'rumour'] [u'secur', u'gippsland', u'raaf', u'base', u'review'] [u'senior', u'centr', u'plan', u'move', u'ahead'] [u'sharehold', u'approv', u'hardi', u'deal'] [u'share', u'market', u'make', u'gain'] [u'shooter', u'adam', u'appeal', u'drug', u'ban'] [u'shuttl', u'flight', u'data', u'record'] [u'skill', u'farm', u'worker', u'short', u'suppli'] [u'souness', u'cole', u'patch', u'differ'] [u'southcorp', u'announc'] [u'special', u'forc', u'head', u'israel', u'scud', u'risk'] [u'state', u'funer', u'hold', u'digger'] [u'storm', u'clean', u'continu'] [u'talli', u'urg', u'maintain', u'passion'] [u'tasmanian', u'shop', u'open', u'easter', u'sunday'] [u'tasmania', u'increas', u'secur'] [u'teacher', u'talk', u'feel', u'student'] [u'teenag', u'martin', u'help', u'inter'] [u'attack', u'strike', u'baghdad', u'report'] [u'thousand', u'march'] [u'thousand', u'walk', u'sydney'] [u'tougher', u'penalti', u'anim', u'cruelti'] [u'tuckey', u'belittl', u'aborigin', u'tent', u'embassi'] [u'turner', u'turn', u'heat', u'king'] [u'lectur', u'investig', u'polit'] [u'union', u'clarifi', u'protest'] [u'union', u'newspap', u'meet', u'plan', u'cut'] [u'unit', u'coach', u'happi', u'draw'] [u'armi', u'launch', u'attack', u'afghanistan'] [u'attack', u'aim', u'iraqi', u'leadership'] [u'missil', u'aim', u'iraqi', u'meet', u'british'] [u'network', u'jump', u'start'] [u'unsur', u'head', u'roll', u'decapit', u'strike'] [u'machin', u'roll', u'arab', u'world'] [u'valencia', u'ajax', u'inter', u'complet', u'champ', u'leagu'] [u'valencia', u'ajax', u'magpi', u'gunner'] [u'artist', u'take', u'sculptur', u'award'] [u'victoria', u'medium', u'terror', u'alert'] [u'govt', u'agre', u'peel', u'demand'] [u'begin', u'white', u'hous', u'confirm'] [u'nation', u'say'] [u'word', u'open', u'schedul'] [u'word', u'open', u'schedul'] [u'waugh', u'wouldnt', u'walk'] [u'western', u'warn', u'extremist', u'attack'] [u'whyalla', u'develop', u'approv', u'rise'] [u'work', u'begin', u'age', u'care', u'centr'] [u'work', u'condit', u'caus', u'public', u'employe'] [u'world', u'final', u'ahead', u'heighten'] [u'digger', u'die', u'age'] [u'sport', u'complex', u'plan', u'boulia'] [u'civilian', u'injur', u'baghdad', u'raid', u'iraq', u'say'] [u'see', u'baghdad', u'blitz'] [u'adelaid', u'upset', u'shark', u'final', u'open'] [u'ruckus', u'player', u'polit', u'comment'] [u'alli', u'plan', u'bomb', u'mosul', u'region'] [u'walk', u'life', u'follow', u'protest', u'path'] [u'anti', u'protest', u'underway'] [u'anti', u'protest', u'turnout', u'smaller'] [u'argentinian', u'aim', u'dunde', u'semi'] [u'arsenal', u'beat', u'everton'] [u'asio', u'brief', u'crean', u'terrorist', u'risk'] [u'aussi', u'hine', u'scotland', u'squad'] [u'australian', u'troop', u'moral', u'high', u'govt'] [u'australia', u'complet', u'round', u'trade', u'treati'] [u'bomber', u'leav', u'england', u'iraq'] [u'bail', u'refus', u'alleg', u'famili', u'killer'] [u'beij', u'allow', u'small', u'anti', u'protest'] [u'blair', u'pay', u'tribut', u'brave', u'casualti'] [u'blue', u'ribbon', u'continu', u'hire', u'employ', u'contract'] [u'britain', u'say', u'iraqi', u'well'] [u'british', u'confirm', u'kill', u'chopper', u'crash'] [u'british', u'confirm', u'kill', u'helicopt', u'crash'] [u'brogden', u'defend', u'plan', u'doc'] [u'brown', u'appeal', u'peac', u'anti', u'protest'] [u'builder', u'experi', u'high', u'demand', u'hous'] [u'levi', u'fund', u'boat', u'facil', u'boost'] [u'carr', u'reject', u'public', u'avoid', u'campaign'] [u'cathol', u'bishop', u'air', u'fear'] [u'highlight', u'bushfir', u'threat', u'torch', u'steal'] [u'chamber', u'crime', u'concern'] [u'china', u'treat', u'fast', u'fair', u'coverag', u'iraq'] [u'claim', u'medic', u'indemn', u'boost', u'late'] [u'claim', u'late', u'opposit'] [u'coalit', u'forc', u'hope', u'reach', u'baghdad'] [u'coalit', u'goal', u'baghdad', u'insid', u'day'] [u'coalit', u'grip', u'tighten', u'strateg', u'port'] [u'coalit', u'troop', u'grind', u'southern', u'iraq'] [u'communiti', u'celebr', u'cultur', u'divers'] [u'communiti', u'develop', u'initi', u'discuss'] [u'virus', u'bring', u'spread', u'iraq', u'conflict'] [u'copi', u'troop', u'meet', u'littl', u'resist'] [u'coulthard', u'lead', u'malaysian', u'practis'] [u'council', u'crack', u'owner'] [u'council', u'welcom', u'second', u'airlin'] [u'coupl', u'charg', u'sell', u'home', u'ginger', u'wine'] [u'court', u'approv', u'asic', u'keel', u'settlement'] [u'darci', u'lose', u'appeal', u'child', u'offenc'] [u'debat', u'continu', u'entertain', u'venu'] [u'democrat', u'health', u'review', u'plan'] [u'deportivo', u'dare', u'dream', u'beat', u'real'] [u'deportivo', u'hop', u'spring', u'real', u'upset'] [u'develop', u'offer', u'hospit', u'demolit', u'altern'] [u'dfat', u'urg', u'australian', u'iraq', u'avoid', u'strateg'] [u'dominguez', u'recal', u'itali'] [u'dont', u'jeremi', u'warn', u'bayern'] [u'dont', u'mention', u'boss', u'demetriou'] [u'duel', u'pool', u'ahead', u'australian', u'swim'] [u'effort', u'littl', u'tern'] [u'english', u'premier', u'leagu', u'preview'] [u'expert', u'investig', u'chines', u'link', u'mysteri'] [u'farmer', u'busi', u'flood', u'relief'] [u'farmer', u'elig', u'interim', u'drought'] [u'farm', u'labour', u'shortag', u'felt', u'wide'] [u'govt', u'send', u'wheat', u'iraq'] [u'ferguson', u'deni', u'mind', u'game', u'charg'] [u'fiji', u'court', u'find', u'pair', u'guilti', u'treason'] [u'fiji', u'deputi', u'speaker', u'charg', u'speight', u'coup'] [u'fisher', u'want', u'quicker', u'action', u'slipway'] [u'forc', u'upset', u'shark', u'final', u'open'] [u'policeman', u'face', u'sentenc', u'child'] [u'forum', u'discuss', u'develop', u'issu'] [u'franc', u'recal', u'michalak', u'castaigned'] [u'french', u'straggler', u'hold', u'leadership', u'battl'] [u'french', u'sympathi', u'troop', u'death'] [u'gang', u'rapist', u'accus', u'send', u'white', u'powder'] [u'ganguli', u'defend', u'tactic'] [u'good', u'time', u'north', u'coast', u'real', u'estat'] [u'watch', u'gunner', u'crack', u'schole'] [u'grant', u'elect', u'second', u'mayor', u'term'] [u'grind', u'assault', u'reach', u'northern', u'iraq'] [u'group', u'fund', u'environ', u'festiv'] [u'hackett', u'eye', u'thorp', u'record'] [u'hazard', u'reduct', u'burn', u'plan', u'southern'] [u'hong', u'kong', u'devis', u'test', u'pneumonia'] [u'hospic', u'fund', u'resolv'] [u'hostel', u'get', u'liquor', u'licenc', u'despit', u'polic', u'fear'] [u'howard', u'thank', u'troop'] [u'howard', u'thank', u'troop', u'work', u'iraq'] [u'huge', u'explos', u'see', u'basra', u'kuwait'] [u'inquest', u'woman', u'death', u'adjourn'] [u'iraq', u'fire', u'ninth', u'missil', u'kuwait'] [u'iraq', u'throw', u'world', u'rule', u'pow'] [u'jockey', u'begin', u'council', u'spot'] [u'kournikova', u'thump', u'home', u'crowd'] [u'kuranyi', u'get', u'germani', u'european', u'qualifi'] [u'landhold', u'protest', u'veget', u'manag', u'plan'] [u'leed', u'confirm', u'venabl', u'departur'] [u'liber', u'parti', u'claim', u'green', u'anti', u'messag'] [u'lightn', u'blame', u'blackout'] [u'acquit', u'unlaw', u'wound', u'charg'] [u'jail', u'centrelink', u'fraud'] [u'plead', u'guilti', u'uluru', u'assault'] [u'marin', u'surrend', u'iraqi', u'report'] [u'mcgauran', u'back', u'australia', u'involv'] [u'death', u'investig', u'underway'] [u'leader', u'welcom', u'push', u'explor', u'boost'] [u'miner', u'promis', u'employ', u'local'] [u'minor', u'parti', u'prison', u'deni', u'basic'] [u'mix', u'feel', u'hardi', u'merger'] [u'anti', u'protest', u'melbourn'] [u'anti', u'protest', u'wollongong'] [u'detail', u'releas', u'chopper', u'crash'] [u'arrest', u'francisco', u'protest'] [u'suggest', u'landhold', u'consid', u'peel', u'scheme', u'compo'] [u'nation', u'express', u'creditor', u'face', u'huge', u'loss'] [u'navi', u'search', u'flee', u'iraqi', u'offici'] [u'kelli', u'film', u'get', u'rat'] [u'korea', u'tell', u'neighbour', u'quiet'] [u'news', u'saddam', u'whereabout'] [u'north', u'korea', u'accus', u'prepar', u'strike'] [u'parti', u'leader', u'unsur', u'impact'] [u'offic', u'say', u'iraqi', u'soldier', u'surrend'] [u'price', u'edg', u'possibl', u'longer'] [u'oneil', u'hail', u'great', u'night', u'scotland'] [u'onesteel', u'move', u'ahead', u'rail', u'contract'] [u'webb', u'lead', u'sorenstam', u'phoenix'] [u'webb', u'lead', u'sorenstam', u'phoenix', u'lpga', u'event'] [u'parliament', u'hous', u'beef', u'secur'] [u'peac', u'anti', u'protest', u'outsid', u'pine'] [u'penalti', u'boavista', u'uefa', u'semi'] [u'pentagon', u'deni', u'warplan', u'down', u'iraq'] [u'philippoussi', u'miami'] [u'pittman', u'threaten', u'freeman', u'reign'] [u'player', u'entitl', u'polit', u'statement', u'bell'] [u'thump', u'atsic'] [u'polic', u'happi', u'station', u'plan'] [u'polic', u'higher', u'secur', u'alert'] [u'polic', u'unit'] [u'polic', u'welcom', u'domest', u'violenc', u'jail', u'sentenc'] [u'powel', u'turkey', u'fli', u'right'] [u'predict', u'indemn', u'plan', u'affect', u'health', u'budget'] [u'prepar', u'longer', u'downer'] [u'protest', u'gather', u'second', u'march'] [u'public', u'prepar', u'cast', u'vote', u'poll'] [u'qantaslink', u'boost', u'rockhampton', u'gladston', u'flight'] [u'qanta', u'intern', u'flight'] [u'fruit', u'commerci', u'orchard'] [u'queen', u'send', u'best', u'wish', u'australian', u'troop'] [u'red', u'humili', u'waratah', u'frustrat'] [u'red', u'look', u'break', u'herbert'] [u'religi', u'group', u'fear', u'backlash'] [u'report', u'highlight', u'homeless', u'woe'] [u'resid', u'ralli'] [u'rooster', u'edg', u'knight'] [u'russia', u'seek', u'rule', u'legal'] [u'saddam', u'speech', u'doubl', u'offici'] [u'saddam', u'put', u'bounti', u'invad'] [u'saddam', u'son', u'compound', u'devast', u'strike'] [u'iraq'] [u'sawmil', u'lock', u'strike', u'worker'] [u'schu', u'fastest', u'qualifi', u'session'] [u'schumach', u'sizzl', u'malaysian', u'qualifi'] [u'scud', u'power', u'miami'] [u'seagul', u'hope', u'continu', u'win', u'way'] [u'sewag', u'spill', u'derwent'] [u'share', u'market', u'close', u'week', u'steadi'] [u'shevchenko', u'charg', u'result'] [u'shire', u'reach', u'agreement', u'plan'] [u'shire', u'discuss', u'aquif', u'plan'] [u'shire', u'protest', u'polic', u'plan'] [u'sixteen', u'kill', u'helicopt', u'crash', u'kuwait'] [u'smith', u'pledg', u'protea', u'passion'] [u'socceroo', u'seed', u'separ', u'oceania', u'minnow'] [u'soorley', u'ruffl', u'feather', u'flag', u'fli'] [u'south', u'australian', u'bali', u'bomb', u'victim', u'look'] [u'scrap', u'season', u'break'] [u'straw', u'offer', u'condol', u'famili', u'kill'] [u'tasmanian', u'artist', u'win', u'archibald'] [u'teenag', u'sentenc', u'canberra', u'bushfir'] [u'telstra', u'boost', u'servic', u'line'] [u'helicopt', u'iraqi', u'oper'] [u'tikolo', u'back', u'aussi', u'prevail'] [u'tweed', u'candid', u'gear', u'elect'] [u'forc', u'secur', u'equip'] [u'union', u'plan', u'anti', u'ralli'] [u'confirm', u'marin', u'dead', u'onslaught'] [u'flag', u'burn', u'protest'] [u'forc', u'iraqi', u'port'] [u'make', u'contact', u'republican', u'guard'] [u'marin', u'halt', u'iraqi'] [u'move', u'expel', u'iraqi', u'diplomat'] [u'order', u'iraqi', u'diplomat'] [u'plan', u'attack', u'nuke', u'sit', u'north', u'korea'] [u'say', u'iraq', u'sail', u'rudder'] [u'hope', u'avoid', u'attack'] [u'troop', u'meet', u'littl', u'resist', u'offic'] [u'fire', u'southern', u'iraq', u'unknown'] [u'best', u'receiv', u'barri', u'sheen', u'medal'] [u'veletta', u'sack', u'coach'] [u'venabl', u'quit', u'leed', u'report'] [u'vieira', u'blast', u'uefa', u'racist', u'attack'] [u'visitor', u'start', u'flock', u'pat', u'race', u'meet'] [u'voter', u'prepar', u'poll'] [u'fuel', u'terror', u'say', u'crean'] [u'footag', u'give', u'mean', u'realiti'] [u'popular', u'sexfor', u'search'] [u'warn', u'cancel', u'world', u'trip'] [u'warrior', u'dump', u'veletta'] [u'webb', u'second', u'phoenix'] [u'wildcat', u'crush', u'hawk'] [u'wildcat', u'upper', u'hand', u'hawk'] [u'saddam', u'resort', u'downer'] [u'workcov', u'premium', u'rise'] [u'didnt', u'saddam', u'iraq', u'tell'] [u'kill', u'chines', u'trawler', u'sink', u'lanka'] [u'walk', u'life', u'follow', u'protest', u'path'] [u'member', u'die', u'ahead', u'elect'] [u'track'] [u'anti', u'furi', u'sweep', u'indonesia'] [u'anti', u'protest', u'block', u'brisban', u'street'] [u'anti', u'protest', u'ralli', u'world'] [u'anti', u'protest', u'continu', u'australia'] [u'asio', u'brief', u'crean', u'terrorist', u'risk'] [u'australian', u'forc', u'hold', u'iraqi', u'pow'] [u'australian', u'navi', u'discov', u'mine'] [u'australian', u'destroy', u'iraqi', u'command', u'centr'] [u'australian', u'kill', u'iraqi', u'forc'] [u'baghdad', u'burn', u'intens', u'bomb', u'campaign'] [u'baghdad', u'civilian', u'tell', u'despair'] [u'blue', u'blow', u'red', u'away'] [u'bore', u'water', u'contamin', u'bayswat'] [u'british', u'bomber', u'pilot', u'awe', u'baghdad', u'ablaz'] [u'british', u'helicopt', u'collid', u'gulf', u'dead'] [u'brogden', u'carr', u'target', u'margin', u'seat'] [u'brogden', u'confid', u'elect', u'hop'] [u'brogden', u'vow', u'fight'] [u'brumbi', u'annihil', u'bull'] [u'burn', u'well', u'push', u'price'] [u'bush', u'send', u'wish', u'crash', u'victim', u'famili'] [u'bush', u'thank', u'howard', u'support'] [u'carr', u'brogden', u'warn', u'protest', u'vote'] [u'carr', u'claim', u'histor', u'victori'] [u'carr', u'claim', u'victori', u'elect'] [u'carr', u'pay', u'tribut', u'anderson'] [u'chirac', u'damn', u'illeg', u'stamp'] [u'chopper', u'collis', u'tragic', u'accid', u'ship', u'captain'] [u'church', u'want', u'conscienc', u'vote', u'adopt'] [u'rule', u'saddam', u'broadcast', u'probabl', u'genuin'] [u'citi', u'bomb', u'northern', u'iraq'] [u'citi', u'defend', u'tell', u'club'] [u'civilian', u'injuri', u'report', u'baghdad'] [u'coalit', u'tri', u'negoti', u'iraqi', u'surrend'] [u'come', u'festiv', u'wind', u'adelaid'] [u'confus', u'surround', u'mass', u'surrend', u'claim'] [u'coulthard', u'quick', u'mark', u'malaysian'] [u'arriv', u'injur', u'martyn'] [u'demonstr', u'policeman', u'yemen', u'protest'] [u'denmark', u'isol', u'plane', u'pneumonia', u'scare'] [u'doubt', u'rais', u'divis', u'surrend', u'claim'] [u'dravid', u'glove', u'despit', u'injuri'] [u'earli', u'figur', u'good', u'green'] [u'earli', u'figur', u'labor', u'cours', u'poll'] [u'earli', u'swing', u'lib', u'predict'] [u'confirm', u'south', u'africa', u'tour', u'england'] [u'entir', u'iraqi', u'divis', u'surrend', u'alli', u'forc'] [u'europ', u'oppon', u'merg', u'arm', u'forc'] [u'farmer', u'consid', u'sue', u'lose', u'iraq', u'wheat', u'sale'] [u'fear', u'chemic', u'attack', u'discoveri'] [u'kill', u'east', u'anti', u'protest'] [u'fresh', u'explos', u'rock', u'baghdad'] [u'germani', u'quit', u'nato', u'forc', u'shield', u'turkey'] [u'superstit', u'glori', u'chappel', u'tell'] [u'govt', u'build', u'daub', u'anti', u'graffiti'] [u'graham', u'hold', u'metr', u'titl'] [u'green', u'doubl', u'vote', u'poll'] [u'grind', u'forc', u'close', u'baghdad'] [u'gunfir', u'blast', u'baghdad', u'go', u'raid', u'alert'] [u'hackett', u'pleas', u'perform'] [u'hackett', u'qualifi', u'fastest', u'freestyl', u'final'] [u'hawk', u'honour', u'matthew', u'kennedi'] [u'health', u'group', u'concern', u'petrol', u'sniff'] [u'henman', u'crash', u'escud'] [u'hewitt', u'crash', u'florida'] [u'hewitt', u'suffer', u'shock', u'defeat'] [u'incat', u'claw', u'debt'] [u'indian', u'pacemen', u'concern', u'pont'] [u'indonesian', u'minist', u'cancel', u'trip'] [u'internet', u'hacker', u'wreak', u'havoc', u'protest', u'iraq'] [u'invas', u'forc', u'loom', u'basra', u'fring'] [u'iraq', u'divis', u'head', u'surrend', u'forc'] [u'iraqi', u'opposit', u'meet', u'north'] [u'iraqi', u'disput', u'british', u'victori', u'claim'] [u'iraqi', u'halt', u'advanc', u'nasiriya', u'river', u'cross'] [u'iraqi', u'ambassador', u'blast', u'chief'] [u'iraq', u'say', u'civilian', u'wound', u'bomb'] [u'iraq', u'say', u'coalit', u'forc', u'meet', u'resist'] [u'iraq', u'throw', u'world', u'rule', u'pow'] [u'iraq', u'increas', u'terror', u'threat'] [u'judg', u'consid', u'death', u'penalti', u'fiji', u'treason', u'trial'] [u'kanimbla', u'work', u'clear', u'strateg', u'waterway'] [u'kenya', u'wont', u'expel', u'iraqi', u'diplomat'] [u'labor'] [u'labor', u'blame', u'iraq', u'indon', u'terror', u'threat'] [u'labor', u'return'] [u'leader', u'cast', u'vote', u'elect'] [u'leed', u'sack', u'venabl', u'hand', u'reid', u'caretak', u'role'] [u'lib', u'hop', u'pick', u'seat'] [u'lib', u'vote', u'preselect', u'reform'] [u'loss', u'pittman', u'wake', u'freeman'] [u'lie', u'crew', u'tell', u'leav', u'iraq'] [u'major', u'parti', u'leader', u'final', u'stop'] [u'question', u'fatal', u'stab'] [u'rake', u'record', u'poki', u'payout'] [u'face', u'real', u'test'] [u'wound', u'baghdad', u'cross'] [u'mclaren', u'pace', u'free', u'practic'] [u'mental', u'health', u'group', u'govt', u'fund'] [u'molik', u'move', u'miami'] [u'missil', u'strike', u'baghdad'] [u'mortlock', u'miss', u'world'] [u'motorcyclist', u'die', u'brisban', u'crash'] [u'sensibl', u'predict', u'britain'] [u'leader', u'wrap', u'elect', u'campaign'] [u'leader', u'wrap', u'elect', u'campaign'] [u'homeless', u'youth', u'situat', u'urgent', u'report'] [u'depot', u'rocket', u'south', u'west', u'iran'] [u'orford', u'slater', u'lead', u'storm', u'crush'] [u'paton', u'take', u'aust', u'champ', u'titl'] [u'pentagon', u'list', u'goal'] [u'petria', u'break', u'minut', u'barrier', u'qualifi'] [u'philip', u'morri', u'lose', u'billion', u'verdict', u'light', u'case'] [u'pittman', u'end', u'freeman', u'reign'] [u'polic', u'search', u'river', u'murder', u'weapon'] [u'poll', u'underway', u'elect'] [u'pope', u'lament', u'didnt', u'expect'] [u'powel', u'turkey', u'fli', u'right'] [u'protest', u'ralli', u'condemn'] [u'armi', u'command', u'urg', u'support', u'troop'] [u'raider', u'tiger', u'tough', u'battl'] [u'rain', u'stop', u'baddeley', u'charg'] [u'renault', u'claim', u'surpris', u'pole'] [u'renault', u'sensat', u'pole'] [u'rocket', u'south', u'west', u'iran', u'report'] [u'rumsfeld', u'confirm', u'start', u'main', u'iraq', u'bomb'] [u'rumsfeld', u'say', u'clear', u'saddam', u'control'] [u'russia', u'boost', u'secur', u'chechnya', u'poll'] [u'russia', u'block', u'approv'] [u'saddam'] [u'strike', u'weapon', u'mass', u'destruct', u'forc'] [u'scot', u'champion', u'leagu', u'boost'] [u'second', u'marin', u'fall', u'iraqi'] [u'secur', u'crackdown', u'parliament'] [u'sele', u'withdraw', u'biscayn'] [u'serbian', u'polic', u'hold', u'assassin'] [u'shock', u'open', u'boom', u'iraq'] [u'shock', u'pound', u'baghdad', u'citi'] [u'sick', u'hewitt', u'crash', u'florida'] [u'softbal', u'qualifi', u'olymp'] [u'softbal', u'unbeaten', u'elimin', u'round'] [u'iraqi', u'forc', u'pull', u'basra'] [u'song', u'honour', u'world', u'champion', u'axeman'] [u'spanish', u'author', u'releas', u'qaeda', u'suspect'] [u'star', u'shun', u'oscar'] [u'stormer', u'stun', u'waratah'] [u'stormer', u'stun', u'waratah', u'red', u'remain', u'winless'] [u'stormer', u'stun', u'waratah', u'red', u'winless'] [u'storm', u'raider', u'unbeaten', u'cowboy'] [u'super', u'mario', u'shrug', u'stomach', u'upset', u'defend'] [u'support', u'record', u'high'] [u'tendulkar', u'australia', u'obstacl', u'warn'] [u'tendulkar', u'australia', u'world', u'obstacl'] [u'thorp', u'beat', u'hackett', u'metr', u'titl'] [u'thorp', u'power', u'metr', u'titl'] [u'thousand', u'iraqi', u'surrend'] [u'clubhous', u'madeira'] [u'tight', u'contest', u'tamworth'] [u'turkey', u'deni', u'send', u'troop'] [u'turkey', u'open', u'space'] [u'turkey', u'agre', u'overflight', u'wrangl', u'troop'] [u'turkish', u'ambassador', u'defend', u'push', u'iraq'] [u'turkish', u'troop', u'northern', u'iraq', u'paper'] [u'turkish', u'troop', u'north', u'iraq'] [u'turkish', u'troop', u'enter', u'iraq'] [u'twelfth', u'iraqi', u'missil', u'fire', u'kuwait', u'cross'] [u'tanevula', u'lift', u'highland'] [u'unifi', u'facad', u'mask', u'split'] [u'refuge', u'bodi', u'see', u'iraq', u'exodus'] [u'upgrad', u'travel', u'warn', u'need', u'govt'] [u'assault', u'divis', u'cross', u'iraq'] [u'strike', u'target', u'hardlin', u'islamist', u'group'] [u'captur', u'iraqi', u'offshor', u'termin'] [u'desper', u'turkey', u'deal'] [u'fire', u'missil', u'baghdad'] [u'airfield', u'west', u'baghdad', u'offici'] [u'icon', u'small', u'flutter', u'vital', u'iraq', u'port'] [u'iraq', u'surrend', u'talk', u'pentagon', u'claim'] [u'marin', u'iraqi', u'major', u'battl', u'basra'] [u'marin', u'captur', u'iraqi', u'offic'] [u'marin', u'secur', u'western', u'iraqi', u'flank'] [u'militari', u'truck', u'build', u'camp'] [u'special', u'forc', u'control', u'airfield', u'western', u'iraq'] [u'hope', u'earli', u'iraq', u'surrend'] [u'strike', u'milit', u'stronghold', u'iraq', u'kurd'] [u'wheat', u'farmer', u'wont', u'commonwealth'] [u'water', u'main', u'burst', u'home', u'damag'] [u'webb', u'phoenix', u'lead'] [u'welsh', u'pip', u'huegil', u'surpris', u'butterfli', u'semi'] [u'wenger', u'warn', u'everton', u'arsenal', u'backlash'] [u'team', u'investig', u'mysteri', u'ill'] [u'wildcat', u'crush', u'hawk'] [u'cameraman', u'australia', u'casualti', u'iraq'] [u'cameraman', u'kill', u'iraq', u'bomb', u'attack'] [u'agassi', u'advanc', u'miami'] [u'agenc', u'report', u'iraqi', u'displac'] [u'agenc', u'report', u'mass', u'exodus'] [u'raid', u'crank', u'baghdad'] [u'qaeda', u'hand', u'philippin', u'bomb', u'offici'] [u'anti', u'protest', u'march', u'adelaid'] [u'anti', u'protest', u'continu', u'fourth'] [u'anti', u'ralli', u'ricochet', u'world'] [u'arab', u'seeth', u'show', u'iraq', u'destruct'] [u'arm', u'bomber', u'leav', u'airbas'] [u'australia', u'celebr', u'world', u'victori'] [u'australia', u'blaze', u'start'] [u'australia', u'sweat', u'martyn', u'bichel'] [u'aust', u'troop', u'iraq', u'admir', u'alli', u'howard'] [u'backbench', u'blast', u'crean', u'backflip'] [u'baghdad', u'bomb', u'continu'] [u'baghdad', u'civilian', u'fight', u'invad'] [u'baghdad', u'river', u'search', u'amid', u'report', u'pilot'] [u'baghdad', u'militari', u'facil', u'target', u'latest'] [u'barrichello', u'start', u'head', u'safeti'] [u'barr', u'reclaim', u'hot', u'contest', u'man'] [u'bayern', u'seal', u'titl'] [u'bettini', u'win', u'milan', u'sanremo'] [u'bomb', u'thunder', u'roll', u'baghdad'] [u'jellyfish', u'blame', u'stinger', u'death'] [u'die', u'marin', u'sting', u'north'] [u'british', u'fighter', u'down', u'anti', u'missil', u'rocket'] [u'british', u'plane', u'down', u'patriot', u'missil', u'militari'] [u'british', u'plane', u'miss', u'explos', u'rock', u'baghdad'] [u'british', u'plane', u'miss', u'explos', u'rock', u'baghdad'] [u'british', u'public', u'opinion', u'fall', u'blair'] [u'brogden', u'like', u'stay', u'despit', u'elect', u'loss'] [u'brumbi', u'hammer', u'bull'] [u'capriati', u'down', u'qualifi', u'miami'] [u'carnag', u'confus', u'hit', u'kurd', u'base'] [u'cat', u'hooker', u'send', u'hurrican', u'triumph'] [u'census', u'show', u'australian', u'migrat'] [u'chechnya', u'vote', u'controversi', u'referendum'] [u'china', u'blast', u'leav', u'dead', u'trap'] [u'claim', u'crew', u'miss', u'iraq', u'come'] [u'clash', u'najaf', u'south', u'baghdad', u'iraq'] [u'coalit', u'command', u'frank', u'address', u'media'] [u'coalit', u'unwil', u'march', u'sydney'] [u'coalit', u'tri', u'negoti', u'iraqi', u'surrend'] [u'commonwealth', u'seiz', u'iraqi', u'asset', u'aust'] [u'concern', u'grow', u'turkish', u'troop', u'iraq'] [u'corinthian', u'chaotic', u'paulista', u'championship'] [u'crean', u'prais', u'carr', u'elect', u'victori'] [u'deadlin', u'loom', u'iraqi', u'diplomat', u'leav'] [u'democrat', u'talk', u'elect', u'result'] [u'despotovski', u'guid', u'glori'] [u'dozen', u'blast', u'shake', u'baghdad'] [u'dragon', u'warrior', u'bronco', u'thriller'] [u'dredg', u'storm', u'madeira', u'lead'] [u'iraqi', u'battl', u'coalit', u'qasr'] [u'eighth', u'death', u'mysteri', u'pneumonia', u'virus'] [u'england', u'ireland', u'nation', u'showdown'] [u'famili', u'unit', u'iraqi', u'civilian'] [u'fate', u'saddam', u'unknown'] [u'feyenoord', u'breath', u'ajax', u'neck', u'champion'] [u'fourteen', u'kill', u'china', u'accid'] [u'soldier', u'report', u'wound', u'central', u'iraq'] [u'french', u'leagu', u'match', u'report'] [u'govern', u'lure', u'doctor', u'suburbia'] [u'govt', u'announc', u'region', u'extens', u'program'] [u'govt', u'consid', u'freez', u'iraqi', u'asset'] [u'govt', u'deni', u'children', u'wait', u'hospit'] [u'green', u'expect', u'claim', u'upper', u'hous', u'seat'] [u'hancock', u'cautious', u'claim', u'south', u'coast'] [u'harmoni', u'grant', u'good', u'democrat'] [u'harrison', u'snatch', u'piper', u'breaststrok', u'titl'] [u'hid', u'push', u'reform', u'despit', u'setback'] [u'hill', u'deni', u'iraq', u'link', u'indonesian', u'terror'] [u'hill', u'expect', u'short', u'iraq', u'conflict'] [u'hindu', u'leader', u'satisfi', u'dig', u'babri', u'mosqu'] [u'hollywood', u'launch', u'strike'] [u'hong', u'kong', u'devis', u'test', u'pneumonia'] [u'huegil', u'shrug', u'welsh', u'challeng'] [u'freez', u'england', u'earn'] [u'india', u'threaten', u'suspens'] [u'injuri', u'report', u'strike', u'residenti', u'baghdad'] [u'iraq', u'call', u'stop', u'coalit', u'attack'] [u'iraqi', u'baath', u'parti', u'offici', u'kill', u'najaf', u'desert'] [u'iraqi', u'coalit', u'convoy', u'capit'] [u'iraqi', u'resist', u'advanc', u'basra'] [u'iraq', u'light', u'trench', u'baghdad'] [u'iraq', u'militari', u'say', u'shoot', u'cruis', u'missil'] [u'iraq', u'sabri', u'warn', u'turkey', u'move'] [u'iraq', u'suicid', u'bomb', u'kill', u'australian', u'newsman', u'report'] [u'iraq', u'report', u'saddam', u'council'] [u'iraq', u'drag', u'bush', u'tell', u'nation'] [u'iraq', u'push', u'petrol', u'price'] [u'iraq', u'delay', u'korea', u'talk'] [u'jazeera', u'say', u'dead', u'basra', u'show', u'casualti'] [u'journo', u'say', u'soldier', u'kill', u'rocket'] [u'kanimbla', u'work', u'clear', u'strateg', u'waterway'] [u'kurd', u'blame', u'qaeda', u'affili', u'journo', u'death'] [u'kurd', u'hop', u'greater', u'freedom'] [u'labor', u'blame', u'iraq', u'indon', u'terror', u'threat'] [u'labor', u'close', u'upper', u'hous', u'seat'] [u'labor', u'confid', u'claim', u'monaro'] [u'labor', u'hang', u'hope', u'win', u'south', u'coast', u'seat'] [u'labor', u'split', u'crean', u'drop', u'bring', u'troop', u'home'] [u'leader', u'offer', u'condol', u'cameraman', u'death'] [u'leisel', u'lead', u'breast', u'stroke', u'field'] [u'leisel', u'lead', u'breaststrok', u'field'] [u'lethal', u'leisel', u'set', u'record'] [u'madonna', u'sweep', u'worst', u'film', u'award'] [u'marin', u'strike', u'qasr', u'nasiriya'] [u'market', u'guru', u'front', u'workshop'] [u'martyn', u'world', u'final'] [u'martyn', u'pontin', u'capitalis', u'good', u'start'] [u'melb', u'cyclist', u'break', u'aust', u'bike', u'ride'] [u'milan', u'open', u'titl', u'race', u'defeat', u'juve'] [u'minardi', u'carri', u'messag', u'peac'] [u'raid', u'rock', u'baghdad', u'trench', u'ablaz'] [u'mysteri', u'pneumonia', u'claim', u'victim', u'canada'] [u'nation', u'ralli'] [u'nattrass', u'confid', u'maller', u'affair', u'find'] [u'battl', u'break', u'iraqi', u'port', u'town'] [u'ferri', u'credit', u'tourism', u'boost'] [u'plan', u'aim', u'conserv', u'marin', u'reserv'] [u'offici', u'warn', u'fraser', u'dingo', u'threat'] [u'shoot', u'dead', u'sudanes', u'anti', u'protest'] [u'call', u'govt', u'come', u'clean', u'terror'] [u'patriot', u'missil', u'near', u'camp', u'kuwait'] [u'menu', u'come', u'final'] [u'pilot', u'princ', u'mourn', u'helicopt', u'dead'] [u'congratul', u'carr', u'elect', u'victori'] [u'say', u'increas', u'terror', u'alert', u'unwarr'] [u'urg', u'lib', u'brogden', u'leader'] [u'politician', u'join', u'condemn'] [u'politician', u'debat', u'timor', u'asylum', u'seeker', u'issu'] [u'pont', u'martyn', u'lead', u'australia', u'massiv', u'total'] [u'power', u'begin', u'final', u'campaign', u'style'] [u'protest', u'brave', u'cool', u'weather', u'voic', u'anti'] [u'protest', u'street'] [u'qlds', u'popul', u'growth'] [u'raikkonen', u'grab', u'maiden', u'malaysia'] [u'raikkonen', u'lead', u'stand', u'maiden'] [u'raikkonen', u'win', u'malaysian', u'grand', u'prix'] [u'record', u'break', u'night', u'jone'] [u'cross', u'monitor', u'grow', u'casualti', u'list'] [u'religion', u'confer', u'aim', u'unit', u'faith'] [u'repeat', u'suicid', u'attack', u'unlik', u'expert'] [u'river', u'derwent', u'clear', u'sewag', u'problem'] [u'ruud', u'awaken', u'arsenal'] [u'saddam', u'deputi', u'promis', u'urban', u'warfar'] [u'saddam', u'hometown', u'lose', u'bomb'] [u'africa', u'white', u'presid', u'reject', u'truth', u'report'] [u'senior', u'rebel', u'leader', u'shoot', u'dead', u'indian', u'kashmir'] [u'sewag', u'spill', u'leak', u'lake', u'burley', u'griffin'] [u'shock', u'china', u'polic', u'babi', u'suitcas'] [u'sieg', u'follow', u'doubl', u'stab'] [u'soldier', u'injur', u'kuwait', u'grenad', u'attack'] [u'skaif', u'take', u'open', u'round'] [u'softbal', u'qualifi', u'olymp'] [u'sorenstam', u'claim', u'shoot', u'lead', u'phoenix'] [u'sport', u'minist', u'reject', u'jayasuriya', u'resign'] [u'storm', u'ravag', u'south', u'east'] [u'student', u'kill', u'coalit', u'attack', u'iraqi', u'offici'] [u'talk', u'continu', u'iraqi', u'leader', u'say', u'pentagon'] [u'lib', u'reject', u'parti', u'reform'] [u'tendulkar', u'vote', u'player', u'world'] [u'ten', u'thousand', u'anti', u'demonstr'] [u'texa', u'team', u'smother', u'iraq', u'fire'] [u'thoma', u'surg', u'butterfli'] [u'thoma', u'surg'] [u'thorp', u'hackett', u'claim', u'semi'] [u'thorp', u'hackett', u'cruis', u'qualifi'] [u'british', u'crew', u'miss', u'iraq'] [u'tribut', u'flow', u'australian', u'cameraman'] [u'troop', u'perform', u'say', u'howard'] [u'troop', u'prepar', u'snuff', u'iraq', u'fire'] [u'turkey', u'deni', u'iraq', u'kurd', u'agre'] [u'confirm', u'entir', u'iraqi', u'divis', u'surrend'] [u'brace', u'iraqi', u'refuge', u'exodus'] [u'strike', u'basra', u'kill', u'civilian', u'wind'] [u'assur', u'iran', u'tomahawk', u'investig'] [u'claim', u'captur', u'nasiriya', u'river', u'cross'] [u'bomb', u'qasr', u'build'] [u'marin', u'claim', u'victori', u'west', u'basra'] [u'marin', u'push', u'basra', u'baghdad'] [u'marin', u'secur', u'bridg', u'nasiriya'] [u'order', u'infantri', u'divis', u'gulf'] [u'plane', u'shoot', u'baghdad', u'sabri'] [u'presid', u'warn', u'overconfid'] [u'say', u'down', u'apach', u'crew', u'miss'] [u'scrap', u'turkey', u'deploy', u'bolster', u'southern'] [u'soldier', u'die', u'grenad', u'attack'] [u'soldier', u'die', u'grenad', u'attack'] [u'soldier', u'suspect', u'grenad', u'attack', u'comrad'] [u'open', u'northern', u'soon', u'kurdish', u'leader'] [u'venabl', u'tell', u'fear', u'leed', u'unit', u'futur'] [u'victorian', u'famili', u'protest', u'peac'] [u'memori', u'consid', u'hire', u'artist', u'iraq'] [u'know', u'turkey', u'iraq', u'coalit'] [u'wood', u'line', u'victori'] [u'wood', u'storm', u'hill', u'lead'] [u'worldwid', u'protest', u'demand', u'peac'] [u'arrest', u'jakarta', u'threaten', u'western'] [u'nomin', u'citizen', u'year', u'award'] [u'guantanamo', u'prison', u'return', u'afghanistan'] [u'hindus', u'kill', u'kashmir'] [u'abattoir', u'defend', u'pollut', u'charg'] [u'accent', u'shouldnt', u'issu', u'nat', u'candid'] [u'protect', u'diplomat', u'doubl'] [u'agforc', u'concern', u'rail', u'job'] [u'alli', u'forc', u'trap', u'saddam'] [u'perform', u'hunter'] [u'retain', u'illawarra', u'wollongong', u'keira'] [u'amphetamin', u'suppli', u'increas', u'crime', u'report'] [u'anti', u'protest', u'clamber', u'parliament', u'hous'] [u'drown', u'east', u'congo', u'boat', u'capsiz'] [u'australia', u'celebr', u'world', u'victori'] [u'australian', u'soldier', u'disabl', u'iraqi', u'missil'] [u'australia', u'best', u'come', u'buchanan'] [u'aust', u'singapor', u'model', u'futur', u'bilater'] [u'aust', u'stock', u'head', u'downward', u'wake', u'longer'] [u'baghdad', u'rock', u'huge', u'explos'] [u'basra', u'come', u'bombard'] [u'pass', u'radioact', u'dump', u'south'] [u'biospher', u'project', u'feder', u'fund'] [u'black', u'urg', u'nat', u'countri', u'labor', u'merger'] [u'bloodi', u'battl', u'rage', u'nasiriyah'] [u'bourk', u'irrig', u'small', u'alloc'] [u'brain', u'tumour', u'research', u'give', u'hope', u'patient'] [u'bridgehead', u'battl', u'kill', u'soldier'] [u'british', u'journalist', u'believ', u'kill', u'friend'] [u'british', u'report', u'believ', u'dead'] [u'bullet', u'rain', u'slum', u'navi', u'explos'] [u'busch', u'repeat', u'bristol', u'nascar', u'victori'] [u'fare', u'freez', u'recommend'] [u'bush', u'say', u'iraq', u'cours', u'warn'] [u'caley', u'upset', u'celtic', u'ranger', u'hold', u'dunfermlin'] [u'australian', u'boycott', u'oscar', u'telecast'] [u'cwealth', u'coordin', u'energi', u'resourc'] [u'action', u'ambul', u'surcharg'] [u'safe', u'harbour', u'studi'] [u'warn', u'sign', u'beach'] [u'call', u'releas', u'health', u'studi', u'gulf'] [u'review', u'region', u'airport', u'secur', u'amid'] [u'canegrow', u'harvest', u'financi', u'support'] [u'canyon', u'aliv', u'blue', u'mountain'] [u'carpentaria', u'gold', u'complet', u'purchas'] [u'carr', u'plan', u'ministeri', u'shake'] [u'casualti', u'troop', u'famili', u'edg'] [u'central', u'west', u'western', u'plain', u'candid', u'retain', u'seat'] [u'lift', u'danger', u'restrict'] [u'civic', u'recept', u'honour', u'world', u'champion'] [u'claim', u'fraser', u'dingo', u'attack', u'rise', u'dog'] [u'concern', u'air', u'water', u'plan'] [u'confer', u'consid', u'age', u'care', u'issu'] [u'council', u'consid', u'fast', u'food', u'centr'] [u'council', u'vote', u'corpor'] [u'cowboy', u'urg', u'boost', u'consist'] [u'dairi', u'merger', u'plan'] [u'dengu', u'outbreak', u'rise', u'north'] [u'dont', u'send', u'negat', u'email', u'aust', u'troop', u'govt'] [u'draper', u'ahead', u'cull', u'torbay', u'slack', u'smith', u'return'] [u'dredg', u'break', u'euro', u'tour', u'duck'] [u'elect', u'bring', u'littl', u'chang', u'local'] [u'english', u'premier', u'leagu', u'match', u'report'] [u'food', u'poison', u'stop', u'histori', u'make'] [u'explos', u'rock', u'baghdad', u'report'] [u'famili', u'pay', u'tribut', u'aust', u'cameraman'] [u'farmer', u'get', u'award', u'braveri'] [u'ferrari', u'stay', u'pressur', u'mount'] [u'festiv', u'boost', u'wine', u'region'] [u'fight', u'continu', u'nasiriyah'] [u'figur', u'highlight', u'indigen', u'dialysi', u'patient'] [u'fiji', u'hop', u'iraq', u'swift', u'foreign', u'minist'] [u'formal', u'elect', u'result', u'day', u'away'] [u'secretari', u'face', u'court'] [u'french', u'blitz', u'doom', u'brave', u'italian'] [u'fresh', u'raid', u'launch', u'baghdad'] [u'fund', u'seek', u'escap', u'exhibit'] [u'ganguli', u'blame', u'bowler'] [u'gilbert', u'end', u'career', u'win', u'note'] [u'gilbert', u'exit', u'high', u'gold', u'coast', u'championship'] [u'girl', u'die', u'motorcycl', u'accid'] [u'good', u'behaviour', u'bond', u'woman', u'facto', u'death'] [u'govt', u'ask', u'network', u'restraint'] [u'govt', u'assist', u'cameraman', u'famili', u'downer'] [u'govt', u'open', u'area', u'explor'] [u'govt', u'secur', u'poll', u'trigger'] [u'govt', u'consid', u'wast', u'site', u'option'] [u'govt', u'travel', u'advic', u'adequ', u'downer'] [u'guilti', u'plea', u'child', u'kidnap', u'melbourn'] [u'gusmao', u'visit', u'bendigo'] [u'helicopt', u'tight', u'secur', u'glamour'] [u'hid', u'senat', u'preselect', u'model', u'vote'] [u'highway', u'section', u'reopen', u'blaze'] [u'hohn', u'pay', u'tribut', u'australia', u'world', u'win'] [u'hong', u'kong', u'pneumonia', u'outbreak', u'claim', u'life'] [u'howe', u'clear', u'knee', u'injuri'] [u'human', u'remain', u'macquari', u'island'] [u'india', u'mourn', u'defeat'] [u'indian', u'mire', u'gloom', u'world', u'loss'] [u'indigen', u'peopl', u'urg', u'join', u'local', u'govt'] [u'indonesian', u'charg', u'illeg', u'fish'] [u'injur', u'thoma', u'action', u'thorp', u'hackett', u'clash'] [u'inspector', u'testifi', u'polic', u'corrupt'] [u'iraq', u'drop', u'claim', u'coalit', u'pilot', u'captur'] [u'iraq', u'fear', u'drag'] [u'iraqi', u'resist', u'baghdad', u'coalit', u'sight'] [u'iraqi', u'show', u'say', u'down', u'helicopt'] [u'iraq', u'say', u'kill', u'wound', u'past'] [u'iraq', u'show', u'footag', u'troop', u'hold', u'prison'] [u'better', u'thorp'] [u'israel', u'missil', u'mysteri', u'solv'] [u'israel', u'demolish', u'illeg', u'settlement'] [u'israel', u'tri', u'destroy', u'roadmap', u'peac'] [u'jordan', u'call', u'iraq'] [u'jordan', u'give', u'inspir', u'wizard'] [u'journalist', u'evacu', u'iraqi', u'town'] [u'june', u'start', u'date', u'tasmania', u'mainland', u'power', u'link'] [u'kidman', u'nab', u'best', u'actress', u'gong'] [u'kuwait', u'grenad', u'attack', u'suspect', u'attitud', u'problem'] [u'labor', u'newel', u'lead', u'tweed', u'poll'] [u'lester', u'concern', u'keppel', u'park', u'race', u'meet'] [u'lion', u'think', u'premiership', u'trick'] [u'liverpool', u'step', u'chase', u'champion', u'leagu', u'place'] [u'arrest', u'throw', u'paint', u'bomb'] [u'arrest', u'woman', u'alleg', u'alight'] [u'attack', u'home', u'invas'] [u'die', u'hors', u'buggi', u'mishap'] [u'tournament', u'titl', u'turn', u'sour'] [u'alight', u'visa', u'reject', u'fear'] [u'face', u'court', u'jack'] [u'gunshot', u'wind', u'polic', u'guard'] [u'matern', u'leav', u'middl', u'class', u'welfar', u'studi'] [u'mayor', u'upbeat', u'forsayth', u'busi'] [u'meet', u'hold', u'tuna', u'farm', u'plan'] [u'mine', u'giant', u'threaten', u'evict', u'famili'] [u'miss', u'woman'] [u'molik', u'set', u'clash', u'dokic'] [u'abattoir', u'hop', u'start', u'week'] [u'area', u'releas', u'explor'] [u'communiti', u'help', u'age', u'disabl'] [u'caus', u'train', u'derail'] [u'deadlin', u'medic', u'talk'] [u'rift', u'raaf', u'pilot', u'abort', u'raid'] [u'lib', u'hope', u'seat'] [u'nude', u'protest', u'hobart', u'iraq'] [u'giant', u'shut', u'main', u'nigerian', u'termin'] [u'jump', u'confid', u'slide'] [u'dead', u'injur', u'victorian', u'abattoir'] [u'say', u'govt', u'sell', u'state', u'asset'] [u'parliament', u'interrupt', u'anti', u'protest'] [u'plan', u'expand', u'hospit', u'renal', u'servic'] [u'polic', u'crack', u'drive', u'offenc'] [u'polic', u'detain', u'link', u'fatal', u'stab'] [u'polic', u'hotel', u'decis', u'question'] [u'polic', u'inspector', u'admit', u'year', u'corrupt', u'deed'] [u'polic', u'probe', u'road', u'tragedi'] [u'polic', u'question', u'suspect', u'abattoir', u'kill'] [u'polic', u'swarm', u'hous', u'stab'] [u'politician', u'spat', u'support'] [u'pont', u'hail', u'best', u'moment', u'cricket', u'life'] [u'pont', u'inspir', u'australia', u'world', u'triumph'] [u'pont', u'famili', u'thrill', u'world'] [u'postal', u'vote', u'form', u'arriv', u'late'] [u'film', u'break', u'geneva', u'convent', u'cross'] [u'present', u'consid', u'local', u'govt', u'issu'] [u'pressur', u'arsenal', u'beat', u'everton'] [u'pressur', u'arsenal', u'edg', u'everton'] [u'public', u'deni', u'access', u'parliament'] [u'public', u'transport', u'spotlight'] [u'radioact', u'wast', u'dump', u'decis', u'week', u'away'] [u'rail', u'disrupt', u'servic'] [u'requir', u'relax', u'plan'] [u'resid', u'urg', u'highlight', u'power', u'woe'] [u'revenu', u'loss', u'spark', u'smoke', u'polici', u'chang'] [u'rio', u'shock', u'ferrero'] [u'rivkin', u'face', u'court', u'insid', u'trade', u'charg'] [u'rivkin', u'plead', u'guilti', u'insid', u'trade'] [u'roma', u'homemad', u'bomb', u'explos'] [u'rooney', u'win', u'england', u'solo', u'goal'] [u'roo', u'star', u'battl', u'season', u'open'] [u'develop', u'wheat', u'suppli', u'iraq'] [u'rumsfeld', u'say', u'iraq', u'readi', u'ban', u'weapon'] [u'saddam', u'aliv', u'iraqi', u'foreign', u'minist'] [u'saddam', u'use', u'speech', u'promis', u'quick', u'victori'] [u'troop', u'safe', u'fresh', u'engag'] [u'seat', u'clarenc', u'chang', u'hand'] [u'secur', u'improv', u'need', u'terror', u'expert'] [u'seven', u'year', u'jail', u'unlicenc', u'drive', u'caus'] [u'shire', u'hold', u'water', u'concern'] [u'silicon', u'smelter', u'plan', u'drop'] [u'simpson', u'address', u'women', u'gather'] [u'slack', u'think', u'get', u'red', u'track'] [u'sombr', u'mood', u'iraq', u'cameraman'] [u'steal', u'passeng', u'sentenc'] [u'strike', u'worker', u'face', u'lockout'] [u'sugar', u'plan', u'chemic', u'plant'] [u'surf', u'lifesav', u'rais', u'hand', u'lifelin'] [u'survey', u'highlight', u'mozzi', u'breed', u'sit'] [u'suspect', u'missil', u'fall', u'eastern', u'turkey'] [u'teen', u'surgeri', u'wait', u'list'] [u'thorp', u'hackett', u'clash', u'loom'] [u'think', u'need', u'send', u'care', u'packag'] [u'thousand', u'join', u'anti', u'protest', u'asia'] [u'thwait', u'commiss', u'sewerag'] [u'ticket', u'adelaid', u'darwin', u'railway', u'journey'] [u'tiger', u'maul', u'field', u'hill', u'invit'] [u'tiger', u'face', u'judiciari'] [u'ullrich', u'itch', u'comeback'] [u'accus', u'hypocrisi', u'treatment', u'pow'] [u'accus', u'russian', u'aid', u'iraqi', u'defenc'] [u'acknowledg', u'tough', u'remain', u'confid'] [u'aim', u'figur', u'skate', u'clean', u'sweep'] [u'confirm', u'apach', u'helicopt', u'go', u'iraq'] [u'examin', u'possibl', u'iraqi', u'chemic', u'weapon', u'factori'] [u'helicopt', u'crash', u'afghanistan', u'dead'] [u'attack', u'iraq', u'make', u'dent'] [u'missil', u'kill', u'syrian', u'iraq', u'report'] [u'missil', u'misfir', u'land', u'turkey'] [u'turkey', u'discuss', u'iraqi', u'incurs'] [u'welcom', u'neighbour', u'rule'] [u'volunt', u'firefight', u'face', u'court', u'light'] [u'lib', u'spark', u'earli', u'feder', u'elect', u'specul'] [u'polic', u'charg', u'volunt', u'firefight'] [u'mute', u'oscar', u'begin', u'hollywood'] [u'warn', u'import', u'tortois', u'pose', u'threat'] [u'warn', u'outlaw', u'petrol', u'sniff', u'worsen'] [u'water', u'suppli', u'iraqi', u'sieg', u'town', u'cross'] [u'wild', u'weather', u'bring', u'stock', u'loss'] [u'woman', u'die', u'road', u'crash'] [u'worker', u'entitl', u'safe', u'pasminco'] [u'work', u'begin', u'soon', u'council'] [u'world', u'bomb', u'discov', u'german', u'town'] [u'youth', u'converg', u'quilpi'] [u'quarantin', u'singapor', u'control', u'killer'] [u'action', u'take', u'protect', u'marin', u'park'] [u'ask', u'media', u'imag', u'pow'] [u'afma', u'probe', u'tuna', u'quota', u'measur'] [u'age', u'care', u'nurs', u'consid', u'industri', u'action'] [u'agricultur', u'dept', u'alert', u'potenti', u'anim'] [u'alburi', u'poll', u'declar', u'expect', u'monday'] [u'alleg', u'fals', u'doctor', u'charg', u'rape'] [u'remind', u'elect', u'pledg', u'doctor'] [u'anti', u'discrimin', u'commission', u'issu', u'warn'] [u'argentina', u'withdraw', u'seven', u'virus', u'fear'] [u'armi', u'general', u'wont', u'deni', u'earli', u'iraq', u'invas'] [u'aust', u'graduat', u'like', u'oversea'] [u'aust', u'protect', u'pow', u'human', u'right'] [u'aust', u'navi', u'diver', u'sweep', u'mine', u'iraqi'] [u'aust', u'mark', u'year', u'free', u'trade'] [u'australia', u'aim', u'world', u'trick', u'pont'] [u'australia', u'lag', u'pay', u'matern', u'leav'] [u'aust', u'biggest', u'field'] [u'aust', u'troop', u'rotat', u'hill'] [u'aust', u'zoo', u'help', u'save', u'endang', u'asia', u'speci'] [u'bali', u'bomb', u'victim', u'miss', u'feder'] [u'bank', u'defi', u'downward', u'trend'] [u'basra', u'upris', u'fight', u'ax', u'knive'] [u'batchelor', u'bank', u'payout', u'chequ'] [u'beatti', u'urg', u'howard', u'stay'] [u'busi', u'adopt', u'wait', u'stanc', u'bank'] [u'bolton', u'make', u'spur', u'penalti'] [u'boom', u'outback'] [u'brisban', u'lord', u'mayor', u'announc', u'retir', u'date'] [u'british', u'death', u'iraq', u'rise'] [u'british', u'forc', u'mark', u'time', u'basra', u'fring'] [u'british', u'enter', u'basra'] [u'british', u'wife', u'visit', u'australia'] [u'british', u'soldier', u'kill', u'riot', u'near', u'basra'] [u'budget', u'cut', u'impact', u'israel', u'poverti', u'line'] [u'bullet', u'sign', u'rucker'] [u'burn', u'victim', u'want', u'appeal', u'money'] [u'bush', u'request', u'congress', u'iraq'] [u'busi', u'invest', u'predict', u'hold'] [u'cfmeu', u'releas', u'document', u'detail', u'royal', u'commiss'] [u'chief', u'exec', u'accus', u'sexual', u'assault'] [u'clark', u'wont', u'appli', u'legal', u'fund', u'atsic'] [u'communiti', u'face', u'water', u'dilemma'] [u'complaint', u'volker', u'case', u'dismiss'] [u'conflict', u'report', u'qasr', u'fight'] [u'coroni', u'inquiri', u'launch', u'bushfir'] [u'council', u'consid', u'tougher', u'penalti', u'unfenc'] [u'councillor', u'consid', u'urban', u'develop', u'issu'] [u'council', u'overturn', u'build', u'height', u'plan', u'law'] [u'council', u'rescu', u'rockhampton'] [u'court', u'hear', u'woman', u'receiv', u'unauthoris', u'sick'] [u'cresswel', u'plan', u'quit'] [u'cricket', u'fan', u'welcom', u'home', u'world', u'champion'] [u'croc', u'sight', u'near', u'broom'] [u'dead', u'stinger', u'like', u'increas', u'north'] [u'dizzi', u'say', u'injuri', u'progress'] [u'doubt', u'cast', u'silverdom', u'futur'] [u'drink', u'driver', u'jail', u'month'] [u'drought', u'affect', u'famili', u'slow'] [u'elka', u'eye', u'trebl', u'travi', u'teenag', u'rampag'] [u'ethanol', u'plant', u'unlik', u'boost', u'yandina', u'properti'] [u'strong', u'condemn', u'kashmir', u'massacr'] [u'explos', u'hear', u'baghdad'] [u'farmer', u'give', u'eas', u'burden', u'drought'] [u'farmer', u'warn', u'cost'] [u'fear', u'doctor', u'retir', u'compound', u'medic', u'woe'] [u'feder', u'advanc'] [u'fiji', u'treason', u'sentenc', u'time'] [u'fink', u'desert', u'race', u'king', u'defend', u'titl'] [u'crew', u'call', u'librari', u'leak'] [u'child', u'care', u'director', u'charg', u'defraud'] [u'lismor', u'mayor', u'die'] [u'fresh', u'troop', u'need', u'say', u'minist'] [u'gang', u'caus', u'polic', u'camp'] [u'giant', u'sandwich', u'serv', u'hondurass', u'hungriest'] [u'govt', u'donat', u'million', u'iraqi', u'children', u'appeal'] [u'govt', u'releas', u'maralinga', u'clean', u'report'] [u'green', u'boost', u'support', u'north', u'coast'] [u'green', u'senat', u'wickham', u'point'] [u'group', u'say', u'inadequ', u'fund', u'caus', u'hous'] [u'group', u'want', u'properti', u'wilder', u'area'] [u'group', u'welcom', u'river', u'murray', u'introduct'] [u'gulf', u'veteran', u'like', u'health', u'problem'] [u'gulf', u'veteran', u'like', u'report', u'health', u'problem'] [u'hackett', u'keen', u'sprinter'] [u'harradin', u'alleg', u'bias', u'medic', u'research', u'grant'] [u'hazard', u'reduct', u'burn', u'plan'] [u'hospit', u'face', u'staff', u'reduct'] [u'internet', u'offer', u'unparallel', u'varieti', u'iraq'] [u'iraq', u'claim', u'alli', u'troop', u'kill', u'recent'] [u'iraqi', u'commit', u'suicid', u'attack', u'armi'] [u'iraqi', u'humanitarian', u'crisi', u'loom', u'delay'] [u'iraqi', u'resist', u'soon', u'deal', u'armi', u'chief'] [u'iraqi', u'hunt', u'water', u'food', u'south'] [u'iraqi', u'wheat', u'payment', u'year', u'late', u'grain', u'grower'] [u'iraq', u'launch', u'missil', u'kuwait'] [u'irish', u'warn', u'english', u'favourit'] [u'irrig', u'river', u'alloc', u'plant'] [u'isol', u'race', u'club', u'consid', u'legal', u'action'] [u'hop', u'deal', u'help', u'expand', u'oper'] [u'jail', u'term', u'doubl', u'samurai', u'sword', u'attack', u'appeal'] [u'jone', u'take', u'earn'] [u'journalist', u'union', u'condemn', u'censorship', u'request'] [u'labor', u'minor', u'parti', u'dismiss', u'latest', u'newspol'] [u'lake', u'open', u'effluent', u'pollut'] [u'lectur', u'say', u'parad', u'pow', u'propaganda'] [u'letter', u'urg', u'heighten', u'diseas', u'awar'] [u'liber', u'leader', u'congratul', u'candid'] [u'lib', u'upbeat', u'hold', u'gosford', u'willoughbi'] [u'liquor', u'law', u'impact', u'club'] [u'local', u'govt', u'urg', u'stop', u'develop'] [u'lung', u'cancer', u'target', u'cancer', u'council'] [u'macfarlan', u'deni', u'govt', u'energi', u'polici', u'inadequ'] [u'mackay', u'coupl', u'name', u'carer'] [u'major', u'hop', u'shale'] [u'major', u'shop', u'centr', u'come', u'nowra'] [u'charg', u'fatal', u'stab'] [u'illeg', u'abalon', u'racket', u'lose', u'plane'] [u'jail', u'assault', u'wife'] [u'kill', u'industri', u'accid'] [u'sentenc', u'steal', u'bankcard', u'chequ'] [u'manslaught', u'trial', u'continu', u'today'] [u'meet', u'discuss', u'club', u'futur'] [u'monaro', u'result', u'decid'] [u'arrest', u'cannabi', u'plantat'] [u'dairi', u'farmer', u'seek'] [u'mother', u'await', u'news', u'gulf'] [u'motorcyclist', u'hospit', u'crash'] [u'air', u'elector', u'chang', u'concern'] [u'seek', u'trade', u'chang'] [u'vote', u'govt', u'stem', u'cell', u'issu'] [u'welcom', u'dump', u'clean'] [u'name', u'polic', u'urg', u'remain', u'calm'] [u'navi', u'diver', u'sweep', u'mine', u'qasr'] [u'appoint', u'board'] [u'leas', u'restaur', u'damag'] [u'plan', u'huge', u'petro', u'chemic', u'plant'] [u'zealand', u'tourist', u'murder', u'nairobi'] [u'nigerian', u'court', u'delay', u'stone', u'appeal'] [u'deal', u'turkish', u'troop', u'deploy'] [u'north', u'korea', u'strengthen', u'defenc'] [u'nyse', u'bar', u'jazeera', u'report'] [u'occi', u'fan', u'tip', u'surf', u'contest'] [u'opera', u'hous', u'protest', u'clean'] [u'overwork', u'doctor', u'flag', u'roma'] [u'parent', u'encourag', u'talk', u'children', u'iraq'] [u'petrol', u'price', u'expect', u'drop'] [u'plan', u'cart', u'water', u'capella'] [u'pleas', u'communiti', u'respons', u'mosqu', u'tour'] [u'warn', u'militari', u'difficult', u'challeng', u'ahead'] [u'pocket', u'iraqi', u'resist', u'expect', u'cosgrov'] [u'policeman', u'dead', u'station'] [u'pottharst', u'quit', u'intern', u'scene'] [u'propaganda', u'help'] [u'probe', u'launch', u'death', u'senior', u'polic'] [u'protest', u'polic', u'clash', u'outsid', u'korean'] [u'bipartisan', u'support', u'aust', u'troop'] [u'opposit', u'call', u'gold', u'coast', u'polic'] [u'polic', u'journal', u'criticis', u'racist', u'imag'] [u'race', u'meet', u'weekend', u'boost', u'break', u'hill', u'busi'] [u'cross', u'confid', u'gain', u'access', u'pow'] [u'reef', u'sewag', u'spill', u'court', u'case', u'continu'] [u'region', u'servic'] [u'remot', u'communiti', u'improv', u'access'] [u'reserv', u'bank', u'announc', u'board', u'member'] [u'rivkin', u'trial', u'abort'] [u'rooney', u'return', u'form', u'backstrok'] [u'saddam', u'appear', u'urg', u'iraqi', u'fight'] [u'saddam', u'respons', u'humanitarian', u'problem', u'hill'] [u'govt', u'examin', u'maralinga', u'report'] [u'sar', u'spread', u'franc'] [u'savill', u'name', u'nbls', u'number', u'defend'] [u'scud', u'outlast', u'enqvist', u'agassi', u'clash'] [u'scud', u'set', u'agassi', u'clash'] [u'rescu', u'prais', u'good', u'year'] [u'second', u'person', u'charg', u'glebe', u'stab', u'death'] [u'sharehold', u'vote', u'divid'] [u'shark', u'repel', u'high'] [u'shaughnessi', u'send', u'venus', u'pack'] [u'shimang', u'ban', u'high', u'tackl'] [u'shire', u'adopt', u'strateg', u'plan'] [u'shire', u'urg', u'water', u'plan', u'watchdog'] [u'singapor', u'impos', u'quarantin', u'stop', u'sar', u'spread'] [u'korea', u'seek', u'stronger', u'allianc'] [u'small', u'blast', u'rock', u'british', u'council', u'beirut'] [u'soldier', u'death', u'bring', u'british', u'toll'] [u'sptcri'] [u'sptrbi'] [u'state', u'govt', u'attack', u'spend', u'cut'] [u'storm', u'damag', u'expect'] [u'strike', u'affect', u'beer', u'suppli'] [u'support', u'pasminco', u'probe'] [u'tatt', u'say', u'women'] [u'tavern', u'bash', u'wit', u'urg', u'contact', u'polic'] [u'teacher', u'state', u'readi', u'strike'] [u'teacher', u'restart', u'industri', u'action'] [u'test', u'continu', u'patient'] [u'thorp', u'lead', u'heat'] [u'thousand', u'spend', u'sport', u'grind', u'upgrad'] [u'thousand', u'spend', u'stop', u'grapevin', u'pest'] [u'dead', u'hous', u'damag', u'afghanistan', u'flood'] [u'loud', u'blast', u'central', u'baghdad'] [u'tourist', u'cruis', u'ship', u'dock', u'darwin'] [u'unconvinc', u'authent', u'saddam', u'address'] [u'grad', u'chase', u'oversea'] [u'union', u'maintain', u'green', u'basslink', u'pylon'] [u'alli', u'withdraw', u'iraq', u'arab'] [u'break', u'nasiriya', u'resist'] [u'colonel', u'apologis', u'death', u'british'] [u'forc', u'launch', u'heavi', u'attack', u'baghdad'] [u'forc', u'tri', u'destroy', u'down', u'helicopt'] [u'marin', u'heavi', u'fight', u'nasiriya'] [u'say', u'iraqi', u'human', u'shield', u'treat', u'captur'] [u'say', u'russian', u'equip', u'iraq', u'affect'] [u'urg', u'iraq', u'abid', u'geneva', u'convent'] [u'urg', u'african', u'republ', u'leader', u'releas'] [u'govt', u'slam', u'council', u'fund', u'fight'] [u'polic', u'confirm', u'probe', u'senior', u'offic', u'death'] [u'impact', u'health', u'academ'] [u'warn', u'issu', u'iraq', u'phone', u'poll'] [u'warn', u'tough', u'water', u'restrict', u'return'] [u'expect', u'hamper', u'rice', u'trade'] [u'wild', u'fenc', u'commit', u'question'] [u'windi', u'look', u'captain', u'coach'] [u'wineri', u'contract', u'crush'] [u'woman', u'bond', u'facto', u'manslaught'] [u'work', u'start', u'major', u'townsvill', u'road'] [u'world', u'champion', u'cricket', u'arriv', u'home'] [u'world', u'cricket', u'arriv', u'home'] [u'world', u'cricket', u'receiv', u'hero', u'welcom'] [u'world', u'vision', u'expand', u'epenarra', u'project'] [u'youngster', u'target', u'obes', u'program'] [u'zabel', u'take', u'open', u'stage'] [u'raid', u'bottl', u'shop'] [u'abattoir', u'stand', u'worker'] [u'afghan', u'claim', u'mistreat', u'detent'] [u'agassi', u'stop', u'scud', u'serena', u'advanc'] [u'agreement', u'reach', u'doctor', u'number'] [u'group', u'ship', u'water', u'iraq'] [u'reach', u'iraq', u'thursday'] [u'american', u'prepar', u'death', u'white', u'hous'] [u'ancient', u'aborigin', u'remain'] [u'toll', u'increas', u'citylink'] [u'anti', u'protest', u'street', u'worldwid'] [u'arrest', u'violent', u'anti', u'ralli', u'sydney'] [u'asic', u'highlight', u'mortag', u'broke', u'standard'] [u'attorney', u'general', u'happi', u'extend', u'sentenc'] [u'aussi', u'proud', u'son', u'effort'] [u'aust', u'navi', u'diver', u'mine', u'iraqi', u'port'] [u'australian', u'face', u'year', u'jail', u'drug'] [u'australian', u'netbal', u'suffer', u'rare', u'defeat'] [u'australian', u'fear', u'lose', u'job'] [u'australian', u'wheat', u'bind', u'qasr'] [u'aust', u'suffer', u'rare', u'defeat', u'jamaica'] [u'bali', u'suspect', u'yell', u'support', u'iraq'] [u'bangladesh', u'captain', u'step'] [u'bartholomeuz', u'rule', u'blue', u'clash'] [u'billiton', u'sell', u'argentinian'] [u'blackal', u'student', u'hostel', u'close'] [u'blair', u'focus', u'post', u'iraq', u'meet'] [u'blue', u'green', u'alga', u'river'] [u'bonlac', u'announc', u'milk', u'price', u'step'] [u'british', u'forc', u'mark', u'time', u'basra', u'fring'] [u'burk', u'mcrae', u'waratah', u'red', u'lose', u'atkinson'] [u'bush', u'plagu', u'spark', u'sell', u'mozzi', u'net'] [u'bush', u'pledg', u'billion', u'east'] [u'busi', u'activ', u'fli', u'high', u'turbul', u'lie'] [u'canberra', u'skier', u'nomin', u'world', u'sport', u'award'] [u'carr', u'rejig', u'cabinet', u'fresh', u'face'] [u'cathol', u'church', u'mourn', u'loss', u'high', u'profil', u'priest'] [u'cfmeu', u'offici', u'brand', u'cole', u'report', u'witch', u'hunt'] [u'chappel', u'take', u'refuge', u'concern', u'ruddock'] [u'child', u'abus', u'report', u'shock', u'govt'] [u'china', u'pneumonia', u'toll', u'amid', u'secreci'] [u'chines', u'blast', u'toll', u'hit'] [u'citizen', u'ask', u'opinion', u'risk', u'hazard'] [u'claim', u'worri', u'north', u'coast'] [u'club', u'oper', u'face', u'fine', u'reef', u'pollut'] [u'cole', u'find', u'union', u'bash', u'labor'] [u'constabl', u'death', u'suspici', u'polic'] [u'cooma', u'cycleway', u'near', u'finish'] [u'copyright', u'chang', u'mean', u'cheaper', u'book'] [u'copyright', u'chang', u'mean', u'cheaper', u'softwar'] [u'council', u'approv', u'subdivis', u'condit'] [u'council', u'fill', u'fund', u'gap'] [u'council', u'hop', u'cuttlefish', u'studi', u'help', u'boost'] [u'council', u'unlik', u'hold', u'age', u'care', u'meet'] [u'council', u'uphold', u'lake', u'cathi', u'recommend'] [u'council', u'urg', u'fast', u'food', u'chain', u'rethink', u'traffic'] [u'countri', u'victorian', u'subsidis', u'power'] [u'coupl', u'resuscit', u'attempt', u'newborn'] [u'csiro', u'develop', u'tool', u'better', u'oyster'] [u'death', u'penalti', u'famili', u'massacr', u'saigon', u'river'] [u'desalin', u'plant', u'readi', u'month'] [u'dingo', u'warn', u'fraser', u'visitor'] [u'doctor', u'charg', u'tri', u'kill', u'patient'] [u'doctor', u'concern', u'rural', u'shortag'] [u'doctor', u'border', u'send', u'medic', u'suppli'] [u'downer', u'head', u'talk', u'leader'] [u'drought', u'cost', u'meatwork', u'job'] [u'educ', u'dept', u'deni', u'teacher'] [u'elder', u'urg', u'lock', u'door', u'bash'] [u'mickelson', u'withdraw', u'player', u'championship'] [u'elura', u'miner', u'strike'] [u'sight', u'sculptor', u'pick', u'gaudi'] [u'england', u'unchang', u'ireland'] [u'timor', u'appeal'] [u'driver', u'wear', u'han', u'devic', u'say'] [u'farmhand', u'poorest', u'pay', u'worker'] [u'farm', u'worker', u'poor', u'pay', u'studi'] [u'figur', u'highlight', u'singl', u'parent', u'famili', u'statist'] [u'crew', u'hope', u'contain', u'bushfir'] [u'arrest', u'brisban', u'anti', u'protest'] [u'french', u'radio', u'premier', u'fiji'] [u'fresh', u'wave', u'bomb', u'hit', u'iraqi'] [u'fund', u'help', u'boost', u'prospect'] [u'ganguli', u'defend', u'decis'] [u'german', u'get', u'stick', u'fold', u'sofa'] [u'gold', u'coast', u'electrician', u'strike', u'better'] [u'governor', u'continu', u'wheatbelt', u'tour'] [u'govt', u'flag', u'construct', u'sector', u'crime', u'watchdog'] [u'govt', u'set', u'asid', u'larg', u'money'] [u'govt', u'set', u'januari', u'bushfir', u'inquiri'] [u'govt', u'decid', u'troop', u'rotat'] [u'grazier', u'face', u'restock', u'problem'] [u'green', u'candid', u'discourag', u'despit', u'loss'] [u'green', u'test', u'labor', u'troop', u'stanc'] [u'gunner', u'stay', u'cours', u'doubl'] [u'hackett', u'blast', u'fina', u'world', u'championship', u'program'] [u'harri', u'potter', u'creator', u'rowl', u'give', u'birth', u'babi'] [u'hart', u'play', u'game'] [u'harvey', u'shire', u'back', u'countri', u'allianc'] [u'hawk', u'hop', u'squar', u'semi', u'final', u'seri'] [u'hawk', u'readi', u'wildcat'] [u'health', u'dept', u'seek', u'specialist', u'nurs'] [u'healthi', u'activ', u'reduc', u'drug', u'abus'] [u'henri', u'strike'] [u'henri', u'wound', u'chelsea', u'clash'] [u'high', u'school', u'student', u'begin', u'hunger', u'strike', u'iraq'] [u'highway', u'deadlock', u'break'] [u'hillgrov', u'gold', u'reopen'] [u'hop', u'craft', u'project', u'boost', u'social', u'cohes'] [u'hous', u'leav', u'coupl', u'homeless'] [u'howard', u'slam', u'annan', u'human', u'right', u'warn'] [u'howard', u'want', u'post', u'iraq'] [u'howe', u'sidelin', u'week'] [u'hundr', u'kill', u'najaf', u'battl'] [u'illeg', u'fisherman', u'detain'] [u'indigen', u'land', u'agreement', u'form'] [u'inquest', u'refuge', u'self', u'immol'] [u'iraqi', u'toll', u'near', u'najaf'] [u'iraq', u'domin', u'global', u'market'] [u'ivanisev', u'miss', u'davi', u'spain'] [u'loss', u'surpris', u'union'] [u'kravitz', u'releas', u'peac', u'anthem'] [u'lectur', u'warn', u'propaganda'] [u'legal', u'confus', u'put', u'food', u'plan', u'hold'] [u'legal', u'embryo', u'stem', u'cell', u'research', u'step', u'closer'] [u'lehmann', u'look', u'forward', u'windi', u'tour'] [u'lib', u'claim', u'south', u'coast', u'seat'] [u'life', u'prison', u'road', u'rage', u'killer'] [u'local', u'market', u'growth', u'offset', u'fall'] [u'charg', u'alleg', u'kidnap'] [u'court', u'bomb', u'hoax', u'virgin', u'flight'] [u'jail', u'import', u'ecstasi', u'child'] [u'send', u'trial', u'plane', u'bomb', u'hoax'] [u'face', u'court', u'bottl', u'attack'] [u'mcrae', u'burk', u'waratah'] [u'member', u'tell', u'club', u'woe'] [u'meningococc', u'mening', u'case', u'bendigo'] [u'mine', u'explos', u'toll', u'climb'] [u'missil', u'strike', u'kill', u'baghdad', u'market'] [u'monaro', u'final', u'count', u'begin'] [u'monash', u'retain', u'engin', u'gippsland'] [u'mooney', u'question', u'delay'] [u'peopl', u'visit', u'pat', u'race', u'meet'] [u'polic', u'head', u'gold', u'coast'] [u'motorist', u'monitor', u'ethanol', u'fuel'] [u'move', u'clean', u'crimin', u'behaviour', u'build'] [u'question', u'census'] [u'nasiriya', u'hospit', u'show', u'sign', u'militari'] [u'compani', u'take', u'blue', u'ribbon'] [u'multicultur', u'communiti', u'servic', u'offic', u'open'] [u'save', u'polic', u'time'] [u'treatment', u'breast', u'cancer', u'post', u'menopaus'] [u'northampton', u'resid', u'prais', u'reduc', u'water'] [u'north', u'korea', u'threaten', u'japan', u'satellit'] [u'odonnel', u'cop', u'match'] [u'perth', u'ralli', u'turn', u'ugli'] [u'petrol', u'blend', u'declar', u'pump'] [u'plan', u'wilder', u'area'] [u'plan', u'begin', u'outback', u'challeng'] [u'plan', u'rationalis', u'tourism', u'branch', u'win', u'support'] [u'polic', u'hunt', u'random', u'attack'] [u'polic', u'drug', u'relat', u'arrest'] [u'polic', u'outnumb', u'protest', u'anti', u'log'] [u'possibl', u'cut', u'irrig', u'alloc'] [u'public', u'liabil', u'cost', u'jeopardis', u'kart', u'grand'] [u'govt', u'suggest', u'indigen', u'council', u'reform'] [u'quarantin', u'impos', u'ontario', u'find', u'sar', u'case'] [u'question', u'rais', u'airport', u'secur'] [u'ralli', u'turn', u'nasti', u'sydney', u'perth'] [u'reef', u'reopen', u'fish'] [u'report', u'recommend', u'tougher', u'law', u'driver'] [u'report', u'armi', u'soldier', u'intimid'] [u'research', u'pull', u'chain', u'school', u'toilet'] [u'resid', u'plan', u'class', u'action', u'highway', u'nois'] [u'resid', u'learn', u'green', u'issu'] [u'opposit', u'highlight', u'ferri', u'worker', u'concern'] [u'schwab', u'pressur', u'produc', u'result'] [u'second', u'soldier', u'die', u'grenad', u'blast', u'tent'] [u'senat', u'slash', u'bush', u'cut'] [u'shire', u'warn', u'burrup', u'industri', u'project', u'speed'] [u'singapor', u'report', u'mysteri', u'pneumonia', u'death'] [u'snake', u'bite', u'put', u'hospit'] [u'soorley', u'refus', u'write', u'troop', u'spark'] [u'sorenstam', u'aim', u'histori'] [u'stab', u'victim', u'recov'] [u'student', u'ralli', u'peac', u'tasmania'] [u'sunris', u'project', u'gain', u'stage', u'approv'] [u'swimmer', u'warn', u'stinger'] [u'live', u'baghdad'] [u'thorp', u'callus', u'dead', u'heat', u'thriller'] [u'thorp', u'forc', u'settl'] [u'thousand', u'expect', u'flock', u'toowoomba'] [u'thousand', u'middl', u'east', u'protest', u'ralli'] [u'imposs', u'sheedi'] [u'tiger', u'consid', u'appeal', u'odonnel'] [u'timber', u'firm', u'branch', u'wine', u'busi'] [u'toowoomba', u'join', u'list', u'region', u'centr'] [u'toowoomba', u'join', u'list', u'region', u'centr'] [u'tougher', u'water', u'restrict', u'broadford'] [u'tribut', u'flow', u'lismor', u'mayor'] [u'turkey', u'scale', u'iraqi', u'border', u'forc'] [u'turkey', u'reserv', u'right', u'deploy', u'troop'] [u'turkey', u'seek', u'iraq', u'buffer', u'zone', u'prevent', u'terror'] [u'brit', u'kill', u'friend', u'near', u'basra'] [u'unemploy', u'level', u'rise', u'wide'] [u'union', u'leader', u'expect', u'face', u'charg'] [u'kill', u'return', u'pentagon'] [u'uralla', u'council', u'withdraw'] [u'admit', u'possibl', u'civilian', u'casualti', u'bomb'] [u'defend', u'iraq', u'battl', u'plan'] [u'destroy', u'down', u'apach', u'helicopt'] [u'public', u'back', u'bush', u'poll'] [u'vail', u'call', u'fair', u'slice', u'iraq', u'trade'] [u'doctor', u'demand', u'indemn', u'reform'] [u'govt', u'defend', u'speed', u'camera'] [u'violent', u'sydney', u'anti', u'ralli', u'declar', u'illeg'] [u'govt', u'back', u'campaign', u'relief'] [u'iraq', u'hurt', u'manufactur'] [u'memori', u'plan', u'mirani', u'shire'] [u'warn', u'receiv', u'world', u'money'] [u'women', u'urg', u'bone', u'densiti', u'test'] [u'woodchip', u'truck', u'safe', u'industri', u'offici'] [u'zambia', u'flood', u'wreck', u'crop', u'leav', u'homeless'] [u'zberg', u'take', u'sprint', u'bayarri', u'claim', u'overal', u'lead'] [u'iraqi', u'tank', u'destroy', u'south', u'basra', u'british'] [u'kill', u'south', u'korean', u'school', u'camp'] [u'abalon', u'fine', u'send', u'warn', u'poacher'] [u'academ', u'speak', u'abus', u'indonesian', u'polic'] [u'accc', u'wont', u'probe', u'surgeri', u'complaint'] [u'memori', u'honour', u'emerg', u'worker'] [u'actu', u'urg', u'senat', u'block', u'build', u'industri', u'reform'] [u'age', u'care', u'home', u'build', u'begin', u'juli'] [u'alic', u'spring', u'track', u'master', u'game'] [u'jazeera', u'seek', u'ensur', u'free', u'press'] [u'anderson', u'tabl', u'tougher', u'airport', u'secur', u'law'] [u'annan', u'urg', u'uniti', u'iraqi'] [u'anti', u'protest', u'march', u'lismor', u'street'] [u'anti', u'protest', u'warn', u'scam'] [u'anti', u'protest', u'plan', u'worri', u'princip'] [u'anti', u'protest', u'continu', u'melbourn'] [u'arab', u'nation', u'grappl', u'anti', u'protest'] [u'asic', u'investig', u'council', u'arnhem', u'land'] [u'mayor', u'poll', u'hold', u'south', u'east'] [u'aust', u'navi', u'diver', u'clear', u'iraqi', u'port', u'mine'] [u'australian', u'swim', u'championship', u'result'] [u'aust', u'soldier', u'join', u'line', u'democrat', u'propos'] [u'baghdad', u'bomb', u'market', u'carnag'] [u'baghdad', u'fresh', u'bombard'] [u'battl', u'drought', u'come', u'microscop'] [u'blast', u'rock', u'burma', u'capit', u'kill'] [u'boodnikoff', u'name', u'nbls', u'rooki'] [u'fli', u'hospit', u'assault'] [u'british', u'captiv', u'appear', u'jazeera'] [u'brundl', u'fear', u'british', u'futur'] [u'crash', u'burn', u'kyrgyzstan', u'kill'] [u'bushfir', u'committe', u'meet', u'today'] [u'centr', u'disput'] [u'delay', u'murray', u'flow', u'decis'] [u'canberra', u'consid', u'race', u'return'] [u'canberra', u'trip', u'boost', u'wastewat', u'plan', u'hop'] [u'capriati', u'move', u'miami'] [u'capriati', u'rubin', u'advanc', u'semi', u'final'] [u'carr', u'blame', u'marxist', u'protest', u'violenc'] [u'chick', u'doubt', u'port', u'clash'] [u'chick', u'rule', u'port', u'clash'] [u'chilean', u'firm', u'question', u'money', u'launder'] [u'coalit', u'bomb', u'iraqi', u'column', u'basra'] [u'cole', u'myer', u'drop', u'payout', u'board', u'sitter'] [u'communiti', u'project', u'fund', u'boost'] [u'communiti', u'spirit', u'abund', u'great', u'southern'] [u'compani', u'assess', u'viabil'] [u'crash', u'caus', u'vicroad', u'woe'] [u'concern', u'air', u'water', u'charg'] [u'hope', u'stop', u'blue', u'tier', u'log'] [u'copi', u'kewel', u'stay', u'leed'] [u'coral', u'spawn', u'impact', u'crayfish', u'catch'] [u'cork', u'hardi', u'merger', u'giant'] [u'council', u'hop', u'boost', u'power'] [u'council', u'hire', u'secur', u'guard', u'surfer'] [u'council', u'vote', u'renew', u'general', u'manag'] [u'croc', u'forc', u'decid', u'wildcat', u'grand', u'final'] [u'crow', u'squad', u'best', u'hart'] [u'trade', u'heritag', u'list', u'build'] [u'danger', u'media', u'iraq', u'downer'] [u'darwin', u'itiner', u'signific', u'social', u'problem', u'polic'] [u'rosa', u'fastest', u'barcelona', u'test'] [u'democrat', u'approv', u'tougher', u'welfar', u'penalti'] [u'dengu', u'fever', u'case', u'rise'] [u'detect', u'sergeant', u'sack'] [u'digger', u'farewel', u'brisban'] [u'dodgi', u'resum', u'chief', u'execut'] [u'save', u'shark', u'attack'] [u'doubl', u'forward', u'boost', u'ireland'] [u'drought', u'impact', u'rice', u'harvest'] [u'drought', u'inspect', u'start'] [u'drought', u'mean', u'goondiwindi', u'wont', u'host', u'waterski'] [u'drought', u'spur', u'feral', u'cull', u'talli'] [u'dubai', u'base', u'say', u'news', u'team', u'miss', u'iraq'] [u'durban', u'offici', u'boycott', u'warn', u'visit'] [u'timor', u'fee', u'asylum', u'seeker', u'gusmao'] [u'farmer', u'angri', u'grain', u'board', u'privatis', u'plan'] [u'farmer', u'urg', u'consid', u'skill', u'accept', u'chang'] [u'farmer', u'urg', u'fight', u'iraqi', u'wheat', u'market'] [u'fear', u'outstat', u'closur', u'lead', u'death'] [u'festiv', u'fenc', u'boost', u'gate', u'take'] [u'finegan', u'set', u'comeback', u'canterburi', u'clash'] [u'franc', u'help', u'chemic', u'weapon'] [u'fraser', u'keen', u'contest', u'nat', u'leadership'] [u'fraud', u'cost', u'australia', u'billion', u'annual', u'report'] [u'friend', u'hail', u'marin', u'nasiriyah'] [u'fuel', u'reduct', u'burn', u'spark', u'anger'] [u'plant', u'report', u'emiss', u'level'] [u'goldman', u'sach', u'buy', u'slice'] [u'gold', u'open'] [u'gold', u'mine', u'restart', u'hill'] [u'govt', u'push', u'welfar', u'penalti', u'senat'] [u'govt', u'risk', u'custodi', u'death', u'inmat', u'home'] [u'shortag', u'threaten', u'health', u'rural', u'doctor'] [u'grafton', u'council', u'focus', u'ethic'] [u'grafton', u'farmer', u'trial', u'water'] [u'harvey', u'shire', u'announc', u'retir'] [u'head', u'coach', u'say', u'expect', u'thorp', u'hackett'] [u'histor', u'paddleboat', u'cruis', u'month'] [u'histor', u'villag', u'gundaroo', u'techno', u'capit'] [u'hong', u'kong', u'invok', u'quarantin', u'contain', u'dead'] [u'hope', u'industri', u'park', u'offer', u'benefit'] [u'howard', u'slam', u'annan', u'human', u'right', u'warn'] [u'human', u'right', u'commiss', u'oppos', u'reform'] [u'infantri', u'divis', u'head', u'gulf'] [u'ingram', u'submiss', u'bushfir', u'probe'] [u'injur', u'kenyan', u'champ', u'miss', u'world', u'cross'] [u'intern', u'gaze', u'break', u'hill'] [u'invas', u'forc', u'turn', u'basra', u'breakout', u'report'] [u'iraqi', u'chem', u'protect', u'doesnt', u'mean', u'blix'] [u'iraqi', u'claim', u'civilian', u'death', u'baghdad'] [u'island', u'festiv', u'launch', u'zeehan'] [u'israel', u'raid', u'gaza', u'chase', u'arafat', u'bodyguard'] [u'ivori', u'coast', u'ministri', u'appoint', u'condemn'] [u'japanes', u'militari', u'alert'] [u'keel', u'order'] [u'kewel', u'stay', u'leed'] [u'wit', u'rivkin', u'admit', u'lie'] [u'kilburn', u'face', u'trial', u'babi', u'death'] [u'tribut', u'digger'] [u'fratern', u'block', u'melbourn', u'street'] [u'lawyer', u'wit', u'sling', u'insult', u'polic', u'inquiri'] [u'liquid', u'abl', u'target', u'compani', u'director'] [u'madrid', u'auction', u'hous', u'unveil', u'lose', u'goya', u'paint'] [u'charg', u'ecstasi', u'haul'] [u'hospit', u'fall'] [u'kill', u'steal', u'chase', u'polic'] [u'arm', u'robberi', u'charg', u'face', u'court'] [u'strap', u'schoolboy', u'receiv'] [u'market', u'stay', u'hold', u'pattern', u'iraq'] [u'mcewen', u'lead', u'aussi', u'belgium'] [u'melbourn', u'worker', u'urg', u'stop', u'work'] [u'member', u'split', u'cancer', u'chariti'] [u'million', u'dollar', u'splurg', u'inaugur', u'adelaid'] [u'delay', u'ship', u'iraq', u'port'] [u'minist', u'fuel', u'prejudic', u'muslim'] [u'monaro', u'readi', u'admit', u'poll', u'defeat'] [u'australian', u'troop', u'iraq', u'poll'] [u'blast', u'report', u'baghdad'] [u'blast', u'rock', u'baghdad'] [u'motorist', u'target', u'secur'] [u'moya', u'move', u'miami', u'quarter'] [u'question', u'schooli', u'task', u'forc'] [u'suggest', u'smoke', u'kid', u'aboard'] [u'nat', u'announc', u'region', u'race', u'boost'] [u'natta'] [u'nestl', u'worker', u'accept', u'redund', u'packag'] [u'bodi', u'need', u'build', u'industri', u'law'] [u'wheel', u'monaro'] [u'sar', u'case', u'suspect', u'perth'] [u'nobel', u'laureat', u'cuff', u'white', u'hous', u'protest'] [u'permit', u'student', u'protest', u'polic'] [u'nowra', u'bomaderri', u'larg', u'citi', u'report'] [u'energi', u'minist', u'dump'] [u'govt', u'reliev', u'beekeep', u'sting', u'drought'] [u'minist', u'opt', u'carr', u'cabinet'] [u'polic', u'confirm', u'springsteen', u'secur', u'threat'] [u'obeid', u'opt', u'ministeri', u'scuffl'] [u'pakistani', u'qaeda', u'suspect', u'hold', u'free', u'bail'] [u'patriot', u'stop', u'iraqi', u'missil', u'shoot', u'kuwait'] [u'pentagon', u'talk', u'republican', u'guard', u'column'] [u'piper', u'correct', u'breath', u'problem', u'claim', u'world'] [u'plane', u'board', u'crash', u'indonesia', u'papua'] [u'pneumonia', u'roll', u'stone', u'tour', u'hong', u'kong'] [u'polic', u'charg', u'driver', u'berri', u'crash'] [u'polic', u'chief', u'look', u'forward', u'great', u'southern'] [u'polic', u'crack', u'drug', u'gympi'] [u'polic', u'probe', u'possibl', u'drink', u'spike'] [u'polic', u'search', u'nightclub', u'stab'] [u'polic', u'seiz', u'cannabi', u'plant'] [u'polic', u'tactic', u'contribut', u'protest', u'violenc'] [u'powel', u'invit', u'post', u'iraq'] [u'rain', u'bring', u'relief', u'livestock', u'farmer'] [u'real', u'madrid', u'plan', u'beckham'] [u'reckless', u'high', u'price', u'crean'] [u'record', u'fall', u'thorp'] [u'region', u'council', u'poll', u'begin'] [u'report', u'outlin', u'canola', u'advantag'] [u'republican', u'guard', u'attack', u'forc', u'iraq'] [u'republican', u'guard', u'advanc', u'alli'] [u'rescu', u'indonesian', u'fishermen', u'face', u'charg', u'broom'] [u'rockhampton', u'gear', u'beef', u'expo'] [u'royal', u'commiss', u'wast', u'time', u'union'] [u'sach', u'merg'] [u'govt', u'announc', u'investig', u'uranium'] [u'school', u'kid', u'arm', u'protest', u'minist'] [u'schoolgirl', u'plan', u'anti', u'protest'] [u'scientist', u'gather', u'discuss', u'drought'] [u'shire', u'presid', u'back', u'yuryevich', u'mayor'] [u'shire', u'want', u'environment', u'assess', u'review'] [u'south', u'east', u'choos', u'studi', u'tour'] [u'swamp', u'smell', u'test', u'underway'] [u'swiss', u'refus', u'oust', u'iraqi', u'diplomat'] [u'syrian', u'religi', u'leader', u'urg', u'suicid', u'attack'] [u'govt', u'ask', u'explain', u'grain', u'elev', u'board'] [u'textil', u'firm', u'await', u'council', u'decis'] [u'thoma', u'fli', u'qualifi'] [u'thorp', u'deck', u'dead', u'heat'] [u'thorp', u'callus', u'deck', u'dead', u'heat'] [u'thumb', u'darl', u'down', u'tourism'] [u'tigana', u'leav', u'fulham', u'season'] [u'tourism', u'boom', u'doesnt', u'surpris', u'industri'] [u'town', u'support', u'worker', u'union'] [u'toyworld', u'build', u'demolish'] [u'tradit', u'owner', u'sure', u'want'] [u'target', u'geneva', u'convent', u'amnesti'] [u'dead', u'car', u'crash'] [u'miss', u'british', u'soldier', u'believ', u'dead', u'defenc'] [u'reach', u'iraq', u'agreement', u'aust', u'ambassador'] [u'armi', u'criticis', u'iraq', u'firefight', u'contract'] [u'didnt', u'mean', u'blow', u'civilian', u'howard'] [u'forc', u'parachut', u'northern', u'iraq'] [u'gather', u'evid', u'execut', u'claim'] [u'investig', u'friend', u'report'] [u'wound', u'arriv', u'spanish', u'base'] [u'wont', u'cede', u'control', u'iraq'] [u'vacc', u'question', u'petrol', u'station', u'fin'] [u'make', u'stalk', u'crime'] [u'vote', u'count', u'coff', u'harbour'] [u'caus', u'short', u'term', u'drop', u'oversea', u'tourist'] [u'water', u'restrict', u'place', u'despit', u'rain'] [u'waterway', u'open', u'brisban', u'spill'] [u'wheat', u'grower', u'urg', u'lobbi', u'cwealth'] [u'winter', u'milk', u'suppli', u'unlik'] [u'woman', u'unlik', u'mysteri', u'ill'] [u'woodward', u'confid', u'england', u'break', u'grand', u'slam'] [u'work', u'start', u'road', u'upgrad'] [u'yaraka', u'fear', u'impact', u'rail', u'gang', u'plan'] [u'payout', u'stand', u'paralys', u'motorist'] [u'dead', u'wound', u'najaf', u'fight', u'minist'] [u'aborigin', u'communiti', u'lose', u'initi', u'senior'] [u'accc', u'drop', u'industri', u'investig'] [u'adelaid', u'import', u'look', u'club'] [u'adelaid', u'notch', u'second', u'final'] [u'afghanistan', u'flood', u'kill'] [u'ship', u'creep', u'iraq', u'port'] [u'airport', u'upgrad', u'begin', u'monday'] [u'aldoga', u'get', u'feder', u'approv', u'aluminium', u'smelter'] [u'ord', u'close', u'point'] [u'howard', u'near', u'deal', u'medicar'] [u'anti', u'protest', u'disrupt', u'howard', u'dinner'] [u'reward', u'swimmer', u'pacif', u'success'] [u'atsic', u'pledg', u'help', u'stop', u'violenc'] [u'australia', u'name', u'squad'] [u'australian', u'jet', u'continu', u'bomb', u'mission'] [u'australian', u'swim', u'championship', u'result', u'friday'] [u'babi', u'bag', u'china', u'citi'] [u'ballina', u'seek', u'nat', u'deputi', u'leadership'] [u'bargain', u'bid', u'expect', u'waratah', u'land', u'auction'] [u'bargin', u'bid', u'expect', u'waratah', u'land', u'auction'] [u'basic', u'benefit', u'reinstat', u'pay', u'worker'] [u'beatti', u'highlight', u'charter', u'tower', u'anti', u'chrome'] [u'bell', u'chanc', u'increas', u'dubai'] [u'bendigo', u'bomber', u'boost', u'membership'] [u'biggest', u'attack', u'pummel', u'baghdad'] [u'bike', u'squad', u'oper', u'griffith'] [u'blewett', u'meet', u'bushrang'] [u'blix', u'see', u'post', u'monitor', u'role'] [u'boardshort', u'rais', u'fund', u'fight', u'youth'] [u'bomb', u'campaign', u'ignor', u'religi'] [u'bridg', u'improv', u'access', u'coramba', u'resid'] [u'brumbi', u'thump', u'pacesett'] [u'bulldog', u'meet', u'financi', u'woe'] [u'bunburi', u'council', u'support', u'dolphin', u'centr'] [u'burn', u'philp', u'announc', u'goodman', u'takeov'] [u'bush', u'accus', u'stifl', u'anti', u'congress', u'member'] [u'cambodia', u'cabinet', u'okay', u'khmer', u'roug', u'trial'] [u'campaign', u'turn', u'forest', u'nation', u'park'] [u'carr', u'unveil', u'look', u'cabinet'] [u'charlevill', u'open', u'galleri'] [u'childcar', u'centr', u'staff', u'centr', u'open'] [u'church', u'voic', u'caus'] [u'church', u'iraq'] [u'civilian', u'fire', u'basra'] [u'claim', u'catchment', u'plan', u'focus', u'cultur'] [u'clark', u'guilti', u'brawl', u'charg'] [u'coalit', u'death', u'toll', u'stand'] [u'confisc', u'crime', u'money', u'youth'] [u'controversi', u'mayor', u'stay', u'term'] [u'corser', u'fourth', u'fastest', u'qualifi'] [u'corser', u'fourth', u'fastest', u'phillip', u'island', u'practic'] [u'cosgrov', u'defend', u'plan', u'strategi'] [u'council', u'adopt', u'water', u'save', u'technolog'] [u'council', u'allow', u'poultri', u'develop'] [u'council', u'ask', u'tenni', u'tournament'] [u'council', u'elect', u'mayor', u'shake'] [u'council', u'church', u'fear', u'pacif', u'stabil'] [u'council', u'seek', u'extra', u'fund', u'fire', u'chang'] [u'council', u'continu', u'manag', u'leisur', u'centr'] [u'council', u'sort', u'detail', u'appoint'] [u'crash', u'spark', u'driver', u'fatigu', u'warn'] [u'creditor', u'fraction', u'fail', u'gold'] [u'develop', u'confid', u'pass', u'green', u'inquiri'] [u'dizzi', u'say', u'system', u'indi', u'tour'] [u'dizzi', u'say', u'system', u'windi', u'tour'] [u'eel', u'board'] [u'egypt', u'predict', u'dire', u'consequ'] [u'expand', u'popul', u'prompt', u'polic', u'boost'] [u'farmer', u'want', u'relax', u'rule', u'cull'] [u'fear', u'iraq', u'conflict', u'obstruct', u'olymp'] [u'feder', u'bushfir', u'inquiri', u'invit', u'public', u'submiss'] [u'govt', u'pledg', u'indigen', u'rural', u'health'] [u'evid', u'hear', u'murder', u'trial'] [u'rain', u'plagu', u'player', u'championship'] [u'forestri', u'tasmania', u'deni', u'blue', u'tier', u'problem'] [u'isra', u'pay', u'tribut', u'australia'] [u'detain', u'visa', u'breach', u'claim'] [u'free', u'tour', u'bushfir', u'impact'] [u'frigo', u'take', u'control', u'catalunya'] [u'fund', u'help', u'student', u'stay', u'school'] [u'gillespi', u'say', u'system', u'windi', u'tour'] [u'gilmor', u'elect', u'bushfir', u'inquiri'] [u'girl', u'remov', u'communiti', u'stab'] [u'gold', u'fall', u'huegil'] [u'govt', u'await', u'appeal', u'outcom', u'atsic', u'chief'] [u'group', u'want', u'local', u'decis', u'make', u'power'] [u'hackett', u'mill', u'race', u'qualifi'] [u'hackett', u'return', u'pool'] [u'heritag', u'build', u'demolish', u'park'] [u'hollywood', u'refus', u'promot'] [u'howard', u'health', u'plan', u'apartheid', u'acoss'] [u'illawarra', u'drought', u'assess'] [u'indigen', u'agreement', u'claim'] [u'indonesia', u'rare', u'pet', u'luxuri'] [u'indonesian', u'protest', u'unsway', u'mcdonald', u'defenc'] [u'iraq', u'deni', u'execut', u'british', u'soldier'] [u'iraqi', u'protect', u'suit', u'weapon', u'potenti'] [u'iraqi', u'decid', u'futur', u'want'] [u'iraqi', u'troop', u'flee', u'civilian', u'brit'] [u'iraq', u'shoot', u'drone', u'baghdad'] [u'cancel', u'beij', u'seven', u'amid', u'virus', u'fear'] [u'japanes', u'beef', u'tariff', u'cost', u'produc', u'say'] [u'japan', u'launch', u'satellit', u'amid', u'north', u'korea', u'fear'] [u'joint', u'radio', u'room'] [u'set', u'record', u'whopper', u'pumpkin'] [u'kewel', u'jump', u'venabl', u'defenc'] [u'knight', u'lose', u'tahu', u'eel', u'encount'] [u'kurd', u'close', u'citi', u'report'] [u'langmack', u'appoint', u'rabbitoh', u'coach'] [u'legal', u'group', u'want', u'specialist', u'court', u'mental'] [u'lifestyl', u'revolut', u'torr', u'strait', u'communiti'] [u'log', u'lead', u'beetl', u'speci'] [u'charg', u'karara', u'sieg'] [u'face', u'court', u'child', u'charg'] [u'remand', u'organis', u'crime', u'case'] [u'appear', u'court', u'drug', u'haul'] [u'maroochi', u'mayor', u'expect', u'charg', u'royal'] [u'mcgradi', u'deni', u'surfer', u'visit', u'media', u'stunt'] [u'mental', u'health', u'unit', u'open', u'kalgoorli'] [u'mock', u'villag', u'assist', u'polic', u'train'] [u'critic', u'network', u'chang'] [u'meet', u'discuss', u'schooli', u'submiss'] [u'help', u'establish', u'child', u'care', u'task', u'forc'] [u'murder', u'confess', u'earn', u'convict', u'killer', u'extra'] [u'mysteri', u'virus', u'torpedo', u'thorp'] [u'natwa'] [u'newcastl', u'fisher', u'welcom', u'obeid', u'decis'] [u'industri', u'bloom', u'kimberley'] [u'inquiri', u'controversi', u'mine', u'process'] [u'network', u'contract', u'riverina'] [u'theori', u'link', u'older', u'brother', u'male'] [u'virus', u'strain', u'caus', u'sar'] [u'clarifi', u'delay', u'detail', u'fals'] [u'upfront', u'bulk', u'bill', u'howard'] [u'deputi', u'liber', u'leader', u'like', u'reclaim', u'seat'] [u'say', u'port', u'spray', u'virus', u'carri', u'mozzi'] [u'offici', u'reject', u'fail', u'state'] [u'ogradi', u'head', u'swiss', u'test'] [u'giant', u'welcom', u'accc', u'backdown'] [u'spill', u'clean', u'final', u'stag'] [u'investor', u'consid', u'extend'] [u'olonga', u'fear', u'life', u'black', u'protest'] [u'olymp', u'champ', u'keen', u'race', u'thorp'] [u'pakistan', u'player', u'world', u'failur'] [u'palestinian', u'scorn', u'delay', u'peac', u'roadmap'] [u'patient', u'phone', u'assess', u'debat'] [u'perl', u'resign', u'show', u'coalit', u'fall', u'apart'] [u'petrol', u'price', u'fall', u'albani'] [u'photograph', u'boycott', u'galleri', u'lodg', u'plan'] [u'photograph', u'cite', u'conserv', u'concern'] [u'pie', u'draw', u'blood'] [u'fudg', u'post', u'iraq', u'rule', u'labor'] [u'upbeat', u'offend', u'green'] [u'polak', u'mark', u'carey'] [u'poland', u'ask', u'discret', u'troop'] [u'polic', u'seek', u'wit', u'stuart', u'highway', u'death'] [u'port', u'wrap', u'prepar', u'eagl', u'clash'] [u'premier', u'defend', u'govt'] [u'prospector', u'clear', u'gold', u'ruse'] [u'protest', u'march', u'sydney', u'despit', u'polic'] [u'protest', u'leader', u'polic', u'chanc'] [u'public', u'prepar', u'french'] [u'qanta', u'schedul', u'flight', u'cut'] [u'radic', u'group', u'name', u'moran', u'bomber'] [u'rail', u'bridg', u'close', u'safeti', u'test'] [u'ralf', u'fastest', u'barcelona', u'test'] [u'real', u'play', u'talk', u'beckham'] [u'record', u'crowd', u'flock', u'weetwood', u'handicap'] [u'record', u'fall', u'thorp'] [u'record', u'fall', u'thorp'] [u'report', u'author', u'water', u'govt'] [u'research', u'centr', u'open', u'fraser'] [u'rural', u'train', u'wag', u'compar', u'apprenticeship'] [u'saudi', u'ambassador', u'kill', u'ivori', u'coast'] [u'scandal', u'oust', u'iraq', u'hawk', u'pentagon', u'panel'] [u'scienc', u'prove', u'neanderth', u'dexter'] [u'serb', u'polic', u'slay', u'presid', u'milosev'] [u'serena', u'cruis', u'miami', u'final'] [u'serena', u'crush', u'clijster', u'reach', u'miami', u'final'] [u'shire', u'offer', u'money', u'fight', u'elector', u'reform'] [u'shire', u'presid', u'odd', u'council', u'vote'] [u'town', u'exempt', u'easter', u'sunday', u'trade'] [u'sorenstam', u'set', u'pace', u'california'] [u'south', u'border', u'option', u'silicon', u'compani'] [u'south', u'west', u'wine', u'leav'] [u'ardmona', u'count', u'cost', u'mass', u'meet'] [u'springborg', u'impati', u'nat', u'coalit'] [u'satellit', u'launch', u'arm', u'race', u'north', u'korea'] [u'stall', u'industri', u'action', u'anger', u'wide', u'teacher'] [u'supplementari', u'elect', u'need', u'council'] [u'suspect', u'djindjic', u'murder', u'kill', u'arrest'] [u'suspend', u'jail', u'term', u'croc', u'death', u'guid'] [u'swan', u'extend', u'contract'] [u'syria', u'mufti', u'call', u'martyr', u'attack'] [u'tadpol', u'prove', u'frog', u'surviv', u'drought'] [u'tamworth', u'council', u'person', u'retir', u'council'] [u'tasmanian', u'student', u'defend', u'right', u'protest'] [u'thai', u'flight', u'refus', u'diseas', u'risk', u'passeng'] [u'candid', u'adelaid', u'mayor', u'posit'] [u'state', u'chase', u'revenu'] [u'thunderstorm', u'hold', u'feder', u'costa'] [u'tourist', u'think', u'croc', u'attack', u'prank', u'court', u'tell'] [u'treasur', u'plan', u'ceas', u'busi', u'poach'] [u'truck', u'crash', u'kill', u'sheep'] [u'agre', u'free', u'billion', u'iraqi'] [u'congress', u'vote', u'holi'] [u'mistak', u'slovenia', u'partner'] [u'order', u'troop', u'iraq'] [u'say', u'market', u'blast', u'solv'] [u'toll', u'dead', u'seven', u'pow', u'miss'] [u'turkey', u'resum', u'talk', u'iraq', u'deploy'] [u'opposit', u'oppos', u'parliament', u'reform'] [u'wide', u'ambo', u'strike', u'avert'] [u'govt', u'make', u'easier', u'access', u'pastoralist'] [u'slow', u'civilian', u'sake', u'howard'] [u'waugh', u'honour', u'blue', u'best'] [u'critic', u'cwealth', u'fund', u'figur'] [u'webb', u'conced', u'defeat', u'monaro'] [u'werent', u'readi', u'chief', u'soldier'] [u'wollongong', u'popul', u'grow', u'get', u'older'] [u'work', u'group', u'assess', u'water', u'issu'] [u'year', u'charg', u'molest', u'murder'] [u'adjust', u'unconvent', u'warfar'] [u'africa', u'cross', u'countri', u'domin', u'show'] [u'jazeera', u'say', u'cameraman', u'miss', u'iraq'] [u'analyst', u'predict', u'lower', u'petrol', u'price'] [u'anti', u'protest', u'send', u'realiti', u'messag'] [u'arbitr', u'dismiss', u'bid', u'appeal', u'drug'] [u'assist', u'pour', u'cold', u'water', u'hoddl', u'strife', u'rumour'] [u'aust', u'fighter', u'jet', u'destroy', u'command'] [u'australian', u'jet', u'bomb', u'iraqi', u'target'] [u'baghdad', u'death', u'toll', u'say', u'iraq', u'bomb', u'rain'] [u'beazley', u'prais', u'complet', u'collin', u'class'] [u'bekel', u'song', u'world', u'cross', u'countri'] [u'blackshirt', u'confront', u'oppon', u'melbourn'] [u'blair', u'drop', u'claim', u'iraq', u'murder', u'soldier'] [u'blast', u'rock', u'kurdish', u'town', u'appar', u'counterattack'] [u'blix', u'leav', u'june'] [u'border', u'town', u'record', u'biggest', u'rig'] [u'brit', u'forc', u'captur', u'general', u'basra', u'clash'] [u'british', u'soldier', u'kill', u'friend'] [u'brumbi', u'smith', u'face', u'disciplinari', u'hear'] [u'buddhist', u'leader', u'tell', u'forum', u'peac', u'confus'] [u'bunker', u'buster', u'drop', u'baghdad', u'report'] [u'burglar', u'rescu', u'chimney'] [u'bush', u'prais', u'great', u'progress', u'troop'] [u'cameraman', u'bodi', u'arriv', u'adelaid'] [u'candid', u'nomin', u'outgo', u'liber', u'seat'] [u'capriati', u'hop', u'gift', u'wrap', u'tournament'] [u'capriati', u'final', u'agassi', u'costa', u'meet'] [u'caus', u'fatal', u'chopper', u'crash', u'unknown'] [u'chili', u'phillip', u'island', u'superbik'] [u'china', u'put', u'final', u'death', u'toll', u'accid'] [u'coalit', u'wartim', u'support', u'strong', u'poll'] [u'coalit', u'warplan', u'continu', u'baghdad', u'bombard'] [u'communiti', u'care', u'reform', u'welcom', u'provid'] [u'compani', u'urg', u'disclos', u'salari'] [u'correct', u'servic', u'lobbi', u'offend', u'rehab'] [u'crusad', u'hurrican', u'clash'] [u'crusad', u'highland', u'thriller'] [u'cwealth', u'examin', u'hazard'] [u'daylight', u'save', u'time', u'end', u'sunday'] [u'decis', u'delay', u'delaney'] [u'dracula', u'congress', u'sink', u'teeth', u'religi'] [u'dracula', u'afraid'] [u'ebola', u'outbreak', u'eas', u'congo'] [u'edward', u'test', u'injuri', u'crisi', u'hit', u'wale'] [u'guerrouj', u'map', u'prepar', u'plan', u'pari'] [u'england', u'soccer', u'fan', u'rampag', u'zurich'] [u'explos', u'strap', u'hijack', u'report'] [u'driver', u'aid', u'push'] [u'famili', u'glad', u'cameraman', u'bodi', u'home'] [u'father', u'death', u'rule', u'robbi', u'kean', u'ireland'] [u'firefight', u'nasiriyah'] [u'ship', u'dock', u'qasr'] [u'bomb', u'attack', u'southern', u'philippin'] [u'vet', u'answer'] [u'frigo', u'win', u'catalan', u'cycl', u'week'] [u'fungus', u'trade', u'keep', u'status', u'studi'] [u'gazza', u'eager', u'chines', u'debut'] [u'gazza', u'score', u'chines', u'debut'] [u'golden', u'bear', u'return', u'augusta'] [u'govt', u'dismiss', u'pepper', u'spray', u'threat', u'polic'] [u'govt', u'blame', u'budget', u'woe'] [u'hackett', u'simpli', u'best', u'sydney'] [u'hackett', u'welsh', u'jone', u'line', u'final', u'night'] [u'hacktivist', u'wage', u'iraq', u'onlin'] [u'hargreav', u'england'] [u'harrington', u'sing', u'rain', u'player'] [u'heal', u'william', u'lead', u'king', u'final'] [u'hodgson', u'grab', u'pole', u'phillip', u'island'] [u'howard', u'defend', u'length', u'iraq'] [u'howard', u'defend', u'length'] [u'icrc', u'worker', u'execut', u'taliban', u'central'] [u'indonesian', u'textil', u'display'] [u'iowa', u'mayor', u'lie'] [u'iran', u'dismiss', u'warn', u'propaganda'] [u'iraq', u'deni', u'disguis', u'soldier', u'civilian'] [u'iraqi', u'armi', u'pin', u'south'] [u'iraqi', u'soccer', u'leagu', u'kick', u'despit'] [u'iraq', u'sar', u'heat', u'tourism', u'industri'] [u'iraq', u'say', u'detain', u'alleg', u'spi'] [u'iraq', u'sandstorm'] [u'island', u'festiv', u'deliv', u'world', u'class', u'act'] [u'jone', u'huegil', u'pool', u'duel', u'travel', u'fear'] [u'jone', u'huegil', u'duel', u'pool'] [u'journo', u'spot', u'miss', u'italian', u'journalist'] [u'jubil', u'kurd', u'fighter', u'cross', u'northern', u'frontlin'] [u'kenya', u'bid', u'cross', u'countri', u'world'] [u'kwan', u'win', u'world', u'figur', u'skate', u'short', u'program'] [u'lewiss', u'latest', u'titl', u'defenc', u'place'] [u'lion', u'kick', u'titl', u'defenc', u'bomber'] [u'lion', u'kick', u'titl', u'defenc', u'bomber'] [u'lion', u'roar', u'port', u'carlton', u'hide'] [u'lion', u'thump', u'bomber'] [u'lion', u'unfurl', u'premiership', u'flag'] [u'mackenroth', u'reject', u'govt', u'review', u'call'] [u'marin', u'miss', u'nasiriyah', u'fight'] [u'martyn', u'doubt', u'west', u'indi', u'tour'] [u'martyn', u'miss', u'start', u'windi', u'tour'] [u'media', u'tone', u'frustrat', u'washington'] [u'melbourn', u'stag', u'peac', u'anti', u'ralli'] [u'meunier', u'lebouc', u'take', u'lead', u'webb', u'hit', u'disast'] [u'meunier', u'lebouc', u'take', u'lead', u'webb', u'hit', u'disast'] [u'middl', u'east', u'protest', u'damn', u'aggress'] [u'militari', u'offici', u'downplay', u'groundwar', u'paus'] [u'minist', u'fund', u'art', u'boost'] [u'miss', u'italian', u'journalist', u'move', u'baghdad'] [u'moment', u'vitamin', u'cancer'] [u'palestinian', u'anti'] [u'mugab', u'face', u'prospect', u'fresh', u'protest'] [u'nation', u'frustrat', u'coalit', u'delay'] [u'korea', u'condemn', u'satellit', u'launch'] [u'senior', u'cancer', u'drug', u'trial', u'studi'] [u'teacher', u'pressur', u'incom', u'minist'] [u'coron', u'prompt', u'govt', u'commiss', u'find'] [u'polic', u'search', u'miss', u'children'] [u'end', u'week'] [u'marin', u'kill', u'hurt', u'accid'] [u'paus', u'wont', u'stop', u'aust', u'troop', u'work', u'iraq'] [u'perk', u'caddi', u'spend', u'night'] [u'face', u'anti', u'protest', u'melbourn'] [u'polic', u'arrest', u'religi', u'leader', u'anti'] [u'port', u'thrash', u'west'] [u'prank', u'terror', u'close', u'bridg', u'polic'] [u'protest', u'anger', u'permit', u'denial'] [u'raider', u'maintain', u'unbeaten'] [u'robber', u'blame', u'fatal', u'kyrgyzstan', u'blaze'] [u'robinson', u'deni', u'hell', u'leav', u'leed'] [u'rocket', u'fire', u'najaf'] [u'roo', u'come', u'struggl'] [u'rumsfeld', u'tell', u'syria', u'iran', u'stay'] [u'santana', u'mobi', u'cancel', u'concert', u'sar'] [u'secur', u'council', u'renew', u'food', u'program'] [u'serb', u'polic', u'look', u'milosev', u'wife'] [u'seven', u'miner', u'kill', u'coalmin', u'collaps', u'india'] [u'sever', u'hail', u'storm', u'wreak', u'havoc', u'snowi'] [u'sport', u'posit', u'impact', u'indigen', u'report'] [u'stacker', u'hop', u'king', u'fold', u'pressur'] [u'stanley', u'prize', u'draw', u'divers', u'entri'] [u'stone', u'rock', u'india', u'earlier'] [u'string', u'suppli', u'line', u'threaten', u'baghdad', u'push'] [u'suspect', u'rebel', u'nose', u'kashmir', u'civilian'] [u'suspect', u'rebel', u'kill', u'kashmir'] [u'swan', u'spank', u'blue'] [u'syria', u'deni', u'send', u'militari', u'gear', u'iraq'] [u'syria', u'iran', u'deni', u'help', u'saddam', u'fight'] [u'doctor', u'fear', u'practic', u'rural', u'area'] [u'tasmanian', u'land', u'go', u'song'] [u'ten', u'thousand', u'stage', u'anti', u'protest', u'india'] [u'terrorist', u'pose', u'beggar', u'pose', u'threat'] [u'thanksgiv', u'servic', u'hold', u'vietnam', u'veteran'] [u'serious', u'injur', u'smash'] [u'turf', u'technolog', u'fee', u'world'] [u'turkish', u'hijack', u'arrest', u'passeng', u'free'] [u'turkish', u'hijack', u'end', u'bloodsh'] [u'injur', u'missil', u'hit', u'kuwait'] [u'kill', u'chopper', u'crash'] [u'militari', u'chief', u'deni', u'plan', u'fail'] [u'polic', u'releas', u'arrest', u'anti', u'terrorist'] [u'concern', u'detaine', u'escap', u'ivori', u'coast', u'camp'] [u'launch', u'appeal', u'billion', u'iraq'] [u'strike', u'mosul', u'nasiriyah'] [u'attack', u'militia', u'meet', u'basra'] [u'break', u'terror', u'plot'] [u'chopper', u'kill', u'elit', u'saddam', u'troop'] [u'command', u'prais', u'australian', u'troop'] [u'deni', u'baghdad', u'advanc', u'hold'] [u'forc', u'expel', u'emb', u'journalist'] [u'paper', u'miss', u'journalist', u'baghdad'] [u'plan', u'bomb', u'north', u'east', u'iraqi', u'troop', u'retreat'] [u'revis', u'bomb', u'toll'] [u'say', u'iraq', u'chemic', u'arm', u'trigger', u'line'] [u'soldier', u'najaf', u'suicid', u'bomb'] [u'warplan', u'redeploy', u'turkish', u'base'] [u'vagana', u'anasta', u'sink', u'tiger'] [u'vagana', u'anasta', u'sink', u'tiger', u'warrior', u'raider'] [u'lib', u'hope', u'presid', u'reviv', u'parti'] [u'victorian', u'liber', u'elect', u'presid'] [u'violenc', u'fractur', u'aust', u'peac', u'movement'] [u'vogt', u'see', u'iceland', u'match', u'springboard'] [u'wall', u'street', u'lose', u'grind', u'jitter'] [u'waratah', u'red', u'hoodoo', u'continu'] [u'word', u'rag', u'iraq', u'battl'] [u'waugh', u'admit', u'homesick', u'burden', u'aust'] [u'waugh', u'uncertain', u'futur'] [u'west', u'indi', u'cricket', u'resolv', u'player', u'disput'] [u'extend', u'relief', u'mozambiqu', u'june'] [u'offici', u'die', u'killer', u'respiratori', u'ill'] [u'woman', u'fin', u'declar', u'cash'] [u'world', u'championship', u'team', u'name'] [u'world', u'peac', u'forum', u'promot', u'religi', u'toler'] [u'critic', u'koala', u'conserv', u'plan'] [u'zidan', u'wont', u'captainci', u'head'] [u'zimbabw', u'opposit', u'say', u'mugab', u'parti', u'poll'] [u'kenya', u'replac', u'africa', u'sharjah'] [u'abbott', u'dismiss', u'union', u'cole', u'critic'] [u'arrest', u'australian', u'cambodian', u'crime'] [u'thunder', u'grind', u'assault', u'slow'] [u'jazeera', u'cameraman', u'releas'] [u'american', u'brace', u'longer', u'bloodier', u'fight'] [u'amnesti', u'deliv', u'iraq', u'petit', u'blair'] [u'anti', u'protest', u'drape', u'rome', u'bridg', u'black'] [u'anti', u'protest', u'hunger', u'strike', u'pakistan'] [u'armchair', u'general', u'enjoy', u'saddam', u'mania'] [u'arrest', u'english', u'fan', u'celebr', u'euro'] [u'artilleri', u'hear', u'north', u'qasr'] [u'urg', u'compani', u'test', u'bonus', u'rule'] [u'aust', u'playwright', u'enright', u'die'] [u'australian', u'hold', u'baghdad', u'road'] [u'australian', u'swim', u'move', u'calm', u'travel', u'nerv'] [u'australia', u'groom', u'trail', u'champ'] [u'aust', u'post', u'contract', u'downer'] [u'baghdad', u'brainstorm', u'insult', u'evil', u'invad'] [u'bali', u'survivor', u'return', u'footi', u'field'] [u'bargain', u'hunter', u'snap', u'island', u'home'] [u'basra', u'strike', u'hit', u'baath', u'gather'] [u'beij', u'univers', u'student', u'stage', u'anti', u'protest'] [u'bekel', u'win', u'half', u'cross', u'countri', u'doubl'] [u'blue', u'underlin', u'qualiti', u'kiwi', u'domin', u'super'] [u'drown', u'hinterland', u'properti'] [u'kill', u'accid', u'motorcross', u'event'] [u'british', u'govt', u'apologis', u'execut', u'claim'] [u'brit', u'kill', u'iraqi', u'colonel', u'snatch', u'guard'] [u'bulldog', u'outgun', u'geelong'] [u'bush', u'accus', u'iraq', u'atroc'] [u'canberra', u'woman', u'kill', u'crash'] [u'china', u'allow', u'open', u'protest', u'iraq'] [u'civilian', u'stream', u'basra', u'paus'] [u'claim', u'militia', u'order', u'iraqi', u'soldier'] [u'coalit', u'destroy', u'build', u'baath', u'parti'] [u'coalit', u'forc', u'baghdad', u'bush'] [u'coalit', u'talk', u'domin', u'nat', u'meet'] [u'costello', u'leav', u'chanc', u'deficit', u'open'] [u'crean', u'call', u'price'] [u'crow', u'thump', u'docker'] [u'cwealth', u'stand', u'accc', u'samuel'] [u'daughter', u'appeal', u'inform', u'miss', u'mother'] [u'dawn', u'bomb', u'shake', u'baghdad', u'shell', u'frontlin'] [u'death', u'toll', u'hit', u'turkish', u'factori', u'collaps'] [u'decis', u'helmet', u'come', u'closer'] [u'demon', u'hang', u'death'] [u'doctor', u'claim', u'success', u'blind', u'germ'] [u'duel', u'pool', u'loom', u'side', u'affair'] [u'earthquak', u'jolt', u'northern', u'pakistan'] [u'east', u'anglian', u'club', u'premier', u'leagu', u'play', u'off'] [u'emb', u'journalist', u'face', u'tough', u'task'] [u'england', u'pay', u'tour', u'ahead'] [u'england', u'goodwil', u'payment'] [u'eriksson', u'confid', u'england', u'step'] [u'fear', u'grip', u'killer', u'pneumonia', u'spread'] [u'feder', u'govt', u'fund', u'feral', u'control', u'scheme'] [u'fierc', u'bomb', u'raid', u'baghdad'] [u'finnish', u'cop', u'success', u'smuggl', u'fight'] [u'british', u'dead', u'arriv', u'home'] [u'case', u'killer', u'pneumonia', u'york'] [u'forc', u'reshap', u'iraq', u'track'] [u'forest', u'fire', u'blaze', u'north', u'eastern', u'china'] [u'forestri', u'protest', u'boycott', u'art', u'festiv'] [u'minist', u'want', u'troop', u'iraq'] [u'kill', u'injur', u'build', u'collaps'] [u'franc', u'scotland', u'nation', u'campaign'] [u'franc', u'shine', u'gun', u'stutter'] [u'french', u'coach', u'prais', u'scrumbas'] [u'golden', u'mask', u'festiv', u'make', u'case', u'russian'] [u'govern', u'india', u'tour', u'pakistan'] [u'govt', u'ansett', u'levi'] [u'grant', u'injur', u'bulldog', u'crow', u'demon', u'triumph'] [u'gunmen', u'threaten', u'mcdonald', u'staff'] [u'harrington', u'haa', u'lead', u'player', u'tiger', u'lurk'] [u'hodgson', u'seal', u'doubl', u'phillip', u'island'] [u'hodgson', u'take', u'race', u'phillip', u'island'] [u'hollingworth', u'prais', u'troop', u'famili', u'barbi'] [u'hollywood', u'take', u'seat', u'theatr'] [u'howard', u'hollingworth', u'meet', u'familii'] [u'human', u'shield', u'jordan', u'baghdad', u'expuls'] [u'impoverish', u'iraqi', u'scaveng', u'spoil'] [u'indian', u'polic', u'kill', u'suspect', u'milit', u'bombay'] [u'indonesian', u'believ', u'protest', u'iraq'] [u'investig', u'begin', u'fatal', u'gyrocopt', u'crash'] [u'iran', u'ambassador', u'critic', u'rumsfeld', u'strategi'] [u'iran', u'wont', u'regim', u'post', u'iraq'] [u'iraq', u'claim', u'coalit', u'plane', u'helicopt', u'shoot'] [u'iraq', u'deni', u'claim', u'atroc'] [u'iraqi', u'fisherman', u'danc', u'down', u'plane'] [u'iraqi', u'kurd', u'consolid', u'posit', u'near'] [u'iraqi', u'tactic', u'forese', u'plan'] [u'iraqi', u'show', u'saddam', u'chair', u'meet'] [u'iraq', u'kill', u'defect', u'soldier', u'dissid'] [u'iraq', u'reject', u'renew', u'food', u'resolut'] [u'iraq', u'say', u'arab', u'iraq', u'martyrdom'] [u'iraq', u'guerrilla', u'tactic', u'unexpect', u'hill'] [u'iraq', u'threaten', u'regular', u'suicid', u'attack'] [u'iraq', u'warn', u'suicid', u'attack'] [u'isra', u'troop', u'kill', u'youth', u'west', u'bank', u'wit'] [u'jagera', u'celebr', u'bora', u'restor'] [u'journalist', u'forc', u'forbid'] [u'kenya', u'down', u'australia', u'shock'] [u'killer', u'pneumonia', u'hold', u'hong', u'kong', u'sieg'] [u'kroger', u'aim', u'restor', u'lib', u'credibl'] [u'labor', u'declar', u'need', u'deficit'] [u'lewi', u'tyson', u'victor', u'fight', u'klitschko'] [u'liber', u'need', u'compass', u'doyl'] [u'ludicr', u'plan', u'threaten', u'human', u'right', u'council'] [u'kill', u'stab', u'attack', u'melbourn'] [u'mcgeechan', u'bow', u'nation', u'winner'] [u'melbourn', u'charg', u'murder'] [u'mexican', u'think', u'fight', u'bring'] [u'michael', u'jackson', u'hail', u'foolish', u'american'] [u'misfir', u'tomahawk', u'land', u'saudi', u'arabia'] [u'miss', u'children'] [u'miss', u'journalist', u'safe', u'baghdad'] [u'moon', u'ballad', u'win', u'dubai', u'world'] [u'blast', u'rock', u'baghdad', u'ministri'] [u'moya', u'stand', u'agassi', u'sixth', u'biscayn'] [u'museum', u'celebr', u'year', u'gogh'] [u'museum', u'start', u'engin', u'fremantl'] [u'nat', u'expect', u'leadership', u'tussl', u'hand'] [u'nazon', u'win', u'criterium', u'intern', u'stage'] [u'nicklaus', u'compet', u'master'] [u'charg', u'nightclub', u'brawl'] [u'evid', u'qaeda', u'link', u'forc', u'southern'] [u'excus', u'deficit', u'labor'] [u'trace', u'funni', u'fuel'] [u'nat', u'face', u'leadership', u'spill'] [u'student', u'level', u'microscop'] [u'paper', u'suspect', u'baghdad', u'base', u'journo', u'hold'] [u'cartel', u'deni', u'back'] [u'kill', u'injur', u'smash'] [u'opposit', u'call', u'troop', u'deploy', u'date'] [u'panther', u'upset', u'rooster', u'thriller'] [u'panther', u'upset', u'rooster', u'shark', u'match', u'bronco'] [u'patterson', u'encourag', u'shoot', u'elder'] [u'pentagon', u'pleas', u'emb', u'experi'] [u'perth', u'march', u'downpour', u'wettest', u'decad'] [u'pharaoh', u'stay', u'aliv', u'african', u'nation'] [u'polic', u'charg', u'woman', u'death'] [u'pope', u'fear', u'iraq', u'mean', u'religi'] [u'power', u'glori'] [u'power', u'glori'] [u'protest', u'urg', u'disrupt', u'anzac', u'servic'] [u'protest', u'renew', u'worldwid', u'public', u'fear', u'long'] [u'qualifi', u'euro', u'littl', u'clearer'] [u'road', u'train', u'roll', u'record', u'book'] [u'rumsfeld', u'accus', u'micromanag'] [u'saddam', u'lose', u'control', u'iraq', u'say', u'bush'] [u'saddam', u'near', u'prime', u'report'] [u'saddam', u'sack', u'command'] [u'africa', u'woman', u'nab', u'steal', u'babi', u'year'] [u'sailor', u'hail', u'best', u'game', u'switch'] [u'saudi', u'moran', u'bomber', u'citizen'] [u'scientist', u'track', u'impact', u'european', u'wasp'] [u'serb', u'polic', u'milosev', u'wife', u'russia'] [u'serena', u'overcom', u'slow', u'start', u'swamp', u'birthday', u'girl'] [u'sever', u'hailstorm', u'rip', u'northern'] [u'sever', u'storm', u'unroof', u'hous', u'north', u'coast'] [u'shark', u'cat', u'entertain', u'thriller'] [u'shark', u'match', u'bronco'] [u'shark', u'rock', u'spirit'] [u'shark', u'rock', u'spirit', u'power', u'glori'] [u'singapor', u'report', u'death', u'pneumonia', u'virus'] [u'korea', u'seek', u'sino', u'soviet', u'help', u'north'] [u'sprinbok', u'kenya', u'giant', u'kill', u'seven'] [u'springborg', u'take', u'bite', u'beatti'] [u'squar', u'west', u'bank', u'name', u'iraqi', u'suicid'] [u'storm', u'dump', u'rain', u'perth'] [u'suicid', u'blast', u'wound', u'israel'] [u'suicid', u'bomb', u'injur', u'israel'] [u'teacher', u'urg', u'minist', u'focus', u'aborigin'] [u'teen', u'show', u'pros', u'final', u'threesom'] [u'terrifi', u'iraq', u'famili', u'catch', u'confus', u'firefight'] [u'terror', u'grip', u'kashmir', u'villag', u'attack'] [u'thousand', u'turn', u'anti', u'protest'] [u'miss', u'western', u'iraq', u'reach', u'syria'] [u'thunderstorm', u'tear', u'southern'] [u'treatment', u'trigger', u'diabet', u'inhibit'] [u'truck', u'ram', u'soldier', u'kuwait', u'injur'] [u'turkey', u'issu', u'warn', u'iraq'] [u'injur', u'motorbik', u'accid'] [u'leav', u'kuwait', u'southern', u'iraq'] [u'union', u'help', u'abbott', u'say'] [u'sanction', u'attack', u'poll'] [u'britain', u'recruit', u'inspector', u'help'] [u'command', u'prais', u'australian', u'troop'] [u'cruis', u'missil', u'fall', u'saudi', u'arabia'] [u'death', u'toll', u'rise', u'marin'] [u'grind', u'forc', u'prepar', u'assault', u'baghdad'] [u'guilti', u'state', u'terror', u'iraqi', u'north'] [u'marin', u'fierc', u'nasiriyah', u'firefight'] [u'move', u'bolster', u'suppli', u'line', u'secur', u'iraq'] [u'offici', u'defens', u'strategi'] [u'overcom', u'sniper', u'guerrilla', u'kifl'] [u'plan', u'pound', u'suspect', u'taliban', u'hideout'] [u'reinforc', u'face', u'earlier', u'deploy'] [u'satellit', u'monitor', u'shuttl', u'mission'] [u'soldier', u'face', u'barrag', u'critic', u'turkey'] [u'soldier', u'iraq', u'ask', u'pray', u'bush'] [u'spokesman', u'lower', u'death', u'toll', u'suicid', u'attack'] [u'govt', u'consid', u'direct', u'debit', u'fin'] [u'oppn', u'critic', u'prison', u'releas', u'figur'] [u'violenc', u'ahead', u'zimbabw', u'opposit', u'deadlin'] [u'virus', u'death', u'toll', u'rise', u'world', u'wait', u'news'] [u'vote', u'begin', u'zimbabw', u'elect'] [u'plan', u'say', u'general'] [u'track', u'say', u'general'] [u'warplan', u'republican', u'guard', u'fuel', u'suppli'] [u'present', u'massiv', u'crisi', u'airlin'] [u'traumatis', u'iraqi', u'children', u'unicef'] [u'caus', u'civilian', u'crisi', u'invas', u'forc'] [u'west', u'clear', u'stomp'] [u'western', u'stage', u'beij', u'anti', u'march'] [u'wifi', u'futur', u'unclear', u'despit', u'asian', u'uptak'] [u'woodward', u'urg', u'warhors', u'mount', u'push'] [u'young', u'heart', u'seek', u'date', u'birthday'] [u'zimbabw', u'tour', u'england', u'ahead'] [u'zimbabw', u'vote', u'second', u'elect'] [u'strike', u'israel', u'budget', u'cut'] [u'year', u'custodi', u'stab', u'murder'] [u'accc', u'proceed', u'legal', u'action', u'fuel'] [u'oppn', u'introduc', u'tougher', u'sentenc', u'law'] [u'resid', u'ask', u'watch', u'water'] [u'actu', u'take', u'minimum', u'wage', u'fight'] [u'agassi', u'pressur', u'hewitt', u'world', u'number'] [u'age', u'hear', u'melbourn', u'today'] [u'offer', u'join', u'politician', u'aborigin'] [u'forc', u'imageri', u'analyst', u'gulf', u'bind'] [u'alleg', u'serial', u'killer', u'confess', u'prision'] [u'alli', u'advanc', u'iraq'] [u'art', u'centr', u'facelift'] [u'govern', u'guidelin', u'open', u'abus'] [u'atkinson', u'harrop', u'crown', u'aust', u'triathlon', u'champ'] [u'atsic', u'blame', u'indigen', u'health', u'unfair', u'robinson'] [u'aussi', u'prim', u'reclaim', u'test', u'spot'] [u'australian', u'professor', u'head', u'sar', u'team', u'hanoi'] [u'australian', u'soldier', u'charg', u'drug', u'offenc'] [u'australia', u'prepar', u'biolog', u'chemic', u'threat'] [u'weekend', u'coast', u'leagu', u'team'] [u'baildon', u'welcom', u'daylight', u'save'] [u'battl', u'basra', u'rag'] [u'beekeep', u'welcom', u'sticki', u'yield'] [u'bomb', u'residenti', u'area', u'baghdad', u'report'] [u'bridg', u'closur', u'continu', u'disrupt', u'rail', u'servic'] [u'britain', u'silent', u'conscienti', u'objector', u'claim'] [u'british', u'troop', u'chemic', u'warfar', u'equip'] [u'british', u'report', u'dead', u'northern', u'iraq'] [u'break', u'hill', u'salin', u'level', u'rise'] [u'bushfir', u'school', u'support', u'packag'] [u'cairn', u'swimmer', u'youngest', u'aussi', u'team'] [u'countri', u'doctor', u'boost'] [u'wide', u'plan', u'protect', u'koala'] [u'govt', u'waiv', u'insur', u'stamp', u'duti'] [u'wild', u'aerial', u'bait', u'nation', u'park'] [u'canada', u'record', u'fourth', u'death', u'killer', u'virus'] [u'caravan', u'park', u'win', u'tourism', u'award'] [u'chamber', u'back', u'tuna', u'farm', u'trial', u'plan'] [u'charg', u'upgrad', u'murder'] [u'children', u'court', u'demolit', u'face', u'delay'] [u'clark', u'reject', u'pressur', u'stand', u'asid'] [u'confer', u'leav', u'hotel', u'room'] [u'cook', u'backped', u'anti', u'comment'] [u'council', u'look', u'forward', u'aldoga', u'hous', u'talk'] [u'council', u'withdraw', u'residenti', u'land', u'sale'] [u'countri', u'hospit', u'surgeri', u'wait', u'list', u'rise'] [u'countri', u'hospit', u'wait', u'list', u'rise'] [u'dawkin', u'fin', u'grass'] [u'dawn', u'raid', u'pound', u'baghdad'] [u'decis', u'expect', u'delaney', u'appeal'] [u'delaney', u'allow', u'play'] [u'delaney', u'reliev', u'netbal', u'australia', u'decis'] [u'dengu', u'fever', u'case', u'increas'] [u'desert', u'grave', u'invad', u'sabri'] [u'doctor', u'say', u'sar', u'vaccin', u'long'] [u'doctor', u'better', u'treatment', u'cataract'] [u'downer', u'meet', u'offici', u'post', u'iraq'] [u'dri', u'fruit', u'grower', u'predict', u'exit', u'industri'] [u'driver', u'question', u'fatal', u'crash'] [u'educ', u'environ', u'liber'] [u'egypt', u'find', u'oldest', u'evid', u'mummif'] [u'elder', u'anti', u'activist', u'alleg', u'polic', u'assault'] [u'elura', u'worker', u'return', u'work', u'today'] [u'emerg', u'crew', u'search', u'scout'] [u'england', u'crush', u'ireland', u'seal', u'grand', u'slam'] [u'experiment', u'treatment', u'strike', u'blow'] [u'farmer', u'celebr', u'weekend', u'rain'] [u'flood', u'what'] [u'firm', u'offer', u'assur', u'plan', u'smelter'] [u'firm', u'offer', u'assur', u'plan', u'smelter'] [u'contact', u'republican', u'guard'] [u'flight', u'plan', u'consid', u'complex'] [u'saddam', u'aid', u'predict', u'rapid', u'downfal'] [u'fossil', u'offer', u'evid', u'dinosaur'] [u'fresh', u'blast', u'anti', u'aircraft', u'baghdad'] [u'friend', u'survivor', u'critic', u'soldier'] [u'frontlin', u'journalist', u'iraq', u'face', u'tough', u'time'] [u'general', u'frank', u'kuwait', u'trip'] [u'global', u'market', u'sober', u'fear', u'long', u'iraq'] [u'gold', u'work', u'start', u'later', u'year'] [u'graham', u'call', u'bush', u'decis', u'make'] [u'grant', u'season'] [u'grind', u'troop', u'close', u'baghdad'] [u'group', u'reject', u'mall', u'claim'] [u'hailstorm', u'damag', u'assess', u'tumut'] [u'hand', u'grenad', u'near', u'bosnian', u'coca', u'cola', u'plant'] [u'health', u'union', u'call', u'secur', u'upgrad'] [u'hill', u'keen', u'clear', u'privileg', u'committe'] [u'histor', u'review', u'death'] [u'hous', u'block', u'quarantin', u'sar', u'outbreak'] [u'hong', u'kong', u'hous', u'block', u'quarantin'] [u'hostel', u'hop', u'agreement', u'nurs', u'disput'] [u'huge', u'firebal', u'baghdad'] [u'illeg', u'fisherman', u'get', u'jail', u'term'] [u'indian', u'troop', u'kill', u'member', u'kashmir', u'rebel'] [u'inquest', u'begin', u'death'] [u'iraqi', u'endorsen', u'suicid', u'bomber', u'remark'] [u'iraqi', u'buy', u'anti', u'tank', u'missil', u'secret', u'report'] [u'iraqi', u'claim', u'tank', u'helicopt', u'destroy'] [u'iraqi', u'sell', u'coalit', u'food', u'british', u'soldier'] [u'iraqi', u'televis', u'bomb'] [u'iraqi', u'weapon', u'mass', u'destruct', u'hide'] [u'iraq', u'chief', u'spin', u'doctor', u'arm', u'media', u'battl'] [u'iraq', u'produc', u'laden', u'mubarak'] [u'commiss', u'ask', u'increas', u'minimum', u'wage'] [u'islam', u'jihad', u'claim', u'netanya', u'suicid', u'bomb'] [u'king', u'townsvill', u'croc', u'season'] [u'landhold', u'want', u'quick', u'resolut', u'drainag'] [u'lawyer', u'confid', u'minist', u'prevent', u'deport'] [u'liber', u'happi', u'adopt', u'petit'] [u'love', u'take', u'player', u'championship'] [u'turnout', u'mark', u'start', u'elect', u'africa'] [u'charg', u'petrol', u'station', u'robberi'] [u'charg', u'caryard', u'damag'] [u'face', u'extradit', u'hear', u'cambodian'] [u'face', u'court', u'land', u'council', u'offic', u'blaze'] [u'melbourn', u'firm', u'ban', u'spectrometr', u'export'] [u'meunier', u'lebouc', u'take', u'women', u'major', u'year'] [u'migrat', u'number', u'remain', u'static', u'govt'] [u'milosev', u'court', u'health', u'problem'] [u'milosev', u'daughter', u'say'] [u'minist', u'resign', u'put', u'heat', u'japanes'] [u'baxter', u'children', u'begin', u'school', u'today'] [u'pakistani', u'ralli', u'iraq'] [u'miss', u'nigeria', u'polit', u'ralli'] [u'arab', u'isra', u'ralli', u'support'] [u'moroccan', u'suicid', u'attack', u'anger', u'flare'] [u'motocross', u'accid', u'put', u'critic', u'condit'] [u'urg', u'minist', u'push', u'insur', u'claim'] [u'gambier', u'rais', u'cancer', u'foundat', u'fund'] [u'nat', u'leadership', u'challeng', u'heat'] [u'navi', u'look', u'suicid', u'boat'] [u'fire', u'peter', u'arnett', u'iraqi', u'interview'] [u'korea', u'issu', u'bond', u'boost', u'economi', u'defenc'] [u'anti', u'protest', u'organis', u'anzac', u'ralli'] [u'role', u'australia', u'post', u'saddam', u'downer'] [u'north', u'american', u'health', u'offici', u'worri'] [u'govt', u'grant', u'boost', u'nimbin'] [u'dentist', u'greater', u'incent'] [u'minist', u'urg', u'tourism', u'push'] [u'oppn', u'want', u'centrelink', u'chang', u'payment'] [u'author', u'win', u'fiction', u'prize', u'rugbi', u'tale'] [u'honour', u'hillari', u'year'] [u'suspend', u'loos', u'tobacco', u'sale'] [u'firm', u'consid', u'cliff', u'head', u'product'] [u'dead', u'injur', u'polish', u'match', u'violenc'] [u'pair', u'arrest', u'tavern', u'raid'] [u'palestinian', u'milit', u'send', u'suicid', u'bomber', u'iraq'] [u'pentagon', u'updat', u'offici', u'casualti', u'figur'] [u'philippoussi', u'major', u'davi', u'role', u'masur'] [u'polic', u'commission', u'welcom', u'minist'] [u'polic', u'crack', u'drink', u'drive'] [u'policeman', u'breath', u'difficulti', u'prompt'] [u'pooch', u'accus', u'tuck', u'lose', u'titl'] [u'powel', u'warn', u'syria', u'iran', u'drop', u'terror', u'support'] [u'power', u'restor', u'home'] [u'premier', u'open', u'esplanad', u'lagoon', u'develop'] [u'promina', u'float', u'despit', u'uncertainti'] [u'protest', u'stone', u'truck', u'carri', u'equip'] [u'protest', u'organis', u'deni', u'anzac', u'target'] [u'public', u'urg', u'shoot'] [u'farmer', u'drought', u'pest', u'control', u'fund'] [u'quinn', u'guest', u'nat', u'meet', u'amidst', u'coalit', u'talk'] [u'raaf', u'jet', u'bomb', u'target', u'south', u'baghdad'] [u'racq', u'hop', u'central', u'fuel', u'price', u'fall', u'soon'] [u'research', u'identifi', u'parkinson', u'treatment'] [u'resid', u'urg', u'enrol', u'elect'] [u'rocket', u'hit', u'kabul', u'peacekeep', u'complex'] [u'roof', u'tear', u'wild', u'northern', u'storm'] [u'rumour', u'uncertainti', u'rank'] [u'rumsfeld', u'defend', u'plan'] [u'confid', u'time', u'fisheri'] [u'saddam', u'promot', u'suicid', u'bomber', u'posthum'] [u'sar', u'claim', u'fourth', u'canadian', u'victim'] [u'scar', u'killer', u'virus', u'wash', u'hand', u'expert'] [u'school', u'clean', u'contract', u'criticis'] [u'scout', u'winch', u'safeti'] [u'search', u'underway', u'miss', u'tourist'] [u'senat', u'air', u'rural', u'doctor', u'shortag', u'concern'] [u'offend', u'face', u'extradit'] [u'shadow', u'uncertain', u'hang', u'ord'] [u'sign', u'time', u'grow', u'industri', u'estat'] [u'singapor', u'report', u'death', u'pneumonia', u'virus'] [u'kill', u'afghan', u'landmin', u'blast'] [u'teenag', u'charg', u'stab'] [u'srebrenica', u'massacr', u'survivor', u'return', u'buri'] [u'stoner', u'win', u'nation', u'leadership'] [u'suicid', u'bomber', u'gift', u'iraq', u'milit', u'group', u'say'] [u'suicid', u'bomber', u'head', u'iraq'] [u'support', u'eurobodalla', u'sister', u'citi', u'plan'] [u'syrian', u'arriv', u'mosul', u'fight', u'iraq'] [u'govt', u'urg', u'continu', u'dredg'] [u'tasmania', u'celebr', u'cultur', u'divers'] [u'tasmanian', u'troop', u'famili'] [u'technolog', u'project', u'fund', u'boost'] [u'tender', u'close', u'host', u'lifesav', u'championship'] [u'charg', u'high', u'tackl'] [u'troop', u'helicopt', u'crash'] [u'toughest', u'ahead'] [u'townsvill', u'host', u'wallabi', u'world', u'train'] [u'troop', u'await', u'assault', u'baghdad'] [u'truck', u'ram', u'soldier', u'kuwait'] [u'kill', u'missil', u'hit', u'farm', u'near', u'baghdad'] [u'arrest', u'brisban', u'airport', u'drug', u'seizur'] [u'claim', u'captur', u'iraqi', u'general', u'near', u'basra'] [u'commando', u'claim', u'success', u'basra', u'suburb'] [u'minist', u'condemn', u'cook', u'withdraw', u'push'] [u'union', u'protest', u'fin', u'assault', u'offici'] [u'union', u'welcom', u'childhood', u'educ', u'centr', u'reopen'] [u'conduct', u'pilbara', u'studi'] [u'truck', u'drink', u'water', u'iraq'] [u'chief', u'apologis', u'friend', u'incid'] [u'general', u'say', u'access', u'american', u'pow'] [u'marin', u'secur', u'southern', u'euphrat', u'river'] [u'marin', u'storm', u'town', u'target', u'chemic'] [u'public', u'accept', u'death', u'poll'] [u'releas', u'detail', u'massiv', u'iraqi'] [u'step', u'northern', u'bomb', u'campaign'] [u'target', u'potenti', u'terrorist', u'base'] [u'time', u'launch', u'save', u'iraqi', u'well'] [u'troop', u'strict', u'iraqi', u'suicid'] [u'warn', u'sharpen', u'syria', u'iraq', u'dilemma'] [u'plan', u'fail', u'arnett', u'tell', u'iraq'] [u'vandal', u'target', u'tingha', u'school'] [u'govt', u'urg', u'rail', u'line'] [u'govt', u'prais', u'shire', u'fight', u'elector'] [u'spark', u'north', u'coast', u'racial', u'discrimin'] [u'sar', u'forc', u'cancel', u'flight'] [u'wash', u'machin', u'spark', u'blaze'] [u'water', u'restrict', u'lift', u'south'] [u'welcom', u'hell', u'isra', u'tell', u'suicid', u'bomb'] [u'woodchip', u'green', u'assess', u'spark', u'appeal'] [u'zimbabw', u'polic', u'surround', u'mugab', u'home', u'opposit'] [u'say', u'deal', u'stave', u'bankruptci'] [u'aborigin', u'chang', u'local', u'waterway'] [u'govt', u'reap', u'windfal', u'land', u'develop'] [u'health', u'profession', u'walk'] [u'take', u'budget', u'prioriti', u'treasur'] [u'talk', u'poor', u'poll', u'result'] [u'confirm', u'stanbrok', u'sale', u'plan'] [u'expect', u'stanbrok', u'tender'] [u'anasta', u'fractur', u'sternum'] [u'ansett', u'levi', u'remain', u'cabinet'] [u'anti', u'protest', u'ban', u'canberra'] [u'ardil', u'blame', u'race', u'defeat', u'fate'] [u'armi', u'deni', u'rampant', u'drug', u'abus'] [u'master', u'organis'] [u'astro', u'help', u'rebuild', u'iraq'] [u'atsic', u'commission', u'want', u'justic', u'deal'] [u'aussi', u'king', u'coach', u'windi', u'lara', u'appoint'] [u'aust', u'shrug', u'sar'] [u'australia', u'readi', u'mysteri', u'virus', u'doctor'] [u'aust', u'foreign', u'polici', u'base', u'integr', u'case'] [u'bail', u'refus', u'baxter', u'detaine'] [u'bank', u'fail', u'boost', u'ord'] [u'bendigo', u'mayor', u'farewel', u'council'] [u'blaze', u'damag', u'nimmitabel', u'hotel'] [u'boucher', u'drop', u'protea', u'vice', u'captain'] [u'bridg', u'closur', u'spark', u'commut', u'woe'] [u'britain', u'power', u'strip', u'citizenship'] [u'britain', u'mirror', u'hire', u'fire', u'journalist'] [u'british', u'land', u'near', u'mosul', u'thwart', u'iraq', u'say'] [u'bulli', u'jail', u'murder', u'tormentor'] [u'bush', u'blame', u'saddam', u'iraqi', u'civilian', u'death'] [u'busi', u'urg', u'address', u'indigen', u'unemploy'] [u'health', u'portfolio', u'return', u'atsic'] [u'candid', u'urg', u'state', u'marina', u'develop', u'stanc'] [u'checkpoint', u'death', u'tragic'] [u'civoniceva', u'prepar', u'accept'] [u'claim', u'govt', u'want', u'increas', u'budget'] [u'club', u'confid', u'rule', u'lockout', u'plan'] [u'report', u'volker', u'case'] [u'colleg', u'welcom', u'athlet', u'track', u'fund'] [u'colombia', u'ban', u'shirt', u'lift', u'goal', u'celebr'] [u'comedi', u'steal', u'wartim', u'offic'] [u'communiti', u'input', u'seek', u'grandstand', u'name'] [u'concern', u'air', u'grape', u'grower', u'overbook'] [u'concern', u'air', u'volunt', u'firefight', u'cost'] [u'confer', u'focus', u'indigen', u'develop'] [u'cosgrov', u'disappoint'] [u'cost', u'heroin', u'addict', u'mount'] [u'council', u'chang', u'stock', u'grid', u'polici'] [u'council', u'consid', u'communiti', u'patrol'] [u'council', u'hold', u'back', u'electron', u'point', u'sale'] [u'council', u'reject', u'develop', u'hold', u'claim'] [u'council', u'seek', u'meet', u'minist', u'insur'] [u'counterfeit', u'money', u'break', u'hill'] [u'court', u'dismiss', u'appeal', u'land', u'clear'] [u'court', u'tell', u'confess', u'murder', u'inmat'] [u'cousinss', u'brownlow', u'hop', u'sink', u'week'] [u'cousin', u'scott', u'face', u'tribun'] [u'cuban', u'airlin', u'hijack', u'offici'] [u'cwealth', u'unsur', u'potenti', u'iraqi', u'refuge', u'influx'] [u'damag', u'linger', u'dose', u'ray', u'studi'] [u'death', u'toll', u'chines', u'blast', u'rise'] [u'dengu', u'fever', u'case', u'report', u'townsvill'] [u'doctor', u'urg', u'vulner', u'vaccin'] [u'dont', u'dumb', u'whale', u'valu', u'greenpeac', u'say'] [u'dont', u'kill', u'rooney', u'warn', u'england', u'player'] [u'downer', u'meet', u'powel', u'tour'] [u'downer', u'say', u'solv', u'north', u'korea', u'crisi'] [u'drought', u'stricken', u'farmer', u'explor', u'timber'] [u'east', u'timor', u'fragil', u'worker', u'return', u'gusmao'] [u'emerg', u'land', u'haze', u'report', u'qanta'] [u'england', u'insist', u'theyll', u'leav', u'turk', u'cold'] [u'environ', u'collabor', u'assist', u'sustain'] [u'export', u'slump', u'creat', u'trade', u'blow'] [u'farm', u'hand', u'legisl', u'parliament'] [u'feder', u'put', u'major', u'ahead', u'davi'] [u'firewe', u'caus', u'concern', u'bega', u'valley'] [u'fletcher', u'match', u'high', u'tackl'] [u'virus', u'contagi', u'think'] [u'fresh', u'strike', u'saddam', u'palac'] [u'fulham', u'rule', u'oleari', u'manag', u'post'] [u'fund', u'help', u'environ', u'recov', u'drought'] [u'lesbian', u'communiti', u'embrac', u'reform'] [u'germani', u'plan', u'green', u'world'] [u'goulburn', u'murray', u'water', u'urg', u'caravan', u'park'] [u'group', u'meet', u'discuss', u'wetland', u'futur'] [u'heavi', u'rain', u'doesnt', u'affect', u'water', u'suppli', u'qualiti'] [u'henri', u'latest', u'withdraw', u'duel', u'pool'] [u'histor', u'aramac', u'train', u'return', u'home'] [u'evacu', u'resid', u'virus', u'apart'] [u'hobbit', u'visionari', u'go', u'king', u'kong'] [u'hospit', u'ward', u'reopen'] [u'hostel', u'fund', u'spotlight', u'icpa', u'confer'] [u'howard', u'dodg', u'hobart', u'protest'] [u'human', u'shield', u'describ', u'sicken', u'scene'] [u'human', u'shield', u'remain', u'iraq', u'woman'] [u'improv', u'region', u'viabil', u'summit', u'agenda'] [u'independ', u'school', u'defend', u'anti', u'bulli', u'polici'] [u'indigen', u'unemploy', u'reach', u'crisi', u'welfar'] [u'indonesian', u'bomb', u'fail', u'pierc', u'pipelin'] [u'injur', u'gronkjaer', u'poulsen', u'pull', u'danish', u'squad'] [u'approv', u'beij', u'game', u'logo'] [u'iraqi', u'fighter', u'kill', u'checkpoint'] [u'iraqi', u'missil', u'fire', u'coalit', u'forc'] [u'iraq', u'report', u'fierc', u'fight', u'nasiriya'] [u'israel', u'say', u'syria', u'smuggl', u'arm', u'iraq'] [u'jabiru', u'futur', u'announc', u'today'] [u'japan', u'retract', u'korean', u'missil', u'claim'] [u'kamal', u'sack', u'bangladesh', u'coach'] [u'killer', u'threat', u'postpon', u'mayor', u'china', u'trip'] [u'kiwi', u'campaign', u'snare', u'olonga', u'club', u'team'] [u'lack', u'desir', u'hold', u'safin', u'coach', u'say'] [u'lack', u'fund', u'drought', u'scheme'] [u'lara', u'reappoint', u'west', u'indi', u'captain'] [u'lawyer', u'give', u'reunit', u'famili'] [u'leagu', u'club', u'meet', u'postpon'] [u'leaney', u'miss', u'master', u'berth'] [u'leed', u'hop', u'chairman'] [u'lib', u'claim', u'willoughbi', u'recount', u'order'] [u'lib', u'wont', u'contest', u'legisl', u'council', u'elect'] [u'lomu', u'miss', u'week', u'kidney', u'problem'] [u'love', u'take', u'player', u'championship'] [u'charg', u'bank', u'robberi'] [u'face', u'extort', u'charg', u'bail', u'renew'] [u'fin', u'explos', u'firearm'] [u'hold', u'peopl', u'hostag', u'plane', u'cuba'] [u'maralinga', u'clean', u'safe', u'possibl', u'scientif'] [u'masur', u'warn', u'sweden', u'form', u'hewitt'] [u'matthew', u'hit', u'salari', u'critic'] [u'mayor', u'confid', u'coast', u'continu', u'host'] [u'melbourn', u'osaka', u'sailor', u'rescu', u'hit'] [u'mexico', u'presid', u'secur', u'council'] [u'east', u'welcom', u'humanitarian', u'support', u'cross'] [u'millar', u'undergo', u'surgeri'] [u'miss', u'teen', u'famili', u'meet', u'polic'] [u'moora', u'consid', u'basin', u'stop', u'flood'] [u'fire', u'spark', u'lightn'] [u'reduc', u'japanes', u'beef', u'tariff'] [u'say', u'nomin', u'chair', u'hill', u'probe'] [u'urg', u'nat', u'leader', u'coalit'] [u'nauru', u'presid', u'suffer', u'heart', u'attack'] [u'navi', u'ship', u'return', u'home'] [u'say', u'controversi', u'wont', u'overshadow', u'work'] [u'saleyard', u'centr', u'open', u'friday'] [u'yorker', u'admit', u'reveng', u'kill', u'grocer'] [u'charg', u'natrass', u'maller', u'affair'] [u'doctor', u'afraid', u'darwin', u'miss', u'bulk'] [u'korea', u'fire', u'anti', u'ship', u'missil'] [u'polic', u'servic', u'scrutini'] [u'deni', u'anti', u'stanc', u'embarrass'] [u'iaea', u'check', u'nuclear', u'program', u'elbaradei'] [u'orica', u'take', u'ownership'] [u'palac', u'chairman', u'order', u'player', u'clearout'] [u'parliamentari', u'stoush', u'nambour', u'hospit'] [u'pink', u'snapper', u'shark', u'bay', u'eastern', u'gulf'] [u'plan', u'alcohol', u'summit', u'welcom'] [u'polic', u'discov', u'wimmera', u'burglari'] [u'polic', u'search', u'bushland', u'clue', u'man', u'death'] [u'powel', u'note', u'saddam', u'human', u'right', u'abus'] [u'presid', u'chile', u'central', u'bank', u'resign', u'amid'] [u'pressur', u'mount', u'council', u'water', u'conserv'] [u'public', u'manag', u'program'] [u'summit', u'postpon', u'sar', u'threat'] [u'quarantin', u'measur', u'boost', u'sar', u'fight'] [u'rail', u'line', u'get', u'major', u'revamp'] [u'ranger', u'recruit', u'turkish', u'striker', u'alpolfo'] [u'record', u'water', u'storag'] [u'resid', u'urg', u'support', u'come', u'rail', u'servic'] [u'william', u'win', u'boot'] [u'rumour', u'stanbrok', u'sale', u'attract', u'huge', u'buyer'] [u'saddam', u'deni', u'famili', u'member', u'flee', u'abroad'] [u'find', u'irrevers', u'unfit', u'screen'] [u'rural', u'confid', u'highest', u'australia', u'survey'] [u'dismiss', u'suggest', u'poor', u'moral'] [u'show', u'film', u'irrevers'] [u'schnyder', u'slide', u'continu', u'dechi', u'advanc'] [u'school', u'group', u'put', u'weight', u'fundrais', u'fight'] [u'scott', u'latest', u'player', u'face', u'tribun'] [u'senior', u'plan', u'offic', u'appoint', u'kimberley'] [u'seven', u'face', u'opal', u'squad'] [u'snake', u'bite', u'put', u'hospit'] [u'southcorp', u'lose'] [u'state', u'trial', u'reduc', u'feral', u'number'] [u'storm', u'lose', u'player', u'injuri'] [u'super', u'loss', u'pressur', u'cost', u'hous'] [u'survey', u'find', u'smaller', u'forest', u'area'] [u'swazi', u'correspond', u'play', u'safe', u'safe'] [u'teenag', u'charg', u'offenc', u'grant', u'bail'] [u'time', u'run', u'drought', u'relief', u'govt'] [u'saudi', u'minist', u'urg', u'saddam', u'quit'] [u'train', u'derail', u'inquiri', u'begin', u'today'] [u'tranquilis', u'prompt', u'shoot', u'scare'] [u'boy', u'discharg', u'hospit', u'sar', u'scare'] [u'urg', u'friend', u'trade', u'europ'] [u'food', u'program', u'face', u'massiv', u'iraq', u'oper'] [u'assur', u'turkey', u'kirkuk', u'hold'] [u'claim', u'victori', u'ansar', u'islam'] [u'stock', u'tick', u'weigh', u'sentiment'] [u'measur', u'prevent', u'checkpoint', u'shoot'] [u'warplan', u'bomb', u'iraq', u'citi', u'kirkuk'] [u'turn', u'limit', u'past', u'master', u'champion'] [u'govt', u'attack', u'upper', u'hous', u'reform', u'comment'] [u'govt', u'consid', u'drug', u'strategi'] [u'miner', u'winner', u'year'] [u'rule', u'budget', u'boost'] [u'waterfal', u'train', u'speed', u'inquiri', u'tell'] [u'weather', u'world', u'event', u'take', u'toll', u'abalon'] [u'wildcat', u'burston', u'name', u'nbls', u'improv', u'player'] [u'wildcat', u'burtson', u'name', u'nbls', u'improv', u'player'] [u'wilkinson', u'better', u'woodward'] [u'win', u'lotto', u'ticket', u'claim'] [u'woman', u'plead', u'guilti', u'murder', u'children'] [u'wood', u'confid', u'readi', u'master'] [u'world', u'event', u'pressur', u'seafood', u'sale'] [u'hit', u'major', u'hurdl', u'tariff', u'reduct'] [u'budget', u'expect'] [u'need', u'disast', u'respons', u'hospit', u'chief'] [u'oppn', u'attack', u'close', u'bushfir', u'hear'] [u'clamp', u'player', u'gambl'] [u'introduc', u'tough', u'anti', u'gambl', u'code'] [u'airport', u'custom', u'detain', u'euthanasia', u'doctor'] [u'albani', u'guilti'] [u'alleg', u'aust', u'terrorist', u'free', u'home', u'pakistan'] [u'ord', u'flat', u'retail', u'figur', u'releas'] [u'rule', u'stanbrok', u'sale'] [u'ancient', u'indigen', u'item', u'return', u'pilbara'] [u'angler', u'look', u'quick', u'restock'] [u'annual', u'coast', u'airport', u'taxi', u'pick'] [u'arab', u'street', u'rile', u'checkpoint', u'shoot'] [u'archaeolog', u'begin', u'chines', u'miner'] [u'assault', u'baghdad', u'hour', u'report'] [u'astronom', u'pinpoint', u'huge', u'cosmic', u'blast'] [u'atsic', u'leader', u'attack', u'ruddock', u'raid'] [u'australia', u'sweden', u'rekindl', u'rivalri'] [u'bass', u'strait', u'skier', u'abort', u'latest', u'attempt'] [u'bat', u'leav', u'mark', u'transport', u'oper'] [u'bid', u'flow', u'stanbrok', u'pastor', u'compani'] [u'bolivia', u'mudslid', u'kill', u'fear', u'buri', u'aliv'] [u'breakthrough', u'floodgat', u'issu'] [u'british', u'stage', u'mysteri', u'rescu', u'oper', u'iraq'] [u'bronco', u'player', u'look', u'swain'] [u'burk', u'rule', u'crusad', u'clash'] [u'bus', u'run', u'eas', u'transport', u'delay'] [u'cabinet', u'endors', u'cole', u'recommend'] [u'crackdown', u'illeg', u'dvds'] [u'govt', u'compromis', u'jetti', u'extens'] [u'patient', u'pawn', u'hospit'] [u'perman', u'duck', u'quail', u'shoot'] [u'campaign', u'begin', u'maryborough', u'elect'] [u'campbel', u'get', u'ministeri', u'posit'] [u'canadian', u'death', u'toll', u'sar', u'rise'] [u'accid', u'victim', u'charg', u'break'] [u'burn', u'speed', u'chase'] [u'carr', u'defend', u'femal', u'represent', u'cabinet'] [u'cash', u'rate', u'stand'] [u'cathol', u'parish', u'hold', u'ritual', u'apolog'] [u'street', u'close', u'weekend'] [u'central', u'baghdad', u'bombard', u'defenc', u'pound'] [u'china', u'permit', u'team', u'visit', u'guangdong'] [u'choir', u'cancel', u'china', u'tour', u'mysteri', u'fear'] [u'critic', u'volker', u'case'] [u'coalit', u'lose', u'iraqi', u'heart', u'human', u'shield'] [u'cobar', u'unrest', u'state'] [u'communiti', u'get', u'strike', u'miner'] [u'concern', u'air', u'possibl', u'bridg', u'delay'] [u'concern', u'regul', u'cost', u'tuna', u'job'] [u'confer', u'tell', u'australia', u'fear', u'outsid', u'world'] [u'council', u'help', u'childcar', u'centr'] [u'council', u'reject', u'corrupt', u'claim'] [u'counsel', u'student', u'distress'] [u'cousin', u'appeal', u'suspens'] [u'cricket', u'chat', u'give', u'iraq', u'drama', u'pitch'] [u'crime', u'squad', u'north', u'west'] [u'cultur', u'icon', u'protect', u'iraqi', u'weapon'] [u'dengu', u'fever', u'spread', u'consid', u'inevit'] [u'detain', u'journalist', u'safe', u'hill'] [u'diesel', u'spill', u'shut', u'western', u'highway'] [u'disabl', u'servicemen', u'women', u'meet', u'pension'] [u'diseas', u'put', u'question', u'mark', u'arafura', u'game'] [u'downer', u'meet', u'bush', u'washington', u'tour'] [u'cut', u'expenditur', u'world', u'fallout'] [u'elder', u'die', u'farm', u'accid'] [u'hadji', u'diouf', u'win', u'african', u'footbal', u'year'] [u'farmer', u'question', u'irrig'] [u'destroy', u'shoe', u'factori'] [u'firefight', u'look', u'unifi', u'approach'] [u'fish', u'test', u'contamin'] [u'flinder', u'port', u'review', u'plan', u'port', u'upgrad'] [u'editor', u'file', u'bias', u'suit', u'post'] [u'forum', u'address', u'skateboard', u'concern'] [u'fox', u'target', u'bait', u'program'] [u'frank', u'wont', u'rush', u'battl', u'baghdad', u'analyst'] [u'fund', u'cut', u'equestrian', u'prepar'] [u'gene', u'regul', u'okay', u'modifi', u'canola'] [u'canola', u'impact', u'govt'] [u'virus', u'control', u'mice', u'research'] [u'goldfield', u'top', u'number', u'syring', u'user'] [u'govt', u'avoid', u'issu', u'control', u'iraq', u'rudd'] [u'govt', u'restrict', u'disappoint', u'miner'] [u'govt', u'shut', u'gate', u'hors', u'trial'] [u'govt', u'urg', u'improv', u'profession', u'indemn', u'cover'] [u'graviti', u'discoveri', u'centr', u'build', u'gingin'] [u'green', u'unveil', u'pay', u'matern', u'leav', u'scheme'] [u'groundwat', u'level', u'monitor'] [u'group', u'hop', u'eas', u'winemak', u'power', u'cost'] [u'group', u'tri', u'determin', u'peninsula', u'rail', u'network'] [u'guard', u'grand', u'final', u'seri', u'goorjian'] [u'guilti', u'verdict', u'put', u'policeman', u'review'] [u'harwood', u'declar', u'aust', u'match'] [u'hawthorn', u'everitt', u'suspend', u'match'] [u'health', u'test', u'offer', u'exhaust', u'stack', u'neighbour'] [u'hear', u'child', u'cruelti', u'charg', u'continu'] [u'heavi', u'bombard', u'shake', u'baghdad'] [u'leadership', u'struggl', u'sar', u'panic'] [u'hospit', u'recruit', u'chief', u'execut'] [u'hous', u'deliber', u'polic'] [u'huge', u'cosmic', u'burst', u'delight', u'astronom'] [u'hull', u'launch', u'farm', u'safeti', u'campaign'] [u'hydro', u'deni', u'cloud', u'seed', u'dampen', u'tourism'] [u'wife', u'forc', u'mcgrath', u'home'] [u'investig', u'show', u'poor', u'answer', u'rate', u'govt'] [u'iraq', u'throw', u'forc', u'battl'] [u'iraqi', u'fire', u'najaf', u'shrine'] [u'iraq', u'say', u'beat', u'najaf', u'attack', u'give', u'bomb', u'toll'] [u'israel', u'stag', u'tulkarm', u'assault'] [u'teacher', u'train', u'boost'] [u'king', u'mull', u'windi', u'offer'] [u'kiwi', u'drop', u'mcmillan', u'lankan', u'tour'] [u'knock', u'northam', u'liquorland', u'plan'] [u'land', u'offer', u'goodwil', u'tradit', u'owner'] [u'lebouc', u'sorenstam', u'world', u'championship'] [u'lib', u'secur', u'south', u'coast', u'seat'] [u'local', u'govt', u'welcom', u'black', u'spot', u'fund'] [u'local', u'govt', u'debat', u'servic', u'fund', u'review'] [u'lockyer', u'meyer', u'confid', u'play', u'despit'] [u'accus', u'mistreat', u'hors'] [u'injur', u'arrest', u'front', u'court'] [u'moon', u'court', u'outcom'] [u'sentenc', u'year', u'syring', u'hold'] [u'mcisaac', u'join', u'red'] [u'mine', u'compani', u'address', u'worker', u'concern'] [u'miss', u'sweep', u'polic'] [u'miss', u'journalist', u'safe', u'jordan'] [u'mission', u'australia', u'lose', u'staff'] [u'molik', u'advanc', u'seed', u'dokic', u'dump', u'florida'] [u'govt', u'fund', u'urg', u'blayney', u'sealink', u'project'] [u'declin', u'right', u'stunt'] [u'make', u'indi', u'compo'] [u'mysteri', u'virus', u'worri', u'flight', u'staff'] [u'nasiriyah', u'citizen', u'afraid', u'rise', u'saddam'] [u'grade', u'union', u'team', u'darl', u'down'] [u'board', u'help', u'plan', u'bendigo', u'fair', u'overhaul'] [u'news', u'journalist', u'expel', u'iraq'] [u'news', u'unsur', u'report', u'futur', u'iraq'] [u'northern', u'radar', u'switch'] [u'selector', u'eye', u'origin', u'candid'] [u'transport', u'head', u'roll'] [u'govt', u'commit', u'alic', u'art', u'space'] [u'arrest', u'sydney', u'anti', u'ralli'] [u'pastor', u'sale', u'subject', u'scrutini', u'mayor'] [u'paul', u'moran', u'lay', u'rest', u'adelaid'] [u'peac', u'real', u'iraq'] [u'plan', u'start', u'earli', u'council', u'budget'] [u'round', u'critic'] [u'polic', u'continu', u'probe', u'servic', u'station', u'blaze'] [u'polic', u'death', u'threat', u'premedit', u'court'] [u'polic', u'issu', u'warn', u'buy', u'steal', u'properti'] [u'polic', u'seek', u'bushwalk', u'report', u'bodi'] [u'polic', u'spray', u'sydney', u'anti', u'protest'] [u'polic', u'threaten', u'mass', u'arrest', u'student', u'march'] [u'poor', u'prognosi', u'state', u'feder', u'health', u'deal'] [u'portland', u'host', u'region', u'forestri', u'invest'] [u'portug', u'upbeat', u'ahead', u'macedonia', u'clash'] [u'powel', u'carri', u'billion', u'turkey', u'back'] [u'powel', u'renew', u'push', u'turkish', u'support'] [u'rescu', u'famili', u'celebr'] [u'primari', u'produc', u'form', u'market', u'group'] [u'properti', u'portfolio', u'expect', u'attract', u'strong'] [u'qanta', u'plug', u'road', u'safeti', u'plan'] [u'qanta', u'pack', u'mask', u'guard', u'sar'] [u'predict', u'drop', u'countri', u'fuel', u'price'] [u'rail', u'brochur', u'scrap', u'townsvill', u'omiss'] [u'rail', u'tunnel', u'plan', u'state', u'agenda'] [u'rain', u'lead', u'can', u'river', u'fish', u'kill'] [u'rais', u'teenag', u'poverti', u'trap', u'acoss'] [u'recoveri', u'underway', u'bear', u'florentia'] [u'regul', u'back', u'canola', u'applic'] [u'religi', u'sect', u'leader', u'face', u'court', u'charg'] [u'renew', u'hope', u'pcyc'] [u'resid', u'push', u'better', u'recept'] [u'retail', u'say', u'confus', u'rife', u'easter', u'trade'] [u'retail', u'figur', u'remain', u'subdu'] [u'reward', u'offer', u'miss', u'geelong'] [u'riverland', u'local', u'join', u'rural', u'leadership', u'program'] [u'ruddock', u'deni', u'hand', u'atsic', u'raid'] [u'russia', u'send', u'navi', u'arabian', u'report'] [u'sar', u'fear', u'forc', u'exchang', u'student', u'china'] [u'sar', u'kill', u'china', u'offici'] [u'scheme', u'attract', u'world', u'lead', u'asthma', u'research'] [u'school', u'bar', u'return', u'rugbi', u'boy', u'sar'] [u'screen', u'measur', u'tighten', u'sar'] [u'search', u'miss', u'sydney', u'focus', u'bushland'] [u'shepparton', u'mourn', u'nephew', u'dead', u'iraq'] [u'shirvington', u'confid', u'retain', u'nation', u'titl'] [u'subdivis', u'plan', u'huge', u'man', u'valley', u'properti'] [u'sugar', u'council', u'welcom', u'greater', u'industri'] [u'tasmanian', u'famili', u'relat', u'iraq', u'meet'] [u'tasmanian', u'student', u'end', u'anti', u'hunger', u'strike'] [u'test', u'test'] [u'thousand', u'fish', u'releas', u'river'] [u'tiger', u'seek', u'leav', u'appeal', u'odonnel', u'suspens'] [u'timor', u'treati', u'come', u'forc'] [u'seed', u'dokic', u'dump', u'florida', u'clay'] [u'tough', u'measur', u'greet', u'sar', u'risk', u'visitor'] [u'train', u'disast', u'inquiri', u'examin', u'driver', u'role'] [u'pilot', u'rescu', u'plane', u'crash'] [u'mission', u'studi', u'secur', u'qasr'] [u'airport', u'quarantin', u'plane', u'sar', u'scare'] [u'defend', u'soldier', u'iraq', u'civilian', u'kill'] [u'destroy', u'republican', u'guard', u'divis', u'iraq', u'deni'] [u'forc', u'bridg', u'tigri', u'report'] [u'forc', u'secur', u'karbala', u'report'] [u'investor', u'take', u'upbeat', u'look'] [u'militari', u'begin', u'examin', u'bodi'] [u'investig', u'year', u'mortar', u'death'] [u'troop', u'attack', u'fedayeen', u'najaf'] [u'troop'] [u'turkey', u'agre', u'suppli', u'iraq', u'troop'] [u'vanguard', u'baghdad', u'militari'] [u'vanuatu', u'face', u'indonesian', u'backlash', u'papua'] [u'vieira', u'barthez', u'play', u'israel'] [u'virus', u'fear', u'put', u'mask', u'choir', u'china', u'tour'] [u'planner', u'draw', u'wagon', u'rumsfeld'] [u'wast', u'dump', u'critic', u'clutch', u'straw', u'minist'] [u'water', u'suppli', u'deal', u'move', u'closer', u'realiti'] [u'water', u'woe', u'resolv'] [u'women', u'test', u'sar'] [u'wimmera', u'applic', u'assess'] [u'wit', u'say', u'miss', u'woman', u'suspect'] [u'world', u'event', u'forc', u'lobster', u'price'] [u'digger', u'celebr', u'birthday'] [u'report', u'find', u'gun', u'homicid'] [u'jazeera', u'pull', u'plug', u'ban'] [u'jazeera', u'suspend', u'broadcast', u'iraq'] [u'ord', u'surg', u'intern', u'gain'] [u'qaeda', u'suspect', u'captur', u'north', u'west', u'pakistan'] [u'anderson', u'give', u'support', u'decis'] [u'angler', u'catch', u'fish', u'survey'] [u'anti', u'protest', u'downplay', u'small', u'turnout'] [u'armstrong', u'head', u'dauphin', u'liber', u'cast'] [u'auckland', u'chang', u'tactic', u'highland', u'summit'] [u'swim', u'stand', u'volker'] [u'australia', u'back', u'role', u'post', u'iraq'] [u'australian', u'bomber', u'strike', u'baghdad'] [u'aust', u'swim', u'stand', u'volker'] [u'aviat', u'mainten', u'train', u'centr', u'plan'] [u'bateman', u'bodi', u'identifi'] [u'blaze', u'destroy', u'popular', u'roadhous'] [u'bomb', u'rain', u'baghdad', u'airport'] [u'brown', u'condemn', u'cwealth', u'cluster', u'bomb', u'stanc'] [u'bureau', u'expect', u'increas', u'rainfal'] [u'bushfir', u'inquiri', u'take', u'public', u'submiss'] [u'bushfir', u'legisl', u'chang', u'caus', u'problem'] [u'homeland', u'secur', u'depart'] [u'victoria', u'remain', u'free', u'crop'] [u'plung', u'canal', u'woman', u'drown'] [u'chamber', u'welcom', u'illawarra', u'minist', u'appoint'] [u'child', u'tortur', u'alleg', u'detail', u'court'] [u'china', u'assist', u'north', u'korea', u'mediat', u'downer'] [u'citrus', u'grower', u'look', u'upper', u'hous', u'appoint'] [u'club', u'urg', u'join', u'liquor', u'restrict', u'trial'] [u'coalit', u'advanc', u'baghdad'] [u'coalit', u'push', u'closer', u'baghdad'] [u'coal', u'price', u'signal', u'loss'] [u'convict', u'polit', u'assassin', u'fail', u'appeal'] [u'council', u'clear', u'crow', u'wed'] [u'council', u'sacrific', u'build', u'pool'] [u'council', u'pass', u'jetti', u'restrict'] [u'council', u'tool', u'lessen', u'valuat', u'rise'] [u'court', u'hear', u'close', u'argument', u'mayor', u'stalk'] [u'court', u'overturn', u'surf', u'accid', u'compo'] [u'crean', u'accus', u'govt', u'deceit'] [u'crean', u'support', u'bushfir', u'inquiri'] [u'crean', u'turn', u'health', u'tonic', u'poll', u'malais'] [u'cricket', u'talk', u'save', u'iraq', u'human', u'shield'] [u'crossbow', u'shoot', u'shock', u'student'] [u'cruiseboat', u'affect', u'water', u'level'] [u'dairi', u'farmer', u'gain', u'bargain', u'power'] [u'dalbi', u'glide', u'easter'] [u'dechi', u'cargil', u'sarasota'] [u'defenc', u'strategist', u'warn', u'threat', u'relat'] [u'defend', u'iraq', u'sacr', u'duti', u'arab'] [u'doubt', u'cast', u'food', u'voucher', u'idea'] [u'drought', u'take', u'toll', u'lyche', u'grower'] [u'dublin', u'riot', u'polic', u'arrest', u'oppon'] [u'educ', u'chief', u'visit', u'teacher', u'secur'] [u'effenberg', u'quit', u'wolfsburg', u'immedi', u'effect'] [u'elect', u'fever', u'hit', u'maryborough'] [u'england', u'cricket', u'chief', u'spend'] [u'environ', u'minist', u'wilder'] [u'euro', u'franc', u'close', u'final', u'england'] [u'europ', u'broadcast', u'limit', u'iraq', u'report'] [u'everitt', u'miss', u'match', u'scott', u'clear'] [u'nomin', u'council', u'elect'] [u'fieri', u'springbok', u'dalton', u'retir'] [u'fifth', u'sar', u'patient', u'die', u'singapor'] [u'fight', u'intesifi', u'coalit', u'near', u'baghdad'] [u'strike', u'island', u'meet'] [u'inquiri', u'chairman', u'tour', u'burn', u'area'] [u'flood', u'mudslid', u'indonesian', u'island', u'claim'] [u'food', u'voucher', u'instead', u'cash', u'legal', u'worm'] [u'aust', u'militari', u'command', u'believ', u'saddam'] [u'forum', u'discuss', u'drainag', u'project'] [u'girl', u'isol', u'possibl', u'sar'] [u'girl', u'quarantin', u'suspect', u'sar'] [u'goldfield', u'policeman', u'charg', u'burglari'] [u'golf', u'club', u'member', u'debt', u'reduct', u'plan'] [u'govern', u'neglect', u'indigen', u'affair', u'atsic'] [u'green', u'light', u'australian', u'ralli'] [u'green', u'triangl', u'timber', u'industri', u'grow'] [u'grind', u'troop', u'alert', u'wmds'] [u'group', u'like', u'urg', u'public', u'access', u'pastor'] [u'group', u'protest', u'wast', u'plan', u'unhappi', u'batchelor'] [u'group', u'trial', u'brumbi', u'captur', u'plan'] [u'high', u'rate', u'mental', u'ill', u'drug', u'women'] [u'report', u'virus', u'case', u'death'] [u'hospit', u'deni', u'turn', u'away', u'urgent', u'patient'] [u'hotel', u'put', u'auction', u'hold'] [u'howard', u'upbeat', u'progress', u'iraq', u'oper'] [u'revis', u'slow', u'over', u'rule'] [u'indonesia', u'school', u'drug', u'user', u'offici'] [u'injur', u'tendulkar', u'dravid', u'dhaka', u'seri'] [u'insur', u'compani', u'apologis', u'handl'] [u'iran', u'khatami', u'warn', u'iraq', u'fuel', u'extrem'] [u'iraq', u'deni', u'troop', u'make', u'progress'] [u'irrig', u'cost', u'tobacco', u'grape', u'industri'] [u'israel', u'confirm', u'palestinian', u'forc'] [u'israel', u'poison', u'crop', u'bedouin', u'squatter'] [u'israel', u'releas', u'detain', u'palestinian'] [u'japanes', u'whale', u'fleet', u'return', u'home', u'catch'] [u'kalli', u'bangladesh', u'tour'] [u'king', u'crown', u'winner', u'amaz', u'comeback', u'game'] [u'king', u'draw', u'blood', u'minut', u'comeback'] [u'king', u'wildcat', u'clash', u'final'] [u'knive', u'replac', u'gun', u'weapon', u'choic', u'report'] [u'labor', u'odd', u'gallipoli', u'visit'] [u'labor', u'warn', u'aussi', u'gallipoli', u'pilgrimag'] [u'legal', u'brothel', u'healthier', u'premier'] [u'lifesav', u'oper', u'set', u'surgeri', u'benchmark'] [u'local', u'eyesor', u'demolish'] [u'local', u'disput', u'skate', u'park', u'site'] [u'water', u'prompt', u'conting', u'plan'] [u'manag', u'plan', u'lake', u'conjola'] [u'die', u'fatal', u'accid'] [u'lose', u'appeal', u'murder', u'convict'] [u'take', u'protest', u'offic'] [u'marsh', u'season', u'tumour', u'oper'] [u'mcgrath', u'return', u'caribbean', u'wife'] [u'mcgrath', u'wife', u'ill', u'recurr', u'breast'] [u'meet', u'review', u'park', u'manag', u'fire'] [u'million', u'pay', u'outback', u'properti'] [u'miner', u'enter', u'strike'] [u'missil', u'down', u'warplan', u'iraq', u'report'] [u'missil', u'hit', u'baghdad', u'market', u'kill'] [u'infect', u'dengu', u'outbreak'] [u'mose', u'phelp', u'flag', u'foreign', u'flavor'] [u'motorcyclist', u'airlift', u'adelaid'] [u'mourner', u'attend', u'state', u'funer', u'prison', u'chaplain'] [u'gambier', u'get', u'shop', u'centr', u'design'] [u'murder', u'suspect', u'lead', u'polic', u'remain'] [u'mysteri', u'virus', u'test', u'week', u'away', u'health'] [u'napl', u'home', u'pizza', u'desper', u'seek', u'pizza'] [u'nation', u'trust', u'member', u'form', u'breakaway', u'group'] [u'bill', u'problem'] [u'mayor', u'high', u'hop', u'bendigo'] [u'water', u'polic', u'improv', u'respons', u'time'] [u'cri', u'victori', u'aust', u'militari'] [u'roll', u'scam'] [u'ofarrel', u'return', u'lib', u'deputi'] [u'pacif', u'countri', u'quarantin', u'sar'] [u'peel', u'region', u'growth', u'tip', u'highest'] [u'perman', u'water', u'restrict', u'possibl'] [u'perth', u'woman', u'clear', u'sar'] [u'petrol', u'station', u'report', u'price', u'dont', u'fall'] [u'pierc', u'advanc', u'florida'] [u'open', u'railway', u'line'] [u'open', u'wilder', u'railway'] [u'polic', u'drug', u'syndic', u'arrest', u'south'] [u'polic', u'food', u'mooch', u'hitchhik', u'monkey'] [u'polic', u'seek', u'help', u'solv', u'pharmaci', u'theft'] [u'polic', u'truck', u'crash', u'victim'] [u'popul', u'stat', u'citi', u'coast'] [u'port', u'expans', u'project', u'cost', u'ratepay'] [u'port', u'approv', u'strand', u'wheat', u'shipment'] [u'portsmouth', u'leicest', u'close', u'promot'] [u'pressur', u'mount', u'miner', u'invest'] [u'privat', u'hospit', u'nurs', u'rise'] [u'qanta', u'waiv', u'sar', u'chang'] [u'nat', u'accus', u'fail', u'duti'] [u'quad', u'bike', u'rider', u'die', u'crash'] [u'rare', u'shark', u'townsvill'] [u'recov', u'track', u'augusta'] [u'cross', u'tell', u'horror'] [u'resid', u'parti', u'water', u'spill', u'darl'] [u'rockhampton', u'plead', u'guilti', u'hijack'] [u'rock', u'thrower', u'catch'] [u'rooney', u'get', u'sven', u'seal', u'approv'] [u'rooster', u'prop', u'tupou', u'break'] [u'japanes', u'intellig', u'mission', u'court'] [u'govt', u'fund', u'school', u'choir', u'trip'] [u'santini', u'mix', u'feel', u'franc', u'victori'] [u'schumach', u'eager', u'track', u'brazil'] [u'search', u'miss', u'holiday', u'maker', u'scale'] [u'second', u'stage', u'communiti', u'centr', u'work', u'complet'] [u'seven', u'trade', u'good', u'busi', u'govt'] [u'seven', u'share', u'jump', u'manag', u'chang'] [u'seventh', u'sar', u'patient', u'die', u'canada', u'report'] [u'shire', u'urg', u'govt', u'suspend', u'crop'] [u'shockwav', u'asia', u'virus', u'hit', u'tourism'] [u'sim', u'reappoint', u'coach', u'western', u'border', u'team'] [u'goal', u'corinthian', u'qualifi', u'second', u'round'] [u'palestinian', u'kill', u'isra', u'raid'] [u'skase', u'probe', u'wrap'] [u'small', u'bomb', u'look', u'like', u'ration', u'iraqi', u'kid'] [u'soldier', u'kill', u'grenad', u'attack', u'near', u'baghdad'] [u'spotlight', u'wood', u'trick', u'augusta'] [u'starr', u'soul', u'die'] [u'student', u'shoot', u'crossbow'] [u'suspect', u'milit', u'kill', u'toddler', u'parent'] [u'syria', u'backhand', u'threat', u'iraq'] [u'syria', u'say', u'practis', u'terror', u'iraq'] [u'taurima', u'season', u'doubt', u'ankl', u'injuri'] [u'teenag', u'charg', u'alleg', u'crossbow', u'attack'] [u'territori', u'launch', u'rat'] [u'toll', u'bar', u'dam'] [u'tribun', u'seek', u'evid', u'refuge', u'famili'] [u'turkey', u'open', u'border', u'troop', u'suppli'] [u'ullrich', u'wait', u'green', u'light'] [u'meet', u'north', u'korea', u'crisi'] [u'anti', u'dope', u'agenc', u'ban', u'snowboard', u'life'] [u'black', u'hawk', u'iraq'] [u'confirm', u'warplan', u'down', u'iraq'] [u'forc', u'drive', u'iraqi', u'troop', u'north'] [u'helicopt', u'shoot', u'iraq', u'seven', u'believ', u'dead'] [u'lose', u'warplan', u'chopper', u'iraq', u'fight'] [u'market', u'white', u'flag'] [u'resum', u'push', u'intern', u'assist'] [u'want', u'commission', u'fire', u'impact'] [u'health', u'talk', u'qanta', u'sar', u'scare'] [u'check', u'possibl', u'sar', u'case'] [u'wasim', u'replac', u'warn', u'hampshir'] [u'waterfal', u'inquiri', u'hear', u'high', u'regard', u'driver'] [u'water', u'restrict', u'work', u'melbourn'] [u'waterway', u'clean', u'state', u'local', u'respons'] [u'wellman', u'back', u'fletcher', u'bomber', u'return'] [u'william', u'mcgrath'] [u'wine', u'grape', u'grower', u'hope', u'good', u'harvest', u'despit'] [u'woman', u'plead', u'guilti', u'transvestit', u'murder'] [u'wood', u'eye', u'augusta', u'trick'] [u'youth', u'await', u'sentenc', u'rape'] [u'kill', u'brazil', u'crash'] [u'dead', u'conflict', u'india'] [u'republican', u'guard', u'surrend', u'forc'] [u'australian', u'sar', u'case', u'monitor'] [u'accus', u'deni', u'involv', u'rocki', u'murder'] [u'boss', u'dockland'] [u'annual', u'ralli', u'weekend'] [u'departur', u'cole', u'myer', u'board'] [u'architect', u'appoint', u'post', u'offic', u'renov'] [u'artwork', u'brighten', u'mater', u'hospit'] [u'asbesto', u'dust', u'mask', u'best', u'sar', u'germ'] [u'asbesto', u'fear', u'educ'] [u'australia', u'post', u'modest', u'total'] [u'australian', u'airport', u'alert', u'sar', u'outbreak'] [u'baghdad', u'fall', u'quick', u'hoon'] [u'bank', u'queensland', u'profit', u'surg'] [u'barrichello', u'win', u'brazil', u'like', u'win'] [u'belohvoscik', u'claim', u'day', u'pann'] [u'blue', u'lose', u'unbeaten', u'record', u'injuri', u'otago'] [u'boca', u'hold', u'colo', u'colo', u'qualifi', u'libertador'] [u'shoot', u'prompt', u'school', u'secur', u'review'] [u'breakaway', u'union', u'look', u'recruit', u'monaco'] [u'british', u'tripl', u'jumper', u'hansen', u'heel'] [u'sharehold', u'cash', u'share'] [u'bulldog', u'romp', u'victori'] [u'explos', u'russia'] [u'group', u'owner', u'consid', u'futur', u'expans'] [u'butcher', u'sharpen', u'knive', u'sausag', u'king', u'titl'] [u'mill', u'owner', u'help', u'fund', u'wast'] [u'carlton', u'long', u'break'] [u'car', u'blame', u'pollut', u'problem'] [u'chines', u'sunflow', u'firm', u'welcom', u'toowoomba'] [u'claim', u'abattoir', u'spoil', u'meat', u'market'] [u'combin', u'speed', u'light', u'camera', u'bendigo'] [u'commiss', u'rule', u'minimium', u'wage'] [u'compani', u'speak', u'timber', u'project', u'benefit'] [u'concern', u'staff', u'woe', u'put', u'youth', u'risk'] [u'consum', u'group', u'critic', u'telstra', u'price', u'hike'] [u'cost', u'incom', u'divid', u'threaten', u'rural', u'doctor', u'rdaa'] [u'council', u'urg', u'conduit', u'broadband'] [u'council', u'urg', u'protect', u'histor', u'sit'] [u'court', u'hear', u'childcar', u'centr', u'assault', u'claim'] [u'council', u'wait', u'flood', u'relief'] [u'curtain', u'close', u'outback', u'race', u'histori', u'weekend'] [u'debat', u'post', u'reconstruct'] [u'desper', u'red', u'thriller'] [u'difficult', u'warfar', u'ahead', u'baghdad'] [u'dimarco', u'lead', u'georgia'] [u'disappoint', u'respons', u'rat', u'polici', u'review'] [u'drop', u'water', u'level', u'forc', u'stage'] [u'drug', u'label', u'carri', u'price', u'detail'] [u'east', u'timores', u'campaign', u'australian', u'resid'] [u'taliban', u'kill', u'southern', u'afghanistan', u'report'] [u'england', u'face', u'probe', u'turkey', u'match', u'clash'] [u'fair', u'biggest'] [u'famili', u'speak', u'son', u'imprison'] [u'fewer', u'elder', u'patient', u'occupi', u'albani', u'hospit'] [u'flamengo', u'seven', u'match', u'winless'] [u'teacher', u'convict', u'child', u'tourism', u'case'] [u'franc', u'manag', u'maso', u'count', u'marsh'] [u'freeman', u'retain', u'titl', u'shirvo', u'go'] [u'leak', u'close', u'sydney', u'road'] [u'ghan', u'ticket', u'avail', u'general', u'public'] [u'global', u'plan', u'need', u'stem', u'cancer', u'tide'] [u'goldfield', u'politician', u'defend', u'consult'] [u'goodman', u'boss', u'depart', u'pocket'] [u'grant', u'mend', u'knee'] [u'great', u'grape', u'stomp', u'hit', u'riverland', u'tonight'] [u'hast', u'fastest', u'grow', u'coastal', u'region'] [u'report', u'hand', u'feder', u'govern'] [u'hop', u'scheme', u'fight', u'nurs', u'shortag'] [u'howard', u'posit', u'bush', u'talk'] [u'hurrican', u'defenc', u'withstand', u'desper', u'red'] [u'injuri', u'worri', u'bayern'] [u'inquiri', u'hear', u'bash', u'victim'] [u'iraqi', u'offici', u'scoff', u'invad', u'baghdad'] [u'iraqi', u'reinforc', u'head', u'baghdad', u'airport'] [u'iraqi', u'suicid', u'bomb', u'kill', u'troop', u'pregnant', u'woman'] [u'japanes', u'tour', u'seller', u'assess'] [u'john', u'wayn', u'eldest', u'die', u'cancer'] [u'jone', u'delay', u'start', u'outdoor', u'season'] [u'judg', u'order', u'extradit', u'pari', u'subway', u'bomb'] [u'juve', u'striker', u'piero', u'turin', u'derbi'] [u'kangaroo', u'ash', u'tour', u'date', u'confirm'] [u'king', u'discuss', u'windi', u'famili'] [u'kurdish', u'forc', u'bridg', u'town', u'northern'] [u'leed', u'basic', u'reid'] [u'legal', u'action', u'launch', u'manufactur', u'fake'] [u'liverpool', u'hop', u'dent', u'unit', u'trophi', u'charg'] [u'loot', u'heighten', u'iraqi', u'secur', u'vacuum', u'concern'] [u'loxton', u'deregul', u'shop', u'hour'] [u'macarthur', u'think', u'atlant', u'cross'] [u'mackay', u'get', u'emerg', u'servic', u'packag'] [u'manag', u'overhaul', u'fairfax', u'newspap'] [u'extradit', u'face', u'indec', u'deal', u'charg'] [u'murder', u'count', u'death'] [u'trap', u'crash', u'truck'] [u'marseill', u'fan', u'heart'] [u'mayor', u'urg', u'abattoir', u'drought'] [u'mayor', u'urg', u'govt', u'increas', u'minimum', u'sentenc'] [u'meat', u'processor', u'union', u'odd', u'contract'] [u'meet', u'advis', u'farmer', u'nativ', u'veget'] [u'milan', u'keeper', u'dida', u'hand', u'suspend', u'sentenc'] [u'mildura', u'recruit', u'centr', u'win', u'nation', u'contract'] [u'miss', u'list', u'threaten', u'ger', u'titl', u'drive'] [u'molik', u'myskina', u'advanc', u'florida'] [u'call', u'report', u'menangl', u'bridg', u'closur'] [u'issu', u'warn', u'propos', u'media', u'legisl'] [u'agre', u'chang', u'profession', u'indemn'] [u'nat', u'want', u'interst', u'prosecutor'] [u'naval', u'offic', u'blame', u'ship', u'collis'] [u'hous', u'lot', u'establish', u'goulburn'] [u'law', u'internet', u'websit'] [u'newspap', u'publish', u'sack'] [u'nimbin', u'lose'] [u'north', u'korea', u'blast', u'sanction', u'missil'] [u'north', u'korea', u'deflect', u'human', u'right', u'abus'] [u'stop', u'baghdad', u'rumsfeld'] [u'nurs', u'base', u'perth', u'airport', u'combat', u'sar'] [u'object', u'educ', u'prog', u'school'] [u'take', u'lead', u'thailand', u'open'] [u'refineri', u'futur', u'doubt'] [u'otago', u'inflict', u'blue', u'loss'] [u'owen', u'doubt', u'unit', u'clash', u'dead'] [u'pair', u'charg', u'cannabi', u'crop', u'face', u'court'] [u'phelp', u'serv', u'notic', u'thorp', u'freestyl'] [u'pie', u'hold', u'plucki', u'carlton'] [u'piggin', u'vow', u'fight', u'rabbitoh', u'control'] [u'pill', u'rais', u'cervic', u'cancer', u'risk', u'studi'] [u'polic', u'clamp', u'rowdi', u'behaviour'] [u'polic', u'continu', u'probe', u'bone', u'discoveri'] [u'polic', u'reviv', u'volker', u'prosecut'] [u'polic', u'union', u'snub', u'mcgradi'] [u'post', u'saddam', u'iraq', u'control', u'iraqi', u'blair'] [u'predict', u'coal', u'mine', u'loss', u'expect'] [u'privat', u'rail', u'oper', u'award', u'iron', u'transport'] [u'produc', u'face', u'face', u'advic'] [u'public', u'drunken', u'cabinet', u'agenda'] [u'liber', u'state', u'council', u'decid', u'coalit'] [u'rail', u'disast', u'survivor', u'say', u'tripl'] [u'rayo', u'look', u'turn', u'pain', u'gain', u'real', u'madrid'] [u'red', u'trail', u'half', u'time'] [u'reserv', u'governor', u'dire', u'warn', u'debt', u'implos'] [u'resid', u'urg', u'council', u'elect'] [u'review', u'worker', u'compo', u'law', u'announc'] [u'inspect', u'privat', u'land', u'bushfir', u'hazard'] [u'roger', u'crusad', u'clash'] [u'rome', u'custom', u'find', u'drug', u'manger'] [u'rossi', u'hop', u'start', u'suzuka', u'trick'] [u'rossi', u'set', u'earli', u'pace', u'suzuka'] [u'russian', u'roll', u'quarter', u'florida'] [u'russia', u'slam', u'particip'] [u'safin', u'injuri', u'upset', u'russian', u'davi', u'hop'] [u'schumach', u'wari', u'william', u'threat'] [u'second', u'karratha', u'chemist', u'appear', u'unlik'] [u'second', u'phase', u'woodchip', u'start', u'today'] [u'seven', u'team', u'clear', u'sar'] [u'seven', u'team', u'clear', u'sar'] [u'seventeen', u'fear', u'drown', u'indian', u'boat', u'capsiz'] [u'share', u'market', u'close', u'posit', u'note'] [u'shark', u'notch', u'final'] [u'shop', u'unsur', u'easter', u'sunday', u'trade', u'hour'] [u'year', u'jail', u'have', u'butcher'] [u'sky', u'turn', u'virgin', u'blue', u'alic'] [u'slack', u'bank', u'veteran', u'hurrican', u'clash'] [u'solar', u'power', u'boat', u'trip', u'hail', u'success'] [u'specul', u'mount', u'crow', u'wed', u'guest', u'list'] [u'state', u'student', u'place'] [u'suspect', u'aust', u'sar', u'case', u'drop'] [u'busi', u'concern', u'compo', u'chang'] [u'order', u'reject', u'offer'] [u'tassi', u'bagdad', u'friend', u'mail'] [u'taurima', u'pull', u'nation'] [u'teenag', u'deni', u'bail', u'alleg', u'crossbow', u'shoot'] [u'telstra', u'price', u'chang', u'aim', u'protect'] [u'tender', u'close', u'today', u'club', u'construct'] [u'strongest', u'snatch', u'gasp', u'penalti'] [u'canadian', u'children', u'sar', u'list'] [u'ticket', u'avail', u'ghan', u'inaugur', u'journey'] [u'tobin', u'accus', u'defend', u'self', u'court'] [u'soldier', u'prais', u'australian', u'fighter'] [u'tortur', u'charg', u'dismiss', u'child', u'care'] [u'transit', u'answer', u'coast', u'transport', u'need'] [u'trio', u'face', u'court', u'drug', u'raid'] [u'kill', u'suspect', u'rebel', u'attack', u'indonesia'] [u'convoy', u'expect', u'deliv', u'food', u'iraq'] [u'union', u'claim', u'metal', u'case'] [u'warn', u'threat', u'korea'] [u'claim', u'liquid', u'powder', u'chemic', u'manual'] [u'scale', u'diplomat', u'staff', u'china'] [u'senat', u'pass', u'financ', u'billion'] [u'troop', u'vial', u'chemic', u'weapon', u'manual'] [u'troop', u'second', u'site', u'vial', u'powder'] [u'walk', u'lobbi', u'urg', u'care', u'path', u'school'] [u'fear', u'rise', u'gallipoli', u'sand'] [u'water', u'corp', u'say', u'fund', u'port', u'gregori', u'suppli'] [u'waterfal', u'inquiri', u'hear', u'survivor', u'account', u'train'] [u'waterfal', u'rail', u'crash', u'probe', u'hear', u'high', u'regard'] [u'waterfal', u'train', u'rocket', u'disast', u'passeng'] [u'wesfarm', u'filthi', u'contamin', u'revel'] [u'west', u'wimmera', u'refus', u'conced', u'defeat', u'debat'] [u'crew', u'walk'] [u'woman', u'avoid', u'jail', u'term', u'spend', u'bank'] [u'woman', u'defraud', u'govern'] [u'woman', u'watch', u'sar'] [u'work', u'underway', u'elimin', u'road', u'black', u'spot'] [u'youth', u'week', u'kick', u'adelaid'] [u'iraqi', u'kill', u'baghdad', u'incurs'] [u'australian', u'sar', u'case', u'monitor'] [u'dead', u'bangladeshi', u'boat', u'accid'] [u'passeng', u'check', u'sar', u'airport'] [u'abalon', u'export', u'demand', u'fall'] [u'bushfir', u'inquiri', u'begin'] [u'adelaid', u'match', u'scrap'] [u'chief', u'defend', u'editori', u'shake'] [u'agfest', u'program', u'launch', u'tassi'] [u'worker', u'miss', u'baghdad'] [u'jazeera', u'resum', u'work', u'baghdad'] [u'anti', u'flotilla', u'protest', u'outsid', u'resid'] [u'artist', u'paint', u'prize', u'money'] [u'athlet', u'boss', u'consid', u'batman', u'charg'] [u'aussi', u'daw', u'grab', u'share', u'thailand', u'open', u'lead'] [u'aussi', u'jet', u'wind', u'role', u'gulf'] [u'australia', u'cruis', u'victori', u'south', u'african'] [u'australia', u'go', u'davi'] [u'baghdad', u'visit', u'year', u'unlik', u'blix'] [u'bern', u'wonder', u'goal', u'lead', u'waratah', u'victori'] [u'bomber', u'strong', u'dee'] [u'bomber', u'strong', u'dee', u'saint', u'hang'] [u'bomber', u'strong', u'demon'] [u'brisban', u'woman', u'die', u'hous'] [u'british', u'tornado', u'concret', u'tech', u'arsenal'] [u'british', u'troop', u'iraqi', u'morgu'] [u'british', u'troop', u'readi', u'basra', u'say', u'command'] [u'bush', u'blair', u'meet', u'ireland', u'week'] [u'bush', u'give', u'offici', u'power', u'quarantin', u'sar'] [u'californian', u'lock', u'hair', u'cut', u'spree'] [u'canada', u'start', u'crack', u'extend', u'winter'] [u'donat', u'open', u'farmer'] [u'childcar', u'centr', u'director', u'jail', u'fraud'] [u'china', u'say', u'sar', u'link', u'chlamydia', u'like'] [u'club', u'reprimand', u'spot', u'punch', u'competit'] [u'take', u'step', u'prevent', u'sar', u'spread'] [u'coalit', u'forc', u'death', u'toll', u'near'] [u'coalit', u'forc', u'launch', u'fresh', u'attack', u'baghdad'] [u'confer', u'homeless', u'start', u'brisban'] [u'confer', u'discuss', u'breastfe', u'issu'] [u'consum', u'group', u'critic', u'telstra', u'price', u'hike'] [u'cuba', u'impos', u'news', u'blackout', u'ferri', u'hijack'] [u'cuban', u'ferri', u'hostag', u'free', u'hijack', u'arrest'] [u'cycl', u'boss', u'helmet', u'compulsori'] [u'darwin', u'church', u'pack', u'jam', u'funer', u'servic'] [u'democrat', u'peac', u'ralli'] [u'doctor', u'group', u'say', u'member', u'miss', u'baghdad'] [u'electr', u'partial', u'restor', u'baghdad'] [u'elit', u'iraqi', u'guard', u'divis', u'defeat', u'marin'] [u'environment', u'group', u'commend', u'council', u'pollut'] [u'farmer', u'associ', u'explain', u'veget', u'law'] [u'fitzgerald', u'prais', u'philippoussi'] [u'dead', u'suspect', u'iraqi', u'suicid', u'blast'] [u'flinder', u'island', u'resid', u'gain', u'mobil', u'coverag'] [u'hair', u'taufel', u'add', u'umpir', u'panel'] [u'heavi', u'gunfir', u'hear', u'central', u'baghdad'] [u'helmet', u'compulsori', u'time', u'giro'] [u'hewitt', u'give', u'australia', u'lead', u'sweden'] [u'homecom', u'hop', u'exil', u'olonga'] [u'hop', u'fade', u'hundr', u'buri', u'bolivia', u'mudslid'] [u'hundr', u'iraqi', u'soldier', u'admit', u'baghdad'] [u'improv', u'brighton', u'secur', u'read'] [u'intens', u'explos', u'outskirt', u'baghdad'] [u'iraqi', u'minist', u'deni', u'presenc', u'baghdad'] [u'iraqi', u'warn', u'martyrdom', u'oper', u'baghdad'] [u'iraqi', u'forc', u'clash', u'baghdad'] [u'iraq', u'say', u'okay', u'baghdad', u'airport', u'retak'] [u'iraq', u'show', u'saddam', u'tour', u'baghdad'] [u'isra', u'opposit', u'parti', u'say', u'round', u'brutal'] [u'judg', u'concern', u'trial'] [u'katherin', u'welcom', u'stockman', u'statu'] [u'knight', u'deni', u'storm'] [u'latham', u'week'] [u'lazio', u'stam', u'month', u'thigh', u'injuri'] [u'legal', u'group', u'welcom', u'chang', u'profession'] [u'lion', u'voss', u'memor'] [u'lion', u'hold', u'port', u'bomber', u'thump', u'dee', u'saint', u'hang'] [u'lion', u'tamer', u'run', u'circus'] [u'love', u'number'] [u'malaysia', u'confirm', u'sar', u'death'] [u'arrest', u'boat', u'crash'] [u'mccartney', u'buy', u'right', u'carl', u'perkin', u'catalogu'] [u'medellin', u'ecuador', u'reach'] [u'molik', u'florida'] [u'mortar', u'rain', u'forc', u'encircl', u'baghdad'] [u'museeuw', u'hop', u'roar', u'histor', u'lion', u'flander'] [u'mustard', u'cyanid', u'say', u'euphrat', u'report'] [u'nation', u'youth', u'week', u'kick', u'tassi'] [u'neighbour', u'save', u'woman', u'apart'] [u'program', u'explicit', u'oppn'] [u'test', u'effect', u'scientist'] [u'bodi', u'retriev', u'rescu', u'mission', u'say'] [u'plan', u'cancel', u'arafura', u'game', u'sar', u'threat'] [u'polic', u'confirm', u'phone', u'hunt'] [u'govt', u'deni', u'cut', u'support', u'program'] [u'number', u'suspect', u'sar', u'case', u'fall', u'offici'] [u'accus', u'govt', u'wast', u'money'] [u'pakistan', u'rout', u'lanka', u'second', u'sharjah'] [u'pentagon', u'confirm', u'death', u'troop'] [u'pentagon', u'confirm', u'bodi', u'retriev'] [u'person', u'die', u'crash', u'coot'] [u'phelp', u'miss', u'klim', u'record'] [u'philippoussi', u'put', u'australia', u'ahead', u'sweden'] [u'pilot', u'fli', u'hospit', u'plane', u'crash'] [u'pire', u'arsenal', u'miss', u'semi'] [u'point', u'chang', u'help', u'schumach', u'coulthard'] [u'polic', u'arrest', u'involv', u'chase'] [u'polic', u'investig', u'sydney', u'nightclub', u'shoot'] [u'port', u'stanvac', u'refineri', u'closur', u'specul'] [u'possibl', u'sar', u'case', u'decid', u'stay', u'home'] [u'powel', u'fail', u'convinc', u'european', u'iraq'] [u'raaf', u'jet', u'role', u'gulf', u'wind'] [u'raider', u'bronco', u'undef'] [u'raider', u'bronco', u'undef', u'knight', u'deni', u'storm'] [u'rescu', u'soldier', u'report', u'respond'] [u'respiratori', u'confer', u'scrambl', u'discuss', u'sar'] [u'roo', u'veteran', u'king', u'mark', u'game'] [u'irwin', u'award', u'advisori', u'posit'] [u'saddam', u'loyalist', u'basra', u'want', u'surrend', u'paper'] [u'saint', u'hold', u'crow'] [u'school', u'alert', u'potenti', u'sar', u'case'] [u'health', u'group', u'defend', u'school', u'program'] [u'shangahi', u'russia', u'report', u'sar', u'case'] [u'small', u'plane', u'crash', u'near', u'boston', u'dead'] [u'spanish', u'sport', u'author', u'overturn', u'gurpegi', u'drug'] [u'speech', u'indic', u'saddam', u'aliv', u'intellig'] [u'suspect', u'sar', u'patient', u'isol', u'melbourn'] [u'sydney', u'bridg', u'remain', u'open', u'problem', u'report'] [u'tasmania', u'show', u'support', u'liabil', u'law'] [u'teenag', u'jail', u'canberra', u'arson'] [u'thoma', u'back', u'hamil', u'win', u'return'] [u'soldier', u'kill', u'airport', u'accid'] [u'toddler', u'suspect', u'suffer', u'sar'] [u'travel', u'stay', u'home', u'avoid', u'virus'] [u'turkey', u'tugay', u'slam', u'england', u'captain', u'beckham'] [u'tway', u'janzen', u'forg', u'shoot', u'lead', u'georgia'] [u'marin', u'kill', u'iraq', u'helicopt', u'crash'] [u'uday', u'bright', u'cheer', u'respons', u'disciplin', u'say'] [u'embassi', u'staff', u'leav', u'tehran', u'blast'] [u'bring', u'food', u'iraq'] [u'underground', u'facil', u'baghdad', u'airport'] [u'lose', u'author', u'attack', u'korea'] [u'play', u'role', u'iraq', u'franc'] [u'slow', u'timor', u'withdraw'] [u'blue', u'chip', u'rise', u'profit', u'warn', u'hurt', u'tech'] [u'call', u'aircraft', u'iraqi', u'airport'] [u'claim', u'renam', u'saddam', u'baghdad', u'airport'] [u'columnist', u'kill', u'iraq'] [u'forc', u'attack', u'central', u'iraqi', u'citi', u'kerbala'] [u'forc', u'seiz', u'medina', u'republican', u'guard'] [u'job', u'wors', u'expect', u'drop', u'march'] [u'marin', u'command', u'reliev', u'post', u'iraq'] [u'marin', u'dig', u'suspect', u'chemic', u'arm', u'site'] [u'interim', u'author', u'iraq'] [u'eye', u'syria', u'iran', u'blair'] [u'lead', u'post', u'iraq', u'rice'] [u'korea', u'hold', u'talk'] [u'offici', u'track', u'case', u'sar', u'virus'] [u'soldier', u'charg', u'murder', u'kuwait', u'incid'] [u'soldier', u'kill', u'suicid', u'blast', u'iraq'] [u'swimmer', u'grumbl', u'aussi', u'absenc'] [u'tank', u'command', u'shoot', u'dead', u'baghdad'] [u'tank', u'enter', u'south', u'baghdad', u'probe', u'mission'] [u'tank', u'roll', u'baghdad'] [u'tank', u'rumbl', u'baghdad'] [u'tank', u'thrust', u'baghdad'] [u'troop', u'heart', u'baghdad', u'militari', u'say'] [u'troop', u'kill', u'battl', u'baghdad', u'airport'] [u'straaten', u'turn', u'springbok'] [u'veron', u'absenc', u'hit', u'unit'] [u'voter', u'urg', u'enrol', u'elect'] [u'govt', u'help', u'sell', u'local'] [u'introduc', u'public', u'sector', u'parent', u'leav'] [u'waratah', u'score', u'gasp', u'crusad'] [u'water', u'restrict', u'chang'] [u'webber', u'surpris', u'fastest', u'brazil'] [u'white', u'power', u'near', u'baghdad', u'antidot'] [u'kurdish', u'fighter', u'kill', u'plane', u'bomb'] [u'staff', u'singapor', u'hospit', u'confin'] [u'dead', u'bangladesh', u'boat', u'accid'] [u'eye', u'stanbrok'] [u'hospit', u'review', u'disast', u'readi'] [u'reject', u'public', u'sector', u'recruit', u'critic'] [u'treasur', u'respond', u'recruit', u'cost'] [u'wineri', u'expect', u'excel', u'season'] [u'ajax', u'close', u'victori'] [u'push', u'payout'] [u'warn', u'victorian', u'doctor', u'exodus'] [u'american', u'loar', u'snatch', u'outright', u'thai', u'open', u'lead'] [u'ancestr', u'remain', u'hand'] [u'aprilia', u'enjoy', u'open'] [u'arsenal', u'hold', u'unit', u'crush', u'liverpool'] [u'ashford', u'caus', u'million', u'dollar', u'damag'] [u'attempt', u'jailbreak', u'hondura', u'claim', u'live'] [u'australia', u'home', u'rout', u'sweden'] [u'australian', u'involv', u'baghdad', u'raid'] [u'author', u'continu', u'monitor', u'sar', u'threat'] [u'baath', u'parti', u'loyalist', u'basra', u'urg', u'surrend'] [u'baghdad', u'hospit', u'stretch', u'limit', u'icrc'] [u'barrichello', u'take', u'brazil', u'pole', u'webber'] [u'beatti', u'throw', u'support', u'child', u'abus', u'case'] [u'belgium', u'revis', u'univers', u'compet'] [u'win', u'tiger', u'warrior', u'rooster'] [u'boom', u'burst', u'bring', u'stormer', u'success'] [u'britain', u'say', u'republican', u'guard', u'suffer'] [u'british', u'tank', u'penetr', u'basra'] [u'brogden', u'put', u'final', u'touch', u'bench'] [u'brumbi', u'return', u'form', u'stun', u'defeat'] [u'tough', u'smoke', u'car', u'child'] [u'champion', u'leagu', u'draw', u'fix', u'ferguson'] [u'collin', u'captur', u'metr', u'texa', u'relay'] [u'collin', u'celebr'] [u'communiti', u'cabinet', u'meet', u'tvill'] [u'construct', u'industri', u'urg', u'tyre'] [u'cyclon', u'alert', u'wind', u'north', u'coast'] [u'downer', u'say', u'australia', u'post', u'role'] [u'duel', u'offer', u'aussi', u'newcom', u'intern', u'test'] [u'eighth', u'sar', u'victim', u'report', u'canada'] [u'even', u'start', u'olymp', u'marathon'] [u'fierc', u'damag', u'busi', u'hospit', u'unit'] [u'bad', u'damag', u'perth', u'home'] [u'damag', u'bankstown', u'shop', u'centr'] [u'inquiri', u'threaten', u'bushland', u'tour'] [u'juve', u'derbi', u'torino'] [u'friend', u'hit', u'kurdish', u'convoy', u'kill'] [u'glori', u'join', u'shark', u'tabl'] [u'govt', u'open', u'solar', u'power', u'market'] [u'govt', u'work', u'medic', u'indemn', u'packag'] [u'hawk', u'tiger', u'kangaroo', u'join', u'weekend', u'winner'] [u'heal', u'hail', u'king', u'comeback'] [u'heal', u'prais', u'comeback', u'king'] [u'hondura', u'jail', u'riot', u'leav', u'dead'] [u'hundr', u'dead', u'congo', u'massacr', u'sourc'] [u'iran', u'claim', u'bodi', u'iraqi', u'morgu'] [u'iraq', u'deni', u'baghdad', u'incurs'] [u'iraqi', u'kurd', u'special', u'forc', u'close', u'kirkuk'] [u'iraqi', u'ban', u'flee', u'citi', u'attack'] [u'iraq', u'say', u'chemic', u'aliv', u'say', u'guard', u'dead'] [u'island', u'festiv', u'finish', u'today'] [u'janzen', u'enter', u'unfamiliar', u'territori', u'lead'] [u'janzen', u'shoot', u'grab', u'stroke', u'lead'] [u'johnson', u'gun', u'world', u'glori'] [u'judg', u'question', u'fair', u'moussaoui', u'case'] [u'kessler', u'claim', u'indurain'] [u'king', u'break', u'duck', u'thrash', u'wildcat', u'perth'] [u'labor', u'nomin', u'elect', u'candid'] [u'larg', u'percentag', u'worker', u'expect', u'touch'] [u'late', u'birdi', u'janzen', u'shoot', u'cushion'] [u'liber', u'come', u'bush'] [u'lord', u'mayor', u'candid', u'think', u'outsid', u'squar'] [u'lyon', u'command', u'marseill', u'slump', u'home'] [u'melbourn', u'woman', u'fifth', u'like', u'sar', u'suffer'] [u'melbourn', u'woman', u'rais', u'suspect', u'sar', u'talli'] [u'mine', u'compani', u'plan', u'tasmanian', u'explor'] [u'torch', u'aceh', u'peac', u'monitor', u'offic'] [u'molik', u'myskina', u'advanc', u'sarasota', u'open', u'final'] [u'mol', u'doubl', u'send', u'ranger', u'point', u'clear'] [u'monti', u'pass', u'land', u'irish', u'coup', u'nation'] [u'mortar', u'rain', u'baghdad', u'report'] [u'murray', u'malle', u'need', u'drought', u'assist', u'fund', u'rann'] [u'round', u'raid', u'baghdad'] [u'ancient', u'indigen', u'exhibit'] [u'nkorea', u'say', u'ignor', u'nuclear', u'rule'] [u'korea', u'leader', u'make', u'public', u'appear'] [u'canio', u'rift', u'say', u'roeder'] [u'figur', u'iraqi', u'civilian', u'death'] [u'special', u'consider', u'iraqi', u'refuge'] [u'time', u'frame', u'withdraw', u'aust', u'troop'] [u'minist', u'say', u'plan', u'summit', u'ahead'] [u'say', u'exceed', u'renew', u'energi', u'target'] [u'oppn', u'unsurpris', u'public', u'approv'] [u'parent', u'reunit', u'rescu', u'jessica', u'lynch'] [u'peac', u'activist', u'wound', u'east', u'clash'] [u'portsmouth', u'restor', u'lead', u'promot', u'race'] [u'putin', u'urg', u'action', u'nuclear', u'treati'] [u'appeal', u'sentenc', u'babi', u'death'] [u'labor', u'nomin', u'elect', u'candid'] [u'rain', u'help', u'rossi', u'retain', u'suzuka', u'pole'] [u'report', u'find', u'biggest', u'greenhous'] [u'roadmap', u'demand', u'israel'] [u'roof', u'caus', u'major', u'damag', u'home'] [u'rossi', u'start', u'finish'] [u'russia', u'claim', u'diplomat', u'injur', u'iraqi', u'bomb'] [u'russian', u'lose', u'davi', u'crown', u'argentin', u'advanc'] [u'saddam', u'call', u'iraqi', u'save', u'baghdad', u'tank'] [u'sar', u'fear', u'eas', u'singapor', u'reopen', u'school'] [u'sheikh', u'approv', u'suicid', u'attack', u'alli'] [u'socceroo', u'star', u'goal', u'rampag', u'leed'] [u'solar', u'vehicl', u'challeng', u'hot', u'contest', u'despit'] [u'sorenstam', u'retain', u'lead', u'despit', u'horror'] [u'sorenstam', u'shot', u'clear', u'angel'] [u'sprinter', u'johnson', u'gun', u'world', u'glori'] [u'street', u'walker', u'squeez', u'inner', u'sydney', u'go'] [u'stuttgart', u'second', u'gasp'] [u'substitut', u'strike', u'spark', u'real', u'comeback'] [u'suspect', u'sar', u'kid', u'home', u'tomorrow'] [u'sydney', u'traffic', u'chang', u'begin', u'today'] [u'govt', u'price', u'histor', u'build'] [u'teen', u'recruit', u'undercov', u'smoke', u'sting'] [u'tender', u'call', u'school', u'redevelop'] [u'thompson', u'win', u'free', u'person', u'best'] [u'injur', u'beirut', u'mcdonald', u'blast'] [u'ton', u'waugh', u'hayden', u'windi', u'warm'] [u'marilli', u'fire', u'zimbabw', u'past', u'kenya'] [u'toxic', u'spill', u'threaten', u'rare', u'turtl', u'speci'] [u'turkey', u'expel', u'iraqi', u'diplomat'] [u'ship', u'bind', u'iraq'] [u'ullrich', u'father'] [u'union', u'say', u'wont', u'cope', u'sar', u'outbreak'] [u'airborn', u'divis', u'launch', u'assault'] [u'iraqi', u'forc', u'fight', u'street', u'street', u'karbala'] [u'militari', u'say', u'attack', u'russian', u'convoy'] [u'plan', u'iraq', u'civilian', u'rule', u'begin'] [u'say', u'troop', u'baghdad', u'freeli'] [u'start', u'instal', u'post', u'iraq', u'administr'] [u'troop', u'kurd', u'advanc', u'mosul', u'kirkuk'] [u'warn', u'possibl', u'terror', u'strike', u'uzbekistan'] [u'govt', u'deni', u'boy', u'game', u'offic'] [u'govt', u'crackdown', u'owner', u'builder'] [u'video', u'releas', u'northbridg', u'polic', u'stab'] [u'vogt', u'relish', u'germani', u'clash', u'hampden'] [u'resid', u'prepar', u'cyclon'] [u'warrior', u'rabbitoh'] [u'budget', u'dollar', u'work', u'famili', u'reform'] [u'waugh', u'hayden', u'ton', u'windi', u'warm'] [u'webber', u'lift', u'jaguar', u'height'] [u'webber', u'lift', u'jaguar', u'height', u'brazil'] [u'wmds'] [u'woodbridg', u'arthur', u'guid', u'australia', u'semi'] [u'worldwid', u'protest', u'condemn', u'bush', u'blair', u'axi', u'evil'] [u'children', u'teacher', u'kill', u'russian', u'school'] [u'airlin', u'grow', u'despit', u'tough', u'travel', u'time'] [u'airport', u'travel', u'screen', u'sar'] [u'chief', u'hospitalis', u'lung', u'blood', u'clot'] [u'snowtown', u'juror', u'discharg'] [u'asian', u'corpor', u'target', u'north', u'incent'] [u'halt', u'trade'] [u'auiron', u'support', u'deal', u'ausmelt'] [u'australia', u'like', u'help', u'iraq', u'rebuild', u'rural'] [u'baghdad', u'face', u'grow', u'health', u'crisi'] [u'bangladesh', u'boat', u'tragedi', u'toll', u'hit'] [u'barra', u'rise', u'mcarthur', u'river'] [u'barrichello', u'brazilian', u'agoni', u'continu'] [u'beach', u'facelift'] [u'blast', u'rock', u'presidenti', u'complex', u'baghdad'] [u'blue', u'origin', u'squad'] [u'bodi', u'chemic', u'report'] [u'bomb', u'alert', u'belfast', u'bush', u'blair', u'summit'] [u'brack', u'enforc', u'perman', u'water', u'ban'] [u'brack', u'say', u'govt', u'help', u'punter', u'beat', u'bet'] [u'british', u'troop', u'basra', u'stay', u'hoon'] [u'broom', u'port', u'fund', u'continu'] [u'builder', u'insur', u'legisl', u'move'] [u'burleigh', u'bear', u'score', u'season'] [u'bush', u'blair', u'meet', u'discuss', u'post', u'iraq'] [u'busi', u'go', u'despit', u'blaze'] [u'campaign', u'launch', u'stop', u'workplac', u'bulli'] [u'celtic', u'titl', u'hunt', u'oneil'] [u'centr', u'play', u'tourist', u'number', u'concern'] [u'champion', u'independient', u'grab', u'season'] [u'claim', u'council', u'cost', u'make', u'hard', u'rat'] [u'clydesdal', u'score', u'minut', u'beat', u'young'] [u'comment', u'seek', u'central', u'transport', u'plan'] [u'communiti', u'chip', u'help', u'childcar', u'centr'] [u'communiti', u'involv', u'enhanc', u'health', u'expert'] [u'compo', u'claim', u'spark', u'public', u'liabil', u'concern'] [u'concern', u'air', u'school', u'hear', u'support'] [u'concern', u'rais', u'rental', u'shortag', u'issu'] [u'construct', u'begin', u'pilot', u'channel'] [u'controversi', u'festiv', u'sponsorship', u'discuss'] [u'councillor', u'converg', u'park', u'financi'] [u'council', u'seek', u'aviat', u'rescu', u'servic'] [u'council', u'welcom', u'york', u'park', u'seat', u'boost'] [u'crane', u'blitz', u'maiden', u'tour'] [u'defenc', u'expert', u'forecast', u'iraqi', u'capitul'] [u'deportivo', u'second', u'spain'] [u'detain', u'refuge', u'children', u'suffer', u'social', u'problem'] [u'doctor', u'protest'] [u'drcongo', u'presid', u'swear', u'head', u'uniti'] [u'drill', u'begin', u'olymp'] [u'driver', u'tell', u'rail', u'inquiri', u'wrong', u'track'] [u'driver', u'tell', u'waterfal', u'inquiri', u'track'] [u'drought', u'turn', u'lavend'] [u'east', u'timor', u'sentenc', u'crime', u'human'] [u'push', u'urg', u'produc', u'contact', u'agforc'] [u'hop', u'finalis', u'shale', u'emiss', u'report'] [u'cri', u'fowl', u'aust', u'chicken', u'import', u'law'] [u'explos', u'baghdad', u'palac', u'hold', u'forc'] [u'fate', u'chemic', u'unclear'] [u'feder', u'report', u'call', u'soccer', u'australia', u'board'] [u'firefight', u'work', u'control', u'cobar', u'fire'] [u'firefight', u'work', u'control', u'cobaw', u'fire'] [u'iraqi', u'kill', u'wound', u'hospit'] [u'nomin', u'mayor', u'spot'] [u'troop', u'kill', u'baghdad', u'attack'] [u'franc', u'russia', u'dump', u'davi'] [u'francou', u'posit', u'despit', u'season', u'end', u'injuri'] [u'friend', u'plagu', u'britain', u'iraq'] [u'fruit', u'outbreak', u'tongala'] [u'fruit', u'industri', u'expand', u'asia'] [u'explos', u'injur', u'airlift', u'brisban'] [u'goulburn', u'council', u'await', u'develop', u'sign'] [u'govern', u'recommend', u'australia', u'soccer', u'chief'] [u'govt', u'promis', u'polic', u'station', u'open'] [u'hall', u'fame', u'pleas', u'communiti', u'support'] [u'happi', u'birthday', u'astro'] [u'trick', u'fashion', u'design'] [u'histor', u'cottag', u'offer', u'privat', u'buyer'] [u'hodg', u'star', u'ball'] [u'hogg', u'gillespi', u'press', u'test', u'select'] [u'hop', u'war', u'start', u'market', u'surg'] [u'hors', u'trial', u'plea', u'govt', u'fund'] [u'howard', u'reneg', u'troop', u'brown'] [u'inter', u'titl', u'hop', u'fade'] [u'iraqi', u'greet', u'marin', u'call', u'saddam', u'death'] [u'iraq', u'say', u'hit', u'forc', u'artilleri'] [u'announc', u'world', u'refere'] [u'attempt', u'avoid', u'staff', u'walkout'] [u'irrig', u'urg', u'speak', u'rural', u'water'] [u'outlook', u'subdu'] [u'kato', u'fight', u'life', u'horror', u'crash'] [u'ministri', u'palac', u'iraqi', u'hand'] [u'king', u'welcom', u'fan', u'sydney'] [u'latrob', u'hunter', u'power', u'industri', u'biggest', u'pollut'] [u'lenton', u'lose', u'free', u'victori'] [u'liber', u'staffer', u'fin', u'take', u'labor', u'elect'] [u'live', u'fish', u'export', u'affect', u'sar'] [u'loar', u'win', u'thailand', u'open', u'stroke'] [u'magistr', u'avoid', u'potenti', u'virus', u'marri', u'coupl'] [u'hospit', u'head', u'crash'] [u'market', u'hop', u'quick'] [u'mayor', u'hope', u'king', u'ship', u'servic', u'resum'] [u'board', u'tell', u'sharehold', u'deal'] [u'oversea', u'sale', u'concern', u'premier'] [u'minist', u'small', u'busi', u'trip', u'head', u'tweed'] [u'missil', u'slam', u'baghdad', u'neighbourhood', u'eyewit'] [u'myskina', u'beat', u'molik', u'sarasota', u'open', u'crown'] [u'natwa'] [u'offic', u'offer', u'club', u'administr', u'support'] [u'pitcairn', u'island', u'charg', u'offenc'] [u'nitschk', u'criticis', u'suicid', u'internet', u'law'] [u'north', u'burleigh', u'win', u'junior', u'lifesav', u'trick'] [u'opposit', u'claim', u'bridg', u'danger', u'cover'] [u'cabinet', u'head', u'borroloola'] [u'ogradi', u'petegem', u'claim', u'tour', u'flander'] [u'blast', u'victim', u'airlift', u'hospit'] [u'oilwel', u'blast', u'victim', u'rush', u'hospit'] [u'olonga', u'cours', u'lash'] [u'opera', u'hous', u'architect', u'win', u'pritzker', u'prize'] [u'opposit', u'fighter', u'airlift', u'southern', u'iraq'] [u'pair', u'charg', u'robberi', u'violenc'] [u'palestinian', u'wit', u'refus', u'recognis', u'isra'] [u'pentagon', u'declin', u'assault', u'battl'] [u'phelp', u'lead', u'duel', u'pool'] [u'unveil', u'hospit', u'upgrad'] [u'polic', u'charg', u'year', u'chase'] [u'polic', u'catch', u'drink', u'driver'] [u'polic', u'probe', u'truck', u'theft'] [u'polic', u'stage', u'traffic', u'blitz'] [u'polic', u'traffic', u'victim'] [u'protest', u'greet', u'minist', u'colleg', u'art'] [u'point', u'clear', u'despit', u'draw', u'willem'] [u'govt', u'air', u'cancer', u'fund', u'trial', u'concern'] [u'govt', u'focus', u'public', u'drunken'] [u'quarter', u'tasmanian', u'home', u'insur', u'studi'] [u'queensland', u'dale', u'retir', u'class', u'game'] [u'raid', u'report', u'mosul', u'jazeera'] [u'rail', u'union', u'seek', u'bridg', u'safeti', u'guarante'] [u'ravensthorp', u'adopt', u'postal', u'vote', u'council', u'poll'] [u'record', u'botch', u'birth', u'payout', u'reduc'] [u'relay', u'rais', u'thousand', u'cancer', u'council'] [u'renmark', u'irrig', u'trust', u'wont', u'join'] [u'richardson', u'fractur', u'cheek'] [u'robson', u'rule', u'premiership', u'titl'] [u'rural', u'financi', u'counsellor', u'welcom', u'interim'] [u'russia', u'demand', u'action', u'convoy', u'attack'] [u'govt', u'urg', u'help', u'provid', u'region', u'servic'] [u'sangakkara', u'fashion', u'lankan', u'reveng', u'kenya'] [u'sar', u'death', u'toll', u'continu', u'rise'] [u'sarwan', u'gayl', u'australia', u'test', u'clash'] [u'stay', u'iraq', u'clean'] [u'school', u'evacu', u'leak'] [u'schwab', u'surviv', u'heart', u'scare'] [u'sele', u'capriati', u'charleston', u'tournament'] [u'shire', u'get', u'fund', u'fight', u'rabbit', u'plagu'] [u'shire', u'men', u'health', u'servic'] [u'soccer', u'australia', u'board', u'pressur', u'quit'] [u'south', u'west', u'shire', u'prepar', u'expect', u'popul'] [u'state', u'homeless', u'vanston'] [u'korea', u'say', u'talk', u'blame', u'korea'] [u'struggl', u'public', u'road', u'complet'] [u'studi', u'highlight', u'greenhous', u'contributor'] [u'studi', u'help', u'reduc', u'racism', u'indigen'] [u'super', u'race', u'tighten', u'leader', u'slip'] [u'surat', u'explos', u'toll', u'revis'] [u'survey', u'consid', u'communiti', u'servic', u'import'] [u'survey', u'show', u'differ', u'attitud', u'compo'] [u'swede', u'sorenstam', u'captur', u'lpga', u'season'] [u'tammin', u'case', u'studi', u'road', u'fund'] [u'teen', u'seek', u'council', u'compo', u'accid'] [u'injur', u'oilwel', u'blast'] [u'thorp', u'frighten', u'race', u'american', u'say'] [u'stab', u'overnight', u'brawl'] [u'treat', u'blast'] [u'possibl', u'sar', u'case', u'monitor'] [u'suspect', u'sar', u'case', u'send', u'home'] [u'tidi', u'town', u'honour', u'wyalkatchem'] [u'tight', u'secur', u'crow', u'wed'] [u'tourism', u'campaign', u'look', u'good'] [u'tourism', u'head', u'want', u'market', u'target'] [u'toyn', u'reject', u'call', u'stand'] [u'turnbul', u'sydney', u'femal', u'lord', u'mayor'] [u'marin', u'kill', u'battl', u'bridg', u'baghdad'] [u'quarantin', u'fremantl', u'show', u'sar'] [u'soldier', u'journalist', u'kill', u'rocket'] [u'agenc', u'warn', u'baghdad', u'health', u'disast'] [u'underag', u'cigarett', u'plan', u'entrap', u'retail'] [u'union', u'question', u'safeti', u'year', u'bridg'] [u'prepar', u'tender', u'plan'] [u'team', u'uncov', u'horror', u'congo', u'violenc'] [u'aim', u'baghdad', u'target'] [u'bomber', u'target', u'saddam', u'result', u'unknown'] [u'confid', u'find', u'ban', u'weapon'] [u'forc', u'attack', u'central', u'baghdad'] [u'forc', u'deep', u'insid', u'baghdad', u'palac', u'wit'] [u'forc', u'deliber', u'attack', u'convoy', u'russian'] [u'journalist', u'emb', u'troop', u'die', u'near'] [u'marin', u'cross', u'bridg', u'near', u'baghdad'] [u'marin', u'iraq', u'discard', u'chemic', u'suit'] [u'marin', u'insid', u'saddam', u'palac', u'fight'] [u'iraq', u'long', u'haul', u'iraqi', u'opposit'] [u'site', u'militari'] [u'say', u'baghdad', u'attack', u'raid', u'battl', u'ahead'] [u'say', u'iraq', u'burn', u'bridg'] [u'seiz', u'presidenti', u'palac'] [u'unit', u'attack', u'palac', u'fight', u'rag', u'heart'] [u'vasco', u'goal', u'thriller', u'brazil', u'edmundo'] [u'bushfir', u'inquiri', u'begin'] [u'govt', u'plan', u'aim', u'reduc', u'water'] [u'govt', u'urg', u'green', u'light', u'marina', u'plan'] [u'nat', u'leav', u'door', u'open', u'coalit'] [u'waterfal', u'survivor', u'tell', u'train', u'speed'] [u'water', u'wont', u'move', u'studi', u'gallop'] [u'wheelchair', u'access', u'plan', u'todd', u'mall'] [u'woman', u'hospitalis', u'perth', u'suspect', u'sar'] [u'work', u'begin', u'northern', u'marin', u'plan'] [u'protest', u'charg', u'harbour', u'action'] [u'chines', u'children', u'drink', u'soya', u'milk'] [u'impos', u'extra', u'condit', u'region'] [u'alga', u'outbreak', u'close', u'oyster', u'farm'] [u'jazeera', u'say', u'baghdad', u'offic'] [u'ord', u'close', u'lower', u'earli'] [u'welcom', u'patient', u'payout'] [u'cameraman', u'die', u'attack', u'press'] [u'attract', u'outweigh', u'racism', u'claim', u'tourism', u'group'] [u'melbourn', u'match', u'abandon'] [u'australia', u'lead', u'clare', u'higson', u'trophi', u'golf', u'tournament'] [u'australian', u'busi', u'buffet', u'global', u'event'] [u'australian', u'clock', u'billion', u'road'] [u'australia', u'surviv', u'scare', u'guyana'] [u'australia', u'larg', u'role', u'iraq'] [u'author', u'probe', u'sar', u'cockroach', u'link'] [u'baghdad', u'hospit', u'face', u'critic', u'situat'] [u'baghdad', u'rashid', u'militari', u'airfield', u'hand'] [u'bank', u'give', u'thief', u'number', u'steal', u'card'] [u'barrett', u'timmin', u'clear', u'injuri'] [u'blacklock', u'commit'] [u'botham', u'somerset'] [u'brisban', u'council', u'seek', u'creat', u'industri'] [u'british', u'trio', u'convict', u'millionair', u'cheat', u'plot'] [u'brogden', u'reveal', u'revamp', u'shadow', u'cabinet'] [u'break', u'hill', u'popul', u'shrink'] [u'budd', u'make', u'marathon', u'trip', u'london'] [u'bush', u'blair', u'resum', u'belfast', u'summit'] [u'busi', u'art', u'program', u'boost', u'career', u'young'] [u'withdraw', u'prawn', u'farm', u'licenc'] [u'cameramen', u'kill', u'attack', u'press', u'hotel'] [u'campaign', u'urg', u'graduat'] [u'champ', u'leagu', u'clash', u'bigger', u'world', u'ferguson'] [u'citi', u'plan', u'go', u'govt'] [u'civilian', u'report', u'kill', u'baghdad', u'bomb'] [u'clark', u'defend', u'right', u'shout', u'drink'] [u'coalit', u'command', u'visit', u'iraq'] [u'cobaw', u'bushfir', u'destroy'] [u'coetzer', u'ralli', u'beat', u'czech', u'chladkova'] [u'competitor', u'pull', u'nation', u'karat'] [u'glitch', u'caus', u'packer', u'summon', u'polic'] [u'concern', u'air', u'network', u'site', u'closur'] [u'confer', u'tackl', u'high', u'rat', u'indigen'] [u'construct', u'detail', u'burni', u'unit', u'know'] [u'cooma', u'bash', u'suspect', u'appear', u'court'] [u'costa', u'sack', u'exec', u'major', u'transport', u'shakeup'] [u'council', u'abandon', u'hello', u'light', u'plan'] [u'council', u'plan', u'attract', u'migrant'] [u'council', u'push', u'road', u'link'] [u'council', u'urg', u'govt', u'match', u'sand', u'remov'] [u'council', u'build', u'supervis', u'school', u'cross'] [u'court', u'challeng', u'plan', u'prison', u'transfer'] [u'court', u'order', u'noosa', u'council', u'compo', u'claim'] [u'crawley', u'get', u'warn', u'hampshir', u'captain'] [u'detect', u'stand', u'corrupt'] [u'develop', u'delay', u'offer', u'lesson'] [u'dinosaur', u'attract', u'open', u'time', u'easter'] [u'promis', u'research', u'centr', u'secur'] [u'dutch', u'outsid', u'nail', u'novak'] [u'europ', u'plan', u'launch', u'satellit', u'mishap'] [u'expert', u'probe', u'cockroach', u'sar', u'link'] [u'expert', u'seek'] [u'explos', u'baghdad', u'palac', u'hold', u'forc'] [u'famili', u'flee', u'baghdad'] [u'farmer', u'claim', u'salin', u'fund', u'shortfal'] [u'farmer', u'continu', u'resist', u'basslink', u'surveyor'] [u'fergi', u'laugh', u'beckham', u'transfer', u'talk'] [u'fergi', u'withdraw', u'claim', u'draw', u'fix'] [u'fierc', u'clash', u'insid', u'palac', u'compound'] [u'exchang', u'east', u'baghdad'] [u'flag', u'burner', u'face', u'court'] [u'petrol', u'sniffer', u'help', u'develop', u'communiti'] [u'french', u'champion', u'lyon', u'question', u'confeder'] [u'french', u'club', u'plan', u'swoop', u'wallabi', u'black'] [u'glori', u'back', u'crawford', u'report'] [u'govt', u'go', u'soft', u'nauru', u'passport', u'labor'] [u'govt', u'upgrad', u'tanzania', u'travel', u'warn'] [u'govt', u'urg', u'unsaf', u'rail', u'bridg'] [u'graphic', u'imag', u'send', u'chang', u'stanc'] [u'group', u'seek', u'council', u'elect', u'candid'] [u'hamilton', u'walker', u'ban', u'drug', u'test'] [u'harbour', u'protest', u'aim', u'brown'] [u'hawthorn', u'coach', u'stay', u'despit', u'health'] [u'highway', u'boost', u'announc', u'north', u'west'] [u'hill', u'chang', u'foot', u'role'] [u'histor', u'elect', u'fruit', u'vege', u'grower'] [u'hmas', u'emsydneyem', u'secur', u'breach', u'occur'] [u'insur', u'rule', u'threaten', u'rock', u'climb', u'compani'] [u'iraq', u'battlefield', u'chang', u'tack', u'pentagon'] [u'iraqi', u'domest', u'televis', u'baghdad'] [u'iraq', u'vow', u'surrend'] [u'itiner', u'area', u'unlik', u'work', u'darwin', u'mayor'] [u'kato', u'fight', u'life', u'suzuka', u'crash'] [u'king', u'knock', u'windi'] [u'king', u'turn', u'windi', u'coach'] [u'koeman', u'take', u'pressur', u'ajax', u'milan', u'game'] [u'leed', u'deni', u'kewel'] [u'line', u'adelaid', u'cabaret', u'festiv', u'reveal'] [u'live', u'wast', u'insid', u'baxter', u'bartlett'] [u'local', u'govt', u'get', u'fair', u'share', u'revenu', u'egan'] [u'clear', u'sar'] [u'maritim', u'museum', u'seek', u'time', u'curat'] [u'matilda', u'cours', u'world'] [u'mayo', u'make', u'late', u'break', u'open', u'basqu', u'stage'] [u'mcgrath', u'test'] [u'mcgrath', u'test'] [u'mcgrath', u'pois', u'windi', u'return'] [u'mcgrath', u'ponder', u'west', u'indi', u'return'] [u'share', u'takeov', u'offer'] [u'takeov', u'rais', u'concern', u'town'] [u'miner', u'hop', u'copper', u'gold', u'deposit'] [u'miner', u'boost', u'indigen', u'worker'] [u'mustard', u'fals', u'alarm'] [u'mustard', u'like', u'near', u'najaf'] [u'mysteri', u'virus', u'kill', u'children', u'vietnam'] [u'nat', u'endors', u'rail', u'worker', u'charter', u'tower'] [u'boat', u'launch', u'facil', u'open'] [u'catchment', u'manag', u'author'] [u'korean', u'economi', u'collaps'] [u'elect', u'dardanup'] [u'nomin', u'council', u'ward'] [u'word', u'saddam', u'fate', u'bomb'] [u'staff', u'strike'] [u'govt', u'urg', u'respond', u'deer', u'woe'] [u'aim', u'boost', u'domest', u'tourism', u'wake', u'sar'] [u'ask', u'answer', u'prison', u'transfer'] [u'odonnel', u'suspend', u'week'] [u'opposit', u'scaremong', u'ambul', u'servic'] [u'order', u'quick', u'restor', u'basra'] [u'pair', u'face', u'court', u'caravan', u'park', u'death'] [u'pair', u'court', u'high', u'speed', u'chase'] [u'pappa', u'pluck', u'rabbitoh', u'produc'] [u'penelop', u'cruz', u'sue', u'aust', u'defam'] [u'pentagon', u'report', u'personnel', u'kill'] [u'phelp', u'train', u'thorp', u'hackett'] [u'piggin', u'step', u'south', u'deal'] [u'sicken', u'saddam', u'opul'] [u'polic', u'arrest', u'peopl', u'drug', u'blitz'] [u'polic', u'concern', u'miss'] [u'polic', u'deni', u'unprepar', u'warship', u'protest'] [u'polic', u'probe', u'blue', u'ribbon', u'clue'] [u'polic', u'renew', u'appeal', u'help', u'truck'] [u'polic', u'seek', u'help', u'bodi', u'dump', u'park'] [u'polic', u'seek', u'ident', u'cyclist', u'kill'] [u'polic', u'warn', u'tourist', u'opportunist', u'crime'] [u'polit', u'obscur', u'bushfir', u'debat', u'academ'] [u'port', u'stanvac', u'refineri', u'stop', u'product'] [u'power', u'water', u'phase', u'compani', u'logo'] [u'power', u'station', u'propon', u'work', u'reduc'] [u'preliminari', u'test', u'chemic', u'agent', u'iraq', u'site'] [u'press', u'group', u'slam', u'attack', u'journalist', u'baghdad'] [u'protect', u'scarv', u'tie', u'snap', u'consum'] [u'protest', u'arrest', u'sydney', u'rout', u'gulf'] [u'report', u'say', u'tank', u'aim', u'iraq', u'media', u'hotel'] [u'continu', u'expand', u'domest', u'servic'] [u'richardson', u'track', u'quick', u'recoveri'] [u'richardson', u'undergo', u'cheekbon', u'surgeri'] [u'tinto', u'chair', u'retir', u'octob'] [u'rise', u'cost', u'forc', u'school', u'seek', u'fund'] [u'robber', u'raid', u'polic'] [u'roberto', u'carlo', u'give', u'provision', u'fifa'] [u'rocket', u'blow', u'pakistani', u'pipelin'] [u'continu', u'easter', u'sunday', u'trade'] [u'ruddock', u'investig', u'clark', u'alleg', u'shout'] [u'russia', u'confin', u'cosmonaut', u'day', u'mar'] [u'govt', u'reject', u'drought', u'packag', u'claim'] [u'saleyard', u'futur', u'remain', u'unclear'] [u'sar', u'bigger', u'econom', u'threat', u'airport'] [u'sar', u'stop', u'treat', u'china'] [u'sar', u'fear', u'forc', u'everton', u'china', u'tour'] [u'sar', u'forc', u'singapor', u'airlin', u'defer'] [u'troop', u'stop', u'russian', u'convoy', u'iraq'] [u'scientist', u'clone', u'endang', u'asian', u'banteng'] [u'secur', u'concern', u'plan', u'baxter', u'protest'] [u'seed', u'vicent', u'oust', u'moroccan', u'round'] [u'selga', u'particip', u'develop', u'streamlin'] [u'sheikh', u'help', u'rule', u'basra'] [u'korea', u'open', u'talk', u'troop'] [u'small', u'builder', u'unfair', u'blame', u'surveyor'] [u'stink', u'bomb', u'protest', u'pari', u'auction'] [u'striker', u'women', u'hockey', u'semi'] [u'studi', u'highlight', u'home', u'fact'] [u'sukur', u'open', u'blackburn', u'account', u'destroy', u'fulham'] [u'swashbuckl', u'real', u'expect', u'unit', u'attack'] [u'talli', u'disprov', u'past', u'jibe'] [u'teenag', u'die', u'fall', u'silo'] [u'teen', u'help', u'catch', u'busi', u'smoke', u'sale'] [u'journalist', u'kill', u'amid', u'battl', u'baghdad'] [u'tiger', u'deni', u'odonnel', u'suspens', u'appeal'] [u'tourism', u'busi', u'verg', u'closur'] [u'trio', u'charg', u'polic', u'drug', u'raid'] [u'ullrich', u'clear', u'comeback'] [u'union', u'warn', u'nation', u'support', u'pasminco'] [u'deni', u'deliber', u'target', u'jazeera'] [u'forc', u'enter', u'baghdad', u'north'] [u'plane', u'go', u'iraq', u'pilot', u'safe'] [u'say', u'know', u'iraqi', u'leader'] [u'target', u'sit', u'baghdad'] [u'video', u'show', u'detect', u'take', u'money', u'royal', u'commiss'] [u'vital', u'role', u'blair', u'bush'] [u'volunt', u'need', u'creat', u'south', u'island'] [u'race', u'cure', u'cancer'] [u'waterfal', u'inquiri', u'hear', u'mechan', u'problem'] [u'waterfal', u'probe', u'tell', u'train', u'prone', u'break', u'failur'] [u'beat', u'ferrari'] [u'westpac', u'say', u'metal', u'price', u'improv'] [u'wild', u'wind', u'rain', u'cyclon', u'inigo', u'near', u'coast'] [u'wood', u'absent', u'rain', u'sodden', u'augusta'] [u'yarragon', u'tourism', u'facelift'] [u'youth', u'charg', u'arm', u'robberi'] [u'zabel', u'rank'] [u'zimbabw', u'stun', u'lanka', u'enter', u'sharjah', u'final'] [u'impos', u'extra', u'condit', u'licenc'] [u'accc', u'lose', u'farrington', u'fayr', u'case', u'high', u'court'] [u'accus', u'dirti', u'trick', u'perth', u'polit'] [u'staff', u'strike', u'secur', u'concern'] [u'chief', u'minist', u'urg', u'return', u'local', u'news'] [u'legisl', u'assembl', u'closer', u'insur'] [u'adelaid', u'council', u'candid', u'urg', u'vision'] [u'involv', u'distribut', u'iraqi'] [u'age', u'care', u'nurs', u'discuss', u'woe'] [u'alic', u'spring', u'polic', u'arrest', u'suspect', u'fatal'] [u'allenbi', u'parri', u'receiv', u'treatment', u'ahead', u'master'] [u'see', u'tour', u'guid', u'spot', u'eye'] [u'angri', u'cut', u'oper', u'hour'] [u'ancelotti', u'koeman', u'look', u'bright'] [u'arthur', u'pratt', u'suffer', u'round', u'defeat'] [u'atsic', u'propos', u'show', u'way', u'tackl', u'poverti'] [u'australian', u'urg', u'holiday', u'home'] [u'bali', u'tourism', u'suffer', u'visa', u'price', u'hike'] [u'bank', u'compli', u'chang', u'bank'] [u'bank', u'tighten', u'secur', u'onlin', u'shop'] [u'beach', u'whale', u'tasti', u'treat', u'island'] [u'blair', u'warn', u'iraq'] [u'brazin', u'share', u'fall', u'profit', u'warn'] [u'brisban', u'detect', u'assist', u'attack', u'probe'] [u'brit', u'attempt', u'polic', u'loot', u'basra'] [u'break', u'hill', u'resid', u'water'] [u'build', u'figur', u'confirm', u'horsham', u'growth'] [u'build', u'industri', u'worker', u'resist', u'chang'] [u'driver', u'stabl', u'level', u'cross', u'smash'] [u'bush', u'pledg', u'middl', u'east', u'peac', u'drive'] [u'stop', u'develop', u'save', u'rock'] [u'carey', u'swan', u'showdown'] [u'finish', u'drill', u'program'] [u'chairlift', u'accid', u'victim', u'seek', u'compo', u'oper'] [u'cheer', u'loot', u'break', u'baghdad'] [u'child', u'protect', u'group', u'welcom', u'jail', u'sentenc'] [u'chile', u'forum', u'highlight', u'divis'] [u'cipollini', u'play', u'ghent', u'wevelgem', u'chanc'] [u'clark', u'accus', u'ruddock', u'unaccept', u'behaviour'] [u'claw', u'hollywood', u'cat'] [u'clijster', u'reach', u'height'] [u'coalit', u'bomb', u'kill', u'afghan', u'civilian'] [u'communiti', u'group', u'oppos', u'develop', u'bankstown'] [u'concern', u'lyon', u'hous', u'develop'] [u'concern', u'doesnt', u'fair', u'share', u'fund'] [u'concern', u'wreck', u'pose', u'environment', u'risk'] [u'confid', u'tiger', u'stalk', u'unpreced', u'master', u'tripl'] [u'congressman', u'call', u'creation', u'peac'] [u'council', u'clear', u'respons', u'nowra', u'man'] [u'creditor', u'offer', u'pasminco', u'entitl', u'assur'] [u'croad', u'season', u'debut', u'richmond'] [u'cruz', u'take', u'sarth', u'limelight'] [u'davi', u'hop', u'love', u'affair', u'augusta'] [u'bosqu', u'cautious', u'despit', u'classi'] [u'denton', u'piggin', u'peac'] [u'denton', u'give', u'south', u'board', u'thumb'] [u'develop', u'continu', u'bone', u'discoveri', u'site'] [u'drug', u'dealer', u'today'] [u'doubt', u'saddam', u'son', u'kill', u'bomb', u'raid'] [u'staff', u'strike', u'fund', u'cut'] [u'strike', u'disrupt', u'court'] [u'congo', u'massacr', u'toll', u'revis'] [u'drought', u'tight', u'grip'] [u'eastern', u'baghdad', u'control', u'offici'] [u'aynaoui', u'arazi', u'home', u'soil'] [u'eleph', u'spring', u'antelop', u'cover', u'dark'] [u'back', u'garcia', u'glori'] [u'employe', u'steal', u'gambl', u'problem'] [u'experi', u'aborigin', u'remain', u'stop', u'leader'] [u'fatal', u'crash', u'spark', u'drive', u'school', u'train', u'review'] [u'govt', u'outlin', u'post', u'iraq', u'stanc', u'labor'] [u'crew', u'continu', u'patrol', u'perimet'] [u'forum', u'discuss', u'extens', u'council', u'boundari'] [u'franc', u'britain', u'meet', u'mend', u'fenc', u'iraq'] [u'fraser', u'trial', u'delay'] [u'fraud', u'aust', u'cost', u'crime'] [u'freeman', u'relax', u'realiti', u'check', u'loss'] [u'fruit', u'concern', u'spark', u'warn'] [u'fruit', u'grower', u'disast', u'relief', u'fund'] [u'fuelwatch', u'extend'] [u'fuelwatch', u'extend'] [u'celebr', u'game', u'mileston'] [u'celebr', u'game'] [u'govt', u'liabl', u'earli', u'birth', u'escap', u'stick'] [u'group', u'interven', u'blue', u'ribbon', u'disput'] [u'harvest', u'trail', u'expans', u'welcom'] [u'higher', u'educ', u'review', u'depend', u'budget'] [u'hill', u'miss', u'shark', u'clash'] [u'hope', u'rail', u'coast', u'joint', u'tourism', u'promot'] [u'hope', u'rail', u'overhaul', u'complement', u'coal', u'freight'] [u'indonesian', u'offic', u'indict', u'atroc'] [u'indoor', u'pool', u'plan', u'shelv'] [u'injuri', u'concern', u'cook'] [u'iraq', u'develop', u'steer', u'ord'] [u'iraqi', u'celebr', u'fall', u'saddam'] [u'iraq', u'reconstruct', u'australia'] [u'knight', u'gain', u'momentum', u'player'] [u'knight', u'welcom', u'kennedi'] [u'latrob', u'valley', u'doctor', u'ban', u'practis'] [u'litig', u'threat', u'close', u'popular', u'swim', u'hole'] [u'local', u'govt', u'ask', u'clarifi', u'stand', u'legalis'] [u'local', u'hero', u'wright', u'seal', u'promot'] [u'local', u'woodchip', u'export', u'doubl', u'port', u'author'] [u'longreach', u'land', u'go', u'hammer'] [u'loot', u'continu', u'basra'] [u'manag', u'team', u'announc', u'sober', u'shelter'] [u'face', u'murder', u'charg', u'remand', u'custodi'] [u'mcgradi', u'await', u'result', u'polic', u'station', u'closur'] [u'convict', u'murder', u'member', u'bandido'] [u'minist', u'say', u'prison', u'wont', u'return'] [u'minist', u'consid', u'strategi', u'expel'] [u'monto', u'goat', u'farmer', u'award', u'bursari'] [u'monti', u'brush', u'asid', u'poor', u'form', u'eye', u'master'] [u'call', u'central', u'water', u'forum'] [u'reduc', u'homeless', u'say'] [u'hit', u'opposit', u'network', u'claim'] [u'weigh', u'option', u'expel', u'student'] [u'mum', u'petit', u'doubl', u'jeopardi'] [u'nauru', u'detent', u'camp', u'extend', u'downer'] [u'mine', u'compani', u'list'] [u'outlook', u'boost', u'master'] [u'north', u'coast', u'politician', u'elect', u'opposit'] [u'norther', u'draw', u'favour', u'rosehil'] [u'upgrad', u'bankstown', u'airport'] [u'seek', u'drought', u'assist'] [u'sar', u'case', u'recov'] [u'renam', u'charl', u'darwin', u'univers'] [u'offici', u'attend', u'post', u'iraq', u'reconstruct'] [u'ombudsman', u'head', u'wide'] [u'outback', u'game', u'cancel'] [u'pakistan', u'thrash', u'kenya', u'sharjah'] [u'patient', u'return', u'home', u'council', u'approv'] [u'player', u'assoc', u'concern', u'financ', u'investig'] [u'player', u'concentr', u'compet', u'membership'] [u'port', u'author', u'council', u'agre'] [u'profit', u'warn', u'dampen', u'wall', u'street', u'enthusiasm'] [u'program', u'curb', u'youth', u'depress', u'brisban'] [u'qanta', u'cut', u'prompt', u'ansett', u'levi'] [u'qanta', u'cut', u'impact', u'board'] [u'qanta', u'loss', u'regrett'] [u'rain', u'continu', u'tasmania'] [u'rampag', u'raul', u'help', u'real', u'sink', u'unit'] [u'rampag', u'raul', u'put', u'real', u'seat'] [u'receivership', u'whitsunday', u'resort'] [u'receiv', u'sell', u'asset'] [u'cross', u'suspend', u'baghdad', u'work'] [u'report', u'await', u'liber', u'baghdad', u'basement'] [u'resid', u'alert', u'possibl', u'water', u'crisi'] [u'resid', u'vote', u'council'] [u'resort', u'set', u'committe', u'local', u'govt', u'void'] [u'riverfront', u'masterplan', u'wont', u'slow', u'marina', u'progress'] [u'rotarian', u'converg', u'brisban', u'despit', u'sar'] [u'continu', u'salin', u'fund'] [u'russia', u'zvonareva', u'advanc', u'charleston'] [u'saddam', u'surviv', u'bomb', u'report'] [u'face', u'fertilis', u'shortag'] [u'opposit', u'seek', u'assur', u'drought', u'fund'] [u'sar', u'forc', u'singapor', u'church', u'halt', u'confess'] [u'sar', u'threat', u'see', u'mask', u'access', u'increas'] [u'schnyder', u'oust', u'rain', u'plagu', u'charleston', u'event'] [u'school', u'children', u'drought', u'area', u'coast', u'trip'] [u'score', u'wound', u'palestinian', u'school', u'attack'] [u'start', u'young', u'studi'] [u'smooth', u'tinto', u'stewardship', u'transit', u'predict'] [u'soccer', u'australia', u'board', u'discuss', u'damn', u'report'] [u'soccer', u'australia', u'board', u'discuss', u'damn', u'report'] [u'street', u'celebr', u'iraqi', u'citi'] [u'student', u'travel', u'program'] [u'studi', u'show', u'asthma', u'case', u'decreas'] [u'stuff', u'dolli', u'go', u'display'] [u'sydney', u'resid', u'urg', u'continu', u'save', u'water'] [u'govt', u'face', u'question', u'sell', u'off'] [u'tasmania', u'introduc', u'handgun', u'restrict', u'legisl'] [u'teacher', u'elect', u'highlight', u'caus'] [u'technic', u'hitch', u'delay', u'rocket', u'launch'] [u'report', u'million', u'profit'] [u'tfga', u'air', u'concern', u'killafaddi', u'saleyard'] [u'kill', u'janeiro', u'gang', u'violenc'] [u'ignor', u'call', u'drop', u'gunston', u'fight'] [u'trezeguet', u'miss', u'rest', u'season'] [u'trio', u'face', u'court', u'cannabi', u'crop'] [u'ullrich', u'rejoic', u'return', u'rank'] [u'unhcr', u'voic', u'concern', u'baghdad', u'lawless'] [u'union', u'want', u'govt', u'stop', u'refineri', u'closur'] [u'discuss', u'korean', u'crisi'] [u'iraqi', u'bind', u'wheat'] [u'urgent', u'court', u'hear', u'detaine', u'centr', u'strike'] [u'base', u'seoul', u'offici'] [u'forc', u'reloc', u'central', u'seoul'] [u'hold', u'iraqi', u'pow'] [u'kurd', u'captur', u'mountain', u'close', u'mosul'] [u'marin', u'advanc', u'unoppos', u'baghdad'] [u'plan', u'strike', u'tikrit', u'report'] [u'strike', u'eagl', u'crew', u'miss'] [u'tank', u'reach', u'central', u'baghdad'] [u'troop', u'deploy', u'philippin', u'rebel'] [u'chairlift', u'collaps', u'hard', u'prevent', u'minist'] [u'govt', u'urg', u'review', u'gippsland', u'water', u'manag'] [u'vicioso', u'snatch', u'stage', u'lead', u'basqu', u'tour'] [u'public', u'servant', u'tell', u'cooper'] [u'govt', u'award', u'wrong', u'imprison'] [u'govt', u'wont', u'forc', u'council', u'merger'] [u'road', u'budget', u'slash'] [u'royal', u'commiss', u'adjourn', u'evid'] [u'sar', u'claim', u'qanta', u'job'] [u'warship', u'protest', u'face', u'crimin', u'charg'] [u'school', u'quarantin', u'student', u'stop', u'sar'] [u'waterfal', u'rail', u'inquiri', u'hear', u'eyewit'] [u'water', u'restrict', u'cole', u'lift'] [u'water', u'remain', u'agenda', u'despit', u'board', u'dissolv'] [u'waugh', u'expect', u'windi', u'fight'] [u'western', u'rocket', u'fire', u'iraq', u'kill', u'child', u'iran'] [u'present', u'sar', u'report', u'china'] [u'wiki', u'suspend', u'match'] [u'wine', u'export', u'roll'] [u'woman', u'face', u'fraud', u'charg', u'get', u'adjourn'] [u'women', u'renmark', u'pilot', u'confer'] [u'workshop', u'dairi', u'farmer', u'collect'] [u'youth', u'centr', u'seek', u'safe', u'overnight', u'accommod'] [u'fin', u'abus', u'worker'] [u'centuri', u'chines', u'artefact'] [u'aborigin', u'leader', u'urg', u'beatti', u'meet'] [u'aborigin', u'protest', u'radioact', u'wast', u'dump'] [u'health', u'profession', u'minist', u'tabl'] [u'actu', u'campaign', u'youth'] [u'unemploy', u'trend', u'increas'] [u'adelaid', u'politician', u'say', u'friday', u'night', u'traffic'] [u'alchol', u'free', u'zone', u'widen'] [u'alleg', u'peopl', u'smuggler', u'face', u'court'] [u'amateur', u'thiev', u'damag', u'pompeii', u'fresco'] [u'amend', u'delay', u'environment', u'protect', u'law'] [u'approach', u'public', u'drunken'] [u'arazi', u'coast', u'casablanca', u'quarter', u'final'] [u'armstrong', u'retir', u'circuit', u'sarth'] [u'arnott', u'fin', u'plastic', u'biscuit'] [u'aston', u'villa', u'pull', u'china', u'trip', u'asia'] [u'aussi', u'dollar', u'drop', u'slight', u'figur', u'slide'] [u'australian', u'pilot', u'scale', u'attack', u'iraq'] [u'aust', u'join', u'post', u'iraq', u'author'] [u'bateman', u'get', u'real', u'estat', u'thumb'] [u'bishop', u'slam', u'cannabi', u'plan'] [u'blair', u'bush', u'send', u'messag', u'iraqi'] [u'blair', u'postpon', u'northern', u'ireland', u'visit'] [u'blewett', u'symond', u'kent', u'stand'] [u'bowman', u'ban', u'clear', u'golden', u'slipper'] [u'bowman', u'face', u'steward', u'enquiri'] [u'brazil', u'appeal', u'roberto', u'carlo'] [u'british', u'court', u'clear', u'design', u'babi'] [u'broadcast', u'review', u'question'] [u'burn', u'victim', u'releas', u'form', u'intens', u'care'] [u'elect', u'result', u'loom'] [u'nativ', u'titl', u'offic', u'overhaul'] [u'go', u'blood', u'doner'] [u'candid', u'meet', u'greet', u'elect', u'heat'] [u'canin', u'distemp', u'outbreak', u'deni'] [u'celtic', u'press', u'home', u'advantag', u'boavista'] [u'cheney', u'trumpet', u'dazzl', u'race', u'baghdad'] [u'church', u'vandal', u'spark', u'appeal', u'help'] [u'cipo', u'disqualifi', u'klier', u'win', u'ghent', u'wevelgem', u'race'] [u'claim', u'drainag', u'scheme', u'contract', u'break'] [u'compani', u'seek', u'polic', u'protect', u'basslink'] [u'concern', u'rais', u'tourist', u'accommod'] [u'urg', u'govt', u'stop', u'pocket', u'kangaroo'] [u'continu', u'fight', u'stop', u'humanitarian'] [u'council', u'meet', u'manag'] [u'court', u'rule', u'identifi', u'blood', u'donor'] [u'crew', u'rescu', u'boast', u'capsiz'] [u'cruz', u'azul', u'qualifi', u'libertador', u'strongest'] [u'debat', u'continu', u'hydrotherapi', u'pool'] [u'defenc', u'dept', u'respond', u'call', u'leav', u'peninsula'] [u'doubt', u'rais', u'board', u'school', u'benefit'] [u'drought', u'grip'] [u'drug', u'gun', u'money', u'seiz', u'polic', u'raid'] [u'dutch', u'star', u'furi', u'tight', u'fist', u'ger'] [u'elector', u'commission', u'consid', u'banana', u'shire'] [u'line', u'concord'] [u'england', u'white', u'month'] [u'farmer', u'await', u'decis'] [u'fear', u'telstra', u'slash', u'job'] [u'feder', u'fund', u'power', u'king', u'island', u'wind'] [u'fierc', u'battl', u'baghdad', u'mosqu'] [u'face', u'murder', u'charg', u'remand', u'custodi'] [u'jordan', u'valley', u'gunfight'] [u'goal', u'race', u'storm', u'libertador', u'second'] [u'franc', u'claim', u'edg', u'euro', u'space', u'race'] [u'fund', u'seek', u'safe', u'drive', u'centr'] [u'ganguli', u'confid', u'india', u'turn', u'face'] [u'gladston', u'harbour', u'protect', u'strategi', u'releas'] [u'govt', u'crack', u'dodgi', u'didg'] [u'govt', u'criticis', u'cut', u'support'] [u'govt', u'shut', u'door', u'age', u'care', u'hostel'] [u'govt', u'unveil', u'woden', u'redevelop'] [u'green', u'attack', u'parti', u'leader', u'parliamentari'] [u'green', u'light', u'tafe', u'facil'] [u'group', u'say', u'local', u'iraqi', u'welcom', u'regim', u'collaps'] [u'group', u'address', u'jobless', u'rate'] [u'health', u'profession', u'fight', u'rise'] [u'henman', u'withdraw', u'mont', u'carlo', u'master'] [u'suffer', u'access', u'infect', u'donor'] [u'highway', u'studi', u'includ', u'rail', u'corridor'] [u'histor', u'voyag', u'dock', u'port', u'adelaid'] [u'histori', u'point', u'pakistan', u'sharjah', u'final'] [u'hope', u'prepar', u'work', u'start', u'soon'] [u'huge', u'facelift', u'plan', u'sanctuari', u'cove'] [u'hundr', u'student', u'protest', u'melbourn'] [u'hurrican', u'super', u'impact'] [u'hydro', u'get', u'fund', u'king', u'wind', u'farm'] [u'predict', u'slowdown', u'aust', u'economi'] [u'indian', u'woman', u'age', u'world', u'oldest'] [u'indigen', u'hand', u'flood', u'mitig', u'work'] [u'indi', u'tip', u'attract', u'record', u'crowd'] [u'injur', u'fli', u'number', u'caus', u'concern'] [u'inquiri', u'consid', u'suppress', u'accus', u'name'] [u'iraqi', u'offici', u'close', u'jordanian', u'border'] [u'iraqi', u'offici', u'go', u'grind'] [u'isra', u'helicopt', u'strike', u'kill', u'hama', u'activist'] [u'jewelleri', u'drug', u'cach', u'buri', u'yard'] [u'jobless', u'rate', u'climb'] [u'kafelnikov', u'sudden', u'get', u'right', u'clay'] [u'kenyan', u'pacemak', u'radcliff', u'record', u'attempt'] [u'kimberley', u'peopl', u'wait', u'year'] [u'kirkuk', u'fall', u'kurdish', u'forc'] [u'kurdish', u'fighter', u'leav', u'kirkuk', u'governor'] [u'kurdish', u'forc', u'enter', u'kirkuk', u'report'] [u'kurdish', u'forc', u'seiz', u'town', u'near', u'kirkuk'] [u'kurdish', u'forc', u'enter', u'kirkuk'] [u'liddi', u'victim', u'trial', u'abandon'] [u'liquor', u'licens', u'law', u'wont', u'chang'] [u'loud', u'blast', u'hear', u'baghdad'] [u'lowi', u'get', u'board', u'step'] [u'charg', u'hand', u'machin', u'discoveri'] [u'face', u'court', u'murder', u'charg'] [u'marin', u'search', u'saddam'] [u'marin', u'search', u'mosqu', u'saddam'] [u'mayor', u'urg', u'beef', u'disrupt'] [u'meet', u'aim', u'tail', u'dock'] [u'face', u'court', u'half', u'million', u'ecstasi'] [u'miner', u'find', u'vermiculit', u'near', u'alic'] [u'minist', u'defend', u'drought', u'declar', u'method'] [u'miss', u'safe'] [u'shower', u'predict', u'northern'] [u'question', u'school', u'educ', u'cours'] [u'slam', u'pilbara', u'studi', u'fund'] [u'murder', u'girl', u'aliv'] [u'natwa'] [u'negus', u'blast', u'crawford', u'report'] [u'fisheri', u'plan', u'expect', u'offer', u'sustain'] [u'news', u'corp', u'loss', u'drag', u'market', u'lower'] [u'compens', u'afghan', u'bomb', u'victim', u'militari'] [u'posit', u'dope', u'test', u'world'] [u'unemploy', u'rate', u'fall'] [u'corpor', u'raider', u'scuttl', u'aust', u'worker'] [u'opium', u'drink', u'withdraw', u'shelv'] [u'pagan', u'sheedi', u'start', u'word'] [u'painkil', u'cancer', u'prevent', u'link', u'studi'] [u'painkil', u'lower', u'colon', u'cancer', u'risk', u'scientist'] [u'palmerston', u'mayor', u'fight', u'boundari', u'expans'] [u'piggeri', u'approv'] [u'urg', u'swift', u'iraqi', u'handov'] [u'guilti', u'misconduct'] [u'polic', u'lower', u'truck', u'crash', u'rate'] [u'polic', u'arrest', u'link', u'outlaw', u'biki', u'gang'] [u'polic', u'minist', u'tour', u'north', u'coast'] [u'polic', u'probe', u'pend', u'bug'] [u'polic', u'search', u'miss', u'woman'] [u'power', u'ranger', u'closer', u'scottish', u'trebl'] [u'prawn', u'trawler', u'crash'] [u'qanta', u'push', u'ahead', u'allianc'] [u'qanta', u'staff', u'cut', u'impact'] [u'unemploy', u'rate', u'climb'] [u'quarantin', u'increas', u'australian', u'port'] [u'quokka', u'killer', u'await', u'sentenc'] [u'vice', u'chancellor', u'retir'] [u'radic', u'palestinian', u'lament', u'saddam', u'fall'] [u'rail', u'crash', u'probe', u'hear', u'airborn', u'evid'] [u'rain', u'reliev', u'break', u'hill', u'water', u'suppli'] [u'real', u'madrid', u'faith', u'fall', u'love', u'ronaldo'] [u'receiv', u'examin', u'king', u'bros', u'sale', u'contract'] [u'report', u'prais', u'south', u'australian', u'econom'] [u'rescu', u'packag', u'plan', u'medicar'] [u'research', u'link', u'pregnant', u'women', u'diet', u'diseas'] [u'resid', u'fruit', u'remind'] [u'restrict', u'melbourn', u'water', u'cost', u'rise'] [u'road', u'name', u'prioriti', u'road', u'recoveri'] [u'russian', u'school', u'kill', u'children'] [u'saddam', u'birthplac', u'coalit', u'sight'] [u'sainz', u'hop', u'real', u'masterclass', u'lucki', u'omen'] [u'santo', u'brazil', u'championship'] [u'sar', u'concern', u'stop', u'gold', u'coast', u'meet'] [u'sar', u'death', u'continu', u'china'] [u'sar', u'impact', u'affect', u'fruit', u'export'] [u'school', u'student', u'close'] [u'scientist', u'euthanis', u'giant', u'calf', u'clone'] [u'scientist', u'predict', u'global', u'warm', u'delug'] [u'serena', u'advanc', u'charleston'] [u'shellfish', u'alga', u'outbreak', u'slam', u'beat'] [u'simpson', u'knight', u'shipway', u'cop'] [u'socceroo', u'tiatto', u'season'] [u'storm', u'forc', u'master', u'start', u'delay'] [u'student', u'protest', u'australia'] [u'student', u'busi', u'join', u'protest'] [u'suicid', u'bomber', u'target', u'marin'] [u'govt', u'pressur', u'strike', u'deal'] [u'tasmanian', u'unemploy', u'rise'] [u'teacher', u'clock', u'secur', u'stop'] [u'territori', u'review', u'elector', u'commiss'] [u'thai', u'blank', u'czech', u'place', u'world'] [u'tourism', u'chief', u'confid', u'coast', u'surviv', u'airlin'] [u'tourist', u'drown', u'sunshin', u'coast', u'beach'] [u'town', u'camp', u'kid', u'initi', u'screen'] [u'train', u'withdraw', u'servic'] [u'tram', u'propos', u'unveil', u'mall'] [u'travel', u'alert', u'turkey', u'lead', u'anzac'] [u'turkey', u'watch', u'kirkuk', u'situat'] [u'divid', u'north', u'korea', u'nuclear', u'stand'] [u'unemploy', u'fall', u'south', u'australia'] [u'unemploy', u'increas', u'victoria'] [u'unemploy', u'rise'] [u'avoid', u'victori', u'danc', u'fall', u'baghdad'] [u'substanti', u'forc', u'tikrit', u'area'] [u'kurdish', u'forc', u'kirkuk', u'popular', u'upris'] [u'militari', u'say', u'iraq', u'battl', u'come'] [u'tank', u'head', u'mosul', u'strike', u'report'] [u'valverd', u'win', u'photo', u'finish', u'basqu', u'tour'] [u'govt', u'urg', u'address', u'insur', u'woe'] [u'govt', u'urg', u'reconsid', u'elector', u'offic', u'fund'] [u'victoria', u'introduc', u'water', u'legisl'] [u'virgin', u'jockey', u'freedom'] [u'govt', u'ban', u'minist', u'meet', u'premier'] [u'ground', u'fli', u'doctor', u'contract', u'saudi', u'arabia'] [u'watchdog', u'savag', u'qanta', u'deal'] [u'unemploy', u'fall', u'slight'] [u'woman', u'arrest', u'assassin', u'serbian'] [u'search', u'frog', u'tasmania'] [u'abera', u'world', u'best', u'london'] [u'abl', u'seaman', u'sail'] [u'impos', u'water', u'restrict'] [u'say', u'specialist', u'troop', u'help', u'rebuild', u'post'] [u'warn', u'terror', u'attack'] [u'agre', u'doubl', u'jeopardi', u'review'] [u'airlin', u'chief', u'want', u'merger', u'ahead', u'despit'] [u'anarchi', u'mosul', u'fall'] [u'anzac', u'clash', u'sell'] [u'custom', u'warn', u'fake', u'websit'] [u'arm', u'looter', u'roam', u'baghdad', u'street'] [u'arm', u'roam', u'street', u'baghdad'] [u'arsenal', u'southampton', u'face', u'test', u'nerv'] [u'aust', u'role', u'iraq', u'captur', u'film'] [u'bayern', u'approach', u'bundelisga', u'coron'] [u'beach', u'get', u'poor', u'water', u'qualiti', u'rat'] [u'beatti', u'predict', u'inquiri', u'ryan', u'disappear'] [u'beij', u'report', u'sar', u'case'] [u'berlin', u'polic', u'storm', u'hijack'] [u'black', u'disappoint', u'sack'] [u'blade', u'manag', u'readi', u'giant', u'kill'] [u'bolivar', u'crash', u'libertador', u'puma'] [u'bolling', u'get', u'team'] [u'bowman', u'clear', u'golden', u'slipper'] [u'britain', u'begin', u'scale', u'gulf', u'forc'] [u'burnley', u'tunnel', u'leakag', u'decad'] [u'bushfir', u'area', u'reopen'] [u'hijack', u'berlin', u'bank', u'robberi'] [u'bush', u'promis', u'iraqi', u'protect', u'disord'] [u'footi', u'facil', u'boost'] [u'carlton', u'stun', u'essendon'] [u'celt', u'angri', u'date', u'vital', u'leagu', u'clash'] [u'chao', u'reign', u'baghdad'] [u'claim', u'nation', u'park', u'move', u'hurt', u'popul'] [u'collingwood', u'decid', u'fraser', u'fate', u'afternoon'] [u'commiss', u'find', u'tape', u'cost', u'thousand'] [u'committe', u'review', u'doubl', u'jeopardi'] [u'compani', u'run', u'develop', u'land'] [u'compani', u'list'] [u'concern', u'air', u'nation', u'servic', u'medal', u'delay'] [u'confid', u'cowboy', u'hope', u'rooster'] [u'council', u'help', u'struggl', u'shearer', u'museum'] [u'court', u'hear', u'appeal', u'overturn'] [u'croc', u'retain', u'stacker'] [u'cuban', u'offici', u'thwart', u'hijack', u'attempt'] [u'cuper', u'confid', u'despit', u'inter', u'lacklustr', u'display'] [u'dementia', u'respit', u'centr', u'provid', u'relief', u'home'] [u'democrat', u'urg', u'iraq', u'peacekeep', u'mission'] [u'dengu', u'effort', u'begin'] [u'deputi', u'mayor', u'resign', u'manag', u'concern'] [u'develop', u'like', u'boost', u'tram', u'patronag'] [u'baiter', u'pass', u'skill', u'youth'] [u'dougla', u'zeta', u'jone', u'landmark', u'case'] [u'driver', u'urg', u'care', u'near', u'spill'] [u'drought', u'boost', u'south', u'west', u'properti'] [u'drought', u'high', u'wool', u'price', u'cost', u'job'] [u'easter', u'trade', u'ban', u'caus', u'confus'] [u'elli', u'favour', u'perth', u'sack', u'black'] [u'england', u'face', u'uefa', u'racism', u'charg'] [u'reject', u'heater', u'rebat'] [u'evid', u'show', u'malform', u'brain', u'paint', u'addict'] [u'farmer', u'drought'] [u'farmer', u'look', u'forward', u'rain'] [u'farmer', u'welcom', u'rain'] [u'finn', u'gronholm', u'lead', u'zealand'] [u'firearm', u'charg', u'drop', u'packer'] [u'fisher', u'fear', u'long', u'wait', u'compo'] [u'offic', u'injur', u'iraq', u'suicid', u'attack'] [u'footbal', u'academi', u'seek', u'expans', u'fund'] [u'footbal', u'club', u'honour', u'bali', u'victim'] [u'frank', u'say', u'iraq', u'ruler', u'dead', u'flee'] [u'fraser', u'debut', u'geelong'] [u'royal', u'perform', u'royal', u'resort', u'titl'] [u'furnitur', u'proceed', u'help', u'creditor'] [u'gayl', u'eligibil', u'select', u'australia', u'seri'] [u'govt', u'accus', u'cover', u'aborigin', u'prison'] [u'govt', u'put', u'ethanol', u'level', u'petrol'] [u'grace', u'bros', u'shut', u'door', u'tamworth'] [u'green', u'relay'] [u'gronholm', u'domin', u'zealand'] [u'gronholm', u'earli', u'ralli', u'lead'] [u'group', u'unhappi', u'reject', u'inmat', u'centr'] [u'gunman', u'hold', u'hostag', u'berlin'] [u'heavi', u'rain', u'wreak', u'havoc', u'victoria'] [u'heritag', u'offic', u'move', u'monitor', u'burrup'] [u'high', u'court', u'grant', u'leav', u'copyright', u'appeal'] [u'high', u'noon', u'toon', u'unit'] [u'hospit', u'wont', u'charg', u'patient', u'polici', u'excess'] [u'hotlin', u'youth', u'work', u'concern'] [u'hydro', u'stop', u'cloud', u'seed', u'april'] [u'illeg', u'marron', u'fish', u'spark', u'warn'] [u'indonesian', u'skipper', u'remand', u'custodi'] [u'indonesia', u'warn', u'militari', u'solut', u'aceh'] [u'iraqi', u'associ', u'say', u'cwealth', u'harass'] [u'iraqi', u'corp', u'surrend', u'mosul'] [u'iraqi', u'relat', u'militari', u'jail'] [u'iraqi', u'negoti', u'surrend', u'mosul'] [u'iraqi', u'troop', u'abandon', u'mosul', u'kurd'] [u'isra', u'forc', u'kill', u'militari', u'islam', u'jihad', u'leader'] [u'jacob', u'put', u'windi', u'health'] [u'jail', u'cell', u'youth', u'sport', u'area'] [u'japanes', u'report', u'find', u'product', u'clone', u'cattl'] [u'jayasuriya', u'quit', u'lankan', u'captainci'] [u'juventus', u'seek', u'titl', u'tonic', u'european', u'choker'] [u'knight', u'gain', u'reveng'] [u'kurdish', u'exit', u'kirkuk', u'enter', u'mosul'] [u'land', u'go', u'block'] [u'land', u'agreement', u'allow', u'women', u'safe', u'hous'] [u'crunch', u'lyon', u'face', u'bordeaux'] [u'looter', u'shoot', u'baghdad'] [u'luxuri', u'ship', u'cancel', u'voyag', u'staff', u'fall'] [u'lyle', u'launch', u'round', u'play', u'augusta'] [u'magistr', u'spar', u'jail'] [u'mall', u'plan', u'protest', u'meet', u'mayor'] [u'man', u'condit', u'improv', u'blast'] [u'trap', u'crash'] [u'unit', u'prove'] [u'market', u'edg', u'higher', u'finish', u'week'] [u'mental', u'health', u'worker', u'fight', u'increas'] [u'minist', u'predict', u'success', u'battl'] [u'struggl', u'stay', u'aliv'] [u'pride', u'stake', u'milan', u'derbi'] [u'mosul', u'kirkuk', u'fall', u'militari'] [u'seek', u'speed', u'limit', u'explain'] [u'urg', u'stop', u'talk', u'alic'] [u'murphi', u'fastest', u'phillip', u'island', u'practic'] [u'nativ', u'titl', u'disput', u'court'] [u'late'] [u'chief', u'execut', u'appoint', u'health'] [u'nigerian', u'drummer', u'babatund', u'olatunji', u'die'] [u'ricin', u'contain', u'pari', u'station'] [u'govt', u'accus', u'cover', u'aborigin'] [u'govt', u'reject', u'council', u'stamp', u'duti', u'claim'] [u'show', u'fairfax', u'publish'] [u'oyster', u'harvest', u'lift', u'soon'] [u'palestinian', u'wound', u'isra', u'raid', u'gaza'] [u'perth', u'phone', u'line', u'week', u'storm'] [u'phone', u'cabl'] [u'pitcairn', u'island', u'face', u'massiv', u'scandal'] [u'player', u'bodi', u'unveil', u'replac'] [u'polic', u'toler', u'shop', u'centr'] [u'polic', u'consid', u'arson', u'abattoir', u'blaze'] [u'polic', u'jewelleri', u'owner'] [u'power', u'snatch', u'draw', u'adelaid'] [u'premier', u'disappoint', u'block', u'airlin', u'deal'] [u'protestor', u'ant', u'master'] [u'public', u'urg', u'druggi'] [u'putin', u'arriv', u'iraq', u'summit'] [u'qanta', u'award', u'contribut', u'bali', u'aftermath'] [u'qanta', u'fail', u'notifi', u'union', u'downsiz', u'plan'] [u'raikkonen', u'strip', u'brazilian', u'victori'] [u'rail', u'crash', u'probe', u'hear', u'driver', u'record'] [u'ranger', u'continu', u'trebl', u'chase'] [u'repair', u'underway', u'damag', u'powerlin'] [u'revolutionari', u'simul', u'expect', u'improv'] [u'richardson', u'chanc', u'frawley'] [u'rival', u'soccer', u'leagu', u'launch', u'today'] [u'robinson', u'reject', u'conflict', u'claim'] [u'roger', u'waratah'] [u'rugbi', u'chief', u'block', u'caucau', u'switch'] [u'russia', u'reassert', u'central', u'role', u'post'] [u'saddam', u'half', u'brother', u'barzan', u'kill', u'report'] [u'govt', u'wont', u'subsidis', u'servic'] [u'sar', u'biolog', u'weapon', u'expert'] [u'sar', u'expect', u'affect', u'local', u'aquacultur'] [u'sar', u'suspect', u'catch', u'hospit', u'breakout'] [u'search', u'flee', u'iraqi', u'offici'] [u'school', u'princip', u'name', u'young', u'person', u'year'] [u'shark', u'victim', u'save', u'coron'] [u'shiit', u'protest', u'storm', u'iraq', u'embassi', u'tehran'] [u'signific', u'progress', u'hous', u'agreement', u'vanston'] [u'japan', u'firework', u'factori', u'explos'] [u'slight', u'increas', u'home', u'loan'] [u'sentenc', u'year', u'jail', u'doubl', u'murder'] [u'sport', u'centr', u'get', u'liquor', u'licenc'] [u'sptnrl'] [u'summit', u'consid', u'boost', u'region', u'invest'] [u'support', u'summit', u'drought', u'break'] [u'surpris', u'tasmanian', u'frog', u'search'] [u'swan', u'face', u'tough', u'test', u'crow', u'roo'] [u'tail', u'dock', u'practic', u'continu'] [u'suspect', u'sar', u'case'] [u'tourism', u'campaign', u'push', u'west', u'sydneysid'] [u'trezeguet', u'season', u'juventus'] [u'tufnel', u'end', u'controversi', u'career'] [u'turkey', u'send', u'observ', u'iraq'] [u'unemploy', u'drop', u'break', u'hill'] [u'union', u'air', u'concern', u'indigen', u'affair', u'dept'] [u'union', u'fear', u'telstra', u'loss'] [u'union', u'want', u'king', u'bros', u'worker', u'entitl', u'secur'] [u'say', u'coalit', u'breach', u'geneva', u'convent'] [u'marin', u'kill', u'children', u'checkpoint', u'error'] [u'closer', u'elector', u'equal'] [u'waratah', u'down', u'wellington'] [u'warm', u'condit', u'expect', u'rest', u'master'] [u'water', u'conserv', u'measur', u'possibl', u'north', u'east'] [u'water', u'reform', u'spark', u'local', u'govt', u'concern'] [u'william', u'walk', u'meet'] [u'winemak', u'look', u'scandinavian', u'export'] [u'workcov', u'deficit', u'month'] [u'yanner', u'jail', u'hotel', u'worker', u'assault'] [u'youth', u'unemploy', u'concern', u'air'] [u'charg', u'illeg', u'tobacco', u'shipment', u'plot'] [u'plane', u'make', u'emerg', u'land', u'darwin'] [u'discuss', u'aborigin', u'incarcer'] [u'say', u'itiner', u'embarrass'] [u'ancient', u'cannib', u'protect'] [u'anti', u'protest', u'continu', u'zealand'] [u'australia', u'pont', u'langer', u'ton'] [u'australia', u'send', u'medic', u'suppli', u'baghdad'] [u'australia', u'take', u'healthi', u'lead', u'test'] [u'aust', u'send', u'urgent', u'medic', u'iraq'] [u'baghdad', u'archeolog', u'museum', u'loot'] [u'bali', u'tragedi', u'etch', u'nation', u'conscious', u'howard'] [u'beach', u'memori', u'bali', u'victim'] [u'beatti', u'say', u'public', u'servic', u'cope', u'cut'] [u'better', u'late', u'say', u'fisichella'] [u'bolton', u'admit', u'need', u'miracl'] [u'british', u'activist', u'shoot', u'gaza', u'strip', u'attack'] [u'british', u'forc', u'seek', u'restor', u'order', u'basra'] [u'british', u'kill', u'bankrobb', u'basra'] [u'british', u'wound', u'isra', u'tank'] [u'broom', u'cotton', u'trial', u'face', u'opposit'] [u'budd', u'hop', u'london', u'marathon', u'heal', u'nightmar'] [u'driver', u'die', u'train', u'crash'] [u'bush', u'hold', u'victori', u'declar'] [u'bush', u'warn', u'syria', u'border', u'close'] [u'canberra', u'jail', u'chequ', u'fraud'] [u'claim', u'sar', u'travel', u'fear', u'damag', u'lobster', u'export'] [u'club', u'revenu', u'raiser', u'associ'] [u'communiti', u'group', u'lobbi', u'public', u'land'] [u'cook', u'sidelin', u'hell', u'north'] [u'council', u'inquiri', u'team', u'reject', u'claim', u'report'] [u'crusad', u'annihil', u'cat', u'shark', u'edg', u'chief'] [u'cuba', u'execut', u'ferri', u'hijack'] [u'davi', u'claim', u'stage', u'cruz', u'win', u'circuit'] [u'dozen', u'wound', u'kashmir', u'explos'] [u'england', u'fight', u'racism', u'charg'] [u'issu', u'domin', u'malta', u'elect'] [u'famili', u'suffer', u'critic', u'burn', u'fridg', u'explod'] [u'field', u'wide', u'open', u'golden', u'slipper'] [u'nation', u'ask', u'forgiv', u'iraqi', u'debt'] [u'garner', u'defend', u'troop', u'civil', u'order', u'effort'] [u'german', u'court', u'order', u'brothel', u'refund'] [u'glitch', u'leav', u'telstra', u'broadband', u'consum'] [u'govt', u'urg', u'encourag', u'death', u'penalti', u'abolish'] [u'ikin', u'bronco'] [u'india', u'defenc', u'minist', u'say', u'trainer', u'deal'] [u'iraqi', u'demand', u'secur', u'baghdad'] [u'iraqi', u'respond', u'help'] [u'iraq', u'ambassador', u'conced', u'saddam'] [u'iraq', u'upbeat', u'inform', u'minist', u'websit'] [u'irish', u'eye', u'smile', u'wood', u'struggl'] [u'isra', u'critic', u'wound', u'british', u'activist'] [u'itali', u'threaten', u'world', u'boycott'] [u'journo', u'rescu', u'baghdad', u'hospit', u'dead'] [u'kurdish', u'troop', u'withdraw', u'kirkuk', u'forc'] [u'order', u'continu', u'downward', u'spiral', u'iraq'] [u'leak', u'memo', u'spark', u'specul', u'deegan', u'sack'] [u'littl', u'loco', u'motion', u'fame', u'die'] [u'live', u'fire', u'exercis', u'north', u'weekend'] [u'loot', u'continu', u'mosul'] [u'lyon', u'open', u'point', u'bordeaux'] [u'dead', u'hit', u'tree', u'sunshin', u'motorway'] [u'stab', u'death', u'western', u'sydney'] [u'marin', u'patrol', u'lawless', u'baghdad', u'secur'] [u'marin', u'patrol', u'baghdad', u'street'] [u'mayo', u'domin', u'final', u'tour', u'basqu'] [u'meat', u'eat', u'dinosaur', u'footprint', u'portug'] [u'remand', u'custodi', u'drug', u'raid'] [u'minist', u'target', u'broomrap', u'weed'] [u'mob', u'trash', u'baghdad', u'hotel'] [u'job', u'risk', u'singapor', u'airlin', u'tighten'] [u'polic', u'arriv', u'question', u'miss', u'girl'] [u'moroccan', u'partner', u'clash', u'casablanca', u'semi'] [u'say', u'border', u'patrol', u'appreci'] [u'museeuw', u'ride', u'hell'] [u'fli', u'home', u'australia', u'drink', u'drive'] [u'aussi', u'sar', u'cloud'] [u'victori', u'ralli', u'wall', u'street', u'return'] [u'govt', u'pressur', u'prison', u'death'] [u'green', u'govt', u'notic'] [u'person', u'miss', u'boat', u'accid'] [u'perth', u'minist', u'leav', u'iraq'] [u'petroleum', u'institut', u'welcom', u'cwealth', u'ethanol'] [u'pie', u'eagl', u'port', u'rampag', u'lion', u'roo'] [u'pie', u'eagl', u'port', u'rampag', u'lion', u'roo', u'draw'] [u'pire', u'clash'] [u'playoff', u'candid', u'forest', u'wolv', u'share'] [u'polar', u'success', u'take', u'golden', u'slipper'] [u'polic', u'arrest', u'arm', u'robberi'] [u'pont', u'confid', u'earli'] [u'post', u'general', u'say', u'secur', u'improv'] [u'power', u'restor', u'home'] [u'propos', u'access', u'aust', u'easier'] [u'putin', u'welcom', u'fall', u'saddam', u'slam', u'tactic'] [u'pyongyang', u'promis', u'nuclear', u'talk', u'chang'] [u'cattl', u'council', u'leader', u'snag', u'industri', u'award'] [u'compani', u'say', u'filtrat', u'devic', u'wipe', u'sar'] [u'govt', u'investig', u'heritag', u'list', u'option'] [u'quinn', u'nomin', u'brisban', u'lord', u'mayor'] [u'ranger', u'happi', u'celtic', u'derbi', u'date'] [u'rann', u'condemn', u'mobil', u'refineri', u'closur'] [u'rann', u'hop', u'implement', u'econom', u'summit', u'propos'] [u'cross', u'demand', u'coalit', u'protect', u'iraqi', u'hospit'] [u'cross', u'mark', u'month', u'bali', u'terrorist'] [u'rescu', u'jessica', u'lynch', u'return'] [u'resid', u'frustrat', u'anarchi', u'reign', u'baghdad'] [u'reuter', u'start', u'search', u'chairman'] [u'rumsfeld', u'critic', u'repetit', u'media', u'report'] [u'russia', u'germani', u'franc', u'urg', u'post', u'role'] [u'compani', u'director', u'jail', u'defraud', u'cwealth'] [u'saddam', u'aid', u'surrend'] [u'saddam', u'aid', u'surrend', u'reward', u'offer'] [u'saddam', u'regim', u'go', u'white', u'hous'] [u'sar', u'forc', u'toronto', u'school', u'closur'] [u'shark', u'overwhelm', u'chief'] [u'singapor', u'airlin', u'forc', u'job', u'servic'] [u'singh', u'maiden', u'centuri', u'hapless'] [u'skaif', u'fastest', u'holden', u'domin'] [u'sniper', u'greet', u'forc', u'mosul'] [u'south', u'african', u'bowler', u'arrest', u'drink', u'drive'] [u'south', u'african', u'bowler', u'send', u'home', u'drink', u'drive'] [u'south', u'tast', u'victori'] [u'south', u'tast', u'victori', u'storm', u'sink'] [u'stanhop', u'reject', u'abolish', u'doubl', u'jeopardi'] [u'stanhop', u'welcom', u'cweath', u'decis', u'ethanol', u'fuel'] [u'stay', u'home', u'blade', u'plan', u'spike', u'gunner'] [u'storm', u'power', u'north', u'west'] [u'health', u'consid', u'sar', u'option'] [u'suspect', u'cole', u'attack', u'escap', u'jail'] [u'injur', u'camper', u'explos'] [u'sar', u'death', u'hong', u'kong'] [u'time', u'champion', u'pinto', u'london', u'marathon'] [u'defend', u'polic', u'handl', u'ryan', u'case'] [u'turkey', u'monitor', u'militari', u'develop', u'northern'] [u'dead', u'inner', u'mongolia', u'sar', u'spread'] [u'injur', u'quak', u'shake', u'northern', u'itali'] [u'forc', u'kill', u'looter', u'basra', u'bank'] [u'dead', u'wound', u'mosul', u'fight'] [u'urgent', u'food', u'appeal', u'ethiopia'] [u'urgent', u'need', u'medic', u'arriv', u'baghdad'] [u'deal', u'iraqi', u'list'] [u'deleg', u'meet', u'iraqi', u'opposit', u'boucher'] [u'opt', u'anti', u'china', u'resolut', u'meet'] [u'plan', u'secur', u'stop', u'loot', u'iraq'] [u'investig', u'kill', u'journalist', u'iraq'] [u'meet', u'iraqi', u'opposit'] [u'vanston', u'happi', u'hous', u'progress'] [u'veteran', u'kafelnikov', u'estoril'] [u'voss', u'seal', u'gasp', u'draw', u'lion'] [u'expens', u'afford', u'expert', u'say'] [u'weir', u'charg', u'wood', u'begin', u'stir'] [u'west', u'wag', u'start', u'player', u'exodus'] [u'william', u'advanc', u'harkleroad', u'shock', u'hantuchova'] [u'wood', u'green', u'jacket', u'sight'] [u'zeta', u'jone', u'dougla', u'photo', u'fight'] [u'dead', u'injur', u'road'] [u'hold', u'letter', u'offer', u'reward'] [u'sar', u'death'] [u'soldier', u'rescu', u'report'] [u'welcom', u'bank', u'decis', u'open', u'saturday'] [u'accrington', u'stanley', u'step', u'away', u'footbal'] [u'milan', u'derbi', u'reviv', u'titl', u'hop'] [u'anti', u'protest', u'march', u'europ'] [u'asean', u'countri', u'send', u'deleg', u'north', u'korea'] [u'atsic', u'control', u'budget', u'ruddock'] [u'lunch'] [u'aust', u'pursu', u'free', u'trade', u'deal'] [u'australian', u'mobil', u'drive', u'studi'] [u'award', u'offer', u'rural', u'industri', u'studi'] [u'baghdad', u'curfew', u'night', u'fall'] [u'bartlett', u'support', u'humanitarian', u'role', u'troop'] [u'bayern', u'home', u'leagu', u'defeat', u'year'] [u'beatti', u'say', u'public', u'entitl', u'hear', u'teenag'] [u'bellevu', u'inquiri', u'examin', u'submiss'] [u'biofuel', u'associ', u'push', u'total', u'label'] [u'brilliant', u'blue', u'bewild', u'bull'] [u'british', u'troop', u'search', u'prison'] [u'brown', u'say', u'ground', u'iraq', u'attack'] [u'bruno', u'prepar', u'comeback', u'fight', u'harrison'] [u'builder', u'pocket', u'clean'] [u'bush', u'welcom', u'saddam', u'reign'] [u'urgent', u'overhaul', u'demerit', u'point'] [u'canegrow', u'push', u'ethanol', u'petrol'] [u'cheri', u'blair', u'address', u'melbourn', u'confer'] [u'china', u'condemn', u'loot', u'baghdad', u'embassi', u'demand'] [u'crusad', u'crush', u'cat'] [u'custom', u'seiz', u'massiv', u'tobacco', u'haul'] [u'davydenko', u'down', u'mirnyi', u'final'] [u'death', u'toll', u'rise', u'road'] [u'delight', u'ferguson', u'set', u'sight', u'arsenal'] [u'deportivo', u'crush', u'barcelona', u'close', u'real'] [u'drug', u'agenc', u'warn', u'high', u'grade', u'heroin'] [u'kill', u'nigerian', u'poll'] [u'aynaoui', u'face', u'boutter', u'casablanca', u'final'] [u'write', u'master', u'titl', u'hop'] [u'govt', u'consid', u'repatri', u'iraqi'] [u'find', u'ban', u'weapon', u'import', u'poll'] [u'sar', u'death', u'hong', u'kong'] [u'frank', u'confirm', u'soldier', u'iraq'] [u'financ', u'chief', u'action', u'iraq'] [u'garner', u'defend', u'troop', u'civil', u'order', u'effort'] [u'glori', u'leav', u'late', u'newcastl', u'hold', u'spirit'] [u'govt', u'decid', u'send', u'troop', u'iraq'] [u'govt', u'grant', u'film', u'project'] [u'grant', u'help', u'teach', u'children', u'water', u'valu'] [u'gronholm', u'lead', u'peugeot', u'zealand'] [u'gronholm', u'pois', u'victori', u'zealand'] [u'gronholm', u'win', u'zealand', u'ralli'] [u'group', u'order', u'shiit', u'muslim', u'quit', u'iraq'] [u'heroic', u'red', u'stormer'] [u'human', u'chain', u'form', u'consul', u'protest'] [u'predict', u'aust', u'hous', u'bust'] [u'iraqi', u'drug', u'traffick', u'behead', u'saudi', u'arabia'] [u'iraqi', u'protest', u'forc', u'baghdad'] [u'islam', u'leader', u'tell', u'focus', u'peacekeep'] [u'israel', u'lower', u'level', u'alert', u'attack', u'iraq'] [u'israel', u'yield', u'settlement', u'peac', u'sharon'] [u'jourdain', u'win', u'career', u'cart', u'pole', u'long', u'beach'] [u'keegan', u'keep', u'faith', u'misfir', u'strike'] [u'fall', u'troop'] [u'lara', u'ganga', u'centuri', u'windi', u'reviv'] [u'lara', u'ganga', u'spark', u'windi', u'reviv'] [u'lownd', u'take', u'damp', u'supercar', u'battl'] [u'maher', u'head', u'windi'] [u'maher', u'join', u'aussi', u'test', u'squad'] [u'maher', u'join', u'aussi', u'test', u'squad', u'west', u'indi'] [u'malta', u'hungari', u'vote', u'join'] [u'break', u'speech', u'record'] [u'charg', u'melbourn', u'murder'] [u'charg', u'murder', u'neighbourhood'] [u'critic', u'condit', u'crash'] [u'question', u'bash', u'murder'] [u'surgeri', u'croc', u'attack'] [u'marin', u'exchang', u'central', u'baghdad'] [u'mcginti', u'reject', u'green', u'briberi', u'claim'] [u'monaco', u'tab', u'lyon', u'marseill', u'slip'] [u'motherwel', u'miss', u'chanc'] [u'navi', u'veteran', u'honour', u'ceremoni'] [u'zealand', u'ahead', u'lanka', u'tour'] [u'govt', u'approv', u'saturday', u'trade', u'bank'] [u'govt', u'want', u'nation', u'crossbow'] [u'olympian', u'campbel', u'richmond', u'chief'] [u'duck', u'iraq', u'order', u'quandari'] [u'organis', u'urg', u'itali', u'boycott', u'world'] [u'pair', u'stab', u'outsid'] [u'park', u'close', u'buffalo', u'test'] [u'pavlich', u'tip', u'troubl', u'tiger'] [u'peac', u'ralli', u'organis', u'palm', u'sunday'] [u'peac', u'protest', u'pressur', u'bring', u'troop'] [u'pentagon', u'updat', u'casualti', u'list'] [u'polic', u'investig', u'brisban', u'stab'] [u'portsmouth', u'leicest', u'promot', u'parti'] [u'powel', u'confid', u'find', u'wmds', u'iraq'] [u'privat', u'lynch', u'return'] [u'govt', u'close', u'anti', u'terror', u'oper'] [u'govt', u'welcom', u'environ', u'fund'] [u'lib', u'nat', u'verg', u'coalit', u'deal'] [u'raaf', u'plane', u'deliv', u'suppli', u'baghdad'] [u'raaf', u'prepar', u'flight', u'iraq'] [u'real', u'readi', u'beckham', u'million', u'dollar'] [u'relat', u'calm', u'kirkuk', u'move'] [u'rescu', u'prison', u'turn', u'guard', u'report'] [u'rock', u'throw', u'incid', u'claim', u'life', u'teenag'] [u'saddam', u'half', u'brother', u'captur', u'report'] [u'sar', u'claim', u'live'] [u'sar', u'caus', u'ground', u'cathay', u'airlin'] [u'save', u'sunderland', u'imposs', u'mick'] [u'schmeichel', u'retir', u'season'] [u'scientist', u'claim', u'sar', u'breakthrough'] [u'search', u'lose', u'scale'] [u'search', u'resum', u'miss'] [u'serena', u'sweep', u'past', u'davenport'] [u'servic', u'rememb', u'road', u'crash', u'victim'] [u'shirvo', u'set', u'australian', u'record'] [u'skaif', u'blitz', u'supercar', u'qualifi'] [u'smith', u'second', u'youngest', u'skipper'] [u'storm', u'emerg', u'crew', u'busi', u'night'] [u'stray', u'bullet', u'kill', u'young', u'girl', u'renew', u'aceh'] [u'substitut', u'lurl', u'hand', u'feyenoord', u'gasp'] [u'sydney', u'pair', u'mooloolaba'] [u'sydney', u'yacht', u'mooloolaba'] [u'symond', u'score', u'half', u'centuri', u'south', u'africa'] [u'syria', u'reject', u'accus', u'aid', u'saddam'] [u'govt', u'say', u'hous', u'issu'] [u'predict', u'renov', u'increas'] [u'teenag', u'charg', u'assault'] [u'tendon', u'strain', u'put', u'primus', u'pressur'] [u'thousand', u'march', u'peac', u'palm', u'sunday', u'ralli'] [u'tiger', u'prowl', u'record', u'titl'] [u'tiger', u'devour', u'docker', u'crow', u'demon'] [u'tokyo', u'disneyland', u'turn', u'need', u'magic'] [u'tourism', u'industri', u'bear', u'brunt', u'visitor'] [u'star', u'catch', u'hous'] [u'turkish', u'journalist', u'wound', u'mosul'] [u'foreign', u'secretari', u'diplomat', u'shuttl'] [u'agenc', u'urg', u'protect', u'iraqi', u'cultur'] [u'unesco', u'fear', u'lose', u'iraqi', u'treasur'] [u'unit', u'march', u'sunderland'] [u'unleash', u'concert', u'youth', u'week'] [u'move', u'iraq'] [u'crush', u'spain', u'close', u'world', u'place'] [u'defend', u'respons', u'iraqi', u'disord'] [u'encourag', u'polic', u'iraqi', u'capit'] [u'forc', u'enter', u'tikrit'] [u'forc', u'guard', u'baghdad', u'sit', u'cross'] [u'marin', u'kill', u'suicid', u'bomb', u'vest'] [u'navi', u'move', u'scale', u'gulf', u'presenc'] [u'offer', u'reward', u'saddam', u'captur'] [u'offer', u'reward', u'captur', u'iraqi', u'leader'] [u'recov', u'pow'] [u'tank', u'central', u'tikrit', u'report'] [u'step', u'lanka', u'peac', u'process'] [u'troop', u'head', u'tikrit'] [u'govt', u'confront', u'youth', u'alcohol', u'abus'] [u'govt', u'promis', u'improv', u'disabl', u'care'] [u'victoria', u'overhaul', u'disabl', u'report'] [u'volunt', u'fli', u'count'] [u'consum', u'enjoy', u'cheaper', u'seafood'] [u'move', u'north', u'tikrit'] [u'heighten', u'human', u'right', u'awar', u'church'] [u'warrior', u'ahead', u'bronco', u'half', u'time'] [u'warrior', u'hammer', u'bronco', u'raider', u'eagl'] [u'warrior', u'hammer', u'weak', u'bronco', u'raider'] [u'wood', u'eye', u'titl', u'maggert', u'grab', u'lead'] [u'woyecha', u'win', u'canberra', u'marathon'] [u'zimbabw', u'tour', u'england', u'get', u'green', u'light'] [u'age', u'care', u'resid', u'support', u'council', u'effort'] [u'ambul', u'volunt', u'spread', u'road', u'safeti', u'messag'] [u'arab', u'backlash', u'predict', u'howard'] [u'arm', u'order', u'shiit', u'leader', u'leav', u'iraq'] [u'arsenal', u'face', u'southampton', u'final'] [u'assur', u'auxiliari', u'safe', u'rfds', u'fundrais'] [u'australia', u'open', u'seri', u'victori'] [u'weekend', u'western', u'road'] [u'ballarat', u'retail', u'angri', u'easter', u'trade', u'law'] [u'bank', u'fall', u'pull', u'market', u'downward'] [u'bashir', u'charg', u'terror', u'plot'] [u'beef', u'afghan', u'secur', u'unhcr', u'warn'] [u'averag', u'start', u'banana', u'prawn', u'season'] [u'biographi', u'pay', u'tribut', u'anzac'] [u'blair', u'ahern', u'studi', u'statement'] [u'blair', u'anim', u'simpson', u'london', u'town'] [u'blood', u'donor', u'ban', u'sar', u'area'] [u'boutter', u'win', u'casablanca'] [u'brack', u'break', u'promis', u'freeway', u'toll'] [u'brisban', u'prop', u'answer', u'high', u'tackl', u'charg'] [u'brown', u'apologis', u'barrett', u'slap'] [u'brown', u'slap', u'fine'] [u'buck', u'night', u'prank', u'claim', u'life', u'local'] [u'builder', u'group', u'warn', u'insur', u'concern'] [u'build', u'cost', u'shelv', u'cinema'] [u'butler', u'doubt', u'iraq', u'weapon'] [u'govt', u'establish', u'aborigin', u'court'] [u'canberra', u'victim', u'receiv', u'appeal', u'money'] [u'coalit', u'control', u'iraq', u'oilfield', u'centcom'] [u'coff', u'harbour', u'town', u'lifesav'] [u'coleslaw', u'blame', u'injuri'] [u'comalco', u'offer', u'job', u'easter'] [u'compani', u'hope', u'propos', u'success'] [u'competitor', u'warn', u'shortcut', u'peak'] [u'conoco', u'chief', u'sort', u'project', u'issu'] [u'council', u'defend', u'decis', u'share'] [u'council', u'support', u'research', u'project'] [u'cowboy', u'plan', u'improv', u'handl', u'weekend'] [] [u'crocodil', u'trap', u'weekend', u'attack'] [u'crow', u'thai', u'treat', u'mackay'] [u'csiro', u'launch', u'research', u'plan'] [u'close', u'sydney', u'breweri'] [u'davydenko', u'down', u'callieri', u'claim', u'estoril', u'open'] [u'despotovski', u'doubt', u'newcastl', u'clash'] [u'sidelin', u'week'] [u'diver', u'rais', u'shark', u'repel', u'worri'] [u'doubt', u'tasmanian', u'prospect'] [u'dragon', u'coach', u'brown', u'slap', u'barrett'] [u'fairfax', u'snap', u'publish'] [u'fall', u'tikrit', u'mark', u'transit'] [u'famili', u'tell', u'miss', u'soldier', u'safe'] [u'farmer', u'survey', u'assess', u'livestock', u'number'] [u'father', u'demand', u'answer', u'babi', u'death'] [u'favourit', u'tumbl', u'german', u'spanish', u'leagu'] [u'govt', u'give', u'rice', u'farmer', u'imag'] [u'finish', u'touch', u'appli', u'human', u'genom'] [u'fisherman', u'free', u'capsiz', u'boat'] [u'flipper', u'destin', u'busi'] [u'flood', u'keep', u'busi'] [u'project', u'latest', u'round', u'work'] [u'fraser', u'defenc', u'call', u'ryan', u'evid'] [u'fraser', u'skull', u'prompt', u'polic', u'probe'] [u'geraldton', u'chief', u'execut', u'okay', u'breakwat', u'deal'] [u'gould', u'quit', u'origin', u'post'] [u'govt', u'begin', u'nation', u'search', u'child', u'protect'] [u'govt', u'deni', u'drop', u'network', u'sit'] [u'govt', u'stop', u'loot', u'histori', u'brown'] [u'greek', u'polic', u'probe', u'fatal', u'school', u'crash'] [u'greek', u'soccer', u'challeng', u'draw', u'crowd'] [u'harcourt', u'valley', u'appl', u'season', u'look'] [u'health', u'servic', u'reject', u'surgeon', u'opposit', u'claim'] [u'henin', u'hardenn', u'snap', u'serena', u'streak'] [u'highway', u'upgrad', u'finish', u'ahead', u'schedul'] [u'holidaygo', u'urg', u'regular', u'break'] [u'hotel', u'lure', u'tourist', u'south', u'island'] [u'hous', u'mental', u'worri'] [u'hugh', u'defam', u'case', u'settl'] [u'hugh', u'plead', u'guilti', u'danger', u'drive', u'charg'] [u'hunter', u'polic', u'welcom', u'crossbow', u'plan'] [u'hydro', u'tasmania', u'dredg', u'great', u'lake'] [u'ident', u'releas', u'pow', u'iraq'] [u'illeg', u'fish', u'boat', u'scuttl', u'geraldton'] [u'illeg', u'fish', u'boat', u'sink', u'geraldton'] [u'go', u'spotlight'] [u'independ', u'direct', u'prefer', u'parti'] [u'industri', u'action', u'affect', u'cairn', u'base', u'hospit'] [u'industri', u'push', u'bracket', u'creep', u'measur'] [u'inquest', u'begin', u'suspect', u'virus', u'death'] [u'iron', u'miss', u'bell', u'beach', u'open', u'round'] [u'israel', u'back', u'sentiment', u'syria'] [u'centr', u'slash', u'trigger', u'unemploy'] [u'jone', u'wit', u'defam', u'action'] [u'labor', u'ahead', u'fall', u'baghdad', u'poll'] [u'labor', u'demand', u'budget', u'cut'] [u'lambina', u'boom', u'opal', u'mine', u'season', u'start'] [u'order', u'prioriti', u'iraq', u'chalabi'] [u'marin', u'backtrack', u'iraq', u'chemic', u'arm', u'report'] [u'matilda', u'secur', u'world', u'spot'] [u'mayor', u'plan', u'council', u'draw', u'opposit'] [u'inclus', u'elector', u'propos', u'alic'] [u'push', u'region', u'cover'] [u'seek', u'answer', u'ryan', u'disappear'] [u'munster', u'leicest', u'tripl'] [u'murder', u'trial', u'proceed', u'victim', u'aliv'] [u'murray', u'river', u'tourist', u'boon'] [u'najaf', u'sieg', u'end', u'ayatollah', u'miss'] [u'iraqi', u'govt', u'shouldnt', u'rush'] [u'project', u'expand', u'work', u'experi', u'choic', u'govt'] [u'water', u'law', u'qualiti', u'standard'] [u'wetlin', u'fish', u'advisori', u'panel'] [u'nitschk', u'anger', u'airport', u'search'] [u'north', u'korea', u'hint', u'readi', u'talk'] [u'forc', u'hand', u'count', u'poll', u'result'] [u'govt', u'challeng', u'feder', u'highway', u'plan'] [u'nurs', u'redund', u'classif'] [u'obasanjo', u'parti', u'lead', u'nigerian', u'poll'] [u'coupl', u'nicholson', u'sandler', u'manag'] [u'offic', u'extend', u'thought', u'famili', u'dead', u'girl'] [u'ogradi', u'leav', u'late', u'punctur'] [u'olympian', u'allen', u'return', u'hockeyroo', u'squad'] [u'week', u'surat', u'rag'] [u'organis', u'pleas', u'palm', u'sunday', u'peach', u'march'] [u'pair', u'charg', u'assault', u'polic', u'offic'] [u'palestinian', u'propos', u'draft', u'cabinet', u'line'] [u'floater', u'newest', u'cultur', u'icon'] [u'pie', u'lose', u'lockyer', u'grand', u'final', u'replay', u'loom'] [u'plan', u'park', u'space', u'fund', u'bus'] [u'player', u'associ', u'play', u'barrett', u'slap'] [u'see', u'merit', u'iraqi', u'feder', u'talk'] [u'polar', u'success', u'win', u'golden', u'slipper'] [u'polic', u'encourag', u'resid', u'druggi'] [u'polic', u'hold', u'kill', u'accid'] [u'polic', u'investig', u'beach', u'rail', u'deton'] [u'polic', u'investig'] [u'polic', u'seek', u'miss', u'girl', u'inform'] [u'polic', u'shoot', u'aggress', u'suspect'] [u'popul', u'boost', u'expect', u'ultima'] [u'public', u'deserv', u'speed', u'limit'] [u'qanta', u'downturn', u'impact', u'cairn', u'unknown'] [u'radcliff', u'rule', u'roost'] [u'rain', u'fall', u'west'] [u'ranger', u'stay', u'point', u'clear', u'celtic'] [u'region', u'export', u'rat', u'skyrocket'] [u'research', u'provid', u'clue', u'dead', u'stinger'] [u'richardson', u'rare'] [u'saddam', u'near', u'tikrit', u'chalabi'] [u'govt', u'help', u'school', u'fund'] [u'polic', u'prepar', u'possibl', u'baxter', u'break'] [u'sar', u'claim', u'victim', u'hong', u'kong'] [u'sar', u'disrupt', u'competit', u'plan', u'champion'] [u'saturday', u'trade', u'approv', u'prompt', u'hop'] [u'scuttl', u'boat', u'warn', u'illeg', u'fish'] [u'search', u'continu', u'miss', u'saturday'] [u'searcher', u'bodi', u'narooma', u'harbour'] [u'search', u'resum', u'miss', u'albani', u'fisherman'] [u'secur', u'fear', u'spark', u'anti', u'protest', u'baghdad'] [u'shell', u'suspect', u'chemic', u'agent', u'iraq'] [u'simul', u'road', u'accid', u'scene', u'test'] [u'face', u'court', u'langwarrin', u'murder'] [u'state', u'rail', u'hear', u'train', u'crash'] [u'straw', u'tour', u'take', u'kuwait'] [u'sydney', u'skipper', u'confid', u'brisban'] [u'sydney', u'teen', u'die', u'stab'] [u'syria', u'realis', u'realiti', u'straw'] [u'tasmanian', u'worker', u'describ', u'middl', u'east', u'concern'] [u'teenag', u'sentenc', u'burn', u'famili'] [u'telstra', u'troubl', u'reach', u'get', u'repriev'] [u'terror', u'fight', u'bring', u'nuclear', u'submarin'] [u'arrest', u'baghdad', u'firefight'] [u'tikrit', u'leader', u'offer', u'surrend'] [] [u'toogoolawah', u'hop', u'fli', u'centr', u'fund'] [u'student', u'industri', u'scholarship'] [u'believ', u'saddam', u'offici', u'iraq'] [u'ultima', u'boost', u'land', u'sale'] [u'unicef', u'step', u'shipment'] [u'identifi', u'saddam', u'remain'] [u'forc', u'control', u'tikrit', u'presidenti', u'palac'] [u'forc', u'test', u'canist', u'chemic', u'weapon'] [u'saddam', u'frank'] [u'iraqi', u'start', u'joint', u'patrol'] [u'soldier', u'wound', u'shoot', u'near', u'baghdad'] [u'troop', u'detain', u'looter'] [u'troop', u'encount', u'fierc', u'resist', u'tikrit'] [u'warn', u'syria', u'weapon', u'iraqi', u'leader'] [u'petegem', u'win', u'hell', u'north', u'complet'] [u'govt', u'bail', u'public', u'transport'] [u'victim', u'count', u'cost', u'weekend', u'theft'] [u'virgin', u'blue', u'land', u'broom', u'budget', u'servic'] [u'virgin', u'rule', u'flight', u'kalgoorli'] [u'volunt', u'plead', u'guilti', u'light'] [u'volunt', u'count', u'threaten', u'fli', u'popul'] [u'fli', u'high', u'invest', u'economist'] [u'govt', u'support', u'saltwat', u'drain', u'trial'] [u'waratah', u'lose', u'blacklock'] [u'iraq', u'emptiv', u'strike', u'bishop'] [u'water', u'main', u'flood', u'caus', u'traffic', u'problem'] [u'waugh', u'say', u'west', u'indi', u'tough'] [u'weir', u'clinch', u'master', u'play'] [u'weir', u'make', u'major', u'breakthrough', u'master'] [u'western', u'drought', u'area', u'welcom', u'rain'] [u'come', u'white', u'right'] [u'woman', u'burn', u'unit', u'hospit'] [u'woman', u'hospit', u'attack'] [u'work', u'begin', u'rehab', u'project', u'year', u'delay'] [u'yemeni', u'polic', u'arrest', u'cole', u'suspect', u'escap'] [u'young', u'busi', u'fin', u'releas', u'offens', u'odour'] [u'young', u'peopl', u'risk', u'hostel', u'fund'] [u'yurevich', u'brothel', u'tourism', u'lure'] [u'fund', u'boost', u'shale', u'project'] [u'dog', u'rescu', u'northern', u'philippin'] [u'step', u'melandri'] [u'accommod', u'run', u'tourism', u'season', u'hot'] [u'adelaid', u'lay', u'welcom', u'refuge'] [u'afghan', u'refuge', u'return', u'famili', u'launceston'] [u'chief', u'announc', u'retir'] [u'afl', u'financi', u'probe', u'poor', u'time', u'player'] [u'worker', u'stand', u'return', u'iraq'] [u'alcohol', u'forum', u'brand', u'talkfest'] [u'alic', u'atsic', u'elect', u'legitim'] [u'alleg', u'money', u'china', u'contact'] [u'amnesti', u'push', u'tribun', u'deal', u'timor'] [u'arab', u'countri', u'stand'] [u'argentin', u'journalist', u'kill', u'near', u'baghdad'] [u'arsenal', u'focus', u'unit', u'clash'] [u'kill', u'mosul', u'shoot'] [u'aust', u'troop', u'return', u'home', u'soon'] [u'author', u'sue', u'famili', u'interview', u'payment'] [u'week', u'queensland', u'team', u'judiciari'] [u'barnett', u'accus', u'govt', u'tri', u'bribe', u'green'] [u'batman', u'aust', u'team', u'subject', u'disciplinari', u'action'] [u'bayern', u'rift', u'deepen'] [u'beazley', u'best', u'labor', u'poll'] [u'bell', u'postpon', u'poor', u'condit'] [u'better', u'late', u'say', u'fisichella'] [u'billiton', u'welcom', u'support'] [u'blair', u'push', u'iraqi', u'govern'] [u'blair', u'say', u'conflict', u'near'] [u'blair', u'seek', u'german', u'view', u'iraq', u'reconstruct'] [u'brisban', u'develop', u'interest', u'bright'] [u'bronco', u'lose', u'forward', u'gain', u'princ'] [u'budget', u'blow', u'cast', u'doubt', u'passeng', u'train'] [u'bundaberg', u'start', u'point', u'alp', u'northern', u'australia'] [u'busi', u'urg', u'prepar', u'tourism', u'season'] [u'worker', u'picket', u'sack'] [u'buyer', u'alic', u'local', u'hand'] [u'centr', u'creat', u'albani', u'job'] [u'cane', u'toad', u'get', u'custom'] [u'cantona', u'back', u'unit', u'mental', u'strength'] [u'carr', u'back', u'coff', u'lifesav'] [u'carr', u'unhappi', u'ballot', u'blunder'] [u'cheap', u'petrol', u'drive', u'wooli', u'profit'] [u'chemic', u'weapon', u'buri', u'outsid', u'baghdad', u'downer'] [u'child', u'abus', u'lawsuit', u'rock', u'cathol', u'dioces'] [u'china', u'stop', u'hong', u'kong', u'tour', u'sar'] [u'chines', u'visit', u'ahead', u'despit', u'sar', u'spread'] [u'claim', u'inveresk', u'cinema', u'plan', u'track'] [u'claim', u'invest', u'boom', u'help', u'smaller', u'miner'] [u'compani', u'report', u'grab', u'wall', u'street', u'focus'] [u'complac', u'enemi', u'waugh', u'australian'] [u'costello', u'blast', u'govt', u'toll', u'backflip'] [u'council', u'delay', u'piggeri', u'water', u'decis'] [u'council', u'give', u'blue', u'light', u'public', u'toilet', u'plan'] [u'council', u'coast', u'zone', u'polici', u'concern'] [u'council', u'highlight', u'need', u'airport', u'revamp'] [u'council', u'urg', u'compo', u'farmland'] [u'court', u'hear', u'crown', u'robber', u'member'] [u'court', u'uphold', u'masri', u'decis'] [u'plow', u'money', u'yatala', u'upgrad'] [u'level', u'rise'] [u'doctor', u'group', u'question', u'plan', u'medicar', u'rebat'] [u'dont', u'throw', u'away', u'printer', u'cartridg'] [u'drink', u'giant', u'urg', u'chang'] [u'drought', u'weigh', u'busi', u'outlook'] [u'easter', u'lock', u'detaine', u'ruddock'] [u'kill', u'kashmir', u'rebel', u'violenc'] [u'evid', u'wind', u'babi', u'inquest'] [u'faction', u'ponder', u'futur', u'nasiriyah', u'talk'] [u'farmer', u'happi', u'downpour'] [u'farmer', u'fast', u'load', u'livestock', u'freight'] [u'farmer', u'wait', u'weather', u'break'] [u'fear', u'miss', u'coast'] [u'feder', u'fund', u'allow', u'hospit', u'repair'] [u'govt', u'reject', u'drought', u'claim'] [u'govt', u'urg', u'rethink', u'student', u'immigr'] [u'figur', u'damn', u'univers', u'place'] [u'financ', u'union', u'sue', u'commonwealth', u'bank'] [u'fin', u'crank', u'easter', u'road', u'blitz'] [u'servic', u'tackl', u'fuel', u'load', u'danger'] [u'fisherman', u'bodi', u'search'] [u'fitzgibbon', u'remain', u'rooster'] [u'face', u'tribun'] [u'fortuyn', u'killer', u'sentenc', u'year'] [u'schoolboy', u'drown', u'vietnam'] [u'franc', u'say', u'pragmat', u'post'] [u'fraser', u'polic', u'station', u'open', u'busi'] [u'free', u'water', u'clubber', u'tough', u'enforc'] [u'french', u'jailbird', u'freedom'] [u'galleri', u'find', u'namatjira', u'work', u'open'] [u'game', u'ahead', u'despit', u'sar', u'govt'] [u'german', u'tech', u'compani', u'send', u'free', u'sar', u'test'] [u'global', u'factor', u'affect', u'local', u'real', u'estat', u'market'] [u'govt', u'appeal', u'like', u'masri', u'decis'] [u'govt', u'criticis', u'mitcham', u'frankston', u'toll'] [u'govt', u'forc', u'rule', u'woomera', u'dump', u'sit'] [u'govt', u'offer', u'reward', u'killer'] [u'govt', u'releas', u'damn', u'report', u'industri'] [u'govt', u'reveal', u'recycl', u'rule'] [u'govt', u'set', u'limit', u'poker', u'machin'] [u'govt', u'borrow', u'money', u'save', u'servic'] [u'greec', u'mourn', u'fatal', u'crash'] [u'green', u'upset', u'church', u'site', u'develop', u'plan'] [u'gronholm', u'lead', u'peugeot', u'zealand'] [u'group', u'assess', u'drought', u'relief', u'applic'] [u'guga', u'look', u'past', u'move', u'forward'] [u'charg', u'minist', u'drop'] [u'herron', u'sell', u'million', u'deal'] [u'hewitt', u'defam'] [u'high', u'tech', u'centr', u'shed', u'light', u'timber', u'industri'] [u'hope', u'crown', u'leas', u'report', u'finalis', u'soon'] [u'hospic', u'prepar', u'patient'] [u'hotlin', u'tell', u'polic', u'murder', u'girl', u'aliv'] [u'howard', u'meet', u'bush', u'iraq', u'talk'] [u'human', u'shield', u'homesa'] [u'hungri', u'armi', u'worm', u'invad'] [u'hunt', u'parti', u'overturn', u'kill'] [u'indonesian', u'presid', u'visit', u'moscow', u'arm', u'talk'] [u'iraqi', u'polic', u'join', u'british', u'troop', u'checkpoint'] [u'iraqi', u'protest', u'lack', u'order'] [u'iraqi', u'western', u'command', u'surrend'] [u'statement', u'show', u'progress'] [u'jackson', u'take', u'award'] [u'januari', u'fire', u'boost', u'growth', u'rate'] [u'king', u'island', u'farmer', u'ship', u'shortag'] [u'lewinski', u'relish', u'realiti', u'challeng'] [u'lloyd', u'clear', u'strike'] [u'luxuri', u'cruis', u'ship', u'visit', u'newcastl'] [u'mackay', u'koala', u'research', u'spotlight'] [u'jail', u'year', u'leav', u'partner'] [u'shoot', u'dead', u'melbourn'] [u'market', u'ralli', u'gain', u'major', u'bank'] [u'mayor', u'get', u'barrier', u'industri', u'council', u'support'] [u'mayor', u'support', u'popul', u'boost'] [u'worker', u'strike', u'continu'] [u'custom', u'need', u'bank', u'plan'] [u'air', u'concern', u'broadcast', u'condit'] [u'confid', u'iraqi', u'wheat', u'market'] [u'savag', u'danger', u'railway', u'line'] [u'welcom', u'ethanol'] [u'tip', u'economi', u'rat'] [u'nation', u'park', u'ban', u'remain'] [u'nation', u'secur', u'exempt', u'feder', u'judg'] [u'welcom', u'team', u'base', u'hunter'] [u'investor', u'portman'] [u'owner', u'live', u'music', u'venu'] [u'dead', u'sar', u'hong', u'kong'] [u'govt', u'urg', u'freshwat', u'research', u'centr'] [u'offici', u'illeg', u'fish', u'boat'] [u'hospit', u'equip', u'replac', u'govt'] [u'dead', u'hurt', u'school', u'shoot'] [u'oyster', u'industri', u'strong', u'despit', u'sar'] [u'payout', u'aristocrat', u'keep', u'secret'] [u'peacekeep', u'danger', u'aust', u'troop', u'labor'] [u'peak', u'holiday', u'season', u'loom'] [u'pedestrian', u'die', u'mudge', u'accid'] [u'pedestrian', u'die', u'truck', u'accid'] [u'plan', u'garbag', u'servic', u'chang', u'mean', u'rat'] [u'plan', u'unveil', u'democrat', u'iraq'] [u'polic', u'continu', u'probe', u'tractor', u'death'] [u'polic', u'hold', u'fear', u'miss', u'angler'] [u'polic', u'join', u'kingfish', u'probe'] [u'polic', u'accid', u'victim'] [u'polic', u'probe', u'tourist', u'stab'] [u'polic', u'seek', u'help', u'identifi', u'dog'] [u'polic', u'search', u'bali', u'link'] [u'polic', u'suspect', u'insid', u'wine', u'theft'] [u'post', u'mortem', u'shed', u'littl', u'light', u'climber', u'death'] [u'probe', u'launch', u'alcohol', u'harm'] [u'profit', u'slump', u'claim', u'game', u'chief', u'scalp'] [u'properti', u'valuer', u'reject', u'water', u'land', u'valu', u'claim'] [u'welcom', u'extra', u'famili', u'youth', u'servic', u'staff'] [u'pump', u'station', u'revamp', u'begin'] [u'qanta', u'crew', u'strike', u'cut'] [u'qanta', u'mainten', u'staff', u'walk', u'tomorrow'] [u'execut', u'lead', u'electr', u'reform'] [u'pass', u'fan'] [u'rail', u'crash', u'probe', u'hear', u'train', u'speed', u'evid'] [u'rain', u'boost', u'tibooburra', u'water', u'suppli'] [u'rate', u'rise', u'meet', u'adjourn'] [u'record', u'start', u'cattl', u'movement'] [u'recov', u'bodi', u'miss', u'fisherman'] [u'region', u'atsic', u'council', u'boss', u'reject', u'critic'] [u'russian', u'comic', u'come', u'cold'] [u'russia', u'shift', u'polici', u'north', u'korea'] [u'russia', u'urg', u'restraint', u'polici', u'syria'] [u'sabotag', u'suspect', u'mass', u'fish', u'getaway'] [u'dump', u'sit', u'suitabl', u'anti', u'nuclear', u'group'] [u'schumach', u'faith'] [u'search', u'continu', u'miss', u'angler'] [u'senat', u'attack', u'airport', u'charg', u'plan'] [u'separatist', u'down', u'quebec', u'poll'] [u'join', u'search', u'fraser', u'remain'] [u'help', u'search', u'human', u'remain'] [u'smoke', u'ban', u'affect', u'busi', u'hospit'] [u'stacker', u'pip', u'goorjian', u'coach', u'award'] [u'straw', u'arriv', u'qatar', u'kuwait'] [u'streetscap', u'parti', u'track'] [u'student', u'demand', u'outstrip', u'place'] [u'sunderland', u'promis', u'bounc', u'straight'] [u'surf', u'elit', u'line', u'bell', u'beach'] [u'swiss', u'teen', u'sign', u'test', u'sauber'] [u'syria', u'friend', u'target', u'spain'] [u'busi', u'prospect', u'improv', u'treasur'] [u'technic', u'glitch', u'spark', u'manual', u'vote', u'count'] [u'tendulkar', u'hand', u'surgeri'] [u'minut', u'storm', u'rip', u'china'] [u'ticket', u'levi', u'good'] [u'timber', u'shortfal', u'close', u'sawmil'] [u'tough', u'talk', u'syria', u'downer'] [u'tour', u'highlight', u'gene', u'technolog'] [u'train', u'driver', u'high', u'compet', u'waterfal', u'inquiri'] [u'travel', u'caus', u'freo', u'woe', u'road'] [u'union', u'demand', u'extra', u'traffic', u'polic'] [u'union', u'hop', u'clearer', u'pictur', u'entitl'] [u'union', u'angri', u'nurs', u'dismiss'] [u'union', u'warn', u'massiv', u'fight'] [u'assess', u'plunder', u'iraqi', u'nation', u'treasur'] [u'cut', u'naval', u'power', u'near', u'iraq', u'offici'] [u'hail', u'north', u'korea', u'shift', u'posit'] [u'start', u'effort', u'build', u'iraq'] [u'threaten', u'sanction', u'syria'] [u'vaughan', u'knock', u'hayden', u'rank', u'summit'] [u'warnock', u'face', u'probe', u'slat', u'poll'] [u'war', u'loom', u'tikrit', u'fall'] [u'wellman', u'week', u'disloc', u'finger'] [u'wheat', u'industri', u'alert', u'virus'] [u'white', u'power', u'beach', u'undergo', u'test'] [u'windi', u'omit', u'gayl', u'second', u'test'] [u'wnba', u'talk', u'reach', u'crisi', u'point'] [u'woman', u'heritag', u'appoint'] [u'woman', u'mistreat'] [u'woodsid', u'prowl', u'chief'] [u'young', u'peopl', u'ban', u'northbridg', u'dark'] [u'announc', u'zimbabw', u'india', u'match'] [u'achill', u'lauro', u'hijack', u'captur', u'baghdad'] [u'action', u'group', u'monitor', u'freeway', u'develop'] [u'actu', u'expos', u'train', u'scheme', u'rort'] [u'adelaid', u'polic', u'arrest', u'alleg', u'murder', u'suspect'] [u'advic', u'offer', u'artifici', u'reef', u'plan'] [u'age', u'care', u'propon', u'ask', u'consid', u'altern'] [u'wrong', u'increas', u'sentenc'] [u'rise', u'help', u'market', u'gain'] [u'share', u'surg'] [u'take', u'spam', u'fight', u'court'] [u'negoti', u'remov', u'world', u'profit'] [u'associ', u'welcom', u'delay', u'elect'] [u'hop', u'hewitt', u'disput'] [u'aussi', u'bullish', u'spend'] [u'aust', u'africa', u'consid', u'joint', u'super', u'team'] [u'aust', u'asylum', u'polici', u'attack', u'iraq'] [u'aust', u'soldier', u'charg', u'kick', u'corps'] [u'hair', u'inmat', u'warden', u'cash', u'stash'] [u'barossa', u'show', u'war'] [u'bash', u'put', u'hospit'] [u'bashir', u'face', u'trial', u'week'] [u'basketbal', u'coach', u'reward', u'effort'] [u'beatti', u'help', u'open', u'jail'] [u'beazley', u'interest', u'leadership', u'crean'] [u'blaze', u'rip', u'golf', u'club'] [u'bomb', u'blast', u'rock', u'turkish', u'eateri'] [u'brisban', u'hotel', u'rob', u'gunpoint'] [u'britain', u'germani', u'agre', u'play', u'role'] [u'break', u'foot', u'sidelin', u'roger'] [u'bureau', u'see', u'autumn'] [u'bushfir', u'cost', u'brack'] [u'bushfir', u'victim', u'face', u'face', u'advic'] [u'busi', u'usual', u'moya', u'mont', u'carlo'] [u'calder', u'freeway', u'link', u'extens', u'open'] [u'visi', u'smell', u'address'] [u'go', u'child', u'protect', u'offic'] [u'candid', u'seek', u'greater', u'child', u'birth', u'option'] [u'cantona', u'back', u'unit', u'gunner', u'post'] [u'casino', u'goer', u'octob'] [u'central', u'record', u'road', u'death'] [u'china', u'reveal', u'extent', u'sar'] [u'claim', u'shearer', u'dont', u'support', u'museum'] [u'clark', u'deni', u'rape', u'claim', u'civil', u'court', u'hear'] [u'coalit', u'accus', u'fail', u'geneva', u'duti', u'iraq'] [u'commiss', u'wont', u'rule', u'fare', u'rise'] [u'communiti', u'prepar'] [u'concern', u'air', u'job', u'strategi'] [u'threaten', u'action', u'log'] [u'construct', u'contract', u'award', u'freez', u'chip'] [u'consum', u'confid', u'boost', u'iraq', u'end'] [u'control', u'wasp', u'plagu', u'prove', u'difficult'] [u'costello', u'vow', u'action', u'report'] [u'council', u'reject', u'residenti', u'project'] [u'council', u'urg', u'address', u'infrastructur', u'need'] [u'cowboy', u'murray', u'readi', u'origin', u'rein'] [u'creditor', u'block', u'rail', u'termin'] [u'croc', u'trap', u'attack'] [u'dramat', u'launch', u'easter', u'road', u'safeti', u'campaign'] [u'driver', u'speed', u'residenti', u'street'] [u'eisteddfod', u'organis', u'prais', u'local', u'busi'] [u'elm', u'announc', u'nat', u'cook', u'candidaci'] [u'aust', u'relationship', u'strong', u'despit', u'iraq'] [u'expand', u'discuss', u'iraq', u'greec'] [u'fake', u'footag', u'put', u'aussi', u'oscar', u'storm'] [u'farmer', u'cautious', u'weather', u'predict'] [u'farmer', u'seek', u'input', u'possum', u'plan'] [u'farmer', u'shouldnt', u'hold', u'late', u'cyclon', u'season'] [u'govt', u'urg', u'protect', u'atsic', u'region', u'council'] [u'ferri', u'capsiz', u'haitian', u'miss'] [u'fifa', u'reject', u'carlo', u'appeal'] [u'film', u'festiv', u'director', u'appoint', u'posit'] [u'crew', u'search', u'leak', u'brisban', u'rail'] [u'launceston', u'teacher', u'sentenc', u'assault'] [u'hous', u'militari', u'cadet'] [u'kill', u'mosul', u'shoot', u'hospit'] [u'text', u'point', u'plan', u'iraq'] [u'leak', u'forc', u'evacu', u'build'] [u'girl', u'get', u'suspend', u'sentenc', u'stab'] [u'gould', u'stay'] [u'gould', u'stay', u'despit', u'media', u'blue'] [u'grave', u'concern', u'hold'] [u'hanson', u'campaign', u'fail', u'count', u'end'] [u'heal', u'call', u'quit'] [u'health', u'servic', u'campus', u'work', u'begin'] [u'health', u'servic', u'chief', u'reject', u'surgeri', u'chang', u'claim'] [u'hewitt', u'pull', u'barcelona'] [u'high', u'hop', u'council', u'restructur', u'plan'] [u'inquiri', u'find', u'dozen', u'potenti', u'offenc'] [u'probe', u'recommend', u'charg'] [u'hill', u'return', u'storm'] [u'impos', u'stricter', u'border', u'check', u'control', u'sar'] [u'hospit', u'industri', u'disput', u'bed'] [u'indonesian', u'fish', u'boat', u'crew', u'detain'] [u'inglewood', u'get', u'petrol', u'station', u'year'] [u'intern', u'inquiri', u'launch', u'death', u'custodi'] [u'iraqi', u'bomb', u'victim', u'fli', u'kuwait'] [u'italian', u'peacekeep', u'help', u'iraq'] [u'jackson', u'wont', u'prefer', u'successor'] [u'judg', u'exempt', u'secur', u'check'] [u'juri', u'jone', u'defam', u'case'] [u'juri', u'tell', u'jone', u'defam', u'scott'] [u'kournikova', u'take', u'drastic', u'step', u'arrest', u'free', u'fall'] [u'labor', u'demand', u'detail', u'alleg', u'timor', u'abus'] [u'blaze', u'extinguish'] [u'leader', u'fall'] [u'lebanes', u'resign'] [u'lib', u'nat', u'return', u'coalit'] [u'lion', u'lynch', u'brown', u'pie', u'clash'] [u'lion', u'pie', u'fight', u'spot'] [u'local', u'govt', u'group', u'want', u'river', u'murray', u'audit'] [u'face', u'court', u'attempt', u'murder', u'charg'] [u'face', u'trial', u'stab'] [u'mayor', u'angri', u'mall', u'protest'] [u'mayor', u'back', u'delay', u'local', u'govt', u'elect'] [u'mayor', u'group', u'highlight', u'case', u'merger'] [u'million', u'treat', u'depress', u'year'] [u'minist', u'launch', u'health', u'initi'] [u'minist', u'urg', u'stop', u'plan', u'hous'] [u'molik', u'cruis', u'budapest', u'round'] [u'talk', u'wheat', u'virus', u'discoveri'] [u'morseu', u'join', u'great'] [u'seek', u'bipartisan', u'approach', u'land', u'acquisit'] [u'nauru', u'probe', u'terrorist', u'passport', u'claim'] [u'sar', u'outbreak', u'fear', u'toronto'] [u'nitschk', u'befriend', u'idea', u'caus', u'outrag'] [u'northern', u'spirit', u'fin', u'substitut'] [u'nrac', u'member', u'meet', u'drought', u'affect', u'farmer'] [u'disput', u'tribun', u'hear', u'newcastl', u'protest'] [u'govt', u'urg', u'assess', u'futur', u'inner', u'citi', u'land'] [u'tripl', u'need', u'urgent', u'overhaul', u'oppn'] [u'oversea', u'pair', u'backmark', u'stawel', u'gift'] [u'palestinian', u'offici', u'call', u'releas', u'abba'] [u'palestinian', u'demand', u'abba', u'releas'] [u'peac', u'activist', u'return', u'iraq'] [u'polic', u'continu', u'search', u'miss'] [u'polic', u'investig', u'suspect', u'murder', u'suicid'] [u'polic', u'investig', u'death'] [u'polic', u'charg', u'cannabi', u'seiz'] [u'polic', u'probe', u'council', u'blaze'] [u'polic', u'recov', u'bodi', u'miss', u'fisherman'] [u'polic', u'search', u'gunman'] [u'polic', u'seek', u'help', u'arm', u'bandit'] [u'post', u'saddam', u'unrest', u'inevit'] [u'powel', u'insist', u'syria', u'target'] [u'price', u'fix', u'penalti', u'increas', u'moot', u'dawson'] [u'produc', u'bing', u'win', u'libel', u'payout', u'paper'] [u'protest', u'opera', u'hous', u'clean'] [u'public', u'help', u'protect', u'reef'] [u'public', u'urg', u'help', u'shooter'] [u'public', u'urg', u'leav', u'patient', u'travel', u'ambo'] [u'qatar', u'hold', u'referendum', u'constitut'] [u'radioact', u'dump', u'fight', u'deserv', u'attent'] [u'rail', u'standardis', u'project', u'defer'] [u'receiv', u'want', u'passport', u'king', u'owner'] [u'refuge', u'famili', u'fight', u'continu'] [u'region', u'oper', u'financi', u'mess'] [u'reith', u'appoint', u'london', u'bank', u'board'] [u'report', u'highlight', u'poor', u'creek', u'health'] [u'resid', u'quiz', u'shop', u'hour'] [u'roger', u'season', u'jeopardi'] [u'rspca', u'educ', u'unit', u'visit', u'balonn', u'shire'] [u'russian', u'rainmak', u'bring', u'success', u'properti', u'owner'] [u'africa', u'plan', u'payment', u'apartheid', u'victim'] [u'sar', u'claim', u'victim', u'singapor'] [u'sar', u'travel', u'ban', u'hospit'] [u'sar', u'watch', u'continu', u'franc'] [u'play', u'role', u'surrend'] [u'stakehold', u'tell', u'input', u'requir'] [u'search', u'continu', u'hard', u'evid'] [u'search', u'continu', u'human', u'remain'] [u'secur', u'alert', u'baghdad'] [u'senat', u'defend', u'strength', u'fin', u'illeg'] [u'say', u'natasha', u'ryan', u'repay', u'taxpay'] [u'shale', u'deposit', u'mine', u'year'] [u'sharon', u'pledg', u'grab', u'shoot', u'peac'] [u'dead', u'middl', u'east', u'violenc'] [u'scrutini'] [u'spam', u'can', u'law'] [u'staff', u'action', u'qanta', u'decis'] [u'statu', u'consid', u'honour', u'slay', u'policemen'] [u'stop', u'work', u'wont', u'affect', u'flight', u'qanta'] [u'store', u'take', u'steal', u'arm', u'robberi'] [u'suicid', u'bomber', u'remain', u'real', u'threat', u'iraq'] [u'summit', u'outlin', u'plan', u'iraq'] [u'syria', u'seek', u'free', u'zone', u'middl', u'east'] [u'talk', u'resolv', u'surgeon', u'disput'] [u'talk', u'continu', u'staff', u'concern', u'age', u'care'] [u'govt', u'defend', u'sale', u'tender'] [u'taxi', u'driver', u'face', u'crisi'] [u'telstra', u'wait', u'watch', u'unveil'] [u'textil', u'firm', u'face', u'collaps', u'tariff', u'withdraw'] [u'toowoomba', u'tourism', u'campaign', u'underway'] [u'townsvill', u'troop', u'head', u'timor'] [u'trade', u'hour', u'debat', u'heat'] [u'tradit', u'owner', u'continu', u'support'] [u'train', u'driver', u'friend', u'famili', u'evid', u'rail'] [u'train', u'centr', u'moot', u'kalgoorli', u'boulder'] [u'trio', u'face', u'court', u'polic', u'chase'] [u'forc', u'deni', u'shoot', u'crowd'] [u'korea', u'hold', u'talk', u'china'] [u'shut', u'pipelin', u'syria'] [u'warn', u'syria', u'chief'] [u'venus', u'consol', u'berlin', u'serena', u'pull'] [u'victori', u'iraq', u'certain', u'complet', u'bush'] [u'violent', u'protest', u'summit'] [u'violent', u'protest', u'summit', u'iraq'] [u'govt', u'get', u'saleyard', u'express'] [u'wall', u'street', u'manag', u'temper', u'ralli'] [u'waterhous', u'clear', u'resum', u'bookmak', u'month'] [u'waterhous', u'resum', u'bookmak'] [u'water', u'park', u'develop', u'stop'] [u'water', u'theme', u'easter', u'display'] [u'wheat', u'virus', u'csiro', u'laboratori', u'contain'] [u'confirm', u'virus', u'caus', u'sar'] [u'wild', u'banana', u'prawn', u'harvest', u'tonnag', u'hard', u'predict'] [u'windi', u'lose', u'jacob', u'lawson', u'second', u'test'] [u'find', u'independ', u'verifi', u'labor'] [u'workplac', u'accid', u'investig'] [u'workshop', u'focus', u'night', u'communiti', u'patrol'] [u'yakka', u'factori', u'sell', u'near'] [u'abattoir', u'oper', u'inund', u'work', u'offer'] [u'staff', u'victimis', u'report'] [u'accus', u'killer', u'boast', u'murder'] [u'aceh', u'independ', u'activist', u'trial', u'sedit'] [u'tighten', u'water', u'restrict'] [u'adhd', u'behaviour', u'expert'] [u'agforc', u'warn', u'armi', u'worm'] [u'alic', u'parliament', u'cost', u'spotlight'] [u'play', u'arsenal', u'share'] [u'play', u'arsenal', u'share'] [u'american', u'airlin', u'staff', u'cut', u'save', u'job'] [u'asian', u'leader', u'meet', u'sar'] [u'atsic', u'commission', u'issu', u'reform', u'warn'] [u'atsic', u'face', u'fund', u'shake'] [u'atsic', u'split', u'purs', u'string', u'handov'] [u'atsic', u'strip', u'fund', u'power'] [u'azerbaijan', u'soccer', u'tri', u'extric'] [u'bacon', u'reject', u'critic', u'govt', u'sale'] [u'bank', u'open', u'branch'] [u'baxter', u'centr', u'prepar', u'protest'] [u'bedtim', u'boar', u'german', u'coupl'] [u'boati', u'easter', u'warn'] [u'boati', u'urg', u'safe', u'easter'] [u'brisban', u'blood', u'stock', u'critic'] [u'break', u'hill', u'water', u'restrict'] [u'bulk', u'bill', u'death', u'throe', u'howard', u'govt'] [u'bushfir', u'recoveri', u'appeal', u'call', u'applic'] [u'cameraman', u'focus', u'defend', u'len'] [u'capell', u'win', u'grand', u'prix', u'lescaut', u'mcewen', u'crash'] [u'carlton', u'search'] [u'sale', u'drive', u'economi'] [u'chirac', u'say', u'airlift', u'wound', u'iraqi', u'europ'] [u'citi', u'coast', u'credit', u'union', u'member', u'merger'] [u'club', u'defend', u'dismiss', u'mask', u'barman'] [u'coober', u'pedi', u'seek', u'airlin', u'alic', u'link'] [u'costa', u'beat', u'mont', u'carlo', u'year'] [u'costello', u'urg', u'aggress', u'suit'] [u'council', u'bank', u'oasi', u'project', u'green', u'light'] [u'council', u'rethink', u'support', u'tourist', u'bureau'] [u'countri', u'star', u'buy', u'rocki', u'hotel'] [u'court', u'rule', u'see', u'detaine', u'releas'] [u'crean', u'avoid', u'senat', u'preselect', u'disput'] [u'crean', u'visit', u'launceston'] [u'crow', u'carey', u'ricciuto'] [u'custom', u'better', u'despit', u'bank', u'fee', u'studi'] [u'cwealth', u'reject', u'needl', u'exchang', u'restrict'] [u'deal', u'sted', u'scheme', u'divis'] [u'dental', u'closur', u'predict', u'bite', u'hard'] [u'develop', u'knock', u'court'] [u'doctor', u'group', u'highlight', u'region', u'mental', u'health'] [u'dollar', u'climb', u'heavi', u'greenback'] [u'domest', u'violenc', u'victim', u'court', u'boost'] [u'driver', u'urg', u'play', u'safe', u'road'] [u'driver', u'urg', u'care', u'easter'] [u'drought', u'proof', u'sorghum', u'microscop'] [u'drug', u'hear', u'begin', u'italian', u'doctor'] [u'eal', u'say', u'home', u'advantag', u'make', u'wallabi'] [u'earthquak', u'rock', u'north', u'west', u'china'] [u'easter', u'restrict', u'detent', u'centr'] [u'environ', u'group', u'tinto', u'action'] [u'back', u'central', u'role', u'iraq'] [u'expert', u'determin', u'iraqi', u'artefact', u'recoveri'] [u'explos', u'leav', u'crater', u'sydney', u'yard'] [u'factori', u'produc', u'toxic', u'fume'] [u'farmer', u'gain', u'collect', u'bargain', u'right'] [u'farm', u'worker', u'deport'] [u'govt', u'speak', u'detent', u'centr', u'claim'] [u'firm', u'woe', u'shouldnt', u'reflect', u'local', u'economi'] [u'confirm', u'case', u'sar', u'india'] [u'food', u'truck', u'northern', u'iraq'] [u'forc', u'hop', u'restor', u'power', u'baghdad'] [u'frank', u'inspect', u'zone', u'person'] [u'light', u'spark', u'blaze'] [u'geologist', u'doubt', u'nasa', u'warn', u'peru', u'glacier'] [u'govt', u'accus', u'tri', u'control', u'atsic'] [u'grain', u'grower', u'urg', u'watch', u'armi', u'worm'] [u'group', u'aim', u'reunit', u'steal', u'generat'] [u'group', u'look', u'mango', u'industri', u'code', u'practic'] [u'head', u'roll', u'wake', u'find'] [u'health', u'initi', u'aim', u'address', u'doctor', u'woe'] [u'health', u'minist', u'urg', u'mossi', u'precaut'] [u'hear', u'road', u'extens', u'north', u'east'] [u'hong', u'kong', u'boarder', u'school', u'easter'] [u'hotel', u'agre', u'shorter', u'trade', u'hour'] [u'howard', u'back', u'reith', u'appoint'] [u'human', u'right', u'hill', u'heart', u'golden', u'citi'] [u'icac', u'probe', u'menangl', u'bridg', u'inquiri'] [u'declar', u'mayor', u'baghdad'] [u'india', u'beat', u'bangladesh', u'triangular', u'seri'] [u'indian', u'policeman', u'kill', u'attack', u'kashmir'] [u'india', u'sar', u'case', u'confirm'] [u'indonesian', u'cleric', u'readi', u'face', u'terror', u'trial'] [u'injuri', u'put', u'healey', u'world', u'chanc', u'jeopardi'] [u'inquiri', u'probe', u'green', u'legisl', u'impact'] [u'investig', u'begin', u'elect'] [u'iraqi', u'famili', u'welcom', u'human', u'shield'] [u'iraqi', u'forc', u'kill', u'firefight', u'near', u'baghdad'] [u'iraq', u'cost', u'billion', u'pentagon'] [u'jone', u'guilti', u'defam'] [u'kitchen', u'tolkein', u'townhous', u'ring', u'price'] [u'kuwaiti', u'surgeon', u'oper'] [u'labor', u'say', u'crean', u'defenc', u'rebound'] [u'labor', u'unabl', u'bridg'] [u'lack', u'fluorid', u'child', u'tooth', u'decay'] [u'lawyer', u'admit', u'jone', u'criticis', u'scott'] [u'leak', u'paddlesteam'] [u'taxi', u'safeti', u'taxi', u'bodi'] [u'lifesav', u'comp', u'cancel', u'sar', u'threat'] [u'lion', u'grand', u'final', u'rematch'] [u'lion', u'grand', u'final', u'match'] [u'local', u'hospit', u'deliveri', u'servic', u'stop'] [u'lodg', u'accept', u'age', u'care', u'project', u'site'] [u'magpi', u'disrupt', u'lion', u'strength'] [u'die', u'gippsland', u'crash'] [u'question', u'adelaid', u'stab', u'death'] [u'sentenc', u'prostitut', u'murder'] [u'sentenc', u'attack'] [u'market', u'ahead', u'easter', u'weekend'] [u'mattiac', u'tri', u'master', u'heartach'] [u'mayor', u'back', u'toll', u'best', u'ensur', u'bypass'] [u'mccartney', u'germ'] [u'consid', u'outdoor', u'smoke', u'terrac'] [u'media', u'muzzl', u'slat', u'accc'] [u'megawati', u'seek', u'arm', u'deal', u'russian', u'visit'] [u'minist', u'rule', u'cost', u'elect'] [u'minist', u'say', u'recycl'] [u'moggi', u'stow', u'away'] [u'renew', u'build', u'insur', u'plea'] [u'nat', u'claim', u'figur', u'prove', u'long', u'hospit', u'wait'] [u'natwa'] [u'nauru', u'doesnt', u'need', u'elect', u'monitor', u'presid'] [u'nauru', u'face', u'financ', u'despit', u'chang'] [u'naurus', u'leader', u'unawar', u'terrorist', u'arrest'] [u'nigerian', u'poll', u'crisi', u'opposit', u'threaten'] [u'nigeria', u'pose', u'tough', u'challeng', u'presid'] [u'evid', u'merger', u'ratepay', u'benefit', u'councillor'] [u'plan', u'close', u'rural', u'hospit', u'pike'] [u'normal', u'life', u'pick', u'baghdad'] [u'secur', u'alarm', u'burn', u'council', u'chamber'] [u'govt', u'give', u'cancer', u'research', u'high', u'prioriti'] [u'polit', u'greener'] [u'offic', u'start', u'school', u'campaign'] [u'cabinet', u'document', u'releas', u'public'] [u'philippin', u'peacekeep', u'doctor', u'enter', u'iraq'] [u'piepoli', u'take', u'open', u'stage', u'tour', u'aragon'] [u'plan', u'boost', u'indigen', u'educ', u'role', u'model'] [u'platypus', u'develop', u'beauti'] [u'halv', u'gulf', u'deploy'] [u'polic', u'highlight', u'grow', u'theft'] [u'polic', u'launch', u'intern', u'inquiri', u'servic'] [u'polic', u'link', u'bodi', u'drug', u'haul'] [u'polic', u'promis', u'easter', u'road', u'crackdown'] [u'polic', u'seiz', u'drug', u'raid'] [u'polic', u'crack', u'easter', u'road', u'safeti'] [u'polic', u'enforc', u'easter', u'trade', u'law'] [u'polic', u'monitor', u'driver', u'freeway', u'section'] [u'port', u'skipper', u'primus', u'doubt', u'blue', u'clash'] [u'post', u'mortem', u'confirm', u'murder', u'suicid'] [u'powel', u'visit', u'syria', u'talk'] [u'powercor', u'wont', u'blackout', u'rebat'] [u'power', u'lose', u'primus', u'carlton', u'clash'] [u'premier', u'warn', u'cricket', u'club', u'smoke'] [u'properti', u'owner', u'sacr', u'sit', u'clarif'] [u'protest', u'summit'] [u'protest', u'wont', u'stop', u'store', u'closur'] [u'coalit', u'differ', u'settl', u'say', u'quinn'] [u'ramanauska', u'surgeri'] [u'rann', u'continu', u'fight', u'final', u'agreement'] [u'receiv', u'seek', u'urgent', u'talk', u'king', u'brother'] [u'cross', u'say', u'water', u'flow', u'baghdad'] [u'report', u'say', u'polic', u'protest', u'collud'] [u'retir', u'priest', u'face', u'child', u'sentenc'] [u'rise', u'pay', u'tribut'] [u'sale', u'impos', u'centuri', u'iraq', u'letter'] [u'sar', u'precaut', u'plan', u'arafura', u'game'] [u'teenag', u'road', u'crash'] [u'scientist', u'caus', u'diseas', u'kid'] [u'search', u'continu', u'coast'] [u'sedan', u'race', u'titl', u'head', u'geraldton'] [u'select', u'dilemma', u'side', u'crow', u'eagl'] [u'sharehold', u'pursu', u'claim'] [u'sheedi', u'prais', u'depart', u'jackson'] [u'sheldon', u'welcom', u'renew', u'nat', u'lib', u'coalit'] [u'sherwin', u'free', u'agent'] [u'shire', u'move', u'away', u'council', u'merger', u'idea'] [u'snowi', u'corp', u'look', u'iraq', u'work'] [u'solomon', u'polic', u'defend', u'secur', u'appoint'] [u'specialist', u'plan', u'resign', u'wait'] [u'look', u'condor', u'deposit'] [u'studi', u'consid', u'land', u'manag', u'practic'] [u'surat', u'extinguish'] [u'sydney', u'charg', u'fraud'] [u'syria', u'propos', u'free', u'zone'] [u'talk', u'focus', u'heavi', u'vehicl', u'transport', u'corridor'] [u'tasmania', u'head', u'csiro', u'marin', u'research', u'push'] [u'search', u'resum', u'sweep', u'rock'] [u'teen', u'plan', u'consider'] [u'tender', u'seek', u'mainten'] [u'test', u'white', u'powder', u'drug'] [u'tingl', u'retain', u'upper', u'hous', u'seat'] [u'tooth', u'decay', u'rise', u'aussi', u'kid'] [u'tourism', u'group', u'get', u'chairman'] [u'tourism', u'loll', u'take', u'toll', u'hotel', u'trade'] [u'travel', u'alert', u'issu', u'middl', u'east'] [u'tribun', u'reject', u'alcohol', u'milk', u'drink', u'appeal'] [u'tweed', u'shire', u'hear', u'merger'] [u'twin', u'path', u'friendship'] [u'charg', u'heroin', u'bust'] [u'children', u'dead', u'townsvill', u'stab'] [u'unmark', u'grave', u'outsid', u'kirkuk'] [u'upgrad', u'highway', u'section', u'open'] [u'admit', u'mosul', u'kill'] [u'citi', u'strike', u'blow', u'adulteri'] [u'doesnt', u'expect', u'talk', u'north', u'korea', u'crisi'] [u'forc', u'captur', u'saddam', u'half', u'brother'] [u'marin', u'deni', u'baghdad', u'governor', u'appoint'] [u'put', u'price', u'saddam', u'head'] [u'see', u'swift', u'breakthrough', u'north', u'korea'] [u'urg', u'lift', u'iraq', u'econom', u'sanction'] [u'vandal', u'relat', u'log', u'decis', u'thwait'] [u'govt', u'promis', u'drink', u'drive', u'crackdown'] [u'opposit', u'question', u'rail', u'standardis'] [u'victorian', u'urg', u'water', u'wise', u'easter'] [u'visit', u'ship', u'take', u'sar', u'precaut'] [u'visitor', u'survey', u'case', u'fund'] [u'parliament', u'move', u'relax', u'cannabi', u'law'] [u'polic', u'accus', u'excess', u'forc'] [u'water', u'leak', u'leav', u'burni', u'resid'] [u'wheat', u'virus', u'cost', u'csiro', u'year', u'research'] [u'wilcannia', u'water', u'restrict', u'lift', u'soon'] [u'wild', u'shellfish', u'extend'] [u'wineri', u'beef', u'secur'] [u'wollongong', u'hydrograph', u'offic', u'host', u'confer'] [u'wollongong', u'name', u'special', u'olymp', u'australia'] [u'woman', u'charg', u'murder', u'children'] [u'wool', u'industri', u'great', u'leader', u'die'] [u'woomera', u'detent', u'centr', u'mothbal'] [u'defend', u'collingwood', u'banner', u'censorship'] [u'rapid', u'trip', u'north', u'gladston'] [u'news', u'that', u'screen'] [u'anti', u'nuclear', u'protest', u'gather', u'near', u'dock'] [u'arsenal', u'vieira', u'week'] [u'atsic', u'leader', u'attack', u'govt', u'fund', u'decis'] [u'name', u'unchang', u'team', u'second', u'test'] [u'australia', u'name', u'unchang', u'line', u'second', u'test'] [u'australian', u'forc', u'uncov', u'iraqi', u'militari', u'hardwar'] [u'australian', u'olymp', u'boss', u'work', u'athen', u'budget'] [u'australia', u'unchang', u'second', u'test'] [u'junk', u'food', u'school', u'report', u'say'] [u'baxter', u'protest', u'begin', u'minor', u'confront'] [u'bike', u'bomb', u'kill', u'year'] [u'billionair', u'philanthropist', u'getti', u'die'] [u'bishop', u'zimbabw', u'tortur', u'cricket', u'protest'] [u'blair', u'tell', u'famili', u'iraq', u'cost'] [u'blix', u'hope', u'inspector', u'return', u'iraq'] [u'blow', u'church', u'deliv', u'missionari', u'puff'] [u'boss', u'tweak', u'rule', u'uphold', u'format'] [u'brack', u'reject', u'break', u'elect', u'promis', u'claim'] [u'brit', u'assist', u'ireland', u'kill', u'report'] [u'brumbi', u'confid', u'ahead', u'waratah', u'clash'] [u'brumbi', u'smash', u'waratah'] [u'brumbi', u'thump', u'waratah', u'crusad', u'edg', u'shark'] [u'burst', u'water', u'main', u'damag', u'home', u'melbourn', u'outer'] [u'crash', u'kill', u'injur', u'cuba'] [u'busi', u'warn', u'exodus', u'plan'] [u'calm', u'restor', u'detent', u'centr', u'protest'] [u'capriati', u'advanc', u'dokic', u'coetzer', u'tumbl'] [u'children', u'hospit', u'appeal', u'shoot'] [u'china', u'wont', u'mediat', u'north', u'korea'] [u'chines', u'leader', u'order', u'offici', u'come', u'clean'] [u'citi', u'deserv', u'uefa', u'slot', u'say', u'keegan'] [u'claim', u'hospit', u'looter', u'rap', u'patient'] [u'coalit', u'forc', u'face', u'continu', u'hostil', u'mosul'] [u'contemporari', u'open', u'adelaid'] [u'costa', u'accus', u'conceal', u'rail', u'alleg'] [u'dead', u'skydiv', u'name', u'releas'] [u'facto', u'convict', u'releas', u'babi', u'death'] [u'detaine', u'releas', u'masri', u'rule'] [u'detent', u'centr', u'face', u'protest'] [u'detent', u'centr', u'protest', u'subsid'] [u'diaz', u'matthew', u'tie', u'lead', u'vega'] [u'dont', u'catch', u'fisheri', u'warn'] [u'drug', u'scandal', u'cricket', u'getti', u'pull', u'stump'] [u'buri', u'hatchet', u'iraq'] [u'exceller', u'doncast'] [u'exum', u'name', u'lewi', u'fernandez', u'dope', u'cover'] [u'split', u'look', u'like', u'say', u'mosley'] [u'thank', u'expat', u'iraqi'] [u'fisher', u'converg', u'whyalla', u'fish', u'contest'] [u'fisichella', u'hand', u'brazil', u'trophi'] [u'fisichella', u'hand', u'brazil', u'trophi', u'imola'] [u'fittler', u'star', u'rooster', u'roll', u'bronco'] [u'flat', u'chat', u'lead', u'brisban', u'gladston'] [u'folk', u'festiv', u'tip', u'attract', u'peopl'] [u'fourteen', u'philippino', u'crucifi', u'good', u'friday'] [u'fourth', u'charg', u'heroin', u'seizur'] [u'gazza', u'vow', u'return', u'chines', u'club', u'treatment'] [u'german', u'author', u'hurt', u'store', u'explos'] [u'grund', u'hold', u'narrow', u'lead'] [u'gunner', u'appeal', u'campbel', u'card'] [u'harrigan', u'manlystorm', u'clash'] [u'hawk', u'team', u'chase', u'pigeon', u'park'] [u'hewitt', u'stand', u'firm', u'threat'] [u'hobart', u'communiti', u'organis', u'win', u'nation', u'award'] [u'hospit', u'appeal', u'rais'] [u'hundr', u'walk', u'commemor', u'christ'] [u'hurrican', u'look', u'number', u'seven'] [u'hussain', u'confirm', u'england', u'test', u'captain'] [u'hydro', u'say', u'steam', u'ahead'] [u'scapegoat', u'ferrari'] [u'injuri', u'statist', u'highlight', u'riski', u'busi'] [u'iraqi', u'claim', u'elect', u'mayor', u'governor'] [u'iraq', u'neighbour', u'demand', u'withdraw'] [u'iraq', u'neighbour', u'meet', u'riyadh'] [u'itali', u'petacchi', u'win', u'second', u'aragon', u'stage'] [u'jacobson', u'shoot', u'lead', u'algarv'] [u'kurd', u'discov', u'burial', u'grind', u'outsid', u'kirkuk'] [u'kurd', u'hand', u'baath', u'parti', u'figur', u'forc'] [u'lara', u'believ', u'windi', u'level', u'test', u'seri'] [u'lara', u'play', u'saviour', u'role'] [u'latham', u'talk', u'irish', u'giant', u'munster'] [u'leader', u'real', u'madrid', u'hop', u'humili', u'barcelona'] [u'lewi', u'fernandez', u'name', u'dope', u'cover', u'claim'] [u'lyon', u'favourit', u'cloud', u'gather', u'marseill'] [u'malaysia', u'deputi', u'appeal', u'sodomi'] [u'injur', u'petrol', u'bowser', u'accid'] [u'lucki', u'aliv', u'cling', u'bonnet'] [u'arsenal', u'face', u'titl', u'playoff'] [u'arsenal', u'face', u'titl', u'play'] [u'milan', u'unit', u'prayer', u'roman', u'conquest'] [u'miss', u'person', u'program', u'help', u'runaway'] [u'kill', u'witch', u'india'] [u'mosqu', u'faith', u'recal', u'saddam', u'visit'] [u'nation', u'librari', u'offer', u'artist', u'scholarship'] [u'navi', u'bring', u'turtl', u'spell'] [u'newcastl', u'jena', u'rule', u'fulham', u'match'] [u'condom', u'aim', u'improv', u'perform'] [u'palestinian', u'cabinet', u'announc'] [u'korea', u'nuclear', u'crisi', u'escal'] [u'korea', u'talk', u'limbo'] [u'galleri', u'safe', u'hand', u'seller'] [u'park', u'urg', u'camp', u'caution'] [u'ralli', u'driver', u'bourn', u'critic', u'condit'] [u'pacif', u'island', u'form', u'unit', u'team'] [u'parliament', u'spend', u'worthwhil', u'aagaard'] [u'peac', u'trust', u'monitor', u'zimbabw', u'abus'] [u'petrol', u'price', u'caus', u'alarm', u'racq'] [u'pittwat', u'resid', u'fight', u'oyster', u'farm'] [u'polic', u'public', u'help', u'case', u'submerg'] [u'polic', u'await', u'baxter', u'activist'] [u'polic', u'kit', u'balloon', u'baxter', u'protest'] [u'polic', u'continu', u'search', u'sweep'] [u'polic', u'investig', u'wembley', u'home', u'invas'] [u'polic', u'plan', u'easter', u'blitz', u'queensland', u'road'] [u'polic', u'road', u'toll', u'tragic'] [u'pollock', u'record', u'south', u'africa', u'seal', u'seri'] [u'power', u'return', u'baghdad', u'hospit'] [u'practic', u'reconcili', u'councillor'] [u'propos', u'subdivis', u'wont', u'affect', u'recreat'] [u'protest', u'breach', u'roadblock', u'near', u'detent', u'centr'] [u'rain', u'strong', u'wind', u'caus', u'damag'] [u'rann', u'redund', u'board'] [u'rare', u'marsupi', u'introduc', u'state'] [u'raymond', u'down', u'dokic', u'capriati', u'quarter'] [u'record', u'smash', u'brisban', u'gladston'] [u'river', u'plate', u'face', u'corinthian', u'libertador'] [u'road', u'toll', u'move', u'seven'] [u'brew', u'iraq', u'sanction'] [u'russian', u'rider', u'receiv', u'year', u'zanini'] [u'saddam', u'half', u'brother', u'question'] [u'samoan', u'teen', u'child', u'killer', u'sentenc', u'death'] [u'sampra', u'pull', u'houston', u'tournament'] [u'paulo', u'grab', u'victori', u'brazilian'] [u'sar', u'babi', u'fight', u'live'] [u'schu', u'face', u'interlago', u'crash'] [u'schumach', u'domin', u'qualifi'] [u'second', u'appeal', u'help', u'nauru'] [u'secur', u'problem', u'hamper', u'effort', u'australian'] [u'senden', u'trail', u'south', u'carolina'] [u'shop', u'reopen', u'loot', u'spree', u'baghdad'] [u'shut', u'wing', u'talli'] [u'singer', u'luther', u'vandross', u'suffer', u'stroke'] [u'nation', u'road'] [u'motorist', u'charg', u'drink', u'drive'] [u'snail', u'trail', u'human', u'activ'] [u'south', u'africa', u'confirm', u'world'] [u'sptnrl'] [u'stem', u'cell', u'provid', u'cure', u'mice'] [u'stock', u'push', u'higher'] [u'surpris', u'draw', u'nacion'] [u'syria', u'consid', u'expel', u'iraqi', u'say'] [u'syria', u'visit', u'broad', u'agenda'] [u'taiwan', u'sar', u'inform'] [u'push', u'tighter', u'lawyer', u'regul'] [u'tasmanian', u'page', u'servic', u'launch', u'servic'] [u'tasmanian', u'tourism', u'confid', u'strong', u'despit'] [u'teacher', u'union', u'awar', u'delay', u'govt'] [u'there', u'panic', u'bayern', u'say', u'hitzfeld'] [u'peopl', u'sentenc', u'death', u'loot', u'tomb'] [u'tigana', u'leav', u'fulham', u'coleman', u'take', u'charg'] [u'tommi', u'neglig', u'child', u'drown'] [u'trebl', u'ranger'] [u'turkey', u'ponder', u'peacekeep', u'role'] [u'twin', u'father', u'plead', u'warn', u'chariti'] [u'skydiv', u'accid'] [u'food', u'suppli', u'arriv', u'baghdad'] [u'unhappi', u'rio', u'take', u'month', u'ponder'] [u'union', u'campaign', u'chang', u'worker', u'compo', u'law'] [u'unit', u'goal', u'hunt', u'titl', u'race', u'head'] [u'admit', u'weapon', u'iraq'] [u'award', u'iraqi', u'util', u'contract'] [u'believ', u'senior', u'iraqi', u'syria'] [u'cultur', u'advis', u'resign', u'inact'] [u'enlist', u'weapon', u'inspector'] [u'itali', u'consult', u'abba', u'extradit'] [u'keen', u'start', u'middl', u'east', u'peac', u'talk'] [u'marin', u'pull', u'baghdad'] [u'marin', u'vacat', u'baghdad', u'day'] [u'offer', u'reward', u'baghdad', u'treasur'] [u'refus', u'sanction', u'mayor', u'governor', u'baghdad'] [u'viduka', u'leed'] [u'vietnam', u'prostitut', u'brush', u'chat', u'line'] [u'violenc', u'erupt', u'protest', u'polic', u'clash'] [u'visitor', u'urg', u'precaut'] [u'death', u'take', u'nation', u'road', u'toll'] [u'theme', u'domin', u'easter', u'messag'] [u'offer', u'tszyu', u'titl', u'deadlock'] [u'woman', u'remand', u'murder', u'charg'] [u'woomera', u'reopen', u'need', u'ruddock'] [u'work', u'begin', u'rebuild', u'basra'] [u'world', u'famous', u'diet', u'doctor', u'die', u'fall'] [u'young', u'jam', u'follow', u'jordan', u'footstep'] [u'dead', u'injur', u'jail', u'riot', u'venezuela'] [u'injur', u'ferri', u'hit', u'english', u'harbour', u'wall'] [u'target', u'iraqi', u'water', u'health', u'problem'] [u'algerian', u'author', u'kidnap', u'tourist', u'report'] [u'ali', u'tribut', u'king', u'legend', u'heal'] [u'alonso', u'untroubl', u'investig'] [u'amnesti', u'condemn', u'court', u'decis', u'hold', u'anwar'] [u'anti', u'protest', u'arrest', u'outsid', u'pentagon'] [u'arab', u'claim', u'footag', u'saddam'] [u'armstrong', u'eye', u'amstel', u'gold'] [u'armstrong', u'eye', u'world'] [u'athlet', u'offici', u'probe', u'drug', u'cover'] [u'aussi', u'target', u'lara'] [u'australian', u'team', u'medic', u'suppli', u'iraq'] [u'australia', u'pledg', u'iraq', u'appeal'] [u'aust', u'urg', u'peac', u'monitor', u'bougainvill'] [u'aust', u'woman', u'trampl', u'death', u'eleph', u'africa'] [u'author', u'take', u'gutnick', u'decis', u'unhcr'] [u'barrichello', u'lead', u'free', u'practic'] [u'baxter', u'protest', u'break', u'polic', u'roadblock'] [u'baxter', u'protest', u'prepar', u'march'] [u'baxter', u'protest', u'retreat', u'campsit'] [u'baxter', u'protest', u'number', u'ruddock'] [u'boati', u'urg', u'follow', u'rule'] [u'bodi', u'recov', u'boat', u'accid'] [u'bush', u'aid', u'play', u'post', u'econom', u'surg'] [u'butcher', u'hungri', u'success', u'motherwel'] [u'holiday', u'maker', u'local', u'tourist'] [u'cameraman', u'kill', u'west', u'bank', u'clash'] [u'canada', u'quarantin', u'sar', u'contact'] [u'canberra', u'driver', u'best', u'behaviour'] [u'cat', u'break'] [u'cat', u'break', u'hawk', u'bomber', u'point'] [u'chalabi', u'wont', u'play', u'role', u'interim', u'iraqi', u'govt'] [u'chief', u'crush', u'cat', u'hurrican', u'overcom', u'highland'] [u'children', u'hospit', u'appeal', u'rais'] [u'china', u'come', u'clean', u'sar', u'toll'] [u'china', u'vow', u'transpar', u'sar'] [u'church', u'leader', u'unit', u'easter', u'messag'] [u'claim', u'disappoint', u'failur', u'stop', u'kashmir'] [u'clangalang', u'claim', u'derbi'] [u'confer', u'examin', u'polic', u'intern'] [u'control', u'baghdad', u'command'] [u'crimin', u'charg', u'follow', u'ireland', u'collus'] [u'custom', u'standard', u'program', u'get', u'fund', u'boost'] [u'depress', u'gazza', u'flee', u'china', u'belli'] [u'detaine', u'play', u'soccer', u'protest', u'rage', u'outsid'] [u'dragon', u'dog'] [u'dragon', u'dog', u'eel', u'panther', u'record', u'win'] [u'dragon', u'event', u'week', u'bulldog'] [u'easter', u'famili', u'festiv', u'kick'] [u'easter', u'road', u'toll', u'hit'] [u'easter', u'road', u'toll', u'abysm', u'start'] [u'injuri', u'add', u'arsenal', u'problem'] [u'escap', u'injuri', u'balloon', u'crash'] [u'stadium', u'plan', u'stop', u'hooligan', u'say'] [u'endang', u'panda', u'china'] [u'expert', u'analys', u'saddam', u'broadcast'] [u'fergi', u'let', u'nauseat', u'arsenal'] [u'ferrero', u'moya', u'cours', u'spain', u'final'] [u'easter', u'road', u'fatal', u'bring', u'nation'] [u'arrest', u'sunshin', u'coast', u'chase'] [u'flat', u'chat', u'grundig', u'celebr', u'brisban', u'gladston'] [u'flat', u'chat', u'grundig', u'honour', u'brisban'] [u'folk', u'music', u'strut', u'stuff', u'canberra'] [u'food', u'mosul', u'face', u'delay'] [u'foreign', u'teacher', u'job', u'better', u'late'] [u'bangladesh', u'captain', u'mashud', u'drop', u'test'] [u'franchitti', u'season', u'doubt', u'crash'] [u'german', u'minist', u'soldier', u'blue'] [u'girl', u'kill', u'india', u'pakistan', u'shell', u'kashmir'] [u'good', u'friday', u'crash', u'good', u'samaritan'] [u'gough', u'bang', u'wasim', u'open', u'hampshir'] [u'govt', u'pledg', u'assist', u'drought'] [u'grand', u'arme', u'claim', u'doncast'] [u'group', u'slam', u'delay'] [u'guerilla', u'ambush', u'easter', u'parad', u'colombia'] [u'hawk', u'bomber', u'point', u'cat', u'break'] [u'hawk', u'sink', u'swan', u'bomber', u'beat', u'bulldog'] [u'heavi', u'rain', u'flood', u'kill', u'peopl', u'oman'] [u'henin', u'hardenn', u'davenport', u'reach', u'semi', u'amelia'] [u'hoddl', u'admit', u'euro', u'dream'] [u'hodg', u'rescu', u'australia'] [u'hong', u'kong', u'report', u'record', u'jump', u'sar', u'case'] [u'hong', u'kong', u'take', u'sar', u'broom'] [u'balloon', u'crash', u'melbourn', u'injuri'] [u'human', u'shield', u'happi', u'home'] [u'approv', u'million', u'loan', u'lanka'] [u'ipswich', u'beat', u'portsmouth', u'close', u'playoff'] [u'iraqi', u'nerv', u'offici', u'surrend', u'forc'] [u'iraq', u'friday', u'prayer', u'issu', u'warn'] [u'islam', u'forum', u'focus', u'media', u'portray'] [u'jerusalem', u'crowd', u'follow', u'path', u'christ'] [u'jockey', u'club', u'fight', u'sale', u'randwick', u'taxi', u'strip'] [u'journalist', u'detain', u'detent', u'centr', u'protest'] [u'jurass', u'park', u'creator', u'agre', u'wife', u'million'] [u'kung', u'matthew', u'share', u'lead', u'vega'] [u'lang', u'park', u'get', u'pedestrian', u'bridg'] [u'late', u'goal', u'see', u'forc', u'sink', u'spirit'] [u'lauda', u'prais', u'fifth', u'place', u'webber'] [u'malaysian', u'pair', u'appear', u'court', u'drug', u'charg'] [u'charg', u'murder', u'ship', u'stab'] [u'citi', u'cruis', u'sleepi', u'spur'] [u'citi', u'sink', u'sleepi', u'spur'] [u'marin', u'pull', u'baghdad', u'armi', u'move'] [u'mckenzi', u'lead', u'south', u'africa', u'india'] [u'meat', u'compani', u'shed', u'debt'] [u'milton', u'smash', u'speed', u'record'] [u'minist', u'alleg', u'doubl', u'bank', u'robber'] [u'molik', u'budapest', u'semi'] [u'motorcycl', u'rider', u'die', u'sand', u'dune', u'leap'] [u'moya', u'eye', u'hewitt', u'spot'] [u'moya', u'eye', u'spot'] [u'call', u'watchdog', u'evid', u'accc'] [u'mugab', u'issu', u'defiant', u'speech'] [u'nasa', u'postpon', u'infra', u'telescop', u'launch'] [u'naurus', u'phosphat', u'cash', u'near', u'minist'] [u'neighbour', u'countri', u'fear', u'iraq', u'fragment'] [u'neighbour', u'urg', u'pursu', u'anti', u'nuke', u'talk'] [u'neighbour', u'warn', u'hand', u'iraq'] [u'nigerian', u'vote', u'landmark', u'presidenti', u'poll'] [u'nigeria', u'vote', u'shadow', u'violenc'] [u'korean', u'defianc', u'put', u'talk', u'jeopardi'] [u'korea', u'suggest', u'talk', u'south'] [u'korea', u'talk', u'doubt', u'fuel', u'announc'] [u'welcom', u'summit', u'aborigin', u'death'] [u'hop', u'method', u'census'] [u'look', u'sponsor', u'oversea', u'teacher'] [u'ralli', u'driver', u'bourn', u'coma'] [u'ogilivi', u'trail', u'lead', u'south', u'carolina'] [u'dead', u'miss', u'wash', u'rock'] [u'dead', u'injur', u'crash'] [u'owen', u'take', u'algarv', u'lead', u'jacobson', u'slip', u'pace'] [u'palac', u'manag', u'franci', u'leav', u'mutal', u'consent'] [u'pantani', u'miss', u'valverd', u'win', u'stage'] [u'poland', u'seal', u'billion', u'militari', u'deal'] [u'polic', u'appal', u'road', u'toll'] [u'polic', u'arrest', u'protest', u'fresh', u'clash', u'outsid'] [u'polic', u'clamp', u'kite', u'fli', u'protest'] [u'polic', u'investig', u'fatal', u'stab', u'ship'] [u'polic', u'investig', u'stab', u'death', u'boat'] [u'polic', u'mount', u'search', u'bushwalk'] [u'pope', u'pray', u'victim', u'terror'] [u'price', u'predict', u'dragon'] [u'probe', u'begin', u'skydiv', u'death'] [u'protest', u'determin', u'incit', u'violenc', u'ruddock'] [u'public', u'abus', u'ground', u'divorc', u'court'] [u'pursuit', u'boat', u'link', u'heroin', u'haul', u'continu'] [u'qlds', u'easter', u'road', u'toll', u'revis'] [u'tourism', u'look', u'domest', u'market'] [u'cross', u'urg', u'blood', u'donat', u'easter'] [u'rescu', u'research', u'return', u'pedra', u'branca'] [u'resid', u'urg', u'involv', u'floriad'] [u'ricciuto', u'clear', u'crow'] [u'ross', u'sizzl', u'stawel', u'gift', u'heat'] [u'ruptur', u'water', u'main', u'cost', u'thousand'] [u'russia', u'star', u'year'] [u'saddam', u'financ', u'minist', u'custodi'] [u'govt', u'accus', u'block', u'request'] [u'govt', u'initi', u'sustain', u'roundtabl'] [u'govt', u'tough', u'hoon'] [u'sar', u'disastr', u'hong', u'kong', u'say', u'chief', u'exec'] [u'searcher', u'miss', u'bushwalk'] [u'second', u'death', u'road', u'easter', u'break'] [u'seven', u'kill', u'tribal', u'feud', u'pakistan'] [u'seven', u'arrest', u'protest'] [u'sheedi', u'brace', u'fast', u'pace', u'bulldog'] [u'singapor', u'death', u'toll', u'overtak', u'canada'] [u'commission', u'welcom', u'atsic', u'overhaul'] [u'film', u'industri', u'get', u'fund', u'boost'] [u'page', u'launch', u'rang', u'servic'] [u'triumph', u'german', u'english', u'lose', u'marbl'] [u'turkish', u'policewoman', u'charg', u'tortur'] [u'ullrich', u'add', u'flech', u'wallonn', u'schedul'] [u'call', u'backup', u'bougainvill'] [u'unknown', u'remain', u'digger', u'franc'] [u'airlin', u'pilot', u'carri', u'gun'] [u'british', u'forc', u'releas', u'iraqi', u'prison'] [u'forc', u'releas', u'iraqi', u'pow'] [u'forc', u'tri', u'resolv', u'power', u'disput'] [u'releas', u'iraqi', u'pow'] [u'consult', u'alli', u'north', u'korea', u'talk'] [u'field', u'member', u'forc', u'iraq'] [u'tribun', u'begin', u'judg', u'status', u'iraqi', u'pow'] [u'troop', u'iraqi', u'minist', u'custodi'] [u'unfaz', u'suppos', u'saddam', u'video'] [u'death', u'bring', u'nation', u'toll'] [u'video', u'phone', u'swipe', u'heist'] [u'vietnam', u'consid', u'close', u'land', u'border', u'china'] [u'waugh', u'target', u'lara'] [u'waugh', u'target', u'lara', u'second', u'test'] [u'webber', u'impress', u'qualifi'] [u'wildcard', u'robertson', u'elimin', u'low'] [u'woman', u'wash', u'rock', u'drown'] [u'world', u'semi', u'final', u'bonus', u'offer', u'fiji'] [u'tourist', u'dead', u'boat', u'sink', u'brazil'] [u'polic', u'baxter', u'protest'] [u'dead', u'week', u'unseason', u'rain', u'oman'] [u'arrest', u'basra', u'bank', u'robberi'] [u'year', u'warsaw', u'ghetto', u'upris'] [u'oppn', u'critic', u'school', u'condom', u'option'] [u'train', u'stop', u'short', u'basra'] [u'critic', u'medicar', u'reform', u'packag'] [u'american', u'airlin', u'deal', u'jeopardi'] [u'american', u'pow', u'return', u'home'] [u'aussi', u'torment', u'champion', u'surrey'] [u'australia', u'build', u'lead'] [u'australia', u'determin', u'stop', u'illeg', u'drug'] [u'author', u'claim', u'result', u'drug', u'oper'] [u'baghdad', u'condit', u'appal'] [u'baghdad', u'cat', u'hungri', u'food'] [u'baxter', u'protest', u'face', u'polic'] [u'baxter', u'protest', u'move', u'port', u'augusta', u'jail'] [u'beckham', u'gigg', u'go', u'ferguson'] [u'blue', u'hold', u'edg', u'hurrican', u'super'] [u'blue', u'hurrican', u'close', u'semi', u'final', u'spot'] [u'blue', u'hurrican', u'close', u'super', u'semi'] [u'bush', u'mourn', u'loss', u'life', u'iraq'] [u'call', u'better', u'infrastructur'] [u'canada', u'sar', u'toll', u'rise'] [u'carer', u'need', u'guid', u'pup'] [u'chanderpaul', u'australia'] [u'chanderpaul', u'injuri', u'australia'] [u'chase', u'continu', u'boat', u'link', u'heroin', u'haul'] [u'china', u'tip', u'signific', u'rais', u'sar', u'toll'] [u'china', u'urg', u'student', u'travel', u'sar', u'precaut'] [u'cink', u'cours', u'year', u'drought'] [u'colombian', u'rider', u'fail', u'blood', u'test', u'amstel', u'gold'] [u'conserv', u'degre', u'wont', u'repriev'] [u'coria', u'stop', u'moya', u'reveng', u'ferrero'] [u'crew', u'hold', u'dare', u'drug', u'raid'] [u'crow', u'clip', u'eagl'] [u'crow', u'clip', u'eagl', u'port', u'docker', u'triumph'] [u'death', u'toll', u'rise', u'israel', u'raid', u'west', u'bank', u'gaza'] [u'dementieva', u'upset', u'henin', u'hardenn', u'amelia', u'island'] [u'democrat', u'accus', u'baxter', u'polic', u'overkil'] [u'democrat', u'labor', u'support', u'asylum', u'seeker'] [u'democrat', u'support', u'welcom', u'home', u'parad', u'troop'] [u'demonstr', u'polic', u'agre', u'baxter', u'protest'] [u'dokic', u'want', u'play', u'australia', u'report'] [u'dortmund', u'beat', u'bayern', u'chang'] [u'downer', u'doubt', u'north', u'korea', u'nuclear', u'claim'] [u'downer', u'expect', u'coalit', u'victori', u'declar', u'soon'] [u'easter', u'celebr', u'paus', u'reflect', u'iraq'] [u'easter', u'road', u'toll', u'revis'] [u'easter', u'sunday', u'servic', u'begin', u'victoria'] [u'patten', u'say', u'north', u'korea', u'danger', u'world'] [u'falkirk', u'titl', u'promot', u'parti', u'hold'] [u'govt', u'polic', u'baxter'] [u'convoy', u'reach', u'baghdad'] [u'fisherman', u'wash', u'rock', u'miss'] [u'palestinian', u'dead', u'isra', u'armi', u'raid'] [u'ganguli', u'confid', u'ahead', u'nation', u'final'] [u'glori', u'smash', u'newcastl'] [u'green', u'call', u'probe', u'dope', u'charg'] [u'green', u'road', u'share', u'educ'] [u'haa', u'delay', u'comeback', u'pull', u'munich', u'open'] [u'head', u'roll', u'sar', u'cover'] [u'heart', u'break', u'celtic', u'titl', u'challeng'] [u'husband', u'seek', u'marit', u'peac', u'raid', u'siren'] [u'imag', u'camera', u'focus', u'genesi', u'diseas'] [u'indian', u'coach', u'say', u'pacemen', u'hold', u'success'] [u'indian', u'wind', u'kashmir', u'tour', u'peac', u'gestur'] [u'investig', u'resum', u'boat', u'accid'] [u'ipswich', u'polic', u'search', u'miss', u'babi'] [u'iraqi', u'minist', u'hold', u'ask', u'leav'] [u'isra', u'armi', u'stag', u'jenin', u'incurs'] [u'joost', u'inspir', u'bull', u'roast', u'red'] [u'juve', u'march', u'past', u'roma', u'milan', u'stun', u'empoli'] [u'katherin', u'welcom', u'raaf', u'pilot'] [u'kato', u'lose', u'fight', u'life'] [u'knight', u'shark', u'eagl', u'edg', u'storm'] [u'kung', u'hold', u'sorenstam', u'lpga', u'tour'] [u'leader', u'real', u'hold', u'draw', u'battl', u'barca'] [u'legal', u'sleep', u'defenc', u'odd', u'medic', u'evid'] [u'lehmann', u'pont', u'australia', u'control'] [u'lehmann', u'delight', u'test'] [u'lehmann', u'delight', u'maiden', u'test', u'centuri'] [u'leicest', u'premier', u'leagu'] [u'lill', u'hold', u'lyon', u'bordeaux', u'close', u'leader'] [u'littl', u'hope', u'pair', u'sweep'] [u'look', u'holiday', u'urg', u'church'] [u'mayweath', u'retain', u'lightweight', u'crown'] [u'meat', u'hook', u'artist', u'leav', u'shop', u'crowd', u'hang'] [u'megson', u'demand', u'cash', u'ensur', u'baggi', u'bounc'] [u'mentor', u'nicklaus', u'pay', u'tribut', u'weir'] [u'molik', u'set', u'final', u'date', u'serna'] [u'steal', u'iraqi', u'treasur', u'reappear'] [u'nation', u'easter', u'road', u'toll', u'climb'] [u'nation', u'easter', u'road', u'toll', u'rise'] [u'nation', u'road', u'toll', u'hit'] [u'palestinian', u'row', u'arafat'] [u'nigeria', u'anxious', u'wait', u'presid', u'poll', u'result'] [u'fast', u'track', u'asian', u'nurs', u'student'] [u'push', u'seatbelt', u'chang'] [u'palestinian', u'attend', u'slay', u'cameraman', u'funer'] [u'petacchi', u'claim', u'stage', u'tour', u'aragon'] [u'pet', u'dump', u'amid', u'sar', u'uncertainti', u'hong', u'kong'] [u'polic', u'brace', u'baxter', u'protest'] [u'polic', u'miss', u'babi'] [u'polic', u'investig', u'girl', u'abduct'] [u'polic', u'investig', u'stab', u'incid'] [u'polic', u'nannup', u'famili', u'wash', u'rock'] [u'polic', u'raid', u'civil', u'servant', u'disservic'] [u'polic', u'recov', u'bodi', u'oven', u'river'] [u'polic', u'report', u'west', u'ham', u'cole', u'brevett'] [u'polic', u'urg', u'motorist', u'restrain', u'kid'] [u'poll', u'close', u'nigerian', u'elect'] [u'pont', u'lehmann', u'pulveris', u'windi'] [u'pont', u'lehmann', u'ton', u'australia', u'control'] [u'pope', u'easter', u'messag', u'call', u'cultur'] [u'power', u'snatch', u'gasp', u'draw'] [u'pow', u'home', u'hero', u'welcom'] [u'protest', u'begin', u'latest', u'trek', u'baxter'] [u'protest', u'hail', u'effort', u'success'] [u'protest', u'hail', u'success', u'demonstr'] [u'protest', u'stage', u'concert', u'racism'] [u'maintain', u'titl', u'momentum'] [u'church', u'leader', u'urg', u'deeper', u'focus'] [u'kill', u'speedway', u'accid'] [u'rain', u'forc', u'postpon', u'india', u'south', u'africa'] [u'ranger', u'battl', u'final', u'place'] [u'cross', u'say', u'civil', u'administr', u'baghdad'] [u'reid', u'let', u'smith', u'sorri', u'leed'] [u'repent', u'lie', u'public', u'archbishop', u'tell', u'govt'] [u'rescu', u'effort', u'continu', u'save', u'florida', u'beach'] [u'retail', u'unsur', u'easter', u'sunday', u'trade'] [u'return', u'inspector', u'iraq', u'realist'] [u'ricoh', u'stop', u'make', u'film', u'load', u'camera'] [u'rockhampton', u'accid', u'lift', u'easter', u'death', u'toll'] [u'rower', u'begin', u'record', u'attempt'] [u'ruddock', u'defend', u'stanc', u'atsic', u'fund', u'review'] [u'ruddock', u'offer', u'compo', u'baxter', u'cost'] [u'saddam', u'go', u'shiit', u'muslim', u'free', u'worship'] [u'saddam', u'photo', u'seiz', u'jordan', u'border'] [u'sar', u'continu', u'spread', u'asia'] [u'schumach', u'claim', u'imola'] [u'schumach', u'race', u'despit', u'mother', u'death'] [u'schumach', u'take', u'emot'] [u'seafood', u'price', u'bless', u'local', u'easter'] [u'search', u'continu', u'miss'] [u'search', u'resum', u'miss', u'brother'] [u'search', u'resum', u'famili', u'wash', u'rock'] [u'seven', u'dead', u'palestinian', u'isra', u'armi', u'clash'] [u'seven', u'arrest', u'protest'] [u'dead', u'nigerian', u'poll', u'attack', u'monitor'] [u'slater', u'rid', u'high', u'bell', u'beach'] [u'smooth', u'sail', u'gladston'] [u'spanish', u'opera', u'star', u'sing', u'petersburg', u'gala'] [u'special', u'forc', u'brave', u'sea', u'captur', u'drug', u'boat'] [u'swat', u'team', u'enter', u'baxter', u'protest', u'camp'] [u'swede', u'jacobson', u'portug'] [u'sword', u'leav', u'open', u'beazley', u'return', u'labor'] [u'sydney', u'beach', u'face', u'pollut', u'rain'] [u'teenag', u'charg', u'babi', u'abduct'] [u'kill', u'road', u'hour'] [u'palestinian', u'kill', u'gaza', u'raid'] [u'titl', u'race', u'wire', u'unit', u'arsenal'] [u'earli', u'specul', u'dwyer', u'replac'] [u'chines', u'offici', u'sack', u'sar', u'cover'] [u'town', u'throw', u'easter', u'bunni'] [u'wallabi', u'warn', u'lift', u'game'] [u'train', u'basra', u'restart', u'suppli'] [u'tuffey', u'jayawarden', u'share', u'honour', u'kiwi', u'tour'] [u'see', u'higher', u'tech', u'militari', u'firepow', u'paper'] [u'unit', u'arsenal', u'head', u'wire', u'hammer', u'face'] [u'armi', u'ignor', u'alert', u'museum', u'loot', u'risk', u'report'] [u'armi', u'charg', u'baghdad'] [u'expect', u'retain', u'militari', u'base', u'iraq'] [u'consult', u'alli', u'north', u'korea', u'talk'] [u'maintain', u'militari', u'base', u'iraq'] [u'want', u'phase', u'sanction', u'report'] [u'easter', u'road', u'toll', u'rise'] [u'easter', u'road', u'toll', u'rise'] [u'call', u'school', u'care', u'reform'] [u'vigil', u'saddam', u'home', u'town', u'tikrit'] [u'wainaina', u'biktagirova', u'nagano', u'olymp', u'memori'] [u'miss', u'person', u'search', u'resum', u'light'] [u'warn', u'death', u'mushroom'] [u'seek', u'duke', u'highway', u'work'] [u'quarantin', u'singapor', u'sar', u'scare'] [u'townsvill', u'cultur', u'centr', u'plan'] [u'anger', u'manag', u'rage', u'cinema'] [u'anim', u'relat', u'crash', u'rise'] [u'dead', u'lao', u'attack'] [u'machin', u'steal', u'geraldton', u'nightclub'] [u'aussi', u'snare', u'lara', u'wicket', u'short', u'centuri'] [u'australia', u'want', u'dokic', u'olymp'] [u'light', u'deni', u'south', u'africa', u'victori'] [u'baxter', u'phone', u'restor', u'visit', u'resum'] [u'boati', u'caus', u'concern', u'coastal', u'patrol'] [u'bodi', u'soldier', u'buri', u'iraq'] [u'braddon', u'flat', u'damag'] [u'bulk', u'bill', u'doctor'] [u'bulldog', u'alvey', u'face', u'knee', u'reconstruct'] [u'bulldog', u'injuri', u'crisi'] [u'bush', u'see', u'posit', u'sign', u'syrian', u'cooper'] [u'busi', u'asian', u'trade', u'advic'] [u'polic', u'sand', u'dun'] [u'canadian', u'tycoon', u'eye', u'selfridg'] [u'canberra', u'folk', u'festiv', u'draw', u'crowd'] [u'candid', u'suffer', u'brochur', u'setback'] [u'chelsea', u'host', u'everton', u'fight', u'champion', u'leagu'] [u'china', u'introduc', u'hour', u'sar', u'test'] [u'chines', u'media', u'slam', u'sar', u'cover'] [u'chines', u'role', u'give', u'bush', u'confid', u'north', u'korea'] [u'concern', u'air', u'river', u'murray'] [u'concern', u'impact', u'law'] [u'consult', u'seek', u'pool', u'direct'] [u'cooper', u'reduc', u'tennant', u'creek', u'antisoci', u'woe'] [u'coral', u'bleach', u'microscop'] [u'coron', u'get', u'interim', u'report', u'boat', u'death'] [u'cosgrov', u'wont', u'timelin', u'troop', u'return'] [u'councillor', u'unhappi', u'speed', u'plan'] [u'council', u'reject', u'coast', u'high', u'rise', u'claim'] [u'council', u'road', u'drainag', u'fund'] [u'crash', u'investig', u'examin', u'scene', u'semitrail'] [u'crew', u'appear', u'court', u'huge', u'heroin', u'haul'] [u'crowd', u'flock', u'bless', u'fleet'] [u'crowd', u'flock', u'sport', u'aircraft', u'gather'] [u'custom', u'search', u'north', u'korean', u'ship', u'drug'] [u'darwin', u'high', u'win', u'educ', u'award'] [u'democrat', u'oppos', u'boost', u'detent', u'law'] [u'deportivo', u'sociedad', u'close', u'real'] [u'dinosaur', u'exhibit', u'track'] [u'doubl', u'bhupathi', u'mirnyi'] [u'drought', u'research', u'centr', u'moot'] [u'dunde', u'super', u'caley'] [u'easter', u'festiv', u'wrap', u'roma'] [u'easter', u'visitor', u'scrambl', u'giant', u'display'] [u'general', u'head', u'iraq', u'opec', u'deleg'] [u'explos', u'north', u'korea', u'missil', u'test', u'site', u'report'] [u'fatal', u'free', u'weekend', u'tamworth', u'region', u'road'] [u'fear', u'sar', u'gain', u'foothold', u'china'] [u'feyenoord', u'challeng', u'european'] [u'finland', u'tackl', u'spill', u'baltic'] [u'food', u'convoy', u'arriv', u'baghdad'] [u'kill', u'isra', u'raid', u'gaza', u'camp'] [u'forest', u'hill', u'restaur', u'bring', u'control'] [u'french', u'minist', u'insist', u'veil', u'photo'] [u'gene', u'therapi', u'offer', u'diabet', u'hope'] [u'good', u'rain', u'boost', u'north', u'farmer'] [u'govt', u'dismiss', u'galleri', u'budget', u'critic'] [u'govt', u'divid', u'million', u'baxter', u'polic'] [u'hill', u'cosgrov', u'leav', u'visit', u'troop'] [u'hill', u'shatter', u'thiev', u'target', u'jersey'] [u'hous', u'evacu', u'dealership', u'blaze'] [u'humanitarian', u'crisi', u'emerg', u'iraq', u'jordan', u'border'] [u'immigr', u'boat', u'bind', u'australia', u'report'] [u'increas', u'persecut', u'alleg', u'vietnam'] [u'interim', u'leader', u'tour', u'baghdad'] [u'interim', u'leader', u'tour', u'baghdad', u'hospit'] [u'iraqi', u'democraci', u'year', u'senat'] [u'iraqi', u'observ', u'sombr', u'easter', u'food', u'arriv'] [u'jacobson', u'eagl', u'secur', u'algarv'] [u'japanes', u'insur', u'giant', u'stake', u'chines', u'insur'] [u'john', u'conced', u'form', u'better'] [u'kopassus', u'troop', u'jail', u'papua', u'leader', u'murder'] [u'korean', u'unit', u'aggress', u'north'] [u'kyrgyzstan', u'landslid', u'kill'] [u'laker', u'cruis', u'iverson', u'playoff'] [u'landslid', u'kill', u'peopl', u'southern', u'kyrgyzstan'] [u'lara', u'fall', u'short'] [u'lara', u'fall', u'short', u'centuri'] [u'larg', u'crowd', u'converg', u'oakbank', u'easter', u'carniv'] [u'late', u'assault', u'put'] [u'latham', u'hope', u'red', u'return'] [u'love', u'beat', u'austin', u'agon', u'playoff', u'fifth'] [u'die', u'cliff', u'fall'] [u'die', u'truck', u'crash'] [u'hospit', u'incid'] [u'face', u'court', u'drug', u'charg'] [u'mayor', u'unconcern', u'announc'] [u'mayor', u'unhappi', u'rival', u'bid', u'lifesav', u'event'] [u'mayor', u'urg', u'rocki', u'ryan', u'affair'] [u'mcgrath', u'leav', u'caribbean', u'tour'] [u'mcgrath', u'return', u'test'] [u'member', u'desert', u'hawthorn'] [u'rescu', u'yacht', u'hit', u'rock'] [u'molik', u'down', u'budapest', u'final'] [u'monaco', u'dislodg', u'lyon', u'strasbourg'] [u'mother', u'want', u'race', u'say', u'griev', u'schu'] [u'motorist', u'urg', u'boost', u'driveway', u'safeti'] [u'seek', u'drought', u'bank', u'moratorium'] [u'nasa', u'shuttl', u'manag', u'resign'] [u'nation', u'road', u'toll', u'hit'] [u'nigerian', u'poll', u'mar', u'premedit', u'fraud'] [u'nigeria', u'edg', u'result', u'count', u'landmark'] [u'french', u'open', u'ferrero', u'defend', u'mont', u'carlo'] [u'author', u'hunt', u'grapevin', u'diseas'] [u'korea', u'correct', u'nuclear', u'statement'] [u'promot', u'visit', u'indigen', u'communiti'] [u'research', u'invit', u'biolog', u'divers'] [u'ralli', u'driver', u'bourn', u'coma'] [u'ralli', u'hero', u'bourn', u'coma', u'day'] [u'pakistan', u'investig', u'attack', u'militari', u'helicopt'] [u'palestinian', u'threaten', u'quit', u'report'] [u'parson', u'break', u'drought', u'knight'] [u'piepoli', u'win', u'aragon', u'tour', u'ullrich', u'skip'] [u'bestow', u'thousand', u'centenari', u'medal'] [u'meet', u'blair', u'annan'] [u'polic', u'begin', u'investig', u'climber', u'death'] [u'polic', u'claim', u'hindu', u'massacr', u'milit', u'shoot', u'dead'] [u'polic', u'defend', u'baxter', u'raid'] [u'polic', u'highlight', u'need', u'safeti', u'road'] [u'polic', u'hunt', u'woman', u'home', u'invas'] [u'polic', u'ponder', u'kingfish', u'outbreak'] [u'polic', u'unhappi', u'road', u'toll'] [u'pong', u'crew', u'face', u'extradit', u'hear'] [u'pont', u'gilchrist', u'slaughter', u'windi'] [u'post', u'mortem', u'hold', u'beach', u'bodi'] [u'potenti', u'leader', u'say', u'role', u'iraq'] [u'power', u'suppli', u'restor', u'eastern', u'baghdad'] [u'privat', u'cover', u'moot'] [u'public', u'flock', u'sunshin', u'coast', u'beach'] [u'public', u'urg', u'vigil', u'illeg'] [u'public', u'urg', u'help', u'solv', u'year', u'murder'] [u'public', u'urg', u'look', u'anim', u'drug'] [u'death', u'take', u'nation', u'road', u'toll'] [u'fatal', u'take', u'nation', u'road', u'toll'] [u'govt', u'plan', u'tough', u'abus', u'parent'] [u'road', u'toll', u'stand'] [u'raquet', u'win', u'easter', u'steepl', u'chase'] [u'real', u'confid', u'recaptur', u'form'] [u'record', u'wheat', u'harvest', u'predict'] [u'region', u'driver', u'awar', u'phone', u'risk', u'studi'] [u'revamp', u'byron', u'polic'] [u'richardson', u'fleme', u'merri', u'draw', u'tour', u'match'] [u'richmond', u'fend', u'late', u'kilda', u'charg'] [u'road', u'crackdown', u'help', u'south', u'east', u'safe'] [u'road', u'death', u'easter', u'break'] [u'ross', u'favourit', u'stawel', u'gift'] [u'ross', u'take', u'stawel', u'gift'] [u'russia', u'dementieva', u'win', u'career', u'singl'] [u'saddam', u'iraq', u'say', u'leader'] [u'saddam', u'remov', u'ancient', u'babylon', u'brick', u'brick'] [u'saddam', u'surrend'] [u'democrat', u'slam', u'ruddock', u'comment', u'baxter'] [u'safin', u'barcelona', u'clay'] [u'govt', u'explor', u'option', u'murray', u'dredg'] [u'paulo', u'coach', u'jeer', u'amid', u'streak'] [u'sar', u'vaccin', u'hard', u'expert'] [u'seal', u'prove', u'sashimi', u'love', u'houdini'] [u'search', u'continu', u'miss', u'angler'] [u'search', u'resum', u'miss'] [u'singapor', u'brace', u'largest', u'sar', u'quarantin'] [u'wicket', u'gough', u'want', u'england', u'return'] [u'soldier', u'charg', u'child', u'abduct'] [u'solitari', u'island', u'lighthous', u'build'] [u'south', u'accept', u'north', u'korean', u'talk', u'offer'] [u'space', u'station', u'crew', u'final', u'train'] [u'speedway', u'driver', u'die', u'central', u'west', u'crash'] [u'step', u'sar', u'measur', u'doctor', u'warn'] [u'studi', u'find', u'room', u'improv', u'heart'] [u'stuttgart', u'blow', u'chanc', u'close', u'bayern'] [u'subbi', u'legisl', u'chang', u'compani'] [u'sun', u'celtic', u'steal', u'march', u'play', u'off', u'begin'] [u'swimmer', u'die', u'green', u'glade', u'beach'] [u'syria', u'egypt', u'leader', u'discuss', u'iraq', u'pressur'] [u'talk', u'resum', u'palestinian', u'arafat'] [u'teen', u'die', u'motorcycl', u'crash'] [u'miss', u'brazil', u'ferri', u'disast'] [u'peak', u'yacht', u'race', u'continu', u'scale', u'height'] [u'year', u'cairo', u'turn', u'ancient', u'tomb'] [u'thuggeri', u'report', u'obasanjo', u'lead', u'poll'] [u'tourism', u'industri', u'urg', u'adopt', u'better', u'busi'] [u'trezeguet', u'rule', u'juve', u'barcelona'] [u'turkey', u'pledg', u'peacekeep', u'await', u'fund', u'detail'] [u'dead', u'busload', u'argentinian', u'soccer', u'fan'] [u'death', u'china', u'sar'] [u'demand', u'inquiri', u'iraqi', u'weapon', u'claim'] [u'untal', u'swede', u'prove', u'public', u'good'] [u'vinokourov', u'scoop', u'amstel', u'gold'] [u'vinokourov', u'win', u'amstel', u'gold', u'race'] [u'visitor', u'survey', u'highlight', u'concern'] [u'iraq', u'lend', u'extra', u'signific', u'anzac'] [u'warn', u'namesak', u'toad', u'alli', u'outclass'] [u'warrior', u'hold', u'cowboy'] [u'west', u'ham', u'cole', u'face', u'music'] [u'whatmor', u'brace', u'enorm', u'bangladesh', u'challeng'] [u'whatmor', u'name', u'bangladesh', u'coach'] [u'whatmor', u'name', u'bangladesh', u'coach'] [u'plan', u'second', u'sar', u'confer', u'june'] [u'team', u'shanghai', u'death', u'beij'] [u'william', u'prais', u'emot', u'ralf'] [u'windi', u'start', u'mammoth', u'chase'] [u'wrangl', u'erupt', u'highway', u'bypass'] [u'wynyard', u'leak', u'forc', u'evacu'] [u'ming', u'play', u'asian', u'championship', u'china'] [u'milit', u'kill', u'kashmir', u'clash'] [u'academ', u'cast', u'doubt', u'park', u'mine'] [u'govt', u'accus', u'wast', u'review', u'studi'] [u'investig', u'dockland', u'entri', u'problem'] [u'darter', u'netbal', u'honour'] [u'play', u'delay'] [u'challeng', u'intel', u'chip'] [u'race', u'like', u'schumach'] [u'argentin', u'protest', u'torch', u'car', u'evict'] [u'arm', u'bandit', u'hit', u'fruit', u'shop'] [u'art', u'road', u'govt', u'fund'] [u'asylum', u'boat', u'head', u'aust', u'shore'] [u'asylum', u'boat', u'say', u'head', u'australia'] [u'australia', u'aim', u'quick', u'run'] [u'australia', u'win', u'underwat', u'hockey', u'titl'] [u'barca', u'european', u'threat', u'juventus'] [u'bashir', u'anxious', u'face', u'trial'] [u'beckham', u'want', u'real', u'rule'] [u'berrigan', u'wait', u'charg', u'decis'] [u'easter', u'weekend', u'bendigo'] [u'serv', u'help', u'mathia', u'gold'] [u'blue', u'erupt', u'toilet', u'plan'] [u'brack', u'telstra', u'save', u'job'] [u'british', u'wife', u'prais', u'effort', u'coalit'] [u'busi', u'urg', u'build', u'north', u'east', u'asian', u'trade'] [u'parliament', u'mildura'] [u'cancel', u'loan', u'help', u'boost', u'cook', u'shire', u'water'] [u'canley', u'vale', u'club', u'hold'] [u'carl', u'lewi', u'arrest', u'suspect', u'drink', u'drive'] [u'carr', u'deni', u'anti', u'smoke', u'law', u'burn', u'club', u'profit'] [u'cathol', u'communiti', u'rememb', u'priest', u'fond'] [u'central', u'driver', u'wors'] [u'chaplain', u'send', u'consol', u'town', u'drown'] [u'chechen', u'offici', u'confirm', u'civilian', u'kill'] [u'chelsea', u'hammer', u'everton', u'champ', u'leagu', u'race'] [u'children', u'hold', u'camp', u'xray', u'admit'] [u'china', u'scrambl', u'stem', u'sar', u'tide'] [u'chines', u'nation', u'face', u'melbourn', u'court', u'heroin'] [u'probe', u'cape', u'york', u'polic', u'investig'] [u'commiss', u'dig', u'extra', u'murray', u'fund'] [u'compani', u'deni', u'telstra', u'contract', u'sweatshop'] [u'convict', u'quiz', u'cheat', u'plan', u'appeal'] [u'council', u'fast', u'track', u'develop', u'plan'] [u'council', u'oppos', u'anim', u'cruelti', u'move'] [u'council', u'probe', u'water', u'option'] [u'council', u'staff', u'rise'] [u'council', u'debat', u'plan'] [u'credit', u'card', u'replac', u'medicar', u'card', u'oppn'] [u'curs', u'treasur', u'sing', u'budget', u'blue'] [u'date', u'summit', u'public', u'drunken'] [u'democrat', u'threaten', u'block', u'threshold', u'hike'] [u'dingo', u'day', u'number'] [u'dolphin', u'death', u'probe', u'continu'] [u'downer', u'sceptic', u'north', u'korea', u'talk'] [u'drought', u'delay', u'bilbi', u'program'] [u'easter', u'boom', u'time', u'south', u'east'] [u'audit', u'warn', u'extinct', u'crisi'] [u'elect', u'delay', u'give', u'time', u'consid', u'merger'] [u'extradit', u'underway', u'alleg', u'drug', u'runner'] [u'farmer', u'give', u'wind', u'eros', u'warn'] [u'farmer', u'confid', u'good', u'rain'] [u'father', u'anger', u'ablett', u'medal'] [u'father', u'disbelief', u'ablett', u'medal'] [u'fear', u'global', u'event', u'spark', u'tourism'] [u'kill', u'attack', u'obasanjo', u'daughter'] [u'dead', u'wound', u'kashmir', u'blast'] [u'garner', u'hold', u'talk', u'kurdish', u'leader'] [u'garner', u'tour', u'iraq', u'ahead', u'mosul', u'talk'] [u'gigg', u'say', u'manchest', u'dazzl', u'real', u'star'] [u'gladiat', u'rome', u'birthday', u'suit'] [u'govern', u'urg', u'address', u'petrol', u'sniff'] [u'govt', u'fund', u'trip', u'home', u'aborigin', u'itiner'] [u'govt', u'opt', u'prosecut', u'greenpeac'] [u'greenspan', u'undergo', u'prostat', u'surgeri'] [u'hamil', u'play', u'umpir', u'collis'] [u'harbi', u'william', u'contempl', u'final', u'season'] [u'highway', u'close', u'semi', u'crash'] [u'honda', u'name', u'fukui', u'presid'] [u'hope', u'continu', u'pest', u'erad', u'scheme'] [u'hop', u'rainforest', u'skywalk', u'boost', u'tourism'] [u'know', u'say', u'centurion', u'ganga'] [u'india', u'south', u'africa', u'share', u'seri'] [u'india', u'softwar', u'industri', u'face', u'woe'] [u'injur', u'alvey', u'stay', u'bulldog'] [u'injuri', u'bulldog', u'port', u'adelaid'] [u'inquiri', u'open', u'mine', u'death'] [u'intern', u'passeng', u'sar'] [u'investig', u'begin', u'fatal', u'accid'] [u'iraqi', u'shiit', u'stage', u'anti', u'ralli'] [u'italian', u'pride', u'stake', u'juve', u'inter'] [u'japan', u'thailand', u'stretch', u'distanc'] [u'kalgoorli', u'boost', u'tie', u'longreach', u'alic'] [u'kenyan', u'domin', u'boston'] [u'call', u'patienc', u'attack', u'falter'] [u'macgil', u'celebr', u'wicket'] [u'appear', u'court', u'alleg', u'drug', u'smuggl'] [u'die', u'trap', u'forklift'] [u'die', u'arapil', u'fall'] [u'guilti', u'girl', u'death'] [u'murder', u'charg', u'remand', u'custodi'] [u'man', u'bodi', u'recov', u'climb', u'area'] [u'shoot', u'dead', u'deer', u'hunt', u'accid'] [u'face', u'court', u'charg', u'polic', u'threat'] [u'market', u'rise', u'easter', u'break'] [u'mccarthi', u'warn', u'derbi', u'disast'] [u'mckay', u'chanc', u'athen', u'row', u'squad'] [u'mclaren', u'wait', u'june', u'ferrari', u'turn', u'corner'] [u'meet', u'address', u'youth', u'crime'] [u'mental', u'assess', u'like', u'monash', u'shooter'] [u'microsoft', u'eas', u'licens', u'term', u'antitrust'] [u'million', u'strong', u'crowd', u'cheer', u'ullrich', u'win', u'return'] [u'miner', u'releas', u'oper', u'detail'] [u'mix', u'respons', u'coastal', u'plan', u'polici'] [u'accid', u'involv', u'roo', u'nrma'] [u'fear', u'dead', u'bangladesh', u'storm'] [u'south', u'coast', u'driver', u'steer', u'clear', u'troubl'] [u'seek', u'flag', u'bipartisan', u'support'] [u'want', u'highway', u'strategi', u'rethink'] [u'gambier', u'airport', u'number'] [u'look'] [u'plan', u'appeal', u'fairer'] [u'confirm', u'refuge', u'boat', u'aust', u'bind', u'downer'] [u'decis', u'speed', u'limit', u'reduct'] [u'driver', u'risk', u'lose', u'doubl', u'point', u'week'] [u'death', u'take', u'easter', u'road', u'toll'] [u'govt', u'urg', u'guarante', u'servic'] [u'govt', u'address', u'youth', u'custodi'] [u'send', u'landmin', u'clearanc', u'expert', u'iraq'] [u'reduct', u'stop', u'price', u'slide', u'expert'] [u'olymp', u'champion', u'hire', u'east', u'german', u'drug'] [u'pakistan', u'say', u'chemic', u'inspect', u'routin'] [u'passeng', u'scrambl', u'histor', u'adelaid'] [u'penalti', u'hear', u'begin', u'fatal', u'burn'] [u'announc', u'futur', u'soon'] [u'polic', u'continu', u'home', u'invas', u'probe'] [u'polic', u'crackdown', u'help', u'region', u'road', u'safe'] [u'polic', u'happi', u'boati', u'easter', u'behaviour'] [u'polic', u'happi', u'easter', u'driver'] [u'polic', u'happi', u'easter', u'driver'] [u'polic', u'investig', u'brisban', u'tripl', u'murder'] [u'polic', u'prais', u'easter', u'driver'] [u'polic', u'prais', u'easter', u'driver'] [u'polic', u'probe', u'ashford', u'brawl'] [u'polic', u'remain', u'miss', u'british', u'tourist'] [u'polic', u'seek', u'help', u'catch', u'roadhous', u'arm', u'bandit'] [u'polic', u'probe', u'rooney', u'spit', u'claim'] [u'pong', u'crew', u'extradit'] [u'popular', u'road', u'reopen', u'amidst', u'uproar'] [u'professor', u'trap', u'easter', u'pile', u'book'] [u'push', u'commonwealth', u'rail', u'plan'] [u'rain', u'bring', u'sorghum', u'fungal', u'diseas'] [u'rain', u'trap', u'holiday', u'hiker', u'hinchinbrook'] [u'record', u'slow', u'sail', u'peak', u'race'] [u'resid', u'report', u'shock', u'time'] [u'resid', u'protest', u'abattoir', u'plan'] [u'resort', u'owner', u'air', u'fear', u'plan', u'pastor'] [u'reward', u'offer', u'murder', u'mysteri'] [u'richardson', u'mend', u'cheekbon', u'fractur'] [u'robson', u'set', u'euro', u'target', u'newcastl'] [u'roddick', u'cruis', u'houston', u'event'] [u'roeder', u'collaps', u'west'] [u'rough', u'sea', u'delay', u'search', u'lose', u'fisherman'] [u'rower', u'keep', u'record', u'hop', u'afloat'] [u'row', u'championship', u'lake', u'barrington'] [u'branch', u'face', u'anzac', u'fund', u'shortfal'] [u'ruddock', u'assur', u'safeti', u'boat', u'peopl'] [u'saddam', u'chief', u'tri', u'arrang', u'meet'] [u'saddam', u'iraq', u'opposit', u'leader'] [u'sar', u'outbreak', u'risk', u'declin', u'doctor'] [u'scientist', u'claim', u'malaria', u'treatment', u'breakthrough'] [u'searcher', u'miss', u'man', u'bodi'] [u'sheffield', u'unit', u'wolv', u'head', u'play', u'off'] [u'shiit', u'march', u'karbala'] [u'shire', u'fear', u'bumpi', u'fund', u'road', u'ahead'] [u'arrest', u'graffiti', u'attack'] [u'player', u'face', u'judiciari'] [u'snake', u'bite', u'put', u'girl', u'hospit'] [u'snowi', u'easter', u'tourism', u'boom'] [u'soorley', u'urg', u'stick', u'crean'] [u'steeplechas', u'draw', u'crowd'] [u'stem', u'cell', u'scientist', u'threaten', u'tooth', u'fairi'] [u'storm', u'sink', u'ferri', u'bangladesh', u'kill'] [u'studi', u'confirm', u'valu', u'sunscreen'] [u'suharto', u'half', u'brother', u'jail', u'corrupt'] [u'super', u'fund', u'shortfal', u'cost', u'ratepay'] [u'surgeon', u'check', u'greenspan', u'prostat'] [u'surgeri', u'rule', u'raul', u'unit', u'clash'] [u'surrey', u'stake', u'england', u'claim'] [u'survey', u'reveal', u'lead', u'foot', u'driver'] [u'sydney', u'face', u'water', u'restrict', u'despit', u'rain'] [u'doctor', u'reform', u'wont', u'save', u'bulk', u'bill'] [u'tasmanian', u'tourism', u'boost', u'strong', u'easter', u'period'] [u'think', u'tank', u'island', u'sale'] [u'thousand', u'attend', u'aussi', u'rule', u'carniv'] [u'chines', u'north', u'korean', u'offici', u'meet', u'ahead'] [u'trap', u'resid', u'unhurt', u'unit'] [u'troop', u'deserv', u'welcom'] [u'briton', u'arrest', u'thailand'] [u'union', u'air', u'bakeri', u'closur', u'concern'] [u'offer', u'pilbara', u'cours'] [u'confid', u'find', u'iraqi', u'leader'] [u'korea', u'prepar', u'nuclear', u'talk'] [u'promis', u'investig', u'danger', u'cluster', u'bomb'] [u'see', u'post', u'threat', u'terrorist', u'group'] [u'valencia', u'coach', u'slam', u'player', u'ahead', u'inter', u'clash'] [u'vettori', u'bond', u'strike', u'ahead', u'lanka', u'test', u'seri'] [u'visitor', u'urg', u'extinguish', u'fire', u'proper'] [u'wast', u'firm', u'plan', u'leeton', u'compost', u'ventur'] [u'waterhous', u'clear', u'race'] [u'weed', u'spark', u'concern'] [u'western', u'tourism', u'push'] [u'wheat', u'farmer', u'consid', u'record', u'harvest', u'potenti'] [u'wide', u'driver', u'fair', u'behav'] [u'woman', u'save', u'hunter', u'hous'] [u'woman', u'drown', u'consid', u'suspici'] [u'wooli', u'director', u'leav', u'board'] [u'wooli', u'share', u'drop', u'resign'] [u'woorabinda', u'school', u'probe', u'continu'] [u'face', u'tribun'] [u'zimbabw', u'mugab', u'hint', u'retir'] [u'announc', u'contract', u'domest', u'schedul'] [u'airlin', u'face', u'long', u'term', u'plan', u'hurdl'] [u'alleg', u'drug', u'smuggler', u'arriv', u'melbourn'] [u'alleg', u'rape', u'victim', u'lose', u'faith', u'polic'] [u'angri', u'fan', u'halt', u'atalanta', u'train', u'session'] [u'asian', u'marathon', u'postpon', u'sar'] [u'asian', u'minist', u'crisi', u'talk', u'sar'] [u'asylum', u'boat', u'indonesia', u'respons', u'govt'] [u'australian', u'cyclist', u'evan', u'week'] [u'australian', u'economi', u'wood'] [u'australian', u'race', u'museum', u'open', u'melbourn'] [u'author', u'fear', u'miss', u'taiwanes', u'fishermen'] [u'basic', u'approach', u'appli', u'rebuild', u'iraq'] [u'bangladesh', u'bide', u'time', u'south', u'africa'] [u'bashir', u'trial', u'begin', u'polic', u'arrest', u'alleg'] [u'beat', u'lanka', u'greatest', u'challeng', u'fleme'] [u'beatti', u'say', u'assist'] [u'beatti', u'urg', u'labor', u'quit', u'charact', u'assassin'] [u'beazley', u'leadership', u'comment', u'clumsi', u'crean'] [u'beazley', u'stand', u'leadership', u'comment'] [u'berrigan', u'escap', u'punish'] [u'berrigan', u'escap', u'punish', u'despit', u'guilti', u'plea'] [u'bhoy', u'look', u'play', u'like', u'uefa'] [u'offer', u'hamilton'] [u'boati', u'prepar', u'ramp', u'activ'] [u'brack', u'reject', u'feder', u'health', u'care', u'offer'] [u'brazil', u'year', u'diego', u'squad'] [u'breakaway', u'union', u'back', u'hewitt', u'fight'] [u'brennan', u'nomin', u'rise', u'star', u'award'] [u'brisban', u'hous', u'remain', u'guard', u'bodi'] [u'british', u'deni', u'saddam', u'payrol'] [u'hardi', u'plead', u'guilti', u'charg'] [u'brown', u'hope', u'blacklock', u'return'] [u'buck', u'playoff', u'seri', u'net'] [u'burglari', u'arson', u'link', u'polic'] [u'bypass', u'speed', u'restrict', u'lift'] [u'campaign', u'kick', u'nauru', u'elect'] [u'candid', u'air', u'meal', u'wheel', u'concern'] [u'citizen', u'reward', u'communiti', u'medal'] [u'clarif'] [u'club', u'work', u'address', u'underag', u'drink'] [u'colleg', u'board', u'focus', u'servic'] [u'concern', u'rais', u'park', u'parliamentari'] [u'cost', u'live', u'rise'] [u'council', u'adopt', u'flood', u'plan'] [u'councillor', u'suggest', u'flag', u'competit'] [u'council', u'poki', u'stand', u'immor', u'say', u'anti', u'gambl'] [u'council', u'reject', u'fli', u'agreement'] [u'council', u'reject', u'speed', u'recommend'] [u'council', u'feder', u'govt', u'baxter', u'protest'] [u'court', u'reject', u'killer', u'appeal'] [u'crean', u'overreact', u'beazley'] [u'cwealth', u'urg', u'come', u'clean', u'drug', u'bust'] [u'cypriot', u'begin', u'cross', u'divid', u'line'] [u'dinosaur', u'centr', u'reopen', u'avert', u'industri', u'damag'] [u'docker', u'fin', u'breach', u'player', u'rule'] [u'doctor', u'meet', u'discuss', u'shortag'] [u'downer', u'clam', u'turkey', u'terror', u'threat'] [u'downer', u'tightlip', u'anzac', u'terror', u'threat'] [u'driver', u'tag', u'toll', u'road'] [u'drug', u'launch', u'winter', u'appeal'] [u'endang', u'speci', u'need', u'protect', u'govt'] [u'environ', u'stress'] [u'essendon', u'seek', u'clarif', u'runner'] [u'essendon', u'salari', u'investig'] [u'fan', u'offenc', u'creed', u'brand', u'rock'] [u'faster', u'sound', u'parachut', u'jump', u'delay'] [u'fiji', u'skipper', u'seven'] [u'film', u'industri', u'stalwart', u'pass', u'away'] [u'face', u'court', u'drug', u'charg'] [u'task', u'forc', u'test', u'poison', u'bait'] [u'gene', u'discoveri', u'explain', u'cancer', u'racism'] [u'gladston', u'seek', u'fund'] [u'gold', u'coast', u'properti', u'sector'] [u'govt', u'call', u'view', u'stromlo'] [u'govt', u'crisi', u'fund'] [u'gungahlin', u'resid', u'telco', u'fight', u'govt'] [u'hammer', u'thrower', u'deni', u'order', u'ban', u'drug'] [u'honda', u'mourn', u'heartbreak', u'loss', u'kato'] [u'hoon', u'say', u'saddam', u'like', u'iraq'] [u'hospit', u'gear', u'sar', u'threat'] [u'hous', u'trust', u'consid', u'sell', u'home'] [u'iemma', u'say', u'health', u'packag', u'doesnt'] [u'implant', u'fight', u'acid', u'reflux', u'approv'] [u'indigen', u'leader', u'meet', u'homeless'] [u'indonesian', u'skipper', u'appear', u'court'] [u'inflat', u'push', u'reserv', u'target'] [u'insur', u'cloud', u'hang', u'anzac', u'activ'] [u'inter', u'scrape', u'semi', u'away', u'goal', u'rule'] [u'italian', u'delight', u'juve', u'inter', u'reach'] [u'kennedi', u'expect', u'return', u'tiger', u'clash'] [u'labor', u'say', u'parti', u'game'] [u'lafarm', u'benefit', u'train', u'subsidi'] [u'landfil', u'strict', u'licens', u'condit'] [u'leadership', u'barney', u'caus', u'elect', u'disast'] [u'lib', u'highlight', u'rise', u'public', u'hous', u'transfer'] [u'lib', u'wont', u'endors', u'yuryevich'] [u'live', u'murray', u'decis', u'delay'] [u'malaysian', u'remand', u'lorn', u'drug', u'haul'] [u'await', u'sentenc', u'teen', u'death'] [u'die', u'forklift', u'mishap'] [u'face', u'wollongong', u'court', u'murder', u'charg'] [u'readi', u'biggest', u'challeng', u'kean'] [u'mayor', u'defend', u'poki', u'shutdown', u'limit'] [u'meet', u'discuss', u'king', u'brother', u'worker'] [u'memori', u'moot', u'rememb', u'drown', u'victim'] [u'mendi', u'claim', u'liverpool', u'keen', u'sign'] [u'miner', u'sand', u'plan', u'move', u'ahead'] [u'mine', u'death', u'shake', u'west', u'coast', u'communiti'] [u'morley', u'timmin', u'doubt', u'rooster', u'dragon'] [u'moul', u'call'] [u'rise', u'state', u'hand', u'say', u'brumbi'] [u'speak', u'forc', u'council', u'merger'] [u'musharraf', u'call', u'role', u'post', u'saddam', u'iraq'] [u'olymp', u'champion', u'mcdyess', u'undergo', u'surgeri'] [u'caledonia', u'dengu', u'outbreak', u'claim', u'live'] [u'news', u'corp', u'bank', u'boost', u'ord'] [u'charg', u'rooney', u'spit', u'claim'] [u'rain', u'relief', u'farmer'] [u'govt', u'urg', u'council', u'merger', u'guarante'] [u'wors', u'health', u'deal', u'govt'] [u'govt', u'consid', u'itiner', u'servic'] [u'opposit', u'twin', u'social', u'studi'] [u'pagan', u'expect', u'hostil', u'recept'] [u'pakistan', u'appoint', u'raja', u'board', u'chief'] [u'paradorn', u'slip', u'heavi', u'barcelona', u'defeat'] [u'parent', u'slay', u'sibl', u'return', u'home'] [u'past', u'champion', u'irwin', u'kite', u'watson', u'open'] [u'perth', u'spill', u'clean'] [u'plane', u'respons', u'tremor'] [u'rule', u'earli', u'elect'] [u'unveil', u'health', u'fund', u'plan', u'today'] [u'polic', u'arrest', u'bashir', u'alleg', u'replac'] [u'polic', u'minist', u'offer', u'assur', u'alcohol', u'woe'] [u'polic', u'minist', u'speak', u'roam', u'youth'] [u'polic', u'climb', u'victim'] [u'polic', u'promis', u'crackdown', u'unruli', u'youth'] [u'polic', u'union', u'target', u'gun'] [u'probe', u'continu', u'skydiv', u'death'] [u'profit', u'surg', u'ebay'] [u'public', u'ask', u'judg', u'abattoir', u'plan'] [u'rare', u'quoll', u'spot', u'excit', u'ranger'] [u'ratepay', u'urg', u'understand', u'rise', u'cost'] [u'real', u'madrid', u'raul', u'month'] [u'relat', u'indonesia', u'fine', u'govt'] [u'reservoir', u'generat', u'object'] [u'resid', u'seek', u'talk', u'high', u'rise', u'plan'] [u'roo', u'suggest', u'doubl', u'header'] [u'russia', u'say', u'korean', u'standoff', u'step', u'disast'] [u'safin', u'struggl', u'spanish', u'qualifi'] [u'govt', u'servic', u'effort'] [u'lifesav', u'face', u'fund', u'crisi'] [u'sar', u'forc', u'servic'] [u'sar', u'forc', u'arafura', u'game', u'cancel'] [u'sar', u'forc', u'china', u'rural', u'tour'] [u'sar', u'impact', u'start', u'affect', u'fruit', u'grower'] [u'sar', u'threat', u'close', u'beij', u'school'] [u'scienc', u'mark', u'anniversari', u'breakthrough'] [u'search', u'continu', u'miss', u'miner'] [u'second', u'suspect', u'sar', u'case', u'adelaid'] [u'self', u'indulg', u'beazley', u'destabilis', u'parti', u'crean'] [u'serbia', u'lift', u'state', u'emerg', u'djindjic'] [u'shark', u'bite', u'unregist', u'player', u'fine'] [u'sheldon', u'get', u'art', u'tourism', u'portfolio'] [u'shire', u'plan', u'industri', u'estat'] [u'singapor', u'clamp', u'sar'] [u'singapor', u'introduc', u'sar', u'measur'] [u'skull', u'confirm', u'miss', u'tourist'] [u'smith', u'face', u'uncertain', u'futur'] [u'spanish', u'deputi', u'join', u'quixot', u'readathon'] [u'lanka', u'recal', u'veteran', u'kalu', u'kiwi', u'test'] [u'state', u'reject', u'health', u'fund', u'offer'] [u'storm', u'kill', u'northeast', u'india', u'injur'] [u'street', u'kid', u'issu', u'easili', u'solv', u'work'] [u'studi', u'consid', u'artifici', u'surf', u'reef'] [u'studi', u'warn', u'power', u'quak', u'francisco'] [u'subtl', u'symptom', u'hinder', u'dengu', u'contain'] [u'support', u'call'] [u'support', u'salari', u'structur'] [u'appear', u'court', u'heroin', u'seizur'] [u'tillakaratn', u'retir', u'dayer'] [u'toowoomba', u'host', u'red', u'match'] [u'seed', u'agassi', u'overpow', u'krajan', u'houston'] [u'tourism', u'industri', u'prepar', u'convent', u'downturn'] [u'tourist', u'influx', u'boost', u'break', u'hill'] [u'tourist', u'influx', u'offer', u'spin', u'off'] [u'travel', u'snap', u'final', u'concord', u'ticket'] [u'trilater', u'nuclear', u'talk', u'begin', u'beij', u'today'] [u'truck', u'movement', u'restrict', u'esplanad'] [u'back', u'remov', u'sportsground', u'nigger', u'sign'] [u'canadian', u'expert', u'team', u'fight', u'sar'] [u'conserv', u'lash', u'state', u'dept'] [u'continu', u'weapon', u'inspect'] [u'govt', u'urg', u'revamp', u'rail', u'line'] [u'rise', u'despit', u'spend', u'cut'] [u'video', u'footag', u'campbel', u'appeal'] [u'viduka', u'doubl', u'rescu', u'leed'] [u'govt', u'buy', u'oldest', u'shaft'] [u'govt', u'issu', u'cash', u'public', u'servant', u'idea'] [u'govt', u'promis', u'power', u'woe'] [u'waratah', u'deni', u'blacklock', u'leagu', u'rumour'] [u'waratah', u'prepar', u'releas', u'blacklock'] [u'warn', u'consid', u'return'] [u'snub', u'health', u'fund', u'deal'] [u'watson', u'recoveri', u'track'] [u'west', u'indi', u'coach', u'defend', u'bowler'] [u'welcom', u'tulli', u'gumboot'] [u'warn', u'travel', u'stay', u'away', u'beij'] [u'widen', u'sar', u'travel', u'warn'] [u'wind', u'power', u'prove', u'blow'] [u'woman', u'jail', u'facto', u'manslaught'] [u'worker', u'compo', u'insur', u'cost', u'threaten'] [u'young', u'women', u'alert', u'tuggeranong', u'polic'] [u'clear', u'tribun'] [u'year', u'lpga', u'return'] [u'board', u'appoint', u'process', u'overhaul'] [u'absent', u'mind', u'bank', u'robber', u'overpow', u'lose'] [u'treasur', u'admit', u'larg', u'cash', u'surplus'] [u'airlin', u'focus', u'japanes', u'market'] [u'alic', u'get', u'school', u'attend', u'offic'] [u'leadership', u'bloodi', u'mess'] [u'write', u'letter', u'reassur', u'sharehold'] [u'andretti', u'crash', u'return', u'indianapoli', u'motor'] [u'anti', u'graft', u'priest', u'suspect', u'scam'] [u'anti', u'protest', u'urg', u'disrupt', u'anzac'] [u'profit', u'reason'] [u'vow', u'better', u'profit'] [u'asylum', u'seeker', u'interview', u'agre', u'return'] [u'audit', u'highlight', u'western', u'victoria', u'environment'] [u'australia', u'gear'] [u'avellino', u'clear', u'club', u'season'] [u'bakeri', u'close', u'door'] [u'bartlett', u'question', u'iraq', u'north', u'korea', u'link'] [u'battl', u'cod', u'fiercest', u'world', u'barassi'] [u'beij', u'quarantin', u'hospit'] [u'bell', u'beach', u'surf', u'competit', u'move'] [u'crowd', u'expect', u'anzac'] [u'blow', u'branch'] [u'bomber', u'clash', u'test', u'confid', u'malthous'] [u'bomber', u'lead', u'pie', u'final', u'term'] [u'bomb', u'suspect', u'fli', u'bali'] [u'british', u'press', u'hail', u'real', u'star'] [u'brumbi', u'hous', u'pain', u'examin'] [u'brumbi', u'pain', u'examin'] [u'canberra', u'famili', u'sue', u'govt', u'manag'] [u'cancel', u'arafura', u'sport', u'press', u'competit'] [u'cart', u'race', u'restor', u'road', u'america', u'andretti'] [u'chanc', u'applaud', u'farmer', u'strategi'] [u'cliff', u'death', u'probe', u'begin'] [u'club', u'lament', u'race', u'loss'] [u'communiti', u'address', u'antisoci', u'behaviour'] [u'consum', u'remind', u'anzac', u'closur'] [u'coron', u'critic', u'detent', u'centr', u'care'] [u'council', u'doesnt', u'elector', u'abolish'] [u'council', u'rule', u'rate', u'rise', u'cover', u'super'] [u'council', u'seek', u'consult', u'immigr'] [u'council', u'rule', u'subdivis'] [u'council', u'consid', u'budget', u'plan'] [u'court', u'convict', u'year', u'woman', u'attack'] [u'court', u'deni', u'appeal', u'seal', u'rock', u'compo'] [u'court', u'order', u'govt', u'million', u'compo'] [u'crawford', u'choos', u'boomer'] [u'cruis', u'ship', u'crew', u'give', u'sar', u'clear'] [u'csiro', u'seek', u'approv', u'import', u'sar'] [u'cwealth', u'say', u'favour', u'iraq', u'contract'] [u'denman', u'face', u'court', u'assault', u'charg'] [u'dickson', u'estim'] [u'disappoint', u'bakeri', u'closur', u'decis'] [u'dnrm', u'urg', u'rethink', u'plan'] [u'doctor', u'remedi', u'urban', u'shortag'] [u'dongara', u'seek', u'boost', u'doctor', u'number'] [u'appeal', u'harsher', u'espionag', u'sentenc'] [u'dragon', u'injuri', u'cloud', u'rooster', u'clash'] [u'earn', u'creat', u'upbeat', u'nasdaq', u'mood'] [u'economist', u'doubt', u'rate', u'rise'] [u'embassi', u'ask', u'anzac', u'pilgrim', u'check'] [u'environment', u'campaign', u'plead', u'guilti', u'properti'] [u'defend', u'hardi', u'decis'] [u'order', u'target', u'club', u'clean', u'site'] [u'essendon', u'want', u'runner', u'rule', u'overhaul'] [u'fear', u'armi', u'worm', u'threaten', u'winter', u'crop'] [u'feder', u'approach', u'health', u'underhand', u'edmond'] [u'feder', u'court', u'halt', u'texa', u'execut'] [u'feder', u'govt', u'rail', u'line', u'support'] [u'ferguson', u'defiant', u'beckham', u'real', u'thriller'] [u'fewer', u'student', u'graduat', u'mine', u'cours'] [u'fish', u'farm', u'plan', u'exmouth'] [u'flight', u'decis', u'wont', u'affect', u'gold', u'coast'] [u'freight', u'compani', u'pleas', u'bridg', u'reopen'] [u'freight', u'request', u'compo', u'bridg', u'closur'] [u'fruit', u'outbreak', u'prove', u'cost'] [u'gallipoli', u'secur', u'boost', u'ahead', u'commemor'] [u'gallop', u'dismiss', u'critic', u'northbridg', u'curfew'] [u'garner', u'talk', u'baghdad', u'leader', u'soldier'] [u'goldfield', u'aborigin', u'urg', u'medicar', u'card'] [u'govt', u'consid', u'renam', u'nigger', u'stand'] [u'govt', u'place', u'toll', u'bridg'] [u'cast', u'doubt', u'effort', u'bulk', u'bill'] [u'greenspan', u'say', u'term'] [u'mishap', u'spark', u'polic', u'warn'] [u'hamilton', u'chang', u'hand'] [u'harri', u'substitut', u'dawn', u'bugl'] [u'heat', u'exchang', u'fraser', u'murder', u'trial'] [u'high', u'demand', u'wheatbelt', u'health', u'worker'] [u'hospit', u'begin', u'sar', u'plan'] [u'hospit', u'termin', u'despit', u'feder'] [u'injuri', u'time', u'winner', u'tomasson', u'set', u'milan'] [u'iverson', u'help', u'philadelphia', u'lead'] [u'japanes', u'prosecutor', u'demand', u'death', u'leader'] [u'juri', u'deliv', u'verdict', u'winni', u'mandela'] [u'kean', u'rue', u'real', u'lesson'] [u'korean', u'veteran', u'reunit', u'anzac'] [u'labor', u'leadership', u'resolv', u'rudd'] [u'labor', u'standoff', u'continu'] [u'labor', u'beazley', u'poll'] [u'lake', u'barrington', u'host', u'row', u'titl'] [u'loss', u'drive', u'nrma', u'price'] [u'mackay', u'teenag', u'fight', u'life', u'crash'] [u'malthous', u'want', u'clarif', u'runner'] [u'charg', u'death', u'teenag'] [u'face', u'charg', u'get', u'bail'] [u'jail', u'onlin', u'credit', u'card', u'fraud'] [u'market', u'bare', u'budg', u'work', u'week', u'end'] [u'maryborough', u'campaign', u'draw'] [u'mayor', u'defend', u'farm', u'biodivers', u'audit'] [u'mayor', u'fear', u'marin', u'farm'] [u'mayor', u'wont', u'specul', u'job'] [u'medal', u'recognis', u'resid', u'effort'] [u'melbourn', u'face', u'water', u'restrict'] [u'memori', u'turn', u'tent', u'embassi', u'away', u'anzac'] [u'remand', u'alleg', u'drug', u'smuggl'] [u'middl', u'east', u'road', u'step', u'closer'] [u'world', u'ticket', u'sale', u'august'] [u'moscow', u'host', u'septemb', u'athlet', u'meet'] [u'oyster', u'harvest', u'ban', u'lift'] [u'nativ', u'titl', u'claim', u'cover', u'pastor', u'station'] [u'korea', u'warn', u'moment'] [u'consult', u'health', u'fund', u'crean'] [u'lethal', u'landmin', u'stoke', u'humanitarian', u'fear'] [u'threat', u'dingo', u'wildlif', u'servic'] [u'premier', u'call', u'fresh', u'approach'] [u'nurs', u'discuss', u'phase', u'industri', u'action'] [u'oppos', u'iceland', u'enter', u'whale', u'bodi'] [u'oarsom', u'foursom', u'member', u'lose', u'row', u'champ'] [u'occhi', u'dismiss', u'slater'] [u'price', u'slump'] [u'olymp', u'champ', u'meet', u'world', u'finest', u'penn', u'relay'] [u'organis', u'fear', u'sar', u'impact', u'magic', u'million'] [u'pacif', u'island', u'rugbi', u'allianc', u'meet'] [u'peninsula', u'crash', u'kill'] [u'perilya', u'await', u'insur', u'decis'] [u'perth', u'releas', u'thai', u'prison'] [u'defend', u'health', u'fund', u'plan'] [u'concern', u'asylum', u'seeker', u'boat'] [u'polic', u'criticis', u'failur', u'miss'] [u'polic', u'bodi', u'believ', u'angler'] [u'polic', u'hunt', u'clue', u'surround', u'tripl', u'murder'] [u'policeman', u'charg', u'assault', u'wife'] [u'polic', u'seek', u'wit', u'fatal', u'accid'] [u'polic', u'urg', u'protest', u'respect', u'anzac'] [u'pong', u'crew', u'court', u'appear'] [u'port', u'releas', u'communiti', u'survey', u'result'] [u'pressur', u'take', u'toll', u'manag'] [u'probe', u'continu', u'lake', u'sewag', u'spill'] [u'psychologist', u'surpris', u'detail', u'clark', u'case'] [u'push', u'navi', u'ship', u'wagga'] [u'close', u'cattleyard'] [u'question', u'rais', u'tender', u'process', u'ental'] [u'quokka', u'killer', u'sentenc', u'work', u'anim', u'hospit'] [u'raaf', u'conting', u'leav', u'iraq'] [u'raaf', u'farewel', u'personnel', u'bind', u'baghdad'] [u'ralli', u'protest', u'store', u'closur'] [u'red', u'lift', u'game', u'aust', u'squad', u'slack'] [u'report', u'highlight', u'glenelg', u'shire', u'wellb'] [u'ronaldo', u'trick', u'sink', u'unit'] [u'erupt'] [u'urg', u'anti', u'protest'] [u'russian', u'spacecraft', u'prepar', u'mission'] [u'farmer', u'angri', u'leas', u'chang'] [u'sar', u'impact', u'provid', u'north', u'busi', u'benefit'] [u'sar', u'suspect', u'remain', u'hospit'] [u'search', u'go', u'miss', u'miner'] [u'search', u'clue', u'tripl', u'murder'] [u'sheed', u'welcom', u'player', u'payment', u'investig'] [u'ship', u'lay', u'fibr', u'optic', u'cabl', u'visit', u'burni'] [u'skaif', u'team', u'risk', u'dump'] [u'resid', u'heed', u'dengu', u'warn'] [u'strom', u'renew', u'bypass', u'call'] [u'stuart', u'extend', u'contract'] [u'student', u'time', u'school', u'blaze'] [u'suicid', u'blast', u'rock', u'israel', u'train', u'station'] [u'support', u'control', u'burn', u'plan'] [u'swan', u'chanc', u'collingwood', u'anzac', u'debut'] [u'talk', u'begin', u'hospit', u'servic'] [u'tasmania', u'consid', u'increas', u'school', u'leav'] [u'teenag', u'jail', u'assault'] [u'tent', u'citi', u'highlight', u'accommod', u'woe'] [u'tent', u'embassi', u'member', u'threaten'] [u'thousand', u'expect', u'turn', u'anzac'] [u'thunderbird', u'coach', u'livid', u'avellino', u'affair'] [u'tiger', u'deal', u'blow', u'blumfield', u'injuri'] [u'time', u'run', u'farmer', u'contest', u'nomin'] [u'toddler', u'twin', u'scribbl', u'rampag'] [u'toll', u'rise', u'indian', u'cyclon'] [u'toronto', u'grappl', u'sar'] [u'tourist', u'cliff', u'fall', u'investig'] [u'townsvill', u'firm', u'help', u'rebuild', u'iraq'] [u'tripl', u'murder', u'victim', u'werent', u'shoot', u'polic'] [u'tweed', u'council', u'approv', u'resort'] [u'homemad', u'bomb', u'explod', u'jakarta'] [u'union', u'concern', u'king', u'bros', u'worker'] [u'play', u'sar', u'concern'] [u'unit', u'expect', u'charg', u'bring', u'fin'] [u'upset', u'nation', u'row', u'championship'] [u'captur', u'iraqi', u'brass'] [u'hostil', u'crisi', u'korea'] [u'lpga', u'veteran', u'reveal', u'cancer', u'battl'] [u'marin', u'begin', u'patrol', u'iraq', u'iran', u'border'] [u'readi', u'declar', u'victori', u'iraq'] [u'say', u'iraqi', u'leader', u'custodi'] [u'warn', u'iran', u'meddl', u'iraq'] [u'question', u'cultur', u'heritag', u'impost'] [u'govt', u'move', u'polic', u'sar'] [u'govt', u'nation', u'park', u'boundari'] [u'petrol', u'price', u'attack', u'accc'] [u'hero', u'guest', u'honour', u'anzac', u'ceremoni'] [u'warrant', u'issu', u'bank', u'robberi', u'suspect'] [u'vet', u'littl', u'commemor'] [u'water', u'pipelin', u'consid'] [u'water', u'polic', u'confirm', u'ident', u'dead', u'fisherman'] [u'western', u'gear', u'sar'] [u'west', u'brook', u'save', u'releg'] [u'winni', u'mandela', u'guilti', u'fraud', u'theft'] [u'worker', u'hous', u'idea', u'microscop'] [u'write', u'wall', u'graffiti', u'vandal'] [u'adam', u'put', u'protea', u'strong', u'posit'] [u'agassi', u'cruis', u'quarter'] [u'airlin', u'face', u'compo', u'claim', u'arafura', u'game'] [u'alleg', u'victim', u'die', u'hospit'] [u'american', u'airlin', u'resign', u'post'] [u'ancient', u'languag', u'spread', u'plough'] [u'anglican', u'priest', u'deliv', u'anzac', u'messag'] [u'anti', u'banner', u'confisc', u'adelaid', u'march'] [u'anzac', u'dawn', u'servic', u'draw', u'record', u'crowd'] [u'anzac', u'activ', u'underway'] [u'anzac', u'crowd', u'number', u'rise'] [u'anzac', u'servic', u'rememb', u'gallipoli', u'veteran'] [u'anzac', u'support', u'encourag', u'defenc', u'forc'] [u'anzac', u'servic', u'live', u'albani'] [u'anzac', u'rememb', u'geraldton', u'servic'] [u'arm', u'hijack', u'seiz', u'german', u'carri'] [u'arm', u'hijack', u'german', u'polic'] [u'arsenal', u'campbel', u'lose', u'appeal'] [u'weather', u'doesnt', u'stop', u'anzac', u'servic'] [u'banner', u'owner', u'claim', u'protest'] [u'chief', u'attack', u'media', u'coverag'] [u'bear', u'hope', u'continu', u'win', u'way'] [u'beef', u'expo', u'open'] [u'central', u'crowd', u'anzac'] [u'crowd', u'anzac', u'dawn', u'servic'] [u'crowd', u'honour', u'anzac', u'tradit'] [u'blair', u'prais', u'discoveri', u'urg', u'cooper'] [u'blokey', u'polic', u'cultur', u'stymi', u'whistleblow', u'report'] [u'board', u'eager', u'await', u'decis'] [u'bottl', u'grang', u'go', u'record', u'price'] [u'brack', u'back', u'crean'] [u'bridg', u'collaps', u'popular', u'drive'] [u'british', u'troop', u'offer', u'deplet', u'uranium', u'test'] [u'break', u'hill', u'turn', u'anzac', u'servic'] [u'bronco', u'escap', u'eel', u'dragon', u'roll', u'rooster'] [u'brumbi', u'defend', u'fund', u'alloc'] [u'bush', u'say', u'iraq', u'occup', u'year'] [u'elect', u'candid'] [u'campaign', u'lobbi', u'boat', u'ramp', u'fund'] [u'canberra', u'appeal', u'fund', u'boost'] [u'carr', u'urg', u'prais', u'troop', u'iraq'] [u'celtic', u'porto', u'reach', u'uefa', u'final'] [u'child', u'death', u'bring', u'toll'] [u'china', u'record', u'sar', u'death'] [u'columbia', u'crew', u'mission'] [u'commerci', u'properti', u'face', u'rate', u'rise'] [u'commission', u'vow', u'tripl', u'murder', u'probe'] [u'communiti', u'turn', u'honour', u'anzac', u'tradit'] [u'communiti', u'turn', u'rememb', u'anzac'] [u'consum', u'remind', u'anzac', u'trade'] [u'costello', u'prais', u'tenac', u'anzac', u'gallipoli'] [u'council', u'consid', u'heritag', u'precinct'] [u'councillor', u'consid', u'futur', u'elect', u'delay'] [u'countri', u'victorian', u'afford', u'rat', u'rise'] [u'coupl', u'lead', u'applebi', u'houston', u'round'] [u'croc', u'cruis', u'cabl', u'beach'] [u'cypriot', u'storm', u'barrier'] [u'dawn', u'servic', u'begin', u'gallipoli'] [u'bruijn', u'world'] [u'dixi', u'chick', u'pose', u'nude'] [u'dragon', u'roll', u'rooster'] [u'driver', u'remind', u'care', u'come', u'home'] [u'electr', u'break', u'townsvill', u'airport'] [u'farmer', u'wait', u'rain'] [u'north', u'honour', u'anzac', u'tradit'] [u'fel', u'join', u'call', u'mental', u'health', u'fund'] [u'find', u'king', u'brother', u'probe', u'delay'] [u'damag', u'launceston', u'general'] [u'firm', u'urg', u'consid', u'iraq', u'opportun'] [u'prison', u'repatri', u'intern'] [u'fisherman', u'boat', u'seiz'] [u'injur', u'head', u'crash'] [u'fleme', u'centuri', u'put'] [u'fruit', u'vege', u'price', u'rise'] [u'fund', u'seek', u'offic', u'work'] [u'glori', u'closer', u'grand', u'final', u'berth'] [u'green', u'uranium', u'test', u'return'] [u'group', u'seek', u'taxi', u'secur', u'boost'] [u'gulf', u'troop', u'celebr', u'anzac'] [u'hermannsburg', u'policeman', u'name'] [u'highland', u'hammer', u'brumbi'] [u'high', u'secur', u'greet', u'australian', u'gallipoli'] [u'hill', u'prais', u'gulf', u'troop', u'anzac', u'speech'] [u'hird', u'best', u'bomber'] [u'holi', u'smoke', u'cambodian', u'monk', u'kick', u'habit'] [u'hundr', u'attend', u'anzac', u'dawn', u'servic'] [u'hundr', u'attend', u'anzac', u'servic'] [u'hundr', u'digger', u'attend', u'darwin', u'dawn', u'servic'] [u'hunter', u'health', u'lodg', u'polyclin'] [u'imperson', u'particip', u'march', u'veteran'] [u'indigen', u'danc', u'featur', u'gulf', u'anzac', u'ceremoni'] [u'injur', u'bali', u'footbal', u'return'] [u'inter', u'fear', u'deja', u'killjoy', u'lazio', u'head', u'north'] [u'investig', u'continu', u'brisban', u'tripl', u'murder'] [u'investig', u'attend', u'accid', u'site'] [u'iraq', u'boost', u'ceremoni', u'number'] [u'iron', u'defend', u'titl'] [u'island', u'perform', u'aeroplan', u'danc', u'anzac'] [u'japan', u'jobless', u'rate', u'rise', u'percent', u'march'] [u'kalgoorli', u'boulder', u'stop', u'rememb', u'anzac'] [u'kashmir', u'blast', u'kill'] [u'labor', u'unresolv', u'crean', u'await', u'beazley'] [u'larg', u'crowd', u'draw', u'hobart', u'anzac', u'servic'] [u'late', u'lockyer', u'see', u'bronco', u'edg', u'eel'] [u'lewi', u'fight', u'johnson'] [u'mackay', u'honour', u'anzac', u'legaci'] [u'malaria', u'kill', u'african', u'children', u'alarm', u'rate'] [u'charg', u'blue', u'mtns', u'bodi', u'part'] [u'mcgrath', u'return', u'vice', u'chancellor'] [u'melbourn', u'dawn', u'servic', u'draw'] [u'millmerran', u'council', u'open', u'civic', u'build'] [u'miner', u'appeal', u'worker', u'compo', u'decis'] [u'minist', u'outlin', u'sar', u'conting', u'plan'] [u'molik', u'comfort', u'clay'] [u'molik', u'comfort', u'clay', u'ahead'] [u'montgomeri', u'rat', u'chanc'] [u'murder', u'accus', u'refus', u'bail'] [u'nauru', u'hop', u'proceed', u'honolulu', u'properti'] [u'navi', u'help', u'boost', u'anzac', u'servic'] [u'caledonia', u'pay', u'tribut', u'anzac'] [u'korean', u'nuke', u'admiss', u'batter', u'region', u'market'] [u'north', u'korea', u'admit', u'possess', u'nuke', u'report'] [u'polic', u'concern', u'number', u'road', u'injuri'] [u'korea', u'offer', u'bold', u'plan', u'nuclear', u'crisi'] [u'marin', u'polic', u'respons', u'boat'] [u'opec', u'cut', u'product', u'buoy', u'price'] [u'overdu', u'rafter', u'turn', u'safe'] [u'peac', u'messag', u'flow', u'anzac', u'dawn', u'servic'] [u'peopl', u'flock', u'dawn', u'servic'] [u'perth', u'street', u'line', u'anzac', u'wisher'] [u'philippin', u'confirm', u'sar', u'death'] [u'pie', u'bomber', u'clash', u'season', u'baromet', u'sheedi'] [u'pilgrim', u'honour', u'gallipoli', u'sacrific'] [u'honour', u'anzac', u'sacrific'] [u'polic', u'identifi', u'remain'] [u'polic', u'injur', u'fatal', u'high', u'speed', u'chase'] [u'polic', u'investig', u'melbourn', u'theft'] [u'polic', u'seiz', u'steal', u'penfold', u'wine'] [u'public', u'urg', u'fli', u'toler'] [u'queensland', u'honour', u'anzac', u'award'] [u'ranger', u'gun', u'uefa', u'finalist', u'celtic'] [u'rann', u'label', u'leadership', u'woe', u'silli'] [u'real', u'madrid', u'look', u'reignit', u'home', u'fire'] [u'record', u'crowd', u'townsvill', u'servic'] [u'record', u'crowd', u'attend', u'darwin', u'dawn', u'servic'] [u'record', u'crowd', u'greet', u'anzac', u'march'] [u'repair', u'rail', u'servic', u'track'] [u'research', u'stake', u'fresh', u'claim', u'earli', u'human'] [u'mourn', u'sale', u'barrack'] [u'rudolph', u'hit', u'protea'] [u'rule', u'parti', u'offici', u'kill', u'kashmir'] [u'govt', u'child', u'care', u'effort'] [u'sar', u'claim', u'victim', u'china'] [u'sar', u'crisi', u'caus', u'widespread', u'panic', u'beij'] [u'sar', u'death', u'rate', u'rise'] [u'sar', u'impact', u'heavili', u'econom', u'growth', u'world'] [u'school', u'stay', u'shut', u'sole', u'pupil', u'stay', u'home'] [u'search', u'underway', u'miss', u'forth', u'river', u'rafter'] [u'second', u'airlin', u'talk', u'gladston', u'postpon'] [u'second', u'beij', u'hospit', u'seal'] [u'servic', u'honour', u'indigen', u'servicemen', u'women'] [u'sewag', u'spill', u'impact', u'minim', u'council'] [u'sinead', u'oconnor', u'retir', u'music'] [u'singapor', u'ratchet', u'tough', u'sar', u'measur'] [u'smoke', u'sight', u'spark', u'servic', u'call'] [u'south', u'east', u'rememb', u'anzac'] [u'sign', u'miss', u'miner'] [u'store', u'closur', u'oppon', u'plan'] [u'stoudemir', u'name', u'rooki', u'year'] [u'strand', u'boat', u'peopl', u'sight', u'australia'] [u'strong', u'turnout', u'anzac', u'servic'] [u'suspect', u'sar', u'patient', u'continu', u'improv'] [u'swan', u'demon'] [u'swan', u'demon', u'bomber', u'pound', u'pie'] [u'swim', u'lake', u'futur', u'debat'] [u'sydney', u'come', u'aliv', u'anzac', u'march'] [u'tareq', u'aziz', u'custodi', u'report'] [u'teen', u'deliv', u'lone', u'pine', u'anzac', u'read'] [u'telstra', u'reject', u'critic', u'halt'] [u'telstra', u'reject', u'redund', u'claim'] [u'tent', u'embassi', u'member', u'arrest', u'enter', u'memori'] [u'tent', u'embassi', u'threaten'] [u'thousand', u'attend', u'sydney', u'dawn', u'servic'] [u'thousand', u'expect', u'honour', u'anzac', u'sacrific'] [u'thousand', u'flock', u'melbourn', u'dawn', u'servic'] [u'thousand', u'gather', u'gallipoli'] [u'thousand', u'honour', u'anzac', u'memori', u'perth'] [u'thousand', u'honour', u'anzac', u'memori'] [u'thousand', u'honour', u'anzac', u'tradit'] [u'thousand', u'line', u'melbourn', u'street', u'honour', u'anzac'] [u'thousand', u'line', u'street', u'homag', u'anzac'] [u'thousand', u'line', u'sydney', u'street', u'anzac', u'parad'] [u'thousand', u'rememb', u'anzac', u'hero'] [u'kill', u'injur', u'kashmir', u'blast'] [u'thunderbird', u'notch', u'star', u'recruit'] [u'timberwolv', u'edg', u'laker', u'overtim'] [u'townsvill', u'airport', u'contain'] [u'townsvill', u'troop', u'play', u'iraq', u'effort'] [u'troop', u'iraq', u'join', u'anzac', u'parad'] [u'dead', u'injur', u'accid'] [u'extend', u'iraqi', u'food', u'program'] [u'hop', u'feder', u'fund'] [u'unit', u'requiem', u'lose', u'champion', u'leagu', u'dream'] [u'claim', u'iraqi', u'bigwig', u'captur'] [u'militari', u'confirm', u'tareq', u'aziz', u'custodi'] [u'reject', u'sar', u'toronto'] [u'soldier', u'question', u'iraqi', u'steal', u'cash'] [u'teacher', u'shoot', u'student'] [u'tightlip', u'north', u'korea', u'talk'] [u'veteran', u'urg', u'youngster', u'join', u'defenc', u'forc'] [u'victorian', u'expect', u'larg', u'anzac', u'involv'] [u'villawood', u'death', u'highlight', u'peopl', u'smuggl', u'peril'] [u'govt', u'seek', u'age', u'care', u'fund', u'flexibl'] [u'veteran', u'imperson', u'increas', u'lobbi'] [u'waugh', u'aim', u'caribbean', u'clean', u'sweep'] [u'western', u'ecolog', u'spotlight'] [u'wildlif', u'offic', u'forc', u'shoot', u'croc'] [u'winni', u'mandela', u'guilti', u'fraud', u'theft'] [u'winni', u'mandela', u'sentenc', u'jail'] [u'work', u'ban', u'taronga'] [u'worker', u'pride', u'rail', u'project'] [u'work', u'start', u'soon', u'resort', u'project'] [u'work', u'start', u'soon', u'resort', u'project'] [u'wrink', u'rocker', u'climb', u'british', u'rich', u'list'] [u'digger', u'lead', u'brisban', u'anzac', u'parad'] [u'strike', u'fail', u'deter', u'crowd'] [u'resid', u'face', u'rate', u'hike'] [u'agassi', u'eye', u'number', u'spot'] [u'american', u'airlin', u'avert', u'bankruptci', u'union', u'deal'] [u'andretti', u'indi', u'gordon', u'doubl'] [u'applebi', u'hunt'] [u'armstrong', u'eye', u'lieg'] [u'asian', u'health', u'minist', u'meet', u'sar', u'crisi', u'talk'] [u'astarloa', u'step', u'shadow', u'flech'] [u'confirm', u'kill', u'baghdad', u'blast'] [u'attack', u'arm', u'dump', u'baghdad'] [u'aust', u'watch', u'brief', u'world', u'hatch', u'sar'] [u'australian', u'row', u'championship', u'wind'] [u'beckham', u'stay', u'unit', u'say'] [u'beckham', u'stay', u'unit', u'say', u'father'] [u'beef', u'australia'] [u'black', u'hawk', u'forc', u'land', u'uluru'] [u'blast', u'man', u'flight', u'shuttl'] [u'blue', u'port', u'triumph', u'tiger', u'chase', u'hawk'] [u'blue', u'roll', u'roo', u'port', u'clip', u'crow'] [u'blue', u'sink', u'shark'] [u'british', u'enjoy', u'simpl', u'life', u'canari', u'open'] [u'call', u'global', u'effort', u'battl', u'malaria'] [u'cambodia', u'monk', u'anti', u'smoke', u'seat'] [u'canada', u'reel', u'latest', u'sar', u'death', u'panic'] [u'carlton', u'bounc', u'roo'] [u'charlton', u'heston', u'step', u'presid'] [u'chernobyl', u'file', u'reveal', u'reactor', u'leak'] [u'coach', u'sanchez', u'banish', u'touchlin', u'puma'] [u'coalit', u'elect', u'poll'] [u'collingwood', u'face', u'long'] [u'concern', u'attempt', u'control', u'iraqi'] [u'copi', u'darter', u'fail', u'dream', u'debut'] [u'crow', u'look', u'turn', u'tabl', u'port'] [u'dalton', u'head', u'team', u'america'] [u'darter', u'fail', u'dream', u'debut'] [u'disappoint', u'right', u'vote', u'delay'] [u'dont', u'write', u'celtic', u'final', u'defiant', u'oneil'] [u'dravid', u'play', u'scotland'] [u'drug', u'bigmat', u'rider'] [u'edmond', u'relish', u'warratah', u'boy'] [u'england', u'sanderson', u'australia', u'tour'] [u'eriksson', u'meet', u'manag', u'club', u'countri'] [u'factori', u'burn', u'gold', u'coast'] [u'ferrari', u'race', u'spain'] [u'ferrero', u'hammer', u'french', u'open', u'warn'] [u'sar', u'death', u'case', u'beij'] [u'fleme', u'hit', u'doubl', u'centuri'] [u'blast', u'lebanon', u'camp'] [u'frenchman', u'oust', u'blake', u'reach', u'semi', u'final'] [u'gate', u'close', u'adelaid', u'drive', u'theatr'] [u'global', u'sar', u'control', u'measur'] [u'global', u'sar', u'toll', u'continu', u'rise'] [u'govt', u'tackl', u'dental', u'wait', u'list'] [u'govt', u'quiet', u'slaveri', u'alleg'] [u'graham', u'leav', u'shark', u'wigan'] [u'gregan', u'say', u'loss', u'otago', u'disappoint'] [u'gustafson', u'grab', u'shoot', u'lpga', u'lead'] [u'hammer', u'wont', u'whimper', u'brook'] [u'helmet', u'rule', u'step', u'closer'] [u'herbert', u'make', u'french', u'connect'] [u'honda', u'announc', u'probe', u'kato', u'death'] [u'impress', u'start', u'thunderbird'] [u'indian', u'troop', u'kill', u'islam', u'rebel', u'follow', u'radio'] [u'inquiri', u'court', u'breach', u'confid'] [u'iraqi', u'cleric', u'push', u'muslim', u'rule'] [u'iraqi', u'opposit', u'group', u'gather', u'histor', u'meet'] [u'iraqi', u'refuge', u'repatri', u'underway'] [u'chief', u'pugh', u'die'] [u'israel', u'play', u'remain', u'euro', u'home'] [u'john', u'report', u'knight', u'tame', u'tiger'] [u'knight', u'tame', u'tiger'] [u'kournikova', u'turn', u'german', u'open', u'wild', u'card'] [u'laconi', u'snatch', u'superbik', u'pole', u'japan'] [u'lara', u'aim', u'posit', u'finish'] [u'lobster', u'fisherman', u'optimist', u'futur'] [u'charg', u'townsvill', u'shoot'] [u'custodi', u'adelaid', u'sieg'] [u'custodi', u'domest', u'seig'] [u'marco', u'pull', u'brazil', u'squad', u'friend'] [u'mcgradi', u'inspir', u'magic', u'dalla', u'close', u'semi', u'final'] [u'molik', u'form', u'ahead'] [u'molik', u'form', u'ahead'] [u'montgomeri', u'plan', u'maintain', u'speed', u'coach'] [u'nasa', u'plan', u'space', u'shuttl', u'crew'] [u'nation', u'road', u'toll', u'rise'] [u'fund', u'includ', u'budget'] [u'headston', u'erect', u'australian', u'artist'] [u'plan', u'ship', u'iraqi', u'brass', u'guantanamo'] [u'nightclub', u'warn', u'overcrowd'] [u'polici', u'breast', u'screen', u'wont', u'chang'] [u'take', u'men', u'netbal', u'championship'] [u'marathon', u'rais', u'money', u'sick', u'kid'] [u'oak', u'glori'] [u'kill', u'injur', u'palmerston', u'accid'] [u'sar', u'alert', u'aust'] [u'overmar', u'dutch', u'squad', u'portug', u'game'] [u'pagan', u'go', u'club'] [u'pari', u'germain', u'sack', u'chairman', u'club', u'owner'] [u'parti', u'leader', u'maryborough', u'elect'] [u'philippin', u'confirm', u'death', u'sar'] [u'phoenix', u'dous', u'firebird', u'flame'] [u'phoenix', u'rise'] [u'pilot', u'kill', u'ultralight', u'crash'] [u'pilot', u'blame', u'spill', u'coffe', u'cockpit', u'nuditi'] [u'plan', u'ferri', u'athlet', u'game', u'aliv'] [u'plumber', u'want', u'antarctica'] [u'polic', u'queanbeyan', u'accid', u'wit'] [u'polic', u'resourc', u'tackl', u'domest', u'violenc'] [u'poll', u'open', u'maryborough'] [u'poll', u'open', u'pngs', u'southern', u'highland'] [u'powel', u'plan', u'middl', u'east', u'tour'] [u'polic', u'help', u'tripl'] [u'raider', u'prove', u'doubter', u'wrong'] [u'rann', u'label', u'leadership', u'woe', u'silli'] [u'red', u'lead', u'cat', u'half', u'time'] [u'red', u'overcom', u'cat'] [u'refresh', u'clijster', u'open', u'belgium'] [u'rivett', u'hammer', u'home', u'challeng', u'dream'] [u'rossi', u'provision', u'pole', u'bayliss', u'fourth'] [u'rossi', u'provision', u'pole', u'bayliss', u'fourth'] [u'rudolph', u'dippenaar', u'slam', u'centuri', u'hapless'] [u'rudolph', u'dippenaar', u'steer', u'protea', u'victori'] [u'saddam', u'destroy', u'wmds'] [u'govt', u'review', u'parol', u'board', u'releas', u'order'] [u'govt', u'review', u'parol', u'board', u'recommend'] [u'schumach', u'brother', u'attend', u'mother', u'funer'] [u'scottish', u'paper', u'lavish', u'tribut', u'triumphant'] [u'senior', u'iraqi', u'captiv', u'face', u'interrog'] [u'siev', u'peopl', u'smuggler', u'deport', u'indonesia'] [u'specialist', u'demand', u'unreason'] [u'studi', u'expect', u'sar', u'death', u'rate', u'higher'] [u'taiwan', u'stop', u'issu', u'visa', u'sar'] [u'tamil', u'tiger', u'talk', u'suspens', u'temporari'] [u'taronga', u'staff', u'return', u'work', u'disput'] [u'tasmanian', u'militari', u'barrack', u'go', u'cheap', u'auction'] [u'tiger', u'storm', u'home', u'clip', u'hawk'] [u'fleme', u'richardson', u'defi', u'lanka'] [u'soldier', u'kill', u'afghan', u'clash'] [u'bid', u'berth', u'rugbi', u'world'] [u'civilian', u'head', u'armi', u'resign'] [u'crack', u'blood', u'diamond'] [u'deni', u'plan', u'east', u'timor'] [u'team', u'chemistri', u'improv', u'capriati'] [u'hard', u'look', u'north', u'korea', u'nuclear', u'claim'] [u'victoria', u'investig', u'confidenti'] [u'vieira', u'doubt', u'arsenal', u'titl'] [u'slam', u'victoria', u'confidenti'] [u'webber', u'thrive', u'comparison'] [u'weekend'] [u'york', u'peninsula', u'marina', u'open', u'today'] [u'zidan', u'back', u'marseill', u'america'] [u'zimbabw', u'opposit', u'claim', u'arrest', u'raid'] [u'taiwanes', u'sar', u'case', u'report'] [u'agassi', u'grab', u'hewitt', u'spot'] [u'agassi', u'take', u'spot'] [u'anger', u'baghdad', u'explos'] [u'applebi', u'coupl', u'grab', u'houston', u'lead'] [u'applebi', u'coupl', u'lead', u'calcavecchia'] [u'argentin', u'candid', u'express', u'support', u'nuclear'] [u'asia', u'health', u'chief', u'travel', u'sar', u'check'] [u'australia', u'import', u'sar', u'sampl'] [u'aust', u'team', u'vie', u'iraqi', u'reconstruct', u'contract'] [u'barcelona', u'xavi', u'rest', u'season'] [u'bayern', u'seal', u'german', u'titl', u'game', u'leav'] [u'beachley', u'rid', u'high', u'fiji'] [u'beazley', u'challeng', u'crean'] [u'beij', u'continu', u'effort', u'curb', u'sar', u'crisi'] [u'blast', u'jakarta', u'airport', u'wound', u'polic'] [u'bolton', u'hammer', u'arsenal', u'titl', u'hop'] [u'bradford', u'clinch', u'challeng', u'thriller'] [u'brisban', u'polic', u'urg', u'caution', u'fatal', u'accid'] [u'broad', u'brush', u'quarantin', u'student', u'travel'] [u'buck', u'draw', u'level', u'net'] [u'chines', u'health', u'minist', u'sack', u'sar', u'purg'] [u'colonel', u'light', u'statu', u'restor'] [u'communiti', u'brace', u'medicar', u'chang'] [u'cook', u'return', u'week', u'cyst', u'problem'] [u'costello', u'quiet', u'leadership', u'specul'] [u'count', u'resum', u'maryborough', u'elect'] [u'danger', u'area', u'declar', u'burton', u'overnight'] [u'boer', u'chase', u'firm', u'return'] [u'diver', u'drown', u'mornington', u'peninsula'] [u'driver', u'licenc', u'short', u'time', u'fatal'] [u'extradit', u'order', u'egyptian', u'peopl', u'smuggler'] [u'finegan', u'get', u'brumbi'] [u'finegan', u'receiv', u'brumbi'] [u'forc', u'brisban', u'chariti', u'seek', u'benefactor'] [u'scare', u'darwin', u'hospit'] [u'kill', u'rebel', u'raid', u'kashmir', u'radio', u'station'] [u'refus', u'bail', u'record', u'ecstasi', u'seizur'] [u'flower', u'mix', u'emot', u'england', u'tour'] [u'garner', u'ask', u'iraqi', u'play', u'role', u'govt'] [u'gigg', u'say', u'place'] [u'govt', u'urg', u'deplet', u'uranium', u'weapon'] [u'gulf', u'bind', u'rumsfeld', u'review', u'militari'] [u'heart', u'verg', u'europ'] [u'creditor', u'face', u'cent', u'dollar', u'payout'] [u'shock', u'commiss', u'revel'] [u'hill', u'cosgrov', u'visit', u'baghdad'] [u'holder', u'slovakia', u'struggl', u'serv'] [u'hull', u'bite', u'shark', u'hooker', u'treister'] [u'hussain', u'outlin', u'test', u'ambit'] [u'independ', u'lead', u'maryborough', u'elect'] [u'iraqi', u'protest', u'baghdad', u'blast'] [u'iraqi', u'protest', u'presenc', u'baghdad', u'blast'] [u'challeng', u'beazley'] [u'jakarta', u'airport', u'bomb', u'blast', u'injur'] [u'jakarta', u'bomb', u'link', u'trial'] [u'japanes', u'firm', u'break', u'space', u'barrier'] [u'jayawardena', u'steer', u'lanka', u'troubl'] [u'kato', u'inspir', u'gibernau', u'pole', u'africa'] [u'kato', u'inspir', u'gibernau', u'pole', u'africa'] [u'kiwi', u'domin', u'super'] [u'kiwi', u'domin', u'super'] [u'labor', u'plead', u'parti', u'uniti'] [u'lake', u'barrington', u'host', u'final', u'row'] [u'minut', u'ciss', u'put', u'auxerr', u'final'] [u'defend', u'brighton', u'barrack', u'sale'] [u'link', u'saddam', u'qaeda', u'report'] [u'lion', u'dog'] [u'lion', u'dog', u'saint', u'crush', u'cat'] [u'lion', u'dog', u'saint', u'eagl', u'triumph'] [u'lion', u'tabl', u'geelong', u'crash', u'defeat'] [u'lobbi', u'group', u'call', u'rat', u'scrap'] [u'malaysia', u'minist', u'propos', u'unkind', u'press'] [u'charg', u'internet', u'diamond', u'scam'] [u'kill', u'gembrook', u'accid'] [u'maryborough', u'elect', u'hors', u'race'] [u'mask', u'produc', u'warn', u'market'] [u'massiv', u'ecstasi', u'haul', u'seiz', u'sydney'] [u'mav', u'push', u'blazer', u'brink', u'elimin'] [u'mcgrath', u'return', u'windi', u'practic', u'match'] [u'mcleish', u'look', u'champion', u'leagu'] [u'lee', u'form', u'parti'] [u'meg', u'parti', u'threat', u'democrat'] [u'charg', u'ecstasi', u'haul', u'refus', u'bail'] [u'mideast', u'road', u'releas', u'week'] [u'milan', u'titl', u'hop', u'end', u'plucki', u'roma'] [u'molonglo', u'reach', u'toxic', u'environ'] [u'montgomeri', u'make', u'triumphant', u'return', u'track'] [u'sar', u'death', u'expert', u'warn', u'higher'] [u'motogp', u'rider', u'safeti', u'forum', u'organis'] [u'rat', u'flaw'] [u'pal', u'trev'] [u'place', u'brinkmanship', u'nuke', u'talk', u'south', u'korea'] [u'doctor', u'group', u'voic', u'support', u'medicar'] [u'polic', u'disappoint', u'road', u'fatal'] [u'osasuna', u'dampen', u'atletico', u'centenari', u'celebr'] [u'pakistan', u'await', u'evid', u'match', u'fix'] [u'panther', u'shock', u'warrior', u'eagl', u'roll', u'rabbitoh'] [u'pedrosa', u'win', u'race'] [u'poggiali', u'clinch', u'honour', u'africa'] [u'polic', u'assault', u'increas', u'oppn'] [u'polic', u'injur', u'kempton', u'footbal', u'scuffl'] [u'polic', u'forc', u'patrol', u'road'] [u'polic', u'probe', u'gold', u'coast'] [u'pope', u'ask', u'castro', u'clemenc', u'dissid'] [u'pope', u'move', u'cappuccino', u'friar', u'sainthood', u'path'] [u'port', u'win', u'local', u'derbi'] [u'protea', u'crush', u'bangladesh'] [u'graafschap'] [u'quiet', u'start', u'highland', u'elect'] [u'real', u'benefit', u'beckham', u'toshack'] [u'hodgson', u'storm', u'sugo', u'doubl'] [u'red', u'assess', u'tune', u'injuri'] [u'reid', u'lament', u'leed', u'laps'] [u'rhode', u'centuri', u'win', u'bonus', u'battl'] [u'riot', u'break', u'belfast'] [u'roddick', u'advanc', u'final', u'men', u'clay', u'court'] [u'rowl', u'richer', u'queen'] [u'appal', u'wreath', u'vandal'] [u'safin', u'sight', u'month', u'titl', u'drought'] [u'saint', u'crush', u'cat', u'eagl', u'docker'] [u'retain', u'euro', u'heavyweight', u'titl'] [u'polic', u'investig'] [u'sar', u'bring', u'australia', u'studi'] [u'sar', u'epidem', u'critic', u'crossroad'] [u'sar', u'mask', u'lead', u'communiti', u'paranoia', u'taskforc'] [u'serco', u'driver', u'hold', u'meet'] [u'serna', u'down', u'pratt', u'spanish', u'hop', u'aliv'] [u'shark', u'edg', u'adelaid', u'power', u'stay', u'aliv'] [u'shoaib', u'face', u'intern', u'wilder', u'chief'] [u'shop', u'ask', u'truant', u'cop'] [u'shot', u'fire', u'south', u'west', u'sydney'] [u'sniffer', u'dog', u'trail', u'cancer', u'prostat'] [u'soldier', u'patrol', u'count', u'begin', u'poll'] [u'spanish', u'teenag', u'make', u'mark'] [u'sport', u'role', u'model', u'tour', u'help', u'young', u'indigen'] [u'suspect', u'nuclear', u'relat', u'shipment', u'nkorea'] [u'suspici', u'chemic', u'iraq'] [u'sweden', u'itali', u'share', u'honour'] [u'taiwan', u'ban', u'visitor', u'sar'] [u'telstra', u'broadband', u'access', u'gungahlin'] [u'toney', u'toppl', u'jirov', u'claim', u'crusierweight'] [u'toon', u'boss', u'robson', u'reliev', u'sunderland'] [u'civilian', u'kill', u'burundi', u'rebel', u'ambush'] [u'women', u'injur', u'firework', u'accid'] [u'union', u'tell', u'govt', u'clean'] [u'offer', u'help', u'china', u'fight', u'sar'] [u'soldier', u'kill', u'tank', u'accid'] [u'victoria', u'win', u'king'] [u'govt', u'reject', u'union', u'critic'] [u'webb', u'grab', u'lead', u'rain', u'disrupt', u'lpga'] [u'webb', u'lead', u'lpga', u'event'] [u'wesser', u'trick', u'panther', u'stun', u'warrior'] [u'aagard', u'hit', u'medicar', u'reform'] [u'accus', u'illeg', u'fisherman', u'confirm'] [u'aceh', u'separatist', u'jakarta', u'blast', u'polic'] [u'appeal', u'public', u'info', u'heroin', u'bust'] [u'probe', u'jakarta', u'blast', u'bali', u'trial', u'link'] [u'agassi', u'ralli', u'beat', u'roddick'] [u'forc', u'base', u'brew'] [u'airlin', u'consid', u'withdraw', u'canberra'] [u'alic', u'gear', u'parliament'] [u'warn', u'govt', u'medic', u'insur'] [u'amnesti', u'renew', u'opposit', u'aust', u'asylum', u'polici'] [u'sar', u'death', u'canada'] [u'anzac', u'wreath', u'vandal', u'outrag'] [u'argentin', u'voter', u'poll'] [u'arsenal', u'henri', u'name', u'player', u'year'] [u'australian', u'athlet', u'ban', u'leav'] [u'australia', u'william', u'sister', u'throw'] [u'bear', u'score', u'trick', u'magpi'] [u'blue', u'star', u'spark', u'fiji', u'kiwi', u'feud'] [u'bourn', u'take', u'life', u'support'] [u'die', u'backyard', u'pool', u'mishap'] [u'brack', u'claim', u'success', u'class', u'size'] [u'brack', u'rule', u'limit', u'class', u'size'] [u'breaker', u'prove', u'good', u'west'] [u'centr', u'manag', u'confid', u'staff', u'number'] [u'campaign', u'aim', u'boost', u'tweed', u'coolangatta', u'tourism'] [u'canberra', u'get', u'tick', u'recoveri'] [u'capit', u'work', u'project', u'spark', u'rate', u'rise'] [u'children', u'mummifi', u'corps', u'poland', u'flat'] [u'clark', u'accus', u'claim', u'investig', u'offic'] [u'clijster', u'refus', u'commit', u'quarter'] [u'costa', u'flag', u'overhaul', u'rail'] [u'council', u'consid', u'energi', u'save', u'plan'] [u'council', u'urg', u'seek', u'govt', u'fund', u'green', u'project'] [u'count', u'delay', u'elect'] [u'coupl', u'break', u'titl', u'drought'] [u'coupl', u'edg', u'applebi', u'emot', u'houston'] [u'court', u'postpon', u'trial', u'masood', u'alleg', u'killer'] [u'crean', u'vow', u'fight', u'medicar', u'reform'] [u'crime', u'prevent', u'scheme', u'fund'] [u'debat', u'continu', u'fluorid', u'water'] [u'downer', u'dedic', u'bali', u'garden', u'blast', u'victim'] [u'effluent', u'program', u'extens', u'delay', u'total', u'water', u'ban'] [u'emerg', u'communic', u'prioriti', u'govt'] [u'england', u'open', u'knight', u'call'] [u'england', u'ferri', u'win', u'maiden', u'titl', u'playoff'] [u'timor', u'gradual', u'resum', u'control', u'border'] [u'extent', u'drug', u'recal', u'reveal'] [u'famili', u'court', u'vow', u'ethnic'] [u'treatment', u'roeder', u'disgrac', u'fergi'] [u'fiji', u'complain', u'zealand', u'pressur', u'rugbi', u'star'] [u'film', u'make', u'aim', u'boost', u'youth', u'confid'] [u'firm', u'await', u'iron', u'approv'] [u'fisheri', u'servic', u'remov', u'iilleg', u'cray', u'pot'] [u'kill', u'injur', u'spanish', u'crash'] [u'florentia', u'viola', u'promot'] [u'fli', u'communiti', u'mourn', u'pilot', u'death'] [u'argentin', u'presid', u'make', u'poll', u'second', u'round'] [u'frank', u'arab', u'leader', u'discuss', u'troop', u'presenc'] [u'garner', u'lead', u'baghdad', u'post', u'talk'] [u'distribut', u'deal', u'cabinet'] [u'good', u'rain', u'central', u'victoria'] [u'govt', u'move', u'simplifi', u'evid', u'court'] [u'govt', u'commit', u'medicar'] [u'group', u'highlight', u'region', u'health', u'woe'] [u'green', u'sweep', u'martiniqu'] [u'green', u'seek', u'calm', u'fund', u'boost'] [u'group', u'bowl', u'world', u'record'] [u'group', u'focus', u'kimberley', u'busi', u'vision'] [u'control', u'shambl'] [u'hammer', u'dedic', u'stricken', u'coach'] [u'hammer', u'thrower', u'deni', u'order', u'drug'] [u'hawk', u'draw', u'board'] [u'health', u'servic', u'staff', u'accommod', u'boost'] [u'heart', u'diseas', u'cut', u'aust', u'live', u'short'] [u'henri', u'name', u'player', u'year'] [u'high', u'rainfal', u'unusu', u'autumn'] [u'indigen', u'group', u'win', u'coastal', u'manag', u'award'] [u'indigen', u'youth', u'offer', u'build', u'traineeship'] [u'injur', u'journalist', u'sue', u'thredbo'] [u'internacion', u'lead', u'brazil', u'help', u'tribun'] [u'iraqi', u'opposit', u'group', u'gather', u'spain'] [u'iraqi', u'powerbrok', u'gather', u'decid', u'futur'] [u'iraqi', u'regim', u'chang', u'offer', u'hope', u'farmer'] [u'ivori', u'coast', u'rebel', u'chief', u'kill', u'ambush'] [u'jail', u'term', u'send', u'messag', u'potenti', u'fraudster'] [u'job', u'boost', u'eurobodalla'] [u'john', u'cop', u'plea'] [u'john', u'face', u'stint', u'sidelin'] [u'john', u'answer', u'head', u'slam', u'charg'] [u'john', u'face', u'head', u'slam', u'charg'] [u'juventus', u'close', u'titl', u'inter', u'hold'] [u'kennelli', u'chase', u'beachley', u'crown'] [u'laker', u'level', u'seri', u'wolv'] [u'land', u'clear', u'tarnish', u'australia', u'imag', u'truss'] [u'leadership', u'stoush', u'news', u'crean'] [u'life', u'imit', u'belgium'] [u'maher', u'lift', u'australia', u'univers'] [u'maher', u'lift', u'australia', u'strong', u'total'] [u'die', u'road', u'tragedi'] [u'mayor', u'honour', u'artist', u'contribut'] [u'mcgee', u'set', u'sight', u'glori'] [u'medicar', u'packag', u'offer', u'mix', u'doctor', u'group'] [u'melbourn', u'hospit', u'studi', u'inherit', u'stroke'] [u'melbourn', u'studi', u'stroke', u'prevent'] [u'north', u'coast', u'record', u'fatal', u'free', u'easter'] [u'miss', u'sar', u'drug', u'resurfac'] [u'seek', u'greater', u'parent', u'liabil'] [u'murder', u'trio', u'sister', u'ask', u'public', u'help'] [u'mutant', u'mice', u'bring', u'hope', u'deaf'] [u'player', u'dont', u'deserv', u'live', u'atletico', u'presid'] [u'navi', u'hold', u'inquiri', u'westralia', u'tragedi'] [u'crew', u'enter'] [u'polit', u'parti', u'bear', u'frustrat'] [u'program', u'help', u'respons', u'domest', u'violenc'] [u'support', u'group', u'asbesto', u'suffer'] [u'tourism', u'attract', u'open'] [u'korea', u'offer', u'scrap', u'nuclear', u'program', u'report'] [u'korea', u'reject', u'south', u'clarifi', u'arm'] [u'nolan', u'widow', u'win', u'disput'] [u'sign', u'heighten', u'peopl', u'smuggl', u'downer'] [u'govt', u'accus', u'ignor', u'rail', u'safeti', u'warn'] [u'govt', u'criticis', u'packer', u'interact', u'gambl'] [u'govt', u'pledg', u'perilya', u'help'] [u'health', u'minist', u'oppos', u'medicar', u'reform'] [u'holiday', u'road', u'toll', u'hit'] [u'launch', u'islam', u'teach'] [u'woman', u'blow'] [u'ralli', u'driver', u'bourn', u'take', u'life', u'support'] [u'lanka', u'test', u'head', u'draw'] [u'pacif', u'island', u'seek', u'coach'] [u'paint', u'worth', u'million', u'steal', u'british'] [u'beat', u'waugh', u'lpga', u'play'] [u'patient', u'pick', u'medicar', u'chang'] [u'peac', u'group', u'wont', u'protest', u'warship', u'visit'] [u'peopl', u'smuggl', u'confer', u'consid', u'impact'] [u'perpignan', u'join', u'toulous', u'french', u'euro'] [u'face', u'fight', u'medicar', u'plan'] [u'promis', u'fairer', u'medicar'] [u'polic', u'drown', u'victim'] [u'polic', u'sar', u'drug', u'thiev', u'steal', u'wrong', u'contain'] [u'polic', u'dead', u'driver'] [u'pompey', u'swagger', u'premiership'] [u'port', u'author', u'probe', u'truck', u'mishap'] [u'post', u'talk', u'begin', u'baghdad'] [u'propos', u'outlin', u'nation', u'power', u'grid', u'upgrad'] [u'push', u'dental', u'fund', u'boost'] [u'qanta', u'time'] [u'coalit', u'focus', u'mackay'] [u'queensland', u'equip', u'deal', u'sar'] [u'raider', u'receiv', u'airplay'] [u'rain', u'boost', u'south', u'coast', u'pastur'] [u'rain', u'like', u'boost', u'hinz'] [u'real', u'madrid', u'extend', u'lead', u'challeng', u'stumbl'] [u'tape', u'delay', u'airport', u'plan'] [u'ronaldinho', u'doubl', u'put', u'french', u'final'] [u'roo', u'focus', u'carey', u'factor'] [u'roo', u'confront', u'carey'] [u'rumsfeld', u'liken', u'iraq', u'liber', u'pari'] [u'runway', u'debat', u'take'] [u'rural', u'india', u'embrac', u'technolog'] [u'safin', u'injuri', u'curs', u'hand', u'titl', u'moya'] [u'govt', u'warn', u'superannu', u'blowout'] [u'sar', u'affect', u'tourism', u'book'] [u'sar', u'indigen', u'fear', u'air'] [u'sar', u'iraq', u'see', u'tourism', u'industri', u'declin'] [u'sar', u'past', u'peak', u'nation'] [u'sar', u'vaccin', u'year', u'away', u'heath', u'offici'] [u'sharemarket', u'follow', u'wall', u'street'] [u'shire', u'elig', u'subsidis', u'drought', u'loan'] [u'shopper', u'strip', u'london', u'store', u'bare'] [u'singapor', u'employ', u'stringent', u'measur', u'control'] [u'korea', u'pressur', u'north', u'nuclear'] [u'stafford', u'answer', u'charg'] [u'storm', u'surg', u'wall', u'move', u'closer', u'realiti'] [u'sugar', u'grower', u'environment', u'practic'] [u'suicid', u'prevent', u'help', u'migrant'] [u'surpris', u'sheep', u'research', u'find', u'prematur', u'birth'] [u'health', u'minist', u'reject', u'medicar', u'packag'] [u'taxi', u'driver', u'want', u'safeti', u'asap'] [u'teen', u'apologis', u'crossbow', u'attack'] [u'teen', u'milit', u'kill', u'jenin', u'shoot'] [u'teen', u'face', u'court', u'trip'] [u'thirteenth', u'iraqi', u'fugit', u'custodi'] [u'serious', u'injur', u'crash'] [u'thwait', u'defend', u'water', u'rat', u'polici'] [u'tiger', u'umpir', u'interchang'] [u'gold', u'miner', u'announc', u'quarter', u'profit'] [u'tourism', u'boom', u'warwick'] [u'tourist', u'offic', u'share', u'feasibl'] [u'toxic', u'bloom', u'river', u'warn', u'remain'] [u'tragic', u'long', u'weekend', u'south', u'east', u'road'] [u'monitor', u'sar', u'brisban'] [u'lead', u'hunt', u'weapon', u'say', u'iaea', u'chief'] [u'command', u'play', u'possibl', u'weapon'] [u'secur', u'rugbi', u'world', u'berth'] [u'govt', u'clarifi', u'drought', u'stanc'] [u'polic', u'seek', u'gather', u'figur', u'drink', u'spike'] [u'scientist', u'analys', u'sar', u'sampl'] [u'vietnam', u'say', u'contain', u'sar'] [u'bring', u'sar', u'prevent', u'rule'] [u'wallabi', u'keen', u'play', u'pacif', u'island'] [u'minist', u'make', u'apolog', u'tough', u'sar', u'stanc'] [u'warn', u'hospit', u'wait', u'list'] [u'watch', u'continu', u'sar', u'airport'] [u'water', u'author', u'await', u'fluorid', u'decis'] [u'waterfal', u'inquiri', u'hear', u'crash', u'unusu'] [u'waugh', u'lose', u'georgia', u'playoff'] [u'weak', u'project', u'slow'] [u'week', u'extent', u'drug', u'recal', u'know'] [u'wenger', u'refus', u'conced', u'defeat'] [u'western', u'get', u'drench'] [u'develop', u'vaccin', u'european', u'bird'] [u'help', u'avon', u'environment', u'woe'] [u'xstrata', u'execut', u'outlin', u'oper'] [u'yank', u'grab', u'rugbi', u'world', u'berth'] [u'yarrabah', u'get', u'domest', u'violenc', u'week', u'fund'] [u'threaten', u'legal', u'action', u'anim'] [u'kill', u'kashmir', u'clash'] [u'sting', u'hornet', u'lead', u'seri'] [u'academ', u'warn', u'sudden', u'halt', u'medic'] [u'alburi', u'face', u'murder', u'trial'] [u'ord', u'surg', u'finish', u'higher'] [u'alonso', u'pull', u'power'] [u'doubt', u'overhaul', u'benefit', u'indigen'] [u'antic', u'stick', u'barca'] [u'anti', u'woodchip', u'protest', u'block', u'entranc'] [u'applebi', u'climb', u'rank', u'houston', u'near', u'miss'] [u'asean', u'china', u'sar', u'research', u'fund'] [u'asian', u'leader', u'pledg', u'uniti', u'sar', u'battl'] [u'ask', u'explain'] [u'aussi', u'cyclist', u'doubt', u'world', u'champ'] [u'aust', u'deleg', u'tri', u'secur', u'rebuild', u'work'] [u'australia', u'help', u'poor', u'countri', u'studi'] [u'aust', u'soldier', u'involv', u'iraqi', u'gunfight'] [u'begin', u'spotti', u'mackerel', u'commerci', u'net'] [u'bayern', u'target', u'deportivo', u'makaay'] [u'beij', u'sar', u'toll', u'rise'] [u'boati', u'urg', u'steer', u'clear', u'pipe', u'lay'] [u'boost', u'indigen', u'tourism'] [u'brack', u'back', u'fluorid', u'move'] [u'brack', u'support', u'plan', u'attract', u'femal', u'polic'] [u'brack', u'consid', u'road', u'open', u'concern'] [u'bulldog', u'boss', u'mortim', u'shock', u'massiv', u'fine'] [u'bulldog', u'fin', u'mortim', u'comment'] [u'campaign', u'highlight', u'rock', u'fish', u'danger'] [u'carey', u'expect', u'rough', u'recept'] [u'carpent', u'union', u'pressur', u'cleaner'] [u'carr', u'reject', u'medicar', u'chang'] [u'celtic', u'pair', u'miss', u'scotland', u'austrian', u'friend'] [u'china', u'sar', u'focus', u'asian', u'leader'] [u'chines', u'sar', u'victim', u'name', u'revolutionari', u'martyr'] [u'chines', u'villag', u'torch', u'plan', u'sar', u'quarantin'] [u'claim', u'fluorid', u'introduct', u'accept'] [u'coca', u'cola', u'neverfail'] [u'collingwood', u'confus', u'wakelin', u'suspens'] [u'collingwood', u'disappoint', u'wakelin', u'suspens'] [u'communiti', u'aim', u'enterpris', u'project', u'go'] [u'complet', u'draw', u'rugbi', u'world'] [u'compulsori', u'test', u'sar', u'suspect'] [u'contempt', u'action', u'consid', u'mooney'] [u'corretja', u'dupui', u'valencia'] [u'cost', u'shift', u'probe', u'question'] [u'council', u'reject', u'airstrip', u'plan'] [u'council', u'appli', u'higher', u'rate', u'exempt'] [u'council', u'cost', u'shift', u'concern'] [u'council', u'tri', u'balanc', u'heritag', u'health'] [u'court', u'rule', u'beach', u'impass'] [u'crean', u'queri', u'time', u'medicin', u'recal'] [u'croatian', u'crime', u'suspect', u'bobetko', u'dead'] [u'crown', u'casino', u'robber', u'get', u'year', u'jail'] [u'desailli', u'clinch', u'french', u'record', u'spanish'] [u'doctor', u'group', u'happi', u'overal', u'medicar', u'reform'] [u'dragon', u'kogarah', u'return'] [u'east', u'asia', u'embrac', u'econom', u'regionalis'] [u'economist', u'warn', u'short', u'term', u'pain', u'beef'] [u'edberg', u'becker', u'renew', u'rivalri'] [u'effenberg', u'reveal', u'autobiographi'] [u'engin', u'support', u'navi', u'westralia', u'find'] [u'probe', u'perilya', u'blast'] [u'farmer', u'run', u'time', u'plant', u'canola'] [u'farmer', u'urg', u'consid', u'iraq', u'opportun'] [u'father', u'iwestraliai', u'victim', u'look', u'forward'] [u'favourit', u'look', u'consolid', u'round'] [u'porto', u'mourinho', u'run', u'rule', u'celtic'] [u'fear', u'dengu', u'fever', u'virus', u'chang'] [u'feder', u'overhaul', u'benefit', u'medic', u'school'] [u'ferdinand', u'injuri', u'scare', u'clear'] [u'fitz', u'gerald', u'take', u'welsh', u'squash', u'open'] [u'player', u'tribun'] [u'kill', u'helicopt', u'crash', u'india'] [u'nat', u'member', u'keppel'] [u'french', u'armi', u'caledonia', u'dengu', u'fight'] [u'gallop', u'call', u'stabil', u'labor', u'rank'] [u'gallop', u'say', u'govt', u'tri', u'dismantl', u'medicar'] [u'gigg', u'point', u'arsenal', u'crack'] [u'goldfield', u'indigen', u'mediat', u'begin'] [u'govt', u'hint', u'tariff', u'windback', u'textil', u'industri'] [u'govt', u'hop', u'resolv', u'tourism', u'slump'] [u'govt', u'starv', u'region', u'fund'] [u'govt', u'crack', u'shonki', u'drug', u'maker'] [u'group', u'give', u'mix', u'respons', u'medicar', u'overhaul'] [u'group', u'seek', u'poki', u'licens', u'review'] [u'health', u'dept', u'move', u'allay', u'health', u'insur'] [u'heart', u'manag', u'levein', u'sign', u'contract'] [u'heart', u'studi', u'reflect', u'tasmanian'] [u'henri', u'look', u'everton', u'rooney', u'save', u'arsenal'] [u'howard', u'blast', u'absurd', u'medicar', u'claim'] [u'imposs', u'tell', u'extent', u'wheat', u'virus', u'csiro'] [u'indonesia', u'block', u'boat'] [u'industri', u'react', u'angrili', u'herbal', u'product', u'advic'] [u'internet', u'rival', u'unit', u'fight', u'spam'] [u'isra', u'forc', u'kill', u'milit', u'gaza', u'west', u'bank'] [u'wont', u'play', u'black', u'caucau'] [u'creation', u'chang', u'hunter'] [u'john', u'cop', u'plea'] [u'john', u'cop', u'week'] [u'kidnap', u'accus', u'deni', u'bail'] [u'know', u'truck', u'fault', u'firefight', u'live', u'risk'] [u'laker', u'miss', u'rest', u'postseason'] [u'lawsuit', u'drop', u'aid', u'drug', u'price'] [u'leed', u'winger', u'wilcox', u'back', u'reid'] [u'pull', u'stump'] [u'lifelong', u'chariti', u'patron', u'honour', u'melbourn'] [u'ling', u'ban', u'match'] [u'local', u'elect', u'ballot', u'slow', u'return'] [u'long', u'await', u'hillari', u'clinton', u'memoir', u'releas'] [u'appear', u'british', u'backpack', u'murder'] [u'jail', u'unit', u'blaze'] [u'man', u'peni', u'south', u'african', u'attack'] [u'unit', u'unload', u'barthez'] [u'mayor', u'air', u'hous', u'concern'] [u'mclaren', u'confirm', u'jaguar', u'wurz'] [u'medicar', u'packag', u'discrimin', u'corbel'] [u'miln', u'ling', u'suspend'] [u'predict', u'half', u'year', u'profit'] [u'mine', u'expo', u'get', u'underway'] [u'miss', u'woman', u'safe'] [u'moon', u'mission', u'launch', u'india', u'space', u'career'] [u'mortim', u'rule', u'appeal'] [u'talk', u'medicar', u'overhaul'] [u'murder', u'committ', u'hear', u'continu'] [u'murphi', u'go', u'vet', u'knife'] [u'survey', u'find', u'drought', u'hurt', u'agribusi'] [u'speaker', u'parliament'] [u'korea', u'admit', u'nuke', u'china'] [u'date', u'aust', u'troop', u'homecom'] [u'staff', u'reduct', u'glengallan', u'piggeri'] [u'parliament', u'begin', u'alic', u'sit'] [u'parliament', u'begin', u'histor', u'sit'] [u'nurs', u'vote', u'propos', u'rise'] [u'nurs', u'vote', u'rise', u'offer'] [u'health', u'ministri', u'report', u'sar', u'case'] [u'tri', u'trace', u'product', u'shelv'] [u'olymp', u'bronz', u'medallist', u'samson', u'kitur', u'die'] [u'driver', u'charg', u'road', u'blitz'] [u'palestinian', u'milit', u'reject', u'abba', u'disarm'] [u'palestinian', u'parliament', u'meet', u'approv'] [u'palestinian', u'parliament', u'vote', u'cabinet'] [u'panda', u'digest', u'process', u'spark', u'bright', u'idea'] [u'director', u'deni', u'knowledg', u'wrongdo'] [u'face', u'lawsuit', u'life', u'long', u'drug', u'reaction'] [u'promis', u'compli', u'recal'] [u'paradorn', u'cruis', u'munich', u'clay'] [u'pearl', u'book', u'alleg', u'pakistani', u'involv'] [u'pentagon', u'updat', u'casualti', u'list', u'iraq'] [u'polic', u'prais', u'woman', u'effort', u'help', u'burn'] [u'polic', u'search', u'underway', u'newcastl', u'death'] [u'polic', u'appli', u'pair', u'extradit'] [u'polit', u'erupt', u'volker'] [u'portug', u'kick', u'euro', u'ticket', u'sale'] [u'press', u'group', u'slam', u'tongan', u'govt', u'censorship'] [u'professor', u'defend', u'tgas', u'action'] [u'project', u'creat', u'south', u'east', u'job'] [u'protest', u'greet', u'warship'] [u'qanta', u'push', u'ahead', u'allianc', u'plan'] [u'govt', u'finalis', u'cane', u'industri', u'overhaul'] [u'govt', u'urg', u'restor', u'tourism', u'fund'] [u'parliament', u'hear', u'volker', u'claim'] [u'scientist', u'work', u'drought', u'resist', u'rice'] [u'radio', u'cab', u'manag', u'unhappi', u'concern', u'air', u'media'] [u'rail', u'crash', u'probe', u'hear', u'track'] [u'rain', u'predict', u'improv', u'drought'] [u'rego', u'hike', u'driver'] [u'rigour', u'need', u'medic', u'label'] [u'ryan', u'evid', u'fraser', u'trial'] [u'sahhaf', u'unsuccess', u'tri', u'surrend', u'offici'] [u'lower', u'hous', u'pass', u'embryo', u'research'] [u'parliament', u'pass', u'embryo', u'research'] [u'sar', u'take', u'toll', u'tourism', u'industri'] [u'schett', u'desper', u'lose', u'continu'] [u'schumach', u'thank', u'fan', u'condol'] [u'scotland', u'ax', u'team'] [u'serb', u'leader', u'charg', u'murder'] [u'sheringham', u'ask', u'stay', u'spur'] [u'korea', u'announc', u'probabl', u'sar', u'case'] [u'small', u'court', u'construct', u'union'] [u'smelter', u'upgrad', u'help', u'boost', u'product'] [u'success', u'claim', u'weed', u'fight'] [u'student', u'sar', u'infect', u'countri', u'close'] [u'survey', u'find', u'cigarett', u'sell', u'underag', u'smoker'] [u'survey', u'highlight', u'littl', u'support', u'trade', u'hour'] [u'suspect', u'anthrax', u'death', u'brazil'] [u'swimmer', u'warn', u'stinger', u'danger'] [u'tarpeena', u'revamp', u'begin'] [u'thousand', u'award', u'unfair', u'sack'] [u'thousand', u'march', u'support', u'cfmeu', u'secretari'] [u'lead', u'recoveri', u'steal', u'paint'] [u'tongan', u'slam', u'world', u'schedul'] [u'tourist', u'die', u'road', u'crash'] [u'trinidad', u'sprint', u'star', u'boldon', u'freeman', u'confirm'] [u'turnbul', u'reassur', u'nrma', u'member', u'fee', u'rise'] [u'uefa', u'scrap', u'golden', u'goal'] [u'welcom', u'medic', u'student', u'place'] [u'confirm', u'fatal', u'iraq', u'protest', u'shoot'] [u'say', u'hold', u'iraqi', u'minist'] [u'seek', u'support', u'hydrogen', u'fuel'] [u'threaten', u'belgium', u'plan', u'crime'] [u'boost', u'baghdad', u'forc', u'improv', u'secur'] [u'troop', u'iraq', u'crowd', u'dead', u'jazeera'] [u'troop', u'leav', u'saudi', u'arabia'] [u'vail', u'lead', u'trade', u'deleg', u'iraq'] [u'wallabi', u'favourit', u'world', u'woodward'] [u'polic', u'offic', u'deni', u'pay'] [u'waratah', u'lose', u'elsom'] [u'water', u'committe', u'take', u'evid', u'port', u'lincoln'] [u'western', u'stock', u'number'] [u'prais', u'asean', u'china', u'sar', u'uniti'] [u'workplac', u'safeti', u'spotlight'] [u'work', u'start', u'bemax', u'plant', u'septemb'] [u'world', u'venu', u'impress', u'scotland', u'manag'] [u'month', u'overcom', u'sar', u'downturn', u'qanta'] [u'countri', u'risk', u'satellit', u'debri'] [u'aborigin', u'landcar', u'group', u'await', u'fund'] [u'account', u'order', u'leed', u'sell'] [u'acon', u'withdraw', u'vitamin'] [u'govt', u'slash', u'servic', u'prior', u'budget', u'oppn'] [u'qanta', u'deal', u'grant', u'week', u'extens'] [u'alleg', u'paedophil', u'dutroux', u'order', u'trial'] [u'aqi', u'clear', u'suspect', u'sar', u'case'] [u'armadal', u'rapist', u'give', u'longer', u'usual', u'sentenc'] [u'asio', u'chief', u'play', u'polic', u'bug', u'enquiri'] [u'aussi', u'dollar', u'hit', u'year', u'high'] [u'bashir', u'tell', u'terror', u'trial', u'judg'] [u'beckham', u'say', u'arsenal', u'defenc'] [u'bosnich', u'appeal'] [u'brauer', u'assur', u'custom', u'product', u'dont', u'contain'] [u'british', u'scientist', u'search', u'elus', u'dark', u'matter'] [u'bush', u'announc', u'major', u'iraq', u'fight'] [u'cancellara', u'take', u'earli', u'lead', u'tour', u'romandi'] [u'celtic', u'recov', u'uefa', u'final'] [u'chamber', u'get', u'nod', u'apra'] [u'chapman', u'water', u'reservoir', u'roof'] [u'chelsea', u'share', u'stamford', u'bridg', u'fulham'] [u'china', u'rush', u'hospit', u'construct', u'sar', u'spread'] [u'colombian', u'court', u'order', u'lift', u'state'] [u'communiti', u'protest', u'roadwork', u'handl'] [u'concern', u'flare', u'raaf', u'loss'] [u'concern', u'air', u'dental', u'servic'] [u'construct', u'union', u'secretari', u'await', u'decis'] [u'contractor', u'face', u'barrack', u'decis'] [u'coron', u'reject', u'apolog', u'westralia'] [u'council', u'consid', u'drop', u'green', u'levi'] [u'council', u'rate', u'better', u'expect', u'shire'] [u'council', u'time', u'caravan', u'park', u'decis'] [u'council', u'vote', u'differenti', u'rat'] [u'direct', u'flight', u'antarct', u'improv', u'access'] [u'doctor', u'provid', u'inform', u'extend', u'visa'] [u'downturn', u'tourist', u'number', u'cost', u'industri'] [u'drink', u'spike', u'victim', u'urg', u'join', u'survey'] [u'drought', u'claim', u'victim', u'piggeri', u'close'] [u'drought', u'put', u'rice', u'worker', u'work'] [u'investig', u'brereton', u'bug', u'claim'] [u'dublin', u'confirm', u'european', u'final', u'venu'] [u'eccleston', u'lash'] [u'eccleston', u'slam', u'team'] [u'plead', u'guilti', u'warship', u'protest'] [u'environment', u'group', u'seek', u'altern'] [u'esper', u'angler', u'safe'] [u'europ', u'club', u'want', u'world', u'profit'] [u'hero', u'shrewsburi', u'tumbl', u'leagu'] [u'famili', u'friend', u'farewel', u'accid', u'victim'] [u'farina', u'pleas', u'despit', u'olyroo', u'loss'] [u'father', u'murder', u'trio', u'appeal', u'public'] [u'feder', u'warm', u'easi', u'munich'] [u'firearm', u'caus', u'loss', u'heritag'] [u'bali', u'trial', u'date'] [u'probabl', u'sar', u'death', u'africa'] [u'fittler', u'rule', u'return', u'blue'] [u'forum', u'focus', u'land', u'right'] [u'foster', u'carer', u'name', u'mother', u'year'] [u'bounti', u'trial', u'success', u'spur', u'grant', u'council'] [u'wife', u'home', u'breast', u'cancer', u'surgeri'] [u'gonzalez', u'galdeano', u'ban', u'tour'] [u'govt', u'give', u'bushfir', u'recoveri'] [u'govt', u'oppn', u'agre', u'drug', u'regul', u'need'] [u'grazier', u'spin', u'wool', u'market', u'fall'] [u'green', u'bank', u'launch', u'fund', u'environment', u'sound'] [u'greenpeac', u'activist', u'maximum', u'penalti'] [u'head', u'roll'] [u'hewitt', u'pull', u'italian', u'open'] [u'hewitt', u'play', u'world', u'team', u'australia'] [u'hill', u'clear', u'injuri'] [u'indonesian', u'polic', u'arrest', u'boat', u'peopl', u'bind'] [u'inquiri', u'clear'] [u'inquiri', u'hear', u'sailor', u'forc', u'ship'] [u'iraqi', u'border', u'closur', u'urg', u'catch', u'loot'] [u'wont', u'undermin', u'peac', u'process', u'adam'] [u'ironman', u'champion', u'retir'] [u'italian', u'satellit', u'make', u'pacif', u'splash'] [u'iverson', u'bryant', u'jermain', u'oneal', u'name', u'olymp', u'team'] [u'jackson', u'keen', u'play', u'jone'] [u'labor', u'court', u'wanker', u'napthin'] [u'labor', u'plan', u'medicar', u'rescu', u'packag'] [u'laker', u'rout', u'wolv', u'control', u'seri'] [u'hop', u'repeat', u'asian', u'event'] [u'legal', u'action', u'possibl', u'smith', u'beach'] [u'leicest', u'dump', u'kafer'] [u'lewi', u'charg', u'drunken', u'drive'] [u'lille', u'hit', u'richard', u'jibe'] [u'live', u'murray', u'forum', u'irrig'] [u'guilti', u'mistreat'] [u'murder', u'charg', u'face', u'court'] [u'say', u'travel', u'pill', u'affect', u'like', u'overdos'] [u'market', u'steadi', u'despit', u'bank', u'loss'] [u'mccartney', u'hop'] [u'medicar', u'review', u'prompt', u'health', u'care', u'inquiri'] [u'melbourn', u'host', u'sar', u'meet'] [u'menangl', u'bridg', u'rebuild', u'rail', u'overhaul'] [u'unhealthi', u'compar', u'women', u'studi'] [u'merckx', u'turn', u'armstrong'] [u'mexico', u'desper', u'breed', u'panda'] [u'miner', u'get', u'support', u'fight', u'insur', u'decis'] [u'minist', u'announc', u'sweep', u'chang', u'rail'] [u'consult', u'seek', u'tourism', u'crisi', u'plan'] [u'problem', u'windi', u'mcgrath', u'return'] [u'time', u'seek', u'consid', u'water', u'plan'] [u'moya', u'eye', u'second', u'grand', u'slam', u'titl'] [u'defend', u'effort', u'reduc', u'class', u'size'] [u'nation', u'grain', u'industri', u'threat', u'wheat', u'virus'] [u'natur', u'founder', u'accus', u'scare', u'tactic'] [u'nauru', u'economi', u'troubl'] [u'burundi', u'presid', u'promis', u'peac'] [u'newcastl', u'prop', u'perri', u'guilti'] [u'newli', u'elect', u'swear'] [u'shoot', u'falluja', u'dead'] [u'parol', u'period', u'convict', u'murder', u'reduc'] [u'public', u'transport', u'price', u'review', u'brumbi'] [u'opposit', u'slam', u'state', u'rail', u'appoint'] [u'korea', u'wrap', u'talk'] [u'highest', u'job', u'growth', u'australia'] [u'offici', u'wave', u'plan', u'month'] [u'site', u'meet', u'discuss', u'wind', u'farm', u'plan'] [u'opsm', u'takeov', u'sight'] [u'opsm', u'share', u'surg', u'wake', u'takeov'] [u'palestinian', u'swear'] [u'admit', u'procedur', u'problem'] [u'boss', u'meet'] [u'expect', u'suspens', u'lift', u'director'] [u'sack', u'employe', u'product', u'recal'] [u'staff', u'receiv', u'assur'] [u'suspens', u'hit', u'owner'] [u'paper', u'publish', u'letter', u'saddam'] [u'parent', u'urg', u'avoid', u'smack'] [u'parreira', u'maiden', u'brazil'] [u'pest', u'look', u'stay'] [u'pollut', u'affect', u'male', u'fertil', u'studi'] [u'popular', u'comeback', u'boom', u'boom', u'peopl'] [u'power', u'plan', u'question'] [u'primus', u'montgomeri', u'doubt', u'tiger', u'clash'] [u'probe', u'aim', u'rais', u'financi', u'advic', u'standard'] [u'protest', u'plead', u'guilti', u'anti', u'protest'] [u'recal', u'spark', u'calm'] [u'recal', u'spark', u'health', u'food', u'store', u'concern'] [u'recov', u'moya', u'eye', u'second', u'grand', u'slam', u'titl'] [u'red', u'demot', u'kefu', u'bench'] [u'tape', u'hinder', u'firefight', u'effort', u'report'] [u'resourc', u'project', u'nomin', u'environ', u'award'] [u'issu', u'airport', u'warn'] [u'seek', u'lower', u'tax'] [u'rice', u'worker', u'lose', u'job'] [u'rivkin', u'guilti', u'insid', u'trade'] [u'roeder', u'intens', u'care', u'return'] [u'break', u'woomera', u'game'] [u'rumsfeld', u'land', u'iraq', u'amid', u'tight', u'secur'] [u'ryan', u'break', u'murder', u'trial'] [u'saddam', u'letter', u'urg', u'iraqi', u'upris'] [u'safin', u'wear', u'squillari', u'valencia'] [u'sahaf', u'urg', u'surrend'] [u'sar', u'fear', u'boost', u'diseas', u'prevent', u'sale', u'figur'] [u'sar', u'impact', u'cattl', u'export'] [u'sar', u'quarantin', u'time', u'catch', u'read'] [u'scheme', u'aim', u'foster', u'cabonn', u'growth'] [u'second', u'falluja', u'shoot', u'toll', u'rise'] [u'secur', u'confer', u'predict', u'terror', u'attack'] [u'shire', u'address', u'skate', u'park', u'woe'] [u'snowtown', u'killer', u'finish', u'give', u'evid'] [u'solo', u'rower', u'face', u'ocean', u'peril'] [u'south', u'africa', u'launch', u'host', u'soccer', u'world'] [u'stafford', u'clear', u'strike', u'charg'] [u'stafford', u'escap'] [u'stanbrok', u'loss', u'affect', u'sale'] [u'storm', u'hill', u'clear', u'injuri'] [u'sydney', u'hospit', u'fudg', u'figur', u'minist'] [u'talli', u'wage', u'talk', u'wrong', u'bronco', u'boss'] [u'bird', u'await', u'answer', u'avellino'] [u'aviv', u'suicid', u'bomb', u'joint', u'effort'] [u'telstra', u'confirm', u'tassi', u'loss'] [u'telstra', u'sharehold', u'receiv', u'dividend', u'today'] [u'tendulkar', u'face', u'month', u'break', u'hand', u'surgeri'] [u'textil', u'union', u'claim', u'geelong', u'lockout'] [u'recal', u'product'] [u'win', u'prais', u'recal'] [u'thai', u'jail', u'laugh', u'matter'] [u'thiev', u'target', u'teacher', u'home'] [u'timber', u'firm', u'worker', u'face', u'uncertain', u'futur'] [u'tissu', u'engin', u'grow', u'peni'] [u'earli', u'judg', u'sar', u'impact', u'china', u'trade'] [u'club', u'share', u'world', u'profit'] [u'tourism', u'group', u'welcom', u'road', u'upgrad'] [u'tribut', u'flood', u'bourn'] [u'tribut', u'flow', u'ralli', u'driver', u'bourn'] [u'tribut', u'flow', u'possum', u'bourn'] [u'tribut', u'flow', u'ralli', u'driver', u'bourn'] [u'court', u'drug', u'firearm', u'charg'] [u'uncertainti', u'surround', u'complementari'] [u'union', u'begin', u'action', u'geelong', u'textil', u'factori'] [u'uni', u'research', u'fund'] [u'expand', u'health', u'screen', u'return', u'troop'] [u'troop', u'defend', u'falluja', u'shoot'] [u'vander', u'kuyp', u'return', u'form'] [u'venus', u'readi', u'turn', u'tabl'] [u'farmer', u'concern', u'fall', u'wool', u'price'] [u'wale', u'defend', u'cost', u'code', u'conduct', u'probe'] [u'wallabi', u'boss', u'eye'] [u'water', u'restrict', u'lift', u'varley'] [u'wimbledon', u'tradit', u'bow'] [u'wind', u'farm', u'plan', u'spark', u'protest'] [u'wineri', u'urg', u'follow', u'export', u'lead'] [u'wineri', u'withdraw', u'trademark', u'applic'] [u'wnbl', u'opal', u'secur', u'sponsorship', u'deal'] [u'wool', u'price', u'batter'] [u'remain', u'trap', u'bingol', u'earthquak'] [u'dead', u'evacu', u'argentin', u'flood'] [u'african', u'dead', u'crash'] [u'continu', u'hunt', u'indonesian', u'terrorist'] [u'forc', u'flare', u'wash', u'stradbrok'] [u'say', u'medicar', u'reform', u'requir', u'doctor', u'spend'] [u'ambul', u'reform', u'region'] [u'shed', u'staff', u'stanwel'] [u'share', u'hold'] [u'split', u'mark', u'fresh', u'start'] [u'split', u'help', u'intern', u'busi'] [u'anderson', u'urg', u'accc', u'approv', u'qanta', u'deal'] [u'anthrax', u'genom', u'show', u'chang', u'dead'] [u'atsic', u'call', u'suspens', u'abus', u'judg'] [u'augenthal', u'nuremberg', u'trial'] [u'aussi', u'dollar', u'hit', u'year', u'high', u'morn', u'trade'] [u'australia', u'mint', u'coin', u'mark', u'rugbi', u'world'] [u'australia', u'biggest', u'wind', u'farm', u'get', u'ahead'] [u'avellino', u'swift', u'clash'] [u'baildon', u'play', u'rate', u'rise', u'fear'] [u'beatti', u'defend', u'tabl', u'abus', u'report'] [u'benalla', u'flood', u'protect', u'prove', u'cost'] [u'berkov', u'miss', u'main', u'road', u'final'] [u'bertoletti', u'take', u'stage', u'lead', u'tour', u'romandi'] [u'black', u'cap', u'step', u'pressur', u'lankan'] [u'blue', u'trio', u'chanc', u'play'] [u'boat', u'rush', u'ship', u'founder', u'reef'] [u'box', u'communiti', u'claim', u'sport', u'unfair', u'attack'] [u'breakthrough', u'crown', u'land', u'disput', u'talk', u'saff'] [u'brereton', u'claim', u'damag'] [u'bridg', u'replac', u'fast', u'track'] [u'britain', u'reopen', u'iraq', u'mission'] [u'british', u'call', u'polic', u'wife', u'wont', u'cook', u'dinner'] [u'brothel', u'share', u'doubl', u'float', u'price'] [u'brumbi', u'lose', u'giffen'] [u'buri', u'fenc', u'open', u'border', u'dingo'] [u'associ', u'seek', u'meet', u'king', u'bros', u'woe'] [u'bush', u'hail', u'pakistan', u'arrest', u'qaeda', u'leader'] [u'centr', u'closur', u'spark', u'anger'] [u'better', u'feral', u'control'] [u'continu', u'chopper', u'support'] [u'second', u'airlin', u'boost', u'alic', u'tourism'] [u'sensibl', u'order', u'debat'] [u'canada', u'host', u'sar', u'summit', u'death', u'report'] [u'candid', u'question', u'elect'] [u'canegrow', u'group', u'say', u'legisl', u'littl'] [u'cash', u'strap', u'hib', u'sidelin', u'cost', u'skipper'] [u'cattl', u'winner', u'announc'] [u'cemeteri', u'repair', u'near', u'finish'] [u'respond', u'bushfir', u'probe', u'critic'] [u'childhood', u'pneumonia', u'vaccin', u'protect', u'adult'] [u'church', u'report', u'spark', u'debat'] [u'clean', u'clear', u'pound', u'warn'] [u'cloud', u'hang', u'crisi', u'shelter'] [u'commonwealth', u'fund', u'biotech', u'project'] [u'communic', u'problem', u'delay', u'garbag', u'collect'] [u'cost', u'rule', u'postal', u'vote'] [u'council', u'confid', u'meet', u'entitl'] [u'council', u'general', u'manag', u'get', u'golden'] [u'court', u'resolv', u'nurs', u'disput'] [u'crean', u'call', u'action', u'murray', u'mouth'] [u'crunch', u'time', u'aussi', u'super', u'team'] [u'cut', u'possibl', u'break', u'hill', u'servic'] [u'deficit', u'highlight', u'geraldton', u'budget'] [u'doctor', u'dismiss', u'carr', u'medicar', u'reform', u'plan'] [u'edenhop', u'move', u'closer', u'realis', u'communiti', u'bank'] [u'elephantin', u'beauti', u'weigh', u'conserv'] [u'emerg', u'spark', u'beacon', u'support'] [u'england', u'declin', u'turkey', u'ticket'] [u'england', u'pitch', u'invad', u'life'] [u'explos', u'reserv', u'secur', u'question'] [u'farmer', u'urg', u'work', u'safe'] [u'fear', u'sar', u'impact', u'seafood', u'export', u'overst'] [u'figur', u'highlight', u'fall', u'local', u'own', u'build'] [u'footbal', u'coach', u'sack', u'bali', u'aftermath'] [u'presid', u'case', u'carr'] [u'children', u'unhurt', u'melbourn', u'window'] [u'face', u'court', u'berri', u'theft'] [u'fowler', u'emot', u'anfi', u'return'] [u'galdeano', u'highlight', u'asthma', u'drug'] [u'gene', u'fault', u'link', u'auto', u'immun', u'diseas', u'risk'] [u'govt', u'ask', u'delay', u'servic', u'price', u'rise'] [u'govt', u'consid', u'aceh', u'state', u'emerg'] [u'govt', u'outlin', u'post', u'deploy'] [u'greec', u'rush', u'earthquak', u'turkey'] [u'grenad', u'injur', u'seven', u'soldier', u'falluja'] [u'groundbreak', u'surgeri', u'save', u'koala'] [u'group', u'consid', u'perman', u'mamographi', u'unit'] [u'hawk', u'ring', u'chang'] [u'herron', u'sigma', u'merger', u'complet'] [u'high', u'hop', u'budget'] [u'hollingworth', u'answer', u'church', u'report'] [u'hollywood', u'touch', u'melbourn', u'brothel', u'list'] [u'hong', u'kong', u'investig', u'sar', u'relaps'] [u'improp', u'practic', u'alleg', u'level'] [u'inquest', u'hear', u'faulti', u'fuel', u'hose', u'caus', u'ship'] [u'inquiri', u'hear', u'iwestraliai', u'repair', u'evid'] [u'insur', u'cast', u'doubt', u'obstetr', u'servic'] [u'attack', u'share', u'world', u'profit'] [u'island', u'communiti', u'highlight', u'food', u'suppli', u'concern'] [u'israel', u'polic', u'hunt', u'fail', u'british', u'suicid'] [u'trick', u'hundr'] [u'jewish', u'fit', u'guru', u'shape', u'york', u'nun'] [u'kill', u'prompt', u'tighten', u'bail', u'law'] [u'king', u'advanc', u'blazer', u'avoid', u'elimin'] [u'knight', u'await', u'answer', u'perri', u'appeal'] [u'knight', u'consid', u'appeal', u'perri'] [u'korea', u'choi', u'open', u'defenc', u'crown'] [u'labor', u'frontbench', u'urg', u'parti', u'think'] [u'latham', u'rule', u'gridiron', u'switch'] [u'lifeguard', u'issu', u'beach', u'safeti', u'warn'] [u'list', u'recal', u'product', u'finalis'] [u'lowi', u'demand', u'like', u'green', u'light', u'nogarotto'] [u'yang', u'power', u'record', u'near', u'loss'] [u'magistr', u'regret', u'verbal', u'abus', u'accus'] [u'magpi', u'focus', u'davi', u'factor'] [u'malthous', u'target', u'white'] [u'face', u'court', u'indec', u'act', u'charg'] [u'injur', u'trampl'] [u'plead', u'guilti', u'plan', u'embassi', u'bomb'] [u'face', u'court', u'cannabi', u'charg'] [u'manufactur', u'industri', u'grow'] [u'market', u'steadi', u'bank', u'claw'] [u'march', u'end', u'plea', u'protect', u'youth', u'job'] [u'mcisaac', u'look', u'aust', u'select'] [u'mcleod', u'doubt', u'roo', u'clash'] [u'mear', u'sister', u'slug', u'sydney'] [u'medicar', u'chang', u'boost', u'doctor', u'access', u'stoner'] [u'meet', u'fail', u'resolv', u'surgeon', u'disput'] [u'minist', u'defend', u'sardi'] [u'mobil', u'poll', u'local', u'govt', u'elect'] [u'montgomeri', u'target', u'renew', u'record'] [u'mosaic', u'effort', u'come'] [u'air', u'payrol', u'concern'] [u'air', u'prosecut', u'concern'] [u'say', u'threat', u'didnt', u'chang', u'log', u'stanc'] [u'nardel', u'coal', u'corpor', u'go', u'liquid'] [u'navi', u'rescu', u'adrift', u'indonesian'] [u'palestinian', u'cabinet', u'meet', u'domin', u'raid'] [u'throw', u'perri', u'appeal'] [u'rail', u'network', u'unsaf', u'opposit'] [u'busi', u'confid', u'increas'] [u'govt', u'conceal', u'debt', u'report'] [u'team', u'break'] [u'olonga', u'prais', u'hero', u'hussain', u'report'] [u'outspoken', u'zimbabwean', u'mayor', u'suspend'] [u'firefight', u'battl', u'china', u'blaze'] [u'pagan', u'join', u'call', u'chang', u'report'] [u'boss', u'like', u'step', u'union'] [u'resign'] [u'step'] [u'futur', u'uncertain'] [u'talk', u'union', u'compani', u'futur'] [u'pasminco', u'improv', u'product'] [u'plant', u'destroy', u'contain', u'wheat', u'virus'] [u'airlin', u'foreign', u'oper'] [u'polic', u'appeal', u'driver', u'come'] [u'polic', u'investig', u'assault', u'sailor'] [u'polic', u'probe', u'blaze'] [u'polic', u'probe', u'motorcyclist', u'death'] [u'polic', u'question', u'seig'] [u'polic', u'raid', u'uncov', u'steal', u'properti'] [u'polic', u'investig', u'darwin', u'alleg', u'assault'] [u'pompey', u'deal', u'nigerian'] [u'potenti', u'buyer', u'unperturb', u'stanbrok', u'loss'] [u'rafiqu', u'quartet', u'restrain', u'africa', u'talli'] [u'rail', u'bridg', u'work', u'cost'] [u'rain', u'help', u'avoid', u'mous', u'plagu'] [u'randolph', u'shin', u'portland', u'stave', u'elimin'] [u'rescu', u'chopper', u'servic', u'question', u'crash', u'report'] [u'rescuer', u'search', u'rubbl', u'turkey', u'quak'] [u'road', u'closur', u'spark', u'busi', u'concern'] [u'road', u'fail', u'offer', u'clear', u'peac', u'path'] [u'rise', u'immelman', u'open', u'debut', u'june'] [u'royal', u'commiss', u'examin', u'detect', u'land', u'deal'] [u'rumsfeld', u'karzai', u'focus', u'reconstruct'] [u'russia', u'beat', u'friend', u'win', u'franc', u'spain'] [u'russia', u'beat', u'win', u'franc', u'spain', u'germani'] [u'ryan', u'end', u'evid', u'backpack', u'murder', u'trial'] [u'ryan', u'end', u'evid', u'murder', u'trial', u'claim'] [u'samba', u'capit', u'get', u'guggenheim', u'offshoot'] [u'sar', u'forc', u'singapor', u'airlin', u'flight'] [u'sar', u'total', u'trade', u'disast', u'austrad'] [u'sar', u'scare', u'forc', u'asian', u'doctor', u'hobart'] [u'save', u'medicar', u'allianc', u'oppos', u'propos', u'chang'] [u'schumach', u'want', u'win', u'debut', u'ferrari'] [u'servic', u'youngest', u'murder', u'trio'] [u'seven', u'kill', u'injur', u'bangladesh', u'storm'] [u'abus', u'report', u'criticis', u'hollingworth'] [u'shanghai', u'eas', u'sar', u'quarantin', u'tourist'] [u'shire', u'hop', u'sympathet', u'hear', u'insur'] [u'dead', u'wound', u'philippin', u'attack'] [u'small', u'boat', u'trophi'] [u'softwood', u'mill', u'industri', u'remain', u'viabl'] [u'crime', u'bendigo'] [u'sorenstam', u'histor', u'effort'] [u'south', u'east', u'gear', u'pin', u'enduro'] [u'state', u'forest', u'defend', u'pine', u'plant', u'boost'] [u'statist', u'indic', u'crime', u'declin'] [u'suspect', u'sar', u'case'] [u'teenag', u'french', u'break'] [u'tendulkar', u'month'] [u'test', u'shortcut', u'lead', u'unnecessari', u'abort', u'studi'] [u'timber', u'firm', u'upfront', u'job'] [u'trader', u'jail', u'sell', u'bali', u'blast', u'chemic'] [u'palestinian', u'kill', u'isra', u'gaza'] [u'union', u'prais', u'action', u'address', u'teacher', u'hous'] [u'union', u'play', u'bigger', u'role', u'pilbara'] [u'compani', u'test', u'anthrax', u'antidot'] [u'usoc', u'welcom', u'decis', u'action', u'drug', u'test'] [u'post', u'administr'] [u'nistelrooy', u'rest', u'dutch'] [u'govt', u'call', u'chief', u'justic'] [u'call', u'ministeri', u'sack'] [u'wagga', u'rail', u'bridg', u'replac'] [u'wallabi', u'great', u'horan', u'soldier', u'saracen'] [u'webck', u'workload', u'warn'] [u'einstein', u'newton', u'autist'] [u'west', u'indi', u'finalis', u'test', u'team'] [u'staff', u'walk', u'gambier'] [u'wool', u'price', u'drop', u'blame', u'drought', u'world', u'instabl'] [u'abattoir', u'piggeri', u'feder', u'fund'] [u'economi', u'strong', u'outlook', u'waver'] [u'actu', u'seek', u'rise', u'medicar', u'chang'] [u'servic', u'issu', u'spotlight', u'wagga'] [u'alfi', u'talk', u'remot', u'area', u'student'] [u'anderson', u'defend', u'absenc'] [u'anderson', u'thank', u'tvill', u'defenc', u'forc', u'staff'] [u'earli', u'tast', u'battl', u'come'] [u'gold', u'probe', u'permit', u'seek', u'charter', u'tower'] [u'anthropologist', u'get', u'board'] [u'anti', u'discrimin', u'presid', u'face', u'abus', u'power'] [u'anti', u'nuke', u'campaign', u'seek', u'assur', u'jabiluka'] [u'atsb', u'releas', u'ship', u'death', u'report'] [u'australia', u'resum', u'strong', u'posit'] [u'award', u'win', u'cunnamulla', u'face', u'decept', u'conduct'] [u'bakeri', u'owner', u'fin', u'rat', u'faec', u'bread'] [u'bashir', u'edgi', u'women', u'separatist'] [u'bear', u'hop', u'straight', u'win'] [u'beatti', u'urg', u'public', u'voic', u'opinion'] [u'berlin', u'polic', u'disappoint', u'anarchist', u'violenc'] [u'blair', u'surviv', u'backlash', u'local', u'region', u'poll'] [u'blaze', u'destroy', u'ulong', u'club'] [u'blue', u'secur', u'super', u'spot'] [u'bonus', u'point', u'world'] [u'braveheart', u'want', u'resign'] [u'britain', u'vote', u'local', u'region', u'poll'] [u'brothel', u'share', u'continu', u'steadi', u'climb'] [u'seminar', u'highlight', u'law'] [u'bulldog', u'snap', u'lose', u'streak', u'rooster', u'thrash', u'eel'] [u'californian', u'citi', u'name', u'smoggiest'] [u'import', u'follow', u'firework'] [u'canberra', u'host', u'talk', u'tini', u'tech'] [u'capitalist', u'annual', u'pilgrimag', u'buffet', u'sermon'] [u'carey', u'come', u'trump'] [u'carey', u'confront', u'roo'] [u'carleton', u'order', u'cost'] [u'castro', u'defend', u'clampdown'] [u'await', u'hear', u'result'] [u'chile', u'costa', u'rica', u'unbeaten', u'streak'] [u'chines', u'submarin', u'accid', u'kill', u'report'] [u'church', u'keep', u'quiet', u'priest', u'transfer'] [u'claim', u'drought', u'polici', u'date'] [u'claim', u'industri', u'action', u'wont', u'stop', u'news', u'servic'] [u'claim', u'media', u'coverag', u'inflam', u'meekatharra', u'woe'] [u'columbia', u'entri', u'doom'] [u'connelli', u'defend', u'struggl', u'docker'] [u'coron', u'tell', u'caus', u'navi', u'death'] [u'councillor', u'consid', u'rate', u'rise'] [u'council', u'survey', u'highlight', u'insur', u'find'] [u'council', u'fight', u'wooli', u'petrol', u'station', u'plan'] [u'council', u'seek', u'feder', u'help', u'ensur', u'servic'] [u'council', u'urg', u'differ', u'site', u'mart'] [u'court', u'clear', u'build', u'union', u'chief'] [u'court', u'clear', u'union', u'chief'] [u'crean', u'call', u'coral'] [u'crown', u'sum', u'case', u'fraser', u'trial'] [u'crow', u'carey', u'triumph', u'roo'] [u'cycl', u'championship', u'hold'] [u'defenc', u'chief', u'win', u'diplomat', u'post'] [u'demetriou', u'eye', u'afl'] [u'doctor', u'get', u'week', u'work'] [u'doubt', u'cast', u'noongar', u'genealog', u'plan'] [u'downer', u'visit', u'iraq'] [u'wire', u'monaco', u'lyon', u'close'] [u'drug', u'result', u'satisfactori', u'thai'] [u'english', u'premier', u'leagu', u'race', u'hot'] [u'experiment', u'salin', u'awar', u'program', u'launch'] [u'fall', u'star', u'leverkusen', u'lock', u'surviv', u'battl'] [u'farmer', u'group', u'air', u'dairi', u'concern'] [u'farm', u'worker', u'get', u'life', u'sentenc', u'stab', u'murder'] [u'ladi', u'clear', u'throat', u'juve', u'wrap'] [u'feder', u'fund', u'mirani', u'memori'] [u'ferguson', u'blow', u'away', u'power', u'edward'] [u'fear', u'dead', u'china', u'flood'] [u'firefight', u'derbi', u'blaze', u'suspici'] [u'forc', u'stay', u'aliv'] [u'black', u'wari', u'wallabi'] [u'charg', u'store', u'theft', u'remand', u'custodi'] [u'fourteen', u'kill', u'truck', u'accid', u'southern'] [u'fraser', u'juri', u'ask', u'believ'] [u'text', u'bush', u'declar', u'major', u'fight', u'iraq'] [u'tanker', u'crash', u'close', u'bruce', u'hway'] [u'gene', u'provid', u'shrink', u'proof', u'wool'] [u'ger', u'throw', u'titl', u'away', u'mcleish'] [u'tell', u'resist', u'pressur', u'resign'] [u'pizzonia', u'time', u'montoya', u'tell', u'jaguar'] [u'gold', u'probe', u'permit', u'seek', u'charter', u'tower'] [u'govt', u'appoint', u'hreoc', u'chief'] [u'govt', u'generos', u'help', u'pocket', u'arafura', u'game'] [u'govt', u'send', u'troop', u'iraq'] [u'govt', u'deadlock', u'health', u'fund'] [u'grain', u'giant', u'talk'] [u'group', u'sure', u'council', u'park', u'site'] [u'henri', u'name', u'writer', u'player', u'year'] [u'high', u'hop', u'onshor', u'field'] [u'human', u'shield', u'speak', u'ralli'] [u'hunter', u'economi', u'power'] [u'imam', u'peac', u'prayer', u'tens', u'falluja'] [u'india', u'announc', u'gestur', u'hope', u'pakistan'] [u'japanes', u'rooki', u'grab', u'share', u'lead'] [u'journalist', u'danger', u'spot', u'reveal'] [u'kiwi', u'book', u'tuneup', u'friend'] [u'krivtsov', u'win', u'stage', u'bertoletti', u'protect', u'overal'] [u'laker', u'beat', u'wolv', u'close', u'seri'] [u'lara', u'defend', u'toss', u'decis'] [u'lawyer', u'welcom', u'releas', u'report'] [u'luxuri', u'charter', u'boat', u'sink', u'coast'] [u'magistr', u'reluct', u'jail', u'fishermen'] [u'mallorca', u'hinder', u'undef', u'real', u'madrid', u'half'] [u'face', u'court', u'home', u'invas'] [u'face', u'drug', u'charg'] [u'market', u'lose', u'grind', u'bank', u'resourc', u'slip'] [u'martyn', u'windi', u'seri'] [u'martyn', u'rule', u'windi', u'dayer'] [u'mayor', u'confid', u'stanwel', u'spin', u'off'] [u'mayor', u'kill', u'sicili', u'shoot'] [u'mayor', u'seek', u'mine', u'assur'] [u'meet', u'hear', u'mix', u'respons', u'timber', u'plan'] [u'melbourn', u'club', u'host', u'british', u'open', u'qualifi'] [u'melbourn', u'golf', u'club', u'host', u'british', u'open', u'qualifi'] [u'melbourn', u'world', u'match', u'seal'] [u'mexican', u'kill', u'link', u'organ', u'suppli', u'racket'] [u'mexican', u'rooki', u'italian', u'surpris', u'share', u'lpga', u'lead'] [u'minist', u'air', u'youth', u'shelter', u'support', u'concern'] [u'molik', u'cautious', u'dokic', u'return'] [u'montgomeri', u'target', u'record'] [u'job', u'wagga', u'wagga'] [u'support', u'seek', u'festiv'] [u'injur', u'vietnam', u'blast'] [u'mother', u'child', u'flee', u'burn', u'hous'] [u'push', u'rail', u'cross', u'overpass'] [u'nation', u'demand', u'answer', u'shelv', u'rail', u'project'] [u'navi', u'ship', u'head', u'albani'] [u'neverfail', u'board', u'urg', u'reject', u'coke', u'takeov'] [u'nevill', u'month'] [u'ferrari', u'make', u'slow', u'start'] [u'korea', u'offici', u'aboard', u'pong', u'downer'] [u'concern', u'spark', u'border', u'closur'] [u'oppon', u'medicar', u'reform', u'meet'] [u'opposit', u'accus', u'carr', u'govt', u'threat'] [u'panel', u'review', u'submiss'] [u'recal', u'cost', u'mayn', u'million'] [u'parreira', u'winless', u'brazil', u'hold', u'mexico'] [u'patient', u'return', u'cunderdin', u'hospit'] [u'perman', u'doctor', u'wagin'] [u'interven', u'health', u'fund', u'minist'] [u'polic', u'chief', u'sack', u'quak', u'spark', u'riot'] [u'polic', u'chief', u'sack', u'turkish', u'quak', u'citi'] [u'polic', u'happi', u'race', u'crowd', u'behaviour'] [u'polic', u'seek', u'help'] [u'polic', u'seiz', u'drug', u'worth', u'perth'] [u'power', u'station', u'contract', u'worker', u'consid'] [u'prepar', u'underway', u'final', u'kart', u'race'] [u'pressur', u'pizzonia', u'injur', u'jaguar', u'mechan'] [u'hart', u'excav', u'rais', u'chariti', u'fund'] [u'promina', u'float', u'close', u'retail', u'investor'] [u'protest', u'target', u'sharehold'] [u'call', u'job', u'child', u'protect'] [u'psychiatr', u'evid', u'hear', u'stab', u'trial'] [u'puplick', u'quit', u'amid', u'abus', u'power'] [u'rafiqu', u'star', u'ball', u'bangladesh'] [u'rebellin', u'upset', u'zabel', u'henning', u'tower', u'race'] [u'record', u'crowd', u'flock', u'agfest'] [u'report', u'deni', u'public', u'complaint', u'amid', u'wood', u'chip'] [u'report', u'find', u'hollingworth', u'show'] [u'river', u'battl', u'snatch', u'victori'] [u'rural', u'advisori', u'council', u'member', u'drought', u'impact'] [u'saddam', u'doppelgang', u'seek', u'stage'] [u'saleyard', u'agreement', u'promis', u'good', u'return'] [u'sar', u'virus', u'mutat', u'research'] [u'indigen', u'communiti', u'water', u'suppli'] [u'schuettler', u'roll', u'munich'] [u'search', u'continu', u'miss'] [u'second', u'alcohol', u'knock', u'servic', u'station'] [u'second', u'puckapuny', u'kangaroo', u'cull', u'rais'] [u'shoot', u'death', u'spark', u'move', u'toughen', u'bail', u'law'] [u'sicili', u'shoot', u'spark', u'fear'] [u'song', u'sampl', u'iraqi', u'inform', u'minist'] [u'southern', u'cross', u'replica', u'stay'] [u'state', u'launch', u'hotlin', u'school', u'secur'] [u'state', u'reject', u'health', u'fund', u'deal'] [u'steam', u'train', u'plan', u'face', u'hurdl'] [u'studi', u'help', u'determin', u'quak', u'probabl'] [u'surgic', u'mask', u'best', u'sar', u'guard', u'studi'] [u'tassi', u'engin', u'contract'] [u'bird', u'sink', u'swift'] [u'teenag', u'argentinian', u'heiress', u'kidnap'] [u'teenag', u'gang', u'face', u'court', u'crime', u'spree'] [u'tenant', u'danger', u'lose', u'accommod'] [u'thousand', u'attend', u'gaza', u'raid', u'victim', u'funer'] [u'thousand', u'fewer', u'spot', u'figur'] [u'dead', u'sydney', u'pile'] [u'tiger', u'prove', u'point'] [u'town', u'face', u'harsher', u'water', u'restrict'] [u'trade', u'narrow'] [u'trader', u'seek', u'support', u'surveil', u'camera'] [u'uefa', u'fin', u'england', u'racist', u'fan'] [u'union', u'want', u'council', u'staff'] [u'union', u'welcom', u'equal', u'textil', u'outwork'] [u'unit', u'turn', u'screw', u'gunner'] [u'detain', u'regim', u'leader'] [u'prevail', u'iraq', u'bush'] [u'warn', u'israel', u'watch', u'civilian'] [u'vecci', u'seek', u'region', u'infrastructur', u'boost'] [u'venus', u'warsaw', u'quarter', u'final', u'hantuchova'] [u'polic', u'racism', u'signific', u'problem', u'report'] [u'vict', u'govt', u'approv', u'bairnsdal', u'nurs', u'home'] [u'vogt', u'vow', u'fight'] [u'map', u'industri', u'pollut'] [u'polic', u'seiz', u'huge', u'illeg', u'abalon', u'haul'] [u'water', u'polic', u'escort', u'torpedo', u'boat', u'crew'] [u'west', u'face', u'chelsea', u'desper', u'derbi'] [u'dock', u'major', u'rice', u'shipment', u'iraq'] [u'wildcat', u'releas', u'black'] [u'world', u'director', u'play', u'payment'] [u'young', u'gun', u'nadal', u'gasquet', u'ancic', u'queen', u'club'] [u'kashmiri', u'kill', u'grenad', u'miss', u'target'] [u'submarin', u'dead', u'china', u'worst', u'naval', u'accid'] [u'act', u'bicci', u'raaf'] [u'star', u'game', u'win', u'leagu', u'world', u'seri'] [u'play', u'fail', u'split', u'bidder'] [u'argentina', u'flood', u'kill', u'evacu'] [u'asian', u'like', u'british', u'curri', u'hous'] [u'aussi', u'clean', u'sweep', u'super', u'action'] [u'aust', u'polocross', u'final'] [u'baghdad', u'polic', u'chief', u'step', u'asid', u'younger'] [u'black', u'unsur', u'futur'] [u'blair', u'say', u'comfort'] [u'bridal', u'waltz', u'polic', u'chase', u'thief'] [u'british', u'cameraman', u'kill', u'isra', u'crossfir'] [u'british', u'town', u'welcom', u'dare', u'gooder'] [u'broadband', u'technolog', u'polit', u'agenda'] [u'china', u'agre', u'team', u'visit', u'taiwan'] [u'china', u'hail', u'dead', u'crew', u'loyal', u'protector'] [u'china', u'tightlip', u'disast', u'caus'] [u'church', u'leader', u'rebuild', u'iraq'] [u'colin', u'powel', u'go', u'syria', u'listen'] [u'burn', u'giant', u'tree', u'damag'] [u'crusad', u'clinch', u'semi', u'spot'] [u'danger', u'wheat', u'virus', u'toowoomba'] [u'democrat', u'drink', u'drive', u'amend'] [u'dufaux', u'claim', u'yellow', u'jersey', u'tour', u'romandi'] [u'duval', u'keep', u'perspect', u'despit', u'struggl'] [u'eagl', u'banish', u'demon', u'hawthorn', u'say', u'goodby', u'blue'] [u'england', u'puzzl', u'world', u'championship'] [u'penguin', u'boss', u'save', u'vener', u'publish'] [u'team', u'persuad', u'traction', u'control'] [u'fail', u'iranian', u'asylum', u'seeker', u'march', u'order'] [u'farmer', u'battl', u'plagu', u'armi', u'worm'] [u'father', u'exoner', u'polic', u'teen', u'chase', u'death'] [u'father', u'teenag', u'kill', u'high', u'speed', u'chase'] [u'ferguson', u'nistelrooy', u'month', u'award'] [u'day', u'play', u'second', u'sris', u'kiwi', u'test', u'call'] [u'arrest', u'aviv', u'attack'] [u'flawless', u'ferrero', u'valencia', u'semi'] [u'flower', u'enthusiast', u'disappoint', u'crowd', u'number'] [u'foreign', u'worker', u'hostag', u'free', u'nigeria'] [u'treat', u'truck', u'collis'] [u'freeman', u'mexican', u'challeng'] [u'govt', u'support', u'governor', u'general', u'slip'] [u'govt', u'provid', u'support'] [u'gunner', u'pledg', u'fight', u'death'] [u'haa', u'doubt', u'hamburg', u'comeback', u'plan', u'unclear'] [u'hawk', u'blue', u'swan', u'port', u'eagl'] [u'health', u'fund', u'plan', u'lack', u'doctor', u'input', u'minist'] [u'helmet', u'mandatori', u'cycl', u'profession'] [u'henri', u'win', u'second', u'player', u'year', u'award'] [u'home', u'brand', u'paracetamol', u'pull', u'woolworth'] [u'hop', u'fade', u'student', u'trap', u'rubbl'] [u'howard', u'deni', u'tri', u'protect', u'governor', u'general'] [u'howard', u'enjoy', u'bush', u'hospit'] [u'indigen', u'communiti', u'suscept', u'heart'] [u'inter', u'vieira', u'valencia', u'fin', u'uefa'] [u'investig', u'probe', u'african', u'crash'] [u'iraqi', u'uncov', u'gulf', u'mass', u'grave'] [u'iraq', u'stabilis', u'forc', u'deploy', u'month'] [u'irish', u'elect', u'postpon', u'boost', u'unionist', u'ahern'] [u'isra', u'armi', u'regret', u'kill', u'journalist'] [u'jaguar', u'pizzonia', u'hope'] [u'japanes', u'premier', u'european', u'tour'] [u'kenya', u'propos', u'tough', u'anti', u'terror'] [u'killer', u'flood', u'worst', u'centuri'] [u'koubek', u'spoil', u'schuettler', u'homecom'] [u'charg', u'southsid', u'stab'] [u'market', u'close', u'trade', u'oversea'] [u'medic', u'confer', u'number', u'affect', u'sar'] [u'medic', u'bioterror', u'respons', u'professor'] [u'monti', u'stalk', u'omalley', u'itali'] [u'say', u'govt', u'touch', u'aust', u'health'] [u'murder', u'victim', u'dump', u'park'] [u'ferrari', u'perform', u'qualifi'] [u'ferrari', u'qualifi'] [u'law', u'threaten', u'canada', u'trade'] [u'nigerian', u'radio', u'station', u'fals', u'sar'] [u'nigerian', u'return', u'poll'] [u'marriag', u'catch', u'aid', u'grant'] [u'ogilvi', u'trail', u'verplank', u'orlean'] [u'ministri', u'post', u'split', u'iraqi'] [u'dead', u'injur', u'wilcannia', u'truck', u'accid'] [u'pakistani', u'polic', u'alert', u'threat'] [u'pakistan', u'inform', u'visit', u'india'] [u'recal', u'widen', u'prescript', u'drug'] [u'scandal', u'extend', u'prescript', u'drug'] [u'parker', u'miss', u'tiger', u'clash'] [u'landslid', u'toll', u'rise'] [u'polic', u'appeal', u'wit', u'tripl', u'fatal'] [u'polic', u'clash', u'protest', u'quak', u'respons'] [u'polic', u'probe', u'wed', u'parti', u'link', u'bash'] [u'portug', u'host', u'america'] [u'powel', u'press', u'lebanon', u'crush', u'hezbollah'] [u'powel', u'push', u'lebanon', u'road', u'support'] [u'qanta', u'attend', u'like', u'leav', u'hospit', u'today'] [u'qanta', u'crew', u'member', u'undergo', u'sar', u'test'] [u'qanta', u'flight', u'attend', u'await', u'sar', u'test', u'result'] [u'qanta', u'flight', u'attend', u'suspect', u'sar'] [u'research', u'develop', u'drought', u'econom', u'model'] [u'rock', u'climber', u'cut', u'save'] [u'roo', u'deni', u'carey', u'affect', u'caus'] [u'sar', u'death', u'toll', u'climb', u'virus', u'mutat'] [u'second', u'ceas', u'pact', u'shore', u'ivori', u'coast', u'peac'] [u'shania', u'twain', u'land', u'deal', u'worri', u'zealand', u'hiker'] [u'skaif', u'go', u'shootout'] [u'soccer', u'aust', u'delay', u'board', u'decis'] [u'soccer', u'aust', u'determin', u'futur'] [u'storm', u'leav', u'knight', u'thunderstruck', u'panther'] [u'struggl', u'pizzonia', u'keep', u'spirit'] [u'premier', u'call', u'resign'] [u'tassi', u'welfar', u'call', u'nation', u'strategi'] [u'teenag', u'girl', u'die', u'crash', u'polic', u'pursuit'] [u'kill', u'injur', u'vietnam', u'blast'] [u'deni', u'folic', u'acid', u'pill', u'unsaf'] [u'say', u'folic', u'acid', u'pill', u'market', u'safe'] [u'tiger', u'return', u'rejuven', u'germani'] [u'travel', u'ask', u'help', u'sar', u'safe'] [u'true', u'glow', u'shin', u'queensland', u'guinea'] [u'turkey', u'quak', u'toll', u'reach'] [u'kill', u'injur', u'landslid'] [u'want', u'iraqi', u'custodi'] [u'arrest', u'aviv', u'bomb'] [u'ulihrach', u'cop', u'year', u'dope'] [u'unbeaten', u'freita', u'risk', u'crown', u'barrio'] [u'venus', u'stag', u'stun', u'fightback'] [u'verplank', u'take', u'clubhous', u'lead'] [u'waugh', u'make', u'histori', u'aussi', u'riot'] [u'waugh', u'impress', u'centuri', u'barbado'] [u'waugh', u'slam', u'pitch', u'record', u'break', u'knock'] [u'wheat', u'virus', u'pose', u'danger', u'crop', u'agforc'] [u'younger', u'mear', u'win', u'gold'] [u'aussi', u'quarantin', u'sar', u'hysteria'] [u'billion', u'worth', u'trade', u'tabl'] [u'ralli', u'nepal', u'king'] [u'aussi', u'quarantin', u'india', u'report'] [u'aborigin', u'look', u'discourag', u'uluru', u'climber'] [u'accid', u'victim', u'die', u'catch'] [u'leadership', u'stay', u'crean', u'beazley'] [u'review', u'health', u'rebat', u'bulk', u'bill', u'boost'] [u'member', u'saddam', u'circl', u'captur'] [u'anti', u'bush', u'play', u'withdraw', u'director', u'attack'] [u'argentin', u'flood', u'death', u'toll', u'continu', u'rise'] [u'dead', u'landslid'] [u'windi', u'test'] [u'aussi', u'sar', u'watch', u'indian', u'hospit'] [u'aussi', u'travel', u'releas', u'sar', u'quarantin'] [u'aust', u'command', u'forc', u'follow'] [u'australia', u'stage', u'reloc', u'women', u'world'] [u'aust', u'stockpil', u'smallpox', u'vaccin'] [u'ballestero', u'disqualifi', u'gonzalez', u'take', u'italian'] [u'beatti', u'back', u'recoup', u'cost', u'ryan'] [u'beij', u'school', u'remain', u'close'] [u'bennett', u'tip', u'hegarti', u'sing'] [u'best', u'swap', u'booz', u'gambl', u'report'] [u'blood', u'run', u'time', u'napl', u'miracl'] [u'brave', u'investor', u'head', u'afghanistan'] [u'break', u'mean', u'curtain', u'latham'] [u'bronco', u'squash', u'terribl', u'tiger', u'dragon', u'beat', u'shark'] [u'build', u'collaps', u'cairo', u'buri', u'resid'] [u'bush', u'offer', u'help', u'quak', u'death', u'toll', u'rise'] [u'mobil', u'phone', u'commerc', u'industri'] [u'call', u'resign', u'grow'] [u'celtic', u'ranger', u'nerv', u'test'] [u'charlton', u'ruud', u'awaken', u'hammer', u'hang'] [u'chemic', u'tanker', u'dock', u'crew', u'fall'] [u'china', u'report', u'sar', u'case', u'death'] [u'claim', u'aust', u'health', u'unprepar', u'terrorist'] [u'consum', u'warn', u'home', u'brand', u'painkil'] [u'costello', u'krall'] [u'costello', u'rule', u'cut', u'ahead', u'budget'] [u'costello', u'say', u'leadership', u'riddl', u'reveal'] [u'crew', u'retriev', u'cours', u'capsul'] [u'cycl', u'tour', u'boost', u'local', u'economi'] [u'daughter', u'defend', u'governor', u'general'] [u'hoya', u'issu', u'warn', u'mosley'] [u'democrat', u'push', u'resign'] [u'democrat', u'push', u'veteran', u'need', u'ahead', u'budget'] [u'announc', u'iraq', u'stabilis', u'forc'] [u'evergreen', u'agassi', u'aim', u'conquer', u'rome'] [u'exet', u'releg', u'footbal', u'leagu'] [u'fashion', u'week', u'kick', u'sydney'] [u'fear', u'nuclear', u'test', u'caus', u'genet'] [u'feder', u'face', u'fli', u'finn', u'munich', u'final'] [u'fergi', u'hail', u'dutch', u'maestro'] [u'ferrero', u'rochus', u'provid', u'appetis', u'final'] [u'fifa', u'agre', u'principl', u'team', u'world'] [u'ford', u'skaif', u'slip'] [u'iraqi', u'deputi', u'loos', u'truth', u'bush'] [u'free', u'medic', u'clinic', u'open', u'basra'] [u'funni', u'cide', u'win', u'kentucki', u'derbi'] [u'gayl', u'glad'] [u'germani', u'foil', u'nuke', u'deton', u'export', u'iran', u'report'] [u'girl', u'surviv', u'hour', u'ordeal', u'rubbl'] [u'glori', u'thrash', u'power'] [u'green', u'block', u'propos'] [u'guevera', u'upstag', u'freeman', u'world', u'record'] [u'hard', u'ceasefir', u'crumbl', u'ivori', u'coast'] [u'health', u'minist', u'warn', u'medicar', u'lie'] [u'howard', u'bush', u'discuss', u'billion', u'free', u'trade'] [u'howard', u'bush', u'talk', u'wrap', u'texa'] [u'howard', u'worthi', u'gallon', u'bush'] [u'tough', u'world', u'boycott'] [u'india', u'lift', u'sar', u'quarantin', u'aust', u'travel'] [u'india', u'quarantin', u'sar', u'hysteria', u'aust'] [u'iraqi', u'stage', u'rare', u'ralli'] [u'iraq', u'stabilis', u'plan', u'wont', u'divid', u'greec'] [u'israel', u'halt', u'dismantl', u'rogu', u'outpost'] [u'crew', u'touchdown'] [u'juve', u'edg', u'closer', u'titl', u'draw', u'lazio'] [u'juve', u'wari', u'celebr', u'soon'] [u'kerri', u'mear', u'claim', u'nation', u'sprint', u'titl'] [u'kestrel', u'roll', u'sandpip'] [u'labor', u'target', u'predatori', u'busi'] [u'lara', u'sarwan', u'stand', u'aust', u'victori'] [u'lebanon', u'arrest', u'alleg', u'fast', u'food', u'bomb'] [u'lion', u'roar', u'louder', u'cat', u'saint', u'sink', u'bulldog'] [u'lyon', u'regain', u'summit'] [u'rob', u'fiji', u'hotel', u'room'] [u'maralinga', u'student', u'welcom', u'school'] [u'mclaren', u'offer', u'wurz', u'jaguar'] [u'montgomeri', u'stun', u'duel'] [u'natasha', u'ryan', u'await', u'polic', u'decis'] [u'natur', u'rock', u'format', u'affect', u'bushfir'] [u'nauruan', u'sport', u'hero', u'elect', u'parliament'] [u'nauru', u'incumb', u'return', u'presidenti', u'elect'] [u'nigeria', u'strike', u'hostag', u'head', u'shore'] [u'govt', u'defend', u'state', u'school', u'safeti'] [u'older', u'mear', u'claim', u'nation', u'sprint', u'titl'] [u'toppl', u'mountain'] [u'pakistan', u'reciproc', u'india', u'diplomat', u'gestur'] [u'perez', u'sanchez', u'take', u'lead', u'tour', u'romandi'] [u'welcom', u'east', u'road'] [u'polic', u'await', u'autopsi', u'suspici', u'death'] [u'pope', u'arriv', u'spain', u'creat', u'saint'] [u'pope', u'urg', u'spanish', u'youth', u'nurtur', u'peac'] [u'powel', u'rule', u'attack', u'syria'] [u'presid', u'send', u'condol', u'submarin'] [u'pressur', u'mount', u'hollingworth', u'resign'] [u'protea', u'pois', u'rout'] [u'psychologist', u'standbi', u'counsel', u'return', u'troop'] [u'real', u'thrash', u'mallorca'] [u'cross', u'renew', u'access', u'iraq', u'pow'] [u'refuge', u'influx', u'exacerb', u'uganda', u'cholera', u'outbreak'] [u'report', u'face', u'jail', u'undercov', u'sar', u'coverag'] [u'rescu', u'oper', u'quak', u'toll', u'hit'] [u'rescu', u'team', u'locat', u'crew'] [u'ruud', u'awaken', u'charlton', u'canio', u'give', u'hammer'] [u'sar', u'impact', u'aquacultur', u'industri'] [u'sar', u'virus', u'lifespan', u'detect'] [u'schu', u'put', u'ferrari', u'pole'] [u'worker', u'cash', u'fuel', u'starv', u'motorist'] [u'shark', u'dampen', u'spirit'] [u'slow', u'steadi', u'windi', u'batsmen'] [u'slushi', u'outfield', u'delay', u'start', u'second', u'sris', u'test'] [u'south', u'africa', u'eas', u'dhaka', u'seri'] [u'space', u'junk', u'light'] [u'space', u'station', u'trio', u'land', u'safe', u'kazakh', u'desert'] [u'stuttgart', u'near', u'champion', u'leagu', u'away'] [u'surf', u'life', u'save', u'south', u'australia', u'face', u'closur'] [u'swiss', u'german', u'post', u'hockey', u'win', u'finland', u'romp'] [u'taliban', u'leader', u'vow', u'continu', u'anti', u'jihad'] [u'tamil', u'leader', u'seek', u'gun', u'self', u'defenc'] [u'teenag', u'kill', u'singl', u'vehicl', u'accid'] [u'dismiss', u'folat', u'cover', u'claim'] [u'process', u'review'] [u'kill', u'japanes'] [u'player', u'blow', u'didgeridoo', u'festiv'] [u'envoy', u'brief', u'israel', u'powel', u'syria', u'talk'] [u'forum', u'develop', u'action', u'plan', u'spam', u'control'] [u'pip', u'aust', u'women', u'world', u'host', u'offici'] [u'venus', u'angri', u'gentl', u'touch'] [u'venus', u'battl', u'doubter'] [u'verplank', u'maintain', u'shoot', u'lead', u'orlean'] [u'restaur', u'close', u'door', u'potenti', u'sar'] [u'windi', u'struggl', u'avoid', u'follow'] [u'younger', u'struggl', u'kick', u'junk', u'food', u'habit'] [u'zvonareva', u'martinez', u'granado', u'gun'] [u'turn', u'brisban', u'labour', u'march'] [u'year', u'round', u'trip', u'bring', u'rock', u'sampl'] [u'aborigin', u'remain', u'return', u'coorong', u'tribe'] [u'accus', u'snowtown', u'killer', u'court', u'outburst'] [u'investig', u'mele'] [u'investig', u'mele'] [u'african', u'leader', u'meet', u'zimbabw', u'crisi'] [u'algeria', u'contact', u'kidnapp', u'tourist'] [u'alonso', u'give', u'spanish', u'fan', u'celebr'] [u'share', u'lose'] [u'anderson', u'deflect', u'blame', u'shark', u'winless'] [u'anderson', u'support', u'properti', u'right', u'pledg'] [u'anglican', u'head', u'concern', u'church', u'reput'] [u'earthquak', u'rock', u'north', u'west', u'china'] [u'archer', u'escap', u'mele', u'investig', u'continu'] [u'asic', u'want', u'guilti', u'elliott', u'ban'] [u'aviat', u'inquiri', u'fli', u'riverina'] [u'barrett', u'clear', u'break', u'ankl'] [u'bayer', u'leverkusen', u'claw', u'safeti'] [u'beatti', u'support', u'natasha', u'ryan', u'charg'] [u'beazley', u'push', u'terror', u'ministri'] [u'beij', u'close', u'access', u'reservoir'] [u'wave', u'creat', u'harbour', u'entri', u'danger'] [u'billion', u'eras', u'valu'] [u'black', u'face', u'test', u'examin', u'extent', u'facial'] [u'bomber', u'struggl', u'lift', u'tiger', u'clash'] [u'brawl', u'leav', u'tribun', u'work'] [u'brighton', u'releg', u'stoke', u'surviv', u'drop'] [u'british', u'claim', u'place', u'trolley', u'skill'] [u'bronco', u'boss', u'say', u'problem'] [u'bronz', u'aussi', u'longer'] [u'budget', u'crucial', u'time', u'crean', u'beazley'] [u'build', u'figur', u'reveal', u'prefer', u'unit'] [u'bundaberg', u'develop', u'plan', u'stall'] [u'state', u'consid'] [u'maroney', u'tell', u'driver'] [u'call', u'extra', u'disabl', u'fund', u'budget'] [u'cannabi', u'ralli', u'go'] [u'carr', u'deni', u'push', u'puplick'] [u'cash', u'strap', u'solomon', u'struggl', u'afford'] [u'champion', u'angler', u'bag', u'barra'] [u'china', u'report', u'sar', u'death'] [u'chines', u'submarin', u'suffoc', u'report'] [u'claim', u'hollingworth', u'damag', u'offic'] [u'claim', u'wine', u'profit', u'slump', u'disast'] [u'concern', u'air', u'bequeath', u'hous'] [u'concern', u'air', u'wander', u'cattl'] [u'condobolin', u'die', u'crash'] [u'mistak', u'stripper', u'fondl', u'hen', u'parti'] [u'copi', u'barrett', u'clear', u'break', u'ankl'] [u'coron', u'hear', u'evid', u'shoot', u'death'] [u'council', u'join', u'nation', u'aviat', u'probe'] [u'defenc', u'chief', u'attend', u'dawn', u'servic'] [u'depor', u'close', u'real'] [u'doctor', u'sue', u'tell', u'result'] [u'dragon', u'prove', u'good', u'shark'] [u'draw', u'put', u'ranger', u'titl', u'hop', u'jeopardi'] [u'drysdal', u'paint', u'sell', u'million'] [u'earthquak', u'rattl', u'china', u'dead'] [u'east', u'asian', u'state', u'fail', u'children'] [u'elect', u'count', u'nauru', u'enter', u'final', u'stage'] [u'elura', u'plan', u'promis', u'profit'] [u'escarp', u'group', u'defend', u'delay', u'manag', u'plan'] [u'factori', u'caus', u'damag'] [u'famili', u'influenc', u'import', u'stop', u'obes'] [u'feder', u'triumph', u'munich'] [u'ferrero', u'win', u'valencia', u'open'] [u'feyenoord', u'heat', u'ajax'] [u'firman', u'repay', u'jordan', u'faith', u'point', u'spain'] [u'flesch', u'make', u'breakthrough', u'orlean'] [u'taliban', u'leader', u'issu', u'holi', u'warn'] [u'bait', u'help', u'bilbi', u'popul'] [u'freeman', u'play', u'catch', u'event'] [u'freo', u'bomber', u'relief'] [u'talk', u'futur', u'costello'] [u'good', u'result', u'albani', u'elect'] [u'gough', u'beazley', u'labor', u'leader'] [u'govt', u'concern', u'attack', u'transit', u'offic'] [u'govt', u'give', u'asthma', u'program', u'school'] [u'govt', u'senat', u'say', u'touch'] [u'govt', u'stay', u'nigger', u'brown', u'controversi'] [u'gronberg', u'surg', u'italian', u'open', u'victori'] [u'group', u'promis', u'fight', u'stop', u'develop', u'plan'] [u'hamilton', u'take', u'tour', u'romandi'] [u'health', u'minist', u'meet', u'midwiv'] [u'health', u'unit', u'face', u'sar', u'challeng'] [u'hollingworth', u'refus', u'step'] [u'home', u'hostag', u'plead', u'guilti'] [u'hospit', u'fund', u'paediatr', u'ward'] [u'howard', u'visit', u'troop', u'qatar'] [u'hundr', u'march', u'labour'] [u'industri', u'accid', u'trap'] [u'ingram', u'urg', u'bush', u'burn'] [u'injur', u'venus', u'conced', u'defeat'] [u'iraqi', u'mass', u'grave'] [u'isra', u'palestinian', u'meet'] [u'leader', u'charg', u'bali', u'bomb'] [u'advertis', u'slump'] [u'provid', u'busi'] [u'johnson', u'target', u'montgomeri'] [u'killer', u'tornado', u'pummel', u'midwest'] [u'lack', u'fund', u'crippl', u'canberra', u'school'] [u'volunt', u'lifesav', u'season'] [u'legal', u'breakthrough', u'gulf', u'syndrom'] [u'legal', u'breakthrough', u'gulf', u'syndrom'] [u'letter', u'confirm', u'specialist', u'return', u'work'] [u'lion', u'better', u'scott'] [u'local', u'govt', u'group', u'happi', u'voter', u'turnout'] [u'lord', u'mayor', u'call', u'resign'] [u'macgil', u'say', u'patienc', u'victori'] [u'magpi', u'fluster', u'form', u'slump'] [u'manag', u'flop', u'america', u'disast'] [u'die', u'truck', u'crash'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'face', u'court', u'stab'] [u'titl', u'arsenal', u'lose', u'leed'] [u'mauresmo', u'beat', u'injur', u'venus', u'warsaw'] [u'maverick', u'piston', u'advanc', u'quarter'] [u'mayor', u'defend', u'councillor', u'conting'] [u'mayor', u'push', u'rail', u'link', u'solut'] [u'mcewen', u'tip', u'cabinet', u'promot'] [u'merredin', u'shire', u'presid', u'lose', u'council', u'spot'] [u'mexican', u'confess', u'lure', u'women', u'death'] [u'mobil', u'poll', u'prove', u'posit'] [u'underway', u'turkish', u'quak'] [u'product', u'add', u'ban', u'list'] [u'motorcyclist', u'slide', u'truck', u'sydney'] [u'say', u'seat'] [u'urg', u'farm', u'group', u'maintain', u'voic'] [u'museum', u'unit', u'tackl', u'crime', u'centuri'] [u'mutant', u'trounc', u'offic', u'competitor'] [u'nauru', u'parliament', u'elect', u'presid'] [u'navi', u'abandon', u'inquest', u'hear'] [u'averag'] [u'mayor', u'kalgoorli', u'boulder'] [u'news', u'gain', u'offset', u'loss'] [u'shire', u'presid', u'broom'] [u'need', u'bush', u'hick', u'habib'] [u'north', u'gear', u'labour'] [u'request', u'hick', u'hill'] [u'inquiri', u'focus', u'home', u'warranti', u'insur'] [u'america', u'campaign', u'crippl', u'begin'] [u'opposit', u'disput', u'budget', u'surplus', u'forecast'] [u'orica', u'post', u'million', u'half', u'year', u'loss'] [u'orica', u'price', u'ralli', u'despit', u'loss'] [u'pair', u'face', u'court', u'bash', u'death'] [u'palestinian', u'shoot', u'cameraman', u'isra'] [u'parkland', u'project', u'finish', u'decemb'] [u'perth', u'student', u'check', u'sar'] [u'take', u'vote', u'confid', u'livestock'] [u'pizzonia', u'stay', u'jaguar'] [u'plan', u'track', u'horsham', u'cabinet', u'visit'] [u'meet', u'chief'] [u'polic', u'appeal', u'help', u'pizza', u'driver', u'theft'] [u'polic', u'investig', u'fatal', u'border', u'crash'] [u'polic', u'investig', u'perth'] [u'polic', u'seiz', u'properti', u'drug', u'raid'] [u'polic', u'road', u'pursuit'] [u'polocross', u'group', u'meet', u'warwick'] [u'poor', u'indigen', u'hous', u'surpris', u'atsic'] [u'primus', u'port', u'crow', u'lose', u'smart'] [u'public', u'get', u'lake', u'boga', u'warn'] [u'coalit', u'promis', u'beef', u'scholarship'] [u'prepar', u'strike'] [u'raider', u'sign', u'tongu'] [u'rain', u'stop', u'final', u'race', u'meet'] [u'red', u'lose', u'latham', u'tune'] [u'renew', u'optim', u'grain', u'grower'] [u'report', u'french', u'divis', u'match'] [u'report', u'german', u'match'] [u'research', u'consortium', u'develop', u'sar', u'test'] [u'richard', u'enter', u'record', u'book'] [u'right', u'case', u'nation', u'implic'] [u'tinto', u'plan', u'close', u'diamond'] [u'riot', u'erupt', u'china', u'locat', u'sar', u'centr'] [u'river', u'irrig', u'continu', u'pump'] [u'rush', u'drought', u'applic'] [u'cyclist', u'die', u'collis', u'truck'] [u'safeti', u'probe', u'launch', u'boat', u'mishap'] [u'sar', u'blame', u'drop', u'tourism'] [u'sar', u'blame', u'fall', u'advertis', u'tourism', u'job'] [u'sar', u'forc', u'suspend', u'fish'] [u'sar', u'impact', u'abalon', u'industri'] [u'sar', u'quarantin', u'reaction'] [u'schumach', u'guid', u'ferrari', u'spain'] [u'search', u'continu', u'scramjet', u'engin'] [u'swap', u'navi', u'scheme', u'unlik', u'includ', u'region'] [u'second', u'king', u'bros', u'creditor', u'meet', u'hold'] [u'slump', u'tourism', u'industri', u'predict'] [u'snail', u'hunt', u'end', u'drown', u'tragedi'] [u'snapper', u'farm', u'unabl', u'sourc', u'fingerl'] [u'soccer', u'australia', u'face', u'hurdl', u'host', u'women'] [u'special', u'forc', u'command'] [u'speech', u'pathologist', u'improv', u'servic'] [u'spur', u'duncan', u'name'] [u'stockhors', u'championship', u'begin', u'darl', u'down'] [u'storm', u'thrash', u'injur', u'knight'] [u'strike', u'moot', u'amidst', u'labour', u'backdrop'] [u'support', u'manjimup', u'chang'] [u'suspect', u'sar', u'patient', u'remain', u'darwin', u'hospit'] [u'swimmer', u'offici', u'share', u'idea', u'nation'] [u'swimmer', u'urg', u'care', u'rough', u'condit'] [u'teacher', u'auction', u'warn', u'vocal', u'problem'] [u'theophan', u'appeal', u'begin', u'melbourn'] [u'theophan', u'appeal', u'sentenc'] [u'spanish', u'grand', u'prix', u'team', u'team'] [u'thousand', u'gather', u'brisban', u'labour', u'march'] [u'tiger', u'employ', u'nicknam', u'tactic'] [u'surgeon', u'converg', u'brisban'] [u'traci', u'happi', u'pole', u'london', u'cart', u'race'] [u'tropic', u'storm', u'kill', u'bangladesh'] [u'check', u'report', u'soldier', u'shoot', u'iraqi'] [u'union', u'call', u'adelaid', u'strike'] [u'union', u'hold', u'sugar', u'industri', u'talk', u'mackay'] [u'unsur', u'fall', u'student', u'number'] [u'upset', u'legisl', u'council', u'ballot'] [u'iraq', u'administr', u'visit', u'basra'] [u'releas', u'iraqi', u'pow'] [u'soldier', u'shoot', u'baghdad'] [u'veteran', u'launch', u'polit', u'parti'] [u'budget', u'boost', u'educ', u'tourism'] [u'govt', u'deni', u'conflict', u'wind', u'farm'] [u'video', u'refere', u'sack', u'round'] [u'violent', u'lyric', u'link', u'aggress', u'thought'] [u'commiss', u'hear', u'alleg', u'polic', u'assault'] [u'warship', u'promis', u'econom', u'boost'] [u'waterhous', u'battl', u'bookmak', u'licenc'] [u'webber', u'delight', u'point', u'jaguar'] [u'webb', u'second', u'lpga', u'event'] [u'work', u'begin', u'salt', u'intercept', u'scheme'] [u'zvonareva', u'claim', u'croatia', u'open'] [u'refus', u'anthrax', u'inject', u'govt'] [u'abbott', u'back'] [u'defend', u'popul', u'figur'] [u'pay', u'inform', u'person', u'bill', u'probe', u'tell'] [u'budget', u'deficit', u'treasur'] [u'activist', u'deni', u'accus', u'terrorist'] [u'scientist', u'work', u'contain', u'wheat', u'virus'] [u'adelaid', u'magistr', u'attend', u'bali', u'bomb', u'trial'] [u'adelaid', u'rugbi', u'world', u'ticket', u'snap'] [u'adelaid', u'world', u'ticket', u'snap'] [u'charg', u'mele'] [u'issu', u'record', u'fin'] [u'issu', u'record', u'fin', u'hargrav', u'suspend'] [u'african', u'leader', u'finish', u'meet', u'mugab'] [u'agassi', u'relinquish', u'spot'] [u'agreement', u'reach', u'icon', u'redund', u'payment'] [u'pacino', u'vote', u'greatest', u'film', u'star', u'poll'] [u'anim', u'vet', u'memori'] [u'architect', u'welcom', u'home', u'insur', u'inquiri'] [u'asic', u'probe', u'futur', u'trade'] [u'aussi', u'dollar', u'hit', u'year', u'high'] [u'bailey', u'doubt', u'origin'] [u'better', u'late', u'athen', u'olymp'] [u'bishop', u'urg', u'consid', u'resign'] [u'blowtorch', u'anim', u'cruelti', u'outrag', u'rspca'] [u'boat', u'harbour', u'lift', u'develop'] [u'broom', u'shire', u'follow', u'stinger', u'lead'] [u'budget', u'includ', u'warragul', u'polic', u'station', u'fund'] [u'bushfir', u'put', u'budget'] [u'busi', u'group', u'blast', u'live', u'wage', u'rise'] [u'fund', u'redirect', u'dairi', u'farmer'] [u'tourist', u'beach', u'safeti', u'educ'] [u'budget', u'address', u'region', u'economi'] [u'crash', u'leav', u'hospit'] [u'central', u'defi', u'downward', u'build', u'trend'] [u'chang', u'coast', u'tourism', u'promot'] [u'civoniceva', u'look', u'form', u'revers'] [u'claim', u'rescu', u'packag', u'wont', u'help', u'hors', u'race'] [u'coast', u'prioriti', u'light', u'camera'] [u'game', u'give', u'woomera'] [u'concern', u'safeti', u'iraqi', u'nuclear', u'materi'] [u'concern', u'air', u'marin', u'park', u'mine'] [u'concern', u'steal', u'gun', u'hold'] [u'contact', u'rule', u'microscop'] [u'cooma', u'remand', u'doubl', u'murder', u'charg'] [u'copi', u'hargrav', u'hand', u'match'] [u'council', u'delay', u'walkway', u'work'] [u'council', u'urg', u'help', u'stop', u'youth', u'dice', u'car'] [u'council', u'urg', u'rethink', u'chemic', u'drum'] [u'council', u'water', u'suppli', u'decis', u'pipelin'] [u'court', u'hear', u'hanson', u'spend', u'habit'] [u'court', u'reject', u'bunburi', u'killer', u'appeal'] [u'crean', u'talk', u'medicar', u'newcastl', u'visit'] [u'crean', u'unfaz', u'fall'] [u'crime', u'darwin', u'suburb', u'wors', u'detroit', u'resid'] [u'dementieva', u'sugiyama', u'beat', u'berlin'] [u'denni', u'tip', u'return', u'form', u'mclaren'] [u'detect', u'testifi', u'hanson'] [u'disney', u'seek', u'revers', u'winni', u'pooh', u'rule'] [u'eel', u'ring', u'chang'] [u'egypt', u'tell', u'palestinian', u'israel'] [u'engin', u'cours', u'need', u'industri', u'govt', u'support'] [u'expert', u'search', u'grave', u'legendari', u'gilgamesh'] [u'extra', u'fund', u'come', u'cost', u'academ'] [u'fear', u'tax', u'hurt', u'port', u'lincoln', u'travel'] [u'feder', u'govt', u'odd', u'wast', u'dump'] [u'firm', u'await', u'news', u'iraq', u'contract'] [u'fishermen', u'escap', u'kingfish', u'declin'] [u'fong', u'loss', u'surpris', u'shire', u'presid'] [u'apartheid', u'fighter', u'sisulu', u'die'] [u'fund', u'shortfal', u'end', u'post', u'natal', u'depress', u'servic'] [u'geraldton', u'mayor', u'welcom', u'hospit', u'fund'] [u'dump', u'confer', u'agenda'] [u'gold', u'price', u'start', u'recov', u'impact'] [u'govt', u'pressur'] [u'govt', u'pressur', u'decis'] [u'grant', u'council', u'state', u'prefer', u'age', u'care', u'centr'] [u'green', u'light', u'toowoomba', u'light', u'camera'] [u'group', u'say', u'evid', u'fuel', u'price', u'fix'] [u'hanson', u'fraud', u'hear', u'underway'] [u'hargrav', u'hand', u'match'] [u'hickss', u'father', u'accus', u'militari', u'play', u'mind'] [u'high', u'price', u'expect', u'livestock', u'drought'] [u'high', u'voter', u'turnout', u'ravensthorp'] [u'hill', u'defend', u'river', u'murray', u'legisl', u'committe'] [u'howe', u'long', u'season'] [u'human', u'skull', u'beach'] [u'india', u'sceptic', u'pakistan', u'nuclearis', u'offer'] [u'inherit', u'set', u'live'] [u'inland', u'railway', u'threat'] [u'inquest', u'hear', u'shoot', u'death', u'evid'] [u'investig', u'begin', u'miner', u'death'] [u'iraqi', u'vote', u'member', u'council'] [u'jackson', u'flag', u'video', u'report', u'review'] [u'japan', u'media', u'eas', u'protect', u'bill'] [u'japan', u'mask', u'politician', u'arriv', u'work'] [u'japan', u'takagi', u'set', u'indi', u'practic', u'pace'] [u'johnson', u'break', u'second', u'barrier'] [u'johnson', u'race', u'montgomeri'] [u'judg', u'sum', u'fraser', u'tripl', u'murder', u'trial'] [u'king', u'island', u'better', u'victoria'] [u'ring', u'premier', u'doubt'] [u'lewi', u'meet', u'klitschko', u'year'] [u'lighthous', u'plan', u'protest', u'leav'] [u'lion', u'lose', u'brown'] [u'local', u'iraqi', u'popul', u'reliev', u'hear'] [u'pay', u'worker', u'wage', u'rise'] [u'magistr', u'like', u'indigen', u'replac'] [u'maitland', u'mayor', u'case', u'go', u'court'] [u'maitland', u'mayor', u'underag', u'charg', u'dismiss'] [u'mandela', u'lead', u'mourn', u'sisulu'] [u'court', u'drug', u'charg'] [u'court', u'doubl', u'murder'] [u'market', u'drag', u'weight', u'news', u'corp'] [u'maroon', u'rooki'] [u'mayor', u'reject', u'marina', u'claim'] [u'valu', u'son', u'studi'] [u'meteor', u'tonight', u'melbourn', u'night', u'owl'] [u'minist', u'air', u'region', u'hous', u'concern'] [u'minist', u'stand', u'illawarra', u'escarp', u'comment'] [u'effort', u'need', u'conserv', u'avon', u'region'] [u'mother', u'break', u'snowtown', u'trial'] [u'unifi', u'water', u'restrict', u'code'] [u'welcom', u'home', u'warranti', u'insur', u'probe'] [u'muralitharan', u'plan', u'play'] [u'navi', u'confirm', u'fuel', u'leak', u'success'] [u'net', u'open', u'seri'] [u'cage', u'secur', u'salmon'] [u'newcastl', u'develop', u'firm', u'share', u'nsaf', u'money'] [u'plan', u'mundubbera'] [u'korea', u'deni', u'link', u'pong'] [u'regret', u'dob', u'natasha'] [u'lower', u'consent'] [u'boost', u'fund', u'senior', u'program'] [u'road', u'sign', u'multi', u'lingual'] [u'urg', u'rethink', u'mandatori', u'sentenc'] [u'olymp', u'reject', u'blame', u'cyclist', u'turn'] [u'pair', u'face', u'court', u'drug', u'charg'] [u'pakistan', u'hop', u'write', u'billion', u'debt'] [u'shut', u'onlin', u'game', u'busi'] [u'pension', u'reform', u'trigger', u'austria', u'strike'] [u'perilya', u'appeal', u'insur', u'slug'] [u'pilger', u'win', u'prize', u'uncov', u'lie'] [u'plan', u'capel', u'seat', u'elector'] [u'plan', u'afoot', u'border', u'polic', u'station'] [u'player', u'warn', u'world', u'organis', u'properti'] [u'play', u'decid', u'scottish', u'titl'] [u'polic', u'know', u'write', u'natasha', u'ryan', u'letter'] [u'polic', u'recruit', u'work', u'illawarra'] [u'polic', u'reveal', u'detail', u'bricklay', u'shoot'] [u'polic', u'specul', u'death', u'custodi', u'caus'] [u'powel', u'meet', u'sharon', u'mazen'] [u'probe', u'launch', u'ship', u'sink'] [u'public', u'submiss', u'canberra', u'water'] [u'qanta', u'strike', u'afffect', u'hobart', u'airport'] [u'govt', u'dairi', u'farmer', u'charg'] [u'name', u'cap', u'preliminari', u'origin', u'squad'] [u'premier', u'join', u'chorus'] [u'ditch', u'effort', u'latham'] [u'rebuild', u'keep', u'busi', u'busi'] [u'record', u'price', u'northern', u'malle', u'properti'] [u'red', u'hope', u'retain', u'latham'] [u'replica', u'whaleboat', u'wash', u'townsvill'] [u'research', u'monitor', u'kava', u'impact'] [u'resid', u'sceptic', u'secur', u'doctor'] [u'marsh', u'name', u'english', u'cricket', u'selector'] [u'roger', u'chanc', u'semi', u'final'] [u'rover', u'face', u'tough', u'fight', u'duff'] [u'erupt', u'park', u'plan', u'impact', u'timber'] [u'govt', u'exercis', u'power', u'wast', u'dump'] [u'govt', u'tri', u'resolv', u'licenc', u'woe'] [u'saint', u'dog', u'brawl', u'result', u'tribun', u'charg'] [u'sar', u'fear', u'spark', u'student', u'avoid', u'school'] [u'scheme', u'aim', u'boost', u'servic'] [u'rescu', u'strand', u'teacher'] [u'shale', u'product', u'meet', u'aust', u'need'] [u'shopper', u'loosen', u'purs', u'string', u'march'] [u'small', u'surplus', u'modest', u'growth', u'target', u'budget'] [u'smith', u'expect', u'lose', u'case', u'arnott'] [u'sothebi', u'auction', u'worth'] [u'spanish', u'fishermen', u'challeng', u'court', u'author'] [u'spur', u'sting', u'laker', u'game'] [u'spur', u'sting', u'laker', u'net', u'edg', u'celtic'] [u'georg', u'profit', u'jump'] [u'storm', u'bring', u'downpour', u'boulia'] [u'strike', u'mean', u'reduc', u'news', u'content'] [u'strong', u'hotel', u'sale'] [u'suicid', u'rate', u'doubl', u'post', u'bosnia'] [u'tassi', u'hous', u'afford'] [u'taxi', u'driver', u'threaten', u'action', u'sydney', u'airport'] [u'teacher', u'coach', u'swim', u'gold', u'coast'] [u'tougher', u'law', u'need', u'alcohol'] [u'tourism', u'attract', u'get', u'feder', u'fund', u'boost'] [u'townsvill', u'troop', u'timor', u'peacekeep'] [u'traci', u'win', u'streak', u'snap', u'london'] [u'turf', u'club', u'happi', u'carniv'] [u'turner', u'sell', u'half', u'stake', u'million', u'report'] [u'offer', u'drag', u'queen', u'makeov'] [u'union', u'busi', u'budget'] [u'say', u'student', u'quarantin'] [u'unreleas', u'potter', u'tale', u'field'] [u'urib', u'renew', u'swap', u'offer', u'botch', u'rescu'] [u'confirm', u'billion', u'go', u'miss', u'iraq'] [u'offici', u'meet', u'fifa', u'women'] [u'prepar', u'releas', u'guantanamo', u'prison'] [u'soldier', u'injur', u'cluster', u'bomb'] [u'tell', u'mazen', u'fight', u'terror'] [u'vegi', u'grower', u'discuss', u'moth', u'control'] [u'venus', u'rise', u'long'] [u'vettori', u'atapattu', u'surviv', u'field', u'collis'] [u'vicar', u'general', u'lament', u'debat'] [u'govt', u'consid', u'crop', u'moratorium'] [u'surplus'] [u'wait', u'list', u'prove', u'fatal', u'studi'] [u'push', u'fairer', u'elector'] [u'readi', u'major', u'health', u'emerg', u'surgeon'] [u'weari', u'birthday', u'blair'] [u'waugh', u'focus', u'caribbean', u'clean', u'sweep'] [u'waugh', u'record', u'take', u'aust'] [u'westpac', u'forc', u'accru', u'leav', u'sar', u'union'] [u'wheatbelt', u'win', u'farm', u'award'] [u'wheat', u'streak', u'virus'] [u'wheat', u'streak', u'virus', u'western'] [u'lift', u'hong', u'kong', u'warn', u'sar', u'remain'] [u'stay', u'beckham', u'saga', u'continu'] [u'stay', u'beckham', u'saga', u'go'] [u'william', u'send', u'home', u'west', u'indi'] [u'william', u'take', u'snooker', u'prize', u'thriller'] [u'wine', u'thief', u'sentenc', u'year', u'jail'] [u'woman', u'admit', u'error', u'mayor', u'hear'] [u'woman', u'dead', u'train'] [u'youth', u'worker', u'charg', u'sexual', u'assault'] [u'injur', u'raaf', u'hangar', u'collaps'] [u'abattoir', u'stock', u'number', u'remain', u'steadi'] [u'accc', u'court', u'battl', u'fals', u'advertis'] [u'aceh', u'violenc', u'flare', u'peac', u'talk', u'collaps'] [u'achill', u'problem', u'cast', u'doubt', u'england', u'campbel'] [u'advis', u'attend', u'bali', u'bomb', u'trial'] [u'jump', u'medicar', u'poll'] [u'appeal', u'medicar', u'rethink'] [u'qanta', u'fail', u'drag', u'aussi', u'market'] [u'share', u'record'] [u'analyst', u'expect', u'stay', u'rat'] [u'earli', u'tast', u'later', u'battl'] [u'archbishop', u'melbourn', u'say', u'think'] [u'arsenal', u'squad', u'strong', u'wenger'] [u'artist', u'busi', u'boost', u'advic', u'program'] [u'dead', u'indian', u'rebel', u'attack'] [u'australian', u'sentenc', u'lebanes', u'court'] [u'aust', u'relat', u'report'] [u'avellino', u'stand', u'expect', u'come', u'head'] [u'bailey', u'clear', u'injuri'] [u'bail', u'grant', u'teen', u'accus', u'stab'] [u'bakeri', u'job', u'slice', u'expect'] [u'beckham', u'pledg', u'futur'] [u'berlusconi', u'demand', u'suspens', u'graft', u'trial'] [u'bishop', u'understand', u'call', u'resign'] [u'blair', u'laud', u'howard', u'leadership'] [u'blaze', u'destroy', u'busi'] [u'charg', u'murder', u'home', u'invas'] [u'britain', u'ireland', u'push', u'ahead', u'peac'] [u'british', u'suspend', u'parti'] [u'break', u'hill', u'host', u'mine', u'confer'] [u'break', u'seal', u'caus', u'shuttl', u'disast'] [u'budget', u'offer', u'tourism', u'boost', u'ingram'] [u'budget', u'reveal', u'chang'] [u'burn', u'determin', u'exorcis', u'ghost'] [u'bush', u'budget', u'chief', u'leav', u'post', u'white', u'hous'] [u'boost', u'pension', u'rate', u'subsidi'] [u'catchment', u'board', u'decis', u'scrutini'] [u'chamber', u'commerc', u'concern', u'futur', u'rail'] [u'chef', u'offer', u'accredit', u'cater'] [u'cheney', u'confirm', u'bush', u'run', u'mate'] [u'cheney', u'sign', u'bush', u'run', u'mate'] [u'child', u'murder', u'trial', u'hear', u'accus', u'kind', u'care'] [u'claim', u'council', u'part', u'blame', u'region'] [u'clark', u'futur', u'ruddock'] [u'coalit', u'detain', u'region', u'baath', u'leader'] [u'confer', u'tell', u'govt', u'blame', u'heart', u'surgeri'] [u'cost', u'polic', u'music', u'festiv', u'review'] [u'council', u'confid', u'depart', u'store', u'viabl'] [u'council', u'reject', u'goonellabah', u'aquat', u'facil', u'plan'] [u'council', u'reject', u'revenu', u'rais', u'claim'] [u'council', u'shift', u'inlet', u'think'] [u'council', u'highlight', u'social', u'woe'] [u'council', u'refus', u'youth', u'fund', u'offer'] [u'council', u'urg', u'retain', u'fund', u'theatr', u'work'] [u'court', u'hear', u'nation', u'leader', u'misus'] [u'crean', u'ralli', u'support', u'medicar', u'fight'] [u'critic', u'money', u'budget'] [u'ticket', u'rush', u'bring', u'test', u'rugbi'] [u'defenc', u'chief', u'back', u'send', u'troop', u'home'] [u'democrat', u'call', u'govt', u'itemis', u'cost'] [u'democrat', u'criticis', u'conscienc', u'vote'] [u'dept', u'educ', u'consid', u'teacher', u'demand'] [u'detent', u'centr', u'offic', u'sack'] [u'diplomat', u'take', u'iraq', u'rebuild', u'role'] [u'doctor', u'group', u'pleas', u'insur', u'cover'] [u'dog', u'welcom', u'examin', u'umpir', u'contact'] [u'dollar', u'break', u'cent', u'barrier'] [u'duncan', u'oneal', u'bryant', u'star'] [u'unfaz', u'berlusconi', u'charg'] [u'educ', u'overhaul', u'cost', u'student', u'oppn'] [u'educ', u'spotlight', u'forum'] [u'decid', u'sar', u'screen'] [u'excav', u'extinguish', u'blaze'] [u'fallout', u'continu', u'church', u'child', u'abus', u'inquiri'] [u'fear', u'king', u'bros', u'woe', u'wider', u'impact'] [u'feder', u'govt', u'wait', u'inland', u'rail', u'plan'] [u'feder', u'govt', u'urg', u'subsidis', u'region'] [u'fed', u'decis', u'push', u'stock', u'higher'] [u'fiji', u'warn', u'work', u'disciplin', u'ahead', u'world'] [u'folk', u'talk', u'rooster', u'bulldog', u'clash'] [u'footi', u'jumper', u'steal', u'boardroom'] [u'formal', u'elect', u'result', u'loom'] [u'franc', u'help', u'want', u'iraqi', u'escap', u'captur'] [u'french', u'group', u'want', u'protect', u'strand', u'iranian'] [u'impact', u'wheat', u'virus', u'know'] [u'fund', u'seek', u'theatr', u'work'] [u'awar', u'public', u'view', u'minist'] [u'giro', u'ditalia', u'seek', u'posit', u'attent'] [u'golden', u'point', u'introduc', u'origin', u'seri'] [u'govt', u'beef', u'secur', u'dump', u'site'] [u'govt', u'commit', u'hec', u'silent', u'educ'] [u'govt', u'deliv', u'fiscal', u'respons', u'budget'] [u'govt', u'give', u'tourism', u'boost'] [u'govt', u'order', u'investig', u'death', u'custodi'] [u'green', u'group', u'welcom', u'nuclear', u'wast', u'inquiri'] [u'green', u'condemn', u'develop', u'decis'] [u'green', u'view', u'sugar', u'industri', u'impact', u'market'] [u'group', u'lodg', u'protest', u'icac', u'petrol', u'station'] [u'gulf', u'hunt', u'law', u'respect', u'elder'] [u'hall', u'echo', u'stockmen', u'memori'] [u'hangar', u'work', u'suspend', u'collaps'] [u'hanson', u'pursu', u'unholi', u'hast', u'defenc'] [u'harrington', u'seek', u'form', u'revers', u'happi', u'hunt'] [u'henin', u'hardenn', u'untroubl', u'germani'] [u'hollywood', u'star', u'help', u'iraqi', u'victim'] [u'honour', u'horticultur', u'scientist'] [u'human', u'shield', u'offer', u'insid', u'stori', u'iraq'] [u'indigen', u'make', u'histor', u'maiden', u'speech'] [u'inland', u'railway', u'track', u'anderson'] [u'insur', u'perilya'] [u'italian', u'priest', u'arrest', u'prostitut'] [u'jupit', u'play', u'sar', u'impact'] [u'kluivert', u'dismiss', u'link'] [u'knight', u'loss', u'focus', u'match'] [u'knowl', u'reject', u'nation', u'park', u'timber', u'claim'] [u'lighthous', u'platform', u'demolit', u'delay'] [u'magistr', u'attend', u'bali', u'bomb', u'trial'] [u'makeov', u'tourism', u'region'] [u'arrest', u'suspicion', u'murder', u'sister'] [u'arrest', u'prostitut', u'murder'] [u'mandela', u'pay', u'tribut', u'anti', u'apartheid', u'campaign'] [u'escap', u'jail', u'term', u'hoax', u'call'] [u'jail', u'fatal'] [u'face', u'murder', u'trial'] [u'receiv', u'premier', u'leagu', u'trophi'] [u'win', u'braveri', u'award', u'rescu'] [u'marijuana', u'cell', u'phone', u'cover', u'caus', u'buzz'] [u'marsh', u'complet', u'dark', u'england'] [u'mayor', u'outrag', u'brothel', u'tour'] [u'mayor', u'charg', u'drop'] [u'mayor', u'rise'] [u'mccafferti', u'enhanc', u'corpor', u'structur'] [u'mercuri', u'rise', u'rare', u'align'] [u'mix', u'respons', u'victorian', u'budget'] [u'polic', u'need', u'women', u'council'] [u'air', u'tour', u'guid', u'concern'] [u'murray', u'flow', u'decis', u'time'] [u'mutant', u'cold', u'virus', u'kill', u'cancer'] [u'nation', u'leader', u'reform', u'propos'] [u'nauru', u'speaker', u'quit'] [u'anglican', u'abus', u'alleg', u'surfac'] [u'harri', u'potter', u'book', u'dump'] [u'heart', u'monitor', u'clinic', u'trial'] [u'sponsorship', u'deal', u'plan', u'birdsvill', u'race'] [u'chang', u'default', u'suburban', u'speed'] [u'govt', u'hold', u'nuclear', u'wast', u'transport', u'probe'] [u'govt', u'urg', u'chang', u'mine', u'law'] [u'polic', u'probe', u'break', u'martin', u'hous'] [u'ocean', u'rower', u'shadow', u'foot', u'marlin'] [u'oleari', u'prepar', u'return', u'leed'] [u'oneil', u'celtic', u'deal', u'remain', u'unsign'] [u'kill', u'injur', u'grenad', u'attack'] [u'support', u'supermarket', u'alcohol'] [u'pacif', u'help', u'elit', u'poor'] [u'pakistan', u'say', u'seiz', u'heroin', u'worth', u'million'] [u'palestinian', u'toddler', u'die', u'gaza', u'shoot'] [u'pasminco', u'look', u'product', u'cost'] [u'patagonian', u'allianc', u'help', u'protect', u'fish'] [u'patient', u'urg', u'partner', u'organ', u'donat'] [u'disput', u'threaten', u'rugbi', u'world', u'prepar'] [u'philip', u'morri', u'decis', u'impact', u'north'] [u'photograph', u'charg', u'explos', u'jordanian'] [u'playboy', u'undergo', u'facelift'] [u'polic', u'crack', u'seatbelt', u'offenc'] [u'polic', u'hope', u'clue', u'skull'] [u'polic', u'trail', u'miss'] [u'port', u'price', u'continu', u'past'] [u'port', u'work', u'allow', u'bigger', u'cruis', u'ship', u'visit'] [u'prawn', u'fisher', u'face', u'weather', u'price', u'hurdl'] [u'pressur', u'mount', u'water', u'suppli'] [u'price', u'higuchi', u'hall', u'famer'] [u'probe', u'begin', u'site', u'death'] [u'qanta', u'plan', u'cut'] [u'anglican', u'school', u'head', u'quit', u'abus', u'report'] [u'real', u'madrid', u'nose', u'ahead', u'champion', u'leagu', u'semi'] [u'report', u'call', u'chang', u'women', u'prison'] [u'rescu', u'spark', u'safeti', u'remind'] [u'reserv', u'bank', u'keep', u'rat', u'steadi'] [u'retail', u'group', u'welcom', u'turnov', u'figur'] [u'ask', u'investig', u'heart', u'surgeri', u'wait'] [u'roo', u'say', u'bounc', u'bounc', u'protect', u'umpir'] [u'rooster', u'lift', u'media', u'player'] [u'sack', u'worker', u'claim', u'unfair', u'fire'] [u'saddam', u'take', u'bank'] [u'sailor', u'claim', u'pressur', u'appli'] [u'sar', u'death', u'rate'] [u'uni', u'struggl', u'meet', u'demand', u'vice', u'chancellor'] [u'savag', u'say', u'budget', u'respons'] [u'scientist', u'creat', u'africa', u'clone', u'anim'] [u'shire', u'oppos', u'railway', u'precinct', u'heritag', u'list'] [u'shuttl', u'crash', u'investig', u'offer', u'partial', u'answer'] [u'southern', u'tasmania', u'pay', u'fuel'] [u'lankan', u'kiwi', u'chase', u'test', u'victori'] [u'lanka', u'seek', u'roadmap', u'peac', u'tiger'] [u'steve', u'kefu', u'return', u'toutai', u'farewel'] [u'steve', u'kefu', u'return', u'toutai', u'herbert', u'farewel'] [u'strike', u'worker', u'qanta'] [u'student', u'union', u'welcom', u'engin', u'plan'] [u'suppli', u'contract', u'award', u'softwood'] [u'surgeon', u'quit', u'medic', u'indemn', u'concern'] [u'test', u'cricket', u'past', u'present', u'attend', u'reunion'] [u'testicular', u'cancer', u'rise'] [u'thief', u'hire', u'shop', u'owner', u'sentenc'] [u'tidi', u'town', u'group', u'disband'] [u'timber', u'packag', u'boost', u'timber', u'industri'] [u'seed', u'progress', u'rome'] [u'tourism', u'board', u'chang', u'boost', u'sunshin', u'coast'] [u'treat', u'obes', u'serious', u'urg', u'surgeon'] [u'tune', u'resign', u'miss', u'nation'] [u'singapor', u'sign', u'trade', u'deal'] [u'keep', u'rat', u'steadi'] [u'vaughan', u'captain', u'england', u'team'] [u'govt', u'sell', u'budget', u'defend', u'hike'] [u'prison', u'lock', u'load', u'pistol', u'cell'] [u'vieira', u'commit', u'futur', u'arsenal'] [u'western', u'desert', u'founder', u'die', u'cancer'] [u'wheat', u'virus', u'fight', u'month'] [u'wheat', u'virus'] [u'white', u'tribun'] [u'wire', u'cubicl', u'frontier'] [u'women', u'push', u'cross', u'border', u'polic'] [u'dead', u'collis'] [u'remain', u'hospit', u'hangar', u'collaps'] [u'aborigin', u'leader', u'urg', u'consid', u'posit'] [u'accus', u'face', u'court', u'prostitut', u'murder', u'charg'] [u'accus', u'murder', u'fight', u'fund'] [u'bushfir', u'delay', u'highlight', u'inquiri'] [u'move', u'allow', u'coupl', u'adopt'] [u'hop', u'secur', u'armi', u'contract'] [u'ticket', u'cost', u'spotlight'] [u'alonso', u'emerg', u'great', u'formula'] [u'obtain', u'updat', u'colston', u'health'] [u'shelv', u'plan', u'reward', u'share'] [u'analyst', u'expect', u'chang', u'jobless', u'rate'] [u'archbishop', u'report', u'increas', u'abus', u'complaint'] [u'arsenal', u'put', u'frighten', u'southampton'] [u'ashcroft', u'go', u'strong', u'clock'] [u'australia', u'prepar', u'sar', u'professor'] [u'ballestero', u'get', u'dress', u'fellow', u'pros'] [u'battl', u'milan', u'end', u'squar'] [u'beatti', u'call', u'royal', u'commiss', u'child', u'abus'] [u'beetl', u'save', u'benin', u'million'] [u'birmingham', u'offer', u'lazaridi', u'upgrad', u'deal'] [u'blair', u'hail', u'depend', u'howard'] [u'brack', u'promis', u'investig', u'prison', u'secur'] [u'bridg', u'scheme', u'month'] [u'brogden', u'urg', u'chang', u'bail', u'law', u'drive'] [u'break', u'hill', u'council', u'get', u'poor', u'recycl', u'report', u'card'] [u'budget', u'unlik', u'affect', u'polic'] [u'budget', u'set', u'spend', u'record'] [u'builder', u'union', u'stress', u'workplac', u'safeti'] [u'burk', u'call', u'compromis', u'world', u'agreement'] [u'burk', u'impress', u'world', u'drop', u'kick', u'rule'] [u'burk', u'rule', u'european', u'career'] [u'cairn', u'atsic', u'council', u'look', u'fund', u'chang'] [u'calf', u'clone', u'south', u'africa'] [u'mine', u'manag', u'plan'] [u'home', u'birth', u'support'] [u'resid', u'consult', u'pool'] [u'skull', u'return', u'tradit', u'owner'] [u'boost', u'specialist', u'medic', u'chemic'] [u'canberra', u'broadcast'] [u'cancer', u'centr', u'unveil', u'technolog'] [u'celtic', u'bind', u'scottish', u'premier', u'leagu'] [u'say', u'qanta', u'head', u'roll'] [u'cezann', u'self', u'portrait', u'sell'] [u'chang', u'get', u'french', u'open', u'wild', u'card'] [u'cheap', u'rat', u'brewarrina', u'bogan', u'shire'] [u'church', u'investig', u'alleg', u'child', u'abus', u'case'] [u'church', u'minist', u'lose', u'nois', u'appeal'] [u'claim', u'rate', u'peg', u'forc', u'focus', u'user', u'pay'] [u'clark', u'refus', u'resign'] [u'clijster', u'cruis', u'german', u'clay'] [u'communiti', u'servic', u'option', u'mele', u'offend'] [u'concern', u'air', u'tourism', u'zone'] [u'concern', u'air', u'possibl', u'clayton', u'crop'] [u'coroni', u'inquiri', u'find', u'refer'] [u'council', u'back', u'dick'] [u'council', u'consid', u'higher', u'alfesco', u'din', u'charg'] [u'council', u'draft'] [u'council', u'seek', u'rate', u'rise', u'approv'] [u'court', u'hear', u'hanson', u'argu', u'treasur', u'fund'] [u'court', u'lift', u'suppress', u'order', u'civil', u'case'] [u'cousin', u'play', u'eagl', u'wirrapunda', u'kerr', u'doubt'] [u'cross', u'border', u'polic', u'plan', u'forward'] [u'prepar', u'cut', u'student', u'intak'] [u'date', u'water', u'summit'] [u'decis', u'hanson', u'hear'] [u'demand', u'prompt', u'porto', u'sell', u'uefa', u'ticket', u'earli'] [u'despit', u'loss', u'west', u'indi', u'improv'] [u'despotovski', u'choos', u'glori', u'power'] [u'develop', u'push', u'ahead', u'mart', u'plan'] [u'doctor', u'reject', u'alleg', u'misconduct'] [u'doubt', u'cast', u'tourism', u'plan'] [u'drought', u'bear', u'nino', u'offici'] [u'drug', u'network', u'search', u'underway', u'money', u'stash'] [u'dutch', u'qualifi', u'rock', u'roddick', u'rome'] [u'elder', u'tourist', u'safe', u'night'] [u'elder', u'gain', u'respect', u'italian'] [u'eurobodalla', u'council', u'seek', u'rate', u'rise', u'approv'] [u'fee', u'budget'] [u'fewer', u'work', u'jobless', u'rate', u'fall'] [u'fiji', u'charg', u'coup'] [u'fleme', u'surpris', u'lanka', u'approach', u'draw'] [u'flower', u'back', u'brother', u'protest'] [u'forecast', u'group', u'confid', u'budget', u'surplus'] [u'ansett', u'subsidiari', u'settl', u'claim'] [u'bishop', u'defend', u'decis', u'wake', u'abus'] [u'hold', u'suspect', u'potter', u'manuscript', u'theft'] [u'fresh', u'child', u'abus', u'scandal', u'hit', u'church'] [u'deni', u'rape', u'claim'] [u'suppress', u'order', u'lift'] [u'go', u'public', u'earlier', u'tanner'] [u'giant', u'postcard', u'russia', u'love'] [u'giffen', u'brumbi'] [u'goldfield', u'await', u'budget'] [u'govt', u'maintain', u'pacif'] [u'govt', u'protect', u'long', u'servic', u'leav', u'entitl'] [u'grain', u'grower', u'urg', u'remain', u'calm', u'amidst', u'virus'] [u'green', u'govt', u'river', u'report'] [u'group', u'seek', u'equit', u'fuel', u'price'] [u'haa', u'continu', u'proud', u'famili', u'tradit'] [u'hanson', u'say', u'take', u'money'] [u'health', u'minist', u'prais', u'cancer', u'treatment', u'centr'] [u'hewson', u'join', u'chorus', u'caller', u'resign'] [u'highway', u'fund', u'summit'] [u'horan', u'retir', u'strong', u'world', u'memori'] [u'hospit', u'contractor', u'work', u'ensur', u'asbesto'] [u'hundr', u'miss', u'flood', u'argentina'] [u'hunter', u'leav', u'tassi', u'train'] [u'illeg', u'fish', u'hurt', u'local', u'fish', u'stock', u'minist'] [u'inaugur', u'wachovia', u'championship', u'begin', u'thursday'] [u'india', u'see', u'bilater', u'pakistan', u'game'] [u'india', u'want', u'pakistan', u'crack'] [u'indigen', u'paint', u'return', u'auction'] [u'indonesian', u'armi', u'readi', u'oper', u'aceh'] [u'insur', u'woe', u'cancel', u'rspca', u'launceston', u'event'] [u'seek', u'iraq', u'olymp', u'committe'] [u'iraqi', u'captur', u'leader'] [u'isra', u'troop', u'shoot', u'journalist', u'neck', u'autopsi'] [u'jail', u'lockdown', u'discoveri'] [u'jayawarden', u'appoint', u'lanka', u'vice'] [u'agenc', u'close', u'door'] [u'juri', u'retir', u'fraser', u'trial'] [u'katter', u'pledg', u'fight', u'age', u'care', u'centr'] [u'kean', u'urg', u'fergi', u'spend', u'european'] [u'labor', u'queri', u'legal', u'affair'] [u'langer', u'hesit', u'ryder', u'captain', u'candidaci'] [u'lead', u'ladi', u'sorenstam', u'compet'] [u'lend', u'boost', u'westpac', u'result'] [u'magistr', u'ignor', u'bali', u'trial', u'warn'] [u'charg', u'fatal', u'stab'] [u'mandela', u'team', u'fight', u'aid'] [u'face', u'child', u'charg'] [u'fin', u'cray', u'poach'] [u'injur', u'highway', u'truck', u'roll'] [u'market', u'drag', u'bank'] [u'mayor', u'concern', u'state', u'fund', u'report'] [u'medal', u'present', u'communiti', u'effort'] [u'merger', u'boost', u'west', u'freight', u'servic'] [u'mickel', u'elect', u'esper', u'shire', u'presid'] [u'million', u'need', u'combat', u'tourism', u'woe'] [u'miss', u'tourist'] [u'natasha', u'ryan', u'mother', u'urg', u'media', u'stay', u'away'] [u'nauru', u'head', u'constitut', u'crisi'] [u'nauru', u'search', u'speaker', u'presid'] [u'dengu', u'fever', u'spot', u'identifi'] [u'figur', u'offer', u'hope', u'homebuy'] [u'jersey', u'take', u'lead', u'semi', u'final', u'seri'] [u'weapon', u'fight', u'assault'] [u'good', u'reason', u'delay', u'murray', u'decis', u'hill'] [u'urg', u'amend', u'split'] [u'remain', u'grip', u'drought'] [u'collaps'] [u'oppn', u'call', u'budget', u'boost', u'famili'] [u'optus', u'post', u'year', u'profit'] [u'pain', u'return', u'veld'] [u'pakistan', u'deport', u'thoma', u'charg'] [u'park', u'lead', u'korean', u'conting', u'lpga'] [u'recal', u'forc', u'busi', u'council'] [u'perilya', u'await', u'insur', u'decis'] [u'pharmaci', u'guild', u'repair', u'damag'] [u'phillip', u'coach', u'cricket', u'team'] [u'comment', u'alleg'] [u'offic', u'silent', u'statement'] [u'polic', u'diver', u'call', u'search', u'miss'] [u'polic', u'interview', u'wit', u'fatal', u'smash'] [u'policeman', u'think', u'killer', u'didnt'] [u'polic', u'accid', u'victim'] [u'polic', u'probe', u'church', u'blaze'] [u'polic', u'issu', u'summon', u'ryan', u'boyfriend'] [u'pont', u'miss', u'fourth', u'test'] [u'pool', u'debat', u'continu', u'lismor'] [u'princ', u'prepar', u'prime', u'minist'] [u'prison', u'boss', u'defend', u'allow', u'murder', u'rent'] [u'prison', u'search', u'find', u'contraband'] [u'profit', u'taker', u'drive', u'aussi', u'dollar', u'lower'] [u'qanta', u'profit', u'expect', u'fall'] [u'raider', u'secur', u'major', u'sponsor'] [u'rebat', u'offer', u'encourag', u'water', u'recycl'] [u'report', u'highlight', u'kempsey', u'shire', u'recycl', u'effort'] [u'research', u'trial', u'virtual', u'exercis', u'machin'] [u'revamp', u'plan', u'traralgon', u'colleg'] [u'rooney', u'get', u'eriksson', u'vote', u'young', u'player'] [u'roo', u'say', u'bounc', u'bounc', u'protect', u'umpir'] [u'ruddock', u'respond', u'women', u'traffic', u'critic'] [u'bid', u'stop', u'radioact', u'wast', u'dump'] [u'salvo', u'want', u'judici', u'offic', u'hear', u'detent'] [u'opposit', u'issu', u'water', u'restrict', u'warn'] [u'sar', u'death', u'rate', u'increas', u'specialist'] [u'sar', u'impact', u'tasmanian', u'qanta', u'workforc'] [u'school', u'demolit', u'avert'] [u'search', u'continu', u'miss'] [u'mourn', u'volunt'] [u'volunt', u'kill'] [u'slipper', u'reject', u'hospit', u'claim'] [u'soccer', u'aust', u'chairman', u'resign'] [u'soccer', u'australia', u'chairman', u'quit'] [u'speed', u'factor', u'fatal', u'accid', u'polic'] [u'spur', u'laker', u'final'] [u'squash', u'consid', u'rank'] [u'prime', u'voluntari', u'quarantin', u'wheat', u'virus'] [u'sydney', u'council', u'odd', u'boundari', u'chang'] [u'doctor', u'encourag', u'bulk'] [u'tatu', u'film', u'clip', u'shift', u'ancient'] [u'teen', u'charg', u'bomb', u'hoax'] [u'teen', u'quiz', u'garden', u'citi'] [u'tornado', u'claim', u'victim'] [u'tough', u'process', u'abrolho', u'island', u'tourism', u'ventur'] [u'tourism', u'south', u'west', u'put', u'hand', u'manag', u'zone'] [u'townsvill', u'moot', u'possibl', u'research', u'super', u'centr'] [u'tractor', u'death', u'investig'] [u'trade', u'southcorp', u'share', u'suspend'] [u'train', u'sweeten', u'sugar', u'worker'] [u'train', u'plough', u'hungari'] [u'treasur', u'confirm', u'closur', u'pine', u'forest', u'industri'] [u'twin', u'bear', u'separ', u'womb'] [u'arrest', u'follow', u'sydney', u'shoot'] [u'unsustain', u'hunt', u'practic', u'spotlight'] [u'inquiri', u'urg', u'autonomi', u'papua'] [u'lift', u'iraq', u'sanction'] [u'test', u'potenti', u'mobil', u'weapon'] [u'compli', u'rule'] [u'vancouv', u'olymp', u'organis', u'keen', u'vote'] [u'nistelrooy', u'determin', u'goal', u'provid'] [u'court', u'lift', u'deni', u'rape', u'claim'] [u'dept', u'prevent', u'polici', u'criticis'] [u'place', u'year', u'canola'] [u'warn', u'issu', u'young', u'girl', u'attack'] [u'washington', u'wizard', u'kick', u'jordan'] [u'waugh', u'believ', u'year'] [u'wesfarm', u'share', u'compani', u'post', u'profit'] [u'west', u'indi', u'concern', u'loss'] [u'westpac', u'share', u'price', u'fall', u'profit', u'figur'] [u'wheat', u'farmer', u'caution', u'field', u'trial'] [u'white', u'fall', u'victim', u'contact', u'umpir', u'rule'] [u'woman', u'jail', u'home', u'invas'] [u'woman', u'face', u'court', u'accessori', u'murder', u'charg'] [u'zimbabw', u'tough', u'media', u'law', u'strike'] [u'european', u'need', u'host'] [u'accc', u'give', u'takeov', u'green', u'light'] [u'investig', u'westralia', u'engin', u'failur'] [u'alic', u'rock'] [u'anglican', u'clergi', u'hollingworth'] [u'armstrong', u'urg', u'consid', u'posit'] [u'atsic', u'seek', u'inclus', u'bodi'] [u'attorney', u'general', u'consid', u'rape', u'sentenc', u'appeal'] [u'augathella', u'ant'] [u'aussi', u'benefit', u'greenback', u'slide'] [u'aussi', u'place', u'event'] [u'aust', u'dumb', u'educ'] [u'australia', u'win', u'tran', u'tasman', u'trophi'] [u'aust', u'suspend', u'ammunit', u'export'] [u'bahrain', u'close', u'grand', u'prix', u'glori'] [u'bank', u'urg', u'open', u'saturday'] [u'basin', u'council', u'decid', u'delay', u'murray'] [u'batchelor', u'defend', u'overpass', u'fund'] [u'beachley', u'lead', u'surf', u'charg'] [u'beachley', u'rid', u'high', u'tahiti'] [u'bishop', u'say', u'pressur', u'consid'] [u'blue', u'overpow', u'hurrican'] [u'bodi', u'murder', u'sibl', u'releas', u'short'] [u'book', u'chart', u'asian', u'violenc', u'women'] [u'bras', u'replac', u'sar', u'mask'] [u'broadband', u'predict', u'offer', u'econom', u'boost'] [u'break', u'hill', u'jobless', u'rate', u'fall'] [u'brothel', u'announc', u'expans', u'plan'] [u'brumbi', u'face', u'nervous', u'wait'] [u'brumbi', u'bendigo', u'sell', u'budget'] [u'budget', u'fund', u'goldfield', u'water', u'suppli'] [u'budget', u'fund', u'announc', u'pilbara'] [u'budget', u'fund', u'expect', u'boost', u'port', u'export'] [u'budget', u'fund', u'help', u'boost', u'port', u'trade'] [u'bulgarian', u'put', u'celtic', u'titl', u'push', u'overdr'] [u'bulldog', u'bark', u'rooster'] [u'bushfir', u'probe', u'final', u'submiss'] [u'capricorn', u'coast', u'special', u'school'] [u'return', u'ballot', u'paper'] [u'wider', u'probe', u'manag'] [u'cancer', u'vaccin', u'year', u'away'] [u'capriati', u'reach', u'german', u'open', u'quarter'] [u'caus', u'half', u'beij', u'sar', u'case', u'unknown'] [u'defend', u'gippsland', u'manag', u'effort'] [u'support', u'need', u'better', u'relat'] [u'chamber', u'aim', u'boost', u'dalbi', u'train'] [u'chamber', u'defend', u'mayor', u'poultri', u'decis'] [u'chang', u'urg', u'forest', u'burn', u'off'] [u'chechen', u'blast', u'kill', u'wound'] [u'clark', u'expect', u'collingwood'] [u'coat', u'arm', u'theft', u'charg', u'stand'] [u'confer', u'draw', u'clone', u'regul'] [u'councillor', u'clarifi', u'recycl', u'rank'] [u'council', u'learn', u'super', u'contribut'] [u'council', u'urg', u'road'] [u'crean', u'investig', u'hour', u'gambl'] [u'crow', u'prepar', u'collingwood', u'clash'] [u'darwin', u'hospit', u'forefront', u'emerg', u'respons'] [u'demon', u'feel', u'heat', u'danih'] [u'derbi', u'gregori'] [u'develop', u'surpris', u'project', u'call'] [u'docker', u'spot', u'stake'] [u'doctor', u'group', u'say', u'health', u'budget', u'doesnt'] [u'doctor', u'warn', u'possibl', u'obstetrician', u'shortag'] [u'dokic', u'suffer', u'shock', u'loss'] [u'doyl', u'claim', u'delahunti', u'mislead', u'parliament'] [u'rebel', u'minist', u'plane'] [u'driver', u'warn', u'blanket', u'perth'] [u'drought', u'increas', u'stock', u'death'] [u'drug', u'seiz', u'separ', u'raid'] [u'duncan', u'make'] [u'dwyer', u'bank', u'brumbi'] [u'escap', u'camel', u'lump'] [u'farmer', u'urg', u'plant', u'wheat', u'crop'] [u'fergi', u'track', u'italian', u'midfield', u'kean'] [u'presid', u'say', u'maker', u'come'] [u'figur', u'highlight', u'unemploy', u'woe'] [u'finnegan', u'futur', u'remain', u'mysteri'] [u'trap', u'high', u'rise', u'lift'] [u'warn', u'defend', u'adequ'] [u'firm', u'conced', u'dairi', u'fund', u'retrospect'] [u'food', u'poison', u'spark', u'hospit', u'disast', u'plan'] [u'governor', u'die', u'britain'] [u'charg', u'steal', u'potter', u'novel'] [u'fraser', u'convict', u'serial', u'murder'] [u'gene', u'search', u'unearth', u'colon', u'cancer', u'gene'] [u'germani', u'host', u'cycl', u'championship'] [u'tell', u'rape', u'claim'] [u'vow', u'fight', u'rape', u'claim'] [u'global', u'warm', u'unlik', u'increas', u'malaria', u'risk'] [u'good', u'educ', u'budget'] [u'govt', u'finalis', u'dump', u'plan'] [u'grace', u'bros', u'urg', u'rethink', u'store', u'closur', u'plan'] [u'grafton', u'suspect', u'sourc', u'tick', u'outbreak'] [u'grazier', u'unhappi', u'leasehold', u'plan'] [u'group', u'claim', u'inmat', u'treat', u'inhuman', u'risdon'] [u'group', u'campaign', u'powerlin', u'plan'] [u'halifax', u'launch', u'bankwest', u'takeov'] [u'hill', u'push', u'murray', u'river', u'compromis', u'solut'] [u'hollingworth', u'stand', u'asid'] [u'hospit', u'put', u'disast', u'plan', u'action', u'treat'] [u'houllier', u'play', u'chelsea', u'showdown'] [u'houllier', u'rais', u'stake', u'champion', u'leagu', u'roulett'] [u'lose', u'weight', u'banana'] [u'hunter', u'health', u'reduc', u'servic'] [u'illeg', u'fish', u'threat', u'spotlight'] [u'india', u'conduct', u'missil', u'test'] [u'india', u'reject', u'suggest', u'nuclear', u'weapon'] [u'ivanisev', u'target', u'comeback'] [u'ivanisev', u'comeback', u'nottingham'] [u'agenc', u'close', u'door'] [u'jone', u'gustafson', u'lead', u'lpga', u'event'] [u'judici', u'crank', u'iraq'] [u'juri', u'trial', u'atsic', u'offici', u'fail', u'reach'] [u'kafelnikov', u'mow', u'moya'] [u'kangaroo', u'hawk'] [u'sale', u'best', u'offer'] [u'lake', u'julius', u'pump', u'begin', u'month'] [u'leader', u'meet', u'public', u'drunken'] [u'leaney', u'close', u'leader'] [u'leverkusen', u'point', u'hamburg'] [u'littl', u'chanc', u'feder', u'budget', u'fund', u'calder'] [u'liverpool', u'chase', u'manchest', u'unit'] [u'local', u'derbi', u'test', u'runner'] [u'london', u'mayor', u'compar', u'bush', u'saddam'] [u'yang', u'power', u'get', u'insur', u'payout'] [u'mackay', u'hop', u'secur', u'russian', u'trade', u'deal'] [u'magistr', u'blast', u'delay', u'forens', u'test'] [u'malthous', u'slam', u'stupid', u'umpir', u'contact', u'rule'] [u'charg', u'hospit'] [u'sentenc', u'year', u'jail', u'kill'] [u'marina', u'hous', u'plan', u'denham'] [u'market', u'steadi', u'dollar', u'hit', u'year', u'high'] [u'mayor', u'defend', u'council', u'legal', u'bill'] [u'mayor', u'welcom', u'lower', u'speed', u'limit'] [u'miner', u'water', u'champagn', u'juve', u'titl'] [u'montgomeri', u'johnson', u'grand', u'prix', u'sprint'] [u'recognit', u'seek', u'river', u'manag'] [u'staff', u'cairn', u'hospit'] [u'telstra', u'cut', u'expect'] [u'moroccan', u'charg', u'accessori', u'murder', u'sept'] [u'reject', u'claim', u'grace', u'bros', u'effort'] [u'deputi', u'mayor', u'kalgoorli', u'boulder'] [u'job', u'guarante', u'unemploy', u'worker'] [u'polic', u'search', u'arm', u'hitchhik'] [u'ogradi', u'grab', u'fifth', u'place'] [u'slick', u'tanker', u'victim', u'receiv', u'payout'] [u'dead', u'gold', u'coast', u'apart'] [u'scandal', u'claim', u'scalp'] [u'parker', u'miss', u'bulldog', u'clash'] [u'perth', u'build', u'treat', u'suspici'] [u'fli', u'polit', u'storm'] [u'cash', u'flow', u'dri'] [u'polic', u'crack', u'state', u'drug', u'syndic'] [u'polic', u'file', u'summon', u'natasha', u'ryan'] [u'polic', u'issu', u'warn', u'drug', u'raid'] [u'polic', u'drug', u'charg', u'raid'] [u'polic', u'offic', u'injur', u'wild', u'brawl'] [u'polic', u'seek', u'public', u'help', u'solv', u'smith', u'murder'] [u'polit', u'erupt', u'rate', u'rise', u'claim'] [u'pont', u'give', u'minut'] [u'pont', u'give', u'minut', u'prove', u'fit'] [u'possibl', u'sar', u'case', u'gold', u'coast'] [u'pressur', u'mount', u'crop', u'moratorium'] [u'protest', u'race', u'cut', u'plan'] [u'qanta', u'passeng', u'contact'] [u'rann', u'claim', u'despit', u'level', u'wast', u'dump'] [u'rapist', u'get', u'year', u'jail'] [u'rat', u'unlik', u'chang'] [u'assess', u'push', u'short', u'term', u'rat'] [u'real', u'champion', u'leagu', u'distract', u'cheer', u'deportivo'] [u'record', u'gladston', u'jobless', u'figur'] [u'regular', u'rule', u'south', u'african', u'tour'] [u'reid', u'name', u'perman', u'leed', u'manag'] [u'revel', u'urg', u'wari', u'gang'] [u'rooki', u'princ', u'creat', u'overtim', u'detroit'] [u'ross', u'miss', u'month', u'injuri'] [u'russia', u'consid', u'sever', u'china', u'link', u'sar'] [u'russia', u'launch', u'satellit', u'year'] [u'ryan', u'face', u'charg'] [u'ryan', u'ditch', u'swim', u'radio'] [u'sack', u'hoddl', u'sherwood', u'tell', u'spur'] [u'claim', u'nuke', u'dump', u'round'] [u'sar', u'studi', u'reveal', u'doubl', u'edg', u'sword'] [u'satellit', u'ventur', u'boost', u'competit', u'murdoch'] [u'school', u'focus', u'communiti', u'support'] [u'seven', u'sell', u'broadcast', u'centr'] [u'slingshot', u'user', u'vandal', u'spree'] [u'soccer', u'australia', u'crisi', u'deepen'] [u'sorenstam', u'share', u'lead', u'japan'] [u'stabilis', u'forc', u'iraq', u'discuss'] [u'student', u'send', u'home', u'gastro', u'scare'] [u'stuttgart', u'host', u'world', u'race', u'championship'] [u'super', u'decid', u'dig', u'deeper'] [u'face', u'nation', u'worst', u'jobless', u'rate'] [u'tasmania', u'record', u'fever', u'case'] [u'taxi', u'driver', u'want', u'clarif', u'airport', u'levi'] [u'bird', u'grand', u'final', u'replay'] [u'team', u'coast', u'ban', u'competit'] [u'temco', u'hop', u'forward'] [u'tfga', u'seek', u'input', u'sale', u'agricultur', u'asset'] [u'suspend', u'medic', u'product', u'licenc'] [u'thousand', u'flee', u'congo', u'fight'] [u'tour', u'itali', u'seek', u'posit', u'attent'] [u'lose', u'goya', u'sell'] [u'umpir', u'manag', u'stand', u'centr', u'bounc'] [u'union', u'call', u'build', u'collaps', u'probe'] [u'call', u'franc', u'russia', u'drop', u'opposit'] [u'climber', u'tell'] [u'senat', u'approv', u'nato', u'member'] [u'step', u'pressur', u'iran'] [u'approv', u'control', u'iraq'] [u'challeng', u'polici', u'food'] [u'dentist', u'fund'] [u'govt', u'defend', u'ax', u'job', u'program'] [u'virus', u'show', u'benefit', u'crop'] [u'budget', u'hold', u'surpris', u'great', u'southern'] [u'govt', u'pull', u'glove', u'nuclear', u'wast', u'dump'] [u'warm', u'welcom', u'olymp', u'gold', u'medallist'] [u'weipa', u'move', u'closer', u'local', u'govt', u'area', u'status'] [u'step', u'sar', u'travel', u'warn'] [u'wife', u'sibl', u'israel', u'bomb', u'fugit', u'remand'] [u'windi', u'recal', u'jacob', u'dillon'] [u'woman', u'get', u'bond', u'accept', u'secret', u'doc'] [u'wood', u'deni', u'fallout', u'caddi'] [u'workshop', u'focus', u'fish', u'angl'] [u'world', u'contract', u'concern', u'increas'] [u'world', u'expans', u'mistak', u'blatter'] [u'veteran', u'pass', u'away', u'sydney'] [u'yorkshir', u'sign', u'yuvraj', u'singh'] [u'peopl', u'wound', u'bomb', u'explos', u'pakistan'] [u'kill', u'injur', u'bangladesh', u'storm'] [u'actor', u'jack', u'nicholson', u'get', u'angri', u'shaq', u'foul'] [u'alleg', u'peopl', u'smuggler', u'face', u'australian', u'court'] [u'anim', u'allow', u'plan', u'emot', u'support'] [u'anti', u'abort', u'activist', u'get', u'year', u'doctor'] [u'athlet', u'heed', u'recal', u'coat'] [u'wound', u'univers', u'shoot'] [u'ballymor', u'thriller', u'farewel', u'kefu', u'style'] [u'banfield', u'join', u'club'] [u'beachley', u'lead', u'surf', u'charg'] [u'beatti', u'challeng', u'nat', u'sugar', u'reform'] [u'benazzi', u'bow', u'world', u'regret'] [u'bronco', u'sign', u'lang', u'park', u'deal'] [u'brumbi', u'snatch', u'super', u'semi', u'final', u'spot'] [u'brumbi', u'sneak', u'semi', u'final'] [u'bush', u'step', u'mideast', u'peac', u'drive', u'trade', u'pledg'] [u'call', u'govt', u'improv', u'region', u'fund'] [u'carlo', u'hand', u'match'] [u'casualti', u'fear', u'attack', u'coalit', u'patrol'] [u'china', u'urg', u'talk', u'north', u'korea', u'crisi'] [u'claim', u'women', u'obsess', u'find', u'right'] [u'clijster', u'capriati', u'french', u'open', u'match'] [u'cold', u'shower', u'kiwi', u'voluntari', u'power'] [u'concern', u'govt', u'environment', u'prioriti'] [u'coober', u'pedi', u'elder', u'criticis', u'wast', u'dump', u'decis'] [u'crusad', u'dent', u'brumbi', u'final', u'chanc'] [u'death', u'toll', u'uncertain', u'freak', u'accid'] [u'defenc', u'call', u'technolog', u'invent'] [u'eagl', u'edg', u'cat', u'saint', u'march'] [u'ferrero', u'sink', u'schuettler'] [u'firi', u'tell', u'werent', u'need', u'canberra'] [u'footbal', u'dead', u'studi', u'find'] [u'fraser', u'verdict', u'bring', u'closur', u'mayor'] [u'gibernau', u'quickest', u'qualifi'] [u'glori', u'secur', u'grand', u'final', u'berth'] [u'govt', u'approv', u'drought', u'relief'] [u'govt', u'top', u'fund', u'memori'] [u'greek', u'athlet', u'record', u'posit', u'drug', u'test'] [u'hangar', u'collaps', u'probe', u'prematur', u'govt'] [u'harrington', u'take', u'belfri', u'lead'] [u'hobart', u'readi', u'rock', u'work', u'festiv'] [u'howard', u'prais', u'gulf', u'troop'] [u'indefinit', u'jail', u'term', u'seek', u'fraser'] [u'intern', u'expert', u'discuss', u'sar', u'melbourn'] [u'johnson', u'face', u'tough', u'test'] [u'johnson', u'run', u'second', u'japan'] [u'jone', u'grab', u'lead', u'lpga', u'event'] [u'kangaroo', u'hawk'] [u'krakouer', u'lead', u'tiger'] [u'larkham', u'doubt', u'ireland', u'test'] [u'larkham', u'miss', u'ireland', u'test'] [u'lawson', u'rout', u'aussi'] [u'lawson', u'star', u'windi', u'control'] [u'magpi', u'lose', u'streak'] [u'charg', u'wilmot', u'shoot'] [u'kill', u'phone', u'booth'] [u'face', u'court', u'sydney', u'drug', u'raid'] [u'nasa', u'offer', u'launch', u'star'] [u'near', u'chines', u'sar', u'quarantin'] [u'nepales', u'govt', u'maoist', u'rebel', u'talk'] [u'net', u'crush', u'celtic'] [u'airport', u'servic', u'close'] [u'govt', u'ask', u'support', u'countri', u'show'] [u'polic', u'probe', u'suspici', u'death', u'teen'] [u'skipper', u'barker', u'back', u'portug'] [u'ogradi', u'edg', u'cook', u'fourth'] [u'oklahoma', u'clean', u'tornado', u'flood', u'south'] [u'opposit', u'slam', u'debat'] [u'panther', u'hold', u'dragon', u'knight', u'crush', u'rabbitoh'] [u'phoenix', u'swift', u'kestrel', u'notch', u'win'] [u'pie', u'thrill', u'crow'] [u'polic', u'arrest', u'worth', u'ecstasi'] [u'polic', u'shoot', u'woman', u'point', u'son', u'head'] [u'pont', u'ill', u'identifi'] [u'price', u'lead', u'championship'] [u'nat', u'meet', u'choos', u'lester', u'replac'] [u'question', u'ask', u'govt', u'nuclear', u'wast', u'plan'] [u'rann', u'vow', u'fight', u'wast', u'dump'] [u'reid', u'set', u'sight', u'keep', u'kewel'] [u'see', u'sydney', u'inund', u'truck'] [u'russian', u'visa', u'applic', u'review'] [u'ryan', u'pull', u'world', u'championship'] [u'sainz', u'take', u'charg', u'gronholm', u'hit', u'rock'] [u'polic', u'arrest', u'second', u'amphetamin', u'past'] [u'second', u'outbreak', u'wheat', u'virus', u'toowoomba'] [u'secur', u'offic', u'tell', u'expect', u'worst', u'bali'] [u'small', u'busi', u'push', u'industri'] [u'sorenstam', u'surg', u'stroke', u'lead'] [u'stoush', u'suggest', u'host', u'wast', u'dump'] [u'abalon', u'industri', u'crisi', u'wake', u'sar'] [u'prison', u'open', u'tourist'] [u'face', u'huge', u'recal'] [u'thirteen', u'dead', u'bomb', u'blast', u'southern', u'philippin'] [u'children', u'kill', u'pakistani', u'kashmir'] [u'kill', u'helicopt', u'crash', u'iraq'] [u'urg', u'lift', u'sanction', u'iraq'] [u'fear', u'dead', u'congoles', u'accid'] [u'commit', u'afghanistan', u'armitag'] [u'report', u'kill', u'iraq', u'crash'] [u'upbeat', u'iraqi', u'sanction', u'talk'] [u'polic', u'catch', u'limit'] [u'govt', u'criticis', u'road', u'fund', u'cut'] [u'govt', u'warn', u'overspend', u'hospit'] [u'polic', u'investig', u'bomb', u'incid'] [u'waratah', u'need', u'strong', u'perform', u'burk'] [u'waratah', u'play', u'wait', u'game'] [u'webber', u'sign', u'jaguar', u'deal'] [u'windi'] [u'windi', u'initi'] [u'win', u'darter', u'phoenix', u'swift', u'kestrel'] [u'woman', u'hospitalis', u'shoot', u'north', u'west'] [u'woman', u'kill', u'gold', u'coast', u'high', u'rise', u'blaze'] [u'world', u'smallest', u'seahors', u'discov'] [u'yemeni', u'get', u'death', u'kill', u'missionari'] [u'diagnos', u'meningococc', u'diseas'] [u'sayyaf', u'claim', u'dead', u'bomb', u'blast'] [u'establish', u'water'] [u'call', u'poker', u'profit', u'flow'] [u'akhtar', u'fire', u'pakistan', u'victori', u'lanka'] [u'head', u'warn', u'heighten', u'risk', u'australian'] [u'arab', u'newspap', u'resum', u'publish', u'baghdad'] [u'asian', u'compani', u'interest', u'darwin', u'busi', u'park'] [u'australia', u'control'] [u'australia', u'control', u'test'] [u'australia', u'wealth', u'imbal', u'worsen', u'vinni'] [u'beatti', u'call', u'govt', u'action', u'pay'] [u'beatti', u'urg', u'parent', u'guid', u'teen', u'attend'] [u'beatti', u'urg'] [u'bosnian', u'serb', u'offici', u'armi', u'protect'] [u'bristol', u'face', u'releg'] [u'britain', u'pull', u'amid', u'exposur', u'fear'] [u'british', u'barrist', u'cling', u'tradit'] [u'bronco', u'lead', u'lightn', u'start'] [u'bronco', u'light', u'work', u'cowboy'] [u'brumbi', u'look', u'forward', u'semi', u'final'] [u'budget', u'focus', u'health', u'educ', u'democrat'] [u'bull', u'sink', u'shark'] [u'bush', u'donat', u'fund', u'tornado', u'victim'] [u'busi', u'urg', u'retain', u'older', u'worker'] [u'medic', u'student', u'select', u'chang'] [u'call', u'resign', u'continu'] [u'call', u'fund', u'autism', u'program'] [u'capirossi', u'grab', u'spanish', u'pole'] [u'cecchinello', u'hold', u'spanish', u'repeat'] [u'claim', u'govt', u'boost', u'doctor', u'number', u'rural'] [u'clijster', u'break', u'capriati', u'jinx'] [u'wont', u'support', u'nuclear', u'wast', u'dump'] [u'congan', u'death', u'toll', u'exceed', u'airport', u'sourc'] [u'costello', u'say', u'aust', u'role', u'iraq', u'cost'] [u'crean', u'meet', u'beazley', u'week'] [u'crow', u'lose', u'carey', u'lion', u'clash'] [u'csiro', u'staff', u'demand', u'fund'] [u'darwin', u'busi', u'evacu', u'leak'] [u'delay', u'take', u'sick', u'detaine', u'hospit', u'lawyer'] [u'dem', u'announc', u'fund', u'plan', u'royal', u'commiss'] [u'detaine', u'releas', u'hospit'] [u'dortmund', u'second', u'ricken', u'doubl'] [u'driver', u'court', u'kill', u'phone'] [u'eagl', u'edg', u'cat', u'saint', u'march'] [u'egypt', u'recov', u'ancient', u'treasur'] [u'kill', u'kashmir', u'violenc'] [u'eriksson', u'readi', u'rooney'] [u'ferrero', u'follow', u'agassi', u'hamburg', u'master'] [u'francou'] [u'step', u'anti', u'abus', u'group'] [u'futur', u'hand', u'costello'] [u'gold', u'coast', u'monitor', u'sar'] [u'govt', u'urg', u'commit', u'pay', u'matern', u'leav'] [u'hoddl', u'vow', u'revers', u'spur', u'slump'] [u'horan', u'turn', u'red', u'offer'] [u'cancer', u'fear', u'unfound', u'surgeon'] [u'caus', u'breast', u'cancer', u'expert'] [u'india', u'conduct', u'second', u'test', u'missil'] [u'indonesia', u'name', u'aceh', u'rebel', u'leader', u'bomb', u'suspect'] [u'iverson', u'shin', u'philadelphia', u'beat', u'detroit'] [u'japan', u'edg', u'young', u'australian'] [u'johnson', u'turn', u'attent', u'europ'] [u'jone', u'extend', u'lead', u'lpga', u'event'] [u'juventus', u'italian', u'leagu', u'titl'] [u'kennelli', u'take', u'tahiti', u'event'] [u'kojonup', u'farmer', u'lib', u'senat', u'ticket'] [u'lara', u'keep', u'windi', u'contest'] [u'lara', u'keep', u'windi', u'touch'] [u'lara', u'waugh', u'escap', u'censur'] [u'laurinel', u'argi', u'win'] [u'learner', u'driver', u'limit'] [u'luger', u'confirm', u'perpignan'] [u'magpi', u'savour', u'miracl'] [u'appear', u'court', u'murder', u'high'] [u'arrest', u'polic', u'biggest', u'haul'] [u'arrest', u'polic', u'huge', u'haul'] [u'hospit', u'balconi', u'fall', u'perth', u'casino'] [u'injur', u'fall', u'casino', u'balconi'] [u'remand', u'custodi', u'wilmot', u'shoot'] [u'mantilla', u'face', u'feder', u'rome', u'final'] [u'face', u'sydney', u'court', u'girl', u'murder'] [u'court', u'kill', u'phone', u'booth'] [u'marsh', u'percent', u'english', u'report'] [u'mass', u'grave', u'chechnya', u'contain', u'bodi'] [u'melbourn', u'woman', u'clear', u'sar'] [u'monaco', u'marseill', u'stumbl'] [u'montgomeri', u'brush', u'chamber', u'record', u'threat'] [u'moreau', u'claim', u'yellow', u'jersey'] [u'sar', u'treatment', u'claim', u'team'] [u'question', u'hollingworth', u'crean'] [u'northern', u'spirit', u'fight', u'draw'] [u'legal', u'servic', u'push', u'equal', u'right'] [u'parliament', u'hous', u'throw', u'open', u'door'] [u'open', u'steer', u'australia', u'track'] [u'open', u'steer', u'australia', u'strong', u'posit'] [u'pakistan', u'skittl', u'zealand'] [u'palestinian', u'kill', u'isra', u'west', u'bank', u'ambush'] [u'parent', u'teen', u'away', u'gold', u'coast'] [u'pasminco', u'west', u'coast', u'council', u'winner'] [u'petacchi', u'lead', u'italian', u'doubl'] [u'contact', u'bacon', u'decis'] [u'go', u'green'] [u'polic', u'appeal', u'help', u'father', u'attack'] [u'polic', u'prepar', u'massiv', u'secur', u'oper'] [u'port', u'arthur', u'unveil', u'tourist', u'attract'] [u'portugues', u'reveng', u'match', u'call'] [u'powel', u'call', u'palestinian', u'disarm', u'milit'] [u'powel', u'meet', u'sharon', u'push', u'peac', u'plan'] [u'priest', u'massacr', u'congo', u'worker'] [u'nat', u'select', u'fisher', u'keppel', u'contest'] [u'rare', u'potoroo', u'coloni', u'southern'] [u'real', u'leav', u'door', u'open', u'championship', u'challeng'] [u'real', u'leav', u'door', u'open', u'championship'] [u'sar', u'case', u'worsen', u'asia', u'eas', u'canada'] [u'school', u'mainten', u'taskforc', u'wast', u'time'] [u'scientist', u'trawl', u'tasman', u'search'] [u'second', u'drive', u'shoot', u'sydney', u'day'] [u'shave', u'report', u'consid', u'comeback'] [u'shiit', u'leader', u'return', u'tackl', u'iraq', u'sanction'] [u'singaporean', u'nurs', u'die', u'sar', u'rais', u'death'] [u'sorenstam', u'open', u'stroke', u'lead', u'tokyo'] [u'stamp', u'coin', u'issu', u'mark', u'princ', u'william'] [u'stormer', u'season', u'high', u'note'] [u'studi', u'show', u'mother', u'volunt'] [u'support', u'jone', u'replac', u'fel', u'accc', u'chief'] [u'suspect', u'sar', u'patient', u'melbourn', u'hospit'] [u'swan', u'upset', u'lion', u'win', u'demon', u'docker'] [u'sydney', u'doctor', u'continu', u'tobin', u'work'] [u'govt', u'acknowledg', u'feder', u'help', u'abetz'] [u'taskforc', u'probe', u'school', u'mainten'] [u'push', u'voluntari', u'euthanasia'] [u'support', u'group', u'call', u'resign'] [u'teen', u'hurt', u'gatecrash', u'storm', u'adelaid', u'parti'] [u'investig', u'sar', u'australia'] [u'belfri', u'lead'] [u'tom', u'event'] [u'kill', u'northern', u'india'] [u'monitor', u'sar', u'australia'] [u'charg', u'arson', u'hous'] [u'hospit', u'sydney', u'shoot'] [u'ullrich', u'unconcern', u'tour', u'despit', u'team'] [u'unwant', u'lyle', u'set', u'sight', u'ryder', u'captainci'] [u'warn', u'catastroph', u'congo', u'fight', u'go'] [u'congress', u'committe', u'approv', u'nuclear'] [u'expert', u'tackl', u'sar'] [u'iran', u'hold', u'direct', u'talk', u'geneva', u'offici'] [u'exel', u'provid', u'tell', u'finish', u'dalla', u'edg'] [u'critic', u'time', u'educ'] [u'green', u'hop', u'scuttl', u'nuclear', u'dump', u'plan'] [u'waratah', u'fall', u'hurdl'] [u'warm', u'sorenstam'] [u'wenger', u'hop', u'regain', u'titl'] [u'wolv', u'edg', u'read', u'sheffield', u'forc', u'draw'] [u'woman', u'attack', u'outsid', u'home'] [u'women', u'shoot', u'chest', u'disturb', u'thiev'] [u'clear', u'macquari', u'ownership', u'inquiri'] [u'win', u'logi'] [u'accommod', u'shortag', u'gladston'] [u'aceh', u'ceasefir', u'close', u'collaps'] [u'agenc', u'call', u'order', u'iraq'] [u'albion', u'park', u'resid', u'talk', u'telstra', u'countri'] [u'amrozi', u'face', u'court', u'bali', u'blast'] [u'amrozi', u'front', u'court', u'bali', u'trial', u'begin'] [u'amrozi', u'appear', u'court'] [u'amrozi', u'trial', u'adjourn', u'week'] [u'angler', u'rescu', u'boat', u'ordeal'] [u'ansett', u'pilot', u'legal', u'action', u'lose', u'wag'] [u'anti', u'hoon', u'law', u'work', u'coast', u'mcgradi'] [u'suspend', u'solomon', u'island', u'bank', u'oper'] [u'arm', u'fisheri', u'boat', u'return', u'catch'] [u'armi', u'worm', u'woe'] [u'arsenal', u'pair', u'uncertain', u'final'] [u'arson', u'charg', u'drop', u'woomera', u'detaine'] [u'aussi', u'dollar', u'hit', u'year', u'high'] [u'australia', u'bowl', u'second', u'inning'] [u'australian', u'fruit', u'vege', u'singapor', u'market'] [u'award', u'rove', u'popular', u'person'] [u'bank', u'promina', u'market', u'higher'] [u'beazley', u'urg', u'loyal'] [u'better', u'rain', u'tip', u'south', u'east', u'coast'] [u'blackburn', u'secur', u'uefa', u'place'] [u'bourdai', u'win', u'german', u'zanardi', u'steal'] [u'bremer', u'land', u'basra'] [u'bridgetown', u'elector', u'plan', u'upset'] [u'british', u'flee', u'paper', u'blow', u'cover'] [u'budget', u'doesnt', u'worri', u'csiro', u'marin', u'chief'] [u'budget', u'reveal', u'higher', u'educ', u'reform'] [u'busi', u'urg', u'prepar', u'cyber', u'crime'] [u'cafl', u'develop', u'clearer', u'player', u'report', u'polici'] [u'tourism', u'oper', u'trade', u'tour'] [u'mental', u'health', u'program'] [u'canada', u'strike', u'gold', u'hockey', u'champ'] [u'carr', u'rule', u'feder', u'aspir'] [u'castronev', u'grab', u'indi', u'pole'] [u'charg', u'lay', u'schoolyard', u'fight'] [u'chelsea', u'beat', u'liverpool', u'champion', u'leagu'] [u'chelsea', u'claim', u'champion', u'leagu', u'spot'] [u'chief', u'minist', u'critic', u'propos', u'law'] [u'chook', u'stress', u'microscop'] [u'civilian', u'massacr', u'fight', u'congo', u'town'] [u'claim', u'csiro', u'ami', u'budget', u'shake'] [u'club', u'challeng', u'council', u'decis', u'tabl'] [u'concern', u'air', u'nuclear', u'wast', u'spill', u'potenti'] [u'confer', u'hear', u'cultur', u'import'] [u'consum', u'confid', u'highest', u'year', u'poll'] [u'costello', u'urg', u'hand', u'care', u'budget'] [u'council', u'approv', u'marina', u'plan'] [u'council', u'await', u'news', u'super', u'contribut'] [u'council', u'survey', u'public', u'servic'] [u'court', u'hear', u'broom', u'nativ', u'titl', u'claim'] [u'crean', u'beazley', u'face'] [u'crean', u'demand', u'caucus', u'uniti'] [u'crean', u'trade', u'blow', u'suppress', u'order'] [u'crimin', u'team', u'card', u'scam', u'polic'] [u'critic', u'prompt', u'shake', u'leadership', u'iraq'] [u'csiro', u'staff', u'evid', u'budget', u'cut'] [u'csiro', u'virus', u'research', u'target', u'cane', u'toad'] [u'dairi', u'project', u'get', u'boost'] [u'dee', u'danih'] [u'democrat', u'plan', u'debat', u'despit', u'senat'] [u'deputi', u'conven', u'ethanol', u'product', u'meet'] [u'dollar', u'hit', u'year', u'high'] [u'dozen', u'kill', u'chechnya', u'bomb', u'blast'] [u'driver', u'urg', u'buckl'] [u'drought', u'blame', u'shepherd', u'woe'] [u'drug', u'crop', u'accus', u'refus', u'bail'] [u'drug', u'test', u'save', u'bunni', u'knife'] [u'drink', u'polish', u'bishop', u'face', u'prison', u'drink', u'drive'] [u'reject', u'leav', u'farmer', u'dismay'] [u'estudiant', u'maintain', u'unbeaten', u'record'] [u'explos', u'hit', u'ireland', u'unionist', u'parti'] [u'expo', u'repeat', u'year'] [u'famili', u'surplus', u'labor'] [u'fan', u'throw', u'money', u'cruzeiro', u'cruis', u'victori'] [u'farmer', u'drought'] [u'farmer', u'seek', u'climat', u'map', u'scheme'] [u'feder', u'fund', u'drought', u'recoveri', u'work'] [u'govt', u'urg', u'road', u'fund', u'pledg'] [u'put', u'temco', u'product'] [u'fish', u'hook', u'budget', u'fund'] [u'footbal', u'scoreboard', u'lose'] [u'priest', u'jail', u'child', u'abus'] [u'right', u'group', u'lobbi'] [u'gold', u'coast', u'monitor', u'sar'] [u'goldfield', u'place', u'nuclear', u'wast', u'dump', u'green'] [u'govt', u'confid', u'bali', u'blast', u'trial', u'process', u'ellison'] [u'govt', u'good', u'posit', u'increas', u'employ'] [u'govt', u'pleas', u'delay', u'river', u'murray', u'decis'] [u'govt', u'reject', u'vic', u'doubl', u'scienc', u'fund'] [u'govt', u'match', u'commit', u'pipelin'] [u'govt', u'homeless', u'famili', u'studi'] [u'govt', u'creat', u'extra', u'student', u'doctor', u'place'] [u'green', u'light', u'communiti', u'garden'] [u'green', u'budget', u'fight'] [u'gronholm', u'steal', u'argentina'] [u'hayden', u'rise', u'caribbean', u'challeng'] [u'help', u'hand', u'fight', u'domest', u'violenc'] [u'henin', u'hardenn', u'win', u'belgian', u'battl'] [u'hospit', u'get', u'facil', u'boost', u'babi'] [u'hotel', u'extinguish'] [u'cool', u'casey', u'captur', u'belfri', u'titl'] [u'indian', u'fishermen', u'warn', u'cyclon', u'brew'] [u'indonesian', u'offici', u'bali', u'bomb', u'suspect'] [u'inquiri', u'announc', u'altern', u'medicin'] [u'internet', u'secur', u'spotlight'] [u'investig', u'plan', u'mechan', u'fault'] [u'iran', u'ban', u'dozen', u'websit', u'polit'] [u'iraqi', u'spi', u'infiltr', u'jazeera', u'news', u'channel'] [u'iraqi', u'tell', u'saddam', u'parti', u'dissolv'] [u'israel', u'announc', u'palestinian', u'goodwil', u'gestur'] [u'isra', u'armi', u'close', u'gaza', u'strip'] [u'israel', u'eas', u'life', u'palestinian', u'powel'] [u'evid', u'challeng', u'polic', u'royal', u'commiss'] [u'labor', u'air', u'concern', u'research', u'bodi'] [u'laker', u'level', u'score', u'spur'] [u'lyon', u'clinch', u'champion', u'leagu', u'spot'] [u'mackay', u'court', u'death'] [u'charg', u'stab'] [u'die', u'road', u'crash'] [u'die', u'traffic', u'crash'] [u'manhunt', u'underway', u'alight', u'japan'] [u'kill', u'accid'] [u'manoora', u'leav', u'gulf'] [u'mantilla', u'master', u'rome'] [u'face', u'court', u'assault', u'charg'] [u'face', u'court', u'church'] [u'maroon', u'tour', u'lang', u'park'] [u'meet', u'council', u'super', u'woe'] [u'mcewen', u'strip', u'giro'] [u'memori', u'celebr', u'victoria', u'cross', u'recipi'] [u'militari', u'museum', u'pay'] [u'mix', u'respons', u'plan', u'nuclear', u'wast', u'dump', u'site'] [u'moreau', u'win', u'way', u'dunkirk', u'day'] [u'murray', u'promis', u'field', u'best', u'avail', u'citi'] [u'nation', u'park', u'cull', u'underway'] [u'neil', u'fisher', u'choos', u'nat', u'keppel', u'candid'] [u'nativ', u'titl', u'applic', u'lodg'] [u'york', u'time', u'expos', u'fraud', u'report'] [u'victorian', u'side', u'domin'] [u'age', u'care', u'nurs', u'mount', u'rise', u'campaign'] [u'nurs', u'special', u'highlight', u'woe'] [u'offici', u'bali', u'bomb', u'suspect', u'guilti'] [u'ohara', u'receiv', u'countri'] [u'vessel', u'sink', u'coast', u'india'] [u'peac', u'monitor', u'leav', u'aceh', u'loom'] [u'petrol', u'sniff', u'health', u'care', u'time', u'bomb', u'nurs'] [u'philippin', u'polic', u'arrest', u'bomb'] [u'tanner', u'move', u'lift', u'suppress'] [u'polic', u'continu', u'investig', u'dri', u'cannabi'] [u'polic', u'hunt', u'arm', u'bandit'] [u'polic', u'probe', u'fuel', u'depot', u'attack'] [u'possibl', u'sar', u'suffer', u'remain', u'hospit'] [u'powel', u'urg', u'isra', u'palestinian'] [u'power', u'station', u'mainten', u'worker', u'strike'] [u'promina', u'share', u'begin', u'trade', u'today'] [u'promina', u'share', u'jump', u'float'] [u'govt', u'urg', u'maintain', u'grant', u'pressur'] [u'queen', u'tell', u'decis', u'step'] [u'railway', u'oper', u'fundrais', u'drive'] [u'rain', u'take', u'area', u'drought', u'list'] [u'ranger', u'scotland'] [u'real', u'sociedad', u'jump', u'second', u'place'] [u'research', u'bumper', u'whale', u'breed', u'season'] [u'resid', u'rebuild', u'blaze'] [u'rooney', u'remov', u'english', u'squad'] [u'rosi', u'jone', u'break', u'drought'] [u'rossi', u'reign', u'spain', u'bayliss'] [u'ryan', u'lobbi', u'state', u'drought'] [u'govt', u'reject', u'school', u'closur', u'claim'] [u'sar', u'prospect', u'remain', u'grim', u'chines', u'premier'] [u'shed', u'transform', u'public'] [u'shire', u'presid', u'elect'] [u'paul', u'rock', u'rome'] [u'korea', u'urg', u'bush', u'sign', u'nuclear', u'peac', u'pledg'] [u'smec', u'worker', u'help', u'rebuild', u'iraq'] [u'sniffer', u'dog', u'patrol', u'parliament', u'hous'] [u'social', u'conflict', u'fear', u'unfound', u'mosqu', u'propon'] [u'solomon', u'island', u'bank', u'close', u'protest'] [u'southcorp', u'chief', u'blame', u'trade', u'condit', u'slump'] [u'southcorp', u'share', u'plung', u'earn', u'forecast'] [u'spirit', u'forc', u'draw'] [u'studi', u'consid', u'bushfir', u'long', u'term', u'health'] [u'survey', u'consid', u'recal', u'impact'] [u'talk', u'plan', u'council', u'super', u'woe'] [u'teacher', u'welcom', u'pledg', u'tape'] [u'teenag', u'appear', u'court', u'murder'] [u'teen', u'stand', u'trial', u'kill', u'train'] [u'thousand', u'flock', u'mayb', u'burrandowan', u'race'] [u'thousand', u'quarantin', u'china', u'sar'] [u'time', u'frame', u'chang', u'murray', u'flow', u'decis'] [u'tom', u'triumph', u'north', u'carolina'] [u'german', u'literatur', u'prize', u'award', u'alexand'] [u'minist', u'resign', u'iraq', u'conflict'] [u'tougher', u'control', u'moot', u'alcohol', u'outlet'] [u'treason', u'trial', u'resum', u'zimbabw'] [u'troop', u'head', u'iraq', u'peacekeep'] [u'truss', u'defend', u'drought', u'fund', u'decis'] [u'probabl', u'sar', u'case', u'report', u'australia'] [u'peopl', u'hospit', u'home', u'invas'] [u'attack', u'secur', u'guard'] [u'look', u'egypt', u'peac', u'plan', u'support'] [u'reorganis', u'iraqi', u'oper', u'face'] [u'wind', u'hunt', u'report'] [u'warn', u'plant', u'wheat', u'plot'] [u'govt', u'minist', u'head', u'horsham'] [u'govt', u'salin', u'fund'] [u'warn', u'end', u'job', u'scheme', u'wider', u'impact'] [u'warn', u'issu', u'petrol', u'sniff', u'cost'] [u'weighti', u'challeng', u'face', u'wellington', u'resid'] [u'west', u'releg'] [u'whale', u'breed', u'season', u'predict'] [u'windi', u'begin', u'chase'] [u'windi', u'stage', u'fightback'] [u'winton', u'forum', u'health', u'spotlight'] [u'woman', u'injur', u'tamworth', u'attack'] [u'zimbabw', u'opposit', u'leader', u'treason', u'trial', u'resum'] [u'dead', u'dozen', u'hurt', u'saudi', u'blast'] [u'condemn', u'mcgrath', u'bust'] [u'condemn', u'field', u'antic'] [u'accc', u'wont', u'oppos', u'plan', u'takeov'] [u'accus', u'driver', u'get', u'bail'] [u'properti', u'market', u'flatten'] [u'agre', u'contact', u'rule', u'chang'] [u'keen', u'bounc'] [u'aid', u'biggest', u'human', u'tragedi', u'dean'] [u'airlin', u'make', u'concess', u'push', u'ahead'] [u'ord', u'rise', u'ahead', u'budget'] [u'ambul', u'servic', u'add', u'strain'] [u'anniversari', u'sink', u'centaur'] [u'art', u'expenditur', u'maintain'] [u'athen', u'olymp', u'game', u'ticket', u'sale'] [u'dead', u'riyadh', u'explos'] [u'atsic', u'split'] [u'australia', u'hop', u'quick', u'wicket'] [u'australian', u'dead', u'saudi', u'bomb', u'qaeda'] [u'australian', u'invinc', u'toshack', u'dead'] [u'australian', u'kill', u'saudi', u'bomb', u'blast'] [u'australian', u'testifi', u'bali', u'bomb', u'trial'] [u'austria', u'farewel', u'formula'] [u'backbench', u'fair'] [u'beatti', u'tabl', u'lengthi', u'critiqu'] [u'blast', u'rock', u'mildura', u'hous'] [u'blue', u'selector', u'origin', u'challeng'] [u'brother', u'fail', u'court', u'compani'] [u'brother', u'order', u'face', u'court', u'group', u'woe'] [u'budget', u'point'] [u'budget', u'surplus', u'prioriti', u'costello'] [u'budget', u'profound', u'differ', u'state', u'brack'] [u'build', u'evacu', u'partial', u'collaps'] [u'budget', u'boost', u'research', u'centr'] [u'cann', u'come', u'aliv', u'film', u'festiv', u'start'] [u'cathol', u'school', u'close', u'door'] [u'caucau', u'lomu', u'super', u'semi', u'final'] [u'claim', u'cours', u'chang', u'dump', u'oper'] [u'clean', u'begin', u'flood', u'sydney'] [u'colin', u'powel', u'arriv', u'saudi', u'follow', u'bomb'] [u'communiti', u'urg', u'join', u'basslink', u'monitor', u'group'] [u'concern', u'air', u'bypass', u'plan'] [u'condobolin', u'rlpb', u'applic'] [u'conserv', u'group', u'budget', u'fail'] [u'costello', u'reveal', u'billion', u'surplus', u'cut'] [u'council', u'approv', u'board', u'kennel'] [u'councillor', u'reject', u'rise', u'idea'] [u'council', u'tell', u'reserv', u'best', u'site', u'age', u'care', u'centr'] [u'court', u'hear', u'determin', u'nativ', u'titl', u'continu'] [u'court', u'hear', u'jihad', u'suburb'] [u'court', u'start', u'hear', u'nativ', u'titl', u'case'] [u'csiro', u'get', u'boost'] [u'death', u'toll', u'chechnya', u'blast', u'rise'] [u'defenc', u'get', u'boost'] [u'defo', u'line', u'leav', u'hammer'] [u'defo', u'hand', u'west', u'transfer', u'request'] [u'canio', u'blast', u'hammer', u'board'] [u'doctor', u'group', u'hop', u'budget'] [u'dozen', u'wound', u'riyadh', u'blast'] [u'dutch', u'doctor', u'get', u'visa'] [u'dwyer', u'step', u'waratah', u'coach'] [u'educ', u'reform', u'centrepiec', u'budget'] [u'fear', u'research', u'centr', u'forc', u'merger'] [u'feder', u'govt', u'urg', u'focus', u'essenti'] [u'fina', u'consid', u'hackett', u'propos'] [u'fisher', u'export', u'flight', u'detail'] [u'flinder', u'repair', u'continu', u'summer', u'bushfir'] [u'florida', u'claim', u'wife', u'tri', u'kill'] [u'fund', u'boost', u'relationship', u'counsel', u'servic'] [u'fund', u'steadi'] [u'germani', u'track', u'world'] [u'govt', u'accus', u'polit', u'vendetta', u'stop'] [u'govt', u'vaccin', u'worker', u'fever', u'union'] [u'govt', u'fight', u'health'] [u'govt', u'unveil', u'rural', u'relief', u'packag'] [u'grainco', u'merger', u'consid'] [u'green', u'want', u'region', u'focus', u'transport', u'probe'] [u'green', u'swear', u'thursday'] [u'group', u'surpris', u'home', u'ownership', u'figur'] [u'group', u'slam', u'ruddock', u'respons', u'child', u'detaine'] [u'gunner', u'head', u'chanc', u'saloon'] [u'hacker', u'caus', u'major', u'damag', u'confer', u'hear'] [u'hackett', u'complain', u'fina', u'schedul'] [u'harrison', u'torren', u'join', u'stone', u'sidelin'] [u'health', u'group', u'budget', u'littl', u'address'] [u'health', u'servic', u'suspend', u'surgeri'] [u'heavi', u'rain', u'caus', u'chao', u'sydney'] [u'hendrix', u'bass', u'player', u'die'] [u'higher', u'educ', u'shake'] [u'hong', u'kong', u'doctor', u'die', u'sar'] [u'hope', u'feder', u'budget', u'fund'] [u'horsham', u'councillor', u'tour', u'region'] [u'hous', u'boom'] [u'howard', u'welcom', u'home', u'raaf', u'troop'] [u'banger', u'winner', u'whatmor'] [u'india', u'name', u'ambassador', u'pakistan'] [u'inmat', u'insid', u'evacu'] [u'intern', u'atsic', u'chief', u'resign'] [u'isra', u'prepar', u'talk', u'leader'] [u'jackson', u'return', u'surgeri', u'game'] [u'jenkin', u'boot', u'quit', u'intern', u'stage'] [u'agenc', u'feel', u'fund', u'cut'] [u'johnson', u'say', u'respect', u'rival'] [u'kookaburra', u'team', u'challeng'] [u'kookaburra', u'squad', u'finalis'] [u'labor', u'urg', u'approv', u'medicar', u'chang'] [u'lester', u'welcom', u'candid'] [u'limit', u'spend', u'budget', u'wagga'] [u'lobster', u'tail', u'clip', u'practic', u'review'] [u'macquari', u'bank', u'share', u'jump', u'profit', u'result'] [u'face', u'assault', u'abduct', u'charg'] [u'marsh', u'upbeat', u'worcestershir'] [u'martinez', u'upset', u'dokic', u'rome', u'master'] [u'meatwork', u'face', u'uncertain', u'futur'] [u'meet', u'offer', u'advic', u'drought', u'victim'] [u'michael', u'jackson', u'sue', u'record', u'label', u'million'] [u'miwatj', u'health', u'clinic', u'disput', u'public', u'domain'] [u'mix', u'reaction', u'budget', u'univers', u'reform'] [u'mix', u'respons', u'beatti', u'schooli', u'comment'] [u'montoya', u'speed', u'cost', u'licenc'] [u'answer', u'want', u'pipelin', u'fund'] [u'call', u'court', u'revamp'] [u'mayor', u'return', u'margin'] [u'mother', u'await', u'bali', u'bomb', u'trial', u'outcom'] [u'moy', u'name', u'manag', u'year'] [u'air', u'nuclear', u'wast', u'transport', u'concern'] [u'back', u'crean', u'threat', u'action'] [u'speak', u'nuclear', u'wast', u'dump'] [u'multi', u'nation', u'approach', u'tackl', u'crime'] [u'murali', u'leav', u'spin'] [u'murder', u'trial', u'enter', u'second'] [u'music', u'help', u'bolster', u'school', u'attend'] [u'nanni', u'charg', u'toddler', u'rap'] [u'net', u'sweep', u'celtic'] [u'campaign', u'erad', u'polio'] [u'law', u'introduc', u'follow', u'scandal'] [u'mayor', u'push', u'greater', u'uniti'] [u'club', u'endors', u'current'] [u'govt', u'outback', u'challeng'] [u'number', u'home', u'loan', u'continu', u'rise'] [u'nurs', u'honour', u'award'] [u'time', u'await', u'fallout', u'journalist', u'lie'] [u'ombudsman', u'report', u'increas', u'complaint'] [u'overnight', u'stab', u'possibl', u'bash'] [u'rule', u'royal', u'commiss', u'child', u'sexual'] [u'polic', u'commiss', u'reveal', u'secret', u'record'] [u'polic', u'probe', u'babi', u'death'] [u'polit', u'put', u'foreshor', u'opposit'] [u'power', u'station', u'worker', u'return', u'work'] [u'prison', u'wing', u'evacu', u'pipe', u'burst'] [u'public', u'access', u'fish', u'boat', u'item'] [u'public', u'nois', u'review'] [u'qanta', u'allianc', u'approv'] [u'reshuffl', u'see', u'mcewen'] [u'resid', u'super', u'anger'] [u'resid', u'flee', u'kill', u'fight', u'bunia'] [u'rfds', u'hire', u'extra', u'pilot', u'amidst', u'disput'] [u'road', u'congress', u'includ', u'outback', u'highway', u'talk'] [u'artist', u'work', u'york'] [u'sale', u'defenc', u'build', u'abandon'] [u'sandra', u'bullock', u'gain', u'restrain', u'order'] [u'sarwan', u'relish', u'test', u'best'] [u'paedophil', u'regist'] [u'senat', u'block', u'budget', u'element'] [u'sepeng', u'drop', u'south', u'africa', u'world', u'team'] [u'seventh', u'suprem', u'court', u'judg', u'need', u'urgent', u'hodgman'] [u'sever', u'weather', u'warn', u'illawarra'] [u'shock', u'loss', u'race', u'restrucutur'] [u'shock', u'result', u'local', u'govt', u'elect'] [u'sixer', u'tyron', u'hill', u'sidelin', u'calf', u'tear'] [u'slack', u'get', u'vote', u'confid', u'red', u'manag'] [u'smith', u'wield'] [u'springbok', u'captain', u'player'] [u'srichaphan', u'struggl', u'clay', u'continu'] [u'stakeknif', u'deni', u'british', u'mole'] [u'straeuli', u'narrow', u'springbok', u'captain', u'choic'] [u'strike', u'action', u'franc', u'close', u'school'] [u'student', u'face', u'court', u'onlin', u'piraci', u'charg'] [u'sugar', u'industri', u'hop', u'budget', u'sweeten'] [u'suicid', u'bomber', u'blame', u'saudi', u'attack'] [u'taiwan', u'hard', u'sar', u'outbreak'] [u'talk', u'continu', u'wallabi', u'world', u'bonus', u'payment'] [u'tamworth', u'target', u'store', u'welcom', u'news'] [u'million', u'govt'] [u'teacher', u'threaten', u'walk', u'disput'] [u'telstra', u'sale'] [u'territori', u'woman', u'hospitalis', u'buffalo', u'attack'] [u'time', u'resign', u'labor'] [u'townsvill', u'hop', u'budget', u'boost'] [u'tree', u'plant', u'program', u'restor', u'endang'] [u'tribut', u'pay', u'australian', u'ralli', u'champion'] [u'truck', u'lobbi', u'air', u'budget', u'doubt'] [u'tuckey', u'hop', u'extend', u'fund'] [u'umpir', u'wear', u'brighter', u'colour'] [u'uncompromis', u'inter', u'seek', u'dispel', u'death'] [u'underground', u'wineri', u'readvertis', u'sale'] [u'union', u'resolv', u'ukrainian', u'ship', u'disput'] [u'unit', u'state', u'play', u'davi', u'bratislava'] [u'captur', u'iraq', u'germ'] [u'hint', u'qaeda', u'involv', u'saudi', u'bomb'] [u'vice', u'chancellor', u'hope', u'reform', u'step', u'right'] [u'vic', u'judiciari', u'access', u'judici', u'colleg'] [u'villa', u'pair', u'give', u'free', u'transfer'] [u'watson', u'stick', u'tiger'] [u'webber', u'number', u'walker'] [u'webber', u'say', u'pizzonia', u'poor', u'form', u'frustrat'] [u'welcom', u'home', u'ceremoni', u'begin', u'week'] [u'west', u'refus', u'defo', u'transfer', u'request'] [u'whitnal', u'knee', u'injuri'] [u'woman', u'child', u'aliv', u'fatal', u'hous', u'blaze'] [u'woman', u'plead', u'guilti', u'nulla', u'nulla', u'death'] [u'women', u'medic', u'scholarship'] [u'miss', u'tourist', u'aliv', u'algeria'] [u'kill', u'chines', u'explos'] [u'aceh', u'rebel', u'surrend', u'indonesia'] [u'action', u'group', u'say', u'depart', u'store', u'decis'] [u'plead', u'guilti', u'offenc'] [u'boss', u'signal', u'salari', u'crackdown'] [u'injuri', u'lowest', u'level', u'year'] [u'agforc', u'question', u'budget', u'drought', u'fund'] [u'ord', u'drop', u'cent'] [u'alonso', u'face', u'difficult', u'race', u'austria', u'renault'] [u'ambo', u'concern', u'grow', u'number', u'taxi', u'rid'] [u'amnesti', u'call', u'releas', u'children'] [u'credit', u'rat', u'downgrad'] [u'atsic', u'commission', u'say', u'petrol', u'help'] [u'atsic', u'deputi', u'label', u'commission', u'ratbag'] [u'atsic', u'overhaul', u'poor', u'perform', u'anderson'] [u'atsic', u'split', u'label', u'backward', u'step'] [u'australia', u'test', u'championship'] [u'bayer', u'sack', u'coach', u'horster'] [u'brack', u'reject', u'govt', u'freeway', u'offer'] [u'british', u'entrepreneur', u'open', u'inflat', u'church'] [u'brown', u'suffer', u'fresh', u'injuri', u'problem'] [u'budget', u'benefit', u'hunter'] [u'budget', u'benefit', u'south', u'east'] [u'budget', u'boost', u'expect', u'campus'] [u'budget', u'doesnt', u'fund', u'nuclear', u'dump', u'govt'] [u'budget', u'drive', u'aussi', u'dollar'] [u'budget', u'merg', u'screensound'] [u'budget', u'mild', u'posit', u'aussi', u'dollar', u'dealer'] [u'budget', u'offer', u'airport', u'secur', u'boost'] [u'budget', u'prove', u'costello', u'lead', u'abbott'] [u'budget', u'benefit', u'gippsland', u'mcgauran'] [u'budget', u'access', u'govt'] [u'bulldoz', u'unearth', u'mass', u'grave', u'iraq'] [u'bushfir', u'recoveri', u'drop'] [u'bushfir', u'risk', u'assess'] [u'busi', u'leader', u'welcom', u'budget'] [u'region', u'theatr', u'boost'] [u'canberra', u'fire', u'cost', u'wednesday'] [u'census', u'find', u'frog', u'melbourn'] [u'centaur', u'survivor', u'attend', u'caloundra', u'ceremoni'] [u'china', u'death', u'toll'] [u'chines', u'court', u'sentenc', u'death', u'fraud'] [u'claim', u'univers', u'budget', u'winner'] [u'cobb', u'welcom', u'budget', u'initi'] [u'comedian', u'chong', u'admit', u'marijuana', u'equip', u'sale'] [u'committe', u'consid', u'petrol', u'free', u'zone'] [u'concern', u'school', u'hide', u'perform'] [u'conflict', u'report', u'saudi', u'bomb', u'toll'] [u'congress', u'tell', u'indigen', u'mental', u'health'] [u'consum', u'sentiment', u'survey', u'show', u'rise'] [u'costello', u'call', u'brack', u'abandon', u'freeway', u'toll'] [u'costello', u'criticis', u'irrespons', u'senat'] [u'costello', u'hint', u'temporari', u'replac', u'fel'] [u'council', u'restructur', u'consider'] [u'council', u'appeal', u'compo', u'payout'] [u'cpsu', u'call', u'state', u'boycott', u'tertiari', u'chang'] [u'crean', u'want', u'best', u'world', u'costello'] [u'crew', u'chemic', u'spill', u'feder'] [u'csiro', u'staff', u'concern', u'despit', u'fund', u'boost'] [u'curtin', u'vice', u'chancellor', u'criticis', u'tertiari', u'chang'] [u'dairi', u'farmer', u'share', u'strategi'] [u'defend', u'relianc', u'promot', u'levi'] [u'debat', u'budget', u'drought', u'packag'] [u'democrat', u'urg', u'govt', u'match', u'reef', u'fund'] [u'doctor', u'complain', u'heroin', u'death', u'villawood'] [u'doctor', u'group', u'hop', u'budget', u'benefit'] [u'dublin', u'fin', u'savag', u'headbutt'] [u'emerg', u'effort', u'focus', u'central'] [u'expert', u'advic', u'seek', u'port', u'dredg'] [u'fair', u'process', u'urg', u'choos', u'region', u'par'] [u'farmer', u'critic', u'budget', u'benefit'] [u'farmer', u'expect', u'budget', u'focus', u'ethanol'] [u'farmer', u'urg', u'lodg', u'drought', u'applic'] [u'fear', u'budget', u'widen', u'wealth', u'divid'] [u'feder', u'budget', u'fund', u'sturt', u'highway', u'work'] [u'boost', u'individu', u'subject', u'unlik'] [u'fewer', u'resid', u'take', u'home', u'loan'] [u'gulf', u'troop', u'home', u'tomorrow'] [u'flood', u'warn', u'south', u'coast'] [u'foley', u'swear', u'parliament'] [u'footi', u'club', u'review'] [u'fourteen', u'dead', u'chechnya', u'suicid', u'blast'] [u'french', u'cop', u'launch', u'szabo', u'drug', u'probe'] [u'friend', u'give', u'evid', u'murder', u'trial'] [u'good', u'budget'] [u'goondiwindi', u'lose', u'campervan', u'ralli'] [u'govt', u'criticis', u'french', u'embassi', u'upgrad'] [u'govt', u'deliv', u'balanc', u'budget'] [u'govt', u'vow', u'saudi', u'bomber', u'bring', u'justic'] [u'govt', u'compromis', u'hec', u'reform', u'nelson'] [u'griev', u'famili', u'say', u'goodby', u'murder', u'trio'] [u'grim', u'predict', u'central', u'eyr', u'peninsula'] [u'group', u'welcom', u'expand', u'drug', u'treatment', u'scheme'] [u'hawker', u'talk', u'feder', u'budget'] [u'health', u'dept', u'employ', u'mediat', u'health', u'clinic'] [u'health', u'worker', u'protest', u'medicar', u'chang'] [u'high', u'tech', u'farm', u'busi', u'make', u'list'] [u'home', u'owner', u'find', u'loan', u'confus'] [u'hooper', u'harbhajan', u'cover', u'lancashir'] [u'hop', u'resolut', u'crown', u'leas', u'woe'] [u'houllier', u'doubl', u'french', u'swoop'] [u'inquest', u'fail', u'explain', u'elder', u'woman', u'death'] [u'iran', u'condemn', u'saudi', u'bomb', u'attack'] [u'ireland', u'friend', u'vital', u'prepar', u'farina'] [u'irrig', u'face', u'water', u'entitl', u'suspens'] [u'isra', u'soldier', u'report', u'kill', u'palestinian'] [u'ivanisev', u'miss', u'french', u'open'] [u'shevchenko', u'milan', u'edg', u'derbi', u'battl'] [u'kimberley', u'land', u'clear', u'investig'] [u'king', u'brother', u'fail', u'court', u'hear'] [u'knight', u'player', u'join', u'citi', u'countri', u'clash'] [u'labor', u'urg', u'pass', u'medicar', u'chang'] [u'lara', u'savour', u'finest', u'cricket', u'moment'] [u'lewandowski', u'case', u'throw', u'court', u'tell'] [u'lock', u'wool', u'worker', u'target', u'elder'] [u'die', u'stab', u'attack'] [u'jail', u'break', u'enter', u'attack'] [u'jail', u'polic', u'assault'] [u'sentenc', u'shop', u'centr', u'stab'] [u'injur', u'train', u'collid', u'rome'] [u'martin', u'critic', u'budget', u'higher', u'educ'] [u'matern', u'leav', u'agenda', u'senat'] [u'mav', u'beat', u'king', u'pivot', u'fifth', u'game'] [u'mayor', u'clarifi', u'fund', u'prioriti'] [u'mcewen', u'bounc', u'giro', u'triumph'] [u'meet', u'address', u'court', u'custodi', u'facil'] [u'menem', u'quit', u'argentina', u'presidenti', u'race', u'report'] [u'mix', u'budget', u'respons', u'central'] [u'mix', u'reaction', u'feder', u'budget'] [u'mix', u'respons', u'feder', u'budget'] [u'mix', u'respons', u'feder', u'budget', u'educ', u'focus'] [u'dead', u'congo', u'leader', u'hold', u'crisi', u'talk'] [u'talk', u'budget', u'posit', u'sunshin', u'coast'] [u'stromlo', u'observatori', u'get', u'fund', u'rebuild'] [u'mysteri', u'walker', u'quit', u'rabbitoh'] [u'post', u'profit', u'despit', u'downturn'] [u'wont', u'deni', u'possibl', u'takeov'] [u'natwa'] [u'negoti', u'begin', u'patterson', u'properti'] [u'chang', u'salari', u'club', u'boss'] [u'govt', u'slam', u'budget', u'fund', u'nurs'] [u'govt', u'urg', u'decid', u'region'] [u'leaf', u'karratha', u'book', u'martin'] [u'research', u'give', u'budget', u'boost'] [u'seiz', u'vanston', u'remark'] [u'oyster', u'research', u'scheme', u'plan', u'marin', u'centr'] [u'part', u'sydney', u'declar', u'natur', u'disast', u'area'] [u'peac', u'monitor', u'leav', u'indonesia', u'aceh', u'loom'] [u'petit', u'launch', u'oppos', u'nuclear', u'wast', u'transport'] [u'pie', u'player', u'help', u'smith', u'famili', u'kick', u'goal'] [u'player', u'fin', u'antic', u'sacramento'] [u'claim', u'iraq', u'campaign', u'astonish', u'speedi'] [u'criticis', u'public', u'attack', u'meet'] [u'defend', u'evid', u'church', u'inquiri'] [u'sell', u'budget'] [u'polic', u'call', u'high', u'school', u'knife', u'report'] [u'polic', u'probe', u'crash'] [u'politician', u'good', u'budget'] [u'politician', u'upbeat', u'budget', u'benefit'] [u'prison', u'guard', u'appeal', u'order', u'stop', u'see', u'inmat'] [u'probe', u'claim', u'primari', u'school', u'student', u'attack'] [u'produc', u'urg', u'attend', u'meet'] [u'sign', u'coach', u'halilhodz'] [u'govt', u'reject', u'alcohol', u'claim'] [u'premier', u'accus', u'politicis', u'controversi'] [u'rabbitoh', u'lose', u'chris', u'walker'] [u'race', u'industri', u'mourn', u'danehil', u'death'] [u'rape', u'accus', u'claim', u'tortur', u'cambodian', u'polic'] [u'allen', u'win', u'sportsmanship', u'award'] [u'report', u'blast', u'govt', u'sale'] [u'resid', u'question', u'urban', u'plan', u'decis'] [u'rich', u'nation', u'share', u'fight', u'aid'] [u'rogu', u'badger', u'run', u'riot', u'injur'] [u'ronaldo', u'optimist', u'face', u'juventus'] [u'rusedski', u'suffer', u'injuri', u'blow'] [u'rusti', u'hewitt', u'struggl', u'second', u'round'] [u'sarina', u'council', u'monitor', u'water', u'woe'] [u'sarwan', u'mcgrath', u'buri', u'hatchet'] [u'saudi', u'bomber', u'qaeda', u'cell', u'report'] [u'saviour', u'sandal', u'spark', u'controversi', u'denmark'] [u'school', u'custodi', u'alleg', u'arm', u'stand'] [u'sculptor', u'remodel', u'australian', u'galleri'] [u'serena', u'sele', u'sweat', u'win', u'rome'] [u'delug', u'call', u'flash', u'flood'] [u'shevchenko', u'strike', u'send', u'milan', u'champion'] [u'shock', u'parl', u'food', u'plight'] [u'singh', u'back', u'away', u'sorenstam', u'comment'] [u'korean', u'presid', u'hold', u'talk'] [u'small', u'budget', u'alloc', u'roadwork'] [u'socceroo', u'confirm', u'ireland', u'clash'] [u'soorley', u'step', u'year', u'reign'] [u'sorenstam', u'cool', u'amid', u'controversi'] [u'sorenstam', u'cool', u'controversi'] [u'spider', u'boy', u'member', u'charg', u'bomb', u'attack'] [u'spur', u'hold', u'laker', u'seri', u'lead'] [u'lanka', u'tast', u'success', u'atapattu', u'gambl', u'click'] [u'state', u'govt', u'join', u'attack', u'noxious', u'weed'] [u'student', u'ralli', u'chang', u'tertiari'] [u'suspect', u'sar', u'patient', u'sydney', u'hospit'] [u'taiwan', u'report', u'sar', u'death'] [u'farmer', u'lobbi', u'board', u'sale'] [u'govt', u'pool', u'resourc', u'unemploy'] [u'govt', u'call', u'age', u'care', u'overhaul'] [u'treasur', u'disappoint', u'health', u'educ'] [u'cut', u'better', u'howard'] [u'kill', u'isra', u'raid', u'gaza', u'strip'] [u'throw', u'unwelcom', u'spotlight'] [u'sydney', u'road', u'overnight'] [u'captur', u'senior', u'iraqi', u'figur', u'report'] [u'lead', u'fight'] [u'take', u'role', u'case', u'termin', u'woman'] [u'govt', u'target', u'scheme'] [u'villag', u'roadshow', u'shed', u'british', u'cinema', u'chain'] [u'volunt', u'lose', u'rule', u'chang'] [u'close', u'indigen', u'camp'] [u'artist', u'describ', u'edgi', u'gulf', u'experi'] [u'resourc', u'sector', u'steadi'] [u'westralia', u'inquest', u'hear', u'cover'] [u'cautious', u'china', u'claim', u'sar', u'control'] [u'wrong', u'hose', u'lead', u'fatal', u'emwestraliaem'] [u'zidan', u'stand', u'juve', u'success'] [u'australian', u'swim', u'meet'] [u'academ', u'back', u'region', u'parliament', u'plan'] [u'accc', u'take', u'salmon', u'produc', u'court'] [u'aceh', u'rebel', u'will', u'hold', u'talk', u'save', u'peac'] [u'school', u'cleaner', u'stage', u'walk'] [u'adelaid', u'club', u'chang'] [u'administr', u'take', u'oath', u'offic'] [u'eye', u'saudi', u'bomb', u'probe', u'role'] [u'defend', u'fli', u'northern', u'patient', u'brisban'] [u'chairman', u'acknowledg', u'sharehold', u'anger'] [u'south', u'oppon', u'think', u'kefu'] [u'anti', u'woodchip', u'protest', u'face', u'court'] [u'build', u'telescop', u'despit', u'light'] [u'athen', u'olymp', u'game', u'ticket', u'sale'] [u'aussi', u'ordeal', u'loom', u'banger', u'coach', u'whatmor'] [u'australia', u'choos', u'hard', u'court', u'davi'] [u'australia', u'choos', u'hard', u'court', u'davi'] [u'australian', u'warn', u'sar', u'scam'] [u'temper', u'hewitt', u'lash', u'umpir'] [u'bakeri', u'close', u'door'] [u'year', u'predict', u'coal', u'export'] [u'secur', u'review', u'wake', u'wheat', u'virus'] [u'blue', u'crusad', u'favourit', u'super', u'final'] [u'bomber', u'unhappi', u'membership', u'number'] [u'braithwait', u'featur', u'aramac', u'concert'] [u'britain', u'june', u'euro', u'announc'] [u'budget', u'rais', u'concern', u'ethanol', u'project'] [u'bulk', u'bill', u'focus', u'crean', u'budget', u'repli'] [u'bush', u'hold', u'talk', u'north', u'korean', u'impass'] [u'allow', u'mccartney', u'honour', u'bali'] [u'relianc', u'dairi', u'industri'] [u'cancer', u'council', u'form', u'allianc', u'offer', u'support'] [u'cann', u'cruz', u'control', u'carefre', u'start'] [u'cann', u'prepar', u'enter', u'matrix'] [u'canola', u'industri', u'face', u'diseas', u'threat'] [u'casa', u'investig', u'abort', u'land', u'qanta'] [u'cathol', u'priest', u'deni', u'child', u'claim'] [u'celtic', u'scotland', u'dunde'] [u'charcoalit', u'finalis', u'fund'] [u'china', u'death', u'toll', u'rise'] [u'china', u'threaten', u'execut', u'sar', u'violat'] [u'clijster', u'capriati', u'rome', u'master'] [u'coal', u'industri', u'face', u'plan', u'develop', u'challeng'] [u'cole', u'myer', u'post', u'higher', u'sale'] [u'communiti', u'farewel', u'sydney'] [u'concern', u'air', u'condit', u'bridg'] [u'concern', u'air', u'delay', u'telstra', u'repair'] [u'cook', u'report', u'contain', u'unfair', u'deal', u'claim'] [u'coron', u'consid', u'gambl', u'youngest', u'victim'] [u'costello', u'challeng', u'crean', u'cut'] [u'council', u'air', u'cyclon', u'shelter', u'worri'] [u'council', u'consid', u'postal', u'vote'] [u'council', u'keep', u'wast', u'option', u'open'] [u'council', u'consid', u'region', u'author', u'plan'] [u'council', u'drop', u'price'] [u'council', u'deficit'] [u'council', u'super', u'decis'] [u'court', u'consid', u'bail', u'request', u'alleg'] [u'court', u'order', u'atsic', u'elect'] [u'court', u'rule', u'unfit', u'shelv'] [u'crean', u'bulk', u'target'] [u'crown', u'leas', u'plan', u'shroud', u'secreci'] [u'share', u'sink', u'year'] [u'cyclist', u'rais', u'fund', u'fight', u'youth', u'suicid'] [u'democrat', u'readi', u'talk', u'medicar'] [u'dem', u'demand', u'negoti', u'higher', u'educ'] [u'detroit', u'edg', u'philadelphia', u'seri', u'lead'] [u'doctor', u'question', u'budget', u'health', u'initi'] [u'dollar', u'subdu', u'market', u'nervous'] [u'doubt', u'cast', u'local', u'govern', u'reform'] [u'downer', u'talk', u'north', u'korea', u'illicit', u'trade'] [u'downpour', u'continu', u'south', u'coast'] [u'downpour', u'near', u'longreach'] [u'draft', u'council', u'budget', u'display'] [u'eagl', u'docker', u'chang', u'weekend', u'clash'] [u'educ', u'reform', u'meet', u'senat', u'opposit'] [u'emerg', u'land', u'ambul'] [u'criticis', u'auditor', u'general'] [u'european', u'chang', u'ryder', u'qualifi', u'format'] [u'feder', u'polic', u'seiz', u'record', u'haul'] [u'feder', u'grand', u'slam', u'fitzgerald'] [u'govt', u'support', u'need', u'mine'] [u'ferrari', u'amend', u'austria'] [u'fewer', u'polic', u'guard', u'bali', u'bomb', u'trial'] [u'aussi', u'troop', u'return', u'gulf'] [u'fitzgerald', u'defend', u'hewitt', u'outburst'] [u'flintoff', u'doubt', u'zimbabw', u'test'] [u'flood', u'prove', u'cost', u'council'] [u'polic', u'inspector', u'testifi', u'murder', u'trial'] [u'fourteen', u'year', u'charg', u'alleg', u'knife'] [u'journalist', u'sue', u'vaccin', u'manufactur'] [u'fraser', u'psychopath', u'hear', u'tell'] [u'fund', u'allow', u'arm', u'custom', u'fish', u'patrol'] [u'gannawarra', u'council', u'learn', u'super', u'share'] [u'trade', u'launch'] [u'genocid', u'court', u'jail', u'rwandan', u'minist'] [u'geolog', u'bodi', u'get', u'fund'] [u'goat', u'shepherd', u'airport', u'grass'] [u'good', u'train', u'derail'] [u'govt', u'confirm', u'saudi', u'request', u'bomb'] [u'govt', u'examin', u'claim', u'embryon', u'medicin'] [u'govt', u'talk', u'merger', u'film', u'bodi'] [u'goward', u'surpris', u'pay', u'matern', u'leav', u'budget'] [u'grand', u'resid', u'face'] [u'grasshopp', u'infest', u'north'] [u'green', u'grant', u'grab'] [u'hamilton', u'crash', u'report', u'enter', u'final', u'stag'] [u'hervey', u'sunday', u'trade'] [u'home', u'lend', u'boost', u'bank', u'profit'] [u'hop', u'sweet', u'deal', u'boost', u'sugar', u'industri'] [u'hotel', u'get', u'day', u'suspens', u'defer'] [u'howard', u'back', u'mcgrath', u'outburst'] [u'howard', u'beatti', u'brawl', u'report'] [u'hunt', u'burrow', u'crayfish'] [u'icac', u'clear', u'alburi', u'councillor'] [u'indian', u'train', u'accid', u'toll', u'reach'] [u'injur', u'bond', u'return', u'home'] [u'injur', u'bond', u'return', u'home', u'zealand'] [u'principl', u'support', u'tourism', u'develop'] [u'iron', u'knock', u'tahiti'] [u'irrig', u'rais', u'concern', u'river', u'health', u'report'] [u'juve', u'deserv', u'real', u'boss', u'bosqu'] [u'juve', u'deserv', u'say', u'real', u'boss', u'bosqu'] [u'kirchner', u'claim', u'victori', u'argentinian'] [u'labor', u'pledg', u'boost', u'bulk', u'bill'] [u'labor', u'pledg', u'major', u'medicar', u'reform'] [u'lion', u'nathan', u'brew', u'profit', u'sharehold'] [u'lion', u'adelaid', u'clash'] [u'lion', u'endur', u'scrutini'] [u'lion', u'investig', u'train', u'techniqu'] [u'lion', u'oxygen', u'endur', u'scrutini'] [u'local', u'govt', u'group', u'consid', u'budget', u'fallout'] [u'mallacoota', u'lose', u'phone', u'power'] [u'face', u'court', u'murder', u'charg'] [u'face', u'court', u'arm', u'robberi', u'charg'] [u'face', u'court', u'metal', u'attack'] [u'mayor', u'reel', u'green'] [u'mcgauran', u'dismiss', u'budget', u'concern', u'wast', u'dump'] [u'mcgrath', u'wont', u'happen'] [u'melbourn', u'tight', u'lip', u'lyon', u'probe'] [u'mix', u'respons', u'propos', u'fish'] [u'mix', u'view', u'sorenstam', u'challeng'] [u'clarifi', u'penalti', u'rat', u'stanc'] [u'bodi', u'indian', u'train', u'accid'] [u'fund', u'southern', u'cross'] [u'fund', u'seek', u'highway', u'duplic'] [u'air', u'road', u'speed', u'concern'] [u'disput', u'drought', u'claim'] [u'reject', u'council', u'rise', u'plan'] [u'seek', u'drought'] [u'nativ', u'titl', u'convoy', u'inspect', u'sit'] [u'nauru', u'report', u'respons', u'condemn', u'author'] [u'anti', u'corrupt', u'bodi', u'toughest', u'aust'] [u'powerlin', u'plan', u'lower', u'south', u'east'] [u'femal', u'face', u'council'] [u'noosa', u'mayor', u'reject', u'idea', u'charg', u'visitor'] [u'norwegian', u'internet', u'piip', u'offer', u'realiti'] [u'govt', u'wont', u'race', u'insur'] [u'south', u'coast', u'forest', u'indigen', u'coordin'] [u'time', u'editor', u'meet', u'angri', u'staff', u'scandal'] [u'unveil', u'budget', u'surplus'] [u'obstetrician', u'join', u'insur', u'chang'] [u'ombudsman', u'examin', u'church', u'abus', u'claim'] [u'oppn', u'question', u'govt', u'commit', u'defenc'] [u'parl', u'food', u'liquid', u'begin', u'probe'] [u'pentagon', u'research', u'nuclear', u'bunker', u'buster', u'rumsfeld'] [u'petacchi', u'beat', u'cipollini', u'giro', u'sprint'] [u'policeman', u'save', u'trucker', u'life'] [u'polic', u'seek', u'wit', u'fatal', u'cyclist', u'crash'] [u'polic', u'station', u'plan', u'move', u'ahead'] [u'polic', u'form', u'famili', u'mediat', u'team'] [u'price', u'hike', u'creat', u'elitist', u'court'] [u'public', u'propos', u'council', u'budget'] [u'putin', u'offer', u'amnesti', u'chechen', u'rebel'] [u'qanta', u'defend', u'decis', u'divert', u'plane'] [u'polic', u'finish', u'volker', u'investig'] [u'queen', u'invit', u'ivanisev', u'krajicek'] [u'rain', u'give', u'winter', u'crop', u'kick'] [u'resourc', u'weaker', u'market'] [u'rfds', u'celebr', u'year'] [u'road', u'delay', u'spark', u'anger'] [u'room', u'communiti', u'bank', u'sharehold'] [u'erupt', u'race', u'industri', u'chang'] [u'emerg', u'servic', u'review', u'recommend', u'chang'] [u'salvo', u'target', u'homeless', u'trend'] [u'saudi', u'arabia', u'criticis', u'inact'] [u'schumach', u'warn', u'mclaren', u'threat'] [u'seafood', u'group', u'back', u'spanish', u'mackerel', u'reform'] [u'second', u'exot', u'diseas', u'scare', u'csiro', u'research'] [u'monitor', u'forster', u'tuncurri', u'flood', u'potenti'] [u'warn', u'possibl', u'flood', u'central', u'coast'] [u'swear'] [u'skull', u'probe', u'underway', u'bunburi'] [u'solo', u'rower', u'push', u'ocean', u'attempt'] [u'south', u'america', u'confirm', u'world', u'qualifi', u'format'] [u'southampton', u'beatti', u'emul', u'hero', u'stoke'] [u'springbok', u'montgomeri', u'face', u'lengthi'] [u'state', u'lose', u'control', u'democrat'] [u'store', u'withdraw', u'jesus', u'mari', u'thong', u'outcri'] [u'struggl', u'docker', u'hop', u'crowd'] [u'super', u'shock', u'warrnambool', u'council'] [u'sydney', u'begin'] [u'taint', u'blood', u'prompt', u'inquiri', u'demand'] [u'offic', u'probe', u'lyon', u'share'] [u'taylor', u'quit', u'aston', u'villa', u'manag'] [u'taylor', u'quit', u'villa', u'manag'] [u'terror', u'plot', u'foil', u'lebanon', u'armi'] [u'thorni', u'field', u'face', u'wood', u'germani'] [u'kill', u'gaza', u'incurs'] [u'policeman', u'die', u'tibet', u'climb'] [u'tourism', u'deleg', u'head', u'north', u'west'] [u'tryon', u'give', u'second', u'chanc', u'tiger'] [u'ullrich', u'steer', u'clear', u'coast'] [u'qasr', u'hand', u'iraqi'] [u'union', u'electrolux', u'talk', u'freez'] [u'urg', u'boost', u'student', u'fee'] [u'wont', u'rais', u'fee'] [u'put', u'focus', u'baghdad', u'secur'] [u'upgrad', u'plan', u'dairi', u'research', u'centr'] [u'push', u'vote', u'iraq'] [u'vail', u'reject', u'doubl', u'standard', u'gmos'] [u'vanston', u'admit', u'penni', u'pinch'] [u'vaughan', u'warm', u'anderson', u'press', u'test', u'case'] [u'govt', u'rethink', u'rail', u'decis'] [u'govt', u'unhappi', u'fund', u'post', u'bushfir'] [u'viduka', u'link', u'spur'] [u'virgin', u'blue', u'line', u'soar'] [u'volunt', u'standbi', u'rain', u'fall'] [u'water', u'flow', u'lake', u'illawarra', u'entranc'] [u'waugh', u'lara', u'face', u'contrast', u'futur'] [u'westralia', u'sailor', u'tell', u'inquiri', u'hear'] [u'wrong', u'busi', u'wrong', u'place', u'wrong', u'time'] [u'zhao', u'peopl', u'archibald', u'pick'] [u'coach', u'make', u'pitch', u'jordan'] [u'aceh', u'rebel', u'threaten', u'boycott', u'talk'] [u'acid', u'spill', u'contain', u'near', u'geelong'] [u'begin', u'aerial', u'seed', u'program'] [u'govt', u'survey', u'bushfir', u'victim'] [u'public', u'admin', u'commission', u'retir'] [u'administr', u'iraq', u'baathist'] [u'age', u'cipo', u'ponder', u'giro', u'slump'] [u'airport', u'return', u'normal', u'emerg'] [u'ord', u'finish', u'week'] [u'coalit', u'tri', u'save', u'medicar'] [u'altern', u'hous', u'moot', u'asylum', u'seeker'] [u'anti', u'abort', u'group', u'welcom', u'graphic', u'video'] [u'ardil', u'quit', u'race', u'coach'] [u'soccer', u'boss', u'ponder', u'women', u'world'] [u'avoid', u'indonesia', u'govt', u'remind', u'travel'] [u'bandi', u'fail', u'recov', u'ankl', u'injuri'] [u'bayern', u'deni', u'kahn'] [u'beazley', u'leadership', u'stanc', u'unchang'] [u'beazley', u'wont', u'challeng', u'crean'] [u'esprit', u'take'] [u'berri', u'break', u'movi'] [u'birdi', u'sluman', u'round', u'lead', u'texa'] [u'blacklock', u'return', u'leagu'] [u'nomin', u'brave', u'effort'] [u'break', u'hill', u'count', u'outback', u'challeng'] [u'budget', u'fund', u'road'] [u'budget', u'stop', u'worker', u'make', u'unfair', u'dismiss'] [u'busi', u'await', u'bushfir', u'fund', u'news'] [u'carr', u'continu', u'north', u'coast', u'tour'] [u'caution', u'urg', u'murray', u'river', u'flow'] [u'consid', u'esper', u'oper'] [u'receiv', u'point', u'revamp'] [u'china', u'suspend', u'adopt', u'program', u'sar', u'fear'] [u'citi', u'countri', u'decid', u'origin', u'squad', u'murray'] [u'cityrail', u'seek', u'train', u'ticket', u'price', u'hike'] [u'citi', u'origin', u'impetus'] [u'citi', u'win', u'origin', u'warm'] [u'coalit', u'earmark', u'child', u'health'] [u'commission', u'lose', u'legal', u'battl', u'justic', u'dept'] [u'commonwealth', u'take', u'murray', u'issu', u'serious'] [u'concern', u'rais', u'futur', u'fibr', u'optic', u'cabl'] [u'controversi', u'hitler', u'drama', u'debut'] [u'coulthard', u'lead', u'austrian', u'practic'] [u'council', u'offer', u'deficit', u'assur'] [u'council', u'urg', u'lower', u'tax'] [u'council', u'want', u'extend', u'moratorium'] [u'crean', u'deni', u'deal', u'deficit'] [u'crean', u'deni', u'deal', u'deficit', u'say', u'safe'] [u'crowd', u'gather', u'mataranka', u'festiv'] [u'crusad', u'cruis', u'final'] [u'cwealth', u'readi', u'talk'] [u'deaf', u'student', u'award', u'music', u'degre'] [u'delay', u'check', u'wheat', u'virus'] [u'stan', u'die'] [u'doctor', u'strike', u'regist', u'misconduct'] [u'downi', u'react', u'angrili', u'inquest'] [u'econom', u'data', u'grim', u'news', u'germani'] [u'educ', u'chang', u'wont', u'harm', u'student'] [u'elder', u'urg', u'talk', u'itiner'] [u'electr', u'firm', u'fin', u'apprentic', u'work'] [u'emerg', u'servic', u'review', u'spark', u'concern'] [u'england', u'fret', u'cadddick', u'flintoff'] [u'epilepsi', u'drug', u'show', u'reduc', u'crave', u'alcohol'] [u'erekat', u'quit', u'palestinian', u'cabinet'] [u'ethanol', u'refineri', u'near'] [u'explod', u'light', u'spark', u'newsag', u'blaze'] [u'falvelon', u'defier', u'scratch'] [u'fan', u'grauman', u'chines', u'theatr', u'matrix', u'sequel'] [u'farmer', u'group', u'air', u'concern'] [u'farm', u'safeti', u'campaign', u'target', u'children'] [u'detail', u'school', u'board', u'probe'] [u'financi', u'woe', u'lyon', u'wool', u'broker'] [u'fiorentina', u'reclaim'] [u'crew', u'battl', u'floodwat'] [u'firm', u'guilti', u'safeti', u'failur'] [u'hors', u'trainer', u'freedman', u'induct', u'hall'] [u'practic', u'review'] [u'delay', u'flight', u'melbourn', u'airport'] [u'lift', u'western', u'victoria'] [u'rwandan', u'minist', u'releas'] [u'white', u'hous', u'intern', u'admit', u'kennedi', u'affair'] [u'formula', u'better', u'china', u'austria', u'lauda'] [u'franc', u'alleg', u'smear', u'campaign', u'media'] [u'french', u'star', u'stay', u'seaman'] [u'fulham', u'coleman', u'youngest', u'premiership', u'manag'] [u'fund', u'rais', u'rfds'] [u'german', u'citi', u'tri', u'beat', u'recess', u'blue'] [u'giteau', u'injuri', u'blow', u'brumbi'] [u'gooch', u'action'] [u'govt', u'hand', u'manag', u'reserv', u'aapa'] [u'green', u'readi', u'open'] [u'green', u'tribut', u'labor', u'murray', u'pledg'] [u'group', u'meet', u'radiat', u'treatment', u'crisi'] [u'health', u'expert', u'question', u'china', u'execut', u'threat'] [u'hefti', u'reward', u'offer', u'bank', u'heist'] [u'hodgson', u'lead', u'domin', u'ducati', u'home', u'itali'] [u'hop', u'gilgandra', u'industri'] [u'hors', u'race', u'steward', u'probe', u'lion', u'train', u'regim'] [u'warn', u'loss', u'sar'] [u'immigr', u'raid', u'conduct', u'canberra'] [u'indigen', u'scheme', u'balanc', u'environ', u'economi'] [u'indonesia', u'swoop', u'rebel', u'bind', u'peac', u'talk'] [u'indonesia', u'talk', u'peac', u'prepar', u'aceh'] [u'injuri', u'bomber', u'belt', u'hawk'] [u'injuri', u'bomber', u'thrash', u'hawk'] [u'iraqi', u'situat', u'desper'] [u'ireland', u'ask', u'athlet', u'stay', u'away'] [u'jakovich', u'forc', u'irregular', u'heartbeat'] [u'japanes', u'busi', u'daili', u'chief', u'quit', u'scandal'] [u'concern', u'air', u'contract', u'lose'] [u'job', u'program', u'chop', u'block'] [u'jordan', u'sign', u'hungarian', u'test', u'driver', u'baumgartn'] [u'juri', u'continu', u'deliber', u'businessman', u'case'] [u'kiwi', u'ref', u'strike', u'assault'] [u'labor', u'talk', u'medicar', u'packag'] [u'labor', u'entic', u'doctor', u'medicar', u'mcmullan'] [u'latif', u'go', u'easi', u'akhtar'] [u'lawyer', u'warn', u'school', u'abort', u'video'] [u'leed', u'dump', u'coach', u'pair'] [u'liverpool', u'championship', u'challeng', u'owen'] [u'live', u'arrang', u'detaine', u'discuss'] [u'luxuri', u'liner', u'extend', u'exmouth', u'stay'] [u'manufactur', u'industri', u'boost'] [u'mauresmo', u'capriati', u'clash'] [u'medicar', u'packag', u'address', u'declin', u'bulk'] [u'meet', u'discuss', u'bega', u'budget'] [u'melbourn', u'shrug', u'shroud'] [u'mildura', u'super'] [u'minist', u'get', u'parl', u'food'] [u'minist', u'hear', u'hand', u'plight', u'drought'] [u'heavi', u'rain', u'coast'] [u'wheat', u'virus', u'tamworth'] [u'surpris', u'highway', u'fund'] [u'urg', u'consult', u'water', u'restrict'] [u'murder', u'trial', u'hear', u'stress', u'claim'] [u'murray', u'river', u'featur', u'crean', u'budget', u'repli'] [u'nashvill', u'matriarch', u'june', u'carter', u'cash', u'dead'] [u'nat', u'welcom', u'rail', u'review'] [u'nauru', u'depress', u'surpris', u'ruddock'] [u'navi', u'ship', u'name', u'garden', u'citi'] [u'suburb', u'add', u'dengu', u'spot'] [u'guarante', u'williamstown', u'shipyard'] [u'orthopaed', u'surgeon', u'dubbo'] [u'file', u'bankruptci'] [u'opposit', u'greeni', u'join', u'forc', u'food'] [u'teacher', u'nasa', u'space', u'camp'] [u'orang', u'council', u'probe', u'fuel', u'price'] [u'pair', u'arrest'] [u'parthenium', u'weed', u'outbreak', u'narrabri', u'shire'] [u'passiv', u'smoke', u'innoc', u'say', u'controversi'] [u'perec', u'comeback', u'delay'] [u'plan', u'greater', u'indigen', u'voic', u'rainforest'] [u'polic', u'wit'] [u'polic', u'fight', u'high', u'tech', u'fraudster'] [u'polic', u'charg', u'drug', u'oper'] [u'polic', u'probe', u'broom', u'drink', u'spike'] [u'porto', u'mourinho', u'homework', u'uefa'] [u'posit', u'coal', u'growth', u'forecast', u'illawarra'] [u'public', u'ballot', u'trade', u'hour', u'carniv', u'holiday'] [u'public', u'hous', u'wait', u'list'] [u'public', u'urg', u'help', u'save', u'endang', u'parrot'] [u'freez', u'land', u'clear', u'permit'] [u'race', u'industri', u'woe', u'continu'] [u'rain', u'close', u'western', u'road'] [u'rat', u'rise', u'lismor', u'council', u'budget'] [u'refuge', u'famili', u'face', u'tribun', u'visa', u'extens'] [u'resid', u'warn', u'water', u'restrict'] [u'resort', u'face', u'fine', u'sewag', u'spill'] [u'rixon', u'expect', u'slater', u'round'] [u'rocca', u'join', u'club', u'jakovich'] [u'romanian', u'szabo', u'retir', u'drug', u'investig'] [u'ruddock', u'tour', u'indigen', u'communiti'] [u'rural', u'doctor', u'unimpress', u'labor', u'medicar', u'plan'] [u'russia', u'launch', u'satellit', u'june'] [u'sampra', u'verg', u'bow'] [u'sampra', u'pull', u'french', u'open', u'wimbledon'] [u'sar', u'rule', u'caus', u'sailor', u'death'] [u'schedul', u'meet', u'spirit', u'newcastl', u'game'] [u'outlaw', u'eat', u'dog', u'cat'] [u'schelotto', u'star', u'boca', u'paysandus', u'libertador'] [u'seaman', u'hand', u'final', u'captainci'] [u'readi', u'flood', u'emerg'] [u'sevill', u'host', u'golf', u'world'] [u'shark', u'interpret', u'centr', u'plan', u'move', u'ahead'] [u'sheffield', u'unit', u'come', u'playoff'] [u'slater', u'beat', u'burrow', u'tahiti', u'final'] [u'slovak', u'vote', u'join', u'enlarg'] [u'solomon', u'warlord', u'take', u'missionari', u'hostag'] [u'soorley', u'appoint', u'land', u'agenc', u'board'] [u'south', u'africa', u'coach', u'slam', u'english', u'premiership'] [u'spur', u'beat', u'nation', u'champion', u'laker'] [u'stanbrok', u'sale', u'spark', u'bidder', u'allianc'] [u'stay', u'home', u'attitud', u'hit', u'tourism'] [u'storm', u'prove', u'minor', u'problem', u'perth'] [u'storm', u'take', u'toll', u'surat'] [u'student', u'put', u'virgin', u'hammer'] [u'summit', u'meet', u'revers', u'indian', u'spin', u'slide'] [u'compani', u'get', u'fund', u'custom', u'need', u'project'] [u'debat', u'moratorium'] [u'tassi', u'compani', u'china', u'despit', u'sar'] [u'taylor', u'hit', u'villa', u'boss'] [u'team', u'order', u'ban'] [u'test', u'star', u'chanderpaul', u'seri'] [u'thailand', u'scorn', u'travel', u'warn'] [u'ticket', u'price', u'decis', u'regul'] [u'tiger', u'german', u'love', u'affair'] [u'tough', u'time', u'ahead', u'predict', u'cattl', u'industri'] [u'tragedi', u'strike', u'mountain', u'adventur'] [u'tszyu', u'weigh', u'fight', u'spink', u'report'] [u'turtl', u'shell', u'save'] [u'japan', u'world', u'tune'] [u'give', u'grind', u'iraq', u'sanction', u'draft'] [u'hand', u'qasr', u'iraqi'] [u'report', u'rais', u'threat', u'deflat'] [u'warn', u'issu', u'jacuzzi', u'regul'] [u'water', u'manag', u'plan'] [u'wood', u'overshadow', u'german', u'open'] [u'work', u'start', u'research'] [u'open', u'vermeulen', u'flay', u'sussex'] [u'german', u'crash', u'franc'] [u'kill', u'casablanca', u'blast', u'offici'] [u'kill', u'casablanca', u'bomb', u'attack', u'offici'] [u'aid', u'defect', u'pong', u'drug', u'case', u'report'] [u'allenbi', u'stay', u'touch'] [u'artwork', u'limelight', u'mental', u'ill'] [u'australian', u'sailor', u'arriv', u'home', u'gulf'] [u'australian', u'sailor', u'dock', u'home', u'port'] [u'bali', u'survivor', u'defend', u'cross'] [u'bali', u'survivor', u'gather', u'barbequ'] [u'barrett', u'doubt', u'origin'] [u'barrichello', u'lead', u'austrian', u'free', u'practic'] [u'becker', u'hop', u'sampra', u'time'] [u'billup', u'lead', u'piston', u'confer', u'final'] [u'blue', u'final'] [u'bok', u'suffer', u'blow', u'ahead', u'test'] [u'brandenburg', u'bratwurst', u'menu'] [u'bronco', u'wont', u'welcom', u'walker'] [u'bruce', u'sign', u'deal', u'birmingham'] [u'brumbi', u'down', u'blue', u'final'] [u'brumbi', u'prepar', u'battl', u'blue'] [u'bumbl', u'stowaway', u'fall', u'short', u'american', u'dream'] [u'burni', u'mayor', u'rue', u'flight', u'cutback'] [u'bush', u'make', u'second', u'term', u'offici'] [u'cipollini', u'talk', u'retir', u'petacchi', u'win'] [u'corrobore', u'highlight', u'festiv'] [u'crow', u'head', u'lion'] [u'csiro', u'urg', u'vigil', u'rust', u'fungus', u'escap'] [u'curfew', u'backfir', u'home', u'research'] [u'cwealth', u'affirm', u'support', u'bali', u'victim'] [u'danc', u'compani', u'take', u'swan', u'lake', u'hybrid', u'tour'] [u'democrat', u'hold', u'firm', u'face', u'earli', u'poll'] [u'disney', u'begin', u'rent', u'self', u'destruct', u'dvds'] [u'dizzi', u'rest', u'lawson', u'injur', u'dayer'] [u'dog', u'hang', u'narrow', u'victori'] [u'eagl', u'notch', u'trot'] [u'einstein', u'write', u'publish', u'onlin'] [u'england', u'uncap', u'player', u'zimbabw'] [u'final', u'cover'] [u'deleg', u'gather', u'gold', u'coast', u'confer'] [u'ferrari', u'irvin', u'warn', u'alonso'] [u'firefight', u'clean', u'recycl', u'depot', u'blaze'] [u'forens', u'studi', u'centr', u'open'] [u'rmit', u'student', u'expel', u'cheat'] [u'rise', u'nasdaq', u'fall', u'aussi', u'stay'] [u'countri', u'plan', u'ralli', u'econom', u'weak'] [u'german', u'tourist', u'kill', u'crash'] [u'germani', u'undecid', u'iraq', u'draft', u'resolut'] [u'germani', u'iraq'] [u'gillespi', u'rest', u'windi', u'dayer'] [u'golden', u'start', u'aussi', u'cyclist'] [u'govt', u'updat', u'websit', u'latest', u'sar', u'info'] [u'green', u'thank', u'farmer', u'fire', u'clear'] [u'green', u'oppos', u'submarin', u'visit'] [u'harrington', u'hold', u'shoot', u'buffer'] [u'hawthorn', u'nightmar', u'continu'] [u'hostag', u'algeria', u'ransom', u'rescu', u'report'] [u'boss', u'die'] [u'indigen', u'crisi', u'address', u'health', u'group', u'say'] [u'injur', u'davenport', u'pull', u'madrid'] [u'iraqi', u'claim', u'tortur', u'coalit'] [u'decis', u'boost', u'nurs', u'number'] [u'jakarta', u'say', u'aceh', u'peac', u'talk', u'despit', u'threat'] [u'japan', u'expect', u'aceh', u'peac', u'talk', u'ahead'] [u'kenya', u'warn', u'terror', u'threat', u'british'] [u'knife', u'garden', u'stake', u'robberi', u'attempt'] [u'labor', u'unit', u'latham', u'say'] [u'liber', u'candid', u'shadow', u'labor'] [u'lion', u'chairman', u'seek', u'apolog'] [u'lion', u'chairman', u'seek', u'apolog'] [u'lion', u'crow', u'tiger', u'edg', u'dee'] [u'lynch', u'stun', u'crow', u'tiger', u'edg', u'dee'] [u'maggi', u'monkey', u'mighti', u'tipster'] [u'hospit', u'glebe', u'shoot'] [u'rescu', u'flood', u'drain'] [u'rescu', u'stormwat', u'drain'] [u'melbourn', u'make', u'track', u'climax', u'game'] [u'navi', u'tow', u'illeg', u'fish', u'boat', u'darwin'] [u'newcastl', u'play', u'bayern', u'season', u'friend'] [u'lib', u'meet', u'dissect', u'defeat'] [u'teacher', u'reject', u'offer'] [u'palestinian', u'minist', u'quit', u'talk', u'israel'] [u'palestinian', u'accept', u'erekat', u'resign'] [u'panther', u'roll', u'raider', u'cowboy', u'tame', u'tiger'] [u'panther', u'upset', u'raider', u'continu', u'win', u'streak'] [u'peac', u'talk', u'begin', u'aceh', u'rebel', u'releas'] [u'phelp', u'claim', u'crown', u'swim', u'meet'] [u'pire', u'look', u'stay', u'arsenal'] [u'polic', u'discov', u'burn', u'bodi'] [u'polic', u'investig', u'death', u'sydney'] [u'polic', u'outstand', u'warrant'] [u'polic', u'seek', u'child', u'offenc'] [u'port', u'readi', u'roo'] [u'port', u'steamrol', u'kangaroo'] [u'prison', u'survey', u'highlight', u'abus', u'factor'] [u'cross', u'disappoint', u'bali', u'critic'] [u'releg', u'beckon', u'leverkusen'] [u'rival', u'congo', u'rebel', u'sign', u'truce', u'slaughter'] [u'rocca', u'hop', u'celebr', u'match'] [u'govt', u'ax', u'late', u'night', u'bus'] [u'sar', u'blame', u'wool', u'price'] [u'saudi', u'arabia', u'defend', u'anti', u'terror', u'effort', u'admit'] [u'schumach', u'put', u'ferrari', u'charg'] [u'scientist', u'discov', u'whale', u'shark', u'like'] [u'scud', u'bow', u'argentinean', u'domin'] [u'secur', u'guard', u'hospit', u'auburn', u'robberi'] [u'serena', u'clijster', u'coast', u'rome', u'semi'] [u'servic', u'fund', u'anti', u'terror', u'magnet', u'oppn'] [u'slovakia', u'fear', u'invalid', u'poll'] [u'spain', u'file', u'suit', u'prestig', u'disast'] [u'spam', u'bring', u'cook', u'island', u'system'] [u'springtim', u'neptun', u'mean', u'bright', u'cloud'] [u'state', u'funer', u'hold', u'african', u'anti'] [u'sydney', u'downpour', u'expect'] [u'sydney', u'team', u'outclass', u'oppon'] [u'taiwanes', u'travel', u'japan', u'test', u'posit'] [u'taiwan', u'health', u'minist', u'offer', u'resign'] [u'tasdanc', u'find', u'treasur', u'fund'] [u'telstra', u'infrastructur', u'worker', u'receiv', u'rise'] [u'terrorist', u'attack', u'strengthen', u'resolv', u'downer'] [u'texan', u'stun', u'children', u'send', u'prison'] [u'thousand', u'final', u'respect', u'sisulu'] [u'tiger', u'prepar', u'tough', u'test'] [u'transport', u'group', u'debat', u'hobart', u'truck', u'speed', u'limit'] [u'uefa', u'place', u'beckon', u'behav', u'citi'] [u'forc', u'captur', u'baath', u'parti', u'chairman'] [u'journalist', u'order', u'leav', u'zimbabw'] [u'offer', u'cash', u'iraqi', u'identifi', u'baath'] [u'plan', u'interview', u'percent', u'visa'] [u'valley', u'need', u'licens', u'freedom'] [u'confer', u'focus', u'union', u'branch'] [u'waugh', u'defend', u'team', u'behaviour'] [u'wenger', u'look', u'style'] [u'west', u'releas', u'canio', u'bowyer'] [u'west', u'edg', u'amid', u'spike', u'qaeda', u'terror', u'chatter'] [u'consid', u'take', u'singapor', u'sar', u'list'] [u'wife', u'brother', u'accus', u'british', u'suicid', u'bomber'] [u'wild', u'storm', u'black', u'perth', u'home'] [u'woman', u'fatal', u'heart', u'attack', u'bungl', u'polic', u'raid'] [u'wood', u'defend', u'govt', u'bushfir', u'respons'] [u'aceh', u'peac', u'talk', u'fail'] [u'fair', u'trade', u'warn', u'sar', u'scam'] [u'govt', u'stand', u'firm', u'plan', u'group', u'nomin'] [u'adelaid', u'forc', u'power', u'draw'] [u'adelaid', u'prepar', u'mock', u'terror', u'attack'] [u'agforc', u'hop', u'drought', u'applic', u'go', u'fast'] [u'faction', u'trade', u'blame', u'trade', u'blow'] [u'state', u'confer', u'erupt', u'violenc'] [u'qaeda', u'threaten', u'stun', u'blow', u'israel'] [u'warn', u'loom', u'medic', u'indemn', u'crisi'] [u'promis', u'sharehold', u'debt'] [u'anlezark', u'oregon', u'grand', u'prix'] [u'annan', u'call', u'sustain', u'campaign'] [u'anzelark', u'oregon', u'grand', u'prix'] [u'arafat', u'blame', u'latest', u'suicid', u'attack'] [u'armi', u'reserv', u'expect', u'counter', u'terror'] [u'aussi', u'edg', u'windi'] [u'australia', u'consid', u'missil', u'defenc', u'hill'] [u'australian', u'kill', u'solomon', u'island'] [u'bartlett', u'say', u'govt', u'planet'] [u'beij', u'doctor', u'report', u'sar', u'case'] [u'bevan', u'take', u'triathlon'] [u'bishop', u'want', u'appli', u'church', u'england'] [u'britain', u'condemn', u'horrif', u'morocco', u'bomb', u'blast'] [u'bronco', u'edg', u'storm', u'break'] [u'bronco', u'farewel', u'qeii', u'style'] [u'bronco', u'farewel', u'qeii', u'style', u'man', u'golden'] [u'carr', u'rid', u'wave', u'popular'] [u'children', u'health', u'deterior', u'iraq', u'unicef'] [u'china', u'record', u'sar', u'death'] [u'cleric', u'staff', u'dress', u'code', u'battl'] [u'cnbc', u'arabiya', u'econom', u'channel', u'broadcast'] [u'coria', u'calleri', u'contest', u'hamburg', u'final'] [u'death', u'toll', u'rise', u'morocco', u'suicid', u'blast'] [u'delug', u'kill', u'china'] [u'disappoint', u'webber', u'blame', u'villeneuv'] [u'dun', u'admit', u'break', u'team', u'mat', u'nose', u'report'] [u'cuban', u'receiv', u'life', u'sentenc', u'attempt'] [u'garcia', u'shock', u'posit', u'drug', u'test'] [u'garzelli', u'take', u'overal', u'giro', u'lead'] [u'germani', u'foil', u'alleg', u'chemic', u'smuggl', u'plan', u'press'] [u'gilmor', u'take', u'medal', u'sydney'] [u'glori', u'sink', u'shark'] [u'govt', u'chang', u'special', u'need', u'teach'] [u'govt', u'deni', u'line', u'drive', u'fee'] [u'green', u'beatti', u'warship'] [u'gunner', u'celebr', u'triumph'] [u'half', u'qaeda', u'leader', u'captur', u'kill', u'hunt'] [u'harrington', u'maintain', u'lead', u'germani'] [u'hartson', u'uefa', u'final'] [u'hodgson', u'take', u'monza', u'superpol'] [u'illeg', u'immigr', u'transport', u'refriger'] [u'sorri', u'amrozi', u'say', u'bali', u'bomb'] [u'indonesia', u'give', u'aceh', u'rebel', u'deadlin'] [u'inter', u'milan', u'lazio', u'champion', u'leagu'] [u'investig', u'drug', u'cover', u'alleg'] [u'iraqi', u'lodg', u'crime', u'lawsuit'] [u'israel', u'accus', u'arafat', u'latest', u'suicid', u'attack'] [u'kiribati', u'join', u'olymp', u'movement'] [u'labor', u'renew', u'push', u'exclud', u'trade', u'talk'] [u'latif', u'limelight', u'pakistan', u'contain', u'lanka'] [u'launceston', u'give', u'reunit', u'refuge', u'welcom', u'home'] [u'firm', u'lobbi', u'malpractic', u'threshold'] [u'leed', u'robinson', u'face', u'uncertain', u'futur'] [u'lonard', u'allenbi', u'strike', u'distanc'] [u'arrest', u'alic', u'assault'] [u'surgeri', u'buttock', u'stab'] [u'mauresmo', u'stun', u'serena'] [u'maverick', u'beat', u'king', u'texa', u'showdown'] [u'mclaren', u'claim', u'credit', u'tyre', u'develop', u'work'] [u'medal', u'award', u'troop', u'arriv', u'home'] [u'east', u'talk', u'resum', u'sharon', u'trip'] [u'minchin', u'hose', u'talk', u'earli', u'poll'] [u'mini', u'tornado', u'hit', u'bendigo'] [u'monet', u'main', u'featur', u'exhibit', u'launceston', u'galleri'] [u'moroccan', u'polic', u'arrest', u'islamist', u'attack'] [u'moroccan', u'polic', u'arrest', u'attack'] [u'morocco', u'arrest', u'islamist', u'bomb', u'kill'] [u'morocco', u'bomber', u'link', u'intern', u'terror'] [u'morrison', u'origin', u'hop', u'seem', u'shatter'] [u'morrison', u'origin', u'hop'] [u'motherwel', u'condemn', u'spot'] [u'nepal', u'honour', u'hillari', u'citizenship'] [u'korean', u'offici', u'doubt', u'defect', u'stori'] [u'govt', u'polic', u'communic'] [u'nswru', u'investig', u'season', u'incid'] [u'oppn', u'demand', u'govt', u'come', u'clean', u'threat'] [u'question', u'marin', u'research', u'fund'] [u'concern', u'csiro', u'crossin'] [u'paniyiri', u'festiv', u'showcas', u'brisban', u'greek'] [u'parlow', u'high', u'crush', u'england'] [u'patrick', u'hold', u'virgin', u'blue', u'float'] [u'pay', u'nurs'] [u'philippin', u'report', u'rebel', u'kill', u'anti', u'terror'] [u'phoenix', u'kestrel', u'bird', u'edg', u'firebird'] [u'polic', u'appeal', u'doctor', u'help', u'captur'] [u'polic', u'charg', u'string', u'hold'] [u'polic', u'alleg', u'thief', u'sydney'] [u'polic', u'suspect', u'worst', u'miss'] [u'power', u'surg', u'victim', u'urg', u'contact', u'aurora'] [u'privat', u'ceremoni', u'welcom', u'home'] [u'probe', u'uncov', u'liar', u'hous'] [u'queanbeyan', u'look', u'expand', u'horizon'] [u'rain', u'frustrat', u'zimbabw', u'despit', u'sussex', u'light'] [u'result', u'declar', u'elect'] [u'govt', u'criticis', u'health', u'review', u'releas'] [u'sar', u'put', u'pressur', u'taiwan'] [u'scheme', u'target', u'smoke', u'school'] [u'schumach', u'secur', u'austrian', u'pole'] [u'second', u'jewish', u'settler', u'die', u'hebron', u'suicid'] [u'soldier', u'stand', u'timor', u'assault', u'alleg'] [u'soorley', u'fulfil', u'offici', u'duti', u'brisban'] [u'space', u'shuttl', u'like'] [u'starv', u'victorian', u'hunger', u'strike'] [u'suicid', u'bomber', u'kill', u'sharon', u'abba', u'meet'] [u'swan', u'continu', u'good', u'form', u'blue', u'edg', u'dog'] [u'swan', u'continu', u'win', u'form'] [u'swan', u'freo', u'continu', u'good', u'form', u'blue', u'edg', u'dog'] [u'sydney', u'polic', u'search', u'miss', u'girl'] [u'tasmanian', u'urg', u'buoy', u'hour', u'chariti', u'swimmer'] [u'thoma', u'crucifi', u'dumb', u'saint'] [u'thousand', u'march', u'rememb', u'sisulu'] [u'iraqi', u'regim', u'offici', u'surrend', u'mass', u'grave'] [u'saddam', u'offici', u'surrend', u'forc'] [u'team', u'boss', u'doubt', u'calendar', u'expand'] [u'tourism', u'slump', u'produc', u'hotel', u'bargain'] [u'transit', u'offic', u'request', u'capsicum', u'spray'] [u'ullrich', u'head', u'tour', u'bianchi'] [u'offici', u'warn', u'need', u'order', u'iraq'] [u'journalist', u'deport', u'zimbabw', u'vow', u'carri'] [u'vandal', u'attack', u'leav', u'clean', u'crew', u'fume'] [u'violenc', u'mar', u'east', u'peac', u'talk'] [u'fire', u'line', u'nuclear', u'dump', u'green'] [u'iraq', u'reduc', u'terror', u'threat', u'hill'] [u'wasp', u'ideal', u'final'] [u'youngster', u'claim', u'overal', u'sprint', u'crown', u'despit'] [u'hurt', u'kashmiri', u'explos'] [u'aborigin', u'children', u'suscept', u'lung', u'diseas'] [u'accus', u'illeg', u'fisher', u'face', u'court'] [u'club', u'dark', u'salari'] [u'airlin', u'urg', u'rethink', u'flight', u'cut'] [u'alic', u'resid', u'win', u'squash', u'event'] [u'alleg', u'white', u'extremist', u'treason', u'trial'] [u'alleg', u'white', u'extremist', u'treason', u'trial'] [u'allenbi', u'singh', u'win', u'texa'] [u'presid', u'play', u'confer', u'brawl'] [u'select', u'keppel', u'candid'] [u'amnesti', u'call', u'intern', u'arm', u'trade', u'treati'] [u'amrozi', u'trial', u'adjourn'] [u'batch', u'seiz', u'polic', u'raid'] [u'apra', u'eye'] [u'aussi', u'demand', u'car', u'stay', u'strong'] [u'aussi', u'dollar', u'notch', u'year', u'high'] [u'australia', u'domin', u'sydney'] [u'australian', u'rescu', u'himalayan', u'mountain'] [u'australian', u'team', u'help', u'recov', u'steal', u'iraq'] [u'australia', u'suffer', u'shock', u'team', u'defeat'] [u'award', u'recognis', u'pilbara'] [u'bali', u'victim', u'father', u'leav', u'indonesia'] [u'bank', u'battl', u'credit', u'card', u'reform', u'court'] [u'battl', u'ballestero', u'continu'] [u'bear', u'lose', u'captain', u'sidelin'] [u'bendigo', u'tornado', u'clean', u'continu'] [u'bodi', u'recov', u'chines', u'coal'] [u'brumbi', u'test', u'cap', u'nucifora'] [u'bumpi', u'road', u'pool', u'plan', u'kennedi'] [u'bushfir', u'victim', u'help', u'appli'] [u'bush', u'spokesman', u'fleischer', u'resign'] [u'dump', u'remain', u'open'] [u'cambodia', u'sacr', u'cow', u'predict', u'peac', u'drought'] [u'campaign', u'begin', u'inspector', u'car'] [u'canberran', u'stay', u'home', u'fear', u'burglari', u'survey'] [u'canegrow', u'consid', u'option'] [u'cathol', u'educ', u'offic', u'welcom', u'move', u'chang'] [u'chang', u'nat', u'port', u'macquari'] [u'china', u'vow', u'help', u'trap', u'australian', u'climber'] [u'cipo', u'edg', u'mcewen', u'equal', u'giro', u'record'] [u'clijster', u'fight', u'rome', u'master'] [u'confer', u'put', u'terror', u'spotlight'] [u'conscript', u'propos', u'terror', u'fight'] [u'convict', u'murder', u'admit', u'kill', u'mother'] [u'convict', u'peopl', u'smuggler', u'jail', u'illeg'] [u'coria', u'eas', u'master', u'seri'] [u'council', u'announc', u'cash', u'deficit'] [u'council', u'consid', u'shop', u'develop', u'plan'] [u'council', u'face', u'rat', u'loss'] [u'council', u'late', u'night', u'transport', u'report'] [u'council', u'rethink', u'hospit', u'purchas'] [u'council', u'spend', u'water', u'suppli', u'work'] [u'council', u'vote', u'land', u'custodian', u'statement'] [u'crean', u'focus', u'issu', u'leadership'] [u'cruzeiro', u'stay', u'brazil', u'festiv', u'draw'] [u'cycl', u'path', u'link', u'consider'] [u'david', u'carradin', u'get', u'tarantino', u'touch'] [u'disgrac', u'time', u'report', u'book', u'movi', u'talk'] [u'disus', u'land', u'give', u'local', u'council'] [u'doctor', u'group', u'welcom', u'insur', u'effort'] [u'dollar', u'market', u'close', u'weaker'] [u'doubt', u'rais', u'slow', u'burn', u'plan'] [u'assess', u'wheat', u'virus', u'spread'] [u'dragon', u'fin', u'brown', u'outburst'] [u'draw', u'justic', u'complex'] [u'driver', u'kill', u'crash'] [u'easter', u'influx', u'help', u'defi', u'tourism', u'slump'] [u'educ', u'grant', u'avail', u'peopl'] [u'elder', u'push', u'protest'] [u'energi', u'leader', u'urg', u'sell', u'hydrogen', u'power'] [u'fair', u'trade', u'advisori', u'committe', u'establish'] [u'farmer', u'keen', u'join', u'land', u'clear', u'talk'] [u'feder', u'polic', u'ongo', u'asian', u'role'] [u'ferrari', u'amaz', u'schumach', u'recoveri'] [u'investig', u'ferrari', u'fuel', u'problem'] [u'set', u'rail', u'restor', u'project'] [u'fish', u'sustain', u'agreement', u'spotlight'] [u'free', u'concert', u'thank', u'volunt'] [u'fund', u'protect', u'terrorist', u'threat'] [u'fund', u'need', u'communiti'] [u'close', u'william', u'sister', u'clijster'] [u'gasnier', u'origin', u'open'] [u'german', u'hard', u'harrington'] [u'giteau', u'miss', u'test', u'match'] [u'gold', u'coast', u'sar', u'suspect', u'releas'] [u'gould', u'narrow', u'origin', u'squad'] [u'govt', u'work', u'plan', u'resolv', u'medic', u'indemn'] [u'grain', u'research', u'futur', u'clearer'] [u'green', u'unhappi', u'award', u'sponsorship', u'deal'] [u'guidelin', u'child', u'protect', u'alleg'] [u'hope', u'centr', u'spark', u'volunt'] [u'horsham', u'ratepay', u'face', u'rate', u'rise'] [u'hungri', u'aussi', u'number'] [u'hungri', u'ferret', u'caus', u'commut', u'chao'] [u'hydrogen', u'hail', u'fuel', u'futur'] [u'india', u'pakistan', u'play', u'champion', u'trophi', u'event'] [u'indonesia', u'launch', u'rocket', u'attack', u'aceh'] [u'indonesian', u'troop', u'mobilis', u'aceh'] [u'indonesian', u'troop', u'pour', u'aceh', u'offens'] [u'institut', u'win', u'contract', u'develop', u'vietnam', u'financ'] [u'dismiss', u'pilot', u'unfair', u'dismiss', u'claim'] [u'italian', u'diplomat', u'dob', u'tattl', u'tale', u'kiwi'] [u'jackson', u'unhappi', u'awol', u'shaq'] [u'judg', u'begin', u'sum', u'folbigg', u'trial'] [u'kidd', u'grab', u'gasp', u'net'] [u'land', u'missionari', u'murder', u'church'] [u'lehmann', u'calf', u'strain'] [u'makelel', u'reveal', u'unit', u'link'] [u'charg', u'ambul', u'incid'] [u'charg', u'attempt', u'murder'] [u'mayor', u'reject', u'rat', u'plan'] [u'mayor', u'save', u'money', u'stop'] [u'mcdonald', u'clear', u'foot', u'fractur'] [u'mcdonald', u'not', u'injuri'] [u'mcgrath', u'finish', u'week', u'high'] [u'mcveigh', u'answer', u'strike', u'charg'] [u'media', u'back', u'wife', u'miss', u'cameraman'] [u'meet', u'consid', u'snowi', u'rehab'] [u'millar', u'bounc', u'tour', u'picardi'] [u'worker', u'face', u'uncertain', u'futur'] [u'minist', u'clear', u'interfer', u'volker', u'case'] [u'mix', u'injuri', u'news', u'lion'] [u'monaco', u'doubl', u'grab', u'limelight'] [u'car', u'steal', u'tasmania', u'state'] [u'murali', u'catch', u'pakistan', u'spin', u'trap'] [u'murder', u'trial', u'enter', u'second', u'week'] [u'navratilova', u'triumph', u'rome', u'year'] [u'copyright', u'law', u'protect', u'aborigin'] [u'owner', u'renam', u'histor', u'mason', u'club', u'build'] [u'dept', u'govern'] [u'recruit', u'revel', u'port'] [u'wast', u'facil'] [u'threat', u'expat', u'despit', u'behead', u'solomon'] [u'threat', u'expat', u'solomon', u'polic'] [u'nowra', u'tafe', u'teacher', u'reject', u'offer'] [u'crack', u'refere'] [u'age', u'care', u'nurs', u'seek', u'equiti'] [u'review', u'vagu', u'school', u'disciplin', u'rule'] [u'chief', u'minist', u'tell', u'court', u'afraid'] [u'nurs', u'suffer', u'high', u'level', u'abus', u'studi'] [u'struggl', u'lankan', u'spin'] [u'offic', u'await', u'recoveri', u'fellow', u'climber', u'bodi'] [u'oppn', u'alleg', u'cover', u'hospit', u'death'] [u'oppn', u'demand', u'answer', u'sydney', u'sewag', u'overflow'] [u'parent', u'urg', u'supervis', u'children', u'breakfast'] [u'rise', u'northam', u'councillor'] [u'pelican', u'run', u'amok', u'melb', u'highway'] [u'perth', u'muso', u'win', u'morrison', u'music', u'scholarship'] [u'pillag', u'plunder', u'captur', u'adelaid'] [u'polic', u'continu', u'manhunt', u'shoot'] [u'polic', u'crack', u'road', u'offenc'] [u'polic', u'hear', u'drink', u'spike', u'report'] [u'polic', u'look', u'crash'] [u'polic', u'probe', u'motel', u'vandal', u'report'] [u'polic', u'seek', u'help', u'hunt', u'arsonist'] [u'polic', u'identifi', u'goat', u'track', u'bodi'] [u'politician', u'tribut', u'soorley'] [u'pont', u'mcgrath', u'inspir', u'australian', u'victori'] [u'poppi', u'grower', u'tell', u'price', u'safeguard'] [u'prosecutor', u'outlin', u'case', u'amrozi'] [u'public', u'urg', u'vote', u'holiday'] [u'push', u'parliament', u'goldfield'] [u'govt', u'urg', u'consid', u'victiorian', u'insur'] [u'govt', u'urg', u'consid', u'victorian', u'insur'] [u'qlds', u'chief', u'magistr', u'face', u'suprem', u'court'] [u'raider', u'sign', u'woolford'] [u'rain', u'truck', u'water', u'suppli'] [u'ranger', u'heart', u'scare'] [u'real', u'sociedad', u'spain', u'real', u'madrid', u'second'] [u'hodgson', u'take', u'monza', u'superbik'] [u'reserv', u'plan', u'specif', u'threat', u'hill'] [u'rooney', u'murphi', u'pull', u'england', u'squad'] [u'rooster', u'knight', u'sydney'] [u'rooster', u'sign', u'walker'] [u'erupt', u'rfsa', u'pay', u'offic'] [u'ruddock', u'arriv', u'launceston', u'protest'] [u'russian', u'cyclist', u'face', u'drug', u'charg', u'sydney'] [u'russian', u'cyclist', u'face', u'court', u'world', u'drug'] [u'salin', u'studi'] [u'sar', u'blame', u'wool', u'price', u'slump'] [u'seaman', u'agonis', u'highburi', u'futur'] [u'seatbelt', u'campaign', u'target', u'region'] [u'seminar', u'focus', u'suicid', u'prevent'] [u'senat', u'predict', u'hard', u'time', u'tourism', u'sector'] [u'senat', u'rais', u'question', u'radio', u'station', u'fund'] [u'senat', u'say', u'telstra', u'prepar', u'job'] [u'shire', u'welcom', u'govt', u'vcat', u'decis'] [u'singh', u'pull', u'coloni'] [u'south', u'africa', u'turmoil', u'ahead', u'england', u'clash'] [u'south', u'korea', u'japan', u'harden', u'stand', u'north', u'korea'] [u'statist', u'highlight', u'secur', u'concern'] [u'storm', u'black', u'thousand'] [u'studi', u'rethink', u'testosteron', u'women'] [u'suicid', u'bomber', u'wound', u'gaza'] [u'suicid', u'bomb', u'prompt', u'widespread', u'condemn'] [u'sunwat', u'water', u'meter', u'read', u'result'] [u'support', u'seek', u'airstrip', u'upgrad'] [u'survey', u'highlight', u'crime', u'woe'] [u'surviv', u'fund', u'launch', u'ail', u'oper'] [u'suspici', u'histor', u'railway', u'station'] [u'swain', u'clear', u'injuri'] [u'swiss', u'reject', u'nuclear', u'power', u'freez'] [u'sydney', u'shoot', u'prompt', u'polic', u'warn'] [u'govt', u'urg', u'resolv', u'lift'] [u'hotel', u'unconcern', u'slump'] [u'tasmanian', u'urg', u'protest', u'possibl'] [u'tasmania', u'anti', u'terror', u'unit'] [u'teacher', u'reject', u'rise', u'offer'] [u'temper', u'erupt', u'labor', u'confer'] [u'thousand', u'tip', u'sign', u'anti', u'nuclear', u'petit'] [u'tiatto', u'hit', u'comeback', u'trail'] [u'toddler', u'die', u'road', u'crash'] [u'toddler', u'kill', u'traffic', u'crash'] [u'tongan', u'activist', u'call', u'fiscal', u'transpar'] [u'tourist', u'resort', u'face', u'pollut', u'sentenc', u'today'] [u'train', u'year', u'counter', u'terror', u'brigad'] [u'treason', u'trial', u'start', u'africa'] [u'treasuri', u'consult', u'fraud', u'charg'] [u'trial', u'hear', u'amrozi', u'player', u'bali', u'plot'] [u'troop', u'pour', u'aceh', u'offens', u'begin'] [u'treat', u'chemic', u'spill', u'fyshwick'] [u'ullrich', u'pantani', u'wait', u'tour', u'wildcard', u'decis'] [u'democrat', u'blast', u'bush', u'campaign', u'terror'] [u'hammer', u'japan', u'world', u'tune'] [u'victori', u'claim', u'belgium', u'elect'] [u'concern', u'commonwealth', u'reneg', u'fund'] [u'govt', u'blast', u'green', u'anti', u'nuclear'] [u'walker', u'sign', u'rooster'] [u'wasim', u'bid', u'farewel', u'intern', u'stage'] [u'water', u'restrict', u'like', u'melbourn', u'june'] [u'weak', u'greenback', u'push', u'aussi', u'higher'] [u'weed', u'control', u'spark', u'temporari', u'park', u'closur'] [u'wiki', u'fight', u'charg'] [u'woman', u'kill', u'central', u'accid'] [u'writer', u'head', u'head', u'festiv'] [u'yeppoon', u'lose', u'sunday', u'trade'] [u'youth', u'worker', u'tackl', u'antisoci', u'woe'] [u'miner', u'fear', u'dead', u'coalmin', u'accid'] [u'british', u'voter', u'vote', u'euro', u'poll'] [u'miner', u'fear', u'dead', u'china'] [u'tell', u'player', u'wait', u'rise'] [u'aceh', u'unlik', u'hurt', u'tie', u'hill'] [u'govt', u'take', u'credit', u'rise', u'employ', u'rate'] [u'action', u'call', u'save', u'river'] [u'activist', u'protest', u'militari', u'action', u'aceh'] [u'readi', u'network', u'base'] [u'club', u'advic', u'surviv'] [u'spread', u'middl', u'east'] [u'australian', u'advis', u'leav', u'aceh'] [u'alleg', u'crime', u'syndic', u'face', u'court'] [u'ancelotti', u'call', u'reserv', u'final'] [u'arafura', u'game', u'reschedul'] [u'arm', u'bandit', u'lock', u'pair', u'room'] [u'artist', u'tri', u'world', u'longest', u'batik', u'paint'] [u'aussi', u'protea'] [u'aussi', u'protea', u'world', u'champ', u'warm'] [u'aussi', u'stock', u'market', u'close', u'weaker'] [u'aust', u'handl', u'sar', u'victim', u'criticis', u'report'] [u'australia', u'drop', u'singapor', u'sar', u'travel'] [u'australian', u'fan', u'wait', u'extra', u'world', u'ticket'] [u'australia', u'imag', u'sulli', u'sportsmen', u'behav'] [u'aust', u'vietnam', u'confer', u'sar'] [u'babi', u'talk', u'baffl', u'pilot'] [u'brink', u'spadea', u'set', u'sight', u'high'] [u'banker', u'fight', u'footpath', u'fee'] [u'barri', u'hand', u'england'] [u'behrend', u'stun', u'rio', u'pull', u'germani', u'level'] [u'bergkamp', u'pois', u'sign', u'gunner', u'contract'] [u'steel', u'fin', u'sick', u'worker'] [u'bomb', u'explos', u'kill', u'turkish', u'cafe'] [u'expel', u'braid', u'like', u'beckham'] [u'brack', u'claim', u'attack', u'public', u'liabil', u'chang'] [u'brack', u'plan', u'parad', u'troop'] [u'bush', u'expect', u'bumpi', u'road', u'east', u'peac'] [u'calendar', u'girl', u'film', u'delight', u'audienc', u'cann'] [u'driver', u'fatigu', u'campaign'] [u'council', u'merger', u'detail'] [u'traffic', u'inspector', u'road'] [u'capsicum', u'spray', u'offic', u'need', u'retrain'] [u'casablanca', u'suicid', u'bomber', u'identifi'] [u'finish', u'albani', u'upgrad', u'feasibl', u'studi'] [u'celtic', u'honour', u'lisbon', u'lion'] [u'central', u'consid', u'sunday', u'trade'] [u'channel', u'group', u'move', u'ahead', u'plan'] [u'china', u'fin', u'ban', u'athlet', u'xinhua'] [u'cipollini', u'pantani', u'tour', u'franc'] [u'cipollini', u'break', u'record', u'giro', u'stage', u'win'] [u'civil', u'liberti', u'group', u'slam', u'insur', u'reform'] [u'claim', u'civilian', u'kill', u'aceh', u'offens'] [u'claim', u'anglican', u'offici', u'abus', u'boy'] [u'clear', u'prove', u'cost', u'northern', u'timber'] [u'cole', u'myer', u'australia', u'biggest', u'onlin', u'grocer'] [u'command', u'back', u'readi', u'respons', u'decis'] [u'commonwealth', u'bank', u'worker'] [u'compani', u'take', u'thorpedo', u'court'] [u'condit', u'place', u'approv', u'runway'] [u'coron', u'find', u'improp', u'care', u'caus', u'babi', u'death'] [u'council', u'consid', u'pool', u'futur'] [u'crayfish', u'regul', u'shake'] [u'crean', u'downplay', u'poll'] [u'crown', u'outlin', u'case', u'fingleton'] [u'post', u'profit'] [u'dirti', u'water', u'affect', u'water', u'suppli'] [u'disast', u'spark', u'mix', u'feel'] [u'doctor', u'seek', u'insur', u'assur'] [u'document', u'seiz', u'priest', u'investig'] [u'doubt', u'cast', u'holiday', u'chang'] [u'doubt', u'cast', u'medic', u'scholarship'] [u'downer', u'fear', u'substanti', u'aceh', u'death', u'toll'] [u'review', u'child', u'porn', u'sentenc'] [u'dragon', u'fin', u'touch', u'judg', u'jibe'] [u'dragon', u'reel', u'injuri', u'end', u'barrett', u'season'] [u'draper', u'get', u'french', u'open', u'wildcard'] [u'face', u'charg', u'cannabi', u'crop'] [u'embryo', u'research', u'reach', u'parliament'] [u'emerg', u'fund', u'tornado', u'victim'] [u'employe', u'ax', u'drought', u'claim', u'meatwork'] [u'engin', u'student', u'honour'] [u'english', u'player', u'union', u'plan', u'drug'] [u'explos', u'reserv', u'alarm', u'sound'] [u'famili', u'slay', u'missionari', u'return', u'home'] [u'farrier', u'face', u'court', u'charg', u'injur', u'hors'] [u'ferri', u'termin', u'upgrad', u'plan'] [u'fight', u'save', u'danc', u'bear', u'reach', u'melbourn'] [u'finley', u'late', u'basket', u'seal', u'maverick', u'fightback'] [u'signific', u'snow', u'fall', u'snowi'] [u'rebel', u'kill', u'aceh', u'fight'] [u'flintoff', u'doubt', u'test'] [u'england', u'skipper', u'robson', u'join', u'villa', u'race'] [u'find', u'solut', u'water', u'shortag'] [u'franc', u'lose', u'real', u'madrid', u'confeder'] [u'fund', u'beef', u'industri', u'research'] [u'gebrselassi', u'track', u'london', u'meet'] [u'german', u'unknown', u'stun', u'rio'] [u'golden', u'point', u'confirm', u'golden', u'blunder'] [u'govt', u'agenc', u'face', u'penalti', u'overdu'] [u'green', u'believ', u'record'] [u'hackett', u'cairn', u'grand', u'prix'] [u'henin', u'hardenn', u'aim', u'high', u'pari'] [u'hewitt', u'fear', u'pari', u'clay'] [u'hewitt', u'name', u'seed', u'french', u'open'] [u'hird', u'clear', u'blood', u'clot', u'scare'] [u'histor', u'hous', u'shop'] [u'hope', u'injur', u'knight', u'shark'] [u'hope', u'rain', u'continu'] [u'hop', u'goulburn', u'valley', u'iraqi', u'reunit'] [u'howard', u'laud', u'timor', u'progress'] [u'fin', u'bangladesh', u'captain', u'mahmud'] [u'insur', u'reform', u'packag', u'greet', u'mix'] [u'isra', u'forc', u'withdraw', u'northern', u'gaza', u'town'] [u'japan', u'north', u'korea', u'fund', u'channel'] [u'juri', u'hunter', u'valley', u'death', u'case', u'retir'] [u'midfield', u'costinha', u'includ', u'porto', u'squad'] [u'kidman', u'find', u'dogvill', u'worth', u'shout'] [u'knowl', u'tenterfield', u'visit', u'reveal'] [u'kournikova', u'plan', u'doubl', u'wimbledon', u'warm'] [u'latham', u'back', u'munster'] [u'latham', u'pois', u'stay', u'red', u'report'] [u'secur', u'surpris', u'polic'] [u'legal', u'issu', u'slow', u'abus', u'investig', u'archbishop'] [u'liverpool', u'chase', u'kewel', u'report'] [u'mahathir', u'say', u'welcom'] [u'maier', u'eberhart', u'battl', u'year'] [u'makel', u'deni', u'unit'] [u'choic', u'seaman'] [u'malik', u'take', u'pakistan', u'challeng', u'total'] [u'manchest', u'citi', u'chairman'] [u'face', u'trial', u'meat', u'cleaver', u'attack'] [u'leav', u'pantless', u'robberi'] [u'plead', u'guilti', u'neglig', u'drive'] [u'plead', u'guilti', u'rap', u'teen'] [u'unit', u'keep', u'wait', u'ronaldinho'] [u'march', u'take', u'tiger', u'deputi'] [u'mcveigh', u'clear', u'barnard', u'corn', u'suspend'] [u'mcveigh', u'clear', u'barnard', u'suspend'] [u'mickelberg', u'frame', u'case', u'throw', u'court'] [u'microsoft', u'global', u'product', u'support', u'centr'] [u'archaeolog', u'dig', u'moot', u'toowoomba'] [u'call', u'rail', u'standardis', u'project'] [u'illeg', u'fish', u'boat', u'detain'] [u'money', u'canberra', u'bushfir', u'victim'] [u'terrorist', u'attack', u'immin', u'report'] [u'claim', u'resolv', u'taskforc'] [u'mother', u'trial', u'assault'] [u'water', u'issu'] [u'repeat', u'call', u'build', u'insur'] [u'napster', u'rise', u'ash'] [u'nepales', u'runner', u'domin', u'everest', u'marathon'] [u'book', u'improv', u'indigen', u'literaci', u'rat'] [u'custom', u'offic', u'open', u'broom'] [u'insur', u'law', u'introduc'] [u'literari', u'program', u'launch', u'central', u'aust'] [u'tiwi', u'websit', u'launch'] [u'lament', u'stronger', u'aussi', u'dollar'] [u'nickel', u'price', u'predict', u'rise'] [u'speaker', u'action', u'wind', u'farm', u'question'] [u'npws', u'reject', u'drought', u'park', u'claim'] [u'get', u'winter', u'snow'] [u'govt', u'urg', u'boost', u'region', u'tourism', u'spend'] [u'plan', u'parol', u'account', u'measur'] [u'trial', u'medicin', u'marijuana'] [u'owner', u'face', u'insur', u'rise'] [u'korea', u'warn', u'south', u'horrif', u'disast'] [u'lamb', u'export', u'rise'] [u'odavi', u'return', u'horror', u'face', u'injuri'] [u'offic', u'seek', u'damag', u'fall', u'child', u'care'] [u'olim', u'hotel', u'manag'] [u'dead', u'turkish', u'explos'] [u'outrag', u'reef', u'pollut', u'fine'] [u'pacer', u'miller', u'undergo', u'right', u'ankl', u'surgeri'] [u'staff', u'receiv', u'redund', u'payout'] [u'pilot', u'criticis', u'runaway', u'plane', u'incid'] [u'pipelin', u'offer', u'water', u'suppli'] [u'polic', u'look', u'woomera', u'claim'] [u'polic', u'look', u'woomera', u'mismanag', u'claim'] [u'poppi', u'grower', u'stronger', u'aussi', u'dollar'] [u'port', u'hedland', u'detent', u'centr', u'worker'] [u'port', u'hedland', u'indigen', u'servic', u'review'] [u'preschool', u'revamp', u'fund'] [u'press', u'watchdog', u'urg', u'philippin', u'protect'] [u'govt', u'air', u'illeg', u'fish', u'concern'] [u'govt', u'sign', u'disast', u'fund'] [u'raaf', u'base', u'heritag', u'recognit'] [u'rain', u'boost', u'farmer', u'effort'] [u'rain', u'bring', u'good'] [u'rainfal', u'respit', u'part', u'south', u'east'] [u'rebel', u'civilian', u'kill', u'aceh', u'fight'] [u'record', u'temperatur', u'central'] [u'cross', u'logo', u'steal'] [u'right', u'life', u'case', u'court'] [u'riverland', u'miss', u'downpour'] [u'roddick', u'surviv', u'second', u'scare'] [u'rooster', u'coach', u'stuart', u'prais', u'walker'] [u'erupt', u'marina', u'develop', u'applic'] [u'ruddock', u'rule', u'judici', u'probe'] [u'safin', u'french', u'open'] [u'schumach', u'prais', u'crew'] [u'seafood', u'export', u'urg', u'help'] [u'searson', u'buck', u'win', u'busi', u'award', u'excel'] [u'self', u'harm', u'ongo', u'problem', u'detent', u'centr'] [u'council', u'consid', u'merger'] [u'sinclair', u'pledg', u'futur', u'west'] [u'sing', u'generat', u'get', u'voic'] [u'small', u'busi', u'face', u'tough', u'time'] [u'socceroo', u'oceania', u'world', u'qualifi', u'date'] [u'solo', u'explor', u'arriv', u'north', u'pole'] [u'farmer', u'rain'] [u'special', u'forc', u'task', u'group', u'arriv', u'sydney'] [u'lankan', u'flood', u'toll', u'hit'] [u'georg', u'take', u'bank', u'honour'] [u'stress', u'fractur', u'sidelin', u'zealand', u'paceman', u'bond'] [u'student', u'heckl', u'costello', u'hike', u'plan'] [u'superstiti', u'milan', u'wear', u'white', u'final'] [u'swiss', u'foreign', u'minist', u'cross', u'korean', u'border'] [u'tafe', u'teacher', u'welcom', u'polit', u'support'] [u'taiwanes', u'health', u'worker', u'quit', u'sar', u'toll', u'rise'] [u'govt', u'surpris', u'level', u'nurs', u'abus'] [u'tatu', u'tip', u'eurovis', u'song', u'contest'] [u'teen', u'get', u'communiti', u'order', u'assault', u'theft'] [u'terror', u'forum', u'brisban', u'focus', u'busi'] [u'thorp', u'battl'] [u'tourist', u'number', u'record', u'largest', u'month', u'drop'] [u'treasuri', u'head', u'warn', u'labour', u'forc', u'dwindl'] [u'mission', u'east', u'timor', u'extend', u'year'] [u'chopper', u'crash', u'iraq', u'dead'] [u'policeman', u'bodi', u'recov', u'tibet'] [u'resort', u'receiv', u'substanti', u'snowfal'] [u'virgin', u'blue', u'consid', u'goldfield', u'servic'] [u'volunt', u'seek', u'help'] [u'wallabi', u'restor', u'reput', u'poor', u'super'] [u'wander', u'croc', u'spark', u'secur', u'boost'] [u'waratah', u'face', u'tribun', u'nightclub', u'brawl'] [u'water', u'restrict', u'begin', u'juli'] [u'water', u'scheme', u'upgrad', u'hold'] [u'westfield', u'trump', u'centro', u'takeov'] [u'wiki', u'smith', u'clear', u'judiciari', u'hear'] [u'wilder', u'societi', u'want', u'tall', u'tree', u'protect'] [u'wit', u'begin', u'testimoni', u'bashir', u'trial'] [u'woomera', u'claim', u'demand', u'inquiri', u'oppn'] [u'woomera', u'sicken', u'report'] [u'abattoir', u'reopen'] [u'abbott', u'commit', u'meet', u'strike', u'worker'] [u'mazen', u'postpon', u'tour', u'tank', u'roll'] [u'chip', u'bradman'] [u'aceh', u'attack', u'continu', u'report', u'dead'] [u'appal', u'woomera', u'alleg'] [u'consid', u'right'] [u'govt', u'push', u'park', u'parliamentari', u'zone'] [u'clear', u'mccartney', u'tribut', u'bali', u'dead'] [u'agist', u'cattl', u'move', u'south', u'west'] [u'akhtar', u'accus', u'ball', u'tamper'] [u'alburi', u'council', u'eye', u'hume', u'shire'] [u'ord', u'edg', u'mix'] [u'archbishop', u'encourag', u'victim', u'come', u'forward'] [u'armstrong', u'take', u'honour', u'laureus', u'award'] [u'attempt', u'kill', u'shop', u'owner', u'land', u'robber'] [u'australia', u'hauritz', u'dayer'] [u'australian', u'urg', u'leav', u'saudi', u'arabia'] [u'bank', u'urg', u'compass', u'tornado', u'victim'] [u'barrett', u'miss', u'rest', u'season'] [u'bayern', u'scandal', u'share', u'bundesliga', u'spotlight'] [u'bidder', u'high', u'perform', u'role'] [u'blacklock', u'rejoin', u'dragon'] [u'bodi', u'burn'] [u'bristol', u'lose', u'gibson', u'leicest'] [u'hardi', u'fin', u'wast', u'spill'] [u'bugger', u'ban', u'parliament'] [u'bush', u'appeal', u'crackdown', u'terrorist'] [u'bushfir', u'victim', u'receiv', u'bonus', u'donat'] [u'cabbi', u'offer', u'expert', u'advic', u'brazil', u'economi'] [u'altern', u'court', u'option'] [u'canberra', u'employ', u'base', u'rise'] [u'cane', u'farmer', u'urg', u'pressur', u'polli'] [u'cannabi', u'plan', u'merit', u'patterson'] [u'use', u'share', u'offer', u'fund'] [u'claim', u'furnitur', u'worker', u'like', u'entitl'] [u'clark', u'reject', u'call', u'resign'] [u'clear', u'decis', u'pend', u'thousand', u'hectar'] [u'comeback', u'queen', u'capriati', u'gatecrash', u'mood'] [u'concern', u'air', u'water', u'restrict'] [u'consult', u'list', u'save'] [u'corn', u'suspend', u'rough', u'play'] [u'costa', u'trumpet', u'public', u'transport', u'chang'] [u'council', u'consid', u'lake', u'regrowth', u'strategi'] [u'councillor', u'vote', u'extend', u'trade', u'hour'] [u'council', u'reject', u'merger', u'plan'] [u'council', u'rental', u'probe', u'spark', u'recommend'] [u'council', u'submit', u'boundari', u'chang', u'plan'] [u'council', u'discuss', u'possibl', u'merger'] [u'court', u'hear', u'close', u'submiss', u'patient', u'feed'] [u'crean', u'back', u'medicin', u'marijuana', u'trial'] [u'crean', u'privat', u'health', u'rebat', u'form'] [u'cruis', u'ship', u'visit', u'boost', u'broom', u'tourism'] [u'cuban', u'give', u'life', u'sentenc', u'hijack', u'plane'] [u'cultur', u'gene', u'play', u'role', u'alzheim'] [u'dive', u'industri', u'urg', u'follow', u'procedur'] [u'dollar', u'link', u'euro', u'fortun'] [u'downer', u'urg', u'mugab', u'stand'] [u'encourag', u'improv', u'product', u'boost'] [u'decid', u'charg', u'crick', u'suicid'] [u'drought', u'slash', u'wheat', u'profit'] [u'elder', u'predict', u'decim', u'heritag'] [u'england', u'start', u'strength', u'south', u'africa'] [u'farmer', u'disput', u'end', u'tractor', u'joust'] [u'fear', u'loom', u'record', u'water', u'alloc'] [u'feder', u'fund', u'tiger', u'prawn', u'industri'] [u'feder', u'prim', u'parisian', u'challeng'] [u'fibr', u'optic', u'project', u'cost', u'taxpay', u'oppn'] [u'folbigg', u'juri', u'continu', u'deliber'] [u'reuter', u'vietnam', u'die'] [u'face', u'drug', u'charg'] [u'fish', u'boat', u'seiz', u'coast'] [u'fuelwatch', u'extend'] [u'fuelwatch', u'plan', u'spark', u'opposit'] [u'fund', u'help', u'boost', u'northern'] [u'funer', u'hold', u'legendari', u'disc', u'jockey'] [u'futur', u'industri', u'provid'] [u'gallop', u'rule', u'medic', u'cannabi', u'trial'] [u'gaza', u'strip', u'closur', u'hamper', u'work'] [u'ghandi', u'daughter', u'tour', u'coff'] [u'gippsland', u'doctor', u'elect', u'presid'] [u'gippsland', u'victoria', u'presid'] [u'gold', u'price', u'predict', u'continu', u'climb'] [u'gold', u'sector', u'strength', u'help', u'gympi', u'gold', u'plan'] [u'govt', u'accus', u'politicis', u'parad'] [u'govt', u'confid', u'juli', u'buyback'] [u'govt', u'hit', u'babi', u'bonus'] [u'govt', u'issu', u'singapor', u'travel', u'warn'] [u'govt', u'decid', u'buyback'] [u'govt', u'acceler', u'court', u'case'] [u'govt', u'close', u'child', u'porn', u'loophol'] [u'hard', u'time', u'lake', u'eppalock'] [u'heatwav', u'claim', u'live', u'pakistan'] [u'hewitt', u'give', u'australia'] [u'highway', u'upgrad'] [u'hijack', u'ship', u'dock', u'liberia'] [u'hitzfeld', u'cautious', u'bayern', u'futur'] [u'spot', u'light', u'combat', u'crime'] [u'hous', u'blaze', u'caus', u'sale', u'disrupt'] [u'hundr', u'miss', u'lankan', u'flood'] [u'identif', u'plane', u'wreckag', u'time'] [u'injur', u'flintoff', u'rule', u'test'] [u'injuri', u'offer', u'opportun', u'wallabi'] [u'insur', u'reform'] [u'insur', u'woe', u'spark', u'concern', u'doctor', u'futur'] [u'invinc', u'back', u'bradman'] [u'iraq', u'inspector', u'search', u'miss', u'nuke'] [u'irish', u'anger', u'nation'] [u'itali', u'simoni', u'take', u'overal', u'lead'] [u'john', u'blast', u'origin', u'boss', u'gould'] [u'kalgoorli', u'boulder', u'host', u'touch', u'event'] [u'kelli', u'welcom', u'ethanol', u'trial'] [u'kewel', u'snub', u'report'] [u'kidman', u'feet', u'cann'] [u'labor', u'recruit', u'indigen', u'coast', u'guard'] [u'land', u'valuer', u'consid', u'stanbrok', u'sale', u'spin', u'off'] [u'lapuent', u'leav', u'mexico', u'america', u'leagu', u'flop'] [u'minut', u'goal', u'give', u'river', u'lead'] [u'live', u'broadcast', u'atop', u'everest'] [u'lyon', u'celebr', u'retain', u'ligu', u'titl'] [u'diseas', u'canada'] [u'magistr', u'testifi', u'fingleton', u'trial'] [u'malik', u'make', u'pakistan', u'solid'] [u'abduct', u'shoot', u'sydney'] [u'await', u'sentenc', u'charg'] [u'charg', u'sit', u'milk', u'crate'] [u'charg', u'sydney', u'shoot'] [u'charg', u'assault', u'polic', u'offic'] [u'mandela', u'score', u'beckham', u'support', u'world'] [u'martin', u'hand', u'net', u'seri', u'lead'] [u'martyn', u'hop', u'bat', u'week'] [u'maverick', u'protest', u'decis'] [u'meekatharra', u'teacher', u'list', u'demand'] [u'meet', u'endors', u'paw', u'paus'] [u'milan', u'riot', u'roma', u'italian'] [u'milosev', u'trial', u'year'] [u'minist', u'launch', u'counsel', u'servic'] [u'mix', u'respons', u'insur', u'chang'] [u'mix', u'respons', u'rezon', u'reject'] [u'fish', u'boat', u'seiz'] [u'irrig', u'water', u'seek'] [u'moroccan', u'report', u'plan', u'saudi', u'suicid', u'plane'] [u'mother', u'convict', u'murder', u'children'] [u'motorcyclist', u'attack', u'bike', u'identif', u'scheme'] [u'mourner', u'farewel', u'stan'] [u'moya', u'ferrero', u'lead', u'spanish', u'assault'] [u'mugab', u'oppon', u'threaten', u'chao', u'lord'] [u'murraylink', u'project', u'regul', u'status'] [u'navratilova', u'back', u'sorenstam'] [u'net', u'lead'] [u'approach', u'chemo', u'boost', u'surviv', u'chanc'] [u'newcastl', u'sign', u'bowyer', u'report'] [u'schooli', u'board', u'discuss', u'issu'] [u'start', u'iraq', u'footbal'] [u'technolog', u'mine', u'safer'] [u'govt', u'trial', u'cannabi', u'medic'] [u'lower', u'hous', u'pass', u'consent'] [u'polic', u'appeal', u'termin', u'payout'] [u'push', u'power'] [u'budget', u'boost', u'child', u'protect'] [u'criticis', u'insur', u'cost'] [u'wont', u'politicis', u'state', u'plan', u'martin'] [u'odavi', u'await', u'news', u'injuri'] [u'oliv', u'plant', u'plan', u'ahead'] [u'oneil', u'slam', u'australia', u'poor', u'defens', u'record'] [u'opposit', u'budget', u'mirror', u'govt', u'spend'] [u'packer', u'australia', u'richest'] [u'parent', u'warn', u'underag', u'bodi', u'pierc'] [u'pari', u'join', u'race', u'summer', u'olymp'] [u'patterson', u'medic', u'marijuana', u'plan'] [u'peri', u'enter', u'polit'] [u'peri', u'eye', u'futur', u'polit'] [u'perpetu', u'share', u'slide'] [u'plan', u'moot', u'indigen', u'radio', u'station'] [u'polic', u'break', u'newcastl', u'heroin', u'ring'] [u'polic', u'charg', u'woman', u'daughter', u'tattoo'] [u'polic', u'crack', u'high', u'rise', u'crime'] [u'polic', u'issu', u'warn', u'drink', u'spike'] [u'polic', u'drug', u'charg'] [u'polic', u'italian', u'shark'] [u'pong', u'oper', u'pyongyang', u'defector', u'say'] [u'port', u'author', u'chief', u'step'] [u'port', u'hedland', u'staff', u'worker', u'say'] [u'port', u'appeal', u'corn', u'suspens'] [u'portug', u'reap', u'euro', u'bonanza'] [u'propos', u'gold', u'coast', u'curfew', u'stir', u'debat'] [u'prosecutor', u'sum', u'murder', u'trial'] [u'protest', u'misunderstand', u'reform', u'nelson'] [u'public', u'urg', u'help', u'salvo', u'appeal'] [u'push', u'bush', u'busi', u'break'] [u'govt', u'consid', u'accid', u'measur'] [u'tourism', u'take', u'biggest', u'blow', u'year'] [u'rain', u'come', u'right', u'time', u'farmer'] [u'rain', u'help', u'eas', u'water', u'crisi'] [u'rain', u'spark', u'eas', u'water', u'restrict'] [u'rann', u'upbeat', u'anti', u'terror', u'technolog'] [u'rebel', u'fight', u'see', u'kill', u'congo'] [u'ronaldo', u'win', u'world', u'sport', u'award'] [u'serial', u'killer', u'name', u'court'] [u'assault', u'juri', u'hear', u'record'] [u'shepherd', u'woolskin', u'properti', u'auction'] [u'shoaib', u'hand', u'match', u'tamper'] [u'simoni', u'take', u'giro', u'lead', u'aversen', u'win', u'stage'] [u'singapor', u'launch', u'sar', u'channel'] [u'hero', u'milton', u'honour'] [u'sledg', u'aussi', u'dislik', u'cricket', u'world'] [u'sorenstam', u'get', u'crash', u'cours', u'celebr'] [u'bunker', u'make', u'heritag', u'list'] [u'state', u'recept', u'return', u'troop', u'brack'] [u'sugar', u'industri', u'back', u'ethanol', u'trial'] [u'super', u'mark', u'australian', u'squad'] [u'suspect', u'bali', u'mastermind', u'formal', u'charg'] [u'tann', u'appeal', u'dope'] [u'govt', u'increas', u'prison', u'fund'] [u'team', u'battl', u'wash', u'game'] [u'swimmer', u'ban', u'drug', u'offenc'] [u'tire', u'beckham', u'long', u'feet'] [u'tornado', u'clean', u'week'] [u'tower', u'share', u'plung'] [u'train', u'servic', u'review'] [u'tune', u'miss', u'world'] [u'get', u'shoalhaven', u'campus', u'head'] [u'union', u'hop', u'boost', u'educ', u'budget'] [u'step', u'rural', u'health', u'train'] [u'analys', u'alleg', u'qaeda', u'tape'] [u'delay', u'iraqi', u'nation', u'confer'] [u'sanction', u'plan', u'think'] [u'troop', u'accident', u'kill', u'afghan', u'soldier'] [u'govt', u'rule', u'medicin', u'marijuana'] [u'victoria', u'host', u'oceania', u'basketbal', u'championship'] [u'victoria', u'host', u'oceania', u'basketbal', u'titl'] [u'villa', u'oleari'] [u'wage', u'cost', u'index', u'show', u'pay', u'check'] [u'govt', u'reject', u'farmbi', u'fund', u'attack'] [u'govt', u'step', u'campaign', u'sell'] [u'pair', u'jail', u'neglect'] [u'watson', u'hint', u'long', u'stay', u'tasmanian', u'tiger'] [u'white', u'contepomi', u'leav', u'bristol'] [u'white', u'contepomi', u'quit', u'bristol'] [u'adopt', u'landmark', u'anti', u'tobacco', u'treati'] [u'extend', u'sar', u'travel', u'warn', u'cover', u'taiwan'] [u'wildcat', u'laker', u'coach'] [u'william', u'armstrong', u'honour', u'laureus'] [u'yacht', u'death', u'prevent', u'coron'] [u'yalgoo', u'desalin', u'plant'] [u'yurvaj', u'follow', u'tendulkar', u'trail', u'yorkshir'] [u'report', u'kill', u'chines', u'blast'] [u'abattoir', u'fund', u'unresolv'] [u'clear', u'hypox', u'train'] [u'safeti', u'risk', u'townsvill'] [u'alcoa', u'signal', u'expans', u'plan'] [u'algeria', u'rescu', u'continu', u'toll', u'hit'] [u'algeria', u'rescu', u'continu', u'death', u'toll', u'grow'] [u'anglican', u'clergi', u'meet', u'abus', u'report'] [u'anglican', u'reverend', u'independ', u'inquiri'] [u'anti', u'campaign', u'welcom', u'moratorium', u'support'] [u'agre', u'develop', u'studi', u'opportun'] [u'appeal', u'launch', u'tornado', u'victim'] [u'appeal', u'board', u'rubbish', u'corn', u'appeal'] [u'archbishop', u'agre', u'disagre'] [u'argentina', u'chile', u'showdown'] [u'armstrong', u'slam', u'cipo', u'tour', u'snub'] [u'aspinal', u'happi', u'meet'] [u'assur', u'offer', u'nativ', u'titl', u'claim'] [u'kill', u'algerian', u'quak'] [u'rule', u'charter', u'compani', u'applaud'] [u'atsic', u'call', u'hold', u'mine', u'australia'] [u'atsic', u'central', u'zone', u'welcom', u'split'] [u'australia', u'take', u'lead', u'west', u'indi'] [u'jen', u'doubl', u'profit'] [u'babi', u'boomer', u'free', u'health', u'sick'] [u'sack', u'schwab'] [u'bali', u'memori', u'plan', u'cooge'] [u'ballestero', u'fin', u'reprimand', u'tour'] [u'bank', u'push', u'ord', u'higher'] [u'blair', u'legal', u'advis', u'doubt', u'iraq', u'plan', u'legal'] [u'blast', u'rock', u'istanbul', u'restaur', u'report'] [u'boat', u'promis', u'kind', u'craft'] [u'brazil', u'face', u'blank', u'weekend', u'club', u'walk'] [u'brazilian', u'consid', u'paulo', u'olymp'] [u'bronco', u'berrigan', u'brother'] [u'bronco', u'berrigan', u'brother'] [u'broom', u'properti', u'price', u'high'] [u'budget', u'jeckyl', u'hyde', u'affair', u'putt', u'say'] [u'bulldog', u'sign', u'sherwin', u'long', u'term', u'deal'] [u'crash', u'spark', u'deeper', u'polic', u'probe'] [u'cathol', u'dioces', u'hop', u'program', u'chang'] [u'celtic', u'coach', u'obrien', u'contract', u'extens'] [u'chelsea', u'agre', u'deal', u'sunderland', u'goalkeep', u'macho'] [u'china', u'record', u'fewer', u'sar', u'infect'] [u'cipollini', u'tour', u'team', u'presid'] [u'cipollini', u'pull', u'giro'] [u'cobb', u'speak', u'drought', u'applic'] [u'commission', u'welcom', u'atsic', u'chang'] [u'communiti', u'await', u'water', u'restrict', u'impact'] [u'costa', u'make', u'rail', u'guard', u'scapegoat', u'union'] [u'council', u'aim', u'entertain', u'centr'] [u'council', u'approv', u'multi', u'million', u'dollar', u'rural'] [u'council', u'hop', u'boost'] [u'council', u'launch', u'roma', u'busi', u'plan'] [u'councillor', u'boost', u'allow'] [u'council', u'monitor', u'land', u'right', u'chang'] [u'court', u'fin', u'builder', u'hous', u'collaps'] [u'court', u'hear', u'magistr', u'associ', u'belliger'] [u'court', u'reject', u'council', u'build', u'demolit'] [u'court', u'decid', u'right', u'dementia'] [u'cwealth', u'loan', u'pay', u'student'] [u'damag', u'seal', u'caus', u'pitstop', u'ferrari'] [u'defenc', u'question', u'murder', u'alleg'] [u'deflat', u'minor', u'risk', u'greenspan'] [u'deivid', u'give', u'cruzeiro', u'stoppag', u'loom'] [u'diego', u'metr', u'chip', u'earn', u'santo', u'libertador', u'draw'] [u'disgrac', u'pharmacist', u'deni', u'registr'] [u'doctor', u'deni', u'alleg'] [u'drought', u'take', u'toll', u'river', u'system'] [u'duncan', u'lift', u'spur', u'antonio', u'seri'] [u'dunn', u'reject', u'blackburn', u'deal'] [u'england', u'boy', u'barbarian', u'match'] [u'euthanasia', u'advoc', u'await'] [u'sorenstam', u'lpga', u'tour'] [u'explos', u'rock', u'yale', u'univers'] [u'famili', u'welcom', u'troop', u'home'] [u'farmer', u'group', u'angri', u'cut'] [u'farmer', u'urg', u'shield', u'rise'] [u'say', u'qaeda', u'attack', u'aim'] [u'feder', u'govt', u'commit', u'central', u'aust', u'ruddock'] [u'feder', u'govt', u'help', u'fund', u'studi', u'poultri', u'plan'] [u'govt', u'reassess', u'applic'] [u'fifth', u'potter', u'book', u'bestsel'] [u'fight', u'continu', u'stop', u'gold'] [u'fisher', u'blockad', u'threat'] [u'fleme', u'take', u'academi', u'coach', u'role'] [u'food', u'forum', u'wrap', u'today'] [u'chief', u'receiv', u'payout'] [u'forum', u'discuss', u'shop', u'levi'] [u'fuel', u'price', u'tip', u'stabilis'] [u'fulli', u'set', u'sight', u'miss', u'titl'] [u'fund', u'help', u'nimbin', u'doctor'] [u'glove', u'parliament'] [u'gould', u'urg', u'blue', u'passion', u'maroon'] [u'govern', u'loggerhead', u'land', u'develop'] [u'govt', u'reissu', u'general', u'travel', u'warn'] [u'govt', u'rule', u'inquiri', u'lockridg', u'camp'] [u'govt', u'reveal', u'plan', u'reef', u'protect'] [u'gympi', u'launch', u'macadamia', u'power', u'plan'] [u'haa', u'pull', u'french', u'open'] [u'health', u'winner', u'budget'] [u'health', u'boost', u'road', u'expens'] [u'health', u'insur', u'agenc', u'tell', u'hard', u'time', u'ahead'] [u'health', u'insur', u'industri', u'profit', u'plung'] [u'heavi', u'delay', u'sydney', u'airport', u'secur', u'breach'] [u'hewitt', u'agassi', u'face', u'fearsom', u'opposit', u'pari'] [u'hewitt', u'french', u'open', u'costa'] [u'hill', u'deni', u'request', u'local', u'base'] [u'hockeyroo', u'coach', u'bell', u'ring', u'chang'] [u'hoggard', u'pass', u'zimbabw', u'test'] [u'hope', u'chang', u'bolster', u'charter', u'boat'] [u'hospit', u'adopt', u'coron', u'recommend'] [u'howard', u'welcom', u'home', u'aviat', u'regiment'] [u'countri', u'mous', u'town', u'mous'] [u'revamp', u'world', u'test', u'championship'] [u'indian', u'strike', u'crippl', u'financi', u'sector'] [u'indonesian', u'court', u'acquit', u'general', u'crime'] [u'indonesian', u'polic', u'arrest', u'member'] [u'inkjet', u'forgeri', u'grow', u'peril', u'banknot', u'printer'] [u'iraq', u'readi', u'resum', u'sale', u'sanction'] [u'iraq', u'resolut', u'mean', u'franc'] [u'isra', u'minist', u'call', u'arafat', u'evict'] [u'jail', u'serial', u'rapist', u'sentenc', u'year'] [u'jakarta', u'send', u'troop', u'aceh'] [u'johansson', u'give', u'qualifi', u'back', u'team', u'world'] [u'johansson', u'slam', u'platini', u'plan', u'shake', u'european'] [u'jone', u'disappoint', u'wallabi', u'behaviour'] [u'judg', u'rule', u'amrozi', u'trial'] [u'kiwi', u'shape', u'final', u'super', u'battl'] [u'lack', u'cancel', u'etsa', u'talk'] [u'lack', u'end', u'power', u'talk'] [u'land', u'clear', u'compo', u'joint', u'fund'] [u'welcom', u'possibil', u'shire', u'council', u'amalgam'] [u'carb', u'diet', u'quicker', u'effect', u'studi'] [u'mackay', u'sugar', u'drop', u'sugar', u'australia'] [u'drown', u'polic', u'pursuit'] [u'jail', u'year', u'flatmat', u'murder'] [u'jail', u'kill', u'parent'] [u'face', u'court', u'stab'] [u'math', u'institut', u'invest', u'local', u'knowledg'] [u'mcewen', u'win', u'giro', u'stage', u'cipollini', u'crash'] [u'mediat', u'meet', u'hold', u'anaesthetist', u'issu'] [u'warn', u'go', u'trial'] [u'minist', u'countri', u'tackl', u'afghan', u'drug'] [u'mobil', u'captain', u'plead', u'guilti', u'yarra', u'pollut'] [u'montgomeri', u'pull', u'prefontain', u'meet'] [u'call', u'princ', u'highway', u'fund'] [u'moroccan', u'author', u'releas', u'detail', u'bomb'] [u'moroccan', u'journalist', u'jail', u'insult', u'king'] [u'motorhom', u'club', u'give', u'reason', u'ralli'] [u'mourhit', u'suspend', u'report'] [u'back', u'migrant', u'boost', u'scheme'] [u'want', u'insur', u'fund', u'pass', u'barley', u'grower'] [u'weigh', u'council', u'merger', u'plan'] [u'murder', u'convict', u'rais', u'child', u'protect', u'question'] [u'film', u'chronicl', u'canberra', u'histori'] [u'zealand', u'test', u'nerv', u'young', u'pakistan'] [u'day', u'weather', u'crucial'] [u'charg', u'hancock', u'inquest'] [u'evid', u'bet', u'sting'] [u'evid', u'bet', u'sting'] [u'injuri', u'report', u'yale', u'blast'] [u'condom', u'compani'] [u'promis', u'iraqi', u'refuge'] [u'defend', u'quash', u'bail'] [u'oneil', u'slam', u'uefa', u'heartbreak'] [u'claim', u'budget', u'fail', u'busi', u'sector'] [u'appoint', u'administr'] [u'parker', u'docker'] [u'philippoussi', u'roddick', u'play', u'wimbledon'] [u'visit', u'asia', u'juli'] [u'parliament', u'mourn', u'loss', u'governor'] [u'polic', u'investig', u'hotel', u'licens', u'death'] [u'polic', u'launch', u'probe', u'death'] [u'polic', u'identifi', u'bodi', u'adelaid', u'river'] [u'port', u'name', u'corn', u'despit', u'suspens'] [u'porto', u'take', u'uefa', u'silver', u'goal', u'thriller'] [u'power', u'boost', u'plan', u'town'] [u'properti', u'valu', u'rise', u'albani'] [u'public', u'prosecutor', u'knock', u'child', u'abus', u'case'] [u'qanta', u'flight', u'schedul', u'secur'] [u'farmer', u'meet', u'govt', u'tree', u'clear', u'deal'] [u'charg', u'ecstasi', u'traffic'] [u'rabobank', u'amp', u'rural', u'lend'] [u'rebel', u'armi', u'clash', u'aceh'] [u'receiv', u'appoint', u'nurs', u'home'] [u'record', u'fine', u'smelli', u'breach'] [u'remot', u'area', u'power', u'spotlight'] [u'report', u'recommend', u'boost', u'safeti', u'measur'] [u'resid', u'happi', u'consult'] [u'spread', u'wing'] [u'rich', u'man', u'fortun', u'fall', u'ibrwi'] [u'road', u'health'] [u'roddick', u'waltz', u'austria', u'costa', u'fall'] [u'ruddock', u'open', u'anti', u'petrol', u'sniff', u'idea'] [u'russian', u'colonel', u'soldier', u'kill', u'chechnya'] [u'church', u'reject', u'drag', u'feet', u'child', u'abus'] [u'african', u'resurfac', u'kidnap', u'ordeal'] [u'govt', u'reject', u'power', u'interconnector', u'decis'] [u'search', u'fail', u'miss', u'woman'] [u'senat', u'want', u'hold', u'irrig', u'scheme'] [u'servic', u'seek', u'clarif', u'singl', u'parent'] [u'iraqi', u'kill', u'firefight', u'troop'] [u'shepherd', u'woolskin', u'staff', u'hop', u'job'] [u'solomon', u'polic', u'arrest', u'australian', u'murder'] [u'sorenstam', u'like', u'cash', u'coloni'] [u'student', u'onlin', u'paper'] [u'student', u'want', u'finish', u'degre', u'churchil', u'campus'] [u'studi', u'consid', u'viticultur', u'potenti'] [u'sunday', u'trade', u'issu', u'settl', u'mayor'] [u'suspect', u'admit', u'bali', u'bomb', u'report'] [u'sydney', u'port', u'handl', u'record', u'number', u'contain'] [u'taiwan', u'face', u'worsen', u'sar', u'outbreak'] [u'talli', u'back', u'brown', u'slap', u'incid'] [u'govt', u'monitor', u'canadian', u'cattl', u'symptom'] [u'green', u'support', u'medicin', u'cannabi'] [u'mine', u'standard', u'scrutini'] [u'critic', u'drug', u'clinic', u'closur'] [u'telstra', u'instal', u'cabl', u'thredbo'] [u'terror', u'concern', u'overst', u'downer'] [u'town', u'hop', u'leas', u'life'] [u'troop', u'deploy', u'success'] [u'truss', u'urg', u'tour', u'reject', u'area'] [u'tuqiri', u'consid', u'home'] [u'tuqiri', u'consid', u'queensland', u'return'] [u'turner', u'get', u'support', u'consent', u'stanc'] [u'umpir', u'act', u'mcgrath', u'clash', u'speed'] [u'pois', u'lift', u'iraq', u'sanction'] [u'court', u'overturn', u'huge', u'tobacco'] [u'end', u'free', u'trade', u'hop'] [u'boost', u'australian', u'militari', u'presenc'] [u'media', u'blitz', u'anger', u'castro'] [u'reassur', u'beef', u'eater'] [u'vinni', u'need', u'rais', u'fund'] [u'govt', u'reject', u'ambit', u'claim', u'alleg'] [u'waqar', u'seal', u'warwickshir', u'switch'] [u'welcom', u'expect', u'campus', u'head'] [u'west', u'tamworth', u'school', u'facil', u'spotlight'] [u'william', u'prais', u'sheedi', u'port', u'essendon', u'clash'] [u'william', u'struggl', u'speed'] [u'woman', u'critic', u'injur', u'crash'] [u'woman', u'stab', u'throat', u'kilda'] [u'wool', u'worker', u'protest', u'condit'] [u'world', u'leader', u'send', u'quak', u'algeria'] [u'wurz', u'give', u'mclaren', u'franc'] [u'year', u'conquer', u'everest'] [u'abbott', u'interven', u'disput'] [u'activist', u'return', u'home', u'indonesian', u'arrest'] [u'follow', u'lead', u'human', u'traffic'] [u'investig', u'continu', u'emerg', u'land', u'probe'] [u'algerian', u'quak', u'toll', u'pass'] [u'alleg', u'siev', u'peopl', u'smuggler', u'arrest', u'sweden'] [u'ancelotti', u'chanc', u'prove', u'point', u'juventus'] [u'angler', u'warn', u'algal', u'bloom', u'threat'] [u'anglican', u'church', u'offer', u'compens', u'abus'] [u'answer', u'seek', u'chief', u'execut', u'departur'] [u'anti', u'terror', u'gather', u'declar', u'success'] [u'aristocrat', u'halt', u'trade'] [u'artist', u'director', u'promis'] [u'atlas', u'group', u'begin', u'capit', u'rais'] [u'auckland', u'tip', u'leav', u'canterburi', u'feel', u'blue'] [u'auditor', u'review', u'bali', u'appeal'] [u'aussi', u'content', u'clark', u'lead', u'wentworth'] [u'beckham', u'injuri', u'overshadow', u'england'] [u'water', u'manag', u'plan', u'unveil'] [u'black', u'cap', u'pakistan', u'final'] [u'blair', u'hail', u'iraqi', u'sanction', u'vote'] [u'blaze', u'tear', u'restaur'] [u'bligh', u'outlin', u'case', u'student', u'place'] [u'brazil', u'soccer', u'strike', u'call'] [u'breach', u'place', u'qanta', u'secur', u'spotlight'] [u'bronco', u'crush', u'bulldog', u'raider', u'roll', u'warrior'] [u'brumbi', u'open', u'miner', u'spring', u'centr'] [u'budget', u'deliv', u'promis', u'academ'] [u'bush', u'declar', u'victori', u'cut'] [u'calder', u'fund', u'fight', u'progress'] [u'chang', u'flight', u'servic'] [u'camera', u'orbit', u'mar', u'snap', u'photo', u'earth'] [u'canada', u'investig', u'sar', u'case'] [u'canberra', u'elect', u'surgeri', u'wait', u'list', u'hit'] [u'canegrow', u'welcom', u'barrier', u'reef', u'pollut', u'review'] [u'cannib', u'alleg', u'bodi'] [u'crash', u'kill', u'west'] [u'cavali', u'pick', u'draft', u'lotteri'] [u'upgrad', u'western', u'deposit'] [u'celtic', u'leap', u'uefa', u'heartbreak', u'tough'] [u'chamber', u'highlight', u'esper', u'busi', u'woe'] [u'chang', u'afoot', u'plan', u'polici'] [u'church', u'employe', u'warn', u'rais', u'suspicion'] [u'claim', u'financi', u'incent', u'need', u'veget'] [u'claim', u'qsia', u'futur', u'despit', u'ballot'] [u'concern', u'air', u'townsvill', u'dengu', u'sit'] [u'concili', u'footbal', u'racial', u'complaint'] [u'confer', u'determin', u'extent', u'wheat', u'virus'] [u'confid', u'chamber', u'readi', u'success'] [u'contract', u'sign', u'defenc'] [u'corbel', u'seek', u'chang', u'nurs', u'work', u'practic'] [u'cosgrov', u'tell', u'student', u'fear', u'terror'] [u'council', u'give', u'store'] [u'council', u'urg', u'think', u'care', u'court', u'case'] [u'cpsu', u'presid', u'die', u'age'] [u'crash', u'leav', u'critic', u'state'] [u'crew', u'contain', u'sydney', u'factori'] [u'crow', u'massi'] [u'custom', u'seiz', u'children', u'snake'] [u'deputi', u'mayor', u'disagre', u'mayor', u'decis'] [u'deschamp', u'slam', u'gallardo', u'lyon', u'close'] [u'disabl', u'group', u'critic', u'ceo', u'rise'] [u'downer', u'applaud', u'lift', u'iraqi', u'sanction'] [u'downer', u'tour', u'iraq'] [u'downturn', u'banana', u'prawn', u'season'] [u'industri', u'unrest', u'soon'] [u'driver', u'jail', u'road', u'rage', u'incid'] [u'elder', u'aliv', u'algerian', u'earthquak'] [u'elder', u'rescu', u'algerian', u'rubbl'] [u'england', u'control', u'lord'] [u'estrada', u'insist', u'face', u'corrupt', u'charg'] [u'execut', u'payout', u'hurt', u'line', u'studi'] [u'famili', u'accus', u'ask', u'case', u'drop'] [u'fear', u'air', u'murray', u'river', u'environment', u'flow'] [u'govt', u'urg', u'releas', u'wheat', u'virus', u'plan'] [u'fingleton', u'break', u'court'] [u'fingleton', u'deni', u'threaten', u'colleagu'] [u'flitcroft', u'commit', u'blackburn'] [u'forc', u'weekend', u'transgressor'] [u'baptist', u'minist', u'jail', u'offenc'] [u'frank', u'announc', u'retir'] [u'freeman', u'oversea', u'sydney'] [u'free', u'tertiari', u'educ', u'math', u'student'] [u'fund', u'cattl', u'scheme'] [u'say', u'hell', u'consid', u'posit'] [u'take', u'weekend', u'consid', u'futur'] [u'take', u'weekend', u'decid', u'futur'] [u'gippsland', u'bushfir', u'victim', u'urg', u'seek'] [u'goldfield', u'industri', u'seek', u'fair', u'tourism'] [u'govt', u'seek', u'assur', u'bali', u'alloc'] [u'govt', u'address', u'doctor', u'insur', u'concern'] [u'govt', u'counter', u'terror', u'divis'] [u'govt', u'widen', u'medic', u'indemn', u'packag'] [u'greenpeac', u'want', u'tuna', u'fish', u'regul', u'toughen'] [u'handl', u'bali', u'appeal', u'fund', u'review'] [u'health', u'staff', u'prepar', u'hospit'] [u'heatwav', u'death', u'toll', u'rise', u'india'] [u'hewitt', u'break', u'moya', u'jinx', u'aussi', u'tumbl'] [u'hewitt', u'hand', u'french', u'open', u'mission', u'imposs'] [u'high', u'unlik', u'import', u'cow', u'chief'] [u'hill', u'reject', u'homeland', u'secur', u'offic'] [u'hollywood', u'legend', u'bid', u'cann', u'glori'] [u'hope', u'survivor', u'fade', u'quak', u'tear', u'algeria'] [u'hospit', u'bank', u'move', u'rais', u'concern'] [u'hotel', u'give', u'safeti', u'upgrad', u'deadlin'] [u'hull', u'higher', u'educ', u'stanc'] [u'human', u'tragedi', u'worri', u'tobacco', u'farmer'] [u'hume', u'council', u'ban', u'pork', u'function'] [u'hume', u'council', u'barrel', u'pork'] [u'immigr', u'dept', u'accus', u'overreact'] [u'india', u'launch', u'commonwealth', u'game'] [u'indigen', u'hous', u'improv', u'architectur', u'professor'] [u'injur', u'foley', u'irish', u'tour'] [u'park', u'airport', u'plan'] [u'investor', u'confid', u'boost', u'share', u'price'] [u'irrig', u'scheme', u'overhaul', u'finish', u'budget'] [u'isra', u'armi', u'dynamit', u'home', u'suicid', u'bomber'] [u'isra', u'woman', u'hurt', u'gaza', u'bomb', u'attack'] [u'israel', u'seiz', u'arm', u'boat', u'lebanon'] [u'januari', u'earmark', u'start', u'ethanol', u'plant', u'work'] [u'jone', u'domin', u'cairn', u'swim', u'meet'] [u'judg', u'criticis', u'jarmyn', u'lawyer'] [u'judg', u'say', u'rape', u'claim', u'imposs', u'prove'] [u'kidd', u'lead', u'net', u'surg', u'final'] [u'kidd', u'put', u'punchless', u'piston', u'brink', u'elimin'] [u'koizumi', u'bush', u'hold', u'talk', u'north', u'korea'] [u'krajicek', u'kournikova', u'french', u'open'] [u'kucera', u'speak', u'cwealth', u'health', u'agreement'] [u'labor', u'demand', u'govt', u'probe', u'airport', u'secur', u'breach'] [u'land', u'council', u'defend', u'mine', u'negoti', u'role'] [u'lara', u'plea', u'windi', u'stop', u'australia'] [u'larg', u'croc', u'remov', u'darwin', u'harbour'] [u'surviv', u'fight', u'atalanta', u'reggina'] [u'latham', u'sign', u'red'] [u'latham', u'return', u'ballymor'] [u'leverkusen', u'fight', u'surviv', u'amid', u'accus'] [u'life', u'expect', u'decid', u'jail', u'sentenc'] [u'livestock', u'transport', u'protest', u'diesel', u'excis'] [u'malthous', u'back', u'lethal', u'draft', u'chang'] [u'malthous', u'call', u'draft', u'chang'] [u'get', u'life', u'polic', u'offic', u'murder'] [u'guilti', u'death', u'threat', u'senior', u'polic'] [u'jail', u'poki', u'spend', u'spree'] [u'jail', u'beat', u'year'] [u'market', u'end', u'week', u'strong'] [u'mccartney', u'get', u'russian', u'diploma'] [u'miner', u'plan', u'lake', u'grace', u'gold', u'drill'] [u'minist', u'agre', u'impos', u'plastic', u'code'] [u'minist', u'hear', u'road', u'fund', u'concern'] [u'money', u'issu', u'insist', u'oleari'] [u'montgomeri', u'expect', u'return', u'time', u'trial'] [u'montgomeri', u'pull', u'track', u'meet'] [u'moscow', u'race', u'summer', u'olymp'] [u'urg', u'highway', u'bypass', u'fatal', u'crash'] [u'want', u'rage', u'cage', u'move'] [u'murdoch', u'say', u'satellit', u'deal', u'boost'] [u'nathan', u'grey', u'sign', u'waratah'] [u'nation', u'water', u'industri', u'flaw', u'csiro', u'expert'] [u'netbal', u'sink', u'south', u'african'] [u'newcastl', u'second', u'feder', u'court', u'magistr'] [u'code', u'practic', u'launch', u'tuna', u'fishermen'] [u'walcha', u'council'] [u'travel', u'warn', u'issu', u'african', u'countri'] [u'nolan', u'kelli', u'paint', u'alic'] [u'govt', u'examin', u'human', u'traffic', u'industri'] [u'nswru', u'set', u'dun', u'punch', u'hear', u'date'] [u'opal', u'boomer', u'cancel', u'china', u'tour'] [u'oppn', u'call', u'knowl', u'head', u'meningococc'] [u'oppn', u'say', u'budget', u'alloc', u'cruel', u'hoax'] [u'meet', u'alleg', u'taliban', u'fighter', u'father'] [u'orang', u'belli', u'parrot', u'prove', u'elus'] [u'organis', u'tell', u'greek', u'hurri', u'ticket'] [u'oyster', u'breakthrough', u'promis', u'farmer', u'benefit'] [u'suspend', u'health', u'council'] [u'pari', u'love', u'match', u'cancel'] [u'plant', u'upgrad', u'aim', u'reduc', u'smell'] [u'plaqu', u'commemor', u'broom', u'bomb'] [u'criticis', u'payout', u'boss'] [u'rule', u'townsvill', u'militari', u'base'] [u'support', u'medicin', u'cannabi', u'trial'] [u'polic', u'hunt', u'pair', u'abduct'] [u'polic', u'plan', u'attend', u'crick', u'memori'] [u'polic', u'search', u'suspect', u'coupl', u'ambush'] [u'polic', u'seek', u'help', u'miss', u'teen'] [u'polic', u'probe', u'chase', u'death'] [u'polic', u'rethink', u'miss', u'woman', u'case'] [u'polic', u'urg', u'parent', u'report', u'assault'] [u'polic', u'road', u'crash', u'victim'] [u'port', u'sink', u'bomber'] [u'port', u'submit', u'write', u'complaint', u'corn'] [u'powel', u'remain', u'defiant', u'exist', u'wmds'] [u'protest', u'imped', u'work'] [u'rann', u'foreshadow', u'fund', u'boost', u'art'] [u'rape', u'claim', u'drop'] [u'real', u'sociedad', u'look', u'lucki', u'malaga'] [u'red', u'sign', u'latham'] [u'remot', u'student', u'gain', u'access', u'digit', u'school'] [u'resid', u'await', u'emiss', u'report'] [u'plan', u'break', u'hill', u'adelaid', u'boost'] [u'rise', u'star', u'jam', u'sign', u'lucrat', u'sponsorship', u'deal'] [u'rockhampton', u'doctor', u'face', u'retrial', u'assault'] [u'roddick', u'roll', u'austria'] [u'rossi', u'join', u'safeti', u'commiss'] [u'rubin', u'eas', u'madrid', u'open', u'semi', u'final'] [u'samudra', u'trial', u'begin', u'june'] [u'scheme', u'distanc', u'educ', u'focus'] [u'schumach', u'honour', u'itali'] [u'second', u'person', u'face', u'drug', u'charg'] [u'sensat', u'second', u'test', u'farewel', u'adelaid', u'pair'] [u'seve', u'pull', u'championship'] [u'slaveri', u'probe', u'welcom', u'welfar', u'group'] [u'sherpa', u'make', u'record', u'everest', u'ascent'] [u'shire', u'want', u'concess', u'water', u'plan', u'go', u'ahead'] [u'simoni', u'win', u'zoncolan', u'extend', u'giro', u'lead'] [u'soldier', u'face', u'drug', u'raid'] [u'sorenstam', u'impress', u'coloni'] [u'sorenstam', u'impress', u'event'] [u'strike', u'affect', u'council', u'outdoor', u'servic'] [u'studi', u'consid', u'hunter', u'river', u'sustain'] [u'stuppl', u'surpris', u'round', u'leader', u'corn'] [u'swan', u'river', u'face', u'worst', u'fish', u'kill', u'phenomenon'] [u'budget', u'criticis', u'underspend'] [u'teacher', u'honour', u'effort'] [u'teen', u'supervis', u'order', u'act'] [u'ten', u'thousand', u'acehnes', u'flee', u'home'] [u'townsvill', u'gear', u'greek', u'fest'] [u'content', u'rule', u'stay', u'free', u'trade', u'talk'] [u'dead', u'tear', u'apart', u'melbourn'] [u'impos', u'sanction', u'china'] [u'vagana', u'remain', u'bulldog'] [u'doctor', u'accept', u'medic', u'indemn', u'packag'] [u'firm', u'iraq', u'rebuild'] [u'warn', u'chop', u'land', u'clear'] [u'waugh', u'win', u'waratah', u'award'] [u'wheat', u'virus', u'confirm', u'numer', u'sit'] [u'wheat', u'virus', u'outsid', u'plant', u'breed', u'program'] [u'lift', u'sar', u'alert', u'research', u'claim'] [u'wine', u'group', u'unhappi', u'cancel', u'etsa', u'talk'] [u'woodsid', u'aid', u'green', u'project'] [u'workcov', u'appeal', u'firework', u'licenc', u'applic'] [u'strata', u'chief', u'appeal', u'sharehold'] [u'yass', u'jail', u'child', u'manslaught'] [u'youth', u'scrambl', u'giant', u'fight'] [u'coach', u'angri', u'protest', u'invad', u'lord', u'outfield'] [u'democraci', u'activist', u'jail', u'burma'] [u'russian', u'troop', u'kill', u'chechen', u'rebel', u'attack'] [u'welcom', u'decis'] [u'actew', u'chief', u'retir'] [u'power', u'bill', u'rise', u'industri', u'deregul'] [u'adelaid', u'festiv', u'await', u'major', u'sponsor'] [u'afghan', u'stage', u'anti', u'protest', u'kabul'] [u'plan', u'museum', u'melbourn'] [u'age', u'care', u'home', u'sale', u'forc', u'resid'] [u'escap', u'prosecut', u'flaw', u'bill'] [u'algerian', u'quak', u'toll', u'tip', u'reach'] [u'ambros', u'take', u'provision', u'pole'] [u'annan', u'announc', u'special', u'repres', u'iraq'] [u'aussi', u'prepar', u'crunch', u'match'] [u'aust', u'back', u'indonesia', u'aceh', u'assault'] [u'aust', u'wait', u'ponder', u'futur'] [u'bali', u'fundrais', u'walk', u'near', u'final'] [u'beckham', u'week'] [u'bilbao', u'midfield', u'gurpegi', u'win', u'drug', u'appeal'] [u'blue', u'secur', u'super', u'titl'] [u'kill', u'cairn', u'railway', u'cross', u'crash'] [u'brazil', u'prepar', u'join', u'small', u'space', u'club'] [u'bronco', u'shut', u'dog', u'raider', u'roll', u'warrior'] [u'bronco', u'shut', u'bulldog', u'raider', u'roll', u'warrior'] [u'brown', u'urg', u'govt', u'plastic', u'levi'] [u'bruce', u'bid', u'bring', u'dunn', u'andrew'] [u'butcher', u'put', u'zimbabw', u'foot'] [u'tallest', u'flower', u'smell', u'sour'] [u'trauma', u'care', u'fund', u'region'] [u'canada', u'report', u'sar', u'death'] [u'canberra', u'veal', u'pull', u'deal'] [u'castro', u'announc', u'fourth', u'televis', u'station', u'cuba'] [u'castronev', u'favorit', u'spoiler', u'lurk'] [u'celtic', u'boss', u'stand', u'critic', u'uefa', u'refere'] [u'champion', u'leagu', u'fever', u'grip', u'itali'] [u'chile', u'meet', u'czech', u'team', u'final'] [u'china', u'report', u'dozen', u'sar', u'case'] [u'clark', u'retain', u'wentworth', u'lead'] [u'clean', u'aust', u'put', u'shop', u'onus', u'retail'] [u'compani', u'director', u'jail', u'dishonest', u'behaviour'] [u'confid', u'boon', u'hous', u'boom'] [u'consum', u'affair', u'probe', u'launceston', u'cinema'] [u'crean', u'say', u'rudd', u'avoid', u'leadership', u'talk'] [u'critic', u'upset', u'gun', u'gambl', u'school'] [u'darwin', u'welcom', u'home', u'timor', u'troop'] [u'dividend', u'cut', u'spur', u'share', u'gain'] [u'drug', u'death', u'probe', u'spread', u'interst'] [u'eastwood', u'hint', u'retir'] [u'economi', u'slow', u'japan', u'space', u'program'] [u'eriksson', u'defend', u'player', u'mandela'] [u'everton', u'yobo', u'deal'] [u'ferdinand', u'injuri', u'give', u'england', u'scare'] [u'govt', u'mishandl', u'pipelin', u'sale', u'treasur'] [u'hurt', u'spanish', u'post', u'offic', u'blast'] [u'french', u'minist', u'meet', u'arafat', u'despit'] [u'french', u'flight', u'downsiz', u'club'] [u'challeng', u'church', u'find'] [u'girl', u'age', u'climb', u'mount', u'everest'] [u'govt', u'accus', u'put', u'afghan', u'risk'] [u'health', u'school', u'design', u'websit', u'boost', u'profil'] [u'heatwav', u'kill', u'southern', u'india'] [u'helicopt', u'servic', u'region'] [u'hoggard', u'leav', u'zimbabw', u'face', u'uphil', u'battl'] [u'hop', u'altern', u'health', u'plan', u'rebuild'] [u'iraqi', u'elect', u'council', u'strife', u'tear', u'kirkuk'] [u'isra', u'troop', u'kill', u'palestinian', u'near', u'gaza', u'israel'] [u'isra', u'troop', u'raid', u'tulkarem', u'west', u'bank'] [u'jenolan', u'cave', u'access', u'road', u'close'] [u'kimmorley', u'lead', u'shark', u'home', u'gasp', u'penalti'] [u'kinnear', u'leav', u'luton'] [u'lib', u'mayor', u'candid', u'pledg', u'hour', u'secur'] [u'lion', u'look', u'princ', u'park', u'blue'] [u'lion', u'smash', u'carlton'] [u'matthew', u'kane', u'share', u'lead'] [u'mcewen', u'quit', u'giro'] [u'mcnarn', u'take', u'command', u'middl', u'east', u'forc'] [u'memori', u'plan', u'cpsu', u'chief', u'reynold'] [u'militari', u'investig', u'report', u'civilian'] [u'minist', u'disgust', u'school', u'robberi'] [u'minist', u'cleaner'] [u'minist', u'resign', u'rock', u'indian', u'govt'] [u'nelson', u'defend', u'fund', u'level', u'elit', u'privat'] [u'newcastl', u'agre', u'year', u'deal', u'bowyer'] [u'newman', u'continu', u'secur', u'patrol', u'push'] [u'plagiar', u'scandal', u'hit', u'time'] [u'kill', u'ugandan', u'rebel', u'attack'] [u'korea', u'deni', u'blackmail', u'nuke', u'crisi'] [u'govt', u'reject', u'claim', u'need', u'meet'] [u'oppn', u'rais', u'prospect'] [u'polic', u'seiz', u'million', u'cannabi', u'hous'] [u'child', u'porn', u'charg'] [u'rebuild', u'iraq', u'administr'] [u'palestinian', u'welcom', u'sharon', u'accept'] [u'paramed', u'station', u'build', u'sorel'] [u'patterson', u'open', u'remot', u'kintor', u'health', u'clinic'] [u'perth', u'council', u'oppos', u'deregul', u'trade'] [u'petacchi', u'pummel', u'peloton', u'claim', u'stage'] [u'philippin', u'say', u'rebel', u'kill', u'past', u'week'] [u'polic', u'appeal', u'inform', u'teen', u'abduct'] [u'polic', u'investig', u'cairn', u'murder', u'suicid'] [u'port', u'bash', u'bomber'] [u'rain', u'reliev', u'drought', u'govt'] [u'rampag', u'lion', u'smash', u'carlton'] [u'cross', u'offici', u'greec', u'guilti'] [u'restor', u'order', u'downer', u'urg', u'iraq', u'administr'] [u'roddick', u'face', u'davydenko', u'austrian', u'final'] [u'rooney', u'join', u'england', u'squad'] [u'rossi', u'take', u'provision', u'pole'] [u'rubin', u'race', u'madrid', u'final'] [u'rugbi', u'leagu', u'mourn', u'kangaroo', u'mcmahon'] [u'russian', u'lesbian', u'tip', u'eurovis'] [u'give', u'film', u'industri', u'high', u'prioriti'] [u'saint', u'perform', u'malthous'] [u'salvat', u'armi', u'come', u'knock'] [u'sar', u'slug', u'asian', u'industri'] [u'score', u'join', u'stage', u'bali', u'fundrais', u'walk'] [u'search', u'resum', u'miss', u'coolum', u'woman'] [u'shoot', u'russian', u'elect', u'offic', u'kill'] [u'siena', u'edg', u'closer', u'seri'] [u'sorenstam', u'miss', u'coloni'] [u'sorenstam', u'miss', u'texa'] [u'sorenstam', u'person', u'quest', u'prove', u'emot', u'test'] [u'nix', u'falkirk', u'promot'] [u'spur', u'stun', u'maverick'] [u'state', u'reluct', u'follow', u'lead', u'recycl'] [u'strasbourg', u'sign', u'coach', u'kombouar'] [u'super', u'final', u'help', u'decid', u'spot', u'mitchel'] [u'survey', u'ask', u'canberran', u'rebuild'] [u'govt', u'urg', u'land', u'clear'] [u'timor', u'manag', u'head', u'iraq'] [u'tour', u'director', u'give', u'cipollini', u'glimmer', u'hope'] [u'tripl', u'treat', u'mill', u'cairn'] [u'arrest', u'perth', u'chase'] [u'dead', u'separ', u'accid'] [u'accept', u'bianchi', u'registr'] [u'uday', u'lion', u'releas', u'africa'] [u'fortifi', u'hous', u'parliament'] [u'ullrich', u'tour', u'franc', u'approv'] [u'unit', u'end', u'season', u'style'] [u'warn', u'aceh', u'humanitarian', u'crisi'] [u'congress', u'pass', u'cut'] [u'deni', u'uday', u'negoti', u'surrend'] [u'japan', u'unit', u'north', u'korea', u'nuke'] [u'stevedor', u'firm', u'assum', u'control', u'iraqi', u'port'] [u'troop', u'strike', u'gold', u'iraq'] [u'warn', u'truck', u'bomb', u'threat'] [u'veal', u'turn', u'wnba'] [u'venezuela', u'govern', u'foe', u'agre', u'referendum', u'pact'] [u'volunt', u'help', u'fenc', u'ravag', u'farm'] [u'voss', u'clear', u'play'] [u'wallabi', u'edmond', u'relish', u'catalan', u'challeng'] [u'watchdog', u'say', u'media', u'curb', u'aceh', u'journalist'] [u'weapon', u'inspector', u'enter', u'iraq'] [u'widow', u'alleg', u'cover', u'wife', u'death'] [u'woman', u'suffer', u'epilept', u'seizur', u'inmigr'] [u'aceh', u'offens', u'month', u'analyst'] [u'destroy', u'illeg', u'firework'] [u'adelaid', u'test', u'terrorist', u'attack', u'respons'] [u'alcohol', u'link', u'fisherman', u'drown'] [u'algeria', u'quak', u'toll', u'surpass'] [u'defend', u'hike', u'doctor', u'salari'] [u'ambros', u'take', u'supercar'] [u'anderson', u'deliv', u'star', u'debut'] [u'anger', u'erupt', u'quak', u'respons'] [u'asia', u'afford', u'aceh', u'independ', u'downer'] [u'asic', u'exoner', u'insid', u'trade'] [u'asic', u'gather', u'team', u'probe'] [u'atalanta', u'reggina', u'releg', u'play'] [u'aussi', u'roger', u'take', u'tour', u'belgium', u'lead'] [u'aussi', u'captur', u'seri'] [u'australia', u'captur', u'seri'] [u'australia', u'complet', u'clean', u'sweep'] [u'battl', u'bunni', u'sink', u'panther', u'extend', u'streak'] [u'footag', u'dead', u'troop'] [u'benefactor', u'save', u'student', u'virgin', u'auction'] [u'bilater', u'talk', u'north', u'korea', u'tell'] [u'bombay', u'airport', u'hostag', u'taker', u'surrend'] [u'bournemouth', u'playoff', u'final', u'return'] [u'serious', u'injur', u'attack'] [u'britain', u'germani', u'open', u'saudi', u'embassi'] [u'buckingham', u'palac', u'comment', u'resign'] [u'build', u'industri', u'welcom', u'certif', u'chang'] [u'butcher', u'star', u'england', u'overwhelm', u'zimbabw'] [u'canadian', u'farm', u'quarantin', u'scare'] [u'chile', u'claim', u'world', u'team'] [u'china', u'record', u'sar', u'death'] [u'china', u'sar', u'hop'] [u'crowd', u'control', u'identifi', u'major', u'problem', u'mock'] [u'darwinit', u'join', u'sorri', u'heal', u'walk'] [u'democrat', u'reunion', u'asylum', u'seeker'] [u'doctor', u'wage', u'increas', u'leech', u'hospit', u'fund'] [u'dragila', u'edg', u'russian', u'rival'] [u'drug', u'council', u'back', u'cannabi', u'trial'] [u'educ', u'plan', u'rais', u'cost', u'barrier', u'labor'] [u'explos', u'rock', u'north', u'aceh', u'town'] [u'deni', u'beckham', u'deal'] [u'famili', u'moot', u'replac', u'queen', u'birthday'] [u'farina', u'elia', u'claim', u'strasbourg', u'titl'] [u'fava', u'tip', u'wallabi', u'bolter'] [u'festiv', u'success', u'prove', u'aust', u'literari', u'hunger'] [u'firefight', u'prais', u'instinct', u'hero'] [u'fisherman', u'miss', u'accid'] [u'arrest', u'trespass', u'incid'] [u'flotilla', u'take', u'anti', u'nuclear', u'protest'] [u'victorian', u'governor', u'mcgarvi', u'die', u'age'] [u'freeman', u'run', u'disappoint', u'fifth'] [u'fruit', u'vege', u'beat', u'heart', u'diseas'] [u'fund', u'boost', u'alic', u'katherin', u'art', u'festiv'] [u'right', u'decis', u'beatti'] [u'quit'] [u'resign', u'deep', u'regret'] [u'gibernau', u'upstag', u'rossi', u'man'] [u'govt', u'reduc', u'prison', u'overcrowd'] [u'govt', u'consid', u'doubl', u'dissolut'] [u'hayden'] [u'hec', u'mean', u'test', u'step', u'right', u'direct', u'union'] [u'helicopt', u'rescu', u'ormeau', u'accid'] [u'hockeyroo', u'kiwi', u'olymp', u'race'] [u'hollingworth', u'resign'] [u'hostag', u'hold', u'bombay', u'airport', u'guard', u'shoot'] [u'hundr', u'tip', u'mark', u'nation', u'sorri'] [u'immelman', u'take', u'shoot', u'wentworth', u'lead'] [u'indemn', u'law', u'thing', u'wors'] [u'indonesia', u'tighten', u'grip', u'aceh'] [u'investig', u'underway', u'hobart', u'chapel', u'blaze'] [u'iraqi', u'worker', u'wag'] [u'iraq', u'ramp', u'product'] [u'isra', u'cabinet', u'approv', u'peac', u'blueprint'] [u'isra', u'cabinet', u'discuss', u'sharon', u'peac', u'plan'] [u'isra', u'raid', u'refuge', u'camp', u'sharon', u'back', u'peac'] [u'john', u'move', u'eas', u'perceiv', u'rift', u'gould'] [u'kangaroo', u'upset', u'swan', u'hawthorn', u'crash', u'adelaid'] [u'kidd', u'star', u'net', u'march', u'final'] [u'kimmorley', u'upstag', u'john'] [u'lament', u'lyon', u'crown', u'champion'] [u'dog', u'bite', u'flasher'] [u'gasp', u'penalti', u'sink', u'eel', u'cowboy', u'edg'] [u'leverkusen', u'safe', u'stuttgart', u'champion', u'leagu'] [u'loxton', u'irrig', u'upgrad', u'save'] [u'injur', u'storey', u'fall'] [u'serious', u'injur', u'warwick', u'accid'] [u'matthew', u'pull', u'ahead', u'kane'] [u'mccartney', u'rock', u'squar'] [u'metcard', u'problem', u'soon', u'resolv', u'govt'] [u'milic', u'fire', u'olymp', u'grand', u'final'] [u'mill', u'fire', u'cairn'] [u'minor', u'fire', u'damag', u'school'] [u'modest', u'return', u'brace', u'tough', u'year'] [u'morocco', u'arrest', u'casablanca', u'blast'] [u'motherwel', u'celebr', u'releg', u'repriev', u'style'] [u'netbal', u'complet', u'clean', u'sweep'] [u'appoint', u'week'] [u'presid', u'support', u'fail', u'save', u'race'] [u'sar', u'case', u'setback', u'toronto'] [u'bottomless', u'pocket', u'govt', u'warn'] [u'plan', u'withdraw', u'bangladesh', u'test', u'status'] [u'reason', u'howard', u'sack', u'rudd'] [u'unveil', u'budget', u'initi'] [u'hop', u'wont', u'link', u'trade', u'polit'] [u'offici', u'weigh', u'option', u'wheat', u'virus'] [u'palestinian', u'kill', u'gaza', u'border'] [u'panel', u'examin', u'aceh', u'civilian', u'death'] [u'peac', u'road', u'trap', u'hama', u'leader'] [u'perri', u'charg', u'clear', u'texa'] [u'philippin', u'ferri', u'collis', u'kill', u'miss'] [u'pie', u'sink', u'saint', u'eagl', u'toppl', u'tiger'] [u'quiet', u'bow', u'pressur'] [u'polic', u'assoc', u'downplay', u'budget', u'woe'] [u'policeman', u'bodi', u'return', u'home', u'mountain'] [u'politician', u'church', u'leader', u'react', u'resign'] [u'project', u'aim', u'save', u'world', u'rarest', u'tortois'] [u'real', u'madrid', u'pace', u'deportivo', u'lose'] [u'rescu', u'effort', u'continu', u'algeria'] [u'retir', u'teacher', u'recal'] [u'roddick', u'triumph', u'austria'] [u'rossi', u'pole', u'french'] [u'rubin', u'reign', u'spain'] [u'rudd', u'deni', u'ignit', u'leadership', u'tension'] [u'anglican', u'assur', u'church', u'concern', u'abus'] [u'salvo', u'target', u'appeal'] [u'search', u'miss', u'resum'] [u'abus', u'concern', u'voic', u'congreg'] [u'sieg', u'end', u'melbourn', u'north', u'west'] [u'simoni', u'steal', u'time', u'garzelli'] [u'south', u'korea', u'hold', u'nkorea', u'polici', u'talk'] [u'lanka', u'focus', u'health', u'flood', u'reced'] [u'stoner', u'start'] [u'susi', u'power', u'half', u'marathon', u'histori'] [u'sydney', u'firefight', u'discov', u'massiv', u'cannabi', u'crop'] [u'sydney', u'squad', u'target', u'handgun'] [u'tiwi', u'youngster', u'learn', u'bush', u'tucker', u'skill'] [u'toulous', u'claim', u'european', u'crown'] [u'trade', u'hour', u'competit', u'small', u'grocer'] [u'turk', u'belli', u'danc', u'flop', u'eurovis'] [u'polic', u'hunt', u'qaeda', u'train', u'suicid', u'bomber'] [u'unbeaten', u'australia', u'motiv', u'pont'] [u'unit', u'state', u'host', u'women', u'world', u'report'] [u'restor', u'loot', u'iraqi', u'museum'] [u'venezualan', u'demonstr', u'turn', u'violent'] [u'woman', u'kill', u'crash', u'western', u'sydney'] [u'boost', u'plan', u'port', u'hedland'] [u'abbott', u'condemn', u'redund', u'test', u'case'] [u'blitz', u'court', u'bonanza', u'offic'] [u'burn', u'off', u'reduc', u'bushfir', u'fuel', u'load'] [u'adelaid', u'archbishop', u'open', u'abus', u'inquiri'] [u'adelaid', u'tent', u'highlight', u'steal', u'generat'] [u'agoni', u'andretti', u'indi', u'swansong'] [u'agreement', u'aim', u'boost', u'mental', u'health', u'servic'] [u'airport', u'secur', u'check', u'drop'] [u'ajax', u'dutch', u'titl', u'race', u'go'] [u'black', u'cap'] [u'amnesti', u'accus', u'indonesian', u'armi', u'abus'] [u'amrozi', u'come', u'face', u'face', u'victim'] [u'angler', u'recov', u'boat', u'ordeal'] [u'anti', u'group', u'want', u'tighter', u'rule'] [u'argentina', u'presid', u'swear'] [u'argentinian', u'presid', u'make', u'fight', u'poverti'] [u'aristocrat', u'delay', u'market', u'announc'] [u'asic', u'confront', u'share', u'buy', u'scheme'] [u'injur', u'japan', u'earthquak'] [u'aussi', u'roger', u'win', u'tour', u'belgium'] [u'aussi', u'win', u'prestigi', u'cann', u'prize'] [u'australian', u'urg', u'acknowledg', u'indigen'] [u'australia', u'record', u'match', u'streak'] [u'author', u'defend', u'quota', u'deduct', u'bluefin', u'tuna'] [u'avellino', u'futur', u'remain', u'doubt'] [u'award', u'export', u'spotlight'] [u'bacon', u'speak', u'plan'] [u'bali', u'suspect', u'appear', u'bashir', u'trial'] [u'barbarian', u'outclass', u'inexperienc', u'england'] [u'bear', u'form', u'wynnum'] [u'bird', u'attack', u'german', u'woman', u'recal', u'hitchcock'] [u'blend', u'youth', u'experi', u'netbal', u'world'] [u'book', u'detail', u'effort', u'chang', u'judici'] [u'braveheart', u'take', u'posit', u'controversi'] [u'braveheart', u'welcom', u'appeal', u'tougher', u'sentenc'] [u'brazil', u'ferran', u'win', u'indianapoli'] [u'british', u'navi', u'investig', u'collis'] [u'brit', u'disband', u'basra', u'council'] [u'bruton', u'leav', u'cannon', u'king'] [u'builder', u'meet', u'insur', u'woe'] [u'medicar', u'fund', u'boost'] [u'call', u'unit', u'poverti'] [u'campaign', u'aim', u'boost', u'age', u'care', u'nurs'] [u'campaign', u'aim', u'boost', u'disabl', u'tourist', u'number'] [u'canada', u'report', u'sar', u'death'] [u'cancer', u'detect', u'unit', u'unveil'] [u'canegrow', u'unhappi', u'decis'] [u'crash', u'death', u'spark', u'tribal', u'reveng'] [u'cardiff', u'reach', u'divis', u'extra', u'time', u'goal'] [u'cashier', u'say', u'tourist', u'fell', u'grind', u'blast'] [u'china', u'execut', u'brother', u'hell'] [u'china', u'arriv', u'russia'] [u'china', u'presid', u'begin', u'oversea', u'tour'] [u'coff', u'harbour', u'lose', u'lifesav'] [u'collaps', u'hangar', u'remain', u'dismantl'] [u'commiss', u'rule', u'redund'] [u'concern', u'air', u'loom', u'water'] [u'convoy', u'leav', u'aceh', u'collect', u'food', u'suppli'] [u'council', u'fast', u'track', u'tanneri', u'sale'] [u'councillor', u'budget'] [u'council', u'want', u'water', u'safeti', u'camera', u'answer'] [u'cowboy', u'coach', u'prais', u'sheppard', u'game'] [u'cowboy', u'man', u'coach', u'prais', u'half', u'back', u'game'] [u'crean', u'ask'] [u'croc', u'skipper', u'aussi'] [u'cunderdin', u'school', u'revamp', u'open'] [u'dairi', u'farmer', u'reappli', u'extens'] [u'debat', u'erupt', u'theatr', u'fund'] [u'decis', u'rivkin', u'expect', u'thursday'] [u'democrat', u'push', u'govt', u'reconcili'] [u'design', u'rule', u'delay', u'hous', u'construct', u'builder'] [u'differ', u'factor', u'lead', u'lower', u'prawn', u'catch'] [u'dixon', u'book', u'strike'] [u'breeder', u'fight', u'right', u'dock', u'tail'] [u'drought', u'fail', u'dampen', u'bush', u'generos'] [u'effort', u'boost', u'palliat', u'care'] [u'embattl', u'hawk', u'keep', u'profil'] [u'energi', u'centr', u'spring', u'life'] [u'everest', u'record', u'break'] [u'fairfax', u'sign', u'deal'] [u'fear', u'air', u'forest', u'mine', u'plan'] [u'firefight', u'escap', u'truck', u'rollov', u'uninjur'] [u'fischer', u'tightlip', u'specul'] [u'send', u'flamengo', u'crash', u'brazil'] [u'foreign', u'nation', u'face', u'court', u'drug', u'charg'] [u'senat', u'speak', u'rivkin'] [u'teacher', u'jail', u'child', u'offenc'] [u'foxi', u'schlager', u'win', u'rare', u'tabl', u'tenni', u'gold'] [u'fund', u'shortag', u'claim', u'abc', u'digit', u'channel'] [u'gallen', u'cop', u'week', u'suspens'] [u'gallen', u'face', u'long', u'stint', u'sidelin'] [u'garrido', u'win', u'wentworth', u'play'] [u'govt', u'empow', u'communiti', u'fight', u'petrol', u'sniff'] [u'govt', u'welcom', u'lift', u'iraq', u'sanction'] [u'grape', u'harvest', u'look', u'good'] [u'grewcock', u'punch', u'cost', u'england', u'place'] [u'health', u'school', u'tackl', u'diabet', u'indigen'] [u'hill', u'accept', u'respons'] [u'hodgman', u'back', u'resign'] [u'hollingworth', u'resign', u'unexpect'] [u'hope', u'lose', u'algerian', u'quak', u'survivor'] [u'horticultur', u'cane', u'sector', u'miss', u'drought', u'relief'] [u'howard', u'address', u'parliament', u'resign'] [u'howard', u'defend', u'decis'] [u'hundr', u'gather', u'mark', u'sorri'] [u'hunter', u'rain', u'wont', u'break', u'record'] [u'indonesia', u'step', u'aceh', u'campaign', u'rebel'] [u'infect', u'grain', u'unlik', u'destroy'] [u'inkster', u'captur', u'career', u'lpga', u'titl'] [u'inquiri', u'team', u'tour', u'bushfir', u'area'] [u'inquiri', u'studi', u'impact', u'labour', u'hire'] [u'investa', u'takeov', u'properti', u'trust'] [u'iranian', u'refuge', u'support', u'protest'] [u'hear', u'state', u'wage', u'case'] [u'king', u'brother', u'expect', u'hear'] [u'kiwirrkarra', u'kill', u'rollov'] [u'labor', u'suggest', u'advertis'] [u'land', u'agreement', u'consid', u'reconcili', u'advanc'] [u'larkham', u'compet', u'french', u'open'] [u'lead', u'french', u'open', u'men', u'titl', u'contend'] [u'lib', u'focus', u'central', u'victoria'] [u'lomu', u'leav', u'fit', u'doubt'] [u'macfarlan', u'unhappi', u'ethanol', u'project', u'stanc'] [u'face', u'court', u'melbourn', u'sieg'] [u'get', u'year', u'jail', u'assault'] [u'face', u'court', u'attempt', u'arm', u'robberi', u'charg'] [u'face', u'court', u'stab', u'charg'] [u'face', u'polic', u'assault', u'charg'] [u'mass', u'test', u'murder', u'investig'] [u'matriarch', u'redgrav', u'theatr', u'clan', u'die', u'age'] [u'matthew', u'say', u'limit', u'interchang', u'worth', u'debat'] [u'matthew', u'give', u'saint', u'altern', u'jumper'] [u'mcdonald', u'mcmanus', u'charg', u'wrestl'] [u'meet', u'focus', u'patient', u'health', u'safeti'] [u'meet', u'address', u'concern'] [u'memori', u'honour', u'rugbi', u'player'] [u'call', u'femal'] [u'motorcycl', u'crash', u'put', u'hospit'] [u'motorcyclist', u'die', u'near', u'pambula'] [u'mourner', u'farewel', u'solomon', u'missionari'] [u'back', u'council', u'hospit', u'decis'] [u'oppos', u'plan', u'wipe', u'donut', u'council'] [u'nation', u'surf', u'lifesav', u'titl', u'leav', u'gold', u'coast'] [u'appoint', u'week'] [u'week', u'bacon'] [u'korea', u'threaten', u'south', u'disast'] [u'opinion', u'divid', u'murder', u'case', u'test'] [u'outback', u'challeng', u'prove', u'lucrat'] [u'paradorn', u'slide', u'french', u'open'] [u'parliament', u'debat', u'censur'] [u'patterson', u'talk', u'indigen', u'health', u'spend'] [u'pell', u'urg', u'clear', u'separ', u'church', u'state'] [u'perri', u'score', u'easi'] [u'person', u'stab', u'possibl', u'retribut', u'fatal'] [u'philippin', u'presid', u'annoy', u'ferri', u'collis'] [u'pioneer', u'settlement', u'open', u'hour'] [u'plane', u'crash', u'turkey', u'kill'] [u'plan', u'cheaper', u'rural', u'health', u'educ', u'post'] [u'accept', u'resign'] [u'accept', u'hollingworth', u'resign'] [u'polic', u'civilian', u'staff', u'strike', u'resourc'] [u'polic', u'happi', u'driver', u'oper'] [u'polic', u'hunt', u'escap', u'prison'] [u'polic', u'hunt', u'attack'] [u'polic', u'injur', u'alburi', u'brawl'] [u'polic', u'investig', u'fatal', u'cabramatta', u'crash'] [u'polic', u'murder', u'hunt', u'includ', u'mass', u'test'] [u'polic', u'probe', u'kowanyama', u'fatal', u'stab'] [u'port', u'collingwood', u'clash', u'colour'] [u'port', u'hedland', u'resid', u'swim'] [u'prevent', u'council', u'tackl', u'crime'] [u'prison', u'leav', u'civil', u'right', u'govt'] [u'troop', u'disarm', u'iraq'] [u'public', u'urg', u'minimis', u'dengu', u'risk'] [u'push', u'boost', u'indigen', u'defenc', u'cadet', u'number'] [u'coalit', u'hop', u'pick', u'coast', u'seat'] [u'quak', u'victim', u'surviv', u'day', u'rubbl', u'radio'] [u'qualifi', u'support', u'alcoa', u'expans'] [u'ranger', u'scottish', u'titl'] [u'rhode', u'blame', u'lack', u'confid', u'bulldog', u'loss'] [u'roadwork', u'concern', u'surround', u'wind', u'farm', u'plan'] [u'roff', u'latham', u'share', u'super', u'player', u'award'] [u'ronaldinho', u'reveal', u'passion', u'unit'] [u'consid', u'medicin', u'cannabi'] [u'secur', u'barrier', u'erect', u'parliament'] [u'serena', u'confid', u'ahead', u'french', u'defenc'] [u'shire', u'resid', u'prepar', u'case', u'merger'] [u'sid', u'foundat', u'director', u'pass', u'away'] [u'simoni', u'widen', u'giro', u'lead', u'gonzalez', u'win', u'stage'] [u'sociedad', u'malaga'] [u'sorenstam', u'perform', u'show', u'extent', u'gender'] [u'reject', u'greenpeac', u'shale', u'claim'] [u'spur', u'brink', u'final'] [u'staff', u'shortag', u'endang', u'age', u'resid', u'survey'] [u'state', u'poll', u'moral', u'booster', u'schroeder'] [u'steadi', u'start', u'australian', u'market'] [u'hope', u'lifesav', u'event', u'gold', u'coast'] [u'steal', u'generat', u'benefit', u'organis'] [u'storm', u'leav', u'damag'] [u'suicid', u'messag', u'highlight', u'visa', u'problem'] [u'support', u'nation', u'wage', u'campaign', u'timber'] [u'sydney', u'motorist', u'undet', u'toll', u'survey'] [u'teacher', u'welcom', u'plan', u'investig', u'truanci'] [u'tender', u'call', u'highway', u'upgrad'] [u'terror', u'exercis', u'find', u'panic', u'biggest', u'concern'] [u'thai', u'prison', u'enjoy', u'honeymoon', u'hut'] [u'tibetan', u'envoy', u'beij'] [u'tongan', u'newspap', u'declar', u'victori', u'king'] [u'tornado', u'victim', u'suffer', u'stress'] [u'tourism', u'industri', u'futur', u'spotlight'] [u'trainer', u'lose', u'hors', u'contamin', u'fee'] [u'tree', u'clear', u'compo'] [u'tribut', u'flow', u'mcgarvi'] [u'trio', u'rap', u'indigen', u'cultur'] [u'truck', u'salvag', u'oper', u'block', u'road'] [u'turkey', u'offer', u'host', u'middl', u'east', u'peac', u'summit'] [u'ukrain', u'order', u'probe', u'crash', u'plane', u'turkey'] [u'ullrich', u'race', u'tour', u'team', u'bianchi'] [u'unconfirm', u'sight', u'miss', u'teen'] [u'union', u'oppos', u'shop', u'hour', u'deregul'] [u'command', u'say', u'saddam', u'arrest'] [u'plan', u'middl', u'east', u'summit'] [u'soldier', u'kill', u'iraq', u'ambush'] [u'soldier', u'kill', u'iraq', u'blast'] [u'tell', u'iran', u'hand', u'qaeda', u'suspect', u'report'] [u'sant', u'exploit', u'eleph', u'scoop', u'cann', u'pool'] [u'govt', u'request', u'audit', u'correct', u'centr'] [u'polic', u'face', u'drug', u'charg'] [u'polic', u'search', u'abductor'] [u'violent', u'game', u'microscop'] [u'wallabi', u'newcom'] [u'pastoralist', u'demand', u'compo', u'land', u'clear'] [u'west', u'indi', u'end', u'australia', u'streak'] [u'wheat', u'virus', u'erad', u'consider'] [u'didnt', u'bureaucrat', u'cross', u'road', u'farmer', u'ask'] [u'wife', u'tell', u'rivkin', u'anger', u'guilti', u'find'] [u'wildcard', u'open', u'aussi', u'assault', u'french', u'open'] [u'william', u'win', u'wheeler'] [u'windi', u'stop', u'aussi', u'streak'] [u'wit', u'evid', u'amrozi'] [u'woman', u'centr', u'immigr', u'raid', u'vow'] [u'woman', u'miss', u'despit', u'search'] [u'women', u'french', u'open', u'seed'] [u'terror', u'kit', u'return', u'govt', u'committe', u'tell'] [u'mental', u'health', u'boost', u'welcom'] [u'abattoir', u'weather', u'tight', u'condit'] [u'chief', u'defend', u'digit', u'ax'] [u'aborigin', u'media', u'group', u'welcom', u'film', u'offic'] [u'accc', u'review', u'cole', u'shell', u'allianc'] [u'accid', u'spark', u'road', u'upgrad', u'call'] [u'wont', u'investig', u'game', u'throw', u'claim'] [u'agassi', u'revel', u'frustrat', u'pretend'] [u'cite', u'hezbollah', u'risk', u'push', u'wider', u'power'] [u'alarm', u'fish', u'kill', u'swan', u'river'] [u'alic', u'spring', u'consult', u'tradit', u'owner'] [u'alleg', u'bomber', u'leav', u'bali', u'bashir', u'trial'] [u'ord', u'close', u'lower'] [u'all', u'woman', u'drop', u'babi'] [u'exec', u'call', u'consult', u'curfew'] [u'say', u'investor', u'announc', u'wont', u'affect', u'staff'] [u'analyst', u'blame', u'govt', u'digit', u'demis'] [u'applic', u'second', u'wagga', u'brothel'] [u'aussi', u'dollar', u'hit', u'height'] [u'australian', u'coach', u'leav', u'french', u'club', u'brive'] [u'australia', u'qaeda', u'target', u'expert'] [u'beatti', u'prais', u'feder', u'govt', u'environ', u'effort'] [u'blackout', u'caus', u'investig'] [u'boost', u'plan', u'central', u'tourism'] [u'kill', u'middl', u'east', u'clash', u'wit'] [u'brack', u'critic', u'opposit', u'baseless'] [u'brack', u'support', u'choos'] [u'brazilian', u'coach', u'resign', u'paysandu', u'goia'] [u'british', u'backpack', u'murder', u'committ', u'continu'] [u'broader', u'approach', u'need', u'tackl', u'road', u'woe', u'chamber'] [u'break', u'hill', u'posit', u'zinc', u'demand'] [u'brown', u'resign', u'philadelphia', u'coach'] [u'plan', u'elimin'] [u'canada', u'sar', u'list'] [u'carrey', u'rule', u'almighti', u'offic'] [u'champion', u'leagu', u'final', u'dream', u'come', u'true'] [u'children', u'critic', u'injur', u'hous'] [u'china', u'arrest', u'terror'] [u'clean', u'continu', u'japan', u'quak'] [u'clean', u'toxic', u'spill'] [u'cockbain', u'captain', u'australia'] [u'cole', u'myer', u'join', u'fuel', u'busi'] [u'compani', u'back', u'improv', u'age', u'care', u'nurs'] [u'corbel', u'tight', u'lip', u'garden', u'citi', u'plan'] [u'corrupt', u'judg', u'jail', u'life', u'china'] [u'councillor', u'lament', u'lifesav', u'event', u'loss'] [u'council', u'lose', u'plan', u'scrap', u'divis'] [u'council', u'reject', u'rate', u'claim'] [u'council', u'rethink', u'cultur', u'precinct', u'cost'] [u'council', u'promis', u'fight', u'hors', u'race'] [u'council', u'host', u'sawmil', u'meet'] [u'countri', u'publican', u'face', u'murder', u'committ', u'hear'] [u'court', u'hear', u'bail', u'caus', u'fatal', u'accid'] [u'cwealth', u'urg', u'tie', u'indonesia', u'militari'] [u'dixon', u'suspend', u'crucial', u'kilda', u'clash'] [u'databas', u'major', u'defici', u'review'] [u'dollar', u'economist'] [u'downer', u'ask', u'tamil', u'rejoin', u'peac', u'talk'] [u'dramat', u'rise', u'femal', u'lung', u'cancer', u'victim'] [u'drug', u'squad', u'investig', u'continu', u'polic'] [u'earthquak', u'hit', u'indonesia'] [u'elev', u'marsh', u'tassi', u'fit', u'reward'] [u'energex', u'make', u'deal', u'cleaner', u'fuel'] [u'recommend', u'clear'] [u'publish', u'constitut', u'draft'] [u'extra', u'fund', u'juvenil', u'bail', u'scheme'] [u'farmer', u'urg', u'quick', u'lodg', u'drought', u'applic'] [u'feder', u'polic', u'probe', u'woomera', u'claim'] [u'feder', u'express', u'derail', u'round'] [u'fierc', u'clash', u'report', u'aceh'] [u'budget', u'lift', u'boost', u'control', u'burn'] [u'champion', u'pierc', u'crumbl', u'dust'] [u'housem', u'evict', u'corretja'] [u'foster', u'carer', u'seek', u'western'] [u'futur', u'raymond', u'terrac', u'court', u'review'] [u'gallop', u'urg', u'feder', u'labor', u'focus', u'health'] [u'consent', u'pass'] [u'gippsland', u'dairi', u'farmer', u'lose', u'cow', u'toxic'] [u'govt', u'criticis', u'plan', u'excis'] [u'govt', u'criticis', u'age', u'care', u'prioriti'] [u'govt', u'support', u'tail', u'dock'] [u'grant', u'festiv', u'darwin', u'choir'] [u'greek', u'lawyer', u'accus', u'blair', u'straw', u'crime'] [u'green', u'group', u'welcom', u'shark', u'protect', u'review'] [u'group', u'lobbi', u'indian', u'ocean', u'drive', u'work'] [u'hawthorn', u'dixon', u'face', u'strike', u'charg'] [u'hewitt', u'clijster', u'costa', u'surviv'] [u'hewitt', u'clijster', u'open', u'match'] [u'hewitt', u'enter', u'french', u'open', u'fray'] [u'highway', u'campaign', u'head', u'canberra'] [u'hollingworth', u'explain', u'decis', u'tomorrow'] [u'home', u'favourit', u'mauresmo', u'jump', u'open', u'hurdl'] [u'honey', u'launder', u'get', u'bonnet', u'keeper'] [u'howard', u'request', u'green', u'juli'] [u'icpa', u'welcom', u'postag', u'chang'] [u'india', u'pakistan', u'resum', u'hockey', u'rivalri'] [u'injur', u'petacchi', u'beat', u'pain', u'giro', u'stage'] [u'inquiri', u'chief', u'criticis', u'rail', u'author'] [u'instant', u'planet', u'wait', u'million', u'year'] [u'pass', u'rise', u'worker'] [u'irrig', u'face', u'uncertainti'] [u'irrig', u'action', u'water', u'share', u'plan'] [u'japanes', u'firm', u'continu', u'green', u'support'] [u'juri', u'consid', u'fingleton', u'verdict'] [u'king', u'brother', u'face', u'court', u'firm', u'collaps'] [u'knowl', u'deni', u'meningococc', u'diseas', u'cover'] [u'day', u'green', u'group'] [u'lobster', u'fishermen', u'reject', u'user', u'plan'] [u'long', u'reconcili', u'huggin'] [u'lovelorn', u'brit', u'road'] [u'macdougal', u'ban', u'train'] [u'mackenroth', u'predict', u'increas', u'worth'] [u'major', u'counter', u'terror', u'exercis', u'begin', u'sydney'] [u'jail', u'tourist', u'rape'] [u'mayn', u'sue', u'million'] [u'mcdougal', u'face', u'train', u'contract', u'talk'] [u'mcmanus', u'macdonald', u'fin'] [u'mcmanus', u'mcdonald', u'fin'] [u'meet', u'discuss', u'central', u'water', u'issu'] [u'middl', u'east', u'peac', u'meet', u'postpon'] [u'miner', u'reject', u'pollut', u'claim'] [u'minist', u'deni', u'request', u'hick', u'meet'] [u'minist', u'plasma', u'cost', u'telstra'] [u'miss', u'woman', u'search', u'focus', u'mountainsid'] [u'mock', u'terror', u'activ', u'stag', u'canberra'] [u'morocco', u'bomb', u'suspect', u'charg', u'casablanca'] [u'mountain', u'home', u'everest', u'rescu'] [u'nativ', u'titl', u'claim', u'unit', u'noongar'] [u'netbal', u'australia', u'rule', u'avellino'] [u'netbal', u'upset', u'avellino', u'rule'] [u'centr', u'offer', u'youth', u'cooler', u'sport', u'venu'] [u'newmont', u'gold', u'dig', u'eyr', u'peninsula'] [u'proof', u'link', u'north', u'korea', u'heroin', u'haul'] [u'recollect', u'mishandl', u'claim'] [u'review', u'protect', u'grey', u'nurs', u'shark'] [u'oppn', u'fear', u'budget', u'packag'] [u'scrap', u'rego', u'levi', u'budget'] [u'creditor', u'fund', u'administr'] [u'oppn', u'question', u'telstra', u'ceo', u'claus'] [u'pakistan', u'provinc', u'decid', u'sharia'] [u'pakistan', u'say', u'rule', u'constant'] [u'palaszczuk', u'push', u'nation', u'tail', u'dock'] [u'paradorn', u'piti', u'pari'] [u'philippoussi', u'win', u'larkham', u'pratt'] [u'say', u'hick', u'charg'] [u'cellar', u'cost'] [u'unawar', u'claim', u'appoint'] [u'consid', u'refuge', u'law'] [u'sedit', u'charg', u'resurfac'] [u'polak', u'receiv', u'rise', u'star'] [u'polic', u'associ', u'welcom', u'recruit', u'fund'] [u'polic', u'civilian', u'staff', u'strike', u'spread'] [u'polic', u'lead', u'tweed', u'murder'] [u'polic', u'happi', u'mock', u'terror', u'respons'] [u'polic', u'offic', u'remand', u'drug', u'traffic'] [u'polic', u'probe', u'chlorin', u'bomb', u'attack'] [u'polic', u'sampl', u'murder', u'case'] [u'polic', u'sampl', u'help', u'solv'] [u'privat', u'fund', u'seek', u'jetti', u'plan'] [u'profit', u'warn', u'hit', u'aristocrat', u'share'] [u'properti', u'group', u'dismiss', u'market', u'crash', u'fear'] [u'public', u'urg', u'remain', u'water', u'vigil'] [u'qanta', u'close', u'launceston', u'retail', u'outlet'] [u'question', u'nick', u'whitlam', u'dishonesti', u'convict'] [u'dub', u'homeless', u'state'] [u'governor', u'make', u'townsvill', u'trip'] [u'govt', u'expand', u'hardwood', u'scheme'] [u'qlds', u'boss', u'vow', u'tackl', u'medic', u'indemn'] [u'quak', u'hit', u'asia', u'dead'] [u'rare', u'leopard', u'spot', u'china'] [u'refurbish', u'meatwork', u'reopen'] [u'report', u'warn', u'dementia', u'epidem'] [u'repriev', u'possibl', u'bush', u'race', u'club'] [u'face', u'bushfir'] [u'road', u'summit', u'week', u'jordan', u'report'] [u'runaway', u'swine', u'shoot', u'attend', u'care'] [u'russia', u'china', u'warn', u'north', u'korea', u'nuclear', u'weapon'] [u'russia', u'finish', u'build', u'iranian', u'nuclear', u'power'] [u'ryan', u'defend', u'perform'] [u'saddam', u'insid', u'iraq', u'time'] [u'farmer', u'cheaper', u'electr'] [u'safeti', u'concern', u'close', u'road', u'cave'] [u'govt', u'reject', u'theatr', u'claim'] [u'saint', u'capuano', u'march', u'order'] [u'saint', u'sack', u'capuano'] [u'court', u'drug', u'charg'] [u'sawmil', u'want', u'stockpil', u'releas'] [u'scheme', u'aim', u'job', u'boost'] [u'scottish', u'investig', u'sutton', u'outburst'] [u'scud', u'come', u'agassi', u'serena'] [u'self', u'represent', u'review', u'high', u'court'] [u'serena', u'costa', u'pressur', u'pari'] [u'serena', u'fail', u'meet', u'lofti', u'goal'] [u'shear', u'outback', u'plan', u'spend', u'boost'] [u'shop', u'centr', u'plan', u'agenda'] [u'slack', u'comfort', u'heenan', u'progress'] [u'save', u'strand', u'tourist'] [u'sole', u'crew', u'survivor', u'face', u'waterfal', u'inquiri'] [u'sole', u'crew', u'survivor', u'evid', u'train', u'crash'] [u'solicitor', u'win', u'misconduct', u'appeal'] [u'solomon', u'lawyer', u'warn', u'threat'] [u'spain', u'repatri', u'crash', u'victim'] [u'stamp', u'duti', u'chang', u'shocker', u'say', u'opposit'] [u'strike', u'expect', u'crippl', u'flight', u'schedul'] [u'stronger', u'dollar', u'signal', u'gold', u'concern'] [u'strong', u'age', u'care', u'plan'] [u'suicid', u'bomb', u'unjustifi', u'say', u'lead', u'muslim'] [u'taiwan', u'sar', u'outbreak', u'show', u'sign', u'slow'] [u'talk', u'restart', u'northlak', u'develop'] [u'tassi', u'lobbi', u'meander'] [u'territori', u'question', u'age', u'care', u'place'] [u'thai', u'king', u'receiv', u'rain', u'make', u'patent'] [u'thomson', u'say', u'tour', u'lack', u'excit'] [u'thrill', u'panoho', u'surpris', u'select'] [u'miner', u'job', u'limbo'] [u'tszyu', u'tackl', u'weight', u'divis'] [u'tuqiri', u'dual', u'intern'] [u'union', u'clash', u'abbott', u'vendetta'] [u'unit', u'state', u'rush', u'readi', u'women', u'world'] [u'euthanasia', u'advoc', u'attend', u'crick', u'memori'] [u'soldier', u'kill', u'iraq', u'guerrilla', u'attack'] [u'valu', u'hobart', u'build', u'approv'] [u'meet', u'plan', u'zone', u'chang'] [u'busi', u'confid', u'take', u'batter', u'survey'] [u'virus', u'concern', u'cancel', u'trial', u'wheat', u'plant'] [u'virus', u'concern', u'halt', u'trial', u'wheat', u'plant'] [u'govt', u'urg', u'allow', u'ludlow'] [u'wale', u'wyatt', u'australia', u'tour'] [u'watch', u'tougher', u'play', u'sidelin', u'warn'] [u'water', u'board', u'consid', u'levi', u'refus'] [u'weekend', u'exercis', u'good', u'heart'] [u'wheat', u'virus', u'farm'] [u'whitlam', u'begin', u'appeal'] [u'wolv', u'final', u'reach', u'premier', u'leagu'] [u'woman', u'court', u'fatal', u'accid'] [u'writer', u'pick', u'cloudstreet', u'best', u'aussi', u'novel'] [u'zombi', u'owner', u'prepar', u'address', u'public'] [u'money', u'troubl', u'wont', u'impact', u'athlet'] [u'abattoir', u'make', u'goat', u'process', u'request'] [u'ask', u'investig', u'coverag'] [u'probe', u'bias', u'claim'] [u'scrap', u'morocco', u'tour'] [u'govt', u'tabl', u'plan', u'rule'] [u'help', u'bushfir', u'recoveri', u'work'] [u'introduc', u'tort', u'reform', u'packag'] [u'aftershock', u'creat', u'panic', u'algeria'] [u'agreement', u'boost', u'indigen', u'opportun'] [u'jazeera', u'chief', u'sack', u'follow', u'claim'] [u'alleg', u'bali', u'bomber', u'unawar', u'activ', u'court'] [u'alleg', u'mastermind', u'saudi', u'attack', u'report'] [u'alleg', u'peopl', u'smuggler', u'appear', u'court'] [u'italian', u'final', u'serv', u'tactic', u'masterclass'] [u'ord', u'pick', u'oversea', u'market', u'ralli'] [u'alston', u'accus', u'anti', u'slant'] [u'alston', u'attempt', u'intimid', u'labor', u'say'] [u'amnesti', u'criticis', u'australia', u'human', u'right', u'record'] [u'share', u'drop', u'record'] [u'ancelotti', u'hit', u'critic'] [u'anderson', u'accus', u'commit', u'transport'] [u'anula', u'armi', u'exercis', u'polic'] [u'asbesto', u'wont', u'delay', u'hall', u'work'] [u'asio', u'probe', u'immigr', u'background'] [u'asprilla', u'chilean', u'gunshot', u'controversi'] [u'atapattu', u'stay', u'captain', u'windi', u'dayer'] [u'atsb', u'probe', u'fatal', u'train', u'crash'] [u'australia', u'vow', u'unpreced', u'olymp', u'drug', u'test'] [u'bali', u'bomb', u'suspect', u'admit', u'close', u'tie', u'lade'] [u'bali', u'bomb', u'suspect', u'arriv', u'testifi', u'bashir'] [u'bali', u'wit', u'describ', u'horrif', u'scene'] [u'beatti', u'accus', u'hypocrisi', u'darci', u'case'] [u'beatti', u'refus', u'smear', u'campaign'] [u'ride', u'minnelli', u'perform', u'iraq', u'benefit'] [u'take', u'union', u'stop', u'work', u'meet'] [u'chang', u'afoot', u'surfer', u'paradis'] [u'effort', u'address', u'bendigo', u'tornado', u'impact'] [u'bishop', u'anglican', u'church', u'split'] [u'blackburn', u'reject', u'birmingham', u'dunn'] [u'blair', u'visit', u'iraq', u'thank', u'british', u'troop'] [u'blake', u'killer', u'brazil', u'sentenc'] [u'stepfath'] [u'brisban', u'council', u'close', u'bakeri'] [u'bushfir', u'affect', u'busi', u'extra', u'fund'] [u'bushfir', u'affect', u'busi', u'fund'] [u'busi', u'survey', u'highlight', u'posit', u'growth'] [u'help', u'save', u'schooli'] [u'region', u'appoint'] [u'canberran', u'urg', u'think', u'hard', u'bushfir'] [u'carr', u'sceptic', u'alleg'] [u'chamber', u'confid', u'sustain', u'defenc', u'spend'] [u'chines', u'provinc', u'ban', u'anim', u'trade', u'sar'] [u'claim', u'diabet', u'type', u'reach', u'epidem'] [u'clark', u'leav', u'yorkshir', u'rejoin', u'western', u'australia'] [u'cole', u'myer', u'deal', u'over', u'ambiti', u'wooli', u'chief'] [u'colour', u'concern', u'delay', u'orang', u'export'] [u'committ', u'proceed', u'adjourn', u'stuttl', u'case'] [u'compani', u'dark', u'blackout', u'caus'] [u'condobolin', u'eventu'] [u'coron', u'recommend', u'gambl', u'measur'] [u'council', u'seek', u'inform'] [u'court', u'hear', u'multipl', u'weapon', u'murder'] [u'crean', u'push', u'elector', u'reform'] [u'crew', u'work', u'clean', u'fish', u'kill', u'perth'] [u'crown', u'leas', u'committe', u'hop', u'finalis', u'report'] [u'crow', u'hop', u'return', u'injur', u'player'] [u'darwin', u'test', u'venu', u'receiv', u'bless'] [u'defenc', u'leav', u'budget', u'think'] [u'democrat', u'want', u'child', u'abus', u'inquiri'] [u'depart', u'plan', u'reloc', u'asylum', u'seeker'] [u'dept', u'deal', u'traffic', u'issu', u'offici'] [u'diabet', u'risk', u'diseas', u'professor'] [u'disabl', u'skier', u'cross', u'bass', u'strait'] [u'disori', u'hunter', u'properti'] [u'test', u'finish', u'murder', u'investig'] [u'dokic', u'consid', u'return', u'australian', u'nation'] [u'downer', u'urg', u'iran', u'tackl', u'qaeda', u'member'] [u'seek', u'time', u'prepar', u'heroin', u'haul', u'charg'] [u'drought', u'affect', u'hors', u'donat'] [u'eastman', u'win', u'right', u'judici', u'inquiri'] [u'england', u'coach', u'woodward', u'unveil', u'wilkinson', u'cover'] [u'english', u'trio', u'suspend', u'drug'] [u'errat', u'venus', u'charg', u'second', u'round'] [u'fear', u'heritag', u'list', u'derail', u'develop'] [u'govt', u'make', u'age', u'care', u'alloc'] [u'ferguson', u'set', u'year', u'deadlin', u'champion'] [u'fieri', u'debat', u'visa', u'bribe', u'claim'] [u'fingleton', u'trial', u'end', u'hang', u'juri'] [u'champion', u'chang', u'bid', u'emot', u'farewel'] [u'champ', u'sele', u'exit', u'french', u'open'] [u'forum', u'discuss', u'chamber', u'futur'] [u'arrest', u'raid', u'link', u'motorcycl'] [u'finalist', u'champion', u'leagu', u'star', u'team'] [u'pipelin', u'worker', u'return', u'south', u'east'] [u'geldof', u'criticis', u'pathet', u'ethiopia'] [u'goondiwindi', u'bear', u'player', u'rugbi', u'world'] [u'govt', u'begin', u'phase', u'hydro', u'tasmania', u'dividend'] [u'govt', u'consid', u'separ', u'fish', u'law'] [u'govt', u'give', u'green', u'light', u'xstrata'] [u'govt', u'introduc', u'medicar'] [u'govt', u'warn', u'travel', u'yemen'] [u'graincorp', u'post', u'diminish', u'profit'] [u'group', u'hop', u'publish', u'mental', u'health', u'book'] [u'group', u'lobbi', u'walkway', u'reopen'] [u'group', u'sue', u'cult', u'claim'] [u'henderson', u'ireland', u'australia', u'tour'] [u'henman', u'long', u'green', u'grass', u'home'] [u'high', u'dust', u'read', u'spark', u'action'] [u'high', u'jobless', u'rate', u'spark', u'creation'] [u'hollingworth', u'apologis', u'nation'] [u'hollingworth', u'tell', u'nation', u'mistak'] [u'hous', u'program', u'unveil', u'cape', u'communiti'] [u'dementia', u'link', u'wont', u'chang', u'tgas', u'advic'] [u'human', u'icebreak', u'rescu', u'north', u'pole'] [u'illawarra', u'hous', u'price', u'fall'] [u'incat', u'chief', u'say', u'pentagon', u'interest', u'cat'] [u'indigen', u'voic', u'seek', u'address', u'justic', u'woe'] [u'inquiri', u'tell', u'waterfal', u'train', u'driver'] [u'iran', u'accus', u'terror', u'doubl', u'standard'] [u'iraq', u'destroy', u'weapon'] [u'ironman', u'champ', u'back', u'event'] [u'isra', u'minnow', u'ramat', u'book', u'uefa', u'berth'] [u'itali', u'grip', u'soccer', u'mania'] [u'jordan', u'host', u'middl', u'east', u'peac', u'summit'] [u'juventus', u'love', u'loath'] [u'kalgoorli', u'see', u'race', u'relat', u'leader'] [u'krige', u'captain', u'springbok', u'world'] [u'labor', u'air', u'levi', u'concern'] [u'labor', u'want', u'packag', u'industri'] [u'institut', u'recommend', u'coupl', u'adopt', u'right'] [u'lectur', u'want', u'region', u'medic', u'school'] [u'lippi', u'keep', u'milan', u'guess'] [u'lippi', u'juve', u'ralli'] [u'malthous', u'suicid', u'warn', u'boss'] [u'face', u'robberi', u'charg', u'get', u'condit', u'bail'] [u'stand', u'trial', u'doubl', u'murder'] [u'mar', u'explor', u'robot', u'launch', u'postpon'] [u'mass', u'grave', u'unearth', u'basra'] [u'mav', u'beat', u'spur', u'climb', u'seri'] [u'mcguir', u'angri', u'port', u'blow'] [u'mean', u'test', u'univers', u'plan', u'spark', u'govt'] [u'approv', u'rais', u'forest', u'question'] [u'minist', u'unfaz', u'airport', u'claim'] [u'mobil', u'guilti', u'yarra', u'petrol', u'spill'] [u'mourner', u'farewel', u'union', u'presid'] [u'moya', u'philippoussi', u'clash'] [u'highlight', u'burn', u'concern'] [u'goal', u'boost', u'hockey', u'facil'] [u'want', u'industri', u'rethink', u'minor', u'crime'] [u'nation', u'galleri', u'director', u'front', u'estim'] [u'newli', u'davenport', u'get', u'prioriti', u'straight'] [u'rail', u'station', u'welcom', u'visitor'] [u'boss', u'gallop', u'rule', u'gold', u'coast', u'outfit'] [u'honour', u'socceroo', u'coach', u'thomson'] [u'govt', u'investig', u'fake', u'degre'] [u'properti', u'market', u'strong', u'despit', u'slow', u'price'] [u'budget', u'appal', u'tourism', u'oppn'] [u'govt', u'deni', u'superannu', u'dodg'] [u'olympian', u'face', u'dope', u'test', u'blitz'] [u'fifth', u'aust', u'popul', u'bear', u'oversea'] [u'kill', u'wound', u'colombian', u'bomb', u'blast'] [u'call', u'independ', u'scrutini', u'year', u'budget'] [u'pakistan', u'includ', u'shoaib', u'drop', u'razzaq', u'england'] [u'palestinian', u'meet', u'sharon', u'tomorrow'] [u'parliament', u'chang', u'tenanc', u'databas', u'law'] [u'parol', u'board', u'reject', u'murder', u'deport'] [u'perliya', u'fin', u'blast', u'equip'] [u'applaud', u'middl', u'east', u'peac', u'progress'] [u'defend', u'night', u'hotel'] [u'stay', u'clear', u'aceh', u'conflict'] [u'polic', u'wit', u'attack'] [u'polic', u'chief', u'stand', u'readi', u'investig'] [u'polic', u'arrest', u'riverland', u'raid'] [u'polic', u'renew', u'plea', u'help', u'miss', u'woman'] [u'polic', u'tri', u'identifi', u'bodi', u'necropoli'] [u'polic', u'urg', u'driver', u'follow', u'speed', u'limit'] [u'power', u'quak', u'aftershock', u'algeria'] [u'premier', u'confid', u'magnesium', u'project'] [u'public', u'cooper', u'seek', u'croc'] [u'tenant', u'union', u'prais', u'databas', u'law'] [u'queen', u'accept', u'hollingworth', u'resign'] [u'racv', u'welcom', u'cheaper', u'fuel', u'plan'] [u'ratepay', u'face', u'rate', u'rise'] [u'ratepay', u'face', u'rate', u'rise'] [u'renault', u'abandon', u'radic', u'engin'] [u'research', u'develop', u'resist', u'plastic'] [u'review', u'consid', u'oyster', u'waterway', u'relationship'] [u'road', u'reopen', u'fatal', u'crash'] [u'ronaldinho', u'ronaldo', u'rivaldo'] [u'rule', u'spark', u'spate', u'migrat', u'appeal'] [u'russian', u'citi', u'award', u'unit', u'festiv', u'babi'] [u'rwandan', u'support', u'propos', u'constitut'] [u'elect', u'presid'] [u'govt', u'boost', u'murray', u'fund'] [u'govt', u'scrap', u'crime', u'prosecut', u'limit'] [u'samuel', u'appoint', u'act', u'accc', u'chief'] [u'schumach', u'readi', u'roll', u'monaco'] [u'seagul', u'look', u'secur', u'lead'] [u'fund', u'mean', u'fundrais', u'repriev'] [u'smith', u'turn', u'dump', u'klusen'] [u'stockland', u'bid', u'diversifi'] [u'steal', u'cylind', u'contain', u'mustard'] [u'summit', u'discuss', u'water', u'issu'] [u'summit', u'highlight', u'network', u'opportun'] [u'survey', u'predict', u'good', u'darl', u'down', u'busi', u'growth'] [u'swim', u'spot', u'water', u'test'] [u'tafe', u'chang', u'spark', u'concern'] [u'tamworth', u'council', u'move', u'ahead', u'takeov'] [u'tanner', u'rule', u'challeng', u'crean'] [u'fall', u'line', u'state', u'wipe'] [u'tasmanian', u'join', u'danish', u'royal', u'famili'] [u'teenag', u'forc', u'perform', u'court', u'tell'] [u'telstra', u'valu', u'overst', u'senat', u'committe'] [u'thailand', u'singl', u'unmarri', u'women', u'contest'] [u'euro', u'stadium', u'portug'] [u'fear', u'dead', u'everest', u'crash'] [u'timber', u'coup', u'face', u'audit'] [u'reopen', u'week', u'shutdown'] [u'tourism', u'growth', u'come', u'industri', u'partnership'] [u'tour', u'romandi', u'rider', u'perez', u'fail', u'drug', u'test'] [u'tower', u'post', u'half', u'year', u'loss'] [u'dead', u'everest', u'helicopt', u'crash'] [u'soldier', u'gulf', u'syndrom'] [u'uncertainti', u'kerang', u'year', u'festiv'] [u'underdog', u'capriati', u'readi', u'bite'] [u'union', u'air', u'pine', u'secur', u'concern'] [u'union', u'group', u'open', u'bundaberg', u'offic'] [u'union', u'threaten', u'electrolux', u'industri', u'woe'] [u'visi', u'cop', u'fine', u'releas', u'odour'] [u'voluntari', u'euthanasia', u'support', u'group', u'launch'] [u'warrnambool', u'await', u'whale', u'migrat'] [u'water', u'trade', u'logic', u'minist'] [u'gain', u'greater', u'warn', u'power'] [u'wilkinson', u'vote', u'english', u'player', u'year'] [u'wit', u'grant', u'immun', u'waterfal', u'inquiri'] [u'work', u'continu', u'site', u'despit', u'safeti', u'concern'] [u'xstrata', u'make', u'offer', u'sharehold'] [u'yarrowlumla', u'oppos', u'amalgam', u'plan'] [u'yorta', u'yorta', u'peopl', u'upset', u'river', u'cross'] [u'fund', u'safe', u'despit', u'critic', u'alston'] [u'show', u'labor', u'bias', u'downer'] [u'mazen', u'confid', u'hama', u'ceasefir'] [u'health', u'warn', u'whoop', u'cough', u'threat'] [u'alcohol', u'restrict', u'crime', u'rate'] [u'alic', u'welcom', u'parliament', u'sit', u'plan'] [u'ord', u'make', u'small', u'gain', u'lend', u'leas', u'plung'] [u'qaeda', u'sight', u'aust'] [u'speak', u'surgeon', u'issu'] [u'amnesti', u'claim', u'world', u'danger', u'place'] [u'anglicar', u'feel', u'pinch', u'scandal'] [u'angri', u'chilavert', u'quit', u'paraguay', u'nation'] [u'anxious', u'henin', u'hardenn', u'progress', u'round'] [u'aquacultur', u'expans', u'spotlight'] [u'armi', u'chief', u'begin', u'talk', u'china'] [u'armi', u'chief', u'meet', u'chines', u'militari'] [u'armi', u'help', u'indigen', u'hous', u'scheme'] [u'arrest', u'warrant', u'issu', u'woman', u'face', u'fraud', u'charg'] [u'artist', u'fin', u'child', u'porn', u'pictur'] [u'attend', u'recov', u'flight', u'attack'] [u'auditor', u'general', u'dismiss', u'nepean', u'hospit', u'concern'] [u'australia', u'brace', u'sar', u'fallout'] [u'australia', u'doesnt', u'need', u'govt'] [u'australia', u'win', u'touch', u'footbal', u'world'] [u'bail', u'refus', u'connect', u'polic', u'inquiri'] [u'bangladesh', u'play', u'test', u'odi'] [u'barbarian', u'power', u'past', u'scotland'] [u'bashir', u'lawyer', u'happi', u'bomb', u'suspect', u'testimoni'] [u'beatti', u'say', u'document', u'prove', u'time', u'action'] [u'night', u'tourism', u'award', u'winner'] [u'hezbollah', u'go', u'parliament'] [u'bishop', u'want', u'continu', u'focus', u'child', u'abus'] [u'blair', u'address', u'troop', u'basra'] [u'boca', u'restor', u'argentin', u'pride', u'libertador'] [u'brogden', u'say', u'heffernan', u'lobbi', u'consent'] [u'brogden', u'pressur', u'child', u'claim'] [u'bronco', u'sign', u'myer', u'carlaw', u'parker'] [u'bronco', u'sell', u'lang', u'park', u'return'] [u'busi', u'face', u'zero', u'toler', u'smoke', u'polici'] [u'busi', u'welcom', u'bushfir', u'grant'] [u'busi', u'back', u'budget', u'debt'] [u'button', u'call', u'time', u'villeneuv', u'feud'] [u'better', u'monitor', u'contract'] [u'budget', u'strateg', u'rural', u'approach'] [u'capuano', u'sack', u'prompt', u'club', u'chang', u'rethink'] [u'carr', u'announc', u'coal', u'expans'] [u'catchment', u'strategi', u'repli', u'avail', u'soon'] [u'cattl', u'station', u'train', u'indigen', u'resid'] [u'church', u'tri', u'stop', u'deport', u'asylum', u'seeker'] [u'claim', u'target', u'wmds', u'bureaucrat', u'reason'] [u'committe', u'tell', u'minist', u'slow', u'report', u'print'] [u'compani', u'director', u'face', u'charg', u'royal'] [u'complac', u'blame', u'aid', u'surg'] [u'complet', u'wheat', u'virus', u'erad', u'unlik'] [u'compulsori', u'insur', u'rise'] [u'concern', u'air', u'chemic', u'impact', u'dung', u'beetl'] [u'condit', u'report', u'seek', u'highway', u'section'] [u'confer', u'discuss', u'nativ', u'titl', u'issu'] [u'connolli', u'hit', u'pagan', u'jibe'] [u'coria', u'second', u'round', u'kafelnikov', u'oust'] [u'costello', u'defend', u'budget', u'telstra', u'valu'] [u'costello', u'concern', u'hollingworth'] [u'costello', u'accc', u'appoint'] [u'council', u'concern', u'increas', u'infect'] [u'council', u'cross', u'talk', u'break'] [u'councillor', u'concern', u'develop', u'decis'] [u'council', u'ralli', u'support', u'rate', u'chang'] [u'council', u'want', u'coast', u'team', u'upgrad', u'carrara'] [u'court', u'grant', u'injunct', u'iranian'] [u'court', u'hear', u'woman', u'injur', u'children'] [u'court', u'rule', u'guardian', u'stop', u'feed', u'patient'] [u'crew', u'contain', u'road', u'tanker', u'spill'] [u'crop', u'diseas', u'spark', u'quarantin', u'restrict'] [u'cruzeiro', u'flamengo', u'reach', u'copa', u'brasil', u'final'] [u'czech', u'defenc', u'minist', u'resign', u'plan', u'cut'] [u'darwin', u'court', u'grant', u'bail', u'hell', u'angel'] [u'niro', u'receiv', u'lifetim', u'achiev', u'award'] [u'dismiss', u'hewitt', u'peril', u'newcomb'] [u'doctor', u'criticis', u'delay', u'crick', u'charg', u'decis'] [u'dollar', u'fall', u'record', u'month', u'deficit'] [u'dont', u'write', u'hewitt', u'newcomb'] [u'driver', u'enjoy', u'lower', u'fuel', u'price'] [u'ducat', u'sell', u'milk', u'brand'] [u'european', u'ryder', u'captainci', u'plot', u'thicken'] [u'everest', u'celebr', u'near', u'peak'] [u'export', u'slump', u'caus', u'record', u'month', u'trade', u'deficit'] [u'falkirk', u'appeal', u'promot', u'rule'] [u'farmer', u'fin', u'sheep', u'mistreat'] [u'govt', u'ask', u'help', u'homeless', u'jobless', u'fight'] [u'fli', u'irishmen', u'touch', u'broom'] [u'foley', u'say', u'budget', u'deliv', u'surplus'] [u'freeman', u'run', u'rationalis', u'defeat'] [u'freez', u'tenur', u'electrolux'] [u'fuel', u'reduct', u'scheme', u'begin'] [u'fund', u'boost', u'gambl', u'treatment'] [u'fund', u'hamilton', u'swim'] [u'fund', u'seek', u'break', u'hill', u'anniversari'] [u'fund', u'help', u'tackl', u'gambl', u'woe'] [u'gallop', u'back', u'video', u'refere'] [u'bill', u'rise'] [u'group', u'hop', u'law', u'prove', u'posit'] [u'glori', u'inspir', u'shark', u'attack'] [u'govt', u'defeat', u'ruddock', u'censur', u'motion'] [u'greenback', u'ride', u'domin', u'trade'] [u'grewcock', u'tour', u'england', u'plan'] [u'group', u'want', u'minist', u'secess', u'plan'] [u'gungahlin', u'drive', u'design', u'unveil'] [u'handsom', u'viril', u'studi'] [u'hawk', u'let', u'schwab', u'vandenberg'] [u'hoggard', u'doubt', u'england', u'second', u'test'] [u'hollingworth', u'hound', u'offic', u'brother', u'say'] [u'hope', u'kick', u'centenari', u'celebr'] [u'incom', u'accc', u'chief', u'want', u'good', u'rural', u'relationship'] [u'india', u'ban', u'jadeja', u'get', u'ahead', u'play'] [u'investig', u'question', u'ship', u'skipper'] [u'iranian', u'urg', u'stand', u'firm', u'pressur'] [u'iraq', u'weapon', u'evid', u'emerg', u'downer'] [u'irrig', u'face', u'lower', u'river', u'water', u'entitl'] [u'juve', u'best', u'lippi'] [u'kenya', u'suspend', u'pamela', u'chepchumba', u'posit'] [u'kenyon', u'win', u'golf', u'open', u'surfer'] [u'laidlaw', u'attack', u'lewi', u'resign', u'comment'] [u'lend', u'leas', u'share', u'dive', u'write'] [u'lib', u'govt', u'land', u'clear'] [u'local', u'builder', u'win', u'turtl', u'centr', u'contract'] [u'love', u'bring', u'joey'] [u'macdougal', u'sign', u'leav', u'knight'] [u'macdougal', u'sign', u'contract'] [u'mackay', u'sugar', u'mothbal', u'pleystow'] [u'diseas', u'like', u'infect', u'cattl'] [u'maldini', u'lead', u'record', u'breaker', u'emul'] [u'arrest', u'flight', u'stab'] [u'kill', u'castl', u'hill'] [u'assault', u'charg', u'order', u'break', u'hill'] [u'mav', u'ralli', u'overcom', u'spur', u'game'] [u'mayor', u'roll', u'rat'] [u'mcguir', u'hose', u'port', u'feud', u'jackson'] [u'mcguir', u'urg', u'hose', u'port', u'feud'] [u'meaa', u'condemn', u'alston', u'intimid'] [u'milan', u'bask', u'triumph', u'turin', u'fall', u'silent'] [u'milan', u'shootout', u'land', u'sixth', u'european', u'crown'] [u'milan', u'win', u'italian', u'battl', u'champion', u'leagu', u'final'] [u'mix', u'respons', u'crean', u'year', u'term', u'propos'] [u'monti', u'campbel', u'look', u'lift', u'wale'] [u'mother', u'tractor', u'get', u'littl'] [u'move', u'afoot', u'restor', u'giant', u'vintag', u'tractor'] [u'await', u'airport', u'masterplan'] [u'confid', u'albani', u'host', u'region', u'parliament'] [u'make', u'maiden', u'speech'] [u'urg', u'adopt', u'coupl'] [u'want', u'build', u'inspect', u'law', u'chang'] [u'polic', u'join', u'year', u'murder', u'mysteri', u'probe'] [u'murray', u'fund', u'proper'] [u'nelson', u'reject', u'mean', u'test', u'fee'] [u'health', u'servic', u'south', u'west', u'shire'] [u'high', u'commission', u'name', u'fiji'] [u'protocol', u'canola', u'machineri', u'clean'] [u'strategi', u'propos', u'inland', u'fisheri'] [u'weigh', u'facil', u'cattl', u'export'] [u'korea', u'warn', u'nuclear', u'retali'] [u'problem', u'fill', u'vacanc', u'race', u'chief'] [u'govt', u'propos', u'council'] [u'pass', u'food', u'moritorium', u'legisl'] [u'murder', u'rate', u'highest', u'countri', u'statist'] [u'celebr', u'everest', u'anniversari'] [u'oppn', u'support', u'hezbollah'] [u'pakistan', u'follow', u'aussi', u'exampl', u'imran', u'khan'] [u'pakistan', u'seek', u'cricket', u'seri', u'india'] [u'palestinian', u'kill', u'isra', u'incurs'] [u'perth', u'doctor', u'devast', u'birth'] [u'peruvian', u'polic', u'arrest', u'protest', u'defi', u'state'] [u'petacchi', u'win', u'sixth', u'stage', u'giro'] [u'plane', u'disappear', u'mysteri'] [u'polic', u'boost', u'arsenal', u'long', u'weekend'] [u'polic', u'chief', u'happi', u'terror', u'exercis'] [u'polic', u'happi', u'voluntari', u'test'] [u'polic', u'investig', u'woman', u'death', u'continu'] [u'polic', u'plea', u'help', u'miss', u'teen'] [u'polic', u'probe', u'cherbourg', u'death'] [u'polic', u'target', u'castl', u'hill', u'problem'] [u'power', u'duck', u'magpi', u'jib'] [u'power', u'problem', u'report', u'tomorrow'] [u'princip', u'welcom', u'court', u'row', u'decis'] [u'probe', u'clear', u'policeman', u'wrongdo'] [u'project', u'manag', u'appoint', u'marina', u'plan'] [u'properti', u'crime', u'steep', u'declin', u'statist'] [u'govt', u'wait', u'gladston', u'infrastructur'] [u'oppn', u'keep', u'heat', u'beatti'] [u'research', u'centr', u'expect', u'boost', u'nativ', u'flower'] [u'research', u'consid', u'asbesto', u'grass', u'impact'] [u'research', u'shed', u'light', u'lobster', u'behaviour'] [u'rivkin', u'get', u'weekend', u'jail', u'fine'] [u'rivkin', u'appeal', u'convict', u'sentenc'] [u'road', u'reopen', u'weekend', u'closur'] [u'roddick', u'struggl', u'live', u'american', u'dream'] [u'roux', u'give', u'year', u'fail', u'dope', u'test'] [u'ruggeri', u'hop', u'independient', u'lead', u'nation'] [u'archbishop', u'apologis', u'abus', u'victim'] [u'santo', u'capitalis', u'blunder', u'reach', u'libertador'] [u'savoy', u'hotel', u'close', u'door'] [u'schett', u'defeat', u'fernandez', u'meet', u'serena'] [u'scientist', u'discov', u'compact', u'galaxi'] [u'search', u'skipper', u'sink', u'trawler'] [u'serena', u'search', u'perfect', u'form'] [u'serial', u'killer', u'appeal', u'convict'] [u'share', u'split', u'fear', u'deal'] [u'sheedi', u'await', u'return', u'bomber'] [u'shire', u'problem', u'level', u'wast'] [u'shootout', u'hand', u'milan', u'sixth', u'european', u'crown'] [u'solar', u'eclips', u'sweep', u'northern', u'latitud'] [u'sport', u'shooter', u'condemn', u'tighter', u'control', u'law'] [u'sport', u'shooter', u'doubt', u'gun', u'buyback', u'impact'] [u'studi', u'find', u'law', u'surround', u'genet', u'materi', u'need'] [u'studi', u'link', u'chlorin', u'asthma', u'epidem'] [u'sugar', u'pool', u'price', u'predict', u'product'] [u'survey', u'result', u'help', u'boost', u'busi', u'support'] [u'kill', u'aceh', u'say', u'militari'] [u'terror', u'expert', u'surpris', u'qaeda'] [u'test', u'probe', u'mind', u'psychopath'] [u'train', u'demand', u'expect', u'lift', u'work', u'end'] [u'train', u'guard', u'confid', u'driver', u'abil', u'inquiri'] [u'trawler', u'skipper', u'miss', u'collis', u'bulk'] [u'truck', u'crash', u'close', u'highway'] [u'indigen', u'land'] [u'union', u'suggest', u'work', u'option'] [u'plan', u'extend', u'stay', u'iraq', u'report'] [u'virgin', u'blue', u'boost', u'coff', u'tourism'] [u'voluntari', u'administr', u'impact', u'miner', u'unknown'] [u'charg', u'rent', u'privat', u'licenc', u'plat'] [u'waterfal', u'train', u'driver', u'compet', u'guard'] [u'watt', u'hop', u'unifi', u'council'] [u'know', u'quirindi', u'resid', u'die'] [u'wollongong', u'celebr', u'reconcili', u'week'] [u'wooden', u'object', u'flight', u'attack'] [u'wood', u'cours', u'open', u'tune'] [u'woomera', u'seek', u'telescop', u'planetarium', u'fund'] [u'world', u'bank', u'repres', u'enter', u'iraq'] [u'write', u'wall', u'graffiti', u'artist'] [u'archer', u'hunt', u'bear'] [u'injur', u'brisban', u'road', u'crash'] [u'accus', u'murder', u'seek', u'fund', u'defenc'] [u'build', u'protect', u'stall'] [u'agforc', u'miss', u'tree', u'clear', u'respons', u'deadlin'] [u'agricultur', u'expert', u'consid', u'wheat', u'virus'] [u'scare', u'spark', u'alburi', u'airport', u'assur'] [u'alcohol', u'restrict', u'find', u'soon'] [u'alleg', u'hijack', u'face', u'court'] [u'lend', u'leas', u'continu', u'slide'] [u'annan', u'deepli', u'concern', u'aceh', u'fight'] [u'answer', u'seek', u'rail', u'servic', u'job'] [u'anti', u'dope', u'campaign', u'threaten', u'cash', u'crisi'] [u'applic', u'lodg', u'oper'] [u'arthur', u'hanley', u'molik', u'progress', u'pari'] [u'arthur', u'seat', u'chairlift', u'owner', u'escap', u'prosecut'] [u'aussi', u'look', u'life'] [u'avellino', u'take', u'tbird', u'court'] [u'ballack', u'aim', u'wipe', u'tripl', u'miseri'] [u'beckham', u'bid', u'restor', u'england', u'imag'] [u'beekeep', u'abuzz', u'food', u'crop'] [u'beekeep', u'lament', u'impact', u'export'] [u'bendigo', u'tornado', u'appeal', u'extend'] [u'hope', u'celebr', u'birthday'] [u'bomber', u'hird', u'injur'] [u'bomber', u'welcom', u'star', u'trio'] [u'bomb', u'kill', u'north', u'spain', u'blame'] [u'boundari', u'commiss', u'meet', u'shire', u'divis'] [u'brazil', u'deni', u'choreographi', u'censorship'] [u'briton', u'jeffri', u'die', u'isl', u'crash'] [u'bronco', u'sign', u'forward', u'trio'] [u'buckley', u'play', u'port', u'clash', u'hype'] [u'buckley', u'play', u'match', u'talk'] [u'budget', u'prepar', u'raini', u'day', u'treasur'] [u'bulldog', u'futur', u'secur'] [u'bunburi', u'silo', u'hotel', u'grain', u'landmark'] [u'bush', u'embark', u'european', u'mission'] [u'fairer', u'feder', u'fund', u'distribut'] [u'inquiri', u'submiss'] [u'secur', u'airport', u'upgrad'] [u'canada', u'tripl', u'sar', u'case'] [u'warn', u'hoax', u'mail'] [u'champion', u'leagu', u'final', u'deserv', u'better'] [u'chariti', u'ride', u'rais', u'cancer', u'fund'] [u'chilean', u'scientist', u'claim', u'dinosaur', u'discoveri'] [u'china', u'jail', u'internet', u'activist'] [u'china', u'jump', u'sar', u'sourc'] [u'church', u'agre', u'independ', u'abus', u'inquiri'] [u'club', u'contribut', u'thousand', u'communiti', u'group'] [u'coalit', u'split', u'tree', u'clear', u'legisl'] [u'communiti', u'group', u'welcom', u'insur', u'reviv'] [u'concern', u'air', u'quarantin', u'inspect', u'chang'] [u'council', u'contribut', u'histori', u'project'] [u'council', u'get', u'wast', u'water', u'scheme', u'fund'] [u'council', u'reject', u'fund'] [u'council', u'rule', u'land', u'fee', u'month'] [u'council', u'consid', u'crime', u'prevent'] [u'council', u'seek'] [u'council', u'seek', u'super', u'fund', u'probe'] [u'council', u'urg', u'index', u'rat', u'charg', u'inflat'] [u'council', u'want', u'dingo', u'fenc', u'repair'] [u'council', u'win', u'support', u'cheaper', u'flight', u'push'] [u'crew', u'member', u'ordeal'] [u'cwealth', u'respons', u'region', u'airport'] [u'darwin', u'eisteddfod', u'bang'] [u'dean', u'attack', u'govt', u'intoler'] [u'death', u'toll', u'rise', u'india', u'heatwav'] [u'debat', u'erupt', u'radiotherapi', u'unit', u'budget', u'fund'] [u'defunct', u'green', u'group', u'reject', u'financi', u'claim'] [u'democrat', u'demand', u'govt', u'taxi', u'industri'] [u'dfat', u'urg', u'australian', u'avoid', u'travel'] [u'diamond', u'shine', u'bright', u'kimberley', u'economi'] [u'dixon', u'relax', u'accc', u'chief'] [u'dokic', u'suffer', u'disappoint', u'loss'] [u'dollar', u'steadi', u'volatil', u'market'] [u'domest', u'water', u'user', u'face', u'bigger'] [u'dunde', u'readi', u'crash', u'ranger', u'trebl', u'parti'] [u'editor', u'lead', u'italian', u'paper', u'resign'] [u'engin', u'student', u'consid', u'option'] [u'famili', u'hope', u'settl', u'cliff', u'collaps', u'case'] [u'famili', u'staff', u'impos', u'work', u'ban'] [u'farmer', u'landcar', u'effort'] [u'feder', u'court', u'grant', u'asylum', u'seeker', u'interim'] [u'ferrero', u'flash', u'clister', u'win', u'comfort'] [u'engin', u'demand', u'meet', u'resist'] [u'find', u'ban', u'weapon', u'prioriti', u'blair', u'say'] [u'arrest', u'alleg', u'assault'] [u'fluminens', u'sign', u'romario'] [u'employe', u'jail', u'steal'] [u'serb', u'polic', u'chief', u'face', u'human', u'right', u'charg'] [u'french', u'final', u'salvag', u'season'] [u'french', u'fire', u'clement'] [u'friendship', u'asid', u'henman', u'outlast', u'martin'] [u'fund', u'disabl', u'awar', u'train'] [u'fund', u'address', u'problem', u'gambl'] [u'game', u'secur', u'chief', u'reveal', u'qaeda', u'evid'] [u'option', u'consider'] [u'gough', u'happi', u'squad'] [u'govt', u'tighten', u'secur', u'bangkok', u'embassi'] [u'hawthorn', u'hop', u'form', u'slump'] [u'heavi', u'sea', u'hamper', u'search', u'trawler', u'skipper'] [u'hewitt', u'australian', u'stand'] [u'high', u'court', u'consid', u'elector', u'reform'] [u'histor', u'canberra', u'cinema', u'close', u'door'] [u'howard', u'confid', u'wmds'] [u'howard', u'say', u'alston', u'right', u'question'] [u'howel', u'take', u'memori', u'lead', u'tiger', u'start'] [u'indian', u'restaur', u'fin', u'mouldi', u'food'] [u'indonesian', u'militari', u'clash', u'aceh', u'rebel'] [u'irrig', u'lament', u'water', u'restrict'] [u'israel', u'promis', u'freer', u'movement', u'palestinian'] [u'jaguar', u'face', u'year', u'toil', u'purnel'] [u'journalist', u'convict', u'enter', u'aborigin', u'land'] [u'kelli', u'heat', u'side', u'chanc', u'cairn'] [u'kelli', u'meet', u'council', u'merger', u'concern'] [u'kookaburra', u'edg', u'india', u'hockeyroo', u'athen'] [u'kuerten', u'eye', u'restor', u'claycourt', u'kingdom'] [u'lang', u'park', u'readi', u'bronco', u'return'] [u'lara', u'pay', u'tribut', u'chief', u'tormentor', u'bichel'] [u'larkham', u'switch', u'fullback', u'report'] [u'larsson', u'deni', u'spanish', u'tie'] [u'wagga', u'bakeri'] [u'leader', u'groundwork', u'middl', u'east', u'summit'] [u'declar', u'bevan', u'mcgrath'] [u'declar', u'dayer'] [u'lewi', u'look', u'johnson', u'slam', u'tyson', u'king'] [u'lobbi', u'group', u'applaud', u'propos', u'research', u'merger'] [u'london', u'bronco', u'sack', u'peter', u'posit', u'drug'] [u'luca', u'height', u'owner', u'reactor', u'safe', u'despit'] [u'question', u'perth', u'abduct', u'attempt'] [u'charg', u'hijack'] [u'fin', u'unlicens', u'deal'] [u'guilti', u'danger', u'drive'] [u'injur', u'tower', u'fall'] [u'jail', u'year', u'crime'] [u'jail', u'dispos', u'bodi'] [u'kill', u'rollov'] [u'kill', u'crash'] [u'mareeba', u'famili', u'compet', u'water', u'prize'] [u'market', u'trial', u'close', u'main', u'carnarvon', u'street'] [u'maverick', u'replay', u'abandon', u'clash'] [u'mayor', u'want', u'shire', u'bodi', u'stay', u'lgaq'] [u'mcewen', u'defend', u'murray'] [u'mclaren', u'season'] [u'michael', u'lion'] [u'milan', u'doubl', u'success'] [u'mix', u'respons', u'murray', u'commit'] [u'mourner', u'respect', u'kangaroo', u'mcmahon'] [u'expect', u'budget', u'health', u'boost'] [u'ownership', u'debat', u'sight'] [u'push', u'rail', u'line', u'remain', u'open'] [u'hop', u'resolv', u'health', u'clinic', u'disput'] [u'nepal', u'prime', u'minist', u'resign'] [u'home', u'seek', u'dutch', u'replica', u'ship'] [u'ferri', u'servic', u'move', u'closer', u'realiti'] [u'plan', u'sell', u'polic', u'station', u'site'] [u'govt', u'call', u'nation', u'fund', u'tackl'] [u'stick', u'elect', u'schedul', u'martin'] [u'offici', u'investig', u'workplac', u'death'] [u'ohern', u'fire', u'welsh', u'open', u'lead'] [u'opposit', u'question', u'travel', u'warn'] [u'origin', u'place', u'grab', u'david', u'morrow', u'round'] [u'palestinian', u'bomber', u'die', u'attempt', u'enter', u'israel'] [u'palm', u'council', u'face', u'uncertain', u'futur'] [u'panel', u'appoint', u'work', u'hour', u'inquiri'] [u'passeng', u'termin', u'secur', u'scare'] [u'passeng', u'return', u'qanta', u'termin'] [u'peri', u'kneebon', u'postpon', u'polit', u'debut'] [u'pike', u'hop', u'ambul', u'station', u'uncertainti'] [u'prais', u'crew', u'scare'] [u'consid', u'request', u'marin', u'base'] [u'polic', u'investig', u'gold', u'coast', u'shoot', u'incid'] [u'polic', u'charg', u'coast', u'drug', u'raid'] [u'polic', u'probe', u'gladston', u'hous'] [u'polic', u'seek', u'help', u'hunt', u'hotel', u'vandal'] [u'polic', u'taskforc', u'probe', u'anglican', u'church', u'abus'] [u'port', u'adelaid', u'down', u'collingwood'] [u'port', u'lincoln', u'develop', u'high'] [u'portman', u'look', u'koolyaknob', u'expans'] [u'eindhoven', u'dutch', u'leagu', u'titl'] [u'qanta', u'tight', u'lip', u'sydney', u'termin', u'secur'] [u'win', u'butt', u'award'] [u'raider', u'edg', u'shark'] [u'rail', u'advoc', u'deputi'] [u'ratepay', u'face', u'rate', u'rise'] [u'clay', u'stir', u'regret', u'sampra'] [u'reflect', u'capriati', u'put', u'victori', u'perspect'] [u'republican', u'consid', u'plan', u'attack'] [u'retail', u'trade', u'overcom', u'april', u'obstacl'] [u'rivkin', u'share', u'trade', u'halt'] [u'rivkin', u'compani', u'chairman'] [u'rover', u'amoruso'] [u'rumsfeld', u'deni', u'invad', u'iraq', u'fals', u'pretext'] [u'ambo', u'blame', u'govt', u'health', u'fund', u'increas'] [u'saddam', u'remov', u'defin', u'moment'] [u'samudra', u'face', u'death', u'bali', u'bomb'] [u'take', u'step', u'save', u'murray'] [u'schumach', u'lead', u'monaco'] [u'search', u'miss', u'skipper', u'scale'] [u'secur', u'breach', u'caus', u'evacu', u'qanta'] [u'secur', u'staff', u'walk', u'guard', u'attack'] [u'seed', u'movement', u'quarantin', u'restrict', u'lift'] [u'shark', u'injuri', u'crisi'] [u'shevchenko', u'award', u'ukrain', u'sport', u'honour'] [u'shire', u'group', u'debat', u'insur', u'premium', u'impact'] [u'simoni', u'giro', u'victori', u'sight'] [u'slowcoach', u'costa', u'take', u'distanc'] [u'sorenstam', u'return', u'lpga', u'defend', u'titl'] [u'stonefruit', u'grower', u'await', u'news'] [u'super', u'leagu', u'trio', u'deduct', u'point', u'salari'] [u'survey', u'show', u'fish', u'econom', u'boost'] [u'suspend', u'sentenc', u'investig'] [u'sydney', u'polic', u'seiz', u'ecstasi', u'tablet'] [u'hospit', u'provid', u'tech', u'ventil'] [u'atalanta', u'hang', u'draw'] [u'terror', u'put', u'heat', u'refuge', u'survey'] [u'thailand', u'hit', u'australian', u'travel', u'warn'] [u'thoma', u'train', u'latest'] [u'kill', u'grozni', u'blast', u'polic'] [u'tribut', u'flow', u'governor'] [u'tyson', u'rape', u'outrag'] [u'uefa', u'stand', u'firm', u'firm', u'premiership', u'flit'] [u'accus', u'rewrit', u'iraq', u'intellig'] [u'union', u'welcom', u'budget', u'teacher', u'hous', u'fund'] [u'ambassador', u'deni', u'plan', u'local', u'troop', u'base'] [u'issu', u'travel', u'warn', u'gaza', u'kidnap', u'fear'] [u'reinforc', u'iraq', u'forc'] [u'trade', u'agreement', u'critic', u'vail', u'warn'] [u'venus', u'struggl', u'round'] [u'voller', u'prepar', u'german', u'match', u'year'] [u'wallabi', u'focus', u'ireland', u'test'] [u'shire', u'probe', u'eros', u'woe'] [u'waterhous', u'attempt', u'stop', u'inquiri'] [u'welcom', u'home', u'navi', u'diver'] [u'webb', u'rule', u'men', u'titl', u'challeng'] [u'weekend', u'mark', u'shipwreck', u'anniversari'] [u'fight', u'save', u'monaco', u'princ', u'albert'] [u'spanish', u'leader', u'real', u'sociedad'] [u'women', u'give', u'birth', u'later', u'life', u'studi'] [u'woolworth', u'admit', u'alcohol', u'price', u'fix'] [u'work', u'begin', u'colleg'] [u'kill', u'injur', u'kashmir', u'shoot', u'out', u'blast'] [u'milan', u'target', u'beckham', u'report'] [u'adelaid', u'polic', u'investig', u'tripl', u'road', u'fatal'] [u'consid', u'talli', u'room', u'overhaul'] [u'agassi', u'advanc', u'serena', u'smash', u'schett'] [u'franc', u'concord', u'make', u'final', u'york', u'land'] [u'passeng', u'bodi', u'search'] [u'alic', u'spring', u'clinic', u'criticis', u'polici'] [u'armi', u'camp', u'sale', u'anger', u'brighton', u'resid'] [u'armi', u'rebel', u'clash', u'philippin', u'dead'] [u'attempt', u'murder', u'charg', u'lay', u'road', u'crash'] [u'australian', u'veteran', u'fowler', u'sparkl'] [u'australia', u'send', u'weapon', u'expert', u'iraq'] [u'bartlett', u'call', u'stronger', u'rhetor', u'troop'] [u'beazley', u'back', u'presenc', u'asia'] [u'bennett', u'close', u'decis', u'origin', u'squad'] [u'bennett', u'close', u'decis', u'squad'] [u'boston', u'archdioces', u'unveil', u'anti', u'abus', u'plan'] [u'brisban', u'virus', u'outbreak', u'contain', u'health'] [u'britain', u'begin', u'repatri', u'iraqi'] [u'bronco', u'lose', u'swain', u'lang', u'park', u'return'] [u'bulldog', u'roo'] [u'burmes', u'leader', u'arrest', u'report'] [u'bush', u'poland', u'ahead', u'europ', u'summmit'] [u'bush', u'push', u'intern', u'search', u'agreement'] [u'campbel', u'organis', u'pitch', u'record'] [u'cancer', u'council', u'seek', u'deglamouris', u'smoke'] [u'casablanca', u'blast', u'reserv', u'charg'] [u'chemic', u'agent', u'prison', u'transfer'] [u'chemic', u'spill', u'clean'] [u'church', u'call', u'return', u'detain', u'australian'] [u'clark', u'get', u'explain', u'ireland', u'trip'] [u'clijster', u'capriati', u'romp', u'fourth', u'round'] [u'confer', u'review', u'autism', u'research'] [u'countri', u'footbal', u'come', u'polit', u'spotlight'] [u'custom', u'raid', u'uncov', u'spider', u'haul'] [u'dead', u'woman', u'coolum'] [u'democrat', u'seek', u'assur', u'forc', u'aust'] [u'derail', u'close', u'tran', u'australian', u'railway', u'line'] [u'egyptian', u'accus', u'plan', u'cambodia', u'terror'] [u'engin', u'confer', u'discuss', u'project'] [u'summit', u'open', u'saint', u'petersburg'] [u'euthanasia', u'issu', u'affect', u'young', u'youth', u'defenc'] [u'giant', u'tri', u'kill', u'say', u'minardi', u'boss'] [u'fair', u'cambodian', u'elect', u'garner', u'reeker'] [u'fall', u'premium', u'compo', u'chang', u'unneed'] [u'fatal', u'accid', u'follow', u'canberra', u'polic', u'chase'] [u'ferdinand', u'england', u'game'] [u'arrest', u'saudi', u'bomb', u'report'] [u'injur', u'bomb', u'explod', u'pakistani'] [u'wound', u'bomb', u'explos', u'pakistani'] [u'crisi', u'domin', u'republican', u'talk'] [u'govt', u'accus', u'drag', u'feet', u'feder', u'squar'] [u'green', u'hop', u'return', u'win', u'way'] [u'hama', u'stand', u'attack', u'despit', u'road', u'progress'] [u'health', u'offici', u'urg', u'season', u'approach'] [u'hill', u'defend', u'iraq'] [u'hind', u'guid', u'windi', u'victori'] [u'hindu', u'pilgrim', u'holi', u'solar', u'eclips'] [u'hodgson', u'pace', u'ahead', u'record', u'quest'] [u'howard', u'put', u'retir', u'talk', u'hold'] [u'indigen', u'health', u'care', u'appal'] [u'iran', u'attack', u'claim', u'idl', u'specul', u'bush'] [u'iraqi', u'child', u'kill', u'militari', u'road', u'accid'] [u'isra', u'palestinian', u'prepar', u'peac', u'summit'] [u'italian', u'journalist', u'strike', u'editor', u'resign'] [u'jakarta', u'send', u'thousand', u'student', u'aceh'] [u'labor', u'win', u'londonderri', u'elect'] [u'laidley', u'slam', u'saint', u'capuano', u'sack'] [u'lang', u'park', u'count', u'kickoff'] [u'leak', u'contain', u'spark', u'wharv', u'emerg'] [u'launch', u'state', u'elect', u'plan'] [u'lion', u'annihil', u'demon', u'roo', u'docker'] [u'lion', u'dee', u'swan', u'roo', u'docker'] [u'local', u'favourit', u'mauresmo'] [u'local', u'govern', u'debat', u'merit', u'public', u'precinct'] [u'lomu', u'undergo', u'kidney', u'dialysi', u'treatment'] [u'test', u'negat', u'canadian'] [u'melbourn', u'face', u'sydney', u'fraud', u'charg'] [u'men', u'draw', u'injuri'] [u'moya', u'move', u'closer', u'parisian', u'repeat'] [u'say', u'indigen', u'credit', u'constitut', u'overdu'] [u'nepal', u'step', u'bolster', u'king'] [u'nitschk', u'unveil', u'suicid', u'machin'] [u'govt', u'question', u'feder', u'firefight', u'commit'] [u'govt', u'warn', u'sar', u'complac'] [u'labor', u'lib', u'hold', u'plan', u'meet'] [u'smoke', u'law', u'start', u'cancer', u'council'] [u'panamanian', u'pageant', u'mania'] [u'peru', u'lift', u'state', u'emerg', u'strike', u'subsid'] [u'pngs', u'independ', u'newspap', u'close'] [u'polic', u'investig', u'tourist', u'death'] [u'polic', u'rule', u'hmas', u'sydney', u'archiv', u'inquiri'] [u'polic', u'investig', u'paedophil', u'network', u'claim'] [u'poor', u'countri', u'campaign', u'trade', u'concess'] [u'port', u'crush', u'collingwood'] [u'poulter', u'edg', u'ahead', u'wale'] [u'qanta', u'name', u'flight', u'centr', u'breach'] [u'radio', u'tower', u'pose', u'health', u'risk', u'govt'] [u'raider', u'sink', u'shark'] [u'recept', u'thank', u'bush', u'firefight'] [u'record', u'entri', u'sept', u'memori', u'design'] [u'report', u'show', u'adequ', u'govt'] [u'report', u'warn', u'garbag', u'collaps'] [u'risdon', u'prison', u'open', u'behaviour', u'problem', u'divis'] [u'roo', u'bind', u'docker', u'damag', u'blue'] [u'rotarian', u'flock', u'brisban', u'confer'] [u'church', u'offici', u'apologis', u'child', u'abus'] [u'safeti', u'focus', u'flight', u'say', u'civil'] [u'polic', u'search', u'driver', u'involv'] [u'mine', u'despit', u'royalti', u'increas', u'foley'] [u'speed', u'amnesti', u'end', u'tonight'] [u'senat', u'complet', u'pacif', u'fact', u'find', u'mission'] [u'shame', u'campaign', u'uncov', u'burglari', u'ring'] [u'shark', u'battl', u'injuri', u'crisi'] [u'shark', u'battl', u'injuri', u'crisi', u'ahead', u'grand'] [u'sharp', u'rise', u'algerian', u'quak', u'death', u'toll'] [u'simoni', u'extend', u'giro', u'lead', u'stage'] [u'sorenstam', u'star', u'return', u'lpga', u'tour'] [u'spur', u'dalla', u'reach', u'final'] [u'spur', u'dalla', u'reach', u'final'] [u'streisand', u'sue', u'coast', u'surveyor', u'hous', u'snap'] [u'strong', u'quak', u'jolt', u'eastern', u'indonesian', u'citi'] [u'sugiyama', u'hustl', u'roland', u'garro', u'fourth', u'round'] [u'swift', u'phoenix', u'win'] [u'sydney', u'polic', u'search', u'carjack'] [u'symptomless', u'sar', u'china', u'report'] [u'teenag', u'charg', u'stab'] [u'terrorist', u'attack', u'strateg', u'failur'] [u'tiger', u'clumsi', u'dog'] [u'tiger', u'clumsi', u'dog', u'eel', u'panther'] [u'torrenti', u'rain', u'kill', u'moldova'] [u'trawler', u'skipper', u'miss', u'carrier', u'near'] [u'trespass', u'convict', u'blow', u'journal', u'newspap'] [u'investig', u'abus', u'pictur'] [u'approv', u'congo', u'peacekeep', u'forc'] [u'sack', u'british', u'worker', u'messag'] [u'accus', u'north', u'korea', u'threaten', u'asia', u'secur'] [u'call', u'unifi', u'assault', u'terror'] [u'court', u'rule', u'iran', u'guilti', u'troop', u'blast', u'death'] [u'decri', u'belarus', u'media', u'crackdown'] [u'erron', u'releas', u'suspect', u'iraqi'] [u'lower', u'terror', u'threat', u'level'] [u'stock', u'continu', u'rise'] [u'team', u'monitor', u'road', u'journey', u'powel'] [u'uncov', u'baath', u'sleeper', u'cell', u'polic'] [u'unveil', u'billion', u'defenc', u'plan', u'korean', u'peninsula'] [u'urg', u'restraint', u'aceh'] [u'warn', u'expect', u'increas', u'hurrican', u'damag'] [u'woman', u'die', u'scuba', u'dive', u'port', u'dougla'] [u'vintag', u'rfds', u'fundrais', u'start'] [u'warden', u'bust', u'jail', u'bootlegg'] [u'station', u'play', u'role', u'mar', u'mission'] [u'remov', u'singapor', u'sar', u'list'] [u'wickham', u'plant', u'work', u'begin', u'soon', u'compani'] [u'women', u'remov', u'pant', u'swazi', u'king'] [u'woolworth', u'club', u'admit', u'price', u'fix', u'breach'] [u'zimbabw', u'policeman', u'forego', u'interpol', u'titl'] [u'zone', u'grace', u'period'] [u'fine', u'polic', u'remind', u'driver'] [u'abbott', u'say', u'cwealth', u'consid', u'doubl'] [u'mazen', u'await', u'milit', u'truce', u'respons'] [u'aceh', u'rebel', u'kill', u'indonesian', u'soldier', u'villag', u'chief'] [u'actor', u'fear', u'free', u'trade', u'cultur', u'threat'] [u'seek', u'stanwel', u'partner', u'cost', u'blow'] [u'anti', u'crusad', u'year'] [u'gain', u'increas', u'airport', u'secur', u'power'] [u'armi', u'consid', u'direct', u'recruit'] [u'baabaa', u'round', u'miser', u'season', u'wale'] [u'bacon', u'begin', u'comput', u'communiti', u'group', u'program'] [u'ballack', u'inspir', u'bayern', u'domest', u'doubl'] [u'bangladesh', u'heatwav', u'toll', u'rise'] [u'barca', u'million', u'pound', u'beckham', u'press'] [u'shrug', u'monaco', u'court', u'seizur', u'order'] [u'blair', u'pin', u'credibl', u'iraq', u'weapon', u'hunt'] [u'budget', u'problem', u'hamper', u'youth', u'liaison', u'polic'] [u'bullimor', u'rescu', u'inspir', u'compos'] [u'burma', u'junta', u'mount', u'major', u'crackdown'] [u'burmes', u'junta', u'arrest'] [u'bush', u'face', u'critic', u'russia'] [u'bush', u'russia', u'tricentenni', u'putin', u'meet'] [u'button', u'monaco', u'doubt', u'crash'] [u'camplin', u'name', u'snow', u'best'] [u'capriati', u'undaunt', u'lose', u'streak'] [u'carr', u'ask', u'cwealth', u'check', u'region', u'airport'] [u'champion', u'costa', u'win', u'marathon', u'match'] [u'china', u'close', u'gate', u'yangtz'] [u'church', u'agre', u'child', u'abus', u'inquiri'] [u'claim', u'educ', u'reform', u'indigen'] [u'clijster', u'answer', u'belgium'] [u'coalit', u'say', u'plan', u'shoot', u'land', u'iraq'] [u'compulsori', u'aggress', u'train', u'nurs'] [u'coron', u'investig', u'plane', u'fatal'] [u'cost', u'alic', u'parliament', u'sit', u'unknown'] [u'crow', u'cat', u'bomber', u'saint'] [u'castella', u'land', u'bidder', u'slow', u'block'] [u'doubl', u'milan'] [u'dozen', u'hurt', u'nepali', u'press', u'uniti', u'govern'] [u'zhivago', u'see', u'centr', u'cinema', u'tenur'] [u'egypt', u'flight', u'clear', u'bomb', u'scare'] [u'egyptair', u'flight', u'land', u'safe', u'bomb', u'scare'] [u'nab', u'atlanta', u'olymp', u'blast', u'suspect'] [u'govt', u'dismiss', u'carr', u'region', u'airport', u'fear'] [u'ferrero', u'crush', u'henman', u'challeng'] [u'fli', u'safeti', u'assur', u'need', u'tourism', u'council'] [u'franc', u'bid', u'adieu', u'concord'] [u'french', u'loan', u'algeria', u'earthquak', u'relief'] [u'german', u'techno', u'fan', u'move'] [u'glasson', u'vote', u'chief'] [u'glori', u'face', u'player', u'exodus'] [u'govt', u'allow', u'question', u'alston'] [u'govt', u'plan', u'aborigin', u'medicar', u'rebat', u'extens'] [u'govt', u'fund', u'aborigin', u'employ', u'project'] [u'hangar', u'collaps', u'investig', u'begin'] [u'hewitt', u'bow', u'women', u'seed', u'triumph'] [u'hill', u'criticis', u'secur', u'council'] [u'hockeyroo', u'clean', u'sweep'] [u'hodgson', u'take', u'german', u'superbik', u'pole'] [u'home', u'ownership', u'program', u'aid', u'self', u'empower'] [u'hospit', u'upgrad', u'secur', u'measur'] [u'increas', u'secur', u'paralys', u'industri', u'qanta'] [u'india', u'play', u'kookaburra', u'nation', u'final'] [u'iraq', u'journalist', u'protest', u'mass', u'sack'] [u'iraq', u'tension', u'underscor', u'meet'] [u'israel', u'eas', u'west', u'bank', u'gaza', u'closur'] [u'itali', u'intercept', u'spate', u'refuge', u'boat'] [u'jeanson', u'win', u'montreal', u'world', u'race'] [u'jone', u'fight', u'holyfield', u'octob', u'promot'] [u'knight', u'spoil', u'lang', u'park', u'parti'] [u'knight', u'spoil', u'lang', u'park', u'parti', u'rooster', u'cowboy'] [u'labor', u'continu', u'fight', u'cross', u'media', u'chang'] [u'labor', u'increas', u'major', u'londonderri'] [u'lang', u'park', u'makeov', u'declar', u'success'] [u'lang', u'park', u'welcom', u'fan', u'reopen', u'match'] [u'leader', u'protest', u'converg', u'evian', u'summit'] [u'leagu', u'lang', u'bronco', u'lead', u'half', u'time'] [u'leed', u'want', u'kewel', u'stay'] [u'light', u'fall', u'season', u'near'] [u'lombardi', u'win', u'stage', u'simoni', u'wait', u'victori'] [u'lomu', u'need', u'kidney', u'transplant'] [u'tanker', u'driver', u'charg', u'accid'] [u'madrid', u'setback', u'spanish', u'titl', u'race'] [u'charg', u'servic', u'station', u'hold'] [u'dead', u'lie', u'gold', u'coast', u'road'] [u'rainfal', u'show', u'unusu', u'pattern', u'meteorologist'] [u'mbeki', u'call', u'good', u'fund', u'promis'] [u'melbourn', u'head', u'stricter', u'water', u'control'] [u'head', u'maintain', u'xstrata', u'opposit'] [u'moder', u'quak', u'jolt', u'iran', u'casualti'] [u'modest', u'davenport', u'final'] [u'montoya', u'win', u'william', u'monaco'] [u'juic', u'fail', u'tickl', u'govt', u'tastebud'] [u'moseley', u'storm', u'content'] [u'door', u'polici', u'fail', u'mayor', u'constitu'] [u'vic', u'lead', u'ladder'] [u'univers', u'win', u'major', u'grant', u'fund'] [u'bumper', u'sticker', u'drive', u'scoresbi', u'messag', u'home'] [u'panther', u'punish', u'warrior', u'eel', u'rout', u'rabbitoh'] [u'penalti', u'stiff', u'world', u'pitch', u'invad'] [u'peopl', u'hospitalis', u'polic', u'chase'] [u'perri', u'remain', u'cours', u'second', u'straight'] [u'peru', u'return', u'calm'] [u'philippin', u'continu', u'offens', u'muslim'] [u'pilot', u'dead', u'accid'] [u'piston', u'coach'] [u'plenti', u'woomera', u'sale'] [u'reveal', u'futur', u'lib', u'convent'] [u'polic', u'charg', u'port', u'hedland', u'pair', u'wil', u'murder'] [u'polic', u'investig', u'longford'] [u'polic', u'investig', u'possibl', u'mass', u'drink', u'spike'] [u'polic', u'trade', u'gunfir', u'arm', u'stand'] [u'polit', u'offici', u'arrest', u'casablanca', u'blast'] [u'posit', u'russia', u'iran', u'close', u'putin'] [u'post', u'mortem', u'hold', u'tourist', u'death'] [u'preambl', u'aborigin', u'worri', u'ruddock'] [u'protest', u'block', u'road', u'near', u'summit'] [u'govt', u'hint', u'blue', u'card', u'chang'] [u'call', u'crimin', u'check', u'hospit'] [u'ranger', u'complet', u'scottish', u'trebl'] [u'remand', u'prison', u'dead', u'custodi'] [u'republican', u'movement', u'see', u'surg', u'membership'] [u'resid', u'contamin'] [u'robredo', u'roll', u'hewitt'] [u'robredo', u'roll', u'hewitt', u'costa', u'win', u'marathon'] [u'royal', u'park', u'woodland', u'project', u'begin', u'today'] [u'russia', u'iraq', u'differ'] [u'samuel', u'slat', u'supermarket', u'competit', u'review'] [u'recruit', u'direct', u'public'] [u'synod', u'debat', u'abus', u'probe', u'plan'] [u'seafood', u'council', u'critic', u'jetti', u'levi'] [u'secur', u'rais', u'ahead', u'protest'] [u'serena', u'battl', u'sugiyama'] [u'seventh', u'hong', u'kong', u'medic', u'die', u'sar'] [u'korea', u'fire', u'warn', u'shot', u'north', u'korean', u'fish'] [u'sorenstam', u'reaffirm', u'lpga', u'domin'] [u'student', u'reform', u'protest', u'parliament'] [u'coast', u'polic', u'recov', u'bodi', u'woman'] [u'set', u'most', u'pioneer', u'career'] [u'kyi', u'arrest', u'highlight', u'reconcili', u'urgenc'] [u'sweden', u'reject', u'action', u'stockholm', u'base'] [u'affect', u'smoke', u'depend', u'research'] [u'bird', u'strong', u'oriol'] [u'tear', u'anti', u'protest', u'ramp'] [u'tenant', u'remov', u'soil', u'contamin'] [u'time', u'lucki', u'glori', u'grand', u'final'] [u'tiger', u'shock', u'bulldog'] [u'toronto', u'report', u'sar', u'case'] [u'tougher', u'water', u'restrict', u'loom'] [u'toulous', u'stay', u'path', u'doubl'] [u'travel', u'slump', u'bottom', u'star', u'allianc'] [u'late', u'goal', u'auxerr', u'french'] [u'uniform', u'standard', u'assault', u'support'] [u'attack', u'franc', u'secur', u'confer'] [u'open', u'idea', u'north', u'korea', u'crisi'] [u'nistelrooy', u'want', u'kluivert', u'unit'] [u'venus', u'reach', u'fourth', u'round'] [u'wasp', u'thrash', u'gloucest', u'english', u'leagu', u'titl'] [u'william', u'say', u'privaci', u'factor', u'airlin', u'secur'] [u'william', u'silent', u'sydney', u'unit', u'claim'] [u'winter', u'onset', u'herald', u'whale', u'watch', u'season'] [u'women', u'charg', u'polic', u'assault'] [u'woomera', u'auction', u'rais'] [u'activ', u'destroy', u'aborigin', u'sit', u'research'] [u'aborigin', u'census', u'chang', u'accuraci'] [u'academ', u'add', u'weight', u'rehabilit', u'push'] [u'aceh', u'rebel', u'abduct', u'local', u'offici'] [u'ponder', u'expans', u'plan'] [u'agassi', u'moya', u'roll', u'join', u'newcom', u'verkerk'] [u'ord', u'follow', u'strong', u'wall', u'lead'] [u'ansett', u'levi', u'fund', u'secur', u'upgrad', u'labor'] [u'applic', u'lodg', u'buronga', u'supermarket'] [u'vote', u'takeov'] [u'asian', u'firm', u'piggeri'] [u'drown', u'pakistan', u'picnic', u'tragedi'] [u'aussi', u'hope', u'evan', u'tour', u'franc'] [u'australia', u'beat', u'india', u'pakistan', u'crash', u'field'] [u'australia', u'call', u'releas', u'burmes', u'opposit'] [u'australian', u'spender'] [u'aust', u'support', u'review', u'defenc', u'strategi'] [u'award', u'delight', u'fish', u'chip', u'shop', u'owner'] [u'bacon', u'rule', u'bladel', u'governorship'] [u'beachgoer', u'urg', u'track', u'turtl'] [u'beekeep', u'industri', u'abuzz', u'licenc'] [u'blair', u'hint', u'secret', u'file', u'iraq', u'weapon'] [u'blast', u'mastermind', u'face', u'court', u'bali'] [u'blue', u'timmin', u'pivot', u'bailey', u'bench'] [u'blue', u'timmin', u'pivot', u'bolter', u'bailey'] [u'boca', u'fightback', u'draw', u'river'] [u'bodi', u'think', u'miss', u'woman'] [u'bolter', u'bailey', u'shock', u'select'] [u'boundari', u'issu', u'scrutini'] [u'bridg', u'name', u'honour', u'pioneer', u'famili'] [u'briton', u'hodgson', u'foil', u'world', u'record'] [u'build', u'industri', u'soften', u'flat', u'hardest'] [u'burn', u'off', u'reduc', u'fuel'] [u'bush', u'chirac', u'hold', u'meet', u'iraq'] [u'busi', u'plan', u'adelaid', u'darwin', u'rail', u'link', u'revis'] [u'busi', u'sport', u'weekend', u'local', u'club'] [u'chang', u'bushfir', u'manag'] [u'releas', u'mangrov', u'dieback', u'report'] [u'calm', u'return', u'riot'] [u'canadian', u'sar', u'toll', u'rise'] [u'canberra', u'play', u'relay', u'role', u'mar', u'mission'] [u'cape', u'york', u'communiti', u'hous', u'revamp'] [u'carrol', u'expect', u'escap', u'suspens'] [u'cavali', u'sila', u'coach'] [u'chamber', u'defend', u'road', u'upgrad'] [u'chariti', u'launch', u'slum', u'theme', u'park'] [u'children', u'injuri', u'sydney'] [u'hold', u'land', u'studi'] [u'compo', u'report', u'find', u'fraud', u'level'] [u'confer', u'focus', u'feral', u'woe'] [u'congo', u'militia', u'claim', u'kill', u'near', u'bunia'] [u'congreg', u'gather', u'mark', u'queen', u'coron'] [u'council', u'approv', u'block', u'size', u'reduct'] [u'council', u'wooden', u'bridg'] [u'council', u'case', u'share', u'art', u'grant'] [u'court', u'hear', u'council', u'handl', u'petrol', u'station'] [u'cowboy', u'ladder', u'georg', u'defeat'] [u'deadlin', u'pass', u'defenc', u'land'] [u'defenc', u'dept', u'eye', u'action', u'climb', u'death'] [u'dept', u'pledg', u'treatment', u'birkenhead', u'complex'] [u'dfat', u'hold', u'inquiri', u'iraqi', u'document', u'leak'] [u'displac', u'resid', u'angri', u'toxic', u'soil'] [u'request', u'trade', u'halt'] [u'doctor', u'hope', u'lomu', u'kidney', u'search'] [u'doctor', u'work', u'long', u'presid'] [u'downer', u'say', u'iraq', u'intellig'] [u'east', u'gippsland', u'sawmil', u'worker', u'sack'] [u'emot', u'plea', u'win', u'chaplainci', u'fund'] [u'england', u'footbal', u'chief', u'play', u'hotel', u'brawl'] [u'european', u'space', u'mission', u'blast', u'mar'] [u'experiment', u'drug', u'offer', u'colon', u'cancer', u'patient'] [u'player', u'waugh', u'retir'] [u'express', u'seek', u'defenc', u'land'] [u'north', u'council', u'win', u'green', u'award'] [u'govt', u'dismiss', u'carr', u'region', u'airport', u'fear'] [u'fight', u'fergi', u'doesnt', u'rule'] [u'fist', u'film', u'launch'] [u'fitzgibbon', u'celebr', u'blue'] [u'flamengo', u'brazil', u'liedson', u'score'] [u'footbal', u'club', u'welcom', u'region', u'probe'] [u'frankston', u'get', u'life', u'mother', u'murder'] [u'fremantl', u'prison', u'descend', u'honour'] [u'cann', u'kilda', u'cracker', u'winner'] [u'fund', u'alloc', u'hospit'] [u'fund', u'hospit', u'children', u'unit'] [u'fund', u'help', u'bridg', u'transport', u'problem'] [u'gallop', u'call', u'support', u'nyoongah', u'camp', u'closur'] [u'gebrselassi', u'beat', u'return', u'track'] [u'giro', u'victori', u'dream', u'come', u'true', u'simoni'] [u'glori', u'face', u'player', u'exodus'] [u'govt', u'extend', u'reef', u'protect', u'zone'] [u'govt', u'releas', u'reef', u'protect', u'plan'] [u'grain', u'harvest', u'predict', u'question'] [u'green', u'win', u'chase', u'johnson', u'time'] [u'green', u'hold', u'plan', u'law', u'balanc'] [u'hegarti', u'replac', u'injur', u'robbi'] [u'hegarti', u'replac', u'odavi', u'kennedi', u'doubt'] [u'hegarti', u'replac', u'odavi', u'timmin', u'edg', u'anasta'] [u'hird', u'clear', u'ratten', u'sidelin', u'break'] [u'hodg', u'hard', u'blue', u'handl', u'mile'] [u'hoon', u'footbal', u'grind'] [u'hospit', u'reach', u'settlement', u'disabl', u'case'] [u'ponder', u'world', u'game'] [u'indonesia', u'claim', u'rebel', u'kill', u'battl'] [u'indonesia', u'summon', u'envoy', u'sweden', u'base', u'aceh'] [u'inland', u'rail', u'chief', u'challeng', u'deputi'] [u'inquiri', u'find', u'fault', u'nepal', u'tragedi'] [u'inquiri', u'look', u'church', u'child', u'abus', u'claim'] [u'iraq', u'weapon', u'mass', u'destruct'] [u'japanes', u'photograph', u'jail', u'fatal', u'souvenir'] [u'jonah', u'lomu', u'rugbi', u'icon'] [u'kennedi', u'injuri', u'cloud'] [u'king', u'answer', u'charg'] [u'librari', u'claim', u'earliest', u'cook', u'portrait'] [u'littl', u'show', u'wiradjuri', u'heritag', u'report'] [u'llewellyn', u'indemn', u'pledg', u'write'] [u'lobbi', u'group', u'slam', u'reef', u'protect', u'plan'] [u'lobster', u'fisher', u'urg', u'seek', u'vote', u'plan'] [u'mackay', u'prepar', u'tourism', u'boost'] [u'dead', u'hour', u'sieg'] [u'manufactur', u'sector', u'slow'] [u'maori', u'look', u'racial', u'select'] [u'maroon', u'shaki', u'start'] [u'martinez', u'clijster'] [u'mayn', u'share', u'higher', u'posit', u'news'] [u'mayor', u'back', u'airport', u'secur', u'review'] [u'mayor', u'seek', u'drought'] [u'mccartney', u'wind', u'world', u'tour', u'beatl', u'hit'] [u'minist', u'defend', u'airport', u'search', u'power'] [u'montgomeri', u'put', u'extra', u'work', u'open'] [u'montoya', u'win', u'william', u'monaco'] [u'music', u'messag', u'arnhem', u'land', u'school'] [u'muslim', u'rebel', u'start', u'ceasefir', u'philippin'] [u'head', u'criticis', u'region', u'train', u'scheme'] [u'jail', u'recruit', u'staff'] [u'newman', u'hold', u'gordon', u'dover', u'victori'] [u'newman', u'hold', u'gordon', u'victori', u'dover'] [u'taskforc', u'help', u'protect', u'vulner', u'consum'] [u'korea', u'say', u'reprocess', u'near'] [u'chang', u'spain'] [u'clear', u'proof', u'nuclear', u'weapon', u'south', u'korea'] [u'oppn', u'alleg', u'polic', u'fund', u'shortfal'] [u'pacif', u'send', u'mix', u'weather', u'signal', u'forecast'] [u'parliament', u'debat', u'prostat', u'fund'] [u'parliament', u'honour', u'queen', u'coron', u'anniversari'] [u'parri', u'council', u'meet', u'kelli', u'futur'] [u'pasminco', u'ask', u'break'] [u'patrol', u'address', u'drunken', u'homeless'] [u'perec', u'train', u'hamper', u'sciatica'] [u'perri', u'hold', u'second', u'success', u'victori'] [u'pilot', u'unscath', u'emerg', u'land'] [u'reject', u'region', u'airport', u'secur', u'boost'] [u'polic', u'defend', u'hunter', u'sieg', u'handl'] [u'polic', u'issu', u'safeti', u'remind', u'teen', u'driver'] [u'polic', u'memori', u'unveil'] [u'polic', u'ultralight', u'crash', u'victim'] [u'polic', u'negoti', u'call', u'resolv', u'disput'] [u'polic', u'probe', u'alleg', u'leak', u'workplac'] [u'polic', u'probe', u'arm', u'hold'] [u'polic', u'releas', u'liken', u'flash', u'suspect'] [u'polic', u'seek', u'help', u'hunt', u'bandit'] [u'polic', u'seek', u'detail'] [u'polic', u'thwart', u'nudist', u'picnic', u'london'] [u'polic', u'unhappi', u'teen', u'behaviour'] [u'polic', u'wait', u'interview', u'ship', u'crew'] [u'poll', u'put', u'pressur', u'crean'] [u'poulter', u'pace', u'catch'] [u'premier', u'cabinet', u'head', u'jindabyn'] [u'python', u'quot', u'spark', u'media', u'stoush'] [u'govt', u'reconsid', u'sugar', u'law'] [u'remain', u'sar', u'watch'] [u'oppn', u'want', u'budget', u'rein', u'balloon'] [u'question', u'polic', u'access', u'babi', u'record'] [u'ranger', u'need', u'reinforc', u'say', u'mcleish'] [u'ratten', u'sidelin', u'break'] [u'fisher', u'angri', u'reef', u'green', u'zone', u'plan'] [u'record', u'crowd', u'ferri'] [u'cross', u'help', u'deliv', u'messag', u'iraq'] [u'regim', u'chang', u'agenda', u'north', u'korea'] [u'region', u'airport', u'like', u'casualti', u'secur'] [u'research', u'target', u'super', u'vaccin'] [u'robbi', u'rule'] [u'robbi', u'rule', u'timmin', u'edg', u'anasta'] [u'samudra', u'trial', u'adjourn'] [u'saudi', u'shoot', u'possibl', u'link', u'riyadh', u'bomb'] [u'wast', u'dump', u'stoush', u'heat'] [u'seagul', u'ladder', u'south', u'logan'] [u'senat', u'claim', u'region', u'airport', u'safe'] [u'shire', u'talk', u'council', u'merger', u'minist'] [u'skaif', u'name', u'owner', u'holden', u'race', u'team'] [u'sorenstam', u'return', u'triumph', u'lpga', u'tour'] [u'spin', u'doctor', u'rush', u'cure', u'indian', u'cricket'] [u'sptafl'] [u'steal', u'good', u'identifi'] [u'stop', u'work', u'meet', u'impact', u'illawarra'] [u'strike', u'crippl', u'industri', u'bosch', u'manag'] [u'student', u'formul', u'fee', u'battl', u'plan'] [u'submiss', u'flow', u'bushfir', u'probe'] [u'detain', u'anti', u'govt', u'clash'] [u'injur', u'kill', u'crackdown'] [u'take', u'rangoon', u'aust', u'demand', u'releas'] [u'takeov', u'wont', u'affect', u'rolleston', u'project', u'xstrata'] [u'talk', u'equit', u'council', u'rat'] [u'tascoss', u'welcom', u'accc', u'consum', u'protect'] [u'forestri', u'bodi', u'complaint', u'uphold'] [u'govt', u'urg', u'look', u'possibl'] [u'task', u'forc', u'form', u'water', u'model'] [u'tassi', u'cadet', u'win', u'award'] [u'teen', u'die', u'soccer', u'match'] [u'teen', u'injur', u'tweed', u'blast'] [u'thug', u'cost', u'england', u'euro', u'place', u'sven'] [u'transport', u'dept', u'focus', u'contract'] [u'trial', u'alleg', u'bali', u'bomb', u'mastermind', u'open'] [u'trio', u'face', u'court', u'brawl'] [u'trucki', u'die', u'road', u'crash'] [u'tsvangirai', u'arrest', u'harar'] [u'tsvangirai', u'releas', u'protest', u'arrest'] [u'chief', u'reject', u'fund', u'bonus', u'union'] [u'union', u'lament', u'merger', u'plan', u'scrap'] [u'resum', u'month', u'food', u'ration', u'iraq'] [u'scrap', u'iraq', u'confer'] [u'militari', u'seek', u'busi', u'support'] [u'loosen', u'media', u'ownership', u'rein'] [u'utrecht', u'thrash', u'feyenoord', u'lift', u'dutch'] [u'venus', u'capriati', u'mull', u'shock', u'defeat'] [u'vice', u'chancellor', u'reject', u'plan', u'educ', u'chang'] [u'victoria', u'offer', u'reward', u'murder'] [u'villeneuv', u'cost', u'kimi', u'victori', u'denni'] [u'violent', u'anti', u'protest', u'swiss', u'citi'] [u'warn', u'issu', u'storm', u'bear', u'taiwan'] [u'warn', u'shot', u'fire', u'korean', u'confront'] [u'welsh', u'valley', u'time', u'forget', u'emerg', u'dark'] [u'west', u'indi', u'blast', u'wicket'] [u'wheat', u'virus', u'quarantin', u'program', u'cancel'] [u'caution', u'china', u'sar', u'case', u'declin'] [u'workshop', u'focus', u'improv', u'town'] [u'work', u'start', u'leonora', u'desalin', u'plant'] [u'yarrowlumla', u'fight', u'job', u'servic'] [u'yoko', u'refus', u'chang', u'lennon', u'mccartney', u'order'] [u'zimbabw', u'alert', u'activist', u'gear', u'protest'] [u'suspend', u'wagin', u'radio', u'licenc'] [u'aborigin', u'communiti', u'boost', u'literaci', u'level'] [u'totalcar', u'worker', u'job', u'limbo'] [u'raid', u'home', u'capit'] [u'agforc', u'cautious', u'growth', u'outlook'] [u'agenc', u'accus', u'promis', u'hunger'] [u'airport', u'secur', u'boost', u'expens', u'council'] [u'albani', u'host', u'diabet', u'trial'] [u'ord', u'drag', u'blue', u'chip'] [u'halt', u'trade'] [u'amoruso', u'admit', u'ranger', u'sojourn'] [u'anonym', u'donor', u'answer', u'swan', u'fund'] [u'control', u'scheme', u'win', u'green', u'award'] [u'anti', u'terror', u'head', u'prais', u'effort', u'track'] [u'appeal', u'bridgetown', u'south', u'west'] [u'ardil', u'coach', u'tokyo', u'verdi'] [u'armi', u'crash', u'inquiri', u'inconclus'] [u'asean', u'brainstorm', u'tactic', u'deal', u'terror'] [u'august', u'date', u'desalin', u'plant', u'work'] [u'aussi', u'ogilvi', u'qualifi', u'open'] [u'australia', u'work', u'exercis'] [u'australia', u'hard', u'stop', u'world', u'eal'] [u'award', u'recognis', u'nurs', u'effort'] [u'bali', u'offici', u'ask', u'lift', u'travel', u'warn'] [u'basslink', u'electr', u'doubt', u'cost', u'overrun'] [u'basslink', u'project', u'blow', u'million'] [u'bayern', u'lose', u'hope', u'makaay'] [u'beckham', u'kidnap', u'trial', u'throw', u'court'] [u'beckham', u'plea', u'england', u'hooligan'] [u'beekeep', u'beecroft', u'peninsula', u'repriev'] [u'belgian', u'minist', u'campaign', u'francorchamp'] [u'bell', u'renew', u'call', u'age', u'care', u'facil'] [u'reward', u'offer', u'clue', u'bendigo', u'murder'] [u'boomer', u'play', u'czech', u'republ'] [u'brazin', u'bid', u'privat'] [u'build', u'approv', u'rise'] [u'burma', u'junta', u'say', u'safe'] [u'burrup', u'peninsula', u'get', u'scale', u'methanol', u'plant'] [u'bush', u'arriv', u'egypt', u'peac', u'talk'] [u'bush', u'launch', u'mideast', u'peac', u'mission'] [u'bush', u'mubarak', u'begin', u'summit', u'talk'] [u'cafe', u'owner', u'rebuild', u'blaze'] [u'carrol', u'clear', u'battl', u'blue'] [u'cavali', u'confirm', u'sila', u'coach'] [u'church', u'dioces', u'reject', u'femal', u'priest'] [u'cipollini', u'definit', u'tour', u'franc'] [u'citizenship', u'philippin', u'fugit'] [u'coat', u'arm', u'theft', u'trial', u'place'] [u'committe', u'recommend', u'freehold', u'packag'] [u'commonwealth', u'game', u'boss', u'deni', u'power'] [u'compani', u'criticis', u'tardi', u'recal'] [u'complementari', u'healthcar', u'council', u'reject', u'backyard'] [u'concern', u'air', u'feder', u'budget', u'respons'] [u'costello', u'happi', u'commit', u'deputi', u'role'] [u'costello', u'aspir'] [u'council', u'hear', u'commerci', u'develop', u'plan'] [u'councillor', u'sport', u'centr', u'master', u'plan'] [u'council', u'set', u'asid', u'green', u'fund'] [u'court', u'hear', u'submiss', u'elliott', u'penalti'] [u'cowboy', u'pair', u'origin'] [u'cricket', u'commemor', u'cronj', u'death'] [u'crock', u'england', u'face', u'serb', u'test'] [u'cwealth', u'warn', u'cost', u'wast', u'dump', u'fight'] [u'cycl', u'world', u'rank'] [u'dairi', u'farmer', u'milk', u'farm', u'gate'] [u'dairi', u'farmer', u'protest', u'factori', u'plan'] [u'david', u'jone', u'chairman', u'fall', u'sword'] [u'daylight', u'rape', u'victim', u'claim', u'wit', u'ignor'] [u'dead', u'control', u'devic', u'fail', u'safe', u'waterfal'] [u'debt', u'hit', u'deficit', u'peg'] [u'delay', u'water', u'plan', u'review'] [u'democrat', u'criticis', u'ruddock', u'method'] [u'detent', u'troop', u'persian', u'gulf'] [u'chairman', u'foodchain', u'store'] [u'doctor', u'agre', u'medic', u'indemn', u'cover'] [u'dont', u'lose', u'snooz', u'portug', u'activist'] [u'driver', u'prais', u'long', u'weekend', u'effort'] [u'drought', u'deadlin', u'approach'] [u'guerrouj', u'join', u'freeman', u'gateshead', u'meet'] [u'elliott', u'submiss', u'continu', u'tomorrow'] [u'festiv', u'delv', u'realm', u'hope', u'fear'] [u'fingleton', u'deni', u'accept', u'critic'] [u'formula', u'young', u'lion', u'claw'] [u'dead', u'injur', u'colombia', u'blast', u'armi'] [u'franc', u'zidan', u'confeder'] [u'frenchman', u'arrest', u'suicid', u'attack'] [u'french', u'open', u'quot'] [u'funer', u'honour', u'polic', u'mountain'] [u'leader', u'unit', u'stand', u'iraq'] [u'game', u'boss', u'deni', u'power', u'rein'] [u'glori', u'fan', u'brave', u'rain', u'applaud', u'player'] [u'govt', u'accus', u'dalli', u'sydney', u'rail', u'link'] [u'govt', u'fund', u'help', u'bridg', u'road', u'woe'] [u'grace', u'bros', u'close', u'bathurst', u'store'] [u'grain', u'committe', u'report', u'defend'] [u'group', u'consid', u'shark', u'protect', u'scheme'] [u'group', u'highlight', u'high', u'alcohol', u'content', u'sale'] [u'gunner', u'target', u'emerton', u'kewel', u'report'] [u'defend', u'bailey', u'choic'] [u'defend', u'bailey', u'select'] [u'hall', u'fame', u'coach', u'larri', u'brown', u'spark', u'piston'] [u'hansen', u'delv', u'deep', u'reserv', u'lose', u'star'] [u'harrigan', u'control', u'origin'] [u'highway', u'plan', u'oppon'] [u'hop', u'rise', u'treatment', u'diseas'] [u'howard', u'stay'] [u'howard', u'stay', u'costello', u'vow', u'support'] [u'hussain', u'save', u'career', u'say', u'harmison'] [u'indemn', u'cost', u'chase', u'doctor', u'babi'] [u'indigen', u'protest', u'plan', u'roadwork'] [u'indonesian', u'soldier', u'trial', u'aceh', u'beat'] [u'indoor', u'site', u'seek', u'equestrian', u'event'] [u'industri', u'accept', u'wheat', u'streak', u'virus'] [u'insur', u'withdraw', u'liabil', u'cover', u'landcar'] [u'rat', u'expect', u'remain', u'unchang'] [u'iron', u'blow', u'lopez', u'away', u'fiji', u'final'] [u'iron', u'good', u'powel', u'fiji'] [u'jacklin', u'appoint', u'rest', u'world', u'captain'] [u'jadeja', u'return', u'cricket', u'bang'] [u'kennedi', u'confid', u'origin', u'fit'] [u'kidney', u'diseas', u'rat', u'highlight', u'need'] [u'king', u'beat', u'charg'] [u'kiwi', u'wright', u'plot', u'black', u'cap', u'downfal'] [u'kuerten', u'samba', u'rhythm'] [u'labor', u'leadership', u'spill', u'grow', u'like'] [u'launceston', u'council', u'approv', u'cinema', u'complex'] [u'liber', u'welcom', u'howard', u'decis', u'stay'] [u'light', u'plane', u'crash', u'near', u'byron'] [u'mackenroth', u'pledg', u'surplus', u'springborg', u'doubt'] [u'major', u'upgrad', u'higgin', u'shop', u'centr'] [u'citi', u'celebr', u'return', u'europ'] [u'fight', u'life', u'machet', u'attack'] [u'injur', u'fall'] [u'face', u'court', u'bash', u'murder'] [u'mccartney', u'honour', u'bali', u'dead'] [u'mclaren', u'boss', u'expect', u'tough', u'time', u'canada'] [u'medic', u'research', u'tout', u'bigger'] [u'meet', u'push', u'fast', u'train', u'fine', u'tune'] [u'melbourn', u'rat', u'rise'] [u'minist', u'offer', u'ferri', u'assur'] [u'mix', u'respons', u'draft', u'reef', u'plan'] [u'moratorium', u'seek', u'murray', u'darl', u'irrig', u'work'] [u'effort', u'seek', u'youth', u'region', u'area'] [u'reef', u'plan', u'concern'] [u'navi', u'rescu', u'injur', u'rower'] [u'stage', u'season', u'game', u'china'] [u'face', u'name', u'aussi', u'swim', u'team'] [u'hope', u'neglect', u'hors'] [u'medic', u'centr', u'open'] [u'nickel', u'deposit', u'drill', u'start'] [u'nicki', u'butt', u'quiz', u'nightclub', u'assault', u'claim'] [u'kidd', u'star', u'guard', u'face', u'final'] [u'word', u'shelv', u'retir', u'plan'] [u'govt', u'consid', u'lesbian', u'reform'] [u'paton', u'world', u'team'] [u'pedestrian', u'kill', u'tasmania', u'north', u'west'] [u'perri', u'eye', u'chicago', u'confid'] [u'perth', u'airport', u'taxi', u'doubl'] [u'perth', u'guilti', u'babi', u'shake', u'case'] [u'picasso', u'work', u'lose', u'subway'] [u'plan', u'protect', u'geraldton', u'foreshor'] [u'polic', u'enjoy', u'long', u'weekend', u'relat', u'calm'] [u'polic', u'issu', u'warn', u'licens'] [u'polic', u'memori', u'unveil'] [u'polic', u'water', u'cannon', u'cool', u'protest'] [u'politician', u'urg', u'interven', u'doctor', u'woe'] [u'prosecutor', u'hand', u'mukhla', u'indict'] [u'protest', u'voic', u'concern', u'burmes', u'opposit'] [u'budget', u'deficit', u'better', u'expect'] [u'race', u'club', u'move', u'race', u'meet'] [u'rann', u'reject', u'wast', u'dump', u'threat'] [u'riverina', u'council', u'join', u'shire', u'associ'] [u'rivkin', u'make', u'ditch', u'appeal', u'avoid', u'jail'] [u'rockhampton', u'consid', u'solut'] [u'rocki', u'ride', u'charter', u'boat', u'oper'] [u'rolleston', u'mine', u'leas', u'grant'] [u'meat', u'readi', u'export'] [u'ruddock', u'discret', u'timores', u'refuge'] [u'sack', u'sawmil', u'worker', u'seek', u'compo'] [u'govt', u'respond', u'develop', u'concern'] [u'govt', u'welcom', u'road', u'safeti', u'law'] [u'independ', u'support', u'murray', u'levi', u'plan'] [u'second', u'stone', u'appeal', u'begin', u'nigeria'] [u'senior', u'member', u'releas', u'prison'] [u'shark', u'mother', u'hit', u'hole'] [u'shire', u'speak', u'boundari', u'concern'] [u'visitor', u'help', u'cancer', u'treatment'] [u'simoni', u'challeng', u'armstrong', u'ride', u'giro'] [u'slide', u'scale', u'fin', u'rich', u'govt'] [u'smelter', u'project', u'port', u'piri', u'review'] [u'social', u'snapshot', u'show', u'young', u'popul'] [u'sorenstam', u'prime', u'major', u'form'] [u'specul', u'mount', u'ferri', u'servic'] [u'sptnrl'] [u'spur', u'look', u'jump', u'rusti', u'net', u'final'] [u'korea', u'fire', u'warn', u'shot'] [u'straeuli', u'say', u'springbok', u'better', u'home'] [u'strike', u'action', u'threaten', u'offer'] [u'student', u'geographi', u'skill', u'pay'] [u'studi', u'focus', u'communic', u'technolog'] [u'summit', u'address', u'indigen', u'issu'] [u'survey', u'highlight', u'skill', u'shortag'] [u'swan', u'boost', u'anonym', u'donat'] [u'swan', u'deni', u'player', u'cut'] [u'swan', u'seek', u'futur', u'fund'] [u'sydney', u'wharv', u'shut', u'union', u'leader'] [u'tariff', u'cut', u'mean', u'loss', u'textil', u'council'] [u'east', u'coast', u'record', u'autumn', u'fall'] [u'tasmania', u'examin', u'bioherbicid', u'option'] [u'textil', u'worker', u'protest', u'plan', u'tariff', u'cut'] [u'thousand', u'attend', u'funer', u'special', u'chief'] [u'tongan', u'king', u'launch', u'curb', u'court'] [u'toowoomba', u'bakeri', u'close', u'door'] [u'tough', u'sexual', u'offenc', u'law', u'introduc'] [u'tuna', u'manag', u'plan', u'move', u'closer'] [u'turinui', u'doubt', u'ireland', u'clash'] [u'injur', u'istanbul', u'bomb', u'attack'] [u'kill', u'ultra', u'light', u'crash'] [u'ullrich', u'test', u'tour', u'form', u'home', u'event'] [u'envoy', u'visit', u'burma'] [u'union', u'caution', u'sale'] [u'congress', u'examin', u'iraq', u'weapon', u'intellig'] [u'soldier', u'kill', u'iraqi', u'checkpoint'] [u'lib', u'question', u'speed', u'camera', u'revenu'] [u'opposit', u'air', u'speed', u'camera', u'revenu', u'concern'] [u'viduka', u'stay', u'claim', u'leed', u'supremo'] [u'visit', u'academ', u'voic', u'terror', u'view'] [u'governor', u'address', u'western', u'wise', u'network'] [u'govt', u'pursu', u'close', u'aborigin', u'camp'] [u'watt', u'athen', u'comeback'] [u'worker', u'shun', u'union'] [u'weaken', u'irish', u'remain', u'confid', u'aussi'] [u'wesfarm', u'lumley', u'insur', u'group'] [u'whale', u'watch', u'season'] [u'windi', u'batsmen', u'hand', u'rat', u'boost'] [u'woodward', u'confid', u'ahead', u'tour'] [u'work', u'begin', u'health', u'clinic'] [u'workshop', u'focus', u'youth', u'scheme'] [u'zimbabwean', u'squad', u'polit', u'vet', u'claim'] [u'injur', u'pari', u'explos'] [u'kill', u'spanish', u'train', u'collis'] [u'aborigin', u'outstat', u'neglect', u'say'] [u'accid', u'inquiri', u'urg', u'safeti', u'review'] [u'accus', u'testifi', u'amrozi', u'trial'] [u'centuri', u'everyday', u'eye'] [u'suprem', u'court', u'give', u'firework', u'thumb'] [u'agassi', u'moya', u'serena', u'storm', u'semi'] [u'age', u'care', u'centr', u'face', u'uncertainti'] [u'forc', u'receiv', u'bomb'] [u'alston', u'busi', u'leader', u'vouch', u'elliott'] [u'american', u'martin', u'nab', u'european', u'literari', u'prize'] [u'amnesti', u'seek', u'honesti', u'tiananmen', u'figur'] [u'jesus', u'say', u'peopl', u'boofhead'] [u'anthoni', u'welcom', u'leadership', u'decis'] [u'dead', u'amman', u'tanker'] [u'injur', u'pari', u'blast'] [u'atsic', u'chief', u'label', u'mainstream', u'media', u'arrog'] [u'atsic', u'discuss', u'paper', u'close', u'complet'] [u'aussi', u'replac', u'mcgeechan', u'scottish'] [u'aussi', u'dollar', u'soar', u'european', u'trade'] [u'australian', u'command', u'honour', u'iraq', u'servic'] [u'australian', u'doctor', u'trial', u'vaccin'] [u'australian', u'mine', u'sector', u'go', u'onlin'] [u'baildon', u'unhappi', u'budget'] [u'banana', u'industri', u'meet', u'cairn'] [u'banana', u'industri', u'meet', u'townsvill'] [u'bank', u'drag', u'aussi', u'market'] [u'bash', u'victim', u'face', u'lawsuit', u'crash'] [u'baxter', u'detaine', u'strike'] [u'biscuit', u'maker', u'tempt', u'settlement'] [u'blix', u'brief', u'latest', u'inspect', u'result'] [u'brisban', u'citi', u'council', u'present', u'nonsens', u'budget'] [u'brother', u'take', u'stand', u'amrozi', u'trial'] [u'brown', u'say', u'costello', u'better', u'leader', u'howard'] [u'buckley', u'call', u'return', u'state', u'origin'] [u'budget', u'bypass', u'crown', u'thorn', u'fund'] [u'budget', u'deliv', u'sport', u'boost'] [u'budget', u'offer', u'health', u'boost'] [u'budget', u'offer', u'surpris'] [u'bulldog', u'norton', u'travel', u'north'] [u'bureau', u'warn', u'wild', u'weather', u'adelaid'] [u'bush', u'arab', u'leader', u'agre', u'peac', u'move'] [u'bush', u'jordan', u'peac', u'summit'] [u'bush', u'meet', u'leader', u'ahead', u'summit'] [u'bush', u'meet', u'mideast', u'leader', u'discuss', u'peac', u'roadmap'] [u'bush', u'prepar', u'meet', u'middl', u'east', u'leader'] [u'bush', u'vers', u'pick', u'rail', u'rhythm'] [u'rate', u'freez', u'help', u'drought', u'stricken'] [u'campaign', u'urg', u'basslink', u'plan', u'scrap'] [u'campaign', u'address', u'stormwat'] [u'campaign', u'educ', u'public', u'dengu', u'risk'] [u'carr', u'reform', u'threat', u'anger', u'council'] [u'case', u'keep', u'virus', u'locat', u'secret'] [u'ceremoni', u'honour', u'medal', u'recipi'] [u'cherri', u'ventur', u'declar', u'danger'] [u'chirac', u'put', u'australia', u'trip'] [u'claim', u'wine', u'industri', u'tough'] [u'clark', u'call', u'unit', u'fight', u'nativ', u'titl'] [u'committe', u'manag', u'jurien', u'jetti'] [u'compani', u'announc'] [u'concern', u'air', u'vote', u'count'] [u'concern', u'delay', u'polyclin', u'decis'] [u'concern', u'rais', u'basslink', u'power', u'cost'] [u'council', u'hear', u'defenc', u'land', u'concern'] [u'council', u'probe', u'altern', u'energi', u'technolog'] [u'council', u'seek', u'airport', u'studi'] [u'council', u'want', u'fifth', u'warrnambool', u'primari', u'school'] [u'countri', u'fail', u'kyoto', u'agreement'] [u'crow', u'nurs', u'injur', u'player', u'health'] [u'csiro', u'begin', u'replant', u'virus', u'scare'] [u'csiro', u'deni', u'sell', u'ship', u'dirt', u'cheap'] [u'democrat', u'court', u'nativ', u'titl', u'process'] [u'devonport', u'make', u'bass', u'strait', u'ferri'] [u'doctor', u'group', u'merg'] [u'dominican', u'republ', u'clinch', u'miss', u'univers'] [u'dont', u'judg', u'costello', u'smirk', u'brother', u'say'] [u'doubt', u'cast', u'work', u'hour', u'review'] [u'downer', u'say', u'solomon', u'possibl'] [u'driver', u'educ', u'school', u'face', u'uncertain', u'futur'] [u'dunkin', u'give', u'month', u'rmit', u'cash', u'woe'] [u'england', u'itali', u'form', u'ahead', u'euro'] [u'timor', u'welcom', u'perman', u'resid', u'move'] [u'fall', u'park', u'hospit'] [u'farm', u'famili', u'number', u'declin'] [u'fatal', u'gunshot', u'dungog', u'sieg', u'self', u'inflict'] [u'femal', u'scorer', u'histori', u'lord'] [u'firm', u'consolid', u'servic'] [u'forb', u'councillor', u'local', u'govt', u'role'] [u'freeman', u'expect', u'toll'] [u'end', u'pledg', u'rebuild', u'iraq'] [u'expect', u'increas', u'slight'] [u'tell', u'beazley'] [u'govt', u'resist', u'call', u'iraq', u'intellig', u'probe'] [u'greenspan', u'play', u'deflat', u'talk'] [u'green', u'govt', u'lie', u'council', u'amalgam'] [u'group', u'budget', u'blue'] [u'growth', u'target', u'despit', u'drought'] [u'harri', u'delv', u'thoma', u'wale', u'squad'] [u'health', u'winner', u'budget'] [u'health', u'servic', u'urg', u'review', u'anaesthetist'] [u'hobart', u'mayor', u'call', u'realist', u'approach', u'ferri'] [u'hope', u'special', u'dictionari'] [u'hospit', u'store', u'brain', u'permiss'] [u'hoteli', u'ponder', u'futur'] [u'howard', u'defend', u'cellar'] [u'howard', u'face', u'student', u'grill'] [u'hussain', u'seek', u'cast', u'second', u'zimbabw', u'test'] [u'atheist', u'pastor', u'declar'] [u'incom', u'shire', u'presid', u'say', u'state', u'relationship'] [u'india', u'get', u'relief', u'dead', u'heatwav'] [u'indigen', u'corpor', u'lament', u'water', u'woe'] [u'indonesia', u'close', u'aceh', u'water', u'foreign', u'ship'] [u'insur', u'problem', u'stop', u'sid', u'program'] [u'rat', u'remain', u'hold'] [u'investor', u'bank', u'announc'] [u'jindabyn', u'cabinet', u'meet', u'prove', u'posit'] [u'johnson', u'wait', u'test', u'chanc'] [u'judg', u'consid', u'elliott', u'penalti'] [u'juri', u'expect', u'consid', u'fingleton', u'verdict', u'today'] [u'kennedi', u'tip', u'overcom', u'hamstr', u'injuri'] [u'kewel', u'commit', u'leed'] [u'king', u'brother', u'face', u'court', u'fraud', u'charg'] [u'kiwi', u'build', u'cruis', u'missil'] [u'labor', u'propos', u'workplac', u'relat', u'chang'] [u'assess', u'rural', u'road', u'complaint'] [u'liber', u'threaten', u'quit', u'nyungar', u'camp'] [u'lightn', u'blame', u'refineri'] [u'lioness', u'serena', u'savag', u'mauresmo'] [u'lose', u'bike', u'rider', u'cool'] [u'lucki', u'save', u'unit'] [u'main', u'point', u'peac', u'roadmap'] [u'face', u'charg', u'court'] [u'jail', u'bash', u'cell'] [u'east', u'timores', u'leav', u'limbo', u'bishop'] [u'mayor', u'happi', u'carr', u'meet'] [u'melbourn', u'shoot', u'plan', u'attack', u'polic'] [u'middl', u'east', u'summit', u'start', u'jordan'] [u'minist', u'meet', u'vice', u'chancellor', u'feder'] [u'mix', u'respons', u'state', u'budget'] [u'mori', u'cap', u'fine', u'week', u'player', u'player', u'award'] [u'mundin', u'titl', u'fight', u'ahead'] [u'mundin', u'second', u'chanc', u'world', u'belt'] [u'nat', u'agricultur', u'school'] [u'natwa'] [u'navi', u'near', u'rower'] [u'set', u'season', u'game', u'pari', u'barcelona'] [u'judg', u'timor', u'justic', u'boost'] [u'lord', u'mayor', u'bring', u'brisban', u'budget'] [u'resort', u'announc', u'mackay', u'region'] [u'stand', u'lift', u'crowd', u'capac', u'adelaid', u'oval'] [u'tourism', u'strategi', u'focus', u'bunya', u'countri'] [u'korea', u'link', u'south', u'korea', u'drug', u'haul'] [u'evid', u'drink', u'spike', u'bathurst', u'parti'] [u'govt', u'decid', u'rail', u'line', u'upgrad'] [u'oppn', u'propos', u'litter', u'collect', u'punish'] [u'need', u'extra', u'hospit', u'say', u'minist'] [u'close', u'high', u'commiss', u'typhoid', u'scare'] [u'omnimedia', u'expect', u'stewart', u'face', u'crimin', u'charg'] [u'onlin', u'boost', u'mine', u'sector'] [u'parliament', u'welcom', u'iraq', u'command', u'home'] [u'pasminco', u'meet', u'govt', u'discuss', u'assist'] [u'disput', u'halt', u'beer', u'product'] [u'petrol', u'station', u'undergo', u'random', u'check'] [u'pistol', u'club', u'fire', u'handgun', u'polici'] [u'plan', u'west', u'servic'] [u'say', u'chanc', u'costello', u'rift'] [u'polic', u'hunt', u'melbourn', u'gunman'] [u'policeman', u'plead', u'guilti', u'assault', u'charg'] [u'policeman', u'surpris', u'rape', u'sentenc', u'appeal', u'dismiss'] [u'polic', u'suspici', u'crack', u'lynn', u'window'] [u'polic', u'probe', u'alic', u'assault'] [u'polic', u'raid', u'link', u'iranian', u'group'] [u'possibl', u'court', u'link', u'melbourn', u'shoot'] [u'possibl', u'flight', u'spark', u'secur', u'probe'] [u'public', u'urg', u'wool', u'special'] [u'chief', u'magistr', u'convict'] [u'chief', u'magistr', u'jail', u'plan', u'appeal'] [u'race', u'club', u'reappli', u'meet', u'melbourn'] [u'rail', u'crash', u'train', u'guard', u'defend', u'poor', u'recal'] [u'rann', u'seek', u'support', u'final', u'outsid', u'melbourn'] [u'region', u'suggest', u'joint', u'fund', u'airport', u'secur'] [u'report', u'prepar', u'ultralight', u'fatal'] [u'report', u'highlight', u'fall', u'popul'] [u'research', u'link', u'mole', u'melanoma', u'risk'] [u'restaurateur', u'plead', u'guilti', u'sell', u'taint', u'pork'] [u'restrict', u'lift', u'canberra', u'csiro'] [u'retail', u'employ', u'drop', u'melbourn'] [u'rise', u'name', u'garden', u'citi'] [u'rotari', u'award', u'honour', u'unesco', u'head'] [u'rowl', u'go', u'onlin', u'potter', u'launch'] [u'govt', u'reject', u'develop', u'hold', u'claim'] [u'govt', u'ministeri', u'offic'] [u'opposit', u'attack', u'budget'] [u'sculli', u'talk', u'road', u'tamworth'] [u'slug', u'enlist', u'barnacl', u'fight'] [u'secker', u'back', u'leadership'] [u'senat', u'oppos', u'nation', u'water', u'right', u'trade'] [u'shire', u'oppos', u'boundari', u'chang'] [u'shire', u'drainag', u'channel', u'concern'] [u'shirvington', u'finish', u'fifth', u'montgomeri'] [u'south', u'african', u'montgomeri', u'ban', u'shove'] [u'stone', u'case', u'adjourn', u'nigeria'] [u'strike', u'worker', u'agre', u'meet', u'union'] [u'studi', u'focus', u'galaxi', u'origin'] [u'supercomput', u'help', u'preserv', u'water'] [u'support', u'claim', u'inquiri', u'grow'] [u'swiss', u'polic', u'protest', u'arrest'] [u'talk', u'focus', u'tackl', u'wheat', u'virus'] [u'tamil', u'tiger', u'reject', u'lanka', u'compromis'] [u'senat', u'reject', u'airport', u'secur', u'claim'] [u'taxpay', u'foot', u'cabl'] [u'thoma', u'return', u'home', u'charg'] [u'senior', u'communist', u'parti', u'member', u'guilti'] [u'train', u'guard', u'tell', u'waterfal', u'inquest', u'didnt'] [u'turinui', u'clear', u'play', u'ireland', u'hero', u'ogara', u'absent'] [u'turin', u'warm', u'winter', u'game'] [u'turtl', u'join', u'grazier', u'record', u'discoveri'] [u'convict', u'sleeper', u'cell', u'trial'] [u'parliament', u'probe', u'iraq', u'claim'] [u'uncertainti', u'green', u'project'] [u'uniform', u'legisl', u'urg', u'smoke', u'ban'] [u'inspector', u'rout', u'iraq', u'investig'] [u'unit', u'hint', u'beckham', u'head', u'barcelona'] [u'warn', u'burma', u'kyi', u'detent'] [u'pilot', u'dementia', u'diagnosi', u'program'] [u'vaniti', u'save', u'politician', u'kidnap'] [u'verkerk', u'serv', u'dutch', u'treat', u'pari'] [u'wont', u'chang', u'poll', u'stanc'] [u'offer', u'assist', u'timores', u'asylum', u'seeker'] [u'govt', u'consid', u'dairi', u'inquiri', u'idea'] [u'wast', u'dump', u'heat'] [u'water', u'reform', u'need', u'state', u'support', u'say', u'anderson'] [u'weighbridg', u'worker', u'protest', u'shift', u'arrang'] [u'govt', u'approach', u'seek', u'oyster', u'industri'] [u'windi', u'aim', u'maintain', u'win', u'form'] [u'woman', u'accus', u'seri', u'attack'] [u'wood', u'readi', u'titl', u'defenc', u'olympia', u'field'] [u'youth', u'refug', u'move', u'robin', u'hill', u'site'] [u'zabel', u'pip', u'ogradi', u'tour', u'germani', u'stage'] [u'zimbabw', u'polic', u'tear', u'demonstr'] [u'accordian', u'crime', u'threat', u'legal', u'digniti'] [u'set', u'green', u'prioriti'] [u'encourag', u'transport', u'altern'] [u'action', u'bus', u'road', u'negoti'] [u'action', u'need', u'take', u'murray', u'say', u'expert'] [u'activist', u'sentenc', u'jail'] [u'airport', u'secur', u'inquiri', u'launch'] [u'leadership', u'challeng', u'intensifi'] [u'alston', u'want', u'year', u'news', u'audit'] [u'trade', u'suspens', u'extend'] [u'ancient', u'craft', u'show', u'latest', u'exhibit'] [u'antarct', u'treati', u'rule', u'environment'] [u'anti', u'like', u'increas', u'crime', u'shooter'] [u'appeal', u'fail', u'accus', u'murder'] [u'atsic', u'pencil', u'elect', u'date'] [u'audit', u'unearth', u'offens', u'public', u'group'] [u'australia', u'william', u'coach', u'scotland'] [u'launch', u'casual', u'load', u'test', u'case'] [u'beatti', u'welcom', u'fund', u'overtur', u'sugar'] [u'beazley', u'backer', u'quit', u'labor', u'post'] [u'heroin', u'haul', u'melbourn'] [u'blair', u'defend', u'iraq', u'intellig'] [u'blue', u'emerg', u'origin', u'squad'] [u'bodi', u'think', u'miss'] [u'boomer', u'czech', u'republ'] [u'bronco', u'risk', u'fine', u'drop'] [u'burk', u'aim', u'leadership'] [u'driver', u'accept', u'rise'] [u'bush', u'promis', u'troop'] [u'button', u'get', u'canada', u'ahead'] [u'cape', u'york', u'fund', u'probe'] [u'fast', u'rail', u'line', u'duplic'] [u'lower', u'highway', u'speed', u'limit'] [u'mooloolah', u'river', u'mouth', u'dredg'] [u'rethink', u'famili', u'welfar', u'polici'] [u'canberra', u'keep', u'watch', u'water', u'usag'] [u'caution', u'urg', u'road', u'field'] [u'chepchumba', u'contest', u'posit', u'drug', u'test'] [u'clark', u'realist', u'open', u'hop'] [u'classroom', u'need', u'improv'] [u'clean', u'continu', u'adelaid', u'storm'] [u'concern', u'villag', u'yangtz', u'river', u'dike'] [u'concern', u'rais', u'law', u'jail', u'fingleton'] [u'coria', u'meet', u'verkerk', u'costa', u'face', u'ferrero'] [u'costa', u'prove', u'french', u'titl', u'fluke'] [u'councillor', u'hear', u'result', u'valuer', u'studi'] [u'council', u'stormwat', u'campaign'] [u'crean', u'tell', u'beazley', u'backer', u'quit'] [u'crew', u'rescu', u'burn', u'boat'] [u'deni', u'beer', u'shortag', u'threat'] [u'cyclist', u'die', u'beerwah', u'crash'] [u'davi', u'love', u'cours', u'brother', u'law'] [u'detect', u'charg', u'corrupt'] [u'doctor', u'sign', u'hour', u'servic'] [u'dollar', u'drop', u'slight', u'overnight', u'high'] [u'dollar', u'hit', u'year', u'high'] [u'dont', u'dope', u'slop', u'skier', u'warn'] [u'doyl', u'seiz', u'child', u'protect', u'servic', u'report'] [u'drought', u'impact'] [u'tune', u'put', u'ahead', u'open'] [u'fairfax', u'closer', u'media', u'acquisit'] [u'fan', u'heap', u'scorn', u'sosa', u'cork'] [u'farmer', u'feel', u'stronger', u'aussi', u'dollar'] [u'feder', u'govt', u'reject', u'drought', u'criteria', u'claim'] [u'feder', u'govt', u'releas', u'tourism', u'strategi'] [u'feder', u'govt', u'urg', u'resolv', u'reef', u'issu'] [u'femal', u'suicid', u'bomber', u'kill', u'near', u'chechnya'] [u'ferrero', u'join', u'great', u'fourth', u'consecut', u'semi'] [u'fingleton', u'lodg', u'appeal'] [u'fingleton', u'lawyer', u'prepar', u'appeal'] [u'virgin', u'flight', u'land', u'alic'] [u'flight', u'deal', u'spark', u'region', u'travel'] [u'forestri', u'weighbridg', u'worker', u'return', u'work'] [u'franc', u'squad', u'announc', u'argentina', u'zealand'] [u'french', u'leav', u'search', u'home', u'champion'] [u'futur', u'huge', u'rail', u'project', u'remain', u'uncertain'] [u'general', u'acquit', u'indonesian', u'trial'] [u'georg', u'town', u'mayor', u'want', u'park', u'plan'] [u'giant', u'wild', u'thing', u'compet', u'sydney', u'hobart'] [u'good', u'budget', u'lifelin'] [u'govt', u'offer', u'cashback', u'scheme', u'water', u'effici'] [u'govt', u'spend', u'review', u'opposit'] [u'govt', u'consid', u'defenc', u'helicopt', u'facil'] [u'govt', u'unveil', u'truck', u'safeti', u'plan'] [u'govt', u'warn', u'rat', u'deter', u'invest'] [u'green', u'group', u'fear', u'kill', u'burnett', u'river'] [u'greenpeac', u'attack', u'environ', u'polici'] [u'green', u'shock', u'tarkin', u'log', u'announc'] [u'group', u'offer', u'qualifi', u'support', u'nation', u'park'] [u'guard', u'spotlight', u'prison', u'relationship'] [u'hannib', u'vote', u'greatest', u'movi', u'villain'] [u'hardlin', u'unconvinc', u'aqaba', u'summit'] [u'harri', u'uphold', u'govern', u'bodi'] [u'hellish', u'injuri', u'put', u'haa', u'hall'] [u'hillari', u'tell', u'lewinski', u'scandal'] [u'hold', u'defend', u'posit', u'minist'] [u'holland', u'return', u'premiership', u'sign'] [u'hors', u'festiv', u'await', u'fund', u'decis'] [u'howard', u'talk', u'solomon', u'crisi'] [u'hunter', u'rejoin'] [u'hussain', u'play', u'hop', u'lord', u'repeat'] [u'indian', u'pray', u'reliev', u'rain'] [u'indigen', u'communiti', u'consid', u'commerci', u'orchard'] [u'indonesia', u'warn', u'foreign', u'aceh', u'travel'] [u'iraq', u'director'] [u'israel', u'plan', u'settlement', u'remov', u'report'] [u'jadda', u'centr', u'demolit', u'spotlight'] [u'japan', u'accus', u'build', u'militari', u'power'] [u'junior', u'polic', u'recruit', u'elit', u'command', u'post'] [u'landcar', u'coordin', u'face', u'cloudi', u'futur'] [u'landhold', u'expect', u'plead', u'guilti', u'clear'] [u'lead', u'test', u'adelaid'] [u'lomu', u'need', u'kidney', u'transplant'] [u'lowik', u'beat', u'heat', u'treatment', u'german', u'second'] [u'magnesit', u'explor', u'plan', u'ahead'] [u'major', u'parti', u'launch', u'environment', u'polici'] [u'arrest', u'melbourn', u'airport'] [u'jail', u'hijack'] [u'market', u'lift', u'dollar', u'soar', u'year', u'high'] [u'maroon', u'give', u'medic', u'clear', u'origin', u'open'] [u'martha', u'stewart', u'quit', u'chairman'] [u'mayor', u'air', u'merger', u'concern'] [u'mayor', u'back', u'fuel', u'ethanol', u'blend'] [u'mayor', u'highlight', u'need', u'rodeo', u'facil', u'work'] [u'mayor', u'urg', u'tree', u'clear', u'resumpt'] [u'claim', u'polic', u'tortur', u'support'] [u'militari', u'look', u'mimic', u'dragonfli'] [u'montgomeri', u'hurt', u'springbok', u'hop'] [u'fund', u'seek', u'drug', u'rehab', u'centr'] [u'storm', u'predict', u'adelaid', u'clean'] [u'time', u'applic'] [u'want', u'water', u'emerg', u'declar'] [u'murder', u'charg', u'timores', u'militia'] [u'nativ', u'titl', u'confer', u'draw'] [u'concern', u'air'] [u'news', u'good', u'tanneri', u'unsecur', u'creditor'] [u'technolog', u'reduc', u'emiss'] [u'wetland', u'launch', u'world', u'environ'] [u'nurs', u'home', u'shut', u'poor', u'condit'] [u'offici', u'learn', u'fingleton', u'case', u'expert'] [u'king', u'brother', u'bail', u'court', u'cell'] [u'opposit', u'question', u'human', u'right'] [u'origin', u'hope', u'jilt', u'anasta'] [u'icon', u'want'] [u'pakistani', u'provinc', u'introduc', u'islam'] [u'parti', u'reach', u'deal', u'trade', u'hour'] [u'patterson', u'confid', u'retain', u'ministri'] [u'peri', u'consid', u'senat', u'seat'] [u'phone', u'assist', u'disast', u'survivor'] [u'phone', u'power', u'corrupt', u'watchdog', u'delay'] [u'plan', u'whale', u'sanctuari', u'south', u'pacif'] [u'plan', u'shut', u'open', u'sewer'] [u'plot', u'kill', u'gutnick', u'uncov'] [u'polic', u'bodi', u'believ', u'trawler', u'skipper'] [u'polic', u'soldier', u'kill', u'train', u'centr'] [u'polic', u'probe', u'construct', u'site', u'death'] [u'policewoman', u'report', u'second', u'attack'] [u'polit', u'pressur', u'crank', u'chang', u'afl'] [u'pont', u'concern', u'busi', u'schedul', u'lead', u'short'] [u'potter', u'valu', u'go', u'roof'] [u'prais', u'local', u'storm', u'prepared'] [u'probe', u'continu', u'indigen', u'remain'] [u'quarantin', u'staff', u'increas', u'devonport'] [u'quarri', u'garden', u'plan', u'near', u'readi'] [u'rape', u'trial', u'dead', u'come'] [u'rape', u'trial', u'close', u'shoot'] [u'receiv', u'appoint', u'region', u'newspap'] [u'recoveri', u'program', u'cancer', u'patient'] [u'region', u'mobil', u'phone', u'boost'] [u'report', u'crime', u'hotlin'] [u'report', u'give', u'thumb', u'crime', u'line'] [u'report', u'highlight', u'redgum', u'woe'] [u'rescu', u'british', u'rower', u'fremantl'] [u'rescuer', u'miss', u'angler'] [u'research', u'solv', u'gender', u'birth', u'weight', u'puzzl'] [u'riverland', u'invent', u'mimic', u'wetland', u'condit'] [u'roddick', u'guid', u'agassi', u'coach'] [u'make', u'tougher', u'novic', u'driver'] [u'charg', u'drug', u'offenc'] [u'sar', u'outbreak', u'peak', u'china'] [u'sar', u'virus', u'anim'] [u'sculli', u'conced', u'road', u'need', u'upgrad'] [u'shallow', u'goal', u'leav', u'japan', u'australia', u'match'] [u'shark', u'collect'] [u'sheedi', u'call', u'state', u'origin', u'return'] [u'sheedi', u'unfaz', u'locat', u'final'] [u'cattl', u'entri'] [u'sign', u'hous', u'sector', u'eas'] [u'snow', u'rais', u'hop', u'good', u'start', u'season'] [u'soccer', u'australia', u'announc', u'competit', u'model'] [u'sorenstam', u'draw', u'experi', u'ladi', u'major'] [u'spaniard', u'come', u'test', u'roland'] [u'speaker', u'stop', u'question', u'reconcili'] [u'special', u'olymp', u'flame', u'athen', u'acropoli'] [u'springborg', u'appeal', u'voter', u'budget', u'repli'] [u'springborg', u'ask', u'correct', u'parliamentari', u'claim'] [u'springborg', u'attack', u'labor', u'budget', u'repli'] [u'stamp', u'mass', u'destruct', u'prompt', u'complaint'] [u'kilda', u'detain', u'alleg', u'flight', u'threat'] [u'student', u'stand', u'trial', u'river', u'death'] [u'support', u'driver', u'school', u'continu'] [u'support', u'western', u'nuclear', u'wast', u'transport'] [u'surpris', u'govt', u'respons', u'bushfir', u'inquiri'] [u'swan', u'leav', u'financi', u'turmoil', u'field'] [u'tafe', u'aim', u'boost', u'dalbi', u'train'] [u'talk', u'begin', u'sydney', u'hobart', u'ferri'] [u'tasmanian', u'newest', u'fighter', u'graduat'] [u'territorian', u'urg', u'plant', u'tree'] [u'terror', u'summit', u'deleg', u'tour', u'darwin', u'hospit'] [u'test', u'algal', u'bloom', u'previous', u'fish', u'kill'] [u'tight', u'turn', u'save', u'london', u'black', u'cab'] [u'tornado', u'appeal', u'go', u'target'] [u'train', u'guard', u'tell', u'inquiri'] [u'trio', u'face', u'court', u'theft', u'charg'] [u'trust', u'demand', u'land', u'clear', u'law'] [u'face', u'court', u'heroin', u'haul'] [u'german', u'shoot', u'aceh', u'dead'] [u'uncertain', u'futur', u'talwood', u'race'] [u'envoy', u'bar'] [u'get', u'feder', u'fund', u'assur'] [u'union', u'warn', u'beer', u'shortag'] [u'explor', u'fail', u'pacif', u'reed', u'boat'] [u'verkerk', u'put', u'parti', u'life'] [u'govt', u'wont', u'commit', u'pool', u'complex', u'fund'] [u'victorian', u'probe', u'waterway', u'pollut'] [u'vietnam', u'gang', u'boss', u'sentenc', u'death', u'murder'] [u'volunt', u'give', u'environ', u'award'] [u'back', u'plastic'] [u'environ', u'dept', u'ask', u'probe', u'asbesto'] [u'govt', u'releas', u'report', u'power', u'woe'] [u'wallabi', u'perform', u'jone'] [u'want', u'iraqi', u'militia', u'leader', u'captur'] [u'polic', u'crack', u'burglari'] [u'weather', u'bureau', u'warn', u'sever', u'storm'] [u'wilson', u'consid', u'formula', u'option'] [u'wine', u'fund', u'manag', u'offer', u'reassur'] [u'winner', u'loser', u'rat'] [u'woman', u'injur', u'snatch'] [u'woman', u'treat', u'fall'] [u'yachti', u'prepar', u'mooloolaba', u'event'] [u'yahoo', u'name', u'exec', u'intern', u'chief'] [u'land', u'sale', u'open', u'sport', u'facil'] [u'year', u'aliv', u'day'] [u'abattoir', u'worker', u'redund'] [u'abbott', u'talk', u'textil', u'industri', u'chang'] [u'chairman', u'surpris', u'alston', u'concern'] [u'fear', u'local', u'tourism', u'lose', u'tourism', u'reform'] [u'agent', u'throw', u'spanner', u'golden', u'screw', u'work'] [u'aircrew', u'welcom', u'home', u'iraq'] [u'black', u'macdonald', u'england', u'test'] [u'arafat', u'blast', u'middl', u'east', u'peac', u'summit', u'result'] [u'arm', u'forc', u'need', u'solomon', u'goff'] [u'armstrong', u'warm', u'record', u'attempt'] [u'arthur', u'hanley', u'crash'] [u'atsic', u'council', u'oppos', u'asset', u'transfer'] [u'aussi', u'trio', u'steal', u'spotlight', u'delawar'] [u'australia', u'irish', u'disput', u'replac', u'law'] [u'australian', u'veteran', u'fowler', u'sparkl'] [u'author', u'close', u'cartier', u'island'] [u'barcaldin', u'host', u'citi', u'countri', u'clash'] [u'barca', u'reveal', u'talk', u'beckham'] [u'beatti', u'look', u'forward', u'stabil'] [u'beazley', u'announc', u'leadership'] [u'beazley', u'rule', u'second', u'challeng'] [u'bendigo', u'region', u'rape', u'report', u'rise'] [u'bird', u'prey', u'down', u'fighter'] [u'bribi', u'manag', u'plan'] [u'brit', u'stop', u'albani', u'wheel', u'adventur'] [u'brother', u'say', u'chief', u'magistr', u'wont', u'appli'] [u'bulldog', u'roll', u'rooster'] [u'cambodian', u'step', u'start', u'cricket', u'season'] [u'canberra', u'school', u'suspend', u'senior', u'class'] [u'caniggia', u'quit', u'ranger'] [u'caravan', u'park', u'evacu', u'wild', u'weather'] [u'carey', u'doubt', u'crow', u'matera', u'west', u'coast'] [u'carey', u'doubt', u'crow', u'matera', u'eagl'] [u'china', u'arrest', u'falun', u'gong', u'member', u'sar', u'rumour'] [u'chines', u'paper', u'demand', u'open', u'govt', u'sar', u'cover'] [u'communic', u'union', u'head', u'reject', u'poll'] [u'confer', u'tell', u'devic', u'sydney', u'airport'] [u'defend', u'farm', u'gate', u'milk', u'price'] [u'corbel', u'accus', u'wast', u'money'] [u'coria', u'escap', u'hit'] [u'coron', u'find', u'child', u'drown', u'accid'] [u'council', u'rethink', u'shire', u'confer', u'attend'] [u'council', u'remov', u'tree', u'tribut'] [u'council', u'unhappi', u'septic', u'tank', u'sludg', u'rise'] [u'court', u'rule', u'expuls', u'stand'] [u'crean', u'beazley', u'face', u'leadership'] [u'crean', u'set', u'date', u'showdown'] [u'crean', u'leadership', u'better', u'beazley', u'brown'] [u'crow', u'carey', u'matera', u'west', u'coast'] [u'customari', u'vital', u'indigen', u'peopl'] [u'dali', u'river', u'art', u'festiv', u'draw', u'throng'] [u'darwin', u'properti', u'price', u'strengthen'] [u'deep', u'ocean', u'outfal', u'like', u'finish', u'earli'] [u'dekker', u'pull', u'tour', u'franc'] [u'democrat', u'critic', u'transport', u'propos'] [u'disast', u'poll', u'prove', u'lead', u'beazley', u'say'] [u'diversif', u'illawarra', u'agricultur'] [u'doctor', u'group', u'welcom', u'medic', u'school', u'plan'] [u'driver', u'warn', u'long', u'weekend', u'crackdown'] [u'drug', u'scheme', u'seek', u'govt', u'help'] [u'duncan', u'domin', u'spur', u'beat', u'net', u'open'] [u'dutch', u'court', u'acquit', u'terrorist', u'charg'] [u'dwyer', u'guid', u'kookaburra', u'victori'] [u'fingleton', u'black', u'friday', u'appeal'] [u'jail', u'record', u'heroin', u'haul'] [u'french', u'forc', u'arriv', u'congo'] [u'french', u'open', u'boast', u'belgian', u'final'] [u'fund', u'cut', u'project', u'hold', u'mayor'] [u'gallop', u'stay', u'leadership', u'debat'] [u'galthi', u'bid', u'crown', u'farewel', u'maiden', u'titl'] [u'gamez', u'take', u'lead', u'kemper', u'open'] [u'gilchrist', u'admit', u'burnout', u'concern'] [u'gould', u'disappoint', u'blue', u'attitud'] [u'govern', u'fail', u'agre', u'sugar', u'industri', u'reform'] [u'govt', u'deni', u'game', u'licenc', u'extens', u'talk'] [u'govt', u'hand', u'histor', u'site', u'privat', u'develop'] [u'govt', u'urg', u'fund', u'airport', u'secur', u'upgrad'] [u'owner', u'urg', u'compli', u'random', u'check'] [u'round', u'origin', u'critic'] [u'hama', u'break', u'truce', u'talk'] [u'hama', u'milit', u'kill', u'west', u'bank', u'firefight'] [u'hauritz', u'clark', u'chief', u'minist'] [u'health', u'dept', u'warn', u'hepat'] [u'hegarti', u'long', u'haul'] [u'henin', u'hardenn', u'book', u'final', u'date', u'clijster'] [u'hepat', u'case', u'rise', u'latest', u'case', u'confirm'] [u'high', u'hop', u'gold', u'coast', u'medic', u'school'] [u'high', u'wind', u'blow', u'farmer', u'woe'] [u'tech', u'scanner', u'turn', u'vodka', u'weapon'] [u'hous', u'task', u'forc', u'back', u'share', u'equiti', u'costello'] [u'howard', u'call', u'chang', u'school', u'hour'] [u'irrig', u'groundwat', u'chang', u'concern'] [u'italian', u'reveng', u'home', u'soil'] [u'kennedi', u'hand', u'fit', u'deadlin'] [u'kennedi', u'hand', u'origin', u'fit', u'deadlin'] [u'laker', u'star', u'bryant', u'need', u'offseason', u'shoulder'] [u'mark', u'anniversari', u'kennedi', u'slay'] [u'lehmann', u'feel', u'test', u'pressur', u'clark'] [u'liber', u'presid', u'focus', u'state', u'loss'] [u'livingston', u'presum', u'say', u'brazilian', u'boss'] [u'lobbi', u'group', u'heat', u'debat', u'live', u'music', u'venu'] [u'long', u'grasser', u'wont', u'council', u'fight'] [u'magistr', u'dismiss', u'fraud', u'case'] [u'major', u'search', u'underway', u'miss', u'father'] [u'admit', u'drug', u'possess', u'walk', u'free'] [u'charg', u'imperson', u'polic', u'offic'] [u'jail', u'year', u'butterbon', u'station'] [u'jail', u'servic', u'station', u'arm', u'robberi'] [u'treat', u'prison', u'attack'] [u'marathon', u'entic', u'bonus', u'money', u'york', u'race'] [u'market', u'ralli', u'dollar', u'soar'] [u'mark', u'waugh', u'play', u'blue'] [u'launch', u'plan', u'revamp', u'schedul'] [u'mayor', u'welcom', u'takeov'] [u'mccartney', u'bid', u'farewel', u'footbal'] [u'mccartney', u'end', u'career', u'win', u'note'] [u'mccartney', u'return', u'footi', u'field'] [u'memori', u'fail', u'king', u'brother', u'court', u'appear'] [u'sharehold', u'xstrata'] [u'sharehold', u'meet', u'xstrata', u'vote'] [u'minist', u'rule', u'hunter', u'fisheri'] [u'smoker', u'accept', u'studi'] [u'state', u'feder', u'resourc', u'manag', u'cooper'] [u'mortar', u'round', u'fire', u'jewish', u'settlement', u'gaza'] [u'mukhla', u'trial', u'date'] [u'get', u'overdraft', u'boyzon', u'undi'] [u'murphi', u'step', u'odriscol', u'shoe', u'australia'] [u'nativ', u'titl', u'process', u'prove', u'posit', u'neat'] [u'nat', u'push', u'emerg', u'water', u'cart', u'fund'] [u'newcastl', u'increas', u'offer', u'aussi'] [u'ngeni', u'aim', u'world', u'championship', u'place'] [u'children', u'chechnya', u'explos'] [u'rematch', u'tyson', u'lewi'] [u'review', u'milk', u'base', u'alcohol', u'drink'] [u'offic', u'investig', u'risdon', u'jail', u'drug', u'ring'] [u'opposit', u'leader', u'pay', u'tribut', u'minist'] [u'overnight', u'gale', u'forc', u'wind', u'crew', u'busi'] [u'look', u'close', u'sorenstam'] [u'paper', u'consid', u'wilder', u'area', u'develop'] [u'plane', u'miss'] [u'plan', u'focus', u'murchison', u'develop'] [u'advic', u'labor'] [u'unsur', u'pay', u'matern', u'leav'] [u'polic', u'arrest', u'team', u'manag', u'italian', u'dope', u'probe'] [u'polic', u'issu', u'trespass', u'warn'] [u'polic', u'issu', u'warn', u'biker', u'gang'] [u'polic', u'soldier', u'accid', u'victim'] [u'polic', u'probe', u'road', u'crash', u'caus'] [u'polic', u'crack', u'driver'] [u'polic', u'exhum', u'grave', u'investig', u'child', u'death'] [u'power', u'station', u'work', u'power', u'ahead'] [u'problem', u'mount', u'world', u'test', u'championship'] [u'presid', u'hit', u'ref', u'mafia'] [u'public', u'urg', u'prepar', u'weekend', u'weather'] [u'racq', u'back', u'call', u'region', u'fuel', u'price', u'probe'] [u'rag', u'monti', u'blast', u'snapper'] [u'ranatunga', u'humil', u'cricket', u'board', u'elect'] [u'chief', u'reject', u'rat', u'hike', u'slow', u'hous', u'boom'] [u'rebel', u'advanc', u'liberian', u'capit'] [u'report', u'highlight', u'need', u'green', u'boost'] [u'research', u'centr', u'support', u'stanwel', u'project'] [u'reserv', u'bank', u'slash', u'outlook', u'growth'] [u'reserv', u'leav', u'door', u'open', u'rat'] [u'retail', u'welcom', u'longer', u'trade', u'hour'] [u'review', u'magnesium', u'plan', u'gain', u'support'] [u'offer', u'qualifi', u'support', u'secur', u'boost'] [u'river', u'clean', u'dolphin', u'return'] [u'rivkin', u'appeal', u'fail', u'jail', u'term', u'start', u'today'] [u'rockhampton', u'statist', u'chang', u'consid'] [u'roll', u'stone', u'gather', u'front', u'lingeri'] [u'romario', u'sign', u'fluminens', u'flamengo'] [u'rossi', u'biaggi', u'face', u'rivalri', u'italian'] [u'erupt', u'road', u'fund'] [u'ruddock', u'spotlight', u'busi', u'migrant'] [u'govt', u'look', u'forward', u'fish', u'resolut'] [u'santana', u'donat', u'concert', u'proceed', u'africa', u'aid'] [u'sawtel', u'plan', u'spark', u'develop', u'concern'] [u'schoolboy', u'appeal', u'expuls', u'decis'] [u'seagul', u'clash', u'comet', u'home'] [u'scallop', u'ranch', u'plan'] [u'shire', u'seek', u'fish', u'kill', u'solut'] [u'shire', u'govt', u'odd', u'hostel', u'plan'] [u'shire', u'welcom', u'plan', u'methanol', u'plant'] [u'silent', u'stake', u'hous', u'plan', u'go'] [u'skier', u'warn', u'hut', u'destroy'] [u'sob', u'serena', u'accus', u'henin', u'lie'] [u'soccer', u'australia', u'meet', u'cancel'] [u'farmer', u'loos', u'drought', u'assist', u'fund'] [u'farmer', u'lose', u'drought', u'assist', u'fund'] [u'sorenstam', u'seek', u'lpga', u'championship', u'victori'] [u'south', u'african', u'look', u'seven', u'histori'] [u'special', u'skill', u'need', u'antarct', u'research', u'ship'] [u'split', u'sugar', u'exagger', u'beatti'] [u'sptnrl'] [u'stamp', u'public', u'finland'] [u'stewart', u'mcgrath', u'rescu', u'falter', u'england'] [u'storm', u'black', u'south', u'east', u'area'] [u'suncorp', u'dismiss', u'lang', u'park', u'fine'] [u'govt', u'accus', u'revenu', u'rais'] [u'health', u'dept', u'warn', u'hepat'] [u'welcom', u'extra', u'medic', u'place'] [u'thai', u'student', u'kill', u'friend', u'wound'] [u'thinker', u'give', u'factori'] [u'thwait', u'want', u'region', u'water', u'restrict'] [u'tighter', u'control', u'need', u'age', u'care', u'nurs'] [u'toddler', u'remain', u'exhum', u'polic', u'probe'] [u'breakaway', u'mood'] [u'tougher', u'water', u'restrict', u'expect'] [u'tourism', u'chief', u'welcom', u'feder', u'govt', u'strategi'] [u'tszyu', u'fight', u'mitchel', u'moscow'] [u'surviv', u'dead', u'plane', u'crash'] [u'plan', u'european', u'seri'] [u'cambodia', u'khmer', u'roug', u'leader'] [u'envoy', u'burma'] [u'union', u'cancel', u'driver', u'industri', u'action'] [u'union', u'suspend', u'health', u'worker', u'wage', u'push'] [u'unit', u'holder', u'unhappi', u'wine', u'fund', u'move'] [u'critic', u'detent'] [u'request', u'info', u'news', u'satellit', u'deal'] [u'troop', u'north', u'korean', u'fire', u'rang'] [u'come', u'good', u'germani'] [u'govt', u'welcom', u'basslink'] [u'vogt', u'voller', u'bitter', u'showdown'] [u'wallabi', u'take', u'irish', u'light'] [u'waratah', u'burk', u'samoa', u'clash'] [u'veteran', u'unhappi', u'recept', u'withdraw'] [u'tourism', u'centr', u'name', u'award', u'winner'] [u'waugh', u'prepar', u'play', u'bangladesh'] [u'upper', u'hous', u'approv', u'nyungah', u'camp', u'closur'] [u'weather', u'leav', u'destruct', u'trail', u'gippsland'] [u'wont', u'ronaldinho', u'leav', u'tell', u'unit'] [u'wheat', u'virus', u'task', u'forc', u'prepar', u'meet'] [u'wild', u'weather', u'creat', u'havoc', u'victoria'] [u'wind', u'caus', u'chao', u'snowi', u'mountain'] [u'wind', u'caus', u'widespread', u'blackout'] [u'wind', u'wreak', u'havoc', u'snowi'] [u'strike', u'affect', u'news', u'bulletin'] [u'winter', u'boost', u'tourist', u'number'] [u'injur', u'plane', u'crash', u'hollywood', u'build'] [u'kill', u'overturn', u'river'] [u'afghan', u'polic', u'blame', u'bomb', u'taxi', u'kabul', u'blast'] [u'alleg', u'illeg', u'indonesian', u'fish', u'boat', u'tow'] [u'keep', u'busi', u'aerial', u'search'] [u'kill', u'injur', u'crash'] [u'australia', u'india', u'final', u'replay'] [u'ayer', u'blame', u'injuri', u'crow', u'slump'] [u'barca', u'close', u'beckham', u'announc', u'report'] [u'beazley', u'lobbi', u'secur', u'leadership'] [u'beetl', u'come'] [u'belgian', u'doubl', u'replac', u'william', u'sister'] [u'berger', u'sign', u'premiership', u'boy', u'portsmouth'] [u'bodi', u'homebush', u'hous'] [u'boss', u'guid', u'privat', u'steer', u'stradbrok', u'victori'] [u'british', u'soldier', u'hold', u'iraq', u'child', u'porn', u'probe'] [u'crash', u'kill', u'turkey'] [u'canberra', u'deni', u'bail', u'magistr', u'court'] [u'capirossi', u'take', u'provision', u'italian', u'pole', u'stoner'] [u'chile', u'sign', u'free', u'trade', u'deal'] [u'colbert', u'season'] [u'colbert', u'season', u'gasper', u'doubt'] [u'comedi', u'life', u'east', u'germani', u'name'] [u'controversi', u'teen', u'flick', u'ban', u'australia'] [u'controversi', u'world', u'moreno', u'quit'] [u'crean', u'make', u'light', u'leadership', u'woe'] [u'dismiss', u'pilot', u'claim', u'union', u'unwil', u'help'] [u'dust', u'diseas', u'compens', u'level'] [u'wood', u'head', u'head', u'open'] [u'england', u'second', u'string', u'meet', u'maori'] [u'favourit', u'march'] [u'ferrero', u'face', u'verkerk', u'french', u'final'] [u'messag', u'send', u'mar', u'probe'] [u'fish', u'group', u'concern', u'colli', u'river', u'fish'] [u'fish', u'pest', u'threaten', u'frog', u'popul'] [u'french', u'soldier', u'arriv', u'quell', u'drcongo', u'violenc'] [u'frustrat', u'meligeni', u'announc', u'retir'] [u'fungus', u'deep', u'myrtl', u'log'] [u'galatasaray', u'home', u'hell', u'rebuild'] [u'gallop', u'stand', u'northbridg', u'curfew'] [u'green', u'grab', u'share', u'british', u'master', u'lead'] [u'green', u'group', u'support', u'beatti', u'tree', u'clear'] [u'gregan', u'fear', u'ahead', u'ireland', u'clash'] [u'grind', u'station', u'send', u'command', u'mar', u'probe'] [u'gunfir', u'sound', u'east', u'congo', u'town', u'bunia'] [u'hagan', u'enter', u'queensland', u'camp'] [u'peri', u'tell', u'kid'] [u'hawk', u'snap', u'lose', u'streak'] [u'health', u'author', u'confid', u'contain'] [u'hear', u'postpon', u'tsvangirai', u'treason', u'charg'] [u'hill', u'say', u'iraq'] [u'home', u'equiti', u'plan', u'incom', u'earner'] [u'hospit', u'award', u'need', u'reform'] [u'howard', u'prais', u'recent', u'middl', u'east', u'peac', u'talk'] [u'hundr', u'dead', u'week', u'congo', u'fight'] [u'indian', u'heatwav', u'claim', u'victim'] [u'indian', u'youngster', u'train', u'australian', u'academi'] [u'iran', u'nuclear', u'program', u'caus', u'world', u'alarm', u'say'] [u'johnson', u'lewi', u'fight'] [u'judg', u'decid', u'jackson', u'suit', u'week'] [u'krayzelburg', u'withdraw', u'world', u'team'] [u'lankan', u'appoint', u'australian', u'dyson', u'coach'] [u'lawyer', u'live', u'street', u'highlight', u'homeless'] [u'len', u'uefa', u'spot', u'fair', u'play'] [u'lib', u'tackl', u'fall', u'membership'] [u'local', u'govern', u'respond', u'increas', u'drive'] [u'london', u'traffic', u'experi', u'cut', u'congest'] [u'melbourn', u'pakistan', u'detent'] [u'die', u'shootout', u'near', u'heathrow', u'airport'] [u'maori', u'tough', u'england', u'say', u'woodward'] [u'maroon', u'play', u'game'] [u'maroon', u'play', u'game', u'talli'] [u'mccartney', u'emot', u'farewel', u'footi'] [u'miss', u'toddler', u'reunit', u'parent'] [u'union'] [u'snow', u'need', u'kick', u'tassi', u'season'] [u'motorist', u'warn', u'difficult', u'snowi', u'road'] [u'wellington', u'road', u'close', u'snow'] [u'murder', u'man', u'famili', u'plead', u'inform'] [u'nation', u'parti', u'look', u'contest', u'outer'] [u'like', u'european', u'team'] [u'win', u'right', u'olymp'] [u'expert', u'warn', u'rapid', u'spread', u'bugbear', u'virus'] [u'net', u'level', u'final'] [u'claim', u'surfac', u'troop'] [u'ngeni', u'prepar', u'lose', u'place', u'kenyan', u'team'] [u'drug', u'french', u'cycl', u'hop', u'bodi'] [u'nolan', u'widow', u'say', u'permiss', u'collect'] [u'north', u'river', u'continu', u'flood'] [u'fisheri', u'patrol', u'grey', u'nurs', u'protect', u'zone'] [u'museum', u'host', u'memori', u'exhibit'] [u'panther', u'cowboy', u'raider', u'thump', u'eel'] [u'panther', u'cowboy', u'raider', u'thump', u'eel'] [u'patriot', u'brothel', u'offer', u'free', u'servic', u'iraq'] [u'peacekeep', u'warn', u'dead', u'kabul', u'blast'] [u'polic', u'seek', u'clue', u'kill', u'plane', u'crash'] [u'polic', u'seek', u'lead', u'nunawad'] [u'polish', u'vote', u'referendum'] [u'poultri', u'scratch', u'canberra', u'weekend'] [u'press', u'group', u'protest', u'block', u'websit'] [u'support', u'beazley', u'leadership'] [u'quaranta', u'quickest', u'zabel', u'pollack', u'miss', u'sprint'] [u'rail', u'line', u'upgrad', u'long', u'delay'] [u'raymond', u'bryan', u'french', u'open', u'mix', u'doubl'] [u'real', u'estat', u'institut', u'back', u'task', u'forc', u'find'] [u'real', u'madrid', u'manchest', u'unit'] [u'rescu', u'mission', u'coordin', u'missionari', u'group'] [u'rivkin', u'spend', u'weekend', u'bar'] [u'rivkin', u'spend', u'weekend', u'jail'] [u'road', u'safeti', u'council', u'develop', u'safeti', u'strategi'] [u'rugbi', u'world', u'mourn', u'wallabi', u'captain', u'win'] [u'rusti', u'wallabi', u'tackl', u'irish'] [u'sabbatini', u'take', u'lead', u'maryland'] [u'saddam', u'finish', u'great', u'awaken', u'iraqi', u'newspap'] [u'saint', u'shock', u'lion', u'swan', u'defus', u'bomber'] [u'search', u'resum', u'dawn'] [u'serena', u'lie', u'jibe'] [u'crew', u'hop', u'quiet', u'weekend', u'flood'] [u'kill', u'afghan', u'explos'] [u'shuttl', u'wing', u'crack', u'test', u'columbia', u'crash', u'probe'] [u'sinclair', u'rule', u'slovakia', u'clash'] [u'kill', u'injur', u'blast', u'afghan'] [u'wicket', u'johnson', u'spark', u'zimbabw', u'rout'] [u'snow', u'blanket', u'resort'] [u'sorenstam', u'charg', u'shoot', u'lead', u'delawar'] [u'sosa', u'suspend', u'game', u'cork'] [u'spain', u'knockout', u'blow'] [u'korea', u'japan', u'peac', u'nuclear'] [u'strong', u'wind', u'snowi', u'crew', u'busi'] [u'swan', u'claim', u'loyalti', u'crean'] [u'taiwan', u'confirm', u'sar', u'case'] [u'team', u'manag', u'resign', u'amid', u'ongo', u'dope'] [u'teen', u'critic', u'condit', u'train', u'fall'] [u'thousand', u'expect', u'darwin', u'greek', u'festiv'] [u'thousand', u'palestinian', u'continu', u'attack'] [u'bundesliga', u'scorer', u'christiansen', u'join', u'hanov'] [u'traci', u'age', u'care', u'facil', u'door', u'open'] [u'tsvangirai', u'arrest', u'charg', u'treason'] [u'dead', u'injur', u'plane', u'crash', u'hollywood'] [u'envoy', u'secur', u'aung', u'releas'] [u'inspector', u'arriv', u'baghdad'] [u'anglican', u'church', u'elect', u'bishop'] [u'expand', u'visa', u'blacklist', u'burmes', u'leader'] [u'free', u'trade', u'agreement', u'secur', u'aust', u'econom'] [u'free', u'trade', u'deal', u'crucial', u'australian', u'econom'] [u'report', u'admit', u'reliabl', u'inform', u'iraq'] [u'unemploy', u'hit', u'year', u'high'] [u'welcom', u'possibl', u'ronaldinho', u'sign', u'report'] [u'vogt', u'striker', u'crucial', u'euro'] [u'wallabi', u'irish', u'challeng'] [u'warrior', u'shut', u'shark'] [u'warrior', u'sink', u'shark'] [u'water', u'trade', u'protect', u'water', u'user', u'kemp'] [u'welsh', u'rugbi', u'crisi', u'deepen', u'supremo', u'resign'] [u'west', u'manag', u'roeder', u'return', u'tumour'] [u'wimbledon', u'receiv'] [u'student', u'miss', u'boat', u'capsiz', u'china'] [u'bodi', u'hollywood', u'plane', u'crash'] [u'aborigin', u'communiti', u'doctor', u'underpay', u'nacho', u'say'] [u'adventur', u'continu', u'chariti', u'ride'] [u'agassi', u'bar', u'hewitt', u'entri', u'queen', u'winner', u'club'] [u'agenc', u'battl', u'odd', u'help', u'liberia'] [u'qaeda', u'afghan', u'suicid', u'bomb', u'author'] [u'alston', u'urg', u'respond', u'critic'] [u'ambros', u'take', u'round'] [u'australia', u'annihil', u'japan'] [u'system', u'plan', u'merger', u'lockhe'] [u'beazley', u'accus', u'crean', u'withhold', u'poll', u'result'] [u'beckham', u'gong', u'queen', u'birthday', u'list', u'report'] [u'clijster', u'generous', u'defeat'] [u'birthday', u'celebr', u'adelaid', u'festiv', u'theatr'] [u'blair', u'deni', u'intellig', u'report', u'exagger'] [u'bryan', u'twin', u'record', u'french', u'open'] [u'busi', u'ban', u'offer', u'scan'] [u'interchang', u'renov', u'year'] [u'cecchinello', u'celebr', u'hometown'] [u'chang', u'traci', u'age', u'care'] [u'want', u'examin', u'fingleton', u'letter', u'beatti'] [u'coff', u'resid', u'want', u'rethink', u'pacif'] [u'communiti', u'voic', u'concern', u'tree', u'lop'] [u'congoles', u'civilian', u'flee', u'home', u'violenc'] [u'construct', u'begin', u'world', u'longest', u'bridg'] [u'costello', u'howard', u'commend'] [u'crean', u'angri', u'destabilis', u'effort'] [u'crean', u'confid', u'ahead', u'leadership', u'vote'] [u'deport', u'refuge', u'lead', u'civil'] [u'eagl', u'pinch', u'draw'] [u'eagl', u'pinch', u'draw', u'cat', u'crush', u'blue'] [u'fieri', u'phoenix', u'sydney'] [u'fight', u'rag', u'liberia'] [u'fink', u'desert', u'race', u'attract', u'strong', u'field'] [u'destroy', u'convent', u'shed'] [u'flood', u'disrupt', u'launceston', u'road'] [u'forc', u'financi', u'crisi'] [u'policeman', u'arrest', u'darwin'] [u'galthi', u'win', u'french', u'titl'] [u'german', u'leader', u'condemn', u'kabul', u'suicid', u'attack'] [u'govt', u'zimbabw'] [u'green', u'settl', u'open'] [u'green', u'trail', u'owen', u'british', u'master'] [u'happi', u'henin', u'discov', u'court'] [u'heavi', u'gunfir', u'erupt', u'near', u'mauritania', u'presid'] [u'henin', u'give', u'belgium', u'grand', u'slam'] [u'henin', u'hardenn', u'win', u'women', u'french', u'open'] [u'hickss', u'father', u'start', u'cage', u'protest'] [u'hickss', u'father', u'protest', u'howard'] [u'hill', u'stick', u'storm'] [u'howard', u'prais', u'costello', u'priceless', u'asset'] [u'howard', u'unveil', u'plan', u'tame', u'senat'] [u'hundr', u'wwii', u'shell', u'malaysia'] [u'hunt', u'taxi', u'driver', u'stab'] [u'hussain', u'show', u'zimbabw', u'merci'] [u'india', u'exact', u'reveng', u'kookaburra'] [u'indonesia', u'plan', u'close', u'aceh', u'foreign'] [u'iraqi', u'trailer', u'report'] [u'israel', u'cordon', u'west', u'bank'] [u'italian', u'consum', u'groceri', u'store', u'leech'] [u'jewelleri', u'store', u'go', u'flame'] [u'johnson', u'win', u'sevill'] [u'kangaroo', u'island', u'hous', u'gut'] [u'kennedi', u'come', u'train'] [u'jong', u'seek', u'putin', u'help', u'nuclear', u'crisi'] [u'kiplagat', u'win', u'york', u'mini'] [u'late', u'win', u'ireland', u'ukrain', u'iceland'] [u'legal', u'option', u'exhaust', u'teen', u'flick'] [u'liber', u'faction', u'weaken', u'parti', u'chipman'] [u'liber', u'vote', u'plastic', u'bag'] [u'lib', u'chang', u'school', u'hour'] [u'lifelin', u'bookfest', u'boast', u'million'] [u'lucki', u'expect', u'bush', u'soon'] [u'lyon', u'wont', u'support', u'beazley', u'leadership'] [u'major', u'baghdad', u'treasur', u'recov', u'offici'] [u'mangalor', u'damag'] [u'kill', u'pile'] [u'mass', u'grave', u'discov', u'south', u'baghdad'] [u'mast', u'call', u'feder', u'fund', u'waterway'] [u'motorist', u'recov', u'suffer', u'heart', u'attack'] [u'movi', u'goer', u'evacu', u'barrack'] [u'navi', u'rescu', u'iraqi', u'fishermen'] [u'absurd', u'jone'] [u'polic', u'forc', u'consid', u'northbridg'] [u'zealand', u'retain', u'world', u'seven', u'crown'] [u'zealand', u'play', u'test', u'india'] [u'night', u'polit', u'caus', u'bangladesh', u'world'] [u'money', u'player', u'slam'] [u'sign', u'father', u'miss', u'gulf'] [u'govt', u'hold', u'alcohol', u'summit'] [u'monitor', u'australian', u'bank'] [u'olymp', u'media', u'villag', u'plan', u'scrap'] [u'demand', u'inquiri', u'iraqi', u'claim'] [u'pacemen', u'shape', u'lankan', u'windi'] [u'palestinian', u'faction', u'hold', u'talk'] [u'palestinian', u'hardlin', u'unit', u'roadmap'] [u'palestinian', u'attack', u'erez', u'checkpoint', u'near', u'gaza', u'citi'] [u'pie', u'lose', u'buckley'] [u'planet', u'welcom', u'liber', u'plastic'] [u'avoid', u'hickss', u'father', u'protest'] [u'poggiali', u'extend', u'championship', u'lead'] [u'poland', u'enter', u'second', u'referendum'] [u'polic', u'clair', u'prevent', u'teen', u'rap'] [u'polic', u'plead', u'safe', u'drive', u'long', u'weekend'] [u'polic', u'investig', u'shot', u'fire', u'chase'] [u'poll', u'domin', u'leadership', u'debat'] [u'pope', u'support', u'futur', u'poland'] [u'port', u'power', u'docker'] [u'qatar', u'sign', u'grand', u'prix', u'deal'] [u'fishermen', u'support', u'call', u'indonesian', u'fish'] [u'tough', u'oppon', u'beatti'] [u'quinn', u'confid', u'elect'] [u'rabbitoh', u'snap', u'lose', u'streak'] [u'rain', u'forc', u'potomac', u'postpon'] [u'rann', u'upbeat', u'footi', u'final', u'battl'] [u'republican', u'debat', u'ignit'] [u'residenti', u'develop', u'increas', u'airport'] [u'resid', u'journalist', u'catch', u'congoles', u'crossfir'] [u'resid', u'oppos', u'kippax', u'librari', u'site'] [u'rivkin', u'leav', u'hospit', u'collaps'] [u'rivkin', u'remain', u'hospit'] [u'roger', u'trail', u'foursom', u'germani'] [u'rossi', u'wrap', u'italian', u'trebl'] [u'rugbi', u'hooligan', u'attend', u'scotland', u'game'] [u'saddam', u'secret', u'lab', u'weapon', u'report'] [u'saddam', u'daughter', u'plan', u'seek', u'asylum'] [u'sand', u'cart', u'begin', u'beach'] [u'scientist', u'name', u'queensland', u'year'] [u'scot', u'pakistan', u'fright', u'tour', u'open'] [u'eagl', u'edg', u'tiger'] [u'search', u'fail'] [u'search', u'resum', u'father', u'miss', u'gulf'] [u'secur', u'tighten', u'folbigg', u'death', u'threat'] [u'senior', u'citizen', u'target', u'audienc', u'health'] [u'serv', u'machin', u'verkerk', u'sting', u'mosquito'] [u'servic', u'station', u'attend', u'go', u'miss'] [u'siena', u'sampdoria', u'lecc', u'ancona'] [u'sluggish', u'south', u'africa', u'edg', u'brave', u'scot'] [u'sorrenstam', u'lead', u'rain', u'halt', u'lpga', u'championship'] [u'sourc', u'islam', u'arrest', u'incit', u'mauritania', u'coup'] [u'south', u'american', u'footbal', u'ban', u'attack'] [u'spain', u'crash', u'greec', u'berti', u'defi', u'rudi'] [u'spain', u'mancebo', u'win', u'classiqu', u'alp', u'race'] [u'stadium', u'organis', u'prepar', u'state', u'origin'] [u'stem', u'cell', u'spur', u'therapi', u'hop'] [u'stoner', u'grab', u'pole', u'italian'] [u'studi', u'highlight', u'benefit', u'team', u'sport'] [u'suharto', u'celebr', u'birthday'] [u'survey', u'shed', u'light', u'local', u'polic', u'forc'] [u'taiwan', u'confirm', u'probabl', u'sar', u'case'] [u'teenag', u'hurt', u'motorcycl', u'accid'] [u'televis', u'black', u'spot'] [u'kill', u'road', u'long', u'weekend'] [u'scorer', u'christiansen', u'leav', u'bochum', u'hannov'] [u'kill', u'claremont', u'accid'] [u'envoy', u'slim', u'chanc', u'meet', u'aung'] [u'unit', u'confirm', u'beckham', u'transfer', u'talk'] [u'work', u'gain', u'kyi', u'releas'] [u'colleg', u'prank', u'jail'] [u'peacekeep', u'kill', u'kosovo', u'chopper', u'crash'] [u'vinokourov', u'connect', u'telekom'] [u'wada', u'recommend', u'urin', u'test'] [u'wallabi', u'better', u'jone'] [u'woman', u'die', u'road', u'accid', u'injuri'] [u'woman', u'die', u'melbourn', u'crash'] [u'tasmanian', u'award', u'queen', u'birthday', u'honour'] [u'abattoir', u'mothbal', u'come', u'surpris'] [u'aborigin', u'marin', u'near', u'histor', u'voyag'] [u'academ', u'honour', u'queen', u'birthday', u'list'] [u'consid', u'cull', u'wild', u'hors'] [u'adventur', u'pull', u'plug', u'reed', u'boat', u'cross'] [u'focus', u'remot', u'enrol'] [u'agassi', u'approach', u'match'] [u'alleg', u'brawler', u'grant', u'bail'] [u'system', u'fulli', u'england'] [u'aussi', u'roger', u'win', u'sixth', u'stage', u'tour'] [u'australian', u'design', u'win', u'toni'] [u'australian', u'die', u'heatstrok', u'india'] [u'australia', u'wari', u'wale', u'jone'] [u'author', u'search', u'father'] [u'baghdad', u'treasur', u'uncov', u'secret', u'vault'] [u'ballot', u'domin', u'leadership', u'challeng'] [u'banger', u'pledg', u'world', u'critic'] [u'barber', u'top', u'rank', u'year', u'away'] [u'barca', u'afford', u'beckham', u'claim', u'presidenti'] [u'bayern', u'readi', u'spend', u'million', u'euro', u'makaay'] [u'bear', u'score', u'close', u'ipswich'] [u'beatti', u'accus', u'politicis', u'court'] [u'boca', u'lead', u'argentina', u'bilardo', u'estudiant', u'draw'] [u'boral', u'invest', u'lime', u'busi'] [u'brack', u'reject', u'interst', u'final'] [u'britain', u'readi', u'ditch', u'pound'] [u'burrow', u'win', u'fink', u'buggi', u'class'] [u'businessmen', u'birdwatch', u'receiv', u'honour'] [u'busi', u'challeng', u'nation', u'rise'] [u'calda', u'colombian', u'titl', u'year', u'wait'] [u'chang', u'protect', u'fuel', u'whistl', u'blower'] [u'privat', u'industri', u'recognis', u'tourism'] [u'reef', u'rezon', u'fisher', u'compo'] [u'road', u'better', u'flood', u'proof'] [u'camembert', u'lose', u'pride', u'place', u'french', u'tabl'] [u'canada', u'report', u'sar', u'death'] [u'carr', u'back', u'joint', u'sit', u'parliament'] [u'central', u'queensland', u'recognis', u'honour'] [u'claim', u'contradict', u'child', u'abus', u'royal'] [u'claim', u'scallop', u'ranch', u'impact', u'exagger'] [u'clijster', u'consol', u'doubl'] [u'commiss', u'host', u'industri', u'develop', u'meet'] [u'communiti', u'patrol', u'prove', u'posit'] [u'compani', u'hope', u'methanol', u'plant', u'ahead'] [u'council', u'consid', u'futur', u'confer', u'attend'] [u'council', u'rethink', u'aquat', u'centr', u'plan'] [u'cowboy', u'lose', u'penrith', u'golden', u'point', u'rule'] [u'crean', u'back', u'constitut', u'chang', u'senat'] [u'crean', u'welcom', u'senat', u'plan'] [u'crowd', u'flock', u'hard', u'swallow', u'asthma', u'cure'] [u'deadlock', u'land', u'conserv', u'issu'] [u'detaine', u'accus', u'govt', u'inhuman'] [u'detent', u'centr', u'youth', u'perform', u'school'] [u'diarrhoea', u'case', u'increas', u'iraqi', u'children'] [u'educ', u'effort', u'earn', u'queen', u'birthday', u'honour'] [u'england', u'hussain', u'armchair', u'captainci', u'role'] [u'england', u'crush', u'seri', u'rais', u'ugli', u'question'] [u'evid', u'emerg', u'propos', u'base', u'sydney'] [u'explos', u'shake', u'mauritania', u'capit'] [u'feder', u'seed', u'hall', u'tournament'] [u'ferrero', u'crown', u'king', u'franc'] [u'ferrero', u'take', u'french', u'open'] [u'ferrero', u'take', u'french', u'open', u'final'] [u'finnan', u'unveil', u'liverpool', u'player'] [u'flag', u'burn', u'youth', u'escap', u'punish'] [u'coach', u'say', u'bangladesh', u'deserv', u'mock'] [u'french', u'troop', u'arriv', u'uganda', u'peacekeep'] [u'french', u'troop', u'evacu', u'liberia', u'foreign'] [u'fresh', u'fight', u'break', u'mauritania'] [u'german', u'unearth', u'roman', u'cathedr'] [u'gold', u'coast', u'runaway'] [u'griffith', u'take', u'fink', u'desert', u'race'] [u'group', u'highlight', u'invest', u'impedi'] [u'guevara', u'pressur', u'freeman'] [u'hawk', u'back', u'beazley', u'swan', u'tightlip'] [u'health', u'chief', u'consid', u'challeng'] [u'health', u'dept', u'consid', u'remot', u'servic'] [u'hewitt', u'split', u'coach'] [u'hong', u'kong', u'journalist', u'slam', u'chill', u'secur', u'law'] [u'honour', u'victorian', u'polic'] [u'honour', u'list', u'recognis', u'southern', u'queensland'] [u'hop', u'fade', u'meet'] [u'hop', u'sugar', u'preserv'] [u'illawarra', u'resid', u'honour'] [u'immigr', u'hold', u'hous', u'boon'] [u'indigen', u'congress', u'celebr', u'year'] [u'industri', u'welcom', u'tweed', u'town', u'centr', u'plan'] [u'inquiri', u'hear', u'servic', u'boost'] [u'irish', u'adventur', u'touch', u'darwin'] [u'israel', u'dismantl', u'illeg', u'outpost', u'report'] [u'wasnt', u'good', u'admit', u'verkerk'] [u'market', u'show', u'improv'] [u'kenya', u'osoro', u'return', u'marathon', u'success'] [u'labor', u'rival', u'continu', u'number', u'crunch'] [u'land', u'council', u'land', u'sell', u'debt'] [u'lankan', u'seri', u'eas', u'pressur', u'skipper'] [u'launceston', u'driver', u'runner', u'fink', u'desert', u'race'] [u'lewi', u'honour', u'birthday', u'list'] [u'lewi', u'honour', u'queen', u'birthday', u'list'] [u'lib', u'convent', u'vote', u'outlaw', u'water', u'specul'] [u'lib', u'hear', u'plan', u'region', u'boost'] [u'livermor', u'crean'] [u'local', u'govt', u'wind', u'farm', u'plan'] [u'local', u'recognis', u'queen', u'birthday', u'honour', u'list'] [u'long', u'weekend', u'doesnt', u'deter', u'sport', u'fan'] [u'loyalist', u'forc', u'report', u'mauritania', u'upris'] [u'arrest', u'wheeli', u'explos'] [u'die', u'road', u'crash'] [u'face', u'court', u'murder', u'charg'] [u'mauritania', u'leader', u'fate', u'unsur', u'coup'] [u'mayor', u'hope', u'woe'] [u'mayor', u'think', u'merger', u'unlik'] [u'mazen', u'determin', u'resum', u'contact', u'milit'] [u'rubbish', u'call', u'interst', u'final'] [u'receiv', u'bulk', u'honour'] [u'militia', u'clash', u'claim', u'live', u'congo'] [u'minist', u'play', u'wheat', u'virus', u'warn'] [u'minor', u'parti', u'dismiss', u'power', u'grab', u'senat', u'plan'] [u'miss', u'safe'] [u'mount', u'gambier', u'get', u'queen', u'birthday', u'honour'] [u'want', u'fair', u'compo', u'fisher'] [u'want', u'meet', u'sandbar', u'concern'] [u'mugab', u'stand', u'firm', u'rule'] [u'nake', u'throng', u'photograph', u'set', u'crowd', u'record'] [u'natwa'] [u'law', u'wouldnt', u'alter', u'tampa', u'situat', u'ruddock'] [u'museum', u'egyptian', u'treasur'] [u'korea', u'admit', u'nuclear', u'drive'] [u'govt', u'urg', u'protect', u'wheat', u'sale', u'iraq'] [u'ident', u'award', u'queen', u'birthday', u'honour'] [u'north', u'coaster', u'recognis', u'honour', u'list'] [u'nurs', u'train', u'fund'] [u'owen', u'wipe', u'portugues', u'nightmar', u'british'] [u'palestinian', u'group', u'defi', u'kill', u'isra'] [u'parker', u'spur', u'antonio', u'game'] [u'pecharroman', u'win', u'beloki', u'impress', u'euskal'] [u'philippin', u'polic', u'arrest', u'terrorist', u'player'] [u'pie', u'romp'] [u'plan', u'aim', u'streamlin', u'tourism', u'applic', u'process'] [u'poland', u'closer', u'join'] [u'poland', u'vote', u'join'] [u'polic', u'cadet', u'kill', u'pakistan', u'attack'] [u'polic', u'crack', u'holiday', u'road', u'safeti'] [u'polic', u'investig', u'beach', u'accid'] [u'polic', u'investig', u'disappear', u'attend'] [u'polic', u'maintain', u'road', u'safeti', u'blitz'] [u'polic', u'monitor', u'return', u'holiday', u'maker'] [u'polic', u'drink', u'driver'] [u'polic', u'probe', u'fatal', u'road', u'crash'] [u'polic', u'urg', u'safe', u'return', u'home'] [u'polic', u'warn', u'blowhol', u'fisher', u'care'] [u'polici', u'popular', u'decid', u'leader', u'crean'] [u'pollut', u'spread', u'cresco', u'fertilis', u'plant'] [u'pope', u'urg', u'famili', u'valu', u'path'] [u'powel', u'stand', u'trailer', u'claim'] [u'power', u'quak', u'felt', u'taiwan'] [u'govt', u'quiz', u'agenc', u'nurs'] [u'return', u'home', u'saudi', u'prison'] [u'queen', u'birthday', u'honour', u'educ', u'effort'] [u'queen', u'birthday', u'honour', u'gold', u'coast'] [u'queen', u'birthday', u'honour', u'announc'] [u'queen', u'birthday', u'honour'] [u'queen', u'birthday', u'honour', u'local'] [u'queen', u'birthday', u'honour', u'west', u'resid'] [u'queen', u'birthday', u'honour', u'riverina'] [u'queen', u'birthday', u'honour', u'south', u'west', u'local'] [u'queen', u'birthday', u'honour', u'list', u'announc'] [u'queensland', u'horseman', u'win', u'tamworth', u'event'] [u'race', u'spectat', u'urg', u'drive', u'home', u'safe'] [u'refuge', u'advoc', u'admit', u'mislead', u'email'] [u'refuge', u'close', u'obtain', u'perman', u'resid'] [u'rescu', u'british', u'rower', u'arriv', u'perth'] [u'resid', u'queen', u'birthday', u'honour'] [u'resid', u'powerlin', u'protest', u'beatti'] [u'rivkin', u'expect', u'jail', u'friday'] [u'rocket', u'take', u'rock', u'roll', u'water', u'space'] [u'rossi', u'lead', u'italian', u'podium', u'sweep'] [u'heat', u'rail', u'concern'] [u'sabbatini', u'keep', u'lead', u'rain', u'round'] [u'sabbatini', u'maintain', u'lead', u'rain', u'delay'] [u'santo', u'catch', u'leader', u'cruzeiro', u'brazil'] [u'silverton', u'resid', u'amaz', u'queen', u'birthday', u'honour'] [u'skinstad', u'call', u'join', u'springbok'] [u'season', u'good', u'start'] [u'soldier', u'jail', u'aceh', u'villag', u'beat'] [u'solomon', u'island', u'debt', u'reach'] [u'sorenstam', u'hold', u'stroke', u'lead', u'lpga'] [u'sorenstam', u'land', u'fifth', u'major', u'playoff'] [u'sorenstam', u'win', u'lpga', u'championship', u'fifth', u'major'] [u'spain', u'determin', u'bounc', u'shock', u'defeat'] [u'spain', u'mayo', u'tame', u'armstrong', u'dauphin'] [u'speed', u'fin', u'reduc', u'road', u'toll', u'say'] [u'sport', u'star', u'honour', u'queen', u'birthday'] [u'lanka', u'clinch', u'seri', u'chandana', u'spoil', u'lara'] [u'studi', u'find', u'diabet', u'link', u'potato'] [u'studi', u'show', u'cancer', u'link', u'cadmium'] [u'studi', u'consid', u'north', u'west', u'develop'] [u'survivor', u'crew', u'scout', u'pacif', u'island'] [u'tampa', u'crisi', u'prompt', u'maritim', u'chang'] [u'task', u'forc', u'finalis', u'water', u'restrict', u'report'] [u'town', u'herald', u'exampl', u'ban'] [u'judiciari'] [u'toowoomba', u'hospic', u'open', u'door'] [u'trial', u'alleg', u'bali', u'mastermind', u'continu'] [u'tribal', u'warrior', u'dock', u'sydney'] [u'tsvangirai', u'treason', u'trial', u'continu'] [u'expect', u'adopt', u'euro'] [u'promis', u'greater', u'care', u'weapon', u'intellig'] [u'envoy', u'endeavour', u'meet'] [u'envoy', u'leav', u'burma', u'earli'] [u'envoy', u'lobbi', u'junta', u'chief', u'releas'] [u'envoy', u'stay', u'burma'] [u'union', u'say', u'negoti', u'track'] [u'union', u'warn', u'leadership', u'tussl', u'turn', u'voter'] [u'mar', u'launch', u'delay'] [u'monkeypox', u'western', u'hemispher'] [u'prepar', u'help', u'argentina', u'powel'] [u'verkerk', u'leav', u'wonder', u'real', u'worth'] [u'opposit', u'reject', u'road', u'toll', u'claim'] [u'transport', u'overhaul'] [u'viticultur', u'effort', u'reward', u'queen', u'birthday'] [u'voss', u'rule', u'week'] [u'govt', u'pressur', u'chang', u'forest', u'plan'] [u'wallabi', u'stick', u'experiment', u'team'] [u'wallabi', u'smith', u'test', u'seri'] [u'waugh', u'sober', u'collect', u'birthday', u'honour'] [u'western', u'queensland', u'honour'] [u'wheat', u'farmer', u'urg', u'plough'] [u'wilson', u'port', u'saint', u'clash'] [u'woman', u'alleg', u'bedroom'] [u'world', u'impress', u'aust', u'respons', u'bali', u'bomb'] [u'young', u'produc'] [u'open', u'batsman', u'vermuelen', u'send', u'home', u'disgrac'] [u'levi', u'plan', u'age', u'care', u'bed'] [u'abar', u'say', u'drought', u'govt', u'sure'] [u'olympian', u'settl', u'damag', u'defam'] [u'review', u'rockhampton', u'district', u'boundari'] [u'milan', u'sign', u'cafu'] [u'alleg', u'fraud', u'uncov', u'aborigin', u'council'] [u'amc', u'rocki', u'plant', u'save', u'stakehold'] [u'ansett', u'levi', u'go', u'sooner', u'oppn'] [u'anthrax', u'probe', u'lead', u'maryland', u'pond'] [u'anti', u'social', u'behaviour', u'fare', u'evas'] [u'atsic', u'consid', u'legal', u'action', u'fund'] [u'australia', u'wide', u'wale', u'flatley'] [u'australian', u'actor', u'die', u'hollywood'] [u'australian', u'advis', u'avoid', u'mauritania'] [u'australian', u'evacu', u'liberia'] [u'babi', u'bonus', u'unfair', u'democrat'] [u'bacon', u'tightlip', u'bass', u'strait', u'ferri'] [u'bakeri', u'owner', u'appeal', u'fine'] [u'bank', u'defi', u'wall', u'street'] [u'barossa', u'valley', u'fast', u'food', u'outlet', u'anger', u'resid'] [u'beckham', u'hint', u'transfer'] [u'blair', u'defend', u'britain', u'euro', u'stanc'] [u'blue', u'prepar', u'best', u'gould'] [u'boat', u'plan', u'public', u'comment'] [u'brack', u'upset', u'wont', u'help', u'thank', u'troop'] [u'burk', u'comeback', u'hold', u'fail', u'fit', u'test'] [u'burk', u'push', u'retain', u'seat', u'lower', u'hous'] [u'busi', u'usual', u'bok', u'scot'] [u'call', u'pool', u'fenc', u'inspect'] [u'upgrad', u'kalgoorli', u'region', u'hospit'] [u'carmodi', u'remind', u'busi'] [u'central', u'aust', u'state', u'meet', u'justic'] [u'chief', u'justic', u'take', u'administr', u'tasmania'] [u'china', u'lead', u'world', u'newspap', u'sale', u'report'] [u'china', u'gorg', u'close', u'requir', u'level'] [u'clark', u'welcom', u'settlement'] [u'come', u'kyli', u'tell', u'brit'] [u'commission', u'downplay', u'katherin', u'crime', u'rise'] [u'communiti', u'urg', u'discuss', u'chang', u'elector'] [u'communiti', u'consult', u'histor', u'valu', u'tree'] [u'communiti', u'meet', u'discuss', u'refineri', u'health', u'concern'] [u'communiti', u'consult', u'road', u'closur'] [u'concern', u'rais', u'taxi', u'secur', u'camera'] [u'confid', u'start', u'schuettler', u'hall'] [u'consum', u'confid', u'fall', u'survey'] [u'continu', u'dredg', u'need', u'helen'] [u'coron', u'rule', u'leski', u'probe'] [u'council', u'consid', u'retir', u'villag', u'project'] [u'council', u'ditch', u'hour', u'secur', u'patrol', u'plan'] [u'council', u'unhappi', u'sunwat', u'water', u'restrict'] [u'crean', u'disappoint', u'hawk', u'stanc'] [u'crime', u'spree', u'finish', u'year', u'jail', u'sentenc'] [u'danih', u'say', u'demon', u'biggest', u'challeng', u'career'] [u'evid', u'link', u'year', u'rape', u'case'] [u'dog', u'bomb', u'sniffer'] [u'donat', u'climb', u'bendigo', u'tornado', u'victim'] [u'downer', u'concern', u'sydney', u'qaeda', u'link'] [u'apologis', u'fals', u'murder', u'charg'] [u'dragon', u'drop', u'riddel', u'girdler'] [u'driver', u'heed', u'polic', u'road', u'warn'] [u'driver', u'ignor', u'drink', u'drive', u'warn'] [u'tourism', u'attract', u'open', u'soon', u'break', u'hill'] [u'elect', u'surgeri', u'get', u'chop', u'wangaratta', u'hospit'] [u'elia', u'charg', u'sydney', u'shoot'] [u'engin', u'begin', u'flood', u'investig'] [u'england', u'itali', u'action', u'marathon', u'season', u'near'] [u'etchel', u'winner', u'look', u'bigger', u'challeng'] [u'euro', u'countdown', u'clock', u'unveil'] [u'expert', u'fish', u'inland', u'water', u'solut'] [u'farmer', u'urg', u'ignor', u'wheat', u'virus', u'report'] [u'ferri', u'cop', u'match'] [u'ferri', u'plead', u'guilti', u'danger', u'throw', u'charg'] [u'fevola', u'mckay', u'tribun'] [u'figur', u'improv', u'drought', u'affect', u'area'] [u'finnan', u'agre', u'liverpool', u'deal'] [u'flower', u'bloom', u'pakistan'] [u'ford', u'show', u'funni'] [u'forest', u'plan', u'delay', u'blame'] [u'balmain', u'star', u'elia', u'charg', u'sydney'] [u'gundagai', u'woman', u'die', u'india'] [u'command', u'seek', u'amnesti'] [u'qanta', u'worker', u'deni', u'qaeda', u'link'] [u'state', u'parliamentarian', u'receiv', u'state'] [u'forward', u'england', u'victori', u'zealand'] [u'arrest', u'thailand', u'embassi', u'bomb', u'plot'] [u'soldier', u'wound', u'iraq'] [u'frontbench', u'beazley', u'tomorrow'] [u'fund', u'commit', u'court', u'hous', u'upgrad'] [u'gambl', u'counsellor', u'prais', u'remov'] [u'german', u'tightrop', u'artist', u'spectacular', u'rhine'] [u'goldfield', u'crash', u'victim', u'name'] [u'gould', u'dismiss', u'home', u'grind', u'advantag'] [u'govern', u'thank', u'back', u'project'] [u'govt', u'concern', u'drug', u'dealer', u'claim', u'benefit'] [u'govt', u'criticis', u'slow', u'repons', u'transport'] [u'govt', u'scrap', u'ansett', u'levi'] [u'govt', u'spend', u'extend', u'mabthera', u'list'] [u'govt', u'spend', u'radar', u'technolog'] [u'goward', u'encourag', u'matern', u'allow', u'propos'] [u'great', u'barrier', u'reef', u'zone', u'consult', u'begin'] [u'green', u'urg', u'extra', u'assist', u'disadvantag'] [u'hama', u'leader', u'surviv', u'missil', u'strike', u'report'] [u'hama', u'vow', u'increas', u'attack', u'assassin'] [u'hama', u'vow', u'step', u'attack', u'assassin'] [u'hammer', u'boost', u'jam'] [] [u'victim', u'award'] [u'home', u'loan', u'slight', u'declin'] [u'hunter', u'coal', u'export', u'asian'] [u'walk', u'home', u'dont', u'wimbledon', u'goran'] [u'increas', u'water', u'charg', u'possibl'] [u'inspir', u'john', u'wait', u'origin'] [u'interpret', u'access', u'hospit'] [u'investig', u'begin', u'truck'] [u'investig', u'continu', u'motorcycl', u'crash'] [u'iraqi', u'stall', u'sell', u'video', u'tortur'] [u'accid', u'prompt', u'call', u'tighter'] [u'jobless', u'rate', u'winter'] [u'john', u'fire', u'origin'] [u'kelpi', u'prove', u'record', u'sale'] [u'kempsey', u'council', u'discuss', u'draft', u'financi', u'plan'] [u'kidnapp', u'report', u'releas', u'staff', u'georgia'] [u'kid', u'club', u'attribut', u'reduc', u'crime'] [u'kiwi', u'pair', u'test', u'debut', u'england'] [u'kournikova', u'injuri', u'blow'] [u'labor', u'tear', u'apart', u'say', u'senat'] [u'lake', u'macquari', u'council', u'bring', u'budget'] [u'lewi', u'book', u'showdown', u'contend', u'klitschko'] [u'local', u'farmer', u'spark', u'pelletis', u'plant', u'idea'] [u'luton', u'investig', u'wimbledon', u'merger'] [u'fin', u'indec', u'act'] [u'face', u'court', u'ride', u'accid'] [u'serv', u'jail', u'time', u'throw', u'knife'] [u'market', u'send', u'wool', u'price', u'spin'] [u'mcgradi', u'disappoint', u'parent', u'hoon'] [u'menzi', u'readi', u'blue', u'kennedi'] [u'milan', u'berlusconi', u'back', u'away', u'beckham'] [u'minist', u'confid', u'green', u'paper', u'wont', u'affect'] [u'minist', u'put', u'famili', u'coff', u'visit'] [u'mobil', u'phone', u'coverag', u'improv'] [u'money', u'concern', u'hold', u'maralinga', u'handov'] [u'drink', u'driver', u'fatal', u'polic'] [u'morley', u'dupain', u'work', u'donat', u'canberra', u'galleri'] [u'motorbik', u'stunt', u'land', u'hospit'] [u'motorist', u'urg', u'headlight'] [u'ask', u'govt', u'address', u'sandbar', u'issu'] [u'partner', u'kill', u'accid'] [u'mysteri', u'distress', u'flare', u'spark', u'search'] [u'final', u'star', u'chase', u'olymp', u'gold'] [u'net', u'face', u'matchup', u'final'] [u'attract', u'hope', u'draw', u'visitor', u'qanta'] [u'coral', u'reef'] [u'featur', u'appl', u'grape', u'festiv'] [u'initi', u'help', u'council', u'maintain', u'local'] [u'jersey', u'home', u'hockey', u'silverwar'] [u'speed', u'camera', u'target', u'school'] [u'outpost', u'dismantl', u'israel'] [u'korea', u'nuclear', u'talk', u'good', u'say', u'downer'] [u'appoint', u'commission', u'rank'] [u'farmer', u'worri', u'prop', u'ail', u'aust'] [u'palestinian', u'shoot', u'outsid', u'jewish', u'settlement', u'armi'] [u'panther', u'rooster', u'breach', u'notic'] [u'parri', u'councillor', u'deni', u'agreement', u'merg'] [u'passeng', u'tax', u'better', u'safeti'] [u'petit', u'sway', u'doubl', u'jeopardi', u'argument'] [u'phillip', u'begin', u'redback'] [u'physic', u'trainer', u'dump', u'indian', u'cricket', u'team'] [u'pilbara', u'region', u'focus', u'intern'] [u'play', u'off', u'world', u'team'] [u'govt', u'propos', u'major', u'chang'] [u'polic', u'investig', u'serial', u'indec', u'expos'] [u'polic', u'look', u'knife', u'attack'] [u'public', u'reason', u'drug', u'refus'] [u'push', u'nurs', u'educ', u'chang'] [u'govt', u'urg', u'heed', u'doubl', u'jeopardi', u'petit'] [u'queen', u'birthday', u'honour', u'recognis', u'central'] [u'railway', u'line', u'caus', u'access', u'problem'] [u'ranger', u'portugues', u'star'] [u'region', u'growth', u'hop', u'rest', u'book'] [u'region', u'need', u'input', u'budget'] [u'road', u'upgrad', u'wyndham'] [u'netbal', u'world'] [u'busi', u'group', u'fight', u'wage', u'increas'] [u'growth', u'slow'] [u'school', u'student', u'return', u'suspens'] [u'scientist', u'releas', u'treatment', u'injur', u'race'] [u'scotland', u'lambert', u'quit', u'plan', u'hold'] [u'seagul', u'hope', u'bounc', u'ipswich'] [u'seven', u'soldier', u'dead', u'injur', u'aceh', u'violenc'] [u'simpson', u'daniel', u'strengthen', u'england'] [u'korea', u'reiter', u'nuclear', u'weapon', u'stanc'] [u'solar', u'cycl', u'challeng', u'light'] [u'sosa', u'basebal', u'appeal', u'begin', u'tuesday'] [u'lanka', u'presid', u'warn', u'accept'] [u'stoianov', u'pip', u'mcgee', u'dauphin', u'liber', u'stage'] [u'strike', u'grip', u'franc'] [u'stromlo', u'forest', u'receiv', u'memori', u'park'] [u'studi', u'find', u'fish', u'threat', u'seabird', u'food'] [u'surveil', u'camera', u'target', u'roma', u'spot'] [u'tamworth', u'attack', u'rob'] [u'look', u'adopt', u'anti', u'hoon', u'law'] [u'taxi', u'driver', u'speak', u'stab'] [u'teacher', u'leav', u'meekatharra', u'secur', u'concern'] [u'telstra', u'say', u'job'] [u'kashmir', u'violenc'] [u'think', u'tank', u'call', u'save', u'solomon'] [u'thornberri', u'challeng', u'green'] [u'road', u'long', u'weekend'] [u'time', u'tell', u'bush', u'say', u'iraq', u'weapon'] [u'tougher', u'check', u'airport', u'staff'] [u'tough', u'fight', u'duff', u'georgian', u'clash'] [u'tourism', u'industri', u'encourag', u'confer'] [u'tsvangirai', u'custodi', u'juli'] [u'tugger', u'give', u'joey', u'boy', u'advic'] [u'ullrich', u'happi', u'tour', u'warm'] [u'envoy', u'press', u'kyi', u'releas'] [u'envoy', u'push', u'kyi', u'releas'] [u'envoy', u'meet'] [u'univers', u'athlet', u'bind', u'coff'] [u'venus', u'play', u'itali'] [u'govt', u'say', u'tourism', u'campaign', u'success'] [u'virgin', u'allianc', u'streamlin', u'travel'] [u'voss', u'headland', u'surgeri'] [u'voter', u'beazley'] [u'voter', u'push', u'crean', u'beazley'] [u'waterfal', u'inquiri', u'hear', u'failur', u'implement'] [u'water', u'health', u'rise', u'colli', u'river'] [u'wheat', u'export', u'iraq', u'threat', u'vail'] [u'wild', u'brawl', u'gunnedah', u'polic', u'issu', u'summon'] [u'wildlif', u'servic', u'intak', u'expect', u'assist', u'region'] [u'woman', u'accus', u'smuggl', u'drug', u'prison'] [u'wood', u'clear', u'favourit', u'open'] [u'young', u'sapphir', u'shine', u'russia'] [u'zimbabw', u'chang', u'squad', u'seri'] [u'zone', u'chang', u'forc', u'commerci', u'fisher'] [u'worker', u'kidnap', u'peru'] [u'accc', u'wont', u'block', u'coke', u'neverfail'] [u'urg', u'investig', u'uranium'] [u'adelaid', u'sitter', u'caus', u'traffic', u'chao'] [u'boss', u'critcis', u'lion', u'dockland', u'complaint'] [u'boss', u'criticis', u'lion', u'dockland'] [u'play', u'pace', u'doubl', u'jeopardi', u'chang'] [u'say', u'loss', u'hurt', u'hotel'] [u'alleg', u'paedophil', u'appear', u'court'] [u'readi', u'origin', u'lang', u'park'] [u'consid', u'high', u'north', u'west', u'hous', u'cost'] [u'say', u'talk', u'stanwel', u'project'] [u'amrozi', u'pick', u'target', u'samudra'] [u'appeal', u'court', u'judg', u'step', u'fingleton', u'appeal'] [u'appeal', u'judg', u'stand', u'fingleton', u'case'] [u'asic', u'concern', u'capit', u'rais', u'approach'] [u'atsic', u'member', u'resign', u'govt', u'decis'] [u'australasian', u'tour', u'gaug', u'wale', u'progress', u'hansen'] [u'austral', u'rais', u'offer', u'bristil', u'share'] [u'batman', u'compet', u'world', u'athlet', u'championship'] [u'bennett', u'set', u'scene', u'origin', u'thriller'] [u'bennett', u'set', u'stage', u'origin', u'thriller'] [u'bennett', u'stay', u'gould', u'controversi'] [u'bennett', u'stay', u'controversi'] [u'turnout', u'quarri', u'reserv', u'meet'] [u'blix', u'hit', u'pentagon', u'bastard'] [u'blue', u'ahead', u'half', u'time'] [u'blue', u'point', u'lead', u'half', u'time', u'origin'] [u'bomber', u'welcom', u'pair', u'kangaroo', u'match'] [u'book', u'take', u'imparti', u'look', u'reef', u'catchment'] [u'border', u'communiti', u'seek', u'polic', u'station'] [u'brack', u'spend', u'anti', u'terror', u'prepar'] [u'bull', u'faith'] [u'feder', u'hemp', u'industri', u'fund'] [u'canberra', u'bushfir', u'inquiri', u'begin', u'monday'] [u'cancer', u'death', u'past', u'year'] [u'cargo', u'ship', u'deliv', u'food', u'frog', u'sound', u'space'] [u'carlton', u'pair', u'clear', u'tribun'] [u'cauldron', u'start', u'boil', u'origin', u'countdown'] [u'celtic', u'issu', u'green', u'white', u'light'] [u'civil', u'libertarian', u'question', u'privaci', u'law'] [u'civil', u'liberti', u'watchdog', u'rap', u'rooster'] [u'concern', u'air', u'indigen', u'council', u'financ'] [u'concern', u'rais', u'bali', u'child', u'trade'] [u'cosgrov', u'unsur', u'peacekeep', u'solomon'] [u'council', u'air', u'fund', u'concern'] [u'council', u'consid', u'form', u'aquat', u'centr', u'compani'] [u'council', u'get', u'foreshor', u'develop', u'plan'] [u'councillor', u'want', u'rethink', u'sand', u'dune', u'fenc'] [u'crean', u'stand', u'machin', u'latham'] [u'crow', u'lobbi', u'fixtur'] [u'davenport', u'play', u'eastbourn'] [u'develop', u'releas', u'apart', u'complex', u'plan'] [u'doc', u'smack', u'coerciv', u'medic', u'school', u'scheme'] [u'doubt', u'cast', u'polic', u'station', u'fund'] [u'downer', u'rule', u'sanction', u'burma'] [u'driver', u'warn', u'chang', u'surfer'] [u'drought', u'affect', u'farmer'] [u'dun', u'tuiavii', u'fin', u'brawl'] [u'egypt', u'ban', u'matrix', u'reload'] [u'confid', u'overcom', u'tiger', u'factor'] [u'emerg', u'dept', u'experi', u'long', u'weekend', u'woe'] [u'extrem', u'alert', u'add', u'need', u'alarm'] [u'farmer', u'question', u'abar', u'drought', u'report'] [u'farmer', u'seek', u'bushfir', u'coron', u'inquest'] [u'hunt', u'michael', u'jackson', u'bandit'] [u'feder', u'moral', u'boost', u'kafelnikov', u'dent'] [u'fiji', u'judg', u'rule', u'coup', u'accus', u'face', u'court'] [u'filmmak', u'will', u'censor', u'smoke'] [u'blood', u'john', u'domin', u'origin'] [u'blood', u'john', u'spoil', u'qlds', u'parti'] [u'fisher', u'protest', u'marin', u'park', u'zone', u'chang'] [u'fisher', u'want', u'holloway', u'meet', u'compo', u'decis'] [u'jail', u'medicar', u'fraud'] [u'foster', u'consid', u'strateg', u'option'] [u'foster', u'share', u'rise', u'stock', u'statement'] [u'gambl', u'counsellor', u'welcom', u'remov'] [u'gene', u'regul', u'canola', u'decis'] [u'good', u'thing', u'horizon', u'cattl', u'industri', u'report'] [u'govt', u'give', u'medic', u'research'] [u'govt', u'move', u'asio', u'deal'] [u'green', u'atsic', u'know', u'nyoongah', u'camp', u'closur'] [u'group', u'advoc', u'film', u'rat', u'smoke'] [u'group', u'gather', u'discuss', u'water', u'suppli'] [u'group', u'unveil', u'crash', u'memori'] [u'hama', u'leader', u'vow', u'earthquak', u'attack'] [u'hamilton', u'island', u'takeov', u'battl', u'continu'] [u'hantuchova', u'duck', u'clash'] [u'harrington', u'readi', u'lead', u'european', u'assault'] [u'headmast', u'suspend', u'year', u'say', u'sorri'] [u'high', u'cost', u'budget', u'initi'] [u'histori', u'help', u'bushfir', u'planner'] [u'hong', u'kong', u'alert', u'anthrax', u'death'] [u'hope', u'flight', u'boost', u'increas', u'visitor', u'number'] [u'hop', u'curfew', u'trial', u'address', u'street', u'crime'] [u'howard', u'say', u'iraq', u'weapon'] [u'hushovd', u'win', u'dauphin', u'stage', u'ahead', u'cook'] [u'stay', u'auxerr', u'say', u'ciss'] [u'imclon', u'founder', u'jail', u'year'] [u'mickey', u'mous', u'lewi', u'klitschko'] [u'impress', u'laport', u'tell', u'french', u'world', u'hope'] [u'indian', u'hockey', u'team', u'return', u'rous', u'welcom'] [u'indigen', u'leader', u'curb'] [u'industri', u'area', u'broadband', u'internet', u'servic'] [u'injuri', u'lion', u'turn', u'rooki', u'weller'] [u'islam', u'group', u'say', u'concern', u'grow', u'youth'] [u'islam', u'movement', u'deni', u'link', u'qaeda'] [u'israel', u'vow', u'continu', u'target', u'militia', u'leader'] [u'jam', u'nightmar', u'claim', u'goalkeep', u'legend'] [u'john', u'confid', u'timmin', u'deliv'] [u'jone', u'tight', u'lip', u'england'] [u'journalist', u'tell', u'tshirt', u'asean', u'forum'] [u'kasper', u'break', u'hick', u'hand'] [u'kazakhstan', u'prime', u'minist', u'resign'] [u'kidnapp', u'releas', u'hostag', u'peru'] [u'king', u'brother', u'unabl', u'answer', u'question'] [u'klitschko', u'breakfast', u'readi', u'lewi'] [u'knight', u'coach', u'happi', u'line', u'georg'] [u'labor', u'back', u'plan', u'intercept', u'north', u'korean', u'ship'] [u'latham', u'attack', u'beazley', u'support'] [u'leisur', u'centr', u'face', u'fund', u'shortfal'] [u'liberian', u'rebel', u'pull', u'central', u'monrovia'] [u'long', u'term', u'market', u'rat', u'year'] [u'love', u'draw', u'comfort', u'famili', u'latest', u'tragedi'] [u'macklin', u'expect', u'crean', u'cruis', u'victori'] [u'accus', u'flight', u'offenc', u'remov', u'court'] [u'await', u'sentenc', u'door', u'assault'] [u'court', u'scare'] [u'charg', u'possess', u'knife', u'flight'] [u'fin', u'drive', u'partner', u'bonnet'] [u'lose', u'appeal', u'murder', u'convict'] [u'question', u'perth', u'death'] [u'sentenc', u'life', u'jail', u'murder'] [u'readi', u'sell', u'beckham', u'snub', u'barca', u'deal'] [u'market', u'climb', u'gain', u'bank', u'news', u'corp'] [u'maroon', u'bennett'] [u'mass', u'grave', u'report', u'aceh'] [u'mayor', u'air', u'local', u'govt', u'reform', u'concern'] [u'mayor', u'highlight', u'develop', u'propos', u'consult'] [u'mckenzi', u'protea', u'squad', u'england'] [u'media', u'tycoon', u'lash', u'western', u'media', u'iraq'] [u'meet', u'reject', u'boundari', u'chang'] [u'meet', u'focus', u'water', u'restrict'] [u'crisi', u'meet', u'discuss', u'work', u'hour'] [u'minist', u'back', u'call', u'year', u'term'] [u'mobil', u'phone', u'face', u'pool', u'chang', u'room'] [u'good', u'news', u'tourism', u'industri'] [u'hydrotherapi', u'pool', u'talk', u'plan'] [u'question', u'state', u'meatwork'] [u'push', u'greater', u'homeswest', u'staff', u'power'] [u'nefert', u'buri', u'valley', u'king'] [u'net', u'side', u'refere', u'test'] [u'coach', u'elli', u'predict', u'wildcat', u'birth'] [u'zealand', u'gambl', u'team', u'meet', u'english'] [u'north', u'west', u'resid', u'urg', u'mozzi', u'awar'] [u'continu', u'investig', u'hepat', u'outbreak'] [u'hepat', u'probe', u'continu'] [u'offici', u'investig', u'vessel', u'intercept'] [u'spill', u'investig'] [u'pizza', u'hold', u'xenophobia'] [u'opec', u'keep', u'output', u'steadi'] [u'oppn', u'say', u'rivkin', u'avoid', u'jail'] [u'parent', u'question', u'answer', u'mass', u'suspens'] [u'parliament', u'reject', u'rat', u'reform'] [u'partick', u'sign', u'perth', u'pair'] [u'petrol', u'spill', u'clean'] [u'plane', u'hit', u'powerlin', u'near', u'gunnedah'] [u'play', u'underway', u'lang', u'park', u'origin'] [u'poki', u'king', u'criticis', u'remov'] [u'polic', u'wit', u'melbourn', u'murder'] [u'polic', u'claim', u'thai', u'suspect', u'plan', u'attack'] [u'polic', u'urg', u'public', u'tell', u'donkey'] [u'port', u'lobbi', u'darwin', u'match', u'plan'] [u'priest', u'lose', u'titl', u'attempt', u'consecr'] [u'fin', u'fan', u'violenc'] [u'govt', u'consid', u'indigen', u'govern', u'chang'] [u'racism', u'consid', u'barrier', u'polit'] [u'cross', u'say', u'bodi', u'remov', u'aceh'] [u'reid', u'luczak', u'queen'] [u'reservoir', u'killer', u'see', u'attack'] [u'resid', u'doubt', u'emiss', u'assur'] [u'retail', u'fume', u'lose', u'easter', u'busi'] [u'deal', u'boost', u'countri', u'servic'] [u'romario', u'aim', u'thousand', u'goal', u'mileston'] [u'ross', u'river', u'virus', u'caus', u'goldfield', u'concern'] [u'rumsfeld', u'call', u'unit', u'europ'] [u'rural', u'research', u'merger', u'scrap'] [u'scammer', u'prowl'] [u'schumach', u'retir', u'manag'] [u'serbia', u'secret', u'polic', u'chief', u'face', u'crime'] [u'sharon', u'vow', u'continu', u'target', u'hama', u'leader'] [u'shire', u'air', u'power', u'complaint', u'concern'] [u'shire', u'plan', u'east', u'kimberley', u'rate', u'rise'] [u'kill', u'train', u'collid', u'germani'] [u'skier', u'hiker', u'urg', u'check', u'hut', u'stand'] [u'skywest', u'defend', u'flight', u'reliabl'] [u'smith', u'declar', u'support', u'beazley'] [u'smith', u'join', u'swan', u'back', u'beazley'] [u'solomon', u'rebel', u'hostag', u'report'] [u'solo', u'rower', u'head', u'land'] [u'sosa', u'await', u'appeal', u'decis', u'cork'] [u'springer', u'seem', u'head', u'senat', u'contest'] [u'state', u'rail', u'say', u'psych', u'test', u'rigor'] [u'strike', u'result', u'riot', u'outsid', u'french', u'parliament'] [u'student', u'court', u'smoke', u'suspens'] [u'student', u'rais', u'cours', u'cost', u'concern'] [u'studi', u'find', u'educ', u'farmer', u'earn', u'money'] [u'studi', u'gaug', u'youth', u'elect', u'particip'] [u'support', u'seek', u'obourk', u'exhibit', u'centr'] [u'survey', u'highlight', u'farmer', u'uncertainti'] [u'survey', u'highlight', u'grow', u'busi', u'confid'] [u'govt', u'offer', u'taxi', u'secur', u'camera', u'reassur'] [u'tassi', u'fishermen', u'bemoan', u'lazi', u'lobster'] [u'team', u'zealand', u'waddel', u'turn', u'rugbi'] [u'thai', u'suspect', u'plan', u'attack', u'month', u'polic'] [u'tonga', u'court', u'tell', u'govt', u'allow', u'paper'] [u'treatment', u'scheme', u'aim', u'mental'] [u'tsvangirai', u'court', u'anti', u'govern', u'protest'] [u'tszyu', u'injur', u'train', u'world', u'titl', u'bout'] [u'stand', u'trial', u'ecstasi', u'bust'] [u'doctor', u'warn', u'sexual', u'health', u'crisi'] [u'announc', u'blix', u'replac'] [u'uncap', u'heenan', u'line', u'debut', u'say', u'jone'] [u'uncertainti', u'general', u'secur', u'irrig'] [u'union', u'boss', u'say', u'lose', u'seat', u'crean', u'win'] [u'univers', u'highlight', u'fund', u'woe'] [u'arrest', u'iraqi', u'suspect'] [u'stock', u'lift', u'wall'] [u'vcat', u'decid', u'residenti', u'develop'] [u'vettori', u'replac', u'macgil', u'nottinghamshir'] [u'govt', u'urg', u'connect'] [u'opposit', u'question', u'need', u'water', u'price', u'rise'] [u'voter', u'clear', u'polici', u'direct', u'crean'] [u'govt', u'voic', u'traffic', u'concern'] [u'join', u'phone', u'pool'] [u'warrnambool', u'ratepay', u'face', u'rat', u'rise'] [u'waugh', u'smith', u'face', u'wale'] [u'west', u'indi', u'rest', u'dillon', u'taylor'] [u'woman', u'maul', u'croc'] [u'woodford', u'appoint', u'team'] [u'woodward', u'name', u'unchang', u'line', u'black'] [u'vandal', u'damag', u'nation', u'park'] [u'abbott', u'defend', u'casual', u'work'] [u'aborigin', u'violenc', u'crisi', u'point', u'dodson'] [u'accc', u'claim', u'qanta', u'merger', u'decis'] [u'accus', u'murder', u'lose', u'famili', u'estat'] [u'drop', u'reconstruct', u'levi'] [u'unemploy', u'trend', u'increas'] [u'wont', u'budg', u'asio'] [u'wont', u'budg', u'asio'] [u'airport', u'plan', u'puzzl', u'council'] [u'airspac', u'group', u'back', u'safeti', u'concern'] [u'propos', u'mothbal', u'stanwel', u'plant'] [u'demerg', u'track'] [u'ralli', u'boost'] [u'amrozi', u'detail', u'involv', u'multipl', u'indonesian'] [u'push', u'releas', u'downer'] [u'asio', u'unlik', u'minor', u'parti', u'back'] [u'palestinian', u'kill', u'gaza', u'missil'] [u'atsic', u'review', u'focus', u'role', u'chang'] [u'australian', u'command', u'warn', u'iraq', u'unsaf'] [u'australian', u'inland', u'push', u'water', u'wise', u'messag'] [u'australian', u'satellit', u'launch'] [u'australian', u'help', u'choos', u'bali', u'amrozi'] [u'bangkok', u'plot', u'model', u'bali', u'blast', u'thai', u'govt'] [u'bankwest', u'takeov', u'give', u'thumb'] [u'beatti', u'refus', u'leadership', u'prefer'] [u'beazley', u'lash', u'latham'] [u'beckham', u'choos', u'real', u'barca', u'roberto'] [u'bendigo', u'council', u'consid', u'rate', u'rise'] [u'blame', u'injuri', u'lang', u'park'] [u'broadband', u'complaint', u'rise'] [u'buckley', u'bevi', u'star', u'return', u'injuri'] [u'burk', u'elect', u'leadership'] [u'butler', u'darwin', u'urg', u'closer', u'asian', u'tie'] [u'live', u'murray', u'probe'] [u'call', u'fast', u'track', u'bairnsdal', u'connect'] [u'canberra', u'resid', u'vision', u'transport'] [u'cash', u'incent', u'aim', u'boost', u'western', u'polic'] [u'charg', u'lay', u'sieg'] [u'chinatown', u'heritag', u'talk', u'continu'] [u'tap', u'inspector', u'help', u'iraq', u'weapon'] [u'citi', u'rail', u'crime', u'rat', u'rise'] [u'claim', u'coal', u'excav', u'littl', u'water', u'flow'] [u'claim', u'govt', u'help', u'tourism', u'develop'] [u'competit', u'lower', u'fuel', u'price', u'ract'] [u'congress', u'odd', u'weapon', u'intellig', u'inquiri'] [u'corbel', u'unveil', u'futur', u'vision', u'canberra'] [u'council', u'criticis', u'govt', u'nativ', u'titl', u'stanc'] [u'council', u'pay', u'levi', u'protest'] [u'council', u'predict', u'water', u'woe'] [u'council', u'consid', u'merger', u'possibl'] [u'council', u'combin', u'effort', u'secur', u'fund'] [u'court', u'back', u'decis', u'expel', u'student'] [u'crean', u'look', u'honour', u'colleagu'] [u'darwin', u'mayor', u'unsur', u'phone', u'ban'] [u'dawson', u'mehrten', u'england', u'clash'] [u'deadlin', u'hydrotherapi', u'pool', u'talk'] [u'dechi', u'distract', u'scream', u'queen', u'sharapova'] [u'dept', u'immigr', u'detain', u'illeg', u'worker'] [u'dippenaar', u'replac', u'injur', u'mckenzi'] [u'dockland', u'surfac', u'safe', u'boss'] [u'drought', u'good', u'cattl'] [u'earthquak', u'felt', u'tuggeranong'] [u'educ', u'dept', u'deni', u'neglect', u'remot', u'school'] [u'aussi', u'compet', u'open'] [u'guerrouj', u'dragila', u'czech', u'form', u'ostrava'] [u'emot', u'armstrong', u'take', u'control', u'time', u'trial'] [u'english', u'cricket', u'put', u'faith', u'vision'] [u'escap', u'spark', u'jail', u'secur', u'review'] [u'expert', u'surpris', u'secur', u'laps'] [u'fairbairn', u'avenu', u'receiv', u'upgrad'] [u'farmer', u'drought', u'applic', u'help'] [u'figur', u'highlight', u'high', u'prostat', u'cancer', u'rat'] [u'gold', u'worker', u'final', u'entitl'] [u'mayor', u'succumb', u'cancer'] [u'offic', u'manag', u'face', u'steal', u'charg'] [u'franc', u'claim', u'arrest', u'qaeda', u'leader'] [u'freeman', u'pull', u'french', u'athlet', u'meet'] [u'gallop', u'wont', u'beazley'] [u'gazza', u'certain', u'come', u'china', u'press'] [u'glen', u'inn', u'council', u'push', u'ahead', u'boundari'] [u'govt', u'urg', u'provid', u'greater', u'incent'] [u'graffiti', u'attack', u'polic', u'station'] [u'grain', u'research', u'stay', u'loxton'] [u'group', u'speak', u'inlet', u'concern'] [u'hamilton', u'ownership', u'struggl', u'heat'] [u'happi', u'owen', u'spain', u'drain', u'continu'] [u'auction', u'draw', u'limit', u'respons'] [u'head', u'roll', u'beatti'] [u'health', u'research', u'institut', u'get', u'boost'] [u'health', u'servic', u'breast', u'cancer', u'screen'] [u'hemp', u'claim', u'court', u'rule', u'enhanc', u'disrespect'] [u'hewitt', u'agassi', u'reward', u'queen'] [u'hewitt', u'reid', u'face', u'tough', u'competit'] [u'histori', u'open'] [u'hroc', u'urg', u'job', u'scheme'] [u'inquiri', u'aim', u'combat', u'report', u'crime'] [u'insur', u'council', u'elect', u'presid'] [u'iranian', u'protest', u'muslim', u'cleric'] [u'iraq', u'daili', u'retract', u'gang', u'rape', u'alleg'] [u'isra', u'armi', u'order', u'wipe', u'hama'] [u'libya', u'south', u'africa', u'say'] [u'king', u'restructur', u'busi', u'tie'] [u'kiwi', u'keen', u'return', u'karachi'] [u'knowledg', u'boost', u'teacher', u'tech', u'learn'] [u'labor', u'support', u'north', u'korea', u'cargo', u'intercept', u'propos'] [u'lang', u'park', u'surfac', u'scrutini'] [u'lead', u'contend', u'olympia', u'field'] [u'lockyer', u'catchment', u'centr', u'face', u'uncertain', u'futur'] [u'manag', u'defend', u'lang', u'park', u'surfac'] [u'die', u'crash', u'power', u'pole'] [u'fin', u'fish', u'sacr', u'site'] [u'face', u'steal', u'charg'] [u'mass', u'grave', u'mongolia'] [u'mckenzi', u'name', u'waratah', u'coach'] [u'medicar', u'servic', u'drop'] [u'meekatharra', u'alcohol', u'restrict', u'begin', u'soon'] [u'meet', u'discuss', u'mine', u'industri', u'condit'] [u'melbourn', u'jail', u'murder', u'brother'] [u'melbourn', u'white', u'suffer', u'setback', u'shin', u'injuri'] [u'merger', u'boundari', u'talk', u'agenda'] [u'middl', u'east', u'violenc', u'throw', u'peac', u'turmoil'] [u'miller', u'take', u'second', u'mile', u'franklin', u'prize'] [u'minist', u'clarifi', u'water', u'restrict'] [u'minist', u'outlin', u'detent', u'centr', u'work'] [u'miss', u'turner', u'work'] [u'monkeypox', u'toll', u'rise', u'offici'] [u'montpelli', u'swoop', u'kiwi'] [u'feder', u'support', u'seek', u'samag', u'project'] [u'indonesian', u'soldier', u'guilti', u'bash'] [u'cast', u'doubt', u'parliament', u'see', u'crime', u'petit'] [u'footbal', u'join', u'countri', u'team'] [u'multin', u'team', u'overse', u'bougainvill', u'power'] [u'murray', u'fall', u'abnorm', u'level'] [u'nation', u'galleri', u'victoria', u'open', u'decemb'] [u'nation', u'teenag', u'jobless', u'rate', u'fall'] [u'natta'] [u'net', u'edg', u'spur', u'level', u'final'] [u'rout', u'horizon'] [u'wetland', u'centr'] [u'eal', u'heenan', u'wallabi', u'debut'] [u'medic', u'school', u'time', u'frame', u'discuss'] [u'govt', u'target', u'abalon', u'black', u'market'] [u'opposit', u'propos', u'free', u'train', u'travel'] [u'unemploy', u'rise'] [u'time', u'pulitz', u'review'] [u'offici', u'harrington', u'bore', u'jibe'] [u'parishion', u'demand', u'return', u'atheist', u'pastor'] [u'patterson', u'delay', u'health', u'care', u'pact'] [u'phone', u'consid', u'self', u'help', u'grant'] [u'express', u'horror', u'east', u'attack'] [u'niec', u'presid', u'case', u'involv'] [u'tour', u'gladston', u'industri', u'sit'] [u'polic', u'associ', u'consid', u'offic', u'incent'] [u'polic', u'investig', u'crash'] [u'polic', u'rescu', u'strand', u'boati'] [u'powel', u'unawar', u'blix', u'smear', u'campaign'] [u'prosecut', u'director', u'lifetim', u'tenur', u'anomali'] [u'public', u'hear', u'examin', u'territori', u'crime'] [u'push', u'region', u'counti', u'council'] [u'qanta', u'suspend', u'flight', u'rome'] [u'unemploy', u'decreas'] [u'question', u'rais', u'geraldton', u'port', u'work'] [u'ranger', u'boss', u'shatter', u'dream', u'say', u'caniggia'] [u'cross', u'defend', u'bali', u'appeal'] [u'region', u'salin', u'level', u'scrutini'] [u'relat', u'servicemen', u'commemor', u'tragedi'] [u'relax', u'schumach', u'readi', u'race', u'canada'] [u'remiss', u'aust', u'detaine', u'saudi', u'arabia'] [u'report', u'highlight', u'project', u'concern'] [u'road', u'water', u'woe', u'consider'] [u'processor', u'get', u'russia', u'export', u'approv'] [u'rumsa', u'water', u'fail', u'dope', u'test'] [u'rumsfeld', u'patch', u'european', u'tie'] [u'ryle', u'dragon'] [u'safari', u'includ', u'west'] [u'safeti', u'bodi', u'investig', u'highway', u'land', u'strip'] [u'govt', u'leav', u'door', u'open', u'water', u'exempt'] [u'samoa', u'storm', u'home', u'upset', u'waratah'] [u'sand', u'kaolin', u'move', u'closer', u'realiti'] [u'sar', u'origin', u'mysteri'] [u'schooli', u'polic', u'spotlight'] [u'schuettler', u'titl', u'hop', u'end', u'hall'] [u'schwab', u'prais', u'hawthorn', u'rooki', u'brown'] [u'scream', u'queen', u'sharapova', u'warn', u'silenc', u'scream'] [u'search', u'continu', u'miss', u'teen'] [u'shadow', u'minist', u'call', u'strategi', u'tackl'] [u'shire', u'talk', u'merger', u'possibl'] [u'sister', u'face', u'vietnam', u'drug', u'trial'] [u'sister', u'jail', u'vietnam', u'drug', u'charg'] [u'southern', u'cross', u'consid', u'legal', u'action'] [u'southern', u'cross', u'consid', u'sue'] [u'state', u'help', u'stop', u'indigen', u'violenc', u'ruddock'] [u'rat', u'doubl', u'year', u'report'] [u'storm', u'take', u'toll', u'beach', u'eros'] [u'strike', u'disrupt', u'manufactur', u'sector', u'victoria'] [u'student', u'compet', u'select', u'school', u'seat'] [u'suspect', u'bali', u'mastermind', u'confront', u'victim'] [u'talli', u'free', u'play', u'despit', u'high', u'shoot', u'club', u'team'] [u'tamil', u'tiger', u'reject', u'peac', u'talk', u'offer'] [u'jobless', u'rate'] [u'territori', u'unemploy', u'worsen'] [u'boca', u'beat', u'america', u'libertador'] [u'tongan', u'paper', u'sale', u'month'] [u'toowoomba', u'hous', u'market', u'move', u'ahead'] [u'toyota', u'build', u'develop', u'centr', u'australia'] [u'toyota', u'invest', u'victoria'] [u'train', u'derail', u'truck', u'crash'] [u'report', u'kill', u'isra', u'missil', u'gaza'] [u'unemploy', u'fall'] [u'unemploy', u'fall', u'percent'] [u'unemploy', u'improv'] [u'unemploy', u'rate', u'drop'] [u'union', u'welcom', u'univers', u'nurs', u'cours'] [u'unit', u'accus', u'beck', u'betray', u'fan'] [u'ambassador', u'defend', u'attend', u'liber'] [u'militari', u'raid', u'iraqi', u'guerrilla', u'camp'] [u'open', u'cours', u'hole', u'hole'] [u'accus', u'withhold', u'inform'] [u'govt', u'evalu', u'freeway', u'bid'] [u'manufactur', u'strike', u'hit', u'hundr'] [u'victim', u'famili', u'like', u'tell', u'releas'] [u'victoria', u'trial', u'home', u'detent'] [u'unemploy', u'rate', u'remain', u'steadi'] [u'violenc', u'control', u'health', u'group'] [u'consid', u'appoint', u'time', u'children'] [u'wallabi', u'warn', u'improv', u'wale'] [u'water', u'crisi', u'meet', u'agenda'] [u'west', u'indi', u'prevent', u'lankan', u'sweep'] [u'prais', u'china', u'respons', u'sar'] [u'winemak', u'predict', u'industri', u'shake'] [u'woman', u'claim', u'cultur', u'dictat', u'role', u'arson'] [u'woman', u'jail', u'run', u'parent'] [u'woodward', u'prepar', u'wallabi', u'mind', u'game'] [u'workshop', u'focus', u'youth', u'crime'] [u'world', u'oldest', u'chocol', u'display'] [u'youni', u'lead', u'improv', u'pakistan', u'victori'] [u'arrest', u'puerto', u'rico', u'anti', u'drug', u'oper'] [u'accc', u'defend', u'block', u'power', u'station', u'sale'] [u'milan', u'play', u'beckham', u'totti', u'stam'] [u'defend', u'scrap', u'bushfir', u'levi'] [u'advisori', u'council', u'consid', u'remot', u'children'] [u'albanes', u'desert', u'crean'] [u'alleg', u'murder', u'grant', u'bail'] [u'agre', u'restructur', u'stanwel', u'project'] [u'prepar', u'suspend', u'stanwel', u'oper'] [u'anderson', u'open', u'nat', u'confer'] [u'armstrong', u'keep', u'dauphin', u'liber', u'lead'] [u'arteta', u'deni', u'seek', u'ranger', u'clearout'] [u'face', u'legal', u'action', u'player', u'payment'] [u'target', u'work', u'expens', u'claim'] [u'aussi', u'rumford', u'lead', u'franc'] [u'aussi', u'take', u'bangladesh', u'light', u'buchanan'] [u'australia', u'broaden', u'thai', u'travel', u'warn'] [u'australia', u'maintain', u'bougainvill', u'presenc'] [u'australia', u'open', u'busi', u'campaign', u'kick', u'soon'] [u'bacon', u'say', u'beazley', u'challeng', u'ridicul'] [u'banger', u'squad', u'australia', u'tour'] [u'barrichello', u'happi', u'ferrari'] [u'bateman', u'host', u'indigen', u'fish', u'meet'] [u'bear', u'look', u'consolid', u'dolphin'] [u'beatti', u'urg', u'labor', u'restraint'] [u'beazley', u'silent', u'happen', u'lose'] [u'boost', u'northern', u'radiat', u'therapist'] [u'borden', u'water', u'restrict', u'lift'] [u'break', u'hill', u'jobless', u'rate', u'fall'] [u'bryant', u'releas', u'hospit', u'shoulder'] [u'buckley', u'face', u'final', u'fit', u'test'] [u'button', u'clear', u'race', u'canadian', u'grand', u'prix'] [u'govt', u'clarifi', u'river', u'detail'] [u'cameron', u'reject', u'drought', u'claim'] [u'canadian', u'forgiv', u'wife', u'hire', u'hitman'] [u'canegrow', u'unhappi', u'restructur', u'delay'] [u'case', u'toowoomba', u'commerci', u'flight'] [u'celtic', u'boyd', u'call', u'quit'] [u'child', u'abus', u'confer', u'begin', u'today'] [u'chines', u'crewmen', u'grant', u'bail', u'trawler', u'skipper'] [u'clark', u'win', u'right', u'appeal', u'rape', u'alleg'] [u'coke', u'increas', u'neverfail'] [u'comedian', u'water', u'scar', u'shark'] [u'communiti', u'farewel', u'bendigo', u'liber'] [u'complet', u'date', u'seek', u'escarp', u'plan'] [u'concord', u'bind', u'museum'] [u'corrupt', u'bangladeshi', u'grant', u'refuge'] [u'council', u'await', u'word', u'kiss', u'point'] [u'council', u'clear', u'livestock', u'centr', u'tender'] [u'councillor', u'plan', u'offic'] [u'council', u'say', u'street', u'children', u'common', u'problem'] [u'council', u'lose', u'indoor', u'sport', u'centr', u'fund'] [u'council', u'welcom', u'fund', u'histor', u'ross', u'bridg'] [u'court', u'tell', u'serial', u'killer', u'outsid'] [u'dairi', u'farmer', u'consid', u'way', u'save', u'industri'] [u'suppli', u'get', u'lower'] [u'david', u'leagu', u'leader', u'real', u'sociedad'] [u'davi', u'fear', u'tour', u'humili', u'wale'] [u'death', u'penalti', u'debat', u'wast', u'time', u'say', u'mcginti'] [u'diplomat', u'demand', u'detain', u'report', u'lao'] [u'dont', u'come', u'beck', u'beckham', u'flop'] [u'dubbo', u'youth', u'treat', u'suspect', u'sar'] [u'educ', u'dept', u'strengthen', u'polici', u'suspens'] [u'guerrouj', u'beat', u'tilt'] [u'empir', u'rubber', u'staff', u'return', u'work'] [u'england', u'secur', u'fear', u'uefa', u'probe', u'turkey', u'crowd'] [u'explos', u'italian', u'passeng'] [u'feder', u'govt', u'network', u'plan'] [u'feder', u'fight', u'hall'] [u'ferrari', u'hope', u'speed', u'massa', u'return'] [u'fish', u'industri', u'predict', u'sar', u'bounc'] [u'fraser', u'get', u'life', u'sentenc', u'murder'] [u'german', u'scientist', u'licoric', u'combat', u'sar'] [u'giant', u'tower', u'energi', u'deal', u'take', u'shape'] [u'govt', u'criticis', u'address', u'religi'] [u'govt', u'depart', u'consid', u'onslow', u'youth', u'woe'] [u'gregan', u'warn', u'wallabi', u'underestim', u'welsh'] [u'group', u'say', u'accommod', u'need', u'elder'] [u'group', u'say', u'speed', u'trailer', u'work'] [u'health', u'review', u'chief', u'offer', u'servic', u'assur'] [u'herbert', u'world', u'chanc', u'boost'] [u'high', u'court', u'rule', u'favour', u'gulf', u'syndrom'] [u'high', u'hop', u'continu', u'aquacultur', u'growth'] [u'highway', u'plan', u'oppon', u'want', u'nois', u'studi'] [u'hobart', u'midwint', u'festiv', u'begin', u'tonight'] [u'hodg', u'consid', u'court', u'action', u'lang', u'park', u'injuri'] [u'hodg', u'rule', u'legal', u'action', u'origin', u'injuri'] [u'hundr', u'report', u'kill', u'latest', u'liberian'] [u'inquest', u'fatal', u'polic', u'shoot', u'wrap'] [u'inspir', u'watson', u'turn', u'clock'] [u'iran', u'leader', u'slam', u'meddl'] [u'iraqi', u'export', u'soon', u'announc'] [u'israel', u'target', u'hama', u'founder'] [u'ivanisev', u'injuri', u'throw', u'doubt', u'nottingham'] [u'john', u'farewel', u'state', u'funer'] [u'johnson', u'richmond'] [u'judici', u'offic', u'work'] [u'klitschko', u'upset', u'lewi'] [u'knight', u'laugh', u'thriller'] [u'knight', u'origin', u'clear', u'face', u'dragon'] [u'knight', u'slay', u'dragon'] [u'lacklustr', u'start', u'put', u'wood', u'foot'] [u'landhold', u'face', u'clear', u'charg'] [u'leaney', u'fourth', u'quigley', u'grab', u'open', u'lead'] [u'lewi', u'franci', u'hungri', u'success'] [u'lobster', u'group', u'call', u'cooper', u'fisher'] [u'long', u'term', u'market', u'rat', u'slide'] [u'magistr', u'dismiss', u'hotel', u'charg'] [u'convict', u'abalon', u'theft'] [u'get', u'year', u'lyneham', u'rape'] [u'face', u'court', u'drug', u'charg'] [u'mayor', u'say', u'immigr', u'ignor', u'communiti', u'concern'] [u'mayor', u'unhappi', u'flight', u'chang'] [u'men', u'health', u'forum', u'highlight', u'disast', u'relat', u'blue'] [u'worker', u'lock', u'wollongong'] [u'minist', u'deni', u'conceal', u'hepat', u'report'] [u'minist', u'impress', u'break', u'hill', u'busi'] [u'mix', u'emot', u'devil', u'stanley', u'victori'] [u'join', u'beazley', u'camp'] [u'mundin', u'air', u'crime', u'petit', u'worri'] [u'murder', u'victim', u'famili', u'seek', u'apolog'] [u'murray', u'gill', u'fish', u'end', u'today'] [u'nato', u'approv', u'major', u'defenc', u'chang'] [u'report', u'predict', u'tassi', u'catastroph'] [u'applic', u'expand', u'aquif', u'demand'] [u'sar', u'case', u'china', u'hong', u'kong'] [u'urg', u'review', u'insur'] [u'govt', u'defend', u'millennium', u'train'] [u'oppn', u'roast', u'govt', u'millennium', u'train'] [u'govt', u'say', u'stop', u'tourism', u'negat'] [u'minist', u'urg', u'interven', u'health'] [u'ombudsman', u'rule', u'probe'] [u'dead', u'cambodian', u'polic', u'open'] [u'opinion', u'poll', u'support', u'beazley', u'labor'] [u'opposit', u'call', u'inquiri'] [u'disput', u'wont', u'lead', u'world', u'boycott', u'gregan'] [u'pedestrian', u'hospit', u'cross', u'accid'] [u'pie', u'visit', u'remot', u'communiti'] [u'pioneer', u'journalist', u'david', u'brinkley', u'die'] [u'pipelin', u'ablaz', u'iraq', u'bomb', u'report'] [u'talk', u'gladston', u'futur'] [u'warn', u'expatri', u'israel'] [u'polic', u'compo', u'case', u'adjourn'] [u'policeman', u'leav', u'town', u'death', u'threat'] [u'polic', u'probe', u'cape', u'york', u'death'] [u'polic', u'raid', u'hell', u'angel', u'clubhous'] [u'polic', u'warn', u'sheep', u'theft'] [u'polic', u'withdraw', u'murder', u'charg'] [u'polic', u'wit', u'give', u'evid', u'murder', u'hear'] [u'polli', u'push', u'branch', u'rail', u'line', u'upgrad'] [u'portug', u'cours', u'euro', u'govern'] [u'luck', u'french', u'fisherman'] [u'power', u'welcom', u'experi'] [u'premier', u'sign', u'biotech', u'allianc'] [u'prime', u'air', u'concern', u'local', u'news'] [u'probe', u'launch', u'near', u'land', u'highway'] [u'project', u'establish', u'aborigin', u'languag'] [u'prosecutor', u'criticis', u'length', u'murder', u'trial'] [u'protest', u'shoot', u'dead', u'polic', u'cambodia'] [u'protest', u'continu', u'iranian', u'cleric', u'leader'] [u'protocol', u'announc'] [u'puma', u'local', u'knowledg', u'french', u'test', u'battl'] [u'govt', u'help', u'pipedream', u'hallam'] [u'shadow', u'cabinet', u'head', u'roma'] [u'quigley', u'watson', u'open', u'lead', u'leaney', u'trail'] [u'raikkonen', u'own', u'crash', u'mclaren'] [u'ramanauska', u'rush', u'bomber'] [u'randel', u'break', u'rugbi'] [u'rare', u'turtl', u'live', u'fossil'] [u'real', u'defeat', u'crown', u'sociedad', u'champion'] [u'real', u'readi', u'barg', u'barca', u'asid', u'beckham'] [u'recreat', u'centr', u'warn', u'mobil', u'phone'] [u'light', u'camera', u'deter', u'speedster'] [u'renew', u'call', u'health', u'strategi'] [u'research', u'institut', u'air', u'fund', u'concern'] [u'resid', u'feedback', u'council', u'plan'] [u'resid', u'honour', u'medal'] [u'rivkin', u'delay', u'jail', u'medic', u'certif'] [u'robson', u'plan', u'career', u'newcastl'] [u'roo', u'deal', u'bomber', u'final', u'hop', u'massiv', u'blow'] [u'roo', u'defus', u'bomber'] [u'rumsa', u'suspect', u'conspiraci', u'drug', u'charg'] [u'rumsfeld', u'warn', u'belgium', u'drop', u'crime', u'charg'] [u'govt', u'defend', u'time', u'magnesium', u'review'] [u'riverland', u'host', u'wetland', u'forum'] [u'urg', u'regul', u'river', u'flow'] [u'schumach', u'walk', u'away', u'want', u'todt'] [u'scot', u'springbok', u'keen', u'deliv', u'better', u'game'] [u'seach', u'continu', u'miss'] [u'serbian', u'polic', u'arrest', u'alleg', u'crimin'] [u'sevilla', u'tour', u'franc'] [u'sharapova', u'hand', u'wildcard'] [u'sharehold', u'warn', u'apathi'] [u'share', u'market', u'hit', u'month', u'high'] [u'shark', u'lose', u'chairman'] [u'sheldon', u'want', u'tougher', u'stanc', u'nightclub', u'drug'] [u'shire', u'plan', u'school', u'build'] [u'soccer', u'australia', u'board', u'crisi', u'head', u'court'] [u'sonar', u'gear', u'search', u'miss', u'pair'] [u'sorenstam', u'seek', u'straight', u'lpga', u'giant'] [u'spur', u'net', u'paint', u'pretti', u'final'] [u'state', u'territori', u'reject', u'govt', u'vocat'] [u'stockport', u'target', u'gascoign', u'report'] [u'stock', u'transport', u'seek', u'diesel', u'rebat'] [u'support', u'campus', u'medic', u'school'] [u'support', u'network', u'help', u'prevent', u'suicid'] [u'tafe', u'interim', u'manag'] [u'taxi', u'driver', u'talk', u'safeti', u'concern', u'minist'] [u'troubl', u'ahead', u'cash', u'farmer'] [u'coach', u'argentina', u'ramacciotti'] [u'thai', u'polic', u'arrest', u'carri', u'radioact'] [u'thoma', u'wale', u'debut', u'australia'] [u'tiger', u'johnson', u'blue', u'clash'] [u'timbercorp', u'reject', u'tough', u'time', u'predict'] [u'trawler', u'collis', u'inquest', u'hear', u'contradictori'] [u'troop', u'hundr', u'villag', u'rebel'] [u'troubl', u'cast', u'doubt', u'nigeria', u'world'] [u'tsvangirai', u'bail', u'rule', u'delay'] [u'islam', u'jihad', u'member', u'kill', u'sourc'] [u'union', u'fight', u'resid'] [u'union', u'say', u'health', u'clinic', u'worker', u'stress'] [u'build', u'hospit', u'educ', u'complex'] [u'ambassador', u'hop', u'anti', u'american'] [u'lay', u'blame', u'violenc', u'hama'] [u'peacekeep', u'exempt', u'prosecut'] [u'place', u'terror', u'inspector', u'foreign', u'seaport'] [u'troop', u'iraqi', u'kill', u'raid', u'terror'] [u'vcat', u'uphold', u'reject', u'tabletop', u'danc', u'venu'] [u'govt', u'consid', u'reticul', u'option'] [u'polic', u'evalu', u'tanner', u'claim'] [u'wag', u'case', u'lodg', u'age', u'care', u'nurs', u'rise'] [u'wale', u'think', u'beat', u'wallabi', u'coach'] [u'minist', u'warn', u'feder', u'health', u'packag', u'cost'] [u'pass', u'race', u'wager'] [u'water', u'corp', u'consid', u'drill'] [u'wealthi', u'rank', u'swell', u'australia'] [u'weather', u'internet', u'servic', u'launch', u'boati'] [u'wenger', u'houllier', u'hand', u'obe'] [u'whitlam', u'criticis', u'hawk', u'public', u'back'] [u'wife', u'murder', u'missionari', u'reject', u'assault'] [u'woman', u'crush', u'death', u'children'] [u'escap', u'nambour', u'high', u'school', u'danc'] [u'aborigin', u'tent', u'embassi', u'resid', u'rebuild'] [u'provid', u'offic', u'solomon', u'secur'] [u'amaq', u'demand', u'releas', u'report'] [u'armstrong', u'keep', u'dauphin', u'lead', u'despit', u'fall'] [u'austrian', u'chancellor', u'reject', u'idea', u'presid'] [u'barley', u'export', u'monopoli', u'continu'] [u'barrichello', u'fastest', u'canada', u'qualifi'] [u'beazley', u'confid', u'showdown', u'near'] [u'beckham', u'honour'] [u'bickley', u'join', u'club'] [u'blair', u'reshuffl', u'privi', u'appeal', u'process'] [u'british', u'court', u'uphold', u'gulf', u'syndrom', u'claim'] [u'bush', u'dismiss', u'call', u'middl', u'east', u'peacekeep'] [u'busi', u'price', u'declin'] [u'chepkemei', u'keen', u'world', u'champ'] [u'chines', u'crewman', u'grant', u'bail', u'trawler', u'skipper'] [u'chines', u'crewmen', u'charg', u'skipper', u'death'] [u'claim', u'screen', u'refuge', u'advoc', u'wast'] [u'coag', u'debat', u'health', u'care', u'agreement'] [u'coalit', u'complac', u'labor', u'woe', u'anderson'] [u'cold', u'snap', u'hit', u'perth'] [u'comalco', u'sign', u'massiv', u'alumina', u'contract', u'norsk'] [u'consum', u'confid', u'drop', u'spark', u'wall', u'street', u'sell'] [u'court', u'consid', u'fingleton', u'appeal'] [u'czech', u'vote', u'favour', u'join'] [u'duncan', u'delight', u'spur', u'seiz', u'lead'] [u'england', u'kick', u'histor', u'black'] [u'england', u'turn', u'macedonia', u'ticket'] [u'faction', u'battl', u'loom', u'lib'] [u'farmer', u'feder', u'support', u'murray', u'irrig'] [u'defend', u'civil', u'liberti', u'breach', u'sept'] [u'flood', u'leav', u'bangladeshi', u'homeless'] [u'flood', u'leav', u'homeless', u'india'] [u'charg', u'blackburn', u'bank', u'robberi'] [u'fresh', u'fight', u'aceh', u'forc', u'flee'] [u'gaddafi', u'move', u'privatis', u'libya', u'industri'] [u'goorjian', u'slam', u'salari', u'cut'] [u'govt', u'admit', u'millennium', u'train', u'advertis', u'bungl'] [u'green', u'defend', u'senat', u'record', u'block', u'bill'] [u'gregan', u'deliv', u'wale', u'warn'] [u'gunmen', u'assassin', u'tamil', u'politician'] [u'health', u'stand', u'hamper', u'polici', u'consum'] [u'heavi', u'snow', u'greet', u'resort'] [u'hewitt', u'relinquish', u'spot'] [u'hillari', u'boat', u'harbour', u'shop', u'destroy'] [u'hunger', u'strike', u'moroccan', u'journalist', u'near', u'death'] [u'imam', u'dismiss', u'rome', u'support', u'anti'] [u'immigr', u'backlog', u'clog', u'feder', u'court'] [u'indian', u'coupl', u'plung', u'airi', u'engag'] [u'iran', u'rock', u'anti', u'govern', u'protest'] [u'irrig', u'restrict', u'announc', u'murray', u'river'] [u'isra', u'palestinian', u'resum', u'secur', u'talk'] [u'israel', u'palestinian', u'await', u'diplomat', u'team'] [u'israel', u'target', u'weapon', u'warehous', u'attack'] [u'kevin', u'sorcer', u'summon', u'nessi'] [u'latest', u'isra', u'missil', u'strike', u'kill', u'injur'] [u'latham', u'soften', u'stanc', u'beazley', u'rooster'] [u'lawyer', u'access', u'hanger', u'collaps'] [u'leaney', u'loom', u'open'] [u'charg', u'ormond', u'murder'] [u'charg', u'murder', u'hotel', u'attack'] [u'die', u'fall', u'roof'] [u'hospitalis', u'geelong', u'assault'] [u'kill', u'griffith', u'accid'] [u'sentenc', u'polic', u'assault'] [u'mediat', u'call', u'resolv', u'west', u'bellambi'] [u'minardi', u'fight', u'surviv'] [u'iraqi', u'kill', u'militari', u'crackdown'] [u'join', u'beazley', u'camp'] [u'mosquito', u'hope', u'knock', u'cocki', u'rugbi', u'perch'] [u'nat', u'ethanol', u'blend', u'fuel'] [u'nat', u'simplifi', u'polici', u'stoner'] [u'nat', u'ethanol', u'blend', u'fuel', u'mandatori'] [u'constitut', u'aim', u'streamlin', u'european', u'union'] [u'nat', u'approv', u'corner', u'contest'] [u'give', u'principl', u'support', u'aust'] [u'polic', u'continu', u'search', u'bodi', u'fisherman'] [u'polic', u'investig', u'shepparton', u'assault'] [u'polic', u'raid', u'king', u'cross', u'busi'] [u'polic', u'search', u'suspect', u'supermarket', u'break'] [u'polic', u'search', u'western', u'cape', u'york', u'father'] [u'polic', u'investig', u'aborigin', u'tent', u'embassi'] [u'port', u'slam', u'saint', u'blue', u'docker', u'swan', u'triumph'] [u'public', u'memori', u'plan', u'peck'] [u'rat', u'expect', u'rise', u'percent'] [u'roger', u'moor', u'knight', u'chariti', u'work'] [u'rossi', u'snatch', u'provision', u'pole'] [u'royal', u'darwin', u'open', u'depart'] [u'ruddock', u'consid', u'toughen', u'visa', u'review', u'procedur'] [u'rumford', u'retain', u'lead'] [u'farmer', u'support', u'govt', u'water', u'alloc', u'plan'] [u'sailor', u'score', u'twice', u'wallabi', u'whack', u'welsh'] [u'sampra', u'say', u'play', u'french', u'open'] [u'scream', u'queen', u'sharapova', u'shriek', u'semi', u'final'] [u'shark', u'stop', u'valiant', u'tiger', u'eel', u'storm'] [u'sharon', u'offer', u'hama', u'ceasefir', u'deal', u'palestinian'] [u'soccer', u'stakehold', u'avoid', u'court'] [u'sorel', u'council', u'ask', u'rethink', u'oyster', u'leas'] [u'lanka', u'navi', u'sink', u'rebel', u'ship', u'fear', u'dead'] [u'stanhop', u'call', u'perman', u'resid', u'status'] [u'super', u'star', u'virgo', u'dock', u'darwin'] [u'sutherland', u'hospit', u'train', u'propos', u'run', u'rail'] [u'swift', u'strong', u'firebird'] [u'taiwan', u'report', u'sar', u'case', u'death'] [u'teacher', u'feder', u'vote', u'favour', u'strike'] [u'teacher', u'plan', u'industri', u'action', u'disput'] [u'teacher', u'vote', u'stop', u'work', u'negoti'] [u'teenag', u'kill', u'beaconsfield', u'accid'] [u'terrorist', u'attack', u'plan', u'apec', u'summit', u'thai'] [u'thousand', u'gather', u'buri', u'hama', u'leader'] [u'throw', u'bottl', u'break', u'tram', u'driver', u'nose'] [u'tidi', u'town', u'fund', u'withdraw'] [u'seed', u'feder', u'confirm', u'favourit', u'status'] [u'day', u'repair', u'damag', u'iraqi', u'pipelin'] [u'korea', u'ceremoni', u'relink', u'railway'] [u'diplomat', u'aim', u'quell', u'middl', u'east', u'violenc'] [u'troop', u'attack', u'iraqi', u'resist'] [u'troop', u'expect', u'iraqi', u'resist'] [u'vail', u'throw', u'support', u'ethanol'] [u'veteran', u'astronaut', u'lead', u'columbia', u'disast', u'task'] [u'vigilant', u'clear', u'street', u'iranian', u'student'] [u'virgin', u'blue', u'plan', u'intern', u'flight'] [u'wallabi', u'battl', u'past', u'wale'] [u'water', u'qualiti', u'concern', u'town', u'heavi', u'rain'] [u'lift', u'sar', u'warn', u'chines', u'provinc'] [u'lift', u'travel', u'warn', u'part', u'china'] [u'windi', u'lose', u'lawson'] [u'women', u'like', u'suffer', u'post', u'traumat', u'stress'] [u'world', u'disput', u'agenda'] [u'take', u'shoot', u'lead', u'ohio'] [u'kill', u'saudi', u'polic', u'clash', u'terror'] [u'aborigin', u'tent', u'embassi', u'futur', u'decid'] [u'wineri', u'record', u'product'] [u'albacet', u'real', u'zaragoza', u'promot', u'spanish'] [u'argentina', u'edg', u'franc'] [u'armstrong', u'strengthen', u'grip', u'dauphin'] [u'asago', u'end', u'sharapova', u'edgbaston'] [u'warn', u'compani', u'director', u'blitz'] [u'aussi', u'tesk', u'share', u'lead', u'sorenstam', u'rosal'] [u'aust', u'employ', u'criticis', u'resist', u'timor'] [u'australia', u'drop', u'flatley', u'disciplinari', u'reason'] [u'bayu', u'undan', u'project', u'get', u'final', u'approv'] [u'beckham', u'home', u'mull', u'futur'] [u'beck', u'stam'] [u'serv', u'roddick', u'roll', u'agassi'] [u'boomer', u'begin', u'olymp', u'build'] [u'boondal', u'charg', u'murder', u'hotel', u'death'] [u'brack', u'leav', u'drum', u'biotech', u'invest'] [u'british', u'solo', u'pacif', u'rower', u'rescu', u'japan'] [u'bulldog', u'good', u'eagl', u'rooster'] [u'burmes', u'govt', u'readi', u'releas'] [u'bush', u'concern', u'treatment', u'iranian'] [u'chemic', u'leak', u'fear', u'eyr', u'accid'] [u'crean', u'call', u'uniti', u'leadership', u'decid'] [u'crean', u'confid', u'victori', u'leadership', u'ballot'] [u'crown', u'casino', u'secur', u'staff', u'strike'] [u'cuba', u'honour', u'guevara', u'today'] [u'aim', u'world', u'record', u'babi', u'boom'] [u'darwin', u'leav', u'promot', u'tourism'] [u'democrat', u'urg', u'stand', u'firm', u'asio'] [u'diana', u'death', u'inquiri', u'open', u'report'] [u'eagl', u'destroy', u'lion', u'gabba'] [u'eagl', u'destroy', u'lion', u'gabba', u'hawk', u'crow'] [u'eccleston', u'buy', u'minardi', u'team'] [u'emerson', u'call', u'uniti', u'labor', u'leadership'] [u'famili', u'institut', u'want', u'debat', u'adopt', u'law'] [u'farmer', u'threaten', u'boycott', u'murray', u'levi'] [u'ford', u'celebr', u'birthday'] [u'sentenc', u'death', u'beij', u'taxi', u'driver'] [u'franc', u'fire', u'broadsid', u'polici'] [u'franc', u'prepar', u'life', u'zidan'] [u'franc', u'slam', u'rumsfeld', u'centr', u'vision', u'world'] [u'french', u'troop', u'congo'] [u'frustrat', u'feder', u'dig', u'deep', u'reach', u'final'] [u'general', u'say', u'saddam'] [u'girl', u'burn', u'parti', u'stabl', u'condit'] [u'govt', u'continu', u'anti', u'cannabi', u'campaign'] [u'govt', u'want', u'mobil', u'jam', u'devic', u'jail'] [u'green', u'question', u'crimin', u'check', u'refuge'] [u'hodgson', u'snatch', u'british', u'superbik', u'pole'] [u'hors', u'cull', u'support', u'environment', u'group'] [u'huxley', u'shin', u'queensland', u'samoa'] [u'indonesia', u'say', u'rebel', u'kill', u'aceh'] [u'intern', u'protocol', u'tighten', u'trade'] [u'investig', u'underway', u'nambour', u'school'] [u'investig', u'underway', u'death', u'fishermen'] [u'iranian', u'traffic', u'protest', u'democraci'] [u'iraqi', u'forc', u'chief', u'arrest', u'troop'] [u'isra', u'palestinian', u'offici', u'plan'] [u'isra', u'palestinian', u'talk', u'despit', u'violenc'] [u'jone', u'drop', u'flatley', u'england', u'match'] [u'koen', u'kick', u'springbok', u'victori'] [u'komornikov', u'break', u'breast', u'stroke'] [u'labor', u'lose', u'elect', u'beazley', u'smith'] [u'leaney', u'open', u'contend'] [u'lebanon', u'station', u'rocket', u'attack'] [u'liberian', u'rebel', u'rule', u'truce', u'presid'] [u'critic', u'abar', u'drought', u'comment'] [u'nat', u'broaden', u'appeal', u'confer', u'tell'] [u'york', u'venu', u'champion', u'leagu', u'final', u'repeat'] [u'stab', u'melbourn', u'birthday', u'parti'] [u'ireland', u'polic', u'defus', u'huge', u'bomb'] [u'decis', u'sunday', u'trade'] [u'norsk', u'hydro', u'alumina', u'deal', u'mean', u'job', u'comalco'] [u'opposit', u'call', u'reduct', u'stamp', u'duti'] [u'obyrn', u'pledg', u'support', u'crean', u'leadership'] [u'ottk', u'outpoint', u'stari', u'retain', u'titl'] [u'palestinian', u'isra', u'salvag', u'peac', u'plan'] [u'polic', u'miss', u'fishermen', u'boat'] [u'polic', u'teenag', u'kill', u'sydney', u'parti'] [u'polic', u'scan', u'seab', u'miss', u'father'] [u'pomp', u'queen', u'offici', u'birthday'] [u'powel', u'push', u'burma', u'north', u'korea', u'asean', u'forum'] [u'powel', u'urg', u'cycl', u'violenc'] [u'bloodstock', u'critic', u'level', u'cross'] [u'raider', u'take', u'bronco', u'light'] [u'ralf', u'claim', u'canadian', u'pole'] [u'road', u'camera', u'need', u'reduc', u'collis'] [u'rossi', u'put', u'heat', u'titl', u'rival'] [u'ruddock', u'reject', u'automat', u'stay', u'kosovar'] [u'rumford', u'close', u'omer', u'titl'] [u'sailor', u'silenc', u'critic', u'amaz'] [u'santo', u'get', u'green', u'light', u'timor', u'pipelin'] [u'sar', u'impact', u'tourism', u'commiss'] [u'search', u'underway', u'miss', u'kiama', u'fishermen'] [u'setback', u'liberian', u'ceasefir', u'plan'] [u'snow', u'fall', u'winter', u'festiv'] [u'sorri', u'hardest', u'word', u'ombudsman', u'tell', u'council'] [u'suarez', u'beat', u'sprem', u'vienna', u'final'] [u'sutherland', u'hospit', u'train', u'station', u'unlik', u'mayor'] [u'taffi', u'kasper', u'hand', u'england', u'scare'] [u'tassi', u'scottish', u'dancer', u'join', u'intern', u'fling'] [u'teenag', u'hospit', u'parti'] [u'tullamarin', u'booz', u'blitz', u'bag'] [u'arrest', u'ep', u'multipl', u'stab'] [u'injur', u'parti', u'explos'] [u'armi', u'raid', u'north', u'iraq', u'leav', u'dozen', u'dead'] [u'iraqi', u'arm', u'ignor', u'report'] [u'commit', u'middl', u'east', u'peac', u'plan'] [u'criticis', u'iran', u'student', u'arrest'] [u'militari', u'compound', u'iraq', u'attack', u'sourc'] [u'monitor', u'reviv', u'middl', u'east', u'peac', u'plan'] [u'mount', u'secur', u'sweep', u'iraqi', u'town'] [u'wale', u'chanc', u'slip', u'say', u'captain', u'william'] [u'wallabi', u'look', u'ahead', u'england', u'clash'] [u'warehous', u'circuss', u'futur', u'doubt'] [u'west', u'beach', u'damag', u'yacht', u'ship', u'contain'] [u'woman', u'kill', u'ferntre', u'gulli', u'crash'] [u'women', u'kill', u'port', u'augusta', u'crash'] [u'woodward', u'warn', u'england', u'better'] [u'year', u'stabl', u'parti', u'stab'] [u'kill', u'solomon', u'boat', u'attack'] [u'young', u'women', u'bing', u'drink', u'research', u'show'] [u'aborigin', u'affair', u'pioneer', u'die'] [u'aborigin', u'male', u'die', u'year', u'white', u'male'] [u'accc', u'welcom', u'launceston', u'airport', u'report'] [u'aceh', u'refuge', u'face', u'food', u'water', u'shortag'] [u'bushfir', u'inquest', u'start', u'septemb'] [u'aerial', u'survey', u'determin', u'wild', u'woe'] [u'player', u'small', u'increas'] [u'alleg', u'murder', u'high', u'blood', u'alcohol', u'level'] [u'anderson', u'fin', u'abus', u'refere'] [u'anti', u'smoke', u'treati', u'get', u'breath', u'life'] [u'aquacultur', u'fisheri', u'product', u'abar'] [u'argentina', u'continu', u'press', u'falkland', u'claim'] [u'armstrong', u'fire', u'warn', u'dauphin', u'liber'] [u'asean', u'foreign', u'minist', u'kyi', u'releas'] [u'asean', u'voic', u'concern', u'detent'] [u'assist', u'seek', u'polic', u'priest', u'bash'] [u'atlas', u'group', u'float', u'share'] [u'aussi', u'rumford', u'hold', u'maiden', u'tour', u'titl'] [u'aust', u'money', u'help', u'separatist', u'indonesia', u'say'] [u'aust', u'analyst', u'iraq', u'inquiri'] [u'aust', u'consid', u'initi', u'global', u'search'] [u'australian', u'survivor', u'night', u'bali', u'attack'] [u'bank', u'secur', u'adelaid', u'festiv', u'name', u'right'] [u'bennett', u'back', u'debut', u'blue', u'unchang'] [u'blue', u'confid', u'overcom', u'injuri'] [u'blue', u'unchang', u'bennett', u'name', u'debut', u'ahead'] [u'blue', u'unchang', u'origin'] [u'boost', u'valu', u'tamworth', u'rateabl', u'land'] [u'brabham', u'share', u'glori', u'bentley', u'boy', u'return'] [u'brilliant', u'dravid', u'save', u'scot'] [u'british', u'rower', u'chalk', u'solo', u'success'] [u'burgess', u'serv', u'term', u'chief'] [u'cabinet', u'hear', u'drainag', u'scheme', u'fund', u'option'] [u'check', u'industri', u'green', u'fee'] [u'lower', u'wool', u'levi'] [u'marin', u'park', u'plan', u'fish'] [u'mine', u'hall', u'fame', u'nomin'] [u'canadian', u'victori', u'take', u'schumach'] [u'carr', u'hand', u'match'] [u'casino', u'guard', u'work'] [u'casual', u'nurs', u'boost', u'hour', u'offer'] [u'chines', u'support', u'north', u'korea'] [u'chopper', u'difficulti', u'hamper', u'bodi', u'retriev'] [u'civil', u'libertarian', u'urg', u'block', u'asio'] [u'cole', u'tourism', u'associ', u'hop', u'free'] [u'collingwood', u'player', u'tour', u'indigen', u'communiti'] [u'comalco', u'sign', u'intern', u'deal'] [u'councillor', u'hear', u'public', u'drunken', u'concern'] [u'council', u'oppos', u'releas', u'canola'] [u'council', u'accus', u'govt', u'stack', u'cape', u'york'] [u'council', u'seek', u'meet'] [u'council', u'decid', u'resort', u'size'] [u'court', u'approv', u'takeov'] [u'crean', u'call', u'uniti', u'leadership', u'vote'] [u'crean', u'call', u'beazley', u'backer', u'support'] [u'crean', u'surviv', u'smith', u'resign'] [u'crean', u'reshuffl', u'frontbench', u'leadership'] [u'crean', u'win', u'smith', u'quit'] [u'croc', u'lure', u'signtragardh'] [u'croc', u'sign', u'rooki', u'tragardh'] [u'crown', u'secur', u'guard', u'walk'] [u'csiro', u'tag', u'fish', u'ocean', u'explor'] [u'dairi', u'farmer', u'face', u'tax', u'time'] [u'darwin', u'businessman', u'sue', u'govt'] [u'dee', u'remain', u'upbeat'] [u'democrat', u'seek', u'reef', u'protect'] [u'democrat', u'wont', u'support', u'sale', u'telstra'] [u'disput', u'hospit', u'action', u'public', u'holiday'] [u'doctor', u'back', u'gambier', u'surgeon'] [u'dubbo', u'youth', u'test', u'negat', u'sar', u'doctor'] [u'elmig', u'win', u'kanton', u'aargau', u'cycl', u'race'] [u'england', u'beat', u'black', u'world', u'woodward'] [u'farmer', u'armyworm'] [u'father', u'face', u'court', u'son', u'stab'] [u'feder', u'parliament', u'pay', u'tribut', u'wentworth'] [u'feder', u'win', u'hall', u'ideal', u'wimbledon', u'warm'] [u'govt', u'consid', u'water', u'save', u'idea'] [u'govt', u'explor', u'water', u'save', u'option'] [u'fiji', u'name', u'veteran', u'captain', u'australian', u'tour'] [u'firefight', u'jail', u'bushfir', u'arson'] [u'firefight', u'rais', u'chang', u'traffic', u'concern'] [u'firm', u'wind', u'farm', u'project'] [u'fish', u'death', u'prompt', u'coron', u'report'] [u'flatley', u'dump', u'option', u'jone'] [u'flatley', u'say', u'test', u'ax', u'fair'] [u'flood', u'displac', u'peopl', u'india'] [u'delay', u'adelaid', u'flight'] [u'fundrais', u'appeal', u'honour', u'crash', u'pilot'] [u'fund', u'help', u'address', u'domest', u'violenc', u'woe'] [u'sydney', u'properti', u'price', u'hike', u'predict'] [u'water', u'test', u'place'] [u'furyk', u'claim', u'open', u'leaney', u'second'] [u'furyk', u'hold', u'leaney', u'open', u'titl'] [u'furyk', u'win', u'leaney', u'seal', u'second'] [u'gaddafi', u'junior', u'hop', u'impress', u'perugia'] [u'prepar', u'need', u'pension'] [u'gerrard', u'close', u'anfield', u'deal'] [u'girl', u'save', u'brother', u'smithton', u'hous'] [u'global', u'warm', u'faster', u'think', u'scientist'] [u'golf', u'club', u'council', u'meet'] [u'greenpeac', u'urg', u'govt', u'sign', u'treati'] [u'group', u'share', u'fish', u'research', u'fund'] [u'group', u'urg', u'share', u'art', u'fund'] [u'hodgson', u'extend', u'superbik', u'lead'] [u'holden', u'begin', u'shift', u'elizabeth', u'plant'] [u'hoon', u'sting', u'anger', u'civil', u'liberti', u'resid'] [u'hope', u'decis', u'port', u'piri', u'project'] [u'horticultur', u'wastewat', u'recycl', u'scheme', u'launch'] [u'increas', u'wild', u'woe', u'blame', u'drought', u'fire'] [u'indigen', u'diseas', u'prevent', u'highlight'] [u'injur', u'marshal', u'black', u'william', u'clear'] [u'inquiri', u'bushfir', u'underway'] [u'inquiri', u'iraqi', u'intellig', u'need', u'wilki', u'say'] [u'intellig', u'group', u'confirm', u'iraqi', u'weapon'] [u'iran', u'say', u'dialogu', u'current', u'imposs'] [u'isra', u'armi', u'arrest', u'palestinian', u'cameramen'] [u'israel', u'stage', u'partial', u'gaza', u'pullback'] [u'wont', u'target', u'tour', u'ullrich'] [u'jail', u'man', u'convict', u'review'] [u'knight', u'injuri', u'end', u'newton', u'season'] [u'labor', u'leadership', u'vote', u'underway'] [u'laporta', u'barca', u'presid', u'beckham'] [u'latif', u'call', u'fan', u'behav'] [u'lawyer', u'say', u'oshan', u'deserv', u'substanti', u'payout'] [u'leaney', u'draw', u'comfort', u'best', u'major', u'show'] [u'littl', u'rain', u'predict', u'central', u'victoria'] [u'loot', u'work', u'steal', u'baghdad', u'exhibit'] [u'maitland', u'mayor', u'free', u'rape', u'charg'] [u'charg', u'palm', u'tree', u'fire'] [u'dead', u'footbal', u'match'] [u'die', u'lack', u'hospit', u'treatment', u'lawyer'] [u'burglari', u'assault', u'charg', u'get', u'hold', u'sentenc'] [u'walk', u'slowest', u'marathon', u'loch', u'ness'] [u'market', u'record', u'slight', u'rise', u'despit', u'wall', u'loss'] [u'maroochi', u'mayor', u'stalk', u'court', u'find'] [u'martin', u'repeat', u'nation', u'energi', u'polici'] [u'martin', u'push', u'nation', u'energi', u'polici'] [u'massiv', u'bomb', u'overshadow', u'crunch', u'irish', u'vote'] [u'mayor', u'wont', u'rule', u'merger'] [u'melburnian', u'watch', u'butt'] [u'charg', u'arm', u'robberi'] [u'million', u'spend', u'promot', u'game'] [u'miner', u'kill', u'china'] [u'mine', u'compani', u'confid', u'support'] [u'minist', u'tour', u'break', u'hill'] [u'miss', u'spinster', u'crown', u'thailand'] [u'mol', u'seal', u'ranger', u'deal'] [u'montgomeri', u'chamber', u'fresh', u'showdown'] [u'moora', u'look', u'oversea', u'investor'] [u'peacekeep', u'deploy', u'congo'] [u'check', u'murray', u'system'] [u'mukhla', u'face', u'bali', u'court'] [u'mysteri', u'race', u'yacht', u'sight', u'coff'] [u'nation', u'confer', u'bring', u'focus'] [u'nat', u'boost', u'elector', u'chanc', u'better'] [u'admir', u'sail', u'champion'] [u'life', u'brewarinna', u'pharmaci'] [u'north', u'west', u'jobless', u'figur', u'fall'] [u'tourism', u'group', u'predict', u'delay', u'recoveri'] [u'presum', u'dead', u'whale', u'rescu', u'attempt'] [u'call', u'tighter', u'bail', u'control'] [u'seek', u'senat', u'inquiri', u'intellig'] [u'pair', u'charg', u'trawl', u'death', u'bail', u'review'] [u'pakistani', u'drug', u'traffick', u'execut', u'saudi', u'arabia'] [u'palestinian', u'milit', u'consid', u'ceasefir'] [u'perri', u'answer', u'charg'] [u'perri', u'miss', u'origin'] [u'plan', u'report', u'dredg', u'oper'] [u'polic', u'continu', u'probe', u'bone'] [u'polic', u'minist', u'demand', u'explan', u'detain'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'search', u'driver'] [u'polic', u'search', u'speed', u'camera', u'attack'] [u'polic', u'seek', u'public', u'help', u'miss'] [u'polic', u'search', u'driver', u'parti'] [u'polic', u'crash', u'victim'] [u'polic', u'review', u'gulf', u'search', u'father'] [u'porto', u'crown', u'spectacular', u'season', u'portugues'] [u'princip', u'back', u'idea', u'crossbow', u'braveri', u'award'] [u'probe', u'launch', u'fisher', u'death'] [u'protest', u'continu', u'tehran'] [u'qanta', u'increas', u'flight'] [u'rain', u'stop', u'water', u'cart', u'plan'] [u'rain', u'ruin', u'lanka', u'tour', u'match'] [u'ralf', u'schumach', u'deni', u'give', u'michael', u'easi', u'ride'] [u'real', u'spanish', u'titl', u'race', u'wire'] [u'cross', u'desper', u'blood', u'donat'] [u'resid', u'ferri', u'cost', u'concern'] [u'resid', u'ralli', u'rescu', u'polic', u'station'] [u'roddick', u'king', u'queen'] [u'rooster', u'narrowli', u'defeat', u'cowboy'] [u'erupt', u'communiti', u'justic', u'group'] [u'consum', u'confid', u'declin', u'survey'] [u'sapphir', u'lose', u'czech', u'republ'] [u'scholarship', u'focus', u'natur', u'resourc', u'manag'] [u'seagul', u'bear', u'score', u'weekend', u'win'] [u'sewerag', u'seminar', u'curb', u'site', u'risk'] [u'shirvo', u'finish', u'fourth', u'franc'] [u'shirvo', u'fourth', u'franc'] [u'smith', u'answer', u'assault', u'charg'] [u'specul', u'surround', u'freeman', u'futur'] [u'spur', u'claim', u'crown'] [u'staff', u'crisi', u'patient', u'doctor', u'warn'] [u'state', u'rail', u'fail', u'safeti', u'flaw', u'waterfal'] [u'streak', u'return', u'spark', u'zimbabw', u'victori'] [u'student', u'busi', u'skill'] [u'suprem', u'court', u'decid', u'fijian', u'govt'] [u'survivor', u'testifi', u'amrozi', u'trial'] [u'assassin', u'plot', u'rumour', u'offici'] [u'sydney', u'face', u'murder', u'retrial', u'court'] [u'teacher', u'plan', u'industri', u'action'] [u'teacher', u'stop', u'work', u'rise', u'strategi'] [u'tesk', u'win', u'playoff', u'giant', u'eagl'] [u'timbercorp', u'reject', u'bluegum', u'claim'] [u'time', u'right', u'telstra', u'sale'] [u'tough', u'month', u'ahead', u'injuri', u'lion', u'matthew'] [u'tradit', u'work', u'complement', u'namatjira', u'show'] [u'transmiss', u'fault', u'disrupt', u'phone', u'line'] [u'trezeguet', u'stay', u'insist', u'moggi'] [u'troubl', u'totalcar', u'discuss', u'cabinet'] [u'truck', u'roll', u'camel', u'cross'] [u'hospit', u'motorcycl', u'crash'] [u'plead', u'guilti', u'abalon', u'charg'] [u'unveil', u'machin', u'generat', u'power'] [u'call', u'iran', u'allow', u'stricter', u'nuclear'] [u'union', u'seek', u'rail', u'project', u'critic'] [u'union', u'welcom', u'holden', u'hour', u'product'] [u'unit', u'state', u'domin', u'ireland', u'world', u'tune'] [u'tourist', u'card', u'lure', u'visitor'] [u'water', u'restrict', u'expect', u'impact'] [u'wine', u'industri', u'confid', u'grape', u'woe'] [u'wineri', u'market', u'push'] [u'woodbridg', u'near', u'doubl', u'record', u'hall'] [u'worker', u'consid', u'boost', u'work', u'ban'] [u'yarrowlumla', u'resid', u'prefer', u'small', u'communiti'] [u'zimbabwean', u'law', u'worker', u'strike'] [u'zimbabw', u'hang', u'convict', u'murder'] [u'million', u'spend', u'promot', u'alpin', u'resort'] [u'buri', u'russian', u'blast'] [u'million', u'lie', u'unclaim'] [u'aborigin', u'scheme', u'mask', u'true', u'jobless', u'rate'] [u'accus', u'tell', u'friend', u'hitman', u'plot', u'court', u'hear'] [u'assembl', u'unlik', u'rat', u'plan', u'dunda'] [u'rat', u'unlik', u'chang'] [u'administr', u'probe', u'waikeri', u'produc'] [u'present', u'plan', u'play', u'darwin'] [u'airlin', u'negoti', u'passeng', u'termin'] [u'alburi', u'council', u'hold', u'boundari', u'meet'] [u'alcohol', u'consider'] [u'black', u'dump', u'entir'] [u'alleg', u'drug', u'traffick', u'grant', u'bail'] [u'ord', u'hit', u'month', u'high'] [u'amrozi', u'call', u'testifi', u'bashir', u'trial'] [u'argentinian', u'lawyer', u'swear', u'chief', u'prosecutor'] [u'arsenal', u'unit', u'champion', u'leagu'] [u'asean', u'stop', u'short', u'demand', u'releas'] [u'atapattu', u'slam', u'half', u'centuri', u'tour', u'game'] [u'atsic', u'brewarrina', u'organis'] [u'aussi', u'domin', u'english'] [u'aust', u'talk', u'nauru', u'pacif', u'solut'] [u'australia', u'thailand', u'sign', u'agreement', u'tackl'] [u'bali', u'fund', u'alloc', u'kick', u'teeth', u'survivor'] [u'bali', u'survivor', u'criticis', u'appeal', u'handl'] [u'bali', u'terror', u'warn', u'specul', u'say'] [u'bali', u'victim', u'surpris', u'warn', u'revel'] [u'bayview', u'haven', u'charg', u'arm', u'robberi'] [u'beazley', u'challeng', u'show', u'lack', u'judgment', u'howard'] [u'beckham', u'real', u'report'] [u'bentley', u'revel', u'man', u'decid', u'futur'] [u'blacktown', u'council', u'back', u'develop'] [u'board', u'hous', u'owner', u'afford'] [u'bowen', u'make', u'origin'] [u'brown', u'slam', u'labor', u'support', u'asio'] [u'bullet', u'sign', u'veteran', u'ree'] [u'burnett', u'farmer', u'interim', u'drought'] [u'calder', u'work', u'near', u'finish'] [u'barossa', u'road', u'upgrad'] [u'focus', u'youth', u'problem'] [u'mayor', u'allow'] [u'rescu', u'vehicl', u'train', u'staff'] [u'school', u'base', u'hepat', u'educ'] [u'cancellara', u'pip', u'mcgee', u'tour', u'switzerland', u'open'] [u'carnarvon', u'home', u'revamp'] [u'carr', u'admit', u'train', u'budget', u'blowout'] [u'carr', u'hand', u'match'] [u'consid', u'pager', u'altern'] [u'charg', u'expect', u'polic', u'jail', u'oper'] [u'china', u'execut', u'includ', u'kill'] [u'china', u'man', u'space', u'flight', u'ahead'] [u'communiti', u'comment', u'seek', u'speedway', u'plan'] [u'communiti', u'group', u'urg', u'chang', u'asio'] [u'compromis', u'reach', u'water', u'levi'] [u'concern', u'air', u'indigen', u'legal', u'represent'] [u'congoles', u'militiamen', u'kill', u'french', u'troop'] [u'blast', u'tarkin', u'log', u'plan'] [u'corrupt', u'alleg', u'resolv'] [u'costa', u'address', u'newcastl', u'busi', u'club'] [u'council', u'merger', u'talk', u'agenda'] [u'council', u'refus', u'demolit', u'approv', u'wellington'] [u'council', u'consid', u'merger', u'altern'] [u'court', u'tell', u'bashir', u'visit', u'muslim', u'rebel'] [u'crean', u'prove', u'leadership', u'strength'] [u'crean', u'ralli', u'campaign', u'hard'] [u'crow', u'sign', u'ricciuto', u'hart'] [u'dairi', u'open', u'propos', u'avoid', u'crisi'] [u'deadlin', u'near', u'entri'] [u'deegan', u'appal', u'handl', u'bali', u'advic'] [u'demon', u'stand', u'neitz'] [u'deputi', u'premier', u'avoid', u'pulp', u'claim'] [u'doctor', u'group', u'welcom', u'indemn', u'packag'] [u'doctor', u'urg', u'govt', u'subsidis', u'vaccin'] [u'doubt', u'hang', u'prime', u'news', u'tamworth'] [u'downer', u'talk', u'timores', u'secur'] [u'downer', u'warn', u'public', u'oppn'] [u'downer', u'warn', u'bali', u'attract', u'target'] [u'educ', u'union', u'critic', u'govt'] [u'elliott', u'slam', u'schifcofsk', u'snub'] [u'nino', u'weaken'] [u'england', u'name', u'squad', u'wallabi', u'clash'] [u'expo', u'antisoci', u'behaviour', u'begin', u'haast', u'bluff'] [u'farmer', u'duck', u'problem'] [u'porto', u'agre', u'capucho', u'ranger'] [u'feder', u'parliament', u'hear', u'ararat', u'overpass', u'plea'] [u'ferrari', u'presid', u'hail', u'schumach'] [u'finger', u'surgeri', u'recommend', u'injur', u'harbhajan'] [u'alic', u'darwin', u'train', u'januari'] [u'intern', u'crime', u'prosecutor', u'swear'] [u'fisheri', u'minist', u'seek', u'harmoni', u'approach'] [u'fletcher', u'blue'] [u'fletcher', u'thrill', u'blue'] [u'australian', u'open', u'champ', u'johansson'] [u'jessica', u'lynch', u'lure', u'book', u'movi', u'deal'] [u'minist', u'weapon', u'claim'] [u'forum', u'focus', u'advocaci', u'servic'] [u'fund', u'alloc', u'famous', u'indigen', u'artist'] [u'furyk', u'look', u'futur', u'confid'] [u'garbo', u'return', u'work', u'talk', u'continu'] [u'girl', u'rescu', u'brother', u'housefir'] [u'govt', u'consid', u'veteran', u'entitl'] [u'govt', u'urg', u'explain', u'bali', u'intellig', u'report'] [u'grainco', u'graincorp', u'merg'] [u'green', u'concern', u'air', u'sand', u'plan'] [u'green', u'skip', u'metr', u'championship'] [u'haa', u'pull', u'wimbledon'] [u'heal', u'olymp', u'comeback', u'trail'] [u'hewitt', u'face', u'earli', u'wimbledon', u'barrag'] [u'heynck', u'tip', u'schalk'] [u'high', u'hop', u'tilt', u'train', u'commut', u'servic'] [u'hizbollah', u'fire', u'isra', u'warplan', u'wit'] [u'hundr', u'iraqi', u'detain', u'raid'] [u'deserv', u'punish', u'casino', u'scuffl', u'neitz'] [u'india', u'wast', u'dump', u'grind'] [u'indian', u'breed', u'beetl', u'egg', u'bodi'] [u'industri', u'group', u'call', u'reserv'] [u'promis', u'deliv', u'beckham', u'say', u'laporta'] [u'intern', u'shock', u'level', u'reef', u'protect'] [u'fail', u'resolv', u'work', u'condit'] [u'irrig', u'discuss', u'water', u'alloc', u'cut'] [u'irrig', u'water', u'theft', u'charg', u'dismiss'] [u'japan', u'threaten', u'withdraw', u'whale', u'bodi'] [u'kewel', u'set', u'arsenal', u'talk'] [u'klug', u'elect', u'flinder', u'mayor'] [u'labor', u'back', u'asio', u'power'] [u'labor', u'reshuffl', u'agenda', u'leadership', u'ballot'] [u'launceston', u'mayor', u'quiet', u'manag', u'decis'] [u'propos', u'automat', u'parol'] [u'leed', u'confirm', u'kewel', u'talk', u'arsenal'] [u'legisl', u'approv', u'replac', u'medic'] [u'legisl', u'assembl', u'committe', u'queri', u'budget'] [u'lifelin', u'theatr'] [u'lowi', u'meet', u'juli'] [u'court', u'kidnap', u'assault', u'charg'] [u'jail', u'assault'] [u'surviv', u'garbag', u'truck', u'crush'] [u'face', u'court', u'cabbi', u'attack'] [u'manufactur', u'survey', u'highlight', u'futur', u'confid'] [u'marathon', u'arthur'] [u'maroochi', u'mayor', u'hop', u'court', u'verdict', u'restor'] [u'mclaren', u'coulthard', u'notic', u'perform'] [u'mcleod', u'hospit', u'knee', u'surgeri'] [u'medibank', u'privat', u'stay', u'govt', u'hand'] [u'millmerran', u'choos', u'hardwood', u'trial'] [u'offer', u'xstrata', u'chanc', u'diversifi', u'mayor', u'say'] [u'missil', u'defenc', u'shield', u'agenda', u'aust', u'talk'] [u'miss', u'businessman', u'warn', u'diamond', u'deal'] [u'polic', u'consid', u'western', u'post'] [u'muckert', u'fight', u'charg'] [u'child', u'tortur', u'case', u'say', u'mean'] [u'nairn', u'air', u'concern'] [u'neitz', u'expect', u'fine', u'casino', u'scuffl'] [u'neitz', u'casino', u'secur', u'scuffl'] [u'irish', u'protest', u'leader', u'trimbl', u'win', u'parti', u'vote'] [u'specialist', u'disput'] [u'major', u'worri', u'upbeat', u'tiger'] [u'sign', u'perec', u'french', u'head', u'coach'] [u'surpris', u'bing', u'drink', u'studi'] [u'govt', u'delay', u'water', u'share', u'plan'] [u'govt', u'minist', u'converg', u'break', u'hill'] [u'educ', u'posit'] [u'hawaiian', u'team', u'shin', u'outrigg', u'comp'] [u'trafford', u'stage', u'england', u'euro', u'qualifi'] [u'olymp', u'champion', u'cameroon', u'begin'] [u'parti', u'heavyweight', u'undermin', u'burk'] [u'patern', u'test', u'rock', u'lobster'] [u'pilot', u'follow', u'procedur', u'report', u'find'] [u'urg', u'public', u'welcom', u'home', u'troop'] [u'polic', u'hunt', u'video', u'store', u'arm', u'bandit'] [u'polic', u'pleas', u'safeti', u'messag', u'get'] [u'polic', u'releas', u'name', u'dead', u'fishermen'] [u'polic', u'review', u'search', u'father'] [u'polic', u'think', u'skeleton', u'mysteri', u'solv'] [u'polic', u'tell', u'victim'] [u'potter', u'book', u'fall', u'truck'] [u'privat', u'famili', u'funer', u'billi', u'wentworth'] [u'profish', u'happi', u'move', u'stop', u'illeg', u'fish'] [u'public', u'get', u'water', u'restrict', u'remind'] [u'public', u'meet', u'consid', u'samag', u'concern'] [u'purvi', u'appeal', u'stalk', u'fine'] [u'push', u'inquiri', u'iraqi', u'weapon', u'intellig'] [u'honey', u'firm', u'sign', u'sweet', u'deal', u'argentina'] [u'rail', u'bypass', u'meet', u'agenda'] [u'rain', u'delay', u'water', u'restrictionsfor'] [u'cross', u'call', u'blood', u'donat'] [u'reef', u'zone', u'chang', u'explain'] [u'report', u'highlight', u'asylum', u'seeker', u'uncertainti'] [u'retir', u'opt', u'spend', u'save'] [u'rioli', u'match'] [u'erupt', u'veteran', u'pension'] [u'ruddock', u'accus', u'mislead', u'parliament'] [u'ruddock', u'deni', u'mislead', u'parliament'] [u'rustu', u'pledg', u'eventu', u'return', u'barca', u'go'] [u'sailor', u'free', u'return', u'china'] [u'sapphir', u'beat', u'czech', u'republ', u'time'] [u'schalken', u'srichaphan', u'open', u'victori'] [u'school', u'associ', u'urg', u'improv', u'teacher', u'screen'] [u'scientist', u'consid', u'global', u'warm', u'rethink'] [u'senat', u'inquiri', u'probe', u'republ', u'option'] [u'senat', u'vote', u'island', u'excis', u'propos'] [u'sniper', u'kill', u'soldier', u'baghdad'] [u'softwood', u'boost', u'bombala', u'job'] [u'speed', u'limit', u'question', u'wagga', u'wagga'] [u'spur', u'point', u'titl'] [u'lanka', u'draw', u'rain', u'match', u'windi'] [u'lankan', u'lose', u'stay', u'australia'] [u'stab', u'instant', u'reaction', u'court', u'hear'] [u'staff', u'shortag', u'threaten', u'cancer', u'patient'] [u'statist', u'popul', u'shift'] [u'support', u'affect', u'suicid', u'examin'] [u'survey', u'highlight', u'wool', u'salin', u'woe'] [u'freedom', u'asean', u'agenda'] [u'talk', u'focus', u'wetland', u'plan'] [u'govt', u'seek', u'hobart', u'auckland', u'flight'] [u'minist', u'discuss', u'pulp', u'timber', u'boss'] [u'terror', u'attack', u'western', u'citi', u'matter', u'time'] [u'thousand', u'mourner', u'tribut', u'peck'] [u'ticket', u'sale', u'slow', u'confeder'] [u'toddler', u'score', u'million', u'dollar', u'basketbal', u'deal'] [u'tongan', u'train', u'gold', u'coast'] [u'totalcar', u'industri', u'shut'] [u'tough', u'parol', u'law', u'offend'] [u'truck', u'driver', u'guilti', u'kill'] [u'union', u'boost', u'group', u'home', u'campaign'] [u'senat', u'question', u'intellig'] [u'brief', u'govt', u'missil', u'defenc', u'cooper'] [u'govt', u'reject', u'rail', u'standardis'] [u'preschool'] [u'video', u'urg', u'indigen', u'youth', u'quit', u'smoke'] [u'volunt', u'need', u'protect', u'shark'] [u'wale', u'great', u'self', u'belief', u'llewellyn'] [u'watkin', u'dobson', u'agre', u'polic', u'train', u'improv'] [u'wool', u'grower', u'face', u'salin', u'woe'] [u'whale', u'sanctuari', u'propos', u'expect', u'fail'] [u'lift', u'taiwan', u'travel', u'warn'] [u'wild', u'concern', u'blame', u'inadequ', u'control'] [u'windi', u'uncap', u'taylor', u'lanka', u'test'] [u'woman', u'appear', u'court', u'miss', u'father'] [u'women', u'children', u'escap', u'tell', u'kidnap', u'ordeal'] [u'wright', u'miss', u'season', u'start', u'freak'] [u'xstrata', u'forc', u'coal', u'product'] [u'farewel', u'pioneer', u'monkey'] [u'dead', u'pakistan', u'heatwav'] [u'sugar', u'plant', u'job', u'factori', u'close'] [u'bodi', u'exhum', u'bosnian', u'mass', u'grave'] [u'academ', u'speak', u'gross', u'case'] [u'pass', u'year'] [u'adelaid', u'firefight', u'prais', u'quick', u'action'] [u'alleg', u'peopl', u'smuggler', u'charg', u'drop'] [u'conced', u'small', u'investor', u'ignor', u'capit'] [u'angler', u'fin', u'crayfish'] [u'asean', u'forum', u'urg', u'unit', u'terror'] [u'atom', u'survivor', u'group', u'call', u'chang'] [u'atsic', u'crisi', u'point', u'panel', u'find'] [u'aust', u'whale', u'sancturi', u'fail', u'gain', u'support'] [u'australia', u'cambodia', u'work'] [u'bacon', u'unawar', u'hobart', u'airport'] [u'bali', u'victim', u'father', u'call', u'inquiri', u'warn'] [u'bargain', u'milk', u'price'] [u'beckham', u'bid', u'unit', u'alex', u'farewel'] [u'beckham', u'confirm', u'real', u'deal'] [u'berlusconi', u'court', u'defend', u'corrupt', u'charg'] [u'campaign', u'lure', u'skier'] [u'blair', u'insist', u'saddam', u'threat', u'justifi'] [u'boati', u'warn', u'check', u'craft'] [u'brack', u'tour', u'californian', u'water', u'plant'] [u'british', u'court', u'uphold', u'freez', u'expat', u'pension'] [u'brogden', u'youth', u'crime', u'petit'] [u'budget', u'cut', u'kill', u'aust', u'danc', u'theatr', u'oppn'] [u'busi', u'ask', u'consid', u'levi', u'plan'] [u'carlisl', u'inspir', u'zimbabw', u'narrow', u'victori'] [u'carr', u'defend', u'educ', u'cut'] [u'cathol', u'brother', u'face', u'trial', u'alleg'] [u'cathol', u'school', u'teacher', u'join', u'stop', u'work'] [u'child', u'rapist', u'releas', u'brisban'] [u'choisir', u'time', u'aust', u'winner', u'royal', u'ascot'] [u'choisir', u'open', u'door', u'australian', u'hors'] [u'frontbench', u'confirm', u'shadow', u'ministri'] [u'club', u'silent', u'saint', u'turn', u'sinner'] [u'coast', u'unit', u'valu', u'rise'] [u'coast', u'watch', u'group', u'disband'] [u'collector', u'urg', u'boost', u'secur'] [u'command', u'thank', u'public', u'support'] [u'complaint', u'bogus', u'traffic', u'fin', u'rais'] [u'concern', u'rais', u'lack', u'nurs', u'home', u'place'] [u'consum', u'confid', u'hit', u'year', u'high'] [u'corowa', u'brawl', u'polic'] [u'costello', u'say', u'thought', u'quit'] [u'council', u'approv', u'medic', u'facil', u'plan'] [u'council', u'proud', u'achiev'] [u'council', u'offer', u'age', u'care', u'centr', u'support'] [u'council', u'pressur', u'public', u'reserv'] [u'council', u'consid', u'beach', u'develop', u'report'] [u'court', u'hear', u'murder', u'knife', u'fingerprint', u'free'] [u'crash', u'report', u'find', u'inconclus', u'rfds', u'chief'] [u'curfew', u'west', u'bank', u'town', u'isra', u'girl', u'kill'] [u'david', u'beckham', u'superstar'] [u'dead', u'man', u'devic', u'fail', u'waterfal', u'inquiri'] [u'dead', u'worker', u'children', u'owe', u'duti', u'care', u'high', u'court'] [u'debat', u'rag', u'vote', u'valu'] [u'demon', u'fine', u'neitz', u'casino', u'scuffl'] [u'desert', u'scorpion', u'round', u'hundr', u'iraqi'] [u'disabl', u'veteran', u'stage', u'pension', u'protest'] [u'disappoint', u'wild', u'bait', u'fund', u'decis'] [u'dokic', u'myskina', u'eastbourn'] [u'dollar', u'surg'] [u'downer', u'defend', u'bali', u'travel', u'warn'] [u'downer', u'remain', u'defiant', u'bali', u'intellig'] [u'drug', u'incid', u'spark', u'hospit', u'secur', u'review'] [u'boost', u'hound', u'wild', u'dog'] [u'dubbo', u'petit', u'present', u'coalit'] [u'elder', u'fight', u'attempt', u'demolish', u'build'] [u'emerg', u'sprint', u'star', u'gatlin', u'ambit'] [u'esca', u'pea', u'caus', u'traffic', u'chao'] [u'everest', u'climb', u'record', u'holder', u'accus', u'cheat'] [u'fair', u'trade', u'issu', u'door', u'door', u'sale', u'warn'] [u'fear', u'takeov', u'cost', u'grape', u'grow', u'romanc'] [u'feder', u'commission', u'criticis', u'racist', u'incid'] [u'felix', u'fast', u'track', u'sprint', u'success'] [u'filipino', u'polic', u'arrest', u'alleg', u'bomb', u'suspect'] [u'find', u'iraqi', u'wmds', u'urgent'] [u'firefight', u'welcom', u'safeti', u'initi'] [u'fitzgibbon', u'confid', u'recoveri', u'second', u'origin'] [u'gallop', u'pull', u'robert', u'line', u'curfew', u'comment'] [u'crop', u'studi', u'question', u'rais'] [u'good', u'econom', u'time', u'kambalda'] [u'gough', u'anderson', u'stop', u'pakistan'] [u'govt', u'deceiv', u'student', u'degre', u'cost', u'say'] [u'govt', u'defend', u'doctor', u'bond', u'plan'] [u'govt', u'labor', u'trade', u'blow', u'weapon', u'inquiri'] [u'govt', u'move', u'toughen', u'mandatori', u'detent', u'power'] [u'govt', u'plan', u'adelaid', u'entertain', u'centr', u'precinct'] [u'govt', u'bushfir', u'packag', u'farmer'] [u'govt', u'urg', u'explain', u'bali', u'intellig', u'report'] [u'grey', u'face', u'tough', u'initi'] [u'group', u'reject', u'takeov', u'claim'] [u'health', u'clinic', u'back', u'cheap', u'liquor', u'remov', u'plan'] [u'hewitt', u'defam'] [u'hollingworth', u'move', u'govt', u'hous'] [u'hopoat', u'fin', u'play', u'rugbi', u'union', u'match'] [u'hopoat', u'fin', u'rugbi', u'union', u'appear'] [u'hous', u'plan', u'chang', u'disadvantag', u'elder'] [u'huge', u'demand', u'crocodil', u'farm'] [u'hundr', u'homeless', u'timor', u'flood'] [u'india', u'brace', u'flood'] [u'indigen', u'fisher', u'demand', u'chang', u'fisheri'] [u'indigen', u'land', u'deal', u'near', u'complet'] [u'inquiri', u'probe', u'intellig'] [u'intellig', u'offic', u'reject', u'wilki', u'bali', u'claim'] [u'irrig', u'gather', u'berri'] [u'japan', u'surf', u'world', u'championship', u'postpon'] [u'leader', u'financ', u'philippin', u'bomb', u'court', u'hear'] [u'juri', u'find', u'employe', u'guilti', u'theft'] [u'juri', u'consid', u'verdict', u'wife', u'stab', u'case'] [u'klitschko', u'appli', u'mind', u'bodi', u'sport'] [u'labor', u'keep', u'pressur', u'intellig'] [u'lamb', u'worth', u'steal'] [u'lantana', u'number', u'weed', u'list'] [u'latif', u'pleas', u'pakistan', u'attitud'] [u'leak', u'letter', u'prove', u'govt', u'effici', u'review'] [u'legisl', u'aim', u'pressur', u'public'] [u'liberian', u'rebel', u'accus', u'govt', u'troop', u'break'] [u'lion', u'slam', u'mccs', u'attitud', u'final', u'fixtur'] [u'local', u'govt', u'group', u'welcom', u'water', u'plan', u'delay'] [u'locum', u'bring', u'surgeon', u'talk', u'fail'] [u'magistr', u'apologis', u'famili', u'dismiss'] [u'charg', u'take', u'photo', u'rivkin', u'jail'] [u'die', u'daughter', u'condit', u'hous'] [u'fin', u'vessel', u'sink'] [u'jail', u'polic', u'attack'] [u'kidnap', u'charg', u'remand', u'custodi'] [u'sentenc', u'knife', u'scare', u'flight'] [u'melbourn', u'gene', u'centr', u'focus', u'diseas', u'research'] [u'millennium', u'manufactur', u'carr'] [u'million', u'dollar', u'fraudster', u'avoid', u'jail'] [u'project', u'get', u'ahead', u'year', u'fight'] [u'countri', u'peopl', u'take', u'ambul', u'membership'] [u'rescu', u'offic', u'train'] [u'muckert', u'suspend', u'danger', u'throw'] [u'nasa', u'delay', u'mar', u'rover', u'launch'] [u'neitz', u'address', u'team', u'train'] [u'neitz', u'expect', u'fine', u'casino', u'scuffl'] [u'mayor', u'aim', u'boost', u'servic'] [u'potter', u'book', u'prompt', u'look', u'film', u'ahead'] [u'korea', u'vow', u'increas', u'atom', u'forc'] [u'word', u'rock', u'lobster', u'season', u'plan'] [u'open', u'scrap', u'short', u'jail', u'term'] [u'move', u'allow', u'mobil', u'tower', u'nation', u'park'] [u'parliament', u'approv', u'moratorium'] [u'commission', u'welcom', u'atsic', u'discuss', u'paper'] [u'minist', u'reject', u'rush', u'legisl', u'claim'] [u'politician', u'polic', u'interview'] [u'lawyer', u'sentenc', u'year', u'kidnap', u'plot'] [u'opposit', u'defend', u'push', u'weapon', u'inquiri'] [u'outback', u'challeng', u'lucrat', u'break', u'hill'] [u'group', u'back', u'educ', u'restructur'] [] [u'paperlinx', u'major', u'european', u'acquisit'] [u'parent', u'concern', u'reduc', u'bowl', u'particip'] [u'farmer', u'face', u'water', u'shortag', u'woe'] [u'plaintiff', u'landmark', u'abort', u'case', u'want'] [u'polic', u'commission', u'concern', u'high', u'speed'] [u'polic', u'confirm', u'investig', u'son'] [u'polic', u'investig', u'brawl', u'yarrabah'] [u'poor', u'water', u'pressur', u'colli'] [u'powel', u'criticis', u'burma', u'detain'] [u'foster', u'carer', u'audit'] [u'queensland', u'student', u'head', u'bali', u'bomb', u'trial'] [u'question', u'time', u'cancel', u'welcom', u'home', u'parad'] [u'rail', u'project', u'integr', u'manganes', u'plan'] [u'railway', u'unlik', u'sink', u'road', u'transport'] [u'read', u'skill', u'turn', u'dairi', u'cattl', u'cash'] [u'real', u'galaxi', u'expand'] [u'record', u'budget', u'wangaratta'] [u'research', u'surplus', u'embryo', u'step', u'closer'] [u'resid', u'refuge', u'concern'] [u'resid', u'urg', u'offer', u'feedback', u'wast'] [u'resid', u'want', u'bypass', u'rout', u'announc'] [u'ricegrow', u'unhappi', u'delay', u'water', u'share'] [u'riot', u'motorcycl', u'death'] [u'rivkin', u'undergo', u'brain', u'surgeri'] [u'rowl', u'kill', u'potter', u'charact'] [u'rural', u'doctor', u'indemn', u'concern'] [u'rusedski', u'aynaoui', u'eas', u'nottingham'] [u'govt', u'announc', u'tune', u'live', u'music'] [u'treasuri', u'overspend', u'say', u'opposit'] [u'school', u'hail', u'student', u'retent', u'leader'] [u'second', u'suspect', u'arrest', u'missionari', u'murder'] [u'senior', u'drink', u'meet', u'polic', u'inquiri'] [u'marriag', u'court', u'decis', u'stand', u'canadian'] [u'share', u'market', u'end', u'win', u'streak'] [u'simpson', u'await', u'news', u'kidney', u'injuri'] [u'south', u'hedland', u'crime', u'address', u'gallop'] [u'street', u'revitalis'] [u'studi', u'consid', u'drought', u'centr', u'viabil'] [u'sunday', u'trade', u'law', u'illeg'] [u'support', u'heritag', u'trust', u'job'] [u'suspend', u'sentenc', u'abalon', u'offenc'] [u'synchrotron', u'project', u'lack', u'busi', u'plan'] [u'talau', u'leav', u'bulldog', u'helen'] [u'task', u'forc', u'probe', u'school', u'safeti'] [u'tassi', u'elector', u'focus', u'voter', u'studi'] [u'teacher', u'threaten', u'strike', u'staff', u'concern'] [u'aussi', u'charg', u'drug', u'offenc', u'vietnam'] [u'tour', u'oper', u'reject', u'croc', u'claim'] [u'trader', u'group', u'welcom', u'plaza', u'expans'] [u'treatment', u'sleep', u'disord', u'offer'] [u'trial', u'alleg', u'real', u'leader', u'begin', u'dublin'] [u'trio', u'face', u'kidnap', u'charg'] [u'troop', u'welcom', u'home', u'sydney'] [u'truce', u'talk', u'fail', u'isra', u'girl', u'shoot', u'dead'] [u'charg', u'cocain', u'smuggl', u'oper'] [u'charg', u'recruit', u'women', u'industri'] [u'soldier', u'kill', u'grenad', u'attack', u'wit'] [u'union', u'concern', u'coal', u'product'] [u'union', u'say', u'quick', u'sugar', u'concern'] [u'unit', u'confirm', u'beckham', u'transfer', u'real', u'madrid'] [u'urg', u'expand', u'secur', u'forc', u'afghanistan'] [u'watchdog', u'debat', u'iran', u'nuclear', u'failur'] [u'doctor', u'favour', u'clone', u'research'] [u'envoy', u'meet', u'palestinian', u'leader'] [u'troop', u'open', u'iraqi', u'protest', u'kill'] [u'verkerk', u'fall', u'earth', u'ordina', u'open'] [u'govt', u'open', u'resourc', u'centr', u'children'] [u'vinokourov', u'win', u'stage', u'swiss', u'tour'] [u'wage', u'increas', u'block', u'labor', u'council'] [u'govt', u'air', u'wind', u'farm', u'concern'] [u'govt', u'break', u'bropho', u'nativ', u'titl', u'negoti'] [u'govt', u'consid', u'curfew'] [u'polic', u'minist', u'forc', u'curfew', u'backdown'] [u'waterfal', u'crash', u'spark', u'rail', u'safeti', u'upgrad'] [u'research', u'season', u'sar', u'theori'] [u'wickham', u'plant', u'project', u'get', u'underway'] [u'share', u'dive', u'profit', u'warn'] [u'woman', u'set', u'protest', u'pari'] [u'woman', u'rape', u'catch', u'mobil', u'phone', u'camera'] [u'woman', u'face', u'court', u'miss', u'pair', u'probe'] [u'world', u'communiti', u'isol', u'korea', u'hoon'] [u'zimbabw', u'allow', u'privat', u'import', u'eas'] [u'rebel', u'soldier', u'kill', u'aceh', u'militari'] [u'work', u'day', u'lose', u'march', u'strike'] [u'rat', u'overhaul', u'collaps'] [u'airfield', u'sale'] [u'albani', u'feel', u'colder', u'morn'] [u'ord', u'make', u'moder', u'gain'] [u'amnesti', u'critic', u'british', u'asylum', u'seeker', u'plan'] [u'amrozi', u'tell', u'tortur', u'threat', u'bashir', u'trial'] [u'amrozi', u'testifi', u'bashir'] [u'annan', u'disapprov', u'indian', u'troop', u'iraq', u'report'] [u'asean', u'ask', u'help', u'solomon', u'island'] [u'asio', u'admit', u'bali', u'intellig'] [u'kill', u'suicid', u'attack'] [u'warn', u'crackdown', u'work', u'relat', u'claim'] [u'atsic', u'deep', u'problem', u'say'] [u'australian', u'control', u'confeder', u'match'] [u'australian', u'care', u'environ'] [u'australia', u'urg', u'impos', u'sanction', u'burma'] [u'bali', u'intellig', u'inquiri'] [u'barca', u'talk', u'forc', u'beckham', u'ferdinand'] [u'beatti', u'back', u'arnison'] [u'beckham', u'warm', u'life', u'spain'] [u'beckham', u'warm', u'spanish', u'futur'] [u'belgian', u'reach', u'ordina', u'open', u'quarter', u'final'] [u'berrigan', u'vow', u'lift', u'game'] [u'berrigan', u'vow', u'lift', u'game', u'origin'] [u'brother', u'enter', u'buddhist', u'templ'] [u'plan', u'afoot', u'guyra', u'age', u'care'] [u'brazilian', u'presid', u'plan', u'type', u'trade', u'bloc'] [u'britain', u'design', u'babi', u'bear', u'report'] [u'brothel', u'approv', u'disappoint', u'gladston'] [u'buick', u'champ', u'envious', u'tiger', u'slump'] [u'burma', u'give', u'word', u'releas'] [u'bush', u'administr', u'play', u'intellig'] [u'support', u'countri', u'race', u'petit'] [u'campaign', u'aim', u'reduc', u'arson'] [u'capriati', u'rubin', u'eastbourn'] [u'carr', u'challeng', u'crime', u'petit'] [u'carr', u'give', u'green', u'light', u'lake', u'cowal', u'gold'] [u'chamber', u'back', u'council', u'busi', u'support'] [u'children', u'indefinit', u'detent', u'illeg', u'court', u'rule'] [u'china', u'back', u'pakistan', u'asean', u'forum', u'membership'] [u'clear', u'law', u'report', u'undergo', u'independ', u'review'] [u'clock', u'tick', u'game'] [u'treasur', u'call', u'leadership', u'chang'] [u'uncov', u'alleg', u'global', u'paedophil', u'ring'] [u'cold', u'suffer', u'urg', u'spread', u'germ'] [u'collis', u'sink', u'chines', u'ferri', u'yangtz'] [u'committe', u'ahead', u'inquiri'] [u'commonwealth', u'game', u'countdown', u'begin'] [u'congo', u'rebel', u'govern', u'talk', u'burundi'] [u'contract', u'sign', u'antarct', u'plan'] [u'costa', u'promis', u'action', u'rail', u'review'] [u'council', u'divis', u'remain'] [u'council', u'doesnt', u'need', u'merger', u'effici', u'mayor'] [u'council', u'consid', u'merger', u'opportun'] [u'council', u'seek', u'govt', u'support', u'address', u'water', u'woe'] [u'council', u'fear', u'river', u'murray', u'bill'] [u'council', u'talk', u'budget'] [u'court', u'jail', u'hobart', u'assault'] [u'crean', u'scrutini', u'poki', u'deal', u'comment'] [u'croc', u'hunter', u'drive', u'adelaid', u'darwin', u'ghan', u'promot'] [u'curfew', u'enforc', u'riot'] [u'cwealth', u'game', u'organis', u'hope', u'freeman'] [u'date', u'north', u'south', u'rail', u'cross'] [u'davenport', u'knock', u'eastbourn'] [u'wont', u'rule', u'cut'] [u'decis', u'merger', u'see', u'wise'] [u'doctor', u'group', u'sceptic'] [u'drop', u'darwin', u'pitch', u'break', u'grind'] [u'drop', u'pitch', u'break', u'grind', u'darwin'] [u'eagl', u'hope', u'resolut', u'final', u'debat'] [u'eccleston', u'roast', u'silverston'] [u'electr', u'propos', u'result', u'higher', u'bill'] [u'evolutionari', u'research', u'drill', u'explain', u'life'] [u'expert', u'consid', u'australia', u'futur', u'health', u'need'] [u'flintoff', u'take', u'cool', u'approach', u'fit'] [u'free', u'transport', u'offer', u'welcom', u'home', u'troop'] [u'frighten', u'teacher', u'consid', u'industri', u'action'] [u'water', u'probe'] [u'game', u'venu', u'schedul', u'opposit'] [u'garrett', u'undecid', u'polit', u'futur'] [u'gatecrash', u'spark', u'polic', u'warn'] [u'gold', u'coast', u'contribut', u'wombat', u'research'] [u'govern', u'univers', u'fund'] [u'govt', u'appeal', u'rule', u'child', u'detent'] [u'govt', u'appeal', u'rule', u'children'] [u'govt', u'urg', u'establish', u'aerial', u'firefight'] [u'greenpeac', u'present', u'dead', u'porpois', u'whale'] [u'green', u'rais', u'fund', u'fenc', u'tent', u'embassi'] [u'group', u'warn', u'govt', u'poki', u'legisl'] [u'harri', u'potter', u'book', u'break', u'internet', u'sale'] [u'harvey', u'norman', u'defi', u'govt', u'illeg', u'sunday'] [u'health', u'concern', u'allen', u'polit'] [u'health', u'minist', u'quiz', u'specialist'] [u'health', u'review', u'launch', u'sour', u'fund', u'critic'] [u'health', u'review', u'releas'] [u'heavi', u'secur', u'tehran', u'protest', u'lose', u'momentum'] [u'high', u'price', u'hurt', u'coastal', u'home', u'buyer'] [u'hop', u'board', u'boost', u'communic'] [u'horgan', u'ireland', u'debut', u'samoa'] [u'howard', u'crean', u'tribut', u'mccartney'] [u'ill', u'cancel', u'hospit', u'elect', u'surgeri'] [u'indonesia', u'vow', u'crush', u'rebel', u'aceh'] [u'inquiri', u'probe', u'ruddock', u'alleg', u'visa', u'donat'] [u'iraqi', u'export', u'start', u'sunday', u'offici'] [u'irish', u'bring', u'earth', u'south', u'african'] [u'isra', u'evacu', u'settlement', u'outpost', u'radio'] [u'issac', u'store', u'rob', u'knife', u'weild'] [u'job', u'miner', u'sand', u'plant', u'close'] [u'jone', u'call', u'better', u'educ', u'program'] [u'jone', u'look', u'forward', u'birth', u'child'] [u'klitschko', u'say', u'lewi', u'fight', u'perfect', u'time'] [u'knife', u'wield', u'ponder', u'travel', u'option'] [u'krajicek', u'call'] [u'labor', u'keep', u'heat', u'downer'] [u'labor', u'manipul', u'bali', u'advic'] [u'lara', u'tillakaratn', u'prepar', u'face'] [u'man', u'bentley', u'plan'] [u'lilac', u'hill', u'season', u'open', u'stay'] [u'local', u'govt', u'chief', u'say', u'amalgam', u'necess'] [u'love', u'sick', u'doctor', u'admit', u'spark', u'bomb', u'alert'] [u'macdonald', u'overcom', u'head', u'injuri'] [u'mahathir', u'accus', u'european', u'warmong'] [u'fin', u'spit', u'woman', u'footbal'] [u'defend', u'danger', u'drive', u'charg'] [u'face', u'tough', u'season', u'open'] [u'factor', u'heir', u'captur', u'mexico'] [u'mayor', u'reject', u'resign', u'claim'] [u'media', u'power', u'overst', u'murdoch', u'tell', u'hear'] [u'mine', u'industri', u'seek', u'fast', u'nativ', u'titl', u'resolut'] [u'miso', u'soup', u'reduc', u'breast', u'cancer', u'risk', u'research'] [u'mix', u'fortun', u'farmer'] [u'monsoon', u'rain', u'claim', u'live', u'east', u'timor'] [u'montgomeri', u'green', u'pressur'] [u'ross', u'river', u'virus', u'case', u'report'] [u'morrison', u'win', u'heat', u'japan'] [u'job', u'safe', u'moment'] [u'air', u'educ', u'servic', u'concern'] [u'musharraf', u'warn', u'militari', u'imbal', u'india'] [u'consid', u'follow', u'suit', u'home', u'loan', u'rat'] [u'natqld'] [u'face', u'challeng', u'athlet', u'veteran'] [u'life', u'plan', u'wollongong', u'site'] [u'news', u'miss', u'prime', u'websit'] [u'zealand', u'outsid', u'head', u'oxford'] [u'zealand', u'wale', u'chanc', u'amend'] [u'korea', u'accus', u'asean', u'forum', u'interfer'] [u'nrma', u'board', u'downsiz'] [u'debat', u'short', u'sentenc', u'issu'] [u'govt', u'urg', u'provid', u'ward', u'fund'] [u'lower', u'hous', u'pass', u'stem', u'cell', u'research'] [u'avoid', u'probe', u'reach'] [u'adult', u'need', u'drug', u'cope'] [u'opal', u'squad', u'announc', u'european', u'tour'] [u'oppn', u'critic', u'dental', u'wait', u'list'] [u'opposit', u'claim', u'cwealth', u'game', u'venu'] [u'origin'] [u'origin', u'seri', u'sell'] [u'oxley', u'highway', u'option', u'drop'] [u'packag', u'address', u'crime', u'unemploy'] [u'pack', u'shed', u'plan', u'spark', u'resid', u'concern'] [u'parkinson', u'burrow', u'round', u'japan'] [u'perth', u'hospit', u'nurs', u'say', u'union'] [u'disagre', u'review', u'authorship', u'concern'] [u'accus', u'mislead', u'parliament'] [u'legisl', u'joint', u'custodi'] [u'say', u'troop', u'remain', u'east', u'timor', u'year'] [u'polic', u'deni', u'neitz', u'give', u'special', u'treatment'] [u'polic', u'cliff', u'fall', u'victim'] [u'polic', u'probe', u'fatal', u'highway', u'crash'] [u'polic', u'death', u'murder', u'suicid'] [u'polic', u'target', u'anti', u'social', u'behaviour', u'southbank'] [u'polic', u'tenur', u'concern', u'rais'] [u'polic', u'check', u'home', u'secur'] [u'polic', u'investig', u'suspect', u'morphett', u'vale'] [u'print', u'email', u'lose', u'slice', u'histori', u'scientist'] [u'privat', u'jail', u'plan', u'expans'] [u'protest', u'rugbi', u'exhibit', u'snub'] [u'public', u'input', u'seek', u'year', u'celebr'] [u'public', u'urg', u'comment', u'koala', u'protect', u'plan'] [u'puma', u'chang', u'second', u'french', u'test'] [u'quinn', u'slam', u'govt', u'child', u'protect', u'failur'] [u'ranger', u'urg', u'peopl', u'steal', u'croc', u'sign'] [u'rate', u'rise', u'see', u'inevit'] [u'record', u'crowd', u'shape', u'marathon'] [u'reduc', u'financ', u'book', u'spend'] [u'reef', u'rezon', u'plan', u'spark', u'boat', u'safeti', u'fear'] [u'rudd', u'call', u'sanction', u'burma'] [u'ruddock', u'urg', u'cash', u'visa', u'inquiri'] [u'rudd', u'unsur', u'portfolio', u'chang', u'reshuffl'] [u'rusedski', u'hit', u'form'] [u'health', u'transform', u'review'] [u'scan', u'give', u'sharp', u'clear'] [u'scheme', u'help', u'erad', u'fruit'] [u'scott', u'plan', u'play', u'side', u'atlant'] [u'secur', u'guard', u'charg', u'fals', u'report'] [u'secur', u'guard', u'treat', u'shock', u'scare'] [u'shire', u'presid', u'unhappi', u'drought', u'gather'] [u'shire', u'unhappi', u'wind', u'farm', u'delay'] [u'sprint', u'rival', u'montgomeri', u'green', u'word'] [u'stewart', u'brundl', u'eccleston'] [u'studi', u'find', u'polic', u'beat', u'help', u'lower', u'crime', u'rate'] [u'studi', u'highlight', u'tourism', u'limit'] [u'suicid', u'bomber', u'kill', u'israel'] [u'suicid', u'bomber', u'wound', u'israel', u'polic'] [u'support', u'wide', u'youth', u'curfew'] [u'kyi', u'birthday', u'mark', u'protest'] [u'tafe', u'apprenticeship', u'applic', u'rise'] [u'tafe', u'consid', u'campus'] [u'govt', u'tabl', u'dilut', u'adopt'] [u'teen', u'kill', u'hunt', u'accid'] [u'teen', u'face', u'trial', u'man', u'death'] [u'tesk', u'consid', u'invit', u'men', u'tournament'] [u'person', u'charg', u'slaveri'] [u'soldier', u'kill', u'iraq', u'attack', u'jazeera'] [u'time', u'run', u'wind', u'farm', u'plan'] [u'tucker', u'shrug', u'govt', u'move', u'prosecut'] [u'tuckey', u'refer', u'embassi', u'fenc', u'erect', u'polic'] [u'hospitalis', u'northbridg', u'accid'] [u'typhoon', u'approach', u'southern', u'japan'] [u'concern', u'media', u'arrest', u'blasphemi'] [u'chief', u'continu', u'lobbi', u'fund'] [u'union', u'electrolux', u'ballot', u'suck'] [u'congress', u'begin', u'hear'] [u'shuttl', u'launch', u'like', u'earli', u'nasa'] [u'support', u'plan', u'afghan', u'regim', u'inadequ', u'report'] [u'chief', u'chair', u'sunraysia'] [u'govt', u'applaud', u'agreement', u'oper'] [u'water', u'catchment', u'plan', u'underway'] [u'waterfal', u'inquiri', u'hear', u'major', u'safeti', u'concern'] [u'webb', u'chase', u'year'] [u'welfar', u'agenc', u'clash', u'senat', u'poverti'] [u'confid', u'profit', u'offset', u'upgrad'] [u'woman', u'admit', u'attack', u'rival', u'gang', u'member', u'partner'] [u'woman', u'claim', u'polic', u'knowledg', u'child', u'abus'] [u'woodchip', u'concern', u'spark', u'protest'] [u'wool', u'scour', u'plant', u'closur', u'cost', u'job'] [u'work', u'wind', u'farm', u'power', u'ahead'] [u'accid', u'woman', u'remain', u'critic'] [u'law', u'smoke', u'restaur', u'licens'] [u'advoc', u'appal', u'ruddock', u'refuge', u'comment'] [u'alston', u'urg', u'north', u'west', u'victorian'] [u'warship', u'head', u'townsvill'] [u'asio', u'fail', u'bali', u'attack', u'crean'] [u'australia', u'unchang', u'bangladesh', u'seri'] [u'author', u'say', u'potter', u'angri', u'teen', u'love'] [u'baird', u'streak', u'clear', u'westchest'] [u'bangladesh', u'retain', u'mahmud', u'skipper'] [u'barrett', u'grab', u'lead', u'webb', u'tesk', u'close'] [u'beatti', u'announc', u'marin', u'research', u'centr'] [u'beatti', u'take', u'advantag', u'bundi', u'cane', u'harvest'] [u'beckham', u'deni', u'initi', u'real'] [u'beckham', u'look', u'forward', u'real', u'challeng'] [u'bega', u'celebr', u'refuge'] [u'blue', u'give', u'origin', u'clear'] [u'boomer', u'prepar', u'face', u'czech'] [u'britain', u'face', u'tough', u'test', u'european'] [u'british', u'grand', u'prix', u'surviv', u'say', u'william'] [u'brit', u'target', u'world', u'ticket', u'sale', u'blitz'] [u'bropho', u'charg', u'child', u'offenc'] [u'bulli', u'woman', u'receiv', u'damag', u'payout'] [u'bushfir', u'public', u'hear', u'hold', u'juli'] [u'cairn', u'rate', u'rise', u'surpris'] [u'delay', u'water', u'meter', u'read'] [u'inquiri', u'prison', u'offic'] [u'subdivis', u'rethink'] [u'releas', u'detain', u'children'] [u'wagga', u'wagga', u'tafe'] [u'bomb', u'explod', u'near', u'chechen', u'govt', u'build'] [u'delay', u'elura', u'control'] [u'celebr', u'entertain', u'troop', u'gulf'] [u'celebr', u'hairdress', u'jail', u'assault'] [u'central', u'drill', u'start'] [u'china', u'arrest', u'pair', u'kidnap'] [u'citi', u'girl', u'line', u'meet', u'beaut', u'bloke'] [u'claim', u'peacekeep', u'plan', u'fuel', u'solomon', u'violenc'] [u'claim', u'samag', u'review', u'need', u'govt', u'support'] [u'coach', u'graham', u'leav', u'montgomeri'] [u'colombia', u'seek', u'goal', u'drought'] [u'communiti', u'come', u'search', u'angler'] [u'error', u'incorrect', u'cancer', u'treatment'] [u'costa', u'expect', u'deliv', u'rail', u'statement'] [u'council', u'hand', u'airport'] [u'council', u'deliv', u'budget', u'amidst', u'ratepay', u'concern'] [u'council', u'form', u'plan', u'jetti', u'develop'] [u'court', u'order', u'retrial', u'convict', u'rapist'] [u'court', u'rule', u'encourag', u'smuggl', u'ruddock'] [u'crime', u'studi', u'show', u'famili', u'kill', u'common'] [u'debus', u'mundin', u'meet', u'dubbo'] [u'defenc', u'dept', u'defend', u'bali', u'threat', u'assess'] [u'diamond', u'firm', u'return', u'lucrat', u'sale'] [u'doctor', u'await', u'insur', u'detail'] [u'downtown', u'tokyo', u'come', u'halt', u'beckham'] [u'dragon', u'releas', u'england', u'bind', u'pongia'] [u'driver', u'urg', u'wari', u'anim', u'danger'] [u'drought', u'blame', u'drop', u'southcorp', u'grape', u'harvest'] [u'dead', u'plung', u'indonesian', u'river'] [u'england', u'strong', u'hockeyroo'] [u'environ', u'group', u'wait', u'cockatoo', u'report'] [u'errol', u'flynn', u'memorabilia', u'go'] [u'esso', u'court', u'order', u'open', u'door', u'legal', u'onslaught'] [u'esso', u'order', u'damag', u'longford'] [u'adopt', u'draft', u'constitut'] [u'match', u'billion', u'aid', u'pledg'] [u'expect', u'rate', u'fall', u'help', u'build'] [u'farmer', u'urg', u'tackl', u'cereal', u'diseas', u'earli'] [u'father', u'bali', u'victim', u'vow', u'help', u'detaine'] [u'feder', u'fund', u'help', u'boost', u'rfds'] [u'feder', u'govt', u'reject', u'rainforest', u'claim'] [u'feral', u'deer', u'group', u'seek', u'feedback'] [u'fisherman', u'bodi', u'wash', u'rock'] [u'fisherman', u'sweep', u'rock', u'victoria'] [u'argentin', u'leader', u'bodi', u'exhum'] [u'hart', u'exec', u'charg', u'insid', u'trade'] [u'nurs', u'say', u'violenc', u'need', u'address'] [u'freeman', u'deni', u'retir', u'report'] [u'french', u'fear', u'puma', u'whitewash', u'world', u'rehears'] [u'french', u'lower', u'hous', u'pass', u'pension', u'articl'] [u'fund', u'alloc', u'visitor', u'centr'] [u'fund', u'treat', u'carbon', u'dioxid', u'emiss'] [u'furyk', u'continu', u'good', u'form', u'westchest'] [u'giant', u'spider', u'prick', u'shark'] [u'gippsland', u'share', u'fish', u'fund'] [u'good', u'rain', u'help', u'avert', u'water', u'restrict'] [u'govt', u'offer', u'senat', u'improv', u'cross', u'media'] [u'govt', u'reject', u'union', u'call', u'open', u'trade', u'talk'] [u'grafton', u'hous', u'develop', u'approv'] [u'great', u'alpin', u'promot', u'target', u'oversea'] [u'great', u'white', u'shark', u'trap', u'tuna', u'farm'] [u'gregan', u'giffen', u'approv', u'dockland', u'england', u'clash'] [u'guti', u'readi', u'leav', u'real', u'beckham', u'sign'] [u'hama', u'arm', u'wing', u'claim', u'latest', u'attack'] [u'hampshir', u'zimbabw'] [u'helicopt', u'crash', u'west', u'sydney'] [u'help', u'avail', u'worker'] [u'hewitt', u'hype', u'titl', u'defenc'] [u'high', u'secur', u'greet', u'warship'] [u'hong', u'kong', u'ignor', u'advic', u'propos', u'secur'] [u'hotel', u'seek', u'compo', u'condit'] [u'hous', u'construct', u'declin', u'expect'] [u'hunter', u'economi', u'predict', u'slow', u'year'] [u'indefinit', u'jail', u'answer', u'women', u'group'] [u'indigen', u'cultur', u'festiv', u'begin', u'laura'] [u'indonesian', u'say', u'civilian', u'kill', u'aceh'] [u'insur', u'bill', u'drive', u'doctor', u'away', u'say'] [u'rate', u'fall', u'boost', u'home', u'afford'] [u'iranian', u'women', u'die', u'set', u'alight'] [u'john', u'wari', u'bowen'] [u'kennedi', u'share', u'gleneagl', u'lead'] [u'labor', u'releas', u'breakdown', u'bulk', u'bill'] [u'lead', u'member', u'british', u'garag', u'jail'] [u'lewi', u'heaviest', u'titl', u'fight'] [u'magistr', u'dismiss', u'court', u'bias', u'claim'] [u'magistr', u'fin', u'drink', u'drive'] [u'magistr', u'hop', u'send', u'support', u'husband'] [u'avoid', u'bite'] [u'consid', u'legal', u'option', u'murder', u'charg'] [u'convict', u'threaten', u'islam', u'leader'] [u'guilti', u'neglig', u'sydney', u'fish', u'kill'] [u'jail', u'chequ', u'fraud'] [u'kill', u'geelong', u'accid'] [u'appeal', u'convict', u'polic', u'threat'] [u'face', u'court', u'rape', u'charg'] [u'maroon', u'dismiss', u'lockyer', u'injuri', u'concern'] [u'mauresmo', u'withdraw', u'wimbledon'] [u'meet', u'welcom', u'atsic', u'review', u'find'] [u'militari', u'action', u'iran', u'option', u'offici'] [u'millennium', u'train', u'undergo', u'extra', u'test'] [u'montgomeri', u'green', u'clash', u'pari'] [u'montgomeri', u'lead', u'gatlin'] [u'montgomeri', u'sprint', u'semi', u'final'] [u'air', u'merger', u'consult', u'concern'] [u'consid', u'kimberley', u'water', u'plan'] [u'gambier', u'health', u'intensifi'] [u'nairn', u'happi', u'wharf', u'progress'] [u'netbal', u'australia', u'world', u'champ'] [u'handbook', u'help', u'migrant', u'understand', u'right'] [u'chief', u'call', u'cricket', u'uniti'] [u'newscorp', u'drag', u'ord'] [u'year', u'firm', u'clash', u'restor'] [u'nextgen', u'go', u'receivership'] [u'region', u'facilit', u'coastcar', u'group'] [u'govt', u'stand', u'cancer', u'treatment', u'pledg'] [u'atsic', u'commission', u'chair', u'committe'] [u'figur', u'highest', u'assault', u'statist'] [u'nurs', u'feder', u'launch', u'anti', u'aggress'] [u'nurs', u'push', u'secur', u'walkway', u'gove'] [u'offici', u'face', u'critic', u'foster', u'care'] [u'season', u'recruit', u'pay', u'cowboy'] [u'kill', u'injur', u'lao', u'bomb', u'blast'] [u'orang', u'endur', u'tougher', u'water', u'restrict'] [u'outrag', u'plan', u'fight', u'child', u'detent', u'rule'] [u'panther', u'pummel', u'knight'] [u'perth', u'prepar', u'welcom', u'home', u'troop'] [u'plan', u'aim', u'shield', u'crop', u'impact'] [u'plan', u'bruxner', u'highway', u'bypass'] [u'plan', u'council'] [u'plan', u'power', u'user', u'extend', u'blackout', u'compo'] [u'polic', u'alleg', u'teen', u'clock', u'zone'] [u'polic', u'defend', u'tenur', u'agreement'] [u'polic', u'establish', u'special', u'team', u'south', u'west'] [u'polic', u'probe', u'sheep', u'theft'] [u'polic', u'remov', u'tent', u'embassi', u'fenc', u'arrest'] [u'polic', u'seek', u'help', u'nightclub', u'attack'] [u'polic', u'seiz', u'wwii', u'combat', u'vehicl'] [u'polic', u'crack', u'theft'] [u'port', u'brisban', u'get', u'technolog'] [u'port', u'better', u'william'] [u'powel', u'ask', u'sharon', u'mazen', u'peac', u'effort'] [u'powel', u'israel', u'peac', u'rescu'] [u'prison', u'remain', u'larg', u'petri', u'escap'] [u'pristin', u'water', u'consid', u'reform'] [u'probe', u'begin', u'fatal', u'chopper', u'crash'] [u'say', u'report', u'unfound'] [u'govt', u'defend', u'indigen', u'alcohol', u'plan'] [u'real', u'concentr', u'titl', u'race'] [u'real', u'hunt', u'ronaldinho'] [u'refuge', u'famili', u'win', u'appeal', u'temporari', u'visa'] [u'refuge', u'group', u'branch', u'campaign'] [u'report', u'highlight', u'risk', u'day', u'bali'] [u'resid', u'want', u'govt', u'hear', u'sustain', u'plan'] [u'reward', u'push', u'junk', u'food', u'school', u'menu'] [u'robinson', u'receiv', u'explain', u'letter'] [u'ruddock', u'confirm', u'attend', u'visa', u'inquiri'] [u'ruddock', u'prepar', u'fight', u'child', u'detent', u'rule'] [u'ruddock', u'slam', u'decis', u'allow', u'refuge', u'famili'] [u'damag', u'develop'] [u'stall', u'upper', u'hous'] [u'sapphir', u'sink', u'franc'] [u'scheme', u'aim', u'reduc', u'domest', u'violenc'] [u'school', u'oper', u'offer', u'inadequ'] [u'scientist', u'race', u'licens', u'stem', u'cell', u'research'] [u'scott', u'renew', u'love', u'affair', u'gleneagl'] [u'tour', u'prove', u'anim', u'peopl'] [u'sharehold', u'reject', u'factori', u'stock', u'exchang', u'list'] [u'sindelar', u'set', u'earli', u'pace', u'westchest'] [u'speed', u'warn', u'england', u'pitch', u'invas'] [u'strong', u'wind', u'hamper', u'japan', u'surf', u'world', u'champ'] [u'super', u'sub', u'turkey', u'state'] [u'support', u'young', u'offend'] [u'sydney', u'helicopt', u'crash', u'kill'] [u'sydney', u'arrest', u'weapon', u'cach'] [u'talk', u'discuss', u'make', u'wind', u'turbin', u'blade'] [u'taxi', u'licenc', u'plate', u'unlik'] [u'tevez', u'doubl', u'help', u'boca', u'steam', u'libertador'] [u'texa', u'sleep', u'lawyer', u'inmat', u'get', u'life', u'sentenc'] [u'theophan', u'convict', u'quash', u'appeal'] [u'thought', u'seek', u'boost', u'advocaci', u'servic'] [u'thousand', u'cheer', u'troop', u'perth'] [u'tight', u'secur', u'greet', u'leader', u'ahead'] [u'toyota', u'slam', u'brake', u'closur', u'rumour'] [u'travel', u'advic', u'warn', u'beij', u'sar', u'threat'] [u'tribun', u'sarwari', u'visa', u'decis', u'today'] [u'tribun', u'mediat', u'mine', u'area', u'claim'] [u'truck', u'driver', u'jail', u'fatal', u'accid'] [u'union', u'anger', u'nigerian', u'fuel', u'hike'] [u'down', u'southern', u'hous', u'market'] [u'lose', u'patienc', u'burma'] [u'navi', u'ship', u'dock', u'garden', u'island'] [u'open', u'announc', u'million', u'prize'] [u'pilot', u'avoid', u'court', u'martial', u'canadian', u'death'] [u'senat', u'panel', u'vote', u'overturn', u'media', u'ownership'] [u'vietnames', u'detaine', u'die', u'hospit'] [u'virus', u'spark', u'restrict', u'wheat', u'trial'] [u'wallabi', u'complet', u'final'] [u'opposit', u'air', u'timber', u'concern'] [u'warn', u'drug', u'resist', u'strain', u'increas'] [u'warn', u'come', u'bali', u'blast'] [u'waterhous', u'win', u'licenc', u'battl'] [u'waterhous', u'win', u'licenc', u'renew', u'battl'] [u'water', u'woe', u'continu', u'break', u'hill'] [u'webster', u'move', u'japan'] [u'west', u'australian', u'editor', u'resign'] [u'william', u'sister', u'face', u'belgian', u'challeng'] [u'wimbledon'] [u'wimbledon', u'women'] [u'wind', u'postpon', u'japan', u'surf', u'heat'] [u'winegrow', u'quiz', u'water', u'restrict'] [u'work', u'begin', u'highway', u'revamp'] [u'workplac', u'death', u'investig'] [u'world', u'payment', u'disput', u'go', u'court'] [u'xstrata', u'roll', u'rolleston', u'coal', u'project'] [u'zimbabw', u'opposit', u'leader', u'free', u'bail'] [u'fear', u'dead', u'nigeria', u'pipe', u'explos'] [u'member', u'hambali', u'command', u'arrest'] [u'fear', u'dead', u'asylum', u'seeker', u'boat', u'tragedi'] [u'aborigin', u'communiti', u'embrac', u'circl', u'sentenc'] [u'adelaid', u'face', u'soccer', u'oblivion'] [u'affirm', u'action', u'appeal', u'good', u'littl'] [u'age', u'drop', u'excit', u'chines', u'archaeologist'] [u'call', u'govt', u'obstetr'] [u'anaesthetist', u'shortag', u'jeopardis', u'elect', u'surgeri'] [u'anderson', u'blitz', u'pakistan'] [u'anger', u'emiss', u'fee', u'hike'] [u'anti', u'smoke', u'lobbi', u'applaud', u'move'] [u'asylum', u'seeker', u'prefer', u'europ'] [u'atapattu', u'expos', u'windi', u'attack'] [u'injur', u'chechen', u'blast', u'report'] [u'aust', u'policewoman', u'head', u'timor', u'forc'] [u'aust', u'prepar', u'antarct', u'tourism', u'control', u'plan'] [u'autism', u'confer', u'highlight', u'famili', u'difficulti'] [u'awol', u'gazza', u'hand', u'gansu', u'deadlin'] [u'azuigou', u'mudslid', u'kill'] [u'bail', u'tsvangirai', u'undet', u'treason', u'charg'] [u'baird', u'lead', u'goosen', u'york', u'tesk'] [u'balkan', u'state', u'join', u'reform'] [u'basebal', u'stadium', u'deliber'] [u'bash', u'put', u'hallett', u'cove', u'hospit'] [u'brisban', u'compani', u'break', u'grind', u'racehors', u'test'] [u'byrd', u'say', u'lewi', u'dodg'] [u'canada', u'report', u'sar', u'death'] [u'canadian', u'softwar', u'engin', u'arrest', u'murder'] [u'carlisl', u'triangular', u'seri'] [u'carter', u'lead', u'zealand', u'rout', u'wale'] [u'casar', u'hold', u'aussi', u'sprinter', u'claim', u'stage'] [u'celtic', u'champion', u'leagu', u'qualifi', u'trek'] [u'charg', u'lay', u'toilet', u'camera'] [u'child', u'protect', u'group', u'lobbi', u'foster', u'care'] [u'china', u'close', u'dedic', u'sar', u'hospit'] [u'chirac', u'urg', u'british', u'action', u'miss', u'cameraman'] [u'colombia', u'track', u'ut', u'save', u'kiwi', u'blush'] [u'compens', u'payout', u'util', u'design', u'fraud'] [u'conflict', u'report', u'chechnya', u'bomb', u'blast'] [u'confus', u'resumpt', u'iraq', u'export'] [u'cooge', u'peac', u'camper', u'rais', u'iraq', u'fund'] [u'costa', u'join', u'grow', u'wimbledon', u'sick', u'list'] [u'court', u'reserv', u'decis', u'contempt', u'charg'] [u'dane', u'kjeldsen', u'lead', u'tricki', u'gleneagl', u'cours'] [u'democrat', u'meet', u'rebuild', u'parti'] [u'detain', u'iranian', u'student', u'whereabout', u'unknown'] [u'detain', u'children', u'nation', u'disgrac', u'refuge'] [u'dippenaar', u'seal', u'south', u'africa'] [u'dubbo', u'emerg', u'team', u'rule', u'local', u'sar', u'case'] [u'england', u'zealand', u'lanka', u'receiv', u'world'] [u'england', u'outplay', u'wallabi'] [u'fanfar', u'greet', u'potter', u'book'] [u'forb', u'put', u'jennif', u'aniston'] [u'french', u'govern', u'ramp', u'tour', u'dope', u'test'] [u'fund', u'boost', u'prevent', u'health', u'care'] [u'furious', u'laport', u'threaten', u'world', u'ax'] [u'gascoign', u'awol', u'give', u'ultimatum', u'chines', u'club'] [u'gazza', u'hand', u'gansu', u'deadlin'] [u'ghostbust', u'spend', u'haunt', u'even', u'melbourn'] [u'goosen', u'trim', u'baird', u'lead', u'york'] [u'govou', u'fire', u'franc', u'semi'] [u'govt', u'await', u'kalgoorli', u'desalin', u'plan', u'studi'] [u'grace', u'bros', u'shut', u'countri', u'door', u'tomorrow'] [u'gregan', u'defend', u'bore', u'england'] [u'gunfir', u'kill', u'melbourn'] [u'hama', u'deni', u'powel', u'enemi', u'peac', u'charg'] [u'hegarti', u'miss', u'maroon', u'train'] [u'henin', u'hardenn', u'meet', u'clijster', u'dutch', u'final'] [u'histor', u'mass', u'grave', u'uncov', u'cook', u'island'] [u'hobart', u'ralli', u'call', u'refuge', u'visa', u'overhaul'] [u'hodgson', u'readi', u'ducati', u'parti', u'misano'] [u'hunt', u'saddam', u'intensifi', u'captiv'] [u'icrc', u'meet', u'detain', u'burmes', u'opposit', u'member'] [u'illeg', u'immigr', u'drown', u'boat', u'capsiz'] [u'indian', u'court', u'summon', u'author', u'soap', u'opera', u'libel'] [u'inform', u'talk', u'eas', u'agricultur', u'block'] [u'injuri', u'kill', u'wound', u'hama', u'assassin'] [u'intern', u'inquiri', u'compromis', u'public'] [u'investig', u'need', u'cancer', u'treatment', u'error'] [u'iraq', u'road', u'domin', u'talk'] [u'islam', u'council', u'welcom', u'mosqu', u'threat', u'convict'] [u'italian', u'offer', u'cash', u'leav', u'volcano', u'danger', u'zone'] [u'japan', u'impos', u'econom', u'sanction', u'north', u'korea'] [u'jennif', u'aniston', u'top', u'celebr', u'power', u'poll'] [u'kidnap', u'observ', u'unharm'] [u'kosciuszko', u'brumbi', u'cull', u'ineffect', u'wilder', u'group'] [u'kuwait', u'honour', u'general', u'frank'] [u'launceston', u'polic', u'hunt', u'attack'] [u'luster', u'buster', u'bounti', u'hunter', u'hold', u'mexico'] [u'charg', u'violent', u'attack', u'schoolgirl'] [u'masai', u'warrior', u'kill', u'lion', u'payback'] [u'massiv', u'manhunt', u'gun', u'hotel'] [u'mecca', u'raid', u'net', u'women', u'link', u'qaeda', u'suspect'] [u'melbourn', u'gunman', u'larg'] [u'gun', u'know', u'underworld', u'figur'] [u'montgomeri', u'eas', u'final'] [u'motorcyclist', u'die', u'road', u'accid'] [u'biotech', u'asthma', u'drug', u'get', u'approv'] [u'minist', u'quiet', u'corrupt', u'cop', u'investig'] [u'polic', u'leak', u'info', u'crimin', u'deputi'] [u'tackl', u'properti', u'crime', u'highest', u'nation'] [u'elton', u'john', u'auction'] [u'civilian', u'kill', u'aceh', u'human', u'right'] [u'ballot', u'save', u'jordan', u'candid', u'vote'] [u'pagan', u'revel', u'celebr', u'solstic', u'stoneheng'] [u'pakistan', u'arrest', u'italian', u'hold', u'nuclear'] [u'rise', u'avert', u'ambo', u'industri', u'action'] [u'polic', u'investig', u'fatal', u'elder', u'death'] [u'polic', u'investig', u'secur', u'firm', u'break'] [u'polic', u'overse', u'broom', u'darwin', u'biki', u'ride'] [u'potter', u'fever', u'bewitch', u'australia'] [u'powel', u'call', u'mazen', u'gaza'] [u'priest', u'criticis', u'clergyman', u'appoint'] [u'princ', u'william', u'get', u'door'] [u'puma', u'seal', u'histor', u'test'] [u'polic', u'close', u'kingaroy', u'heist', u'suspect'] [u'rann', u'lobbi', u'submarin', u'facil'] [u'cross', u'issu', u'urgent', u'group', u'blood'] [u'refuge', u'group', u'want', u'woomera', u'children', u'releas'] [u'rescu', u'crew', u'tanker', u'hit', u'hous'] [u'resid', u'evacu', u'tanker', u'crash'] [u'rice', u'follow', u'powel', u'road', u'tour'] [u'robberi', u'tip', u'alleg', u'tortur', u'motiv'] [u'router', u'crash', u'unplug', u'swedish', u'internet', u'user'] [u'rubin', u'surviv', u'match', u'point', u'beat', u'capriati'] [u'runaway', u'train', u'leav', u'trail', u'destruct'] [u'rusedski', u'reach', u'nottingham', u'final'] [u'fish', u'industri', u'support', u'high', u'court', u'challeng'] [u'lib', u'democrat', u'band', u'live', u'music'] [u'win', u'battl', u'state'] [u'schalken', u'cours', u'dutch', u'doubl'] [u'scout', u'master', u'arrest', u'child', u'offenc', u'charg'] [u'scoutmast', u'charg', u'child', u'offenc'] [u'eagl', u'ahead', u'shark', u'half', u'time'] [u'eagl', u'slam', u'shark', u'eel', u'dragon'] [u'senat', u'criticis', u'tent', u'embassi', u'fenc', u'remov'] [u'murder', u'scandal', u'base', u'lie', u'court', u'tell'] [u'shark', u'trap', u'tuna', u'farm', u'win', u'repriev'] [u'singl', u'vehicl', u'fatal', u'sydney'] [u'state', u'emerg', u'fire', u'rage', u'southern'] [u'state', u'side', u'prepar', u'fremantl', u'clash'] [u'studi', u'link', u'foster', u'care', u'paint', u'sniff'] [u'swift', u'consolid', u'spot'] [u'telstra', u'rank', u'sack', u'technician'] [u'terror', u'alert', u'close', u'embassi', u'kenya'] [u'tesk', u'clear', u'york'] [u'ferri', u'mainland', u'tasmania', u'rout'] [u'ticket', u'sale', u'euro', u'oversubscrib'] [u'timber', u'industri', u'notic', u'water', u'safeti', u'issu'] [u'wrestler', u'gather', u'world', u'championship'] [u'tsvangirai', u'bail', u'treason', u'charg'] [u'underworld', u'figur', u'slay', u'execut', u'style'] [u'consid', u'suspici'] [u'embassi', u'threat', u'wrong', u'kenya'] [u'media', u'ownership', u'tussl', u'mirror', u'aust', u'debat'] [u'promot', u'food', u'answer', u'world', u'hunger'] [u'raid', u'target', u'iraq', u'fedayeen'] [u'victim', u'group', u'blame', u'youth', u'crime', u'rate'] [u'wallabi', u'break'] [u'wallabi', u'improv', u'world', u'jone'] [u'want', u'rich', u'space', u'tourist', u'bolster', u'fund'] [u'watchdog', u'crack', u'money', u'launder'] [u'welfar', u'group', u'rent', u'subsidi'] [u'william', u'beat', u'montgomeri', u'crown'] [u'wimbledon', u'ultim', u'prize', u'clijster'] [u'windi', u'eager', u'chang', u'ail', u'imag'] [u'detain', u'kenya', u'anti', u'terror', u'swoop'] [u'dead', u'explos', u'somali', u'warlord', u'palac'] [u'save', u'capsiz', u'refuge', u'boat'] [u'abort', u'ship', u'deni', u'entri', u'polish', u'port'] [u'adelaid', u'hous', u'claim', u'live'] [u'adelaid', u'host', u'intern', u'biotech', u'confer'] [u'afghan', u'court', u'journalist', u'blasphemi'] [u'afghanistan', u'flood', u'kill'] [u'agassi', u'hewitt', u'wimbledon', u'battl'] [u'armi', u'reservist', u'honour', u'brisban'] [u'aussi', u'pitcher', u'lloyd', u'york'] [u'aussi', u'sprinter', u'choisir', u'take', u'royal', u'ascot'] [u'australia', u'greet', u'winter', u'solstic'] [u'australia', u'lead', u'antarct', u'tourism', u'investig'] [u'flight', u'attend', u'miss', u'sydney'] [u'barrier', u'reef', u'booti', u'go', u'cancer', u'drug'] [u'billi', u'pigeon', u'wing', u'home', u'style'] [u'box', u'champ', u'tyson', u'charg', u'hotel', u'brawl'] [u'branson', u'ditch', u'concord'] [u'brazil', u'hunt', u'head', u'home'] [u'brisban', u'ralli', u'mark', u'world', u'refuge'] [u'bunia', u'countdown', u'weapon'] [u'bushfir', u'victim', u'seek', u'greater', u'rebuild', u'support'] [u'captur', u'aid', u'say', u'saddam', u'son', u'aliv'] [u'casagrand', u'lead', u'mcgee', u'fade', u'switzerland'] [u'chines', u'babi', u'pregnant', u'twin'] [u'copi', u'lewi', u'surviv', u'bloodi', u'battl', u'world'] [u'tri', u'escap', u'burn', u'home'] [u'defeat', u'teach', u'lesson', u'say', u'australia', u'jone'] [u'delic', u'rescu', u'shark', u'trap', u'tuna', u'farm'] [u'deportivo', u'makaay', u'get', u'spanish', u'centuri'] [u'ding', u'dong', u'dell', u'cow'] [u'drug', u'compani', u'investig', u'killer'] [u'injur', u'driver', u'plough', u'german', u'street'] [u'summit', u'protest', u'rampag', u'greek', u'citi'] [u'expert', u'cast', u'doubt', u'iraq', u'weapon', u'trailer', u'claim'] [u'explos', u'damag', u'iraq', u'pipelin'] [u'fear', u'grow', u'miss', u'melbourn', u'girl'] [u'firefight', u'work', u'save', u'observatori', u'bush'] [u'fish', u'net', u'blame', u'mauritania', u'dolphin', u'death'] [u'focus', u'atsic', u'work', u'leadership', u'ridgeway'] [u'bond', u'corp', u'director', u'custodi', u'perth'] [u'governor', u'name'] [u'light', u'plane', u'crash'] [u'fourth', u'person', u'detain', u'backpack', u'attack'] [u'franc', u'arrest', u'exil', u'iranian', u'opposit', u'member'] [u'gaddafi', u'junior', u'sign', u'year', u'deal'] [u'design', u'distinguish', u'gallop'] [u'govt', u'accept', u'recommend', u'esten', u'report'] [u'govt', u'call', u'communiti', u'unemploy', u'solut'] [u'govt', u'hail', u'bond', u'director', u'extradit'] [u'govt', u'incent', u'plan', u'flaw', u'presid'] [u'govt', u'denial', u'effect', u'media', u'law'] [u'green', u'cruis', u'speedi', u'washington', u'win'] [u'hama', u'vow', u'vengeanc', u'leader', u'death'] [u'harvey', u'norman', u'face', u'sunday', u'trade', u'fin'] [u'hind', u'lara', u'boost', u'windi', u'repli'] [u'hong', u'kong', u'hour', u'away', u'sar', u'clearanc'] [u'indigen', u'leader', u'back', u'foster', u'care', u'royal'] [u'indonesian', u'offens', u'kill', u'rebel'] [u'injur', u'henin', u'hop', u'wimbledon'] [u'injuri', u'time', u'penalti', u'put', u'cameroon', u'semi'] [u'inmat', u'consum', u'alcohol', u'work', u'duti'] [u'interlop', u'arrest', u'princ', u'africa', u'bash'] [u'investig', u'continu', u'kill'] [u'iran', u'readi', u'cooper', u'iaea', u'nuclear', u'chief'] [u'iraq', u'begin', u'sell'] [u'irish', u'enthusiast', u'say', u'swap', u'warbeat', u'danc'] [u'israel', u'kill', u'hama', u'offici', u'push'] [u'kenyan', u'polic', u'probe', u'embassi', u'threat', u'dozen'] [u'intellig', u'bodi', u'iraq', u'inquiri'] [u'kjeldsen', u'build', u'gleneagl', u'lead'] [u'labor', u'call', u'immedi', u'releas', u'child'] [u'laila', u'talk', u'tough', u'extend', u'unbeaten'] [u'larg', u'miss', u'post', u'offic', u'break'] [u'latham', u'promis', u'independ', u'speaker', u'labor', u'win'] [u'societi', u'question', u'bail', u'chang'] [u'lewi', u'franci', u'raquil', u'euro', u'speed'] [u'lewi', u'surviv', u'bloodi', u'battl', u'world', u'titl'] [u'list', u'england', u'defeat', u'australia'] [u'media', u'overhaul', u'good', u'small', u'proprietor', u'alston'] [u'medic', u'indemn', u'subsidi', u'begin', u'tomorrow'] [u'melbourn', u'girl', u'disappear', u'prank'] [u'militia', u'group', u'give', u'hour', u'leav', u'bunia'] [u'napier', u'concern', u'dentist'] [u'bulb', u'restor', u'eiffel', u'tower', u'sparkl'] [u'home', u'stamp', u'duti', u'reign', u'latham'] [u'govt', u'scrap', u'rainwat', u'tank', u'subsidi'] [u'govt', u'target', u'smuggler'] [u'polic', u'appeal', u'help', u'track', u'miss'] [u'nuclear', u'watchdog', u'head', u'welcom', u'iranian', u'cooper'] [u'ogara', u'inspir', u'ireland', u'test', u'samoan'] [u'explos', u'death', u'toll', u'rise', u'signific'] [u'outback', u'search', u'miss', u'teenag', u'hiker'] [u'palestinian', u'accus', u'israel', u'assassin'] [u'palestinian', u'need', u'chang', u'road', u'annan'] [u'parti', u'negoti', u'jabiluka', u'water', u'manag', u'option'] [u'petrol', u'compani', u'tri', u'seal', u'pipelin'] [u'petrol', u'looter', u'burn', u'aliv', u'pipelin', u'explos'] [u'philippin', u'bishop', u'reliev', u'harass'] [u'phoenix', u'down', u'thunderbird', u'firebird'] [u'announc'] [u'expect'] [u'polic', u'appeal', u'help', u'suspici', u'cowra', u'death'] [u'polic', u'confirm', u'ident', u'murder', u'melbourn'] [u'polic', u'confirm', u'murder', u'melbourn', u'man', u'ident'] [u'polic', u'identifi', u'plane', u'crash', u'victim'] [u'polic', u'investig', u'child', u'alleg'] [u'polish', u'protest', u'block', u'dutch', u'abort', u'ship'] [u'pope', u'urg', u'reconcili', u'bosnia', u'visit'] [u'port', u'arthur', u'killer', u'bryant', u'treat', u'hospit'] [u'post', u'saddam', u'media', u'enjoy', u'limit', u'freedom'] [u'pottermania', u'break', u'record', u'worldwid'] [u'preced', u'prevent', u'ruddock', u'front', u'visa', u'inquiri'] [u'protestor', u'govt', u'free', u'children'] [u'defenc', u'reservist', u'honour', u'brisban', u'march'] [u'rain', u'forc', u'suspens', u'play'] [u'rebellin', u'lead', u'tour', u'newcom', u'gerolstein'] [u'refuge', u'ralli', u'hail', u'famili', u'court', u'rule'] [u'repair', u'delay', u'iraq', u'export'] [u'resid', u'push', u'bypass', u'safeti', u'audit'] [u'roger', u'fourth', u'rout'] [u'rubin', u'set', u'sight', u'wimbledon', u'titl'] [u'ruddock', u'await', u'brief', u'famili', u'court', u'refuge', u'rule'] [u'rudd', u'pursu', u'govt', u'bali', u'warn', u'omiss'] [u'rusedski', u'bounc', u'injuri', u'titl'] [u'saddam', u'fedayeen', u'plan', u'comeback', u'newspap', u'report'] [u'opposit', u'investig', u'alleg', u'art', u'fund'] [u'seneg', u'ferri', u'disast', u'victim', u'bigger'] [u'skipper', u'warn', u'stay', u'away', u'migrat', u'whale'] [u'korea', u'endors', u'food', u'budget', u'north'] [u'special', u'olymp', u'launch', u'dublin'] [u'specul', u'underworld', u'murder', u'unhelp', u'polic'] [u'kilda', u'girl', u'miss', u'rout', u'class'] [u'summer', u'deadlin', u'superfast', u'ferri'] [u'tesk', u'stretch', u'rochest', u'lead'] [u'thorp', u'edg', u'hackett', u'sydney'] [u'thousand', u'ralli', u'mandatori', u'detent'] [u'thousand', u'ralli', u'mark', u'world', u'refuge'] [u'charg', u'kingaroy', u'heist', u'breakthrough'] [u'charg', u'attempt', u'murder'] [u'trap', u'shark', u'aliv', u'happi', u'say', u'fisheri'] [u'tribal', u'theme', u'princ', u'william', u'birthday', u'bash'] [u'kill', u'explos', u'somali', u'warlord', u'compound'] [u'tyson', u'arrest', u'york', u'hotel', u'brawl'] [u'unauthent', u'video', u'warn', u'qaeda', u'attack'] [u'militari', u'observ', u'releas', u'congo'] [u'troop', u'raid', u'baghdad', u'theatr', u'seiz'] [u'govt', u'continu', u'fare', u'evas', u'crackdown'] [u'villag', u'flee', u'rampag', u'eleph', u'kill'] [u'wallabi', u'improv', u'world', u'jone'] [u'warrior', u'tiger', u'dog', u'point'] [u'play', u'histor', u'middl', u'east', u'peac', u'king'] [u'wenger', u'eas', u'pain', u'arsenal', u'departur', u'seaman'] [u'quiz', u'cost', u'blowout', u'project'] [u'world', u'superbik', u'leader', u'hodgson', u'pole'] [u'young', u'coupl', u'road', u'crash', u'north'] [u'youth', u'leav', u'elder', u'woman', u'strand', u'home'] [u'kill', u'train', u'derail', u'india'] [u'boost', u'health', u'clinic'] [u'abar', u'forecast', u'drop', u'commod', u'export'] [u'abbott', u'turn', u'claim', u'labor'] [u'absenc', u'blow', u'men', u'titl', u'race', u'wide', u'open'] [u'actew', u'plan', u'water', u'treatment', u'plant'] [u'adelaid', u'compani', u'win', u'black', u'hawk', u'refit', u'project'] [u'allianc', u'cost', u'govt'] [u'call', u'broadband', u'competit', u'inquiri'] [u'call', u'doctor', u'blood'] [u'cut', u'job'] [u'analysi', u'warn', u'farm', u'slump'] [u'asean', u'tell', u'north', u'korea', u'nuclear', u'ambit'] [u'aussi', u'fresh', u'look', u'dead', u'nazi', u'plane'] [u'australian', u'round', u'action'] [u'bali', u'survivor', u'confront', u'alleg', u'mastermind'] [u'bangladeshi', u'team', u'arriv', u'brisban'] [u'barca', u'finish', u'season', u'high', u'claim', u'uefa'] [u'barcaldin', u'pin', u'hop', u'leagu', u'match'] [u'beat', u'boca', u'victim', u'fixtur', u'congest'] [u'belarus', u'writer', u'vasil', u'bykov', u'die'] [u'best', u'hit', u'beckham', u'transfer', u'report'] [u'blue', u'strive', u'perfect'] [u'bombala', u'council', u'urg', u'rethink', u'merger'] [u'boost', u'north', u'coast', u'agenc'] [u'bowl', u'club', u'face', u'financi', u'woe'] [u'busi', u'look', u'relief', u'budget'] [u'mackay', u'consid', u'research'] [u'capriati', u'count', u'fight', u'spirit'] [u'compon', u'factori', u'worker', u'face', u'lockout'] [u'childer', u'mark', u'year'] [u'chines', u'trade', u'opportun', u'spotlight'] [u'offici', u'discuss', u'leadership', u'issu'] [u'colombia', u'outsmart', u'japan', u'reach', u'conf', u'semi'] [u'communiti', u'group', u'attempt', u'address', u'long', u'term'] [u'compli', u'dole'] [u'expert', u'discuss', u'spam', u'concern'] [u'confid', u'serena', u'readi', u'buri', u'pari', u'nightmar'] [u'council', u'demand', u'greater', u'consult', u'baxter'] [u'council', u'hop', u'resolv', u'age', u'care', u'plan', u'issu'] [u'council', u'prepar', u'deliv', u'budget'] [u'council', u'ask', u'plastic', u'shop', u'bag'] [u'council', u'count', u'cost', u'sand', u'drift'] [u'cowboy', u'protest', u'convers', u'controversi'] [u'crash', u'victim', u'rescu', u'volunt'] [u'danger', u'know', u'unknown', u'threaten', u'hewitt'] [u'danih', u'pledg', u'demon', u'turnaround'] [u'debat', u'erupt', u'council', u'boundari'] [u'diver', u'urg', u'help', u'save', u'grey', u'nurs', u'shark'] [u'drink', u'driver', u'record', u'high', u'level', u'studi'] [u'drought', u'lower', u'grape', u'harvest'] [u'drug', u'giant', u'inject', u'cash', u'biotech', u'sector'] [u'chinchilla'] [u'edinburgh', u'unit', u'starter', u'say', u'hib', u'boss'] [u'await', u'tuna', u'farm', u'applic'] [u'expert', u'highlight', u'river', u'murray', u'water', u'flow', u'concern'] [u'fear', u'austoft', u'closur', u'cost', u'job'] [u'fear', u'ferri', u'choke', u'tasmania'] [u'fifth', u'charg', u'backpack', u'attack'] [u'crow', u'expect', u'carlton', u'clash'] [u'injur', u'wagga', u'road', u'crash'] [u'fix', u'bendora', u'water', u'problem', u'cost'] [u'parol', u'offic', u'reject', u'comment'] [u'franc', u'stroll', u'past', u'white'] [u'fraser', u'visitor', u'warn', u'dingo', u'danger'] [u'garcia', u'wood', u'threaten', u'rain', u'mar', u'event'] [u'explos', u'victim', u'payout'] [u'support', u'unwelcom', u'anglican', u'archbishop'] [u'global', u'group', u'shrink', u'draft'] [u'oppon', u'street'] [u'govt', u'hop', u'restrict', u'reduc', u'bushfir'] [u'govt', u'offer', u'packag', u'reviv', u'deaf', u'centr'] [u'greek', u'forc', u'seiz', u'explos', u'cach'] [u'green', u'pull', u'white', u'win', u'doubl'] [u'group', u'seek', u'stop', u'develop'] [u'hama', u'kill', u'muddi', u'peac', u'talk'] [u'har', u'race', u'club', u'plan', u'surviv'] [u'harradin', u'seek', u'media', u'merger'] [u'harri', u'potter', u'latest', u'fastest', u'seller', u'smith'] [u'harvey', u'norman', u'face', u'sunday', u'trade', u'charg'] [u'heal', u'valuabl', u'boomer', u'goorjian'] [u'help', u'urg', u'dairi', u'farmer', u'tough'] [u'hera', u'lose', u'pecharroman', u'win', u'tour'] [u'hill', u'face', u'injuri'] [u'home', u'town', u'prais', u'wait'] [u'hong', u'kong', u'win', u'sar', u'battl'] [u'hors', u'trainer', u'ban', u'cannabi', u'offenc'] [u'hundr', u'gather', u'support', u'falun', u'dafa'] [u'indian', u'make', u'histor', u'trip', u'china'] [u'indian', u'visit', u'china', u'thaw', u'relat'] [u'injur', u'green', u'withdraw', u'final'] [u'injuri', u'toll', u'davenport'] [u'inquiri', u'call', u'rigor', u'vote', u'check'] [u'iron', u'strong', u'aussi', u'surfer'] [u'jobless', u'rate', u'fall', u'eden', u'monaro'] [u'jordan', u'telecom', u'send', u'internet', u'iraq'] [u'judg', u'refus', u'oat', u'bail'] [u'kalgoorli', u'host', u'road', u'confer'] [u'kay', u'win', u'playoff', u'claim', u'titl'] [u'critic', u'earli', u'return', u'potter', u'winner'] [u'knight', u'prop', u'accus', u'nightclub', u'incid'] [u'landslid', u'derail', u'train', u'india'] [u'ditch', u'save', u'tent', u'embassi', u'build'] [u'launch', u'second', u'mar', u'probe', u'postpon', u'nasa'] [u'lewi', u'ponder', u'option', u'fight', u'fan', u'relish', u'fresh'] [u'lifelin', u'countri', u'race', u'club'] [u'lion', u'crossroad', u'say', u'matthew'] [u'local', u'issu', u'rais', u'mount', u'morgan'] [u'lomu', u'set', u'comeback', u'date'] [u'major', u'jump', u'rank'] [u'deni', u'bail', u'backpack', u'tortur', u'charg'] [u'die', u'collis', u'near', u'beaconsfield'] [u'hospit', u'roll', u'cliff'] [u'face', u'court', u'robberi', u'charg'] [u'mayor', u'air', u'water', u'develop', u'hop'] [u'menzi', u'add', u'blue', u'origin', u'squad'] [u'midwiv', u'plan', u'involv', u'wide', u'consult'] [u'militari', u'asia'] [u'industri', u'consid', u'plane', u'plan'] [u'minist', u'blame', u'cwealth', u'school', u'fund'] [u'mix', u'respons', u'alcohol', u'plan'] [u'monday', u'order', u'play', u'wimbledon'] [u'express', u'histor', u'ental'] [u'morn', u'pill', u'easier', u'access'] [u'urg', u'campaign', u'jetti'] [u'campaign', u'nathan'] [u'station', u'airwav'] [u'away', u'militari', u'pension'] [u'vocal', u'polit'] [u'parliament', u'debat', u'nation', u'park'] [u'legisl', u'ownership', u'seab'] [u'oat', u'face', u'embezzl', u'charg'] [u'timber', u'run'] [u'dead', u'injur', u'french', u'plane', u'crash'] [u'opal', u'kiwi'] [u'origin', u'humour'] [u'panel', u'beat', u'blaze', u'consid', u'suspici'] [u'petit', u'want', u'youth', u'crime', u'address'] [u'piquet', u'dream', u'follow', u'father'] [u'player', u'threaten', u'grand', u'slam', u'boycott'] [u'player', u'threaten', u'grand', u'slam', u'boycott'] [u'allow', u'spi', u'face', u'inquiri'] [u'polic', u'interview', u'fifth', u'backpack', u'attack'] [u'policeman', u'face', u'fresh', u'drug', u'traffic', u'charg'] [u'polic', u'plane', u'crash', u'victim'] [u'polic', u'probe', u'coast', u'bank', u'robberi'] [u'polic', u'probe', u'fatal', u'road', u'crash'] [u'polic', u'probe', u'hous', u'blaze'] [u'polic', u'quarantin', u'sar', u'scare'] [u'polic', u'seek', u'detail', u'bodi', u'cowra'] [u'polic', u'seek', u'help', u'miss'] [u'polic', u'seek', u'desert', u'bolter'] [u'polic', u'studi', u'video', u'moran', u'killer', u'clue'] [u'polit', u'game', u'reform', u'push'] [u'poll', u'result', u'show', u'jamaican', u'toss'] [u'port', u'need', u'cope', u'ferri'] [u'powel', u'propos', u'mideast', u'free', u'trade', u'link'] [u'powerlin', u'chang', u'reduc', u'bushfir', u'risk'] [u'probe', u'urg', u'asbesto', u'lade', u'machineri'] [u'promin', u'citizen', u'offer', u'cross', u'support'] [u'prostat', u'cancer', u'treatment', u'show', u'promis'] [u'coalit', u'odd', u'feder', u'govt'] [u'offer', u'research', u'dividend', u'taxpay'] [u'rat', u'slug', u'nambucca'] [u'relic', u'reveal', u'ancient', u'tibetan', u'histori'] [u'resourc', u'market', u'modest', u'boost'] [u'revel', u'urg', u'care', u'firework'] [u'reward', u'offer', u'help', u'solv', u'doubl', u'slay'] [u'ricegrow', u'face', u'water', u'alloc'] [u'rijkaard', u'offer', u'barca', u'coach'] [u'rivkin', u'surgeri', u'postpon'] [u'road', u'part', u'reopen', u'semi', u'crash'] [u'roddick', u'readi', u'roll', u'wimbledon'] [u'roger', u'share', u'rout', u'fifth', u'place'] [u'romario', u'hit', u'trick', u'guarani', u'finish'] [u'ronaldinho', u'real', u'bind', u'say'] [u'ronaldo', u'show', u'world', u'best'] [u'ruddock', u'ask', u'revers', u'deport', u'decis'] [u'russian', u'independ', u'channel', u'pull'] [u'govt', u'challeng', u'art', u'fund', u'critic'] [u'sapphir', u'french', u'tour'] [u'sar', u'kill', u'canada'] [u'schalken', u'confid', u'dutch', u'triumph'] [u'scientist', u'discov', u'gene', u'halt', u'ovarian'] [u'scooter', u'safeti', u'worri', u'spark', u'meet'] [u'seafood', u'industri', u'discuss', u'reef', u'rezon', u'plan'] [u'second', u'face', u'court', u'tortur', u'charg'] [u'shark', u'settl', u'farm', u'life'] [u'shire', u'look'] [u'shoaib', u'pass', u'attitud', u'test'] [u'shut', u'perron', u'tell', u'dissent'] [u'sixer', u'pull', u'philippin', u'tournament'] [u'slim', u'okay', u'manag'] [u'snow', u'northern', u'tableland'] [u'solomon', u'seek', u'militari', u'muscl', u'oust', u'warlord'] [u'spain', u'xaus', u'superbik', u'doubl'] [u'speed', u'camera', u'steal', u'perth', u'suburb'] [u'state', u'rail', u'warn', u'waterfal', u'disast'] [u'stem', u'cell', u'centr', u'strike', u'research', u'deal'] [u'struggl', u'green', u'withdraw', u'final'] [u'studi', u'pharmaceut', u'industri', u'launch'] [u'studi', u'focus', u'western', u'road', u'kill'] [u'sydney', u'develop', u'plan', u'unveil'] [u'taiwan', u'report', u'sar', u'infect', u'death'] [u'teacher', u'consid', u'meekatharra', u'move'] [u'tesk', u'win', u'second', u'titl'] [u'court', u'backpack', u'tortur'] [u'tidi', u'town', u'fund', u'incent', u'offer', u'govt'] [u'earli', u'judg', u'break', u'demetriou'] [u'tougher', u'water', u'restrict', u'loom', u'central', u'victoria'] [u'trio', u'charg', u'armour', u'robberi'] [u'trio', u'face', u'judiciari'] [u'tyson', u'adversari', u'plead', u'innoc'] [u'union', u'target', u'gladston', u'worker', u'right'] [u'uranium', u'risk', u'troop', u'hill'] [u'offici', u'talk', u'strike', u'saddam'] [u'vfba', u'rais', u'emerg', u'servic', u'concern'] [u'wait', u'list', u'shorter'] [u'govt', u'play', u'hous', u'blame', u'game'] [u'polic', u'tell', u'staff', u'shortfal'] [u'washington', u'overcom', u'tragedi', u'nation'] [u'washout', u'halt', u'windi', u'repli'] [u'welfar', u'group', u'offer', u'lifelin', u'central', u'australia'] [u'westralia', u'inquest', u'resum', u'perth'] [u'wharf', u'accid', u'give', u'onlook', u'scare'] [u'whatmor', u'upbeat', u'bangladesh', u'team', u'arriv'] [u'white', u'winter', u'wonderland', u'batlow'] [u'drop', u'hong', u'kong', u'sar', u'affect', u'list'] [u'wine', u'glut', u'alert', u'bank', u'grape', u'grower', u'debt'] [u'wit', u'tell', u'bali', u'victim', u'agoni'] [u'work', u'begin', u'wickham', u'point', u'plant'] [u'work', u'power', u'plant', u'finish'] [u'world', u'tallest', u'residenti', u'build', u'take', u'shape'] [u'young', u'identifi', u'suicid', u'risk'] [u'youth', u'blase', u'parti', u'drug', u'danger'] [u'monitor', u'babi', u'wombat', u'progress'] [u'manhol', u'fall'] [u'abigroup', u'fin', u'fatal', u'explos'] [u'accus', u'thief', u'allow', u'return', u'home', u'africa'] [u'health', u'minist', u'weigh', u'drug', u'trial'] [u'tabl', u'indemn', u'doctor'] [u'actu', u'launch', u'test', u'case', u'busi', u'cautious'] [u'adelaid', u'cancel', u'philippin', u'tour'] [u'give', u'final', u'schedul', u'fight'] [u'age', u'care', u'complex', u'setback'] [u'airlin', u'industri', u'reliev', u'sar', u'advisori'] [u'ord', u'follow', u'wall', u'street', u'lower'] [u'hit', u'donat', u'claim'] [u'look', u'increas', u'migrant', u'region', u'area'] [u'amalgam', u'legisl', u'debat', u'parliament'] [u'say', u'write', u'spell', u'project', u'demis'] [u'share', u'increas', u'trade', u'resum'] [u'share', u'strip'] [u'angler', u'hop', u'chang', u'draft', u'reef', u'rezon'] [u'angri', u'resid', u'disrupt', u'council', u'meet'] [u'asio', u'stall'] [u'asio', u'steal', u'right', u'ogorman'] [u'aust', u'pledg', u'support', u'bougainvill'] [u'bacon', u'deni', u'report', u'adopt', u'stanc'] [u'ballarat', u'teenag', u'turn', u'unharm'] [u'barca', u'releas', u'boer', u'hold', u'cocu'] [u'beij', u'halt', u'sarss', u'spread'] [u'biosecur', u'centr', u'establish', u'brisban'] [u'blix', u'question', u'action'] [u'blue', u'wari', u'half', u'lockyer'] [u'punch', u'tie', u'court', u'tell'] [u'breez', u'clijster', u'lleyton', u'loss', u'cloud'] [u'budget', u'club', u'reel'] [u'buoyant', u'argentina', u'arriv', u'south', u'africa'] [u'bush', u'urg', u'congress', u'pass', u'bioshield', u'fund'] [u'busi', u'slam', u'nsws', u'payrol', u'drive'] [u'cambodia', u'king', u'rule', u'vote', u'birth'] [u'cameroon', u'colombian', u'clash'] [u'cash', u'steal', u'bordertown', u'motel'] [u'chang', u'afoot', u'commerci', u'crab'] [u'charg', u'lay', u'probe'] [u'church', u'split', u'moot', u'issu'] [u'issu', u'report', u'case'] [u'committe', u'investig', u'joint', u'custodi'] [u'communiti', u'work', u'stop', u'petrol', u'sniff'] [u'concern', u'gambier', u'orthopaed', u'servic'] [u'confid', u'roddick', u'prim', u'rusedski', u'test'] [u'controversi', u'hospit', u'chief', u'resign'] [u'council', u'budget', u'hand'] [u'council', u'challeng', u'land', u'preserv'] [u'council', u'consid', u'appeal', u'neglig', u'case'] [u'council', u'ignor', u'wagga', u'park', u'object'] [u'council', u'look', u'salin', u'solut'] [u'councillor', u'suggest', u'citi', u'drink', u'zone'] [u'council', u'put', u'stop', u'basin', u'pollut'] [u'council', u'seek', u'land', u'releas'] [u'council', u'consid', u'motion', u'staff'] [u'council', u'finalis', u'boundari', u'plan'] [u'coupl', u'scottish', u'open', u'debut'] [u'coupl', u'failur', u'diagnos'] [u'court', u'give', u'green', u'light', u'fast', u'food', u'develop'] [u'cross', u'industri', u'clean'] [u'davenport', u'struggl', u'victori', u'aussi', u'stosur'] [u'debat', u'rag', u'youth', u'refug', u'locat'] [u'delay', u'angl', u'rule'] [u'doctor', u'urg', u'prescrib', u'exercis'] [u'egon', u'schiel', u'paint', u'sell', u'record', u'million'] [u'environment', u'bodi', u'probe', u'machineri', u'asbesto'] [u'deni', u'worsen', u'africa', u'famin'] [u'expel', u'student', u'turn', u'crime', u'report'] [u'expert', u'rout', u'help', u'trap', u'shark'] [u'face', u'snowtown', u'suspect', u'unveil'] [u'farmer', u'enjoy', u'mix', u'rainfal', u'fortun'] [u'fear', u'skin', u'cancer', u'warn', u'get'] [u'feder', u'overcom', u'round', u'jitter'] [u'firefight', u'want', u'inquiri', u'train', u'accid'] [u'flimsi', u'evid', u'justifi', u'blix'] [u'charg', u'mombasa', u'bomb'] [u'fund', u'help', u'endang', u'speci'] [u'garcia', u'confid', u'harrison', u'tournament'] [u'bishop', u'divid', u'anglican', u'church'] [u'govt', u'clear', u'power', u'station', u'bid'] [u'govt', u'deni', u'troop', u'dock'] [u'govt', u'fight', u'child', u'detent', u'rule'] [u'govt', u'order', u'inquiri', u'custodi', u'rule'] [u'govt', u'announc', u'telstra', u'sell', u'approv'] [u'govt', u'turn', u'heat', u'bolkus'] [u'green', u'eye', u'monster', u'flex', u'hulk', u'muscl'] [u'griffith', u'look', u'youth', u'leader'] [u'group', u'wont', u'mall', u'fight'] [u'handgun', u'start', u'week'] [u'hantuchova', u'sweep', u'second', u'round'] [u'harrison', u'move', u'waratah'] [u'harvey'] [u'hear', u'charg', u'taxi', u'driver', u'bash'] [u'hewitt', u'famili', u'hurt', u'game'] [u'hewitt', u'famili', u'hurt', u'game', u'wimbledon'] [u'hop', u'hospit', u'overcom', u'gastro', u'woe', u'soon'] [u'hospit', u'school', u'road', u'receiv', u'budget', u'bump'] [u'hospit', u'school', u'road', u'reciev', u'budget', u'bump'] [u'hous', u'plan', u'stall', u'govt', u'say', u'council'] [u'indian', u'coupl', u'world', u'record', u'wed'] [u'industri', u'concern', u'impact', u'wine'] [u'indi', u'futur', u'secur', u'mackenroth'] [u'inquest', u'asthma', u'death', u'begin', u'today'] [u'iraqi', u'deleg', u'offer', u'focal', u'point'] [u'iraqi', u'nation', u'front', u'court', u'peopl', u'smuggl'] [u'isra', u'armi', u'swoop', u'hama'] [u'isra', u'raid', u'sabotag', u'ceas'] [u'italian', u'polic', u'arrest', u'alleg', u'qaeda', u'backer'] [u'jackson', u'disappoint', u'final', u'decis'] [u'threat', u'despit', u'arrest', u'offici'] [u'jolli', u'roger', u'brink', u'victori'] [u'junk', u'email', u'get', u'smarter'] [u'karratha', u'sport', u'administr', u'centr'] [u'kay', u'close', u'world'] [u'kazakh', u'yakovlev', u'take', u'swiss', u'seventh', u'stage'] [u'king', u'island', u'concern', u'impact', u'ferri'] [u'kirtley', u'england', u'squad', u'johnson', u'return'] [u'labor', u'hint', u'shake', u'educ', u'fund'] [u'lawyer', u'strike', u'role', u'mortgag', u'lend'] [u'leighton', u'amcor', u'sign', u'contract'] [u'letter', u'surfac', u'miss', u'teen', u'case'] [u'link', u'alzheim', u'drug', u'rule'] [u'lion', u'disappoint', u'final', u'decis'] [u'lockyer', u'clear', u'maroon'] [u'lowest', u'wool', u'clip', u'expect', u'year'] [u'malaysia', u'nepal', u'dubai', u'benefit', u'expertis'] [u'mancebo', u'flecha', u'spearhead', u'ibanesto', u'tour'] [u'charg'] [u'jail', u'polic', u'assault'] [u'mar', u'express', u'lose', u'communic', u'beagl'] [u'mayor', u'talk', u'townsvill', u'budget'] [u'mcewen', u'clarifi', u'murray', u'levi', u'claim'] [u'medic', u'indemn', u'packag', u'doesnt'] [u'melbourn', u'build', u'evacu', u'scare'] [u'melbourn', u'firm', u'win', u'fighter', u'contract'] [u'migrant', u'plan', u'aim', u'boost', u'region', u'growth'] [u'mildura', u'trial', u'weather', u'servic'] [u'industri', u'downplay', u'export', u'earn', u'predict'] [u'studi', u'highlight', u'merger', u'altern'] [u'ministeri', u'forum', u'rais', u'road', u'feral', u'anim'] [u'western', u'silo', u'close'] [u'mother', u'tell', u'battl', u'save', u'asthmat'] [u'mount', u'morgan', u'forum', u'hear', u'local', u'concern'] [u'kentish', u'council', u'know', u'soon'] [u'mclaren', u'race', u'silverston'] [u'newsradio', u'focus', u'real', u'issu'] [u'check', u'place', u'westralia', u'inquest', u'tell'] [u'alcohol', u'restrict', u'plan'] [u'uranium', u'risk', u'aust', u'troop'] [u'budget', u'deliv', u'promis', u'egan'] [u'stager', u'coetzer', u'stumbl', u'second', u'round'] [u'claim', u'uni', u'increas', u'fee', u'follow', u'govt'] [u'oppn', u'attack', u'greedi', u'stamp', u'duti', u'grab'] [u'pacif', u'polic', u'forc', u'send', u'solomon'] [u'pakistan', u'leav', u'england', u'question', u'answer'] [u'pantani', u'upbeat', u'futur', u'despit', u'admiss'] [u'parent', u'daughter', u'meningococc'] [u'pension', u'rise'] [u'perilya', u'commit', u'break', u'hill', u'explor'] [u'pilot', u'stand', u'near', u'highway', u'land'] [u'parliament', u'consid', u'aid', u'crisi', u'law'] [u'polic', u'underag', u'drink', u'concern'] [u'polic', u'appeal', u'help', u'yallourn', u'murder'] [u'polic', u'review', u'search', u'miss', u'father'] [u'polit', u'erupt', u'drought'] [u'port', u'prepar', u'tough', u'match', u'sydney'] [u'portsmouth', u'teddi'] [u'public', u'urg', u'consid', u'legal', u'drug', u'danger'] [u'question', u'rais', u'sandon', u'approv'] [u'radiat', u'sick', u'report', u'iraq'] [u'rain', u'lucia', u'test', u'head', u'draw'] [u'rain', u'prove', u'patchi', u'landhold'] [u'ranger', u'defend', u'amoruso', u'blackburn'] [u'real', u'dump', u'coach', u'bosqu'] [u'region', u'bulk', u'bill', u'freefal', u'figur'] [u'rijkaard', u'give', u'make', u'barcelona', u'great'] [u'roddick', u'instal', u'favourit', u'men', u'titl'] [u'rusedski', u'battl', u'server'] [u'saddam', u'aid', u'flee', u'belarus', u'report'] [u'safeti', u'tip', u'omit', u'report', u'waterfal'] [u'schumach', u'expect', u'titl', u'battl'] [u'scud', u'lead', u'aussi', u'charg'] [u'seafood', u'council', u'wont', u'help', u'fund', u'fisher', u'legal'] [u'self', u'immol', u'burn', u'kill', u'iranian', u'protest'] [u'senat', u'begin', u'media', u'ownership', u'law', u'debat'] [u'senat', u'reject', u'super'] [u'senat', u'walk', u'fine', u'line', u'media'] [u'shark', u'end', u'mous', u'game', u'tuna'] [u'small', u'busi', u'tell', u'look', u'past', u'bank'] [u'smoke', u'stop', u'train', u'head', u'newcastl'] [u'solomon', u'sure', u'intervent', u'forc'] [u'speed', u'limit', u'mistak', u'spark', u'safeti', u'concern'] [u'srichaphan', u'reveng', u'hrbati'] [u'state', u'govern', u'warn', u'jail', u'year', u'old'] [u'student', u'draw', u'energi', u'plan'] [u'sudan', u'greec', u'clash', u'explos', u'haul'] [u'sugar', u'industri', u'push', u'case', u'free', u'trade'] [u'swansea', u'get', u'multi', u'purpos', u'centr'] [u'swan', u'welcom', u'increas', u'crean', u'newspol', u'rat'] [u'taiwan', u'await', u'sar', u'warn'] [u'teacher', u'await', u'budget', u'outcom'] [u'team', u'seek', u'medal', u'pari'] [u'telstra', u'worker', u'short', u'chang', u'union'] [u'tetanus', u'expert', u'hop', u'erad', u'diseas'] [u'cruis', u'ship', u'sail', u'australia', u'sea'] [u'thirsti', u'forest', u'like', u'affect', u'murray', u'darl'] [u'thousand', u'evacu', u'melbourn', u'high', u'rise'] [u'tourist', u'bodi', u'consid', u'region', u'zone', u'submiss'] [u'tourist', u'jail', u'fabric', u'thai', u'gang', u'rape'] [u'trade', u'hour', u'agenda'] [u'trio', u'court', u'arm', u'robberi'] [u'tuesday', u'order', u'play', u'wimbledon'] [u'turkey', u'dump', u'brazil', u'conf'] [u'turnaround', u'snowi', u'tourism', u'book'] [u'tweed', u'undergo', u'weed', u'spray'] [u'attack', u'crossbow', u'scissor', u'report'] [u'arrest', u'gawler', u'west', u'carjack'] [u'face', u'court', u'backpack', u'tortur'] [u'underworld', u'urg', u'break', u'silenc', u'execut'] [u'union', u'happi', u'longford', u'payout'] [u'union', u'step', u'campaign', u'chang', u'compo'] [u'court', u'uphold', u'internet', u'porn', u'filter'] [u'firefight', u'continu', u'battl', u'arizona', u'blaze'] [u'forc', u'clash', u'syrian', u'border', u'guard'] [u'forc', u'iraqi', u'kill'] [u'join', u'combat', u'global', u'warm'] [u'journalist', u'surrend', u'indonesian', u'militari'] [u'play', u'hunger', u'card', u'europ', u'debat'] [u'probe', u'iraq', u'syria', u'border', u'attack'] [u'troop', u'injur', u'ident'] [u'bushfir', u'assist', u'mail'] [u'warn', u'persuad', u'turban', u'surgeri'] [u'welfar', u'agenc', u'pick', u'bulk', u'bill'] [u'wellington', u'back', u'lomu', u'return', u'report'] [u'westralia', u'disast', u'million'] [u'white', u'show', u'world', u'potenti', u'problem'] [u'wimbledon', u'result'] [u'wine', u'group', u'question', u'bank', u'advic'] [u'wollongong', u'bishop', u'join', u'protest', u'appoint'] [u'woman', u'fin', u'servant', u'theft'] [u'women', u'jail', u'work', u'theft'] [u'world', u'count', u'maso'] [u'wrong', u'accus', u'leav', u'expos', u'ogorman'] [u'yass', u'need', u'water', u'sourc', u'say', u'council'] [u'youngster', u'test', u'sorenstam', u'win'] [u'road', u'fund', u'opposit'] [u'rat', u'slug', u'armidal', u'dumaresq'] [u'wit', u'evid', u'bould', u'inquest'] [u'kidnap', u'ugandan', u'schoolgirl'] [u'recognis', u'archbishop', u'media', u'award'] [u'aborigin', u'activist', u'appear', u'court', u'charg'] [u'govern', u'pass', u'budget'] [u'union', u'urg', u'reject', u'medicar', u'overhaul'] [u'ponder', u'draft', u'chang'] [u'drink', u'websit', u'launch', u'wine', u'inform'] [u'airport', u'search', u'power', u'extend'] [u'black', u'stick', u'sparkl', u'back', u'franc'] [u'american', u'iran', u'poll'] [u'amphetamin', u'rife', u'coast', u'drug', u'council'] [u'approv', u'karratha', u'hous', u'cost', u'studi'] [u'highlight', u'industri', u'histori'] [u'work', u'fetch', u'million', u'auction'] [u'asic', u'examin', u'disclosur'] [u'audit', u'give', u'thumb'] [u'aussi', u'baccanello', u'face', u'karlov'] [u'aust', u'lead', u'solomon', u'forc'] [u'barb', u'throw', u'polit', u'donat'] [u'need', u'luck', u'podium', u'button'] [u'basturk', u'predict', u'welcom', u'hell', u'england'] [u'bennett', u'predict', u'origin', u'dampen'] [u'launch', u'free', u'famili', u'baxter'] [u'hit', u'teenag', u'futur', u'women'] [u'blue', u'command', u'origin'] [u'blue', u'seal', u'command', u'origin'] [u'blue', u'seal', u'origin', u'seri', u'command'] [u'boater', u'warn', u'fine', u'increas'] [u'bould', u'inquest', u'hear', u'multipl', u'phone', u'fault'] [u'break', u'enter', u'rise', u'gunnedah'] [u'bremer', u'blame', u'baathist', u'iraq', u'sabotag'] [u'bridg', u'restor', u'wont', u'white', u'ant'] [u'britain', u'say', u'smack', u'parent'] [u'brit', u'iraq', u'attack', u'unprovok'] [u'budget', u'deliv', u'kiama', u'bypass'] [u'budget', u'deliv', u'increas', u'health', u'spend'] [u'budget', u'deliv', u'mix'] [u'budget', u'fail', u'deliv', u'north', u'stoner'] [u'driver', u'turn', u'music', u'produc'] [u'busi', u'urg', u'join', u'tourism', u'bodi'] [u'busi', u'hard', u'budget', u'chamber', u'say'] [u'buyer', u'seek', u'fail'] [u'improv', u'barossa', u'road'] [u'cane', u'farmer', u'report', u'push', u'support'] [u'chamber', u'welcom', u'retail', u'trade', u'hour', u'decis'] [u'children', u'poison', u'north', u'china'] [u'church', u'synod', u'wait', u'appoint', u'bishop'] [u'clark', u'follow', u'robinson', u'exampl'] [u'clash', u'break', u'liberian', u'capit'] [u'cole', u'appoint', u'director'] [u'committe', u'unabl', u'stop', u'land', u'clear'] [u'communiti', u'target', u'youth', u'crime'] [u'concern', u'air', u'home', u'owner', u'scheme'] [u'concern', u'air', u'western', u'sheep', u'industri'] [u'council', u'confid', u'park', u'wont', u'harm', u'waterway'] [u'council', u'consid', u'heritag', u'tourism', u'boost'] [u'council', u'declar', u'water', u'drink'] [u'council', u'consult', u'public', u'age', u'care', u'site'] [u'court', u'urg', u'ahead', u'mukhla', u'trial'] [u'demand', u'show', u'mental', u'health', u'phone', u'line'] [u'democrat', u'releas', u'detent', u'famili'] [u'demon', u'aim', u'troubl'] [u'dfat', u'issu', u'china', u'travel', u'warn'] [u'dog', u'destroy', u'maul', u'woman'] [u'doubt', u'rais', u'languag', u'research'] [u'drink', u'kid', u'send', u'wrong', u'messag'] [u'eal', u'salut', u'england'] [u'econom', u'valu', u'ecosystem'] [u'economi', u'surg', u'stronger', u'market'] [u'educ', u'posit', u'negat'] [u'shortag', u'send', u'price'] [u'electrolux', u'manag', u'cold'] [u'employ', u'blame', u'union', u'uncertain', u'futur'] [u'europ', u'reject', u'famin', u'claim', u'disput'] [u'montoya', u'ban', u'drive'] [u'farmer', u'deer', u'loos'] [u'farmer', u'lament', u'drought', u'conflict'] [u'farm', u'coupl', u'get', u'bank', u'payout'] [u'fatigu', u'trucki', u'long', u'wheel'] [u'fear', u'hold', u'wool', u'qualiti'] [u'feofanova', u'beat', u'dragila', u'fail', u'world', u'record'] [u'fish', u'boat', u'salvag', u'run', u'aground'] [u'fisichella', u'firman', u'ford', u'ralli'] [u'flood', u'displac', u'peopl', u'india'] [u'case', u'rise', u'southern'] [u'forc', u'soccer', u'fan', u'season'] [u'minist', u'charg', u'child', u'offenc'] [u'leak', u'spark', u'evacu'] [u'gilchrist', u'sportsmanship', u'earn', u'corpor', u'role'] [u'gippsland', u'jobless', u'rate', u'fall', u'slight'] [u'fail', u'save', u'road', u'offend'] [u'good', u'lock', u'want'] [u'govt', u'doubl', u'spend', u'canberra', u'prison'] [u'govt', u'prais', u'conduct', u'budget', u'hear'] [u'govt', u'question', u'toyn', u'legal', u'work'] [u'govt', u'reviv', u'beaudesert', u'rail', u'histori'] [u'govt', u'warn', u'educ', u'reform', u'inquiri'] [u'group', u'highlight', u'doctor', u'shortag', u'concern'] [u'greed', u'gambl', u'motiv', u'crime', u'report'] [u'greedi', u'bacteria', u'save', u'ancient', u'fresco'] [u'group', u'seek', u'fail', u'invest', u'scheme', u'compo'] [u'guilti', u'plea', u'refresh', u'stab', u'case'] [u'hama', u'gunmen', u'kill', u'isra', u'barrack', u'raid'] [u'henin', u'hardenn', u'stand', u'tall', u'despit', u'injuri'] [u'high', u'tech', u'anklet', u'help', u'solv', u'poki', u'addict'] [u'hospit', u'reject', u'surgeon', u'group', u'claim'] [u'hospit', u'railway', u'reciev', u'budget', u'boost'] [u'hous', u'shortag', u'govt', u'agenda'] [u'hit', u'lille', u'attack'] [u'illawarra', u'properti', u'price'] [u'indigen', u'tip', u'creat', u'oversea'] [u'insur', u'council', u'seek', u'releas', u'flood', u'data'] [u'insur', u'slug', u'lake', u'tour', u'oper'] [u'investig', u'continu', u'fatal', u'launceston'] [u'invinc', u'doug', u'ring', u'dead'] [u'iran', u'support', u'maintain', u'franc', u'hunger', u'strike'] [u'iraqi', u'civilian', u'kill', u'soldier', u'resid'] [u'japan', u'freez', u'protest', u'kyi', u'detent'] [u'judg', u'hail', u'laymen', u'work', u'wast', u'case'] [u'karzai', u'order', u'blasphem', u'journalist', u'free'] [u'kellogg', u'announc', u'cut'] [u'knife', u'scare', u'forc', u'qanta', u'plane', u'turnaround'] [u'laport', u'ring', u'chang', u'french', u'team', u'play'] [u'lara', u'happi', u'handl', u'muralitharan'] [u'leaney', u'rise', u'favourit', u'french', u'open'] [u'lib', u'want', u'line', u'boost'] [u'lion', u'readi', u'maul', u'tiger'] [u'lowi', u'reappoint', u'reserv', u'bank'] [u'abus', u'judg', u'sentenc'] [u'market', u'hold', u'rat', u'decis'] [u'mattiac', u'readi', u'hero', u'welcom', u'southwind'] [u'mayor', u'offer', u'migrant', u'plan', u'support'] [u'mayor', u'seek', u'merger', u'detail'] [u'media', u'divers', u'vital', u'democraci', u'harradin'] [u'meet', u'avert', u'hospit', u'industri', u'strife'] [u'meet', u'consid', u'kingdon', u'estat', u'support'] [u'meet', u'gaug', u'midwiferi', u'scheme', u'support'] [u'mice', u'sens', u'earthquak', u'research'] [u'mickelson', u'contempl', u'differ', u'approach'] [u'minimum', u'rat', u'rise', u'beaudesert'] [u'minist', u'foreshadow', u'water', u'price', u'rise'] [u'mix', u'respons', u'budget'] [u'fund', u'silver', u'citi', u'highway'] [u'whale', u'spot', u'tasmania'] [u'motor', u'registri', u'close', u'door'] [u'consid', u'seek', u'water', u'board', u'probe'] [u'oppos', u'weaken', u'imparja', u'hold'] [u'mullah', u'omar', u'organis', u'council', u'resist'] [u'mysteri', u'surround', u'british', u'death', u'iraq'] [u'nake', u'disappoint', u'spark', u'watchdog', u'critic'] [u'nation', u'accus', u'sell', u'telstra'] [u'nelson', u'say', u'need', u'educ', u'inquiri'] [u'explor', u'opportun', u'near', u'gympi'] [u'health', u'famili', u'servic', u'cooktown'] [u'magna', u'roll', u'product', u'line'] [u'mayor', u'rule', u'parti', u'polit', u'elect'] [u'vice', u'chancellor', u'ponder', u'challeng'] [u'conspiraci', u'bank', u'sale'] [u'nolan', u'paint', u'donat', u'galleri'] [u'introduc', u'law', u'kill', u'unborn'] [u'opposit', u'question', u'alic', u'sit', u'cost'] [u'celebr', u'year', u'self', u'govern'] [u'decriminalis', u'prostitut'] [u'ocean', u'releas', u'excess', u'water'] [u'offer', u'flood', u'tortur', u'backpack'] [u'offici', u'tightlip', u'knife', u'scare'] [u'pair', u'arrest', u'home', u'attack'] [u'parti', u'reach', u'agreement', u'asio'] [u'payment', u'entic', u'north', u'korea', u'histor', u'summit', u'council'] [u'perth', u'tourism', u'face', u'tough', u'competit'] [u'perus', u'cabinet', u'offici', u'quit'] [u'play', u'underway', u'origin'] [u'polic', u'conduct', u'winter', u'search', u'autumn', u'glori'] [u'polic', u'drug', u'power', u'beef'] [u'polic', u'investig', u'attack', u'sydney'] [u'polic', u'offic', u'recov', u'sydney', u'crash'] [u'polic', u'monitor', u'coffin', u'cheater'] [u'polic', u'treat', u'miss', u'angler', u'murder'] [u'port', u'author', u'hop', u'proceed'] [u'probe', u'launch', u'fatal', u'crash'] [u'fear', u'tafe', u'loss'] [u'public', u'meet', u'discuss', u'caravan', u'park', u'futur'] [u'stifl', u'west', u'economi'] [u'rain', u'threaten', u'origin'] [u'real', u'clean', u'beckham'] [u'real', u'line', u'fergi', u'deputi', u'queiroz', u'coach'] [u'rebat', u'water', u'save', u'devic'] [u'rehab', u'program', u'disarray'] [u'revitalis', u'crow', u'wari', u'blue'] [u'ricketson', u'battl', u'ahead', u'origin'] [u'robinson', u'quit', u'atsic', u'post'] [u'continu', u'water', u'author', u'elect'] [u'rudderless', u'kelm', u'unveil', u'tour', u'franc', u'team'] [u'salvo', u'launch', u'winter', u'blanket', u'drive'] [u'school', u'close', u'crime', u'figur', u'funer'] [u'scud', u'fire'] [u'second', u'bank', u'branch', u'edenhop'] [u'secur', u'light', u'plan', u'queen', u'park'] [u'senat', u'approv', u'power', u'asio'] [u'senat', u'back', u'harradin', u'media'] [u'senat', u'committe', u'releas', u'find'] [u'offend', u'suspect', u'attack'] [u'shark', u'incid', u'spark', u'aquacultur', u'concern'] [u'shiit', u'group', u'condemn', u'brit', u'kill'] [u'shower', u'forecast', u'origin'] [u'shuttl', u'disast', u'blame', u'wing', u'damag'] [u'small', u'rat', u'rise', u'gladston'] [u'south', u'africa', u'readi', u'reward', u'public', u'smith'] [u'south', u'east', u'school', u'share', u'budget', u'fund'] [u'kilda', u'return', u'injuri'] [u'studi', u'reveal', u'worri'] [u'support', u'medic', u'indemn', u'insur', u'boost'] [u'surgeon', u'shortag', u'identifi', u'region'] [u'suspect', u'sar', u'case', u'releas'] [u'sydney', u'greener', u'brisban', u'audit'] [u'tasmania', u'adopt', u'debat', u'heat'] [u'tassi', u'woolgrow', u'benefit', u'shortag'] [u'teen', u'help', u'steal', u'court', u'tell'] [u'telstra', u'back', u'upgrad', u'plan'] [u'telstra', u'sell', u'cost', u'bush', u'labor'] [u'thwait', u'expect', u'disput'] [u'thwait', u'announc', u'central', u'victorian', u'project'] [u'toronto', u'filmfest', u'open', u'cann', u'winner'] [u'tribun', u'clear', u'swan', u'rooki'] [u'troop', u'iraq', u'rise'] [u'turner', u'remain', u'croc'] [u'embassi', u'kenya', u'open', u'terrorist'] [u'face', u'daunt', u'task', u'build', u'iraqi', u'economi'] [u'order', u'revamp', u'nuclear', u'secur'] [u'vencil', u'ban', u'year', u'posit', u'test'] [u'violenc', u'aborigin', u'communiti', u'tackl'] [u'virgin', u'flight', u'boost', u'northern', u'tourism'] [u'voss', u'possibl', u'lion', u'return'] [u'polic', u'deni', u'fail', u'remot', u'nurs'] [u'wenger', u'rule', u'real', u'report'] [u'whiteley', u'say', u'adopt', u'undervalu'] [u'wimbledon', u'second', u'result'] [u'wimbledon', u'programm'] [u'windi', u'uncap', u'bowler', u'edward', u'second'] [u'winter', u'bring', u'good', u'coastal', u'rain'] [u'drown', u'sierra', u'leon', u'boat', u'capsiz'] [u'fear', u'dead', u'indian', u'accid'] [u'account', u'evid', u'king', u'bros', u'inquiri'] [u'actew', u'signal', u'water', u'infrastructur'] [u'govt', u'thump', u'gazump'] [u'govt', u'bring', u'rental', u'bond', u'loan'] [u'action', u'perform', u'studi'] [u'adelaid', u'driver', u'hold', u'stop', u'work', u'meet'] [u'ord', u'plung', u'rat'] [u'alston', u'say', u'senat', u'dagger', u'media', u'ownership'] [u'anderson', u'confid', u'nat', u'support'] [u'anderson', u'wont', u'rule', u'run', u'atsic', u'deputi'] [u'mass', u'grave', u'uncov', u'bosnia'] [u'step', u'stone', u'lindsay'] [u'arafat', u'expect', u'middl', u'east', u'ceas'] [u'asago', u'shock', u'hantuchova', u'marathon', u'encount'] [u'asbesto', u'spark', u'wesley', u'mission'] [u'asio', u'pass', u'senat'] [u'asylum', u'hous', u'site', u'rais', u'concern'] [u'athlet', u'chief', u'iron', u'dope', u'confus'] [u'auditor', u'general', u'say', u'need', u'improv'] [u'aust', u'discuss', u'solomon', u'forc'] [u'baccanello', u'fine', u'form', u'despit', u'loss'] [u'backpack', u'leav', u'hospit', u'soon', u'leav'] [u'visa', u'claim', u'evid', u'ruddock', u'tell', u'labor'] [u'baden', u'take', u'final', u'stage', u'vinokurov', u'win', u'tour'] [u'bashir', u'chief', u'wit', u'tell'] [u'navi', u'ship', u'head', u'townsvill'] [u'blair', u'communic', u'chief', u'deni', u'mislead'] [u'bothwel', u'reserv', u'worth'] [u'bouncer', u'court', u'nightclub'] [u'boycott', u'threat', u'prize', u'money'] [u'britain', u'lift', u'nairobi', u'flight'] [u'brogden', u'attack', u'carr'] [u'brogden', u'outlin', u'stamp', u'duti', u'cut', u'budget', u'repli'] [u'builder', u'urg', u'join', u'insur', u'fight'] [u'bush', u'kid', u'leader', u'alter', u'food'] [u'bush', u'servic', u'safe', u'telstra'] [u'employ', u'consider', u'refuge', u'visa'] [u'legisl', u'protect', u'bush'] [u'canberra', u'properti', u'price', u'rise', u'sharpli'] [u'cancer', u'patient', u'fight', u'transport', u'subsidi'] [u'cancer', u'patient', u'transport', u'subsidi', u'spotlight'] [u'firm', u'threaten', u'offshor'] [u'carpent', u'welcom', u'nelson', u'educ', u'plan'] [u'chanc', u'local', u'firm', u'tender', u'base', u'contract'] [u'china', u'admit', u'drug', u'problem'] [u'china', u'crack', u'massiv', u'counterfeit', u'ring'] [u'choi', u'hop', u'home', u'korea'] [u'clijster', u'ruthless', u'razzano'] [u'coetzer', u'promis', u'year'] [u'cole', u'credit', u'rat', u'downgrad'] [u'colombian', u'urg', u'step', u'terror', u'fight'] [u'confer', u'put', u'heart', u'diseas', u'spotlight'] [u'cook', u'review', u'draft', u'report', u'releas', u'soon'] [u'coron', u'name', u'road', u'crash', u'victim'] [u'council', u'consid', u'alcohol'] [u'council', u'hop', u'better', u'town', u'camp', u'control'] [u'council', u'help', u'timor', u'sister', u'citi'] [u'court', u'appeal', u'deliv', u'fingleton', u'decis'] [u'court', u'order', u'longford', u'disast', u'court', u'cost'] [u'czech', u'polic', u'stop', u'illeg', u'immigr', u'border'] [u'dalbi', u'punter', u'farewel', u'event'] [u'decis', u'reserv', u'jail', u'offend'] [u'dokic', u'bar', u'olymp'] [u'educ', u'divid', u'nation', u'school', u'plan'] [u'energi', u'panel', u'interview', u'stakehold', u'darwin'] [u'farm', u'reform', u'renew', u'negoti'] [u'reach', u'landmark', u'deal', u'farm', u'polici'] [u'european', u'journalist', u'face', u'trial', u'lao'] [u'export', u'gain', u'rate', u'costello'] [u'fairfax', u'sign', u'deal', u'hutchison'] [u'fardon', u'case', u'test', u'danger', u'prison'] [u'farmer', u'vote', u'plan', u'constitut', u'chang'] [u'tone', u'tobacco'] [u'fiji', u'coup', u'conspir', u'plead', u'lenienc'] [u'file', u'trader', u'face', u'prosecut'] [u'fingleton', u'convict', u'uphold', u'sentenc', u'halv'] [u'flatley', u'herbert', u'keen', u'impress', u'red'] [u'christian', u'minist', u'face', u'charg'] [u'minist', u'refus', u'bail', u'charg'] [u'fund', u'cannabi', u'health', u'research'] [u'gather', u'discuss', u'enforc', u'reef', u'protect'] [u'golf', u'club', u'sell', u'resort'] [u'go', u'wind', u'bean', u'lover', u'breath', u'easi'] [u'goosen', u'confirm', u'french', u'tournament'] [u'govt', u'ban', u'bulk', u'bill', u'term', u'oppn', u'say'] [u'govt', u'extend', u'detent', u'teen', u'asio'] [u'govt', u'push', u'uniform', u'school'] [u'grace', u'venus', u'coast', u'round'] [u'guggenheim', u'plan', u'ban', u'brazil'] [u'gunner', u'tell', u'ferguson', u'hand', u'vieira'] [u'haas', u'telstra', u'stanc'] [u'heart', u'failur', u'case', u'tip', u'rise'] [u'henderson', u'highlight', u'leak', u'minut'] [u'herbert', u'flatley', u'keen', u'impress', u'red'] [u'herbert', u'red', u'fiji', u'clash'] [u'hold', u'firm', u'media', u'law', u'cherri', u'tell', u'senat'] [u'home', u'ownership', u'move', u'reach'] [u'immigr', u'see', u'tourism', u'plus'] [u'india', u'reject', u'road', u'peac'] [u'investig', u'believ', u'dead', u'blaze', u'accident'] [u'iranian', u'investig', u'protest', u'arrest'] [u'iraqi', u'scientist', u'hand', u'nuke', u'part'] [u'iraq', u'intellig', u'perplex', u'incomplet'] [u'iron', u'geelong', u'robberi'] [u'israel', u'launch', u'fresh', u'gaza', u'strike'] [u'jail', u'give', u'extra', u'time', u'offenc'] [u'vacanc', u'high', u'despit', u'slight', u'fall'] [u'johnson', u'win', u'switzerland'] [u'karlov', u'down', u'aussi', u'second', u'round'] [u'kemp', u'reject', u'tent', u'embassi', u'heritag', u'applic'] [u'kennedi', u'fight', u'high', u'tackl', u'charg'] [u'king', u'bros', u'account', u'recal', u'nightmar', u'statement'] [u'kiwi', u'face', u'aussi', u'junior', u'world'] [u'knife', u'plane', u'insid', u'anderson'] [u'leaney', u'swing', u'caddi'] [u'local', u'appoint', u'heritag', u'build', u'societi', u'board'] [u'manag', u'revamp', u'mildura', u'council'] [u'die', u'workplac', u'accid'] [u'plead', u'guilti', u'child', u'charg'] [u'refus', u'bail', u'stab', u'case'] [u'marathon', u'process', u'gold', u'coast', u'race', u'entri'] [u'marsh', u'look', u'streak', u'form'] [u'martin', u'knock', u'kuerten'] [u'mattiac', u'head', u'field', u'jude', u'classic'] [u'mayor', u'defend', u'interst', u'oversea', u'trip'] [u'media', u'debat', u'continu', u'despit', u'amend'] [u'megawati', u'will', u'extend', u'aceh', u'fight'] [u'biolog', u'clock'] [u'middl', u'east', u'truce', u'draft', u'milit', u'group', u'fatah'] [u'disagre', u'size', u'lake', u'insur', u'slug'] [u'ncoss', u'unhappi', u'budget', u'region', u'mental', u'health'] [u'nelson', u'play', u'catch', u'educ', u'standard'] [u'hospit', u'open', u'door'] [u'solar', u'heater', u'expect', u'save', u'money'] [u'nike', u'sign', u'deed', u'ethic'] [u'blame', u'bennett'] [u'govt', u'push', u'chang', u'crime', u'law'] [u'north', u'coast', u'flood', u'caus', u'school', u'evacu'] [u'health', u'issu', u'enceph', u'warn'] [u'oldest', u'veteran', u'turn'] [u'person', u'trash', u'anoth', u'treasur', u'lifelin'] [u'opal', u'camp', u'dream', u'olymp', u'success'] [u'palestinian', u'teen', u'kill', u'isra', u'near', u'west', u'bank'] [u'parent', u'recov', u'children', u'highway'] [u'parliament', u'get', u'telstra', u'sale'] [u'peruvian', u'presid', u'lift', u'state', u'emerg'] [u'pilchard', u'stock', u'rise'] [u'pipelin', u'attack', u'wont', u'affect', u'iraq', u'export'] [u'pirat', u'forc', u'fish', u'boat', u'aust', u'water'] [u'bull', u'owner', u'warn', u'regul'] [u'polic', u'concern', u'miss'] [u'polic', u'associ', u'happi', u'number'] [u'polic', u'present', u'evid', u'tortur', u'case'] [u'polic', u'search', u'sydney', u'truck', u'hijack'] [u'polit', u'erupt', u'timber', u'fund'] [u'port', u'kennedi', u'foreshor', u'project', u'track'] [u'power', u'boost', u'east', u'kimberley'] [u'probe', u'launch', u'industri', u'accid'] [u'probe', u'order', u'teacher', u'convict'] [u'push', u'boost', u'region', u'migrant', u'number'] [u'govt', u'oppn', u'unit', u'telstra', u'sale'] [u'quartermain', u'give', u'support', u'clark'] [u'queiroz', u'get', u'real'] [u'rat', u'slug', u'maroochi', u'ratepay'] [u'real', u'madrid', u'presid', u'show', u'ruthless', u'streak'] [u'rebel', u'fight', u'close', u'liberian', u'capit'] [u'cross', u'offer', u'long', u'term', u'help', u'bali', u'victim'] [u'region', u'mobil', u'coverag', u'concern', u'brown'] [u'repent', u'rusedski', u'slump', u'slam'] [u'report', u'highlight', u'cane', u'support', u'dispar'] [u'report', u'highlight', u'concern', u'indigen', u'health'] [u'resid', u'disagre', u'beach', u'eros', u'plan'] [u'reveal', u'perfect', u'cuppa'] [u'robinson', u'seek', u'sourc', u'leak'] [u'roddick', u'wimbledon', u'favourit'] [u'medic', u'indemn', u'cover', u'consult'] [u'rspca', u'blast', u'defenc', u'dept', u'cull', u'plan'] [u'ruddock', u'appli', u'hold', u'detent', u'rule'] [u'rusedski', u'fin', u'outburst'] [u'nat', u'rebel', u'telstra'] [u'schultz', u'reject', u'sale', u'telstra'] [u'schumach', u'quit', u'faster', u'rival', u'emerg'] [u'search', u'anger', u'trigger', u'soldier', u'death', u'resid'] [u'senat', u'accept', u'final', u'asio', u'chang'] [u'prepar', u'flood'] [u'train', u'boost'] [u'seven', u'dead', u'iran', u'hercul', u'crash'] [u'attack', u'victim', u'give', u'polic', u'vital', u'evid'] [u'shire', u'highlight', u'infrastructur', u'need'] [u'simsmet', u'get', u'clear', u'asbesto', u'scare'] [u'smith', u'lead', u'south', u'africa', u'seri'] [u'soak', u'rain', u'welcom', u'southern', u'inland'] [u'solomon', u'nation'] [u'solomon', u'businessman', u'warn', u'violenc'] [u'solomon', u'polic', u'welcom', u'foreign', u'forc'] [u'state', u'like', u'oppos', u'educ', u'plan'] [u'stat', u'tough', u'sentenc', u'high', u'crime'] [u'suspens', u'rule', u'kennedi', u'origin', u'test'] [u'suspens', u'rule', u'kennedi', u'origin'] [u'syria', u'protest', u'iraq', u'border', u'incid'] [u'tap', u'steal', u'detect', u'cabinet', u'commiss'] [u'polic', u'resolv', u'disput', u'sack', u'sergeant'] [u'seek', u'young', u'mum', u'school'] [u'teacher', u'fight', u'standardis', u'studi'] [u'telstra', u'aim', u'allay', u'privatis', u'fear'] [u'telstra', u'sale', u'depend', u'market', u'howard'] [u'tenant', u'fairer', u'deal', u'blacklist', u'databas'] [u'dead', u'jordan', u'bridg', u'collaps'] [u'thatcher', u'husband', u'die'] [u'thousand', u'flee', u'monrovia', u'fight', u'finish'] [u'throsbi', u'child', u'custodi', u'probe'] [u'tick', u'treatment', u'sit', u'close'] [u'tier', u'seat', u'plan', u'entertain', u'centr'] [u'ralli', u'team', u'field', u'lesser', u'driver'] [u'torment', u'pantani', u'make', u'heartfelt', u'plea', u'privaci'] [u'tortur', u'backpack', u'famili', u'thank', u'support'] [u'motorist', u'kill', u'plane', u'land', u'highway'] [u'unamend', u'media', u'return', u'senat'] [u'underworld', u'figur', u'funer', u'monday'] [u'union', u'upset', u'lack', u'timber', u'compo', u'talk'] [u'unlik', u'fish', u'kill', u'report', u'overst'] [u'solomon', u'task', u'downer'] [u'anti', u'dope', u'agenc', u'ban', u'swimmer'] [u'award', u'blair', u'gold', u'medal', u'iraq', u'support'] [u'mend', u'fenc', u'white', u'hous'] [u'cut', u'rat', u'year'] [u'rat', u'worri', u'sign'] [u'slash', u'rat'] [u'fuel', u'spill', u'clean', u'underway'] [u'govt', u'scrap', u'tender', u'polici'] [u'introduc', u'youth', u'curfew'] [u'wall', u'dip', u'announc'] [u'warn', u'issu', u'autumn', u'royal', u'vine', u'plant'] [u'water', u'board', u'chief', u'welcom', u'probe'] [u'wimbledon', u'fourth', u'program'] [u'wimbledon', u'result'] [u'woman', u'court', u'stepfath', u'death'] [u'salt', u'reduct', u'scheme', u'murray'] [u'arrest', u'iran', u'protest', u'report'] [u'cyclist', u'disrupt', u'melbourn', u'traffic'] [u'accc', u'offer', u'lenienc', u'cartel', u'turncoat'] [u'accus', u'killer', u'attend', u'victim', u'funer'] [u'doctor', u'consid', u'insur', u'offer'] [u'start'] [u'consid', u'shipyard', u'futur', u'contract', u'lose'] [u'aerial', u'goat', u'cull', u'get'] [u'agassi', u'set', u'aynaoui', u'showdown'] [u'group', u'call', u'interst', u'prison', u'recal'] [u'aircraft', u'cabin', u'pressur', u'blame', u'studi'] [u'alic', u'spring', u'host', u'beani', u'bash'] [u'alleg', u'sexism', u'bulli', u'anger', u'femal'] [u'ord', u'recov', u'slide'] [u'ambros', u'fastest', u'practic'] [u'american', u'blake', u'disappoint'] [u'anderson', u'seek', u'atsic', u'deputi', u'posit'] [u'anim', u'nurseri', u'lose', u'battl', u'rezon'] [u'antibodi', u'lead', u'vaccin', u'studi'] [u'appeal', u'court', u'overturn', u'java', u'rule'] [u'austoft', u'fallout', u'continu'] [u'bacon', u'challeng', u'ferri', u'cost'] [u'baddeley', u'cours'] [u'bail', u'refus', u'assault', u'charg'] [u'bali', u'victim', u'happi', u'cross', u'donat', u'plan'] [u'bear', u'road', u'young', u'gun', u'clash'] [u'beckham', u'present', u'real', u'media', u'event'] [u'progress', u'gaza', u'talk'] [u'blair', u'putin', u'buri', u'iraq', u'hatchet'] [u'bomber', u'crush', u'cat'] [u'bomber', u'watson', u'debut'] [u'border', u'suspect', u'prove', u'pigeon', u'chest'] [u'bowen', u'snap', u'crab', u'farm', u'propos'] [u'break', u'hill', u'film', u'scout', u'consid', u'success'] [u'bronco', u'roll', u'rooster'] [u'bulldog', u'upbeat', u'trade', u'posit'] [u'highway', u'upgrad', u'urgenc'] [u'camel', u'farmer', u'fear', u'livestock'] [u'cameroon', u'play', u'final', u'despit', u'foe', u'death'] [u'canberra', u'raaf', u'base', u'prepar', u'downgrad'] [u'castaway', u'yachtsman', u'rescu', u'coast'] [u'cavali', u'secur', u'pick', u'jam'] [u'chamber', u'look', u'form', u'oslo'] [u'chang', u'afoot', u'alcohol', u'sale'] [u'chang', u'galor', u'springbok', u'puma', u'prepar'] [u'china', u'throw', u'open', u'door', u'aussi', u'meat', u'produc'] [u'church', u'chariti', u'suffer', u'hollingworth', u'fallout'] [u'class', u'action', u'prepar', u'sluic', u'gate', u'fail'] [u'clock', u'count', u'palm', u'council'] [u'commerci', u'concern', u'fish', u'zone'] [u'committe', u'investig', u'crime', u'commiss'] [u'concern', u'air', u'wild', u'fish', u'stock'] [u'concern', u'voic', u'dairi', u'crisi'] [u'coroni', u'inquest', u'doubl', u'slay', u'begin'] [u'costello', u'put', u'faith', u'chariti'] [u'council', u'air', u'servic', u'delay', u'fear'] [u'council', u'appoint', u'act', u'mayor'] [u'council', u'approv', u'cost', u'hous', u'plan'] [u'council', u'claim', u'support', u'boundari', u'chang'] [u'council', u'consid', u'instal', u'act', u'general', u'manag'] [u'council', u'move', u'closer', u'food', u'precinct', u'plan'] [u'council', u'put', u'bite', u'danger', u'dog'] [u'council', u'seek', u'water', u'qualiti', u'assur'] [u'cowboy', u'look', u'shut', u'steven', u'beatti'] [u'crow', u'sign', u'goodwin'] [u'dairi', u'farmer', u'threaten', u'supplier', u'chang'] [u'dokic', u'confid', u'ahead', u'sharapova', u'match'] [u'driver', u'urg', u'obey', u'road', u'rule'] [u'drought', u'declar', u'extend'] [u'dust', u'factor', u'ringer', u'accid', u'polic'] [u'educ', u'dept', u'prefer', u'princip'] [u'educ', u'offic', u'speak', u'behaviour', u'issu'] [u'egan', u'reject', u'impost', u'claim'] [u'england', u'fail', u'worri', u'vaughan'] [u'accus', u'nuditi', u'cover', u'plan'] [u'propos', u'reform', u'farm', u'subsidi', u'criticis'] [u'expert', u'say', u'farm', u'overhaul', u'eas', u'price'] [u'expert', u'examin', u'skeleton'] [u'faction', u'agre', u'ceas', u'hama'] [u'fast', u'furious', u'respons', u'donkey', u'driver'] [u'fear', u'medic', u'indemn', u'woe', u'hamper', u'region'] [u'festiv', u'tip', u'boost', u'warrnambool', u'tourism'] [u'fight', u'intensifi', u'liberia'] [u'fingleton', u'give', u'resign', u'deadlin'] [u'fingleton', u'like', u'resign'] [u'fingleton', u'miss', u'resign', u'deadlin'] [u'fish', u'group', u'vow', u'continu', u'gill', u'court'] [u'flood', u'kill', u'affect', u'million', u'chines'] [u'flower', u'perform', u'stun', u'england'] [u'staffer', u'order', u'cost', u'harrison'] [u'senat', u'thurmond', u'die', u'age'] [u'wool', u'chief', u'defend', u'spend'] [u'kill', u'isra', u'armi', u'raid'] [u'fuel', u'wholesal', u'deni', u'fraud', u'record', u'fine'] [u'fund', u'wastewat', u'scheme', u'busi', u'plan'] [u'fund', u'target', u'road', u'safeti'] [u'pipelin', u'contract', u'tender'] [u'govt', u'announc', u'apra', u'team'] [u'govt', u'thwart', u'fish', u'escap'] [u'govt', u'urg', u'extend', u'rat', u'crown', u'leas', u'deadlin'] [u'grant', u'aim', u'help', u'attract', u'nurs'] [u'green', u'accus', u'govt', u'secreci'] [u'gulf', u'ship', u'go', u'fisherman'] [u'gungahlin', u'record', u'land', u'sale', u'collaps'] [u'hall', u'face', u'demolit'] [u'harri', u'potter', u'surviv', u'adolesc', u'rowl'] [u'heart', u'foundat', u'welcom', u'pill', u'trial'] [u'heavi', u'storm', u'batter', u'gold', u'coast', u'flood'] [u'henin', u'hardenn', u'play', u'molik', u'round'] [u'henman', u'steal', u'centr', u'stage'] [u'hid', u'reshuffl', u'shadow', u'cabinet'] [u'highway', u'group', u'meet', u'deputi'] [u'histor', u'cattl', u'drive', u'enact', u'plan'] [u'hous', u'assembl', u'pass', u'adopt', u'law'] [u'hull', u'oppos', u'telstra', u'sale'] [u'hunter', u'valley', u'teen', u'charg', u'sexual', u'assault'] [u'call', u'love'] [u'ikin', u'carlaw', u'rooster', u'clash'] [u'indefinit', u'jail', u'test'] [u'independ', u'arbit', u'tackl', u'disput'] [u'independ', u'push', u'cane', u'toad', u'fenc'] [u'indonesian', u'militari', u'arrest', u'journalist', u'aceh'] [u'industri', u'accid', u'investig'] [u'inquiri', u'recommend', u'dairi', u'deregul', u'audit'] [u'insur', u'cost', u'claim', u'tourism', u'railway'] [u'isra', u'soldier', u'kill', u'gaza', u'raid'] [u'itali', u'drop', u'terror', u'charg', u'pakistani'] [u'japanes', u'apologis', u'gang', u'rape', u'comment'] [u'jardin', u'tour', u'sell'] [u'jone', u'forc', u'apologis', u'defam', u'decis'] [u'judg', u'prepar', u'offend', u'jail'] [u'katherin', u'airport', u'viabl', u'mayor'] [u'kenya', u'chepchumba', u'give', u'year', u'dope'] [u'tell', u'cluck', u'india'] [u'king', u'confid', u'romp', u'itali'] [u'kucera', u'lose', u'health', u'stephen', u'lose', u'hous'] [u'labor', u'refer', u'visa', u'scandal', u'polic'] [u'leav', u'labor', u'unhappi', u'drug', u'search', u'legisl'] [u'liberian', u'rebel', u'declar', u'immedi', u'ceas'] [u'lion', u'welcom', u'voss'] [u'magic', u'heart', u'pill', u'year', u'doctor'] [u'charg', u'yallourn', u'north', u'murder'] [u'lose', u'appeal', u'publish', u'holocaust', u'denial'] [u'child', u'charg', u'expect', u'reappli'] [u'mayor', u'defend', u'council', u'mordek', u'inconsist'] [u'mayor', u'want', u'inflat', u'rule', u'rate', u'rise'] [u'mcguir', u'set', u'sight', u'swan'] [u'mckenzi', u'resign', u'wallabi', u'selector'] [u'meat', u'export', u'china', u'bonanza', u'produc', u'tell'] [u'mildura', u'expect', u'busi', u'winter', u'tourism'] [u'mobil', u'phone', u'user', u'slap', u'fine'] [u'montgomeri', u'determin', u'lower', u'world', u'record'] [u'doctor', u'leav', u'toowoomba'] [u'fund', u'need', u'water', u'suppli'] [u'illeg', u'wood', u'cut', u'goldfield'] [u'mourner', u'attend', u'funer', u'underworld', u'figur'] [u'concern', u'possibl', u'freight', u'rate', u'hike'] [u'nalbandian', u'bustl'] [u'nasa', u'solar', u'plane', u'crash', u'hawaii'] [u'mclaren', u'fail', u'crash', u'test'] [u'partnership', u'expect', u'boost', u'region', u'fund'] [u'vice', u'presid', u'dairi', u'group'] [u'need', u'cash', u'visa', u'inquiri', u'howard'] [u'north', u'sydney', u'bash', u'victim', u'die'] [u'club', u'plan', u'poki', u'fight'] [u'olymp', u'athlet', u'exempt'] [u'opera', u'return', u'rome', u'bath', u'caracalla'] [u'paul', u'grey', u'heenan', u'ax', u'wallabi', u'squad'] [u'report', u'disturb', u'say', u'oppn'] [u'pierc', u'happi'] [u'pirat', u'interfer', u'research', u'mission'] [u'player', u'distract', u'disput', u'jone'] [u'look', u'custom', u'claim'] [u'consid', u'join', u'solomon', u'forc'] [u'polic', u'assoc', u'hop', u'review', u'boost', u'polic', u'number'] [u'polic', u'count', u'cost', u'steal', u'sheep'] [u'polic', u'alleg', u'assault', u'despic'] [u'polic', u'quiz', u'children', u'underworld', u'slay'] [u'polic', u'continu', u'drug', u'crackdown'] [u'pretend', u'announc', u'shadow', u'iraq', u'govern'] [u'privaci', u'commission', u'support', u'better', u'sampl'] [u'protest', u'continu', u'mooloolaba', u'harbour', u'woe'] [u'public', u'urg', u'wari', u'blue', u'green', u'alga', u'danger'] [u'punter', u'prepar', u'cold', u'race', u'meet'] [u'push', u'communiti', u'input', u'campus', u'oper'] [u'cast', u'doubt', u'fish', u'blueprint'] [u'nat', u'issu', u'telstra', u'sale', u'support', u'warn'] [u'question', u'rais', u'telstra', u'sale', u'servic', u'claim'] [u'record', u'fin', u'compani', u'evas'] [u'research', u'pill', u'heart', u'attack', u'risk'] [u'resid', u'clean', u'glenelg', u'flood'] [u'resid', u'access', u'nois', u'studi'] [u'erupt', u'reef', u'tourism'] [u'ruddock', u'defend', u'detaine', u'hous', u'consult'] [u'govt', u'accus', u'cover'] [u'govt', u'probe', u'coastal', u'concern'] [u'defend', u'exclus', u'internet', u'right'] [u'drop', u'rego', u'sticker'] [u'saudi', u'bomb', u'mastermind', u'surrend', u'report'] [u'school', u'close', u'underworld', u'funer'] [u'scientist', u'whale', u'discoveri'] [u'senat', u'remov', u'anti', u'terror', u'fenc'] [u'serena', u'subdu', u'fighter', u'callen'] [u'shop', u'owner', u'blame', u'archaic', u'law', u'fine'] [u'shire', u'hear', u'wind', u'farm', u'detail'] [u'snowtown', u'trial', u'show', u'serial', u'killer', u'poem'] [u'sport', u'academi', u'plan', u'ballarat'] [u'statut', u'limit', u'remain', u'court', u'rule'] [u'straw', u'deni', u'weapon', u'intellig', u'exagger'] [u'support', u'govt', u'timber', u'fund', u'stanc'] [u'swan', u'hop', u'power', u'port'] [u'sydney', u'clear', u'murder', u'charg'] [u'tfga', u'chief', u'confid', u'constitut'] [u'gun', u'round'] [u'dead', u'arrest', u'west', u'bank', u'violenc'] [u'injur', u'blast'] [u'thursday', u'wimbledon', u'result'] [u'tissu', u'construct', u'team', u'grow'] [u'tradesman', u'cool', u'nerv', u'gold', u'australia'] [u'troop', u'solomon', u'month'] [u'turkey', u'seiz', u'citi', u'dwell', u'sheep', u'istanbul'] [u'soldier', u'kidnap', u'iraq', u'report'] [u'ullrich', u'casero', u'lead', u'bianchi', u'tour'] [u'critic', u'threaten', u'stabil'] [u'union', u'fight', u'entitl'] [u'univers', u'tell', u'wont', u'wors'] [u'unpreced', u'surgeri', u'separ', u'adult', u'twin'] [u'court', u'dismiss', u'appeal', u'moussaoui', u'access'] [u'court', u'rule', u'texa'] [u'soldier', u'kill', u'south', u'baghdad'] [u'troop', u'comb', u'iraq', u'miss', u'comrad'] [u'dairi', u'farmer', u'elect', u'nation', u'group'] [u'wallabi', u'dump', u'paul', u'grey'] [u'wall', u'street', u'upbeat'] [u'waterfal', u'inquiri', u'hear', u'foot', u'pedal', u'flaw'] [u'water', u'fund', u'boost', u'drought', u'area'] [u'westralia', u'inquiri', u'hear', u'vital', u'document', u'mislay'] [u'wholesal', u'deni', u'fraud', u'record', u'fine'] [u'wild', u'weather', u'damag', u'shop', u'perth'] [u'wiser', u'mundin', u'prepar', u'world', u'titl', u'fight'] [u'woman', u'guilti', u'tortur', u'child'] [u'woman', u'kill', u'husband', u'unfit', u'trial'] [u'million', u'river', u'clean'] [u'arrest', u'anti', u'terror', u'raid', u'offici'] [u'accc', u'warn', u'drug', u'compani', u'promot'] [u'apologis', u'threaten', u'detent', u'worker'] [u'doctor', u'examin', u'govt', u'medic', u'indemn', u'offer'] [u'blame', u'auction', u'process', u'land', u'sale'] [u'polic', u'investig', u'bash', u'accid'] [u'afghan', u'minist', u'call', u'better', u'condit'] [u'armi', u'punish', u'drug', u'user', u'cosgrov'] [u'aspinal', u'call', u'vigil', u'elimin', u'abus'] [u'aussi', u'gate', u'choos', u'help', u'mcewen', u'lotto'] [u'aussi', u'gatecrash', u'centenari', u'tour'] [u'bangladesh', u'flood', u'kill', u'maroon'] [u'bangladesh', u'gain', u'upper', u'hand'] [u'bangladesh', u'place', u'queensland'] [u'bayliss', u'disappoint', u'grid', u'posit'] [u'british', u'govt', u'odd', u'iraq', u'intellig'] [u'bewar', u'wound', u'franc', u'thorn', u'warn', u'black'] [u'blatter', u'world', u'qualifi', u'battl'] [u'brisban', u'anglican', u'reflect', u'difficult', u'year'] [u'burma', u'free', u'envoy'] [u'cameroon', u'unsung', u'hero'] [u'cameroon', u'play', u'final'] [u'china', u'ban', u'tourist', u'part', u'great', u'wall'] [u'china', u'offer', u'post', u'sar', u'fee', u'stimul', u'tourism'] [u'china', u'open', u'world', u'longest', u'steel', u'arch', u'bridg'] [u'cipo', u'tour', u'hop', u'dash', u'good', u'appeal'] [u'citi', u'manag', u'keegan', u'lead', u'tribut'] [u'clemenc', u'encourag', u'kurd', u'arm'] [u'cosgrov', u'welcom', u'compens', u'scheme'] [u'deni', u'mishandl', u'murder', u'suicid', u'threat'] [u'cwealth', u'address', u'indigen', u'immunis'] [u'ullrich', u'pull', u'nation'] [u'darwin', u'polic', u'forc', u'stop', u'supercar'] [u'davenport', u'coast', u'past', u'black'] [u'dee', u'destroy', u'saint'] [u'dee', u'destroy', u'saint', u'port', u'sink', u'swan'] [u'dragon', u'eagl', u'storm', u'blow', u'away', u'tiger'] [u'nino', u'meteorologist'] [u'fall', u'star', u'allow', u'unherald', u'lpga', u'light', u'shine'] [u'offer', u'rusedski', u'fine', u'report'] [u'farina', u'elia', u'stun', u'rubin'] [u'farmer', u'open', u'museum', u'preserv', u'fowl', u'past'] [u'fassa', u'petacchi', u'basso', u'gonzalez', u'tour'] [u'fitzgibbon', u'origin'] [u'wicket', u'debut', u'edward', u'wreck', u'lanka'] [u'flood', u'continu', u'glenelg'] [u'lockout', u'tuesday'] [u'french', u'foreign', u'minist', u'call', u'liberian', u'multi'] [u'friend', u'turn', u'effervesc', u'clijster'] [u'futur', u'world', u'peac', u'depend', u'bush'] [u'glamorgan', u'maher'] [u'great', u'dane', u'pace', u'french', u'open'] [u'hid', u'leav', u'lib', u'leadership', u'question', u'open'] [u'huston', u'join', u'johnson', u'halfway', u'lead', u'memphi'] [u'fisherman', u'rescu', u'coast'] [u'iran', u'negoti', u'extradit', u'senior', u'qaeda'] [u'italian', u'trio', u'hand', u'ban'] [u'judg', u'prowl', u'dirti', u'delhi', u'street', u'court'] [u'karlov', u'happi', u'defeat'] [u'king', u'name', u'indian', u'physic', u'trainer'] [u'landslid', u'kill', u'china'] [u'larg', u'wave', u'warn', u'north', u'coast'] [u'liberian', u'urg', u'interven'] [u'lion', u'extend', u'lead', u'tiger'] [u'lion', u'tame', u'tiger', u'pie', u'bash', u'bulldog'] [u'mandela', u'hint', u'refus', u'meet', u'bush'] [u'mandela', u'snub', u'bush', u'iraq', u'protest'] [u'hospitalis', u'home', u'invas', u'spear'] [u'marijuana', u'doesnt', u'perman', u'harm', u'brain', u'studi'] [u'mediat', u'suspend', u'liberia', u'peac', u'talk'] [u'mix', u'reaction', u'flood', u'fund'] [u'schumi', u'chican', u'rais', u'nuerburgr'] [u'forest', u'face', u'final', u'vote'] [u'vow', u'implement', u'anti', u'corrupt'] [u'polic', u'prepar', u'motorcycl', u'club', u'arriv'] [u'olymp', u'committe', u'win', u'appeal', u'prize', u'money'] [u'pakistan', u'hire', u'australian', u'coach', u'foster'] [u'pani', u'fastest', u'european', u'practic'] [u'paradorn', u'set', u'roddick', u'clash'] [u'peopl', u'smuggler', u'jail', u'netherland'] [u'pittman', u'hold', u'oslo'] [u'solomon', u'ratifi', u'border', u'treati'] [u'polic', u'investig', u'bicycl', u'accid'] [u'polic', u'york', u'burglar', u'stick', u'chimney'] [u'polic', u'ponder', u'adelaid', u'stab'] [u'polic', u'raid', u'townsvill', u'barrack', u'search', u'drug'] [u'polic', u'rescu', u'adrift', u'north', u'coast'] [u'polic', u'seek', u'attempt', u'abduct'] [u'port', u'power', u'swan'] [u'introduc', u'fit', u'industri', u'code', u'practic'] [u'raikkonen', u'put', u'pressur', u'schumach'] [u'rainman', u'feder', u'chew', u'fish', u'reach', u'fourth', u'round'] [u'rebel', u'kill', u'kashmir', u'polic'] [u'resid', u'angri', u'plan'] [u'rivkin', u'undergo', u'surgeri', u'today'] [u'road', u'extend', u'syria', u'lebanon', u'envoy'] [u'roddick', u'venus', u'breez'] [u'ronaldinho', u'edg', u'closer', u'unit', u'agent'] [u'rusti', u'black', u'edg', u'franc'] [u'rwanda', u'outlaw', u'race', u'base', u'polit', u'parti'] [u'govt', u'offer', u'emerg', u'grant', u'flood', u'victim'] [u'sar', u'upsurg', u'milder', u'impact'] [u'schuettler', u'go', u'mental'] [u'schwarzenegg', u'ponder', u'polit', u'career'] [u'scrappi', u'sandpip', u'brave', u'loss', u'oriol'] [u'scud', u'molik', u'gear'] [u'sculptor', u'edward', u'win', u'poimena', u'award'] [u'second', u'mar', u'rover', u'readi', u'florida', u'launch'] [u'seoul', u'second', u'round', u'wash'] [u'shark', u'edg', u'cowboy'] [u'shoaib', u'get', u'clear', u'skip', u'bangladesh', u'seri'] [u'simoni', u'miss', u'italian', u'championship'] [u'skaif', u'secur', u'pole'] [u'skier', u'maier', u'lead', u'tour', u'franc'] [u'south', u'pacif', u'game', u'fiji'] [u'speed', u'blitz', u'catch', u'tasmania'] [u'staff', u'shortag', u'mean', u'weekend', u'birth', u'forb'] [u'stem', u'cell', u'inject', u'paralys', u'rat', u'help'] [u'nurs', u'blast', u'govt', u'fund', u'increas'] [u'teenag', u'refus', u'bail', u'charg'] [u'telstra', u'deni', u'thousand', u'job', u'slash'] [u'kill', u'rebel', u'storm', u'armi', u'camp', u'kashmir'] [u'thousand', u'liberian', u'urg', u'intervent'] [u'thousand', u'korean', u'riot', u'polic', u'dispers'] [u'thousand', u'sign', u'anti', u'telemarket', u'list'] [u'fijian', u'life', u'coup', u'role'] [u'miss', u'soldier', u'dead', u'iraq'] [u'welcom', u'agre', u'isra', u'withdraw'] [u'send', u'team', u'assess', u'iraq', u'stabil'] [u'soldier', u'kill', u'hurt', u'baghdad', u'attack'] [u'soldier', u'kill', u'wound', u'grenad', u'attack'] [u'south', u'korea', u'agre', u'mission', u'swap', u'troop', u'withdraw'] [u'vacc', u'welcom', u'petrol', u'excis', u'evas', u'fine'] [u'vaughan', u'undergo', u'scan'] [u'polic', u'investig', u'partial', u'burn', u'bodi'] [u'wimbledon', u'result'] [u'wimbledon', u'programm'] [u'march', u'european', u'parad'] [u'abus', u'strategi', u'work', u'stay', u'vigil', u'aspinal'] [u'accc', u'head', u'fel', u'finish'] [u'actcoss', u'welcom', u'prison', u'plan'] [u'agassi', u'move', u'scud', u'rang', u'russian', u'revolut'] [u'ambros', u'make'] [u'anderson', u'deni', u'cost', u'seat'] [u'anthoni', u'order', u'inquiri', u'claim'] [u'arthriti', u'medicin', u'list'] [u'australian', u'west', u'win', u'dutch', u'grand', u'prix'] [u'balconi', u'collaps', u'kill', u'chicago'] [u'banger', u'roll', u'queensland', u'academi'] [u'barca', u'confirm', u'viduka'] [u'belgian', u'feel', u'chipper', u'record'] [u'blair', u'longer', u'trust', u'quit', u'poll'] [u'bolt', u'come', u'saddl', u'season'] [u'british', u'mountain', u'biker', u'sweep', u'world', u'downhil'] [u'brumbi', u'toppl', u'tonga'] [u'builder', u'group', u'deni', u'price', u'hike'] [u'burma', u'accus', u'west', u'stir', u'unrest'] [u'bush', u'gift', u'list', u'unwrap'] [u'calzagh', u'defend', u'super', u'middleweight', u'crown'] [u'cameroon', u'doctor', u'deni', u'dope', u'foe', u'death'] [u'capriati', u'race', u'duck', u'controversi'] [u'choi', u'slip', u'lead', u'korean', u'lead', u'seoul', u'charg'] [u'collat', u'wimbledon', u'result'] [u'crow', u'crush', u'blue'] [u'crow', u'leap', u'ladder', u'roo', u'slip'] [u'darwin', u'urg', u'support', u'indigen', u'music'] [u'deal', u'financi', u'futur', u'close', u'mclaren', u'boss'] [u'dem', u'warn', u'govt', u'telstra', u'senat', u'bulli'] [u'diseas', u'claim', u'live', u'indian', u'flood'] [u'downer', u'talk', u'safeti', u'solomon', u'intervent'] [u'dutch', u'abort', u'boat', u'cruis', u'polish', u'women'] [u'england', u'upbeat', u'vaughan'] [u'equal', u'custodi', u'law', u'lower', u'divorc', u'anthoni'] [u'farina', u'blast', u'fifa', u'backflip'] [u'farina', u'blast', u'fifa', u'world', u'backflip'] [u'ferrero', u'stay', u'cours', u'style'] [u'fifa', u'chang', u'mind', u'oceania', u'auto', u'qualif'] [u'destroy', u'build', u'aspley', u'drive'] [u'hous', u'finish', u'canberra', u'bushfir', u'rebuild'] [u'flatley', u'knock', u'fiji', u'roll', u'red'] [u'black', u'captain', u'say', u'haka', u'overus'] [u'face', u'court', u'follow', u'raid', u'armi', u'base'] [u'franc', u'cameroon', u'readi', u'emot', u'homag'] [u'french', u'yearn', u'badger', u'glori', u'day'] [u'fresh', u'clash', u'erupt', u'north', u'afghan', u'faction'] [u'gibernau', u'win', u'rain', u'drench', u'dutch', u'grand', u'prix', u'motogp'] [u'global', u'summit', u'women', u'kick', u'morocco'] [u'govt', u'laud', u'crime', u'solv', u'technolog'] [u'govt', u'reject', u'flood', u'compens'] [u'hawk', u'docker'] [u'hawk', u'docker', u'eagl', u'edg', u'roo'] [u'henin', u'good', u'molik'] [u'hodgman', u'pledg', u'loyalti', u'hid'] [u'lunch', u'date', u'birth', u'tour'] [u'say', u'sharapova', u'dump'] [u'iranian', u'protest', u'detent', u'activist'] [u'islam', u'jihad', u'accept', u'truce', u'prevent', u'civil'] [u'isra', u'palestinian', u'secur', u'offici', u'hold'] [u'journalist', u'hold', u'lao', u'face', u'death', u'penalti'] [u'kestrel', u'convinc', u'darter', u'phoenix'] [u'knifeman', u'rob', u'melbourn', u'servo'] [u'late', u'koen', u'penalti', u'rescu', u'springbok', u'puma'] [u'battl', u'commenc', u'tour'] [u'liberia', u'say', u'talk', u'intervent', u'forc'] [u'liberia', u'welcom', u'support'] [u'lucio', u'say', u'roma', u'deal'] [u'cut', u'mine', u'accid'] [u'face', u'court', u'wentworthvill', u'hous'] [u'maynard', u'jackson', u'funer', u'hold', u'clinton', u'pay', u'tribut'] [u'mccartney', u'consid', u'cuba', u'concert', u'report'] [u'molotov', u'cocktail', u'damag', u'alic', u'spring', u'shop'] [u'mother', u'claim', u'live', u'offer', u'rent'] [u'surpris', u'nation', u'parti', u'support', u'telstra'] [u'nalbandian', u'aim', u'wreck', u'henman', u'dream'] [u'nasa', u'hop', u'weather', u'hold', u'mar', u'launch'] [u'ngos', u'protect', u'gang', u'disband', u'offici'] [u'fair', u'play', u'fifa', u'oceania', u'turn'] [u'call', u'school', u'damag', u'list'] [u'rescu', u'worker', u'warn', u'wave', u'caus'] [u'set', u'sight', u'renew', u'energi', u'target'] [u'obyrn', u'fear', u'telstra', u'forget', u'region'] [u'omalley', u'pois', u'strike', u'franc'] [u'call', u'glenelg', u'flood', u'compens'] [u'panther', u'bulldog', u'knight', u'warrior'] [u'parent', u'citizen', u'educ'] [u'polic', u'attack', u'knife', u'parti'] [u'polic', u'diver', u'search', u'miss', u'fisherman'] [u'polic', u'investig', u'soccer', u'grind', u'death'] [u'polic', u'investig', u'south', u'yarra', u'stab'] [u'polic', u'forc', u'night', u'curfew'] [u'transport', u'investig', u'waterford', u'derail'] [u'queensland', u'bowl', u'bangladesh'] [u'raikkonen', u'swoop', u'pole'] [u'rice', u'invit', u'mazen', u'visit', u'washington'] [u'rice', u'talk', u'palestinian', u'isra', u'latest'] [u'rogg', u'criticis', u'lewi', u'work', u'arbeit'] [u'rural', u'group', u'worri', u'nino', u'caus'] [u'govt', u'urg', u'subsidis', u'immobilis'] [u'wind', u'open', u'speed', u'limit'] [u'schwab', u'say', u'soccer', u'australia', u'part', u'blame'] [u'scud', u'aussi', u'stand', u'wimbledon'] [u'sehwag', u'centuri', u'light', u'leicestershir'] [u'soccer', u'boss', u'slam', u'devast', u'world', u'turn'] [u'soorley', u'deni', u'brisban', u'flood', u'cover'] [u'spain', u'extradit', u'alleg', u'crimin', u'mexico'] [u'stanford', u'seiz', u'lpga', u'lead'] [u'state', u'doctor', u'threaten', u'strike', u'indemn'] [u'suncoast', u'jazz', u'festiv', u'get', u'solid', u'turnout'] [u'suspect', u'muslim', u'separatist', u'kill', u'soldier'] [u'sydney', u'council', u'complain', u'lose', u'fin'] [u'sydney', u'dioces', u'withdraw', u'appoint'] [u'tanner', u'call', u'medicar', u'dental'] [u'tariff', u'cut', u'slash', u'job', u'govt'] [u'seed', u'serena', u'blast', u'past', u'granvill'] [u'tour', u'franc', u'stage', u'stage'] [u'tour', u'franc', u'team', u'team'] [u'trescothick', u'solanki', u'overpow', u'protea'] [u'troop', u'polic', u'prepar', u'solomon', u'island'] [u'truce', u'follow', u'isra', u'palestinian', u'pullback', u'deal'] [u'turkey', u'beat', u'colombia', u'place'] [u'goal', u'etoo', u'dedic', u'spanish'] [u'miss', u'soldier', u'dead', u'iraq'] [u'ullrich', u'beat', u'armstrong', u'spanish', u'legend', u'indurain'] [u'call', u'quick', u'multin', u'forc', u'liberia'] [u'unherald', u'swedish', u'rooki', u'seiz', u'stroke'] [u'troop', u'detain', u'saddam', u'loyalist'] [u'govt', u'defend', u'hospit', u'manag'] [u'teenag', u'elig', u'meningococc', u'vaccin'] [u'farmer', u'worri', u'mcginti', u'health', u'stint'] [u'wander', u'fish', u'boat', u'spoil', u'probe', u'lift'] [u'wimbledon', u'seven', u'programm'] [u'windi', u'control', u'lanka'] [u'wreck', u'centaur', u'navi'] [u'accc', u'work', u'fel'] [u'accc', u'tackl', u'supermarket', u'grog', u'trade'] [u'consum', u'choos', u'electr', u'provid'] [u'obstetrician', u'weigh', u'work', u'futur'] [u'actu', u'want', u'famili', u'friend', u'workplac'] [u'say', u'fund', u'chang', u'fair'] [u'scale', u'salari', u'concess'] [u'aqsa', u'claim', u'shoot', u'reject', u'mideast', u'truce'] [u'ord', u'finish', u'year', u'lower'] [u'alston', u'offer', u'telstra', u'sale', u'assur'] [u'alston', u'open', u'radio', u'station'] [u'back', u'arthriti', u'drug', u'subsidi'] [u'say', u'medic', u'indemn', u'insur', u'crisi', u'fare'] [u'armi', u'major', u'kill', u'indian', u'kashmir'] [u'solomon', u'fund', u'rudd', u'urg'] [u'aust', u'troop', u'leav'] [u'beani', u'festiv', u'phenomenon'] [u'deal', u'pipelin'] [u'blix', u'step', u'post'] [u'bodi', u'redfern'] [u'brack', u'tempt', u'pull', u'plug', u'world', u'plan'] [u'bradman', u'baggi', u'green', u'fetch', u'record', u'price'] [u'brain', u'scan', u'clear', u'flatley', u'nation', u'seri'] [u'bushfir', u'probe', u'hold', u'public', u'hear'] [u'servic', u'run'] [u'truce', u'word'] [u'boost', u'region', u'stat'] [u'campbel', u'clear', u'parliamentari', u'panel'] [u'cane', u'toad', u'threaten', u'quoll', u'gulf', u'island'] [u'carr', u'defend', u'prison', u'handl', u'polit', u'assassin'] [u'char', u'angel', u'toppl', u'hulk'] [u'china', u'maintain', u'enceph', u'outbreak', u'small', u'scale'] [u'china', u'sign', u'bilater', u'trade', u'agreement'] [u'choi', u'win', u'seoul', u'playoff'] [u'claim', u'palestinian', u'ceasefir', u'offer', u'trap'] [u'colombian', u'armi', u'claim', u'cocain', u'bust', u'worth'] [u'connex', u'confid', u'train', u'network', u'takeov', u'success'] [u'conserv', u'probe', u'spark', u'compo'] [u'coron', u'report', u'footbal', u'death'] [u'coron', u'report', u'toddler', u'tragedi'] [u'council', u'negoti', u'agreement'] [u'council', u'step', u'nightclub', u'campaign'] [u'cover', u'downer', u'tell', u'solomon'] [u'cowboy', u'lose', u'mcwilliam', u'week'] [u'celebr', u'doohan'] [u'debat', u'continu', u'propos', u'weekend', u'net'] [u'diseas', u'threaten', u'wine', u'industri'] [u'doctor', u'shortag', u'fear', u'indemn', u'law'] [u'track', u'go', u'high', u'tech'] [u'down', u'continu'] [u'ask', u'consid', u'charg', u'babi', u'death'] [u'driver', u'fear', u'backlash', u'waterfal', u'inquiri', u'hear'] [u'dysart', u'death', u'suspici', u'polic'] [u'eadi', u'mcgee', u'spearhead', u'world', u'charg'] [u'elliott', u'ban', u'fin'] [u'elliott', u'slam', u'unfair', u'sentenc'] [u'enceph', u'kill', u'china'] [u'european', u'ferrari', u'point', u'todt'] [u'farmer', u'welcom', u'need', u'rain'] [u'train', u'profil', u'join', u'sydney', u'hunt'] [u'govt', u'boost', u'region', u'partnership'] [u'fel', u'blast', u'surgeon', u'close', u'shop'] [u'fertil', u'plant', u'worker', u'strike', u'cut'] [u'fiji', u'star', u'serevi', u'clear', u'ballymor', u'clash'] [u'crop', u'year', u'clermont', u'grower'] [u'dope', u'test', u'european', u'tour'] [u'forest', u'parliament'] [u'kill', u'algerian', u'unrest', u'mass', u'grave'] [u'free', u'papua', u'rebel', u'surrend', u'indonesia'] [u'fund', u'competit', u'shelv', u'research'] [u'german', u'cabinet', u'approv', u'cut', u'reviv', u'growth'] [u'good', u'rain', u'southern'] [u'govt', u'accus', u'speed', u'cut', u'revenu'] [u'govt', u'give', u'deadlin', u'solv', u'indemn', u'crisi'] [u'hail', u'cost'] [u'hama', u'islam', u'jihad', u'announc', u'mideast', u'ceasefir'] [u'help', u'worker', u'sharehold', u'busi'] [u'henri', u'golden', u'goal', u'take', u'franc', u'emot'] [u'homosexu', u'priest', u'issu', u'deepli', u'divis', u'anglican'] [u'hump', u'camel', u'dairi'] [u'hydroelectr', u'plant', u'power', u'year'] [u'indigen', u'immunis', u'educ', u'program', u'launch'] [u'indonesian', u'polic', u'airplan', u'boat'] [u'indonesian', u'soldier', u'face', u'aceh', u'rape', u'charg'] [u'hous', u'fraud', u'alleg'] [u'inquiri', u'look', u'balanc', u'conserv'] [u'insur', u'fear', u'stop', u'doctor', u'treat'] [u'internet', u'rise'] [u'investig', u'find', u'caus', u'plane', u'engin', u'shut'] [u'agre', u'delay', u'china', u'game'] [u'israel', u'start', u'withdraw', u'fatah', u'join', u'truce'] [u'jail', u'chief', u'magistr', u'resign'] [u'kalli', u'centuri', u'set', u'south', u'africa', u'victori'] [u'katharin', u'hepburn', u'die'] [u'kiwi', u'beat', u'young', u'aussi'] [u'labor', u'blast', u'closur', u'nation', u'agenc'] [u'labor', u'enlist', u'figur', u'telstra', u'fight'] [u'laidley', u'face', u'fine', u'umpir', u'critic'] [u'lawyer', u'screenplay', u'headlin', u'film', u'festiv'] [u'lightn', u'lose', u'mahoney', u'injuri'] [u'liverpool', u'join', u'race', u'kewel', u'report'] [u'local', u'govt', u'reform', u'includ', u'forc', u'redund'] [u'lockout', u'end', u'ballarat', u'part', u'plant'] [u'manag', u'chang', u'breast', u'screen', u'group'] [u'meet', u'consid', u'poki'] [u'mideast', u'shoot', u'mar', u'truce'] [u'minist', u'rule', u'driver', u'train', u'surveil'] [u'moran', u'funer', u'hold', u'today'] [u'woe', u'electrolux', u'disput'] [u'mountain', u'crash', u'kill', u'colombia'] [u'surpris', u'water', u'fund', u'elig'] [u'nasa', u'delay', u'mar', u'rover', u'launch'] [u'natasha', u'ryan', u'side', u'offic', u'ignor'] [u'artwork', u'reconcili', u'place'] [u'hand', u'control', u'caus', u'concern', u'shooter'] [u'medic', u'clinic', u'open'] [u'nightmar', u'race', u'mileston'] [u'action', u'resourc'] [u'teach', u'staff', u'work', u'close', u'school'] [u'word', u'fingleton', u'lawyer'] [u'retain', u'mandatori', u'life', u'murder', u'sentenc'] [u'obstetr', u'servic', u'limit', u'midnight'] [u'omalley', u'gold', u'break', u'drought', u'franc'] [u'opposit', u'claim', u'govt', u'blame', u'obstetr'] [u'outback', u'highway', u'fund', u'unavail', u'anderson'] [u'tune', u'guitar', u'band', u'set', u'record'] [u'pacif', u'nation', u'hammer', u'solomon', u'plan'] [u'passeng', u'face', u'taxi', u'fare', u'increas'] [u'perilya', u'plead', u'huge', u'insur', u'rise'] [u'phelp', u'smash', u'record'] [u'pilbara', u'polic', u'happi', u'commission', u'tenur'] [u'plan', u'bodi', u'take', u'minist', u'role'] [u'plan', u'afoot', u'bowral', u'cathol', u'school'] [u'plan', u'anglican', u'school'] [u'plan', u'anglican', u'school'] [u'polic', u'captur', u'alleg', u'bali', u'deputi'] [u'polic', u'continu', u'investig', u'bodi'] [u'polic', u'continu', u'probe', u'fatal', u'crash'] [u'polic', u'patrol', u'begin', u'wake', u'sydney', u'attack'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'probe', u'umbrella', u'injuri', u'junior', u'soccer', u'match'] [u'polic', u'resum', u'hunt', u'miss'] [u'polic', u'target', u'sexual', u'slaveri', u'perth'] [u'port', u'press', u'lion', u'premiership', u'favourit'] [u'privat', u'hospit', u'admiss'] [u'probe', u'launch', u'dune', u'destruct'] [u'prosecutor', u'amrozi'] [u'putin', u'play', u'host', u'film', u'star', u'visit', u'moscow'] [u'crow', u'chook', u'museum'] [u'ralf', u'lead', u'william'] [u'ralf', u'schumach', u'lead', u'william'] [u'inforc', u'need', u'iraq', u'congressmen'] [u'repair', u'broom', u'water', u'suppli'] [u'airlin', u'depart'] [u'river', u'plate', u'crown', u'argentin', u'champion'] [u'road', u'fund', u'agenda', u'congress'] [u'rooster', u'sign', u'fittler'] [u'rous', u'dedic', u'french', u'titl', u'dead', u'team', u'mate'] [u'ryan', u'readi', u'boomer', u'debut'] [u'govt', u'defend', u'handl', u'glenelg', u'flood'] [u'atkinson', u'step', u'asid'] [u'step', u'asid', u'pend', u'corrupt', u'probe'] [u'scud', u'face', u'agassi'] [u'secur', u'hotlin', u'log', u'call'] [u'senter', u'beatti', u'charg'] [u'shark', u'bite', u'hapless', u'cowboy'] [u'sharp', u'futur', u'doubt'] [u'sharp', u'part', u'shoot', u'eagl'] [u'sharp', u'quit', u'eagl'] [u'sidebottom', u'continu', u'despit', u'fin'] [u'simpler', u'return', u'trial', u'townsvill'] [u'slay', u'underworld', u'figur', u'buri', u'melbourn'] [u'ratepay', u'face', u'rat', u'rise', u'cabooltur'] [u'ratepay', u'face', u'septic', u'tank', u'fin'] [u'rain', u'spell', u'drought'] [u'stanford', u'captur', u'lpga', u'crown'] [u'straw', u'iran', u'talk', u'tough', u'nuke'] [u'student', u'hear', u'drug', u'danger'] [u'sugar', u'grower', u'urg', u'diversifi'] [u'support', u'mall', u'polic'] [u'polic', u'chase', u'rise'] [u'tassi', u'polic', u'demand', u'mainland', u'wag'] [u'cut', u'come', u'forc', u'ansett', u'levi', u'take', u'flight'] [u'taylor', u'urg', u'intervent'] [u'teach', u'teen', u'defens', u'drive', u'polic'] [u'teen', u'die', u'crash'] [u'telstra', u'work', u'fix', u'fault'] [u'text', u'hama', u'islam', u'jihad', u'truce', u'statement'] [u'tom', u'hold', u'price', u'grab', u'titl'] [u'train', u'servic', u'track', u'derail'] [u'transit', u'team', u'replac', u'peac', u'monitor'] [u'truck', u'driver', u'escap', u'crash', u'lake', u'church'] [u'turnaround', u'month', u'trade', u'perform'] [u'health', u'council', u'great', u'southern'] [u'union', u'voic', u'concern', u'mine', u'accid'] [u'solomon', u'forc'] [u'urib', u'unveil', u'plan', u'colombia', u'civil'] [u'launch', u'fresh', u'iraq', u'crackdown'] [u'senat', u'leader', u'support'] [u'vanuatu', u'test', u'water', u'scuba', u'post', u'offic'] [u'victoria', u'critic', u'sign', u'health', u'care'] [u'lead', u'biotech', u'role', u'say', u'premier'] [u'volunt', u'aliv', u'vigil', u'british'] [u'wallabi', u'worri', u'disput'] [u'wimbledon', u'plot', u'thicken', u'second', u'week', u'loom'] [u'windi', u'romp', u'test', u'seri', u'lanka'] [u'windsor', u'challeng', u'telstra', u'claim'] [u'work', u'disput'] [u'worker', u'rise'] [u'world', u'star', u'gazer', u'gather', u'sydney'] [u'catallini', u'reject', u'italian', u'offer'] [u'job', u'hold', u'abattoir', u'shut'] [u'indemn', u'concern', u'creat', u'obstetr', u'confus'] [u'medic', u'crisi', u'avert'] [u'albani', u'councillor', u'jack', u'tape'] [u'analyst', u'stay', u'rat'] [u'anderson', u'encourag', u'outback', u'highway', u'propon'] [u'anderson', u'eye', u'ethanol', u'grant'] [u'develop', u'particl', u'power', u'mar', u'mission'] [u'announc', u'junior', u'develop', u'plan'] [u'artist', u'endeavour', u'win', u'pool', u'territorian'] [u'associ', u'welcom', u'exempt', u'donat'] [u'asylum', u'seeker', u'intercept'] [u'attack', u'erod', u'public', u'support', u'iraq', u'invas'] [u'audit', u'give', u'defenc', u'report', u'card'] [u'australia', u'doubl', u'solomon'] [u'australian', u'sound', u'recordist', u'injur', u'iraq'] [u'avellino', u'netbal', u'australia'] [u'injuri', u'threaten', u'express'] [u'bakhtiyari', u'famili', u'remain', u'separ'] [u'bali', u'suspect', u'contact'] [u'barn', u'swear', u'coron'] [u'barn', u'swear', u'coron'] [u'beckham', u'arriv', u'madrid', u'seal', u'real'] [u'black', u'cap', u'coach', u'aberhart', u'quit'] [u'bomb', u'mosqu', u'wound', u'southern', u'afghanistan'] [u'bosnich', u'appeal', u'hear', u'date'] [u'brown', u'johnson', u'lion'] [u'buck', u'manag', u'take', u'jordan'] [u'budget', u'accom', u'crisi', u'law', u'rais', u'standard'] [u'bumper', u'prawn', u'year', u'tip', u'exmouth', u'gulf'] [u'burnett', u'land', u'develop', u'win', u'environ', u'court'] [u'cancer', u'remiss', u'say', u'boycott'] [u'your', u'dead', u'brazilian', u'tell'] [u'capriati', u'cruis', u'quarter', u'final'] [u'label', u'greenhous', u'emiss', u'level'] [u'chopper', u'loss', u'wont', u'endang', u'surf', u'rescu', u'slsq'] [u'chopper', u'owner', u'warn', u'rotor', u'blade', u'fault'] [u'citi', u'meet', u'countri', u'townsvill'] [u'clijster', u'mow', u'sugiyama'] [u'coastwatch', u'intercept', u'illeg', u'fish', u'boat'] [u'collector', u'arrest', u'bullet', u'parcel', u'explod'] [u'communiti', u'council', u'amalgam', u'stronger', u'voic'] [u'complain', u'bark', u'wrong', u'tree'] [u'conneri', u'clinch', u'worst', u'accent'] [u'convict', u'murder', u'enter', u'societi'] [u'corrupt', u'lawless', u'put', u'pacif', u'nation'] [u'cost', u'relief', u'motor', u'neuron', u'drug', u'hit', u'list'] [u'cotton', u'downturn', u'central', u'highland', u'economi'] [u'cowboy', u'fanci', u'chanc', u'player', u'bid'] [u'croyden', u'get', u'rail', u'station'] [u'miss', u'gulf'] [u'dead', u'walk', u'hunt', u'brazil'] [u'demonstr', u'caus', u'havoc', u'nigeria', u'fuel'] [u'dinner', u'focus', u'davenport'] [u'disgrac', u'rumsa', u'test'] [u'docker', u'lose', u'simmond', u'match'] [u'dog', u'cat', u'poison', u'break', u'hill'] [u'dollar', u'hit', u'year', u'high'] [u'drink', u'spike', u'test', u'launch', u'today'] [u'bigger', u'fee', u'cover', u'insur', u'hike'] [u'eager', u'serena', u'power', u'quarter'] [u'england', u'sweat', u'skipper', u'vaughan'] [u'recommend', u'scrap', u'barrow', u'island', u'plant'] [u'fail', u'coal', u'creditor', u'bank', u'task'] [u'farmer', u'group', u'say', u'buyback', u'sacrific'] [u'farmer', u'welcom', u'parliamentari', u'inquiri', u'water'] [u'team', u'name'] [u'firefight', u'protest', u'win', u'govt', u'meet'] [u'fisherman', u'fin', u'unders', u'lobster'] [u'fishermen', u'push', u'dredg', u'mooloolah'] [u'flexibl', u'attract', u'dentist', u'carter'] [u'footbal', u'styne', u'name', u'victorian', u'year'] [u'exec', u'face', u'court'] [u'execut', u'face', u'court'] [u'iraqi', u'kill', u'injur', u'fallujah'] [u'hunt', u'poll', u'blair', u'pressur'] [u'franklin', u'lesson', u'appli', u'log', u'debat'] [u'french', u'explor', u'main', u'base'] [u'fruit', u'grower', u'afford', u'rise'] [u'fund', u'secur', u'upgrad', u'ansett', u'levi', u'oppn'] [u'gascoign', u'owe', u'money', u'gansu', u'agent'] [u'gasnier', u'heart', u'dragon'] [u'gaza', u'highway', u'templ', u'flashpoint', u'reopen'] [u'david', u'mclaren'] [u'gija', u'peopl', u'offer', u'reserv'] [u'govt', u'defend', u'hike', u'fee', u'fin'] [u'govt', u'order', u'mobil', u'jam', u'studi'] [u'govt', u'continu', u'fund', u'polic', u'strategi'] [u'great', u'lake', u'face', u'rat', u'hike'] [u'hagan', u'interest', u'maroon'] [u'hard', u'time', u'ahead', u'bush', u'icon'] [u'heavi', u'rain', u'devast', u'southern', u'china'] [u'henin', u'hardenn', u'make', u'william', u'sister', u'favourit'] [u'henman', u'surviv', u'reach'] [u'hutchison', u'name', u'legend', u'list'] [u'immigr', u'offic', u'charg', u'visa', u'fraud'] [u'independ', u'dope', u'observ', u'tour'] [u'indigen', u'traine', u'build', u'papunya', u'pride'] [u'indonesia', u'honour', u'keelti', u'bali', u'investig'] [u'indonesian', u'reform', u'investor', u'confid'] [u'insur', u'forc', u'doctor', u'abandon'] [u'israel', u'freez', u'bias', u'report'] [u'kewel', u'agent', u'lash', u'leed'] [u'land', u'valuer', u'start', u'work', u'ban', u'resourc'] [u'exil', u'label', u'journalist', u'sentenc', u'legal', u'comedi'] [u'lao', u'court', u'sentenc', u'journalist', u'year'] [u'lara', u'take', u'hayden', u'bat', u'crown'] [u'chanc', u'oppos', u'east', u'point', u'develop'] [u'launceston', u'train', u'camera', u'inner', u'citi', u'secur'] [u'laura', u'go', u'save', u'histor', u'race'] [u'leav', u'hewitt', u'philippoussi'] [u'leblanc', u'stay'] [u'lion', u'chairman', u'say', u'club', u'punish', u'success'] [u'lion', u'chairman', u'say', u'club', u'pay', u'success'] [u'lion', u'loser', u'swan', u'boss', u'say'] [u'love', u'fare', u'fiji', u'rugbi', u'player', u'happi'] [u'appeal', u'sentenc', u'cricket', u'attack'] [u'arrest', u'hit', u'woman'] [u'charg', u'polic', u'assault'] [u'face', u'court', u'virgin', u'scare'] [u'injur', u'home', u'invas'] [u'manufactur', u'sector', u'neutral'] [u'buy', u'nrma', u'health'] [u'mcgradi', u'expect', u'action', u'ryan', u'case', u'laps'] [u'meet', u'discuss', u'impact', u'take', u'water'] [u'mildura', u'council', u'cut', u'job', u'save', u'near'] [u'money', u'motiv', u'transvestit', u'murder', u'court', u'hear'] [u'crossbow'] [u'murder', u'victim', u'sister', u'seek', u'protect'] [u'murray', u'add', u'threaten', u'speci', u'list'] [u'najaf', u'governor', u'arrest', u'kidnap', u'corrupt'] [u'nasa', u'releas', u'email', u'doom', u'shuttl', u'crew'] [u'propos', u'sydney', u'airport', u'fee', u'regul'] [u'firefight', u'tackl', u'danger', u'chemic'] [u'neighbour', u'organis', u'kidney', u'donat'] [u'newcastl', u'coach', u'eye', u'bennett', u'origin'] [u'immigr', u'visa', u'come', u'effect'] [u'regul', u'protect', u'harbour', u'penguin'] [u'south', u'wale', u'race', u'rumbl'] [u'speed', u'camera', u'pose', u'run', u'risk'] [u'watchdog', u'demand', u'fair'] [u'nightclub', u'angri', u'propos', u'trade', u'hour'] [u'korea', u'threaten', u'merciless', u'respons'] [u'celebr', u'year', u'self', u'govt'] [u'offic', u'step', u'posit', u'fiji'] [u'offici', u'corrupt', u'sentenc', u'suspend'] [u'olymp', u'stadium', u'host', u'women', u'cricket', u'match'] [u'opinion', u'golf', u'dope', u'test', u'farc'] [u'oppon', u'food', u'irradi', u'plant', u'seek', u'court'] [u'opposit', u'pursu', u'govt', u'resign'] [u'pair', u'plead', u'guilti', u'tobacco', u'excis', u'fraud'] [u'parent', u'bedsid', u'injur', u'correspond'] [u'patterson', u'put', u'indemn', u'blame', u'state', u'feet'] [u'phone', u'jam', u'need', u'prevent', u'crime', u'minist'] [u'target', u'amnesti', u'protest'] [u'polic', u'concern', u'drink', u'drive', u'figur'] [u'polic', u'hope', u'jewelleri', u'identifi', u'murder', u'victim'] [u'polic', u'releas', u'gangland', u'murder', u'detail'] [u'polic', u'burn', u'bodi', u'miss', u'gippsland'] [u'pope', u'name', u'archbishop', u'boston'] [u'popp', u'call', u'tune', u'book', u'scud', u'clash'] [u'port', u'hedland', u'child', u'abus', u'charg'] [u'portsmouth', u'boss', u'open', u'arm', u'teddi'] [u'price', u'return', u'tiger'] [u'program', u'launch', u'combat', u'unfair', u'retail', u'practic'] [u'look', u'chief', u'magistr'] [u'quick', u'step', u'lose', u'pole'] [u'rain', u'renew', u'hope', u'riverina', u'rice', u'crop'] [u'rebel', u'cabonn', u'ratepay', u'want', u'join', u'orang'] [u'refineri', u'pursu', u'reduc', u'dust', u'emiss'] [u'renison', u'bell', u'creditor', u'meet', u'administr'] [u'renmark', u'grower', u'help', u'manag'] [u'right', u'group', u'critic', u'timor', u'polic'] [u'rock', u'shed', u'light', u'aborigin', u'cultur'] [u'rocket', u'roddick', u'send', u'paradorn', u'pack'] [u'ruddock', u'claim', u'region', u'support', u'asylum', u'polici'] [u'farmer', u'band', u'electr'] [u'santo', u'summon', u'brisban', u'spill'] [u'water', u'restrict', u'begin', u'today'] [u'scant', u'regard', u'small', u'window'] [u'scientist', u'hope', u'crown', u'thorn', u'feast', u'wind'] [u'scud', u'revel', u'agassi', u'upset'] [u'second', u'mar', u'launch', u'delay'] [u'sharapova', u'defeat', u'complet', u'russian'] [u'share', u'market', u'recov', u'earli', u'loss'] [u'sharon', u'mazen', u'discuss', u'secur'] [u'shia', u'fatwa', u'oppos', u'iraq', u'constitut', u'council', u'plan'] [u'shoot', u'rais', u'buyback', u'question', u'doctor'] [u'simoni', u'lead', u'saeco', u'team'] [u'six', u'catallini', u'reject', u'italian', u'offer'] [u'soldier', u'plead', u'guilti', u'danger', u'drug'] [u'speed', u'limit', u'reduct', u'bandaid', u'measur', u'council'] [u'splatomet', u'drive', u'insect', u'count'] [u'star', u'coast', u'jockey', u'cop', u'suspens'] [u'state', u'fee', u'hike', u'harder', u'region', u'victoria'] [u'studi', u'chart', u'impact', u'brain', u'food'] [u'styne', u'name', u'victorian', u'year'] [u'super', u'fund', u'expect', u'remain'] [u'swan', u'pleas', u'reduc', u'concess'] [u'tableland', u'farmer', u'drought', u'relief'] [u'handgun', u'pass', u'buyback', u'begin'] [u'terror', u'cours', u'spread', u'wing'] [u'tesk', u'consid', u'men', u'match'] [u'test', u'tube', u'babi', u'risk', u'genet'] [u'eye', u'kimberley', u'croc', u'count'] [u'trio', u'question', u'theft', u'speed'] [u'truck', u'driver', u'criticis', u'diesel', u'price', u'hike'] [u'tweed', u'leagu', u'meet', u'attack'] [u'union', u'gear', u'industri', u'campaign'] [u'unpreced', u'action', u'secur', u'public', u'servant'] [u'grape', u'import', u'squeez', u'local', u'product'] [u'hand', u'detain', u'syrian', u'border', u'guard'] [u'troop', u'injur', u'baghdad', u'explos'] [u'venus', u'aveng', u'zvonareva', u'defeat'] [u'grant', u'parent', u'return', u'workforc'] [u'victim', u'sister', u'anger', u'murder', u'parol', u'chanc'] [u'govt', u'avert', u'rural', u'doctor', u'stopwork'] [u'water', u'worri', u'lose', u'project', u'job', u'coolgardi'] [u'weather', u'lift', u'balloon', u'aloft', u'mildura'] [u'west', u'bank', u'shoot', u'mar', u'truce'] [u'william', u'titl', u'challeng', u'gather', u'speed'] [u'wimbledon', u'programm'] [u'wimmera', u'find', u'good', u'look'] [u'woodward', u'extend', u'england', u'contract'] [u'worker', u'help', u'skill', u'bundaberg'] [u'concern', u'discard', u'fish', u'net'] [u'yoong', u'demand', u'overdu', u'wag', u'minardi'] [u'zimbabw', u'unchang', u'england', u'clash'] [u'kill', u'indian', u'rail', u'accid'] [u'abbott', u'want', u'investig', u'sutton'] [u'accc', u'approv', u'cole', u'myer', u'shell', u'deal'] [u'aceh', u'conflict', u'spread', u'citi', u'militari'] [u'acoss', u'claim', u'network', u'unreli'] [u'surgeri', u'postpon', u'insur', u'disput'] [u'hour', u'servic', u'get', u'thumb'] [u'age', u'care', u'centr', u'offici', u'open', u'door'] [u'hard', u'lesson', u'danger', u'pick', u'hitchhik'] [u'alcohol', u'restrict', u'begin', u'meekatharra'] [u'black', u'mehrten', u'return', u'injuri'] [u'call', u'alcohol'] [u'confid', u'indemn', u'crisi', u'resolv'] [u'welcom', u'result', u'dairi', u'studi'] [u'armi', u'unveil', u'reserv', u'respons', u'forc'] [u'artifici', u'heart', u'offer', u'transplant', u'altern'] [u'pleas', u'africa', u'agreement'] [u'atsic', u'order', u'robinson', u'leak', u'probe'] [u'atsi', u'take', u'fund', u'control'] [u'aussi', u'dollar', u'reach', u'year', u'high'] [u'australia', u'help', u'indonesia', u'protect', u'fisheri'] [u'australian', u'face', u'death', u'penalti', u'vietnam'] [u'reject', u'isra', u'charg', u'demonis', u'jewish'] [u'booklet', u'highlight', u'grape', u'advic'] [u'brisban', u'petrol', u'station', u'switch', u'sulphur'] [u'british', u'head', u'iraq', u'peac', u'keep', u'forc'] [u'broadway', u'dim', u'light', u'farewel', u'hepburn'] [u'builder', u'welcom', u'chang', u'plan'] [u'bush', u'cut', u'militari', u'countri'] [u'bush', u'reiter', u'commit', u'stabilis', u'iraq'] [u'busi', u'concern', u'plastic', u'plant', u'decis'] [u'boost', u'indigen', u'polit', u'involv'] [u'car', u'reliv', u'redex', u'trial'] [u'cathol', u'school', u'teacher', u'protest'] [u'chain', u'fraud', u'alert', u'polic'] [u'challeng', u'dairi', u'deal', u'near', u'complet'] [u'chang', u'afoot', u'educ', u'district'] [u'charg', u'bomb', u'hoax', u'suspect', u'dismiss'] [u'christian', u'school', u'move', u'harri', u'potter'] [u'citi', u'hill', u'plan', u'spark', u'chamber', u'concern'] [u'comic', u'actor', u'buddi', u'hackett', u'die'] [u'compens', u'claim', u'lead', u'closur'] [u'council', u'consid', u'deer', u'cull'] [u'council', u'defend', u'develop'] [u'council', u'hop', u'resolut', u'abattoir', u'plan'] [u'councillor', u'highlight', u'road', u'scheme', u'concern'] [u'councillor', u'unhappi', u'stall', u'council'] [u'council', u'consid', u'merger', u'applic'] [u'council', u'focus', u'issu', u'court', u'case'] [u'court', u'tell', u'admit', u'stab', u'wife'] [u'cracker', u'night', u'go', u'bang'] [u'dairi', u'farmer', u'face', u'uncertainti', u'suppli', u'chang'] [u'datson', u'tour', u'europ', u'opal'] [u'deep', u'probe', u'go', u'miss'] [u'defenc', u'personnel', u'long', u'east', u'timor', u'stint'] [u'luca', u'leav', u'chelsea', u'home'] [u'dictionari', u'say', u'american', u'get', u'phatter'] [u'dollar', u'rise', u'rate', u'decis'] [u'drought', u'affect', u'farmer', u'urg', u'appli', u'fund'] [u'econom', u'data', u'support', u'rate', u'decis'] [u'educ', u'shake', u'welcom'] [u'england', u'consolid', u'world', u'rugbi', u'rank'] [u'euro', u'footbal', u'boss', u'warn', u'england', u'turkey'] [u'exchang', u'rate', u'help', u'plastic', u'plant', u'hold'] [u'farmer', u'group', u'back', u'call', u'rat'] [u'fertilis', u'worker', u'strike', u'redund'] [u'drama', u'minor', u'incid', u'qanta', u'say'] [u'beckham', u'sign', u'real', u'deal'] [u'detect', u'plead', u'guilti', u'theft'] [u'yugoslav', u'colonel', u'face', u'crime', u'tribun'] [u'french', u'summer', u'festiv', u'threat'] [u'frustrat', u'egan', u'look', u'reviv'] [u'giant', u'squid', u'steal', u'spotlight', u'museum'] [u'gold', u'miner', u'play', u'impact', u'shed', u'plan'] [u'govt', u'back', u'drug', u'money'] [u'govt', u'consid', u'barrow', u'project'] [u'govt', u'deni', u'second', u'boat', u'sight'] [u'govt', u'releas', u'asylum', u'seeker', u'figur'] [u'govt', u'silent', u'asylum', u'seeker'] [u'grant', u'fund', u'cancer', u'diabet', u'research'] [u'grosjean', u'intimid', u'henman', u'hysteria'] [u'group', u'urg', u'venezuelan', u'presid', u'halt', u'media'] [u'resid', u'stage', u'mass', u'ralli'] [u'hobart', u'woman', u'prepar', u'releas', u'son', u'killer'] [u'hope', u'health', u'centr', u'spin', u'off'] [u'horizon', u'flight', u'decis'] [u'howard', u'warn', u'pacif', u'state', u'risk'] [u'hudson', u'eye', u'second', u'hockey', u'gold'] [u'icon', u'fish', u'join', u'threaten', u'speci', u'list'] [u'india', u'pakistan', u'cricket', u'truce'] [u'indigen', u'aquacultur', u'project', u'believ'] [u'indigen', u'health', u'receiv', u'fund', u'boost'] [u'indonesian', u'terrorist', u'extrem'] [u'indonesian', u'crew', u'miss', u'aceh'] [u'iraq', u'glisten', u'gold'] [u'initi', u'aim', u'boost', u'remot', u'teacher', u'shortag'] [u'rat', u'remain', u'hold'] [u'investig', u'begin', u'qanta'] [u'iraqi', u'resid', u'reveng'] [u'irrig', u'suffer', u'water', u'right'] [u'israel', u'begin', u'bethlehem', u'withdrawl'] [u'job', u'council', u'shakeup'] [u'white', u'maltster', u'plan', u'adelaid'] [u'judg', u'ramp', u'child', u'scam', u'sentenc'] [u'knight', u'aim', u'talent', u'junior'] [u'latham', u'vow', u'wont', u'tone'] [u'leed', u'rule', u'sell', u'viduka', u'barca'] [u'levi', u'scrap', u'help', u'boost', u'great', u'southern'] [u'life', u'player', u'spectat'] [u'life', u'ban', u'brawl', u'player', u'famili'] [u'lloyd', u'doubt', u'kilda'] [u'magistr', u'ask', u'adjourn', u'robinson', u'hear'] [u'malaysia', u'open', u'centr', u'combat', u'terror', u'drop'] [u'face', u'sentenc', u'burglari'] [u'hospitalis', u'home', u'invas'] [u'hospit', u'incid'] [u'man', u'sight', u'damag', u'woomera', u'unrest', u'court', u'tell'] [u'mareeba', u'council', u'aim', u'balanc', u'budget'] [u'matern', u'group', u'call', u'midwiv', u'countri'] [u'mayor', u'seek', u'beatti', u'canal', u'develop', u'meet'] [u'mcleod', u'keen', u'kane', u'match'] [u'medic', u'crisi', u'continu', u'anaesthetist', u'refus'] [u'minist', u'confid', u'immigr'] [u'mix', u'respons', u'wind', u'farm', u'plan'] [u'mock', u'disast', u'emerg', u'servic', u'test'] [u'fund', u'need', u'stop', u'drug', u'cheat', u'rogg'] [u'radiat', u'therapist', u'resign', u'workload'] [u'rain', u'help', u'swan', u'hill', u'farmer'] [u'peopl', u'arrest', u'nigeria', u'riot'] [u'nat', u'rumbl', u'spread', u'telstra', u'sale'] [u'armi', u'reserv', u'respons', u'forc', u'launch'] [u'plan', u'noosa', u'river', u'manag'] [u'nhulunbuy', u'choos', u'termit', u'studi'] [u'korea', u'develop', u'warhead', u'report'] [u'return', u'fame', u'coolangatta', u'gold'] [u'govt', u'rescu', u'council', u'insur', u'plight'] [u'laud', u'drop', u'young', u'peopl', u'face', u'court'] [u'parliament', u'okay', u'embryo', u'research'] [u'redraw', u'elector', u'boundari'] [u'teacher', u'review', u'child', u'abus', u'definit'] [u'nurs', u'flee', u'bidyadanga', u'safeti', u'fear'] [u'oceania', u'lead', u'player', u'say', u'asia'] [u'omalley', u'name', u'boston', u'archbishop'] [u'opposit', u'brand', u'common', u'grind', u'propaganda'] [u'outback', u'highway', u'backer', u'confid', u'fund'] [u'palestinian', u'arrest', u'gunman', u'west', u'bank', u'shoot'] [u'palestinian', u'secur', u'forc', u'control'] [u'patrick', u'corp', u'consid', u'tasrail', u'stake'] [u'increas', u'posit', u'spin'] [u'pest', u'control', u'standard', u'like', u'final', u'tick'] [u'philippoussi', u'set', u'sight', u'wimbledon', u'semi', u'final'] [u'planet', u'want', u'peopl', u'fin', u'cigarett'] [u'plan', u'moot', u'emerg', u'servic', u'nerv', u'centr'] [u'plan', u'begin', u'communiti', u'bank'] [u'polic', u'oper', u'hing', u'local', u'area', u'command'] [u'polic', u'probe', u'teen', u'shoot'] [u'polic', u'search', u'bodi', u'case'] [u'polic', u'investig', u'style', u'shoot'] [u'poverti', u'hear', u'head', u'wollongong'] [u'profession', u'wrestler', u'wife', u'charg', u'steroid'] [u'push', u'continu', u'driver', u'educ', u'fund'] [u'girl', u'rescu', u'larapinta', u'trail'] [u'push', u'crossbow', u'licenc'] [u'question', u'ask', u'chelsea', u'sale'] [u'rain', u'good', u'sign', u'irrig', u'season'] [u'rain', u'good', u'news', u'farmer'] [u'rain', u'wash', u'away', u'vaughan', u'inning', u'match'] [u'ralli', u'austoft', u'worker', u'seek', u'answer'] [u'rat', u'hit', u'market', u'boost', u'dollar'] [u'rat', u'hold', u'straight', u'month'] [u'recreat', u'centr', u'move', u'ahead'] [u'cross', u'issu', u'blood'] [u'region', u'fund', u'money', u'commit', u'brumbi'] [u'report', u'highlight', u'danger', u'highway', u'section'] [u'rethink', u'need', u'drug', u'control', u'expert', u'say'] [u'robinson', u'committ', u'hear', u'adjourn'] [u'roma', u'host', u'ralli', u'particip'] [u'royal', u'adelaid', u'get', u'burn', u'unit'] [u'rudd', u'ask', u'downer', u'north', u'korea', u'weapon', u'report'] [u'ruddock', u'defend', u'border', u'patrol'] [u'ruddock', u'defend', u'expens', u'parent', u'visa'] [u'santo', u'face', u'court', u'spill'] [u'opposit', u'concern', u'hospit', u'board'] [u'schalken', u'miss', u'quarter', u'final', u'injuri'] [u'second', u'face', u'court', u'visa', u'scam'] [u'sharon', u'meet', u'mazen', u'jerusalem'] [u'smith', u'rule', u'south', u'africa', u'clash'] [u'solomon', u'intervent', u'region', u'solut', u'mckinnon'] [u'solut', u'seek', u'rail', u'line', u'dilemma'] [u'state', u'agre', u'nation', u'paedophil', u'regist'] [u'station', u'owner', u'welcom', u'move', u'asid', u'land'] [u'sutton', u'apologis', u'picket', u'line', u'behaviour'] [u'talk', u'begin', u'rebuild', u'histor', u'church'] [u'tax', u'time', u'ahead', u'club', u'industri'] [u'teacher', u'stop', u'work', u'tafe', u'chang'] [u'thousand', u'protest', u'law'] [u'tire', u'william', u'sister', u'crash', u'doubl'] [u'toowoomba', u'boxer', u'look', u'comeback'] [u'women', u'wimbledon', u'semi'] [u'women', u'face', u'wimbledon', u'semi', u'final'] [u'toxic', u'chemic', u'dont', u'pose', u'health', u'risk'] [u'truck', u'industri', u'air', u'safeti', u'concern'] [u'understrength', u'boomer', u'prepar', u'czech', u'clash'] [u'track', u'star', u'upstag', u'nigerian', u'flier'] [u'troop', u'target', u'baghdad'] [u'vivendi', u'seek', u'depth', u'talk', u'dispos'] [u'pastoralist', u'break', u'assist', u'drought'] [u'warn', u'shortag', u'worsen'] [u'wheat', u'board', u'reduc', u'crop', u'forecast'] [u'wimbledon', u'programm'] [u'winemak', u'invest', u'vineyard'] [u'woman', u'face', u'court', u'robberi'] [u'women', u'chanc', u'femal', u'doctor'] [u'world', u'event', u'toll', u'rock', u'lobster', u'trade'] [u'youth', u'worker', u'spread', u'word', u'condom'] [u'aborigin', u'group', u'nativ', u'titl'] [u'consid', u'water', u'usag', u'strategi'] [u'activist', u'delay', u'decis', u'screen', u'ban', u'film'] [u'adelaid', u'prepar', u'commut', u'chao'] [u'agforc', u'want', u'rat'] [u'aqsa', u'leader', u'report', u'shoot', u'dead'] [u'aqsa', u'martyr', u'denounc', u'truce', u'kill'] [u'alic', u'host', u'communiti', u'cabinet', u'meet'] [u'boost', u'reconcili', u'effort'] [u'american', u'jazz', u'flautist', u'herbi', u'mann', u'die'] [u'amnesti', u'call', u'inquiri', u'kenyan', u'rape', u'claim'] [u'amnesti', u'tackl', u'sudan', u'press', u'censorship'] [u'amwu', u'threaten', u'strike', u'wag', u'condit'] [u'asia', u'warn', u'aid', u'catastroph'] [u'asylum', u'seeker', u'migrat', u'zone'] [u'australian', u'share', u'ride', u'wall', u'gain'] [u'australia', u'urg', u'chang', u'nation', u'secur'] [u'babi', u'wollongong', u'take'] [u'bacon', u'announc', u'tassi', u'ferri'] [u'beckham', u'wear', u'real'] [u'belbin', u'lead', u'irrig', u'trust'] [u'berlusconi', u'nazi', u'jibe', u'spark', u'uproar'] [u'boat', u'reach', u'migrat', u'zone'] [u'bodi', u'parramatta', u'shop', u'centr'] [u'bolkus', u'mistak', u'crean'] [u'booklet', u'aim', u'clear', u'merger', u'confus'] [u'boomer', u'czech', u'seri'] [u'boomer', u'thump', u'czech', u'republ'] [u'brack', u'take', u'batter', u'freeway', u'backflip', u'poll'] [u'bush', u'hang', u'trivial', u'telstra', u'poll'] [u'bush', u'lay', u'iraqi', u'resist'] [u'bush', u'mull', u'troop', u'option', u'liberia'] [u'review'] [u'bypass', u'aim', u'reduc', u'sand', u'woe'] [u'govt', u'drought'] [u'canberra', u'hous', u'price', u'boil'] [u'develop', u'spotlight'] [u'child', u'protect', u'group', u'royal', u'commiss'] [u'children', u'risk', u'break', u'hill', u'bait', u'spree'] [u'clean', u'chief', u'oppos', u'quarri', u'plan'] [u'communic', u'play', u'role', u'life', u'save'] [u'concern', u'air', u'candid', u'statement'] [u'concern', u'air', u'leagu', u'club', u'rescu', u'deal'] [u'council', u'financ', u'state', u'scrutini'] [u'council', u'audit', u'goal', u'post', u'safeti'] [u'crean', u'quash', u'latham', u'polici', u'plan'] [u'csiro', u'mine', u'technolog', u'expect', u'save', u'million'] [u'cullen', u'quit', u'black', u'join', u'munster'] [u'custom', u'process', u'indonesian', u'fisher'] [u'darwin', u'armi', u'chief', u'consid', u'random', u'drug', u'test'] [u'death', u'knell', u'rock', u'roll', u'hall'] [u'debt', u'suicid', u'factor'] [u'demand', u'rise', u'public', u'health', u'servic'] [u'dental', u'clinic', u'address', u'rise', u'demand'] [u'director', u'defend', u'irv', u'freedom', u'speech'] [u'doctor', u'surgeri', u'concern'] [u'doctor', u'group', u'worri', u'medic', u'indemn'] [u'doctor', u'seek', u'mammographi', u'assur'] [u'dollar', u'break', u'cent', u'mark'] [u'jump', u'posit', u'data'] [u'drought', u'devast', u'think'] [u'earli', u'morn', u'wrestl', u'melbourn'] [u'worker', u'maintain', u'industri', u'action'] [u'empir', u'rubber', u'worker', u'threaten', u'industri'] [u'pass', u'label', u'law'] [u'europ', u'closer', u'lift', u'food'] [u'finnish', u'polic', u'europ', u'biggest', u'rohypnol', u'haul'] [u'dead', u'shoot', u'missouri', u'report'] [u'french', u'join', u'solomon', u'forc'] [u'french', u'sensit', u'grind', u'solomon'] [u'fund', u'boost', u'intens', u'care', u'servic'] [u'geraldton', u'get', u'beach', u'develop', u'fund'] [u'govt', u'say', u'second', u'boat'] [u'govt', u'wast', u'time', u'reloc', u'asylum', u'seeker'] [u'gregan', u'consid', u'futur', u'world'] [u'groundbreak', u'surgeri', u'save', u'woman', u'sight'] [u'group', u'seek', u'open', u'independ', u'dutson', u'down', u'studi'] [u'hat', u'bruderhof', u'communiti'] [u'head', u'ivori', u'coast', u'televis', u'suspend'] [u'health', u'group', u'want', u'fight', u'alcohol'] [u'heenan', u'replac', u'smith', u'wallabi', u'squad'] [u'prosecut', u'fund', u'establish'] [u'industri', u'group', u'highlight', u'premium', u'wine'] [u'investig', u'review', u'flight', u'data', u'qanta'] [u'irrig', u'hear', u'water', u'restrict'] [u'israel', u'agre', u'releas', u'polit', u'prison'] [u'israel', u'close', u'gaza', u'highway', u'attack'] [u'israel', u'leav', u'bethlehem', u'free', u'prison'] [u'jew', u'want', u'holocaust', u'film', u'ban', u'festiv'] [u'jockey', u'face', u'court', u'child', u'charg'] [u'juri', u'consid', u'verdict', u'murder', u'trial'] [u'kalgoorli', u'move', u'better', u'race', u'relat'] [u'kindergarten', u'get', u'fund', u'snub'] [u'king', u'bros', u'expect', u'liquid'] [u'knowl', u'reject', u'panic', u'land', u'clear', u'claim'] [u'leagu', u'player', u'face', u'judiciari', u'brawl'] [u'liberti', u'victoria', u'slam', u'child', u'offend', u'nation'] [u'lifelin', u'har', u'race'] [u'liquid', u'cooper', u'agre', u'deal'] [u'lotteri', u'scam', u'hit'] [u'yang', u'power', u'station', u'sell'] [u'charg', u'meat', u'cleaver', u'attack'] [u'charg', u'hold'] [u'charg', u'peopl', u'smuggl'] [u'fin', u'pesticid', u'spill'] [u'fin', u'sydney', u'pesticid', u'spill'] [u'grant', u'bail', u'incid'] [u'hold', u'flight', u'threat', u'claim'] [u'lose', u'appeal', u'murder', u'wife', u'lover'] [u'plead', u'guilti', u'flight', u'drama'] [u'receiv', u'suspend', u'sentenc', u'money', u'scam'] [u'marin', u'kill', u'clear', u'minefield', u'iraq'] [u'melbourn', u'polic', u'warn', u'serial', u'offend'] [u'rain', u'women', u'semi', u'final', u'parad'] [u'mercuri', u'suspend', u'week'] [u'drama', u'hero', u'work'] [u'mother', u'criticis', u'rule', u'son', u'death'] [u'nigerian', u'quiz', u'bodi'] [u'norther', u'favourit', u'hors', u'year'] [u'want', u'special', u'census', u'consider'] [u'obstetr', u'servic', u'continu'] [u'oscar', u'organis', u'crack', u'dirti', u'award'] [u'pair', u'face', u'judiciari', u'brawl'] [u'permit', u'suggest', u'protect', u'midden'] [u'philippoussi', u'henman', u'lose', u'set', u'wimbledon'] [u'player', u'farewel', u'team', u'mate'] [u'polic', u'investig', u'electrocut', u'railway', u'station'] [u'polic', u'investig', u'miss', u'berrima', u'prison', u'fund'] [u'polic', u'movi', u'screen'] [u'polic', u'open', u'nigerian', u'demonstr'] [u'pollut', u'water', u'flood', u'inner', u'sydney', u'build'] [u'port', u'hop', u'cash', u'cruis', u'ship', u'benefit'] [u'power', u'demand', u'rise', u'temperatur', u'drop'] [u'profession', u'bring', u'organis', u'schooli'] [u'public', u'urg', u'watch', u'cane', u'toad'] [u'purnululu', u'list', u'natur', u'wonder'] [u'qanta', u'investig', u'plane', u'evacu'] [u'lobbi', u'chang'] [u'breakthrough', u'bronchiol', u'research'] [u'govt', u'confirm', u'lang', u'park', u'problem'] [u'qlds', u'radiat', u'therapist', u'continu', u'work'] [u'queanbeyan', u'pool', u'plan', u'hold'] [u'rain', u'winner', u'wimbledon'] [u'rain', u'halt', u'philippoussiss', u'challeng'] [u'rain', u'winner', u'wimbledon'] [u'regul', u'telstra', u'sale'] [u'resid', u'reject', u'takeov', u'plan'] [u'restrict', u'tiger', u'prawn', u'season', u'north'] [u'rock', u'lobster', u'industri', u'tear', u'state', u'boundari'] [u'rooster', u'review', u'video', u'lang', u'park', u'injuri'] [u'brew', u'radiat', u'therapi', u'delay'] [u'govt', u'silent', u'bolkus', u'raffl', u'ticket', u'queri'] [u'schwarzenegg', u'take', u'troop', u'gulf'] [u'scientist', u'creat', u'genet', u'male'] [u'shire', u'seek', u'feder', u'drought'] [u'small', u'investor', u'encourag', u'involv'] [u'soldier', u'prepar', u'head', u'home', u'timor', u'stint'] [u'solomon', u'polic', u'chief', u'hope', u'peac'] [u'solomon', u'villag', u'burn', u'report'] [u'solo', u'rower', u'take', u'atlant', u'san', u'vodka'] [u'springbok', u'sign', u'world', u'agreement'] [u'state', u'rail', u'chief', u'admit', u'tangara', u'safeti', u'lack'] [u'boom', u'leav', u'hous', u'price'] [u'stockyard', u'face', u'product', u'shift'] [u'strict', u'control', u'deer', u'cull', u'plan'] [u'studi', u'consid', u'hunter', u'industri'] [u'surgeri', u'cancel', u'insur', u'fear'] [u'tafe', u'staff', u'protest', u'rise'] [u'buy', u'ferri', u'devonport', u'rout'] [u'bard', u'aust', u'film', u'join', u'curriculum'] [u'dead', u'factori', u'shoot'] [u'thumb', u'townsvill'] [u'toronto', u'pleas', u'cautious', u'sar', u'decis'] [u'tough', u'test', u'drought', u'fund'] [u'tourism', u'professor', u'warn', u'dollar', u'danger'] [u'trio', u'charg', u'home', u'invas'] [u'iraqi', u'kill', u'soldier', u'wound'] [u'remand', u'steroid', u'smuggl'] [u'student', u'develop', u'drink', u'spike', u'test'] [u'blame', u'mosqu', u'blast', u'bomb', u'class'] [u'soldier', u'injur', u'iraq', u'attack'] [u'deport', u'accus', u'nazi', u'guard'] [u'vancouv', u'host', u'winter', u'olymp'] [u'search', u'come', u'blank'] [u'manufactur', u'worker', u'tool'] [u'take', u'home', u'style'] [u'govt', u'welcom', u'alumina', u'refineri', u'upgrad'] [u'nation', u'park', u'make', u'world', u'heritag', u'list'] [u'purnululu', u'park', u'win', u'world', u'heritag', u'list'] [u'waterfal', u'derail', u'risk', u'neglig', u'inquiri', u'tell'] [u'water', u'restrict', u'loom', u'irrig'] [u'westfield', u'death', u'suspici', u'relat'] [u'wimbledon', u'programm'] [u'wire'] [u'woman', u'choos', u'nude', u'photo', u'teach'] [u'wooli', u'look', u'open', u'riverland', u'fuel', u'outlet'] [u'abalon', u'industri', u'pick', u'sar'] [u'academi', u'build', u'lead', u'bangladesh'] [u'accc', u'ask', u'consid', u'possibl', u'coke', u'berri', u'takeov'] [u'forc', u'personnel', u'welcom', u'home', u'gulf'] [u'airport', u'land', u'restrict', u'question'] [u'albani', u'look', u'cruis', u'ship', u'benefit'] [u'alic', u'cricket', u'make', u'chief', u'minist'] [u'jazeera', u'broadcast', u'saddam', u'tape'] [u'alleg', u'home', u'burglar', u'deni', u'bail'] [u'director'] [u'explain', u'stanwel', u'failur'] [u'tri', u'appeas', u'sharehold'] [u'anderson', u'say', u'telstra', u'sale', u'oppon', u'exagger'] [u'custom', u'warn', u'internet', u'scam'] [u'armstrong', u'start', u'tour', u'team', u'jersey'] [u'armi', u'move', u'improv', u'train'] [u'aussi', u'dollar', u'spike', u'employ', u'figur'] [u'aussi', u'escap', u'death', u'penalti', u'thailand'] [u'australia', u'kiwi', u'confirm', u'indian', u'tour', u'date'] [u'australia', u'launch', u'fiji', u'school', u'program'] [u'australian', u'pair', u'await', u'sentenc', u'drug', u'traffic'] [u'australian', u'tour', u'overal', u'stand'] [u'backbench', u'pull', u'line', u'telstra'] [u'banger', u'chase', u'target', u'brisban'] [u'bank', u'news', u'corp', u'market'] [u'bank', u'warn', u'ghost', u'site', u'scam'] [u'clear', u'race', u'court'] [u'probe', u'report', u'dossier', u'alleg'] [u'beach', u'camel', u'rid', u'hump'] [u'beatti', u'criticis', u'tuckey', u'indigen', u'comment'] [u'beatti', u'parti', u'wast', u'money'] [u'belgian', u'accept', u'second', u'best', u'grace'] [u'blast', u'rock', u'pakistani', u'mosqu'] [u'blix', u'head', u'commiss', u'weapon', u'mass'] [u'bowman', u'rejoin', u'cowboy'] [u'bracewel', u'name', u'zealand', u'cricket', u'coach'] [u'britain', u'call', u'fair', u'trial', u'guantanamo'] [u'bronco', u'take', u'dragon', u'light'] [u'burk', u'sign', u'waratah'] [u'bush', u'say', u'terror', u'suspect', u'tri'] [u'enterpris', u'zone', u'support'] [u'canberran', u'roger', u'prim', u'histor', u'yellow', u'jersey'] [u'carr', u'seek', u'bypass', u'commonwealth', u'censor'] [u'celtic', u'oneil', u'escap', u'uefa', u'punish'] [u'chamber', u'tip', u'revitalis', u'region', u'cbds'] [u'chelsea', u'seal', u'goalkeep', u'sign'] [u'chelsea', u'swoop', u'juventus', u'david', u'sala'] [u'childcar', u'worker', u'appli', u'airc', u'rise'] [u'chilean', u'general', u'apologis', u'grave', u'raid'] [u'christma', u'prepar', u'arriv'] [u'club', u'hear', u'game', u'rise', u'concern'] [u'coalit', u'push', u'scrap', u'atsic'] [u'comedi', u'challeng', u'indigen', u'percept'] [u'committe', u'tour', u'christma', u'facil'] [u'concern', u'rais', u'hick', u'fair', u'trial'] [u'council', u'approv', u'truck', u'trial'] [u'council', u'dive', u'pool', u'locat', u'debat'] [u'council', u'want', u'residenti', u'plan', u'fund'] [u'council', u'tri', u'feder', u'drought'] [u'court', u'hear', u'argument', u'flight', u'disturb'] [u'court', u'tell', u'driver', u'seven', u'time', u'limit'] [u'cowra', u'await', u'verdict', u'facto', u'death'] [u'darwin', u'host', u'wallabi', u'world', u'camp'] [u'decis', u'pend', u'landfil', u'plan'] [u'delay', u'iraq', u'deleg'] [u'democrat', u'negat', u'gear', u'review'] [u'depart', u'disturb', u'abus', u'teacher'] [u'depress', u'henman', u'vow'] [u'develop', u'heritag', u'remind'] [u'director', u'defend', u'ban', u'film'] [u'divers', u'discourag', u'illeg', u'arriv', u'ruddock'] [u'djemba', u'complet'] [u'dont', u'say', u'schumach'] [u'doubt', u'rais', u'age', u'care', u'home'] [u'dragon', u'buck', u'bronco'] [u'drought', u'tree', u'clear', u'deal', u'threaten', u'farmer', u'tell'] [u'order', u'forc', u'smelter', u'clean'] [u'european', u'target', u'viduka'] [u'export', u'surviv', u'dollar', u'hike', u'austrad'] [u'farmer', u'question', u'garrett', u'murray', u'call'] [u'farmer', u'feel', u'fuel', u'price', u'rise', u'impact'] [u'farmer', u'urg', u'state', u'wide', u'milk', u'strike'] [u'feder', u'help', u'seek', u'wind', u'farm', u'plan'] [u'unfaz', u'roddick', u'serv'] [u'fitzgerald', u'comeback'] [u'time', u'winner', u'armstrong', u'hop'] [u'bond', u'director', u'refus', u'bail'] [u'face', u'court', u'amphetamin'] [u'french', u'polic', u'impound', u'car'] [u'fuelwatch', u'petit', u'go', u'council'] [u'gansu', u'want', u'gazza'] [u'georg', u'town', u'aim', u'weather', u'ferri', u'disappoint'] [u'govt', u'admit', u'declin', u'barrier', u'reef', u'condit'] [u'govt', u'motiv', u'question', u'asylum', u'seeker'] [u'govt', u'question', u'support', u'alumina', u'refineri'] [u'graham', u'world', u'championship'] [u'greek', u'firefight', u'alert', u'firebal'] [u'green', u'unhappi', u'drug', u'search', u'law'] [u'grosjean', u'shatter', u'henman', u'dream'] [u'group', u'hop', u'sway', u'tree', u'clear', u'support'] [u'group', u'meet', u'hospit', u'concern'] [u'grower', u'reject', u'water', u'restrict', u'manag', u'plan'] [u'hewitt', u'slide', u'rank'] [u'hick', u'face', u'trial'] [u'hick', u'face', u'trial'] [u'hill', u'suffer', u'injuri', u'setback'] [u'hoogi', u'head', u'dutch', u'world', u'charg'] [u'horticultur', u'studi', u'consid', u'season', u'worker'] [u'hospit', u'rule', u'closur'] [u'hospit', u'spend', u'spotlight'] [u'roddick', u'power', u'past', u'bjorkman'] [u'hutchinson', u'fail', u'break', u'boardman', u'record'] [u'injur', u'venus', u'battl', u'past', u'clijster'] [u'israel', u'arrest', u'palestinian'] [u'israel', u'releas', u'palestinian', u'secur', u'offici'] [u'jewish', u'group', u'criticis', u'film', u'festiv', u'court'] [u'johnson', u'face', u'tough', u'test', u'pari'] [u'kalli', u'steer', u'south', u'africa', u'victori', u'vaughan'] [u'kemp', u'highlight', u'reef', u'pressur'] [u'labor', u'health', u'polici', u'criticis'] [u'laidley', u'cop', u'fine', u'umpir'] [u'step', u'unknown'] [u'centr', u'concern', u'credit', u'offer'] [u'lawyer', u'face', u'sentenc', u'steal', u'charg'] [u'liber', u'urg', u'cross', u'floor', u'telstra'] [u'liberian', u'activist', u'ralli', u'taylor'] [u'liberti', u'major', u'stake', u'shop', u'channel'] [u'lloyd', u'boot', u'bomber', u'victori'] [u'local', u'govt', u'concern', u'air', u'road', u'crash'] [u'malik', u'join', u'gloucestershir'] [u'charg', u'assault', u'taliban', u'fighter'] [u'charg', u'stalk', u'offenc'] [u'convict', u'abus', u'sister'] [u'face', u'court', u'peopl', u'smuggl'] [u'respons', u'end', u'carnel', u'career', u'retir'] [u'extradit', u'sydney', u'bomb', u'threat'] [u'face', u'court', u'murder', u'charg'] [u'masterpiec', u'museum', u'visit', u'british'] [u'mckay', u'build', u'lead', u'webb', u'hit', u'horror', u'round'] [u'mckay', u'lead', u'women', u'open'] [u'meet', u'call', u'answer', u'salin', u'scheme', u'question'] [u'melbourn', u'lobbi', u'park', u'screen'] [u'work', u'plan', u'lawrenc', u'hargrav', u'drive'] [u'mortim', u'devast', u'vagana', u'dump', u'bulldog'] [u'mourner', u'gather', u'lyon', u'respect'] [u'give', u'support', u'yang', u'sale'] [u'question', u'chang', u'polic', u'power'] [u'vote', u'embryo', u'legisl'] [u'near', u'drought'] [u'build', u'law', u'boon', u'environ'] [u'start', u'ullrich'] [u'guarante', u'local', u'educ', u'offic'] [u'norther', u'name', u'hors', u'year'] [u'consid', u'player', u'draft'] [u'pass', u'parol', u'legisl'] [u'dead', u'injur', u'assassin', u'attempt'] [u'oscar', u'boss', u'best', u'foreign', u'film', u'entri'] [u'oshan', u'blast', u'constitut'] [u'palestinian', u'arrest', u'settlement', u'rocket'] [u'palestinian', u'arrest', u'rocket', u'attack'] [u'parliament', u'okay', u'japanes', u'deploy', u'iraq'] [u'passport', u'secur', u'beef'] [u'perec', u'give', u'hope', u'world', u'comeback'] [u'welcom', u'nativ', u'titl', u'decis'] [u'philippoussi', u'feder', u'untouch'] [u'philippoussi', u'power', u'wimbledon', u'final'] [u'player', u'face', u'wait', u'judiciari', u'appear'] [u'player', u'face', u'wait', u'tweed', u'brawl', u'judiciari'] [u'player', u'keep', u'close', u'lang', u'park', u'surfac'] [u'accus', u'neglect', u'issu'] [u'reject', u'drought', u'assist', u'overhaul'] [u'visit', u'korea', u'japan', u'philippin'] [u'project', u'look', u'sourc', u'custom'] [u'poki', u'revenu', u'needi'] [u'policeman', u'theft', u'charg', u'refus', u'bail'] [u'polic', u'warn', u'expect', u'traffic', u'problem'] [u'popp', u'rue', u'scud', u'accuraci'] [u'posh', u'fear', u'beckham', u'moonshot', u'dream'] [u'premier', u'major', u'issu', u'coag'] [u'punter', u'prepar', u'darwin', u'carniv'] [u'race', u'cut', u'studi', u'expect', u'deliv', u'surpris'] [u'rainwat', u'tank', u'rebat', u'consider'] [u'reef', u'pollut', u'case', u'adjourn'] [u'restrict', u'person', u'injuri'] [u'roddick', u'tell', u'retir', u'player', u'stop', u'make'] [u'roger', u'mcgee', u'head', u'aussi', u'race', u'yellow'] [u'roger', u'prim', u'histor', u'yellow', u'jersey'] [u'saint', u'bomber', u'desper'] [u'speaker', u'fail', u'stop', u'civil', u'action'] [u'schumach', u'collid', u'webber'] [u'scud', u'fire', u'semi'] [u'scud', u'readi', u'semi', u'final', u'showdown'] [u'second', u'ballarat', u'factori', u'lock', u'employe'] [u'serena', u'blast', u'away', u'henin', u'feud'] [u'sheahan', u'sampl', u'posit', u'salbutamol'] [u'shortland', u'esplanad', u'access', u'long'] [u'simoni', u'readi', u'challeng', u'glori'] [u'solomon', u'island', u'request', u'australia', u'help'] [u'southlink', u'bus', u'serco', u'tuesday'] [u'spiderman', u'thief', u'jail', u'year'] [u'sptnrl'] [u'stone', u'second', u'divorc'] [u'strong', u'sydney', u'devonport', u'ferri'] [u'sugar', u'industri', u'sign', u'agreement'] [u'surri', u'hill', u'emerg'] [u'sydney', u'leak', u'forc', u'mass', u'evacu'] [u'telstra', u'worker', u'attack'] [u'tender', u'call', u'work'] [u'sky', u'limit', u'beckham', u'say'] [u'thousand', u'tip', u'enjoy'] [u'tough', u'year', u'ahead', u'export'] [u'tourist', u'flock', u'grampian', u'despit', u'cold'] [u'townsvill', u'host', u'intern', u'leagu'] [u'treasur', u'worri', u'latham', u'crean', u'say'] [u'trio', u'break', u'cours', u'record', u'european', u'open'] [u'triumph', u'tragedi', u'tour'] [u'tuckey', u'deni', u'atsic', u'comment', u'racist'] [u'tweed', u'council', u'approv', u'hill', u'climb', u'develop'] [u'twin', u'solar', u'search', u'uncov', u'possibl', u'match'] [u'conced', u'evid', u'bomb', u'make', u'class', u'caus'] [u'forc', u'attack', u'iraq'] [u'vcat', u'delay', u'announc', u'holocaust', u'film'] [u'govt', u'back', u'yang', u'power', u'station', u'sale'] [u'govt', u'consid', u'weir', u'upgrad'] [u'voluntari', u'recal', u'babi', u'panadol'] [u'premier', u'rule', u'ningaloo', u'develop'] [u'waugh', u'appear', u'indian', u'film', u'manag'] [u'brace', u'hacker', u'contest'] [u'wharf', u'develop', u'schedul'] [u'whitak', u'clear', u'play', u'springbok'] [u'wild', u'dog', u'threaten', u'motorist', u'meal', u'nation'] [u'wimbledon', u'result'] [u'wimbledon', u'order', u'play'] [u'winegrow', u'speak', u'market', u'demand', u'claim'] [u'woman', u'guilti', u'uncl', u'manslaught'] [u'woman', u'gall', u'world', u'record', u'claim'] [u'wood', u'equal', u'cours', u'record', u'western', u'open'] [u'wyndham', u'ambul', u'servic', u'save'] [u'iraqi', u'polic', u'recruit', u'kill', u'wound'] [u'review', u'park'] [u'jazeera', u'broadcast', u'saddam', u'tape'] [u'tour', u'rider', u'start', u'dope', u'test'] [u'alp', u'femal', u'frontbench', u'awar', u'pressur'] [u'assault', u'telstra', u'worker', u'reluct', u'legal'] [u'australian', u'arrest', u'vietnames', u'drug', u'traffic'] [u'australian', u'jail', u'escap', u'thai', u'death', u'penalti'] [u'australian', u'name', u'solomon', u'deputi', u'polic'] [u'bahrain', u'adjourn', u'journalist', u'trial'] [u'bangladesh', u'take', u'tour', u'match'] [u'bartlett', u'say', u'christma', u'readi', u'asylum'] [u'beatti', u'celebr', u'fifth', u'anniversari', u'premier'] [u'berlusconi', u'deni', u'apologis', u'nazi', u'comment'] [u'bhupathi', u'get', u'reveng', u'estrang', u'indian', u'express'] [u'bianchi', u'prove', u'surpris', u'tour', u'say', u'ullrich'] [u'bodi', u'fall', u'repatri'] [u'boomer', u'clinch', u'czech', u'clean', u'sweep'] [u'boycott', u'threat', u'damag', u'tenni', u'slam', u'organis'] [u'bring', u'sunshin', u'face', u'team', u'boss'] [u'britain', u'express', u'reserv', u'militari'] [u'bush', u'remind', u'terror'] [u'afford', u'hous'] [u'cameroon', u'fan', u'tribut', u'fall'] [u'carr', u'defend', u'visit'] [u'cash', u'hail', u'anim', u'philippoussi'] [u'christma', u'prepar', u'asylum', u'seeker', u'say'] [u'claim', u'uni', u'provid', u'substandard', u'postgrad', u'cours'] [u'clark', u'price', u'control', u'ireland'] [u'concern', u'hick', u'face', u'trial'] [u'convict', u'murder', u'attack', u'jail', u'clean'] [u'crean', u'pledg', u'scrap', u'fee'] [u'crean', u'promis', u'relief', u'hec', u'repay'] [u'death', u'toll', u'hit', u'pakistan', u'mosqu', u'attack'] [u'death', u'toll', u'pakistan', u'mosqu', u'attack', u'rise'] [u'death', u'toll', u'rise', u'moscow', u'suicid', u'blast'] [u'death', u'toll', u'rise', u'pakistan', u'mosqu', u'attack'] [u'democrat', u'fight', u'quarantin', u'station'] [u'demon', u'drink', u'gazza'] [u'docker', u'lion', u'thriller'] [u'bond', u'girl', u'ordain', u'anglican', u'minist'] [u'feud', u'tick', u'timebomb', u'say', u'minardi', u'chief'] [u'factori', u'resid', u'kill'] [u'feder', u'domin', u'roddick'] [u'ireland', u'rugbi', u'captain', u'wood'] [u'report', u'dead', u'iraqi', u'polic', u'station', u'blast'] [u'world', u'best', u'pari'] [u'freddi', u'celebr', u'game', u'style'] [u'freddi', u'celebr', u'game', u'style'] [u'govern', u'commend', u'oper', u'improv'] [u'govt', u'attack', u'labor', u'higher', u'educ', u'polici'] [u'grafton', u'welcom', u'servic', u'return'] [u'graham', u'world'] [u'hawk', u'thump', u'bulldog'] [u'hick', u'face', u'militari', u'court', u'cuba'] [u'bow', u'pressur', u'anti', u'subvers'] [u'indigen', u'leader', u'outrag', u'minist', u'comment'] [u'injur', u'venus', u'feel', u'better', u'final'] [u'iraq', u'soccer', u'team', u'arrang', u'australian', u'tour'] [u'japanes', u'emperor', u'identifi', u'fish'] [u'jindi', u'blue', u'daddi', u'aussi', u'chees'] [u'johnson', u'fifth', u'pari'] [u'lacklustr', u'wood', u'cling', u'western', u'open', u'lead'] [u'liberia', u'taylor', u'say', u'quit', u'forc'] [u'magpi', u'roll', u'roo', u'crow', u'tame', u'tiger'] [u'mckay', u'shot', u'clear', u'despit', u'tripl', u'bogey', u'finish'] [u'medic', u'check', u'question', u'begin', u'christma'] [u'meet', u'decid', u'australia', u'role', u'north', u'korea'] [u'millar', u'tip', u'aussi', u'prologu', u'glori'] [u'mine', u'council', u'welcom', u'propos', u'csiro', u'chang'] [u'mosqu', u'attack', u'spark', u'unrest', u'pakistan'] [u'murali', u'play', u'english', u'counti', u'cricket', u'report'] [u'navratilova', u'record', u'attempt', u'aliv'] [u'norway', u'royal', u'famili', u'await', u'birth'] [u'trial', u'princip', u'scheme'] [u'palestinian', u'offic', u'injur', u'milit', u'arrest'] [u'pantani', u'leav', u'clinic', u'return', u'home'] [u'panther', u'cowboy', u'score', u'win'] [u'philippoussi', u'look', u'fairytal', u'end'] [u'ask', u'consid', u'health', u'educ'] [u'polic', u'appeal', u'mother', u'abandon', u'babi'] [u'polic', u'continu', u'search', u'mother', u'dump', u'babi'] [u'polic', u'probe', u'discoveri', u'woman', u'bodi'] [u'polic', u'search', u'ident', u'dump'] [u'premier', u'break', u'product'] [u'protest', u'demonstr', u'iranian', u'asylum', u'seeker'] [u'protest', u'expect', u'countri', u'labor', u'confer'] [u'push', u'resid', u'conserv', u'water'] [u'putin', u'set', u'chechnya', u'presidenti', u'elect'] [u'say', u'farmer'] [u'ralf', u'pole', u'william'] [u'rann', u'announc', u'review', u'secret', u'probe'] [u'report', u'find', u'longer', u'hour', u'fewer', u'holiday'] [u'resid', u'form', u'tarana', u'nation', u'park'] [u'ronaldinho', u'join', u'real', u'madrid', u'report'] [u'run', u'time', u'armstrong', u'prologu'] [u'russian', u'billionair', u'plan', u'chelsea', u'shop', u'spree'] [u'sar', u'contain', u'worldwid'] [u'search', u'miss', u'toddler'] [u'solomon', u'warlord', u'report', u'sign', u'ceas'] [u'soul', u'barri', u'white', u'die'] [u'southern', u'african', u'head', u'meet', u'discuss', u'epidem'] [u'specul', u'space', u'tourist'] [u'lanka', u'crash', u'kill'] [u'stanhop', u'warn', u'tougher', u'water', u'restrict'] [u'suicid', u'bomber', u'target', u'moscow', u'rock', u'concert'] [u'talk', u'address', u'global', u'intercept'] [u'thank', u'aussi', u'say', u'lara'] [u'kill', u'overnight', u'road'] [u'tini', u'minardi', u'stun', u'gun', u'franc'] [u'tremor', u'felt', u'canberra'] [u'trezeguet', u'percent', u'certain', u'sign', u'juve'] [u'turk', u'escap', u'fine', u'euro', u'troubl'] [u'highway', u'collis'] [u'edg', u'helmet'] [u'ultralight', u'crash', u'kill'] [u'market', u'week', u'lower'] [u'vietnames', u'oper', u'immigr'] [u'volcan', u'erupt', u'take', u'toll', u'ecuador', u'health'] [u'warm', u'welcom', u'expect', u'crean', u'perth'] [u'wasp', u'mckenzi', u'ban', u'week'] [u'webber', u'dont', u'blame', u'schumi', u'smash'] [u'william', u'bring', u'kansa', u'comet', u'crash', u'earth'] [u'wimbledon', u'result'] [u'wimbledon', u'programm'] [u'wood', u'disgrac', u'fund', u'cut', u'scout'] [u'wood', u'control', u'tesk', u'struggl'] [u'chines', u'coal', u'explos'] [u'line', u'live', u'world', u'coverag'] [u'accc', u'defend', u'safeway', u'case'] [u'resid', u'warn', u'lotteri', u'scam'] [u'welcom', u'child', u'obes', u'studi'] [u'anderson', u'keen', u'broaden', u'region'] [u'anderson', u'keen', u'broaden', u'telco', u'debat'] [u'armstrong', u'worri', u'disappoint', u'tour', u'start'] [u'arson', u'suspect', u'melbourn', u'fire'] [u'asian', u'cricket', u'boss', u'overse', u'afghan', u'game'] [u'aussi', u'water', u'polo', u'team', u'beat'] [u'bash', u'die', u'ident', u'unknown'] [u'blair', u'step', u'pressur'] [u'british', u'journalist', u'kill', u'baghdad'] [u'bryant', u'attack', u'treatment', u'caus', u'concern'] [u'bulldog', u'romp', u'record', u'knight'] [u'carr', u'consid', u'stamp', u'duti'] [u'chopper', u'crash', u'brazilian', u'field', u'kill'] [u'claim', u'collaps', u'posit', u'effect'] [u'climber', u'die', u'sunshin', u'coast', u'accid'] [u'condit', u'attach', u'palestinian', u'prison'] [u'confer', u'aim', u'agenda', u'women', u'worldwid'] [u'coron', u'brief', u'prepar'] [u'coulthard', u'warn', u'dead', u'danger'] [u'crean', u'promis', u'reduc', u'univers', u'cost'] [u'crean', u'say', u'dont', u'migrant', u'improv', u'polici'] [u'diabet', u'forum', u'look', u'treatment', u'research'] [u'ehiogu', u'miss', u'start', u'middlesbrough', u'season'] [u'england', u'recal', u'thorp', u'atherton'] [u'england', u'releas'] [u'estonian', u'domin', u'sport', u'wife', u'carri'] [u'everton', u'say', u'rooney', u'go'] [u'experi', u'scud', u'edg'] [u'expert', u'say', u'gene', u'combin', u'lead', u'addict'] [u'expert', u'cast', u'doubt', u'drug', u'free', u'tour'] [u'feder', u'govt', u'deni', u'consid', u'environment', u'levi'] [u'freez', u'wait', u'boat', u'capsiz'] [u'priest', u'reject', u'bishop', u'post'] [u'geelong', u'stun', u'port', u'win', u'swan', u'melbourn'] [u'gibb', u'lead', u'protea', u'zimbabw'] [u'govt', u'consid', u'cut', u'hec', u'fee'] [u'govt', u'push', u'mobil', u'phone', u'scrambl', u'devic'] [u'govt', u'slam', u'plan', u'block', u'nuclear', u'wast', u'dump'] [u'guid', u'dog', u'launch', u'technolog'] [u'high', u'risk', u'group', u'urg', u'inject'] [u'hundr', u'bodi', u'iraqi', u'mass', u'grave'] [u'intern', u'communiti', u'condemn', u'moscow', u'suicid'] [u'interview', u'christma'] [u'israel', u'agre', u'releas', u'palestinian', u'prison'] [u'labor', u'plan', u'educ', u'govt'] [u'latham', u'blame', u'govt', u'rate', u'freez'] [u'latham', u'stick', u'crean', u'negat', u'gear'] [u'firm', u'examin', u'possibl', u'legal', u'challeng'] [u'lawyer', u'look', u'legal', u'challeng', u'final'] [u'lunk', u'lead', u'women', u'open', u'round'] [u'major', u'parti', u'dismiss', u'propos', u'green'] [u'kill', u'injur', u'stab'] [u'mcgee', u'lead', u'australian', u'charg'] [u'mcgee', u'win', u'tour', u'franc', u'prologu'] [u'memorabilia', u'auction', u'rais', u'million', u'chariti'] [u'messag', u'seek', u'kindr', u'spirit', u'univers'] [u'minor', u'earthquak', u'canberra'] [u'miss', u'toddler', u'night', u'paddock'] [u'monsoon', u'rain', u'flood', u'china', u'india', u'bangladesh'] [u'injur', u'turkish', u'explos'] [u'moscow', u'blast', u'blame', u'chechen', u'rebel'] [u'moscow', u'suicid', u'bomb', u'condemn', u'intern'] [u'nasa', u'call', u'launch', u'mar', u'probe', u'fourth', u'time'] [u'nasa', u'call', u'mar', u'probe', u'launch', u'fourth', u'time'] [u'law', u'stop', u'nuclear', u'wast', u'dump'] [u'miss', u'canyon'] [u'ningaloo', u'decis'] [u'let', u'cook', u'yellow', u'mcgee'] [u'nude', u'protest', u'crowd', u'warm', u'fermin'] [u'olymp', u'chief', u'suggest', u'wimbledon', u'possibl'] [u'outrag', u'bryant', u'take', u'jail'] [u'past', u'controversi', u'pressur', u'venus', u'play'] [u'photo', u'prison', u'aborigin', u'target'] [u'polic', u'continu', u'plea', u'abandon', u'babi', u'mother'] [u'polic', u'probe', u'tripl', u'fatal', u'north', u'coast'] [u'announc', u'grow', u'concern', u'properti', u'right'] [u'price', u'look', u'cash', u'shoot', u'lead'] [u'putin', u'cancel', u'trip', u'moscow', u'suicid', u'blast'] [u'reserv', u'forc', u'parad', u'sydney'] [u'robinson', u'support', u'woman', u'atsic', u'deputi'] [u'roeder', u'charg', u'hammer'] [u'ruddock', u'kick', u'naidoc', u'week', u'torr', u'strait'] [u'ruddock', u'urg', u'reveal', u'christma', u'cost'] [u'scud', u'relax', u'feder', u'fret'] [u'search', u'continu', u'miss', u'canyon', u'blue'] [u'search', u'continu', u'miss', u'toddler'] [u'serena', u'retain', u'wimbledon', u'titl'] [u'serena', u'william', u'retain', u'wimbledon', u'titl'] [u'shock', u'follow', u'turkey', u'explos'] [u'skipper', u'oliv', u'dump', u'black', u'squad'] [u'solomon', u'warlord', u'releas', u'hostag'] [u'somali', u'lord', u'agre', u'govt'] [u'state', u'skimp', u'educ', u'govt'] [u'streak', u'frustrat', u'zimbabw', u'exit', u'triangular'] [u'survey', u'aim', u'address', u'childhood', u'obes'] [u'suspect', u'asylum', u'seeker', u'undergo', u'interview'] [u'sydney', u'parad', u'honour', u'reserv'] [u'tanzania', u'marwa', u'win', u'gold', u'coast', u'marathon'] [u'tasmanian', u'adopt', u'servic', u'shut'] [u'teenag', u'face', u'court', u'rap'] [u'telstra', u'trust', u'fund', u'bush', u'moot'] [u'tendulkar', u'fulli', u'hand', u'surgeri'] [u'kill', u'north', u'coast', u'collis'] [u'tiger', u'take', u'shoot', u'lead', u'western', u'open'] [u'toddler', u'maul', u'famili'] [u'tour', u'franc', u'cycl', u'brief'] [u'train', u'derail', u'southern', u'india'] [u'turkey', u'take', u'task', u'arrest', u'iraq'] [u'twin', u'surgeri', u'enter', u'crucial', u'stage'] [u'forc', u'condemn', u'iraq', u'attack'] [u'iraqi', u'polic', u'recruit', u'kill', u'bomb'] [u'releas', u'seiz', u'turkish', u'troop'] [u'vieira', u'stay', u'arsenal'] [u'premier', u'curfew', u'criticis', u'confer'] [u'whatmor', u'expect', u'darwin', u'pitch', u'play', u'slow'] [u'white', u'collar', u'union', u'split', u'nigerian', u'strike'] [u'wilson', u'kebab', u'day', u'rebound', u'cancer'] [u'wimbledon', u'result'] [u'wimbledon', u'programm'] [u'woodbridg', u'bow', u'mix', u'doubl'] [u'woodbridg', u'equal', u'record', u'eighth', u'wimbledon'] [u'zimbabwean', u'hungri', u'mugab', u'get', u'rise'] [u'upgrad', u'bendigo', u'stadium'] [u'access', u'foreshadow', u'cut'] [u'adelaid', u'strike', u'finish', u'today'] [u'adler', u'face', u'court', u'charg'] [u'adler', u'plan', u'vigor', u'defenc', u'crimin', u'charg'] [u'airlin', u'consid', u'reduc', u'fare'] [u'ord', u'edg', u'slight', u'higher'] [u'come', u'clean', u'gear', u'polici'] [u'stand', u'school', u'leav', u'plan'] [u'anderson', u'honour', u'robinson', u'endors'] [u'angler', u'cop', u'stiff', u'fine', u'illeg', u'fish'] [u'appeal', u'urg', u'greater', u'industri', u'zone', u'truck', u'access'] [u'aussi', u'colour', u'high', u'tour'] [u'aussi', u'soccer', u'star'] [u'australian', u'die', u'iraq', u'blast'] [u'australia', u'address', u'climat', u'chang', u'issu'] [u'babi', u'joshua', u'face', u'adopt'] [u'bali', u'accus', u'threaten', u'polic', u'wit'] [u'bandit', u'tri', u'walk', u'cash', u'regist'] [u'bangladesh', u'cricket', u'team', u'arriv', u'darwin'] [u'barb', u'wire', u'tattoo', u'clue', u'unknown', u'dead'] [u'dodg', u'second', u'attempt', u'impound', u'car'] [u'bass', u'highway', u'undergo', u'improv'] [u'defend', u'journalist', u'iraq', u'report'] [u'beatti', u'inspect', u'plan', u'canal', u'site'] [u'name', u'escap', u'hack', u'contest'] [u'weekend', u'footi', u'fever'] [u'blair', u'clear', u'misrepres', u'iraq', u'evid'] [u'boca', u'celebr', u'stadium', u'rout'] [u'bomber', u'test', u'crow', u'defenc'] [u'break', u'collarbon', u'end', u'hamilton', u'hope'] [u'broom', u'nurs', u'student', u'graduat'] [u'bulldog', u'hawkin', u'comment'] [u'bulldog', u'pair', u'blue'] [u'burk', u'say', u'need', u'econom', u'boost'] [u'cabl', u'woe', u'central', u'west', u'phone'] [u'racial', u'uniti', u'overcom', u'child', u'woe'] [u'stop', u'busi', u'sell', u'oversea'] [u'canberra', u'host', u'diabet', u'symposium'] [u'canberra', u'host', u'aust', u'award'] [u'industri', u'face', u'work', u'ban'] [u'part', u'worker', u'threaten', u'strike'] [u'carr', u'super', u'council', u'shock', u'local', u'council'] [u'car', u'leav', u'visit'] [u'chick', u'undergo', u'shoulder', u'surgeri'] [u'clijster', u'sugiyama', u'speak', u'languag', u'victori'] [u'call', u'investig', u'polic', u'target'] [u'conjoin', u'twin', u'surgeri', u'second'] [u'cooma', u'host', u'bushfir', u'hear'] [u'coron', u'call', u'compulsori', u'life', u'jacket'] [u'coron', u'report', u'fatal', u'ultralight', u'crash'] [u'corsica', u'reject', u'autonomi', u'vote'] [u'council', u'concern', u'elector', u'plan'] [u'council', u'happi', u'resum', u'servic'] [u'court', u'dismiss', u'pacemak', u'appeal'] [u'court', u'document', u'releas', u'carr', u'say'] [u'crean', u'tackl', u'tafe', u'shortag'] [u'dairi', u'farmer', u'urg', u'unit'] [u'damag', u'limit', u'game', u'mclaren'] [u'deregul', u'tip', u'littl', u'impact'] [u'desper', u'british', u'tenni', u'offici', u'turn', u'mcenro'] [u'doctor', u'happi', u'start', u'surgeri', u'separ'] [u'driver', u'fatal', u'head'] [u'echo', u'sampra', u'feder', u'triumph'] [u'eel', u'sign', u'canning', u'muckert'] [u'england', u'surviv', u'zimbabw', u'scare'] [u'extend', u'school', u'hour', u'great', u'pay', u'carr'] [u'fear', u'air', u'river', u'health'] [u'feder', u'defus', u'scud', u'wimbledon', u'titl'] [u'feder', u'pay', u'tribut', u'late', u'coach'] [u'feder', u'rise', u'rank', u'hewitt', u'slip'] [u'ferrari', u'pledg', u'fight', u'regain', u'titl', u'lead'] [u'firefight', u'fear', u'futur', u'safeti', u'offic'] [u'fisk', u'miss', u'adelaid', u'festiv', u'idea'] [u'dead', u'china', u'blow', u'dike', u'fight', u'flood'] [u'forum', u'consid', u'ethanol', u'benefit'] [u'gallop', u'draw', u'critic', u'curfew'] [u'garnett', u'sign', u'chief'] [u'clergi', u'sin', u'newcastl', u'bishop'] [u'girl', u'hospit', u'tractor', u'accid'] [u'golf', u'cours', u'sale', u'plan', u'fall'] [u'grand', u'final', u'blue', u'local', u'footbal', u'side'] [u'greek', u'singer', u'hit', u'wrong', u'note', u'divid', u'cyprus'] [u'green', u'jersey', u'consol', u'grumbl', u'mcewen'] [u'green', u'welcom', u'power', u'plant', u'deal'] [u'group', u'prais', u'water', u'effici', u'move'] [u'hama', u'say', u'prison', u'releas'] [u'hannay', u'origin', u'debut'] [u'campaign', u'target', u'teenag'] [u'hope', u'rail', u'line', u'reopen'] [u'hous', u'arson', u'attack', u'fail'] [u'howard', u'stand', u'intellig'] [u'howard', u'stand', u'comment'] [u'india', u'retain', u'win', u'squad', u'champion', u'trophi'] [u'industri', u'relat', u'spotlight'] [u'inquest', u'find', u'solut', u'decad', u'mysteri'] [u'insur', u'decis', u'delay', u'frustrat', u'miner'] [u'iran', u'bring', u'israel', u'missil', u'rang'] [u'iran', u'test', u'long', u'rang', u'missil'] [u'iraq', u'hide', u'weapon', u'scientist'] [u'begin', u'gretley', u'disast', u'hear'] [u'januari', u'cronj', u'nation', u'bok'] [u'jewish', u'bodi', u'lose', u'irv', u'film'] [u'rise'] [u'keke', u'sign', u'solomon', u'ceasefir'] [u'knight', u'loss', u'canterburi'] [u'labor', u'warn', u'western', u'power', u'break'] [u'laker', u'superstar', u'bryant', u'charg', u'sexual', u'assault'] [u'landhold', u'threaten', u'action', u'properti', u'right'] [u'lawyer', u'suggest', u'alcohol', u'tip'] [u'leed', u'hold', u'super', u'leagu', u'lead'] [u'lewi', u'gain', u'world', u'championship', u'mark'] [u'licens', u'urg', u'monitor', u'hotel', u'curfew', u'trial'] [u'live', u'cattl', u'export', u'asia', u'boom'] [u'liverpool', u'swoop', u'havr', u'pair'] [u'lobster', u'industri', u'boost', u'oversea', u'promot'] [u'magistr', u'industri', u'drug', u'determin'] [u'magpi', u'steer', u'clear', u'jumper'] [u'arrest', u'chainsaw', u'chequ'] [u'deni', u'bail', u'airport', u'hoax', u'charg'] [u'face', u'committ', u'decept', u'charg'] [u'face', u'hoax', u'charg'] [u'marathon', u'biggest', u'best'] [u'maroon', u'rooki', u'anasta', u'blue'] [u'maroon', u'rooki'] [u'maroon', u'rooki', u'anasta', u'blue'] [u'matthew', u'wari', u'form', u'hawk'] [u'mcgee', u'retain', u'yellow', u'petacchi', u'claim', u'crash', u'mar'] [u'media', u'access', u'limit', u'law'] [u'student', u'reject', u'immor', u'bond', u'plan'] [u'meet', u'help', u'revitalis'] [u'mengin', u'earn', u'tour', u'polka', u'jersey'] [u'mergea', u'leav', u'aussi', u'second', u'best', u'boy', u'final'] [u'millar', u'lash', u'team', u'prologu', u'problem'] [u'mine', u'manag', u'welcom', u'industri', u'promot'] [u'mob', u'gridlock', u'nigerian', u'capit'] [u'monaro', u'school', u'win', u'rock', u'eisteddfod'] [u'monopoli', u'ekka', u'state', u'fair', u'end'] [u'fund', u'mental', u'health', u'program'] [u'want', u'young', u'afghani', u'refuge', u'deport'] [u'welcom', u'power', u'station', u'sale', u'benefit'] [u'mysteri', u'boe', u'resurfac', u'disappear'] [u'naidoc', u'festiv', u'look', u'futur'] [u'navratilova', u'tie', u'record', u'titl'] [u'earli', u'begin', u'bushfir', u'plan'] [u'home', u'plan', u'western', u'desert', u'resid'] [u'public', u'hous', u'broom'] [u'anglican', u'leader', u'priest', u'decis'] [u'opposit', u'question', u'fisheri', u'fee'] [u'top', u'econom', u'growth', u'forecast'] [u'nurs', u'continu'] [u'overtim', u'affect', u'perform', u'polic'] [u'palestinian', u'arrest', u'suspect', u'suicid', u'bomber'] [u'pamplona', u'street', u'bull'] [u'papuan', u'shoot', u'separatist', u'ceremoni'] [u'petacchi', u'emerg', u'sprint', u'king'] [u'philippoussi', u'vow'] [u'pilot', u'surviv', u'crash'] [u'seek', u'advic', u'indigen', u'domest', u'violenc'] [u'polic', u'appeal', u'inform', u'ballina', u'fatal'] [u'polic', u'captur', u'shin', u'path', u'leader'] [u'polic', u'detect', u'foul', u'play', u'british', u'diver'] [u'polic', u'dismantl', u'drug'] [u'policemen', u'bushfir', u'honour'] [u'polic', u'offic', u'hospit', u'casino', u'bash'] [u'polic', u'probe', u'beach', u'bodi'] [u'polic', u'probe', u'bodi'] [u'polic', u'probe', u'pedestrian', u'death'] [u'polic', u'seek', u'inform', u'supermarket', u'brawl'] [u'port', u'adelaid', u'magistr', u'polic', u'investig'] [u'price', u'rise', u'occas', u'grab', u'biggest', u'career'] [u'push', u'emphasi', u'green', u'issu'] [u'ralf', u'lead', u'william'] [u'rate', u'rise', u'worth', u'pain', u'mayor'] [u'rauhihi', u'send', u'messag', u'selector'] [u'resid', u'voic', u'rate', u'rise', u'concern'] [u'review', u'canberra', u'servic'] [u'search'] [u'roo', u'rock', u'trip', u'west'] [u'ring', u'phone', u'servic'] [u'rugbi', u'player', u'drop', u'legal', u'challeng'] [u'santo', u'bounc', u'libertador', u'defeat'] [u'vow', u'continu', u'dump', u'fight'] [u'schus', u'warn', u'ferrari'] [u'seven', u'tribun'] [u'sheedi', u'say', u'competit', u'wide', u'open'] [u'shire', u'consid', u'mine', u'option'] [u'wont', u'tour', u'detent', u'centr'] [u'small', u'turnout', u'king', u'bros', u'creditor', u'meet'] [u'soldier', u'kill', u'sporad', u'attack', u'iraq'] [u'solomon', u'mark', u'year', u'independ'] [u'solomon', u'villag', u'receiv', u'financi'] [u'south', u'east', u'lose', u'footi', u'final'] [u'speed', u'camera', u'attack'] [u'substanc', u'abus', u'confer', u'agenda'] [u'support', u'port', u'kembla', u'contain', u'termin'] [u'sustain', u'spotlight', u'confer'] [u'target', u'photo', u'hark', u'day'] [u'rise'] [u'job', u'growth', u'tip', u'remain', u'static'] [u'taxpay', u'return', u'bond', u'medic', u'student'] [u'taylor', u'accept', u'asylum', u'offer'] [u'tear', u'feder', u'slay', u'demon', u'self', u'doubt'] [u'teen', u'gang', u'rape', u'charg', u'bail'] [u'teen', u'rescu', u'mountain'] [u'teen', u'stand', u'trial', u'crossbow', u'attack'] [u'toddler', u'die', u'driveway', u'mishap'] [u'tourism', u'number', u'reach', u'high', u'tasmania'] [u'tourism', u'plan', u'afoot', u'jail'] [u'tourism', u'plan', u'seek', u'financi'] [u'trio', u'charg', u'break', u'raid'] [u'trio', u'head', u'women', u'open', u'playoff'] [u'tuna', u'billfish', u'menu', u'fisheri', u'forum'] [u'join', u'effort', u'stamp', u'ident', u'fraud'] [u'union', u'highlight', u'transport', u'dispar'] [u'militari', u'expert', u'arriv', u'monrovia'] [u'soldier', u'die', u'latest', u'iraq', u'attack'] [u'soldier', u'shoot', u'baghdad'] [u'vicent', u'suffer', u'congression', u'defeat'] [u'vice', u'regal', u'visit', u'christma'] [u'govt', u'keep', u'cost', u'swim', u'wrap'] [u'vieira', u'arsenal', u'deal'] [u'vincentia', u'develop', u'talk', u'plan'] [u'governor', u'urg', u'compass', u'refuge'] [u'polic', u'inquiri', u'extend'] [u'weapon', u'heat'] [u'whitlam', u'offer', u'handprint', u'reconcili'] [u'fuss', u'target', u'polic'] [u'wimbledon', u'result'] [u'woman', u'critic', u'crash'] [u'wood', u'coast', u'shoot', u'western', u'open'] [u'work', u'relationship', u'give', u'thumb', u'darwin'] [u'youth', u'seek', u'entertain'] [u'grant', u'crop', u'centr'] [u'aborigin', u'leader', u'boycott', u'polic', u'ceremoni'] [u'mazen', u'cancel', u'plan', u'peac', u'meet'] [u'age', u'black', u'hawk'] [u'alleg', u'murder', u'face', u'court', u'today'] [u'amrad', u'resign'] [u'anderson', u'deni', u'secret', u'plan', u'telstra', u'fund'] [u'angliss', u'hospit', u'coronari', u'unit'] [u'kill', u'major', u'hutu', u'rebel', u'attack'] [u'aussi', u'domin', u'tour', u'franc'] [u'aust', u'doctor', u'join', u'global', u'diabet', u'trial'] [u'australian', u'dollar', u'drop', u'nasdaq', u'reach', u'high'] [u'australian', u'growth', u'creditor', u'meet', u'plan'] [u'australia', u'host', u'talk', u'north', u'korean', u'weapon', u'sale'] [u'baker', u'cop', u'match'] [u'bank', u'chang', u'confidenti', u'deed', u'claus'] [u'bartlett', u'urg', u'releas', u'detain', u'children'] [u'bat', u'blame', u'darwin', u'blackout'] [u'battl', u'line', u'draw', u'wast', u'dump'] [u'berri', u'offer', u'grower', u'assur', u'amidst', u'merger', u'talk'] [u'bever', u'hillbilli', u'ebsen', u'die'] [u'bold', u'beloki', u'ignit', u'armstrong', u'feud'] [u'boost', u'plan', u'glen', u'inn', u'jail'] [u'break', u'hill', u'isa', u'lead', u'zinc'] [u'brother', u'rescu', u'boat', u'drama'] [u'bubbl', u'feder', u'welcom', u'home'] [u'bulldog', u'lose', u'hugh', u'bronco', u'clash'] [u'bullet', u'sign', u'boomer', u'black'] [u'bus', u'run', u'disput', u'linger'] [u'bush', u'arriv', u'seneg', u'begin', u'africa', u'tour'] [u'bush', u'bemoan', u'racial', u'tyranni'] [u'bushfir', u'parliamentari', u'probe', u'begin', u'today'] [u'bushfir', u'probe', u'head', u'nowra'] [u'bush', u'commit', u'forc', u'liberia'] [u'busi', u'confid', u'surg', u'rat', u'specul'] [u'busi', u'industri', u'law', u'remind'] [u'busi', u'get', u'synchrotron', u'plan'] [u'die', u'court', u'rule'] [u'speed', u'trucki'] [u'carefre', u'canari', u'knock', u'perch'] [u'carr', u'consid', u'stagger', u'work', u'hour'] [u'chamber', u'offer', u'shire', u'chang', u'reason'] [u'christma', u'island', u'condit', u'divid', u'committe'] [u'say', u'saddam', u'tape', u'probabl', u'authent'] [u'columbia', u'smoke'] [u'comalco', u'suppli', u'gladston', u'refineri'] [u'commerci', u'strategi', u'plan', u'bendigo'] [u'communiti', u'mourn', u'loss', u'footi', u'legend'] [u'communiti', u'want', u'minist', u'stop', u'phone', u'tower'] [u'concern', u'air', u'john', u'diseas', u'spread'] [u'conflict', u'report', u'rais', u'manslaught', u'case'] [u'conserv', u'trust', u'air', u'develop', u'fear'] [u'content', u'rule', u'respons', u'prime', u'job'] [u'cook', u'lead', u'aussi', u'domin', u'tour'] [u'cooki', u'come', u'boil', u'aussi', u'monopolis', u'tour'] [u'cool', u'head', u'cook', u'leav', u'kamikaz'] [u'council', u'approv', u'high', u'rise', u'develop'] [u'council', u'chang', u'mind', u'age', u'care', u'talk'] [u'council', u'end', u'wrangl', u'offic', u'site'] [u'council', u'offer', u'qualifi', u'back', u'singl', u'water'] [u'court', u'reject', u'stay', u'child', u'detaine', u'rule'] [u'crean', u'target', u'brain', u'drain'] [u'dixon', u'bulldog', u'pair', u'plead', u'guilti', u'wrestl'] [u'await', u'report', u'magistr', u'conduct'] [u'dragon', u'pair', u'mull', u'judiciari', u'plea'] [u'drought', u'affect', u'canola', u'crop'] [u'educ', u'help', u'heal', u'social', u'woe'] [u'eel', u'sign', u'widder'] [u'feder', u'govt', u'rule', u'environ', u'levi'] [u'govt', u'extend', u'blood', u'donat'] [u'fight', u'continu', u'return', u'aborigin', u'remain'] [u'final', u'nasa', u'send', u'mar', u'rover'] [u'crippl', u'communiti', u'radio', u'station'] [u'fisheri', u'director', u'reject', u'fee', u'attack'] [u'foe', u'death', u'heart', u'problem', u'drug', u'state'] [u'fourth', u'suspect', u'surrend'] [u'fourth', u'suspect', u'arrest', u'embassi', u'bomb', u'plot'] [u'fund', u'boost', u'youth', u'patrol'] [u'gallop', u'fight', u'nuclear', u'wast', u'dump'] [u'captain', u'origin', u'bronco'] [u'gimelstob', u'fight', u'morrison', u'hall', u'fame'] [u'golf', u'club', u'option', u'investig'] [u'gough', u'fit', u'test', u'recal', u'say', u'fletcher'] [u'govt', u'challeng', u'sugar', u'subsidi'] [u'govt', u'doubl', u'dip', u'home'] [u'govt', u'fight', u'busi'] [u'govt', u'highlight', u'improv', u'indigen', u'health'] [u'govt', u'close', u'lodg', u'help', u'elder'] [u'govt', u'establish', u'aviat', u'train', u'centr'] [u'group', u'highlight', u'busi', u'growth', u'impedi'] [u'grower', u'hope', u'squeez', u'solidar', u'merger'] [u'harrigan', u'refere', u'origin'] [u'harri', u'potter', u'hous', u'sale'] [u'health', u'worker', u'austrian', u'train', u'mission'] [u'help', u'seek', u'dairi', u'farmer'] [u'hewitt', u'triumph'] [u'hick', u'admit', u'train', u'qaeda', u'howard'] [u'hick', u'militari', u'defenc', u'team'] [u'hobart', u'waterfront', u'star', u'hotel', u'open', u'year'] [u'horan', u'hall', u'fame', u'glori'] [u'howard', u'play', u'polit', u'freeway', u'brack'] [u'hutchison', u'say', u'tower', u'build'] [u'hutchison', u'tell', u'pull', u'mobil', u'tower'] [u'smell', u'fishi', u'rusik'] [u'imprison', u'detect', u'releas', u'bail'] [u'indigen', u'cultur', u'celebr'] [u'indonesian', u'trio', u'guilti', u'illeg', u'fish'] [u'injur', u'hamilton', u'ignor', u'pain', u'finish', u'tour', u'stage'] [u'inspector', u'probe', u'anim', u'welfar'] [u'insur', u'disput', u'put', u'home', u'birth', u'doubt'] [u'iranian', u'twin', u'die', u'marathon', u'surgeri'] [u'iraq', u'command', u'step'] [u'israel', u'milit', u'truce', u'worthless'] [u'octopus', u'blob'] [u'jewish', u'group', u'appeal', u'film', u'rule'] [u'judg', u'approv', u'worldcom', u'settlement'] [u'judg', u'reject', u'guilti', u'plea'] [u'juri', u'find', u'husband', u'guilti', u'hairdryer', u'murder'] [u'kayak', u'baggaley', u'remain', u'world', u'number'] [u'kewel', u'delay', u'liverpool'] [u'kewel', u'emerton', u'sign', u'deal'] [u'sue', u'alleg', u'chicken', u'abus'] [u'king', u'roger', u'save', u'tenni', u'world', u'swiss', u'press'] [u'labor', u'tip', u'higher', u'fee', u'spread'] [u'leagu', u'player', u'cop', u'year', u'handl'] [u'love', u'tender', u'tooth'] [u'magic', u'armstrong', u'charg', u'assault'] [u'magpi', u'mourn', u'time', u'great'] [u'magpi', u'mourn', u'rise'] [u'avoid', u'jail', u'drug', u'sale'] [u'face', u'court', u'drug', u'charg'] [u'share', u'surg', u'takeov', u'talk'] [u'marathon', u'organis', u'look', u'bigger', u'thing'] [u'marvel', u'unveil', u'mutant'] [u'mason', u'open', u'tiwi', u'age', u'care', u'facil'] [u'mccaski', u'forg', u'militari', u'promot', u'court', u'hear'] [u'mcewen', u'green', u'jersey', u'add', u'aussi', u'success', u'stori'] [u'mcgauran', u'call', u'wast', u'bluff'] [u'medic', u'student', u'fight', u'rural', u'servic'] [u'merger', u'late', u'opposit'] [u'mine', u'magnat', u'win', u'famili', u'feud'] [u'mistak', u'see', u'pill', u'return', u'shelv'] [u'mitchel', u'give', u'back', u'captain', u'thorn'] [u'moreton', u'fish', u'farm', u'riski', u'springborg'] [u'air', u'concern', u'armi', u'base'] [u'naidoc', u'boycott', u'threat', u'creat', u'divis', u'say'] [u'nativ', u'titl', u'tribun', u'allow', u'diamond'] [u'nat', u'committe', u'reject', u'telstra', u'trust'] [u'netbal', u'readi', u'world', u'championship'] [u'antarct', u'leader', u'choos'] [u'ferri', u'result', u'quarantin', u'servic'] [u'mclaren', u'unlik', u'silverston'] [u'news', u'resourc', u'gain', u'offset', u'bank', u'fall'] [u'chief', u'iraq', u'pledg', u'defeat', u'enemi'] [u'nigerian', u'union', u'fuel', u'strike'] [u'bunni'] [u'simpl', u'solut', u'alcohol', u'abus', u'patterson'] [u'govt', u'offer', u'explor', u'pledg'] [u'extend', u'trial', u'electron', u'health', u'record'] [u'palestinian', u'releas', u'report', u'suicid', u'bomber'] [u'patient', u'transfer', u'link', u'nurs', u'shortag'] [u'plane', u'crash', u'probe', u'continu'] [u'keep', u'dossier', u'arm', u'length'] [u'policeman', u'grant', u'bail', u'drug', u'charg'] [u'polic', u'clear', u'road', u'race'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'seek', u'urgent', u'health', u'dept', u'meet'] [u'polic', u'trial', u'unlik', u'adopt'] [u'polic', u'union', u'reject', u'search', u'claim'] [u'popular', u'show', u'face', u'industri', u'action'] [u'port', u'wear', u'black', u'white', u'strip'] [u'posit', u'aspect', u'cultur'] [u'premier', u'leagu', u'chelsea', u'ban', u'bosnich'] [u'probe', u'begin', u'unit', u'blaze'] [u'prosecutor', u'mull', u'bryant', u'charg'] [u'push', u'region', u'hub'] [u'govt', u'prais', u'respons', u'polic', u'target'] [u'qualifi', u'lunk', u'win', u'women', u'open', u'playoff'] [u'report', u'clear', u'showground', u'health', u'concern'] [u'resid', u'vote', u'develop', u'plan'] [u'resid', u'voic', u'ambul', u'levi', u'grip'] [u'ax', u'canberra', u'melbourn', u'servic'] [u'rspca', u'continu', u'monitor', u'live', u'export', u'industri'] [u'rspca', u'concern', u'live', u'stock', u'export'] [u'continu', u'fight', u'nuclear', u'dump'] [u'safeti', u'probe', u'launch', u'post', u'hole', u'digger'] [u'scientist', u'unveil', u'genet', u'test', u'techniqu'] [u'sheep', u'price', u'expect', u'remain', u'high'] [u'shire', u'speak', u'sentenc'] [u'shop', u'centr', u'agenda'] [u'simeoni', u'armstrong', u'court'] [u'simon', u'stand', u'protea', u'skipper', u'smith'] [u'singapor', u'iran', u'mourn', u'twin', u'death'] [u'tour', u'christma', u'island'] [u'small', u'plane', u'crash', u'coast'] [u'solomon', u'adjourn', u'intervent', u'forc', u'debat'] [u'closur', u'plan', u'peach'] [u'springbok', u'heart', u'match'] [u'stosur', u'return', u'wimbledon'] [u'student', u'filmmak', u'strut', u'stuff', u'festiv'] [u'student', u'crash', u'univers', u'senat', u'meet'] [u'studi', u'consid', u'crop', u'water', u'salin'] [u'studi', u'consid', u'illawarra', u'escarp', u'flora', u'fauna'] [u'studi', u'say', u'snore', u'kid', u'hyperact'] [u'sudan', u'defenc', u'chief', u'plane', u'crash', u'victim'] [u'sudan', u'defenc', u'chief', u'victim', u'plane'] [u'survey', u'say', u'confid', u'wan'] [u'sydney', u'reject', u'greiner', u'role'] [u'govt', u'urg', u'seek', u'invest'] [u'tasmania', u'maintain', u'cabl', u'competit'] [u'teacher', u'threaten', u'nation', u'strike'] [u'ten', u'thousand', u'follow', u'burial'] [u'terrorist', u'access', u'toxic', u'agent', u'limit'] [u'thorp', u'eye', u'glori', u'spain'] [u'injur', u'centrelink', u'offic'] [u'tour', u'organis', u'plead', u'guilti', u'stage'] [u'twin', u'battl', u'circul', u'problem'] [u'twin', u'marathon', u'surgeri'] [u'twin', u'oper', u'enter'] [u'dead', u'blast', u'outsid', u'aviv'] [u'probe', u'reject', u'report', u'defend', u'campbel'] [u'ask', u'rich', u'countri', u'doubl'] [u'back', u'hike', u'secret', u'vote'] [u'union', u'scoff', u'longer', u'school', u'hour', u'nonsens'] [u'urg', u'iran', u'allow', u'tougher', u'nuclear', u'inspect'] [u'admit', u'error', u'uranium', u'claim', u'report'] [u'polic', u'claim', u'kill', u'spree', u'foil'] [u'nat', u'cautious', u'telstra', u'sale', u'fund'] [u'visitor', u'number', u'south', u'west'] [u'plot', u'emptiv', u'strike', u'wast', u'dump'] [u'water', u'restrict', u'impact', u'grower'] [u'waugh', u'lille', u'track', u'india'] [u'william', u'adler', u'lose', u'penalti', u'appeal'] [u'windi', u'western', u'power'] [u'wine', u'industri', u'urg', u'plant', u'vine'] [u'woolworth', u'readi', u'petrol', u'competit'] [u'worker', u'threaten', u'strike', u'entitl'] [u'zola', u'pay', u'emot', u'farewel', u'chelsea'] [u'abattoir', u'revamp', u'boost', u'number'] [u'aborigin', u'health', u'servic', u'notch', u'year'] [u'actor', u'strike', u'better', u'work', u'contract'] [u'africa', u'drive', u'agenda', u'scientist', u'say'] [u'agreement', u'boost', u'chanc', u'project'] [u'question', u'health', u'program'] [u'analyst', u'view', u'dollar', u'slump', u'correct'] [u'anderson', u'blame', u'competit', u'airlin', u'cut'] [u'anderson', u'unhappi', u'decis'] [u'penni', u'save', u'rais'] [u'arkansa', u'lawyer', u'charg', u'mail', u'dead', u'snake'] [u'art', u'deleg', u'push', u'fund'] [u'aust', u'japan', u'sign', u'fresh', u'trade', u'deal'] [u'australia', u'field', u'best', u'squad', u'year', u'jone'] [u'australia', u'name', u'fourth', u'best', u'place', u'live'] [u'australian', u'injur', u'bull'] [u'aust', u'coast', u'love', u'affair', u'endur'] [u'author', u'concern', u'tangl', u'humpback'] [u'bali', u'bomb', u'go', u'script'] [u'refus', u'reveal', u'iraq', u'sourc'] [u'beatti', u'defend', u'hous', u'afford', u'claim'] [u'beatti', u'tip', u'bluewat', u'announc'] [u'beckham', u'real', u'green', u'light', u'hong', u'kong'] [u'bergkamp', u'agent', u'ridicul', u'arsenal', u'contract'] [u'berlusconi', u'express', u'regret', u'nazi', u'jibe'] [u'river', u'book', u'stori', u'hope', u'author'] [u'blair', u'declar', u'right'] [u'blaze', u'tear', u'roma', u'hous'] [u'bodi', u'believ', u'miss', u'fisherman'] [u'boost', u'fight', u'domest', u'violenc', u'child'] [u'bush', u'mbeki', u'mind', u'zimbabw'] [u'bush', u'mbeki', u'discuss', u'zimbabw', u'issu'] [u'bush', u'visit', u'slave', u'fort'] [u'strike', u'parti', u'talk'] [u'collect', u'chang'] [u'canada', u'allow', u'marriag'] [u'carraz', u'shock', u'blake', u'draper'] [u'carr', u'reject', u'arm', u'bandit', u'charg'] [u'centr', u'use', u'naidoc', u'week', u'self'] [u'charg', u'downgrad', u'backyard', u'bodi', u'case'] [u'chelsea', u'coach', u'ranieri', u'toler', u'interfer'] [u'children', u'health', u'scheme', u'farewel', u'pie', u'piper'] [u'children', u'struggl', u'vision', u'care'] [u'choisir', u'stick', u'hoov', u'aussi'] [u'church', u'outlin', u'guidelin', u'child', u'abus'] [u'club', u'fear', u'impact', u'poki', u'law'] [u'club', u'hold', u'crisi', u'meet', u'poki', u'rise'] [u'coal', u'mine', u'unsecur', u'creditor', u'second', u'offer'] [u'communiti', u'urg', u'battl', u'inhal', u'abus'] [u'concern', u'air', u'bushfir', u'submiss', u'snub'] [u'concern', u'air', u'cancer', u'treatment', u'delay'] [u'concern', u'air', u'educ', u'train', u'offic'] [u'confer', u'focus', u'healthi', u'river'] [u'consum', u'warn', u'product'] [u'coron', u'clear', u'telstra', u'boy', u'death'] [u'councillor', u'admit', u'inappropri', u'behaviour'] [u'court', u'back', u'sentenc', u'challeng'] [u'court', u'hear', u'accus', u'imperson', u'militari', u'perk'] [u'crean', u'question', u'credibl', u'iraq'] [u'dairi', u'plant', u'year', u'away'] [u'danger', u'prison', u'stand'] [u'democrat', u'lobbi', u'genet', u'privaci'] [u'deplet', u'rabobank', u'surviv', u'team', u'time', u'trial'] [u'depot', u'futur', u'secur', u'transport'] [u'diamond', u'explor', u'promis', u'benefit'] [u'doctor', u'recruit', u'thousand', u'diabet', u'trial'] [u'dollar', u'slump', u'bring', u'rat', u'specul'] [u'door', u'open', u'anti', u'nuke', u'mission', u'downer'] [u'downer', u'loos', u'lip', u'north', u'korea'] [u'doyl', u'oppos', u'transsexu', u'join', u'polic'] [u'employ', u'regard', u'stagger', u'hour', u'impract'] [u'win', u'mount', u'stromlo', u'contract'] [u'eriksson', u'deni', u'chelski'] [u'famili', u'worker', u'consid', u'intensifi', u'campaign'] [u'fatah', u'reject', u'mazen', u'resign'] [u'feder', u'opposit', u'consid', u'age', u'care', u'woe'] [u'film', u'promis', u'econom', u'boost', u'snowi'] [u'firefight', u'contain', u'industri', u'blaze'] [u'firm', u'offer', u'reason', u'walkway', u'closur'] [u'fish', u'hatcheri', u'plan', u'goondiwindi'] [u'fish', u'sight', u'scholarship', u'smarten', u'speci'] [u'fitzroy', u'council', u'hand', u'budget'] [u'flood', u'victim', u'want', u'compens', u'faulti', u'gate'] [u'foreign', u'student', u'detain', u'miss', u'class', u'union'] [u'armi', u'lieuten', u'sentenc', u'forgeri'] [u'red', u'coach', u'connolli', u'take', u'bath'] [u'german', u'buyer', u'find', u'surpris', u'bonus'] [u'goldfield', u'tourism', u'imag', u'consider'] [u'good', u'rain', u'farmer'] [u'gould', u'wari', u'wound', u'maroon'] [u'govt', u'delay', u'cancel', u'flight'] [u'govt', u'ignor', u'advic', u'duck', u'season', u'trust'] [u'govt', u'tripl', u'uni', u'deregul', u'fund'] [u'grower', u'littl', u'incent', u'plant', u'grape'] [u'guid', u'manag', u'leas', u'agricultur', u'land'] [u'hama', u'insist', u'commit', u'truce'] [u'hama', u'prepar', u'disarm', u'spokesman'] [u'harbhajan', u'put', u'surgeri', u'physio', u'work'] [u'heritag', u'offic', u'decid', u'theatr', u'futur'] [u'hick', u'face', u'indefinit', u'detent', u'council', u'warn'] [u'implic', u'wider', u'charg', u'owen'] [u'hill', u'get', u'greater', u'river', u'murray', u'power'] [u'hockey', u'say', u'tire', u'tourism'] [u'hop', u'knight', u'cowboy', u'clash', u'mackay'] [u'howard', u'want', u'china', u'input', u'north', u'korea'] [u'hundr', u'fear', u'dead', u'bangladesh', u'ferri', u'capsiz'] [u'readi', u'william', u'sister', u'sharapova'] [u'india', u'congress', u'consid', u'coalit', u'oust'] [u'iran', u'defend', u'wrestl', u'world', u'titl', u'york'] [u'iraq', u'justifi', u'maintain'] [u'kewel', u'confirm', u'red'] [u'lanc', u'prais', u'tough', u'tyler'] [u'lao', u'free', u'western', u'journalist'] [u'liberian', u'forc', u'block', u'mission'] [u'life', u'leav', u'coastal', u'properti', u'boom'] [u'litter', u'hotlin', u'horsham'] [u'long', u'term', u'leas', u'educ', u'facil'] [u'major', u'bank', u'weaken'] [u'awaken', u'year', u'coma'] [u'charg', u'centrelink', u'attack'] [u'rescu', u'gorg', u'fall'] [u'wield', u'sydney', u'airport'] [u'mcewen', u'lash', u'haselbach', u'crash'] [u'mcgee', u'lose', u'yellow', u'jersey'] [u'mcgee', u'sacrific', u'yellow', u'focus', u'turn', u'cook'] [u'mcgee', u'sacrific', u'yellow', u'jersey'] [u'meet', u'strathfieldsay', u'properti', u'takeov'] [u'meet', u'focus', u'tourism', u'chang'] [u'militari', u'intercept', u'role', u'long'] [u'minist', u'agre', u'consist', u'class'] [u'mirrar', u'peopl', u'jabiluka', u'victori'] [u'mix', u'news', u'uni', u'overhaul'] [u'mother', u'access', u'children', u'alleg', u'kill'] [u'highlight', u'teen', u'pregnanc', u'rat'] [u'outrag', u'ambul', u'levi', u'impact'] [u'telstra', u'sale', u'concern'] [u'nadal', u'oust', u'aynaoui', u'swedish', u'open'] [u'nation', u'park', u'servic', u'watch', u'work'] [u'nazon', u'take', u'yellow', u'reveng', u'franc'] [u'neverfail', u'takeov', u'seal'] [u'alleg', u'saddam', u'tape', u'broadcast'] [u'montgomeri', u'miss', u'rome', u'race'] [u'malaria', u'vaccin', u'trial', u'africa'] [u'news', u'good', u'shepherd', u'unsecur', u'creditor'] [u'fund', u'model', u'wont', u'work', u'vice', u'chancellor'] [u'nikkei', u'hop', u'ralli'] [u'sight', u'disput'] [u'north', u'west', u'nurs', u'consid', u'strike'] [u'offici', u'attack', u'govt', u'lack', u'generos'] [u'outsourc', u'spark', u'loss', u'fear'] [u'pakistan', u'captain', u'latif', u'reprimand', u'booki'] [u'pakistan', u'host', u'indian'] [u'palestinian', u'kill', u'west', u'bank'] [u'park', u'plan', u'hit', u'snag', u'upper', u'hous'] [u'piraci', u'forc', u'fish', u'boat', u'shore'] [u'plan', u'bushfir', u'wood'] [u'plan', u'interdict', u'secur', u'risk', u'brereton'] [u'accus', u'snub', u'liber'] [u'see', u'valu', u'inject', u'room'] [u'tour', u'trailer', u'factori'] [u'polic', u'boost', u'cross', u'border', u'relat'] [u'polic', u'confid', u'transsexu', u'offic'] [u'polic', u'school', u'scheme', u'work', u'commission'] [u'polic', u'capsicum', u'spray', u'centrelink', u'branch'] [u'post', u'mortem', u'unabl', u'clarifi', u'foul', u'play', u'theori'] [u'prais', u'pilot', u'effort'] [u'prais', u'region', u'race', u'plan'] [u'probe', u'begin', u'histor', u'home', u'blaze'] [u'produc', u'talk', u'actor', u'strike'] [u'progress', u'effort', u'attract', u'medic', u'specialist'] [u'public', u'help', u'seek', u'miss', u'woman', u'case'] [u'public', u'hous', u'revamp', u'geraldton'] [u'push', u'continu', u'altern', u'fuel'] [u'push', u'rail', u'standardis', u'track'] [u'qualifi', u'make', u'feder', u'fight', u'swiss', u'open'] [u'real', u'madrid', u'agre', u'sign', u'argentina', u'defend', u'milito'] [u'tape', u'harm', u'health', u'care'] [u'refresh', u'upbeat', u'mood', u'loch', u'lomond'] [u'relax', u'marijuana', u'law', u'mistak', u'judg'] [u'research', u'stoneheng', u'depict', u'femal', u'genitalia'] [u'retir', u'policeman', u'fight', u'corrupt', u'claim'] [u'rich', u'order', u'repay'] [u'rise', u'popul', u'predict'] [u'river', u'burst', u'kill', u'leav', u'million', u'homeless'] [u'riverland', u'repres', u'flow', u'confer'] [u'ruddock', u'urg', u'appeal', u'court', u'rule'] [u'rural', u'research', u'sign', u'american', u'deal'] [u'govt', u'vow', u'high', u'court', u'action', u'wast', u'dump'] [u'saint', u'ponder', u'baker', u'kick', u'appeal'] [u'school', u'money', u'stay', u'govern', u'sector'] [u'search', u'continu', u'miss'] [u'seoul', u'say', u'north', u'korea', u'test'] [u'sheep', u'number', u'fall'] [u'sheep', u'shortag', u'loom'] [u'shoaib', u'face', u'court', u'lash', u'team', u'mat'] [u'shock', u'bryant', u'assault', u'claim'] [u'dead', u'mississippi', u'shoot'] [u'soccer', u'australia', u'slam', u'blatter', u'bastardri'] [u'socceroo', u'neill', u'seal', u'blackburn', u'deal'] [u'solomon', u'need', u'intervent', u'forc'] [u'solomon', u'urg', u'forc'] [u'campaign', u'road', u'speed', u'reduct'] [u'say', u'rivkin', u'return', u'work'] [u'south', u'africa', u'spinner', u'boje', u'break', u'shin', u'bone'] [u'studi', u'consid', u'darl', u'down', u'food', u'wine', u'tourism'] [u'studi', u'boost', u'beach', u'manag', u'effort'] [u'suharto', u'court', u'fight', u'year', u'sentenc'] [u'support', u'plan', u'male', u'sexual', u'abus', u'victim'] [u'tamworth', u'consid', u'super', u'council', u'idea'] [u'tasmanian', u'injur', u'bull'] [u'teacher', u'join', u'nation', u'strike'] [u'tennant', u'creek', u'showcas', u'cultur'] [u'thai', u'life', u'expect', u'drop', u'aid', u'take', u'toll'] [u'thorp', u'cross', u'unchart', u'water'] [u'tourism', u'industri', u'look', u'better', u'time'] [u'tourism', u'zone', u'plan', u'draw', u'opposit'] [u'tourist', u'hospit', u'vehicl', u'rollov'] [u'train', u'exercis', u'help', u'tricki', u'rescu', u'pilot'] [u'twin', u'mourn', u'surgeri', u'fail'] [u'offici', u'claim', u'meet', u'report'] [u'union', u'intensifi', u'age', u'care', u'industri', u'action'] [u'captur', u'iraqi', u'offici'] [u'claim', u'iraq', u'untest', u'untru'] [u'increas', u'defenc', u'budget'] [u'reject', u'claim', u'sudan', u'plane', u'crash', u'fault'] [u'troop', u'seiz', u'cach', u'near', u'baghdad'] [u'valuat', u'rise', u'impact', u'rat'] [u'vaughan', u'come', u'good', u'protea'] [u'writer', u'nomin', u'romanc', u'award'] [u'govt', u'welcom', u'perth', u'foreshor', u'plan'] [u'wallabi', u'squad', u'best', u'year', u'jone'] [u'week', u'celebr', u'indigen', u'heritag'] [u'whale', u'entangl', u'cray', u'line'] [u'wild', u'bounti', u'consider'] [u'wine', u'industri', u'barossa'] [u'zimbabw', u'situat', u'agenda', u'bush', u'land'] [u'accident', u'dope', u'leav', u'face'] [u'launch', u'digit', u'card'] [u'actor', u'industri', u'drama', u'stay'] [u'reconsid', u'heroin', u'inject', u'room'] [u'toughen', u'vehicl', u'licenc'] [u'unemploy', u'drop', u'slight'] [u'african', u'union', u'ponder', u'peacekeep'] [u'airport', u'work', u'servic', u'resum'] [u'alcohol', u'restrict', u'decis', u'today'] [u'antiqu', u'textil', u'inspir', u'modern', u'fashion'] [u'anti', u'regim', u'protest', u'iran'] [u'armstrong', u'get', u'emot', u'team', u'time', u'trial'] [u'aust', u'architect', u'olymp', u'contract'] [u'babi', u'bronco', u'face', u'tough', u'test'] [u'baker', u'appeal'] [u'bangladesh', u'bowl', u'team'] [u'barca', u'ronaldinho', u'close', u'quaresma'] [u'beatti', u'canal', u'develop', u'approv'] [u'bendigo', u'fuel', u'price', u'rise'] [u'search', u'sizzl', u'artwork'] [u'anti', u'nuclear', u'protest', u'plan'] [u'black', u'widow', u'spider', u'improv', u'life'] [u'blast', u'near', u'moscow', u'restaur', u'kill', u'secur', u'expert'] [u'blue', u'continu', u'origin', u'prepar', u'forster'] [u'bomb', u'kill', u'children', u'philippin', u'game', u'stall'] [u'jump', u'move', u'train'] [u'brisban', u'firm', u'get', u'approv', u'test'] [u'brumbi', u'announc', u'gippsland', u'initi'] [u'budget', u'offer', u'mix', u'fortun', u'ratepay'] [u'crash', u'kill', u'hong', u'kong'] [u'bush', u'admit', u'secur', u'problem', u'iraq'] [u'bushfir', u'probe', u'hear', u'cooma', u'submiss'] [u'bush', u'outlin', u'common', u'sens', u'aid', u'strategi'] [u'busi', u'warn', u'letter', u'scam'] [u'byron', u'council', u'get', u'rat', u'rise', u'approv'] [u'import'] [u'coast', u'cruis', u'ship', u'termin'] [u'countri', u'tourism', u'boost'] [u'inject', u'room', u'trial', u'extend'] [u'camel', u'trekker', u'peel', u'orang'] [u'canada', u'legal', u'marijuana'] [u'candl', u'reconcili', u'captur', u'film'] [u'cane', u'wast', u'cattl', u'fee', u'earn', u'prize'] [u'care', u'elder', u'state', u'health', u'board'] [u'carr', u'launch', u'scheme', u'risk', u'youth'] [u'carr', u'take', u'icac', u'recommend', u'serious'] [u'censur', u'motion', u'pass', u'holloway'] [u'central', u'polic', u'join', u'protest'] [u'chang', u'afoot', u'snapper', u'closur'] [u'charlton', u'bank', u'rais', u'fund'] [u'chees', u'toast', u'welsh', u'truck', u'blaze'] [u'china', u'flood', u'toll', u'doubl', u'offici', u'report'] [u'club', u'rethink', u'communiti', u'support'] [u'communiti', u'loser', u'poki', u'plan'] [u'concern', u'propos', u'child', u'killer', u'legisl'] [u'condom', u'avail', u'school', u'say', u'doctor'] [u'cook', u'look', u'green', u'aussi'] [u'council', u'consid', u'restructur', u'option'] [u'council', u'hop', u'share', u'rescu', u'fund'] [u'crash', u'spark', u'polic', u'road', u'safeti', u'remind'] [u'crean', u'press', u'flesh', u'bundaberg'] [u'croatian', u'vukovar', u'suspect', u'plead', u'guilti'] [u'croker', u'mission', u'reunion', u'darwin'] [u'crow', u'hird', u'lloyd', u'danger'] [u'dan', u'jone', u'montgomeri'] [u'debat', u'heat', u'radioact', u'dump', u'plan'] [u'docker', u'dump', u'croad'] [u'dollar', u'slump', u'global', u'profit', u'take'] [u'dont', u'send', u'iraqi', u'refuge'] [u'duck', u'fair', u'game', u'tasmania'] [u'east', u'eden', u'hit', u'purpl', u'patch'] [u'confid', u'recaptur', u'mida', u'touch'] [u'emerton', u'sign', u'blackburn'] [u'employ', u'drop', u'spark', u'rat', u'talk'] [u'expert', u'home', u'hospit', u'virus'] [u'farmer', u'share', u'drought'] [u'fashion', u'design', u'show', u'ancient', u'fabric', u'nation'] [u'arrest', u'saddam'] [u'festiv', u'pull', u'irv', u'film'] [u'figur', u'salt', u'wound', u'farmer'] [u'inquiri', u'hear', u'evid', u'mismanag'] [u'food', u'voucher', u'avail', u'struggl', u'farmer'] [u'fund', u'boost', u'univers', u'campus'] [u'fire', u'power', u'station', u'plan', u'southern'] [u'gallop', u'tell', u'barnett'] [u'govt', u'clear', u'eavesdrop', u'claim'] [u'govt', u'oppos', u'death', u'penalti', u'hick'] [u'govt', u'step', u'iraq', u'claim', u'rudd'] [u'graham', u'clear', u'world', u'championship'] [u'green', u'get', u'wake'] [u'green', u'brisban', u'inject', u'room'] [u'har', u'race', u'accid', u'investig'] [u'health', u'board', u'chief', u'defend', u'peppertre', u'lodg', u'closur'] [u'hid', u'take', u'offenc', u'bore', u'comment'] [u'hobart', u'vibrant', u'bore', u'mayor'] [u'hope', u'cours', u'bolster', u'indigen', u'student'] [u'hope', u'fossil', u'excav', u'rare', u'speci'] [u'hotel', u'manag', u'admit', u'camera', u'ladi', u'toilet'] [u'howard', u'mislead', u'aust', u'iraq', u'rudd'] [u'huge', u'increas', u'region', u'migrat', u'visa'] [u'humpback', u'surf', u'miss', u'whale'] [u'icac', u'recommend', u'fraud', u'charg'] [u'indigen', u'station', u'worker', u'skill', u'upgrad'] [u'industri', u'action', u'moot', u'jail'] [u'injur', u'hamilton', u'mere', u'satisfi', u'tour', u'ride'] [u'iraq', u'case', u'stand', u'africa', u'link'] [u'jobless', u'rate', u'increas'] [u'network', u'hand', u'emerg', u'fund'] [u'jone', u'criticis', u'tinker', u'test', u'team'] [u'jone'] [u'kanimbla', u'home', u'duti'] [u'age', u'care', u'facil', u'open', u'say', u'shadow', u'minist'] [u'park', u'protest', u'escap', u'caution'] [u'kewel', u'complet', u'liverpool'] [u'latham', u'dump', u'nation', u'open'] [u'leed', u'boss', u'accus', u'kewel', u'hold', u'club', u'ransom'] [u'lefti', u'monti', u'exud', u'confid', u'loch', u'lomond'] [u'mallon', u'look', u'lpga', u'win'] [u'mallon', u'look', u'lpga', u'win', u'canadian', u'soil'] [u'arrest', u'samurai', u'sword', u'stand'] [u'arrest', u'wollongong', u'murder'] [u'charg', u'attempt', u'murder', u'arson'] [u'maroon', u'look', u'amend'] [u'marsh', u'hit', u'english', u'pitch'] [u'matilda', u'contest', u'nation', u'tournament'] [u'mcdonald', u'get', u'clear'] [u'medic', u'student', u'group', u'reject', u'plan'] [u'mine', u'pressur', u'rise', u'dollar', u'economist'] [u'minist', u'tip', u'swing', u'away'] [u'model', u'train', u'driver', u'charg', u'drink', u'drive'] [u'modest', u'environment', u'flow', u'predict', u'murray'] [u'bali', u'suspect', u'face', u'trial'] [u'highlight', u'drought', u'impact', u'wimmera'] [u'nato', u'share', u'respons', u'iraq', u'frank'] [u'servic', u'link', u'south', u'east', u'tamworth'] [u'trial', u'accus', u'cocain', u'import'] [u'nick', u'whitlam', u'win', u'appeal'] [u'korea', u'warn', u'dark', u'cloud', u'gather'] [u'north', u'korea', u'desper', u'state', u'ambassador'] [u'north', u'korea', u'prepar'] [u'novak', u'gaudio', u'overshadow', u'feder'] [u'govt', u'consid', u'council', u'clean', u'fund'] [u'jobless', u'rate', u'slight'] [u'record', u'slight', u'unemploy', u'rise'] [u'bangladesh', u'game', u'begin', u'marrara'] [u'nurs', u'tell', u'return', u'indigen', u'communiti'] [u'obrien', u'look', u'strike', u'deal', u'labor', u'right'] [u'offici', u'find', u'iraqi'] [u'deliveri', u'turn', u'delug'] [u'withhold', u'iraq', u'info'] [u'osama', u'inspir', u'bali', u'bomb'] [u'learn', u'bungl', u'asda'] [u'pedestrian', u'accid', u'put', u'woman', u'hospit'] [u'perri', u'head', u'field', u'milwauke', u'open'] [u'perth', u'strike', u'like', u'continu'] [u'perth', u'warn', u'get', u'dull'] [u'phelp', u'aim', u'upstag', u'thorp'] [u'pimpl', u'contain', u'miner', u'sit'] [u'pirat', u'sale', u'billion', u'industri'] [u'pluto', u'spring', u'gassi', u'surpris'] [u'polic', u'believ', u'recent', u'break', u'relat'] [u'polic', u'call', u'break', u'picket'] [u'polic', u'offic', u'push', u'pay', u'overtim'] [u'prison', u'worker', u'consid', u'industri', u'action'] [u'push', u'abolish', u'state', u'govern'] [u'health', u'respond', u'methadon', u'clinic', u'concern'] [u'risk', u'lose', u'lucrat', u'tuna', u'fleet'] [u'quarri', u'caus', u'concern', u'resid'] [u'raaf', u'blackhawk', u'make', u'emerg', u'land'] [u'ralf', u'schumach', u'set', u'pace'] [u'rapist', u'hold', u'indefinit'] [u'rate', u'increas', u'unjustifi', u'oppn'] [u'region', u'growth', u'impedi'] [u'renison', u'bell', u'give', u'longer', u'balanc', u'book'] [u'rescuer', u'lose', u'tangl', u'whale'] [u'research', u'gene', u'cancer', u'fight'] [u'research', u'show', u'increas', u'pakistan'] [u'resid', u'dental', u'woe', u'bite', u'hard'] [u'resourc', u'sector', u'lift'] [u'offer', u'mildura', u'assur'] [u'rise', u'dollar', u'spark', u'grim', u'predict', u'farm'] [u'rossi', u'throw', u'futur', u'question'] [u'continu', u'phillip', u'breakaway', u'plan'] [u'rower', u'eye', u'world', u'championship'] [u'erupt', u'kewel', u'move', u'liverpool'] [u'runaway', u'tanker', u'prove', u'cost', u'compani'] [u'russian', u'expert', u'kill', u'defus', u'bomb'] [u'anglican', u'church', u'begin', u'abus', u'inquiri'] [u'saint', u'challeng', u'baker', u'suspens'] [u'sar', u'suspect', u'wodonga', u'hospit'] [u'abus', u'report', u'tabl', u'parliament'] [u'secur', u'pact', u'start', u'militari', u'train'] [u'separ', u'guatemalan', u'twin', u'suffer', u'setback'] [u'sight', u'humpback', u'miss', u'whale'] [u'slovak', u'turn', u'husarova', u'hantuchova'] [u'slow', u'respons', u'drought'] [u'social', u'unrest', u'gag', u'french', u'actor'] [u'solomon', u'vote', u'intervent'] [u'solomon', u'villag', u'attack', u'report'] [u'speed', u'limit', u'reduct', u'consider'] [u'springbok', u'chang'] [u'state', u'demand', u'school', u'fund', u'model'] [u'state', u'cooper', u'school', u'curriculum'] [u'strict', u'criteria', u'elector', u'boundari', u'chang'] [u'strike', u'driver', u'defi', u'order'] [u'support', u'mount', u'shire', u'merger'] [u'sydney', u'airport', u'job'] [u'taiwan', u'sino', u'trigger', u'ambassador'] [u'talk', u'resum', u'nuclear', u'weapon', u'trade'] [u'talli', u'back', u'team', u'select'] [u'jobless', u'rate'] [u'teen', u'charg', u'attempt', u'murder', u'babi'] [u'texa', u'execut', u'shoot', u'wife', u'babi', u'divorc'] [u'thai', u'vow', u'weed', u'corrupt', u'cop'] [u'soldier', u'kill', u'iraq'] [u'player', u'split', u'british', u'open', u'lead', u'cours'] [u'tough', u'crow', u'cinderella'] [u'tourism', u'boom', u'slow', u'bacon'] [u'trade', u'boost', u'eyr', u'peninsula'] [u'tyson', u'reveal', u'pain', u'documentari'] [u'ministri', u'name', u'possibl', u'sourc'] [u'toddler', u'kill', u'cafe', u'gunfight'] [u'ulihrach', u'clear', u'drug', u'charg'] [u'unemploy', u'rate', u'rise'] [u'unemploy', u'rise'] [u'expect', u'small', u'fund', u'chang'] [u'union', u'call', u'centrelink', u'secur', u'guard'] [u'fund', u'infrastructur', u'palestinian', u'area'] [u'postal', u'deliv', u'yellow', u'pena'] [u'credibl', u'iraq', u'powel'] [u'propos', u'nation', u'crime', u'report', u'servic'] [u'unemploy', u'rate', u'remain', u'steadi'] [u'viduka', u'sale', u'leed', u'chief'] [u'face', u'possibl', u'power', u'blackout'] [u'wagga', u'polic', u'station', u'identifi', u'high', u'prioriti'] [u'govt', u'urg', u'expand', u'wild', u'bounti', u'trial'] [u'jobless', u'rate', u'improv'] [u'jobless', u'rate', u'improv'] [u'plagu', u'salin'] [u'woman', u'court', u'cattl', u'duf', u'charg'] [u'woodward', u'name', u'squad', u'england', u'warm'] [u'workplac', u'flexibl', u'way'] [u'sar', u'impact', u'consid', u'mild', u'temporari'] [u'academi', u'honour', u'muralitharan'] [u'adler', u'stand', u'trial', u'charg'] [u'legend', u'hafey', u'hospit', u'collaps'] [u'anglican', u'investig', u'allow', u'victim', u'eas'] [u'annan', u'plead', u'arm', u'african', u'conflict'] [u'reject', u'call', u'rewrit', u'origin', u'record', u'book'] [u'arm', u'polic', u'confront', u'solomon', u'milit'] [u'armstrong', u'back', u'hockey', u'tourism', u'claim'] [u'defi', u'wall', u'street', u'finish', u'steadi'] [u'attack', u'stab', u'seven', u'moroccan', u'camp'] [u'australian', u'tour', u'overal', u'stand'] [u'award', u'honour', u'polic', u'citizen'] [u'call', u'greater', u'protect', u'worker'] [u'bacon', u'make', u'plea', u'behalf', u'teenag', u'face'] [u'bangladesh', u'fight', u'quick', u'wicket'] [u'bangladesh', u'make', u'slow', u'start', u'darwin'] [u'bangladesh', u'struggl', u'run', u'darwin'] [u'prolong', u'career', u'warn'] [u'basebal', u'player', u'fin', u'club', u'sausag'] [u'beef', u'dairi', u'produc', u'aggriev', u'trade', u'snub'] [u'behead', u'accus', u'killer', u'parent', u'japanes', u'minist'] [u'bichel', u'defend', u'bangladesh', u'test', u'seri'] [u'blair', u'visit', u'east', u'asia', u'week'] [u'blake', u'take', u'lead', u'milwauke', u'open'] [u'blue', u'mountain', u'bushwalk', u'rescu'] [u'blue', u'ribbon', u'picket', u'remain'] [u'blue', u'unchang', u'squad', u'perth', u'trip'] [u'bombala', u'council', u'oppos', u'merger'] [u'bomber', u'face', u'crucial', u'match', u'crow'] [u'bomber', u'recal', u'watson', u'crow', u'clash'] [u'brazil', u'presid', u'call', u'intern', u'secur'] [u'britain', u'hold', u'talk', u'guantanamo', u'suspect'] [u'brogden', u'public', u'feel', u'inject', u'room'] [u'break', u'hill', u'jobless', u'rate', u'drop'] [u'bulldog', u'open', u'lead', u'babi', u'bronco'] [u'bulldog', u'thrash', u'babi', u'bronco'] [u'bush', u'accus', u'mugab', u'govern'] [u'bush', u'arriv', u'uganda', u'whirlwind', u'visit'] [u'bushfir', u'inquiri', u'hear', u'critic', u'park'] [u'bush', u'tour', u'turn', u'focus', u'aid'] [u'bush', u'vow', u'push', u'ahead', u'iraq'] [u'buyer', u'show'] [u'coordin', u'rugbi', u'leagu', u'insur'] [u'cancer', u'centr', u'take', u'extra', u'staff', u'address'] [u'carr', u'govt', u'warn', u'judg', u'accus', u'jone'] [u'worker', u'strike'] [u'caution', u'air', u'train', u'fund', u'offer'] [u'choisir', u'finish', u'second', u'juli'] [u'approv', u'iraq', u'uranium', u'claim', u'bush'] [u'claim', u'divert', u'aid', u'fund', u'anthrax'] [u'cochran', u'succumb', u'ankl', u'injuri'] [u'communiti', u'bank', u'plan', u'move', u'ahead'] [u'concern', u'air', u'rise', u'vehicl', u'search', u'fee'] [u'concret', u'crush', u'save', u'council', u'money'] [u'connolli', u'support', u'crackdown', u'swear'] [u'coongi', u'lake', u'nation', u'park'] [u'council', u'appoint', u'general', u'manag'] [u'council', u'rate', u'rise'] [u'court', u'hear', u'slaveri', u'charg'] [u'crean', u'target', u'health', u'north', u'tour'] [u'crew', u'attempt', u'rescu', u'strand', u'walker'] [u'crime', u'look', u'possibl', u'evid', u'bryant', u'case'] [u'crisi', u'meet', u'hold', u'film', u'job'] [u'crow', u'crush', u'bomber'] [u'crow', u'crush', u'bomber', u'lose', u'carey'] [u'cwealth', u'push', u'disabl', u'educ'] [u'danish', u'forc', u'iraq', u'arm', u'snow', u'shovel'] [u'death', u'toll', u'china', u'flood', u'continu', u'rise'] [u'debat', u'erupt', u'primari', u'industri', u'fund'] [u'delta', u'goodrem', u'diagnos', u'cancer'] [u'diana', u'fund', u'freez', u'suit', u'threat'] [u'disabl', u'servic', u'manag', u'sentenc', u'fals'] [u'doctor', u'offer', u'bulk', u'bill', u'drought', u'victim'] [u'doctor', u'bank', u'blood', u'clot', u'drug'] [u'doctor', u'use', u'store', u'drill', u'brain', u'surgeri'] [u'driver', u'urg', u'honk', u'basslink', u'green', u'ban'] [u'educ', u'cours', u'consid', u'indigen', u'student'] [u'hold', u'clubhous', u'lead', u'scottish', u'open'] [u'famili', u'bakeri'] [u'feder', u'final', u'crack', u'swiss', u'open', u'quarter', u'final'] [u'homebuy', u'cold', u'latham'] [u'fishermen', u'offer', u'qualifi', u'support', u'tuna'] [u'fletcher', u'pass', u'fit', u'test'] [u'arrest', u'slaveri', u'raid'] [u'charg', u'relat', u'slaveri'] [u'french', u'polynesia', u'second', u'senat'] [u'fund', u'announc', u'bushfir', u'recoveri'] [u'fund', u'allow', u'indigen', u'cultur', u'research'] [u'launch', u'stabl', u'trust'] [u'geraldton', u'host', u'astronomi', u'gather'] [u'goosen', u'woosnam', u'scottish', u'open'] [u'govt', u'wont', u'chang', u'mobil', u'phone', u'jam', u'law'] [u'urg', u'help', u'drought', u'victim'] [u'grave', u'fear', u'race', u'bush'] [u'hafey', u'stabl', u'condit', u'collaps'] [u'harri', u'potter', u'fan', u'magic', u'set', u'hous', u'ablaz'] [u'health', u'servic', u'defend', u'lodg', u'closur'] [u'health', u'servic', u'offer', u'peppertre', u'lodg', u'assur'] [u'home', u'loan', u'approv', u'rise'] [u'hospit', u'plan', u'boost', u'cancer', u'treatment', u'staff'] [u'howard', u'meet', u'palestinian', u'deleg'] [u'howard', u'remain', u'defiant', u'iraq', u'intellig'] [u'hundr', u'greet', u'ship', u'australia'] [u'improv', u'servic', u'schedul', u'horizon'] [u'indonesia', u'arrest', u'suspect'] [u'indonesian', u'troop', u'kill', u'aceh', u'rebel'] [u'industri', u'action', u'affect', u'maker'] [u'iraq', u'intellig', u'failur', u'extraordinari', u'democrat'] [u'iraqi', u'swimmer', u'archer', u'enter', u'intern'] [u'iraq', u'verg', u'govern'] [u'rule', u'strike', u'threat'] [u'jackson', u'say', u'swear'] [u'jackson', u'say', u'swear'] [u'bomb', u'attack', u'foil', u'indonesian', u'polic'] [u'centr', u'offer', u'woman', u'work', u'brothel'] [u'jobless', u'rate', u'rise', u'albani', u'drop', u'bunburi'] [u'john', u'say', u'biggest', u'factor', u'decis', u'futur'] [u'john', u'say', u'biggest', u'factor', u'decis', u'futur'] [u'kewel', u'deliv', u'part', u'shoot', u'leed'] [u'kimberley', u'mammal', u'survey', u'long', u'time', u'come'] [u'lewi', u'say', u'john', u'origin', u'greatest'] [u'lifelin', u'riverland', u'peach', u'grower'] [u'lion', u'hawk', u'chase', u'vital', u'point'] [u'lion', u'lose', u'mcdonald', u'hawk', u'clash'] [u'mailman', u'win', u'naidoc', u'honour'] [u'manag', u'plan', u'moot', u'riverland', u'wine', u'industri'] [u'centr', u'sieg', u'receiv', u'psychiatr'] [u'charg', u'samurai', u'sword', u'stand'] [u'face', u'charg', u'whale', u'swim'] [u'kill', u'injur', u'accid'] [u'face', u'court', u'murder', u'charg'] [u'mayor', u'push', u'case', u'contain', u'termin'] [u'west', u'jobless', u'rate', u'rise'] [u'mine', u'compani', u'order', u'work', u'hour'] [u'mine', u'compani', u'say', u'expans', u'critic'] [u'minist', u'defend', u'communiti', u'amidst', u'nurs', u'wrangl'] [u'minist', u'urg', u'meet', u'highway', u'talk'] [u'miss', u'metr', u'python', u'flush'] [u'mix', u'latest', u'jobless', u'figur'] [u'mobil', u'phone', u'mosquito'] [u'burrup', u'work', u'underway'] [u'monitor', u'bluefin', u'tuna', u'fisheri'] [u'mourner', u'rememb', u'rise', u'melbourn'] [u'mourner', u'rememb', u'collingwood', u'great'] [u'rebat', u'move'] [u'nasa', u'find', u'oldest', u'planet'] [u'nazi', u'prosecutor', u'shawcross', u'die', u'age'] [u'neverfail', u'board', u'back', u'coke', u'takeov'] [u'newcastl', u'enrol', u'hec', u'spot'] [u'research', u'spanner', u'crab', u'industri'] [u'govt', u'offer', u'perliya', u'assur'] [u'train', u'driver', u'clear', u'misconduct'] [u'ntini', u'spell', u'crush', u'zimbabw'] [u'nuclear', u'dump', u'debat', u'continu'] [u'obrien', u'quit', u'leav', u'preselect'] [u'offer', u'spark', u'austoft', u'walkout'] [u'offici', u'kill', u'china', u'flood'] [u'pakistan', u'bomb', u'blast', u'kill'] [u'palestinian', u'demonstr', u'demand', u'releas'] [u'park', u'remain', u'hospit', u'site', u'possibl'] [u'peac', u'head', u'indian', u'capit'] [u'perth', u'strike', u'continu'] [u'plan', u'chang', u'tip', u'coastal', u'develop'] [u'plan', u'rail', u'passeng', u'servic', u'track'] [u'expect', u'hick', u'releas', u'guilti'] [u'say', u'korea', u'resort'] [u'poem', u'author', u'appear', u'snowtown', u'trial'] [u'polic', u'miss', u'concern'] [u'polic', u'probe', u'cane', u'train', u'accid'] [u'polic', u'seek', u'summon', u'alleg', u'picket', u'violenc'] [u'polic', u'probe', u'fatal', u'hous'] [u'powel', u'deni', u'intellig', u'fals'] [u'public', u'input', u'seek', u'alcohol', u'summit'] [u'public', u'input', u'seek', u'merger', u'debat'] [u'publish', u'scrap', u'mutant', u'superhero', u'diana'] [u'push', u'gold', u'coast', u'drug', u'inject', u'room'] [u'minist', u'seek', u'revers', u'japanes', u'beef'] [u'offend', u'give', u'suspend', u'sentenc'] [u'lead', u'nation', u'school', u'worker', u'screen'] [u'raaf', u'investig', u'blackhawk', u'crash'] [u'rain', u'offer', u'water', u'cart', u'repriev'] [u'reduc', u'rate', u'dollar', u'tatiara'] [u'region', u'urg', u'draft', u'industri'] [u'releas', u'whale', u'safe'] [u'rembrandt', u'sell', u'year', u'hide'] [u'report', u'claim', u'region', u'busi', u'potenti'] [u'report', u'warn', u'need', u'control'] [u'rescu', u'crew', u'work', u'free', u'person', u'trap', u'bus'] [u'rescu', u'worker', u'free', u'trap', u'bus'] [u'rescu', u'work', u'free', u'trap', u'bus'] [u'resid', u'outrag', u'rate', u'rise'] [u'resid', u'want', u'bush', u'nurs', u'build', u'retain'] [u'ronaldinho', u'wait', u'deal', u'join'] [u'ruddock', u'call', u'stop', u'student', u'deport'] [u'ruddock', u'dark', u'girl', u'plight'] [u'salin', u'woe', u'cost'] [u'school', u'secur', u'guard', u'stab'] [u'search', u'suspend', u'victim', u'bangladesh', u'ferri'] [u'sharon', u'visit', u'month', u'offici'] [u'shorter', u'queue', u'central'] [u'simpson', u'desert', u'bloom', u'rain'] [u'centuri', u'mosqu', u'open', u'granada'] [u'smith', u'court', u'case', u'adjourn'] [u'snapback', u'beef', u'tariff', u'agenda', u'minist', u'japan'] [u'solomon', u'pois', u'allow', u'intervent'] [u'soorley', u'receiv', u'opposit', u'move'] [u'sorenstam', u'withdraw', u'bowi', u'lead', u'canadian', u'open'] [u'sptafl'] [u'studi', u'find', u'pirat', u'music', u'increas'] [u'swim', u'trainer', u'issu', u'caus', u'wave'] [u'cut', u'enrol', u'hec', u'place'] [u'senat', u'preselect', u'threat', u'split', u'labor'] [u'teen', u'coma', u'respond'] [u'test', u'cricket', u'honour', u'sydney'] [u'timmin', u'close', u'deal', u'dragon'] [u'rocker', u'converg', u'central', u'australia'] [u'tourism', u'group', u'welcom', u'rugbi', u'world', u'spin', u'off'] [u'compani', u'launch', u'librarian', u'action', u'figur'] [u'troop', u'iraq', u'year', u'frank'] [u'tuna', u'farm', u'plan'] [u'kill', u'injur', u'karachi', u'blast'] [u'union', u'say', u'polic', u'offic', u'fear', u'sue'] [u'tank', u'fire', u'time'] [u'vaughan', u'eye', u'test', u'captainci'] [u'govt', u'promis', u'inquest', u'train', u'accid'] [u'water', u'author', u'reject', u'committe', u'review', u'warn'] [u'west', u'look', u'repeat', u'success'] [u'woman', u'clear', u'have', u'sar'] [u'woman', u'face', u'court', u'solicit', u'murder', u'charg'] [u'women', u'ask', u'leav', u'courtroom'] [u'wooli', u'safeway', u'admit', u'sell', u'product'] [u'worker', u'face', u'uncertain', u'futur'] [u'kill', u'burundi', u'rebel', u'assault', u'offici'] [u'abduct', u'accus', u'plan', u'offenc', u'court', u'hear'] [u'aborigin', u'communiti', u'call', u'action', u'amen'] [u'separ', u'iranian', u'conjoin', u'twin'] [u'anzac', u'compulsori', u'public', u'school'] [u'arafat', u'sidelin', u'progress', u'middl'] [u'armstrong', u'take', u'easi', u'ahead', u'alp'] [u'aussi', u'stun', u'petacchi', u'power'] [u'bangladesh', u'darwin'] [u'beatti', u'call', u'probe', u'labor'] [u'berlin', u'gear', u'techno', u'sound', u'annual', u'love'] [u'blair', u'face', u'fresh', u'dodgi', u'dossier', u'claim'] [u'blair', u'open', u'confer', u'urg', u'social', u'justic'] [u'blake', u'cling', u'shoot', u'lead', u'milwauke'] [u'bush', u'popular', u'slip', u'amid', u'casualti', u'iraq'] [u'bush', u'talk', u'tough', u'terror', u'taylor'] [u'carey', u'clear', u'injuri'] [u'childcar', u'need', u'fund', u'inject', u'confer', u'tell'] [u'chilean', u'expert', u'blob', u'sperm', u'whale'] [u'china', u'take', u'experi', u'talent', u'barcelona'] [u'chines', u'polic', u'arrest', u'traffic', u'women'] [u'choisir', u'sell', u'coolmor', u'stud'] [u'boss', u'take', u'blame', u'fals', u'intellig'] [u'claim', u'crop', u'contamin', u'happen', u'aust'] [u'claim', u'govt', u'chang', u'toughen', u'enrol'] [u'conjoin', u'twin', u'doctor', u'discourag', u'similar'] [u'coughlin', u'sink', u'inki'] [u'coulthard', u'chang', u'eccleston'] [u'daniel', u'lead', u'lpga', u'canadian', u'open'] [u'death', u'toll', u'bangladesh', u'ferri', u'disast'] [u'donor', u'urg', u'direct', u'chariti', u'diana'] [u'dung', u'throw', u'challeng', u'apart'] [u'eagl', u'annihil', u'blue'] [u'eagl', u'annihil', u'blue', u'swan', u'thump', u'saint'] [u'kill', u'injur', u'kashmir', u'violenc'] [u'cruis', u'loch'] [u'emerton', u'prais', u'boss', u'souness'] [u'enceph', u'kill', u'children', u'india'] [u'england', u'loss', u'wallabi', u'macqueen'] [u'enron', u'file', u'bankruptci', u'plan'] [u'enron', u'plan', u'split', u'compani', u'emerg'] [u'failur', u'reveal', u'iraq', u'intellig', u'unusu'] [u'fan', u'price', u'beckham', u'real', u'madrid'] [u'feder', u'walk', u'swiss', u'semi'] [u'polic', u'commission', u'whitrod', u'die'] [u'weapon', u'chief', u'call', u'howard', u'resign'] [u'face', u'court', u'sydney', u'businessman'] [u'franc', u'carraz', u'reach', u'rhode', u'island', u'semi'] [u'geelong', u'surviv', u'catfight', u'dockland'] [u'geelong', u'surviv', u'dockland', u'catfight'] [u'govt', u'consid', u'stop', u'polic'] [u'hepburn', u'flip', u'travolta', u'dislik', u'meryl', u'streep'] [u'drug', u'financi', u'invest', u'research'] [u'india', u'pakistan', u'reopen', u'rout', u'border'] [u'indigen', u'leader', u'mcguiness', u'die'] [u'indonesian', u'polic', u'arrest', u'explos', u'bust'] [u'indonesian', u'troop', u'kill', u'rebel', u'aceh'] [u'iraqi', u'govern', u'council', u'hold', u'meet'] [u'islam', u'leader', u'condemn', u'suicid', u'bomb'] [u'italian', u'minist', u'resign', u'german', u'slur'] [u'italian', u'region', u'order', u'maiz', u'field', u'destroy'] [u'italian', u'promis', u'alpin', u'charg'] [u'team', u'hoogi'] [u'sami', u'sensat', u'wicket'] [u'japan', u'concern', u'eas', u'canada', u'beef'] [u'korea', u'agre', u'appropri', u'talk', u'nuclear'] [u'lapentti', u'overcom', u'nadal', u'swedish', u'marathon'] [u'latest', u'product', u'recal', u'publish', u'newspap'] [u'leicest', u'sign', u'ferdinand'] [u'liberia', u'high', u'bush', u'agenda'] [u'malthous', u'warn', u'rise', u'memori'] [u'die', u'hospit', u'collis'] [u'die', u'north', u'crash'] [u'shoot', u'birthday', u'parti', u'die'] [u'maori', u'leader', u'debat', u'beach', u'seab', u'ownership'] [u'maroon', u'rais', u'game', u'norton'] [u'mass', u'flood', u'affect', u'million', u'china'] [u'mayo', u'relish', u'tour', u'match', u'armstrong'] [u'media', u'group', u'reuter', u'sue', u'main', u'rival', u'patent'] [u'melbourn', u'wait', u'swim', u'verdict'] [u'mickelson', u'reject', u'critic', u'power', u'strategi'] [u'minardi', u'withdraw', u'threat', u'british', u'grand', u'prix'] [u'minor', u'convict', u'wipe', u'year'] [u'risk', u'starvat', u'liberia'] [u'mind', u'wmds', u'here', u'pistol'] [u'doubt', u'silverston', u'futur'] [u'feder', u'state', u'school', u'standard', u'unfair', u'govt'] [u'polic', u'launch', u'court', u'action', u'cfmeu', u'head'] [u'ombudsman', u'review', u'child', u'abus', u'claim'] [u'oppn', u'call', u'inquiri', u'slave', u'trade'] [u'panther', u'pull', u'point', u'clear'] [u'parliamentari', u'allow', u'increas', u'question'] [u'peru', u'fear', u'shin', u'path', u'return'] [u'petacchi', u'make', u'tour', u'breakaway', u'agoni'] [u'pie', u'strong', u'docker'] [u'pirat', u'simon', u'suspend', u'hit', u'sausag', u'mascot'] [u'pittman', u'hurtl', u'metr'] [u'polic', u'investig', u'alleg', u'stab', u'sydney'] [u'price', u'eye', u'british', u'open', u'spot'] [u'protea', u'score'] [u'protest', u'celebr', u'ireland', u'parad'] [u'real', u'confirm', u'geremi', u'chelsea', u'deal'] [u'real', u'madrid', u'offer', u'best', u'ronaldinho'] [u'resid', u'bushfir', u'avert'] [u'revel', u'turn', u'darwin', u'bass', u'grass'] [u'rossi', u'bayliss', u'donington'] [u'ruddock', u'urg', u'interven', u'salvador', u'girl'] [u'russian', u'polic', u'accus', u'tri', u'suppress'] [u'nat', u'oppos', u'telstra', u'sale'] [u'speaker', u'will', u'fund', u'constitut'] [u'sheahan', u'cop', u'year', u'dope'] [u'shuttl', u'treat', u'test', u'vehicl', u'panel'] [u'spanish', u'pool', u'fiesta', u'spark', u'countdown'] [u'sptnrl'] [u'state', u'prais', u'polic', u'commission'] [u'stop', u'blame', u'cwealth', u'state', u'burden', u'humphri'] [u'storm', u'conquer', u'cowboy'] [u'stormi', u'weather', u'wreak', u'havoc'] [u'swan', u'thump', u'saint'] [u'tasmania', u'experi', u'hotel', u'downturn'] [u'thorp', u'readi', u'england', u'recal', u'report'] [u'tiger', u'booki', u'darl'] [u'tour', u'miseri', u'australian', u'rider'] [u'tribut', u'flow', u'polic', u'commission'] [u'nation', u'form', u'guid'] [u'turkey', u'england', u'cooper', u'ahead', u'euro'] [u'host', u'springer', u'step', u'closer', u'senat'] [u'kill', u'hit', u'tree'] [u'injur', u'explos', u'manufactur'] [u'town', u'biggest', u'wast', u'produc'] [u'union', u'urgent', u'meet', u'log', u'plan'] [u'unit', u'church', u'vote', u'minist'] [u'bushwalk', u'north'] [u'intellig', u'confirm', u'north', u'korean', u'nuclear'] [u'scale', u'troop', u'falluja'] [u'soldier', u'wound', u'attack', u'iraqi', u'prison'] [u'stock', u'higher'] [u'compani', u'defend', u'sack', u'factori', u'worker'] [u'blame', u'union', u'manufactur', u'declin'] [u'vietnam', u'polic', u'bust', u'heroin', u'haul', u'rout', u'taiwan'] [u'virgin', u'blue', u'cours', u'provid'] [u'volleybal', u'level', u'china', u'test', u'seri'] [u'govt', u'okay', u'mine', u'expans', u'project'] [u'warn', u'issu', u'region', u'qualiti'] [u'warrior', u'hold', u'eagl'] [u'congo', u'govern', u'rebel', u'leader'] [u'beat', u'wallabi', u'bok'] [u'wild', u'wind', u'gust', u'whip', u'melbourn'] [u'woman', u'dead', u'daughter', u'critic', u'smash'] [u'bodi', u'recov', u'ferri', u'disast', u'state'] [u'sudanes', u'troop', u'rebel', u'kill', u'attack'] [u'kill', u'fall', u'river', u'indian', u'kashmir'] [u'russian', u'soldier', u'kill', u'chechnya', u'ambush'] [u'abdul', u'razzaq', u'skip', u'seri', u'bangladesh'] [u'indigen', u'employ', u'centr'] [u'adelaid', u'citi', u'shroud', u'heavi'] [u'american', u'keeper', u'howard', u'agre', u'join'] [u'releas', u'plan', u'rebuild', u'mount', u'stromlo'] [u'anwar', u'ibrahim', u'seek', u'bail', u'surgeri'] [u'armstrong', u'gear', u'crucial', u'lalp', u'dhuez', u'test'] [u'attend', u'anti', u'log', u'ralli'] [u'arrest', u'canadian', u'photograph', u'die', u'tehran'] [u'asian', u'cricket', u'council', u'offici', u'visit', u'kabul'] [u'aussi', u'spanish', u'king', u'admir'] [u'australia', u'beat', u'world', u'open'] [u'babi', u'thatcher', u'return', u'belgian'] [u'virenqu', u'claim', u'blood', u'alp'] [u'banger', u'grab', u'moral', u'boost'] [u'barca', u'cool', u'galla', u'deal'] [u'becker', u'tobin', u'durr', u'induct', u'tenni', u'hall', u'fame'] [u'belgium', u'scrap', u'controversi', u'crime'] [u'biaggi', u'stun', u'rossi', u'british', u'pole'] [u'bogus', u'journalist', u'arrest', u'vietnam'] [u'bok', u'hold', u'upset', u'victori'] [u'british', u'minist', u'back', u'iraq', u'niger', u'intellig'] [u'crash', u'kill', u'egypt'] [u'bush', u'keep', u'liberian', u'wait', u'troop', u'decis'] [u'bush', u'vow', u'stop', u'terrorist', u'africa', u'base'] [u'canadian', u'beef', u'stall', u'japan'] [u'carr', u'vow', u'home', u'renov', u'tape'] [u'child', u'group', u'welcom', u'abus', u'case', u'review'] [u'stop', u'iraq', u'nuclear', u'mention', u'earlier', u'speech'] [u'cook', u'roast', u'soft', u'petacchi'] [u'crowd', u'turnout', u'behav', u'bass', u'concert'] [u'custom', u'seiz', u'ecstasi', u'tablet', u'perth'] [u'dali', u'pull', u'scottish', u'open'] [u'daniel', u'inkster', u'tie', u'canadian', u'open', u'lead'] [u'death', u'toll', u'mount', u'sink', u'bangladesh'] [u'delay', u'hinder', u'garbag', u'electr', u'convers'] [u'democrat', u'question', u'hick', u'repatri', u'effort'] [u'diana', u'estat', u'threaten', u'legal', u'battl', u'report'] [u'doctor', u'hope', u'drug', u'trial', u'improv', u'blood', u'clot'] [u'dozen', u'miss', u'slide', u'china'] [u'duff', u'chelsea', u'bind', u'report'] [u'england', u'steamrol', u'south', u'africa'] [u'explos', u'militari', u'arsenal', u'russia', u'east'] [u'farmer', u'prawn', u'industri', u'reform'] [u'feder', u'march', u'swiss', u'final'] [u'pledg', u'increas', u'univers', u'teach'] [u'film', u'product', u'compani', u'win', u'small', u'busi'] [u'flintoff', u'allround', u'rat'] [u'british', u'cabinet', u'minist', u'urg', u'blair', u'quit'] [u'dope', u'offend', u'open', u'barca', u'world'] [u'fresh', u'violenc', u'congo', u'bunia', u'militia'] [u'georg', u'best', u'arrest', u'english', u'hotel'] [u'ginepri', u'melzer', u'final', u'newport'] [u'govt', u'doubl', u'indigen', u'employ', u'centr'] [u'harri', u'retain', u'super', u'lightweight', u'titl'] [u'homebuy', u'caution', u'vendor', u'financ', u'contract'] [u'hong', u'kong', u'crisi', u'fuel', u'anti', u'china', u'feel', u'taiwan'] [u'howard', u'head', u'asia'] [u'howard', u'start', u'asian', u'tour', u'amid', u'iraq', u'intellig'] [u'indian', u'underag', u'girl', u'traffic'] [u'indigen', u'centr', u'trebl'] [u'indonesian', u'travel', u'warn', u'upgrad', u'oppn'] [u'indonesia', u'deport', u'german', u'suspect', u'qaeda'] [u'indonesia', u'tri', u'minimis', u'aceh', u'right', u'abus'] [u'industri', u'action', u'affect', u'patient', u'care', u'mayn'] [u'iranian', u'twin', u'buri', u'grave'] [u'iraq', u'govern', u'council', u'hold', u'meet'] [u'iraqi', u'govern', u'council', u'meet', u'inaugur', u'session'] [u'israel', u'threaten', u'measur', u'arafat'] [u'japan', u'beat', u'mexico', u'qualifi', u'women'] [u'joey', u'doubt', u'ravag', u'blue'] [u'joey', u'join', u'blue', u'brisban'] [u'kuwaiti', u'emir', u'appoint'] [u'labor', u'pledg', u'addit', u'lectur'] [u'lion', u'edg', u'hawk'] [u'loan', u'scheme', u'give', u'record', u'number', u'farmer'] [u'hospit', u'stab', u'adelaid'] [u'melbourn', u'hand', u'world', u'swim', u'champ'] [u'melbourn', u'win', u'swim'] [u'melb', u'win', u'host', u'intern', u'brain', u'map'] [u'step', u'particip', u'sexual', u'assault'] [u'million', u'evacu', u'indian', u'flood'] [u'nation', u'diabet', u'week', u'focus', u'earli', u'detect'] [u'navi', u'launch', u'ronald', u'reagan', u'aircraft', u'carrier'] [u'nelson', u'reject', u'labor', u'tertiari', u'plan'] [u'council', u'declar', u'fall', u'saddam', u'nation'] [u'nieto', u'edg', u'poggiali', u'british'] [u'korea', u'pose', u'greater', u'threat', u'iraq', u'clinton'] [u'chanc', u'reach', u'tour', u'say', u'petacchi'] [u'guarante', u'north', u'korea', u'intellig', u'accuraci', u'hill'] [u'club', u'fight', u'poki', u'hike'] [u'direct', u'increas', u'poki', u'hospit'] [u'ombudsman', u'probe', u'polic', u'power'] [u'oppn', u'criticis', u'illeg', u'handgun', u'cultur'] [u'polic', u'launch', u'investig', u'parti'] [u'polic', u'seiz', u'drug', u'worth', u'warehous', u'raid'] [u'omalley', u'storm', u'loch', u'lomond', u'content'] [u'dead', u'injur', u'crash', u'inland'] [u'plant', u'run', u'month', u'sigma'] [u'perri', u'shoot', u'lead', u'milwauke'] [u'peruvian', u'troop', u'hunt', u'suspect', u'shin', u'path'] [u'phelp', u'prove', u'world', u'stage'] [u'bureaucrat', u'blame', u'intellig', u'error'] [u'talk', u'counter', u'terror', u'philippin'] [u'polic', u'tri', u'identifi', u'victim'] [u'power', u'roo', u'demon'] [u'pressur', u'port', u'regain', u'spot'] [u'protest', u'gather', u'log'] [u'parliament', u'interven', u'post'] [u'raider', u'roll', u'dragon'] [u'raver', u'groov', u'berlin', u'love', u'parad'] [u'rebel', u'launch', u'attack', u'burundi', u'capit'] [u'reid', u'say', u'leed', u'readi', u'spend'] [u'relianc', u'junk', u'food', u'blame', u'rise', u'obes'] [u'resid', u'report', u'strong', u'explos', u'flashpoint'] [u'roger', u'impress', u'alpin', u'debut'] [u'rotavirus', u'infect', u'children'] [u'rumsfeld', u'predict', u'violent', u'summer', u'troop'] [u'russian', u'sniffer', u'kill', u'alleg', u'contract'] [u'govt', u'unsur', u'effect', u'water', u'restrict'] [u'nat', u'launch', u'region', u'voter'] [u'oppn', u'concern', u'alleg', u'surround'] [u'injur', u'accid'] [u'singapor', u'take', u'plung', u'allow', u'bunge', u'jump'] [u'small', u'scale', u'fight', u'take', u'place', u'lao', u'militari'] [u'smith', u'tell', u'south', u'africa', u'rememb', u'hurt'] [u'south', u'africa', u'record', u'upset', u'australia'] [u'spanish', u'young', u'win', u'race'] [u'sptafl'] [u'support', u'drop', u'bush', u'perform', u'iraq', u'poll'] [u'swimmer', u'celebr', u'melbourn'] [u'teddi', u'bear', u'fetch', u'euro', u'auction'] [u'tiger', u'bite', u'shark'] [u'time', u'armstrong', u'warn', u'tour', u'rival'] [u'tinnitus', u'research', u'studi', u'impact', u'attent'] [u'tuqiri', u'hand', u'yellow', u'card'] [u'dead', u'british', u'crash'] [u'palestinian', u'injur', u'captur', u'isra'] [u'underwat', u'flinder', u'island', u'electr', u'grid'] [u'unionist', u'critic', u'opp', u'support', u'govt'] [u'unit', u'ronaldinho', u'report'] [u'unit', u'church', u'presid', u'hit', u'iraq'] [u'launch', u'iraq', u'crackdown', u'ahead', u'date'] [u'warn', u'north', u'korean', u'missil', u'aim', u'japan'] [u'govt', u'call', u'urgent', u'meet', u'resolv'] [u'investig', u'probe', u'caus', u'mandurah', u'hous'] [u'wallabi', u'good', u'jone'] [u'ward', u'closur', u'wont', u'affect', u'care', u'children', u'hospit'] [u'waugh', u'arriv', u'darwin'] [u'waugh', u'upbeat', u'darwin', u'test', u'debut'] [u'world', u'lead', u'stargaz', u'gather', u'sydney'] [u'zabaleta', u'battl', u'beat', u'moya'] [u'job', u'lose', u'brand', u'sellout'] [u'aborigin', u'activist', u'rape', u'charg'] [u'acoss', u'call', u'fund', u'boost', u'famili'] [u'africa', u'link', u'remov', u'bush', u'speech'] [u'airport', u'staff', u'threaten', u'world', u'action'] [u'alleg', u'qaeda', u'group', u'claim', u'iraq', u'attack', u'report'] [u'ford', u'deal', u'fall'] [u'share', u'plung', u'ford', u'deal', u'fall'] [u'american', u'victim', u'run', u'bull'] [u'set', u'price', u'latest', u'share', u'offer'] [u'meet', u'plan', u'basslink', u'issu'] [u'anti', u'nuclear', u'protest', u'head', u'silverton'] [u'anwar', u'ibrahim', u'bail', u'hear', u'postpon'] [u'armstrong', u'tour', u'rival', u'attack'] [u'armstrong', u'take', u'yellow', u'mayo', u'attack'] [u'arson', u'blame', u'grafton', u'fire'] [u'attack', u'liberian', u'armi', u'alert'] [u'aussi', u'continu', u'netbal', u'world', u'charg'] [u'aussi', u'edg', u'robot', u'soccer', u'world'] [u'aust', u'want', u'expat', u'solomon', u'job'] [u'awol', u'swim', u'coach', u'sutton', u'ax'] [u'batistuta', u'think', u'retir'] [u'beatti', u'rule', u'inject', u'room', u'trial'] [u'best', u'booz', u'report'] [u'band', u'legend', u'benni', u'carter', u'dead'] [u'crowd', u'turn', u'oppos', u'hospit', u'park', u'plan'] [u'blast', u'baghdad', u'kill', u'iraqi', u'wound'] [u'blast', u'rock', u'indonesian', u'parliament'] [u'bodi', u'collinsval', u'hous'] [u'bollywood', u'film', u'break', u'barrier'] [u'injur', u'attack'] [u'british', u'inquiri', u'find', u'fault', u'serial', u'killer'] [u'bryant', u'assert', u'innoc', u'alleg', u'assault'] [u'bulldog', u'darci', u'reject', u'headhunt', u'charg'] [u'burundi', u'unrest', u'claim'] [u'bodi', u'examin', u'season', u'transport'] [u'bushfir', u'inquiri', u'head', u'canberra'] [u'bushfir', u'inquiri', u'hear', u'communic', u'problem'] [u'cabbi', u'frustrat', u'violenc'] [u'build', u'apprentic', u'boost'] [u'local', u'manag', u'kakadu'] [u'cambodian', u'trash', u'christian', u'church', u'offici'] [u'campbel', u'undergo', u'surgeri', u'today'] [u'canegrow', u'welcom', u'question', u'sugar'] [u'church', u'translat', u'bibl', u'indigen', u'languag'] [u'cloth', u'seiz', u'local', u'market'] [u'club', u'poki', u'fear'] [u'club', u'protest', u'poki'] [u'coach', u'rivalri', u'overr', u'matthew'] [u'communiti', u'input', u'seek', u'forest', u'plan'] [u'concern', u'air', u'legal', u'fund'] [u'council', u'call', u'transpar', u'travel'] [u'councillor', u'leadership', u'deleg'] [u'council', u'agre', u'merger'] [u'council', u'seek', u'rapid', u'scheme', u'detail'] [u'council', u'seek', u'rainforest', u'protect'] [u'council', u'meet', u'boundari', u'option'] [u'council', u'meet', u'batchelor', u'rail', u'bypass'] [u'court', u'uphold', u'rule', u'custodi', u'death'] [u'cowra', u'face', u'water', u'restrict'] [u'crean', u'oppos', u'telstra', u'sale'] [u'crow', u'content', u'improv', u'safeti', u'measur'] [u'daniel', u'edg', u'inkster', u'canadian', u'open'] [u'deleg', u'swamp', u'darwin', u'ecolog', u'confer'] [u'delight', u'cook', u'keep', u'tour', u'green', u'jersey'] [u'hold', u'nerv', u'clinch', u'shoot', u'victori'] [u'call', u'report', u'port', u'kembla', u'copper'] [u'water', u'fall'] [u'extra', u'fund', u'provid', u'matur', u'worker'] [u'famili', u'angri', u'remov', u'luna', u'park', u'memori'] [u'farmer', u'consid', u'dust', u'storm', u'impact'] [u'farmer', u'consid', u'salin', u'woe'] [u'farmer', u'case', u'drought', u'fund'] [u'fear', u'hold', u'indigen', u'heritag', u'sit'] [u'feral', u'cat', u'bombard', u'bait'] [u'caus', u'damag', u'bowl', u'club'] [u'firefight', u'contain', u'blaze', u'yacht', u'club'] [u'firefight', u'remov', u'overheat', u'contain'] [u'fitzgerald', u'confid', u'ahead', u'swiss', u'clash'] [u'kill', u'injur', u'blast', u'rip'] [u'freo', u'confid', u'farmer', u'fit'] [u'gallop', u'defend', u'water', u'consult'] [u'project', u'delay', u'avoid'] [u'gerrard', u'sale', u'liverpool'] [u'gilchrist', u'concern', u'team', u'perform', u'slip'] [u'ginepri', u'win', u'career', u'titl', u'rhode', u'island'] [u'gladston', u'build', u'industri', u'reput'] [u'goorjian', u'face', u'tough', u'select', u'task', u'gosford'] [u'gough', u'verg', u'test', u'recal'] [u'govt', u'staff', u'central', u'iraq', u'disput'] [u'govt', u'warn', u'nurs', u'home', u'face', u'fund', u'crisi'] [u'grenad', u'attack', u'ethiopian', u'hotal', u'injur', u'report'] [u'group', u'seek', u'retail', u'talk', u'council'] [u'guid', u'cater'] [u'haas', u'consid', u'defenc', u'train', u'idea'] [u'health', u'industri', u'urg', u'lift', u'game'] [u'creditor', u'receiv', u'payment'] [u'hmas', u'newcastl', u'leav', u'gulf'] [u'hospit', u'anaesthetist', u'troubl', u'continu'] [u'howard', u'brush', u'fraser', u'critic'] [u'india', u'decid', u'troop', u'iraq', u'offer'] [u'indigen', u'leader', u'unhappi', u'council', u'decis'] [u'inquiri', u'tell', u'bushfir', u'shouldnt'] [u'internet', u'provid', u'challeng', u'telstra', u'deal'] [u'iran', u'examin', u'canadian', u'photograph', u'death'] [u'iran', u'make', u'giant', u'report'] [u'iraqi', u'council', u'rake', u'arab', u'media', u'coal'] [u'iraq', u'take', u'step', u'self', u'rule'] [u'deal', u'go', u'driver'] [u'irrig', u'save', u'wine', u'industri', u'summer'] [u'isinbayeva', u'set', u'vault', u'record', u'chamber', u'win'] [u'israel', u'question', u'alleg', u'irish', u'bombmak'] [u'john', u'join', u'blue', u'brisban'] [u'kingaroy', u'flight', u'servic', u'plan'] [u'king', u'dive', u'sautin', u'take', u'open', u'honour', u'silver'] [u'labor', u'vow', u'nurs', u'place'] [u'legisl', u'aim', u'safer', u'mine', u'industri'] [u'charg', u'fatal', u'sydney', u'shoot'] [u'die', u'attempt', u'jump', u'train'] [u'face', u'court', u'arm', u'robberi', u'charg'] [u'face', u'court', u'petrol', u'station', u'robberi'] [u'refus', u'bail', u'student', u'kill'] [u'technolog', u'track', u'wind', u'farm', u'sit'] [u'matthew', u'confid', u'dockland', u'surfac', u'problem'] [u'mayor', u'support', u'flinder', u'power', u'plan'] [u'million', u'risk', u'diabet', u'epidem'] [u'miss', u'lucki', u'aliv', u'polic'] [u'miss', u'girl', u'movement', u'baffl', u'polic'] [u'blast', u'rock', u'tamworth'] [u'continu', u'push', u'water', u'restrict', u'method'] [u'murphi', u'pyman', u'ohern', u'open', u'qualifi', u'loch'] [u'music', u'festiv', u'end', u'high', u'note'] [u'nat', u'welcom', u'famili', u'maker'] [u'nelson', u'slam', u'labor', u'educ', u'overhaul'] [u'member', u'appoint', u'heritag', u'council'] [u'hard', u'evid', u'korea', u'claim'] [u'northern', u'centr', u'begin', u'oper'] [u'taker', u'fingleton'] [u'boss', u'investig', u'extra', u'raider', u'claim'] [u'teacher', u'file', u'applic', u'increas'] [u'polic', u'club', u'communiti', u'spirit'] [u'korea', u'build', u'nuke', u'offici'] [u'oversea', u'investor', u'moora'] [u'palaszczuk', u'talk', u'trade', u'asia'] [u'palaszczuk', u'visit', u'asia', u'trade', u'talk'] [u'palestinian', u'milit', u'threaten', u'violenc', u'disarm'] [u'passeng', u'escap', u'injuri', u'plane', u'crash'] [u'perri', u'edg', u'allan', u'milwauke'] [u'perth', u'hospit', u'disput', u'go', u'commiss'] [u'pharmaci', u'chain', u'bid', u'stanbrok', u'prize'] [u'pine', u'secur', u'inquiri', u'continu'] [u'pine', u'worker', u'stand', u'resolv', u'union'] [u'arroyo', u'announc', u'anti', u'terror', u'pact'] [u'say', u'diplomaci', u'solv', u'korean', u'impass'] [u'talk', u'terror', u'manila'] [u'japan', u'drop', u'beef', u'tariff'] [u'polic', u'hunt', u'syring', u'bandit'] [u'polic', u'minist', u'open', u'idea', u'stop', u'shoot'] [u'polic', u'releas', u'liken', u'murder', u'probe'] [u'polic', u'releas', u'pictur', u'brazen', u'bank', u'bandit'] [u'popular', u'menopaus', u'herb', u'cancer', u'risk', u'studi'] [u'potenti', u'tourism', u'surg', u'daunt', u'tassi', u'chef'] [u'power', u'earthquak', u'rock', u'eastern', u'turkey'] [u'protest', u'worker', u'meet', u'manag'] [u'protest', u'greet', u'chirac', u'bastill'] [u'public', u'input', u'seek', u'draft', u'transport', u'plan'] [u'push', u'closer', u'univers', u'busi', u'link'] [u'push', u'extend', u'eastern', u'down'] [u'ratepay', u'await', u'council', u'budget'] [u'reardon', u'face', u'match'] [u'recycl', u'centr', u'prove', u'profit'] [u'renew', u'optim', u'lift', u'market'] [u'rescu', u'hors', u'home'] [u'research', u'seek', u'teen', u'depress', u'therapi'] [u'council', u'deal', u'mean', u'cheaper', u'sydney', u'flight'] [u'roger', u'say', u'white', u'help', u'virenqu'] [u'rossi', u'hit'] [u'rower', u'strike', u'gold', u'switzerland'] [u'rudd', u'demand', u'answer', u'iraq', u'claim'] [u'oppn', u'push', u'inquiri'] [u'shark', u'test'] [u'sheedi', u'slam', u'player', u'lack', u'disciplin'] [u'shopkeep', u'sweep', u'knife', u'wielder', u'premis'] [u'shop', u'trade', u'hour', u'decis', u'today'] [u'sigma', u'sue', u'product', u'recal'] [u'sign', u'time', u'hollywood', u'turn'] [u'singapor', u'look', u'pakistan', u'india', u'cricket'] [u'south', u'west', u'beat', u'peel', u'titl'] [u'stackhous', u'arrest', u'misdemeanor', u'assault', u'charg'] [u'strike', u'halt', u'mitsubishi', u'assembl', u'plant'] [u'sumo', u'grand', u'champion', u'keep', u'imag'] [u'swede', u'triumph', u'video', u'game', u'world'] [u'talk', u'continu', u'compon', u'disput'] [u'talk', u'mend', u'arafat', u'abba', u'rift', u'fail', u'offici'] [u'forest', u'bodi', u'consid', u'legal', u'action'] [u'marcher', u'save', u'primev', u'forest'] [u'scientist', u'snail', u'trail'] [u'teen', u'leader', u'attend', u'forum'] [u'telstra', u'share', u'month', u'high'] [u'kill', u'oodnadatta', u'merci', u'dash'] [u'tough', u'time', u'ahead', u'tiger', u'hutchison'] [u'tribut', u'founder', u'poppi', u'industri'] [u'children', u'adult', u'kenya', u'minibus', u'crash'] [u'highway', u'tragedi'] [u'serious', u'injur', u'central', u'accid'] [u'third', u'britain', u'say', u'blair', u'mislead'] [u'ugandan', u'soldier', u'rescu', u'kidnap', u'children'] [u'israel', u'bali', u'blast', u'amrozi'] [u'soldier', u'kill', u'hurt', u'iraq', u'attack'] [u'attack', u'aid', u'stanc'] [u'warn', u'dead', u'summer', u'iraq'] [u'govt', u'question', u'bushfir', u'fund'] [u'polic', u'investig', u'slaveri'] [u'victorian', u'cricket', u'mourn', u'john', u'schole'] [u'video', u'review', u'clear', u'bulldog', u'power'] [u'vietnam', u'execut', u'corpor', u'fraud'] [u'volunt', u'firefight', u'campaign', u'continu'] [u'wallabi', u'standard', u'gregan'] [u'stay', u'free', u'report'] [u'wast', u'dump', u'overshadow', u'issu'] [u'webber', u'perjuri', u'trial', u'begin', u'week'] [u'sven', u'chelsea'] [u'west', u'coast', u'mayor', u'urg', u'care', u'plan'] [u'western', u'elder', u'win', u'honour'] [u'west', u'score', u'british'] [u'wimbledon', u'champion', u'feder', u'fell', u'novak'] [u'wind', u'farm', u'duti', u'stay'] [u'put', u'bear', u'second', u'ladder'] [u'woman', u'hospit', u'crash'] [u'workcov', u'highlight', u'tractor', u'danger'] [u'zabaleta', u'win', u'swedish', u'open', u'year', u'titl'] [u'abbott', u'talk', u'nation', u'worker', u'compo', u'scheme'] [u'act', u'visit', u'central'] [u'adelaid', u'strike', u'drag', u'union'] [u'agforc', u'launch', u'environment', u'friend', u'tractor'] [u'aid', u'confer', u'focus', u'afford', u'drug', u'access'] [u'airport', u'aim', u'boost', u'intern', u'flight'] [u'aqsa', u'claim', u'respons', u'aviv', u'knife'] [u'imron', u'trial', u'start', u'monday'] [u'consid', u'rule', u'ministeri', u'advis'] [u'ambo', u'counsel', u'horror', u'smash'] [u'ambush', u'soldier', u'kill', u'iraqi', u'armi'] [u'arazi', u'slump', u'defeat'] [u'armstrong', u'titl', u'hop', u'boost', u'beloki', u'suffer'] [u'atsic', u'lobbi', u'decis', u'tuckey'] [u'aussi', u'extend', u'rank', u'lead'] [u'aussi', u'line', u'british', u'open'] [u'australia', u'lift', u'banger', u'gilchrist'] [u'australian', u'face', u'tough', u'challeng', u'gilchrist'] [u'australian', u'forc', u'halt', u'combat', u'task', u'iraq'] [u'australia', u'risk', u'nuclear', u'strike'] [u'aviat', u'brief', u'militari', u'exercis'] [u'bank', u'resourc', u'edg', u'market', u'higher'] [u'beatti', u'reluct', u'join', u'nation', u'compo', u'scheme'] [u'beckham', u'argentinian', u'world', u'nemesi'] [u'bendigo', u'miss', u'cycl', u'tour'] [u'bennett', u'dismiss', u'walk', u'talk'] [u'bethlehem', u'bomb', u'threat', u'defus'] [u'council', u'see'] [u'billionair', u'target', u'aston', u'villa', u'report'] [u'blue', u'whitewash', u'wont', u'hurt', u'origin', u'gould'] [u'brazil', u'bounc', u'say', u'scolari'] [u'build', u'taskforc', u'launch', u'employ'] [u'bulldog', u'keen', u'avoid', u'wooden', u'spoon'] [u'bureau', u'say', u'rain', u'need', u'despit', u'heavi', u'fall'] [u'bush', u'annan', u'hold', u'talk', u'iraq', u'conflict'] [u'bushfir', u'inquiri', u'hear', u'uriarra', u'devast'] [u'busi', u'time', u'health', u'advic', u'line'] [u'caldow', u'accept', u'england'] [u'camperdown', u'safeway', u'probe'] [u'grassland', u'plan', u'consult'] [u'reduc', u'levi'] [u'caltex', u'announc'] [u'disput', u'worsen', u'fail', u'talk'] [u'chang', u'moot', u'region', u'health'] [u'como', u'hous', u'caus', u'damag'] [u'compani', u'express', u'stanbrok'] [u'conargo', u'council', u'chamber'] [u'concern', u'air', u'fish', u'black', u'market'] [u'convent', u'centr', u'need', u'refurbish'] [u'cork', u'get', u'suspend', u'hodg', u'cheat', u'claim'] [u'coron', u'investig', u'schole', u'death'] [u'coron', u'probe', u'wheelchair', u'train', u'death'] [u'councillor', u'critic', u'water', u'save', u'incent'] [u'court', u'clear', u'vitamin', u'class', u'action'] [u'court', u'tell', u'murder', u'babi', u'tortur'] [u'cowboy', u'retain', u'sheppard'] [u'crow', u'cautious', u'carey', u'injuri'] [u'cruz', u'continu', u'battl', u'resid'] [u'csiro', u'issu', u'marin', u'pest', u'list'] [u'curios', u'kill', u'sniffer', u'rusik', u'die', u'line'] [u'dairi', u'farmer', u'face', u'uncertain', u'futur'] [u'deject', u'simoni', u'readi', u'quit', u'tour'] [u'disput', u'halt', u'north', u'west', u'shelf', u'work'] [u'destroy', u'attack'] [u'doubt', u'cast', u'drag', u'strip', u'plan', u'take'] [u'drought', u'take', u'toll', u'golf', u'cours'] [u'duffi', u'resid', u'claim', u'inadequ', u'warn', u'give'] [u'dutson', u'down', u'dump', u'step', u'closer'] [u'dyson', u'want', u'lankan', u'toppl', u'aussi'] [u'postpon', u'worker', u'meet'] [u'educ', u'compani', u'look', u'list'] [u'face', u'hungrier', u'usual', u'tiger'] [u'everton', u'admit', u'mcmanaman'] [u'expert', u'highlight', u'shipwreck', u'concern'] [u'expert', u'focus', u'shark'] [u'farmer', u'begin', u'restor', u'damag', u'fenc'] [u'farmer', u'urg', u'protect', u'stock'] [u'aviat', u'regiment', u'facil', u'expect'] [u'afghan', u'polic', u'kill', u'taliban', u'raid'] [u'flatul', u'cattl', u'loss'] [u'fletcher', u'tribun', u'appear'] [u'forest', u'protect', u'plan', u'consult'] [u'headmast', u'lose', u'appeal'] [u'fossil', u'puzzl'] [u'injur', u'great', u'divid', u'helicopt', u'crash'] [u'threat', u'cost', u'sheep', u'industri'] [u'fund', u'boost', u'flood', u'mitig', u'plan'] [u'fund', u'boost', u'shoalhaven', u'green', u'project'] [u'fund', u'seek', u'intern', u'cycl', u'athlet'] [u'garden', u'histori', u'bring', u'life', u'film'] [u'girl', u'run', u'franc', u'marin'] [u'golden', u'point', u'debat', u'wast', u'time', u'bennett'] [u'govt', u'ask', u'break', u'hill', u'movi'] [u'govt', u'busi', u'worker', u'compens', u'push'] [u'govt', u'consid', u'hospit', u'insur', u'offer'] [u'govt', u'promis', u'readi', u'gang', u'rape'] [u'govt', u'refus', u'interven', u'polic', u'industri'] [u'govt', u'shrug', u'nuclear', u'threat'] [u'govt', u'decid', u'fate', u'british', u'murder'] [u'plan', u'aim', u'collar', u'wild', u'dog'] [u'green', u'highlight', u'indigen', u'concern'] [u'group', u'unit', u'push', u'asbesto', u'health', u'facil'] [u'gulf', u'mexico', u'cyclon', u'whip', u'surf'] [u'gypsi', u'jazz', u'swing'] [u'hanson', u'support', u'gather', u'outsid', u'court'] [u'hawk', u'lose', u'holland'] [u'hewitt', u'fade', u'master', u'content'] [u'hobart', u'council', u'back', u'schoolgirl', u'plea', u'stay'] [u'hospit', u'ward', u'track', u'gastro', u'outbreak'] [u'howard', u'complet', u'manchest', u'unit'] [u'howard', u'land', u'japan'] [u'howard', u'say', u'escap', u'setback'] [u'illeg', u'fish', u'review', u'hold', u'public', u'meet'] [u'health', u'forc', u'akram', u'quit', u'hampshir'] [u'indigen', u'cultur', u'undervalu', u'say', u'academ'] [u'industri', u'angri', u'forest', u'plan'] [u'islam', u'jihad', u'warn', u'israel', u'limit', u'patienc'] [u'plenti', u'offer', u'citi', u'say', u'seaman'] [u'japanes', u'team', u'leav', u'quest', u'yeti'] [u'jeremi', u'littl', u'funer', u'hold', u'sydney', u'today'] [u'network', u'send', u'escort', u'agenc'] [u'john', u'origin'] [u'john', u'play', u'origin', u'final'] [u'joubert', u'jaco', u'black', u'test'] [u'kindergarten', u'need', u'oversight', u'union'] [u'koperberg', u'deni', u'politicis'] [u'kournikova', u'august', u'agent'] [u'langer', u'chang', u'tune', u'ryder', u'captainci'] [u'lashko', u'mine', u'gold', u'australia'] [u'lawyer', u'forest', u'battl'] [u'lectur', u'take', u'ride', u'life', u'record'] [u'local', u'govt', u'minist', u'water', u'reform', u'plan'] [u'local', u'mayor', u'join', u'landcar', u'review'] [u'celebr', u'birthday'] [u'die', u'north', u'west', u'blaze'] [u'manila', u'court', u'hand', u'marco', u'million', u'govt'] [u'hospit', u'bash'] [u'matilda', u'world', u'squad'] [u'mayor', u'confid'] [u'birthday', u'celebr', u'unveil'] [u'meet', u'outlin', u'tenanc', u'legisl'] [u'accus', u'servo', u'hold', u'refus', u'bail'] [u'mickelson', u'play', u'open', u'hop'] [u'millar', u'pay', u'tactic', u'error'] [u'miller', u'red', u'sign', u'spree'] [u'miller', u'take', u'red', u'coach'] [u'administr', u'meet', u'potenti', u'investor'] [u'minist', u'want', u'stabil', u'return', u'seafood'] [u'miss', u'woman', u'bodi'] [u'mother', u'accus', u'tri', u'kill', u'children', u'bail'] [u'urg', u'polic', u'communiti', u'partnership'] [u'murder', u'inquest', u'continu'] [u'survey', u'point', u'negat', u'inflat'] [u'nation', u'museum', u'tell', u'spice'] [u'netbal', u'thrash', u'trinidad', u'tobago'] [u'zealand', u'increas', u'solomon'] [u'protest', u'stand', u'trial'] [u'opposit', u'seek', u'parliament', u'recal'] [u'manur', u'letter', u'campaign', u'rais', u'stink'] [u'send', u'solomon', u'forc'] [u'philippin', u'investig', u'escap'] [u'philippin', u'offer', u'reward', u'escape'] [u'phone', u'compani', u'introduc', u'limit', u'free', u'call'] [u'pilot', u'escap', u'bankstown', u'crash'] [u'pirat', u'home', u'say'] [u'plan', u'meet', u'darwin'] [u'explain', u'fraud', u'charg', u'hanson'] [u'reject', u'north', u'korean', u'nuclear', u'threat'] [u'polic', u'concern', u'miss', u'teen'] [u'polic', u'hunt', u'runaway', u'girl', u'marin'] [u'polic', u'manslaught', u'charg', u'human'] [u'polic', u'angler', u'victim'] [u'polic', u'predict', u'road', u'rage', u'threat', u'rise'] [u'polic', u'sink', u'victim'] [u'popp', u'bubbl', u'burst', u'stuttgart'] [u'press', u'secretari', u'fleischer', u'leav', u'white', u'hous'] [u'push', u'save', u'place'] [u'budget', u'scrutinis'] [u'qualifi', u'crown', u'slip', u'montoya', u'ralf'] [u'question', u'rais', u'plan', u'process'] [u'question', u'rais', u'brothel', u'applic'] [u'rain', u'boost', u'hop', u'good', u'wheatbelt', u'season'] [u'rain', u'offer', u'mix', u'bless', u'firi'] [u'ratten', u'hang', u'boot'] [u'reardon', u'cross', u'match'] [u'rent', u'scheme', u'open', u'swiss', u'chees', u'lover'] [u'rescu', u'team', u'save', u'twinkl'] [u'rizzo', u'lead', u'gymnast', u'world'] [u'rodeo', u'charg', u'warwick', u'school', u'curriculum'] [u'ronaldinho', u'give', u'ultimatum', u'barcelona', u'spanish'] [u'rudd', u'say', u'downer', u'north', u'korea'] [u'ruston', u'stay', u'famili'] [u'scientist', u'work', u'tick', u'resist', u'cattl'] [u'seminar', u'focus', u'sport', u'safeti'] [u'seven', u'aceh', u'rebel', u'kill', u'singl', u'battl'] [u'shop', u'spree', u'earn', u'jail', u'term'] [u'slack', u'quit', u'red'] [u'slack', u'quit', u'red'] [u'solomon', u'forc', u'leav', u'week'] [u'stewart', u'slam', u'eccleston', u'vicious', u'critic'] [u'strong', u'wind', u'play', u'havoc', u'power'] [u'studi', u'identifi', u'worst', u'heart', u'risk'] [u'survey', u'highlight', u'littl', u'price', u'differ', u'store'] [u'bird', u'coach', u'rule', u'appli', u'nation'] [u'teacher', u'union', u'lodg', u'claim'] [u'teen', u'arrest', u'vandal', u'attack'] [u'telstra', u'deni', u'discount', u'break', u'competitor'] [u'telstra', u'reject', u'complaint', u'deal'] [u'terror', u'fear', u'scupper', u'atlant', u'row'] [u'tourism', u'industri', u'show', u'sign', u'recoveri'] [u'tower', u'vandal', u'disrupt', u'ambul', u'radio'] [u'train', u'council', u'float', u'skill', u'passport', u'plan'] [u'travel', u'warn', u'philippin', u'unnecessari', u'downer'] [u'tribun', u'clear', u'essendon', u'pair'] [u'tuckey', u'back', u'call', u'nation', u'park', u'freez'] [u'tumour', u'starv', u'drug', u'promis'] [u'tyson', u'sue', u'psychiatrist', u'unpaid', u'bill'] [u'tyson', u'sue', u'shrink', u'therapi', u'bill'] [u'back', u'wind', u'power', u'scheme'] [u'union', u'claim', u'public', u'servant'] [u'union', u'blame', u'oodnadatta', u'tripl', u'fatal', u'budget', u'cut'] [u'unsecur', u'creditor', u'support', u'liquid'] [u'compani', u'news', u'boost', u'market'] [u'coron', u'probe', u'schole', u'death'] [u'govt', u'accus', u'ignor', u'dump', u'opposit'] [u'vinokourov', u'best', u'year', u'overshadow', u'friend', u'death'] [u'vote', u'back', u'trade', u'hour', u'deregul'] [u'hinder', u'hunter', u'burn', u'off'] [u'wilson', u'warn', u'armstrong'] [u'wind', u'farm', u'get', u'final'] [u'woman', u'die', u'crash'] [u'woman', u'court', u'solicit', u'murder', u'charg'] [u'woosnam', u'chip', u'gasp', u'open', u'place'] [u'work', u'ban', u'impos', u'hospit'] [u'worsen', u'violenc', u'leav', u'dead', u'burundi'] [u'wrangl', u'continu', u'public', u'park'] [u'revamp', u'plan', u'aust', u'inland', u'infrastructur'] [u'abbott', u'launch', u'plan', u'boost', u'worker', u'share'] [u'aborigin', u'elder', u'join', u'protest', u'propos'] [u'act', u'hop', u'project', u'go', u'ahead'] [u'actress', u'ask', u'court', u'releas', u'photo'] [u'ail', u'welsh', u'turn', u'yoga'] [u'aircrew', u'action', u'scrutini', u'studi'] [u'airlin', u'say', u'flight', u'stab', u'minor', u'incid'] [u'airlin', u'say', u'stab', u'minor', u'incid'] [u'black', u'recal', u'mauger', u'face', u'springbok'] [u'unveil', u'plan', u'kid', u'learn'] [u'speak', u'drought', u'help'] [u'welcom', u'labor', u'nurs', u'propos'] [u'armstrong', u'shrug', u'protest', u'piil', u'take'] [u'art', u'project', u'reciev', u'govt', u'grant'] [u'worker', u'jail', u'fraud'] [u'atsic', u'chairman', u'give', u'caus', u'letter'] [u'aussi', u'leav', u'tiger', u'narbonn'] [u'aussi', u'domin', u'surf', u'south', u'africa'] [u'aussi', u'roll', u'jamaica'] [u'australian', u'wwii', u'soldier', u'buri', u'berlin'] [u'aust', u'resourc', u'consumpt', u'world', u'highest'] [u'defend', u'grower', u'levi'] [u'bali', u'judg', u'hear', u'wit', u'teleconfer'] [u'barton', u'inspect', u'brazil', u'sugar', u'industri'] [u'beloki', u'surgeri'] [u'wari', u'vino', u'ambiti', u'basqu', u'lanc'] [u'fail', u'rate', u'rise'] [u'birth', u'centr', u'consid', u'futur'] [u'boyl', u'prais', u'freeman', u'best', u'generat'] [u'british', u'open', u'form', u'guid'] [u'british', u'schoolgirl', u'safe', u'sound', u'polic'] [u'brogden', u'call', u'child', u'curfew'] [u'buena', u'vista', u'social', u'club', u'musician', u'return', u'home'] [u'bureau', u'predict', u'rainfal', u'australia', u'farmer'] [u'bush', u'court', u'unfair', u'say', u'magistr'] [u'bush', u'face', u'bigger', u'issu', u'telstra', u'anderson'] [u'bushfir', u'inquiri', u'highlight', u'communic', u'concern'] [u'cabbi', u'dont', u'want', u'passeng', u'slug', u'safeti'] [u'cambodia', u'arrest', u'aust', u'phone', u'racket', u'charg'] [u'cambodian', u'parti', u'evid', u'vote', u'buy'] [u'cathi', u'freeman', u'factbox'] [u'children', u'hospit', u'launch', u'onlin', u'diabet'] [u'chines', u'reserv', u'base'] [u'church', u'anger', u'croatia', u'school', u'yoga', u'plan'] [u'clark', u'explain', u'anderson'] [u'communiti', u'resourc', u'centr', u'open'] [u'communiti', u'consult', u'health', u'project'] [u'constabl', u'accus', u'colleagu', u'shoot', u'approach'] [u'cook', u'blast', u'tour', u'organis'] [u'cost', u'airport', u'work', u'take'] [u'council', u'merger', u'debat', u'continu'] [u'council', u'put', u'tandem', u'parachut', u'hold'] [u'council', u'seek', u'trade', u'hour', u'deregul'] [u'council', u'water', u'author', u'involv', u'studi'] [u'court', u'find', u'viva', u'mislead', u'consum'] [u'crowd', u'protest', u'court', u'penalti'] [u'urg', u'support', u'pay', u'matern', u'leav'] [u'dairi', u'group', u'hop', u'eas', u'trade', u'barrier'] [u'debat', u'erupt', u'nelli', u'develop'] [u'delay', u'learn', u'centr', u'work'] [u'democrat', u'deter', u'poker', u'machin', u'gambler'] [u'democrat', u'highlight', u'sugar', u'concern'] [u'design', u'contract', u'award', u'controversi', u'road'] [u'dobroskok', u'toppl', u'dive', u'king', u'sautin'] [u'downer', u'prais', u'chines', u'move', u'korea'] [u'ask', u'review', u'rivkin', u'medic', u'claim'] [u'draft', u'plan', u'strategi', u'form', u'lower', u'hunter'] [u'drink', u'drive', u'problem', u'worsen', u'popular', u'snow', u'town'] [u'drought', u'help', u'boost', u'saleyard', u'cattl', u'number'] [u'east', u'gippsland', u'head', u'south'] [u'economi', u'secur', u'japan', u'agenda'] [u'worker', u'expect', u'reject', u'offer'] [u'monitor', u'site', u'remedi'] [u'escape', u'rearrest', u'face', u'court'] [u'escap', u'highlight', u'threat', u'downer'] [u'ethanol', u'industri', u'promis', u'region', u'job', u'boost'] [u'etheridg', u'shire', u'deliv', u'budget'] [u'fan', u'descend', u'lang', u'park'] [u'farewel', u'icon', u'australian', u'sport'] [u'farmer', u'input', u'manag', u'strategi'] [u'farmer', u'group', u'show', u'dog', u'determin'] [u'farm', u'bodi', u'accus', u'backdoor'] [u'figur', u'highlight', u'reduc', u'sheep', u'lamb', u'number'] [u'flintoff', u'england', u'gilchrist', u'boycott'] [u'formula', u'come', u'india', u'say', u'eccleston'] [u'recov', u'helicopt', u'crash'] [u'freeman', u'lose', u'hunger'] [u'freeman', u'quit', u'desir', u'dri'] [u'french', u'demonstr', u'stop', u'tour', u'franc'] [u'gold', u'coast', u'surfer', u'look', u'ride', u'wave', u'success'] [u'goldfield', u'rain', u'predict', u'increas'] [u'govt', u'consid', u'global', u'missil', u'shield'] [u'govt', u'give', u'fight', u'timber', u'industri'] [u'green', u'port', u'environ', u'concern'] [u'greenspan', u'address', u'push', u'dollar', u'higher'] [u'greenspan', u'vow', u'rat'] [u'group', u'rais', u'student', u'condom', u'avail'] [u'helicopt', u'crash', u'investig', u'expect'] [u'hope', u'ford', u'invest', u'samag', u'plan'] [u'hospit', u'plan', u'boost', u'patient', u'respons', u'time'] [u'howard', u'koizumi', u'sign', u'econom', u'agreement'] [u'howard', u'thank', u'freeman', u'contribut', u'sport'] [u'human', u'right', u'watch', u'blast', u'secur', u'iraqi', u'women'] [u'hurrican', u'caus', u'havoc', u'texa', u'coast'] [u'icac', u'investig', u'fair', u'trade', u'bribe'] [u'icac', u'investig', u'fair', u'trade', u'bribe', u'claim'] [u'health', u'forc', u'wasim', u'quit', u'hampshir'] [u'increas', u'park', u'fee', u'help', u'fund', u'perth', u'project'] [u'india', u'tough', u'australia', u'ganguli'] [u'indigen', u'demonstr', u'fear', u'allay'] [u'indigen', u'diabet', u'educ', u'campaign', u'plan'] [u'injur', u'verkerk', u'suffer', u'setback'] [u'iran', u'say', u'canadian', u'journalist', u'die', u'beat'] [u'iraq', u'crimin'] [u'iraq', u'add'] [u'irrig', u'seek', u'drought', u'fund'] [u'israel', u'grant', u'lebanes', u'militia', u'member'] [u'japanes', u'beef', u'tariff', u'decis', u'concern', u'say'] [u'prison', u'escap', u'deepli', u'alarm', u'anderson'] [u'juri', u'tell', u'hanson', u'opinion', u'asid'] [u'kato', u'death', u'overshadow', u'honda', u'seventh'] [u'katter', u'back', u'north', u'referendum'] [u'kewel', u'liverpool', u'debut', u'tonight'] [u'kidnap', u'isra', u'taxi', u'driver', u'free'] [u'king', u'sign', u'boomer', u'guard', u'smith'] [u'lachlan', u'council', u'air', u'bush', u'servic', u'frustrat'] [u'lectur', u'experi', u'down', u'set'] [u'let', u'john'] [u'let', u'john'] [u'liberian', u'rebel', u'want', u'overwhelm', u'presenc'] [u'lodg', u'urg', u'accept', u'corriedal', u'park', u'site'] [u'long', u'term', u'rat', u'surg', u'higher', u'greenspan'] [u'major', u'defenc', u'train', u'centr', u'get', u'ahead'] [u'stab', u'flight', u'sydney'] [u'maroon', u'good', u'origin'] [u'mayor', u'candid', u'seek', u'coast', u'growth', u'slowdown'] [u'mcgee', u'hunger', u'success', u'give', u'frustrat'] [u'mcgradi', u'prais', u'anti', u'hoon', u'law'] [u'minist', u'offer', u'place', u'assur'] [u'miss', u'british', u'girl', u'phone', u'famili'] [u'miss', u'teenag', u'fremantl'] [u'miss', u'teen', u'fremantl'] [u'mobil', u'reject', u'claim', u'quit', u'petrol', u'retail'] [u'moment', u'go', u'rat', u'westpac'] [u'monsoon', u'season', u'take', u'toll', u'southern', u'asia'] [u'moran', u'seek', u'bail', u'drug', u'charg'] [u'call', u'govt', u'rail', u'line'] [u'fear', u'poki', u'plan', u'gambl', u'club', u'futur'] [u'music', u'enlist', u'petrol', u'sniff', u'battl'] [u'nardel', u'unsecur', u'creditor', u'reject', u'offer'] [u'nation', u'museum', u'architect', u'defend', u'design'] [u'campaign', u'reduc', u'road', u'toll', u'screen'] [u'newstead', u'colleg', u'win', u'rock', u'eisteddfod', u'challeng'] [u'korea', u'real', u'threat'] [u'hope', u'recoup', u'fingleton', u'legal', u'cost', u'welford'] [u'noosa', u'host', u'communiti', u'cabinet'] [u'norman', u'lead', u'aussi', u'open'] [u'northam', u'resid', u'face', u'rat', u'slug'] [u'exercis', u'test', u'defenc', u'forc', u'capabl'] [u'govt', u'urg', u'come', u'clean', u'harbour', u'plan'] [u'korea', u'spark', u'arm', u'race', u'ambassador'] [u'bid', u'olymp'] [u'reject', u'leg', u'immigr'] [u'nation', u'pair', u'exclud', u'support', u'court', u'hear'] [u'opposit', u'propos', u'child', u'curfew'] [u'overtim', u'ban', u'threaten', u'product'] [u'palestinian', u'thief', u'chang', u'settler', u'tyre'] [u'philippin', u'reap', u'critic', u'allow', u'bomber'] [u'pilot', u'unfair', u'dismiss', u'appeal', u'hear'] [u'continu', u'japan', u'talk'] [u'rais', u'tariff', u'beef', u'japan', u'talk'] [u'polic', u'drug', u'hide', u'ship', u'arriv', u'sydney'] [u'polic', u'hunt', u'supermarket', u'arm', u'bandit'] [u'polic', u'investig', u'flight', u'stab'] [u'polic', u'probe', u'robinval', u'hold'] [u'polic', u'murder', u'victim', u'recent', u'arriv'] [u'pool', u'damag', u'prove', u'cost'] [u'port', u'arthur', u'visitor', u'number', u'time', u'high'] [u'port', u'hedland', u'seek', u'naval', u'base'] [u'priest', u'join', u'push', u'stop', u'deport', u'schoolgirl'] [u'produc', u'urg', u'qraa', u'loan'] [u'public', u'servant', u'travel', u'review'] [u'public', u'urg', u'address', u'safeti', u'risk'] [u'rang', u'issu', u'debat', u'wine', u'grape', u'meet'] [u'ratepay', u'face', u'emerg', u'servic', u'levi'] [u'rate', u'rise', u'plan', u'latrob', u'budget'] [u'record', u'industri', u'profit', u'suffer', u'piraci'] [u'report', u'show', u'violenc', u'muslim'] [u'resourc', u'push', u'higher'] [u'rezon', u'pave', u'shop', u'centr', u'plan'] [u'tinto', u'take', u'court'] [u'riverina', u'suicid', u'rat', u'spotlight'] [u'ruddock', u'say', u'refuge', u'doubl', u'standard'] [u'runaway', u'marin', u'arrest', u'germani', u'polic'] [u'runaway', u'girl', u'fine', u'marin', u'talk'] [u'rural', u'servic', u'face', u'compens', u'claim'] [u'court', u'support', u'dump', u'vote'] [u'samudra', u'deni', u'choos', u'bali'] [u'tome', u'coup', u'leader', u'dissolv', u'state', u'bodi', u'report'] [u'water', u'downplay', u'murray', u'salin', u'concern'] [u'school', u'tell', u'play', u'greater', u'role', u'fight'] [u'scotland', u'preliminari', u'world', u'squad'] [u'solomon', u'expect', u'allow', u'australian', u'intervent'] [u'solomon', u'forc', u'place', u'week'] [u'somali', u'return', u'home', u'life', u'save'] [u'spill', u'fuel', u'threaten', u'fragil', u'sand'] [u'springborg', u'stand', u'broadwat', u'candid'] [u'staff', u'stress', u'affect', u'health', u'servic', u'cunningham'] [u'studi', u'consid', u'castl', u'hill', u'risk'] [u'tann', u'lose', u'dope', u'appeal'] [u'opposit', u'highlight', u'nurs', u'shortag', u'concern'] [u'teenag', u'nadal', u'stuttgart', u'second', u'round'] [u'telstra', u'sale', u'wont', u'happen', u'rural', u'upgrad'] [u'dead', u'caravan'] [u'toowoomba', u'car', u'confisc', u'anti', u'hoon', u'law'] [u'transport', u'minist', u'deni', u'claim', u'rail', u'network'] [u'travel', u'bomb', u'snack', u'import'] [u'tree', u'like', u'chop'] [u'troubl', u'gold', u'secur', u'fund', u'packag'] [u'uefa', u'show', u'feminin'] [u'union', u'confid', u'mayn', u'disput', u'resolut'] [u'unit', u'close', u'ronaldinho'] [u'unit', u'church', u'consid', u'ordin'] [u'block', u'fund', u'famili', u'plan', u'agenc'] [u'move', u'check', u'north', u'korean', u'bomb', u'claim'] [u'senat', u'roll', u'media', u'rule'] [u'troop', u'target', u'baghdad', u'fallujah'] [u'troop', u'upset', u'delay', u'return', u'sergeant'] [u'governor', u'tour', u'north', u'west'] [u'virgin', u'consid', u'europ', u'australia', u'rout'] [u'wagga', u'case', u'spark', u'brothel', u'ownership', u'rule'] [u'governor', u'tour', u'aborigin', u'communiti'] [u'govt', u'put', u'commerci', u'coral', u'collector', u'notic'] [u'wallabi', u'ella', u'join', u'ireland', u'leinster', u'head', u'coach'] [u'wollongong', u'construct', u'firm', u'face', u'court', u'action'] [u'woman', u'die', u'hous'] [u'woman', u'win', u'claim', u'fee'] [u'wood', u'showdown', u'promis', u'histor', u'open'] [u'youth', u'precinct', u'plan', u'derbi'] [u'zeta', u'jonesdougla', u'heist', u'film', u'deal', u'fall'] [u'zork', u'steal', u'wine', u'expo'] [u'year', u'rule', u'tip', u'drought'] [u'aborigin', u'leader', u'confid', u'crime', u'level', u'fall'] [u'govt', u'releas', u'rebuild', u'incent', u'plan'] [u'actor', u'warn', u'strike'] [u'pledg', u'rule', u'rethink', u'malthous', u'broadsid'] [u'airlin', u'consid', u'region', u'rout'] [u'alcoa', u'emiss', u'oppon', u'leav'] [u'alston', u'expect', u'museum', u'chang', u'time'] [u'alston', u'question', u'abc', u'lack', u'respons'] [u'ambiti', u'cardiff', u'aussi', u'vidmar', u'second'] [u'anderson', u'hit', u'sterilis', u'rule'] [u'anderson', u'crackdown', u'airlin', u'contraband'] [u'annika', u'go', u'ladi', u'prepar'] [u'anti', u'terror', u'committe', u'sit', u'darwin'] [u'anti', u'terror', u'plan', u'consid'] [u'armstrong', u'stay', u'focus', u'rest'] [u'arroyo', u'order', u'polic', u'overhaul', u'inquiri'] [u'aussi', u'hope'] [u'aussi', u'prefer', u'ride', u'wave', u'passion', u'survey'] [u'aussi', u'admir', u'stand'] [u'aust', u'indonesia', u'talk', u'free', u'trade'] [u'austoft', u'talk', u'break'] [u'australia', u'hand', u'netbal', u'lesson'] [u'australia', u'name', u'bowler'] [u'australian', u'escap', u'vietnam', u'death'] [u'australia', u'regain', u'test', u'trophi'] [u'behaviour', u'tarnish', u'windi', u'tour', u'pont'] [u'bank', u'employe', u'plead', u'guilti', u'branch', u'heist'] [u'barca', u'pull', u'ronaldinho', u'bid'] [u'beckham', u'friend'] [u'behrend', u'upset', u'seed', u'moya', u'stuttgart'] [u'biloela', u'win', u'tidi', u'town', u'titl'] [u'bolivia', u'declar', u'foot', u'mouth', u'diseas', u'emerg'] [u'bolton', u'bolster', u'defenc', u'campo', u'sign'] [u'bomb', u'blast', u'wound', u'pakistan'] [u'bowi', u'highlight', u'tourism', u'chang'] [u'break', u'end', u'murder', u'suicid', u'polic'] [u'brogden', u'visit', u'bega', u'valley'] [u'burma', u'pressur', u'releas'] [u'bushfir', u'inquiri', u'wast', u'time', u'nation', u'park'] [u'vote', u'high', u'tech'] [u'timber', u'town', u'busi', u'support'] [u'captain', u'salut', u'fine', u'kanimbla', u'crew'] [u'caption', u'boost', u'access', u'show'] [u'bomb', u'blast', u'kill', u'russia', u'dagestan'] [u'carey', u'back', u'face', u'docker'] [u'plough', u'market'] [u'cattl', u'duffer', u'electron', u'steal', u'stock'] [u'chamber', u'defend', u'levi', u'consult'] [u'charter', u'compani', u'order', u'japan', u'million'] [u'chelsea', u'agre', u'duff', u'geremi', u'sign'] [u'china', u'urg', u'korea', u'renew', u'framework'] [u'chirac', u'suggest', u'tax', u'help', u'fight'] [u'chopper', u'return', u'home', u'middl', u'east', u'duti'] [u'church', u'concern', u'child', u'abus', u'blowout'] [u'chief', u'quiz', u'uranium', u'claim'] [u'claim', u'race', u'curfew'] [u'claim', u'mobil', u'help', u'illeg', u'fisher'] [u'communiti', u'consult', u'plan', u'tank', u'paddock'] [u'communiti', u'award', u'refuge', u'support'] [u'concern', u'rais', u'stormwat', u'lead', u'level'] [u'congo', u'icc', u'sight'] [u'congo', u'swear', u'vice', u'presid', u'peac', u'deal'] [u'coron', u'consid', u'blaze', u'report'] [u'council', u'budget', u'strong', u'water', u'focus'] [u'council', u'like', u'approv', u'board', u'chamber', u'merger'] [u'council', u'continu', u'back'] [u'council', u'voic', u'merger', u'opposit'] [u'countri', u'show', u'face', u'cancel'] [u'court', u'hear', u'nation', u'build', u'drop', u'member'] [u'court', u'uphold', u'rule', u'sterilis', u'bungl'] [u'crown', u'seek', u'indefinit', u'jail', u'serial', u'paedophil'] [u'bruijn', u'commit', u'question'] [u'decis', u'bryant', u'case', u'friday', u'earliest'] [u'desper', u'tiger', u'ponder', u'johnson', u'gambl'] [u'develop', u'consid', u'launceston', u'market', u'option'] [u'develop', u'continu', u'shellfish', u'test'] [u'disgrac', u'refus', u'quit'] [u'disgruntl', u'soldier', u'line'] [u'driver', u'face', u'possibl', u'loss', u'hoon', u'law'] [u'driver', u'urg', u'care'] [u'dust', u'mask', u'need', u'montserrat'] [u'estat', u'agent', u'push', u'stamp', u'duti'] [u'fear', u'rais', u'livestock', u'scheme'] [u'feder', u'govt', u'keen', u'meatwork', u'reopen'] [u'fifth', u'bowler', u'dump', u'waugh', u'lash', u'media', u'sledg'] [u'face', u'court', u'robberi'] [u'focus', u'chronic', u'ill'] [u'polic', u'commission', u'describ', u'visionari'] [u'girl', u'rescu', u'japan', u'abduct', u'suspect'] [u'fund', u'boost', u'legal', u'centr'] [u'gold', u'medallist', u'lashko', u'home', u'melbourn'] [u'gold', u'medallist', u'lashko', u'return', u'melbourn'] [u'govt', u'give', u'boost', u'teach', u'standard'] [u'govt', u'urg', u'boost', u'health', u'servic', u'fund'] [u'govt', u'tackl', u'solomon', u'illeg', u'dolphin', u'trade', u'kemp'] [u'govt', u'thank', u'asylum', u'seeker', u'spotter'] [u'train', u'scheme', u'begin', u'north', u'coast'] [u'greenspan', u'deflat', u'watch'] [u'group', u'highlight', u'outback', u'drive', u'safeti', u'effort'] [u'group', u'seek', u'wharf', u'develop', u'probe'] [u'guevara', u'wish', u'main', u'rival', u'freeman', u'luck'] [u'hong', u'kong', u'leader', u'say', u'quit'] [u'hors', u'rider', u'saddl', u'long', u'ride'] [u'hough', u'hit', u'dairi', u'deregul'] [u'immigr', u'raid', u'mudge'] [u'chelsea', u'middl', u'say', u'eriksson'] [u'brazil', u'sugar', u'make', u'wheel', u'round'] [u'investig', u'launch', u'electr', u'death'] [u'iraq', u'author', u'invit', u'mobil', u'network'] [u'itali', u'valli', u'win', u'second', u'open', u'water', u'gold'] [u'joint', u'defenc', u'exercis', u'begin'] [u'journalist', u'suspend', u'fake', u'iraq', u'report'] [u'kalgoorli', u'boulder', u'look', u'upper', u'hous', u'sit'] [u'kanimbla', u'home', u'anthrax', u'probe', u'continu'] [u'kemp', u'deni', u'govt', u'close', u'kakadu', u'tourism'] [u'kewel', u'make', u'shaki', u'start', u'red'] [u'kidman', u'cautious', u'drought', u'predict'] [u'kilt', u'kiwi', u'longstaff', u'leav'] [u'kimberley', u'indigen', u'tourism', u'take'] [u'korea', u'exchang'] [u'labor', u'say', u'disabl', u'carer', u'need', u'govt', u'help'] [u'labor', u'urg', u'clark', u'resign', u'atsic', u'sake'] [u'land', u'council', u'take', u'park'] [u'latif', u'confirm', u'captain', u'bangladesh', u'seri'] [u'light', u'tunnel', u'rail', u'plan', u'decis'] [u'lithuania', u'propos', u'month', u'rumsa'] [u'lodg', u'undecid', u'council', u'offer'] [u'logi', u'agre', u'year', u'contract', u'coach', u'west', u'indi'] [u'lyon', u'join', u'chase', u'viduka'] [u'malon', u'payton', u'join', u'laker', u'oneal', u'stay', u'pacer'] [u'charg', u'stab'] [u'grant', u'bail', u'alleg', u'polic', u'assault'] [u'mansel', u'scath', u'clark', u'caus'] [u'face', u'attempt', u'murder', u'charg'] [u'market', u'follow', u'wall'] [u'massu', u'eas'] [u'mayor', u'get', u'fast', u'train', u'pledg'] [u'mayor', u'weigh', u'develop', u'benefit'] [u'milit', u'criticis', u'mazen', u'trip', u'washington'] [u'millennium', u'train', u'face', u'continu', u'safeti', u'concern'] [u'equip', u'firm', u'go', u'bust'] [u'mine', u'disast', u'plan', u'spotlight'] [u'minist', u'defend', u'support', u'realiti', u'seri'] [u'minist', u'hear', u'har', u'race', u'concern'] [u'effort', u'bite', u'wild', u'dog'] [u'mozambiqu', u'nigeria', u'discuss', u'tome', u'intervent'] [u'nativ', u'titl', u'stakehold', u'urg', u'negoti'] [u'nat', u'launch', u'petit', u'oppos', u'poki', u'plan'] [u'nat', u'question', u'dutson', u'down', u'report'] [u'champ', u'sign', u'duncan'] [u'netbal', u'quarter', u'final', u'power', u'stop'] [u'cancer', u'research', u'lab', u'open', u'melbourn'] [u'korea', u'accept', u'multilater', u'talk', u'report'] [u'norman', u'hunt', u'british', u'open'] [u'norman', u'predict', u'tough', u'start', u'wind', u'sweep', u'open'] [u'sign', u'marin', u'abus', u'girl', u'germani', u'prosecutor'] [u'suspici', u'circumst', u'mother', u'death', u'polic'] [u'flag', u'wont', u'grace', u'lang', u'park', u'beatti'] [u'tourism', u'chief', u'resign', u'merger', u'protest'] [u'polic', u'seek', u'miss', u'queensland'] [u'urg', u'boost', u'region', u'airport', u'secur'] [u'open', u'boss', u'confid', u'illeg', u'driver'] [u'origin', u'redex', u'car', u'appear', u'bordertown'] [u'perrow', u'low', u'south', u'african', u'surf'] [u'pipelin', u'indigen', u'consult', u'continu'] [u'polic', u'await', u'psychiatr', u'test', u'result', u'follow'] [u'polic', u'charg', u'oreilli', u'murder'] [u'polic', u'highlight', u'resourc', u'shortag', u'event'] [u'polic', u'tent', u'embassi'] [u'polic', u'probe', u'machet', u'attack'] [u'post', u'situat', u'iraq', u'misread'] [u'power', u'revamp', u'winton'] [u'priest', u'prove', u'comfort', u'shadow', u'death'] [u'princip', u'back', u'curriculum', u'framework'] [u'protest', u'storm', u'gather', u'tome', u'coup'] [u'public', u'urg', u'plant', u'thiev'] [u'firefight', u'emerg', u'dash'] [u'sterilis', u'case', u'repeat'] [u'queen', u'salsa', u'cruz', u'dead'] [u'rain', u'hamper', u'rescu', u'storm', u'northern', u'india'] [u'rann', u'blast', u'opposit', u'nuclear', u'dump', u'stanc'] [u'rebel', u'kill', u'congo'] [u'reduc', u'sentenc', u'truck', u'driver', u'involv'] [u'region', u'identifi', u'parliament', u'sit'] [u'research', u'claim', u'drink', u'spike', u'drug', u'myth'] [u'rivkin', u'fit', u'jail', u'reconsid'] [u'roff', u'black', u'test', u'darwin', u'doubt', u'smith'] [u'roger', u'line', u'yellow', u'jersey'] [u'rossi', u'ducati', u'dream', u'team', u'wait'] [u'russian', u'probe', u'wind', u'venus'] [u'ryan', u'back', u'call', u'road', u'seal'] [u'saddam', u'tape', u'blast', u'bush', u'blair'] [u'safeti', u'author', u'investig', u'port', u'phillip', u'near'] [u'oliv', u'corp', u'order', u'correct', u'claim'] [u'tome', u'minist', u'difficult', u'condit', u'famili'] [u'premier', u'polic', u'commission', u'attend'] [u'savag', u'name', u'chairman'] [u'savag', u'take', u'seat', u'head', u'board'] [u'schu', u'point', u'prove', u'britain'] [u'singapor', u'crash', u'investig', u'probe', u'chopper'] [u'solid', u'samoa'] [u'solomon', u'long', u'term', u'project'] [u'solomon', u'forc', u'dolphin', u'cruelti'] [u'solomon', u'parliament', u'pass', u'forc'] [u'south', u'africa', u'delport', u'strain', u'hamstr'] [u'specul', u'merger', u'plan', u'delay', u'council', u'elect'] [u'star', u'injur', u'shoot', u'director', u'heart', u'attack'] [u'state', u'blame', u'long', u'dental', u'queue'] [u'sterilis', u'rule', u'lift', u'premium'] [u'steal', u'ambul', u'return'] [u'studi', u'snapshot', u'speed', u'camera', u'impact'] [u'survey', u'reveal', u'iraqi', u'suspicion', u'invas', u'motiv'] [u'sydney', u'await', u'kanimbla', u'arriv'] [u'tafe', u'say'] [u'teacher', u'hang'] [u'terrorist', u'make', u'money', u'pirat', u'sale', u'interpol'] [u'toler', u'stir', u'surpris', u'costello'] [u'water', u'exercis', u'danger', u'expert'] [u'golfer', u'prepar', u'north'] [u'troop', u'iraq', u'anniversari', u'alert'] [u'tuqiri', u'free', u'start', u'black'] [u'ullrich', u'readi', u'attack', u'armstrong', u'pyrene'] [u'uncertainti', u'dictat', u'approach', u'tent', u'embassi', u'raid'] [u'unit', u'church', u'vote', u'allow', u'minist'] [u'welcom', u'minist', u'assur'] [u'face', u'guerrilla', u'chief', u'admit'] [u'vandal', u'attack', u'communiti', u'project'] [u'charg', u'alleg', u'assault'] [u'virenqu', u'see', u'spot', u'ahead', u'pyrenean', u'inferno'] [u'eye', u'legal', u'chang', u'clear', u'mine', u'backlog'] [u'wast', u'dump', u'effort', u'weaken', u'opposit'] [u'water', u'restrict', u'spark', u'flood', u'inquiri'] [u'urg', u'depend'] [u'websit', u'pose', u'vigilant', u'risk'] [u'whitnal', u'season', u'end', u'pagan', u'punish'] [u'wind', u'lash', u'open', u'norman', u'reliv', u'glori', u'day'] [u'worker', u'plead', u'guilti', u'medibank', u'theft'] [u'yachtsman', u'seek', u'action', u'river', u'siltat'] [u'yate', u'confirm', u'intent', u'sell'] [u'food', u'precinct', u'plan', u'bendigo'] [u'aborigin', u'legal', u'servic', u'lose', u'fund'] [u'accc', u'samuel', u'win', u'state'] [u'accus', u'killer', u'face', u'charg'] [u'cautious', u'welcom', u'ocean', u'plan'] [u'teacher', u'busk', u'educ', u'moni'] [u'airstrip', u'upgrad', u'plan', u'dalbi'] [u'alcohol', u'woe', u'state', u'wide', u'della', u'bosca'] [u'alleg', u'afghan', u'warlord', u'british', u'court', u'tortur'] [u'alleg', u'peopl', u'smuggler', u'claim', u'mistak', u'ident'] [u'alleg', u'peopl', u'smuggler', u'face', u'perth', u'court'] [u'allen', u'servic', u'loss', u'confirm'] [u'concern', u'gladston', u'hous', u'crisi'] [u'question', u'student', u'number', u'assur'] [u'anti', u'nuclear', u'protest', u'march', u'break', u'hill'] [u'armstrong', u'face', u'import', u'time', u'trial', u'career'] [u'armstrong', u'termin', u'rival'] [u'arson', u'believ', u'shop', u'blaze'] [u'aussi', u'author', u'storm', u'bastill'] [u'aussi', u'darwin'] [u'australian', u'aim', u'final', u'keep', u'rival'] [u'australia', u'reshuffl', u'diplomat', u'post'] [u'banger', u'struggl', u'bowl', u'attack'] [u'bangladesh', u'darwin'] [u'beatti', u'hear', u'ambul', u'need'] [u'beef', u'produc', u'hope', u'japan', u'reconsid', u'tariff'] [u'biotech', u'compani', u'prove', u'healthi', u'invest'] [u'birthday', u'tribut', u'pour', u'mandela'] [u'bleak', u'chela', u'titlehold', u'send', u'pack'] [u'bodi', u'match', u'descript', u'scientist', u'polic'] [u'bok', u'black', u'rivalri', u'burn', u'bright'] [u'bronco', u'chase', u'trio', u'signatur'] [u'bryant', u'learn', u'friday', u'face', u'charg'] [u'bungendor', u'plane', u'crash', u'blame', u'wind', u'pilot', u'error'] [u'burn', u'victim', u'fli', u'sydney'] [u'bush', u'blair', u'discuss', u'camp', u'prison'] [u'feral', u'anim', u'control', u'nationwid'] [u'input', u'propos', u'manag', u'south', u'east'] [u'reform', u'tasmania', u'youth', u'justic'] [u'canberra', u'trial', u'communiti', u'firefight'] [u'champion', u'king', u'sign', u'jason', u'smith'] [u'chemic', u'spill', u'scare', u'fals', u'alarm'] [u'child', u'cyber', u'porn', u'hard', u'stop', u'chief'] [u'claim', u'land', u'shortag', u'hurt', u'rental'] [u'claim', u'church', u'member', u'decis'] [u'colleg', u'rubberi', u'condom', u'princip'] [u'commend', u'offic', u'stab', u'arrest'] [u'congo', u'rebel', u'minist', u'refus', u'oath', u'offic'] [u'question', u'east', u'survey', u'result'] [u'coria', u'crush', u'ferrer', u'quarter', u'final', u'spot'] [u'costello', u'handl', u'accc', u'appoint', u'bad'] [u'council', u'fund', u'divert', u'press', u'need'] [u'council', u'tackl', u'tree', u'pest'] [u'court', u'ask', u'ruddock', u'home', u'protest'] [u'court', u'clear', u'ruddock', u'home', u'protest'] [u'court', u'overturn', u'fine', u'bankruptci', u'decis'] [u'credit', u'card', u'skim', u'cost', u'bank', u'million'] [u'critic', u'bambi', u'hunt'] [u'vow', u'pressur', u'govt', u'telstra'] [u'darwin', u'nativ', u'titl', u'claim', u'hear', u'delv'] [u'decis', u'bryant', u'charg', u'announc', u'friday'] [u'delay', u'ferri', u'servic', u'revamp'] [u'doubt', u'minist', u'ordain'] [u'dragon', u'woe', u'mount', u'ryle', u'cop', u'season', u'end'] [u'dutch', u'polit', u'assassin', u'appeal', u'reject'] [u'marin', u'wont', u'fight', u'extradit'] [u'expert', u'predict', u'gloomier', u'econom', u'outlook'] [u'explan', u'offer', u'dental', u'surgeri', u'woe'] [u'famili', u'breach', u'lifetim'] [u'famili', u'narrowli', u'escap', u'hous', u'blaze'] [u'farmer', u'group', u'fear', u'wind'] [u'mice', u'lazi', u'like'] [u'probe', u'iraq', u'niger', u'uranium', u'claim'] [u'fergi', u'meet', u'presid', u'ronaldinho'] [u'figur', u'highlight', u'kimberley', u'tourism', u'benefit'] [u'figur', u'highlight', u'tourism', u'benefit'] [u'fiji', u'accept', u'court', u'rule'] [u'fischer', u'suggest', u'concord'] [u'fisichella', u'talk', u'sauber'] [u'fund', u'disput', u'put', u'cloud', u'job'] [u'garcia', u'let', u'mcmanaman', u'arsenal', u'secret'] [u'decis', u'unlik', u'affect', u'north', u'west'] [u'minist', u'unlik', u'ordain'] [u'genet', u'link', u'depress'] [u'gold', u'plan', u'promis', u'benefit'] [u'govt', u'appoint', u'colin', u'thatcher', u'airc'] [u'govt', u'consult', u'indigen', u'communiti'] [u'group', u'confid', u'pipelin', u'viabl'] [u'hand', u'fingleton'] [u'histori', u'smile', u'iraq', u'blair'] [u'holden', u'take', u'spot', u'practic', u'session'] [u'howard', u'play', u'korean', u'gunfir'] [u'howard', u'urg', u'state', u'babi', u'compo', u'claim'] [u'injuri', u'tiger', u'desper', u'snap', u'lose', u'streak'] [u'iran', u'complet', u'probe', u'journalist', u'death'] [u'irish', u'winger', u'duff', u'lock', u'chelsea', u'talk'] [u'irrig', u'financi', u'break'] [u'irrig', u'urg', u'seek', u'farm', u'help'] [u'islam', u'extremist', u'blame', u'dagestan', u'blast'] [u'deja', u'emmi', u'favourit', u'domin'] [u'jacobson', u'stay', u'bogey', u'free', u'sandwich'] [u'escape', u'link'] [u'journalist', u'stand', u'trial', u'time', u'aceh'] [u'kalli', u'miss', u'test'] [u'kanga', u'lose', u'point', u'coach', u'appoint'] [u'kemp', u'launch', u'region', u'marin', u'plan'] [u'korea', u'grab', u'lpga', u'lead', u'bind', u'whaley'] [u'lamb', u'price', u'expect', u'remain', u'high'] [u'land', u'hand', u'monto', u'council'] [u'larsson', u'target', u'celtic', u'triumph', u'fulham'] [u'latham', u'say', u'state', u'bulli', u'accc', u'choic'] [u'lebron', u'jam', u'join', u'experi', u'olli'] [u'liberian', u'rebel', u'closer', u'capit', u'report'] [u'lifejacket', u'trial', u'victorian', u'fisher'] [u'limeston', u'get', u'condit', u'approv'] [u'magpi', u'tame', u'tiger'] [u'sentenc', u'life', u'heroin', u'murder'] [u'market', u'close', u'week'] [u'matilda', u'confid', u'ahead', u'world'] [u'matilda', u'receiv', u'world', u'draw'] [u'meet', u'heighten', u'rail', u'gaug', u'hop'] [u'surviv', u'blue', u'mountain', u'plane', u'crash'] [u'merger', u'plan', u'creat', u'uncertainti', u'hume', u'mayor'] [u'methan', u'propos', u'nose'] [u'mildura', u'child', u'abus', u'notif', u'figur', u'caus'] [u'minist', u'consid', u'futur', u'church', u'decis'] [u'minist', u'defend', u'tafe', u'train'] [u'ministeri', u'visit', u'bolster', u'har', u'club', u'hop'] [u'miss', u'girl', u'find', u'plush'] [u'mix', u'aussi', u'tour', u'wilson', u'abandon'] [u'mobil', u'technolog', u'present', u'legal', u'challeng'] [u'monti', u'azing', u'kelli', u'earli', u'open', u'exit'] [u'fund', u'seek', u'flood', u'plan'] [u'peopl', u'smuggler', u'govt', u'sight'] [u'mosley', u'determin', u'pressur', u'silverston'] [u'natur', u'heritag', u'trust', u'fund', u'announc'] [u'nelson', u'mandela', u'celebr', u'birthday'] [u'newcastl', u'outdo', u'penrith'] [u'york', u'polic', u'jail', u'subway', u'drummer'] [u'deal', u'accc', u'samuel'] [u'lead', u'miss', u'case'] [u'norman', u'reliv', u'open', u'glori', u'day'] [u'norri', u'lead', u'master'] [u'north', u'east', u'bushfir', u'grant', u'announc'] [u'govt', u'attack', u'textil', u'industri', u'tariff'] [u'govt', u'urg', u'redraw', u'boundari'] [u'govt', u'consid', u'option', u'boost', u'worker'] [u'feral', u'anim', u'popul'] [u'nurs', u'see', u'dispos'] [u'ogradi', u'angri', u'second', u'near', u'miss'] [u'firm', u'support', u'kyoto', u'measur', u'confer', u'tell'] [u'paedophil', u'face', u'sentenc', u'stagger', u'abus'] [u'panther', u'knight'] [u'paroo', u'remain', u'untam'] [u'safe', u'trade', u'talk', u'anderson', u'assur'] [u'perec', u'decid', u'week', u'world', u'championship'] [u'phelp', u'play', u'thorp', u'rivalri'] [u'philippin', u'polic', u'enact', u'escap'] [u'philippin', u'sign', u'ceasefir', u'guerrilla', u'group'] [u'plan', u'aim', u'boost', u'wheat', u'export'] [u'plane', u'rescu', u'strand', u'tome', u'tourist'] [u'plan', u'offer', u'rice', u'grower', u'diseas', u'protect'] [u'pursu', u'talk', u'north'] [u'polic', u'babi', u'dead', u'mother', u'bind', u'gag'] [u'polic', u'probe', u'random', u'shoot'] [u'port', u'best', u'william'] [u'prime', u'coverag', u'region', u'viewer'] [u'princip', u'welcom', u'secur', u'review'] [u'promot', u'cop', u'litter', u'fine'] [u'public', u'urg', u'contain', u'termin'] [u'govt', u'fund'] [u'top', u'palliat', u'care', u'rat'] [u'raaf', u'aircraft', u'join', u'search', u'miss', u'yacht'] [u'rail', u'line', u'reopen'] [u'railway', u'consid', u'insur', u'offer'] [u'experi', u'boost', u'cowboy', u'confid'] [u'research', u'consid', u'emiss', u'impact', u'rock'] [u'research', u'focus', u'patient', u'support'] [u'resign', u'doesnt', u'surpris', u'doctor', u'group'] [u'reverend', u'rethink', u'futur', u'minist'] [u'road', u'servic', u'truce'] [u'rubin', u'run', u'rescu'] [u'rule', u'engag', u'solomon', u'forc'] [u'rural', u'men', u'health', u'urgent', u'prioriti', u'presid'] [u'russian', u'wed', u'world'] [u'rusti', u'australia', u'darwin'] [u'saff', u'back', u'recommend'] [u'govt', u'announc', u'region', u'magistr'] [u'sailor', u'urg', u'think', u'care', u'japan'] [u'samuel', u'vow', u'follow', u'fel', u'lead'] [u'sapphir', u'lose', u'brazil'] [u'scientist', u'stumbl', u'giant', u'hole'] [u'shop', u'unit', u'reef', u'rezon', u'middl', u'grind'] [u'korea', u'prais', u'convict'] [u'spaniard', u'regain', u'lead', u'admir', u'go'] [u'stage', u'solomon', u'intervent'] [u'steadi', u'growth', u'townsvill'] [u'stosur', u'join', u'molik', u'singl', u'draw'] [u'strong', u'quak', u'rock', u'north', u'taiwan'] [u'struggl', u'davi', u'rule', u'wale', u'squad'] [u'support', u'revamp', u'region', u'rebat', u'scheme'] [u'surgeri', u'postpon', u'doctor', u'seek', u'rise'] [u'suspect', u'sex', u'sourc', u'miss'] [u'suspect', u'taliban', u'attack', u'kill', u'afghan', u'soldier'] [u'teen', u'speedster', u'lose', u'licenc'] [u'stop', u'welfar', u'scam', u'vanston'] [u'toll', u'street', u'market', u'crash'] [u'actor', u'highest', u'pay', u'beresford'] [u'tough', u'time', u'ahead', u'bayern', u'say', u'beckenbau'] [u'trescowthick', u'face', u'corpor', u'charg'] [u'troop', u'leav', u'solomon', u'monday'] [u'tuqiri', u'strain', u'hamstr'] [u'kill', u'wwii', u'bomb', u'explod', u'austria'] [u'walk', u'plane', u'crash'] [u'union', u'govt', u'action', u'factori', u'lockout'] [u'uni', u'hand', u'hard', u'drive', u'piraci', u'case'] [u'hous', u'vote', u'block', u'militari', u'fund', u'indonesia'] [u'releas', u'pakistani', u'guantanamo'] [u'senat', u'fast', u'food', u'lawsuit'] [u'fight', u'aussi', u'spot'] [u'vandal', u'spark', u'limit', u'reserv', u'access'] [u'vietnam', u'presid', u'overrul', u'sydney', u'woman', u'death'] [u'get', u'smallest', u'slice', u'govt', u'radiotherapi'] [u'govt', u'claim', u'secret', u'privatis', u'agenda'] [u'lib', u'deni', u'debt', u'problem'] [u'wall', u'street', u'accentu', u'negat'] [u'premier', u'chanc', u'timber', u'worker', u'anger'] [u'war', u'faction', u'hinder', u'solomon', u'amnesti'] [u'water', u'polo', u'world', u'champ', u'australia', u'beat', u'canada'] [u'weather', u'hamper', u'hazard', u'reduct', u'attempt'] [u'weather', u'hamper', u'rescu'] [u'pgas', u'best', u'away', u'loweri', u'play'] [u'wilson', u'year', u'say', u'minardi', u'boss'] [u'wolfowitz', u'baghdad', u'mysteri', u'visit'] [u'woman', u'die', u'crash'] [u'woman', u'face', u'charg', u'jewelleri', u'theft'] [u'woodsid', u'worker', u'defi', u'rule', u'strike'] [u'woolcomb', u'firm', u'cut', u'product'] [u'workplac', u'fit', u'program', u'practic'] [u'worst', u'paedophil', u'sentenc', u'delay'] [u'look', u'chines', u'gold', u'rush', u'dedieu', u'claim'] [u'yacht', u'race', u'plan', u'highlight', u'marina', u'crowd'] [u'accept', u'samuel', u'appoint'] [u'age', u'care', u'delay', u'fund', u'jeopardi'] [u'airport', u'rail', u'passeng', u'number', u'increas'] [u'black', u'springbok', u'resum', u'hostil'] [u'anaesthesia', u'link', u'onset', u'dementia'] [u'annan', u'call', u'peac', u'iraq'] [u'anonym', u'hollywood', u'actor', u'bogus'] [u'associ', u'claim', u'nurs', u'home', u'fund', u'crisi'] [u'aust', u'franc', u'launch', u'joint', u'aid', u'fight', u'pacif'] [u'australia', u'provid', u'intellig'] [u'bat', u'share', u'open', u'lead', u'york'] [u'blair', u'sadden', u'death', u'public', u'servant'] [u'blatter', u'welcom', u'lowi', u'appoint'] [u'bodi', u'miss', u'blair', u'advis', u'polic'] [u'bryant', u'charg', u'sexual', u'assault'] [u'canada', u'plan', u'sweep', u'safeguard'] [u'plough', u'hous'] [u'church', u'send', u'letter', u'explain', u'minist'] [u'clifford', u'group', u'chief', u'face', u'trial'] [u'coria', u'tear', u'youzhni', u'apart', u'stuttgart', u'stunner'] [u'crow', u'hard', u'injuri'] [u'diplomat', u'tip', u'forc', u'leader', u'solomon'] [u'downer', u'confid', u'iraq', u'wmds', u'turn'] [u'wood', u'loom', u'love'] [u'back', u'farmer', u'choic', u'crop'] [u'europ', u'move', u'plug', u'scientif', u'brain', u'drain'] [u'europ', u'favourit', u'pastim', u'stay', u'home'] [u'fear', u'compani', u'pull', u'tasmania'] [u'caus', u'damag', u'perth', u'high', u'school'] [u'damag', u'downey', u'build'] [u'firefight', u'battl', u'sydney', u'stadium', u'blaze'] [u'flash', u'flood', u'sweep', u'venezuela', u'highway'] [u'german', u'film', u'crew', u'captur', u'offer'] [u'gough', u'give', u'england', u'test', u'recal'] [u'govt', u'rule', u'bring', u'hick', u'home'] [u'govt', u'search', u'toxic', u'wast', u'sit'] [u'make', u'attempt', u'lpga', u'titl'] [u'hawk', u'dee'] [u'hawthorn', u'final', u'hop', u'aliv'] [u'hewett', u'replac', u'injur', u'hoeft'] [u'hick', u'trial', u'hold'] [u'howard', u'turn', u'attent', u'trade'] [u'hydrogen', u'car', u'need', u'expert'] [u'indonesia', u'convict', u'soldier', u'rape', u'aceh'] [u'integr', u'commission', u'unnecessari', u'speaker'] [u'iran', u'sampl', u'enrich', u'uranium', u'diplomat'] [u'israel', u'releas', u'palestinian', u'milit'] [u'job', u'risk', u'courier', u'go'] [u'jone', u'track', u'babi', u'birth'] [u'journalist', u'resign', u'fake', u'iraq', u'report'] [u'brit', u'advis', u'iraq', u'report', u'dead'] [u'lappin', u'join', u'akermani', u'sidelin', u'essendon'] [u'lehmann', u'waugh', u'lead', u'australian', u'charg'] [u'liberian', u'rebel', u'push', u'capit', u'report'] [u'liberian', u'rebel', u'bridg'] [u'lone', u'yachtsman', u'coast'] [u'lone', u'yachtsman', u'say', u'merchant', u'ship'] [u'love', u'break', u'british', u'open'] [u'crush'] [u'dead', u'collis', u'truck'] [u'court', u'discoveri', u'largest', u'ecstaci'] [u'men', u'world', u'championship', u'prospect'] [u'microsoft', u'drive', u'wall', u'street', u'higher'] [u'miss', u'teenag'] [u'molik', u'level', u'colombia'] [u'morocco', u'pakistan', u'sign', u'accord', u'moder', u'islam'] [u'netbal', u'cruis', u'semi', u'final'] [u'privaci', u'risk', u'piraci', u'probe'] [u'north', u'korea', u'pose', u'nuclear', u'threat'] [u'firefight', u'contain', u'stadium', u'blaze'] [u'rail', u'employe', u'face', u'tougher', u'medic'] [u'industri', u'welcom', u'ocean', u'plan'] [u'pussi', u'hunt', u'cater', u'famili'] [u'polic', u'charg', u'mother', u'murder', u'week'] [u'polic', u'commission', u'tri', u'establish', u'order'] [u'polit', u'frequent', u'flier', u'perk', u'spotlight'] [u'power', u'thrash', u'eagl', u'bomber', u'beat', u'lion'] [u'princ', u'sign', u'tiger'] [u'protest', u'target', u'ruddock', u'hous'] [u'polic', u'charg', u'biki', u'raid'] [u'racist', u'taunt', u'lazio', u'chelsea', u'friend'] [u'raider', u'escap', u'tiger'] [u'realiti', u'track', u'olymp', u'dream'] [u'recruit', u'begin', u'iraqi', u'armi'] [u'repeat', u'robredo', u'volandri'] [u'roger', u'best', u'aussi'] [u'ruddock', u'protest', u'tast', u'carr'] [u'russian', u'synchronis', u'duet', u'world', u'titl'] [u'doctor', u'maintain', u'elect', u'surgeri'] [u'schumach', u'put', u'ferrari', u'practic'] [u'scientist', u'drill', u'cap'] [u'shoot', u'fire', u'polic', u'windscreen'] [u'hurt', u'indonesian', u'grenad', u'accid'] [u'soil', u'scientist', u'pleas', u'forum', u'result'] [u'solomon', u'refuge', u'hope', u'forc', u'target', u'sataan'] [u'korean', u'defenc', u'ministri', u'releas', u'report'] [u'swan', u'belt', u'blue'] [u'tasmanian', u'grower', u'fight', u'appl', u'import'] [u'thorp', u'doubt', u'swim', u'champ', u'drug', u'free'] [u'thorp', u'give', u'chanc', u'creat', u'histori'] [u'thousand', u'liberian', u'flee', u'threat', u'rebel', u'attack'] [u'protest', u'arrest', u'outsid', u'ruddock', u'hous'] [u'tourki', u'seventh', u'platform'] [u'tour', u'oper', u'inform', u'kakadu', u'access'] [u'town', u'westburi', u'join', u'rail', u'line'] [u'boy', u'hospit', u'attack'] [u'ullrich', u'blitz', u'time', u'trail'] [u'unit', u'church', u'call', u'hick', u'extradit'] [u'ask', u'cuba', u'stop', u'jam', u'broadcast'] [u'believ', u'plan', u'stop', u'iraqi', u'chao'] [u'soldier', u'kill', u'iraqi', u'town', u'fallujah'] [u'solid', u'kill', u'iraq'] [u'hold', u'guantanamo', u'trial'] [u'uranium', u'link', u'despit', u'dubious', u'report'] [u'nistelrooy', u'say', u'fan', u'ferguson'] [u'vessel', u'sight', u'rais', u'searcher', u'hop'] [u'rainfal', u'tip', u'declin'] [u'warrior', u'sink', u'shark', u'dragon', u'overcom', u'cowboy'] [u'weapon', u'expert', u'take', u'life', u'polic'] [u'weather', u'prevent', u'landslid', u'rescu'] [u'white', u'hous', u'releas', u'document', u'iraq'] [u'women', u'world', u'championship', u'prospect'] [u'kill', u'serious', u'hurt', u'highway', u'crash'] [u'million', u'displac', u'flood', u'india'] [u'age', u'care', u'sector', u'critic', u'govt', u'fund'] [u'black', u'annihil', u'springbok'] [u'silent', u'aborigin', u'issu', u'spokesman'] [u'ambros', u'aim', u'number'] [u'arafat', u'interven', u'releas', u'kidnap', u'offici'] [u'offer', u'return', u'help', u'bushfir', u'victim'] [u'atsic', u'commission', u'resign', u'abalon', u'charg'] [u'aussi', u'fairfax', u'compet', u'alaska', u'world'] [u'aussi', u'freeman', u'win', u'world', u'archeri', u'championship'] [u'aussi', u'score', u'bangladesh'] [u'australia', u'beat', u'colombia'] [u'australia', u'semi', u'thank', u'barbado'] [u'australian', u'troop', u'readi', u'solomon', u'deploy'] [u'australia', u'overcom', u'sunshin', u'girl'] [u'australia', u'face', u'netbal', u'world', u'titl'] [u'barrichello', u'snatch', u'british', u'pole'] [u'say', u'kelli', u'sourc', u'intellig'] [u'belgium', u'verg', u'elimin', u'holder', u'slovakia'] [u'bergkamp', u'sign', u'arsenal', u'deal'] [u'blair', u'arriv', u'south', u'korea'] [u'blair', u'stay', u'firm', u'say', u'scientist', u'mole'] [u'blair', u'weapon', u'expert', u'death'] [u'blair', u'urg', u'japan', u'support', u'iraq'] [u'bomb', u'offic', u'nice', u'injur'] [u'british', u'govt', u'announc', u'independ', u'inquiri'] [u'bronco', u'distanc', u'golden', u'victori'] [u'brosnan', u'bowl', u'jam', u'bond'] [u'bulldog', u'freo', u'saint', u'thriller'] [u'canadian', u'woman', u'die', u'sar'] [u'china', u'roll', u'cliff', u'peopl', u'kill'] [u'church', u'seek', u'quell', u'concern', u'minist'] [u'close', u'dementia', u'unit', u'ridicul', u'oppn', u'say'] [u'coria', u'storm', u'stuttgart', u'final'] [u'cuba', u'deni', u'jam', u'broadcast', u'iran'] [u'dem', u'slam', u'govt', u'stanc', u'hick'] [u'doctor', u'demand', u'govt', u'drop', u'levi'] [u'downer', u'defend', u'solomon', u'coordin', u'appoint'] [u'driver', u'kill', u'attack', u'vehicl', u'iraq'] [u'elect', u'strategi', u'leak', u'contriv', u'beatti', u'oppn'] [u'emus', u'overpow', u'croatia', u'place', u'final'] [u'evid', u'suggest', u'second', u'north', u'korea', u'nuclear', u'site'] [u'expert', u'debat', u'limit', u'age'] [u'fear', u'teacher', u'shortfal', u'continu'] [u'fina', u'defend', u'anti', u'dope', u'program'] [u'kill', u'woman', u'retir', u'villag'] [u'ugandan', u'dictat', u'coma', u'report'] [u'fourteen', u'kill', u'kenya', u'plane', u'crash'] [u'gardin', u'cousin', u'fine', u'worsfold'] [u'gehrig', u'spur', u'saint', u'victori', u'roo'] [u'glasswork', u'meet', u'factori', u'disput', u'continu'] [u'helm', u'claim', u'silver', u'australia'] [u'howard', u'wrap', u'asian', u'tour'] [u'indonesia', u'releas', u'leader'] [u'ingal', u'take', u'victori', u'ambros', u'penalis'] [u'iraqi', u'shepherd', u'sue', u'rumsfeld', u'frank'] [u'iraqi', u'shiit', u'stage', u'mass', u'anti', u'protest'] [u'iraqi', u'fight', u'alongsid', u'forc', u'report'] [u'israel', u'rang', u'iranian', u'missil', u'ayatollah'] [u'isra', u'palestinian', u'leader', u'meet', u'talk'] [u'jail', u'british', u'author', u'archer', u'free'] [u'japan', u'beat', u'sweden', u'join', u'world', u'group'] [u'job', u'risk', u'administr', u'appoint', u'manag'] [u'kennedi', u'boxer', u'bring', u'auction'] [u'kewel', u'await', u'result', u'scan', u'injur', u'ankl'] [u'kewel', u'injuri', u'cloud'] [u'lonard', u'loom', u'british', u'open'] [u'loweri', u'seiz', u'stroke', u'lead'] [u'mallon', u'snare', u'share', u'appl', u'lead'] [u'mason', u'win', u'bench', u'spot', u'kangaroo'] [u'minist', u'play', u'problem'] [u'reject', u'suggest', u'hick', u'return'] [u'mugab', u'threaten', u'british', u'descend', u'report'] [u'mutola', u'averbukh', u'produc', u'year', u'best', u'perform'] [u'build', u'law', u'come', u'effect'] [u'govt', u'unveil', u'spillway', u'warragamba'] [u'polic', u'probe', u'stab', u'outsid', u'parti'] [u'pacif', u'trade', u'stop', u'offici'] [u'palestinian', u'governor', u'kidnap', u'milit'] [u'pedestrian', u'condit', u'strike'] [u'photojournalist', u'serious', u'wound', u'liberia'] [u'pippen', u'return', u'chicago', u'bull', u'report'] [u'plan', u'save', u'michelangelo', u'david', u'ravag'] [u'pollock', u'strike', u'india'] [u'power', u'thrash', u'eagl', u'bomber', u'beat', u'lion'] [u'time', u'extend', u'world'] [u'rebel', u'thrust', u'heart', u'liberian', u'capit'] [u'research', u'reduc', u'redback', u'bite', u'pain'] [u'resid', u'flee', u'rebel', u'enter', u'monrovia'] [u'rhone', u'take', u'netbal'] [u'richmond', u'legend', u'barrat', u'suffer', u'heat', u'attack'] [u'ronaldinho', u'sign', u'barcelona'] [u'rule', u'australian', u'forc', u'solomon'] [u'scientif', u'research', u'microscop'] [u'scientist', u'close', u'hunt', u'tick', u'resist'] [u'search', u'sailor', u'spark', u'maritim', u'author', u'probe'] [u'spanish', u'star', u'zhivanevskaya', u'readi', u'coughlin'] [u'surg', u'number', u'australian', u'consult'] [u'thailand', u'ban', u'beef', u'import', u'canada', u'poland'] [u'thiev', u'newcastl', u'dino', u'bone'] [u'thorp', u'comfort', u'fastest', u'world', u'titl', u'defenc'] [u'truck', u'driver', u'charg', u'murder', u'fatal', u'crash'] [u'tutu', u'clinton', u'lead', u'star', u'mandela', u'birthday'] [u'soldier', u'kill', u'iraq'] [u'ullrich', u'close', u'armstrong'] [u'find', u'enrich', u'uranium', u'iran', u'report'] [u'say', u'convoy', u'attack', u'iraq'] [u'embassi', u'liberia', u'tell', u'rebel', u'halt'] [u'troop', u'detain', u'iranian', u'crew', u'iraq', u'report'] [u'vail', u'head', u'round', u'trade', u'talk'] [u'warn', u'allow', u'play', u'chariti', u'cricket'] [u'waugh', u'enter', u'test', u'histori', u'book'] [u'weapon', u'expert', u'day', u'intoler', u'famili'] [u'whale', u'free', u'shark', u'net'] [u'wizard', u'chief', u'support', u'negat', u'gear', u'review'] [u'woman', u'bash', u'home', u'invas'] [u'wood', u'face', u'foreign', u'territori', u'sandwich', u'victori'] [u'abandon', u'pet', u'face', u'bleak', u'futur'] [u'reject', u'alston', u'claim', u'bias'] [u'locomot', u'bind', u'west', u'coast'] [u'mazen', u'begin', u'flurri', u'diplomaci', u'egypt'] [u'examin', u'cost', u'water', u'bomber'] [u'actor', u'deep', u'shakespearean', u'drama'] [u'highlight', u'weed', u'woe'] [u'alleg', u'drug', u'maker', u'reappear', u'court', u'today'] [u'alston', u'complaint'] [u'alston', u'launch', u'broadband', u'network'] [u'hold', u'concern', u'tasmanian', u'bulk', u'bill'] [u'amrozi', u'verdict', u'date'] [u'anderson', u'hop', u'progress', u'tree', u'clear'] [u'armstrong', u'admit', u'battl', u'form'] [u'rid', u'wave', u'surf', u'cultur'] [u'see', u'modest', u'gain'] [u'atsic', u'rep', u'deliv', u'discuss', u'paper', u'respons'] [u'attempt', u'murder', u'charg', u'follow', u'shoot', u'spree'] [u'australia', u'sail', u'admir'] [u'avellino', u'launch', u'legal', u'action'] [u'ballina', u'traine', u'win', u'award'] [u'barcelona', u'want', u'say', u'ronaldinho'] [u'barrichello', u'claim', u'protest', u'mar', u'british'] [u'crowd', u'sheep', u'wool'] [u'weekend', u'bendigo', u'motel'] [u'biospher', u'plan', u'gain', u'support'] [u'boardwalk', u'build', u'twin', u'fall', u'gorg'] [u'break', u'hill', u'branch', u'odd', u'state', u'govt'] [u'break', u'hill', u'record', u'posit', u'tourist', u'figur'] [u'budget', u'deliv', u'kimberley', u'rat', u'rise'] [u'bushfir', u'victim', u'offer', u'leav', u'stay'] [u'campaign', u'stall', u'push'] [u'chechen', u'rebel', u'kill', u'russian', u'soldier', u'interfax'] [u'claim', u'govt', u'doesnt', u'coher', u'north', u'korea', u'polici'] [u'cobar', u'expect', u'reap', u'year'] [u'concern', u'forens', u'test', u'delay'] [u'concern', u'voic', u'geraldton', u'seagrass'] [u'coria', u'thrash', u'robredo', u'stuttgart', u'final'] [u'council', u'paus', u'death', u'mayor', u'deputi'] [u'council', u'debat', u'bequest'] [u'council', u'consid', u'merger', u'issu'] [u'council', u'talk'] [u'council', u'trial', u'landfil'] [u'countri', u'cockatoo', u'semi', u'final'] [u'court', u'hear', u'murder', u'victim', u'attack', u'sword'] [u'cousin', u'stick', u'eagl'] [u'cousin', u'take', u'stay', u'eagl'] [u'crawford', u'clear', u'injuri', u'scare'] [u'expect', u'continu', u'growth', u'hous', u'market'] [u'curti', u'jump', u'golf', u'rank'] [u'debat', u'rag', u'medic', u'centr', u'locat'] [u'democrat', u'pilbara', u'coast', u'secur', u'measur'] [u'democrat', u'deni', u'split', u'telstra'] [u'dental', u'wait', u'time', u'increas', u'area'] [u'disput', u'resolut', u'save', u'job', u'restor'] [u'doctor', u'dispos', u'instrument', u'studi'] [u'size', u'bird', u'face', u'dinosaur', u'skeleton', u'steal'] [u'foreshadow', u'budget', u'cut'] [u'driver', u'urg', u'rethink', u'road', u'safeti', u'effort'] [u'dubbo', u'back', u'treat', u'water', u'discharg'] [u'eat', u'pizza', u'cancer', u'risk', u'italian'] [u'emus', u'claim', u'basketbal', u'gold'] [u'environ', u'centr', u'get', u'global', u'reput'] [u'faldo', u'look', u'forward', u'ryder', u'select'] [u'famili', u'urg', u'quit', u'kewel', u'leed', u'chief'] [u'feder', u'polic', u'leav', u'solomon'] [u'ferguson', u'shrug', u'ronaldhino', u'snub'] [u'fish', u'industri', u'back', u'lifejacket', u'studi'] [u'local', u'enjoy', u'world', u'junior', u'basketbal'] [u'realtor', u'ban', u'year'] [u'forum', u'focus', u'sustain', u'timber', u'transport'] [u'forum', u'consid', u'drink', u'spike', u'concern'] [u'fund', u'increas', u'perth', u'burn', u'unit'] [u'fund', u'help', u'address', u'justic', u'issu'] [u'girl', u'injur', u'fall', u'thredbo', u'chairlift'] [u'golf', u'club', u'unlik', u'water', u'support'] [u'goondiwindi', u'hostel', u'close'] [u'gough', u'spur', u'critic'] [u'govt', u'expect', u'announc', u'biofuel', u'packag'] [u'govt', u'refus', u'fund', u'driver', u'rise'] [u'govt', u'relax', u'stanc', u'drug', u'reverend'] [u'group', u'reject', u'council', u'merger', u'plan'] [u'heat', u'kill', u'swelter', u'algeria', u'summer'] [u'hick', u'father', u'meet', u'lawyer'] [u'hick', u'request', u'risk', u'relat'] [u'historian', u'blast', u'govt', u'snub', u'enact'] [u'hobart', u'hospit', u'receiv', u'worth', u'equip'] [u'hoogi', u'signal', u'strong', u'challeng', u'thorp'] [u'hope', u'continu', u'servic'] [u'amin', u'critic', u'condit'] [u'imron', u'go', u'trial', u'bali', u'blast'] [u'independ', u'school', u'increas', u'fee'] [u'indigen', u'health', u'spotlight'] [u'inquiri', u'hold', u'territori', u'seat'] [u'investig', u'continu', u'alleg', u'collis'] [u'iran', u'nuclear', u'program', u'threaten', u'entir', u'world'] [u'iron', u'knock', u'south', u'africa'] [u'jeffrey', u'archer', u'free', u'jail'] [u'john', u'disappoint', u'overlook', u'knight'] [u'joint', u'custodi', u'arrang', u'question'] [u'journalist', u'depress', u'injuri', u'court', u'hear'] [u'judg', u'pledg', u'open', u'kelli', u'inquiri'] [u'kewel', u'liverpool', u'east', u'tour'] [u'laidley', u'urg', u'embrac', u'technolog'] [u'lauitiiti', u'face', u'high', u'tackl', u'charg'] [u'lawrenc', u'inquest', u'continu'] [u'leagu', u'board', u'probe', u'team', u'mate', u'punch'] [u'legal', u'argument', u'domin', u'hanson', u'fraud', u'trial'] [u'leppitsch', u'season', u'hang', u'balanc'] [u'local', u'repres', u'attend', u'farm', u'gather'] [u'lockyer', u'battl', u'ankl', u'injuri'] [u'accus', u'road', u'smash', u'murder', u'face', u'court'] [u'beat', u'rape', u'charg', u'appeal', u'call'] [u'charg', u'fatal', u'accid'] [u'escap', u'injuri', u'drive', u'shoot'] [u'face', u'court', u'arm', u'robberi', u'charg'] [u'critic', u'condit'] [u'shoot', u'dead', u'melbourn'] [u'sentenc', u'child', u'porn', u'charg'] [u'massu', u'thump', u'sluiter', u'claim', u'dutch', u'open'] [u'media', u'film', u'dolphin', u'export', u'detain'] [u'medicar', u'blame', u'tripl', u'tier', u'bill', u'process'] [u'meet', u'discuss', u'gold', u'mine', u'plan'] [u'minist', u'await', u'church', u'meet', u'decid', u'fate'] [u'minist', u'condemn', u'user', u'pay', u'health'] [u'minist', u'urg', u'power', u'age', u'care'] [u'rain', u'need', u'south', u'east', u'crop'] [u'mortar', u'shell', u'fall', u'near', u'embassi', u'monrovia'] [u'mother', u'face', u'court', u'babi', u'death'] [u'defend', u'wider', u'campaign'] [u'question', u'hospit', u'servic'] [u'push', u'water', u'restrict'] [u'murray', u'reflect', u'cowboy', u'loss'] [u'muslim', u'woman', u'fresh', u'kashmir'] [u'natwa'] [u'near', u'bomb', u'discov', u'vietnam'] [u'netbal', u'shoot', u'develop', u'plan'] [u'effort', u'tackl', u'calicivirus'] [u'evid', u'spark', u'leski', u'coroni', u'probe'] [u'gatton', u'bypass', u'section', u'promis', u'christma'] [u'nile', u'quit', u'unit', u'church'] [u'korea', u'call', u'negoti', u'hope'] [u'norfolk', u'island', u'worri', u'autonomi'] [u'northern', u'archer', u'target', u'world', u'titl'] [u'road', u'race', u'environment', u'friend'] [u'dead', u'injur', u'head', u'near', u'sussex', u'inlet'] [u'palestinian', u'kill', u'jenin'] [u'palestinian', u'look', u'break', u'peac', u'process'] [u'park', u'chief', u'expect', u'increas', u'self', u'drive'] [u'hear', u'pictur', u'domest', u'violenc'] [u'polic', u'investig', u'basketbal', u'offici', u'death'] [u'polic', u'plead', u'parti', u'organis', u'violent'] [u'polic', u'probe', u'mackay', u'shoot'] [u'polic', u'investig', u'como', u'handgun', u'theft'] [u'prime', u'news', u'servic', u'continu'] [u'privat', u'sector', u'take', u'age', u'care'] [u'protea', u'order', u'run', u'india'] [u'public', u'input', u'seek', u'aquif', u'plan'] [u'hop', u'strategi', u'boost', u'local', u'tourism'] [u'post', u'increas', u'ross', u'river', u'contract'] [u'question', u'rais', u'crop', u'quarantin'] [u'railway', u'plan', u'boost', u'iron', u'industri'] [u'rampant', u'belgian', u'semi', u'final'] [u'real', u'estat', u'industri', u'face', u'shake'] [u'rebel', u'open', u'second', u'monrovia', u'attack'] [u'region', u'area', u'bare', u'brunt'] [u'report', u'highlight', u'tough', u'region', u'year'] [u'riverland', u'volunt', u'happi'] [u'roadwork', u'fund', u'concern', u'air'] [u'robinson', u'charg', u'chang'] [u'robinson', u'face', u'fresh', u'crimin', u'charg'] [u'rockhampton', u'rainfal', u'declin'] [u'ronaldinho', u'scar'] [u'auto', u'compani', u'verg', u'industri', u'action'] [u'strike', u'threaten', u'adelaid'] [u'saddam', u'iraq', u'administr'] [u'govt', u'stamp', u'duti', u'decis', u'welcom', u'irrig'] [u'santo', u'expand', u'interest'] [u'school', u'drop', u'out', u'fine', u'thank'] [u'schooli', u'head', u'announc', u'week'] [u'school', u'park', u'blitz', u'begin'] [u'scienc', u'prove', u'organ', u'claim'] [u'scientist', u'build', u'self', u'suffici', u'space'] [u'search', u'continu', u'sourc', u'outbreak'] [u'second', u'chanc', u'candid', u'elect'] [u'secur', u'surround', u'export', u'solomon', u'dolphin'] [u'separatist', u'blame', u'bomb', u'corsica'] [u'shark', u'risk', u'humpback', u'remain'] [u'shire', u'give', u'thumb', u'merger'] [u'shire', u'push', u'fast', u'connect'] [u'silver', u'fern', u'break', u'australia', u'netbal', u'domin'] [u'silver', u'fern', u'australia', u'netbal', u'domin'] [u'silverston', u'launch', u'inquiri', u'track', u'invas'] [u'simul', u'take', u'place', u'near', u'darwin'] [u'soldier', u'kill', u'chechnya', u'grozni', u'bomb'] [u'small', u'busi', u'owner', u'work', u'longer', u'hour', u'survey'] [u'solomon', u'deploy', u'short', u'term', u'hill'] [u'solomon', u'deploy', u'underway'] [u'solomon', u'deploy', u'stretch', u'research'] [u'south', u'korea', u'claim', u'lpga', u'titl'] [u'space', u'shepherd', u'check', u'irish', u'flock'] [u'stadler', u'surpris', u'seven', u'year'] [u'straeuli', u'stand', u'firm', u'humili', u'loss'] [u'student', u'celebr', u'cultur'] [u'surgeon', u'offer', u'servic', u'time'] [u'sydney', u'airport', u'achiev', u'record', u'profit', u'surg'] [u'tassi', u'devil', u'notch'] [u'teen', u'jail', u'heroin', u'bust'] [u'test', u'star', u'cricket', u'tiwi', u'island'] [u'tiger', u'go', u'hungri'] [u'tourist', u'fli', u'adelaid', u'highway', u'crash'] [u'tourist', u'take', u'comfort', u'zone'] [u'tour', u'woe', u'continu', u'suffer', u'millar'] [u'trial', u'begin', u'internet', u'theft', u'case'] [u'tribun', u'list', u'grow'] [u'trio', u'gear', u'closest', u'tour', u'year'] [u'troop', u'north', u'queensland'] [u'tullamarin', u'report', u'passeng', u'increas'] [u'tuqiri', u'black', u'clash'] [u'unit', u'rule', u'swoop', u'duff'] [u'univers', u'appoint', u'leader'] [u'unknown', u'curti', u'find', u'life', u'chang', u'forev'] [u'send', u'special', u'forc', u'guard', u'embassi'] [u'soldier', u'iraqi', u'translat', u'kill', u'baghdad'] [u'govt', u'urg', u'revers', u'camp', u'decis'] [u'victorian', u'town', u'reward', u'cfas', u'latest', u'budget'] [u'viera', u'close', u'commit', u'arsena'] [u'virenqu', u'see', u'spot', u'cook', u'look', u'green'] [u'virenqu', u'sixth', u'king', u'mountain', u'crown'] [u'virgin', u'float', u'bring', u'intern', u'flight'] [u'volunt', u'unabl', u'handl', u'emerg', u'fesa'] [u'food', u'head', u'dubai', u'shop'] [u'lib', u'push', u'flag', u'burn'] [u'water', u'ban', u'loom', u'melbourn'] [u'waugh', u'give', u'test', u'thumb'] [u'wolfowitz', u'talk', u'iraqi', u'kurd'] [u'wooli', u'push', u'sale', u'billion'] [u'wooli', u'share', u'fall', u'despit', u'sale', u'increas'] [u'yalgoo', u'driver', u'advantag', u'cheaper', u'fuel'] [u'youth', u'council', u'gather', u'evid', u'curfew', u'challeng'] [u'kill', u'injur', u'earthquak', u'rock', u'china'] [u'arrest', u'saudi', u'terrorist', u'crackdown'] [u'kill', u'surg', u'violenc', u'indian', u'kashmir'] [u'aborigin', u'defend', u'fish', u'right'] [u'expect', u'long', u'presenc', u'solomon'] [u'airport', u'target', u'busi', u'passeng'] [u'alleg', u'murder', u'polic', u'victim', u'bodi', u'court'] [u'ancient', u'chines', u'citi', u'wall', u'collaps', u'dead'] [u'anderson', u'back', u'iraq', u'stanc'] [u'asian', u'nation', u'discuss', u'way', u'limit', u'drug', u'trade'] [u'associ', u'consid', u'legal', u'action', u'video'] [u'aussi', u'advanc', u'indianapoli'] [u'aussi', u'rest', u'ahead', u'final', u'mountain'] [u'aussi', u'smash', u'pool', u'world', u'record'] [u'aussi', u'women', u'water', u'polo', u'content'] [u'australia', u'eye', u'japan', u'beef', u'market', u'opportun'] [u'australia', u'water', u'polo', u'medal'] [u'aust', u'scientist', u'award', u'japanes', u'space', u'studi'] [u'bacon', u'say', u'crean', u'stay', u'reshuffl'] [u'bail', u'hear', u'underway', u'imprison', u'anwar'] [u'batter', u'armstrong', u'crash', u'extend', u'lead'] [u'bell', u'creditor', u'court', u'loom'] [u'brother', u'winner', u'tasmanian', u'drawcard', u'bacon'] [u'blair', u'arriv', u'hong', u'kong', u'stop', u'asia'] [u'blair', u'deni', u'authoris', u'name', u'dead', u'scientist'] [u'blair', u'regret', u'iraq'] [u'boat', u'theft', u'highlight', u'solomon', u'lawless'] [u'bowyer', u'sign', u'steal', u'bobbi'] [u'breaker', u'await', u'appeal', u'outcom'] [u'bus', u'stoni', u'point', u'frankston', u'train'] [u'busi', u'night', u'ahead', u'tribun'] [u'busi', u'time', u'mildura', u'firi'] [u'age', u'care', u'servic', u'review'] [u'credit', u'union', u'invest', u'boost'] [u'mall', u'revamp'] [u'atsic', u'commission', u'boost'] [u'canada', u'demand', u'answer', u'journalist', u'death'] [u'canadian', u'crime', u'profil', u'call', u'help', u'solv'] [u'canberra', u'properti', u'boom', u'begin', u'wane', u'develop'] [u'casa', u'head', u'step'] [u'caution', u'urg', u'free', u'trade', u'agreement'] [u'finalis', u'elura', u'sale'] [u'chamber', u'oppos', u'citi', u'hill', u'plan'] [u'cigarett', u'compani', u'comment', u'affidavit'] [u'claim', u'wind', u'farm', u'probe', u'late'] [u'coal', u'alli', u'profit', u'slump'] [u'corrupt', u'watchdog', u'examin', u'oldfield', u'issu'] [u'council', u'rais', u'brothel', u'site', u'concern'] [u'council', u'stock', u'rout', u'concern'] [u'council', u'seek', u'govt', u'help', u'water', u'woe'] [u'council', u'sign', u'biodivers', u'agreement'] [u'council', u'develop', u'reform', u'blueprint'] [u'council', u'slug', u'ratepay', u'rise'] [u'council', u'urg', u'relax', u'alfresco', u'polici'] [u'courier', u'compani', u'sue', u'defam'] [u'court', u'tell', u'bell', u'creditor', u'leav'] [u'cricket', u'share', u'skill', u'tiwi', u'island'] [u'curti', u'rocket', u'golf', u'rank'] [u'death', u'toll', u'rise', u'landslid', u'flood'] [u'defend', u'claim', u'unfit', u'plea', u'murder'] [u'doctor', u'transplant', u'lick'] [u'doctor', u'lift', u'work', u'ban', u'adelaid', u'hospit'] [u'doctor', u'offer', u'bulk', u'bill', u'patient', u'assur'] [u'doubt', u'bryant', u'olymp', u'futur'] [u'drought', u'decis', u'loom'] [u'duff', u'join', u'chelsea', u'revolut'] [u'worker', u'continu', u'strike', u'entitl'] [u'colombian', u'troop', u'polic', u'kill', u'rebel'] [u'injur', u'bomb', u'explod', u'spanish'] [u'ethanol', u'industri', u'get'] [u'extern', u'review', u'coverag', u'need', u'howard'] [u'farmer', u'like', u'discuss', u'murray', u'condit'] [u'farmer', u'receiv', u'pass', u'environment', u'perform'] [u'farmer', u'discuss', u'crop'] [u'fear', u'hotter', u'weather', u'hurt', u'rainforest', u'speci'] [u'govt', u'consid', u'ethanol', u'push'] [u'feedlot', u'object', u'send', u'govt'] [u'forc', u'evacu', u'backpack', u'hostel'] [u'fishermen', u'ask', u'haul', u'squid', u'monitor'] [u'fisher', u'hope', u'green', u'zone', u'compromis'] [u'footbal', u'assault', u'trial', u'move', u'bunburi'] [u'forest', u'industri', u'boss', u'retract', u'styx', u'valley'] [u'king', u'bros', u'penthous', u'sale'] [u'prepar', u'home'] [u'frank', u'lowi', u'media', u'confer'] [u'gbrmpa', u'reject', u'boati', u'fisher', u'claim'] [u'glass', u'worker', u'walk'] [u'green', u'lose', u'busi', u'laundromat', u'tell'] [u'govt', u'halv', u'timor', u'troop', u'break'] [u'group', u'continu', u'woodchip', u'protest'] [u'hamilton', u'gestur', u'help', u'armstrong', u'victori'] [u'harbi', u'william', u'remain', u'adelaid'] [u'hegarti', u'complet', u'kangaroo', u'train', u'session'] [u'hemingway', u'look', u'alik', u'crown'] [u'heritag', u'trail', u'promis', u'tourism', u'boost'] [u'hick', u'train', u'weapon', u'surveil'] [u'hill', u'gold', u'histor', u'site'] [u'hoogi', u'quicker', u'thorp', u'twice'] [u'horsham', u'basketbal', u'high'] [u'human', u'submarin', u'sink', u'free', u'dive', u'record'] [u'hunt', u'underway', u'melbourn', u'gunman'] [u'hill', u'kansa', u'anymor'] [u'india', u'kashmir', u'armi', u'chief', u'injur', u'brigadi', u'dead'] [u'injur', u'venus', u'pull', u'california', u'tournament'] [u'injur', u'vogel', u'head', u'home', u'australia'] [u'inquiri', u'examin', u'represent'] [u'iraqi', u'capit', u'ring', u'mobil', u'phone'] [u'isra', u'armi', u'raid', u'rafah', u'home', u'palestinian'] [u'isra', u'firm', u'give', u'green', u'light', u'tender'] [u'kalli', u'test', u'england'] [u'kangaroo', u'hegarti', u'stand'] [u'kean', u'upbeat', u'year'] [u'keke', u'welcom', u'forc', u'deploy'] [u'lauitiiti', u'miss', u'test'] [u'laundromat', u'owner', u'urg', u'greener'] [u'leagu', u'great', u'propos', u'sport', u'program'] [u'lender', u'tip', u'continu', u'hous', u'boom'] [u'leppitsch', u'sidelin', u'week'] [u'lib', u'promis', u'lift', u'bunburi', u'profil'] [u'live', u'dolphin', u'leav', u'solomon', u'mexico'] [u'loos', u'booster', u'seat', u'boy', u'death', u'coron', u'tell'] [u'lord', u'mayor', u'defend', u'reject', u'adelaid', u'oval'] [u'major', u'briton', u'unhappi', u'blair', u'poll'] [u'major', u'victorian', u'favour', u'smoke'] [u'airlift', u'hospit', u'snowfield', u'accid'] [u'face', u'trial', u'yacht', u'death'] [u'lose', u'finger', u'hatchet', u'attack'] [u'face', u'child', u'porn', u'sentenc'] [u'melbourn', u'murder', u'victim', u'know', u'polic'] [u'millennium', u'train', u'report', u'blame', u'manufactur'] [u'mobil', u'spring', u'life', u'iraq'] [u'motlop', u'receiv', u'rise', u'star'] [u'fear', u'kakadu', u'hike'] [u'fear', u'kakadu', u'hike', u'tourist'] [u'want', u'local', u'port', u'author', u'chief'] [u'napthin', u'question', u'accommod', u'respons'] [u'natqld'] [u'nat', u'consid', u'cross', u'border', u'commiss'] [u'tongu', u'cancer', u'victim'] [u'sight', u'hous', u'boom'] [u'fund', u'catchment', u'centr'] [u'oldest', u'british', u'veteran', u'die'] [u'nation', u'regist', u'parti', u'offic', u'tell'] [u'opposit', u'voic', u'rock', u'lobster', u'plan'] [u'civilian', u'kill', u'liberia', u'minist'] [u'panorama', u'galleri', u'founder', u'guth', u'die'] [u'plan', u'scrap', u'hotel', u'redevelop'] [u'float', u'pacif', u'pool'] [u'forbid', u'fruit', u'confisc'] [u'polic', u'consid', u'mistak', u'ident', u'hatchet', u'attack'] [u'polic', u'dismiss', u'school', u'complaint'] [u'polic', u'probe', u'cairn', u'stab'] [u'polic', u'dump', u'vehicl', u'link', u'shoot'] [u'polic', u'seek', u'wit', u'fatal', u'belconnen', u'fall'] [u'polic', u'investig', u'recent', u'shoot', u'spree'] [u'primus', u'clear', u'play', u'lion'] [u'profit', u'warn', u'drag', u'wall', u'street'] [u'public', u'hospit', u'doctor', u'consid', u'lift', u'work'] [u'pyrene', u'punish', u'rider', u'climb', u'toll'] [u'quak', u'shake', u'report', u'damag'] [u'qualifi', u'support', u'offer', u'marin', u'plan'] [u'question', u'hang', u'water', u'plan'] [u'rabbitoh', u'sign', u'manu'] [u'cross', u'seek', u'support', u'blaze'] [u'restor', u'lancast', u'bomber', u'return', u'memori'] [u'rethink', u'urg', u'train', u'track', u'fund'] [u'review', u'millennium', u'train', u'project', u'releas'] [u'reward', u'offer', u'murder', u'lead'] [u'report', u'boost', u'govt', u'busi'] [u'road', u'crash', u'put', u'hospit'] [u'robinson', u'threaten', u'ruddock', u'legal', u'action'] [u'role', u'play', u'patient', u'seek', u'student', u'doctor'] [u'rubber', u'plantat', u'plan', u'promis', u'medic', u'benefit'] [u'saint', u'lawrenc', u'hurt', u'smash'] [u'sampra', u'close', u'retir', u'decis', u'report'] [u'santo', u'explor', u'kimberley', u'coast'] [u'saulnier', u'advanc', u'face', u'roddick', u'indianapoli'] [u'schumach', u'titl', u'hop', u'balanc'] [u'senat', u'group', u'tell', u'rais', u'medicar', u'levi'] [u'shake', u'chemotherapi', u'treatment'] [u'sing', u'reflect', u'kangaroo'] [u'sixer', u'boss', u'predict', u'player', u'need', u'time'] [u'sixer', u'boss', u'predict', u'player', u'need', u'time'] [u'sixer', u'hop', u'cash', u'asian', u'basketbal', u'boom'] [u'slater', u'close', u'seventh', u'world', u'titl'] [u'snowtown', u'prosecut', u'continu', u'close', u'address'] [u'snyman', u'scapegoat', u'struggl', u'bok', u'pick'] [u'socceroo', u'skoko', u'sign', u'turkish', u'club'] [u'solomon', u'milit', u'warn', u'accept', u'aust', u'forc'] [u'fishi', u'beat', u'alzheim'] [u'south', u'africa', u'accept', u'draw', u'india'] [u'starri', u'eye', u'cosmonaut', u'scrap', u'space', u'wed'] [u'trace', u'miss', u'father'] [u'kilda', u'lawrenc', u'hurt', u'smash'] [u'strike', u'worker', u'meet'] [u'student', u'meningococc', u'vaccin', u'access'] [u'support', u'draft', u'marin', u'plan'] [u'support', u'propos', u'burni', u'hotel'] [u'surgeon', u'separ', u'twin', u'babi'] [u'surgeri', u'begin', u'conjoin', u'twin', u'babi'] [u'suspect', u'mediterranean', u'fruit', u'fli'] [u'swim', u'coach', u'make', u'plea', u'pool', u'complex', u'access'] [u'talk', u'guantanamo', u'prison', u'begin'] [u'task', u'forc', u'focus', u'keep', u'schooli', u'week'] [u'tasmanian', u'poppi', u'crop', u'face'] [u'tasmanian', u'resign', u'clergi', u'unlik'] [u'teacher', u'industri', u'action', u'avoid'] [u'teacher', u'stop', u'work', u'disput'] [u'tech', u'rebound', u'lift', u'wall', u'street'] [u'tehran', u'deepen', u'probe', u'canadian', u'death'] [u'test', u'star', u'visit', u'tiwi', u'island'] [u'thorp', u'hoogi', u'resum', u'rivalri'] [u'tougher', u'water', u'restrict', u'loom'] [u'tribun', u'glenorchi', u'doctor', u'career'] [u'truss', u'review', u'rat', u'drought'] [u'isra', u'wound', u'anti', u'aircraft'] [u'ullrich', u'upbeat', u'stage'] [u'union', u'snub', u'basslink', u'grind', u'plan'] [u'foreign', u'climber', u'miss', u'andes'] [u'asian', u'group', u'protest', u'racist', u'realiti'] [u'soldier', u'kill', u'iraq', u'grenad', u'attack'] [u'govt', u'buy', u'worker', u'trinket'] [u'viera', u'close', u'commit', u'arsenal'] [u'farmer', u'support', u'call', u'rural', u'telco', u'boost'] [u'walker', u'switch', u'cod', u'sign', u'man'] [u'wall', u'street', u'drag'] [u'wasim', u'face', u'court', u'whiski'] [u'water', u'hazard', u'ahead', u'golf', u'club'] [u'welsh', u'jone', u'claim', u'world', u'record'] [u'whistleblow', u'express', u'concern', u'mccabe', u'case'] [u'wilson', u'join', u'webber', u'jaguar'] [u'winter', u'storm', u'wreak', u'havoc', u'wildlif'] [u'woman', u'plan', u'leav', u'murder', u'accus', u'court', u'hear'] [u'woman', u'bodi', u'near', u'melbourn'] [u'wooli', u'creat', u'job', u'victoria'] [u'work', u'poor', u'suffer', u'medicar', u'senat'] [u'worsfold', u'assault', u'trial', u'move', u'bunburi'] [u'youth', u'jobless', u'rate', u'high', u'richmond', u'tweed'] [u'youth', u'unemploy', u'rate', u'spark', u'concern'] [u'draft', u'joint', u'water', u'plan'] [u'staff', u'return', u'work', u'hour', u'protest'] [u'chief', u'pacif', u'money', u'launder'] [u'farewel', u'senior', u'exec'] [u'agforc', u'pleas', u'state', u'confer'] [u'north', u'review', u'tennant', u'creek', u'servic'] [u'aitken', u'confirm', u'place', u'tour', u'sunraysia'] [u'albani', u'jail', u'child', u'porn'] [u'black', u'drop', u'devin', u'marshal'] [u'alleg', u'rapist', u'free', u'bail'] [u'benefit', u'thorough', u'candid', u'select'] [u'angri', u'resid', u'concern', u'council', u'budget'] [u'anthoni', u'question', u'youth', u'jobless', u'figur'] [u'armstrong', u'eye', u'finish', u'line'] [u'aussi', u'banga', u'arriv', u'cairn'] [u'australian', u'kill', u'indonesian', u'robberi'] [u'aust', u'troop', u'polic', u'conting', u'leav'] [u'barichello', u'bust', u'british', u'trophi'] [u'bassett', u'cop', u'match'] [u'baxter', u'child', u'need', u'centacar'] [u'reveal', u'tape', u'dead', u'scientist'] [u'beatti', u'meet', u'farmer', u'clarifi', u'law'] [u'bell', u'trial', u'hear', u'bond', u'chest', u'plan'] [u'blunder', u'distanc', u'shire', u'resid'] [u'confirm', u'snowfal', u'bluff', u'knoll'] [u'bonlac', u'defend', u'milk', u'decis'] [u'british', u'open', u'champ', u'curti', u'withdraw', u'hartford'] [u'brunker', u'urg', u'power', u'station', u'upgrad'] [u'bryant', u'court', u'futur', u'unclear'] [u'budget', u'road', u'fund', u'boost'] [u'burgoyn', u'ban', u'week'] [u'burma', u'free'] [u'bush', u'aid', u'take', u'blame', u'iraq', u'uranium', u'flap'] [u'busi', u'leader', u'darwin', u'convent'] [u'strike', u'like', u'talk', u'break'] [u'cadet', u'suicid', u'prompt', u'defenc', u'chang'] [u'street', u'children'] [u'canberra', u'play', u'host', u'quantum', u'atom', u'research', u'centr'] [u'carey', u'expect', u'line', u'saint'] [u'cavali', u'sign', u'newbl'] [u'china', u'earthquak', u'kill', u'destroy', u'thousand'] [u'coal', u'alli', u'begin', u'cost', u'cut', u'measur'] [u'communiti', u'bank', u'fund', u'keep', u'grow'] [u'concern', u'aris', u'femal', u'smoke', u'rat'] [u'concern', u'unlik', u'delay', u'skate', u'park'] [u'corretja', u'send', u'pack'] [u'costa', u'freez', u'outsid', u'assist', u'transport', u'dept'] [u'council', u'appoint', u'nurs', u'follow', u'walkout'] [u'council', u'approv', u'fuel', u'conveyor'] [u'council', u'deliv', u'condol', u'motion', u'deceas'] [u'council', u'scrap', u'golf', u'cours', u'propos'] [u'council', u'consid', u'strong', u'opposit'] [u'council', u'contribut', u'indoor', u'pool', u'construct'] [u'council', u'worker', u'strike', u'rise'] [u'court', u'hear', u'guilti', u'plea', u'rivkin', u'jail', u'photo', u'case'] [u'court', u'tell', u'murder', u'accus', u'phone', u'stepfath'] [u'cowboy', u'player', u'return', u'bulldog', u'match'] [u'crean', u'outlin', u'educ', u'plan'] [u'defenc', u'target', u'potenti', u'militari', u'train', u'sit'] [u'diet', u'cut', u'cholesterol', u'drug', u'studi'] [u'doyl', u'slam', u'decis'] [u'driver', u'ban', u'seven', u'time', u'limit'] [u'drought', u'impact', u'worsen', u'murray', u'river'] [u'drug', u'report', u'find', u'disturb'] [u'outlook', u'adelaid'] [u'dust', u'storm', u'envelop', u'town', u'central', u'west'] [u'dutchmen', u'refus', u'bail', u'ecstasi', u'haul'] [u'dutch', u'midfield', u'bosvelt', u'manchest', u'citi'] [u'eagl', u'sign', u'judd'] [u'econom', u'indic', u'point', u'pick'] [u'worker', u'want', u'renew', u'offer'] [u'eiffel', u'tower', u'reopen'] [u'elder', u'consid', u'make', u'bonlac', u'offer'] [u'ethanol', u'assist', u'canegrow'] [u'exchang', u'set', u'sheep', u'lamb', u'record'] [u'expert', u'give', u'thumb', u'jadda', u'centr'] [u'faira', u'concern', u'chang', u'remain'] [u'feder', u'ethanol', u'benefit', u'manildra', u'plant'] [u'ferguson', u'say', u'unit', u'invigor', u'titl'] [u'fifth', u'titl', u'easi', u'ride', u'armstrong', u'discov'] [u'fijian', u'resist', u'pressur', u'reshap', u'govt'] [u'fingleton', u'fight', u'convict', u'high', u'court'] [u'fisheri', u'offic', u'revamp', u'begin'] [u'fli', u'underp', u'caus', u'highway', u'smash'] [u'focus', u'fix', u'home', u'warranti', u'insur'] [u'smash'] [u'free', u'trade', u'talk', u'art', u'leader', u'worri'] [u'frustrat', u'voic', u'leas', u'talk'] [u'fund', u'clarenc', u'fisher'] [u'funer', u'plan', u'iranian', u'canadian', u'journalist'] [u'govt', u'review', u'shore', u'ferri', u'servic'] [u'graham', u'seek', u'world', u'championship', u'medal'] [u'greenland', u'score', u'coup', u'santa', u'claus'] [u'greenpeac', u'oppos', u'shale', u'project'] [u'gympi', u'injur', u'iraq', u'fight'] [u'hatchet', u'victim', u'long', u'road', u'recoveri'] [u'hickmott', u'leoncelli', u'retir'] [u'hickmott', u'leoncelli'] [u'hick', u'habib', u'unlik', u'face', u'death', u'penalti'] [u'alert', u'typhoon', u'sweep'] [u'hodgkin', u'patient', u'risk', u'breast', u'cancer'] [u'homebuy', u'warn', u'outstand', u'rat'] [u'hong', u'kong', u'take', u'subvers', u'peopl'] [u'hoon', u'readi', u'evid', u'judici', u'inquiri'] [u'hope', u'continu', u'tourism', u'boost'] [u'hospit', u'indemn', u'insur', u'discuss'] [u'hussain', u'bid', u'exploit', u'south', u'african', u'misfortun'] [u'icrc', u'scrutinis', u'water', u'rise'] [u'idri', u'admit', u'deton', u'bali', u'bomb'] [u'illeg', u'immigr', u'deport'] [u'inform', u'protect', u'bounti'] [u'inland', u'rail', u'help', u'reviv', u'town', u'compton'] [u'investig', u'underway', u'hmas', u'melbourn'] [u'iraqi', u'news', u'boost', u'wall'] [u'irrig', u'trust', u'commenc', u'water', u'restrict'] [u'israel', u'rule', u'releas', u'milit', u'prison'] [u'italian', u'senat', u'vote', u'boost', u'berlusconi', u'media'] [u'keke', u'releas', u'missionari', u'hostag'] [u'kemp', u'meet', u'concern', u'boat', u'group'] [u'king', u'brother', u'face', u'court'] [u'launceston', u'ratepay', u'improv'] [u'lockyer', u'test'] [u'inflat', u'renew', u'rat', u'specul'] [u'mackay', u'prepar', u'servicemen', u'confer'] [u'magistr', u'blast', u'govt', u'inadequ', u'help'] [u'malaysian', u'court', u'reserv', u'anwar', u'bail', u'appeal', u'judgment'] [u'drop', u'trouser', u'royal', u'garden', u'parti'] [u'face', u'court', u'shot', u'fire', u'polic'] [u'manslaught', u'case', u'rais', u'domest', u'violenc'] [u'mayor', u'happi', u'discuss', u'resourc', u'share'] [u'mcewen', u'chase', u'green', u'pari'] [u'medicar', u'discuss', u'forum'] [u'order', u'stay', u'ladi', u'night'] [u'minardi', u'sign', u'italian', u'bruni', u'test', u'driver'] [u'minist', u'discuss', u'timber', u'resourc'] [u'minist', u'talk', u'perth', u'water'] [u'fund', u'fight', u'graffiti'] [u'mortar', u'liberia', u'capit', u'truce', u'rumbl'] [u'motiv', u'ullrich', u'promis', u'attack'] [u'moya', u'forc', u'work', u'hard', u'croatia', u'open'] [u'say', u'local', u'polic', u'benefit', u'solomon'] [u'museveni', u'say', u'amin', u'face', u'arrest', u'uganda'] [u'nasa', u'manag', u'differ', u'shuttl', u'damag'] [u'alleg', u'saddam', u'tape', u'air'] [u'contract', u'creat', u'worker', u'uncertainti'] [u'york', u'bid', u'farewel', u'salsa', u'queen'] [u'curfew', u'rockhampton'] [u'govt', u'sack', u'warringah', u'council'] [u'teacher', u'hold', u'stop', u'work', u'meet'] [u'film', u'maker', u'name', u'finalist', u'music', u'achiev'] [u'senat', u'suggest', u'shooter', u'stop', u'nation', u'park'] [u'urg', u'provid', u'better', u'servic', u'aborigin'] [u'olymp', u'champion', u'ngeni', u'kenyan', u'trial'] [u'pacif', u'forum', u'chief', u'warm', u'pool', u'govern'] [u'phelp', u'spur', u'australian', u'doubt'] [u'pilot', u'welcom', u'casa', u'restructur'] [u'pizzonia', u'turn', u'jaguar', u'offer'] [u'player', u'fin', u'suspend', u'punch', u'team', u'mate'] [u'call', u'action', u'indigen', u'domest', u'violenc'] [u'meet', u'indigen', u'leader', u'violenc'] [u'polic', u'expect', u'solomon', u'hour'] [u'polic', u'issu', u'warn', u'fake', u'replica', u'weapon'] [u'polic', u'look', u'trip', u'mushroom'] [u'polic', u'lead', u'child', u'disappear'] [u'polic', u'probe', u'tamworth', u'crime', u'wave'] [u'polic', u'reveal', u'clue', u'underworld', u'slay'] [u'polic', u'interview', u'girl', u'suspect', u'abduct'] [u'polic', u'object', u'solomon', u'oper'] [u'port', u'come', u'major', u'mine', u'project'] [u'primus', u'clear', u'bassett', u'cop', u'match'] [u'produc', u'urg', u'boost', u'sheep', u'number'] [u'properti', u'group', u'queri', u'project', u'delay'] [u'public', u'assist', u'seek', u'cattl', u'disappear'] [u'govt', u'lodg', u'transport', u'corridor'] [u'radcliff', u'doubt', u'world', u'championship'] [u'reef', u'face', u'regular', u'bleach', u'expert'] [u'rental', u'disput', u'block', u'nurs', u'home', u'progress'] [u'rental', u'shortag', u'lead', u'price', u'hike', u'agent'] [u'report', u'highlight', u'need', u'improv', u'cooper'] [u'resid', u'ask', u'comment', u'futur', u'coast', u'plan'] [u'resid', u'face', u'develop', u'decis', u'wait'] [u'resourc', u'pool', u'logic', u'solut', u'pacif'] [u'road', u'issu', u'play', u'wooli', u'decis'] [u'roddick', u'indianapoli', u'round'] [u'roman', u'legion', u'readi', u'march', u'manchest'] [u'ross', u'miss', u'east', u'clash'] [u'russia', u'ponder', u'space', u'tourism', u'deal'] [u'saddam', u'son', u'death', u'relief', u'iraqi', u'howard'] [u'safin', u'readi', u'comeback'] [u'sawmil', u'worker', u'benefit', u'upgrad'] [u'senat', u'probe', u'hear', u'hunter', u'doctor', u'woe'] [u'small', u'town', u'benefit', u'latest', u'tourism'] [u'solomon', u'court', u'welcom', u'intervent', u'forc'] [u'solomon', u'forc', u'hide'] [u'solomon', u'return', u'honiara', u'greet'] [u'council', u'happi', u'land', u'act'] [u'sorenstam', u'defend', u'evian', u'master', u'titl'] [u'stanhop', u'fear', u'bushfir', u'grant', u'backlash'] [u'stewart', u'attack', u'silverston', u'deadlin'] [u'stewart', u'quit'] [u'stewart', u'retir', u'south', u'africa', u'test', u'seri'] [u'streeter', u'break', u'free', u'dive', u'record'] [u'strike', u'continu', u'union', u'talk', u'break'] [u'support', u'seek', u'cancer', u'patient'] [u'suspend', u'policeman', u'seek', u'court', u'trial'] [u'tafe', u'teacher', u'oppos', u'increas', u'associ'] [u'household', u'incom', u'lowest', u'australia'] [u'teacher', u'stop', u'work', u'support', u'payris'] [u'teacher', u'continu', u'pressur'] [u'test', u'cricket', u'move', u'north'] [u'thorp', u'demand'] [u'thorp', u'win', u'showdown'] [u'time', u'run', u'develop', u'blueprint'] [u'trade', u'talk', u'foreshadow', u'common', u'market', u'pacif'] [u'trawler', u'prompt', u'concern', u'giant', u'crab', u'fisheri'] [u'turf', u'club', u'happi', u'nomin'] [u'australian', u'injur', u'iraq'] [u'charg', u'ecstasi', u'bust'] [u'unit', u'kick', u'tour', u'crush'] [u'australia', u'welcom', u'saddam', u'son', u'death'] [u'freelanc', u'report', u'trial', u'aceh'] [u'say', u'near', u'perfect', u'dental', u'saddam', u'dead'] [u'say', u'dental', u'visual', u'saddam', u'dead'] [u'soldier', u'kill', u'iraq', u'attack'] [u'vandal', u'think', u'attack'] [u'govt', u'reveal', u'synchrotron', u'final', u'design'] [u'virgin', u'accus', u'qanta', u'spi'] [u'vogel', u'keen', u'bike', u'olymp'] [u'vogel', u'keen', u'bike'] [u'wallabi', u'recal', u'smith'] [u'wall', u'street', u'mix', u'open'] [u'wall', u'street', u'steadi', u'aussi', u'market'] [u'opposit', u'focus', u'wheatbelt'] [u'wast', u'upset', u'council'] [u'well', u'oscar', u'pull', u'auction'] [u'woman', u'charg', u'babi', u'murder', u'grant', u'bail'] [u'woman', u'custodi', u'melvill', u'stab'] [u'world', u'champion', u'emus', u'swamp', u'recruit'] [u'yarrowlumla', u'shire', u'studi', u'bungendor', u'growth'] [u'youth', u'leader', u'lament', u'human', u'right', u'effort'] [u'youth', u'substanc', u'abus', u'address', u'video'] [u'zabaleta', u'advanc', u'austria'] [u'advic', u'expect', u'rivkin', u'medic', u'condit'] [u'delay', u'decis'] [u'age', u'care', u'centr', u'worker', u'strike'] [u'airlin', u'air', u'spi', u'concern'] [u'albani', u'host', u'secur', u'meet'] [u'alcohol', u'target', u'drunken', u'behaviour'] [u'alcohol', u'free', u'zone', u'jindabyn', u'agenda'] [u'alumina', u'record', u'percent', u'profit', u'jump'] [u'anderson', u'futur', u'nation', u'unclear'] [u'boss', u'call', u'social', u'spend'] [u'armstrong', u'relish', u'time', u'trial'] [u'atheist', u'priest', u'regain', u'faith'] [u'athen', u'olymp', u'countri', u'compet'] [u'atsic', u'speak', u'return', u'remain'] [u'atsic', u'unhappi', u'meet', u'snub'] [u'aussi', u'hold', u'bangladesh'] [u'australia', u'seek', u'better', u'access', u'market'] [u'aust', u'sar', u'case', u'confirm'] [u'bait', u'aim', u'address', u'wild', u'problem'] [u'ballarat', u'council', u'pass', u'rat', u'rise'] [u'barminco', u'defend', u'work', u'hour'] [u'belgian', u'hop', u'rise', u'eccleston', u'meet'] [u'bewar', u'copycat', u'protest', u'head', u'warn', u'circuit'] [u'achiev', u'record', u'iron', u'product'] [u'mitsubishi', u'announc', u'plan'] [u'opal', u'lightn', u'ridg'] [u'bleak', u'futur', u'tip', u'asian', u'speci'] [u'bodi', u'saddam', u'son', u'iraqi', u'council', u'member'] [u'brack', u'open', u'revamp', u'colleg'] [u'brazilian', u'photograph', u'shoot', u'dead', u'squatter', u'camp'] [u'build', u'compani', u'scrutini'] [u'louder', u'voic', u'indigen', u'famili', u'violenc'] [u'assess', u'chariti'] [u'canadian', u'polic', u'accus', u'kill', u'iranian'] [u'cancer', u'like', u'diseas', u'threaten', u'tassi', u'devil'] [u'capriati', u'battl', u'past', u'bartoli', u'california'] [u'christma', u'want', u'fin', u'rowdi', u'behaviour'] [u'church', u'consid', u'rise', u'insur', u'cost'] [u'circus', u'get', u'karratha', u'repriev'] [u'claim', u'saddam', u'son', u'recognis', u'photo'] [u'clark', u'respond', u'caus', u'letter'] [u'command', u'highlight', u'need', u'rememb', u'battl'] [u'communiti', u'ralli', u'brisban', u'home', u'invas', u'victim'] [u'compani', u'fin', u'crippl', u'worker'] [u'coron', u'clear', u'whyalla', u'pilot'] [u'coron', u'hand', u'crash', u'find'] [u'council', u'approv', u'pack', u'shed'] [u'council', u'general', u'manag', u'move'] [u'council', u'issu', u'warn', u'fund'] [u'council', u'speak', u'merger'] [u'council', u'urg', u'super', u'review'] [u'council', u'consid', u'airport', u'futur'] [u'council', u'wont', u'provid', u'rfds', u'fund'] [u'court', u'approv', u'forfeitur', u'applic'] [u'court', u'increas', u'sentenc', u'child', u'abus'] [u'court', u'tell', u'case', u'policeman', u'strong'] [u'crawford', u'give', u'minut'] [u'croc', u'draw', u'import', u'short', u'list'] [u'defenc', u'dept', u'ask', u'explain', u'treatment'] [u'deleg', u'gather', u'barramundiprawn', u'confer'] [u'della', u'bosca', u'challeng', u'declar', u'faith', u'staunton'] [u'detent', u'boss', u'say', u'staff', u'train', u'deal'] [u'diego', u'golden', u'goal', u'put', u'brazil', u'final'] [u'dollar', u'climb', u'inflat'] [u'downer', u'hail', u'hick', u'concess'] [u'downer', u'support', u'studi', u'asylum', u'seeker'] [u'draper', u'roll', u'rusedski'] [u'electrolux', u'worker', u'vote'] [u'emhma', u'albatrossem', u'send', u'chopper', u'solomon'] [u'england', u'sign', u'world', u'player', u'agreement'] [u'europ', u'set', u'sight', u'space', u'monopoli'] [u'factori', u'forc', u'evacu'] [u'famili', u'help', u'offer', u'autism', u'support'] [u'farmer', u'govt', u'guid', u'hand'] [u'farmer', u'group', u'back', u'idea', u'state'] [u'farmer', u'welcom', u'good', u'rain'] [u'ferrero', u'advanc', u'austria', u'costa', u'slump'] [u'figueroa', u'agre', u'year', u'deal', u'birmingham'] [u'flinder', u'enact', u'ship', u'arriv', u'sydney'] [u'forc', u'bring', u'hope', u'peac', u'solomon'] [u'arsenal', u'stalwart', u'winterburn', u'retir'] [u'rail', u'chief', u'admit', u'failur'] [u'serd', u'worker', u'face', u'fraud', u'trial'] [u'fund', u'announc', u'north', u'east', u'initi'] [u'fund', u'benefit', u'communiti', u'group'] [u'futur', u'silverston', u'grand', u'prix', u'doubt'] [u'giteau', u'stay', u'brumbi'] [u'god', u'banker', u'murder', u'mafia', u'inquiri'] [u'good', u'snow', u'fall', u'hotham'] [u'govt', u'guarante', u'small', u'airlin', u'piec', u'travel'] [u'govt', u'urg', u'plan', u'evacu', u'south', u'korea'] [u'grain', u'virus', u'stay'] [u'group', u'vow', u'reveng', u'death', u'saddam', u'son'] [u'hamilton', u'take', u'glori', u'armstrong', u'retain', u'yellow'] [u'harbi', u'william', u'back', u'avellino', u'court'] [u'heroin', u'overdos', u'rise', u'illawarra'] [u'hewitt', u'seed', u'fifth', u'open'] [u'hong', u'kong', u'brace', u'typhoon', u'imbudo'] [u'hope', u'resurrect', u'crime', u'prevent', u'strategi'] [u'horizon', u'prepar', u'kempsey', u'grafton', u'servic'] [u'hospit', u'worker', u'reject', u'offer'] [u'humanitarian', u'crisi', u'deepen', u'monrovia', u'battl'] [u'amin', u'coma', u'critic'] [u'india', u'look', u'sponsor', u'follow', u'world'] [u'indigen', u'compo', u'scheme', u'prove', u'slow', u'process'] [u'indonesia', u'aceh', u'exit', u'strategi', u'think', u'tank'] [u'injur', u'worker', u'make', u'good', u'recoveri', u'brother'] [u'inkster', u'ochoa', u'share', u'lead', u'evian', u'master'] [u'inspect', u'focus', u'waterway', u'health'] [u'intern', u'eye', u'darwin', u'prawn', u'farm'] [u'iraqi', u'council', u'pick', u'minist', u'week'] [u'iraqi', u'await', u'proof', u'hussein', u'son', u'death'] [u'jackson', u'shin', u'storm', u'liberti'] [u'jobless', u'centrelink', u'minist', u'court'] [u'job', u'kodak', u'announc', u'cut'] [u'john', u'fire', u'kiwi', u'clash'] [u'joint', u'forc', u'target', u'solomon', u'crimin', u'element'] [u'jone', u'refus', u'write', u'burk'] [u'kafelnikov', u'reach', u'round', u'indianapoli'] [u'keyhol', u'prostat', u'surgeri', u'high', u'demand'] [u'king', u'bros', u'group', u'like', u'sell'] [u'labor', u'welcom', u'death', u'penalti', u'hick'] [u'charg', u'camden', u'parti'] [u'charg', u'rape', u'tortur'] [u'critic', u'injur', u'sydney', u'blast'] [u'get', u'year', u'huge', u'cocain', u'haul'] [u'give', u'suspend', u'sentenc', u'assist', u'suicid'] [u'highlight', u'airport', u'secur', u'breach'] [u'question', u'death'] [u'overcom', u'celtic', u'season', u'match'] [u'market', u'climb', u'slight'] [u'medicar', u'inquiri', u'hear', u'hospit', u'overcrowd', u'woe'] [u'medicar', u'rebat', u'small'] [u'meet', u'eas', u'race', u'restructur', u'stanc'] [u'melbourn', u'lose', u'vice', u'chancellor'] [u'industri', u'air', u'educ', u'polici', u'concern'] [u'minichiello', u'confid', u'ahead', u'test'] [u'minist', u'amus', u'road', u'joke', u'offer'] [u'minist', u'order', u'probe', u'derwent', u'river', u'sewag'] [u'minist', u'report', u'progress', u'cultur', u'trade', u'tariff'] [u'mooney', u'seek', u'townsvill', u'invest'] [u'time', u'seek', u'reef', u'rezon', u'respons'] [u'mortar', u'round', u'shatter', u'liberian', u'truce', u'plan'] [u'rough', u'armi', u'trek'] [u'mysteri', u'surround', u'west', u'wyalong', u'death'] [u'nadal', u'cruis', u'croatia', u'open', u'quarter', u'final'] [u'nebo', u'shire', u'clean', u'trick'] [u'univers', u'rural', u'health', u'murwillumbah'] [u'nigerian', u'cholera', u'outbreak', u'kill'] [u'doubt', u'bodi', u'saddam', u'son', u'iraqi', u'council'] [u'norther', u'race', u'futur', u'doubt'] [u'sale', u'orson', u'well', u'oscar'] [u'servic', u'disrupt', u'ferri', u'run', u'aground'] [u'govt', u'know', u'menangl', u'bridg', u'faulti', u'opposit'] [u'nurs', u'push', u'better', u'care', u'level'] [u'player', u'affect', u'disput', u'mitchel'] [u'build', u'threat', u'state', u'rail'] [u'oppn', u'question', u'govt', u'sewerag', u'tunnel', u'blowout'] [u'opposit', u'condemn', u'busi', u'polic', u'station', u'downgrad'] [u'opposit', u'seek', u'answer', u'replac'] [u'pair', u'jail', u'transexu', u'murder'] [u'paul', u'mccartney', u'take'] [u'peacekeep', u'liberia', u'day'] [u'pentagon', u'plan', u'rotat', u'iraq', u'troop'] [u'perec', u'pull', u'world', u'championship'] [u'piraci', u'time', u'high', u'report'] [u'pizzonia', u'need', u'time', u'stewart'] [u'polic', u'chief', u'call', u'cooper'] [u'polic', u'claim', u'teen', u'admit', u'letterbox', u'blast'] [u'polic', u'continu', u'hous', u'blaze', u'probe'] [u'polic', u'fingerprint', u'norfolk', u'island', u'tourist'] [u'polic', u'probe', u'continu', u'abduct', u'claim'] [u'polic', u'truck', u'crash', u'victim'] [u'popov', u'serv', u'warn', u'hoogenband'] [u'port', u'curti', u'health', u'studi', u'defi', u'percept'] [u'potato', u'farmer', u'chipper', u'rain'] [u'potenti', u'marin', u'park', u'identifi'] [u'prison', u'issu', u'threaten', u'ceas'] [u'prostat', u'test', u'healthi', u'read', u'mark'] [u'raaf', u'join', u'nation', u'game'] [u'rain', u'boost', u'crop', u'hop'] [u'rain', u'bring', u'relief', u'parch', u'farm'] [u'rain', u'fall', u'victoria', u'malle'] [u'red', u'hop', u'return', u'sailor', u'invest'] [u'refineri', u'closur', u'affect', u'job', u'busi'] [u'river', u'bodi', u'consid', u'suspici'] [u'road', u'safeti', u'program', u'reflect', u'concern', u'eleph'] [u'robinson', u'forgeri', u'case', u'adjourn'] [u'robinson', u'face', u'charg'] [u'rotor', u'breakthrough', u'tini', u'scienc'] [u'erupt', u'filter', u'water'] [u'royal', u'underway', u'darwin'] [u'rubber', u'playground', u'surfac', u'examin'] [u'russian', u'cabbi', u'killer', u'arrest'] [u'govt', u'prepar', u'child', u'detent', u'challeng'] [u'govt', u'seek', u'info', u'doorstep', u'babi'] [u'seminar', u'boycott', u'blow', u'medicar', u'packag', u'oppn'] [u'school', u'challeng', u'order', u'music', u'trader'] [u'scientist', u'studi', u'ocean', u'current', u'space'] [u'sexual', u'predat', u'danger', u'releas'] [u'special', u'forc', u'continu', u'hunt', u'saddam'] [u'surgeon', u'boost', u'albani', u'health', u'servic'] [u'talk', u'consid', u'traffic', u'woe', u'near', u'ferri', u'termin'] [u'tamworth', u'region', u'endur', u'storm'] [u'credit', u'rat', u'improv'] [u'doctor', u'stop', u'work', u'insur', u'concern'] [u'teacher', u'udder', u'disgrac', u'parent'] [u'thorp', u'anchor', u'gold', u'australia'] [u'thorp', u'look', u'medal'] [u'thousand', u'flock', u'free', u'singleton', u'concert'] [u'tirana', u'seal', u'upset', u'dinamo', u'tbilisi'] [u'tourist', u'number'] [u'tourist', u'fingerprint', u'norfolk', u'murder'] [u'troop', u'grind', u'honiara'] [u'troop', u'polic', u'touch', u'solomon'] [u'tweed', u'shire', u'rejoin', u'noroc'] [u'apologis', u'courier', u'compani', u'comment'] [u'typhoon', u'imbudo', u'lash', u'south', u'china', u'coast'] [u'watchdog', u'probe', u'chelsea', u'takeov'] [u'union', u'protest', u'park'] [u'uniti', u'seek', u'bypass', u'rout'] [u'evacu', u'foreign', u'liberia'] [u'rule', u'death', u'penalti', u'hick'] [u'send', u'bomb', u'afghan', u'guerrilla'] [u'stock', u'open', u'higher', u'jobless', u'claim', u'figur'] [u'face', u'itali', u'women', u'waterpolo', u'final'] [u'releas', u'photo', u'dead', u'hussein', u'son'] [u'vice', u'chancellor', u'nervous', u'number', u'plan'] [u'nat', u'consid', u'post', u'elect', u'progress'] [u'virgin', u'accus', u'qanta', u'spi'] [u'dairi', u'good', u'bind', u'china'] [u'doesnt', u'want', u'chanc', u'take', u'free', u'trade'] [u'govt', u'defend', u'rent', u'deal'] [u'opposit', u'angri', u'road', u'delay'] [u'warringah', u'administr', u'say', u'merger', u'possibl'] [u'washington', u'press', u'iran', u'qaeda', u'member'] [u'washington', u'send', u'mix', u'signal', u'iraqi', u'foreign'] [u'water', u'supplier', u'defend', u'delay', u'spend'] [u'welford', u'speak', u'magistr', u'condit'] [u'condit', u'close', u'bush', u'road'] [u'whaley', u'spotlight', u'hartford', u'curti'] [u'woman', u'face', u'charg', u'stab'] [u'woman', u'question', u'stab'] [u'young', u'femal', u'footbal', u'attempt', u'overturn'] [u'million', u'grampian', u'cultur', u'tourism', u'centr'] [u'send', u'alston', u'complaint', u'extern', u'panel'] [u'aborigin', u'skeleton', u'year'] [u'enterpris', u'bargain', u'talk', u'breakdown'] [u'vote', u'year', u'term', u'propos'] [u'bushfir', u'inquiri', u'report', u'confront'] [u'implement', u'bushfir', u'report', u'recommend'] [u'agassi', u'lead', u'entri', u'open'] [u'alic', u'wooli', u'cheapest', u'groceri'] [u'alston', u'question', u'independ', u'review'] [u'amwu', u'member', u'strike'] [u'anderson', u'lament', u'test', u'ambush'] [u'ditch', u'plan', u'thai', u'militari', u'bank', u'invest'] [u'austoft', u'worker', u'await', u'offer', u'respons'] [u'australian', u'ordeal', u'toughen', u'bangladesh', u'latif'] [u'australian', u'secur', u'offic', u'guard', u'solomon'] [u'england'] [u'banger', u'build', u'competit', u'total'] [u'bangladesh', u'suffer', u'bat', u'collaps'] [u'bayer', u'delight', u'canola', u'crop', u'approv'] [u'beatti', u'call', u'tree', u'clear', u'meet'] [u'bennett', u'tip', u'tuqiri', u'return'] [u'biaggi', u'aim', u'beat', u'rossi', u'sachsenr', u'track'] [u'revamp', u'stockman', u'hall', u'fame'] [u'bjorn', u'exorcis', u'open', u'demon'] [u'bjorn', u'lead', u'irish', u'open'] [u'bomb', u'explod', u'outsid', u'spanish', u'court'] [u'brazil', u'scientist', u'mutat', u'breast'] [u'british', u'sprinter', u'shoot', u'world', u'trial'] [u'break', u'hill', u'water', u'spark', u'review'] [u'bryant', u'buy', u'wife', u'million', u'peac', u'offer', u'report'] [u'bureau', u'predict', u'rain', u'central'] [u'bushfir', u'prevent', u'plan', u'begin'] [u'bushfir', u'probe', u'head', u'buchan', u'omeo'] [u'call', u'drunken', u'debat', u'austrian', u'parliament'] [u'cambodian', u'prepar', u'elect'] [u'cheney', u'take', u'critic'] [u'citi', u'rubbish', u'wast', u'misconcept'] [u'civilian', u'kill', u'rebel', u'launch', u'embassi', u'attack'] [u'clijster', u'overwhelm'] [u'coke', u'coal', u'demand', u'spark', u'plan'] [u'communiti', u'centr', u'fund', u'spotlight'] [u'concern', u'remain', u'cave', u'access'] [u'coria', u'storm'] [u'council', u'approv', u'rat', u'rise'] [u'council', u'plan', u'water', u'reduct'] [u'council', u'reject', u'huge', u'rat', u'rise'] [u'council', u'seek', u'support', u'walker', u'worker'] [u'council', u'want', u'delay', u'live', u'murray', u'plan'] [u'cowboy', u'prepar', u'bulldog', u'clash'] [u'crawford', u'doubt', u'perth', u'hoodoo', u'clash'] [u'crean', u'reject', u'mine', u'industri', u'concern'] [u'cuban', u'drive', u'coast', u'guard', u'send'] [u'cyclist', u'arriv', u'dubbo', u'week', u'journey'] [u'dareton', u'resid', u'criticis', u'descript'] [u'delagrang', u'disqualfi', u'irish', u'open'] [u'demetriou', u'tight', u'lip', u'futur'] [u'diplomat', u'worsen', u'journalist', u'death'] [u'disney', u'sign', u'digit', u'movi', u'download', u'servic'] [u'doctor', u'want', u'earli', u'resolut', u'indemn', u'packag'] [u'downer', u'head', u'vietnam', u'diplomat', u'mileston'] [u'draper', u'indianapoli'] [u'employe', u'continu', u'picket'] [u'elliott', u'win', u'hold', u'manag'] [u'expert', u'armstrong', u'ullrich'] [u'fallout', u'foster', u'carer', u'crisi', u'continu'] [u'fear', u'diesel', u'spill', u'affect', u'river', u'torren'] [u'govt', u'spend', u'ethanol', u'industri'] [u'govt', u'urg', u'sensibl', u'drought', u'fund'] [u'ferrero', u'join', u'coria', u'quarter', u'final'] [u'fisheri', u'minist', u'outlin', u'aquacultur', u'support'] [u'court'] [u'dictat', u'condit', u'coma'] [u'postal', u'worker', u'win', u'discrimin', u'case'] [u'fund', u'announc', u'south', u'east', u'festiv'] [u'fund', u'boost', u'continu', u'crown', u'thorn', u'fight'] [u'gaza', u'militari', u'chief', u'surviv', u'assassin', u'attempt'] [u'nesta', u'want', u'stam', u'lazio', u'tell', u'milan'] [u'canola', u'decis', u'criticis', u'prematur'] [u'canola', u'decis', u'disappoint', u'minist'] [u'oppon', u'angri', u'canola', u'approv'] [u'gold', u'coast', u'extradit', u'melbourn'] [u'gonzalez', u'error', u'mexico', u'semi', u'final', u'victori'] [u'govt', u'famili', u'bali', u'bomb', u'anniversari'] [u'greenpeac', u'slam', u'canola', u'decis'] [u'group', u'air', u'frustrat', u'petrol', u'sniff', u'death'] [u'group', u'consid', u'nativ', u'titl', u'claim', u'option'] [u'haa', u'jacobson', u'lead', u'connecticut', u'whaley'] [u'hail', u'storm', u'kill', u'flatten', u'home', u'china'] [u'hanson', u'support', u'say', u'member', u'trick'] [u'hawk', u'shrug', u'final', u'setback', u'eagl', u'ponder'] [u'health', u'agreement', u'break', u'border'] [u'heavi', u'rain', u'bring', u'north', u'east', u'flood'] [u'holden', u'boss', u'step'] [u'hop', u'structur', u'bridg', u'traffic', u'woe'] [u'howard', u'deni', u'set', u'condit', u'go'] [u'immigr', u'dept', u'confirm', u'baxter', u'detaine', u'mahza'] [u'indigen', u'footbal', u'player', u'skill'] [u'insur', u'woe', u'delay', u'surgeri'] [u'iraqi', u'sceptic', u'graphic', u'photo'] [u'israel', u'restrict', u'access', u'holi', u'site'] [u'israel', u'withdraw', u'citi', u'free', u'hundr'] [u'israel', u'withdraw', u'citi', u'free'] [u'israel', u'urg', u'bold', u'approach', u'peac', u'plan'] [u'jaguar', u'seek', u'test', u'driver', u'pizzonia', u'refus'] [u'jobsearch', u'take', u'woman', u'receptionist', u'log'] [u'jockey', u'club', u'celebr', u'choisir', u'win'] [u'kalgoorli', u'polic', u'welcom', u'crime', u'stat'] [u'kangaroo', u'crush', u'kiwi'] [u'kean', u'tell', u'celtic', u'spend', u'spend', u'spend'] [u'kewel', u'resum', u'train'] [u'kill', u'palestinian', u'child', u'mishap', u'isra', u'armi'] [u'king', u'miller', u'team', u'deal', u'pacer'] [u'langer', u'hand', u'european', u'ryder', u'captainci'] [u'lazio', u'benfica', u'isra', u'haunt', u'chelsea'] [u'break', u'cairn'] [u'leicestershir', u'cancel', u'sehwag', u'contract'] [u'liberia', u'face', u'human', u'disast', u'battl', u'rage'] [u'liverpool', u'beat', u'thailand', u'rain', u'soak', u'friend'] [u'local', u'shoo', u'port'] [u'macgil', u'grill', u'banger'] [u'charg', u'attack', u'boy'] [u'face', u'court', u'parti', u'death'] [u'marin', u'anim', u'protect', u'welcom'] [u'mayn', u'bail', u'hospit'] [u'mayor', u'defend', u'saturday', u'morn', u'park', u'fee'] [u'meet', u'address', u'illeg', u'fish'] [u'merger', u'high', u'tumut', u'agenda'] [u'minist', u'attack', u'race', u'chang', u'report'] [u'minist', u'say', u'govt', u'connect', u'polic', u'file'] [u'miser', u'leav', u'million', u'guid', u'dog'] [u'missi', u'elliott', u'justin', u'timberlak', u'nomine'] [u'rain', u'need', u'wheatbelt'] [u'motorcyclist', u'kill', u'accid'] [u'moya', u'stay', u'cours', u'fourth', u'croatia', u'titl'] [u'offer', u'raaf', u'base', u'assur'] [u'muster', u'consid', u'comeback'] [u'navi', u'frigat', u'head', u'newcastl'] [u'net', u'sign', u'jason', u'kidd'] [u'newcastl', u'hold', u'brave', u'birmingham', u'malaysia'] [u'york', u'owner', u'protest', u'smoke'] [u'clue', u'wheat', u'virus', u'spread'] [u'painter', u'plead', u'guilti'] [u'govt', u'urg', u'fast', u'track', u'crown', u'land', u'assess'] [u'mine', u'industri', u'cope', u'reduc', u'diesel'] [u'kill', u'kosovo', u'attack', u'polic'] [u'open', u'find', u'hand', u'shoot', u'death'] [u'demand', u'answer', u'mcleod', u'inquiri'] [u'educ', u'polici', u'affect', u'economi'] [u'oppn', u'call', u'govt', u'reveal', u'solomon', u'forc'] [u'question', u'govt', u'plan', u'subsidi'] [u'say', u'scrutini', u'amount', u'polit'] [u'plan', u'state', u'consid', u'unrealist'] [u'play', u'pride', u'forget', u'fatigu', u'talli'] [u'agre', u'special', u'panel', u'need', u'complaint'] [u'reflect', u'birthday', u'approach'] [u'bali', u'bomb', u'anniversari'] [u'pneumonia', u'caus', u'heart', u'attack', u'research'] [u'polic', u'continu', u'probe', u'fatal', u'crash'] [u'polic', u'solomon', u'year'] [u'polic', u'highlight', u'drug', u'crackdown'] [u'polic', u'releas', u'crash', u'victim'] [u'porsch', u'delay', u'return', u'motor', u'race'] [u'port', u'cautious', u'ahead', u'lion', u'clash'] [u'port', u'kembla', u'nuclear', u'wast', u'transport', u'unlik'] [u'posit', u'respons', u'network', u'brough'] [u'power', u'restor', u'part', u'sydney'] [u'probe', u'underway', u'generat', u'crash'] [u'push', u'lure', u'film', u'industri', u'gold', u'coast'] [u'author', u'confid', u'sar', u'tourist', u'threat'] [u'rule', u'crop', u'moratorium'] [u'rain', u'pain', u'ferrero'] [u'rain', u'bring', u'warn', u'livestock', u'owner'] [u'raymond', u'terrac', u'court', u'stay'] [u'rebel', u'target', u'embassi', u'liberia'] [u'regul', u'canola', u'approv'] [u'releas', u'canola', u'get', u'green', u'light'] [u'report', u'attack', u'legal', u'child', u'abus'] [u'resourc', u'push', u'ord', u'higher'] [u'resurg', u'robbi', u'take', u'green', u'jersey', u'contest'] [u'ronaldinho', u'barca', u'debut', u'sunday'] [u'ronaldo', u'readi', u'battl', u'ronaldinho'] [u'sarkar', u'hit', u'defiant', u'bangladesh'] [u'seagul', u'hop', u'soar'] [u'secur', u'high', u'accus', u'face', u'court', u'drug', u'charg'] [u'seed', u'rule', u'champion', u'leagu', u'battl'] [u'serena', u'lead', u'women', u'entri', u'open'] [u'shell', u'exec', u'head', u'cole', u'myer', u'fuel', u'divis'] [u'shepherd', u'woolskin', u'sale'] [u'solomon', u'chief', u'warn', u'extort', u'cultur'] [u'victorian', u'worker', u'payris'] [u'south', u'east', u'rain', u'outlook', u'improv'] [u'southern', u'council', u'face', u'fin', u'river', u'derwent'] [u'southlink', u'driver', u'strike', u'second', u'time'] [u'specul', u'smelter', u'futur'] [u'straw', u'end', u'press', u'confer', u'quiz'] [u'stricken', u'elka', u'stay', u'barcelona'] [u'studi', u'find', u'bereav', u'suffer', u'euthanasia'] [u'substat', u'explos', u'leav', u'thousand', u'power'] [u'govt', u'disappoint', u'decis'] [u'teen', u'leav', u'hospit', u'train', u'jump', u'accid'] [u'telstra', u'put', u'case', u'tower', u'remov'] [u'temp', u'visa', u'holder', u'win', u'right', u'worker'] [u'thaw', u'fridg', u'plant'] [u'thorp', u'settl', u'bronz', u'barcelona'] [u'thousand', u'expect', u'visit', u'kununurra'] [u'thousand', u'flee', u'monrovia', u'fight', u'rag'] [u'divis', u'kill', u'ambush'] [u'tiger', u'frawley'] [u'russian', u'space', u'offici', u'refus', u'visa'] [u'tough', u'condit', u'consid', u'geraldton', u'port'] [u'transadelaid', u'accept', u'respons', u'diesel'] [u'tribun', u'rule', u'victorian', u'trio', u'play'] [u'hurt', u'spanish', u'explos'] [u'union', u'call', u'govt', u'improv', u'region'] [u'uni', u'face', u'piraci', u'suit'] [u'meet', u'make', u'littl', u'progress', u'liberia'] [u'defend', u'free', u'trade', u'offer'] [u'display', u'saddam', u'son', u'bodi', u'journalist'] [u'display', u'touch', u'saddam', u'son', u'bodi', u'media'] [u'politician', u'demand', u'govt', u'releas', u'sept'] [u'allow', u'media', u'view', u'saddam', u'son', u'bodi'] [u'troop', u'storm', u'home', u'arrest', u'ambush', u'suspect'] [u'veteran', u'jone', u'grab', u'evian', u'lead'] [u'govt', u'connex', u'defend', u'rail', u'deal'] [u'govt', u'defend', u'train', u'decis'] [u'govt', u'interven', u'mccabe', u'tobacco', u'case'] [u'vic', u'pay', u'worker', u'rise'] [u'viduka', u'escap', u'ball', u'throw', u'dummi', u'spit'] [u'virgin', u'blue', u'stock', u'market', u'debut'] [u'memori', u'present', u'iraq', u'relic'] [u'waterhous', u'grant', u'interim', u'licenc'] [u'weapon', u'surrend', u'solomon', u'forc'] [u'webber', u'welcom', u'wilson', u'jaguar', u'gun', u'best'] [u'whale', u'popul', u'larger', u'think', u'research'] [u'beckham', u'tell'] [u'winter', u'wonderland', u'continu', u'mountain'] [u'woman', u'jail', u'year', u'ecstasi', u'smash'] [u'woodchip', u'reject', u'protest', u'impact'] [u'worker', u'protect', u'corpor'] [u'world', u'class', u'larkham', u'lift', u'wallabi', u'gregan'] [u'million', u'babi', u'later', u'turn'] [u'adelaid', u'road', u'rage', u'chase', u'end', u'murder'] [u'anderson', u'lament', u'test', u'ambush'] [u'anim', u'activist', u'protest', u'cull'] [u'armstrong', u'predict', u'histor', u'pace', u'tour', u'time', u'trial'] [u'arsenal', u'seaman', u'lehmann'] [u'darwin', u'festiv'] [u'atsic', u'queanbeyan', u'council', u'chair', u'resign'] [u'bangladesh', u'rout', u'aussi', u'wrap', u'seri'] [u'beatti', u'commit', u'govt', u'investig', u'foster', u'care'] [u'beatti', u'commit', u'investig', u'foster', u'care'] [u'bligh', u'act', u'appropri', u'abus', u'claim'] [u'blizzard', u'produc', u'excel', u'ski', u'condit'] [u'blond', u'angel', u'death', u'arrest'] [u'brother', u'refus', u'bail', u'alleg', u'gang', u'rape'] [u'bryant', u'wont', u'play', u'olymp', u'qualifi', u'event'] [u'build', u'industri', u'face', u'insur', u'crisi'] [u'burma', u'militari', u'regim', u'claim', u'foil'] [u'driver', u'strike', u'end'] [u'bush', u'host', u'palestinian'] [u'cambodian', u'prepar', u'general', u'elect'] [u'carey', u'crow'] [u'chelski', u'bank', u'easi', u'malaysia'] [u'clijster', u'capriati', u'reach', u'semi', u'dokic', u'oust'] [u'comment', u'seek', u'sydney', u'road', u'congest', u'plan'] [u'concern', u'feder', u'law', u'hurt', u'farmer'] [u'concern', u'young', u'asylum', u'seeker', u'uncl'] [u'darter', u'sandpip'] [u'death', u'toll', u'chines', u'build', u'collaps', u'rise'] [u'disgrac', u'journalist', u'review', u'film', u'fellow'] [u'displac', u'public', u'servant', u'earn', u'govt', u'critic'] [u'kill', u'polic', u'fire', u'india', u'assam'] [u'essendon', u'keep', u'final', u'hop', u'aliv'] [u'feder', u'pull', u'washington', u'tournament'] [u'ferrero', u'stun', u'zabaleta', u'kitzbuhel'] [u'fight', u'intensifi', u'liberia', u'report'] [u'destroy', u'histor', u'mountain'] [u'gut', u'adelaid', u'classroom'] [u'kill', u'chines', u'coal', u'flood'] [u'domin', u'music', u'industri', u'confer'] [u'negoti', u'track', u'vail'] [u'germani', u'eat', u'catfish', u'dead'] [u'crop', u'approv', u'phase', u'csiro'] [u'crop', u'approv', u'sprout', u'fanfar', u'fear'] [u'golden', u'oldi', u'lead', u'evian', u'master'] [u'govt', u'call', u'send', u'observ', u'hick', u'trial'] [u'govt', u'deport', u'young', u'asylum', u'seeker', u'iran'] [u'govt', u'clean', u'pollut', u'largest', u'lake'] [u'reign', u'evad', u'govt'] [u'hackett', u'win', u'gold', u'phelp', u'shin'] [u'hail', u'shell', u'batter', u'monrovia', u'liberia'] [u'hayden', u'pont', u'steadi', u'chase'] [u'health', u'expo', u'open', u'brisban'] [u'heavi', u'machineri', u'clean', u'adelaid', u'diesel', u'spill'] [u'heavi', u'snow', u'fall', u'resort'] [u'histor', u'agreement', u'eas', u'council', u'aborigin'] [u'hous', u'destroy'] [u'feel', u'pretti', u'good', u'elka'] [u'india', u'face', u'king', u'size', u'aid', u'problem'] [u'indigen', u'communiti', u'mourn', u'right', u'campaign'] [u'isra', u'cabinet', u'discuss', u'releas', u'palestinian'] [u'israel', u'insist', u'west', u'bank', u'secur', u'fenc', u'necess'] [u'armstrong', u'ullrich', u'closest', u'finish'] [u'jacobsen', u'move', u'shoot', u'clear', u'whaley', u'miss'] [u'korean', u'veteran', u'push', u'recognit'] [u'landmark', u'vote', u'send', u'japanes', u'troop', u'iraq'] [u'langer', u'fall', u'aussi', u'start', u'chase'] [u'lastra', u'inspir', u'tour', u'victori', u'mother'] [u'lehmann', u'post', u'centuri', u'aussi', u'control'] [u'lehmann', u'top', u'aussi', u'control'] [u'liberian', u'rebel', u'declar', u'ceas'] [u'live', u'music', u'venu', u'kilda', u'threat'] [u'liza', u'minnelli', u'husband', u'david', u'gest', u'separ'] [u'lobster', u'associ', u'happi', u'govt', u'decis'] [u'long', u'servic', u'leav', u'forum', u'plan'] [u'lynn', u'lead', u'irish', u'open'] [u'lynn', u'lead', u'campbel', u'tail', u'irish', u'open'] [u'kill', u'road', u'rage', u'incid'] [u'undergo', u'emerg', u'surgeri'] [u'matilda', u'scoreless', u'draw'] [u'mcewen', u'grab', u'green', u'jersey'] [u'mcgrath', u'gillespi', u'wrap', u'bangladesh', u'tail'] [u'miss', u'child', u'adelaid'] [u'mental', u'afflict', u'yorker'] [u'injur', u'larg', u'quak', u'jolt', u'japan'] [u'iraqi', u'paper', u'spurn', u'photo', u'saddam', u'dead'] [u'moya', u'give', u'ferrer', u'chanc', u'nadal'] [u'nake', u'chef', u'victim', u'hoax', u'email'] [u'newspap', u'editor', u'arrest', u'azerbaijan'] [u'nigeria', u'consid', u'troop', u'deploy'] [u'civilian', u'shoot', u'dead', u'indonesia', u'aceh'] [u'govt', u'reject', u'claim', u'plant', u'pose', u'risk'] [u'look', u'forward', u'drought', u'break', u'rain'] [u'polic', u'continu', u'search'] [u'adopt', u'wait', u'approach', u'rule'] [u'drop', u'routin', u'sar', u'screen'] [u'korea', u'prepar', u'conduct', u'nuclear', u'test', u'report'] [u'motorist', u'urg', u'slow', u'long', u'weekend'] [u'kill', u'wound', u'shoot'] [u'oscar', u'win', u'director', u'schlesing', u'die'] [u'palestinian', u'meet', u'sharon', u'talk'] [u'pariti', u'domin', u'labor', u'meet'] [u'rise', u'detect'] [u'philippin', u'presid', u'arroyo', u'say', u'coup', u'plot'] [u'pictur', u'saddam', u'son', u'splash', u'arab'] [u'pittman', u'rival', u'danver', u'injuri'] [u'play', u'abandon', u'england', u'south', u'africa', u'test'] [u'polic', u'appeal', u'help', u'miss', u'person'] [u'polic', u'theft', u'shock'] [u'polic', u'bodi', u'miss', u'fisherman'] [u'polic', u'clue', u'murder', u'case'] [u'polic', u'hunt', u'steal'] [u'port', u'dredg', u'impact', u'predict'] [u'port', u'grab', u'spot', u'gabba', u'thriller'] [u'public', u'urg', u'ant'] [u'qualiti', u'concern', u'mayn', u'negoti', u'hospit', u'sale'] [u'quiet', u'celebr', u'howard', u'turn'] [u'rann', u'interven', u'shoot', u'sentenc'] [u'richmond', u'come', u'home', u'strong', u'bulldog'] [u'rossi', u'take', u'provision', u'pole', u'germani'] [u'rubber', u'duck', u'spot', u'float', u'pacif'] [u'rule', u'take', u'girl', u'mix', u'team', u'bench'] [u'sapphir', u'lose', u'shine', u'latvia'] [u'score', u'injur', u'earthquak', u'rattl', u'japan'] [u'eagl', u'batter', u'bronco'] [u'william', u'dargi', u'die', u'age'] [u'solomon', u'intervent', u'forc', u'top'] [u'solomon', u'deni', u'order', u'vehicl', u'theft'] [u'solomon', u'policeman', u'beat', u'peacekeep', u'begin'] [u'solomon', u'rebel', u'leader', u'urg', u'surrend', u'arm'] [u'srichaphan', u'down', u'draper', u'indianapoli', u'quarter'] [u'stori', u'place', u'reveal', u'cape', u'york'] [u'strong', u'econom', u'data', u'send', u'wall', u'higher'] [u'struggl', u'indemn', u'scheme', u'threaten', u'builder'] [u'rain', u'eas', u'pressur', u'farmer'] [u'tension', u'korea', u'increas'] [u'thorp', u'hail', u'incred', u'phelp'] [u'dead', u'dozen', u'wound', u'attack', u'monrovia'] [u'kidnap', u'judg', u'pakistan', u'jail'] [u'soldier', u'kill', u'guard', u'iraqi', u'children'] [u'soldier', u'kill', u'iraq'] [u'lead', u'saddam', u'bodyguard'] [u'tourist', u'find', u'wwii', u'refuge', u'messag', u'bottl'] [u'brother', u'face', u'gang', u'rape', u'charg'] [u'face', u'court', u'alleg', u'assault'] [u'ullrich', u'taunt', u'armstrong', u'tour', u'time', u'test'] [u'uni', u'learn', u'corpor', u'sector', u'studi'] [u'firm', u'consid', u'buy', u'russian', u'space', u'craft'] [u'slap', u'sanction', u'north', u'korea', u'missil', u'sale'] [u'stock', u'rise', u'durabl', u'order', u'lift'] [u'resort', u'receiv', u'need', u'snow'] [u'bali', u'fund', u'distribut', u'relief', u'payment'] [u'council', u'collar'] [u'wallabi', u'bledislo', u'defeat', u'gregan'] [u'treatment', u'abus', u'victim', u'applaud'] [u'weapon', u'public', u'destroy', u'solomon'] [u'webber', u'warn', u'track', u'invad'] [u'wine', u'market', u'confer', u'kick'] [u'woman', u'sentenc', u'book', u'theft'] [u'fishermen', u'miss', u'rough', u'bangladesh'] [u'mazen', u'govern', u'arafat'] [u'aceh', u'separatist', u'root'] [u'jazeera', u'say', u'forc', u'arrest', u'employe'] [u'disappoint', u'csiro', u'scientist', u'redund'] [u'ambassador', u'releas', u'roug', u'filipino', u'soldier'] [u'anger', u'mugab', u'stay', u'control', u'zimbabw'] [u'armstrong', u'aim', u'event', u'tour'] [u'armstrong', u'close', u'victori', u'ullrich', u'crash'] [u'armstrong', u'seat', u'ullrich', u'fall'] [u'arroyo', u'expos', u'militari', u'coup', u'plot'] [u'arroyo', u'extend', u'ultimatum', u'deadlin', u'rebel'] [u'arroyo', u'give', u'militari', u'rebel', u'ultimatum'] [u'rebel', u'soldier', u'surrend', u'philippin'] [u'dead', u'flood', u'eastern', u'indian', u'state'] [u'rebel', u'soldier', u'surrend', u'ahead'] [u'aust', u'ambassador', u'catch', u'manila', u'sieg'] [u'aust', u'ambassador', u'hold', u'manila', u'mall', u'sieg', u'report'] [u'aust', u'minist', u'arriv', u'singapor', u'region'] [u'australia', u'disqualifi', u'medley', u'relay'] [u'beep', u'beep', u'youv', u'messag', u'divorc'] [u'biaggi', u'take', u'pole', u'german', u'grand', u'prix'] [u'birmingham', u'thrash', u'malaysia', u'asia'] [u'bjorn', u'regain', u'lead', u'ahead', u'irish', u'final', u'round'] [u'bligh', u'beatti', u'reject', u'resign', u'call'] [u'brisban', u'hydrant', u'shortag', u'caus', u'concern'] [u'brother', u'sister', u'kill', u'hous'] [u'bulldog', u'overpow', u'north', u'queensland'] [u'cambodian', u'poll', u'booth', u'open'] [u'cambodian', u'poll', u'close'] [u'centenari', u'tour', u'surpass', u'expect', u'leblanc'] [u'chamber', u'charg', u'british', u'trial', u'victori'] [u'charg', u'moot', u'hoaxer', u'line'] [u'chelsea', u'happi', u'play', u'champion', u'leagu', u'israel'] [u'child', u'deport', u'detain', u'father', u'tell'] [u'claim', u'petrol', u'market', u'domin', u'discount', u'supplier'] [u'cole', u'entri', u'discount', u'petrol', u'market'] [u'conserv', u'council', u'disput', u'plan'] [u'cook', u'announc', u'green', u'jersey'] [u'cop', u'steal', u'pride', u'parad'] [u'coria', u'set', u'massu', u'showdown'] [u'deni', u'intimid', u'cambodian', u'vote'] [u'crean', u'say', u'region', u'terror', u'summit', u'need'] [u'crean', u'grind', u'badgeri', u'creek', u'airport', u'plan'] [u'crean', u'badgeri', u'creek', u'airport'] [u'crocker', u'stun', u'upset', u'phelp'] [u'dargi', u'paint', u'indigen', u'advoc'] [u'death', u'marin', u'suspici', u'polic'] [u'decis', u'nigerian', u'troop', u'deploy', u'liberia'] [u'democrat', u'accus', u'govt', u'separ', u'refuge'] [u'doctor', u'deter'] [u'drought', u'caus', u'problem', u'lake', u'eucumben'] [u'drought', u'cut', u'serbia', u'electr', u'suppli'] [u'earli', u'elect', u'possibl', u'howard'] [u'earthquak', u'western', u'turkey', u'injur'] [u'educ', u'guidelin', u'success'] [u'elka', u'compet', u'hobart', u'despit', u'barca', u'collaps'] [u'emot', u'zhou', u'faint', u'relay', u'gold'] [u'famili', u'drug', u'support', u'spread', u'wing'] [u'destroy', u'local', u'bowl', u'club'] [u'soldier', u'charg', u'abus', u'iraqi', u'pow'] [u'futur', u'leader', u'nation', u'parti', u'unknown', u'vail'] [u'govt', u'ask', u'investig', u'franc', u'grave', u'claim'] [u'govt', u'deadlin', u'philippin', u'rebel', u'laps'] [u'govt', u'need', u'readdress', u'secur', u'issu', u'bartlett'] [u'guantanamo', u'detaine', u'habib', u'forget', u'wife'] [u'howard', u'say', u'decis', u'join', u'iraq', u'tough'] [u'inkster', u'clinch', u'record', u'break', u'webb'] [u'insur', u'woe', u'pharmaceut', u'ill'] [u'iran', u'open', u'tougher', u'nuclear', u'check', u'offici', u'say'] [u'jacobsen', u'maintain', u'shoot', u'lead', u'greater'] [u'japanes', u'food', u'outlet', u'readi', u'invad', u'south', u'korea'] [u'labor', u'review', u'health', u'insur', u'rebat'] [u'lehmann', u'fall', u'record', u'test', u'score'] [u'lendu', u'militia', u'massacr', u'dozen', u'congo', u'offici'] [u'liberian', u'rebel', u'push', u'bridg'] [u'liberian', u'rebel', u'push', u'bridg'] [u'local', u'nation'] [u'love', u'bring', u'maiden', u'test', u'waugh', u'declar'] [u'makaay', u'say', u'join', u'bayern'] [u'question', u'sydney', u'stab'] [u'charg', u'take', u'knife', u'nightclub'] [u'injur', u'bomb', u'explod', u'cambodian'] [u'kill', u'motorcycl', u'accid'] [u'plan', u'passion', u'merced', u'grave'] [u'midwiv', u'push', u'upper', u'hous'] [u'mother', u'learn', u'son', u'death', u'news'] [u'moya', u'face', u'volandri', u'croatia', u'open', u'final'] [u'campaign', u'spark', u'bitter'] [u'internet', u'crime', u'unit', u'track', u'paedophil'] [u'govt', u'build', u'primari', u'classroom'] [u'observ', u'cambodian', u'elect', u'smooth'] [u'soldier', u'kill', u'wound', u'baghdad'] [u'palestinian', u'press', u'hail', u'bush', u'critic', u'israel'] [u'petrol', u'station', u'staff', u'rob', u'knifepoint'] [u'philippin', u'rebel', u'demand', u'court', u'martial', u'waiver'] [u'philippin', u'rebel', u'return', u'barrack', u'end'] [u'philippin', u'delay', u'rebel', u'assault', u'talk'] [u'philippin', u'rebel', u'soldier', u'stand'] [u'phoenix', u'cement', u'spot', u'kestrel'] [u'polic', u'follow', u'fresh', u'lead', u'bodney', u'murder'] [u'polic', u'investig', u'death', u'marino'] [u'polic', u'hunt', u'thief'] [u'polic', u'search', u'road', u'rage', u'victim', u'attack'] [u'polic', u'releas', u'name', u'crash', u'victim'] [u'power', u'restor', u'east', u'brisban', u'suburb'] [u'deal', u'seal', u'london', u'base', u'socceroo'] [u'raider', u'crush', u'shark', u'tiger', u'hammer', u'knight'] [u'raid', u'estrada', u'own', u'hous', u'turn', u'munit'] [u'rail', u'servic', u'perth', u'continu', u'disrupt'] [u'record', u'break', u'smith', u'humbl', u'england'] [u'roddick', u'paradorn', u'reach', u'seed', u'showdown'] [u'rogu', u'filipino', u'soldier', u'releas', u'australian'] [u'rogu', u'soldier', u'hold', u'aussi', u'manila'] [u'rogu', u'troop', u'hold', u'manila', u'mall', u'report'] [u'roll', u'stone', u'jagger', u'celebr', u'year'] [u'rooney', u'injuri', u'scare'] [u'rooster', u'hold', u'panther'] [u'rspca', u'find', u'claim', u'tortur', u'brumbi', u'outrag'] [u'rural', u'resid', u'earn', u'rubbish', u'collect'] [u'seven', u'kill', u'monrovia', u'mortar', u'attack'] [u'shark', u'board', u'determin', u'anderson', u'futur'] [u'solomon', u'polic', u'chief', u'order', u'surrend'] [u'space', u'factori', u'plan', u'crystallis'] [u'specialist', u'concern', u'indemn', u'problem'] [u'sprint', u'tsar', u'popov', u'claim', u'doubl', u'phelp', u'upstag'] [u'sterilis', u'rule', u'tip', u'rais', u'patient', u'cost'] [u'sydney', u'beat', u'freo', u'pie', u'hammer', u'blue', u'crow', u'thrash'] [u'farmer', u'look', u'market'] [u'taylor', u'agre', u'plan', u'buffer', u'zone'] [u'teenag', u'girl', u'come', u'bench'] [u'telstra', u'deni', u'plan', u'charg'] [u'telstra', u'deni', u'plan', u'surcharg'] [u'charg', u'fatal', u'macksvill', u'shoot'] [u'peopl', u'stab', u'cabramatta', u'home'] [u'tree', u'plant', u'repair', u'damag'] [u'trust', u'sale', u'anger', u'benefactor'] [u'bomb', u'explod', u'cambodian', u'capit', u'elect'] [u'children', u'kill', u'hous'] [u'take', u'custodi', u'chase'] [u'ullrich', u'crash', u'end', u'tour', u'hop'] [u'engin', u'start', u'demolish', u'hous', u'uday'] [u'marin', u'kill', u'wound', u'grenad', u'blast'] [u'vail', u'indic', u'america', u'offer', u'lack'] [u'veteran', u'korean', u'memori'] [u'veteran', u'commemor', u'korean'] [u'wallabi', u'bledislo', u'defeat', u'gregan'] [u'waugh', u'bring', u'test', u'centuri'] [u'williamson', u'stage', u'darwin', u'festiv', u'workshop'] [u'work', u'hour', u'have', u'effect', u'aussi', u'famili'] [u'yothu', u'yindi', u'strike', u'chord', u'youth'] [u'zimbabw', u'court', u'defer', u'rule', u'treason', u'discharg'] [u'injur', u'kashmir', u'explos'] [u'aceh', u'rebel', u'kill', u'militari'] [u'evacu', u'follow', u'bondi', u'restaur'] [u'abattoir', u'begin', u'process'] [u'airlin', u'case', u'throw'] [u'airport', u'plan', u'crean', u'pressur'] [u'airport', u'upgrad', u'take'] [u'shift', u'blame', u'level', u'gambl', u'help', u'fund'] [u'approv', u'seek', u'cape', u'york', u'bodi'] [u'armstrong', u'tour', u'legend', u'fifth', u'straight'] [u'armstrong', u'make', u'histori', u'cook', u'leav', u'mcewen'] [u'armstrong', u'make'] [u'arroyo', u'downplay', u'mutini', u'damag'] [u'arroyo', u'order', u'probe', u'manila', u'mutini'] [u'athen', u'lawyer', u'file', u'suit', u'blair', u'iraq'] [u'aussi', u'domin', u'sprint', u'armstrong', u'grab', u'fifth'] [u'aust', u'china', u'start', u'fresh', u'human', u'right', u'talk'] [u'australian', u'spend', u'sport', u'relat', u'injuri'] [u'aust', u'singapor', u'trade', u'deal', u'come', u'forc'] [u'award', u'go', u'gippsland', u'plane', u'maker'] [u'bank', u'mine', u'sector', u'boost', u'ord'] [u'beatlemania', u'rememb', u'decad'] [u'beatti', u'say', u'sugar', u'law', u'month', u'away'] [u'blaze', u'damag', u'centr'] [u'hope', u'die', u'age'] [u'boost', u'child', u'care', u'servic'] [u'boost', u'univers', u'immunolog', u'microbiolog', u'unit'] [u'bosnia', u'herzegovina', u'mass', u'grave', u'excav'] [u'brack', u'launch', u'marina', u'plan'] [u'british', u'wannab', u'crown', u'world', u'karaok', u'champion'] [u'burma', u'say', u'detent', u'indefinit'] [u'burmes', u'minist', u'say', u'plan', u'releas'] [u'bushfir', u'inquiri', u'hear', u'polit', u'infight'] [u'bushfir', u'inquiri', u'report', u'releas', u'week'] [u'busi', u'weekend', u'polic'] [u'bigger', u'region', u'push'] [u'hoax', u'call', u'carri', u'fine'] [u'homeless', u'help'] [u'cambodian', u'brace', u'polit', u'conflict'] [u'campbel', u'shatter', u'bjorn', u'comeback', u'hop', u'play'] [u'bomb', u'explod', u'spanish', u'airport'] [u'cattl', u'export', u'defend', u'industri', u'safeti'] [u'cautious', u'support', u'ethanol'] [u'job'] [u'chelsea', u'win', u'asia', u'penalti', u'shoot'] [u'claim', u'british', u'govern', u'plot', u'undermin'] [u'clijster', u'capriati', u'stanford', u'showdown'] [u'clijster', u'battl', u'past', u'capriati', u'california'] [u'clijster', u'set', u'sight', u'grand', u'slam', u'victori'] [u'commut', u'strand', u'disput', u'continu'] [u'consult', u'welcom', u'hybrid', u'canola', u'news'] [u'cook', u'edg', u'mcewen', u'tour', u'green', u'jersey'] [u'cook', u'roast', u'mcewen', u'tour', u'green', u'line'] [u'coria', u'beat', u'massu', u'second', u'success', u'titl'] [u'council', u'approv', u'lime', u'kiln', u'project'] [u'council', u'cut', u'capit', u'work'] [u'council', u'give', u'mudcrab', u'farm'] [u'council', u'join', u'effort', u'boost', u'north', u'west', u'flight'] [u'councillor', u'air', u'farmer', u'associ', u'money', u'concern'] [u'council', u'leav', u'tree', u'near', u'school'] [u'court', u'rule', u'children', u'detent'] [u'cowra', u'wine', u'tast', u'begin'] [u'cambodian', u'poll'] [u'crean', u'face', u'revolt', u'airport', u'plan'] [u'custodi', u'arrang', u'spotlight'] [u'dalbi', u'instal', u'secur', u'camera'] [u'democrat', u'condemn', u'wast', u'money'] [u'deputi', u'question', u'airport', u'plan'] [u'drought', u'dollar', u'hurt', u'rural', u'sector'] [u'drought', u'take', u'toll', u'sheep', u'number'] [u'emerg', u'servic', u'monitor', u'flood', u'potenti'] [u'european', u'hostag', u'move', u'rebel', u'mali', u'report'] [u'extens', u'program', u'darwin', u'festiv'] [u'fear', u'air', u'tafe', u'servic'] [u'govt', u'speak', u'ansett', u'payment', u'concern'] [u'wound', u'grenad', u'blast', u'indian', u'kashmir'] [u'home', u'buyer', u'struggl', u'survey'] [u'focus', u'boy', u'educ'] [u'arrest', u'field', u'drug', u'oper'] [u'garrett', u'open', u'centr', u'record', u'studio'] [u'geraldton', u'host', u'coastal', u'gather'] [u'gibernau', u'edg', u'rossi', u'bayliss', u'podium'] [u'gold', u'bounc', u'british', u'titl'] [u'green', u'pleas', u'wast', u'dump', u'remov', u'effort'] [u'hackett', u'take', u'final', u'gold'] [u'hackett', u'win', u'gold', u'phelp', u'steal'] [u'hadle', u'move', u'sideway', u'zealand', u'shake'] [u'health', u'group', u'demand', u'action', u'govt'] [u'hill', u'natur', u'resourc'] [u'hodgson', u'secur', u'manufactur', u'titl', u'ducati'] [u'hope', u'banana', u'decis', u'overturn'] [u'horizon', u'begin', u'servic'] [u'hous', u'price', u'rise'] [u'hugh', u'face', u'match'] [u'imam', u'samudra', u'deserv', u'court', u'tell'] [u'indigen', u'grow', u'sothebi'] [u'indigen', u'own', u'agenc', u'look', u'local'] [u'iraq', u'council', u'want', u'son', u'bodi', u'give', u'saddam'] [u'irrig', u'score', u'court'] [u'isra', u'troop', u'wind', u'protest', u'wit'] [u'israel', u'vote', u'free', u'palestinian', u'milit'] [u'tougher', u'expect', u'admit', u'aussi'] [u'jacobsen', u'triumph', u'connecticut'] [u'jone', u'add', u'wallabi', u'squad'] [u'jone', u'betray', u'wallabi', u'coach'] [u'judg', u'delay', u'child', u'detent', u'rule'] [u'juri', u'empanel', u'murder', u'trial'] [u'katan', u'consid', u'pool', u'revamp'] [u'labor', u'call', u'carer', u'allow', u'review'] [u'landcar', u'forum', u'expect', u'spark'] [u'leak', u'document', u'keep', u'pressur', u'bligh'] [u'lethal', u'back', u'lion', u'roar'] [u'leukaemia', u'studi', u'examin', u'diseas', u'trigger'] [u'liberian', u'rebel', u'reject', u'peac', u'propos'] [u'loeb', u'hold', u'gronholm', u'tight'] [u'macgil', u'shane', u'stand', u'waugh'] [u'malaysia', u'deni', u'knowledg', u'indonesian', u'rebel'] [u'manila', u'rebel', u'claim', u'moral', u'victori'] [u'unit', u'put', u'stylish'] [u'matilda', u'scoreless', u'draw', u'japan'] [u'mcewan', u'reflect', u'tour', u'outcom'] [u'mcewen', u'reflect', u'tour', u'outcom'] [u'mcgee', u'look', u'lifetim', u'dream'] [u'meet', u'consid', u'youth', u'centr', u'plan'] [u'mexico', u'edg', u'brazil', u'gold', u'final'] [u'drought', u'applic', u'expect'] [u'shop', u'plan'] [u'motorist', u'tip', u'benefit', u'competit'] [u'moya', u'win', u'record', u'fourth', u'croatian', u'crown'] [u'moya', u'win', u'record', u'fourth', u'croation', u'crown'] [u'sound', u'engin', u'school'] [u'nation', u'task', u'forc', u'probe', u'murray', u'flow', u'impact'] [u'nation', u'trust', u'report', u'criticis'] [u'nation', u'trust', u'report', u'meet', u'opposit'] [u'nemo', u'find', u'success', u'disney', u'pixar'] [u'newcrest', u'share', u'soar', u'posit', u'gold', u'news'] [u'nixon', u'order', u'waterg', u'break', u'aid', u'say'] [u'charg', u'brawl', u'miln', u'cop'] [u'race', u'centuri', u'waugh', u'say', u'tendulkar'] [u'physician', u'appoint', u'commonwealth'] [u'step', u'search', u'dentist'] [u'nurs', u'group', u'speak', u'concern'] [u'nurs', u'warn', u'action', u'cut', u'ahead'] [u'offici', u'consid', u'solomon', u'amnesti'] [u'ogradi', u'receiv', u'special', u'tour', u'prize'] [u'opposit', u'earli', u'leader', u'cambodia', u'vote'] [u'pair', u'charg', u'shoot', u'death', u'refus', u'bail'] [u'palestinian', u'cheer', u'israel', u'remov', u'checkpoint'] [u'peter', u'garrett', u'launch', u'outback', u'music', u'studio'] [u'phelp', u'aim', u'outstrip', u'rival', u'thorp'] [u'phelp', u'aim', u'outstrip', u'thorp', u'olymp', u'horizon'] [u'philippin', u'travel', u'advic', u'revis'] [u'visit', u'cape', u'import', u'say', u'beatti'] [u'polic', u'charg', u'pair', u'aggrav', u'burglari'] [u'polic', u'investig', u'airport', u'secur', u'breach'] [u'polic', u'probe', u'servic', u'station', u'hold'] [u'polic', u'speak', u'drink', u'drive', u'arrest'] [u'port', u'kembla', u'smelter', u'close', u'partner'] [u'pressur', u'mount', u'bligh', u'child', u'abus', u'claim'] [u'prosecutor', u'seek', u'death', u'imam', u'samudra'] [u'race', u'yacht', u'rescu', u'coff'] [u'rebel', u'soldier', u'defus', u'bomb', u'build'] [u'rise', u'dollar', u'hurt', u'wine', u'export', u'economist'] [u'roddick', u'down', u'paradorn', u'indianapoli', u'titl'] [u'roddick', u'readi', u'list', u'american'] [u'ronaldinho', u'debut', u'barca', u'friend'] [u'rooney', u'month', u'ligament', u'damag'] [u'roundtabl', u'rule', u'youth', u'curfew'] [u'rspca', u'call', u'live', u'anim', u'trade'] [u'saddam', u'tri', u'kill', u'british'] [u'sar', u'surveil', u'scale'] [u'saudi', u'shootout', u'claim', u'live'] [u'schedul', u'cost', u'record', u'say', u'hackett'] [u'school', u'stay', u'open', u'teacher', u'stop', u'work'] [u'search', u'fisherman', u'brisban', u'extend'] [u'seizur', u'like', u'caus', u'fatal', u'crash', u'polic'] [u'sexual', u'abus', u'author', u'plead', u'guilti', u'underag'] [u'shark', u'hierarchi', u'discuss', u'anderson', u'outburst'] [u'shire', u'highlight', u'project', u'budget'] [u'shire', u'help', u'boost', u'transport', u'option'] [u'shire', u'open', u'recreat', u'centr'] [u'snow', u'boost', u'weekend', u'tourism'] [u'snowtown', u'juri', u'hear', u'close', u'address'] [u'solomon', u'militia', u'request', u'amnesti'] [u'solomon', u'polic', u'deputi', u'swear'] [u'specialist', u'teach', u'vacanc'] [u'sport', u'complex', u'open', u'south', u'east'] [u'kid', u'sleuth', u'number'] [u'stanhop', u'commit', u'public', u'servant'] [u'state', u'feder', u'health', u'impass'] [u'state', u'billion', u'telescop'] [u'strike', u'talk', u'bus', u'run', u'normal'] [u'string', u'mishap', u'includ', u'live', u'lose'] [u'sydney', u'doesnt', u'need', u'second', u'airport'] [u'tasmanian', u'fibr', u'appoint', u'chairman'] [u'opposit', u'seek', u'surgic', u'equip', u'probe'] [u'union', u'seek', u'chang', u'worker', u'compo'] [u'tent', u'embassi', u'protest', u'fear', u'camp'] [u'tour', u'franc', u'stage', u'winner'] [u'tourism', u'industri', u'put', u'woe'] [u'townsvill', u'pack', u'countri', u'crowd'] [u'tree', u'clear', u'deal', u'involv', u'farmer', u'talk'] [u'tweed', u'agent', u'face', u'court'] [u'ullrich', u'tour', u'limelight', u'aw', u'year'] [u'union', u'welcom', u'blair', u'athol', u'rule'] [u'ambassador', u'head', u'york'] [u'close', u'saddam'] [u'soldier', u'target', u'iraq', u'grenad', u'attack'] [u'troop', u'releas', u'jazeera', u'cameraman', u'iraq'] [u'troop', u'struggl', u'death', u'colleagu'] [u'vaughan', u'hail', u'best', u'centuri'] [u'veron', u'chelsea', u'unit', u'turn', u'press'] [u'cabinet', u'minist', u'mildura'] [u'farmer', u'grow', u'commerci'] [u'virenqu', u'see', u'spot', u'record', u'equal'] [u'govt', u'goldfield', u'tender'] [u'warn', u'groceri', u'price', u'discount'] [u'water', u'pipelin', u'ahead'] [u'waugh', u'back', u'macgil', u'challeng', u'warn'] [u'waugh', u'back', u'macgil', u'secur', u'berth'] [u'welfar', u'group', u'optimist', u'fate', u'child'] [u'wine', u'confer', u'focus', u'brand', u'build'] [u'wool', u'trader', u'remain', u'posit'] [u'world', u'swim', u'championship', u'podium', u'place'] [u'wrath', u'leav', u'dutson', u'down', u'committe'] [u'youth', u'involv', u'skate', u'park', u'plan'] [u'zambia', u'boat', u'disast', u'leav', u'peopl', u'drown'] [u'abar', u'back', u'crop', u'ahead'] [u'aborigin', u'skull', u'hand'] [u'aceh', u'rebel', u'negoti', u'trial', u'terror'] [u'acoss', u'say', u'negat', u'gear', u'scrap'] [u'teacher', u'follow', u'strike', u'lead'] [u'industri', u'feel', u'heat', u'child', u'nutrit'] [u'approv', u'father', u'chang'] [u'albani', u'reject', u'review'] [u'allenbi', u'latest', u'rank'] [u'ord', u'follow', u'flat', u'lead', u'wall'] [u'anaesthetist', u'keen', u'east', u'timor', u'train'] [u'anthropologist', u'want', u'aborigin', u'heritag'] [u'arsenal', u'wiltord', u'chase', u'lyon'] [u'aussi', u'southpaw', u'lloyd', u'join', u'royal'] [u'australia', u'target', u'golden', u'track', u'haul', u'mcgee'] [u'aust', u'team', u'return', u'short', u'cours', u'champ'] [u'bangladeshi', u'hossain', u'report', u'suspect', u'action'] [u'beckham', u'say', u'fit', u'like', u'glove', u'real', u'madrid'] [u'berkov', u'link', u'redknapp', u'reunion'] [u'bishop', u'urg', u'victim', u'contact', u'church'] [u'block', u'plan', u'return', u'competit'] [u'board', u'determin', u'anderson', u'futur'] [u'boffin', u'sight', u'telescop'] [u'brack', u'slam', u'bushfir', u'inquiri'] [u'bridal', u'magazin', u'examin', u'union'] [u'british', u'museum', u'hand', u'aborigin', u'remain'] [u'british', u'press', u'laud', u'nasser', u'shock', u'walk'] [u'brothel', u'squeez', u'wagga', u'close', u'vote'] [u'driver', u'continu', u'strike', u'threat'] [u'drop', u'speed', u'limit', u'deni'] [u'cambodian', u'opposit', u'parti', u'reject', u'poll', u'result'] [u'cambodian', u'head', u'poll'] [u'cambodian', u'poll', u'fair', u'australian', u'say'] [u'cancer', u'battl', u'good', u'tour', u'prepar', u'armstrong'] [u'canegrow', u'look', u'maryborough', u'mill', u'crush'] [u'cannib', u'back', u'armstrong', u'sixth', u'tour'] [u'carter', u'replac', u'bryant', u'olymp', u'qualifi', u'team'] [u'catchment', u'board', u'meet', u'green', u'fund'] [u'cattl', u'group', u'downplay', u'call', u'live', u'export'] [u'claim', u'nurs', u'posit', u'safe', u'restructur'] [u'charlton', u'gear', u'communiti', u'bank', u'branch'] [u'chelsea', u'specul', u'unsettl', u'player', u'lampard'] [u'china', u'sar', u'patient', u'recov'] [u'chines', u'factori', u'blast', u'kill'] [u'claim', u'opportun', u'home'] [u'clearer', u'futur', u'medic', u'clinic'] [u'clear', u'begin', u'bosnian', u'mass', u'grave', u'site'] [u'clijster', u'close', u'william', u'rank'] [u'coach', u'order', u'busi', u'real', u'star'] [u'author', u'defend', u'anglican', u'abus', u'report'] [u'committe', u'meet', u'discuss', u'barrow', u'plan'] [u'conceicao', u'inter', u'agre', u'way'] [u'concern', u'air', u'log'] [u'copper', u'plant', u'wind', u'oper'] [u'council', u'air', u'voucher', u'concern'] [u'council', u'back', u'innov', u'campus', u'master', u'plan'] [u'council', u'find', u'interim', u'build', u'surveyor'] [u'council', u'seek', u'merger', u'plan', u'feedback'] [u'court', u'expect', u'rule', u'child', u'detaine'] [u'crown', u'outlin', u'case', u'kelli', u'murder', u'trial'] [u'dairi', u'farmer', u'keen', u'maintain', u'clean', u'reput'] [u'danger', u'driver', u'suspend', u'spot'] [u'debat', u'age', u'care', u'facil', u'continu'] [u'decis', u'child', u'detaine', u'delay'] [u'defenc', u'forc', u'downplay', u'exercis', u'impact'] [u'democrat', u'concern', u'feedlot', u'plan'] [u'dental', u'nurs', u'strike', u'condit'] [u'dragon', u'captain', u'thompson', u'play', u'panther'] [u'draper', u'bounc', u'tragedi'] [u'drive', u'cours', u'hop', u'reduc', u'aborigin', u'road'] [u'echol', u'talk', u'ahead', u'mundin', u'bout'] [u'commerc', u'rise'] [u'elliott', u'make', u'chang', u'raider', u'line'] [u'help', u'pastoralist', u'manag', u'land'] [u'energi', u'group', u'air', u'wind', u'chang'] [u'environ', u'minist', u'meet', u'fishermen'] [u'ethanol', u'plant', u'remain', u'hold'] [] [u'famili', u'hop', u'farewel', u'audienc'] [u'farmer', u'compo', u'discuss'] [u'farmer', u'urg', u'know', u'pipelin', u'right'] [u'farm', u'victim', u'grant'] [u'farm', u'sector', u'incom', u'rise'] [u'north', u'get', u'polici'] [u'fifa', u'ratifi', u'earli', u'olymp', u'kick'] [u'destroy', u'newcastl', u'offic'] [u'inquiri', u'comment', u'rais', u'temperatur'] [u'school', u'open'] [u'focus', u'chang', u'hemp', u'locat'] [u'french', u'leav', u'world', u'door', u'open', u'perec'] [u'product', u'plan', u'ahead'] [u'german', u'dump', u'track', u'cycl', u'legend', u'bartko'] [u'gold', u'boost', u'price'] [u'govt', u'blame', u'hous', u'cost', u'stamp', u'duti'] [u'govt', u'rule', u'rais', u'threat', u'level'] [u'govt', u'urg', u'probe', u'wast', u'manag', u'plant'] [u'gregan', u'answer', u'wallabi', u'critic'] [u'hamburg', u'warm', u'style', u'leagu', u'titl'] [u'hatchet', u'victim', u'think', u'attack', u'joke'] [u'health', u'servic', u'suffer', u'budget', u'blow'] [u'henin', u'hardenn', u'continu', u'hunt', u'serena'] [u'hewitt', u'make', u'return', u'wimbledon', u'loss'] [u'hick', u'deni', u'train', u'terrorist'] [u'hope', u'hail', u'entertain', u'centuri'] [u'horsham', u'consid', u'lower', u'speed'] [u'hotel', u'apolog', u'guid', u'snub'] [u'hugh', u'defend', u'knee', u'charg', u'judiciari'] [u'hurdl', u'ahead', u'marina', u'plan'] [u'hussain', u'exit', u'signal'] [u'india', u'step', u'secur', u'blast'] [u'indigen', u'artwork', u'fetch', u'record', u'price'] [u'show', u'resort', u'land'] [u'back', u'lang', u'park', u'surfac'] [u'pain', u'great', u'dane', u'badminton', u'champ'] [u'jackson', u'claim', u'wnba', u'player', u'week'] [u'japan', u'slap', u'emerg', u'tariff', u'beef', u'pork'] [u'kangaroo', u'boost', u'good', u'news', u'colbert'] [u'kenyan', u'media', u'compani', u'record', u'profit'] [u'labor', u'odd', u'branch', u'stack', u'claim'] [u'labor', u'plan', u'privat', u'health', u'rebat', u'unclear'] [u'labor', u'target', u'rife', u'branch', u'stack'] [u'labor', u'urg', u'closur', u'nauru', u'detent', u'centr'] [u'langer', u'admit', u'captainci', u'decis', u'easi'] [u'liberian', u'armi', u'launch', u'buchanan', u'counter', u'attack'] [u'lumber', u'laker', u'madsen', u'join', u'rebuild', u'wolv'] [u'macfarlan', u'appoint', u'reserv', u'chief'] [u'manag', u'plan', u'anim', u'implement'] [u'charg', u'servic', u'station', u'hold'] [u'die', u'basebal', u'attack'] [u'martyn', u'tell', u'prove', u'fit', u'game'] [u'mayor', u'blast', u'negat', u'gear', u'tourism', u'impact'] [u'mcewen', u'edg', u'cook', u'post', u'tour', u'criterium'] [u'mediat', u'seek', u'black', u'bonus'] [u'tell', u'tie', u'blind'] [u'minist', u'cast', u'barra', u'fisheri', u'report'] [u'gold', u'spark', u'chang', u'miner', u'plan'] [u'rain', u'need', u'major', u'dam'] [u'mortlock', u'sign', u'brumbi'] [u'moy', u'look', u'strengthen', u'strike', u'forc'] [u'want', u'elector', u'expand', u'riverina'] [u'muhammad', u'sami', u'rule', u'bangladesh', u'seri'] [u'mysteri', u'cream', u'roman', u'london'] [u'nasser', u'hussain', u'factfil'] [u'eye', u'asian', u'expans', u'sooner', u'later'] [u'tafe', u'centr', u'open', u'echuca'] [u'charg', u'blue', u'pie', u'brawl'] [u'charg', u'brawl', u'miln', u'cop'] [u'govt', u'urg', u'region', u'airlin'] [u'polic', u'probe', u'woman', u'death'] [u'teacher', u'strike', u'spread'] [u'dentist', u'shortag', u'address', u'meet'] [u'homebuy', u'fare', u'mortgag', u'market'] [u'spend', u'park', u'capita'] [u'older', u'australian', u'urg', u'stay', u'workforc'] [u'opera', u'intim', u'view'] [u'parent', u'urg', u'help', u'head', u'hair', u'cut'] [u'penguin', u'studi', u'put', u'track', u'technolog', u'test'] [u'pierc', u'breez', u'past', u'razzano', u'diego'] [u'pierc', u'power', u'diego', u'serena', u'pull'] [u'polic', u'believ', u'home', u'invad', u'wrong'] [u'polic', u'crash', u'victim'] [u'power', u'wild', u'wind', u'sweep', u'melbourn'] [u'project', u'aim', u'address', u'indigen', u'homeless'] [u'complaint', u'higher', u'expect'] [u'minist', u'face', u'foster', u'abus', u'claim', u'probe'] [u'qlds', u'governor', u'swear'] [u'raid', u'net', u'saddam', u'loyalist'] [u'rebat', u'rainwat', u'tank', u'finalis'] [u'cross', u'offici', u'visit'] [u'cross', u'say', u'good', u'health'] [u'report', u'back', u'tent', u'embassi', u'camp'] [u'resid', u'wake', u'cold', u'morn'] [u'restor', u'balanc'] [u'revamp', u'napster', u'launch', u'year'] [u'review', u'highlight', u'indigen', u'centr', u'occup', u'rat'] [u'rfds', u'look', u'local', u'govt', u'support'] [u'rise', u'fail', u'simultan', u'court', u'hear'] [u'ruddock', u'admit', u'voic', u'tape'] [u'ruddock', u'reject', u'bias', u'claim'] [u'rural', u'journalist', u'strike', u'disput'] [u'opposit', u'happi', u'samag', u'review'] [u'saudi', u'foreign', u'minist', u'meet', u'bush'] [u'shark', u'board', u'decid', u'anderson', u'futur'] [u'sharon', u'meet', u'rice', u'prior', u'bush', u'audienc'] [u'silverston', u'intrud', u'deni', u'bail'] [u'small', u'group', u'blame', u'increas', u'burglari'] [u'socceroo', u'murphi', u'return', u'play', u'glori'] [u'sugar', u'group', u'pledg', u'reef', u'protect'] [u'sink', u'boat', u'brisban', u'search'] [u'super', u'local', u'govt', u'council', u'certain', u'ahead'] [u'survey', u'show', u'high', u'level', u'drug', u'snow', u'field'] [u'sutton', u'get', u'extra', u'dunfermlin', u'slur'] [u'swear', u'nasser', u'lose', u'south', u'african'] [u'syphili', u'infect', u'increas', u'europ'] [u'govt', u'deni', u'play', u'role', u'bridg', u'collaps'] [u'teacher', u'continu', u'rise', u'campaign'] [u'teacher', u'fight', u'rise'] [u'teacher', u'strike', u'loom'] [u'teen', u'custodi', u'mason', u'shoot', u'death'] [u'tender', u'lodg', u'rout'] [u'thousand', u'flock', u'indigen'] [u'thunderbird', u'readi', u'start', u'avellino'] [u'musician', u'celebr', u'outback', u'studio', u'launch'] [u'tottenham', u'zieg', u'need', u'surgeri'] [u'tough', u'time', u'ahead', u'winemak'] [u'townsvill', u'port', u'trade', u'record', u'tumbl'] [u'trade', u'deficit', u'top'] [u'transport', u'push', u'increas', u'diesel', u'fuel'] [u'truss', u'critic', u'japan', u'tariff', u'decis'] [u'polic', u'arrest', u'child', u'crime', u'probe'] [u'ullrich', u'lose', u'tour', u'win', u'german', u'heart'] [u'union', u'seek', u'fate', u'kodak', u'employe'] [u'bangladeshi', u'fishermen', u'miss'] [u'ambassador', u'hear', u'farmer', u'trade'] [u'back', u'russian', u'involv', u'north', u'korea', u'talk'] [u'mourn', u'hope'] [u'put', u'pressur', u'burma'] [u'say', u'saddam', u'bodyguard', u'captur'] [u'vandal', u'target', u'high', u'school'] [u'govt', u'minist', u'converg', u'mildura'] [u'viduka', u'pois', u'quit', u'leed', u'report'] [u'visit', u'doctor', u'servic', u'doubt'] [u'doctor', u'exodus', u'creat', u'shortag', u'senat', u'hear'] [u'govt', u'lobbi', u'water', u'treatment', u'plant'] [u'light', u'plane', u'crash', u'injur'] [u'warrior', u'lose', u'jone', u'week'] [u'shire', u'creat', u'carbon', u'sink'] [u'water', u'board', u'consid', u'option', u'rainfal'] [u'waterfal', u'expert', u'disturb', u'dead', u'brake', u'issu'] [u'welfar', u'concern', u'live', u'sheep', u'export'] [u'wenger', u'put', u'youth', u'polici'] [u'wolv', u'chase', u'italian', u'midfield', u'baggio'] [u'woman', u'charg', u'pharmaci', u'hold'] [u'women', u'sue', u'hotel', u'drunken', u'crash'] [u'wood', u'fall', u'garcia', u'mickelson', u'battl'] [u'world', u'offici', u'inspect', u'lang', u'park'] [u'yothu', u'yindi', u'tour', u'school'] [u'younger', u'women', u'join', u'gather'] [u'zidan', u'stick', u'plan', u'quit'] [u'chief', u'support', u'camp', u'embassi'] [u'reject', u'costello', u'stamp', u'duti'] [u'agre', u'concili', u'backpay', u'claim'] [u'consid', u'sunday', u'night', u'game'] [u'agassi', u'advanc', u'eas'] [u'agassi', u'storm', u'round', u'washington'] [u'age', u'council', u'criticis', u'facil', u'delay'] [u'airlin', u'line', u'baghdad', u'airport'] [u'black', u'agre', u'world', u'bonus', u'deal'] [u'alleg', u'dingo', u'hybrid', u'temporari', u'repriev'] [u'altern', u'power', u'compani', u'critic', u'govt', u'inact'] [u'armstrong', u'ullrich', u'world', u'rematch'] [u'armstrong', u'rid', u'criterium'] [u'asio', u'brief', u'airlin', u'airport', u'terror', u'alert'] [u'australia', u'drop', u'fifa', u'rank'] [u'aust', u'troop', u'thank', u'servic'] [u'bali', u'bomb', u'victim', u'confront', u'bomb', u'maker'] [u'belgian', u'parliament', u'adopt', u'chang', u'crime'] [u'blackburn', u'replac', u'duff', u'irish', u'team', u'mate', u'reid'] [u'blair', u'continu', u'face', u'question', u'expert'] [u'boy', u'testimoni', u'help', u'convict', u'paedophil'] [u'broadsword', u'smith', u'impress', u'deed', u'word'] [u'burma', u'resolv', u'issu', u'octob'] [u'bushfir', u'probe', u'head', u'ballarat'] [u'call', u'govt', u'help', u'manag', u'kakadu'] [u'cambodia', u'head', u'polit', u'deadlock'] [u'catamaran', u'sale', u'boost', u'incat', u'export', u'record'] [u'champion', u'emus', u'continu', u'shine'] [u'chanc', u'get', u'crop', u'assur'] [u'child', u'welfar', u'group', u'demand', u'royal', u'commiss'] [u'china', u'catch', u'real', u'fever', u'team', u'exhibit'] [u'coach', u'want', u'graham', u'rest'] [u'coff', u'youth', u'week', u'win', u'award'] [u'concern', u'rise', u'baxter', u'hunger', u'striker'] [u'condit', u'support', u'nation', u'regist'] [u'confer', u'hear', u'food', u'child', u'health', u'concern'] [u'conserv', u'group', u'question', u'fli', u'effort'] [u'consum', u'confid', u'slide', u'hit', u'stock'] [u'council', u'committe', u'consid', u'green', u'matter'] [u'council', u'consid', u'sister', u'citi', u'plan'] [u'council', u'reject', u'gold', u'plan'] [u'council', u'seek', u'local', u'tertiari', u'cours'] [u'council', u'support', u'chang', u'turtl', u'manag'] [u'council', u'urg', u'hasten', u'plan', u'scheme'] [u'court', u'give', u'muslim', u'hous', u'prayer', u'green', u'light'] [u'court', u'overturn', u'muslim', u'centr'] [u'crean', u'sorri', u'lack', u'airport', u'consult'] [u'cricket', u'boss', u'review', u'dope', u'rule'] [u'csiro', u'fund', u'livestock', u'genom', u'research'] [u'cuddihi', u'set', u'sight', u'olymp'] [u'davenport', u'cast', u'asid', u'injuri', u'woe'] [u'demetriou', u'name', u'chief'] [u'democrat', u'fear', u'govt', u'muzzl', u'chariti'] [u'deputi', u'hear', u'telstra', u'sell', u'concern'] [u'devonport', u'lose', u'deal'] [u'disabl', u'group', u'angri', u'vanston', u'call'] [u'discrimin', u'muslim', u'rife'] [u'disput', u'aris', u'youth', u'counsel', u'fund'] [u'attack', u'spark', u'western', u'power', u'warn'] [u'dominion', u'proceed', u'mine', u'plan'] [u'dragon', u'sign', u'star', u'trio'] [u'eagl', u'take', u'toll', u'stock'] [u'easi', u'win', u'scud', u'hewitt'] [u'edward', u'holm', u'lewi', u'franci', u'select'] [u'elliott', u'get', u'driver', u'licenc'] [u'eyr', u'peninsula', u'rocki', u'tourist', u'trail'] [u'famili', u'friend', u'commemor', u'thredbo', u'landslid'] [u'fan', u'face', u'queue', u'real', u'madrid', u'ticket'] [u'final', u'whistl', u'blow', u'leisur', u'rail'] [u'fletcher', u'tri', u'hussain', u'stay', u'report'] [u'forens', u'examin', u'involv', u'glenelg', u'attack'] [u'hanson', u'support', u'testifi', u'fraud', u'trial'] [u'kill', u'french', u'forest', u'fire'] [u'russian', u'servicemen', u'kill', u'near', u'chechnya'] [u'french', u'track', u'reveng', u'aussi'] [u'gavaskar', u'slam', u'sledg', u'aussi'] [u'geelong', u'slam', u'sunday', u'night', u'footi', u'plan'] [u'german', u'hostag', u'hold', u'algerian', u'rebel', u'dead', u'report'] [u'ghan', u'ticket', u'sale', u'outstrip', u'expect'] [u'gibbon', u'speak', u'plan', u'educ', u'chang'] [u'great', u'scope', u'west', u'develop', u'haas'] [u'grenad', u'attack', u'wind', u'soldier', u'iraq'] [u'guid', u'highlight', u'univers', u'perform'] [u'harri', u'game', u'berkov', u'afford'] [u'hauritz', u'academi', u'dayer'] [u'heal', u'name', u'boomer', u'squad'] [u'health', u'servic', u'downplay', u'water', u'concern'] [u'henin', u'hardenn', u'sparkl', u'california'] [u'hewitt', u'prove', u'good', u'mamiit'] [u'home', u'build', u'pick', u'pace'] [u'home', u'invas', u'victim', u'probabl', u'tri', u'protect'] [u'hope', u'obituari', u'live', u'death', u'writer'] [u'hospit', u'undergo', u'upgrad'] [u'hossain', u'clear', u'face', u'australia'] [u'hous', u'afford', u'declin'] [u'hous', u'afford'] [u'vow', u'stay'] [u'icac', u'look', u'seal', u'road'] [u'divorc', u'troubl'] [u'indigen', u'nutrit', u'plan', u'prove', u'winner'] [u'indonesia', u'say', u'aceh', u'rebel', u'kill', u'firefight'] [u'inquiri', u'urg', u'quarri', u'plan', u'refus'] [u'insur', u'erupt', u'hospit'] [u'integr', u'defenc', u'forc', u'head', u'malaysia'] [u'investig', u'probe', u'plane', u'crash'] [u'iraqi', u'protest', u'raid', u'kill', u'civilian'] [u'iraqi', u'return', u'year', u'exil', u'saudi'] [u'ireland', u'squad', u'recal', u'captain', u'wood'] [u'japanes', u'consum', u'like', u'tariff'] [u'journalist', u'murder', u'custodi', u'iran', u'vice', u'presid'] [u'juri', u'hear', u'woman', u'didnt', u'mean', u'kill', u'partner'] [u'kalli', u'miss', u'second', u'test', u'england'] [u'knee', u'injuri', u'forc', u'ikin', u'retir'] [u'knight', u'hope'] [u'koala', u'pill'] [u'labor', u'demand', u'ruddock', u'resign', u'atsic', u'tape'] [u'labor', u'warn', u'live', u'sheep', u'export', u'clean'] [u'laker', u'bryant', u'spotlight', u'open'] [u'lehmann', u'make', u'arsenal', u'debut'] [u'liberian', u'rebel', u'declar', u'ceas'] [u'lille', u'rubbish', u'bangladesh', u'seri'] [u'deni', u'bail', u'child', u'porn', u'case'] [u'jail', u'sexual', u'abus', u'girl'] [u'plead', u'guilti', u'babi', u'manslaught', u'charg'] [u'marin', u'institut', u'chief', u'take', u'budget', u'claim'] [u'martyn', u'restart', u'intern', u'career'] [u'mcewen', u'cook'] [u'mcintosh', u'replac', u'undecid'] [u'meander', u'oppon', u'reject', u'viabil', u'propos'] [u'melbourn', u'steel', u'disput', u'drag'] [u'face', u'abalon', u'theft', u'charg'] [u'miner', u'want', u'seiz', u'golden', u'opportun'] [u'minist', u'seek', u'region', u'develop', u'fund'] [u'minist', u'examin', u'illeg', u'fish', u'decis'] [u'miss', u'teen', u'reunit', u'parent'] [u'countri', u'student', u'appli', u'medicin', u'dentistri'] [u'place', u'need', u'address', u'doctor', u'shortag'] [u'nation', u'teacher', u'strike', u'card'] [u'natur', u'reserv', u'northern', u'forest'] [u'nelson', u'claim', u'hole', u'labor', u'polici'] [u'levi', u'help', u'market', u'pork'] [u'newman', u'face', u'servic', u'ax'] [u'video', u'creat', u'empathi', u'violent', u'crimin'] [u'nightclub', u'wage', u'trade', u'hour'] [u'korean', u'nuke', u'number', u'think', u'tank'] [u'turtl', u'recoveri', u'plan'] [u'sight', u'public', u'health', u'fund', u'feud'] [u'lobbi', u'newcastl', u'wollongong', u'fund'] [u'overlap', u'nativ', u'titl', u'confus', u'claimant'] [u'patterson', u'call', u'state', u'support', u'health'] [u'pentagon', u'scrap', u'terror', u'bet', u'scheme'] [u'philippin', u'militari', u'intellig', u'chief', u'quit'] [u'philippin', u'troop', u'captur', u'sayyaf', u'rebel'] [u'phone', u'cut', u'hamper', u'fight', u'inquiri', u'tell'] [u'pilot', u'dead', u'ultralight', u'crash'] [u'dept', u'chief', u'defend', u'role', u'iraq', u'disput'] [u'polic', u'hunt', u'pair', u'steal', u'vehicl'] [u'polic', u'probe', u'mine', u'vandal'] [u'polic', u'seek', u'public', u'help', u'bodi'] [u'prosecutor', u'demand', u'jail', u'report'] [u'case', u'tafe', u'move'] [u'public', u'polici', u'input'] [u'public', u'look', u'armidal', u'plan'] [u'push', u'yeppoon', u'truck', u'bypass'] [u'push', u'telstra', u'sell'] [u'teacher', u'nation', u'strike'] [u'rann', u'order', u'inquiri', u'plea', u'bargain'] [u'decis', u'expect', u'spark', u'grower', u'anger'] [u'ruddock', u'promis', u'obey', u'famili', u'court', u'decis'] [u'ruddock', u'robinson', u'feud', u'caus', u'harm', u'odonoghu'] [u'rusedski', u'get', u'support', u'rat', u'rant'] [u'saddam', u'tape', u'vow', u'aveng', u'son'] [u'sapphir', u'russia'] [u'search', u'continu', u'miss', u'angler'] [u'serena', u'sidelin', u'open'] [u'shark', u'anderson'] [u'shark', u'expect', u'anderson'] [u'sharon', u'push', u'secur', u'barrier'] [u'sierra', u'leon', u'rebel', u'leader', u'dead'] [u'small', u'busi', u'grant', u'hurdl', u'need', u'chang'] [u'snowfal', u'strand', u'mount', u'macedon'] [u'solomon', u'intervent', u'forc', u'head', u'meet', u'militia'] [u'solomon', u'announc', u'cabinet', u'reshuffl'] [u'solomon', u'rebel', u'leader', u'surrend', u'weapon'] [u'soni', u'win', u'modchip', u'copyright', u'appeal'] [u'sorenstam', u'emot', u'drain', u'british'] [u'station', u'closur', u'spark', u'weed', u'concern'] [u'stone', u'play', u'spotlight', u'post', u'sar'] [u'strand', u'atlant', u'rower', u'call', u'help'] [u'stuart', u'monument', u'agenda', u'council'] [u'super', u'leagu', u'star', u'jail', u'street', u'brawl'] [u'superman', u'cape', u'go', u'hammer'] [u'sydney', u'jail', u'fraud'] [u'tasmania', u'await', u'decis'] [u'teacher', u'consid', u'strike'] [u'thwait', u'water', u'irrig', u'claim'] [u'town', u'name', u'broadband', u'studi'] [u'tribun', u'consid', u'pay', u'matern', u'leav'] [u'troubl', u'bowl', u'club', u'imag'] [u'tuqiri', u'sign', u'waratah'] [u'ultralight', u'crash', u'near', u'longreach'] [u'underdog', u'mundin', u'titl', u'upset'] [u'union', u'air', u'fear', u'age', u'care', u'hostel', u'standard'] [u'union', u'float', u'plan', u'boost', u'nurs', u'retent'] [u'reject', u'guid', u'claim'] [u'uni', u'good', u'mark', u'guidebook'] [u'unstabl', u'build', u'affect', u'probe'] [u'urgent', u'meet', u'seek', u'port', u'kembla', u'loss'] [u'concern', u'toll', u'ord'] [u'examin', u'latest', u'saddam', u'tape'] [u'keep', u'sept', u'report', u'secret'] [u'terror', u'warn', u'mistak', u'govt'] [u'investig', u'iraqi', u'civilian', u'death', u'claim'] [u'vandal', u'suspect', u'albani', u'blackout'] [u'vaughan', u'smith', u'sight'] [u'veron', u'advis', u'talk', u'chelsea', u'report'] [u'rain', u'help', u'say', u'water', u'board'] [u'seek', u'state', u'support', u'mccabe', u'case'] [u'ticket', u'inspector'] [u'viduka', u'need', u'club', u'say', u'agent'] [u'club', u'sunday', u'night', u'trial'] [u'agricultur', u'tip', u'lead', u'nation', u'export'] [u'wallabi', u'dump', u'burk'] [u'whyalla', u'council', u'idea'] [u'wilson', u'life', u'harder', u'webber'] [u'wilson', u'tast', u'jaguar'] [u'workcov', u'consid', u'court', u'compo', u'decis'] [u'militari', u'offic', u'face', u'rebellion', u'charg'] [u'doctor', u'hold', u'medic', u'indemn', u'concern'] [u'opposit', u'back', u'health', u'agreement'] [u'push', u'increas', u'age', u'fund'] [u'adventur', u'tourism', u'firm', u'closer', u'insur'] [u'afghan', u'landslid', u'claim'] [u'defend', u'rent', u'rise', u'slug'] [u'ambush', u'kill', u'soldier', u'wound', u'iraq'] [u'amrozi', u'look', u'forward', u'martyr', u'death'] [u'area', u'open', u'scallop', u'trawler'] [u'arroyo', u'warn', u'philippin', u'coup', u'threat'] [u'australia', u'garbag', u'generat', u'report'] [u'australia', u'threaten', u'walkout', u'trade', u'talk'] [u'avellino', u'court', u'case', u'drag'] [u'bank', u'push', u'ord', u'month', u'high'] [u'beatti', u'urg', u'listen', u'rural', u'concern'] [u'beckham', u'keen', u'play', u'footbal'] [u'biker', u'mourn', u'death', u'british', u'champion', u'hislop'] [u'black', u'cap', u'face', u'indian', u'ordeal', u'warn', u'ganguli'] [u'blair', u'admit', u'need', u'regain', u'public', u'trust'] [u'blaze', u'damag', u'railton', u'hous'] [u'blunder', u'blame', u'warn', u'confus'] [u'bok', u'drop', u'joost', u'test', u'shake'] [u'british', u'museum', u'face', u'legal', u'action', u'aborigin'] [u'bulldog', u'hugh', u'cop', u'week', u'knee'] [u'bureaucrat', u'speak', u'educ', u'plan'] [u'burton', u'name', u'commission'] [u'bush', u'reject', u'call', u'marriag'] [u'businessman', u'give', u'immigr'] [u'businessman', u'make', u'million', u'prostat', u'donat'] [u'businessman', u'deport', u'say', u'ruddock'] [u'wild', u'bounti'] [u'call', u'rat', u'movi', u'legalis'] [u'cambodian', u'elect', u'outcom', u'remain', u'balanc'] [u'canadian', u'director', u'tackl', u'pompeii', u'epic'] [u'carey', u'bassett', u'return', u'sydney', u'clash'] [u'cattl', u'council', u'take', u'japan', u'tariff', u'protest'] [u'celtic', u'champion', u'leagu', u'flyer'] [u'claim', u'local', u'govt', u'reform', u'caus', u'confus'] [u'concern', u'air', u'declin', u'tour'] [u'consult', u'appoint'] [u'consum', u'urg', u'cautious', u'hire'] [u'coron', u'call', u'vicroad', u'overhaul'] [u'council', u'fire', u'power', u'station', u'push'] [u'council', u'deliv', u'rat', u'slug'] [u'council', u'want', u'time', u'consid', u'merger'] [u'court', u'dismiss', u'porter', u'appeal'] [u'court', u'tell', u'qaeda', u'help', u'fund'] [u'cycl', u'event', u'hop', u'prove', u'profit'] [u'cyclist', u'converg', u'south', u'east', u'victoria'] [u'david', u'beckham', u'win', u'poll', u'british', u'bank', u'note'] [u'deadlin', u'loom', u'reef', u'rezon', u'submiss'] [u'deal', u'provid', u'natur', u'resourc'] [u'demetriou', u'launch', u'hunt', u'manag'] [u'domest', u'violenc', u'spotlight'] [u'downer', u'say', u'solomon', u'long'] [u'drug', u'chemic', u'seiz', u'servic', u'station', u'raid'] [u'edward', u'happi', u'meet', u'timber', u'worker', u'quota'] [u'dead', u'yemen', u'mosqu', u'shoot'] [u'elcho', u'island', u'bring', u'customari'] [u'elder', u'attend', u'order', u'meet'] [u'electrolux', u'worker', u'decid'] [u'elka', u'compet', u'hobart', u'hodg'] [u'fast', u'rail', u'link', u'group', u'consid', u'safeti', u'concern'] [u'father', u'slam', u'home', u'invas', u'killer'] [u'fear', u'air', u'crayfish', u'regul'] [u'fel', u'say', u'whistleblow', u'financi'] [u'ferguson', u'vow', u'veron', u'stay', u'manchest'] [u'probe', u'visit', u'manjimup'] [u'probe', u'urg', u'focus', u'bigger', u'pictur'] [u'iraqi', u'council', u'leader', u'name'] [u'fisherman', u'rescu', u'coast'] [u'kill', u'bombay', u'home', u'explos'] [u'flea', u'lose', u'world', u'high', u'jump', u'titl'] [u'flexibl', u'builder', u'lead', u'rise', u'approv'] [u'roehampton', u'director', u'guilti', u'insid'] [u'futur', u'power', u'shortag', u'unavoid', u'report'] [u'marriag', u'deviant', u'vatican', u'say'] [u'geoff', u'marsh', u'chairman', u'histori'] [u'grain', u'group', u'consid', u'contamin', u'issu'] [u'govt', u'blast', u'small', u'busi', u'insur', u'cost'] [u'govt', u'help', u'fund', u'nutritionist', u'posit'] [u'govt', u'reject', u'report', u'favour', u'option'] [u'group', u'look', u'hour', u'medic', u'centr'] [u'graham', u'withdraw', u'short', u'cours', u'champ'] [u'health', u'boost', u'plan', u'ballarat', u'indigen'] [u'health', u'talk', u'deadlock'] [u'hear', u'aid', u'increas', u'mening', u'risk', u'studi'] [u'heritag', u'list', u'seek', u'tambrey', u'centr'] [u'hewitt', u'serv', u'storm'] [u'hindu', u'leader', u'die', u'visit', u'mosqu', u'site'] [u'hobart', u'council', u'move', u'plastic', u'bag'] [u'hobart', u'golfer', u'take', u'biggest', u'stage'] [u'hope', u'buri', u'angel'] [u'hope', u'medic', u'director', u'stay', u'longer'] [u'hope', u'port', u'upgrad', u'benefit', u'grain', u'produc'] [u'hospit', u'orthopaed', u'woe', u'continu'] [u'hous', u'blaze', u'consid', u'suspici'] [u'hous', u'prompt', u'warn', u'parent'] [u'human', u'remain', u'miss', u'angler', u'polic'] [u'hundr', u'evacu', u'fire', u'rage', u'montana'] [u'hunter', u'temperatur', u'close', u'normal'] [u'nice', u'captain', u'warn', u'vaughan'] [u'indigen', u'violenc', u'discuss', u'confer'] [u'injur', u'mcgrath', u'knife'] [u'injur', u'norther', u'race', u'trainer'] [u'injuri', u'jinx', u'hit', u'capriati', u'clijster'] [u'inland', u'surf', u'lifesav', u'plan', u'make', u'wave'] [u'inquiri', u'consid', u'problem', u'gambl', u'woe'] [u'investig', u'begin', u'fatal', u'ultralight', u'crash'] [u'iraq', u'economi', u'year', u'recov', u'world', u'bank'] [u'israel', u'close', u'religi', u'site', u'muslim', u'tourist'] [u'johnson', u'pleas', u'build', u'pari'] [u'jone', u'turn', u'gregan', u'critic'] [u'judg', u'quash', u'steal', u'charg', u'anthoni'] [u'judg', u'prevent', u'bashir', u'attend', u'congress'] [u'june', u'spend', u'spree', u'boost', u'retail', u'figur'] [u'kean', u'readi', u'face', u'biggest', u'challeng', u'unit'] [u'kelli', u'win', u'silver', u'men', u'kilo', u'world', u'championship'] [u'klitschko', u'fight', u'lewi'] [u'landslid', u'kill', u'nepal'] [u'love', u'roll', u'histori'] [u'late', u'snowfal', u'resort'] [u'lethal', u'commit', u'lion', u'darci', u'stick'] [u'level', u'cross', u'chang', u'central', u'aust'] [u'long', u'catch', u'ralli'] [u'await', u'sentenc', u'babi', u'death'] [u'charg', u'camp', u'grind', u'vandal'] [u'die', u'crash'] [u'fin', u'indec', u'assault'] [u'skydiv', u'english', u'channel'] [u'maritim', u'colleg', u'move', u'diversifi', u'train'] [u'mayor', u'seek', u'knowl', u'quarri', u'plan', u'meet'] [u'mcloughlin', u'claim', u'tatt'] [u'merced', u'dampen', u'coulthard', u'sack', u'specul'] [u'industri', u'speak', u'work', u'hour'] [u'minist', u'offer', u'agricultur', u'dept', u'assur'] [u'mix', u'result', u'compani', u'profit', u'report'] [u'molik', u'down', u'diego'] [u'fire', u'control', u'southern', u'franc'] [u'fizzl', u'sizzl', u'affleck', u'lopez', u'film'] [u'mosley', u'leav', u'tiger', u'spain'] [u'moya', u'blame', u'rain', u'earli', u'exit', u'poland'] [u'threaten', u'quit', u'safeti'] [u'murray', u'mouth', u'dredg', u'appear', u'success'] [u'cotton', u'avail', u'plant'] [u'servic', u'assist', u'young', u'alcohol', u'abus'] [u'solomon', u'amnesti', u'enforc'] [u'charg', u'alleg', u'chain'] [u'rail', u'report', u'horrifi', u'minist'] [u'surviv', u'depend', u'gold', u'price'] [u'play', u'pakistan', u'south', u'africa', u'home'] [u'pakistan', u'flood', u'toll', u'top'] [u'patterson', u'confid', u'minist', u'meet'] [u'industri', u'put', u'fund', u'educ', u'centr'] [u'polic', u'bust', u'adelaid', u'drug', u'lab'] [u'polic', u'consid', u'schooli', u'week', u'problem'] [u'polic', u'drug', u'raid', u'uncov', u'chemic', u'stockpil'] [u'polic', u'identifi', u'possibl', u'motiv', u'brisban'] [u'polic', u'charg', u'famili', u'feud'] [u'polic', u'drug', u'charg'] [u'polic', u'oper', u'uncov', u'cannabi', u'plant'] [u'polic', u'promis', u'speed', u'crackdown'] [u'polic', u'question', u'woman', u'pedestrian', u'die'] [u'pottharst', u'gold'] [u'prepar', u'health', u'fight', u'warn'] [u'privaci', u'commission', u'investig', u'polic', u'access'] [u'public', u'input', u'seek', u'wind', u'farm', u'plan'] [u'push', u'poll', u'church', u'decis'] [u'scheme', u'gain', u'momentum'] [u'jail', u'life', u'wife', u'murder'] [u'nat', u'begin', u'elect', u'prepar'] [u'qsia', u'pleas', u'kemp', u'reef', u'meet'] [u'rail', u'plan', u'delay', u'savag'] [u'record', u'industri', u'legend', u'phillip', u'dead'] [u'region', u'await', u'decis'] [u'resourc', u'limit', u'plane', u'crash', u'probe'] [u'river', u'plan', u'pipelin'] [u'roch', u'face', u'embassi', u'bomb', u'plot', u'trial'] [u'roddick', u'set', u'rematch', u'rusedski'] [u'ronaldinho', u'spark', u'barca', u'past', u'milan'] [u'ronaldo', u'deni', u'put', u'holiday', u'pound'] [u'defend', u'road', u'closur'] [u'ruddock', u'rule', u'witch', u'hunt', u'leak', u'tape'] [u'ambul', u'reject', u'work', u'break', u'claim'] [u'safeti', u'bureau', u'wont', u'challeng', u'coron', u'whyalla'] [u'salt', u'work', u'staff', u'seek', u'rise'] [u'sapphir', u'face', u'quarter', u'final'] [u'scalefish', u'licenc', u'reduc'] [u'scan', u'forecast', u'norther', u'chang'] [u'school', u'vandal', u'spark', u'curfew', u'plan'] [u'schu', u'doldrum', u'ahead', u'home', u'race'] [u'sewerag', u'scheme', u'opposit', u'subsid'] [u'sexual', u'misconduct', u'author', u'sentenc', u'jail'] [u'shepparton', u'colleg', u'go', u'class', u'size', u'trend'] [u'shire', u'air', u'vcat', u'develop', u'concern'] [u'shire', u'think', u'chang', u'overstep', u'boundari'] [u'shoot', u'putter', u'myerscough', u'olymp', u'uphold'] [u'small', u'busi', u'bank', u'servic', u'microscop'] [u'solar', u'energi', u'perform', u'surgeri'] [u'south', u'africa', u'bring', u'adam', u'hall'] [u'spenc', u'get', u'communiti', u'council', u'respons'] [u'springborg', u'say', u'nat', u'chang'] [u'staff', u'withdraw', u'spark', u'doc', u'counsel', u'review'] [u'state', u'warn', u'sign', u'health', u'agreement', u'lose', u'fund'] [u'stone', u'acdc', u'rock', u'canadian', u'sar', u'concert'] [u'offer', u'cheap', u'treat', u'cancer', u'studi'] [u'super', u'exit', u'fee', u'come', u'senat', u'scrutini'] [u'supplier', u'blackout', u'state'] [u'union', u'meet', u'discuss', u'cut'] [u'teen', u'rob', u'polic', u'station'] [u'tenant', u'union', u'welcom', u'blacklist', u'law'] [u'theophan', u'briberi', u'sentenc', u'halv'] [u'thorp', u'freeman', u'greek', u'tourism', u'award'] [u'tiger', u'prowl', u'titl', u'defenc'] [u'toll', u'plan', u'tasrail', u'takeov'] [u'drop', u'earn', u'award', u'winemak'] [u'tough', u'terror', u'measur', u'introduc', u'port'] [u'tourist', u'drown', u'litchfield', u'nation', u'park'] [u'town', u'tidi', u'judg'] [u'townsvill', u'build', u'hous', u'boom'] [u'tuna', u'fisher', u'want', u'dredg', u'sooner'] [u'turkey', u'move', u'curb', u'militari'] [u'uluru', u'camel', u'seoul', u'opera', u'debut'] [u'ask', u'consid', u'liberia', u'resolut'] [u'union', u'warn', u'power', u'crisi'] [u'clarifi', u'terror', u'warn'] [u'economi', u'recoveri', u'sign', u'evid'] [u'north', u'korea', u'china', u'talk', u'earli', u'sept', u'report'] [u'soldier', u'attack', u'raid', u'continu'] [u'woman', u'want', u'imperson', u'miss', u'girl'] [u'vict', u'govt', u'reaffirm', u'glenrowan', u'pledg'] [u'victorian', u'hail', u'nation', u'wine', u'maker'] [u'water', u'restrict', u'effect', u'tomorrow'] [u'vodafon', u'want', u'feder', u'phone', u'tower'] [u'voic', u'tape', u'probabl', u'saddam'] [u'accus', u'costello', u'undermin', u'welfar', u'sector'] [u'wast', u'plant', u'claim', u'rubbish', u'edward'] [u'water', u'corp', u'consid', u'wastewat', u'plant'] [u'webb', u'reliev', u'familiar', u'territori'] [u'welsh', u'readi', u'race', u'hobart'] [u'wenger', u'confid', u'vieira', u'sign', u'contract'] [u'west', u'african', u'leader', u'hold', u'liberia', u'summit'] [u'woodsid', u'target', u'otway', u'basin'] [u'worker', u'stop', u'work', u'today'] [u'abus', u'children', u'like', u'suicid', u'academ'] [u'abus', u'victim', u'admit', u'relief', u'crowley', u'jail'] [u'retail', u'industri', u'give', u'plastic', u'warn'] [u'bow', u'pressur', u'final', u'host'] [u'agassi', u'rule', u'olymp', u'appear'] [u'pollut', u'breach', u'baffl', u'miner'] [u'alert', u'blunder', u'show', u'need', u'home', u'affair', u'crean'] [u'backbench', u'urg', u'philippin'] [u'alpin', u'resort', u'manag', u'submiss', u'close'] [u'alston', u'deni', u'govt', u'seek', u'appoint', u'review'] [u'anderson', u'vision', u'sydney', u'airport'] [u'anderson', u'say', u'deal', u'tree', u'clear', u'close'] [u'anderson', u'tight', u'lip', u'polit', u'futur'] [u'arbizu', u'lead', u'puma', u'world'] [u'armstrong', u'face', u'strong', u'challeng'] [u'end', u'week', u'high'] [u'aussi', u'qualifi', u'world', u'pursuit', u'challeng'] [u'australia', u'help', u'rebuild', u'solomon', u'island', u'prison'] [u'banana', u'budget', u'deliv', u'rat', u'slug'] [u'band', u'stilt', u'converg', u'flinder', u'island'] [u'bangladesh', u'eager', u'showdown'] [u'basebal', u'boost', u'gambier'] [u'beatti', u'spread', u'tree', u'clear', u'messag'] [u'beatti', u'open', u'outback'] [u'beckham', u'prepar', u'real', u'debut'] [u'bennett', u'tight', u'lip', u'shark', u'drama'] [u'breaker', u'hope', u'drought'] [u'britain', u'thoma', u'hobbl', u'pari', u'content'] [u'british', u'committe', u'say', u'iraq', u'conflict', u'hamper'] [u'bryant', u'attend', u'hear', u'rape', u'case', u'judg'] [u'bulk', u'bill', u'drop', u'lowest', u'rate', u'tasmania'] [u'burma', u'want', u'cool', u'releas'] [u'bushfir', u'probe', u'tell', u'region', u'leav', u'vulner'] [u'nation', u'bodi', u'screen', u'alcohol'] [u'feral', u'bounti'] [u'cambodia', u'king', u'stay', u'post', u'poll', u'brawl'] [u'cameroon', u'star', u'undergo', u'surgeri', u'crash'] [u'cancer', u'council', u'air', u'fear', u'feder', u'legisl'] [u'sector', u'drive', u'manufactur', u'growth'] [u'celt', u'aircraft', u'scare'] [u'champion', u'lyon', u'look', u'break', u'year', u'duck'] [u'child', u'detaine', u'case', u'adjourn'] [u'china', u'denounc', u'pentagon', u'report', u'threat', u'taiwan'] [u'chines', u'banker', u'jail', u'life', u'theft'] [u'civilis', u'outback', u'urg', u'attract', u'southern'] [u'claim', u'snowi', u'booz', u'work'] [u'claim', u'tropic', u'diseas', u'misdiagnosi', u'kill', u'dozen'] [u'cold', u'heat', u'bushfir', u'risk'] [u'colombian', u'asprilla', u'hotel', u'gunfight'] [u'confid', u'howard', u'make', u'assur', u'unit', u'debut'] [u'contract', u'plan', u'spark', u'cri', u'foul', u'play'] [u'coulthard', u'set', u'practic', u'pace', u'germani'] [u'council', u'adopt', u'mainten', u'budget'] [u'council', u'highlight', u'need', u'rate', u'rise'] [u'council', u'seek', u'lake', u'manag', u'probe'] [u'council', u'want', u'phone', u'hand', u'fund'] [u'court', u'say'] [u'court', u'rule', u'child', u'detent', u'case'] [u'crean', u'back', u'second', u'airport', u'say', u'decis'] [u'crean', u'launch', u'medicar', u'crisi', u'campaign'] [u'credit', u'union', u'merg', u'expand'] [u'critic', u'strengthen', u'gregan'] [u'project', u'highlight', u'lungfish', u'vulner'] [u'davi', u'contest', u'latrob'] [u'death', u'toll', u'pakistan', u'flood', u'rise'] [u'democrat', u'critic', u'land', u'sell'] [u'democrat', u'want', u'reef', u'fish'] [u'detent', u'children', u'hold', u'unlaw', u'judg', u'rule'] [u'devil', u'worship', u'cabbi', u'jail', u'assault'] [u'doctor', u'suspend', u'see', u'patient'] [u'dog', u'play', u'skin'] [u'dougherti', u'sleepwalk', u'share', u'scandinavian'] [u'downer', u'defend', u'solomon', u'forc', u'size'] [u'drake', u'resid', u'boost'] [u'driver', u'urg', u'alert', u'anim'] [u'dump', u'babi', u'unit', u'famili'] [u'economist', u'predict', u'rat', u'rise'] [u'energi', u'concern', u'fast', u'track', u'power', u'plant'] [u'england', u'good', u'admit', u'vaughan'] [u'environment', u'snapshot', u'show', u'mix', u'result'] [u'environ', u'benefit', u'site', u'practic'] [u'farmer', u'voic', u'agricultur', u'research', u'concern'] [u'fenukitau', u'get', u'world', u'ahead', u'hammond'] [u'ferrero', u'struggl', u'polish'] [u'fight', u'stop', u'monrovia'] [u'await', u'visa', u'applic'] [u'storm', u'forward', u'nikau', u'amput'] [u'unesco', u'director', u'fear', u'aust', u'democraci'] [u'fred', u'hollow', u'foundat', u'welcom', u'vodka', u'remov'] [u'frentzen', u'face', u'uncertain', u'futur'] [u'funer', u'home', u'anger', u'veteran'] [u'gene', u'profil', u'unnecessari', u'cancer'] [u'general', u'manag', u'leav', u'launceston', u'council'] [u'golden', u'gane', u'get', u'aussi', u'keirin', u'rival'] [u'goldfield', u'domest', u'violenc', u'rise'] [u'govern', u'alarm', u'teenag', u'spender'] [u'govern', u'help', u'council', u'damag', u'claim'] [u'govt', u'agre', u'ethanol', u'label', u'deadlin'] [u'govt', u'sign', u'jabiluka', u'clean'] [u'govt', u'analys', u'bushfir', u'inquiri', u'report'] [u'shadow', u'leader', u'sposa', u'michigan'] [u'graham', u'withdraw', u'short', u'cours', u'champ'] [u'grand', u'blanc', u'score', u'round'] [u'gresko', u'commit', u'blackburn'] [u'heavi', u'fight', u'erupt', u'liberian', u'capit'] [u'heidfeld', u'rankl', u'raikkonen'] [u'henin', u'hardenn', u'toil', u'outlast', u'dementieva'] [u'undergo', u'human', u'trial'] [u'hodgson', u'sign', u'raider'] [u'hope', u'centr', u'help', u'indigen', u'communiti'] [u'hundr', u'expect', u'mourn', u'shoot', u'victim'] [u'hunter', u'economi', u'perform'] [u'inquiri', u'open', u'death', u'british', u'weapon', u'expert'] [u'iron', u'plan', u'promis', u'boost', u'north', u'west'] [u'israel', u'demand', u'pledg', u'releas', u'palestinian'] [u'israel', u'soccer', u'stay'] [u'fund', u'announc', u'north', u'east'] [u'journalist', u'sack', u'interview', u'alleg'] [u'judg', u'admit', u'pinochet'] [u'keegan', u'hop', u'better', u'fare', u'fowler'] [u'kodak', u'shed', u'posit'] [u'leagu', u'club', u'reject', u'administr', u'claim'] [u'leed', u'stand', u'jail', u'leagu', u'star'] [u'lippi', u'blast', u'juve', u'player', u'unit', u'defeat'] [u'lithuanian', u'leader', u'cross', u'line'] [u'littl', u'brother', u'watch', u'council'] [u'yang', u'power', u'plan', u'capac', u'boost'] [u'malthous', u'laidley', u'concern', u'draft', u'structur'] [u'die', u'truck', u'incid'] [u'custodi', u'flight', u'secur', u'breach'] [u'jail', u'life', u'kill', u'partner'] [u'jail', u'sexual', u'assault', u'teen', u'girl'] [u'manjimup', u'hop', u'cash', u'truffl', u'develop'] [u'march', u'protest', u'council'] [u'martial', u'aceh', u'wont', u'remain', u'indefinit'] [u'martyn', u'wont', u'rule', u'season'] [u'mcdermott', u'insid', u'trade', u'sentenc', u'suspend'] [u'mcgrath', u'go', u'knife'] [u'mcgrath', u'undergo', u'ankl', u'surgeri'] [u'media', u'puzzl', u'tilt', u'melbourn'] [u'meet', u'consid', u'nativ', u'titl', u'claim'] [u'megawati', u'denounc', u'muslim', u'milit', u'dogma'] [u'cwealth', u'grave', u'vandalis', u'franc'] [u'nation', u'seek', u'integr', u'climat', u'chang', u'track'] [u'nat', u'dismiss', u'support', u'breakaway', u'conserv'] [u'nat', u'renew', u'call', u'water', u'support'] [u'accc', u'chief', u'say', u'wont', u'soft', u'busi'] [u'newcastl', u'highlight', u'whoop', u'cough', u'case'] [u'label', u'reveal', u'true', u'cost', u'medicin'] [u'manag', u'age', u'care', u'home'] [u'korea', u'accept', u'talk', u'format', u'seoul'] [u'korea', u'agre', u'nuclear', u'talk'] [u'govt', u'urg', u'releas', u'rail', u'crash', u'report'] [u'mobil', u'phone', u'coverag', u'phenomen', u'alston', u'say'] [u'odwyer', u'talk', u'cowboy', u'offici'] [u'compani', u'stand', u'trial', u'alleg', u'burma'] [u'older', u'travel', u'boost', u'domest', u'tourism'] [u'ombudsman', u'review', u'child', u'abus', u'case'] [u'pakistani', u'babi', u'home'] [u'palestinian', u'author', u'reject', u'isra', u'withdraw'] [u'paradorn', u'face', u'nemesi', u'henman', u'washington', u'semi'] [u'penalti', u'jack', u'water', u'restrict'] [u'peru', u'appeal', u'japan', u'reject', u'fujimori'] [u'owner', u'warn', u'bait', u'death'] [u'plan', u'public', u'liabil', u'seminar'] [u'ask', u'interven', u'hospit', u'fund'] [u'welcom', u'north', u'korea', u'respons', u'talk', u'plan'] [u'wont', u'break', u'health', u'impass'] [u'polic', u'probe', u'sniper', u'plot', u'arroyo'] [u'polic', u'search', u'miss'] [u'public', u'input', u'seek', u'wilder', u'area', u'visitor'] [u'race', u'refus', u'lift', u'lifetim', u'fine'] [u'question', u'rais', u'resourc', u'manag'] [u'radic', u'sunni', u'islam', u'rise', u'iraq'] [u'ratepay', u'council', u'question', u'opportun'] [u'rebat', u'rainwat', u'tank'] [u'redneck', u'imag', u'thing', u'past', u'nat', u'leader'] [u'refere', u'troubl', u'nice', u'viduka'] [u'republican', u'confid', u'find', u'iraqi', u'weapon'] [u'resort', u'plan', u'year', u'away'] [u'retail', u'pledg', u'halv', u'plastic'] [u'robertson', u'clarifi', u'pearc', u'meet'] [u'roddick', u'win', u'rusedski', u'rematch', u'agassi', u'charg'] [u'rooney', u'aim', u'earli', u'return'] [u'roo', u'punt', u'archer', u'lion', u'clash'] [u'rooster', u'deni', u'raider', u'death'] [u'rspca', u'consid', u'prosecut', u'hors', u'neglect'] [u'saboteur', u'blame', u'iraqi', u'pipelin', u'blast'] [u'celebr', u'live', u'art', u'festiv'] [u'saddam', u'daughter', u'arriv', u'jordan'] [u'saddam', u'urg', u'iraqi', u'await', u'return'] [u'sandfli', u'put', u'bite', u'resid'] [u'scandinavian', u'master', u'lead', u'score', u'round'] [u'scholarship', u'chilcar', u'worker'] [u'schumach', u'acus', u'mclaren', u'team', u'order'] [u'scott', u'line', u'lion', u'carey', u'name', u'crow'] [u'scud', u'join', u'hewitt'] [u'search', u'underway', u'babi', u'steal'] [u'sele', u'hop', u'return', u'time', u'open'] [u'sharemarket', u'hit', u'high', u'note'] [u'shire', u'chirpi', u'tourism', u'plan'] [u'policemen', u'injur', u'ankara', u'explos'] [u'smith', u'domin', u'england'] [u'solomon', u'forc', u'crack', u'trade'] [u'strong', u'crowd', u'expect', u'festiv'] [u'student', u'acquit', u'cricket', u'murder'] [u'support', u'group', u'outrag', u'vatican', u'marriag'] [u'sydney', u'airport', u'blueprint', u'renew', u'labor'] [u'sydney', u'airport', u'plan', u'reignit', u'restrict', u'debat'] [u'tafe', u'look', u'exchang', u'project'] [u'talk', u'resum', u'hospit', u'disput'] [u'talk', u'underway', u'resolv', u'orthopaed', u'woe'] [u'tariff', u'protest', u'fall', u'deaf', u'ear'] [u'hous', u'environment', u'friend'] [u'tasmania', u'benefit', u'electr', u'shortag'] [u'taylor', u'wont', u'troop', u'arriv', u'aid'] [u'telescop', u'focus', u'west', u'shire'] [u'telstra', u'review', u'sack', u'woman'] [u'timber', u'worker', u'fund', u'issu'] [u'tourism', u'chief', u'reject', u'rail', u'tour', u'claim'] [u'trial', u'consid', u'integr', u'crop'] [u'tuckey', u'target', u'tent', u'embassi', u'camper'] [u'tuckey', u'tour', u'illeg', u'fish', u'boat'] [u'union', u'happi', u'port', u'kembla', u'redund', u'deal'] [u'union', u'welcom', u'firefight', u'report'] [u'grand', u'prix', u'wait'] [u'growth', u'reduc', u'chanc', u'australian', u'rate'] [u'ratifi', u'trade', u'agreement', u'chile', u'singapor'] [u'seek', u'iraq', u'occup', u'death', u'toll'] [u'review', u'militari', u'forc', u'asia', u'pacif'] [u'vandal', u'target', u'jindabyn', u'school'] [u'nistelrooy', u'goal', u'light', u'unit'] [u'govt', u'offer', u'assur'] [u'webb', u'continu', u'british', u'open', u'love', u'affair'] [u'wiggin', u'beat', u'aussi', u'robert', u'track', u'pursuit', u'crown'] [u'wilson', u'make', u'steadi', u'debut'] [u'wolv', u'sign', u'seneg', u'striker', u'camara'] [u'women', u'british', u'open', u'score', u'round'] [u'work', u'start', u'demolish', u'hospit'] [u'yacht', u'damag', u'collis', u'whale'] [u'youni', u'khan', u'join', u'list', u'pakistan', u'absente'] [u'govt', u'welcom', u'plastic', u'bag', u'phase', u'plan'] [u'agassi', u'down', u'blake', u'advanc', u'washington', u'semi'] [u'seek', u'fine', u'refund', u'price', u'collus', u'claim'] [u'angler', u'watch', u'green', u'sawfish'] [u'argentina', u'dirti', u'supermarket', u'secret', u'reveal'] [u'arroyo', u'say', u'secur', u'control', u'philippin'] [u'dead', u'bomb', u'blast', u'south'] [u'atsic', u'leader', u'canvass', u'opinion', u'tent', u'embassi'] [u'aussi', u'dip', u'cent'] [u'aussi', u'pace', u'team', u'pursuit', u'final'] [u'australia', u'cruis', u'victori', u'bangladesh'] [u'australian', u'oneil', u'suffer', u'neck', u'injuri', u'race', u'crash'] [u'bird', u'recov', u'diesel', u'spill'] [u'blair', u'face', u'question', u'expert', u'death'] [u'bodi', u'saddam', u'son', u'releas', u'burial'] [u'bomber', u'final', u'hop', u'aliv'] [u'bomb', u'level', u'russian', u'militari', u'hospit'] [u'bush', u'upbeat', u'north', u'korea', u'talk'] [u'research', u'plastic', u'altern'] [u'charg', u'farmer', u'true', u'price', u'water'] [u'canberra', u'face', u'sever', u'water', u'restrict'] [u'child', u'detaine', u'face', u'wait', u'futur'] [u'claim', u'hous', u'afford', u'inquiri', u'polit'] [u'come', u'hold', u'cholesterol'] [u'conflict', u'loom', u'indian', u'templ', u'pledg'] [u'crow', u'concess', u'final'] [u'diet', u'affect', u'genet', u'express', u'studi', u'find'] [u'docker', u'continu', u'domin', u'home'] [u'documentari', u'maker', u'enact', u'histor', u'trial'] [u'dudek', u'help', u'liverpool', u'scoreless', u'draw'] [u'dutch', u'plea', u'bare', u'bottom'] [u'eel', u'withstand', u'late', u'tiger', u'onslaught'] [u'electr', u'jolt', u'give', u'chemotherapi', u'head', u'start'] [u'embattl', u'shark', u'extend', u'bronco', u'slump'] [u'emir', u'say', u'sydney', u'need', u'second', u'airport'] [u'envoy', u'arriv', u'liberia', u'talk'] [u'fear', u'power', u'blackout', u'wake', u'util', u'reform'] [u'ferrero', u'slide', u'polish', u'open'] [u'caus', u'damag', u'brisban', u'high', u'school'] [u'funer', u'hold', u'home', u'invas', u'victim'] [u'strike', u'distanc', u'michigan'] [u'affect', u'home', u'price', u'stamp', u'duti', u'bacon'] [u'heavi', u'fight', u'liberia', u'presid', u'urg'] [u'henin', u'hardenn', u'carlsbad', u'semi'] [u'hewitt', u'battl', u'semi', u'final'] [u'high', u'profil', u'offici', u'quit', u'cpsu'] [u'hobart', u'host', u'swim', u'titl'] [u'judg', u'halt', u'bryant', u'skip', u'court', u'appear'] [u'labor', u'say', u'hous', u'polici', u'help', u'build'] [u'law', u'enforc', u'control', u'technolog'] [u'liber', u'reliv', u'elect', u'disast'] [u'liberian', u'leader', u'leav', u'capit'] [u'littl', u'bear', u'surpris', u'croat', u'flasher'] [u'lizard', u'hors', u'compet', u'limelight'] [u'jail', u'year', u'firearm'] [u'shoot', u'dead', u'sydney', u'park'] [u'martyn', u'dedic', u'game'] [u'milit', u'arrest', u'arafat', u'headquart'] [u'mirror', u'hamper', u'women', u'exercis'] [u'soldier', u'iraq', u'strike'] [u'parkland', u'boost', u'adelaid', u'green', u'space'] [u'zealand', u'north', u'island', u'earthquak'] [u'nichola', u'prepar', u'play', u'london'] [u'rescu', u'capsiz', u'boat'] [u'korea', u'say', u'talk', u'nuclear', u'issu', u'take'] [u'health', u'ministri', u'ban', u'poster', u'breastfe'] [u'olymp', u'construct', u'unearth', u'classic', u'sit'] [u'origin', u'superman', u'cape', u'tight', u'fetch'] [u'oriol', u'winless', u'swift', u'kestrel', u'triumph'] [u'owner', u'face', u'charg', u'mistreat', u'brumbi'] [u'petrol', u'pump', u'display', u'ethanol', u'content'] [u'announc', u'hous', u'afford', u'inquiri'] [u'polic', u'despit', u'fanci', u'footwork'] [u'polic', u'head', u'solomon', u'weather', u'coast'] [u'polic', u'search', u'motiv', u'pharmacist', u'murder'] [u'potter', u'battl', u'pirat', u'spanish'] [u'protest', u'ralli', u'review', u'worker', u'comp', u'law'] [u'premier', u'rule', u'stamp', u'duti', u'review'] [u'ralf', u'lead', u'hockenheim', u'qualifi', u'webber', u'fourth'] [u'report', u'troop', u'odd', u'iraq'] [u'retail', u'agre', u'phase', u'plastic', u'bag'] [u'roo', u'wari', u'lion'] [u'saddam', u'daughter', u'accus', u'aid', u'betray'] [u'saddam', u'son', u'buri', u'tikrit'] [u'saddam', u'tape', u'like', u'authent'] [u'sauna', u'champion', u'turn', u'heat'] [u'schwarzenegg', u'pois', u'announc', u'polit', u'plan'] [u'flick', u'break', u'bollywood', u'formula'] [u'scott', u'shot', u'sweden'] [u'scud', u'fire', u'ace', u'kuerten'] [u'serena', u'miss', u'open'] [u'seven', u'injur', u'west', u'bank', u'protest'] [u'short', u'cours', u'record', u'tumbl', u'hobart'] [u'smith', u'hit', u'second', u'doubl', u'england', u'wilt'] [u'soldier', u'snooz', u'fridg', u'escap', u'iraq', u'heat'] [u'solomon', u'milit', u'agre', u'surrend', u'weapon'] [u'solomon', u'resid', u'turn', u'militari'] [u'storm', u'edg', u'warrior', u'eel', u'shark'] [u'storm', u'edg', u'warrior', u'thriller'] [u'sultan', u'wive', u'enjoy', u'weekend', u'away'] [u'swim', u'star', u'hobart'] [u'teacher', u'strike', u'gain', u'momentum'] [u'aussi', u'silver', u'world', u'track', u'titl'] [u'kill', u'kenyan', u'grenad', u'explos'] [u'authoris', u'peacekeep', u'liberia'] [u'jobless', u'rate', u'drop'] [u'journalist', u'sentenc', u'aceh'] [u'soldier', u'die', u'stray', u'bullet', u'wind', u'baghdad'] [u'soldier', u'kill', u'wound', u'iraq', u'ambush'] [u'soldier', u'kill', u'attack', u'north', u'baghdad'] [u'troop', u'kill', u'afghan', u'gunbattl'] [u'polic', u'appeal', u'help', u'murder', u'case'] [u'woman', u'murder', u'unit'] [u'wallabi', u'springbok', u'lock', u'break'] [u'wallabi', u'answer', u'critic', u'point'] [u'warlord', u'agre', u'talk', u'australian', u'forc'] [u'teacher', u'postpon', u'plan', u'strike'] [u'webb', u'slip', u'fourth', u'british', u'open', u'round'] [u'western', u'power', u'boss', u'say', u'govt', u'util', u'deregul'] [u'win', u'bomber', u'docker', u'lion', u'pie'] [u'woman', u'charg', u'alleg', u'assault', u'taxi', u'driver'] [u'worker', u'kill', u'pakistan', u'rocket', u'attack'] [u'kill', u'explos', u'catch', u'pakistan'] [u'afghan', u'troop', u'kill', u'anti', u'taliban', u'oper'] [u'agassi', u'roddick', u'washington'] [u'renew', u'talk', u'qanta', u'partnership'] [u'qaeda', u'tape', u'warn', u'cuba', u'prison'] [u'appoint', u'woman', u'judg', u'block', u'iraqi', u'citi'] [u'aussi', u'pursuit', u'team', u'take', u'gold', u'record', u'time'] [u'aussi', u'pursuit', u'team', u'take', u'gold', u'world', u'record', u'time'] [u'aussi', u'soldier', u'solomon', u'allow'] [u'aussi', u'women', u'ensur', u'finish'] [u'australian', u'deleg', u'wrap', u'tibet', u'tour'] [u'australia', u'race', u'victori'] [u'feng', u'shui', u'suck', u'politician', u'brain'] [u'bangladesh'] [u'bangladesh', u'cairn'] [u'beatti', u'back', u'brisban', u'resid'] [u'beckham', u'real', u'winner', u'china'] [u'beckham', u'make', u'real', u'debut'] [u'takeov', u'tasrail', u'stumbl', u'govt'] [u'bishop', u'pledg', u'church', u'support', u'child', u'abus'] [u'bodi', u'north', u'roadsid'] [u'bok', u'suspend', u'spite', u'nation', u'clash'] [u'bolivian', u'polic', u'seiz', u'cocain', u'shipment'] [u'build', u'india', u'collaps', u'blast', u'kill'] [u'bushfir', u'caus', u'havoc', u'western', u'canada'] [u'bushfir', u'rage', u'europ'] [u'bushwalk', u'uncov', u'human', u'remain', u'tent'] [u'claim', u'workcov', u'unfund', u'liabil', u'blow'] [u'custom', u'get', u'deal', u'say'] [u'custom', u'counterfeit', u'credit', u'card', u'sydney'] [u'dog', u'whip', u'south', u'dragon', u'knight', u'thriller'] [u'dynam', u'martyn', u'smash', u'australia', u'victori'] [u'east', u'timor', u'acquitt', u'bolster', u'indonesia', u'armi'] [u'miss', u'day'] [u'emir', u'boss', u'say', u'airlin', u'threat', u'qanta'] [u'england', u'begin', u'chase', u'lord'] [u'european', u'pride', u'parad', u'differ', u'fat'] [u'famili', u'lose', u'disabl', u'fund', u'labor'] [u'fear', u'disarm', u'solomon', u'milit', u'danger'] [u'feral', u'invit', u'attend', u'territori', u'ball'] [u'fewer', u'jail', u'bird', u'flee', u'nest'] [u'fight', u'continu', u'liberian', u'leader', u'meet', u'envoy'] [u'finn', u'steam', u'sauna', u'sit', u'glori'] [u'smaller', u'airlin', u'public', u'sector', u'tell'] [u'furyk', u'take', u'michigan', u'lead', u'shot'] [u'germani', u'men', u'team', u'sprint', u'crown'] [u'global', u'exploit', u'food', u'technolog', u'potenti'] [u'govt', u'deni', u'grab', u'talk'] [u'govt', u'reject', u'claim', u'trade', u'deal', u'push', u'drug'] [u'great', u'belgian', u'rival', u'clash', u'diego', u'final'] [u'hewitt', u'eas', u'final'] [u'index', u'show', u'onlin', u'grow'] [u'inform', u'hunt', u'saddam'] [u'injuri', u'put', u'heenan', u'doubt', u'nation'] [u'inzamam', u'set', u'resurrect', u'career'] [u'iraqi', u'wound', u'blast', u'baghdad', u'airport', u'road'] [u'isra', u'pianist', u'serenad', u'palestinian', u'ramallah'] [u'jone', u'fastest', u'breaststrok', u'qualifi'] [u'kefu', u'clear', u'injuri', u'doubt'] [u'kidnapp', u'kill', u'deliv', u'ransom', u'relat'] [u'lenton', u'continu', u'domin', u'hobart'] [u'liberian', u'leader', u'announc', u'exil', u'date'] [u'liberian', u'leader', u'relinquish', u'power'] [u'martin', u'begin', u'nation', u'tour', u'promot', u'invest'] [u'melbourn', u'polic', u'investig', u'women', u'death'] [u'million', u'chines', u'short', u'drink', u'water', u'amid'] [u'mobil', u'user', u'hazard', u'drink', u'driver'] [u'montoya', u'take', u'pole', u'quash', u'mclaren', u'transfer', u'rumour'] [u'deliv', u'realiti', u'check', u'mobil', u'coverag'] [u'nat', u'turn', u'attent', u'prostitut'] [u'festiv', u'celebr', u'indigen', u'cultur'] [u'korea', u'oppos', u'bolton', u'repres'] [u'educ', u'deni', u'misrepres', u'violenc'] [u'ntini', u'burst', u'leav', u'england', u'face', u'humili'] [u'palestinian', u'milit', u'group', u'end', u'ceas'] [u'pani', u'matta', u'stay', u'toyota'] [u'pilot', u'unhurt', u'plane', u'skid', u'runway'] [u'pistolesi', u'hammer', u'koukalova', u'polish', u'titl'] [u'polic', u'crackdown', u'kid', u'alleg', u'terroris'] [u'polic', u'push', u'fund', u'banish', u'bulli'] [u'polic', u'question', u'bodi'] [u'port', u'crow', u'thriller', u'saint', u'smash', u'eagl'] [u'portug', u'seek', u'help', u'battl', u'fire', u'respit'] [u'power', u'gale', u'forc', u'wind', u'whip'] [u'join', u'opposit', u'brisban', u'detent'] [u'score', u'lowest', u'crime', u'rate', u'decad'] [u'raikkonen', u'ralf', u'german'] [u'ramallah', u'spell', u'mall'] [u'record', u'tumbl', u'short', u'cours', u'meet'] [u'rescuer', u'comb', u'ruin', u'russian', u'blast'] [u'rescuer', u'search', u'ruin', u'russian', u'blast', u'kill'] [u'research', u'shoot', u'simpl', u'ovarian', u'cancer', u'check'] [u'restrict', u'worst', u'case', u'western', u'power'] [u'ronaldinho', u'claim', u'unit', u'break', u'heart'] [u'russian', u'grankovskaya', u'win', u'women', u'sprint', u'titl'] [u'rwandan', u'court', u'sentenc', u'death', u'genocid'] [u'african', u'lobbi', u'group', u'meet', u'ahead', u'aid', u'meet'] [u'score', u'kill', u'pakistan', u'explos', u'blast'] [u'scott', u'share', u'lead', u'scandinavian', u'master'] [u'scud', u'go', u'ferreira'] [u'seven', u'rebel', u'soldier', u'latest', u'casualti'] [u'sinn', u'fein', u'leader', u'warn', u'assassin'] [u'state', u'question', u'scope', u'hous', u'inquiri'] [u'state', u'reject', u'stamp', u'duti'] [u'studi', u'assess', u'educ'] [u'swiss', u'madison', u'stuttgart'] [u'tasmania', u'urg', u'implement', u'smoke'] [u'teacher', u'spotlight', u'school', u'violenc'] [u'terrorist', u'loos', u'iraq'] [u'rescu', u'boat', u'break', u'coast'] [u'toll', u'refus', u'budg', u'tranz', u'rail', u'takeov'] [u'train', u'driver', u'kill', u'england', u'train', u'smash'] [u'unit', u'mull', u'chelsea', u'offer', u'veron'] [u'compil', u'onlin', u'global', u'atlas', u'mammal'] [u'journalist', u'free', u'aceh'] [u'guard', u'latest', u'qaeda', u'threat'] [u'govt', u'downplay', u'report', u'polic', u'bulli'] [u'govt', u'review', u'reckless', u'drive', u'law'] [u'liber', u'defeat', u'discuss'] [u'lib', u'elect', u'femal', u'presid'] [u'wallabi', u'accus', u'springbok', u'premedit', u'foul'] [u'warn', u'drug', u'price', u'tripl', u'free', u'trade'] [u'watchdog', u'probe', u'plagiar', u'scandal'] [u'webb', u'strike', u'distanc', u'british', u'open'] [u'woman', u'bad', u'burn', u'petrol', u'station', u'explos'] [u'woman', u'suffer', u'horrif', u'burn', u'petrol', u'station'] [u'world', u'secur', u'plan', u'track'] [u'young', u'isra', u'woman', u'disappear', u'kidnap', u'fear'] [u'kill', u'vietnam', u'train', u'smash'] [u'miner', u'stage', u'hour', u'snap', u'strike'] [u'cut', u'spend', u'year'] [u'aborigin', u'children', u'train', u'adventur'] [u'govt', u'plan', u'stop', u'land', u'specul'] [u'actu', u'accus', u'abandon', u'famili'] [u'survey', u'paint', u'bright', u'employ', u'pictur'] [u'airport', u'number'] [u'black', u'doctor', u'clear', u'lomu', u'play'] [u'alleg', u'bali', u'bomb', u'mastermind', u'claim', u'ignor'] [u'pressur', u'worker', u'comp', u'law'] [u'subsidiari', u'consid', u'expans'] [u'american', u'wed', u'top', u'offic'] [u'anti', u'high', u'rise', u'protest', u'yeppoon'] [u'auction', u'fail', u'sell', u'bush', u'hotel'] [u'australian', u'teen', u'unsaf', u'risk'] [u'aust', u'vet', u'band', u'help', u'timores', u'student'] [u'bayern', u'need', u'makaay', u'say', u'beckenbau'] [u'beckham', u'steal', u'limelight', u'real', u'arriv', u'japan'] [u'beij', u'put', u'chines', u'stamp', u'emblem'] [u'bettini', u'upstag', u'ullrich', u'cyclass'] [u'boat', u'industri', u'get', u'reef', u'assur'] [u'bok', u'test', u'surpris', u'gregan'] [u'bok', u'test', u'goug', u'surpris', u'gregan'] [u'brisban', u'surgeon', u'perform', u'tripl', u'transplant'] [u'busi', u'expect', u'economi', u'slow'] [u'longer', u'freez', u'crop'] [u'medic', u'centr', u'inquiri', u'man', u'death'] [u'nation', u'strategi', u'fight', u'poverti'] [u'moratorium'] [u'call', u'famili', u'reunit'] [u'canada', u'battl', u'feroci', u'bushfir'] [u'cancer', u'council', u'fight', u'plan', u'law'] [u'dealership', u'win', u'busi', u'award'] [u'carey', u'goal', u'rule', u'good'] [u'cat', u'escap', u'unharm', u'teen', u'take'] [u'probe', u'station', u'secur'] [u'cheri', u'blair', u'thing'] [u'china', u'plan', u'robot', u'space', u'trip', u'year'] [u'china', u'unfurl', u'olymp', u'flag'] [u'clark', u'say', u'minist', u'sack', u'atsic', u'offici'] [u'cockbain', u'add', u'wallabi', u'squad'] [u'comic', u'chase', u'global', u'laugh'] [u'comment', u'seek', u'plan'] [u'compani', u'order', u'clean', u'wast', u'manag'] [u'concern', u'air', u'bushfir', u'probe', u'submiss'] [u'coria', u'claim', u'titl', u'trick', u'polish', u'victori'] [u'coulthard', u'hop', u'build', u'podium', u'success'] [u'council', u'explor', u'merger', u'option'] [u'council', u'sell', u'land', u'rat', u'pay'] [u'council', u'unhappi', u'develop', u'plan', u'loss'] [u'croc', u'train', u'player'] [u'cronj', u'murder', u'report'] [u'crown', u'defend', u'secur', u'arrang', u'morn'] [u'csiro', u'scientist', u'issu', u'warn', u'greenhous', u'gas'] [u'death', u'toll', u'build', u'collaps', u'india', u'mount'] [u'death', u'toll', u'indian', u'blast', u'sit'] [u'technolog', u'help', u'polic', u'solv', u'miss'] [u'door', u'open', u'thorp', u'vaughan'] [u'dubbo', u'plan', u'indigen', u'scheme'] [u'edinburgh', u'fring', u'rise', u'ash'] [u'effort', u'club', u'privat', u'hand'] [u'indonesian', u'presid', u'wahid', u'hospit'] [u'explos', u'kill', u'injur', u'north', u'afghanistan'] [u'explos', u'devast', u'remot', u'pakistani', u'villag'] [u'extent', u'primus', u'injuri', u'unclear'] [u'fantast', u'protea', u'crush', u'england'] [u'fear', u'crop', u'spark', u'legal', u'stoush'] [u'ferrari', u'suffer', u'disappoint', u'race', u'season'] [u'ferreira', u'upset', u'hewitt', u'final'] [u'servic', u'fund', u'scheme', u'anger', u'farmer'] [u'peacekeep', u'leav', u'liberia'] [u'french', u'track', u'aussi', u'lead', u'chase'] [u'french', u'midfield', u'sibierski', u'join', u'citi'] [u'fruit', u'grower', u'fear', u'irrig', u'delay', u'impact'] [u'furyk', u'hold', u'wood', u'warwick', u'hill'] [u'priest', u'elect', u'bishop', u'post'] [u'germani', u'world', u'championship', u'second', u'gold'] [u'gerrard', u'liverpool', u'lose', u'galatasaray'] [u'beckham', u'time', u'zidan'] [u'govern', u'delay', u'disabl', u'review'] [u'govt', u'announc', u'inspector', u'general'] [u'govt', u'queri', u'licenc', u'decis', u'child', u'offend'] [u'govt', u'urg', u'disabl', u'age', u'care', u'centr'] [u'hanson', u'groin', u'injuri'] [u'hatchet', u'attack', u'victim', u'expect', u'leav', u'hospit'] [u'hawk', u'embattl', u'schwab'] [u'health', u'group', u'nation', u'solut'] [u'henin', u'hardenn', u'triumph', u'battl', u'belgium'] [u'henman', u'win', u'singl', u'titl', u'washington'] [u'hick', u'urg', u'govt', u'pressur', u'washington'] [u'highway', u'crash', u'leav', u'dead'] [u'hoeness', u'criticis', u'excess', u'madrid', u'spend'] [u'hope', u'hour', u'medic', u'servic', u'eas'] [u'hope', u'homeless', u'scheme', u'boost'] [u'howard', u'deni', u'mislead', u'parliament', u'ethanol'] [u'howard', u'kick', u'northern', u'tour', u'race'] [u'hunter', u'permit', u'remind'] [u'hyundai', u'chief', u'link', u'north', u'korea', u'bribe', u'leap'] [u'ident', u'human', u'remain', u'mysteri'] [u'illeg', u'detain', u'kid', u'court', u'case', u'resum', u'tomorrow'] [u'announc', u'record', u'profit'] [u'indonesian', u'rebel', u'peac', u'negoti', u'deni', u'terror'] [u'ingram', u'predict', u'tough', u'time', u'davi'] [u'inquest', u'hear', u'evid'] [u'iran', u'refus', u'hand', u'qaeda', u'member'] [u'iron', u'mike', u'tyson', u'file', u'bankruptci'] [u'isra', u'woman', u'shoot', u'bethlehem'] [u'israel', u'prison', u'list', u'disappoint', u'palestinian'] [u'israel', u'start', u'free', u'prison', u'wednesday'] [u'johnson', u'win', u'doubl', u'finland'] [u'juve', u'gain', u'reveng', u'italian', u'super'] [u'khamenei', u'word', u'nuclear', u'inspect'] [u'labor', u'argu', u'extern', u'check', u'uni'] [u'launceston', u'council', u'win', u'smoke', u'free', u'award'] [u'institut', u'say', u'bodi', u'corpor', u'disput'] [u'bowyer', u'robson', u'tell', u'fan'] [u'delight', u'west', u'deal'] [u'magnet', u'ferri', u'servic', u'begin'] [u'charg', u'drink', u'drive', u'take'] [u'take', u'fight', u'save', u'dog', u'life', u'suprem', u'court'] [u'matthew', u'pinpoint', u'pie', u'forward'] [u'mayor', u'confid', u'miner', u'work'] [u'mayor', u'consid', u'merger', u'posit'] [u'mcewen', u'back', u'rail'] [u'meat', u'union', u'defend', u'industri', u'disput'] [u'meet', u'consid', u'council', u'merger'] [u'meet', u'debat', u'illeg', u'fish'] [u'milit', u'remain', u'arafat', u'compound'] [u'mill', u'lenton', u'dead', u'heat', u'aussi', u'record'] [u'mine', u'confer', u'launch', u'attack', u'govt'] [u'mine', u'forum', u'tip', u'posit'] [u'mine', u'safeti', u'probe', u'finalis'] [u'minist', u'jeer', u'africa', u'aid', u'meet'] [u'miss', u'safe'] [u'mix', u'respons', u'tourism', u'merger', u'plan'] [u'montgomeri', u'track', u'sweden'] [u'montoya', u'stake', u'claim', u'titl'] [u'effort', u'urg', u'control', u'weed'] [u'soldier', u'arrest', u'link', u'fail'] [u'quit', u'threat', u'remain'] [u'mundin', u'bout', u'doubt'] [u'mundin', u'echol', u'bout', u'postpon'] [u'museum', u'seek', u'accredit'] [u'mutual', u'oblig', u'way', u'acoss'] [u'bendigo', u'polic', u'station', u'site', u'choos'] [u'flag', u'break', u'hill'] [u'taxat', u'offici', u'review', u'administr'] [u'korean', u'head', u'poll'] [u'korea', u'say', u'nuclear', u'talk', u'place', u'soon'] [u'sydney', u'water', u'restrict'] [u'crack', u'spear', u'tackl'] [u'govt', u'condemn', u'attack', u'holocaust', u'exhibit'] [u'part', u'blame', u'fire', u'stanhop'] [u'rural', u'chief', u'defend', u'hazard', u'reduct', u'burn'] [u'assess', u'role', u'fire', u'stanhop'] [u'reject', u'call', u'reduc', u'stamp', u'duti'] [u'refus', u'releas', u'algerian'] [u'packer', u'plan', u'stake', u'seek'] [u'palestinian', u'kill', u'west', u'bank', u'lay'] [u'pedestrian', u'die', u'road', u'incid'] [u'peopl', u'disabl', u'carri', u'cost'] [u'perilya', u'happi', u'break', u'hill', u'perform'] [u'phelp', u'prepar', u'champ'] [u'pioneer', u'good', u'south'] [u'air', u'road', u'complet', u'concern'] [u'denial', u'ethanol', u'talk', u'inadequ', u'say', u'labor'] [u'closer', u'look', u'indigen', u'communiti'] [u'warn', u'hous', u'review', u'wont', u'slash', u'price'] [u'polic', u'arrest', u'suspect', u'continu', u'member'] [u'polic', u'begin', u'investig', u'boat', u'crash'] [u'polic', u'drop', u'charg', u'muslim', u'leader'] [u'polic', u'hope', u'lead', u'miss', u'person', u'case'] [u'polic', u'road', u'victim'] [u'polic', u'probe', u'mooloolaba', u'blaze'] [u'polic', u'reject', u'claim', u'ident', u'child', u'rapist'] [u'polic', u'seach', u'arm', u'bandit'] [u'power', u'cut', u'unlik', u'despit', u'shortag'] [u'probe', u'navi', u'doctor', u'begin'] [u'propos', u'medicar', u'chang', u'target', u'campaign'] [u'nation', u'vote', u'abolish', u'stamp', u'duti'] [u'nat', u'chang', u'child', u'abus'] [u'parti', u'unit', u'detent', u'centr'] [u'rebel', u'leav', u'monrovia', u'peac', u'forc', u'arriv'] [u'record', u'tumbl', u'swim', u'championship'] [u'reiq', u'back', u'hous', u'price', u'probe'] [u'resid', u'merger', u'concern'] [u'resid', u'urg', u'feder', u'park'] [u'result', u'plagiar', u'probe', u'public'] [u'rlpa', u'urg', u'player', u'sign', u'contract'] [u'rogu', u'thai', u'eleph', u'captur', u'kill'] [u'ronaldinho', u'boo', u'unit', u'barca'] [u'saint', u'legend', u'hang', u'boot'] [u'sapphir', u'finish', u'fifth', u'world', u'titl'] [u'savag', u'speak', u'davi', u'decis'] [u'school', u'driver', u'plead', u'guilti', u'child'] [u'scott', u'clinch', u'scandinavian', u'crown'] [u'educ', u'plan', u'draw', u'right', u'life'] [u'shopper', u'urg', u'help', u'catch', u'servic', u'station', u'bandit'] [u'singapor', u'debat', u'foreign', u'worker', u'level', u'amid'] [u'month', u'aliv', u'pakistan', u'blast'] [u'soldier', u'silenc', u'ahead', u'mutini', u'hear'] [u'sorenstam', u'secur', u'slam', u'british', u'open', u'victori'] [u'sport', u'group', u'want', u'better', u'facil'] [u'stage', u'latest', u'celebr', u'trial'] [u'state', u'stand', u'stamp', u'duti', u'hous', u'review'] [u'strong', u'earthquak', u'rock', u'southern', u'iran'] [u'sugar', u'festiv', u'prove', u'sweet', u'time'] [u'support', u'port', u'secur', u'boost'] [u'survey', u'rais', u'concern', u'indigen', u'fish'] [u'vote', u'time', u'frame', u'growth'] [u'continu', u'fall'] [u'terror', u'fear', u'spark', u'port', u'secur', u'boost'] [u'thiev', u'put', u'jeopardi'] [u'thousand', u'expect', u'flock', u'sheepvent'] [u'timber', u'worker', u'hope', u'secur', u'fund'] [u'blaze', u'explos'] [u'player', u'dont', u'like', u'rise', u'henin', u'hardenn'] [u'tour', u'franc', u'give', u'clean', u'health'] [u'tourism', u'sector', u'bounc', u'sar'] [u'tourist', u'group', u'combin', u'effort'] [u'truss', u'air', u'water', u'blueprint', u'concern'] [u'turner', u'arrest', u'report'] [u'kill', u'learjet', u'crash'] [u'univers', u'help', u'boost', u'nurs', u'number'] [u'urgent', u'bridg', u'rich', u'poor', u'divid'] [u'scholar', u'trial', u'beij'] [u'troop', u'airport', u'north', u'baghdad', u'come'] [u'vanston', u'pour', u'cold', u'water', u'babi', u'bonus'] [u'vaughan', u'read', u'lacklustr', u'england', u'riot'] [u'author', u'clear', u'death', u'volunt'] [u'court', u'hear', u'lindi', u'defenc', u'doubl', u'murder', u'trial'] [u'govt', u'local', u'govt', u'stanc'] [u'teacher', u'threaten', u'action', u'violenc'] [u'water', u'bomb', u'helicopt', u'dispatch', u'canberra'] [u'water', u'legal', u'action', u'begin'] [u'wave', u'afghan', u'refuge', u'return', u'home'] [u'welsh', u'aim', u'victori', u'hobart'] [u'whale', u'crash', u'damag', u'yacht'] [u'william', u'appeal', u'punish'] [u'woman', u'give', u'birth', u'fli', u'sahara', u'desert'] [u'woman', u'hospit', u'bike', u'crash'] [u'world', u'titl', u'win', u'china', u'zhang'] [u'youth', u'urg', u'boost', u'communiti', u'involv'] [u'year', u'sentenc', u'jail', u'manslaught'] [u'dead', u'crash', u'bolivia'] [u'italian', u'german', u'namibia', u'road'] [u'news', u'chief', u'say', u'cut', u'come'] [u'accus', u'murder', u'escap', u'violent', u'victim'] [u'forestri', u'oper', u'face', u'shake'] [u'govern', u'tell', u'seek', u'compens'] [u'govt', u'servic', u'unlik', u'face', u'legal'] [u'teacher', u'offer', u'rise'] [u'urg', u'fire'] [u'agassi', u'power', u'past', u'niemey'] [u'aid', u'campaign', u'end', u'treatment', u'boycott'] [u'airlin', u'fli', u'high', u'posit', u'profit'] [u'black', u'chang'] [u'amnesti', u'claim', u'acehnes', u'kill', u'latest'] [u'sell', u'rural', u'franchis'] [u'asic', u'move', u'invest', u'transpar'] [u'asic', u'appeal', u'whitlam', u'decis'] [u'dead', u'jakarta', u'blast'] [u'atsic', u'chair', u'hop', u'address', u'famili', u'violenc'] [u'audit', u'show', u'port', u'stephen', u'leader', u'public'] [u'aust', u'help', u'anim', u'handl', u'practic', u'waff'] [u'australian', u'offici', u'marriott', u'report'] [u'ballarat', u'cancer', u'treatment', u'servic'] [u'bangladeshi', u'reject', u'smelli', u'currenc'] [u'bank', u'stock', u'push', u'higher'] [u'bayern', u'strike', u'boost', u'makaay', u'deal'] [u'beatti', u'stump', u'tree', u'clear', u'area'] [u'beckham', u'right', u'home', u'real'] [u'offic'] [u'bergqvist', u'montgomeri', u'record', u'stockholm'] [u'billabong', u'reject', u'report', u'leadership', u'rumbl'] [u'blast', u'fifth', u'jakarta', u'bomb', u'attack'] [u'bomb', u'blast', u'rock', u'jakarta', u'hotel'] [u'border', u'expect', u'quick', u'return', u'warn'] [u'border', u'tip', u'speedi', u'return', u'warn'] [u'airlift', u'shoot', u'accid'] [u'hospit'] [u'british', u'zoo', u'anim', u'cream', u'lolli'] [u'busi', u'confid', u'year', u'high'] [u'hous', u'review', u'look', u'state', u'land'] [u'part', u'factori', u'disput', u'worsen'] [u'cathol', u'school', u'staff', u'meet', u'discuss', u'unresolv'] [u'shed', u'job', u'say', u'union'] [u'childcar', u'centr', u'plan', u'overdevelop'] [u'china', u'jail', u'democraci', u'advoc'] [u'china', u'jail', u'democrat', u'campaign'] [u'clement', u'stun', u'moya', u'montreal'] [u'costello', u'set', u'sight', u'poker', u'machin'] [u'councillor', u'discuss', u'develop', u'propos'] [u'council', u'say', u'wast', u'contractor', u'standard'] [u'court', u'tell', u'child', u'detaine', u'need', u'ongo'] [u'crow', u'prepar', u'eagl', u'clash'] [u'lectur', u'concern', u'cut'] [u'support', u'claim', u'strong', u'econom', u'potenti'] [u'danih', u'vow', u'fight'] [u'darl', u'down', u'lose', u'har', u'race'] [u'detaine', u'mother', u'deni', u'husband'] [u'dimarco', u'scott', u'close', u'presid', u'berth'] [u'downer', u'warn', u'australian', u'avoid', u'jakarta'] [u'elector', u'chang', u'hinder', u'elect', u'chanc'] [u'eyewit', u'describ', u'bomb', u'scene', u'chao'] [u'fairfax', u'cours', u'profit'] [u'fairfax', u'share', u'jump', u'follow', u'strong', u'profit'] [u'fan', u'live', u'sleep', u'like', u'beckham'] [u'farmer', u'receiv', u'special', u'bushfir', u'fund'] [u'feder', u'polic', u'investig', u'jakarta', u'blast'] [u'govt', u'seek', u'indigen', u'forest'] [u'govt', u'urg', u'increas', u'region', u'airport'] [u'ferreira', u'aim', u'master', u'montreal'] [u'abat', u'zone', u'impact', u'rural', u'resid'] [u'firefight', u'die', u'help', u'extinguish', u'hous'] [u'round', u'power', u'restrict', u'success'] [u'judiciari'] [u'foreman', u'stay', u'illman', u'quit'] [u'lion', u'coach', u'return', u'gold', u'coast'] [u'fring', u'play', u'offer'] [u'furyk', u'rise', u'career', u'high', u'world', u'rank'] [u'ginger', u'compani', u'predict', u'loss'] [u'gold', u'welsh', u'mill', u'jone', u'hobart'] [u'gough', u'retir', u'test', u'cricket'] [u'govt', u'claim', u'raaf', u'base', u'expans', u'benefit'] [u'govt', u'develop', u'adelaid', u'land'] [u'govt', u'support', u'indigen', u'initi'] [u'govt', u'tri', u'hook', u'carp', u'catcher'] [u'govt', u'wont', u'comment', u'futur'] [u'graham', u'sign', u'tiger'] [u'greiner', u'vow', u'maintain', u'tobacco', u'link', u'despit'] [u'griffith', u'win', u'rave', u'broadway', u'debut'] [u'grower', u'want', u'immigr', u'raid', u'compo'] [u'hall', u'releas', u'worcestershir', u'semi'] [u'high', u'court', u'consid', u'elector', u'reform'] [u'high', u'nutrient', u'level', u'caus', u'water', u'exceed'] [u'home', u'lose', u'fire', u'rage', u'western', u'canada'] [u'hotspot', u'focus', u'marin', u'conserv'] [u'howard', u'flag', u'defenc', u'base'] [u'hussain', u'head', u'queue', u'slice', u'humbl'] [u'hutchison', u'record', u'loss'] [u'increas', u'tourism', u'gloucest', u'area'] [u'indigen', u'fish', u'method', u'face', u'scrutini'] [u'indonesian', u'armi', u'general', u'jail', u'timor'] [u'indonesian', u'presid', u'visit', u'hotel', u'blast', u'site'] [u'injuri', u'end', u'docker', u'waterhous', u'season'] [u'inquiri', u'tell', u'govt', u'medicar', u'polici', u'hurt', u'poor'] [u'iran', u'close', u'build', u'nuclear', u'bomb', u'report'] [u'isra', u'arrest', u'barrier', u'activist', u'support'] [u'judg', u'verdict', u'today', u'detent', u'centr'] [u'juri', u'ballarat', u'curfew'] [u'kentucki', u'stream', u'flow', u'bourbon'] [u'cottag', u'resid', u'oppos', u'redevelop'] [u'kidney', u'foundat', u'declar', u'alert', u'area'] [u'koperberg', u'reject', u'blame', u'firestorm'] [u'krige', u'contempl', u'legal', u'action', u'jone'] [u'lack', u'govt', u'support', u'water', u'cart', u'appal'] [u'landcar', u'urg', u'retain', u'autonomi'] [u'landhold', u'speak', u'opposit', u'pipelin'] [u'lawyer', u'appeal', u'child', u'detent', u'rule'] [u'lewi', u'fight', u'year', u'say', u'klitschko'] [u'liberian', u'celebr', u'peacekeep', u'arriv'] [u'liberia', u'peacekeep', u'await', u'reinforc'] [u'lib', u'showground', u'propos'] [u'licoric', u'factori', u'win', u'govt', u'grant'] [u'loit', u'earn', u'clash', u'seed', u'clijster'] [u'manilla', u'council', u'press', u'ahead', u'merger', u'plan'] [u'martin', u'head', u'south', u'drum', u'invest'] [u'martyn', u'prim', u'home', u'appear'] [u'mayor', u'rais', u'airport', u'secur', u'concern'] [u'medicar', u'chang', u'boost', u'rural', u'servic'] [u'meet', u'mazen', u'sharon', u'cancel'] [u'meet', u'hold', u'look', u'live', u'murray', u'propos'] [u'melbourn', u'scientist', u'win', u'award', u'cell', u'death'] [u'melbourn', u'showground', u'redevelop'] [u'milf', u'chief', u'die', u'peac', u'talk'] [u'mine', u'safeti', u'confer', u'focus', u'prevent'] [u'record', u'fall', u'hobart'] [u'weapon', u'surrend', u'solomon'] [u'morgan', u'begin', u'contract', u'talk', u'westpac'] [u'mundin', u'support', u'echol'] [u'nat', u'region', u'elector', u'boundari', u'chang'] [u'naval', u'offic', u'tell', u'medic', u'inquiri', u'gang', u'rape'] [u'neighbour', u'kick', u'stink', u'music', u'love', u'pig'] [u'neighbour', u'kick', u'stink', u'serenad', u'pig'] [u'australian', u'kill', u'jakarta', u'blast', u'dfat'] [u'council', u'alarm', u'resourc', u'manag'] [u'govt', u'tackl', u'wild', u'problem'] [u'kidney', u'diseas', u'tripl', u'nation', u'averag'] [u'nurs', u'home', u'death', u'blame', u'natur', u'caus'] [u'leav', u'cycl', u'stage', u'year'] [u'million', u'peopl', u'pakistan', u'flood'] [u'outback', u'project', u'receiv', u'architect', u'award'] [u'palestinian', u'prison', u'free', u'wednesday'] [u'paradorn', u'montreal'] [u'parapleg', u'lose', u'year', u'compo', u'claim'] [u'parti', u'come', u'costello'] [u'persuad', u'kid', u'fish', u'get', u'harder', u'sunfish'] [u'confid', u'north', u'korea', u'wont', u'target'] [u'inspect', u'alic', u'darwin', u'railway'] [u'meet', u'cape', u'york', u'indigen', u'leader'] [u'oppos', u'marriag'] [u'plan', u'china', u'trip'] [u'play', u'talk', u'retir'] [u'say', u'indigen', u'peopl', u'give'] [u'thank', u'darwin', u'hospit', u'grant'] [u'tour', u'indigen', u'communiti'] [u'polic', u'hunt', u'nude', u'hiker'] [u'polic', u'join', u'fight', u'school', u'cheat'] [u'polic', u'prepar', u'secur', u'report', u'habib'] [u'portug', u'calam', u'declar'] [u'power', u'confid', u'primus'] [u'prawn', u'trawler', u'sink', u'coast'] [u'premium', u'increas', u'fuel', u'insur', u'profit', u'turnaround'] [u'public', u'behav', u'despit', u'vandal', u'npws'] [u'pyongyang', u'urg', u'washington', u'drop', u'hostil', u'polici'] [u'qatar', u'crown', u'princ', u'diplomat'] [u'govt', u'urg', u'provid', u'afford', u'hous'] [u'queensland', u'coal', u'miner', u'strike', u'action'] [u'race', u'ident', u'ingham', u'pass', u'away'] [u'randel', u'urg', u'black', u'retali'] [u'real', u'unstopp', u'raul'] [u'reef', u'advertis', u'program', u'hail', u'success'] [u'resign', u'forc', u'elect', u'bendigo'] [u'retail', u'urg', u'develop', u'strategi'] [u'russian', u'uncov', u'giant', u'dinosaur', u'remain'] [u'increas', u'penalti', u'aggrav', u'crime'] [u'sampl', u'ridgeway', u'extend'] [u'premier', u'slam', u'cut'] [u'schumach', u'face', u'slip', u'crown'] [u'scienc', u'award', u'help', u'fund', u'cancer', u'research'] [u'shark', u'attack', u'affect', u'tourism', u'year'] [u'shier', u'blame', u'board', u'cut'] [u'copi', u'kennedi', u'solomon', u'swim'] [u'skin', u'cancer', u'victim', u'sue', u'employ'] [u'solomon', u'forc', u'plan', u'second', u'polic', u'post'] [u'sorenstam', u'address', u'major', u'weak', u'lytham'] [u'south', u'african', u'youngster', u'pile', u'miseri'] [u'south', u'africa', u'aviat', u'author', u'deni', u'cronj'] [u'south', u'east', u'road', u'toll', u'percent'] [u'spur', u'complet', u'kanout', u'sign'] [u'stanhop', u'apologis', u'koperberg', u'comment'] [u'star', u'cross', u'space', u'wed'] [u'stem', u'cell', u'campaign', u'focus', u'research'] [u'strong', u'economi', u'steer', u'sale', u'higher'] [u'student', u'flock', u'croc', u'festiv'] [u'stuttgart', u'start', u'quick', u'szabic', u'doubl'] [u'tamworth', u'workshop', u'improv', u'road', u'safeti'] [u'tasmanian', u'bishop', u'oppos', u'priest', u'nomin'] [u'move', u'guarante', u'shellfish', u'qualiti'] [u'tassi', u'town', u'paint', u'bridg'] [u'taxi', u'driver', u'voic', u'safeti', u'concern'] [u'teacher', u'action', u'compulsori', u'test'] [u'teenag', u'clichi', u'join', u'arsenal'] [u'traffic', u'congest', u'dilemma', u'loom', u'anderson', u'say'] [u'trial', u'hold', u'pirat', u'recruit'] [u'tripl', u'transplant', u'man', u'condit', u'improv'] [u'tripl', u'transplant', u'patient', u'start', u'recoveri'] [u'begin', u'talk', u'liberia', u'peacekeep', u'forc'] [u'union', u'claim', u'work', u'poor', u'rise'] [u'union', u'worker', u'comp', u'review'] [u'union', u'seek', u'safeguard', u'casual', u'worker'] [u'unit', u'make', u'inroad', u'long'] [u'call', u'china', u'free', u'tri', u'dissid'] [u'emphat', u'renew', u'indonesia', u'secur', u'warn'] [u'market', u'sign', u'pick'] [u'offici', u'deni', u'powel', u'quit'] [u'stock', u'fall', u'slight', u'lacklustr', u'session'] [u'releas', u'million', u'palestinian', u'refuge'] [u'giant', u'panda', u'pregnant', u'twin'] [u'vanston', u'criticis', u'carer', u'allow', u'review'] [u'teacher', u'launch', u'work', u'ban', u'protest'] [u'vote', u'bishop', u'postpon'] [u'elector', u'reform', u'hing', u'high', u'court', u'appeal'] [u'wagga', u'fashion', u'victim', u'public', u'liabil'] [u'warn', u'issu', u'firefight', u'capac'] [u'water', u'auction', u'grower', u'fear', u'increas', u'cut'] [u'water', u'pipelin', u'decis', u'month', u'away', u'anderson'] [u'welsh', u'blitz', u'butterfli', u'field'] [u'welsh', u'qualifi', u'fastest', u'butterfli', u'final'] [u'wet', u'line', u'busi', u'tasmania'] [u'william', u'plan', u'team', u'order'] [u'woman', u'assault', u'wagga', u'park'] [u'woman', u'hospit', u'road', u'accid'] [u'women', u'target', u'tafe', u'mechan', u'cours'] [u'woosi', u'pull', u'father', u'death'] [u'zimbabw', u'opposit', u'trim', u'anti', u'mugab', u'stanc'] [u'dead', u'congo', u'attack'] [u'iraqi', u'arrest', u'raid'] [u'troop', u'iraqi', u'wound', u'grenad', u'attack'] [u'academ', u'question', u'call', u'free', u'univers', u'studi'] [u'court', u'reserv', u'decis', u'diplomat', u'case'] [u'govt', u'defend', u'interim', u'teacher', u'offer'] [u'afghan', u'command', u'call', u'secur', u'upgrad'] [u'chief', u'say', u'earli', u'evid', u'point'] [u'forc', u'recruit', u'train', u'time'] [u'share', u'record'] [u'anglican', u'leader', u'see', u'tough', u'time', u'ahead'] [u'arsenal', u'outclass', u'ranger', u'british', u'battl'] [u'end', u'slight'] [u'athen', u'hope', u'emerg', u'champ'] [u'athen', u'race', u'olymp'] [u'attack', u'put', u'woman', u'hospit'] [u'aussi', u'rule', u'club', u'seek', u'salari'] [u'aussi', u'complet', u'clean', u'sweep'] [u'aussi', u'victori'] [u'aust', u'miss', u'benefit', u'multin', u'studi'] [u'australia', u'donat', u'patrol', u'boat', u'indonesian', u'polic'] [u'australian', u'urg', u'stay', u'away', u'indonesia'] [u'author', u'consid', u'trawler', u'salvag'] [u'baddeley', u'win', u'invit'] [u'bait', u'target', u'wild', u'dog', u'fox'] [u'bali', u'bomb', u'suspect', u'hail', u'jakarta', u'blast'] [u'bankrupt', u'tyson', u'need', u'king', u'debt'] [u'beatti', u'bush', u'track'] [u'beatti', u'promis', u'report', u'abus', u'claim'] [u'beatti', u'clear', u'messag', u'tree', u'issu'] [u'beckham', u'score', u'goal', u'real', u'madrid'] [u'berri', u'captain', u'bushrang'] [u'crowd', u'flock', u'sheepvent'] [u'turn', u'hear', u'dali', u'river', u'plan', u'concern'] [u'biker', u'guilti', u'offenc'] [u'blair', u'spokesman', u'apologis', u'kelli', u'slur'] [u'blaze', u'spark', u'hospit', u'evacu'] [u'braham', u'say', u'report', u'vindic', u'contain'] [u'break', u'hill', u'welcom', u'govt', u'film', u'support'] [u'bushfir', u'inquiri', u'hear', u'forest', u'polici', u'concern'] [u'govt', u'accept', u'blame'] [u'water', u'profit'] [u'car', u'reveal', u'vain', u'inspir'] [u'part', u'maker', u'lift', u'profit'] [u'part', u'worker', u'lock', u'say', u'union'] [u'cessnock', u'beat', u'jobless', u'blue'] [u'chamber', u'say', u'potato', u'claim', u'half', u'bake'] [u'chelsea', u'agre', u'west', u'midfield', u'cole'] [u'china', u'ignor', u'currenc', u'complaint'] [u'coke', u'pepsi', u'india', u'deni', u'pesticid', u'soft', u'drink'] [u'committe', u'urg', u'pool'] [u'concern', u'air', u'tafe', u'cours', u'expens'] [u'coron', u'deliv', u'kirk', u'murder', u'find'] [u'council', u'consid', u'surf', u'reef', u'plan'] [u'council', u'mediat', u'plan', u'fail'] [u'council', u'reject', u'plan', u'lionis', u'thunderbolt', u'cave'] [u'council', u'urg', u'reject', u'abalon', u'plan'] [u'court', u'clear', u'australia', u'post', u'liabil'] [u'croc', u'hope', u'charg', u'import', u'soon', u'train'] [u'croc', u'hope', u'turner', u'soon'] [u'cyclist', u'succumb', u'injuri'] [u'dairi', u'industri', u'look', u'oversea', u'market'] [u'death', u'toll', u'rise', u'portug', u'fire'] [u'defenc', u'expert', u'doubt', u'aust', u'base'] [u'democrat', u'leader', u'visit'] [u'dfat', u'updat', u'indonesia', u'travel', u'warn'] [u'dial', u'dolphin', u'mobil'] [u'doctor', u'warn', u'virus', u'rise', u'babi'] [u'doubt', u'cast', u'aussi', u'world', u'perform'] [u'doubt', u'rais', u'council', u'crackdown'] [u'downer', u'warn', u'attack'] [u'appeal', u'sentenc', u'diplomat', u'death'] [u'drought', u'news', u'cotton', u'product'] [u'drug', u'council', u'highlight', u'danger'] [u'drug', u'court', u'perman'] [u'educ', u'minist', u'target', u'aborigin', u'educ'] [u'educ', u'worker', u'condit', u'improv'] [u'emerg', u'dept', u'wait', u'time', u'reduc'] [u'criticis', u'pollut', u'sentenc'] [u'episcop', u'leader', u'approv', u'bishop'] [u'plan', u'fine', u'remedi', u'microsoft', u'abus'] [u'europ', u'pollut', u'pact', u'start'] [u'factori', u'blaze', u'control'] [u'farmer', u'drought', u'fund'] [u'farmer', u'urg', u'shut', u'gate', u'crime'] [u'feder', u'court', u'order', u'asylum', u'seeker', u'releas'] [u'fijian', u'doubl', u'murder', u'trial', u'end', u'insan'] [u'destroy', u'histor', u'centuri', u'templ', u'nepal'] [u'spark', u'warn'] [u'fire', u'spark', u'winter', u'warn'] [u'fisher', u'consid', u'legal', u'option'] [u'forestri', u'inquiri', u'hold', u'close'] [u'governor', u'unveil', u'neerkol', u'memori'] [u'pakistani', u'guilti', u'money'] [u'soccer', u'player', u'jail', u'gambl'] [u'fraser', u'restrict', u'spark', u'concern'] [u'gatlin', u'gun', u'rival', u'montgomeri', u'flop'] [u'bishop', u'elect', u'say', u'lead'] [u'german', u'girl', u'plead', u'short', u'sweati', u'policeman'] [u'gillespi', u'best', u'world', u'pont', u'say'] [u'govt', u'fund', u'cape', u'york', u'financ', u'scheme'] [u'green', u'warm', u'world', u'defenc'] [u'mishap', u'put', u'hospit'] [u'heart', u'failur', u'epidem', u'caus', u'hospit', u'crisi'] [u'hewitt', u'breez', u'montreal'] [u'high', u'court', u'reserv', u'decis', u'elector', u'reform'] [u'hop', u'drought', u'move', u'posit'] [u'hospit', u'ward', u'work', u'begin', u'soon'] [u'hundr', u'reject', u'merger', u'plan'] [u'indigen', u'help', u'program', u'expand'] [u'indigen', u'leader', u'want', u'govt', u'partnership'] [u'indonesia', u'foreshadow', u'tough', u'anti', u'terror', u'measur'] [u'indonesia', u'launch', u'anti', u'terror', u'crackdown'] [u'indonesia', u'vow', u'surrend', u'terror'] [u'rat', u'stay', u'hold'] [u'intern', u'school', u'step', u'secur'] [u'islam', u'council', u'condemn', u'bomb'] [u'israel', u'begin', u'releas', u'palestinian', u'prison'] [u'israel', u'extend', u'closur', u'headquart'] [u'jakarta', u'blast', u'deton', u'mobil', u'phone'] [u'jakarta', u'blast', u'toll', u'suspect'] [u'jakarta', u'bomb', u'ingredi', u'bali', u'bomb'] [u'jakarta', u'bomb', u'fuel', u'wall', u'pessim'] [u'jakarta', u'bomb', u'link', u'aceh', u'say', u'author'] [u'claim', u'jakarta', u'blast', u'report'] [u'johnson', u'steam', u'sweden'] [u'judg', u'sentenc', u'lawbreak'] [u'juror', u'excus', u'snowtown', u'trial'] [u'keeff', u'remain', u'cowboy', u'execut', u'spot'] [u'kewel', u'open', u'liverpool', u'account'] [u'kirner', u'urg', u'femal', u'replac', u'councillor'] [u'kuznetsova', u'keep', u'momentum', u'go'] [u'land', u'shortag', u'blame', u'hous', u'woe'] [u'launceston', u'cardiolog', u'boss', u'hospit', u'seek'] [u'liberia', u'take', u'step', u'peac', u'amid', u'taylor', u'confus'] [u'life', u'sentenc', u'south', u'korean', u'subway', u'arsonist'] [u'lomu', u'train', u'wellington'] [u'cost', u'accommod', u'declin', u'address'] [u'lower', u'rate', u'rise', u'offset', u'charg'] [u'court', u'peopl', u'smuggl', u'charg'] [u'shoot', u'dead', u'outsid', u'home'] [u'undergo', u'emerg', u'surgeri', u'stab'] [u'mar', u'readi', u'best', u'view', u'year'] [u'question', u'illeg', u'tobacco'] [u'mice', u'prove', u'damag', u'farmer'] [u'minist', u'discuss', u'public', u'liabil', u'insur'] [u'minist', u'sign', u'indemn', u'plan'] [u'minist', u'discuss', u'indemn', u'premium'] [u'money', u'print', u'plant', u'worker', u'strike'] [u'montgomeri', u'plan', u'return'] [u'matur', u'sugiyama', u'hit', u'stride'] [u'busi', u'usual', u'indonesia'] [u'hold', u'nurs', u'crisi', u'meet'] [u'welcom', u'time', u'reef', u'submiss'] [u'naracoort', u'minist', u'fight', u'decis'] [u'nasa', u'plan', u'resum', u'shuttl', u'flight', u'earli'] [u'breastfe', u'support', u'program', u'launch'] [u'night', u'patrol', u'disappear'] [u'brother', u'thank', u'malawian'] [u'decis', u'assist', u'suspens', u'israel'] [u'earli', u'start', u'lobster', u'fish'] [u'sight', u'tree', u'clear', u'debat'] [u'labor', u'support', u'base', u'crean', u'say'] [u'laugh', u'court', u'edinburgh', u'comedian'] [u'north', u'coast', u'water', u'tumbl'] [u'offic', u'tell', u'polic', u'inquiri', u'impedi'] [u'oppon', u'fight', u'detent', u'rule'] [u'pain', u'find', u'health', u'servic'] [u'pakistan', u'deni', u'aid', u'iran', u'nuclear', u'weapon', u'drive'] [u'palestinian', u'prison', u'releas'] [u'parent', u'urg', u'check', u'ekka', u'showbag'] [u'pastoralist', u'face', u'incom'] [u'offer', u'teacher', u'insult', u'say', u'opposit'] [u'pentagon', u'deni', u'forc', u'stretch'] [u'philippoussi', u'withdraw', u'montreal'] [u'pilbara', u'get', u'indigen', u'support', u'servic'] [u'plantat', u'inquiri', u'hear', u'log', u'posit'] [u'plummer', u'replac', u'mcintosh'] [u'offer', u'indonesia', u'help', u'hand'] [u'vow', u'help', u'bomb', u'probe'] [u'pneumonia', u'case', u'baffl', u'armi', u'doctor'] [u'polic', u'highlight', u'alcohol', u'charg'] [u'polic', u'issu', u'warn', u'mail', u'scam'] [u'polic', u'probe', u'fatal', u'hous', u'blaze'] [u'polic', u'search', u'attack'] [u'polic', u'crack', u'alcohol', u'relat', u'crime'] [u'pont', u'prais', u'northern', u'australia', u'tour'] [u'pressur', u'govt', u'releas', u'hospit', u'wait', u'list'] [u'prison', u'offic', u'forecast', u'industri', u'action'] [u'probe', u'clear', u'bishop', u'elect'] [u'public', u'come', u'recycl', u'centr', u'rescu'] [u'public', u'get', u'drink', u'water', u'assur'] [u'qanta', u'defend', u'plan', u'drug', u'test', u'polici'] [u'qanta', u'staff', u'hold', u'stop', u'work', u'meet', u'drug'] [u'opposit', u'hop', u'aboard', u'bombay', u'express'] [u'ralf', u'shock', u'crash', u'penalti', u'william', u'appeal'] [u'real', u'leader', u'guilti', u'omagh', u'bomb'] [u'real', u'madrid', u'kick', u'storm', u'tokyo'] [u'red', u'sign', u'humphri', u'sign', u'heenan'] [u'resid', u'mine', u'wast', u'plan', u'concern'] [u'boost', u'merimbula', u'sydney', u'servic'] [u'chief', u'warn', u'loom', u'bushfir', u'threat'] [u'rival', u'granni', u'beauti', u'contest', u'court'] [u'river', u'flow', u'push', u'spark'] [u'rockhampton', u'form', u'health', u'plan'] [u'roddick', u'roll', u'maliss', u'montreal'] [u'saint', u'stand', u'lawrenc'] [u'scientist', u'breed', u'super', u'vegi'] [u'search', u'resum', u'woman', u'miss', u'huon', u'river'] [u'senior', u'retir', u'villag', u'safer', u'studi'] [u'shire', u'consid', u'merger', u'benefit'] [u'solomon', u'forc', u'signal', u'corrupt', u'crackdown'] [u'solomon', u'milit', u'warn', u'time', u'talk', u'run'] [u'sorenstam', u'thank', u'tiger', u'short', u'game', u'lift'] [u'special', u'polic', u'unit', u'baghdad', u'stop'] [u'strike', u'disrupt', u'money', u'print'] [u'sydney', u'woman', u'win', u'discrimin', u'case'] [u'hike', u'okay', u'servic', u'improv'] [u'taxi', u'driver', u'threaten', u'strike', u'safeti'] [u'teacher', u'protest', u'claim', u'progress'] [u'teen', u'recov', u'meningococc', u'bout'] [u'terror', u'fight', u'year'] [u'toddler', u'respond', u'treatment', u'meningoccoc'] [u'tradit', u'hunter', u'ship', u'pose', u'bigger', u'risk'] [u'transport', u'head', u'criticis', u'airport', u'secur'] [u'tuna', u'farm', u'trial', u'spark', u'environ', u'concern'] [u'union', u'seek', u'delay', u'qanta', u'drug', u'test', u'trial'] [u'union', u'vote', u'electrolux'] [u'bishop', u'vote', u'appoint'] [u'condemn', u'bomb', u'attack', u'jakarta'] [u'pessimist', u'iran', u'qaeda', u'prison'] [u'say', u'pneumonia', u'case', u'iraq', u'sporad'] [u'stock', u'fall', u'despit', u'record', u'servic', u'data'] [u'govt', u'back', u'water', u'enforc'] [u'govt', u'tri', u'water'] [u'medic', u'offic', u'urg', u'calm', u'meningoccoc'] [u'wallabi', u'head', u'coff', u'bledislo', u'train'] [u'wallabi', u'prepar', u'bledislo'] [u'opposit', u'blame', u'govt', u'disput'] [u'warn', u'pull', u'servic', u'earli'] [u'teacher', u'begin', u'work', u'ban'] [u'welfar', u'group', u'join', u'fund', u'protest'] [u'welsh', u'shin', u'hobart'] [u'wind', u'continu', u'canadian', u'forest', u'fire'] [u'wit', u'violenc', u'suffer', u'trauma', u'studi'] [u'worker', u'want', u'textil', u'tariff', u'freez'] [u'dead', u'injur', u'baghdad', u'embassi', u'attack'] [u'back', u'warn', u'chariti', u'match', u'decis'] [u'teacher', u'prepar', u'strike', u'action'] [u'criticis', u'govt', u'educ', u'spend', u'plan'] [u'agassi', u'beat', u'davydenko', u'montreal'] [u'worker', u'seven', u'afghan', u'kill', u'raid'] [u'albani', u'plaza', u'win', u'award'] [u'share', u'slump', u'low'] [u'amrozi', u'appeal', u'death', u'sentenc'] [u'anglican', u'head', u'confid', u'church', u'surviv'] [u'applic', u'independ', u'school'] [u'britain', u'sizzl', u'otter', u'frolic', u'snow'] [u'make', u'grind', u'despit', u'loss'] [u'asylum', u'seeker', u'tell', u'court', u'ordeal'] [u'athlet', u'give', u'world', u'champ', u'select', u'extens'] [u'atsic', u'commission', u'vow', u'fight', u'manag'] [u'attorney', u'general', u'discuss', u'money', u'launder'] [u'aust', u'lawyer', u'practis', u'nation'] [u'australian', u'victim', u'await', u'amrozi', u'sentenc'] [u'barbosa', u'win', u'tour', u'portug', u'stage'] [u'beem', u'aim', u'rediscov', u'form'] [u'crowd', u'like', u'farewel', u'shoot', u'victim'] [u'bodi', u'miss', u'woman', u'huon', u'river'] [u'boomer', u'greec'] [u'brisban', u'need', u'detent', u'centr', u'ruddock'] [u'british', u'weapon', u'expert', u'buri'] [u'bronco', u'lose', u'ikin', u'penrith', u'clash'] [u'bryant', u'make', u'court', u'appear'] [u'driver', u'skirt', u'uniform', u'beat', u'summer'] [u'busi', u'group', u'call', u'rate'] [u'businessman', u'shelv', u'unit', u'project'] [u'easter', u'trade', u'certainti'] [u'cambodian', u'polic', u'destroy', u'scaveng', u'villag'] [u'carr', u'urg', u'help', u'nardel', u'unsecur', u'creditor'] [u'cathay', u'pacif', u'blame', u'sar', u'loss'] [u'chariti', u'take', u'bigger', u'workload'] [u'charvi', u'secur', u'world', u'back'] [u'chip', u'maker', u'adopt', u'nanotechnolog'] [u'claim', u'high', u'water', u'affect', u'shoalhaven', u'river'] [u'clijster', u'move', u'step', u'closer', u'rank'] [u'cocain', u'trial', u'begin', u'perth', u'amid', u'tight', u'secur'] [u'coff', u'council', u'defend', u'wallabi', u'deal'] [u'colston', u'face', u'trial'] [u'communiti', u'bank', u'plan', u'quiz', u'public'] [u'communiti', u'warn', u'breed', u'bird', u'aggress'] [u'concern', u'contract', u'diseas'] [u'conserv', u'group', u'intensifi', u'plant', u'protest'] [u'council', u'allow', u'spotlight'] [u'council', u'staff', u'boost', u'protest'] [u'council', u'tackl', u'homeless', u'problem'] [u'council', u'crack', u'woe'] [u'court', u'reserv', u'decis', u'lappa', u'sentenc', u'appeal'] [u'crean', u'say', u'amrozi', u'deserv'] [u'dairi', u'industri', u'urg', u'consid', u'oversea'] [u'darl', u'down', u'basketbal', u'team', u'glori'] [u'darwin', u'nomin', u'futur', u'athlet', u'star'] [u'date', u'ralf', u'schumach', u'appeal'] [u'detain', u'children', u'confus', u'court', u'rule'] [u'doctor', u'clear', u'kefu', u'rejoin', u'wallabi'] [u'downer', u'question', u'baghdad', u'attack', u'motiv'] [u'driver', u'jail', u'run', u'policeman'] [u'drug', u'committe', u'decis', u'thalidomid'] [u'ebola', u'vaccin', u'success', u'monkey', u'scientist'] [u'educ', u'campaign', u'consid', u'endang', u'speci'] [u'expo', u'offer', u'student', u'career', u'advic'] [u'farmer', u'welcom', u'higher', u'milk', u'price'] [u'feral', u'bait', u'effort', u'ahead'] [u'ferrero', u'progress', u'maiden', u'aynaoui'] [u'figur', u'highlight', u'hous', u'boom'] [u'deport', u'tribun'] [u'forens', u'test', u'need', u'jakarta', u'attack'] [u'premier', u'seek', u'compo', u'govt'] [u'develop', u'lower', u'energi', u'price'] [u'gbrmpa', u'reject', u'submiss', u'extens'] [u'germani', u'squad', u'world', u'championship'] [u'good', u'weather', u'keep', u'tasmanian', u'meat', u'work', u'open'] [u'govt', u'fail', u'airport', u'secur', u'aviat', u'group'] [u'grenad', u'set', u'humve', u'ablaz', u'central', u'baghdad'] [u'group', u'end', u'campaign', u'save', u'tamworth', u'grace', u'bros'] [u'handgun', u'buyback', u'begin'] [u'health', u'servic', u'appoint', u'act'] [u'heat', u'schumach', u'rossi'] [u'hewitt', u'montreal'] [u'hick', u'say', u'evid', u'prove', u'terrorist'] [u'high', u'alert', u'amrozi', u'verdict', u'expect'] [u'high', u'court', u'impos', u'australian', u'rule', u'foreign'] [u'homeless', u'outlook', u'expect', u'worsen'] [u'honiara', u'face', u'drink', u'water', u'shortag'] [u'hors', u'death', u'spark', u'hunt', u'dog', u'safeti'] [u'howard', u'welcom', u'amrozi', u'convict'] [u'hundr', u'report', u'burn', u'meteor'] [u'hussain', u'avail', u'south', u'africa', u'test'] [u'iceland', u'resum', u'whale', u'scienc'] [u'iceland', u'resum', u'whale', u'hunt', u'month'] [u'indigen', u'fish', u'plan', u'spark', u'concern'] [u'indigen', u'protest', u'gold', u'plan'] [u'indonesian', u'polic', u'dismiss', u'jakarta', u'arrest', u'link'] [u'indonesian', u'troop', u'kill', u'suspect', u'aceh'] [u'injur', u'rubin', u'unabl', u'defend', u'titl'] [u'inquiri', u'hear', u'sexual', u'misconduct', u'charg'] [u'insulin', u'user', u'face', u'higher', u'death', u'rat'] [u'hear', u'propos', u'qanta', u'drug', u'test'] [u'hear', u'qanta', u'drug', u'test', u'disput'] [u'irrig', u'hear', u'live', u'murray', u'impact'] [u'italian', u'scientist', u'unveil', u'clone', u'hors'] [u'italian', u'woman', u'die', u'diseas'] [u'italian', u'woman', u'electrocut', u'bath', u'vietnam'] [u'jakarta', u'bomb', u'parallel', u'bali', u'attack'] [u'japan', u'monitor', u'float', u'arctic', u'ocean'] [u'jobless', u'rate', u'climb'] [u'joey', u'arsenal'] [u'judg', u'begin', u'sum', u'snowtown', u'murder', u'trial'] [u'judg', u'read', u'amrozi', u'verdict'] [u'juri', u'find', u'woman', u'guilti', u'murder'] [u'juri', u'deliber', u'whits', u'murder', u'trial'] [u'kenya', u'attack', u'suspect', u'face', u'higher', u'court'] [u'knight', u'lament', u'salari', u'claim'] [u'kutuzova', u'reach', u'round'] [u'lawrenc', u'presid'] [u'lawyer', u'seek', u'time', u'mackay', u'case'] [u'leagu', u'support', u'offer', u'support', u'player', u'famili'] [u'lib', u'leader', u'highlight', u'coast', u'issu'] [u'libya', u'readi', u'accept', u'lockerbi', u'blame'] [u'llorent', u'test', u'posit', u'tour'] [u'local', u'govt', u'chief', u'air', u'fund', u'concern'] [u'magistr', u'order', u'releas', u'suspect', u'kenyan'] [u'charg', u'break', u'home'] [u'mandarino', u'wont', u'rule', u'throsbi', u'challeng'] [u'die', u'highway', u'crash'] [u'injur', u'break'] [u'plead', u'guilti', u'possess', u'child', u'porn'] [u'marriott', u'specifi', u'target', u'downer'] [u'welcom', u'plan', u'year', u'term'] [u'mccartney', u'welcom', u'amrozi', u'sentenc'] [u'melbourn', u'art', u'festiv', u'offer', u'free', u'event'] [u'melbourn', u'reflect', u'jakarta', u'blast'] [u'microsoft', u'give', u'month', u'clear'] [u'minist', u'confid', u'hospit', u'staff', u'woe'] [u'mix', u'respons', u'resid', u'magistr', u'plan'] [u'detail', u'seek', u'water', u'plan'] [u'speak', u'claim'] [u'close', u'bendigo', u'branch'] [u'nambour', u'hospit', u'concern', u'air'] [u'approach', u'take', u'water', u'reform'] [u'charg', u'lay', u'atsic', u'deputi', u'chairman'] [u'radio', u'inform', u'servic', u'launch'] [u'zealand', u'probe', u'possibl', u'case', u'human'] [u'korea', u'slam', u'wargam'] [u'contract', u'disput', u'resolv'] [u'polic', u'hunt', u'escap', u'inmat'] [u'oldest', u'spider', u'silk'] [u'opposit', u'target', u'state', u'govern', u'perth'] [u'optus', u'help', u'parent', u'compani', u'tripl', u'profit'] [u'oxfam', u'criticis', u'govt', u'plan', u'relat', u'review'] [u'paceman', u'jone', u'make', u'long', u'await', u'comeback'] [u'pair', u'hospit', u'head', u'crash'] [u'palestinian', u'author', u'say', u'prison', u'releas', u'sham'] [u'parliamentari', u'inquiri', u'head', u'studi', u'fire'] [u'peacekeep', u'delay', u'liberia'] [u'peacekeep', u'prepar', u'deploy', u'monrovia'] [u'peter', u'safar', u'father', u'die'] [u'plan', u'law', u'develop', u'issu'] [u'predict', u'closer', u'link', u'indonesia'] [u'polic', u'focus', u'attent', u'biker'] [u'polic', u'revis', u'death', u'toll', u'jakarta', u'blast'] [u'polic', u'seiz', u'drug', u'perth', u'airport'] [u'polic', u'station', u'develop', u'applic'] [u'pont', u'hail', u'northern', u'seri', u'success'] [u'pont', u'say', u'banga', u'learn', u'test'] [u'port', u'dredg', u'spark', u'fish', u'concern'] [u'log', u'group', u'reject', u'inquiri', u'claim'] [u'public', u'turn', u'protest', u'wast', u'plan'] [u'qanta', u'drug', u'test', u'limit', u'execut', u'staff'] [u'reject', u'joh', u'compo', u'claim'] [u'quarantin', u'boost', u'cairn', u'airport'] [u'ramanauska', u'undergo', u'surgeri'] [u'report', u'highlight', u'alcohol', u'offenc'] [u'resid', u'council', u'budget'] [u'road', u'block', u'fatal', u'accid'] [u'road', u'rage', u'incid', u'leav', u'injur'] [u'continu', u'tafe', u'campus', u'netbal', u'site'] [u'rspca', u'purr', u'registr', u'plan'] [u'schwarzenegg', u'governor'] [u'work', u'farmer', u'repair'] [u'search', u'clue', u'continu', u'jakarta'] [u'secret', u'nuclear', u'meet', u'reveal'] [u'shark', u'lose', u'suspens'] [u'sheldon', u'highlight', u'ambul', u'levi', u'opposit'] [u'green', u'return', u'hobart'] [u'joh', u'compo', u'unlik', u'succeed', u'say', u'beatti'] [u'solomon', u'women', u'tell', u'spread', u'amnesti', u'messag'] [u'south', u'australian', u'lose', u'poki'] [u'spanish', u'coal', u'miner', u'save', u'collaps'] [u'spanish', u'worker', u'escap', u'railway'] [u'spenc', u'reject', u'abus', u'claim'] [u'spinner', u'hossain', u'undergo', u'test'] [u'sport', u'humbl', u'manchest', u'unit', u'friend'] [u'stronger', u'dollar', u'take', u'toll', u'job'] [u'studi', u'link', u'skip', u'breakfast', u'child', u'obes'] [u'surgeon', u'hail', u'tripl', u'organ', u'transplant', u'success'] [u'survey', u'show', u'young', u'australian', u'biggest', u'saver'] [u'survivor', u'bosnian', u'tortur', u'camp', u'hold'] [u'suspect', u'bombmak', u'blow', u'indonesia'] [u'suspect', u'bomb', u'maker', u'kill'] [u'swim', u'star', u'phelp', u'bare', u'miss', u'world', u'mark'] [u'sydney', u'acquit', u'murder', u'charg'] [u'sydney', u'water', u'disput', u'expect', u'tomorrow'] [u'sydney', u'water', u'electrician', u'strike', u'safeti', u'issu'] [u'petrol', u'price', u'cent', u'juli'] [u'union', u'tell', u'flex', u'industri', u'muscl'] [u'teacher', u'discuss', u'nation', u'stopwork', u'campaign'] [u'teacher', u'news', u'ax'] [u'teacher', u'discuss', u'wage', u'push', u'nation', u'meet'] [u'technic', u'woe', u'delay', u'rail', u'plan'] [u'tech', u'stock', u'price'] [u'teenag', u'charg', u'rape'] [u'report', u'beat', u'author', u'china'] [u'tent', u'embassi', u'accus', u'face', u'court'] [u'tiatto', u'fox', u'socceroo'] [u'town', u'fight', u'paint', u'bridg'] [u'trawler', u'salvag', u'effort', u'continu'] [u'umpir', u'chanc', u'answer', u'critic'] [u'union', u'call', u'nationwid', u'teacher', u'strike'] [u'union', u'consid', u'legal', u'action', u'stop', u'tyre', u'plant'] [u'union', u'upbeat', u'wineri', u'job'] [u'unit', u'forfeit', u'cost', u'leagu', u'spot'] [u'helicopt', u'land', u'liberian', u'capit'] [u'westhuizen', u'start', u'bok', u'chang'] [u'seek', u'task', u'forc', u'prevent', u'child'] [u'victim', u'famili', u'welcom', u'amrozi', u'convict'] [u'video', u'conferenc', u'facil', u'univers'] [u'govt', u'talk', u'emerg', u'servic', u'levi'] [u'lib', u'focus', u'great', u'southern'] [u'school', u'teacher', u'consid', u'strike', u'action'] [u'water', u'storag', u'level', u'rise', u'melbourn'] [u'wood', u'bid', u'major', u'titl', u'drought'] [u'work', u'dole', u'project', u'boost', u'environ'] [u'world', u'event', u'affect', u'tourist', u'market'] [u'young', u'irrig', u'converg', u'griffith'] [u'second', u'late', u'plane', u'refus', u'land', u'clearanc'] [u'fine', u'child', u'porn', u'imag'] [u'chief', u'address', u'staff'] [u'head', u'avoid', u'school', u'children', u'protest'] [u'aborigin', u'communiti', u'seek', u'land', u'handov'] [u'accc', u'reject', u'bank', u'eftpo', u'plan'] [u'accus', u'melbourn', u'hijack', u'stand', u'trial'] [u'drop', u'misconduct', u'charg', u'bodi', u'tell'] [u'afghan', u'take', u'fight', u'stay', u'australia', u'high'] [u'agassi', u'montreal', u'quarter'] [u'call', u'updat', u'tenant', u'databas'] [u'age', u'care', u'hostel', u'confid', u'fix', u'problem'] [u'albani', u'jobless', u'number', u'rise'] [u'algebra', u'point', u'happi', u'marriag'] [u'say', u'throsbi', u'risk', u'like', u'cunningham'] [u'upbeat', u'medicar'] [u'settl', u'class', u'action', u'suit'] [u'amrozi', u'appeal', u'month'] [u'amrozi', u'martyr'] [u'amrozi', u'sentenc', u'send', u'messag', u'terrorist', u'govt'] [u'amrozi', u'sentenc', u'spark', u'debat'] [u'angler', u'push', u'reef', u'consult'] [u'asthma', u'council', u'applaud', u'fuel'] [u'australian', u'adopt', u'renew', u'energi', u'home'] [u'bali', u'survivor', u'back', u'amrozi', u'death', u'penalti'] [u'bank', u'manag', u'charg', u'theft'] [u'benito', u'win', u'tour', u'portug', u'second', u'stage'] [u'bomb', u'explod', u'outsid', u'thai', u'courthous'] [u'bonlac', u'investor', u'vote', u'restructur'] [u'bonlac', u'explain', u'milk', u'price', u'polici'] [u'bottl', u'feed', u'risk', u'children', u'teeth', u'doctor'] [u'brisban', u'trail', u'penrith', u'doubl'] [u'british', u'worker', u'jail', u'ethiopia'] [u'british', u'famili', u'oppos', u'bali', u'death', u'sentenc'] [u'bronco', u'aim', u'finish', u'say', u'kelli'] [u'bushfir', u'probe', u'prove', u'hazard', u'reduct', u'polici'] [u'busi', u'seek', u'boost', u'street', u'appeal'] [u'butt', u'warn', u'tell', u'dope', u'bodi'] [u'buy', u'beckham', u'sport', u'decis', u'real', u'boss'] [u'canada', u'lose', u'grand', u'prix', u'season'] [u'cash', u'result', u'liven', u'say'] [u'cat', u'score', u'comprehens', u'demon'] [u'cattl', u'breeder', u'expect', u'poor', u'sale'] [u'chilean', u'pair', u'arrest', u'illeg', u'potter'] [u'claim', u'militari', u'involv', u'jakarta', u'blast'] [u'clijster', u'cruis', u'round', u'dokic', u'beat'] [u'cloke', u'clement', u'return', u'collingwood'] [u'coalit', u'govern', u'like', u'cambodia'] [u'committe', u'examin', u'sustain', u'hous'] [u'communiti', u'group', u'share', u'fund'] [u'fight', u'blue', u'mountain', u'trail', u'plan'] [u'consult', u'urg', u'indigen', u'footbal', u'plan'] [u'cooge', u'dolphin', u'heal', u'begin'] [u'council', u'act', u'committe', u'legal', u'status'] [u'council', u'defend', u'develop', u'demand'] [u'council', u'face', u'theatr', u'fund', u'shortfal'] [u'council', u'say', u'trade', u'australia', u'indonesia'] [u'council', u'seek', u'chief', u'execut'] [u'council', u'urg', u'resolv', u'intern', u'wrangl'] [u'cowboy', u'strong', u'season', u'finish'] [u'crash', u'put', u'biker', u'hospit'] [u'crean', u'accus', u'govt', u'attempt', u'muzzl'] [u'crime', u'rate', u'matter', u'percept'] [u'vow', u'continu', u'employ', u'foreign', u'crew'] [u'cuthbert', u'honour', u'statu'] [u'danish', u'queen', u'hint', u'royal', u'engag', u'report'] [u'davenport', u'clijster'] [u'death', u'sentenc', u'bring', u'mix', u'emot'] [u'defect', u'oust', u'naurus', u'presid'] [u'deleg', u'gather', u'constitut', u'convent'] [u'discrimin', u'claim', u'level', u'footi'] [u'doctor', u'dissatisfact', u'find', u'surpris'] [u'die', u'vagabond', u'best', u'friend'] [u'drought', u'grip'] [u'drought', u'tighten', u'grip'] [u'duff', u'ireland', u'squad', u'australia', u'friend'] [u'episcop', u'church', u'bless', u'union'] [u'escap', u'tiger', u'find', u'home'] [u'ettridg', u'put', u'forward', u'defenc', u'case', u'fraud', u'trial'] [u'expert', u'predict', u'posit', u'time', u'domest', u'tourism'] [u'famili', u'react', u'verdict', u'announc'] [u'farmer', u'tell', u'forget', u'weed'] [u'farmer', u'upset', u'water', u'plan', u'delay'] [u'fear', u'ramanauska', u'futur'] [u'feder', u'beat', u'robredo', u'straight', u'set'] [u'festiv', u'focus', u'indigen'] [u'fishermen', u'face', u'fin', u'pollut'] [u'fisher', u'urg', u'camp'] [u'fish', u'group', u'want', u'time', u'reef', u'submiss'] [u'flash', u'flood', u'kill', u'indian', u'resort'] [u'kill', u'road', u'hour'] [u'gambl', u'smoke', u'claim', u'see', u'smokescreen'] [u'design', u'predict', u'republ', u'debat'] [u'buyback', u'centr', u'open', u'year'] [u'hama', u'accus', u'israel', u'break', u'ceas'] [u'hear', u'natasha', u'ryan', u'boyfriend'] [u'high', u'hop', u'fast', u'rail', u'loader'] [u'home', u'lend', u'continu', u'rise'] [u'hospit', u'lose', u'weekend', u'emerg', u'orthopaed'] [u'hotel', u'secur', u'tape', u'review', u'jakarta', u'blast'] [u'howel', u'love', u'earli', u'lead', u'intern'] [u'hubbl', u'spi', u'galaxi', u'gobbl', u'littl'] [u'indian', u'separatist', u'bollywood', u'film'] [u'intern', u'soccer', u'challeng', u'begin'] [u'iraqi', u'lose', u'arm', u'limb'] [u'iraq', u'sponsor', u'televis', u'bumpi', u'ride'] [u'irrig', u'water', u'boost'] [u'island', u'angri', u'nativ', u'titl', u'decis'] [u'island', u'volunt', u'prepar', u'train'] [u'isra', u'warplan', u'bomb', u'lebanon', u'villag'] [u'jackson', u'set', u'wnba', u'record'] [u'jacquelin', u'eye', u'tour', u'victori'] [u'jakarta', u'bomber', u'link'] [u'jewish', u'settler', u'charg', u'explos'] [u'jobless', u'rate', u'rise', u'west'] [u'jobless', u'rate', u'centr'] [u'jobless', u'rate', u'margin'] [u'jone', u'readi', u'septemb', u'return'] [u'kafer', u'take', u'charg', u'saracen'] [u'kalli', u'quick', u'groov'] [u'laker', u'king', u'bring', u'curtain', u'busi'] [u'landslid', u'leav', u'homeless', u'papua', u'guinea'] [u'lawyer', u'plan', u'appeal', u'amrozi', u'sentenc'] [u'lobbi', u'group', u'discuss', u'basslink', u'concern'] [u'local', u'govt', u'urg', u'help', u'boost', u'firefight', u'number'] [u'love', u'grab', u'round', u'lead', u'intern'] [u'malaysian', u'triplet', u'away', u'mother'] [u'die', u'polic', u'pursuit'] [u'help', u'polic', u'death', u'probe'] [u'jail', u'murder', u'facto', u'antenna'] [u'plead', u'guilti', u'peopl', u'smuggl', u'charg'] [u'market', u'climb', u'recov', u'grind'] [u'matilda', u'suffer'] [u'mayor', u'offer', u'curfew', u'condit', u'support'] [u'megawati', u'urg', u'global', u'terror', u'fight'] [u'melbourn', u'money', u'maker', u'return', u'work'] [u'miner', u'awar', u'wast', u'heap', u'concern'] [u'minist', u'consid', u'singl', u'famili', u'court'] [u'montgomeri', u'high', u'class', u'field'] [u'wheat', u'virus', u'outbreak', u'expect'] [u'mother', u'say', u'death', u'penalti', u'wont', u'stop', u'terror'] [u'urg', u'fight', u'region', u'news', u'servic'] [u'murder', u'accus', u'plead', u'access', u'famili', u'money'] [u'nasa', u'watchdog', u'call', u'columbia', u'decis', u'shock'] [u'nat', u'upbeat', u'secur', u'seat'] [u'navi', u'order', u'urgent', u'submarin', u'check'] [u'beef', u'plant', u'take', u'shape'] [u'job', u'help', u'break', u'workless', u'cycl'] [u'night', u'end', u'high', u'note', u'jazz', u'festiv'] [u'fine', u'artist', u'kata', u'tjuta', u'photo'] [u'sign', u'repriev', u'europ', u'swelter', u'heatwav'] [u'farmer', u'face', u'summer'] [u'fishermen', u'hail', u'water', u'pollut', u'fin'] [u'hawk', u'mistak', u'chihuahua'] [u'road', u'racer', u'head', u'griffith'] [u'palestinian', u'gunmen', u'shoot', u'ramallah', u'street'] [u'palestinian', u'kill', u'nablus'] [u'peacekeep', u'continu', u'negoti', u'liberia'] [u'peacekeep', u'roll', u'liberian', u'capit'] [u'penrith', u'hold', u'import'] [u'petrol', u'head', u'warwick', u'meet'] [u'phelp', u'break', u'record', u'free'] [u'plan', u'put', u'sand', u'drift', u'farmer'] [u'polic', u'probe', u'embassi', u'blast', u'baghdad'] [u'polic', u'seek', u'info', u'shoot', u'death'] [u'polic', u'special', u'week', u'highlight', u'miss'] [u'politician', u'split', u'amrozi', u'death', u'penalti'] [u'pool', u'sink', u'free', u'diver', u'plan'] [u'port', u'chang', u'line', u'ahead', u'carlton', u'clash'] [u'posit', u'report', u'push', u'wall', u'higher'] [u'prais', u'year', u'council', u'elect'] [u'pretoria', u'decid', u'chang'] [u'privaci', u'group', u'warn', u'technolog', u'misus'] [u'privaci', u'law', u'updat', u'reflect', u'technolog'] [u'program', u'launch', u'encourag', u'art', u'donat'] [u'push', u'samaritan', u'boost', u'polit', u'lobbi'] [u'shut', u'ruddock', u'tell', u'beatti'] [u'rate', u'aborigin', u'women', u'prison', u'rise'] [u'real', u'leader', u'sentenc', u'year', u'jail'] [u'renov', u'warn', u'asbesto', u'danger'] [u'report', u'criticis', u'cross', u'handl', u'bali', u'appeal'] [u'research', u'centr', u'focus', u'greenhous', u'technolog'] [u'research', u'clone', u'anim', u'grow', u'quicker'] [u'resid', u'face', u'uncertain', u'road', u'ahead'] [u'road', u'death', u'spark', u'plea', u'driver', u'safeti'] [u'russian', u'militari', u'helicopt', u'shoot', u'chechnya'] [u'russian', u'mother', u'plead', u'stay', u'guantanamo'] [u'saudi', u'arabia', u'releas', u'bomb'] [u'wine', u'maker', u'win', u'best', u'year'] [u'scott', u'hart', u'doubt', u'lion', u'pie', u'clash'] [u'second', u'blast', u'follow', u'embassi', u'attack', u'baghdad'] [u'serbia', u'dismiss', u'militari', u'offici'] [u'russian', u'soldier', u'kill', u'gunfight', u'chechen'] [u'smoke', u'help', u'stamp', u'poki', u'spend'] [u'smoke', u'reduc', u'poker', u'machin', u'revenu'] [u'solomon', u'warlord', u'say', u'hostag', u'dead'] [u'south', u'korea', u'train', u'crash', u'kill', u'injur'] [u'stuart', u'withdraw', u'high', u'tackl', u'claim'] [u'support', u'mount', u'milk', u'group', u'market'] [u'swan', u'talent', u'say', u'roo'] [u'sydney', u'airport', u'criticis', u'nois', u'curfew'] [u'taylor', u'renew', u'pledg', u'step'] [u'teen', u'charg', u'break', u'home'] [u'tenni', u'tournament', u'head', u'mildura'] [u'back', u'british', u'research'] [u'thorn', u'readi', u'tough', u'springbok', u'challeng'] [u'basketbal', u'nation', u'final'] [u'tourist', u'plan', u'promis', u'shine', u'bright'] [u'union', u'air', u'concern', u'hear', u'impair', u'support'] [u'union', u'highlight', u'school', u'concern'] [u'univers', u'employ', u'indigen', u'peopl'] [u'act', u'missil', u'threat'] [u'film', u'studio', u'landmark', u'piraci', u'case'] [u'mini', u'nuke', u'push', u'dismiss', u'lunaci'] [u'restart', u'nuclear', u'test', u'powel'] [u'troop', u'kill', u'iraqi', u'tikrit'] [u'vcat', u'say', u'resort'] [u'victim', u'hop', u'testimoni', u'help', u'seal', u'bali', u'bomber'] [u'victim', u'father', u'say', u'amrozi', u'puppet'] [u'wallabi', u'track', u'say', u'mcqueen'] [u'warm', u'crucial', u'world', u'say', u'woodward'] [u'word', u'erupt', u'region', u'busi', u'report'] [u'fear', u'black', u'krige'] [u'western', u'council', u'talk', u'merger'] [u'global', u'contend', u'amateur'] [u'oust', u'women', u'amateur'] [u'wink', u'star', u'stare', u'space', u'research'] [u'wit', u'seek', u'fatal', u'crash'] [u'woman', u'head', u'roseberi'] [u'woomera', u'inmat', u'scar', u'talk'] [u'work', u'paddlesteam', u'replica', u'near'] [u'year', u'begin', u'jail', u'term', u'fraud'] [u'author', u'bushfir', u'season', u'ahead'] [u'deni', u'code', u'silenc', u'trooper', u'case'] [u'pilotless', u'aircraft', u'time'] [u'age', u'care', u'group', u'warn', u'industri', u'action'] [u'meet', u'consid', u'internet', u'photo', u'legisl'] [u'qaeda', u'fugit', u'name', u'suspect', u'jordan'] [u'amrozi', u'sign', u'appeal'] [u'armi', u'deni', u'lack', u'will', u'wit'] [u'assault', u'prison', u'staff', u'rise', u'oppn'] [u'author', u'seiz', u'missil', u'northern', u'pakistan'] [u'author', u'warn', u'outbreak'] [u'bok', u'improv', u'black', u'good'] [u'boomer', u'greec'] [u'boston', u'church', u'offer', u'million', u'abus', u'settlement'] [u'britain', u'seek', u'iraq', u'resolut', u'report'] [u'british', u'coupl', u'free', u'treatment', u'paper'] [u'brogden', u'call', u'stamp', u'duti', u'cut'] [u'bskyb', u'pay', u'premier', u'leagu', u'right'] [u'bush', u'hail', u'iraq', u'progress', u'day'] [u'screen', u'program', u'diabet'] [u'cat', u'maul', u'demon'] [u'census', u'show', u'fewer', u'iraqi'] [u'chamber', u'win', u'farcic', u'london'] [u'childhood', u'exposur', u'reduc', u'risk', u'studi'] [u'claim', u'govt', u'polici', u'damag', u'state'] [u'clijster', u'semi'] [u'cola', u'sale', u'slide', u'india'] [u'court', u'stop', u'kurnel', u'condo', u'develop'] [u'critic', u'wind', u'olymp', u'organis', u'row'] [u'darter', u'swift', u'thunderbird', u'dump', u'sandpip'] [u'davi', u'love', u'take', u'charg', u'colorado'] [u'disney', u'dali', u'film', u'prize'] [u'edward', u'face', u'fit', u'battl', u'ahead', u'world'] [u'england', u'chang', u'ahead', u'test'] [u'fitzgibbon', u'preselect', u'face'] [u'ford', u'recal', u'million', u'suv'] [u'dead', u'injur', u'colombia', u'bomb'] [u'kidnap', u'tourist', u'mali', u'desert', u'serious'] [u'soldier', u'light', u'wound', u'mortar', u'attack'] [u'wound', u'basra', u'protest'] [u'girl', u'hospit', u'strike'] [u'govt', u'doubl', u'norfolk', u'murder', u'info', u'reward'] [u'gronholm', u'finland'] [u'driver', u'kill', u'phillip', u'island'] [u'hama', u'vow', u'reveng', u'nablus', u'raid'] [u'howard', u'ralli', u'lib', u'poll', u'push'] [u'hurdl', u'champ', u'garcia', u'doubt', u'world'] [u'indigen', u'cultur', u'face', u'struggl', u'say'] [u'iraq', u'request', u'help', u'embassi', u'bomb'] [u'japan', u'reiter', u'nuclear', u'pledg', u'bomb'] [u'jakarta', u'blast', u'indonesian', u'minist'] [u'joey', u'draw', u'chelsea', u'youngster'] [u'labor', u'youth', u'want', u'decis', u'sydney', u'airport'] [u'liberian', u'rebel', u'threaten', u'fresh', u'push', u'arriv'] [u'liberian', u'rebel', u'threaten', u'attack'] [u'lion', u'beat', u'pie', u'crow', u'hawk', u'saint'] [u'lion', u'lead', u'pie', u'half', u'time'] [u'lion', u'snap', u'pie', u'streak'] [u'comeback', u'lomu'] [u'magistr', u'call', u'feder', u'terror'] [u'magpi', u'face', u'crucial', u'rematch', u'lion'] [u'malaysian', u'accus', u'rich', u'countri', u'fuel'] [u'charg', u'camperdown', u'stab'] [u'face', u'court', u'sexual', u'assault'] [u'dead', u'gin', u'main', u'street'] [u'hospit', u'ship', u'contain', u'accid'] [u'kill', u'hunt', u'trip'] [u'mar', u'robot', u'malfunct', u'nasa'] [u'mcenro', u'consid', u'polit', u'career'] [u'megawati', u'call', u'global', u'terror', u'respons'] [u'militari', u'mutini', u'derail', u'philippin', u'fight'] [u'mitchel', u'talk', u'springbok', u'attitud'] [u'mobil', u'phone', u'betray', u'yemeni', u'beggar'] [u'move', u'begin', u'reopen', u'monrovia', u'port'] [u'park', u'conduct', u'control', u'burn', u'sydney'] [u'navi', u'clear', u'collin', u'sub'] [u'navi', u'order', u'urgent', u'collin', u'check'] [u'crimin', u'charg', u'senegales', u'ferri', u'disast'] [u'north', u'korea', u'talk', u'start', u'report'] [u'author', u'warn', u'extrem', u'season', u'ahead'] [u'govt', u'pledg', u'polic', u'offic', u'welcom'] [u'indigen', u'copyright', u'propos'] [u'oceania', u'soccer', u'boss', u'consid', u'resign'] [u'oceania', u'soccer', u'boss', u'consid', u'quit'] [u'price', u'slip'] [u'year', u'famili', u'appeal', u'murder', u'info'] [u'penrith', u'maintain', u'bronco', u'home', u'pain'] [u'perth', u'real', u'estat', u'compani', u'fin', u'licenc'] [u'see', u'terror', u'threat', u'year', u'come'] [u'suggest', u'hell', u'stay', u'term'] [u'polic', u'appeal', u'help', u'sydney', u'murder', u'case'] [u'polic', u'arrest', u'woman', u'attack', u'outsid'] [u'polic', u'bank', u'heist'] [u'polic', u'search', u'steal', u'motorbik'] [u'portug', u'turn', u'help', u'foot'] [u'race', u'driver', u'kill', u'phillip', u'island'] [u'real', u'beckham', u'ring', u'circus', u'arriv', u'thailand'] [u'rebel', u'bomb', u'kill', u'colombia'] [u'rescuer', u'search', u'indian', u'resort', u'flash', u'flood'] [u'rumsfeld', u'confirm', u'iran', u'contra', u'link'] [u'russia', u'pechyonkina', u'break', u'world', u'mark'] [u'govt', u'urg', u'consum', u'bewar', u'scammer'] [u'polic', u'arrest', u'hairdress', u'bandit'] [u'start', u'nuke', u'dump', u'stall'] [u'schuettler', u'shunt', u'agassi', u'montreal', u'master'] [u'compo', u'anger', u'indigen', u'group'] [u'africa', u'back', u'aid', u'drug', u'plan'] [u'aborigin', u'centr', u'call', u'lib', u'scrap'] [u'teen', u'hospitalis', u'stab'] [u'south', u'korean', u'shoot', u'dead', u'philippin'] [u'typhoon', u'hit', u'japan', u'leav', u'dead', u'miss'] [u'govt', u'pay', u'cash', u'ireland', u'bomb', u'lawsuit'] [u'union', u'emerg', u'phone', u'review'] [u'union', u'worri', u'anti', u'discrimin', u'board'] [u'volunt', u'battl', u'timber', u'yard', u'blaze'] [u'armi', u'arrest', u'saddam', u'militia', u'member'] [u'concern', u'israel', u'west', u'bank', u'wall'] [u'venus', u'withdraw', u'toronto', u'tournament'] [u'emerg', u'hous', u'wait', u'list', u'crisi', u'point'] [u'vietnam', u'citi', u'expos', u'cheat', u'coupl'] [u'polic', u'suspect', u'station', u'arsonist', u'know'] [u'win', u'rooster', u'knight', u'shark'] [u'world', u'anglican', u'discuss', u'clergymen'] [u'young', u'australian', u'nation', u'best', u'saver', u'bank'] [u'adam', u'snare', u'protea', u'thump', u'kent'] [u'annual', u'beer', u'regatta', u'set', u'sail', u'darwin'] [u'backburn', u'continu', u'sydney'] [u'backpack', u'lose', u'north', u'mountain'] [u'basra', u'calm', u'riot'] [u'bettini', u'claim', u'world', u'lead', u'sebastian'] [u'boomer', u'lose', u'second', u'match', u'greec'] [u'die', u'gunshot', u'wind'] [u'brazil', u'student', u'issu', u'condom', u'aid', u'battl'] [u'british', u'real', u'beer', u'silli', u'name'] [u'canberra', u'busi', u'warn', u'scam'] [u'carey', u'doubt', u'crucial', u'magpi', u'clash'] [u'chelsea', u'snare', u'mutu'] [u'chines', u'foreign', u'minist', u'arriv', u'tokyo'] [u'pilot', u'arrest', u'bomb', u'shoe', u'joke'] [u'countri', u'gather', u'discuss', u'water', u'dilemma'] [u'davenport', u'dispatch', u'sugiyama', u'advanc'] [u'davi', u'love', u'colorado'] [u'death', u'toll', u'european', u'heatwav', u'hit'] [u'docker', u'roo', u'gasp', u'kick'] [u'employe', u'vote', u'pharmaceut'] [u'english', u'season', u'kick', u'mar', u'tragedi'] [u'fatah', u'accus', u'israel', u'damag', u'ceasefir'] [u'caus', u'histor', u'hotel', u'demolish'] [u'iraqi', u'interior', u'minist', u'custodi'] [u'french', u'farmer', u'draw', u'huge', u'crowd', u'ralli'] [u'french', u'girl', u'die', u'dehydr'] [u'french', u'hitchcock', u'jacqu', u'deray', u'die', u'age'] [u'fund', u'group', u'want', u'asic', u'muscl', u'fee'] [u'globo', u'name', u'younger', u'marinho', u'presid'] [u'organis', u'plan', u'tribut', u'kill', u'driver'] [u'gustafson', u'set', u'cours', u'record', u'swedish', u'open'] [u'hargreav', u'snatch', u'thrill', u'draw', u'bayern'] [u'harvard', u'reveal', u'nuremburg', u'trial', u'internet', u'plan'] [u'heatwav', u'continu', u'europ'] [u'hope', u'small', u'aircraft', u'rule', u'boost', u'flight'] [u'howard', u'promis', u'tasmania', u'special', u'attent'] [u'howard', u'welcom', u'bali', u'appeal', u'find'] [u'immigr', u'encourag', u'settl', u'outsid', u'major'] [u'islam', u'milit', u'iraq', u'plan', u'attack'] [u'jakarta', u'bomb', u'suspect', u'graduat', u'bashir'] [u'jakarta', u'intellig', u'blast'] [u'cottag', u'coalit', u'accus', u'ulterior', u'motiv'] [u'labor', u'anger', u'sydney', u'airport', u'claim'] [u'liber', u'survey', u'elector', u'telstra', u'sale'] [u'liberian', u'presid', u'farewel', u'support'] [u'liberia', u'peacekeep', u'deni', u'port', u'access'] [u'london', u'polic', u'give', u'shoot', u'kill', u'order'] [u'fatal', u'shoot', u'deer', u'hunt', u'expedit'] [u'dead', u'fish', u'trawler'] [u'mcgregor', u'nyangelo', u'citi', u'surf', u'line', u'honour'] [u'melbourn', u'record', u'coldest', u'morn', u'year'] [u'merson', u'doubl', u'sink', u'west', u'brom'] [u'monti', u'shoot', u'round', u'lead', u'denmark'] [u'murder', u'anglican', u'brother', u'solomon', u'know'] [u'museum', u'director', u'conced', u'fund', u'impact'] [u'muslim', u'cleric', u'call', u'struggl', u'continu'] [u'navi', u'intercept', u'alleg', u'iraq', u'smuggler'] [u'nepales', u'financi', u'report', u'catch', u'suspici'] [u'newman', u'miner', u'start', u'strike'] [u'nation', u'lobbi', u'group', u'aim', u'help', u'asthma'] [u'protect', u'section', u'fingleton', u'say', u'support'] [u'opposit', u'unimpress', u'crackdown'] [u'pay', u'tribut', u'vietnam', u'veteran'] [u'push', u'drought', u'grant'] [u'oleari', u'triumphant', u'villa', u'leed'] [u'dead', u'hizbollah', u'shell', u'israel'] [u'person', u'dead', u'bomb', u'explod', u'colombia'] [u'phelp', u'set', u'world', u'mark', u'medley'] [u'phoenix', u'swift', u'thunderbird', u'netbal'] [u'brush', u'infrastructur', u'protect', u'critic'] [u'reject', u'defenc', u'budget', u'blowout', u'claim'] [u'reject', u'report', u'defenc', u'budget', u'blowout'] [u'polic', u'charg', u'set', u'hous'] [u'polic', u'search', u'driver', u'involv', u'fatal'] [u'polic', u'task', u'forc', u'investig', u'illeg', u'hand', u'gun'] [u'port', u'play', u'tradit', u'magpi', u'strip'] [u'portug', u'fire', u'control'] [u'post', u'mortem', u'carri', u'unidentifi', u'bodi'] [u'protest', u'coff', u'harbour', u'bypass'] [u'protest', u'rage', u'second', u'basra'] [u'govt', u'fail', u'follow', u'anim'] [u'ranger', u'thump', u'kilmarnock', u'celtic', u'hold', u'draw'] [u'recreat', u'fish', u'worth', u'nation', u'economi'] [u'remot', u'school', u'latest', u'technolog'] [u'roddick', u'edg', u'feder'] [u'roddick', u'end', u'feder', u'charg', u'spot'] [u'roddick', u'nalbandian', u'battl', u'montreal', u'master'] [u'saddam', u'hussein', u'baghdad', u'ambul'] [u'saint', u'send', u'burk', u'winner'] [u'saint', u'send', u'burk', u'winner'] [u'river', u'ecolog', u'boost', u'fund'] [u'school', u'safer', u'teacher'] [u'speaker', u'claim', u'convent', u'snub'] [u'schwarzenegg', u'file', u'california', u'candidaci'] [u'schwarzenegg', u'barbarian', u'financ'] [u'senat', u'reform', u'referendum', u'need', u'support'] [u'ship', u'builder', u'deni', u'sack', u'worker'] [u'snowfal', u'report', u'north'] [u'solomon', u'crimin', u'punish', u'hill'] [u'south', u'african', u'celebr', u'anti', u'retrovir', u'drug'] [u'space', u'wed', u'near', u'lift'] [u'sport', u'organis', u'warn', u'water'] [u'suspici', u'fire', u'investig'] [u'taiwan', u'ship', u'attack', u'pirat'] [u'tamar', u'river', u'howard', u'itinerari', u'visit'] [u'symphoni', u'orchestra', u'gain', u'fund', u'boost'] [u'dead', u'troop', u'hunt', u'escap', u'bomber'] [u'take', u'hospit', u'ambul', u'accid'] [u'toddler', u'hospit', u'shoot', u'wind'] [u'tradit', u'owner', u'object', u'fraser', u'hors', u'remov'] [u'soldier', u'iraqi', u'wound', u'grenad', u'blast'] [u'troop', u'break', u'basra', u'riot'] [u'victim', u'jakarta', u'blast', u'die', u'hospit', u'death'] [u'victoria', u'speed', u'camera'] [u'warn', u'telephon', u'manner', u'microscop'] [u'warn', u'dentist', u'shortag', u'year'] [u'warrior', u'dragon'] [u'whoop', u'cough', u'rise', u'health', u'say'] [u'wild', u'hors', u'remov', u'fraser', u'island'] [u'william', u'sister', u'play', u'navratilova'] [u'woman', u'fli', u'hospit', u'accid'] [u'women', u'hold', u'mass', u'nurs', u'california'] [u'young', u'labor', u'promis', u'vote', u'build', u'second'] [u'vietnames', u'tourist', u'drown', u'boat', u'capsiz'] [u'wound', u'colombia', u'bomb'] [u'miss', u'chopper', u'crash', u'near', u'mumbai'] [u'academ', u'highlight', u'nativ', u'titl', u'uncertainti'] [u'action', u'fail', u'safeti', u'test'] [u'actor', u'gregori', u'hine', u'dead'] [u'alderman', u'continu', u'council', u'seat', u'chang'] [u'amrozi', u'appeal', u'death', u'penalti'] [u'angler', u'safe'] [u'anorexia', u'hit', u'younger', u'girl'] [u'arni', u'heat', u'poll', u'polit', u'race'] [u'arroyo', u'lift', u'philippin', u'state', u'rebellion'] [u'australia', u'governor', u'general', u'swear'] [u'australia', u'push', u'south', u'pacif', u'chang'] [u'bahraini', u'prison', u'stage', u'hunger', u'strike'] [u'bali', u'suspect', u'claim', u'accus', u'lie'] [u'bali', u'suspect', u'welcom', u'death', u'penalti', u'move'] [u'banker', u'demand', u'nation', u'water', u'reform'] [u'bear', u'claw', u'spot'] [u'beatti', u'slam', u'commonwealth', u'health', u'blackmail'] [u'bendigo', u'bank', u'celebr', u'profit'] [u'blaze', u'wont', u'affect', u'carter', u'holt', u'harvey', u'plant'] [u'boati', u'warn', u'secur', u'item'] [u'boomer', u'hammer', u'bulgaria'] [u'succumb', u'injuri'] [u'braveri', u'commend', u'blackwat'] [u'britain', u'record', u'fahrenheit', u'temperatur'] [u'britain', u'record', u'hottest'] [u'brit', u'warn', u'shot', u'basra'] [u'break', u'hill', u'shiver', u'record', u'cold'] [u'bulldog', u'fin', u'registr', u'breach'] [u'cain', u'head', u'cole', u'myer', u'food', u'divis'] [u'cairn', u'mackay', u'basketbal', u'leagu', u'divis'] [u'continu', u'power', u'reduct'] [u'fisher', u'compo', u'reef', u'rezon', u'plan'] [u'crash', u'put', u'girl', u'hospit'] [u'carer', u'allow', u'review', u'fact', u'life', u'vanston'] [u'clijster', u'claim', u'spot'] [u'coast', u'convent', u'screen', u'film'] [u'coff', u'resid', u'demand', u'highway', u'bypass'] [u'collis', u'alarm', u'protect', u'china', u'astronaut'] [u'comment', u'seek', u'draft', u'coastal', u'plan'] [u'communiti', u'bank', u'board', u'consid', u'dividend'] [u'concern', u'indigen', u'group', u'repres', u'council'] [u'concern', u'level', u'debat', u'constitut', u'forum'] [u'concern', u'rais', u'threaten', u'speci'] [u'consult', u'involv', u'leagu', u'club'] [u'controversi', u'beer', u'regatta'] [u'council', u'put', u'focus', u'water', u'save'] [u'council', u'urg', u'chang', u'art', u'fund', u'plan'] [u'council', u'urg', u'communiti', u'support', u'tackl', u'wild', u'dog'] [u'court', u'consid', u'sibl', u'detent'] [u'court', u'tell', u'accus', u'follow', u'bash'] [u'cricket', u'australia', u'steer', u'clear', u'warn', u'scandal'] [u'cricket', u'australia', u'warn', u'affair'] [u'cricket', u'bodi', u'keep', u'warn', u'scandal'] [u'croc', u'dump', u'turner'] [u'cross', u'border', u'scheme', u'attack', u'sniff', u'violenc'] [u'demerg', u'assur', u'boost', u'share'] [u'democrat', u'fear', u'canola', u'trial'] [u'democrat', u'seek', u'nation', u'anim', u'welfar', u'author'] [u'dept', u'clarifi', u'uluru', u'photo', u'ban'] [u'director', u'newel', u'work', u'harri', u'potter', u'magic'] [u'evid', u'panel', u'investig'] [u'docker', u'close', u'final', u'spot'] [u'dvds', u'lead', u'digit', u'technolog', u'charg'] [u'eddi', u'factor', u'overst', u'say', u'matthew'] [u'educ', u'effort', u'earn', u'award'] [u'emerg', u'worker', u'rais', u'hospit', u'fund'] [u'endors', u'threaten', u'accc', u'independ'] [u'ettridg', u'tell', u'court', u'nation', u'effect'] [u'everton', u'suffer', u'campbel', u'setback'] [u'famili', u'rememb', u'bomb', u'victim', u'birthday'] [u'farmer', u'salin', u'advic'] [u'farmer', u'hop', u'heavier', u'rain'] [u'fault', u'caus', u'hour', u'blackout'] [u'fear', u'shortag', u'bite', u'dental', u'servic'] [u'fergi', u'stay', u'cool', u'titl', u'chase'] [u'fingleton', u'start', u'communiti', u'work', u'week'] [u'fingleton', u'move', u'maximum', u'secur'] [u'fingleton', u'move', u'halfway', u'hous'] [u'fist', u'entertain', u'fring', u'festiv'] [u'frustrat', u'montgomeri', u'head', u'home'] [u'german', u'clinch', u'seri', u'kookaburra'] [u'appoint', u'humbl', u'jefferi'] [u'gear', u'pipelin', u'develop'] [u'golden', u'oldi', u'frederick', u'sprint', u'victori'] [u'golf', u'club', u'pursu', u'clubhous'] [u'golf', u'hungriest', u'finish', u'timer', u'slam'] [u'govt', u'back', u'state', u'polic', u'plan', u'welcom'] [u'green', u'centr', u'air', u'subdivis', u'concern'] [u'green', u'councillor', u'seek', u'merger', u'referendum'] [u'gurus', u'peac', u'plan', u'dont', u'wash', u'cambodia', u'king'] [u'gustafson', u'pip', u'pettersen', u'play'] [u'defeat', u'ward', u'play', u'ohio'] [u'hear', u'begin', u'privat', u'land'] [u'heatwav', u'take', u'toll', u'europ'] [u'heritag', u'trail', u'bring', u'tourism', u'dollar'] [u'hope', u'servic', u'encourag'] [u'hotel', u'license', u'shock', u'destroy'] [u'hous', u'boom', u'boost', u'bendigo', u'bank', u'profit'] [u'hunter', u'intern', u'airport', u'debat', u'reignit'] [u'indigen', u'foundat', u'get', u'fund', u'boost'] [u'indigen', u'popul', u'highlight', u'hospit'] [u'injuri', u'threaten', u'open', u'women', u'field'] [u'inquiri', u'hear', u'evid', u'scientist', u'death'] [u'inquiri', u'open', u'scientist', u'death'] [u'iraqi', u'explos', u'kill', u'soldier'] [u'isra', u'polic', u'arrest', u'utter', u'threat'] [u'israel', u'launch', u'strike', u'hezbollah', u'attack'] [u'israel', u'warn', u'hezbollah', u'attack', u'caus'] [u'jakarta', u'blast', u'survivor', u'shake', u'deter'] [u'jakarta', u'guard', u'attack'] [u'japan', u'count', u'cost', u'typhoon', u'etau', u'weaken'] [u'japan', u'probe', u'chines', u'chemic', u'weapon', u'spill'] [u'jeffer', u'say', u'sorri', u'card', u'rage'] [u'fugit', u'ghozi', u'give', u'filipino', u'troop', u'slip'] [u'kopassus', u'tie', u'counter', u'terror', u'effort', u'hill'] [u'labor', u'surviv', u'parti', u'challeng'] [u'labor', u'question', u'indonesian', u'militari', u'link'] [u'land', u'price'] [u'lawrenc', u'go', u'asylum', u'seeker'] [u'lawyer', u'criticis', u'asio', u'power'] [u'legal', u'group', u'welcom', u'acquitt', u'abus', u'partner'] [u'lennox', u'lewi', u'ponder', u'retir'] [u'liber', u'air', u'telstra', u'sale', u'opposit'] [u'liberian', u'presid', u'reluct', u'leav'] [u'lomu', u'posit', u'mute', u'return', u'action'] [u'love', u'cruis', u'victori', u'colorado'] [u'love', u'triumph', u'colorado'] [u'magistr', u'promis', u'suspend', u'jail', u'term'] [u'arrest', u'arson', u'attack'] [u'die', u'highway', u'crash'] [u'face', u'year', u'jail', u'term', u'scam'] [u'jail', u'fraud'] [u'celebr', u'howard'] [u'market', u'steadi', u'news', u'corp', u'balanc', u'bank'] [u'martin', u'win', u'finland', u'burn', u'retain', u'lead'] [u'mayor', u'ponder', u'elect', u'plan'] [u'mayor', u'unhappi', u'kelli', u'stand'] [u'hospit', u'motorcycl', u'crash'] [u'miner', u'strike', u'secur'] [u'minist', u'highlight', u'prison', u'contribut'] [u'school', u'join', u'preparatori', u'year', u'trial'] [u'air', u'school', u'test', u'concern'] [u'mundin', u'resum', u'train', u'fight', u'date'] [u'murder', u'juri', u'warn', u'gruesom', u'evid'] [u'nato', u'take', u'afghan', u'peacekeep', u'role'] [u'nat', u'consid', u'youth', u'drive', u'restrict'] [u'nat', u'seek', u'stem', u'cell', u'research'] [u'nauru', u'elect', u'fourth', u'presid', u'year'] [u'jefferi', u'swear'] [u'senat', u'plan', u'win', u'clerk', u'support'] [u'surveil', u'tool', u'field', u'test'] [u'win', u'amateur', u'championship'] [u'nixon', u'rule', u'check', u'access', u'candid'] [u'nurseryman', u'fin', u'vine'] [u'govt', u'deni', u'tie', u'solomon', u'inappropri'] [u'oconnor', u'share', u'feder', u'fund'] [u'kill', u'injur', u'plane', u'crash'] [u'oppn', u'accus', u'govt', u'museum', u'sabotag'] [u'pakistan', u'shift', u'south', u'african', u'seri', u'open'] [u'pari', u'doctor', u'claim', u'heatwav', u'kill', u'elder'] [u'parti', u'drug', u'popular'] [u'payten', u'sign', u'west'] [u'pittman', u'markov', u'triumph', u'germani'] [u'plane', u'crash', u'airport'] [u'deni', u'mislead', u'parliament', u'ethanol'] [u'sydney', u'airport', u'view'] [u'newspap', u'attack', u'link', u'keke'] [u'polic', u'hunt', u'fast', u'food', u'arm', u'bandit'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'oper', u'charg', u'young', u'driver'] [u'polic', u'seek', u'fatal', u'tractor', u'accid', u'wit'] [u'polic', u'inspect', u'strand', u'trawler'] [u'poor', u'diet', u'smoke', u'blame', u'spike', u'diseas'] [u'port', u'adelaid', u'power', u'home'] [u'port', u'greatest', u'player', u'depth', u'matthew'] [u'post', u'mortem', u'hold', u'trawler', u'bodi'] [u'poulter', u'edg', u'monti'] [u'public', u'hous', u'wait', u'list'] [u'raider', u'criticis', u'woolford', u'send'] [u'random', u'test', u'game', u'anti', u'dope', u'drive'] [u'rat', u'like'] [u'real', u'madrid', u'sneak', u'home', u'thai', u'team'] [u'reef', u'report', u'add', u'urgenc', u'tree', u'clear', u'chang'] [u'region', u'victoria', u'urg', u'road', u'death'] [u'report', u'spark', u'concern', u'public', u'transport', u'safeti'] [u'rescu', u'servic', u'consid', u'phone', u'upgrad'] [u'resid', u'ask', u'disrupt', u'meet'] [u'right', u'group', u'put', u'aceh', u'civilian', u'death', u'toll'] [u'rio', u'lose', u'final', u'meligeni'] [u'riverland', u'malle', u'enjoy', u'rain'] [u'roddick', u'win', u'montreal', u'master'] [u'rodeo', u'put', u'cowboy', u'test'] [u'brew', u'hous', u'develop', u'plan'] [u'rspca', u'seek', u'biologist', u'examin', u'welfar'] [u'safeti', u'compromis', u'miner', u'strike', u'report'] [u'govt', u'urg', u'consid', u'convent', u'idea'] [u'school', u'obes', u'program', u'bear', u'fruit'] [u'sheep', u'farmer', u'enjoy', u'good', u'time'] [u'ship', u'secur', u'risk'] [u'shoot', u'baffl', u'polic'] [u'sieg', u'effort', u'earn', u'teacher', u'braveri', u'award'] [u'resort', u'welcom', u'white', u'wonderland'] [u'sleep', u'driver', u'avoid', u'neglig', u'charg'] [u'smyth', u'await', u'roger', u'decis'] [u'solomon', u'forc', u'head', u'quiet', u'keke', u'protect'] [u'solomon', u'amnesti', u'collect', u'weapon'] [u'star', u'cross', u'lover', u'exchang', u'vow'] [u'studi', u'chart', u'teacher', u'workload'] [u'suicid', u'support', u'group', u'seek', u'hous', u'option'] [u'surveil', u'vehicl', u'trial', u'solomon', u'island'] [u'swimmer', u'kick', u'endometriosi', u'awar', u'week'] [u'taylor', u'need', u'day', u'prepar', u'exil', u'aid'] [u'teenag', u'refus', u'bail', u'murder', u'case'] [u'teen', u'face', u'murder', u'charg', u'get', u'bail'] [u'tenpin', u'bowl', u'staff', u'fight', u'better'] [u'thousand', u'watch', u'cash', u'broom'] [u'townsvill', u'await', u'aftershock', u'earthquak'] [u'typhoon', u'rake', u'japan', u'dead'] [u'basketbal', u'prepar', u'olymp', u'qualifi'] [u'soldier', u'dead', u'barrack'] [u'govt', u'urg', u'boost', u'thomson', u'river', u'flow'] [u'hospit', u'urg', u'acknowledg', u'mistak'] [u'wallabi', u'health', u'scare'] [u'warn', u'accus', u'tri', u'sell', u'stori'] [u'warn', u'face', u'fresh', u'alleg'] [u'warwick', u'turn', u'motor', u'race', u'success'] [u'water', u'restrict', u'loom', u'break', u'hill'] [u'water', u'review', u'witch', u'hunt'] [u'weekend', u'rain', u'give', u'perth', u'dam', u'gigalitr', u'boost'] [u'white', u'enjoy', u'metr', u'jone'] [u'wit', u'fail', u'identifi', u'accus', u'peopl', u'smuggler'] [u'wolv', u'determin', u'bite', u'doom', u'merchant'] [u'woolford', u'fletcher', u'charg'] [u'take', u'hospit', u'school'] [u'card', u'weed', u'australia', u'want'] [u'disabl', u'add', u'allow'] [u'ethanol', u'plan', u'move', u'ahead'] [u'academ', u'lament', u'ax'] [u'compromis'] [u'airlin', u'punctual'] [u'slash', u'tran', u'tasman', u'fare'] [u'aldermen', u'vote', u'stop', u'council', u'inform', u'leak'] [u'alfa', u'romeo', u'good', u'start', u'britain'] [u'allenbi', u'move'] [u'committe', u'probe', u'sydney', u'airport', u'option'] [u'qaeda', u'threat', u'authent'] [u'announc', u'jump', u'profit'] [u'armitag', u'defend', u'hickss', u'detent'] [u'armitag', u'rule', u'base', u'australia'] [u'arson', u'suspect', u'appear', u'court'] [u'boss', u'criticis', u'rebuild', u'campaign'] [u'asic', u'boss', u'take', u'earli', u'retir'] [u'aussi', u'athlet', u'face', u'qualifi', u'chanc'] [u'aust', u'offer', u'help', u'check', u'north', u'korea', u'weapon'] [u'australia', u'boost', u'anti', u'defenc'] [u'australian', u'doubl', u'advanc'] [u'babi', u'assault', u'earn', u'jail', u'term'] [u'banker', u'urg', u'card', u'skim', u'gear'] [u'bank', u'resourc', u'drag', u'market'] [u'barca', u'rumour', u'turn', u'puyol'] [u'bashir', u'blame', u'indonesian', u'blast'] [u'report', u'defend', u'iraq', u'stori'] [u'beauti', u'queen', u'disappear', u'vietnam'] [u'appeal', u'quarri', u'snub'] [u'boati', u'float', u'waterway', u'safeti', u'concern'] [u'boiler', u'blame', u'school', u'evacu'] [u'bowl', u'club', u'overcom', u'insur', u'woe'] [u'break', u'cast', u'doubt', u'skinstad', u'world'] [u'bullen', u'reciev', u'rise', u'star'] [u'cafl', u'club', u'discuss', u'futur', u'plan'] [u'focus', u'alcohol', u'court'] [u'call', u'commit', u'troop', u'star', u'role'] [u'boost', u'region', u'polic', u'number'] [u'campaign', u'releas', u'convict', u'killer', u'disappoint'] [u'campbel', u'injuri', u'forward', u'everton'] [u'candid', u'check', u'polic', u'file', u'breach'] [u'carr', u'back', u'airport', u'committe'] [u'charg', u'lay', u'gretley', u'coal', u'disast'] [u'children', u'weight', u'subject', u'research', u'project'] [u'china', u'coal', u'blast', u'kill'] [u'claim', u'enforc', u'need', u'brothel', u'licens'] [u'clijster', u'reach', u'summit', u'need', u'seal', u'slam'] [u'put', u'focus', u'western'] [u'coach', u'say', u'breaker', u'perform'] [u'communiti', u'forum', u'discuss', u'hydrotherapi', u'pool'] [u'communiti', u'involv', u'south', u'west', u'rock', u'plan', u'council'] [u'coppola', u'seek', u'free', u'citi'] [u'coron', u'investig', u'hospit', u'death'] [u'council', u'approv', u'tourist', u'railway', u'plan'] [u'council', u'confid', u'resid', u'support', u'takeov'] [u'council', u'park', u'fee', u'backflip'] [u'council', u'meet', u'discuss', u'road', u'fund'] [u'council', u'merger', u'remain', u'oppos'] [u'council', u'offer', u'abattoir', u'support'] [u'council', u'reject', u'hawley', u'subdivis', u'plan'] [u'council', u'earli', u'warn', u'super', u'woe'] [u'court', u'back', u'melbourn', u'food', u'poison', u'settlement'] [u'court', u'hear', u'evid', u'stockman', u'murder', u'trial'] [u'court', u'hear', u'evid', u'miss', u'girl', u'case'] [u'court', u'tell', u'sight', u'problem', u'discount', u'evid'] [u'croc', u'hunt', u'import'] [u'current', u'structur', u'stay'] [u'custom', u'chase', u'suspect', u'poacher', u'southern'] [u'dementieva', u'overpow', u'molik', u'toronto'] [u'democrat', u'want', u'restrict', u'land', u'auction', u'bring'] [u'dept', u'quiet', u'alter', u'hec', u'report', u'nelson'] [u'disabl', u'advoc', u'ralli', u'fund', u'increas'] [u'dollar', u'climb', u'rat', u'drop', u'agenda'] [u'doubl', u'suicid', u'attack', u'fractur', u'calm'] [u'drover', u'roadsid', u'mainten', u'cost'] [u'dutch', u'polic', u'nap', u'burglar'] [u'eagl', u'consid', u'crazi', u'deal'] [u'crime', u'guidelin', u'assist', u'busi'] [u'escap', u'show', u'need', u'brisban', u'detent', u'centr'] [u'timor', u'militiaman', u'jail', u'crime'] [u'farmer', u'hop', u'rain'] [u'north', u'shire', u'make', u'applic'] [u'fatah', u'offshoot', u'claim', u'shop', u'centr', u'bomb'] [u'fear', u'drought', u'ruin', u'crop'] [u'fear', u'gibson', u'passion', u'lead', u'anti', u'semit'] [u'fear', u'poki', u'kill', u'funer', u'servic'] [u'fel', u'hand', u'critic', u'book', u'launch'] [u'task', u'forc', u'back', u'rebuild', u'bush', u'suburb'] [u'winner', u'seek', u'champion', u'leagu', u'progress'] [u'fletcher', u'cop', u'week'] [u'tell', u'migrat', u'tribun', u'extort', u'forc'] [u'appear', u'migrat', u'review', u'tribun'] [u'forum', u'address', u'ulverston', u'crime'] [u'foster', u'spin', u'retail', u'game', u'arm'] [u'freeman', u'bullet'] [u'gamito', u'claim', u'sixth', u'stage'] [u'govt', u'deni', u'hick', u'plea', u'bargain', u'strike'] [u'haa', u'look', u'year'] [u'hama', u'claim', u'west', u'bank', u'suicid', u'bomb'] [u'hanson', u'trial', u'membership', u'oper', u'lawyer'] [u'happi', u'cow', u'equal', u'better', u'beef'] [u'heatwav', u'claim', u'frostbit', u'victim'] [u'hick', u'plead', u'guilti', u'report'] [u'hickss', u'father', u'unconvinc', u'deal', u'claim'] [u'hmri', u'share', u'fund'] [u'hockeyroo', u'defeat', u'china'] [u'hook', u'defend', u'hairi', u'back', u'comment'] [u'hope', u'govt', u'tougher', u'firebug', u'penalti'] [u'howard', u'warn', u'earli', u'elect', u'possibl'] [u'husband', u'attempt', u'murder', u'charg', u'refus', u'bail'] [u'immigr', u'lawyer', u'appeal', u'famili', u'court', u'rule'] [u'indigen', u'communiti', u'seek', u'fund', u'guarante'] [u'inform', u'gap', u'hamper', u'assault', u'servic'] [u'internet', u'servic', u'get', u'thumb'] [u'investig', u'examin', u'plane', u'crash', u'site'] [u'head', u'come', u'athen', u'organis'] [u'irrig', u'flush', u'grate', u'water'] [u'jamaica', u'fin', u'indec', u'star'] [u'pearc', u'decid', u'futur'] [u'jobsearch', u'match', u'arthriti', u'patient', u'armi'] [u'johnson', u'track', u'say', u'mitchel'] [u'kefu', u'confid', u'play'] [u'kopassus', u'cooper', u'limit', u'downer'] [u'korean', u'leader', u'urg', u'scam', u'victim', u'come', u'forward'] [u'lake', u'frome', u'park', u'gear', u'summer'] [u'die', u'crash'] [u'face', u'court', u'abstudi', u'fraud', u'charg'] [u'jail', u'child', u'attempt'] [u'appear', u'court', u'son', u'stab'] [u'mayor', u'say', u'lawrenc', u'hargrav', u'drive', u'repair'] [u'mcgradi', u'urg', u'boost', u'beerwah', u'polic', u'number'] [u'melbourn', u'driver'] [u'sentenc', u'jail', u'chop', u'chop', u'haul'] [u'microsoft', u'million', u'patent', u'breach'] [u'miss', u'skier'] [u'mix', u'reaction', u'anim', u'welfar'] [u'school', u'prep', u'trial'] [u'mourner', u'tribut', u'jack', u'ingham'] [u'moya', u'crash', u'cincinnati'] [u'highlight', u'child', u'disabl', u'payment', u'concern'] [u'mundin', u'mend'] [u'muswellbrook', u'back', u'super', u'council', u'plan'] [u'survey', u'reveal', u'busi', u'confid', u'rise'] [u'nato', u'take', u'secur', u'afghanistan'] [u'nelson', u'pull'] [u'newcastl', u'power', u'suppli', u'restor'] [u'kenya', u'coach', u'look', u'build', u'world'] [u'newman', u'billiton', u'worker', u'continu', u'strike'] [u'varieti', u'prove', u'resist', u'leaf', u'rust'] [u'norman', u'doubt', u'championship'] [u'govt', u'millennium', u'train', u'maker'] [u'opposit', u'meet', u'grafton'] [u'cattl', u'farmer', u'fear', u'live', u'export'] [u'oper', u'find', u'abalon', u'poach'] [u'oper', u'shorthorn', u'target', u'livestock', u'thiev'] [u'opposit', u'target', u'ethanol', u'meet'] [u'pacif', u'ring', u'widen'] [u'palestinian', u'cut', u'tour', u'short', u'suicid', u'blast'] [u'founder', u'seek', u'liquid', u'stay'] [u'parish', u'withhold', u'fund', u'priest', u'protest'] [u'power', u'trim', u'overhead'] [u'pilot', u'passeng', u'safe', u'forc', u'land'] [u'pilot', u'take', u'democrat', u'approach', u'run'] [u'plenti', u'stake', u'wood', u'compani'] [u'poki', u'deal', u'problem', u'gambl', u'minist'] [u'polic', u'south', u'east', u'arrest'] [u'polic', u'oper', u'arrest'] [u'polic', u'station', u'delay', u'caus', u'frustrat'] [u'polic', u'solv', u'caus', u'fatal', u'truck', u'crash'] [u'primus', u'doubt', u'return', u'final'] [u'prosecutor', u'seek', u'year', u'jail', u'bashir'] [u'protest', u'drive', u'home', u'anim', u'transport', u'concern'] [u'public', u'hospit', u'work', u'ban', u'continu'] [u'pyne', u'suggest', u'eas', u'fund', u'squeez'] [u'govt', u'cast', u'doubt'] [u'quak', u'give', u'north', u'good', u'shake'] [u'queensland', u'tourist', u'industri', u'fear', u'reef', u'kill'] [u'question', u'rais', u'gippsland', u'water', u'rat', u'rise'] [u'welcom', u'studi', u'sturt', u'highway', u'bypass'] [u'race', u'industri', u'farewel', u'jack', u'ingham'] [u'assess', u'back', u'hous', u'price', u'action'] [u'real', u'look', u'squad', u'fund', u'sign'] [u'report', u'recommend', u'chang', u'region', u'program'] [u'ridout', u'succeed', u'retir', u'head'] [u'vindaloo', u'barbecu', u'futur'] [u'rspca', u'rethink', u'shark', u'welfar', u'probe'] [u'russia', u'rememb', u'kursk', u'disast'] [u'govt', u'admit', u'care', u'fund', u'mistak'] [u'govt', u'appeal', u'shooter', u'suspend', u'sentenc'] [u'semi', u'trailer', u'accid', u'close'] [u'senat', u'call', u'pacif', u'communiti', u'head'] [u'senat', u'scrutinis', u'telstra', u'sale', u'plan'] [u'senat', u'suggest', u'greater', u'access', u'eas', u'kakadu'] [u'slovak', u'minnow', u'look', u'roman', u'champion'] [u'sluman', u'upbeat', u'mood', u'hill'] [u'spark', u'hunt', u'lose', u'skier'] [u'soccer', u'countri', u'region', u'success'] [u'speed', u'camera'] [u'subsidi', u'water', u'drought', u'impact', u'profit'] [u'sugar', u'worker', u'strike'] [u'suicid', u'bomber', u'hit', u'isra', u'shop', u'centr', u'polic'] [u'super', u'help', u'quak', u'predict'] [u'sydney', u'digit', u'radio', u'clear', u'hurdl'] [u'syring', u'hold', u'thief', u'jail'] [u'taiwanes', u'seiz', u'north', u'korea', u'chemic', u'shipment'] [u'tapir', u'fossil', u'discoveri'] [u'festiv', u'bring', u'artist', u'work', u'aliv'] [u'tasmanian', u'tariff', u'fight', u'canberra'] [u'taylor', u'spend', u'exil'] [u'technic', u'shunt', u'prospector', u'train'] [u'techniqu', u'discov', u'help', u'schizophren'] [u'report', u'doesnt', u'surpris', u'farmer'] [u'textil', u'worker', u'ralli', u'expect', u'tariff', u'cut'] [u'tiger', u'bite', u'johnson'] [u'toni', u'strike', u'bronco', u'deal'] [u'toowoomba', u'team', u'track', u'rail', u'competit'] [u'tourism', u'downturn', u'hit', u'jupit', u'profit'] [u'suicid', u'bomber', u'strike', u'israel'] [u'soldier', u'kill', u'south', u'korea', u'plane', u'crash'] [u'troop', u'kill', u'south', u'korea'] [u'underground', u'cabl', u'fault', u'black', u'newcastl'] [u'union', u'want', u'job', u'secur', u'sell'] [u'unit', u'bind', u'kleberson', u'grant', u'work', u'permit'] [u'unit', u'church', u'face', u'backlash'] [u'unit', u'church', u'leader', u'discuss', u'clergi'] [u'univers', u'databas', u'preserv', u'anangu', u'cultur'] [u'soldier', u'face', u'question', u'south', u'korean', u'corps'] [u'troop', u'trigger', u'happi', u'iraqi'] [u'warship', u'anchor', u'liberian', u'coast'] [u'vaughan', u'seek', u'match', u'south', u'african', u'hunger'] [u'victorian', u'domest', u'violenc', u'project', u'launch'] [u'vitamin', u'help', u'beat', u'cholesterol'] [u'waff', u'highlight', u'agricultur', u'fund', u'concern'] [u'warn', u'accus', u'warn', u'coach', u'care'] [u'watchdog', u'show', u'bias', u'labor'] [u'wentworth', u'lock', u'winner'] [u'wesfarm', u'post', u'record', u'profit'] [u'westfield', u'consid', u'garden', u'citi', u'option'] [u'wine', u'compani', u'debt', u'bigger', u'think'] [u'woman', u'die', u'labrador', u'crash'] [u'woolford', u'fletcher', u'earli', u'plea'] [u'worksaf', u'inspector', u'target', u'swan', u'hill'] [u'young', u'australian', u'reveal', u'depress', u'suicid'] [u'women', u'detain', u'brothel', u'raid'] [u'group', u'warn', u'pine', u'replant'] [u'agreement', u'reach', u'pool'] [u'flood', u'rainwat', u'tank', u'rebat'] [u'ajax', u'hold', u'celta', u'vigo', u'enjoy', u'champion', u'leagu', u'debut'] [u'alfa', u'romeo', u'celebr', u'classic'] [u'black', u'revert', u'win'] [u'predict', u'challeng', u'time', u'bank'] [u'argentina', u'move', u'annul', u'junta', u'immun'] [u'arsenal', u'sign', u'vieira', u'pire'] [u'art', u'centr', u'plan', u'move', u'ahead'] [u'atsic', u'chair', u'suspend'] [u'aussi', u'send', u'pack', u'cincinnati'] [u'aust', u'olymp', u'team', u'take', u'extra', u'precaut'] [u'aust', u'olymp', u'team', u'take', u'extra', u'precaut'] [u'australia', u'face', u'back'] [u'australia', u'fare', u'athen', u'say', u'coat'] [u'downplay', u'legal', u'action', u'threat'] [u'babi', u'succumb', u'suspect', u'meningococc'] [u'bali', u'trial', u'blame', u'anti', u'muslim', u'sentiment'] [u'beachsid', u'water', u'good', u'heavi', u'rain', u'bring', u'woe'] [u'belgian', u'court', u'jail', u'peopl', u'smuggler'] [u'birdman', u'branson', u'plung'] [u'bordertown', u'band', u'ponder', u'futur'] [u'bowen', u'enjoy', u'whale', u'watch'] [u'bruce', u'highway', u'upgrad', u'ahead', u'schedul'] [u'build', u'expert', u'design', u'coast'] [u'burrup', u'develop', u'sit', u'spotlight'] [u'bomb', u'kill', u'southern', u'afghanistan'] [u'busi', u'day', u'busi', u'english', u'titl', u'hope'] [u'cafl', u'club', u'defer', u'merger', u'decis'] [u'inform', u'debat', u'mine', u'wast', u'plan'] [u'reinstat', u'aborigin', u'health', u'fund'] [u'carr', u'reject', u'blame', u'badgeri', u'debat'] [u'ceasefir', u'palestinian', u'group'] [u'charl', u'leav', u'polit'] [u'china', u'sack', u'high', u'rank', u'polic'] [u'china', u'thwart', u'north', u'korean', u'asylum'] [u'china', u'build', u'world', u'largest', u'shipyard'] [u'chines', u'author', u'seiz', u'fake', u'olymp', u'product'] [u'christian', u'radio', u'station', u'get', u'licenc'] [u'claim', u'bypass', u'offer', u'road', u'trauma', u'benefit'] [u'clark', u'seek', u'legal', u'advic'] [u'clijster', u'deni', u'problem', u'rival', u'henin'] [u'club', u'gather', u'poki', u'plan', u'concern'] [u'communiti', u'reject', u'ordin', u'homosexu'] [u'consum', u'confid', u'dip'] [u'council', u'approv', u'rabattoir', u'plan'] [u'council', u'happi', u'servic', u'news'] [u'councillor', u'lose', u'adult', u'entertain', u'fight'] [u'councillor', u'oppos', u'heritag', u'precinct'] [u'councillor', u'leav', u'local', u'govt'] [u'council', u'feder', u'fund', u'boost'] [u'council', u'quiz', u'resid', u'perform'] [u'council', u'want', u'consult', u'prison', u'plan'] [u'cricket', u'board', u'blackmail', u'hear', u'adjourn'] [u'darwin', u'host', u'militari', u'exercis'] [u'dept', u'cut', u'benefit', u'school', u'student'] [u'drug', u'deal', u'claim', u'nauru', u'prompt', u'concern'] [u'taliban', u'kill', u'attack', u'afghan', u'troop'] [u'attempt', u'shake', u'jinx'] [u'emerg', u'declar', u'karachi', u'slick'] [u'energi', u'australia', u'probe', u'newcastl', u'black'] [u'england', u'unsettl', u'sleepless', u'smith'] [u'ethanol', u'boss', u'deni', u'special', u'treatment'] [u'farmer', u'appli', u'drought', u'fund'] [u'farmer', u'drought', u'offer'] [u'farmer', u'feder', u'drought'] [u'farmer', u'opposit', u'deregul', u'plan'] [u'foil', u'missil', u'plot'] [u'fear', u'safeti', u'miss'] [u'govt', u'consid', u'airlin', u'report', u'scheme'] [u'govt', u'launch', u'pollut', u'review'] [u'filipino', u'coup', u'leader', u'claim', u'presidenti', u'abus'] [u'film', u'piraci', u'spotlight', u'convent'] [u'fitzpatrick', u'appoint', u'commiss'] [u'fletcher', u'hook', u'boycott', u'bouncer'] [u'detent', u'continu', u'court', u'reject', u'visa'] [u'visa', u'request', u'deni'] [u'child', u'care', u'worker', u'jail', u'abus'] [u'human', u'shield', u'face', u'fin'] [u'minist', u'mediat', u'disput'] [u'wallabi', u'head'] [u'frost', u'affect', u'cane', u'expect', u'harvest', u'soon'] [u'moon', u'beam', u'athen', u'year', u'countdown'] [u'gallop', u'slam', u'inquiri', u'propos', u'term', u'refer'] [u'gibb', u'join', u'durham'] [u'gold', u'coast', u'surfer', u'gather', u'memori'] [u'govt', u'angri', u'lack', u'drought'] [u'govt', u'criticis', u'plan', u'limit', u'kopassus'] [u'govt', u'play', u'callous', u'game', u'disabl', u'fund'] [u'govt', u'tinto', u'team', u'indigen', u'health', u'scheme'] [u'grafton', u'back', u'council'] [u'grazier', u'urg', u'consid', u'camel', u'opportun'] [u'green', u'plan', u'go'] [u'gribbl', u'open', u'melbourn', u'laboratori'] [u'grime', u'apologis', u'posit', u'drug', u'test'] [u'gutnick', u'feud', u'shut', u'sydney', u'school'] [u'haka', u'start', u'long', u'uefa', u'trek'] [u'health', u'budget', u'boost', u'great', u'southern'] [u'hewitt', u'secur', u'pari', u'berth'] [u'hook', u'urg', u'warn', u'speak'] [u'hospit', u'begin', u'oper'] [u'howard', u'back', u'asio', u'threat', u'assess'] [u'hussain', u'eager', u'play'] [u'injur', u'edward', u'delay', u'pari', u'decis'] [u'inquiri', u'exoner', u'tank', u'crew'] [u'insur', u'rebat', u'threaten', u'health', u'studi'] [u'iraqi', u'clear', u'woomera', u'charg'] [u'isra', u'troop', u'demolish', u'suicid', u'bomber', u'home'] [u'japan', u'consid', u'fund', u'rice', u'plastic', u'project'] [u'job', u'line', u'telstra', u'close', u'centr'] [u'journalist', u'stand', u'dodgi', u'dossier', u'stori', u'inquiri'] [u'keke', u'surrend', u'intervent', u'forc'] [u'kemp', u'ask', u'solomon', u'releas', u'dolphin'] [u'khorkina', u'look', u'restor', u'russian', u'pride', u'world'] [u'labor', u'blame', u'ethanol', u'cut'] [u'labor', u'attack', u'lib', u'bendigo', u'effort'] [u'labor', u'warn', u'illawarra', u'badgeri'] [u'landhold', u'welcom', u'arson', u'penalti'] [u'hospit', u'secur', u'turn', u'nurs', u'away', u'oppn'] [u'legendari', u'moss', u'compet', u'adelaid'] [u'liber', u'hit', u'colleagu', u'telstra'] [u'lithuanian', u'bounc', u'boomer'] [u'rat', u'boost'] [u'charg', u'murder', u'bodi'] [u'manildra', u'boss', u'visit', u'nowra', u'plant'] [u'jail', u'burn', u'parent', u'hous'] [u'kill', u'ballarat', u'crash'] [u'sentenc', u'photograph', u'rivkin'] [u'mccartney', u'join', u'bali', u'suit'] [u'mcgradi', u'promis', u'probe', u'beerwah', u'complaint'] [u'sentenc', u'north', u'west', u'assault'] [u'million', u'dollar', u'food', u'poison', u'victim'] [u'miner', u'union', u'continu', u'safeti', u'attack'] [u'miss', u'beauti', u'queen', u'make', u'cameo', u'appear'] [u'mobil', u'phone', u'help', u'save', u'lose', u'skier'] [u'delay', u'land', u'rezon', u'decis'] [u'drought', u'avail'] [u'kingfish', u'escap'] [u'motorist', u'strike', u'lump', u'concret', u'sydney'] [u'motor', u'race', u'circuit', u'boost', u'economi'] [u'aim', u'delay', u'customari', u'amend', u'debat'] [u'attack', u'reef', u'rezon', u'plan'] [u'slam', u'govt', u'plan', u'appoint', u'green', u'committe'] [u'murder', u'victim', u'mother', u'back', u'death', u'penalti'] [u'musharraf', u'call', u'kashmir', u'ceas'] [u'nativ', u'titl', u'parti', u'urg', u'join', u'talk'] [u'natqld'] [u'firefight', u'truck', u'head', u'south', u'east'] [u'newscorp', u'gain', u'push', u'share', u'market', u'higher'] [u'news', u'limit', u'win', u'high', u'court', u'appeal'] [u'nippi', u'award', u'salmonella', u'outbreak'] [u'altern', u'fear', u'local', u'school', u'closur'] [u'beckham', u'fergi', u'ronaldo'] [u'evid', u'support', u'rail', u'threat'] [u'noriega', u'kefu', u'give', u'time'] [u'norman', u'play'] [u'evid', u'support', u'woomera', u'fraud'] [u'player', u'deserv', u'say', u'fittler'] [u'korea', u'stick', u'demand', u'aggress', u'pact'] [u'oceania', u'boss', u'step'] [u'offici', u'deni', u'allianc', u'make', u'aust', u'terror'] [u'olymp', u'organis', u'retreat', u'aust', u'secur'] [u'kill', u'injur', u'crash'] [u'opposit', u'delay', u'ethanol', u'approv'] [u'oval', u'upgrad', u'plan'] [u'major', u'issu', u'public', u'servant', u'cpsu'] [u'payment', u'fast', u'track', u'furnitur'] [u'pinochet', u'tortur', u'victim', u'receiv', u'compens'] [u'plan', u'aim', u'emerg', u'dept', u'congest'] [u'face', u'second', u'censur', u'motion', u'ethanolg'] [u'polic', u'consid', u'crime', u'commiss', u'solv', u'murder'] [u'polic', u'critic', u'crime', u'commiss', u'propos'] [u'polic', u'evid', u'station', u'hand', u'murder', u'trial'] [u'polic', u'play', u'sydney', u'rail', u'threat'] [u'polic', u'probe', u'fatal', u'accid', u'involv', u'child', u'driver'] [u'polic', u'relat', u'liber', u'strain'] [u'polic', u'tap', u'alleg', u'peopl', u'smuggler', u'phone', u'court'] [u'polic', u'think', u'involv', u'girl'] [u'power', u'plan', u'indigen', u'communiti'] [u'probe', u'begin', u'forc', u'land'] [u'govt', u'support', u'wast', u'water', u'plan'] [u'pathologist', u'shortag', u'affect', u'servic'] [u'radcliff', u'attempt', u'doubl', u'world'] [u'ramanauska', u'begin', u'cancer', u'treatment'] [u'ranger', u'hungri', u'champion', u'leagu', u'say', u'mcleish'] [u'rann', u'call', u'murray', u'crisi', u'meet'] [u'report', u'encourag', u'uriarra', u'rebuild'] [u'report', u'highlight', u'threat', u'marin', u'debri'] [u'resid', u'quiz', u'reef', u'plan'] [u'retir', u'bemoan', u'cost', u'age', u'care'] [u'presid', u'visit', u'ail', u'veteran'] [u'santoro', u'continu', u'assault'] [u'search', u'continu', u'miss', u'fisherman'] [u'search', u'continu', u'miss', u'teen'] [u'season', u'fleme'] [u'senat', u'investig', u'bolkus', u'decis'] [u'serna', u'oust', u'maleeva', u'dokic', u'advanc', u'toronto'] [u'offend', u'program', u'better', u'late'] [u'social', u'problem', u'extra', u'task', u'school'] [u'soldier', u'begin', u'live', u'fire', u'exercis'] [u'southern', u'eye', u'bowen', u'real', u'estat'] [u'south', u'sydney', u'reliev', u'litig'] [u'stirl', u'consid', u'alcohol', u'measur'] [u'student', u'angri', u'ax', u'program'] [u'support', u'wool', u'industri', u'grower', u'levi'] [u'suspend', u'driver', u'hospit', u'crash'] [u'sydney', u'charg', u'slaveri', u'crime'] [u'sydney', u'train', u'station', u'alert'] [u'miner', u'safer', u'work', u'hour'] [u'kilda', u'expect', u'warn', u'messag'] [u'teen', u'deni', u'plan', u'kiss', u'tell', u'warn'] [u'teen', u'face', u'court', u'theft', u'charg'] [u'thoroughbr', u'park', u'triall', u'synthet', u'race'] [u'face', u'court', u'missil', u'plot'] [u'tiger', u'fear', u'factor', u'lose', u'bite'] [u'soon', u'benefit', u'insur', u'reform'] [u'toronto', u'museum', u'explor', u'histori', u'contracept'] [u'townsvill', u'aim', u'ocean', u'assess', u'leader'] [u'townsvill', u'await', u'dengu', u'clear'] [u'trawler', u'scallop', u'catch'] [u'truss', u'wont', u'rule', u'futur'] [u'unit', u'complet', u'ronaldo', u'sign'] [u'britain', u'near', u'libya', u'lockerbi', u'deal'] [u'soldier', u'kill', u'blast', u'near', u'baghdad'] [u'soldier', u'kill', u'iraq', u'traffic', u'accid'] [u'vanston', u'defend', u'decis', u'disabl', u'student'] [u'smoke', u'ban', u'tabcorp', u'profit'] [u'wallabi', u'battl', u'injuri', u'concern'] [u'opposit', u'criticis', u'ambul', u'respons', u'time'] [u'polic', u'plan', u'industri', u'campaign'] [u'warn', u'forestri', u'loom'] [u'struggl', u'oper'] [u'water', u'shortag', u'toll', u'irrig'] [u'well', u'commit', u'marin', u'park', u'plan'] [u'wenger', u'impoverish', u'gunner', u'need'] [u'wheatbelt', u'farmer', u'dive', u'aquacultur'] [u'wild', u'weather', u'lash', u'victoria'] [u'coke', u'record', u'healthi', u'profit'] [u'wollongong', u'export', u'promot', u'aust', u'win', u'japan'] [u'wood', u'return', u'ireland', u'wale', u'game'] [u'injur', u'greec', u'quak'] [u'boost', u'countri', u'town', u'infrastructur'] [u'kill', u'heatwav', u'french', u'offici'] [u'dead', u'south', u'korean', u'chopper', u'crash'] [u'criticis', u'industri', u'regul'] [u'act', u'flora', u'fauna', u'make', u'comeback'] [u'hour', u'servic', u'review'] [u'semi', u'final', u'intern'] [u'albani', u'hop', u'fli', u'train', u'centr', u'plan'] [u'alston', u'reject', u'telstra', u'survey', u'result'] [u'ansel', u'achiev', u'signific', u'profit', u'turnaround'] [u'announc', u'prefer', u'secur'] [u'appoint', u'westpac', u'extend'] [u'aquacultur', u'develop', u'urg', u'commerci'] [u'arab', u'televis', u'channel', u'notic'] [u'arctic', u'face', u'meltdown', u'studi'] [u'arson', u'attack', u'rock', u'shop'] [u'artssa', u'chief', u'quit', u'contract'] [u'reject', u'union', u'claim', u'worker', u'notic'] [u'atsic', u'call', u'govt', u'account', u'polici'] [u'aust', u'macedonian', u'allow', u'return', u'greec'] [u'australian', u'swim', u'consid', u'action'] [u'australian', u'unlik', u'head', u'pacif', u'forum'] [u'author', u'shut', u'fake', u'bank', u'websit'] [u'averag', u'week', u'wage', u'top'] [u'barbosa', u'win', u'seventh', u'stage', u'tour', u'portug'] [u'suspend', u'flight', u'saudi', u'secur', u'threat'] [u'pressur', u'hutton', u'inquiri'] [u'beckham', u'sweat', u'makelel', u'open'] [u'beechwood', u'school', u'teacher', u'meet'] [u'blake', u'readi', u'roddick'] [u'bomb', u'blast', u'indian', u'claim', u'live'] [u'boomer', u'lose', u'seri', u'lithuania'] [u'bremer', u'say', u'troop', u'sit', u'duck'] [u'bronco', u'colt', u'leav', u'garden', u'citi', u'comp'] [u'feder', u'region', u'boost'] [u'firefight', u'vehicl', u'undergo', u'trial'] [u'legal', u'action', u'forc', u'council'] [u'call', u'sale'] [u'caravan', u'park', u'oper', u'land', u'rethink'] [u'crash', u'leav', u'teen', u'dead'] [u'lover', u'gear', u'marathon'] [u'celebr', u'worship', u'danger', u'studi'] [u'ceruti', u'comment', u'crisi', u'manag', u'bannan'] [u'charg', u'lay', u'terror', u'plot'] [u'chelsea', u'begin', u'easi', u'champion', u'leagu'] [u'clark', u'lash', u'labor', u'democrat', u'lack', u'support'] [u'clark', u'suspens', u'spark', u'call', u'legisl'] [u'climat', u'chang', u'see', u'save', u'reef'] [u'coalit', u'backbench', u'greater', u'ethanol'] [u'cole', u'myer', u'record', u'profit', u'jump'] [u'communiti', u'support', u'furnitur', u'worker'] [u'compens', u'deal', u'announc', u'abus', u'depend'] [u'virus', u'help', u'desk', u'line', u'run'] [u'concern', u'mount', u'propos', u'polic', u'work', u'ban'] [u'council', u'await', u'spenc', u'respons'] [u'councillor', u'highlight', u'plan'] [u'council', u'seek', u'advic', u'subdivis', u'decis'] [u'council', u'stop', u'protest', u'rail', u'issu'] [u'council', u'manag', u'retir', u'villag'] [u'cpsu', u'plan', u'action', u'educ', u'cut'] [u'darwin', u'council', u'consid', u'wider', u'market'] [u'darwin', u'council', u'criticis', u'restrict', u'meet'] [u'dfat', u'reissu', u'travel', u'warn', u'saudi', u'arabia'] [u'drought', u'blame', u'wool', u'slump'] [u'give', u'week', u'millennium', u'train', u'problem'] [u'ethanol', u'green', u'fuel', u'option', u'labor'] [u'europ', u'wait', u'winner', u'windfal', u'lotteri'] [u'failur', u'flush', u'incur', u'fine'] [u'farmer', u'storag', u'fear'] [u'farmer', u'enjoy', u'downpour'] [u'farmer', u'receiv', u'need', u'rain'] [u'feder', u'ferrero', u'exit', u'cincinnati'] [u'govt', u'urg', u'biofuel', u'industri'] [u'station', u'squeez', u'lead', u'call', u'land'] [u'kill', u'chechen', u'blast'] [u'fund', u'ramp', u'boat', u'facil'] [u'blast', u'put', u'worker', u'hospit'] [u'explor', u'consid', u'environ'] [u'genet', u'studi', u'highlight', u'plankton', u'effici'] [u'german', u'fail', u'alcohol', u'test', u'pass'] [u'gladston', u'host', u'terror', u'exercis'] [u'good', u'rain', u'predict', u'central', u'west'] [u'govt', u'accus', u'clark', u'furor', u'undermin'] [u'govt', u'provid', u'accus', u'discriminatori'] [u'govt', u'turn', u'ethanol', u'debat', u'opposit'] [u'green', u'flight', u'concern'] [u'group', u'seek', u'truss', u'live', u'murray', u'meet'] [u'gunmen', u'threaten', u'collabor', u'iraq'] [u'head', u'collis', u'snowi', u'mountain'] [u'hewitt', u'withdraw', u'cincinnati'] [u'high', u'court', u'rebuk', u'dept', u'pursu', u'masri', u'case'] [u'hous', u'compo', u'preced'] [u'howard', u'welcom', u'keke', u'surrend'] [u'hungri', u'liberian', u'storm', u'port'] [u'hunter', u'neurologist', u'choos', u'advisori', u'council'] [u'irrig', u'form', u'council'] [u'isol', u'attack', u'jeopardis', u'east', u'ceas'] [u'isra', u'soldier', u'kill', u'islam', u'jihad', u'leader'] [u'jamaica', u'announc', u'world', u'champ', u'squad'] [u'joey', u'argentina'] [u'journalist', u'tri', u'distanc', u'dodgi'] [u'judg', u'urg', u'compass', u'detain', u'iranian'] [u'keke', u'custodi', u'intervent', u'forc'] [u'kingston', u'councillor', u'seek', u'local', u'govt'] [u'labor', u'issu', u'warn', u'privatis', u'telstra'] [u'labor', u'return', u'ethanol', u'money', u'dirti'] [u'labor', u'return', u'donat', u'ethanol', u'compani'] [u'lack', u'fund', u'dent', u'local', u'film', u'product'] [u'lazio', u'feet', u'beat', u'benfica'] [u'lib', u'workshop', u'way', u'govern'] [u'libya', u'sign', u'lockerbi', u'deal'] [u'cop', u'fine', u'illeg', u'fish'] [u'die'] [u'get', u'year', u'doubl', u'murder'] [u'question', u'gunnedah', u'sieg'] [u'face', u'court', u'drug', u'make', u'charg'] [u'stand', u'trial', u'warn', u'blackmail', u'alleg'] [u'mcleish', u'optimist', u'despit', u'ranger', u'draw'] [u'meet', u'fail', u'resolv', u'woe'] [u'milit', u'urg', u'surrend', u'weapon', u'wake'] [u'miner', u'move', u'role'] [u'montreal', u'vow', u'save', u'grand', u'prix'] [u'undecid', u'futur'] [u'mysteri', u'surround', u'tasmanian', u'statu'] [u'netbal', u'player', u'shoot', u'footi', u'plan'] [u'concern', u'child', u'leukaemia', u'survivor'] [u'news', u'corp', u'post', u'record', u'profit'] [u'news', u'corp', u'share', u'drop', u'valu', u'despit', u'record'] [u'nextgen', u'collaps', u'take', u'toll', u'leighton', u'profit'] [u'nickel', u'drill', u'prove', u'posit'] [u'nigeria', u'refus', u'hand', u'taylor'] [u'kill', u'india', u'go', u'secur', u'alert'] [u'northern', u'win', u'child', u'care', u'place'] [u'north', u'council', u'warn', u'fish', u'kill', u'threat'] [u'prais', u'polic', u'rail', u'respons'] [u'polic', u'accus', u'overreact', u'rail', u'threat'] [u'public', u'servant', u'grant', u'stamp', u'duti', u'save'] [u'welcom', u'weather'] [u'olymp', u'game', u'invit', u'issu'] [u'dead', u'wound', u'protest', u'iraq'] [u'pacif', u'nation', u'expect', u'sign', u'servic'] [u'pair', u'fin', u'drug', u'charg'] [u'peacekeep', u'control', u'monrovia', u'port'] [u'pedestrian', u'succumb', u'injuri'] [u'miss', u'point', u'indigen', u'issu', u'professor'] [u'polic', u'parent', u'tackl', u'drive'] [u'polic', u'concern', u'underag', u'drive', u'incid'] [u'polic', u'diver', u'search', u'miss', u'teen'] [u'polic', u'hunt'] [u'polic', u'rule', u'rape', u'link'] [u'polic', u'search', u'refug', u'miss', u'woman'] [u'polic', u'unabl', u'explain', u'martin', u'case', u'delay'] [u'portabl', u'missil', u'immedi', u'threat', u'aust'] [u'port', u'strength'] [u'pratt', u'toronto'] [u'public', u'choos', u'prefer', u'choic', u'highway', u'upgrad'] [u'public', u'gather', u'talk', u'council', u'merger'] [u'push', u'fuel', u'ethanol'] [u'govt', u'crowd', u'emerg', u'ward'] [u'teacher', u'disput'] [u'quambatook'] [u'raider', u'suffer', u'injuri', u'blow'] [u'rain', u'close', u'birdsvill', u'track'] [u'rainfal', u'bring', u'mix', u'bless', u'break', u'hill'] [u'rain', u'need', u'dampen', u'earli', u'risk'] [u'rain', u'water', u'restrict'] [u'research', u'partnership', u'improv', u'aborigin', u'health'] [u'resid', u'urg', u'bite', u'mossi', u'number'] [u'road', u'safeti', u'strip', u'break'] [u'roger', u'play', u'spain'] [u'rossi', u'protect', u'dwindl', u'resourc'] [u'russia', u'strong', u'squad', u'world'] [u'sale', u'slump', u'send', u'men', u'magazin', u'break'] [u'samudra', u'verdict', u'month'] [u'scientist', u'powerless', u'tassi', u'devil', u'virus'] [u'season', u'john'] [u'selim', u'lose', u'court', u'limit', u'liquid'] [u'assault', u'spark', u'polic', u'remind'] [u'shire', u'combin', u'tourism', u'effort'] [u'add', u'aussi', u'world', u'champ', u'team'] [u'smith', u'famili', u'attempt', u'boost', u'sponsorship'] [u'socceroo', u'secur', u'jamaica', u'clash'] [u'stair', u'climb', u'wheelchair', u'win', u'approv'] [u'surf', u'club', u'locat', u'unresolv'] [u'survey', u'highlight', u'region', u'secur', u'concern'] [u'sydney', u'council', u'recognis', u'coupl'] [u'sydney', u'rail', u'threat', u'respons', u'appropri', u'polic'] [u'task', u'forc', u'defend', u'erad', u'scheme'] [u'teen', u'die', u'main', u'street', u'crash'] [u'telstra', u'say', u'wont', u'abandon', u'bush'] [u'tendulkar', u'issu', u'court', u'notic'] [u'thiev', u'sting', u'beehiv', u'owner', u'honey', u'shortag'] [u'thinker', u'turn', u'drove', u'idea', u'forum'] [u'timber', u'plant', u'boost', u'beaufort', u'job'] [u'pleas', u'offic', u'effort'] [u'toronto', u'win', u'clijster', u'henin', u'hardenn'] [u'tourism', u'industri', u'hop', u'intern'] [u'tourist', u'number', u'sar', u'impact', u'wan'] [u'truck', u'crash', u'leak', u'fuel', u'hunter', u'river'] [u'boost', u'cunnamulla', u'tourism'] [u'dead', u'shed'] [u'soldier', u'kill', u'iraq'] [u'suspend', u'flight', u'saudi', u'arabia'] [u'unpredict', u'championship', u'prospect'] [u'armi', u'apologis', u'shiit', u'cleric', u'clash'] [u'spend', u'spree', u'caus', u'borrow', u'worri'] [u'team', u'take', u'chanc', u'puerto', u'rico'] [u'troop', u'arriv', u'liberia'] [u'vow', u'fulfil', u'govt', u'crime', u'compens'] [u'premier', u'deni', u'breach', u'whistleblow', u'law'] [u'west', u'african', u'peacekeep', u'deploy', u'monrovia', u'port'] [u'widow', u'fascist', u'leader', u'die'] [u'continu', u'crazi', u'summer'] [u'increas', u'product', u'north'] [u'wood', u'hunt', u'major', u'open', u'hill'] [u'wood', u'hunt', u'major', u'year'] [u'veteran', u'undergo', u'surgeri'] [u'yeppoon', u'properti', u'price', u'soar'] [u'aborigin', u'urg', u'donat', u'bone', u'marrow'] [u'accus', u'chang', u'plea', u'receptionist', u'murder', u'case'] [u'post', u'budget', u'surplus'] [u'adelaid', u'shop', u'centr', u'creat', u'job'] [u'agforc', u'back', u'compulsori', u'ethanol', u'push'] [u'agreement', u'reach', u'safeti'] [u'alcohol', u'restrict', u'loom'] [u'black', u'bledislo', u'prize'] [u'allenbi', u'ace', u'hole', u'hill'] [u'qaeda', u'suspect', u'kill', u'battl'] [u'alston', u'reject', u'telstra', u'sale', u'survey', u'result'] [u'amnesti', u'call', u'nauru', u'asylum', u'seeker', u'access'] [u'anim', u'welfar', u'group', u'support', u'plastic', u'plan'] [u'apec', u'secur', u'review', u'hambali', u'arrest'] [u'armi', u'investig', u'cadet', u'cheat', u'alleg'] [u'arrest', u'jakarta', u'hotel', u'bomb'] [u'aspirin', u'increas', u'miscarriag', u'risk', u'studi'] [u'auckland', u'rain', u'trim', u'black', u'wing'] [u'aussi', u'market', u'end', u'week', u'steadi'] [u'australia', u'largest', u'diamond', u'display'] [u'author', u'consid', u'water', u'save', u'measur'] [u'bali', u'bomb', u'victim', u'say', u'govt', u'shouldnt'] [u'bangladesh', u'khale', u'mahmud', u'captain'] [u'barbosa', u'win', u'eighth', u'stage', u'tour', u'portug'] [u'beckham', u'star', u'player', u'say', u'pele'] [u'bendigo', u'mine', u'fight', u'econom', u'doubt'] [u'blood', u'shortag', u'spark', u'plea', u'donat'] [u'bodi', u'believ', u'miss', u'teen'] [u'bolton', u'jardel', u'miss', u'trafford', u'debut'] [u'bone', u'marrow', u'registri', u'concern', u'lack'] [u'boomer', u'face', u'russia', u'heal'] [u'braveri', u'award', u'suggest', u'good', u'samaritan'] [u'brisban', u'artist', u'win', u'richest', u'indigen', u'prize'] [u'break', u'hill', u'share', u'health', u'research', u'fund'] [u'broom', u'celebr', u'cultur', u'pearl', u'histori'] [u'brumbi', u'smith', u'face', u'court', u'charg'] [u'busi', u'group', u'plastic', u'levi'] [u'butcher', u'hussain', u'ton', u'england', u'control'] [u'californian', u'winemak', u'blow', u'cork'] [u'balanc', u'south', u'east', u'develop', u'plan'] [u'campbel', u'face', u'video', u'trial'] [u'canadian', u'grand', u'prix', u'cancel', u'offici'] [u'canegrow', u'welcom', u'ethanol', u'push'] [u'crash', u'leav', u'teen', u'dead'] [u'carnag', u'road', u'prompt', u'driver'] [u'chamber', u'knock', u'door', u'pari'] [u'chang', u'get', u'open', u'wild', u'card'] [u'chebii', u'hold', u'kenyan', u'hop'] [u'claim', u'atsic', u'detract', u'corp', u'work'] [u'clijster', u'stun', u'toronto'] [u'closur', u'outcri', u'overshadow', u'tenant', u'safeti'] [u'club', u'chief', u'meet', u'fear'] [u'broaden', u'foster', u'care', u'inquiri'] [u'clear', u'cambooya', u'council'] [u'colleg', u'welcom', u'educ', u'centr', u'open'] [u'committe', u'tell', u'abl', u'deal', u'chemic'] [u'communiti', u'consid', u'forest', u'manag'] [u'compani', u'need', u'iron', u'project'] [u'concern', u'rais', u'possibl', u'apec', u'attack'] [u'convict', u'polic', u'killer', u'face', u'court', u'inquiri'] [u'coria', u'cruis', u'cincinnati'] [u'councillor', u'air', u'visitor', u'centr', u'cost', u'concern'] [u'council', u'seek', u'infrastructur', u'fund'] [u'countdown', u'tripl', u'organ', u'recipi', u'homecom'] [u'countri', u'consid', u'back', u'korean', u'entri'] [u'creditor', u'circl', u'troubl', u'sydney', u'school'] [u'cricket', u'australia', u'review', u'anti', u'dope', u'polici'] [u'croc', u'announc', u'sign'] [u'crow', u'lose'] [u'curti', u'bring', u'earth'] [u'custom', u'continu', u'pursuit', u'fish', u'boat'] [u'hop', u'attract', u'younger', u'member'] [u'danc', u'butcher', u'scoop', u'advertis', u'award'] [u'danver', u'emerg', u'successor', u'gunnel'] [u'david', u'jone', u'suffer', u'quarter', u'downturn'] [u'dept', u'defend', u'murray', u'river', u'water', u'trade', u'chang'] [u'deputi', u'confid', u'water', u'reform', u'deal'] [u'share', u'fall', u'wake', u'sale', u'figur'] [u'dont', u'ditch', u'guard', u'lampard', u'tell', u'chelsea'] [u'drought', u'push', u'meat', u'price'] [u'dutch', u'flood', u'waterway', u'seawat', u'beat', u'drought'] [u'eastman', u'storm', u'court'] [u'emot', u'return', u'avellino', u'hear', u'continu'] [u'encourag', u'signal', u'economi'] [u'escarp', u'draft', u'plan', u'near', u'complet'] [u'fear', u'woe', u'wider', u'impact'] [u'govt', u'seek', u'woomera', u'nuclear', u'dump', u'licenc'] [u'council', u'respond', u'reform', u'plan'] [u'flight', u'celebr', u'fli', u'doctor', u'birthday'] [u'foot', u'mouth', u'exercis', u'declar', u'success'] [u'forestri', u'promis', u'plan', u'wont', u'hurt', u'environ'] [u'malaita', u'eagl', u'forc', u'member', u'arm'] [u'franc', u'launch', u'heatwav', u'crisi', u'plan'] [u'franc', u'put', u'condit', u'lockerbi', u'deal'] [u'project', u'near', u'start'] [u'german', u'player', u'absenc', u'cloud', u'champion', u'trophi'] [u'giant', u'killer', u'wasp', u'invad', u'state', u'depart'] [u'gold', u'coast', u'indi', u'ahead'] [u'govt', u'refus', u'bali', u'victim', u'lump', u'payment'] [u'green', u'scheme', u'get', u'longer', u'life'] [u'green', u'voic', u'port', u'expans', u'plan', u'fear'] [u'group', u'highlight', u'region', u'youth', u'suicid'] [u'hagan', u'thank', u'john', u'season', u'effort'] [u'hambali', u'arrest', u'thailand', u'report'] [u'hambali', u'captur', u'make', u'region', u'safer', u'govt'] [u'head', u'injuri', u'forc', u'britt', u'quit'] [u'health', u'crisi', u'talk', u'underway', u'today'] [u'hope', u'partnership', u'deal', u'boost', u'indigen'] [u'readi', u'wear', u'open', u'crown', u'roddick'] [u'iceland', u'begin', u'whale', u'hunt', u'year'] [u'ident', u'crash', u'victim', u'releas'] [u'india', u'plan', u'mission', u'moon'] [u'injuri', u'cost', u'lomu', u'mehrten', u'chanc'] [u'inquest', u'hear', u'miss', u'child', u'probabl', u'murder'] [u'iranian', u'famili', u'releas', u'woomera'] [u'israel', u'free', u'palestinian'] [u'isra', u'palestinian', u'hold', u'talk', u'rescu'] [u'jakovich', u'aspir', u'club'] [u'japan', u'mark', u'year', u'surrend'] [u'cut', u'uncertain', u'merger', u'review', u'continu'] [u'job', u'scheme', u'get', u'boost'] [u'judg', u'avellino', u'decis'] [u'judg', u'hanson', u'fraud', u'trial', u'week'] [u'kefu', u'bledislo', u'decid'] [u'kemp', u'agre', u'boost', u'kakadu', u'entri'] [u'kimmorley', u'replac', u'injur', u'john', u'anderson'] [u'knight', u'stun', u'warrior'] [u'knitwear', u'outlet', u'hit', u'plan', u'breach', u'claim'] [u'labor', u'open', u'nomin', u'nation', u'secretari'] [u'launceston', u'seek', u'cardiologist'] [u'liber', u'parti', u'seek', u'candid', u'bendigo', u'seat'] [u'liberian', u'search', u'food', u'famili'] [u'liberia', u'sanction', u'lift', u'offici'] [u'lightn', u'strike', u'caus', u'massiv', u'blackout'] [u'light', u'start', u'canada'] [u'lobster', u'industri', u'air', u'fear'] [u'lockyer', u'fail', u'fit', u'test'] [u'longreach', u'council', u'deliv', u'budget'] [u'magpi', u'outplay', u'crow'] [u'makelel', u'order', u'rest', u'doctor', u'agent'] [u'citi', u'score', u'fli', u'start', u'uefa'] [u'die', u'motorcycl', u'crash'] [u'die', u'suspici', u'hous'] [u'hospit', u'crossbow', u'wind'] [u'good', u'behaviour', u'bond', u'mail', u'attack'] [u'court', u'drink', u'drive', u'offenc'] [u'prey', u'elder', u'jail', u'year'] [u'marijuana', u'crop', u'uncov', u'hous'] [u'martu', u'peopl', u'hesit', u'land', u'transfer'] [u'medic', u'fail', u'suppress', u'critic', u'report'] [u'melbourn', u'teacher', u'win', u'teach', u'award'] [u'meninga', u'name', u'skipper', u'team', u'decad'] [u'meningococc', u'case', u'confirm', u'gold', u'coast'] [u'mickelberg', u'seek', u'fund', u'test', u'mint', u'swindl'] [u'microb', u'surviv', u'boil', u'water', u'breath', u'iron', u'report'] [u'million', u'power', u'canada'] [u'monti', u'suffer', u'disastr', u'start'] [u'fund', u'seek', u'fight', u'social', u'woe'] [u'fund', u'seek', u'tackl', u'alcohol', u'woe'] [u'nation', u'school', u'health', u'project'] [u'chief', u'limeston', u'coast', u'tourism'] [u'school', u'option'] [u'team', u'player', u'crocodil', u'season'] [u'york', u'offici', u'say', u'power', u'grid', u'overload'] [u'commut', u'face', u'price', u'hike'] [u'okocha', u'languag', u'skill', u'earn', u'bolton', u'captainci'] [u'pacif', u'forum', u'leader', u'sign', u'solomon', u'forc'] [u'pacif', u'island', u'forum', u'deadlock'] [u'pair', u'crash'] [u'pampl', u'lead'] [u'payphon', u'locat', u'guidelin', u'review'] [u'clear', u'host', u'bangladesh', u'test', u'karachi'] [u'person', u'die', u'light', u'plane', u'crash'] [u'go', u'despit', u'power', u'problem'] [u'phelp', u'push', u'thorp', u'greater', u'height', u'talbot'] [u'phillip', u'saint'] [u'factori', u'close', u'job', u'lose'] [u'pilot', u'practis', u'aerobat', u'fatal', u'crash'] [u'plastic', u'levi', u'win', u'public', u'support', u'brown', u'say'] [u'hail', u'hambali', u'arrest'] [u'polic', u'continu', u'snowi', u'mountain', u'drug', u'crackdown'] [u'polic', u'crack', u'underag', u'driver'] [u'policeman', u'attack', u'port', u'augusta'] [u'polic', u'woman', u'kill', u'crash'] [u'polic', u'search', u'assault'] [u'polic', u'extradit', u'suspect', u'home', u'invas', u'case'] [u'port', u'author', u'announc', u'chief', u'execut'] [u'port', u'player', u'return'] [u'portsmouth', u'throw', u'bosnich', u'lifelin'] [u'power', u'start', u'flow', u'america'] [u'price', u'dispar', u'fuel', u'plan', u'group'] [u'prison', u'suspect', u'cut', u'brisban'] [u'prison', u'industri', u'action'] [u'progress', u'footbal', u'club', u'home'] [u'qanta', u'plan', u'restructur'] [u'qanta', u'staff', u'oppos', u'random', u'drug', u'test'] [u'govt', u'ask', u'sugarcan', u'plan'] [u'govt', u'ask', u'freez', u'brumbi', u'remov'] [u'lead', u'australian', u'tourism', u'rebound'] [u'quarri', u'plan', u'spark', u'rezon', u'issu'] [u'rare', u'shrub', u'daisi', u'make', u'threaten', u'speci', u'list'] [u'reef', u'report', u'prompt', u'urgent', u'action'] [u'reef', u'tourism', u'oper', u'hop', u'nemo', u'profit'] [u'research', u'dire', u'predict', u'reef'] [u'resid', u'quiz', u'council', u'futur'] [u'resourc', u'centr', u'jerramungup'] [u'roddick', u'down', u'blake', u'cincinnati'] [u'schwarzenegg', u'beef', u'campaign', u'governor'] [u'search', u'begin', u'miss'] [u'search', u'escap', u'qaeda', u'suspect'] [u'world', u'shark', u'case', u'hit', u'staff', u'moral'] [u'second', u'plane', u'crash', u'land', u'near', u'sydney'] [u'septemb', u'trial', u'revisit', u'hijack', u'love', u'stori'] [u'korea', u'optimist', u'breakthrough'] [u'stephen', u'lead', u'investor', u'south', u'east', u'tour'] [u'strong', u'support', u'introduc', u'liquor', u'accord'] [u'strong', u'support', u'pacif', u'polic', u'train', u'program'] [u'talli', u'hop', u'lead', u'tour'] [u'tarantula', u'abandon', u'mexico', u'airport'] [u'govt', u'fox', u'pest', u'photo'] [u'govt', u'urg', u'hold', u'child', u'abus', u'inquiri'] [u'lib', u'promis', u'home', u'buyer', u'stamp', u'duti', u'relief'] [u'town', u'plan', u'lure', u'sydney', u'tourist'] [u'tesk', u'chase', u'diaz', u'sylvania'] [u'tesk', u'trail', u'ohio'] [u'titl', u'race', u'team', u'say', u'henri'] [u'townsvill', u'award', u'upgrad', u'canal'] [u'truck', u'crash', u'albani', u'highway'] [u'trucki', u'clear', u'employ', u'skin', u'cancer'] [u'plan', u'overhaul', u'afghanistan', u'oper'] [u'quiet', u'hambali', u'whereabout'] [u'varieti', u'club', u'gear', u'play', u'gear', u'handov'] [u'face', u'blackout'] [u'wallabi', u'abandon', u'tradit', u'run', u'game', u'jone'] [u'marron', u'season', u'close'] [u'teacher', u'plan', u'week', u'protest'] [u'water', u'plan', u'rais', u'indigen', u'concern'] [u'water', u'weed', u'threaten', u'environ'] [u'whan', u'offer', u'bombala', u'merger', u'assur'] [u'widespread', u'drug', u'raid', u'result', u'arrest'] [u'wind', u'farm', u'promis', u'job'] [u'women', u'concern', u'specialist', u'decis'] [u'wood', u'continu', u'major', u'problem'] [u'world', u'poll', u'name', u'isaac', u'newton', u'greatest', u'briton'] [u'soldier', u'kill', u'landslid', u'nepal'] [u'dead', u'injur', u'motorbik', u'accid'] [u'abc', u'henderson', u'die'] [u'bushfir', u'fund', u'fair', u'distribut'] [u'actor', u'sizemor', u'guilti', u'heidi', u'fleiss', u'case'] [u'ship', u'dock', u'liberian', u'capit'] [u'black', u'lead', u'wallabi', u'half', u'time'] [u'anwar', u'announc', u'retir', u'cricket'] [u'aussi', u'falter', u'micheel', u'grab', u'uspga', u'lead'] [u'australian', u'head', u'pacif', u'forum'] [u'australia', u'largest', u'diamond', u'name'] [u'australia', u'win', u'world', u'debat', u'crown'] [u'avellino', u'return', u'help', u'grind', u'darter'] [u'bettong', u'return', u'mainland'] [u'biaggi', u'claim', u'provision', u'pole', u'record'] [u'birmingham', u'boss', u'bruce', u'sign', u'year', u'contract'] [u'boomer', u'russia'] [u'bowyer', u'prim', u'face', u'leed', u'hate'] [u'brisban', u'polic', u'charg', u'murder'] [u'british', u'polic', u'charg', u'anti', u'terror', u'raid'] [u'british', u'tourist', u'kill', u'road', u'crash'] [u'budget', u'squeez', u'prompt', u'swedish', u'armi'] [u'burma', u'replac', u'dollar', u'euro', u'trade'] [u'bush', u'call', u'upgrad', u'power', u'grid'] [u'replac', u'sydney', u'canberra', u'rail', u'rout'] [u'californian', u'governor', u'game', u'get', u'underway'] [u'chechen', u'rebel', u'kill', u'russian', u'soldier'] [u'chelsea', u'invest', u'million', u'youth'] [u'china', u'jolt', u'strong', u'earthquak'] [u'convent', u'centr', u'question'] [u'cyber', u'squatter', u'lose', u'viagra', u'websit'] [u'death', u'toll', u'climb', u'itali', u'heatwav'] [u'diabet', u'rise', u'death', u'rate', u'drop'] [u'diaz', u'extend', u'lead', u'lpga', u'kroger', u'classic'] [u'england', u'rock', u'south', u'africa'] [u'fergi', u'defend', u'drop', u'barthez'] [u'feyenoord', u'fin', u'refus', u'releas', u'player'] [u'firework', u'accid', u'injur'] [u'kaiser', u'score', u'feder'] [u'frustrat', u'tiger', u'warn', u'dont', u'write'] [u'gold', u'reward', u'birmingham', u'bruce'] [u'govt', u'introduc', u'break'] [u'hama', u'protestor', u'demand', u'releas', u'prison'] [u'hambali', u'question', u'secret', u'locat'] [u'henin', u'hardenn', u'switch', u'toronto', u'light'] [u'hockeyroo', u'maintain', u'unbeaten', u'european'] [u'amin', u'die', u'saudi', u'hospit'] [u'impress', u'zurich', u'win', u'ayhan', u'dever'] [u'inquiri', u'order', u'famili', u'payment', u'wealthi'] [u'inspir', u'kirtley', u'put', u'england', u'control'] [u'iraq', u'pipelin', u'turkey'] [u'israel', u'reject', u'refuge', u'right', u'return'] [u'jakarta', u'say', u'hambali', u'tri', u'indonesia'] [u'japan', u'bomb', u'survivor', u'south', u'korea'] [u'joint', u'bodi', u'probe', u'power', u'blackout'] [u'joint', u'task', u'forc', u'determin', u'caus', u'power', u'cut'] [u'jone', u'stress', u'bledislo', u'import'] [u'kewel', u'give', u'licenc', u'roam', u'liverpool'] [u'kidman', u'pick', u'movi', u'honour'] [u'labor', u'swoop', u'health', u'insur', u'figur'] [u'lawyer', u'sue', u'oldfield', u'terror', u'websit'] [u'liber', u'betray'] [u'libya', u'accus', u'franc', u'blackmail', u'lockerbi'] [u'libya', u'own', u'lockerbi', u'bomb'] [u'liverpool', u'reveng', u'spender', u'chelsea'] [u'charg', u'murder', u'fatal', u'hous'] [u'dead', u'ballina', u'stand'] [u'fin', u'shoot', u'condor'] [u'unit', u'spirit', u'good'] [u'massiv', u'collis', u'involv', u'motorcyclist'] [u'mcleish', u'wont', u'guarante', u'ferguson', u'stay'] [u'mcrae', u'swan', u'match'] [u'mickelson', u'pampl', u'stumbl', u'wood', u'stir'] [u'microsoft', u'await', u'renew', u'worm', u'attack'] [u'accid', u'report', u'call', u'equip', u'review'] [u'missionari', u'kill', u'spi', u'rebel', u'chief'] [u'peacekeep', u'land', u'liberia', u'talk', u'stumbl'] [u'mother', u'advertis'] [u'moy', u'keen', u'jeffer', u'return', u'toffe'] [u'negoti', u'continu', u'stop', u'factori', u'lockout'] [u'nepal', u'join'] [u'wicket', u'kasprowicz', u'claim', u'season', u'best'] [u'rail', u'welcom', u'fare', u'rise'] [u'host', u'intern', u'dart', u'tournament'] [u'pacif', u'code', u'tackl', u'corrupt'] [u'pacif', u'leader', u'discuss', u'chief'] [u'pakistan', u'begin', u'spill', u'clean'] [u'palestinian', u'hail', u'deal', u'west', u'bank', u'pullout'] [u'polic', u'post', u'launch', u'solomon'] [u'pompey', u'todorov', u'rule', u'season'] [u'poor', u'visibl', u'ground', u'nigerian', u'reinforc'] [u'port', u'keen', u'snatch', u'spot'] [u'power', u'return', u'york'] [u'power', u'slowli', u'return', u'north', u'america'] [u'elect', u'hold', u'foster', u'care', u'inquiri'] [u'indigen', u'communiti', u'alcohol', u'free'] [u'ranieri', u'dismiss', u'chelsea', u'titl', u'chanc'] [u'rann', u'decri', u'govt', u'nuclear', u'dump'] [u'reef', u'plan', u'start', u'manag'] [u'roddick', u'set', u'semi', u'final', u'clash', u'mirnyi'] [u'saint', u'banish', u'blue', u'eagl', u'hold', u'cat', u'hawk'] [u'world', u'put', u'injur', u'shark'] [u'second', u'person', u'charg', u'murder', u'fatal'] [u'shark', u'extinguish', u'dragon', u'tiger', u'cowboy'] [u'skew', u'gender', u'ratio', u'leav', u'chines', u'bird'] [u'smith', u'pledg', u'loyalti', u'leed'] [u'stoner', u'break', u'bone', u'crash'] [u'talk', u'timet', u'isra', u'pullback'] [u'govt', u'dismiss', u'teach', u'union', u'claim'] [u'polic', u'offic', u'guilti', u'assault'] [u'saffron', u'grower', u'win', u'busi', u'gong'] [u'termin', u'live', u'arni'] [u'tiger', u'good', u'bronco'] [u'tradit', u'owner', u'australia', u'biggest'] [u'kill', u'horrif', u'motorcycl', u'accid'] [u'propos', u'lift', u'libya', u'sanction'] [u'ullrich', u'motiv', u'brake', u'bettini'] [u'ship', u'arriv', u'liberian', u'port'] [u'canada', u'play', u'blame', u'game', u'blackout'] [u'interrog', u'hambali'] [u'stock', u'slight', u'light', u'trade'] [u'properti', u'price', u'boom', u'continu'] [u'victorian', u'moth', u'face', u'test'] [u'villa', u'birmingham', u'fin', u'derbi', u'mele'] [u'wallabi', u'improv', u'black', u'bledislo'] [u'wallabi', u'improv', u'bledislo'] [u'rescu', u'helicopt', u'take'] [u'warn', u'accus', u'charg', u'extort'] [u'increas', u'litter', u'fin'] [u'titl', u'wenger'] [u'wenger', u'object', u'perceiv', u'target', u'campbel'] [u'wolfsburg', u'sign', u'argentin', u'teenag'] [u'hurt', u'french', u'firework', u'explos'] [u'hurt', u'spanish', u'bull', u'run', u'fiesta'] [u'iranian', u'kill', u'protest'] [u'round', u'pollock', u'put', u'england', u'pressur'] [u'accus', u'govt', u'welfar', u'doubl', u'standard'] [u'angel', u'score', u'tour', u'portug'] [u'apec', u'terror', u'risk'] [u'australia', u'young', u'scientist', u'fresh'] [u'bayern', u'triumphant', u'makaay', u'wait', u'goal'] [u'beckham', u'hide', u'spanish', u'oppon'] [u'britain', u'seek', u'libya', u'sanction'] [u'british', u'minist', u'fall', u'kelli', u'death'] [u'british', u'polic', u'arrest', u'undercov', u'report'] [u'bush', u'mandela', u'break', u'silenc'] [u'canberra', u'baghdad', u'sister', u'citi'] [u'citi', u'fight', u'lover', u'padlock', u'plagu'] [u'costello', u'warn', u'hous', u'boom', u'near'] [u'court', u'lift', u'malawi', u'brother'] [u'crean', u'pledg', u'review', u'ethanol', u'subsidi'] [u'crowd', u'get', u'rush', u'alic', u'rodeo'] [u'masri', u'reach', u'record', u'dog', u'crush', u'man', u'storm'] [u'fair', u'allianc', u'fight', u'core', u'social', u'valu'] [u'fear', u'spider', u'danger', u'research'] [u'rag', u'iraqi', u'export', u'pipelin'] [u'fish', u'set', u'final', u'clash', u'friend', u'roddick'] [u'teacher', u'replac', u'high', u'school'] [u'malaysian', u'striker', u'die', u'footbal'] [u'ugandan', u'dictat', u'amin', u'buri'] [u'fraser', u'share', u'lead', u'russian', u'open'] [u'french', u'ligu', u'round'] [u'govt', u'promot', u'australian', u'citizenship'] [u'govt', u'send', u'weapon', u'inspector', u'north', u'korea'] [u'govt', u'caus', u'lockerbi', u'libyan', u'minist'] [u'guantanamo', u'brit', u'plea', u'bargain', u'deal', u'report'] [u'hall', u'doubl', u'rock', u'england'] [u'headbutt', u'sink', u'green', u'world', u'titl'] [u'health', u'fund', u'plan', u'cost', u'minist', u'say'] [u'health', u'offici', u'look', u'reshap', u'polici'] [u'health', u'polici', u'need', u'urgent', u'care', u'polit', u'acoss'] [u'henin', u'hardenn', u'pass', u'tough', u'test', u'reach', u'final'] [u'hockeyroo', u'steal', u'draw', u'pakistan'] [u'hoddl', u'seeth', u'refere'] [u'hussey', u'score', u'career', u'best'] [u'iceland', u'resum', u'whale', u'hunt'] [u'indonesia', u'arrest', u'marriott', u'blast'] [u'jakarta', u'hotel', u'bomb', u'assembl', u'sumatra', u'report'] [u'jakarta', u'say', u'arrest', u'marriott', u'blast', u'probe'] [u'kaiser', u'void', u'strategi', u'analyst'] [u'liberian', u'leader', u'leav', u'talk', u'deal'] [u'liberian', u'talk', u'deadlock', u'rebel', u'job'] [u'lill', u'clinch'] [u'makelel', u'defi', u'real', u'answer', u'franc', u'report'] [u'makelel', u'miss', u'train', u'real'] [u'malaysian', u'polic', u'question', u'hambali', u'wife'] [u'maverick', u'jamison', u'player', u'deal'] [u'mayor', u'tip', u'babi', u'boom', u'blackout'] [u'mediat', u'threaten', u'suspend', u'liberian', u'peac', u'talk'] [u'memori', u'servic', u'hold', u'melanesian', u'missionari'] [u'micheel', u'tie', u'lead', u'woodss', u'hop', u'fade'] [u'microsoft', u'fend', u'worm', u'attack'] [u'miner', u'sight', u'china'] [u'light'] [u'mother', u'charg', u'kill', u'daughter'] [u'mother', u'court', u'charg', u'daughter', u'murder'] [u'museum', u'staff', u'warn', u'harder', u'public', u'access'] [u'nepal', u'peac', u'talk', u'resum'] [u'ahead', u'time', u'indigen', u'initi'] [u'offici', u'fair', u'certain', u'sourc', u'caus', u'blackout'] [u'dead', u'aftershock', u'rattl', u'china'] [u'pacif', u'urg', u'north', u'korea', u'nuclear', u'program'] [u'fire', u'birdi', u'suspend', u'lpga', u'jami'] [u'pakistan', u'silent', u'water', u'win', u'swiss', u'film', u'prize'] [u'perth', u'lose', u'streak'] [u'defend', u'bali', u'compens', u'decis'] [u'deni', u'special', u'favour', u'ethanol', u'compani'] [u'dismiss', u'call', u'increas', u'health', u'fund'] [u'vow', u'pass', u'secur', u'warn'] [u'polit', u'donat', u'okay', u'favour', u'crean', u'say'] [u'port', u'adelaid', u'secur', u'spot'] [u'qanta', u'hit', u'bird'] [u'govt', u'defend', u'health'] [u'ranger', u'fight', u'celtic', u'goal', u'crazi'] [u'rann', u'hypocrit', u'use', u'wast', u'dump'] [u'rann', u'call', u'genuin', u'partnership', u'health'] [u'tinto', u'stick', u'gun'] [u'rooney', u'england', u'squad'] [u'rossi', u'take', u'pole', u'czech', u'grand', u'prix'] [u'sabotag', u'depriv', u'iraqi', u'water', u'icrc'] [u'sabotag', u'halt', u'iraqi', u'export'] [u'polic', u'shock', u'callous'] [u'world', u'defend', u'shark', u'hold', u'pool'] [u'iraqi', u'kill', u'dozen', u'wound', u'baghdad', u'jail'] [u'songwrit', u'townsend', u'die'] [u'sorri', u'sunderland', u'close', u'record', u'defeat'] [u'swan', u'lion', u'bomber', u'docker', u'book', u'final'] [u'swan', u'fight', u'brisban'] [u'govt', u'refus', u'build', u'firm', u'insur'] [u'temperatur', u'drop', u'heat', u'french', u'govt'] [u'terror', u'council'] [u'kill', u'china', u'earthquak'] [u'twent', u'ensched', u'open', u'victori'] [u'court', u'order', u'girl', u'flog', u'adulteri'] [u'unit', u'arsenal', u'open', u'season', u'style'] [u'admit', u'blackout', u'begin', u'ohio'] [u'back', u'polic', u'chief', u'injur', u'iraq', u'ambush'] [u'like', u'sourc', u'blackout', u'offici'] [u'share', u'hambali', u'inform'] [u'veteran', u'arriv', u'long', u'commemor'] [u'vietnam', u'reject', u'iraqi', u'famili', u'visa', u'applic'] [u'wood', u'enjoy', u'emot', u'win', u'return'] [u'work', u'cultur', u'eat', u'away', u'live', u'actu'] [u'dead', u'miss', u'brazil', u'boat', u'capsiz'] [u'oppn', u'concern', u'train', u'link', u'suspens'] [u'focus', u'equal', u'doctor'] [u'actu', u'congress', u'discuss', u'survey', u'result'] [u'actu', u'propos', u'wont', u'creat', u'job', u'acci'] [u'actu', u'ralli', u'medicar', u'fight'] [u'urg', u'investig', u'cheap', u'power', u'scheme'] [u'adelaid', u'darwin', u'rail', u'link', u'approach', u'alic', u'spring'] [u'review', u'picioan', u'sinclair', u'clash'] [u'alleg', u'murder', u'appeal', u'gain', u'access', u'famili'] [u'arson', u'suspect', u'hous'] [u'boss', u'back', u'wallabi'] [u'athen', u'start', u'fightback', u'favour'] [u'atsic', u'appoint', u'act', u'chairman'] [u'aussi', u'fraser', u'win', u'russian', u'open'] [u'aussi', u'women', u'relay', u'team', u'suffer', u'setback'] [u'australia', u'float', u'pacif', u'union', u'idea'] [u'australia', u'ranger', u'recept'] [u'babi', u'manslaught', u'trial', u'begin'] [u'bangladesh', u'coach', u'whatmor', u'face', u'tough', u'mission'] [u'bankwest', u'sharehold', u'favour', u'takeov'] [u'bear', u'maul', u'clydesdal'] [u'beatti', u'urg', u'cairn', u'flight', u'boost'] [u'bekel', u'ader', u'doubl', u'pari'] [u'expand', u'vietnames', u'oper'] [u'time', u'cricket', u'return', u'pakistan'] [u'blaze', u'claim', u'murrind', u'hous'] [u'blue', u'green', u'alga', u'alert'] [u'bosnich', u'admit', u'cocain', u'addict'] [u'kill', u'high', u'speed', u'chase'] [u'breez', u'sniff', u'chemic', u'contamin'] [u'britain', u'pizza', u'chain', u'ban', u'smoke'] [u'build', u'industri', u'sceptic', u'region', u'hous'] [u'bulldog', u'target', u'spot'] [u'businessman', u'appeal', u'yacht'] [u'busselton', u'appear', u'court', u'drug', u'charg'] [u'butler', u'appoint', u'tasmanian', u'governor'] [u'butler', u'appoint', u'receiv', u'polit', u'back'] [u'buyer', u'nation', u'bank'] [u'greener', u'cleaner', u'fuel'] [u'canberra', u'investig', u'baghdad', u'link'] [u'catanzar', u'offer', u'poki', u'assur'] [u'chase', u'continu', u'illeg', u'fish', u'suspect'] [u'chelsea', u'million', u'instant', u'success'] [u'child', u'abus', u'inquiri', u'receiv', u'call'] [u'china', u'australia', u'hold', u'free', u'trade', u'talk'] [u'clps', u'problem', u'resolv', u'intern', u'martin'] [u'communiti', u'comment', u'seek', u'residenti', u'land'] [u'communiti', u'input', u'seek', u'power', u'line', u'locat'] [u'communiti', u'work', u'reduc', u'femal', u'jail', u'popul'] [u'concern', u'rais', u'vodka', u'jelli', u'shot'] [u'consum', u'hungri', u'lamb', u'despit', u'price', u'rise'] [u'coroni', u'inquiri', u'call', u'bushwalk'] [u'council', u'consid', u'camp', u'restrict'] [u'council', u'settl', u'estat', u'wrangl'] [u'council', u'reform', u'extens', u'assur'] [u'council', u'face', u'cash', u'shortag'] [u'council', u'urg', u'investig', u'attack'] [u'council', u'weigh', u'bridg', u'load', u'limit', u'debat'] [u'countrylink', u'seek', u'staff'] [u'court', u'hear', u'murder', u'suspect', u'pose', u'policeman'] [u'cowboy', u'revers', u'form', u'slump'] [u'crew', u'contain', u'mildura', u'shop', u'centr', u'blaze'] [u'crow', u'indebt', u'swan'] [u'darwin', u'tip', u'hous', u'disast', u'respons', u'centr'] [u'decis', u'expect', u'today', u'atsic', u'posit'] [u'develop', u'fine', u'tune', u'shark', u'plan'] [u'dutch', u'kookaburra'] [u'egypt', u'foreign', u'belli', u'dancer'] [u'kill', u'violent', u'protest', u'central', u'iran'] [u'english', u'premier', u'leagu', u'match', u'report'] [u'factori', u'blaze', u'caus', u'week', u'know'] [u'farmer', u'crop', u'survey'] [u'farmer', u'welcom', u'landcar', u'report'] [u'govt', u'cut', u'troop', u'east', u'timor'] [u'film', u'industri', u'consid', u'piraci', u'protect'] [u'destroy', u'cultur', u'centr'] [u'firefight', u'bodi', u'melbourn'] [u'fischer', u'call', u'airport', u'emerg', u'team'] [u'friend', u'ruddock'] [u'foreign', u'remand', u'cocain', u'smuggl'] [u'forest', u'industri', u'shock', u'propos', u'sell'] [u'franc', u'brace', u'violent', u'storm'] [u'german', u'beer', u'thief', u'catch', u'roll', u'barrel'] [u'break', u'trade', u'agreement'] [u'govern', u'doubl', u'jetti', u'fund'] [u'govt', u'appoint', u'chief', u'cancer', u'offic'] [u'govt', u'attack', u'disempow', u'aborigin'] [u'govt', u'support', u'need', u'secur', u'astronomi', u'project'] [u'grain', u'merger', u'plan', u'continu'] [u'green', u'criticis', u'rail', u'infrastructur'] [u'green', u'seek', u'sink', u'free', u'travel', u'retir', u'polli'] [u'group', u'back', u'countri', u'doctor', u'plan'] [u'group', u'meet', u'carr', u'illawarra', u'issu'] [u'gunfir', u'resound', u'nigerian', u'citi'] [u'hambali', u'proceed', u'wont', u'start', u'absenc'] [u'hansen', u'doubt', u'ahead', u'england', u'clash'] [u'henin', u'hardenn', u'take', u'toronto', u'titl'] [u'hib', u'edinburgh', u'derbi', u'join', u'ranger'] [u'horror', u'showdown', u'scar', u'score', u'offic'] [u'hospit', u'chief', u'back', u'cardiolog', u'servic'] [u'hospit', u'urg', u'adopt', u'cardiac', u'arrest'] [u'hous', u'price', u'rise'] [u'howard', u'begin', u'china', u'visit'] [u'howel', u'applebi', u'secur', u'final', u'presid', u'spot'] [u'iceland', u'whaler', u'lose', u'touch'] [u'indonesian', u'polic', u'papua', u'rebel', u'surrend'] [u'indonesia', u'remain', u'high', u'terror', u'alert'] [u'indonesia', u'want', u'access', u'hambali'] [u'intervent', u'forc', u'target', u'solomon', u'financ'] [u'investig', u'probe', u'qanta', u'bird', u'strike'] [u'iraqi', u'refuge', u'famili', u'sick', u'return', u'australia'] [u'israel', u'handov', u'citi', u'delay'] [u'jail', u'capac', u'spotlight'] [u'jolli', u'win', u'elect'] [u'judg', u'continu', u'summat', u'hanson', u'fraud', u'trial'] [u'kaiser', u'rule', u'parliamentari', u'return'] [u'kelli', u'offer', u'boundari', u'assur'] [u'kennett', u'welcom', u'suicid', u'report'] [u'kirtley', u'inspir', u'england', u'dramat', u'victori'] [u'landcar', u'farm', u'prove', u'posit'] [u'lesbian', u'share', u'cervic', u'cancer', u'risk', u'studi'] [u'liberian', u'faction', u'agre', u'access', u'area'] [u'liberian', u'peac', u'deal', u'immin'] [u'liberian', u'peac', u'deal', u'loom'] [u'liberian', u'rival', u'sign', u'peac', u'deal'] [u'lili', u'creek', u'diesel', u'spill', u'clear'] [u'lion', u'premiership', u'aspir', u'suffer', u'setback'] [u'local', u'domin', u'tour', u'portug'] [u'malaysia', u'detain', u'hambali', u'wife', u'indefinit'] [u'die', u'arm', u'stand'] [u'die', u'crash'] [u'face', u'murder', u'charg', u'murgon'] [u'mayor', u'highlight', u'brothel', u'opposit'] [u'mayor', u'reject', u'wind', u'farm', u'doubt'] [u'melbourn', u'lose', u'hill', u'injuri'] [u'micheel', u'captur', u'titl'] [u'micheel', u'rescu', u'career', u'major'] [u'miss', u'inmat', u'catch', u'hide', u'dumpster'] [u'miss', u'teen', u'bodi'] [u'forecast', u'strong', u'beef', u'price'] [u'monto', u'coal', u'project', u'suspend'] [u'seek', u'welfar', u'cours'] [u'motorcyclist', u'social', u'rid'] [u'nardello', u'win', u'zurich', u'world', u'bettini', u'retain', u'lead'] [u'nepales', u'rebel', u'reject', u'govt', u'plan'] [u'atsic', u'deputi', u'lead', u'default'] [u'newcastl', u'oper'] [u'croc', u'import', u'offer', u'versatil'] [u'import', u'offer', u'croc', u'versatil'] [u'york', u'go', u'work'] [u'nightclub', u'meet', u'polic', u'curfew', u'concern'] [u'northam', u'hous', u'plan', u'take'] [u'north', u'west', u'polic', u'begin', u'campaign'] [u'olymp', u'heptathlon', u'champion', u'lewi', u'confirm', u'pari'] [u'dead', u'isra', u'bomb', u'blast'] [u'hold', u'jami', u'farr', u'kroger', u'classic'] [u'pakistan', u'turn', u'terror', u'charg', u'india'] [u'patterson', u'confid', u'deal', u'close'] [u'pennant', u'fli', u'north', u'leed'] [u'perth', u'leukaemia', u'suffer', u'die'] [u'dismiss', u'beatti', u'comment', u'health', u'fund'] [u'polic', u'road', u'accid', u'concern'] [u'polic', u'search', u'miss'] [u'polic', u'continu', u'search', u'miss', u'woman'] [u'policeman', u'shoot', u'near', u'cairn'] [u'polic', u'seek', u'help', u'find', u'miss', u'peopl'] [u'port', u'defend', u'game', u'tactic'] [u'premier', u'propos', u'health', u'plan'] [u'qanta', u'launch', u'final', u'deal'] [u'opposit', u'back', u'ethanol', u'mandat'] [u'rainbow', u'lorikeet', u'exempt', u'licenc'] [u'ranieri', u'warn', u'chelsea', u'need', u'time', u'despit', u'anfield'] [u'rape', u'victim', u'back', u'indefinit', u'jail'] [u'report', u'highlight', u'safeti', u'risk'] [u'resourc', u'bank', u'stock', u'drive', u'market', u'higher'] [u'roddick', u'score', u'master', u'seri', u'doubl'] [u'rooster', u'rest', u'fittler'] [u'rossi', u'return', u'win', u'way'] [u'saddington', u'doubt', u'swan'] [u'econom', u'outlook', u'tick', u'higher'] [u'govt', u'open', u'scheme', u'fight', u'river', u'salin'] [u'samoan', u'launch', u'attack', u'rugbi', u'govern', u'bodi'] [u'sandpip', u'leav', u'netbal', u'leagu'] [u'secur', u'head', u'call', u'polit', u'meddl'] [u'sinclair', u'plead', u'guilti', u'picioan', u'clash'] [u'korea', u'fire', u'north', u'korean', u'boat'] [u'small', u'busi', u'prospect'] [u'spenc', u'await', u'council', u'evalu', u'process'] [u'staff', u'shortag', u'blame', u'rail', u'servic', u'suspens'] [u'standbi', u'support', u'program', u'seek', u'fund'] [u'state', u'rail', u'deni', u'fudg', u'crime', u'figur'] [u'steven', u'tribun'] [u'student', u'seek', u'faculti', u'meet', u'engin'] [u'sturrup', u'believ', u'golden', u'summer'] [u'success', u'pollock', u'england', u'eye', u'victori'] [u'sunfish', u'fair', u'happi', u'restrict'] [u'govt', u'urg', u'interven', u'hospit', u'cardiolog'] [u'green', u'claim', u'membership', u'boost'] [u'offic', u'target', u'rich', u'medium', u'size', u'busi'] [u'ronaldo', u'thrill', u'trafford'] [u'fin', u'drug', u'offenc'] [u'time', u'run', u'sugar', u'reform', u'govt', u'say'] [u'toopi', u'charg', u'escap', u'suspens'] [u'tourism', u'site', u'plan', u'continu'] [u'transport', u'react', u'road', u'safeti', u'rumbl'] [u'jockey', u'injur', u'race', u'fall'] [u'union', u'manag', u'meet', u'bridgeston', u'lock'] [u'union', u'sight', u'health', u'educ'] [u'union', u'discuss', u'casual', u'worker', u'right'] [u'unitab', u'share', u'drop', u'despit', u'profit', u'boom'] [u'swamp', u'puerto', u'rico', u'basketbal', u'exhibit'] [u'explor', u'possibl', u'base', u'philippin'] [u'high', u'like', u'face', u'attack', u'month'] [u'doubl', u'guard', u'iraqi', u'field'] [u'troop', u'shoot', u'cameraman', u'dead', u'iraq'] [u'valdano', u'invit', u'hoeness', u'real', u'circus'] [u'vet', u'prepar', u'battl', u'long', u'ceremoni'] [u'govt', u'hop', u'farm', u'studi'] [u'vietnam', u'hitch', u'land', u'asylum', u'seeker', u'perth'] [u'vietnam', u'veteran', u'gather', u'rememb', u'long'] [u'wait', u'fast', u'beer'] [u'walker', u'kick', u'record'] [u'polic', u'start', u'work', u'rule', u'push'] [u'warehous', u'prove', u'difficult', u'firefight'] [u'warn', u'see', u'knockabout', u'bloke', u'gilchrist'] [u'water', u'restrict', u'loom', u'level', u'rise'] [u'water', u'treatment', u'problem', u'eas'] [u'wave', u'sabotag', u'hit', u'iraq'] [u'weed', u'manag', u'review', u'launch'] [u'white', u'cliff', u'shortlist', u'telescop', u'locat'] [u'wife', u'persuad', u'washington', u'carri'] [u'winemak', u'contribut', u'fund', u'scheme'] [u'woman', u'fail', u'drink', u'drive', u'accid'] [u'woman', u'face', u'court', u'daughter', u'stab'] [u'wood', u'fire', u'world'] [u'work', u'start', u'million', u'salin', u'intercept'] [u'world', u'bank', u'deni', u'attack', u'timber', u'industri'] [u'world', u'ticket', u'sale'] [u'saddam', u'taunt', u'iraqi', u'loyalist'] [u'kill', u'latest', u'kashmir', u'fight'] [u'year', u'refus', u'bail', u'sydney', u'murder'] [u'aborigin', u'group', u'seek', u'polic', u'talk', u'theft'] [u'achill', u'injuri', u'put', u'kewel', u'doubt', u'ireland'] [u'acrobat', u'guin', u'tightrop'] [u'emerg', u'servic', u'fund', u'season'] [u'afghan', u'blast', u'kill', u'polic'] [u'agreement', u'reach', u'west', u'bank', u'pullback', u'report'] [u'vessel', u'sink', u'rout', u'liberian', u'capit'] [u'servic', u'boost', u'follow', u'beatti'] [u'alfa', u'romeo', u'rule', u'titl', u'defenc'] [u'presid', u'warn', u'overturn', u'branch'] [u'seek', u'region', u'scholarship', u'plan'] [u'angler', u'urg', u'look', u'fish', u'pest'] [u'anthrax', u'scare', u'state', u'depart'] [u'argentina', u'fiji'] [u'arson', u'rule', u'health', u'centr', u'blaze'] [u'winner', u'tshirt', u'stir', u'controversi'] [u'atsic', u'expect', u'public', u'drink', u'issu', u'emerg'] [u'aussi', u'tri', u'curb', u'behaviour', u'gilchrist'] [u'aussi', u'track', u'team', u'prim', u'result', u'athen'] [u'australia', u'readi', u'terror', u'attack', u'survey', u'say'] [u'australia', u'plan', u'intervent', u'exercis'] [u'avellino', u'wait', u'verdict'] [u'backbench', u'muzzl', u'middl', u'east', u'debat'] [u'belgian', u'search', u'supremaci'] [u'crowd', u'expect', u'flock'] [u'black', u'market', u'control', u'latham'] [u'blair', u'advis', u'question', u'iraq', u'inquiri'] [u'bombmak', u'link', u'bali', u'jakarta', u'attack', u'polic'] [u'boulder', u'dentist', u'woe', u'bite'] [u'britain', u'expect', u'submit', u'resolut', u'libya'] [u'britain', u'seek', u'libya', u'sanction'] [u'brumbi', u'continu', u'air', u'raaf', u'base', u'plan', u'doubt'] [u'burn', u'bodi', u'melbourn', u'soccer', u'club'] [u'burn', u'milk', u'powder', u'buri', u'blaze'] [u'busi', u'usual', u'atsic', u'clark', u'say'] [u'butler', u'forego', u'excel', u'titl'] [u'butterfli', u'risk', u'conserv', u'group', u'warn'] [u'cairn', u'bond', u'miss', u'india', u'tour'] [u'easier', u'replac'] [u'hazard', u'reduct', u'power'] [u'call', u'clear', u'messag', u'develop', u'plan'] [u'canegrow', u'reject', u'state', u'govern', u'claim'] [u'cart', u'consid', u'buyout', u'offer'] [u'cave', u'adventur', u'rescu', u'south', u'sydney'] [u'championship', u'leader', u'burn', u'rejoin', u'subaru'] [u'chines', u'citrus', u'crackdown', u'cost', u'aust', u'industri'] [u'chines', u'presid', u'visit', u'australia'] [u'claim', u'dairi', u'deal', u'benefit', u'tasmania'] [u'claim', u'illeg', u'quarri', u'numinbah', u'valley'] [u'club', u'say', u'game', u'loss'] [u'coalit', u'hire', u'guard', u'iraq'] [u'coastal', u'project', u'receiv'] [u'coffe', u'lover', u'warn', u'tooth', u'decay'] [u'cold', u'morn', u'south', u'east'] [u'commerci', u'fisher', u'licenc'] [u'concern', u'air', u'timber', u'import'] [u'consum', u'group', u'warn', u'fishi', u'fish', u'label'] [u'council', u'air', u'coal', u'truck', u'concern'] [u'council', u'approv', u'power', u'station', u'site', u'rezon'] [u'council', u'approv', u'subdivis'] [u'council', u'defend', u'saleyard', u'leas'] [u'council', u'forum', u'hold', u'boundari', u'chang'] [u'council', u'get', u'tough', u'houseboat', u'moor'] [u'council', u'offer', u'assur'] [u'council', u'track', u'reform', u'plan'] [u'council', u'protest', u'phone', u'tower'] [u'council', u'meet', u'discuss', u'reform'] [u'council', u'staff', u'consid', u'protest'] [u'council', u'decid', u'woodchip', u'termin'] [u'council', u'upbeat', u'connect'] [u'crow', u'prepar', u'battl', u'roo'] [u'date', u'belgium', u'grand', u'prix', u'return'] [u'defenc', u'expert', u'scath', u'bodi'] [u'villier', u'world', u'injuri'] [u'dog', u'menac', u'farmer', u'sheep'] [u'dokic', u'enjoy', u'return', u'form', u'victori'] [u'dorrigo', u'win', u'state', u'govern', u'award'] [u'soar', u'month', u'high'] [u'hop', u'illeg', u'fisher'] [u'drought', u'offer', u'mix', u'cattl', u'opportun'] [u'educ', u'workshop', u'worth', u'penni', u'organis'] [u'egypt', u'road', u'crash', u'kill'] [u'email', u'describ', u'stand', u'game', u'chicken'] [u'emerg', u'servic', u'retain', u'uniqu'] [u'engin', u'woe', u'spark', u'chopper', u'crash'] [u'approv', u'corridor', u'chang'] [u'european', u'giant', u'tune', u'euro'] [u'european', u'sahara', u'hostag', u'free'] [u'extend', u'fish', u'ban'] [u'farina', u'throw', u'support', u'bosnich'] [u'fatal', u'accid', u'investig'] [u'faulti', u'user', u'guarante', u'refund'] [u'govt', u'snub', u'highway', u'fund'] [u'aussi', u'play', u'presid'] [u'sentenc', u'death', u'casablanca', u'bomb', u'trial'] [u'freedom', u'consid', u'privat', u'ownership'] [u'freedom', u'furnitur', u'share', u'jump', u'plan'] [u'french', u'heatwav', u'claim', u'polit', u'victim'] [u'good', u'beck', u'say', u'david'] [u'gorok', u'accid', u'victim', u'releas'] [u'govt', u'urg', u'fund', u'cervic', u'cancer', u'test'] [u'graffiti', u'artist', u'paint', u'corner'] [u'green', u'stop', u'polit', u'press'] [u'help', u'quash', u'evas', u'head', u'say'] [u'haas', u'attack', u'polli', u'benefit'] [u'hanson', u'ettridg', u'trial', u'enter', u'final', u'stage'] [u'hanson', u'juri', u'lock', u'night'] [u'hewitt', u'seed', u'sixth', u'open'] [u'hockeyroo', u'stun', u'argentinian'] [u'hors', u'event', u'remain', u'tamworth'] [u'hossain', u'line', u'play', u'pakistan'] [u'handl', u'critic', u'say', u'beckham'] [u'indonesia', u'name', u'jakarta', u'bomb', u'suspect'] [u'indonesian', u'drought', u'take', u'toll', u'live', u'stock'] [u'injur', u'whale', u'spot', u'near', u'palm', u'island'] [u'inquiri', u'hold', u'past', u'handl', u'suspect'] [u'inspect', u'find', u'ravag', u'store', u'rebuild'] [u'iraq', u'dossier', u'short', u'proof'] [u'iraq', u'battlefield', u'warn', u'journo'] [u'member', u'warn', u'asian', u'attack'] [u'johnson', u'run', u'sixth', u'finland'] [u'judg', u'reserv', u'decis', u'children', u'detent'] [u'judg', u'want', u'child', u'detaine', u'contact'] [u'juri', u'retir', u'consid', u'hanson', u'ettridg', u'fraud', u'case'] [u'kane', u'look', u'athen', u'spot'] [u'keke', u'brother', u'detain', u'surrend', u'gun'] [u'reinforc', u'drink', u'spike', u'warn'] [u'kookaburra', u'face', u'india'] [u'labor', u'scrutinis', u'famili', u'benefit'] [u'landown', u'urg', u'contact', u'rural', u'servic'] [u'larg', u'dinosaur', u'fossil', u'china'] [u'liberia', u'war', u'faction', u'sign', u'peac', u'deal'] [u'lighthous', u'plan', u'spotlight'] [u'listless', u'chang', u'make', u'earli', u'exit', u'commack'] [u'lockyer', u'action'] [u'lousi', u'studi', u'show', u'cloth', u'year'] [u'acquit', u'murder', u'award', u'compo'] [u'charg', u'incid'] [u'court', u'murder', u'charg'] [u'maverick', u'jamison', u'player', u'deal'] [u'mayor', u'attempt', u'rescu', u'job'] [u'mayor', u'want', u'tougher', u'sentenc'] [u'meet', u'clear', u'waterfront'] [u'blast', u'kill', u'china'] [u'compani', u'clear', u'death'] [u'mobil', u'fin', u'slick'] [u'time', u'highway', u'petit'] [u'politician', u'oppos', u'death', u'penalti'] [u'mother', u'evid', u'babi', u'manslaught', u'trial'] [u'confid', u'iraq', u'inquiri', u'govt'] [u'rais', u'ethanol', u'concern'] [u'throw', u'weight', u'death', u'penalti'] [u'murder', u'trial', u'show', u'bloodstain', u'item'] [u'murgon', u'celebr', u'grand', u'final'] [u'fund', u'formula', u'gambl', u'help'] [u'group', u'fight', u'shire', u'merger', u'plan'] [u'newman', u'alcohol', u'restrict', u'prove', u'posit'] [u'korea', u'opt', u'attend', u'game'] [u'health', u'reform', u'state', u'sign', u'deal', u'patterson'] [u'optim', u'respons', u'properti', u'bubbl', u'confer'] [u'govt', u'admit', u'sydney', u'wharf', u'safeti', u'problem'] [u'courtit', u'happen'] [u'criticis', u'govt', u'polici', u'north', u'korea'] [u'pacif', u'whale', u'sanctuari', u'increas', u'size'] [u'perth', u'gunman', u'captur', u'fatal', u'hostag', u'drama'] [u'perth', u'gunman', u'link', u'abduct'] [u'perth', u'polic', u'hunt', u'gunman'] [u'phone', u'bill', u'fall', u'year'] [u'phone', u'exchang', u'need', u'upgrad'] [u'pirat', u'prove', u'strong', u'colleg', u'team'] [u'plane', u'make', u'emerg', u'land'] [u'polic', u'arrest', u'youth', u'footbal', u'club', u'theft'] [u'polic', u'establish', u'burn', u'bodi', u'gender'] [u'polic', u'hop', u'disput'] [u'polic', u'interview', u'sydney', u'rail', u'scare'] [u'polic', u'seek', u'miss', u'woman', u'husband'] [u'polic', u'seiz', u'drug', u'jindabyn'] [u'pollock', u'top', u'test', u'rat'] [u'port', u'final', u'prepar', u'go', u'plan', u'montgomeri'] [u'posit', u'result', u'boost', u'market'] [u'pricelin', u'blaze', u'claim', u'store'] [u'probe', u'call', u'cameraman', u'death'] [u'progress', u'port', u'contain', u'termin', u'push'] [u'public', u'back', u'council', u'independ'] [u'public', u'water', u'restrict', u'warn'] [u'qanta', u'baggag', u'handler', u'return', u'work'] [u'govt', u'ask', u'manag', u'reserv'] [u'rule', u'compens', u'corrupt', u'polic'] [u'rail', u'track', u'reach', u'alic', u'spring', u'soon'] [u'ralf', u'schumach', u'challeng', u'penalti'] [u'ratepay', u'offer', u'land', u'price', u'assur'] [u'rebuild', u'enola', u'unveil', u'washington'] [u'regist', u'recognis', u'station', u'woolscour', u'histori'] [u'reid', u'slur', u'charact', u'mill'] [u'resid', u'council', u'amalgam'] [u'resourc', u'construct', u'push', u'share', u'market', u'higher'] [u'roddick', u'readi', u'handl', u'pressur'] [u'ruddock', u'advis', u'clark', u'concentr', u'appeal'] [u'ruddock', u'meet', u'atsic', u'chief'] [u'rugbi', u'world', u'ticket', u'sale'] [u'saddam', u'deputi', u'captur', u'iraq'] [u'scheme', u'offer', u'job', u'boost'] [u'search', u'white', u'whale'] [u'season', u'sinclair', u'steven'] [u'seven', u'puma', u'turn', u'style'] [u'sewerag', u'worker', u'dirti', u'allow'] [u'sharon', u'investig', u'land', u'compens'] [u'shire', u'group', u'speak', u'merger', u'court', u'action'] [u'shire', u'meet', u'discuss', u'murray', u'river', u'cross'] [u'sinclair', u'plead', u'guilti'] [u'singl', u'desk', u'plan', u'spark', u'dairi', u'divis'] [u'sixth', u'charg', u'alic', u'death'] [u'face', u'trial', u'melbourn', u'tripl', u'murder'] [u'smith', u'vaughan', u'play', u'pollock', u'absenc'] [u'south', u'africa', u'uncap', u'player', u'world'] [u'state', u'urg', u'accept', u'health', u'plan'] [u'storm', u'hamper', u'pursuit', u'alleg', u'toothfish', u'poacher'] [u'submiss', u'critic', u'propos', u'chang', u'census'] [u'summit', u'hear', u'health', u'need', u'nation', u'bodi'] [u'swan', u'boss', u'prais', u'collingwood', u'promot', u'effort'] [u'sydney', u'hous', u'reach', u'figur'] [u'aborigin', u'group', u'ask', u'butler', u'explain', u'uniqu'] [u'telstra', u'sell', u'week'] [u'back', u'wagga', u'station'] [u'tourism', u'push', u'confer', u'market'] [u'tradit', u'owner', u'approv', u'hous', u'plan', u'work'] [u'tree', u'remov', u'spark', u'resid', u'anger'] [u'trip', u'aim', u'boost', u'indigen', u'youth', u'elder', u'tie'] [u'tuckey', u'deni', u'misus', u'posit', u'help'] [u'kill', u'highway', u'tire', u'zone'] [u'envoy', u'kill', u'baghdad', u'attack'] [u'team', u'win', u'fund', u'technolog'] [u'basketbal', u'team', u'head', u'olymp', u'qualifi'] [u'soldier', u'kill', u'iraqi', u'attack'] [u'threaten', u'iceland', u'sanction', u'whale'] [u'urg', u'liberian', u'parti', u'honour', u'peac', u'deal'] [u'govt', u'get', u'deadlin', u'hear', u'facil', u'boost'] [u'wale', u'squad', u'strength', u'england', u'test'] [u'wallabi', u'rest', u'star', u'ahead'] [u'washington', u'sniper', u'agent', u'shoot', u'probe'] [u'water', u'issu', u'agenda', u'sartor', u'visit'] [u'waugh', u'play', u'sledg', u'talk'] [u'woodward', u'pick', u'second', u'string', u'face', u'wale'] [u'kill', u'jerusalem', u'blast', u'sourc'] [u'abalon', u'plan', u'propon', u'upbeat', u'approv'] [u'accus', u'indigen', u'literaci'] [u'govt', u'slam', u'censur', u'motion'] [u'action', u'group', u'question'] [u'actu', u'prais', u'centr', u'award'] [u'agforc', u'welcom', u'drought'] [u'seek', u'phase', u'council', u'grant', u'chang'] [u'ambul', u'servic', u'address', u'centr', u'close', u'concern'] [u'america', u'dear', u'aussi'] [u'announc', u'billion', u'loss'] [u'anderson', u'reject', u'region', u'fear'] [u'anger', u'possibl', u'lewi', u'compens'] [u'annan', u'pledg', u'continu', u'work', u'iraq'] [u'ashcroft', u'defend', u'patriot'] [u'astronaut', u'open', u'uni', u'scienc', u'math', u'school'] [u'aussi', u'injur', u'bomb', u'blast', u'bad', u'hurt', u'downer'] [u'soccer', u'player', u'minimum', u'award'] [u'australia', u'condemn', u'attack', u'iraq'] [u'australian', u'injur', u'iraqi', u'blast'] [u'avellino', u'await', u'court', u'verdict'] [u'baggag', u'handler', u'strike', u'hit', u'qanta', u'flight'] [u'bakk', u'face', u'month'] [u'get', u'extend', u'hour'] [u'bashar', u'shin', u'bangladesh', u'steadi', u'start'] [u'beatti', u'back', u'year', u'health', u'fund', u'deal'] [u'blair', u'aid', u'deni', u'sex', u'iraq', u'threat'] [u'boost', u'phone', u'exchang'] [u'brisban', u'compani', u'win', u'contract', u'help', u'build'] [u'bomb', u'rock', u'jerusalem'] [u'busi', u'fin', u'stormwat', u'pollut'] [u'shock', u'tactic', u'deter', u'smoker'] [u'store', u'charter'] [u'water', u'trade', u'stop', u'live', u'murray'] [u'campbel', u'charg', u'violent', u'conduct'] [u'carl', u'lewi', u'plead', u'innoc', u'drink', u'drive', u'charg'] [u'carlton', u'sign', u'fevola', u'wait'] [u'product', u'strike', u'resolv'] [u'cattl', u'hors', u'idea'] [u'certif', u'allow', u'plane', u'export'] [u'china', u'captur', u'team', u'titl', u'world', u'gymnast'] [u'china', u'world', u'beer', u'brewer', u'survey'] [u'church', u'synod', u'consid', u'children'] [u'commonwealth', u'santo', u'report', u'result'] [u'communiti', u'effort', u'address', u'assault'] [u'communiti', u'speed', u'limit', u'plan'] [u'compani', u'await', u'ethanol', u'commit'] [u'concern', u'air', u'duti', u'care', u'chang'] [u'concern', u'rais', u'defenc', u'equip', u'plan'] [u'costello', u'promis', u'refocus', u'defenc', u'spend'] [u'council', u'consid', u'water', u'restrict'] [u'council', u'delay', u'brothel', u'develop', u'applic'] [u'councillor', u'air', u'supermarket', u'concern'] [u'council', u'meet', u'dump'] [u'council', u'offer', u'rate', u'rise', u'relief'] [u'council', u'hold', u'eros', u'meet'] [u'council', u'stop', u'park', u'cemeteri'] [u'council', u'unmov', u'age', u'care', u'land', u'offer'] [u'cricket', u'australia', u'weigh', u'warn', u'train'] [u'debat', u'extent', u'aust', u'inland', u'motion'] [u'custom', u'rescu', u'suspect', u'poacher', u'boat'] [u'cyclist', u'track', u'athen'] [u'builder', u'reject', u'indigen', u'monitor', u'attack'] [u'darwin', u'girl', u'win', u'young', u'author', u'award'] [u'davenport', u'crush', u'dokic', u'haven'] [u'diabet', u'children', u'seek', u'research', u'fund', u'boost'] [u'luca', u'win', u'valli', u'varesin'] [u'doctor', u'predict', u'medic', u'woe'] [u'drought', u'hurt', u'landcar', u'effort'] [u'drought', u'take', u'toll', u'oyster'] [u'dublin', u'hit', u'english', u'racism'] [u'ead', u'speak', u'medal', u'count'] [u'east', u'timor', u'mourn', u'loss', u'great', u'brother', u'friend'] [u'edward', u'leav', u'pari', u'decis', u'minut'] [u'factori', u'burn'] [u'faldo', u'say', u'european', u'golfer', u'lack', u'major', u'commit'] [u'farina', u'say', u'okon', u'answer', u'critic'] [u'farmer', u'drought'] [u'father', u'plead', u'guilti', u'murder', u'marihuana'] [u'say', u'human', u'remain', u'baghdad', u'bomb', u'truck'] [u'feder', u'fund', u'broom', u'port', u'expans', u'fall'] [u'feder', u'labor', u'give', u'support', u'gungahlin', u'extens'] [u'feder', u'lose', u'paper', u'perk'] [u'hear', u'ralf', u'german', u'crash', u'appeal'] [u'firefight', u'battl', u'inner', u'sydney'] [u'ravag', u'store', u'want', u'busi'] [u'fittler', u'miss', u'week'] [u'priest', u'face', u'charg'] [u'free', u'sahara', u'hostag', u'return', u'home'] [u'fund', u'allow', u'paper', u'remain', u'open'] [u'gerrard', u'tip', u'recruit', u'titl', u'tilt'] [u'girl', u'appeal', u'fund', u'diabet'] [u'govt', u'face', u'critic', u'educ'] [u'govt', u'inject', u'asia', u'pacif', u'health', u'plan'] [u'govt', u'urg', u'commit', u'majura', u'valley', u'dragway'] [u'green', u'rais', u'cardiologist', u'disput', u'parliament'] [u'growth', u'rat', u'point', u'econom', u'pick'] [u'hanson', u'ettridg', u'jail', u'year', u'fraud'] [u'hanson', u'ettridg', u'appeal'] [u'hanson', u'guilti', u'elector', u'fraud'] [u'health', u'minist', u'wont', u'mediat', u'doctor', u'contract'] [u'health', u'warn', u'factori', u'blaze', u'continu', u'sydney'] [u'heritag', u'monitor', u'defend', u'payment'] [u'hospit', u'revamp'] [u'hotel', u'waltz', u'hammer'] [u'hous', u'drive', u'wall', u'street'] [u'howard', u'pay', u'tribut', u'head', u'mission'] [u'howard', u'prais', u'pacif', u'island', u'forum', u'best'] [u'indian', u'plane', u'surround', u'fals', u'hijack', u'alert'] [u'indonesian', u'fish', u'boat', u'catch'] [u'indonesia', u'kopassus', u'chief', u'visit', u'australia'] [u'heat', u'solar', u'race'] [u'irish', u'sink', u'socceroo', u'late', u'goal'] [u'irrig', u'upgrad', u'shutdown'] [u'juri', u'continu', u'deliber', u'hanson', u'fraud'] [u'kefu', u'world', u'open'] [u'knight', u'confid', u'ahead', u'canberra', u'clash'] [u'knight', u'hop', u'repeat', u'win', u'way'] [u'labor', u'undecid', u'print', u'motion'] [u'lawson', u'face', u'work', u'bowl', u'action'] [u'leader', u'mourn', u'envoy', u'death'] [u'leed', u'botham'] [u'liber', u'feder', u'bendigo', u'seat', u'uncertainti'] [u'looma', u'communiti', u'undertak', u'diabet', u'health'] [u'makelel', u'play', u'disput', u'real'] [u'maleeva', u'scrap', u'slow', u'start'] [u'mali', u'hostag', u'arriv', u'germani'] [u'charg', u'hoax', u'rail', u'secur', u'scare'] [u'charg', u'shoot', u'death', u'woman'] [u'get', u'year', u'jail', u'term', u'drug', u'traffic'] [u'jail', u'life', u'facto', u'kill'] [u'polic', u'guard', u'hous', u'blaze'] [u'say', u'fergi', u'hungri'] [u'marathon', u'effort', u'rescu', u'cave', u'victim'] [u'mayor', u'candid', u'confid', u'support'] [u'mayor', u'succumb', u'cancer'] [u'drown', u'north'] [u'miss', u'tourist', u'safe'] [u'hardwood', u'plantat', u'plant'] [u'mother', u'voic', u'anger', u'hospit', u'bungl'] [u'motor', u'sale', u'rise', u'percent', u'juli'] [u'want', u'death', u'penalti', u'terror', u'australia'] [u'murphi', u'sign', u'year', u'deal', u'glori'] [u'murray', u'goulburn', u'announc', u'milk', u'price', u'rise'] [u'nat', u'reject', u'rail', u'delay', u'reason'] [u'drug', u'rival', u'viagra'] [u'internet', u'law', u'govt', u'crackdown', u'ecrim'] [u'spare', u'sergio', u'vieira', u'mello'] [u'northern', u'council', u'defend', u'spend'] [u'trial', u'refere', u'interchang'] [u'railway', u'decad', u'costa', u'say'] [u'okon', u'answer', u'critic', u'farina'] [u'okon', u'answer', u'critic', u'farina'] [u'dead', u'wound', u'iraqi', u'ambush'] [u'oversea', u'invest', u'knock', u'lend', u'leas'] [u'palestinian', u'call', u'hama', u'talk'] [u'park', u'rugbi', u'player', u'repres', u'canada', u'world'] [u'picioan', u'vow', u'continu', u'aggress', u'play'] [u'pittman', u'rival', u'pull', u'pari'] [u'plan', u'multi', u'million', u'dollar', u'wildlif', u'hospit'] [u'refus', u'sack', u'foolish', u'tuckey'] [u'polic', u'crack', u'number', u'plate', u'offenc'] [u'polic', u'hunt', u'teenag', u'pizza', u'bandit'] [u'polic', u'minist', u'urg', u'look', u'race', u'relat'] [u'polic', u'probe', u'home', u'bash'] [u'presland', u'unlik', u'debus'] [u'qanta', u'worker', u'order', u'ceas', u'strike', u'action'] [u'govt', u'releas', u'fund', u'school', u'scienc'] [u'opposit', u'speak', u'ethanol', u'concern'] [u'racv', u'predict', u'petrol', u'price', u'spike', u'wont'] [u'rail', u'station', u'meet', u'tip', u'attract', u'crowd'] [u'rare', u'lizard', u'face', u'threat'] [u'carpet', u'cairn', u'royal', u'visit'] [u'report', u'find', u'demand', u'canberra', u'inject', u'room'] [u'reuter', u'cameraman', u'buri', u'hebron'] [u'robber', u'hold', u'knife', u'babi', u'throat', u'polic'] [u'rocki', u'gulli', u'school', u'fail', u'improv', u'enrol'] [u'ruddock', u'effect', u'fundrais'] [u'russia', u'condemn', u'attack', u'headquart'] [u'govt', u'urg', u'address', u'lobster', u'fish'] [u'salt', u'plan', u'tip', u'boost', u'job'] [u'scheme', u'aim', u'target', u'parti', u'gatecrash'] [u'schubert', u'strike', u'right', u'note', u'kookaburra'] [u'schumach', u'determin', u'halt', u'win', u'drought'] [u'scientist', u'warn', u'antarctica', u'explod'] [u'search', u'bomb', u'survivor', u'call'] [u'selector', u'back', u'away', u'hard', u'decis', u'farr'] [u'share', u'market', u'close', u'month', u'high'] [u'sharon', u'ponder', u'respons', u'suicid', u'bomb'] [u'sheep', u'death', u'spark', u'warn', u'owner'] [u'shire', u'happi', u'local', u'govt', u'fund'] [u'shire', u'lose', u'communiti', u'facil', u'fund'] [u'side', u'disput', u'cost', u'small', u'wineri'] [u'sniffer', u'dog', u'propos', u'stamp', u'indigen', u'drug'] [u'snowi', u'hydro', u'offer', u'snow'] [u'storm', u'help', u'boost', u'citi', u'water', u'suppli'] [u'strong', u'sheep', u'updat'] [u'student', u'treat', u'meningococc', u'case'] [u'suncorp', u'restructur', u'cut', u'job'] [u'support', u'cleaner', u'ocean', u'plan'] [u'survey', u'highlight', u'disturb', u'fatigu', u'fact'] [u'swiss', u'glacier', u'melt', u'european', u'heat', u'wave'] [u'tassi', u'tiger', u'like', u'elvi'] [u'thai', u'star', u'paradorn', u'open', u'titl', u'defenc', u'victori'] [u'thalidomid', u'comeback'] [u'time', u'run', u'reef', u'pontoon', u'submiss'] [u'tower', u'trick', u'seal', u'hockeyroo', u'victori'] [u'track', u'devic', u'plan', u'white', u'whale'] [u'trade', u'confid', u'boost', u'cattl', u'price'] [u'trial', u'accus', u'killer', u'begin'] [u'trial', u'reduc', u'contracept', u'effect'] [u'troop', u'expect', u'long', u'servic', u'solomon'] [u'tuckey', u'deni', u'wrongdo', u'son', u'fine'] [u'tuckey', u'foolish', u'son', u'fine'] [u'arrest', u'high', u'speed', u'chase', u'sydney'] [u'jail', u'manag', u'murder'] [u'envoy', u'iraq', u'kill', u'bomb', u'blast'] [u'engin', u'talk', u'cours', u'futur'] [u'mourn', u'baghdad', u'attack'] [u'pull', u'baghdad', u'staff'] [u'resum', u'colombian', u'anti', u'drug', u'flight'] [u'host', u'confer', u'sustain', u'develop'] [u'weld', u'back', u'away', u'melbourn', u'boycott', u'threat'] [u'well', u'upbeat', u'deed', u'benefit'] [u'wheat', u'price', u'tip', u'stay', u'strong'] [u'whyalla', u'steelwork', u'perform', u'singl'] [u'william', u'enter', u'hall', u'fame'] [u'wine', u'fund', u'toast', u'futur', u'despit', u'loss'] [u'prepar', u'mainten', u'shutdown'] [u'woman', u'care', u'disabl', u'brother', u'lose', u'support'] [u'worker', u'sift', u'baghdad', u'wreckag'] [u'workshop', u'hold', u'virus', u'infect', u'tassi'] [u'world', u'outrag', u'headquart', u'attack'] [u'mazen', u'order', u'milit', u'arrest'] [u'teacher', u'offer', u'deal'] [u'agassi', u'roddick', u'face', u'tough', u'round'] [u'age', u'care', u'industri', u'air', u'power', u'price', u'concern'] [u'announc', u'strong', u'profit'] [u'airport', u'termin', u'closer', u'take'] [u'critic', u'psychiatr', u'patient', u'payout'] [u'ambo', u'action', u'emerg', u'concern'] [u'angri', u'smith', u'upbeat', u'fourth', u'test'] [u'argentina', u'abolish', u'junta', u'immun'] [u'galleri', u'celebr', u'fund', u'boost'] [u'associ', u'seek', u'player'] [u'astronom', u'close', u'view', u'mar'] [u'atsic', u'central', u'zone', u'contribut', u'clark'] [u'australia', u'aid', u'indonesian', u'terror', u'probe'] [u'australia', u'sign', u'busi', u'deal'] [u'australian', u'gymnast', u'claim', u'bronz'] [u'australian', u'worker', u'leav', u'baghdad'] [u'baghdad', u'blast', u'toll', u'rise'] [u'bali', u'bomb', u'mean', u'place', u'sept', u'imron'] [u'bangladesh', u'battl', u'pakistan'] [u'bear', u'breach', u'secur', u'russian', u'nuclear'] [u'beckham', u'lead', u'england', u'victori'] [u'benadryl', u'cough', u'medicin', u'recal'] [u'bhps', u'boss'] [u'blair', u'aid', u'consid', u'leak', u'sourc'] [u'kill', u'timor', u'helicopt', u'accid'] [u'bronco', u'consid', u'sign', u'walker'] [u'gemfield', u'nativ', u'titl', u'action'] [u'rail', u'report', u'measur', u'follow'] [u'call', u'uniform', u'evacu', u'procedur'] [u'product', u'strike', u'end'] [u'claim', u'council', u'focus', u'spenc', u'respons'] [u'clark', u'reimburs', u'legal', u'cost'] [u'clash', u'liberia', u'day', u'peac', u'deal', u'offici'] [u'final', u'win', u'place', u'iaaf', u'council'] [u'copmanhurst', u'back', u'council', u'polici'] [u'council', u'act', u'alleg', u'tree', u'clear', u'breach'] [u'council', u'conced', u'tree', u'mistak'] [u'council', u'prais', u'stop', u'park', u'cemeteri', u'plan'] [u'coupl', u'defend', u'aborigin', u'trespass', u'charg'] [u'crackdown', u'illeg', u'indonesian', u'fishermen', u'work'] [u'cricket', u'australia', u'reconsid', u'warn', u'decis'] [u'deputi', u'mayor', u'back', u'effort'] [u'detect', u'investig', u'babi', u'death', u'melbourn'] [u'downer', u'hold', u'terror', u'talk', u'indonesia'] [u'dragon', u'sign', u'blacklock'] [u'drought', u'blame', u'wool', u'woe'] [u'econom', u'woe', u'close', u'meatwork'] [u'elvi', u'shake', u'night', u'long'] [u'emerg', u'hous', u'need', u'rise'] [u'endang', u'bird', u'bristl', u'weapon'] [u'essendon', u'sign', u'lloyd'] [u'nation', u'candid', u'defend', u'hanson'] [u'fals', u'hero', u'convict', u'wear', u'medal'] [u'farmer', u'look', u'heaven', u'rain'] [u'firework', u'explos', u'kill', u'southern', u'china'] [u'fisher', u'marin', u'seismic', u'survey'] [u'fitzgibbon', u'final'] [u'flyhalf', u'jone', u'captain', u'wale', u'england'] [u'focus', u'reduc', u'sid', u'indigen'] [u'employe', u'movi', u'star', u'robert', u'redford'] [u'gardin', u'embley', u'return', u'injuri'] [u'gold', u'coast', u'capitalis', u'local', u'sport', u'abil'] [u'gold', u'miner', u'explor', u'west', u'gympi'] [u'green', u'say', u'readi', u'shock', u'world'] [u'hacker', u'target', u'georg', u'account'] [u'hanson', u'file', u'appeal', u'fraud', u'convict'] [u'hanson', u'move', u'women', u'prison'] [u'hanson', u'lawyer', u'expect', u'seek', u'bail'] [u'hanson', u'spend', u'night', u'jail'] [u'hantuchova', u'poor', u'continu', u'haven'] [u'harford', u'step', u'picioan'] [u'health', u'insur', u'head', u'crisi'] [u'health', u'insur', u'deni', u'polici', u'holder', u'exodus'] [u'health', u'need', u'higher', u'prioriti', u'summit', u'hear'] [u'health', u'warn', u'issu', u'inner', u'sydney'] [u'hewitt', u'aim', u'silenc', u'critic'] [u'high', u'hop', u'indi', u'crowd'] [u'high', u'price', u'pump', u'woodsid', u'profit'] [u'high', u'secur', u'isra', u'team'] [u'highway', u'group', u'want', u'clear', u'road', u'fund'] [u'hong', u'kong', u'polic', u'arrest', u'triad', u'crackdown'] [u'hook', u'defend', u'warn', u'right', u'train'] [u'hous', u'develop', u'hit', u'hurdl'] [u'howard', u'avoid', u'censur', u'tuckey', u'improprieti'] [u'howard', u'hop', u'nation', u'water', u'reform', u'plan'] [u'howard', u'reassur', u'rural', u'voter', u'telstra', u'sale'] [u'hume', u'highway', u'close', u'fatal', u'collis'] [u'ikin', u'lockyer', u'return', u'eas', u'berrigan', u'burden'] [u'indian', u'board', u'ask', u'withhold', u'world', u'money'] [u'indigen', u'parent', u'seek', u'school', u'suspens'] [u'indigen', u'student', u'enrol', u'rise'] [u'indonesian', u'travel', u'warn', u'remain'] [u'inquest', u'find', u'fuel', u'marlborough'] [u'inquiri', u'hear', u'relentless', u'grill', u'kelli'] [u'iraqi', u'leader', u'reveal', u'truck', u'bomb', u'warn'] [u'iraq', u'chemic', u'custodi'] [u'israel', u'approv', u'strike', u'hama', u'islam', u'jihad'] [u'israel', u'hunt', u'west', u'bank', u'milit'] [u'israel', u'move', u'palestinian', u'citi'] [u'kalgoorli', u'experi', u'trade', u'shortag'] [u'kelli', u'death', u'mask', u'head', u'portrait', u'exhibit'] [u'kookaburra', u'germani'] [u'kuerten', u'eas', u'past', u'beck', u'reach', u'quarter', u'final'] [u'labor', u'consid', u'chang', u'brothel'] [u'labor', u'face', u'intern', u'disharmoni', u'diesel', u'fuel'] [u'landcar', u'welcom', u'fund', u'boost'] [u'laser', u'breakthrough', u'promis', u'longer'] [u'leppitsch', u'return', u'cat'] [u'libya', u'transfer', u'lockerbi', u'compens', u'fund'] [u'lodg', u'odd', u'council', u'land'] [u'lomu', u'refus', u'world', u'dream', u'manag'] [u'lower', u'hous', u'pass', u'telstra', u'sell'] [u'lunchtim', u'tippl', u'lead', u'drivetim', u'sleep', u'studi'] [u'arrest', u'lismor', u'sydney', u'rape'] [u'charg', u'attempt', u'murder'] [u'jail', u'rosenbaum', u'race', u'riot', u'murder'] [u'market', u'slip', u'recent', u'rise'] [u'matilda', u'begin', u'world', u'prepar'] [u'mayor', u'defend', u'merger', u'plan'] [u'sign', u'director', u'year'] [u'meet', u'talk', u'shire', u'merger'] [u'meningococc', u'case', u'consid', u'unusu'] [u'men', u'draw', u'strength', u'weak'] [u'middl', u'east', u'truce', u'tatter'] [u'west', u'industri', u'develop', u'spotlight'] [u'miner', u'sign', u'world', u'heritag', u'protect', u'agreement'] [u'mine', u'firm', u'agre', u'observ', u'world', u'heritag', u'sit'] [u'minist', u'pleas', u'perilya', u'safeti'] [u'mistak', u'iraq', u'secur', u'annan'] [u'highlight', u'ambul', u'levi', u'concern'] [u'highlight', u'survey', u'opposit', u'telstra', u'sale'] [u'predict', u'hanson', u'jail', u'unlik', u'hurt'] [u'continu', u'ethanol', u'support', u'push'] [u'march', u'road', u'closur'] [u'netbal', u'hot', u'court'] [u'liberian', u'leader', u'choos'] [u'nicholson', u'search', u'move', u'interst'] [u'bird', u'avellino'] [u'north', u'west', u'carer', u'lose', u'centrelink', u'benefit'] [u'govt', u'offer', u'indigen', u'pharmaci', u'assur'] [u'offici', u'want', u'kelli', u'inquiri', u'hear'] [u'opal', u'head', u'europ'] [u'opposit', u'gag', u'speak', u'tuckey', u'matter'] [u'oxford', u'bada', u'be', u'latest', u'dictionari'] [u'pacer', u'sign', u'reggi', u'miller'] [u'seek', u'defend', u'titl', u'season'] [u'quiet', u'diplomaci', u'china'] [u'weigh', u'warn', u'debat'] [u'polic', u'follow', u'lead', u'hunt', u'robber'] [u'polic', u'investig', u'bodi', u'boot'] [u'polic', u'search', u'pair', u'threaten', u'babi'] [u'polic', u'seiz', u'alleg', u'counterfeit', u'good'] [u'polic', u'appeal', u'dismiss', u'assault', u'charg'] [u'power', u'station', u'revamp', u'track'] [u'probe', u'begin', u'derail'] [u'lincoln', u'polic', u'continu', u'investig'] [u'public', u'crime', u'fight', u'plan'] [u'pure', u'antarct', u'water', u'explos', u'drawcard'] [u'qanta', u'bank', u'drive', u'sharemarket', u'higher'] [u'qanta', u'blame', u'sar', u'profit', u'slump'] [u'qanta', u'consid', u'cost', u'carrier'] [u'govt', u'urg', u'rethink', u'fish', u'restrict'] [u'percent', u'foreign', u'own'] [u'rail', u'group', u'upset', u'council', u'insur', u'decis'] [u'rate', u'rise', u'need', u'cover', u'fund', u'shortfal'] [u'record', u'crowd', u'predict', u'swan', u'pie', u'clash'] [u'renmark', u'gear', u'retire', u'gather'] [u'repent', u'mugger', u'tell', u'victim', u'spit'] [u'resid', u'want', u'bridg', u'safeti'] [u'ratepay', u'urg', u'attend', u'water', u'meet'] [u'rise', u'sight', u'tour'] [u'rubi', u'trial', u'mine', u'begin'] [u'ruddock', u'launch', u'aborigin', u'domest', u'violenc'] [u'sack', u'doctor', u'speak'] [u'schumach', u'penalti', u'chang', u'fine'] [u'search', u'continu', u'miss'] [u'spong', u'fibr', u'optic', u'cabl', u'beat'] [u'second', u'charg', u'woman', u'death'] [u'second', u'probe', u'bass', u'strait', u'ferri', u'incid'] [u'shop', u'centr', u'urg', u'cover', u'polic', u'beat', u'cost'] [u'kill', u'aceh'] [u'snakebot', u'join', u'british', u'spook'] [u'snowdon', u'air', u'mobil', u'phone', u'telstra', u'sale', u'concern'] [u'solomon', u'forc', u'happi', u'handov'] [u'solomon', u'intervent', u'enter', u'danger', u'phase'] [u'staff', u'miss', u'baghdad'] [u'springborg', u'offer', u'broker', u'sugar', u'impass'] [u'lanka', u'spinner', u'suspend', u'crash'] [u'stinger', u'research', u'earn', u'award'] [u'storm', u'batter', u'western'] [u'sunburn', u'warn', u'studi', u'find', u'larger', u'ozon', u'hole'] [u'suncorp', u'worker', u'worri', u'secur'] [u'support', u'countri', u'victoria', u'jail', u'hanson'] [u'telstra', u'reject', u'poor', u'servic', u'claim'] [u'telstra', u'respond', u'phone', u'survey', u'find'] [u'thai', u'govt', u'step', u'secur', u'apec', u'summit'] [u'tourism', u'group', u'adopt', u'market', u'strategi'] [u'tshirt', u'spark', u'vilif', u'debat'] [u'begin', u'partial', u'evacu', u'jordan'] [u'undef', u'hockeyroo', u'face', u'netherland'] [u'blame', u'iraq', u'blast', u'foreign', u'terrorist'] [u'citizen', u'warn', u'terrorist', u'threat', u'yemen'] [u'consid', u'sanction', u'iceland'] [u'rule', u'send', u'troop', u'iraq'] [u'soldier', u'kill', u'iraq', u'accid'] [u'soldier', u'kill', u'wound', u'baghdad'] [u'view', u'iraq', u'troop', u'level', u'adequ'] [u'vaughan', u'wari', u'pollock', u'absenc'] [u'bushfir', u'fallout', u'creat', u'job'] [u'honour', u'help', u'marriott', u'bomb'] [u'warn', u'seek', u'meet', u'cricket', u'boss'] [u'watson', u'swing', u'thing'] [u'wentworth', u'council', u'consid', u'hous', u'plan'] [u'west', u'sydney', u'rail', u'link', u'plan', u'dead'] [u'whale', u'crash', u'famili', u'boat', u'trip'] [u'wildcat', u'sign', u'latim'] [u'wind', u'blade', u'factori', u'viabil', u'uncertain'] [u'women', u'draw', u'strength', u'weak'] [u'woodchip', u'boost', u'bunburi', u'economi'] [u'wood', u'withdraw', u'matchplay', u'event'] [u'wool', u'group', u'seek', u'china', u'agreement'] [u'wooli', u'caltex', u'join', u'forc'] [u'world', u'bank', u'postpon', u'iraqi', u'work'] [u'youngster', u'cole', u'elbow', u'mutu', u'chelsea'] [u'charg', u'murder', u'serbian'] [u'anim', u'hospit', u'reciev', u'public', u'backlash'] [u'address', u'drought', u'social', u'impact'] [u'abandon', u'vehicl', u'train', u'crash'] [u'aborigin', u'group', u'win', u'land', u'care', u'award'] [u'school', u'decid', u'condom', u'machin'] [u'unlik', u'appeal', u'hanson', u'sentenc'] [u'alleg', u'attack', u'appear', u'court', u'today'] [u'name', u'safeti', u'shame', u'list'] [u'anderson', u'prais', u'region', u'airlin', u'extra', u'flight'] [u'andren', u'vote', u'telstra'] [u'argentina', u'pave', u'dirti', u'trial'] [u'want', u'explan', u'warn', u'victorian'] [u'aspinal', u'reject', u'fals', u'damag', u'alleg'] [u'aussi', u'gymnast', u'celebr', u'bronz', u'success'] [u'aussi', u'place', u'nevada'] [u'australia', u'arab', u'council', u'aim', u'improv', u'trade', u'tie'] [u'australia', u'bomb', u'victim', u'land', u'transit', u'germani'] [u'australia', u'post', u'pay', u'worker', u'skin', u'cancer', u'cost'] [u'backpack', u'group', u'question', u'croc', u'captur'] [u'backpack', u'industri', u'attack', u'shame', u'list', u'tabl'] [u'barrichello', u'raikkonen', u'play', u'cool', u'german'] [u'beatti', u'highlight', u'safeti', u'failur'] [u'bell', u'back', u'origin', u'concept'] [u'daniel', u'join', u'croc'] [u'blair', u'testifi', u'iraq', u'inquiri'] [u'boat', u'blast', u'inquest', u'find', u'know', u'soon'] [u'bodi', u'miss', u'heron', u'creek'] [u'brazil', u'tropic', u'space', u'base', u'blast'] [u'brisban', u'tool', u'haul', u'seiz', u'sydney'] [u'busi', u'name', u'safeti', u'complianc'] [u'caltex', u'share', u'leap', u'supermarket', u'allianc'] [u'cancer', u'group', u'hop', u'bumper', u'daffodil'] [u'cane', u'toad', u'threat', u'spark', u'fenc'] [u'capriati', u'battl', u'semi', u'final'] [u'central', u'victoria', u'warn', u'brace'] [u'chines', u'die', u'mustard', u'exposur'] [u'chopper', u'rescu', u'servic', u'make', u'chang', u'crash'] [u'commerci', u'fishermen', u'seek', u'compens'] [u'concern', u'quota', u'aust', u'beef', u'export'] [u'confus', u'solomon', u'licenc'] [u'council', u'approv', u'rural', u'plan'] [u'council', u'offer', u'abattoir', u'close'] [u'council', u'join', u'anti', u'merger', u'list'] [u'council', u'approach', u'clean', u'work', u'ban'] [u'council', u'outlin', u'merger', u'opposit'] [u'court', u'clear', u'land'] [u'csiro', u'call', u'aerial', u'firefight', u'review'] [u'csiro', u'warn', u'fund'] [u'damir', u'pip', u'shane', u'warney'] [u'decis', u'await', u'town', u'plan', u'appeal'] [u'mello', u'buri', u'franc', u'brazil', u'wake'] [u'earli', u'start', u'consid', u'bushfir', u'danger', u'period'] [u'edward', u'retir', u'world', u'championship'] [u'edward', u'compet', u'pari', u'coach'] [u'esso', u'lament', u'picket', u'impact'] [u'european', u'citi', u'line', u'host', u'america'] [u'extra', u'fund', u'emerg', u'accommod'] [u'famili', u'asylum', u'seeker', u'move', u'port', u'hedland'] [u'father', u'tell', u'cheat', u'death'] [u'fear', u'ethanol', u'plan', u'fold'] [u'fear', u'independ', u'petrol', u'industri'] [u'fenc', u'wont', u'stop', u'spread', u'cane', u'toad', u'expert'] [u'figur', u'age', u'shoalhaven', u'popul'] [u'forc', u'coach', u'agre', u'stay'] [u'insur', u'agent', u'jail', u'theft'] [u'good', u'rainfal', u'lift', u'status'] [u'govt', u'accus', u'sit', u'hepat', u'report'] [u'govt', u'begin', u'hard', u'sell', u'telstra', u'vote'] [u'govt', u'launch', u'citizenship', u'drive'] [u'govt', u'urg', u'releas', u'south', u'coast', u'rail', u'report'] [u'grandfath', u'fin', u'drug', u'weapon'] [u'group', u'predict', u'slight', u'eas', u'doctor', u'shortag'] [u'hama', u'launch', u'rocket', u'isra', u'town'] [u'hame', u'put', u'pakistan', u'command'] [u'hanson', u'jail', u'see', u'witch', u'hunt'] [u'hanson', u'hour', u'observ'] [u'hawk', u'crush', u'blue'] [u'heartland', u'tourism', u'excel', u'servic'] [u'hospit', u'orthopaed', u'crisi', u'continu'] [u'hostel', u'fail', u'safeti', u'standard'] [u'howard', u'stand', u'hanson', u'comment'] [u'howard', u'visit', u'solomon', u'week'] [u'howard', u'weigh', u'warn', u'debat'] [u'hume', u'council', u'reject', u'merger', u'plan'] [u'icpa', u'voic', u'telstra', u'sale', u'opposit'] [u'illeg', u'arm', u'hotlin', u'solomon', u'island'] [u'import', u'keen', u'help', u'croc'] [u'injur', u'safin', u'cana', u'withdraw', u'open'] [u'investig', u'continu', u'polic', u'shoot'] [u'iranian', u'mass', u'deport', u'delay', u'court'] [u'iraq', u'intellig', u'inquiri', u'begin', u'today'] [u'irrig', u'firm', u'back', u'kosciuszko', u'cloud', u'seed', u'plan'] [u'isol', u'case', u'anthrax', u'region', u'victoria'] [u'italian', u'miner', u'plight', u'movi'] [u'jakarta', u'order', u'busi', u'tighten', u'secur'] [u'japanes', u'beef', u'tariff', u'shut', u'abattoir'] [u'network', u'provid', u'pay', u'despit', u'target'] [u'kalgoorli', u'vie', u'parliament', u'sit'] [u'kean', u'back', u'arsenal', u'vieira', u'cri', u'foul'] [u'kelli', u'predict', u'death', u'wood'] [u'kill', u'hama', u'leader', u'ugli', u'crime', u'palestinian'] [u'kirsten', u'rescu', u'south', u'african', u'inning'] [u'korea', u'march'] [u'labor', u'concern', u'pressur', u'privatis'] [u'labor', u'reconsid', u'kaiser', u'appoint', u'nat'] [u'landhold', u'urg', u'bite', u'wild', u'dog'] [u'lead', u'health', u'group', u'push', u'rise', u'alcohol'] [u'leppitsch', u'brisban'] [u'malaria', u'studi', u'win', u'fund', u'inject'] [u'malthous', u'say', u'final', u'footi', u'begin', u'earli'] [u'jail', u'suppli', u'drug'] [u'rush', u'hospit', u'hous', u'rescu'] [u'sentenc', u'year', u'prostitut', u'rape'] [u'stab', u'road', u'rage', u'attack'] [u'kean', u'emerg', u'defend'] [u'meet', u'call', u'hospit', u'cardiologist'] [u'charg', u'rape', u'fellow', u'inmat'] [u'industri', u'reject', u'poor', u'work', u'condit', u'claim'] [u'montoya', u'play', u'titl', u'prospect'] [u'hold', u'mini', u'alcohol', u'abus', u'summit'] [u'gambier', u'studi', u'drug', u'alcohol', u'servic'] [u'moot', u'plan', u'super', u'council'] [u'nat', u'think', u'educ', u'polici', u'chang', u'workabl'] [u'netbal', u'australia', u'decid', u'team'] [u'netherland', u'pakistan', u'march', u'hockey', u'final'] [u'inquiri', u'launch', u'game'] [u'islamist', u'group', u'claim', u'baghdad', u'bomb'] [u'virus', u'spread', u'faster'] [u'russian', u'soldier', u'kill', u'chechnya'] [u'north', u'korea', u'demand', u'hostil', u'polici'] [u'opposit', u'promis', u'cooper', u'water'] [u'polic', u'arrest', u'ecstasi', u'haul'] [u'nurs', u'await', u'redund', u'decis'] [u'oldfield', u'unconcern', u'case', u'preced'] [u'pakistan', u'claim', u'indian', u'kill', u'kashmir'] [u'palestinian', u'shore', u'peac', u'process'] [u'palestinian', u'flock', u'hama', u'figur', u'funer'] [u'paradorn', u'breez', u'quarter'] [u'peac', u'ralli', u'mark', u'solomon', u'amnesti'] [u'dismiss', u'wilki', u'claim', u'iraqi', u'intellig'] [u'say', u'hanson', u'sentenc', u'sever'] [u'offic', u'sex', u'iraq', u'threat'] [u'polic', u'confus', u'polic', u'chase', u'lingo', u'coron'] [u'polic', u'investig', u'bodi'] [u'polic', u'investig', u'spate', u'death', u'famili'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'oppos', u'bail', u'accus', u'teen', u'rapist'] [u'politician', u'criticis', u'comment', u'hanson'] [u'posti', u'union', u'threaten', u'strike', u'daylight'] [u'powel', u'urg', u'greater', u'pressur', u'middl', u'east'] [u'power', u'cost', u'rise', u'region'] [u'power', u'earthquak', u'hit'] [u'prais', u'meningococc', u'vaccin', u'effort'] [u'gain', u'feder', u'elector'] [u'nation', u'maintain', u'stanc', u'telstra', u'sale'] [u'opposit', u'back', u'safeti', u'shame', u'list'] [u'reef', u'rezon', u'submiss', u'longer', u'process'] [u'refshaug', u'tour', u'macleay', u'school'] [u'report', u'highlight', u'bridg', u'concern'] [u'resid', u'quick', u'oppos', u'speed', u'reduct', u'plan'] [u'grower', u'reject', u'water', u'restrict', u'plan'] [u'rural', u'press', u'make', u'harri', u'compani'] [u'saddam', u'arrest', u'close', u'chemic', u'ali', u'captur'] [u'sampra', u'retir', u'offici'] [u'search', u'underway', u'escap', u'killer'] [u'share', u'market', u'end', u'week', u'month', u'high'] [u'month', u'wait', u'clean', u'drink', u'water'] [u'state', u'govern', u'concern', u'assault', u'charg'] [u'steal', u'explos', u'recov'] [u'storm', u'put', u'dragon'] [u'strong', u'economi', u'help', u'fight', u'terror', u'howard'] [u'strong', u'wind', u'warn', u'south', u'west'] [u'govt', u'highlight', u'age', u'care', u'fund', u'shortfal'] [u'telstra', u'sale', u'worri', u'remot', u'famili'] [u'tendulkar', u'compil', u'centuri', u'waugh'] [u'toad', u'proof', u'fenc', u'moot'] [u'tourism', u'oper', u'frustrat', u'camp', u'closur'] [u'tran', u'tasman', u'disput', u'break', u'quak'] [u'trial', u'corp', u'execut', u'delay'] [u'arrest', u'iranian', u'argentin', u'bomb', u'attack'] [u'forc', u'kill', u'congo', u'militiaman'] [u'union', u'back', u'coal', u'termin', u'push'] [u'unusu', u'turtl', u'display', u'tasmania'] [u'ask', u'coalit', u'member', u'iraq'] [u'confirm', u'death', u'serial', u'sniper'] [u'economi', u'show', u'sign', u'recoveri'] [u'help', u'stop', u'toothfish', u'poach'] [u'soldier', u'kill', u'fight', u'iraq'] [u'secur', u'council', u'discuss', u'action'] [u'vandal', u'target', u'toowoomba', u'church'] [u'polic', u'minist', u'back', u'commission'] [u'volunt', u'work', u'pay', u'landcar', u'award'] [u'wale', u'wari', u'england'] [u'waltz', u'matilda', u'go', u'strong'] [u'waltz', u'matilda', u'year', u'jingl'] [u'take', u'dart', u'championship'] [u'record', u'rare', u'snowfal'] [u'warn', u'wife', u'stand'] [u'warn', u'withdraw', u'offici', u'train'] [u'western', u'popul', u'predict', u'chang', u'littl'] [u'help', u'china', u'prevent', u'diseas'] [u'hold', u'men', u'event'] [u'woman', u'die', u'accid'] [u'wound', u'tiger', u'bite'] [u'critic', u'victorian', u'power', u'generat'] [u'dead', u'brazilian', u'satellit', u'launch', u'explos'] [u'matern', u'servic', u'review'] [u'alleg', u'archbishop', u'frighten'] [u'annan', u'appoint', u'envoy', u'iraq'] [u'annan', u'warn', u'iraq', u'troop', u'resolut', u'unlik'] [u'want', u'explan', u'warn', u'victorian'] [u'aussi', u'annan', u'help', u'dutch', u'edg', u'hockeyroo'] [u'baghdad', u'polic', u'arrest', u'major', u'arm'] [u'bashar', u'lead', u'bangladesh', u'fight'] [u'beatti', u'predict', u'nation', u'backlash'] [u'blast', u'southern', u'pakistan', u'injur'] [u'bomber', u'thrash', u'docker'] [u'brazil', u'pay', u'homag', u'sergio', u'vieira', u'mello'] [u'brazil', u'forg', u'ahead', u'space', u'program', u'despit'] [u'britain', u'grade', u'mathematician', u'age'] [u'british', u'headmistress', u'hold', u'swindl'] [u'bronco', u'lose', u'swain', u'warrior', u'clash'] [u'bush', u'commit', u'middl', u'east', u'peac', u'effort'] [u'bush', u'freez', u'asset', u'hama', u'leader'] [u'strip', u'search', u'women', u'prison'] [u'boost', u'art', u'fund'] [u'canada', u'arrest', u'terror', u'concern'] [u'canadian', u'forc', u'flee'] [u'carter', u'target', u'world'] [u'church', u'member', u'hold', u'talk', u'minist'] [u'claim', u'backyard', u'drain', u'pool', u'law'] [u'claim', u'govt', u'overlook', u'local', u'firm'] [u'claim', u'hec', u'chang', u'push', u'enrol'] [u'council', u'fin', u'pollut', u'creek'] [u'coupl', u'sentenc', u'life', u'woman', u'murder'] [u'cowboy', u'skin', u'rabbit'] [u'davenport', u'capriati', u'battl', u'haven', u'titl'] [u'mello', u'honour', u'airport', u'ceremoni'] [u'mello', u'bodi', u'arriv', u'brazil'] [u'eel', u'club', u'record', u'shark'] [u'elder', u'mother', u'dead', u'unit'] [u'elder', u'woman', u'strike', u'accid'] [u'elector', u'bodi', u'reject', u'call', u'review', u'wake'] [u'email', u'worm', u'start', u'porn', u'newsgroup', u'expert'] [u'england', u'chase', u'strong', u'start'] [u'eritrean', u'govt', u'deni', u'journalist', u'detain'] [u'arrest', u'sydney', u'drug', u'raid'] [u'marin', u'charg', u'abduct', u'girl'] [u'form', u'guid', u'men', u'field', u'event'] [u'form', u'guid', u'men', u'track', u'event'] [u'form', u'guid', u'women', u'field', u'event'] [u'form', u'guid', u'women', u'track', u'event'] [u'franc', u'announc', u'farmer', u'drought'] [u'franc', u'hand', u'romania', u'rugbi', u'lesson'] [u'global', u'race', u'clock', u'beat', u'virus'] [u'global', u'race', u'mail', u'virus', u'make', u'progress'] [u'govt', u'accus', u'withhold', u'bulk', u'bill', u'figur'] [u'govt', u'admit', u'age', u'workforc', u'problem'] [u'govt', u'lie', u'time', u'iraq', u'wilki', u'say'] [u'govt', u'move', u'discredit', u'intellig', u'offic'] [u'govt', u'tightlip', u'cabinet', u'reshuffl', u'specul'] [u'green', u'prove', u'doubter', u'wrong'] [u'hama', u'vow', u'step', u'suicid', u'attack'] [u'hanson', u'adjust', u'prison', u'life', u'beatti'] [u'hanson', u'sentenc', u'revitalis', u'parti', u'nation', u'say'] [u'health', u'insur', u'contract', u'negoti', u'break'] [u'hewitt', u'ponder', u'footbal', u'career'] [u'hmas', u'sydney', u'welcom', u'home'] [u'hop', u'petit', u'push', u'church', u'overturn'] [u'illeg', u'fish', u'boat', u'uruguay', u'sight'] [u'indonesian', u'provinc', u'inaugur', u'spark', u'clash'] [u'inquiri', u'open', u'brazilian', u'rocket', u'explos'] [u'investig', u'focus', u'insid', u'blast'] [u'jack', u'captain', u'blood', u'dyer', u'die'] [u'kenyan', u'vice', u'presid', u'die', u'london', u'hospit'] [u'kookaburra', u'play', u'champion', u'trophi', u'final'] [u'kuerten', u'fall', u'quarter', u'final'] [u'lawyer', u'urg', u'caution', u'accept', u'compens'] [u'liabil', u'case', u'wake', u'employ'] [u'liberian', u'rebel', u'launch', u'attack'] [u'lion', u'strong', u'cat', u'gabba'] [u'local', u'debut', u'hungarian'] [u'magpi', u'beat', u'swan', u'olymp', u'stadium'] [u'magpi', u'beat', u'swan', u'lion', u'cat'] [u'malthous', u'underestim', u'swan'] [u'charg', u'attempt', u'rape', u'english', u'tourist'] [u'kill', u'injur', u'crash'] [u'meaa', u'call', u'intervent', u'newspap', u'takeov'] [u'kill', u'tear', u'aceh'] [u'govt', u'survey', u'peopl', u'fear', u'crime'] [u'oppn', u'criticis', u'crime', u'survey', u'propos'] [u'oppn', u'criticis', u'icac', u'face', u'investig'] [u'landcar', u'award', u'winner', u'announc'] [u'team', u'confid', u'ahead', u'north', u'clash'] [u'offic', u'receiv', u'funer', u'polic', u'honour'] [u'palestinian', u'author', u'condemn', u'attack'] [u'palestinian', u'help', u'mediat', u'truce'] [u'panic', u'pragu', u'croc', u'leap', u'freedom'] [u'panther', u'carv', u'tiger'] [u'panther', u'carv', u'tiger'] [u'perez', u'break', u'world', u'record', u'walk'] [u'announc', u'murray', u'rescu', u'plan'] [u'pay', u'respect', u'remark', u'macdonald'] [u'visit', u'solomon', u'island'] [u'polic', u'releas', u'sketch', u'sniper', u'suspect'] [u'polic', u'offic', u'honour', u'fatal', u'shoot'] [u'polic', u'identifi', u'shoot', u'killer', u'bodi'] [u'redund', u'rumour', u'lay', u'rest', u'polic', u'union'] [u'refuge', u'advoc', u'slam', u'latest', u'report', u'deport'] [u'refuge', u'group', u'fume', u'iranian', u'men', u'treatment'] [u'roo', u'upset', u'crow', u'adelaid'] [u'russian', u'scientist', u'help', u'build', u'latest', u'european'] [u'lib', u'elect', u'presid'] [u'sandpip', u'exit', u'style'] [u'prais', u'howard', u'murray', u'rescu', u'plan'] [u'seven', u'resort', u'issu', u'safeti', u'notic'] [u'teacher', u'accept', u'offer'] [u'teacher', u'vote', u'govt', u'latest', u'offer'] [u'team', u'support', u'ax', u'canadian'] [u'thai', u'polic', u'arrest', u'terrorist', u'suspect'] [u'thirti', u'kill', u'chines', u'traffic', u'accid'] [u'thousand', u'gather', u'melbourn', u'sneak', u'peak'] [u'thousand', u'protest', u'canada', u'plan', u'marriag'] [u'british', u'soldier', u'kill', u'iraq'] [u'tom', u'riley', u'share', u'inviat', u'lead'] [u'lifesav', u'darwin', u'fundrais', u'event'] [u'embassi', u'iraq', u'evacu', u'credibl', u'threat'] [u'resist', u'british', u'call', u'send', u'troop'] [u'resum', u'work', u'baghdad'] [u'team', u'start', u'work', u'liberia'] [u'rule', u'extern', u'incent', u'north', u'korea'] [u'stock', u'stumbl', u'intel', u'impact', u'evapor'] [u'venus', u'pull', u'open'] [u'judici', u'soft', u'say'] [u'veteran', u'funer', u'hold', u'week'] [u'toughen', u'energi', u'suppli', u'safeti', u'legisl'] [u'webber', u'pace', u'hungari'] [u'world', u'wait', u'end', u'lomu', u'monday'] [u'flee', u'canadian', u'forest'] [u'respond', u'report', u'broadcast', u'bomb', u'make'] [u'govt', u'select', u'appli', u'tuckey', u'say'] [u'amp', u'imag', u'take', u'mohl', u'say'] [u'focus', u'region', u'base', u'busi'] [u'anderson', u'disgust', u'doubl', u'send'] [u'arafat', u'ask', u'europ', u'help', u'save', u'peac', u'process'] [u'argentina', u'thump', u'canada', u'beat', u'uruguay'] [u'dead', u'iraqi', u'ethnic', u'clash'] [u'australia', u'post', u'worker', u'fight', u'discrimin'] [u'aust', u'want', u'high', u'sea', u'chase', u'court'] [u'barrichello', u'raikkonen', u'clear', u'german', u'crash'] [u'beatti', u'back', u'aspinal', u'amid', u'abus', u'claim'] [u'beatti', u'defend', u'kaiser', u'appoint'] [u'biograph', u'pay', u'tribut', u'decor', u'veteran'] [u'brazilian', u'rocket', u'explos', u'death', u'toll', u'rise'] [u'bronco', u'warrior', u'level', u'brutal', u'encount'] [u'brumbi', u'dismiss', u'improp', u'public', u'land', u'sale', u'claim'] [u'butler', u'keen'] [u'butler', u'expand', u'role', u'governor'] [u'mello', u'nomin', u'nobel', u'prize'] [u'inquiri', u'convict', u'killer', u'escap'] [u'capriati', u'claim', u'haven', u'titl'] [u'claim', u'rule', u'chang', u'sky', u'smoggier'] [u'claim', u'alleg', u'fish', u'poacher', u'conceal', u'boat'] [u'clark', u'captur', u'invit', u'lead'] [u'deplet', u'england', u'overpow', u'wale'] [u'timor', u'presid', u'attempt', u'reconcili', u'talk'] [u'fall', u'power', u'line', u'spark', u'hous'] [u'famili', u'visit', u'hanson', u'prison'] [u'food', u'poison', u'hit', u'chines', u'construct', u'site'] [u'mayor', u'prais', u'aust', u'hero'] [u'govt', u'sell', u'pension', u'home', u'welfar'] [u'health', u'minist', u'want', u'sign', u'deal', u'patterson', u'say'] [u'hockeyroo', u'dutch', u'nation', u'final'] [u'hope', u'fact', u'sheet', u'help', u'famili', u'understand'] [u'howard', u'meet', u'mayor'] [u'hunt', u'begin', u'basra', u'attack'] [u'hutton', u'inquiri', u'releas', u'classifi', u'document'] [u'illeg', u'brothel', u'warn', u'law'] [u'immigr', u'dept', u'tightlip', u'whereabout'] [u'indonesian', u'govt', u'honour', u'stone', u'presidenti'] [u'iran', u'want', u'apolog', u'diplomat', u'arrest'] [u'japanes', u'kill', u'climb', u'peak', u'pakistan'] [u'kean', u'happi', u'lament', u'sloppi', u'unit'] [u'kestrel', u'bump', u'bird', u'second', u'place'] [u'kirsten', u'put', u'protea'] [u'kluft', u'ader', u'shine', u'perez', u'take', u'golden', u'walk'] [u'kookaburra', u'storm', u'champion', u'trophi', u'final'] [u'levi', u'patient', u'hardest', u'doctor', u'fund', u'say'] [u'liberian', u'report', u'fresh', u'fight', u'thousand', u'flee'] [u'lower', u'rainfal', u'eas', u'flashflood', u'fear'] [u'charg', u'alleg', u'kidnap', u'student'] [u'charg', u'babi', u'manslaught'] [u'kill', u'injur', u'crash', u'traffic'] [u'unit', u'chelsea', u'maintain', u'perfect', u'start'] [u'mcgee', u'claim', u'stage', u'ekimov', u'win', u'tour'] [u'newcastl', u'resid', u'warn', u'toxic', u'fume'] [u'law', u'target', u'busi', u'leas', u'agreement'] [u'korean', u'media', u'involv', u'scuffl', u'game'] [u'extend', u'deadlin', u'transport', u'plan', u'submiss'] [u'capit', u'shake', u'small', u'earthquak'] [u'oldest', u'veteran', u'die'] [u'dead', u'storm', u'lash', u'east', u'coast'] [u'pakistan', u'cours', u'victori'] [u'palestinian', u'forc', u'crack', u'islam', u'milit'] [u'palestinian', u'polic', u'begin', u'tunnel', u'crackdown'] [u'palestinian', u'launch', u'rocket', u'attack', u'israel'] [u'paradorn', u'crush', u'kiefer', u'reach', u'final'] [u'polic', u'identifi', u'student', u'boot'] [u'poll', u'show', u'voter', u'turn', u'bush'] [u'port', u'tiger', u'saint', u'whip', u'dog', u'eagl', u'beat'] [u'port', u'keep', u'win', u'feel', u'tiger'] [u'qanta', u'consid', u'cost', u'airlin'] [u'raider', u'beat', u'knight', u'head'] [u'resurg', u'ranger', u'celtic', u'spot'] [u'robert', u'famili', u'thank', u'killer', u'jail', u'life'] [u'rwandan', u'leader', u'accus', u'vote', u'rig', u'attempt'] [u'scotland', u'score', u'record', u'itali'] [u'second', u'half', u'blitz', u'see', u'rooster', u'past', u'man'] [u'sergio', u'vieira', u'mello', u'fall', u'hero', u'annan'] [u'ship', u'suspect', u'dump', u'spanish', u'coast'] [u'kill', u'plane', u'crash', u'germani'] [u'sobig', u'virus', u'expect', u'attack'] [u'sommeil', u'hero', u'villain', u'citi', u'everton', u'overcom'] [u'state', u'urg', u'accept', u'generous', u'health', u'packag'] [u'stem', u'cell', u'research', u'bring', u'lung', u'diseas', u'cure', u'closer'] [u'kilda', u'good', u'bulldog'] [u'sydney', u'woman', u'kill', u'train'] [u'take', u'life', u'snail', u'pace', u'spain'] [u'thai', u'polic', u'kill', u'drug', u'traffick'] [u'charg', u'polic', u'drug'] [u'finish', u'anlezark', u'adam'] [u'tribut', u'flow', u'jack', u'captain', u'blood', u'dyer'] [u'fishermen', u'rescu'] [u'chief', u'pay', u'respect', u'envoy'] [u'resum', u'work', u'iraq'] [u'celebr', u'king', u'landmark', u'speech'] [u'comedian', u'win', u'british', u'award'] [u'paedophil', u'priest', u'kill', u'prison', u'attack'] [u'question', u'public', u'land', u'sale'] [u'virgin', u'edg', u'qanta', u'dixon'] [u'plan', u'tough', u'crack', u'hoon'] [u'warn', u'flee', u'countri'] [u'warrior', u'bronco', u'brutal', u'encount'] [u'warrior', u'bronco', u'rooster', u'raider'] [u'wealthi', u'exploit', u'matern', u'allow', u'loophol', u'oppn'] [u'webber', u'fastest', u'hungari'] [u'webb', u'fire', u'content'] [u'west', u'coast', u'good', u'melbourn'] [u'woman', u'dead', u'child', u'injur', u'crash'] [u'woman', u'sexual', u'assault', u'hobart', u'citi', u'area'] [u'expect', u'veteran', u'funer'] [u'abbott', u'defend', u'role', u'hanson', u'case'] [u'accc', u'tell', u'butt', u'pipelin', u'industri'] [u'agassi', u'roddick', u'lead', u'men', u'charg', u'open'] [u'age', u'care', u'centr', u'shut', u'door'] [u'age', u'care', u'nurs', u'vote', u'interim', u'offer'] [u'alcohol', u'abus', u'agenda'] [u'alonso', u'make', u'histori', u'hungari'] [u'anderson', u'tightlip', u'fund', u'debat', u'save'] [u'arroyo', u'releas', u'rogu', u'filipino', u'soldier'] [u'atsic', u'commission', u'urg', u'region'] [u'australian', u'help', u'build', u'hubbl', u'devic'] [u'australia', u'flanagan', u'win', u'amateur', u'titl'] [u'author', u'consid', u'water', u'conserv', u'method'] [u'bagpip', u'ruin', u'health', u'report'] [u'bail', u'forc', u'girl', u'detain', u'lock'] [u'barrier', u'reef', u'rezon', u'review'] [u'label', u'murdoch', u'capit', u'imperialist'] [u'bear', u'maul', u'seagul', u'minor', u'premiership'] [u'bekel', u'thwart', u'gebrselassi', u'metr'] [u'snowfal', u'hotham'] [u'bjelk', u'petersen', u'famili', u'express', u'sympathi'] [u'board', u'say', u'health', u'review', u'overlook', u'local', u'expertis'] [u'boundari', u'chang', u'expect', u'boost', u'nat'] [u'british', u'face', u'waterg'] [u'brown', u'criticis', u'govt', u'csiro', u'cut'] [u'buttigieg', u'retir'] [u'better', u'coordin', u'local', u'govt', u'servic'] [u'cambodian', u'polic', u'arrest', u'aust', u'heroin', u'smuggl'] [u'canberra', u'hotel', u'occup'] [u'carr', u'say', u'feder', u'fund', u'inadequ', u'save', u'murray'] [u'cattl', u'theft', u'spotlight'] [u'charvi', u'captain', u'wale', u'scotland'] [u'clairvoy', u'call', u'miss', u'chopper'] [u'clark', u'clinch', u'ohio'] [u'colombian', u'rebel', u'join', u'forc', u'govern'] [u'colston', u'succumb', u'cancer'] [u'commonwealth', u'leas', u'point', u'nepean', u'land'] [u'consult', u'prepar', u'airport', u'master', u'plan'] [u'cooma', u'council', u'seek', u'adaminabi', u'inclus'] [u'costello', u'defend', u'abbott', u'role', u'hanson', u'case'] [u'cottag', u'interim', u'heritag', u'list'] [u'council', u'probe', u'river', u'wast', u'claim'] [u'council', u'rubbish', u'disput', u'intensifi'] [u'court', u'order', u'children', u'releas', u'detent'] [u'court', u'tell', u'lighten', u'caus', u'major', u'bushfir'] [u'cricket', u'boss', u'reinforc', u'train'] [u'crime', u'explos', u'figur', u'outdat', u'polic'] [u'croc', u'hop', u'wrap', u'veal', u'deal'] [u'crow', u'need', u'bounc', u'say', u'carey'] [u'decis', u'defenc', u'land', u'public', u'hand'] [u'doctor', u'group', u'predict', u'fewer', u'region'] [u'dont', u'blame', u'iraqi', u'peopl', u'blast', u'aust', u'worker'] [u'doubl', u'mumbai', u'templ', u'bomb', u'kill'] [u'driver', u'face', u'charg', u'fatal', u'crash'] [u'drought', u'sever', u'damag', u'rural', u'south', u'wale'] [u'dutch', u'roll', u'kookaburra', u'hockey', u'final'] [u'elder', u'brumbi', u'fight', u'feder', u'court'] [u'elector', u'money', u'hanson', u'say'] [u'electr', u'crew', u'work', u'restor', u'power'] [u'england', u'world', u'favourit', u'welsh', u'coach'] [u'ettridg', u'lodg', u'fraud', u'appeal'] [u'extra', u'hanson', u'fraud', u'charg', u'drop'] [u'famili', u'institut', u'releas', u'adopt', u'report'] [u'farmer', u'group', u'put', u'case', u'crop', u'benefit'] [u'fear', u'staff', u'plan', u'hurt', u'sport', u'centr'] [u'fergi', u'promis', u'curb', u'futur', u'behaviour'] [u'basebal', u'player', u'win', u'mobil', u'phone', u'throw'] [u'chief', u'want', u'judici', u'inquiri'] [u'tri', u'caucau', u'fiji', u'beat', u'chile'] [u'fremantl', u'tribun', u'tenterhook'] [u'fund', u'address', u'heritag', u'conserv'] [u'gallop', u'reprimand', u'hall'] [u'suppli', u'continu', u'despit', u'disput'] [u'gold', u'coast', u'host', u'intern', u'basebal', u'event'] [u'govt', u'deni', u'request', u'iraq', u'troop'] [u'govt', u'murray', u'river', u'commit', u'stingi'] [u'group', u'consid', u'abrolho', u'island', u'tourism', u'plan'] [u'hagan', u'reflect', u'knight', u'loss'] [u'haitian', u'plane', u'crash', u'kill'] [u'hama', u'say', u'swoop', u'gaza', u'milit', u'doom', u'fail'] [u'hame', u'equal', u'record', u'pakistani'] [u'hanson', u'polit', u'prison', u'bishop'] [u'harsher', u'water', u'restrict', u'possibl'] [u'health', u'centr', u'rebuild', u'locat'] [u'highway', u'project', u'boost', u'visitor', u'number'] [u'high', u'wind', u'help', u'eas', u'flood', u'threat'] [u'high', u'wind', u'leav', u'town', u'dark'] [u'high', u'wind', u'toll', u'south', u'coast'] [u'holland', u'medhurst', u'face', u'tribun'] [u'holt', u'disappear', u'case', u'open'] [u'hop', u'tafe', u'manag', u'remain', u'unchang'] [u'howard', u'ask', u'probe', u'solomon', u'corrupt'] [u'howard', u'express', u'concern', u'aust', u'troop', u'safeti'] [u'howard', u'head', u'solomon'] [u'howard', u'slam', u'wilki', u'iraqi', u'weapon', u'claim'] [u'hundr', u'fear', u'kill', u'liberia', u'massacr'] [u'hundr', u'corps', u'unclaim', u'french', u'morgu'] [u'hungari', u'disast', u'ferrari', u'lauda'] [u'icac', u'begin', u'hear', u'workcov', u'corrupt'] [u'illeg', u'immigr', u'deni', u'bail', u'fatal', u'kidnap', u'case'] [u'illeg', u'indonesian', u'fishermen', u'broom', u'court'] [u'immigr', u'dept', u'forcibl', u'deport', u'iranian'] [u'impress', u'gunner', u'join', u'chelsea'] [u'iraqi', u'asylum', u'seeker', u'await', u'flight', u'home'] [u'irrig', u'group', u'water', u'offer'] [u'isra', u'arab', u'orchestra', u'perform', u'morocco'] [u'isra', u'gunship', u'attack', u'kill', u'palestinian'] [u'japan', u'brace', u'controversi', u'north', u'korea', u'ferri', u'visit'] [u'jess', u'pay', u'tribut', u'dyer'] [u'leader', u'deport', u'indonesia'] [u'johnson', u'amid', u'pari', u'track', u'farc'] [u'joint', u'state', u'oper', u'focus', u'spanner', u'crab'] [u'katsidi', u'happi', u'short', u'fight', u'earli', u'knock'] [u'lamb', u'sale', u'loxton'] [u'later', u'mango', u'season', u'predict'] [u'life', u'sentenc', u'record', u'cocain', u'haul'] [u'lion', u'deal', u'tougher', u'challeng'] [u'local', u'govt', u'support', u'seek', u'youth', u'scheme'] [u'lomu', u'mehrten', u'miss', u'black', u'world', u'squad'] [u'lutheran', u'meet', u'renmark', u'synod'] [u'malaysia', u'deport', u'suspect', u'indonesia'] [u'appear', u'court', u'charg', u'wife', u'murder'] [u'guilti', u'manslaught', u'set'] [u'market', u'pull', u'month', u'high'] [u'milit', u'ambush', u'govt', u'convoy', u'afghanistan', u'dead'] [u'montgomeri', u'look', u'readi', u'emul', u'jone'] [u'air', u'boundari', u'chang', u'concern'] [u'unawar', u'free', u'trade', u'telstra', u'claim'] [u'morgan', u'councillor'] [u'nasa', u'launch', u'telescop'] [u'nasa', u'newest', u'telescop', u'launch'] [u'nat', u'question', u'drought', u'fund'] [u'night', u'record', u'cowboy'] [u'nikolayeva', u'oldest', u'world', u'champion'] [u'declar', u'natur', u'disast', u'zone'] [u'occup', u'health', u'safeti', u'spotlight'] [u'onesteel', u'look', u'asian', u'export', u'market'] [u'opal', u'greec'] [u'paedophil', u'priest', u'kill', u'jail'] [u'paradorn', u'eas', u'past', u'blake', u'retain', u'long', u'island'] [u'partner', u'face', u'assault', u'charg'] [u'peachey', u'face', u'season', u'end', u'charg'] [u'peachey', u'defend', u'season', u'end', u'charg'] [u'pie', u'prepar', u'face', u'essendon'] [u'pioneer', u'celebr'] [u'plan', u'state', u'biggest', u'elector', u'bigger'] [u'address', u'aust', u'troop', u'solomon'] [u'polic', u'critic', u'politician', u'expect', u'rise'] [u'polic', u'search', u'miss', u'woman'] [u'poll', u'flow', u'kingston', u'water', u'consult'] [u'prosecutor', u'seek', u'mukhla', u'death', u'sentenc'] [u'protest', u'greet', u'north', u'korean', u'ferri', u'japan'] [u'cabinet', u'face', u'reshuffl', u'health', u'minist'] [u'seek', u'resolut', u'feder', u'grant', u'delay'] [u'queensland', u'welcom', u'academi'] [u'rain', u'disrupt', u'ralli', u'driver'] [u'rainfal', u'bring', u'good', u'farmer'] [u'rain', u'green', u'region'] [u'rain', u'help', u'boost', u'water', u'storag'] [u'real', u'madrid', u'coach', u'forc', u'sacrific', u'beckham'] [u'rebel', u'massacr', u'report', u'liberia'] [u'wine', u'molecul', u'extend', u'life', u'studi'] [u'renegad', u'fish', u'boat', u'dock', u'uruguay'] [u'rescuer', u'come', u'strand', u'angler'] [u'resid', u'legal', u'action', u'quarri', u'project'] [u'ruddock', u'challeng', u'famili', u'court', u'detent', u'rule'] [u'russian', u'media', u'tycoon', u'gusinski', u'arrest', u'greec'] [u'ruthless', u'west', u'sack', u'roeder'] [u'rwanda', u'vote', u'poll', u'genocid'] [u'govt', u'announc', u'million', u'homeless', u'plan'] [u'schumach', u'vow', u'fight', u'pressur', u'mount'] [u'sculli', u'defend', u'transport', u'minist'] [u'senat', u'push', u'sniffer', u'dog'] [u'continu', u'clean', u'wind', u'whip', u'melbourn'] [u'assault', u'claim', u'spark', u'polic', u'hunt'] [u'shale', u'impact', u'report', u'assess'] [u'shire', u'reject', u'merger'] [u'shire', u'tackl', u'wild', u'problem'] [u'singapor', u'stay', u'polit'] [u'kill', u'colombia', u'river', u'boat', u'blast'] [u'sobig', u'virus', u'slow', u'second', u'attempt', u'fizzl'] [u'south', u'africa', u'mind', u'game', u'victori'] [u'south', u'east', u'record', u'highest', u'student', u'suspens', u'rate'] [u'special', u'polic', u'team', u'badger', u'thiev'] [u'sport', u'instructor', u'join', u'strike'] [u'lanka', u'explor', u'option', u'ahead', u'england', u'tour'] [u'stanhop', u'prepar', u'help', u'fund', u'murray', u'river'] [u'storm', u'highlight', u'problem'] [u'storm', u'emerg', u'worker', u'busi'] [u'strike', u'action', u'loom', u'disput', u'drag'] [u'student', u'bottl', u'drop'] [u'summer', u'firi', u'seek', u'north', u'west'] [u'survey', u'highlight', u'river', u'manag'] [u'survey', u'highlight', u'teen', u'alcohol', u'consumpt'] [u'suspect', u'indonesia', u'mcdonald', u'bomber', u'surrend'] [u'line', u'profit'] [u'tasmania', u'clean', u'storm'] [u'iraqi', u'kill', u'najaf', u'blast'] [u'toowoomba', u'feel', u'insur', u'woe'] [u'tractor', u'accid', u'claim', u'farmer', u'life'] [u'turkish', u'crash', u'kill', u'injur'] [u'tweed', u'shire', u'interest', u'merger'] [u'arrest', u'ahead', u'rwanda', u'elect'] [u'iraqi', u'kill', u'blast', u'near', u'mosqu'] [u'envoy', u'bodi', u'arriv', u'geneva'] [u'union', u'pleas', u'ansett', u'entitl', u'decis'] [u'union', u'want', u'action', u'help', u'teacher', u'deal'] [u'cruis', u'victori', u'virgin', u'island'] [u'govt', u'label', u'point', u'nepean', u'leas', u'commonwealth'] [u'victim', u'warn', u'give', u'evid'] [u'victoria', u'crime', u'rate', u'drop'] [u'warn', u'chariti', u'match', u'spirit', u'cricket'] [u'warn', u'pull', u'chariti', u'match'] [u'warn', u'pull', u'chariti', u'match', u'amid', u'fresh'] [u'white', u'eye', u'sprint', u'doubl', u'metr'] [u'wild', u'weather', u'batter', u'ballarat'] [u'wild', u'weather', u'lash', u'east', u'coast'] [u'woodford', u'folk', u'festiv', u'win', u'boost'] [u'woolworth', u'report', u'best', u'profit', u'year'] [u'workplac', u'danger'] [u'york', u'park', u'crowd', u'undet', u'poor', u'weather'] [u'power'] [u'abbott', u'admit', u'creat', u'anti', u'hanson', u'fund'] [u'abbott', u'help', u'fund', u'nation', u'case', u'businessman', u'say'] [u'adelaid', u'sign', u'mcleod'] [u'condemn', u'bomb', u'report'] [u'ask', u'abbott', u'explain', u'hanson', u'role'] [u'say', u'children', u'releas', u'offer', u'hope'] [u'tell', u'senat', u'sort', u'indemn', u'lose', u'doctor'] [u'analyst', u'say', u'australia', u'send', u'troop'] [u'anelka', u'lift', u'citi'] [u'archer', u'take', u'olymp'] [u'armi', u'chief', u'promis', u'bastardis', u'crackdown'] [u'australia', u'urg', u'boost', u'defenc', u'spend'] [u'aviat', u'expert', u'consid', u'space', u'reform'] [u'post', u'half', u'year', u'profit'] [u'beat', u'drug', u'run', u'prioriti', u'senat'] [u'beatti', u'say', u'phone', u'tower', u'feder', u'issu'] [u'black', u'ampute', u'win', u'right', u'match', u'foot'] [u'boycott', u'threat', u'avert', u'spanish', u'club', u'agre'] [u'brazilian', u'emerson', u'join', u'wolv', u'atletico'] [u'bridg', u'decis', u'load', u'council', u'mind'] [u'brisban', u'polic', u'investig', u'stab', u'murder'] [u'break', u'hill', u'commerci', u'radio', u'licenc', u'sell'] [u'bulldog', u'mourn', u'ware', u'loss'] [u'burma', u'stand'] [u'bush', u'administr', u'call', u'patienc', u'iraq'] [u'busi', u'confid', u'year', u'high'] [u'busi', u'urg', u'elder', u'workforc'] [u'establish', u'alcohol', u'institut'] [u'cameron', u'retir', u'follow', u'tiger', u'hawk', u'clash'] [u'canegrow', u'hop', u'better', u'crop'] [u'carniv', u'atmospher', u'trendi', u'not', u'hill'] [u'child', u'detent', u'rule', u'preced'] [u'clark', u'soar', u'world', u'rank', u'akron'] [u'clijster', u'open', u'account', u'convinc'] [u'collin', u'win', u'world', u'titl', u'pittman'] [u'colston', u'guilti', u'historian', u'stress'] [u'compani', u'respond', u'hotel', u'worker', u'strike'] [u'system', u'blame', u'bushfir', u'respons', u'time'] [u'council', u'lament', u'cost', u'shift', u'impact'] [u'councillor', u'upset', u'vandal', u'cost'] [u'councillor', u'want', u'power', u'water', u'takeov'] [u'council', u'remind', u'submit', u'reform', u'submiss'] [u'council', u'join', u'region', u'develop', u'push'] [u'council', u'urg', u'develop', u'tree', u'regist'] [u'council', u'decid', u'mall', u'market'] [u'council', u'precinct', u'manag', u'plan'] [u'council', u'want', u'dump', u'guarante'] [u'counsel', u'avail', u'student', u'wit'] [u'court', u'approv', u'million', u'settlement'] [u'court', u'ask', u'settlement', u'ahead'] [u'court', u'back', u'land', u'council', u'claim', u'alcoota', u'station'] [u'court', u'releas', u'iranian', u'solitari', u'detent'] [u'croc', u'sign', u'veal', u'year', u'deal'] [u'custom', u'seiz', u'heroin', u'sydney', u'airport'] [u'davenport', u'storm', u'rubin', u'falter'] [u'delay', u'fast', u'rail', u'project', u'cost', u'govt'] [u'deton', u'indian', u'rail', u'track'] [u'doctor', u'make', u'nois', u'hear', u'loss'] [u'domest', u'cat', u'target', u'tasmanian', u'green'] [u'dortmund', u'benfica', u'face', u'champion', u'leagu', u'exit'] [u'drummond', u'face', u'charg', u'track', u'protest'] [u'east', u'timor', u'expect', u'tough', u'talk'] [u'emot', u'sampra', u'bid', u'final', u'farewel'] [u'escap', u'killer', u'turn'] [u'expert', u'warn', u'complac'] [u'explor', u'wilfr', u'thesig', u'dead'] [u'farmer', u'group', u'welcom', u'wheat', u'varieti'] [u'feder', u'govt', u'urg', u'drought', u'centr', u'plan'] [u'ferrari', u'flay', u'italian', u'press'] [u'fertilis', u'supplier', u'urg', u'report', u'suspici'] [u'respons', u'time', u'blame', u'woe'] [u'season', u'prepar', u'begin'] [u'firman', u'action', u'talli', u'return'] [u'firm', u'urg', u'tackl', u'rugbi', u'world', u'opportun'] [u'fish', u'boat', u'chase', u'longest', u'record'] [u'flood', u'watch', u'continu', u'northern'] [u'foster', u'suffer', u'profit', u'loss'] [u'drop', u'lawsuit', u'satirist', u'franken'] [u'gallop', u'unhappi', u'peachey', u'send'] [u'gold', u'coast', u'push', u'ahead'] [u'good', u'respons', u'accommod', u'standard'] [u'greenpeac', u'air', u'shale', u'reef', u'concern'] [u'group', u'unhappi', u'time', u'sceal', u'case'] [u'gunnedah', u'uncertainti', u'affect', u'tender'] [u'hanson', u'support', u'protest', u'prison'] [u'harbi', u'william', u'pursu', u'netbal', u'australia', u'posit'] [u'harradin', u'welcom', u'detain', u'children', u'releas'] [u'hayn', u'sack'] [u'hewitt', u'molik', u'york'] [u'holland', u'medhurst', u'tribun'] [u'human', u'right', u'group', u'claim', u'tri', u'block'] [u'huon', u'resid', u'urg', u'boil', u'water', u'flood'] [u'hussain', u'doubt', u'england', u'fifth', u'test'] [u'hydrotherapi', u'pool', u'consult', u'result', u'loom'] [u'immigr', u'dept', u'prepar', u'deport', u'iranian'] [u'india', u'blame', u'religi', u'tension', u'mumbai', u'blast'] [u'indian', u'govt', u'claim', u'islam', u'group'] [u'inexperienc', u'wale', u'seek', u'moral', u'boost'] [u'insecur', u'surround', u'water', u'secur'] [u'intern', u'campaign', u'commemor', u'eureka'] [u'iranian', u'interrog', u'charg', u'canadian'] [u'israel', u'hand', u'bodi', u'hezbollah', u'fighter'] [u'isra', u'impos', u'jenin', u'curfew'] [u'iverson', u'lead', u'victori', u'canada'] [u'ivori', u'coast', u'rebel', u'kill', u'french', u'soldier'] [u'jellyfish', u'infest', u'close', u'darwin', u'lake', u'alexand'] [u'jull', u'upbeat', u'boundari', u'chang', u'plan'] [u'junior', u'moscow', u'medal', u'tabl'] [u'kalli', u'seal', u'south', u'africa', u'seri', u'lead'] [u'kenyan', u'steeplechas', u'deni', u'shaheen'] [u'labor', u'demand', u'detail', u'abbott', u'trust', u'fund'] [u'labor', u'inject', u'fund', u'youth', u'centr'] [u'lara', u'top', u'test', u'rat'] [u'troop', u'return', u'bougainvill'] [u'lawyer', u'point', u'guard', u'psycholog', u'profil'] [u'legal', u'servic', u'question', u'charg', u'year'] [u'librari', u'defend', u'chopper'] [u'lib', u'look', u'secur', u'edmond', u'seat'] [u'lib', u'want', u'candid', u'grind', u'earli'] [u'lingiari', u'call', u'tuckey', u'sack'] [u'lobbi', u'group', u'expect', u'littl', u'chang', u'edmond'] [u'magpi', u'holland', u'suspend', u'start', u'final'] [u'fin', u'charg'] [u'sentenc', u'steal', u'properti'] [u'mayor', u'death', u'spark', u'elect'] [u'boost'] [u'miss', u'woman', u'safe'] [u'mitchel', u'consist', u'select'] [u'molik', u'clijster', u'rubin', u'falter'] [u'molik', u'open', u'kick'] [u'mortgag', u'lender', u'launch', u'borrow', u'tribun'] [u'think', u'polli', u'rise', u'fair'] [u'want', u'stop', u'alcohol', u'relat', u'crime'] [u'mumbai', u'blast', u'kill'] [u'chairman', u'highlight', u'port', u'import'] [u'restrict', u'plan', u'spanish', u'mackerel'] [u'plan', u'energi'] [u'guarante', u'warn', u'say', u'heali'] [u'warn', u'club', u'brawl', u'player'] [u'busi', u'confid', u'surg'] [u'resid', u'count', u'cost', u'storm'] [u'korean', u'arriv', u'beij', u'nuclear', u'talk'] [u'ocallaghan', u'win', u'footi', u'honour'] [u'olsson', u'champion', u'edward', u'retir'] [u'pakistan', u'look', u'home', u'seri'] [u'papua', u'clash', u'claim', u'life', u'indonesia', u'polic'] [u'patterson', u'say', u'medicar', u'packag', u'misunderstand'] [u'pigeon', u'enthusiast', u'arrest', u'year', u'wife'] [u'deni', u'role', u'hanson', u'slush', u'fund'] [u'polic', u'hunt', u'home', u'invad'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'case', u'remand', u'driver', u'custodi'] [u'polli', u'rise', u'spark', u'word'] [u'poll', u'close', u'histor', u'rwanda', u'vote'] [u'prepar', u'work', u'begin', u'miner', u'project'] [u'prison', u'guard', u'expect', u'strike'] [u'probe', u'clear', u'septic', u'tank', u'concern'] [u'public', u'health', u'plan'] [u'publish', u'pictur', u'indigen', u'dictionari'] [u'qanta', u'review', u'properti', u'asset'] [u'govt', u'back', u'airport', u'shop', u'complex'] [u'hold', u'ransom', u'feder', u'health', u'deal'] [u'qraa', u'highlight', u'drought', u'woe'] [u'queensland', u'archer', u'take', u'olymp'] [u'rail', u'branch', u'line', u'fear', u'spark', u'truck', u'concern'] [u'rain', u'boost', u'grain', u'grower', u'harvest', u'hop'] [u'refuge', u'advoc', u'write', u'tampa', u'anniversari'] [u'relax', u'approach', u'bring', u'reward', u'collin'] [u'releas', u'child', u'detaine', u'reunit', u'mother'] [u'research', u'link', u'gene', u'dyslexia'] [u'resid', u'paintbal', u'plan'] [u'resign', u'forc', u'wiluna', u'council', u'collaps'] [u'rise', u'lake', u'boost', u'tourism', u'confid'] [u'river', u'flow', u'recommend', u'spark', u'dairi', u'fear'] [u'roeder', u'west', u'target', u'promot', u'say', u'jam'] [u'rumsfeld', u'deni', u'troop', u'need', u'iraq'] [u'rwandan', u'presid', u'claim', u'poll'] [u'rwanda', u'opposit', u'reject', u'kagam', u'landslid'] [u'sampra', u'quit', u'peac', u'heart'] [u'second', u'firm', u'consid', u'diesel', u'fuel', u'product'] [u'clean', u'storm', u'debri'] [u'crew', u'work', u'time', u'wild', u'weather', u'weekend'] [u'flood', u'call', u'help'] [u'shark', u'face', u'judiciari'] [u'shiit', u'protest', u'najaf', u'cleric', u'attack'] [u'shire', u'defend', u'merger'] [u'snell', u'lead', u'opal', u'yugoslav'] [u'snowi', u'hydro', u'urg', u'water', u'cost', u'offer'] [u'crime', u'rat', u'north', u'west'] [u'crime', u'declin', u'bendigo'] [u'south', u'africa', u'flanker', u'burger'] [u'southcorp', u'pull', u'wast', u'water', u'treatment', u'plan'] [u'spend', u'money', u'univers', u'green'] [u'state', u'territori', u'unit', u'health', u'decis', u'martin'] [u'sunderland', u'join', u'palac'] [u'survey', u'highlight', u'rural', u'confid', u'slump'] [u'suspend', u'justic', u'vow', u'command'] [u'swimmer', u'burn', u'ban', u'dope', u'test'] [u'talli', u'back', u'hall', u'decis'] [u'tamworth', u'council', u'outlin', u'merger', u'plan'] [u'tasmania', u'prepar', u'farewel', u'hero'] [u'thousand', u'expect', u'flock', u'field', u'day'] [u'thousand', u'mourn', u'slay', u'hama', u'milit'] [u'thumb', u'stromlo', u'water', u'treatment', u'plant'] [u'tourism', u'offer', u'naracoort', u'boost'] [u'triumphant', u'renault', u'final', u'flourish'] [u'french', u'soldier', u'kill', u'ivori', u'coast'] [u'year', u'tampa', u'crisi'] [u'tyson', u'sympathi', u'charg', u'bryant'] [u'abandon', u'defenc', u'postur', u'butler'] [u'encourag', u'share', u'power', u'iraq'] [u'launch', u'offens', u'taliban', u'stronghold'] [u'troop', u'captur', u'senior', u'fedayeen', u'fighter'] [u'troop', u'exercis'] [u'vaughan', u'lash', u'scar', u'england'] [u'farmer', u'push', u'restrict', u'fertilis'] [u'wagga', u'alburi', u'declar', u'natur', u'disast', u'area'] [u'wall', u'street', u'light', u'trade'] [u'premier', u'meet', u'aborigin', u'leader', u'boy'] [u'waterfal', u'probe', u'put', u'state', u'rail', u'notic'] [u'waugh', u'claim', u'welsh', u'titl'] [u'whatmor', u'set', u'bangladesh', u'goal', u'second', u'test'] [u'sign', u'deal', u'export', u'nickel', u'china'] [u'worker', u'uncov', u'human', u'bone'] [u'kill', u'religi', u'festiv', u'stamped'] [u'abbott', u'claim', u'hanson', u'slush', u'fund', u'intent'] [u'abbott', u'refus', u'fund', u'contributor'] [u'abbott', u'take', u'wrong', u'path', u'hanson', u'crean'] [u'mazen', u'condemn', u'missil', u'attack'] [u'sign', u'feder', u'health', u'deal'] [u'agassi', u'breed', u'ponder', u'farewel'] [u'agassi', u'arthur', u'chang', u'say', u'goodby'] [u'age', u'care', u'wrangl', u'continu'] [u'airport', u'oper', u'record', u'profit'] [u'alcohol', u'abus', u'stori'] [u'share', u'spark', u'takeov', u'rumour'] [u'arafat', u'accus', u'interfer'] [u'arsenal', u'bronckhorst', u'loan', u'barcelona'] [u'arsenal', u'wenger', u'readi', u'gambl', u'wiltord'] [u'report', u'small', u'drop', u'profit'] [u'dead', u'china', u'firework', u'explos'] [u'aussi', u'women', u'world'] [u'aust', u'firefight', u'send', u'battl', u'fire', u'canada'] [u'author', u'close', u'renegad', u'fish', u'vessel'] [u'avellino', u'trial', u'continu', u'friday'] [u'beckham', u'aim', u'dream', u'bernabeu', u'debut'] [u'bendigo', u'bomber', u'want', u'long', u'essendon', u'partnership'] [u'british', u'chief', u'defend', u'iraq', u'dossier'] [u'brook', u'bring', u'win', u'touch', u'west'] [u'build', u'approv', u'rise', u'townsvill'] [u'build', u'worker', u'stickler', u'crane', u'safeti'] [u'burk', u'hop', u'divis'] [u'bystand', u'kill', u'gaza', u'missil', u'strike'] [u'canada', u'look', u'inform', u'arrest'] [u'capriati', u'start', u'campaign', u'omin', u'mood'] [u'bomb', u'kill', u'region', u'russia', u'offici', u'polic'] [u'carr', u'hit', u'alcohol', u'advertis'] [u'charg', u'child', u'care', u'scrutini'] [u'chelsea', u'deportivo', u'eas', u'champion', u'leagu'] [u'clinic', u'announc', u'public', u'dental', u'servic'] [u'close', u'encount', u'mar', u'kind'] [u'comment', u'seek', u'basin', u'manag', u'plan'] [u'commiss', u'recommend', u'polic', u'charg'] [u'council', u'form', u'growth', u'plan'] [u'councillor', u'fail', u'overturn', u'hospit', u'revamp'] [u'council', u'unit', u'oppos', u'merger', u'plan'] [u'council', u'take', u'action', u'stop', u'weed', u'spread'] [u'court', u'reject', u'block', u'iranian', u'deport'] [u'court', u'rule', u'crane', u'deal', u'wont', u'affect', u'oper'] [u'cowboy', u'face', u'sheen', u'west', u'tiger'] [u'creditor', u'accept', u'deal', u'stave', u'liquid'] [u'crowd', u'pack', u'church', u'farewel', u'captain', u'blood'] [u'dokic', u'consid', u'return', u'melbourn'] [u'dravid', u'keen', u'stay', u'scotland'] [u'draw', u'rule', u'mogg', u'return'] [u'driver', u'urg', u'closer', u'safeti', u'scrutini'] [u'drought', u'take', u'toll', u'murray'] [u'drug', u'take', u'polic', u'urg', u'come', u'forward'] [u'drummond', u'withdraw', u'championship'] [u'east', u'timor', u'want', u'sept', u'border', u'talk'] [u'guerrouj', u'look', u'fourth', u'titl'] [u'fan', u'farewel', u'captain', u'blood'] [u'farm', u'famili', u'share', u'drought', u'appeal', u'fund'] [u'fast', u'track', u'otway', u'project'] [u'hunt', u'virus', u'creator'] [u'fiji', u'seek', u'help', u'coup', u'investig'] [u'firefight', u'join', u'effort'] [u'fischer', u'deni', u'role', u'anti', u'hanson', u'campaign'] [u'flanagan', u'deni', u'amateur', u'breach'] [u'vaughan', u'time', u'plead', u'coach', u'fletcher'] [u'goalkeep', u'marco', u'recal', u'brazil', u'squad'] [u'governor', u'northern', u'farewel', u'tour'] [u'govt', u'deport', u'action', u'dishonest', u'green'] [u'govt', u'hit', u'power', u'line', u'delay'] [u'govt', u'encourag', u'worker', u'retir'] [u'govt', u'rule', u'break', u'rural', u'area'] [u'govt', u'say', u'protect', u'visa', u'applic', u'number'] [u'hanson', u'nomin', u'australian', u'year'] [u'health', u'servic', u'chief', u'ask', u'explain'] [u'heatwav', u'kill', u'mari', u'antoinett', u'shadi'] [u'high', u'sea', u'chase', u'near'] [u'hoon', u'stand', u'kelli', u'inquiri'] [u'hope', u'land', u'claim', u'process', u'continu'] [u'hospit', u'urg', u'consid', u'midwif', u'train'] [u'indian', u'secur', u'pledg', u'kiwi', u'mumbai', u'blast'] [u'indigen', u'spark', u'record', u'sale'] [u'indigen', u'communiti', u'urg', u'tackl', u'alcohol'] [u'injur', u'smith', u'logan', u'miss', u'scotland', u'warm', u'game'] [u'input', u'seek', u'landcar', u'review'] [u'inquiri', u'tell', u'medic', u'student', u'oppos', u'bond', u'scheme'] [u'internet', u'scheme', u'aim', u'unit', u'communiti'] [u'iraq', u'prove', u'danger', u'major', u'combat'] [u'irish', u'chang', u'team', u'itali'] [u'israel', u'captur', u'hospitalis', u'palestinian'] [u'italian', u'coupl', u'celebr', u'year', u'marriag'] [u'bigger', u'think'] [u'report', u'say', u'downer'] [u'johnson', u'hop', u'better', u'perform'] [u'keke', u'follow', u'attack', u'solomon', u'villag'] [u'kelli', u'back', u'iraq', u'polici', u'hoon', u'tell', u'inquiri'] [u'keyhol', u'weld', u'save', u'industri', u'buck'] [u'knight', u'tahu', u'odavi', u'return', u'georg', u'clash'] [u'liberian', u'refuge', u'ship', u'adrift', u'high', u'sea'] [u'magpi', u'holland', u'suspend', u'start', u'final'] [u'face', u'court', u'drug', u'charg'] [u'markov', u'scrap', u'pari'] [u'marsh', u'train', u'franc'] [u'martin', u'luther', u'king', u'archiv', u'sale'] [u'martyn', u'kretiuk', u'retir'] [u'mayn', u'group', u'million'] [u'medic', u'student', u'oppos', u'govt', u'rural', u'doctor', u'plan'] [u'meet', u'focus', u'mine', u'suppli', u'contract'] [u'militari', u'exercis', u'showcas', u'defenc', u'capabl'] [u'export', u'benefit', u'expect', u'grow'] [u'industri', u'drug', u'hear', u'tip', u'wider'] [u'minist', u'speak', u'hospit', u'report', u'delay'] [u'minist', u'urg', u'help', u'resolv', u'doctor', u'disput'] [u'fund', u'seek', u'farmbiz'] [u'motorcycl', u'trip', u'move', u'south'] [u'question', u'port', u'author', u'appoint'] [u'clean', u'give', u'thumb', u'effluent'] [u'mysteri', u'montgomeri', u'pari', u'pull'] [u'nat', u'leader', u'highlight', u'rural', u'alcohol', u'woe'] [u'go', u'best', u'final'] [u'nepal', u'rebel', u'truce', u'abandon', u'talk'] [u'hour', u'help', u'line', u'support', u'carer'] [u'mayor', u'elect', u'hast'] [u'research', u'centr', u'help', u'basin', u'conserv'] [u'news', u'forc', u'reinstat', u'worker'] [u'korea', u'stand', u'firm', u'nation', u'talk'] [u'mistak', u'warn', u'ferrari', u'boss', u'montezemolo'] [u'solut', u'expect', u'north', u'korea', u'talk'] [u'time', u'prepar', u'samoa', u'world', u'squad'] [u'nrma', u'call', u'lower', u'blood', u'alcohol', u'limit'] [u'govt', u'wait', u'final', u'waterfal', u'report'] [u'nation', u'distanc', u'prison', u'protest'] [u'opal', u'hungari'] [u'call', u'motor', u'sport', u'facil'] [u'opposit', u'call', u'inquiri', u'soldier'] [u'pakistan', u'urg', u'india', u'politicis', u'mumbai'] [u'patterson', u'tight', u'lip', u'health', u'deal', u'talk'] [u'perth', u'airport', u'record', u'profit'] [u'polic', u'boost', u'effort', u'assault', u'case'] [u'polic', u'hold', u'fear', u'miss'] [u'polic', u'look', u'lead', u'murder', u'case'] [u'polic', u'reflect', u'fatal', u'crash', u'caus'] [u'prison', u'guard', u'warn', u'paedophil', u'kill'] [u'publish', u'ban', u'algerian', u'newspap', u'court'] [u'push', u'region', u'develop', u'home', u'ownership'] [u'opposit', u'question', u'qgap', u'alloc'] [u'polic', u'claim', u'super', u'scam', u'bust'] [u'question', u'rais', u'delay', u'death', u'rule'] [u'radio', u'recept', u'black', u'spot', u'fill'] [u'rain', u'hinder', u'water', u'qualiti', u'plan'] [u'rain', u'rais', u'farmer', u'hop'] [u'ralli', u'prepar', u'motor', u'balranald'] [u'rescu', u'chopper', u'crash', u'hong', u'kong'] [u'resign', u'spark', u'develop', u'board', u'refocus'] [u'roddick', u'reveng', u'henman', u'beat'] [u'ruddock', u'defend', u'iranian', u'girl', u'deport'] [u'rural', u'ambul', u'prefer', u'debt', u'negoti'] [u'ruthless', u'agassi', u'arthur', u'crash', u'chang'] [u'govt', u'push', u'ahead', u'power', u'interconnector', u'plan'] [u'saudi', u'reject', u'australian', u'sheep', u'shipment'] [u'scientist', u'anthrax', u'probe', u'sue', u'govt'] [u'scientist', u'investig', u'diseas', u'protect'] [u'second', u'govt', u'minist', u'quit', u'polit'] [u'team', u'clean', u'storm', u'damag'] [u'shaheen', u'claim', u'steeplechas', u'adopt', u'son', u'revel'] [u'shire', u'respond', u'defenc', u'train', u'request'] [u'shuttl', u'report', u'critic', u'nasa', u'cultur'] [u'small', u'oestrogen', u'dose', u'strengthen', u'bone', u'studi'] [u'smorgon', u'steel', u'announc', u'leap', u'profit'] [u'spaniard', u'dress', u'tomatina'] [u'hand', u'asset', u'rspca'] [u'sport', u'offic', u'join', u'strike'] [u'stock', u'rise', u'holiday', u'mood', u'pervad'] [u'student', u'march', u'govt', u'educ', u'chang'] [u'student', u'prepar', u'long', u'campaign'] [u'student', u'protest', u'higher', u'educ', u'plan'] [u'tasmania', u'urg', u'review', u'sterilis', u'polici'] [u'teddi', u'trick', u'send', u'portsmouth'] [u'teen', u'drinker', u'expos', u'violenc', u'survey'] [u'teen', u'murder', u'charg', u'custodi'] [u'televis', u'threaten', u'seri', u'start'] [u'tenni', u'classic', u'ahead'] [u'govt', u'minist'] [u'thorpedo', u'win', u'court', u'battl'] [u'tougher', u'water', u'restrict', u'loom'] [u'turban', u'zealand', u'seri'] [u'tyson', u'eye', u'fight', u'japanes', u'brawler'] [u'aim', u'beef', u'secur'] [u'union', u'forecast', u'industri', u'action', u'qanta', u'job'] [u'unit', u'state', u'edg', u'argentina'] [u'vote', u'shield', u'worker'] [u'court', u'sentenc', u'colombian', u'drug', u'lord'] [u'pastor', u'charg', u'death', u'autist'] [u'soldier', u'kill', u'iraq', u'attack'] [u'troop', u'raid', u'suspect', u'iraqi', u'subvers'] [u'vaughan', u'outburst', u'leav', u'england', u'mountain'] [u'govt', u'say', u'fast', u'train', u'track'] [u'govt', u'cater'] [u'visitor', u'begin', u'arriv', u'birdsvill', u'race'] [u'vogel', u'eye', u'train', u'return', u'horror'] [u'church', u'member', u'offer', u'sanctuari', u'asylum'] [u'woman', u'injur', u'crash', u'walk', u'help'] [u'woodward', u'call', u'reserv', u'face', u'franc'] [u'workcov', u'offer', u'law', u'assur'] [u'world', u'champion', u'young', u'test', u'postiv', u'steroid'] [u'youni', u'khan', u'make', u'avail', u'test'] [u'farewel', u'slay', u'polic', u'offic'] [u'abbott', u'understand', u'hanson', u'anger'] [u'fund', u'live', u'issu', u'alston'] [u'acoss', u'disappoint', u'health', u'backdown'] [u'defend', u'decis', u'sign', u'health', u'deal'] [u'report', u'call', u'syring', u'vend', u'machin'] [u'afghan', u'asylum', u'seeker', u'tell', u'safe', u'home'] [u'record', u'year', u'profit'] [u'secret', u'support', u'abbott', u'campaign', u'howard', u'say'] [u'push', u'aussi', u'market'] [u'arsenal', u'goal', u'differ', u'unit'] [u'aussi', u'prepar', u'shine'] [u'aust', u'collect', u'sell', u'million'] [u'australia', u'india', u'sign', u'counter', u'terror', u'agreement'] [u'aust', u'sign', u'bilater', u'counter', u'terror', u'agreement'] [u'babi', u'manslaught', u'case', u'near'] [u'beatti', u'threaten', u'walk', u'coag', u'health'] [u'beckham', u'score', u'real', u'madrid', u'home', u'debut'] [u'beckham', u'hero', u'real', u'super'] [u'blair', u'say', u'claim', u'cost'] [u'blair', u'face', u'hard', u'question', u'inquiri'] [u'brack', u'order', u'probe', u'death', u'sibl'] [u'bushwalk', u'end', u'tragedi'] [u'buyback', u'announc', u'push', u'telstra', u'share'] [u'cabooltur', u'gather', u'mourn', u'dead', u'offic'] [u'break', u'hill', u'reservoir', u'desilt'] [u'charg', u'grain', u'board'] [u'region', u'share', u'poki', u'revenu'] [u'canada', u'beat', u'brazil', u'close', u'semi', u'final'] [u'casey', u'name', u'best', u'fairest'] [u'cattl', u'price', u'rise', u'longreach'] [u'celtic', u'ranger', u'champion', u'leagu', u'partizan'] [u'civilian', u'kill', u'soldier', u'wound', u'north'] [u'clijster', u'drop', u'final', u'award'] [u'compani', u'fin', u'factori', u'death'] [u'concern', u'grow', u'saudi', u'live', u'sheep', u'cargo'] [u'confer', u'tell', u'econom', u'success', u'reliant'] [u'corrupt', u'inquiri', u'report', u'grain', u'board'] [u'council', u'case', u'merger'] [u'council', u'boost', u'museum', u'support'] [u'council', u'want', u'paint', u'town'] [u'counti', u'chief', u'blast', u'order', u'vaughan'] [u'croc', u'head', u'europ'] [u'croc', u'head', u'europ', u'season', u'work'] [u'cruis', u'sing', u'elvi', u'duet', u'japanes'] [u'cupido', u'doubt', u'collingwood', u'clash'] [u'current', u'account', u'deficit', u'balloon', u'record', u'level'] [u'darwin', u'court', u'okay', u'extradit', u'alleg', u'peopl'] [u'davenport', u'march'] [u'vinci', u'artwork', u'steal', u'scottish', u'castl'] [u'debat', u'reopen', u'super', u'council', u'plan'] [u'diver', u'search', u'dam', u'miss', u'woman'] [u'doubt', u'cast', u'futur', u'rural', u'financi'] [u'doubt', u'case', u'parliamentari', u'speaker'] [u'downer', u'counterattack', u'labor', u'defend', u'abbott'] [u'drought', u'threaten', u'export', u'quota'] [u'elector', u'commiss', u'watch', u'abbott', u'debat'] [u'empir', u'rubber', u'disput', u'end'] [u'energi', u'failur', u'hit', u'europ', u'mar', u'mission'] [u'europ', u'heatwav', u'death', u'toll', u'exceed'] [u'fall', u'demand', u'cut', u'carpentri', u'cours'] [u'fear', u'poki', u'chang', u'region', u'harder'] [u'govt', u'blame', u'cancer', u'treatment', u'delay'] [u'govt', u'mine', u'approv', u'process'] [u'govt', u'urg', u'commit', u'highway', u'fund'] [u'firework', u'industri', u'face', u'restrict'] [u'fittler', u'give', u'fit', u'deadlin'] [u'flood', u'threaten', u'tasmania', u'poppi'] [u'drug', u'squad', u'refus', u'bail'] [u'star', u'gold', u'coast'] [u'join', u'region', u'develop', u'board'] [u'worldcom', u'boss', u'charg', u'fraud'] [u'formula', u'heat'] [u'friend', u'famili', u'share', u'hope', u'memori'] [u'futur', u'look', u'bleak', u'shepherd'] [u'guyra', u'council', u'say', u'merger'] [u'hantuchova', u'let', u'tenni', u'talk'] [u'health', u'insur', u'group', u'prais', u'rebat'] [u'henson', u'shin', u'wale', u'outclass', u'romania'] [u'hill', u'confid', u'armi', u'capabl'] [u'hope', u'home', u'power', u'tonight'] [u'hope', u'talk', u'resolv', u'sheep', u'export', u'impass'] [u'india', u'bridg', u'collaps', u'kill'] [u'indonesian', u'polic', u'arrest', u'suspect', u'hotel'] [u'institut', u'consid', u'indigen', u'plan'] [u'islam', u'court', u'set', u'date', u'verdict', u'nigerian'] [u'japanes', u'get', u'death', u'sentenc', u'school'] [u'japan', u'rais', u'abduct', u'issu', u'north', u'korea', u'talk'] [u'johnson', u'hewitt', u'fail', u'pari'] [u'juri', u'consid', u'verdict', u'mother', u'slay'] [u'kemp', u'tightlip', u'nation', u'museum'] [u'labor', u'say', u'truss', u'push', u'asid', u'sugar', u'talk'] [u'land', u'clear', u'hold', u'veget', u'plan'] [u'lawyer', u'seek', u'retrial', u'trio', u'jail', u'rape'] [u'livestock', u'export', u'suspend', u'saudi', u'shipment'] [u'magistr', u'face', u'restrict', u'drink', u'drive'] [u'magistr', u'take', u'break', u'polic', u'prepar', u'file'] [u'acus', u'spear', u'stab', u'get', u'bail'] [u'get', u'death', u'penalti', u'kill', u'japanes'] [u'jail', u'bash', u'partner'] [u'order', u'stand', u'trial', u'famili', u'murder'] [u'face', u'court', u'murder', u'charg'] [u'mar', u'provid', u'close', u'encount'] [u'matilda', u'ill', u'ahead', u'china', u'clash'] [u'minardi', u'test', u'year', u'arrow'] [u'minist', u'renew', u'coast'] [u'fund', u'seek', u'doctor', u'room'] [u'mother', u'jail', u'seven', u'year', u'child', u'tortur'] [u'continu', u'benefit', u'fight'] [u'hesit', u'takeov'] [u'scam', u'email'] [u'suspect', u'share', u'raid'] [u'nasa', u'improv', u'resum', u'shuttl'] [u'nat', u'rais', u'higher', u'educ', u'fear'] [u'need', u'highlight', u'rural', u'counsel', u'servic'] [u'negoti', u'finalis', u'environ', u'centr'] [u'korea', u'talk', u'enter', u'second'] [u'bushfir', u'inquiri', u'adjourn'] [u'opposit', u'urg', u'govt', u'sign', u'health', u'deal'] [u'oldfield', u'modifi', u'terror', u'websit'] [u'dead', u'highway', u'crash'] [u'opal', u'greec'] [u'oshea', u'goal', u'keep', u'unit', u'track'] [u'patient', u'suffer', u'health', u'bureaucraci'] [u'profit'] [u'peachey', u'guilti', u'verdict', u'outrag', u'shark'] [u'petit', u'oppos', u'bermagui', u'develop'] [u'petit', u'seek', u'fish'] [u'tour', u'return', u'boston'] [u'philippoussi', u'surf', u'success'] [u'pichot', u'return', u'argentina', u'rout'] [u'pilbara', u'worker', u'pawn', u'porn', u'email', u'flash'] [u'plain', u'chocol', u'good', u'heart'] [u'plan', u'afoot', u'boulia', u'sport', u'centr'] [u'plan', u'afoot', u'indigen', u'univers'] [u'fight', u'abus', u'aborigin'] [u'polic', u'charg', u'sydney', u'heroin', u'haul'] [u'polic', u'bodi', u'million', u'fraud'] [u'polic', u'probe', u'castlemain', u'stab'] [u'polic', u'probe', u'death', u'sibl'] [u'port', u'work', u'dredg', u'green', u'concern'] [u'premier', u'demand', u'health', u'coag', u'agenda'] [u'promina', u'announc', u'profit'] [u'protest', u'seek', u'obstetrician', u'reinstat'] [u'push', u'indigen', u'lifesav', u'monument'] [u'unsway', u'backdown', u'health', u'deal'] [u'quinn', u'want', u'plan', u'urban', u'growth'] [u'race', u'victoria', u'fenc', u'sit', u'safeti'] [u'report', u'push', u'chang', u'request', u'process'] [u'report', u'reject', u'enterpris', u'zone'] [u'delay', u'plan', u'servic', u'boost'] [u'ridgeway', u'speak', u'welfar', u'issu'] [u'tinto', u'warn', u'worker', u'porno', u'email'] [u'rivroc', u'put', u'case', u'execut', u'offic'] [u'rugbi', u'boss', u'plead', u'matilda', u'rethink'] [u'ryan', u'issu', u'dutson', u'down', u'challeng'] [u'samoa', u'coach', u'voic', u'fear', u'world'] [u'windfarm', u'get', u'council', u'approv'] [u'score', u'kill', u'hindu', u'festiv', u'stamped'] [u'scud', u'advanc', u'draper', u'bow'] [u'scud', u'molik', u'advanc', u'draper', u'bow'] [u'scud', u'molik', u'advanc', u'york'] [u'sect', u'leader', u'trial', u'mutil', u'murder'] [u'seven', u'kill', u'chicago', u'workplac', u'shoot'] [u'seve', u'resist', u'player', u'pressur', u'tour'] [u'sharehold', u'group', u'reject', u'wilder', u'timber', u'plan'] [u'shark', u'challeng', u'peachey', u'suspens'] [u'spanish', u'revel', u'tomato', u'free'] [u'state', u'rail', u'accept', u'reason', u'waterfal', u'crash'] [u'state', u'accus', u'canberra', u'blackmail', u'health'] [u'stock', u'market', u'eye', u'profit', u'result'] [u'strand', u'sheep', u'ship', u'allow', u'load', u'extra', u'fee'] [u'strong', u'start', u'bangladesh', u'peshawar', u'test'] [u'studi', u'show', u'be', u'dad'] [u'success', u'indigen', u'sentenc', u'scheme'] [u'surgeon', u'rule', u'rivkin', u'detent'] [u'survey', u'reveal', u'expect', u'hospit'] [u'suspend', u'surgeon', u'prepar', u'argu', u'case'] [u'swansea', u'meet', u'focus', u'medicar', u'woe'] [u'opposit', u'urg', u'health', u'deal'] [u'tawak', u'sign', u'brumbi'] [u'teacher', u'strike', u'offer'] [u'telstra', u'profit', u'asian', u'cabl', u'ventur'] [u'kashmir', u'battl'] [u'speed', u'bust', u'adelaid', u'airport'] [u'thwait', u'throw', u'cold', u'water', u'govt', u'murray', u'plan'] [u'time', u'run', u'case', u'drought'] [u'toothfish', u'group', u'prais', u'viarsa', u'captur'] [u'field', u'assembl', u'tour', u'sunraysia'] [u'unhcr', u'grant', u'access', u'asylum', u'seeker', u'malaysia'] [u'inspector', u'type', u'nuclear', u'materi'] [u'unit', u'state', u'beat', u'mexico', u'argentina', u'collaps'] [u'attack', u'arabiya', u'threaten', u'broadcast'] [u'author', u'remov', u'command', u'monument'] [u'ignor', u'arafat', u'ceasefir'] [u'lash', u'arabiya', u'broadcast'] [u'iraq', u'armitag'] [u'rule', u'bilater', u'north', u'korea', u'talk'] [u'seal', u'drug', u'deal', u'develop', u'nation'] [u'stag', u'mar', u'parti', u'close', u'encount'] [u'compani', u'win', u'tesco', u'contract'] [u'victoria', u'seek', u'health', u'sweeten'] [u'businessman', u'help', u'bankrol', u'abbott', u'fund'] [u'offic', u'help', u'fight', u'blaze'] [u'word', u'take', u'control', u'airport', u'debat'] [u'water', u'manag', u'reform', u'flow', u'paper'] [u'hold', u'better', u'health', u'deal'] [u'websit', u'help', u'youth', u'deal', u'issu'] [u'westfield', u'profit'] [u'white', u'gun', u'sprint', u'doubl'] [u'team', u'leav', u'phoenix', u'remain', u'favourit'] [u'wood', u'target', u'final', u'tour', u'event'] [u'work', u'begin', u'pipelin', u'compressor', u'station'] [u'worker', u'vote', u'bridgeston', u'deal'] [u'zero', u'toler', u'moot', u'hunter', u'driver'] [u'kill', u'aceh', u'violenc'] [u'children', u'indian', u'bridg', u'crumbl'] [u'kill', u'accid', u'china'] [u'academ', u'call', u'plan', u'bridg', u'racial', u'divid'] [u'academ', u'see', u'posit', u'free', u'trade', u'agreement'] [u'afghan', u'soldier', u'kill', u'suspect', u'taliban', u'attack'] [u'african', u'trade', u'talk', u'open', u'ahead', u'meet'] [u'agassi', u'book', u'showdown', u'kafelnikov'] [u'age', u'care', u'nurs', u'accept', u'offer'] [u'ord', u'end', u'week', u'high', u'note'] [u'urg', u'sign', u'health', u'fund', u'deal'] [u'confirm', u'offer'] [u'make', u'solid', u'gain', u'share', u'drop'] [u'anderson', u'ecstat', u'river', u'rescu', u'plan'] [u'atsic', u'target', u'deliveri', u'indigen', u'health'] [u'australian', u'tour', u'restor', u'bangladesh', u'confid'] [u'australia', u'outlin', u'approach', u'tie'] [u'buy', u'wesfarm', u'landmark'] [u'barca', u'outdo', u'real'] [u'bayern', u'relish', u'champion', u'leagu', u'reunion', u'elber'] [u'beat', u'carlton', u'weve', u'succeed', u'laidley'] [u'beck', u'attract', u'barcelona'] [u'bennett', u'back', u'talli', u'man', u'game', u'comment'] [u'better', u'intellig', u'troop', u'need', u'iraq'] [u'bomber', u'magpi', u'pump', u'pressur', u'match'] [u'charg', u'fatal', u'stab'] [u'bronco', u'singl', u'say', u'bennett'] [u'collis', u'kill', u'injur', u'russia'] [u'freez', u'problem', u'dog', u'council'] [u'irrig', u'restrict', u'updat'] [u'call', u'hydrotherapi', u'pool', u'busi', u'plan'] [u'canada', u'put', u'heat', u'iran', u'journalist', u'death'] [u'canberra', u'pay', u'tribut', u'bomb', u'victim'] [u'champion', u'leagu', u'flop', u'leav', u'newcastl', u'lowest'] [u'chelsea', u'real', u'madrid', u'haggl', u'makelel'] [u'chelsea', u'clinch', u'makelel', u'deal'] [u'chief', u'minist', u'defend', u'sign', u'feder'] [u'children', u'hospit', u'sack', u'controversi', u'surgeon'] [u'church', u'break', u'earn', u'jail', u'sentenc'] [u'leadership', u'spotlight'] [u'club', u'har', u'brighter', u'futur'] [u'coag', u'provid', u'forum', u'water', u'issu'] [u'council', u'consid', u'flood', u'prone', u'land', u'woe'] [u'council', u'encourag', u'migrant'] [u'council', u'hop', u'surat', u'grain', u'facil'] [u'council', u'say', u'backpack', u'plan'] [u'council', u'seek', u'wast', u'water', u'support'] [u'council', u'poki', u'placement'] [u'court', u'hear', u'sentenc', u'submiss', u'folbigg', u'case'] [u'cowboy', u'upbeat'] [u'crowd', u'muster', u'countri', u'music', u'shindig'] [u'crow', u'hart', u'bassett'] [u'dairi', u'deregul', u'see', u'farmer', u'quit'] [u'darwin', u'get', u'quarantin', u'inspect', u'facil'] [u'democrat', u'gather', u'region', u'forum'] [u'diplomat', u'erupt', u'renegad', u'trawler'] [u'doubt', u'cast', u'time', u'highway', u'fund', u'talk'] [u'dragon', u'lose', u'gasnier'] [u'draw', u'set', u'ranger', u'battl'] [u'drought', u'felt', u'time', u'towong', u'shire'] [u'duck', u'shoot', u'oppon', u'hope', u'perman'] [u'falun', u'gong', u'case'] [u'farmer', u'group', u'back', u'fuel'] [u'farmer', u'want', u'long', u'term', u'water', u'protect'] [u'fault', u'discov', u'luca', u'height', u'reactor'] [u'fear', u'drought', u'tighten', u'grip'] [u'ferrero', u'struggl', u'round'] [u'fiji', u'offer', u'labour', u'parti', u'deal'] [u'strike', u'cancel'] [u'flight', u'centr', u'profit', u'climb'] [u'freeman', u'prais', u'pittman'] [u'freer', u'enter', u'voluntari', u'administr'] [u'french', u'offici', u'confirm', u'august', u'heatwav', u'kill'] [u'gallop', u'signal', u'reluct', u'approv', u'health'] [u'govern', u'meet', u'water', u'share'] [u'govern', u'resolv', u'grant', u'impass'] [u'govt', u'urg', u'creat', u'children', u'commission'] [u'grazier', u'consid', u'livestock', u'suspens', u'trade'] [u'group', u'hop', u'fast', u'resolut', u'sheep', u'trade'] [u'growth', u'return', u'shine', u'economi'] [u'gunn', u'sharehold', u'okay', u'growth', u'log'] [u'hafey', u'name', u'victoria', u'father', u'year'] [u'hama', u'milit', u'kill', u'isra', u'rocket', u'attack'] [u'hanson', u'bail', u'hear', u'begin'] [u'hanson', u'face', u'wait', u'bail'] [u'hanson', u'lawyer', u'argu', u'bail'] [u'hart', u'miss', u'port', u'showdown', u'final'] [u'henin', u'step', u'open', u'convinc'] [u'herb', u'help', u'alzheim', u'patient'] [u'hewitt', u'fight', u'past', u'open'] [u'hewitt', u'pratt', u'round'] [u'high', u'hop', u'coast', u'turnout'] [u'holder', u'milan', u'play', u'ajax', u'champion', u'leagu'] [u'hope', u'memori', u'servic', u'boost', u'reconcili'] [u'hoteli', u'lament', u'doubl', u'deal', u'alcohol', u'sale'] [u'hundr', u'mourn', u'vieira', u'mello', u'geneva'] [u'indigen', u'health', u'group', u'help', u'dental', u'servic'] [u'intern', u'forum', u'plan', u'great', u'barrier', u'reef'] [u'isra', u'armi', u'order', u'prevent', u'fire', u'rocket'] [u'israel', u'kill', u'hama', u'fighter', u'missil', u'strike'] [u'jacquelin', u'take', u'control', u'munich'] [u'juri', u'deliber', u'babi', u'manslaught', u'trial'] [u'juventus', u'keeper', u'buffon', u'win', u'uefa', u'award'] [u'leader', u'consid', u'bushfir', u'inquiri'] [u'leader', u'walk', u'coag', u'meet'] [u'lion', u'lose', u'pike', u'mcrae', u'injuri'] [u'lloyd', u'offer', u'reward', u'steal', u'vinci'] [u'convict', u'ransom', u'plot'] [u'kill', u'drive', u'shoot'] [u'match', u'report'] [u'matilda', u'china'] [u'mayor', u'use', u'cast', u'vote', u'approv', u'bailhous'] [u'west', u'corp', u'distribut', u'share'] [u'millic', u'die', u'highway', u'crash'] [u'miner', u'highlight', u'underperform', u'mine'] [u'minist', u'back', u'push', u'instal', u'syring', u'vend'] [u'minist', u'glen', u'inn', u'severn', u'merger', u'plan'] [u'missi', u'elliott', u'video', u'grab', u'award'] [u'oppos', u'irrig', u'merger', u'consensus'] [u'specul', u'earli', u'elect'] [u'nation', u'park', u'work', u'underway'] [u'naturopath', u'guilti', u'babi', u'manslaught'] [u'fish'] [u'newcastl', u'bounc', u'champion', u'leagu'] [u'patrol', u'boat', u'build'] [u'relationship', u'law', u'hail', u'best', u'world'] [u'surpris', u'store', u'royal', u'adelaid'] [u'zealand', u'high', u'alert', u'sudden', u'death'] [u'korea', u'report', u'threaten', u'nuclear', u'test'] [u'korea', u'talk', u'acrimoni'] [u'room', u'univers', u'stirl', u'say'] [u'north', u'korea', u'talk', u'reach', u'stalem'] [u'reject', u'mackenroth'] [u'consid', u'alcohol', u'summit', u'propos'] [u'govt', u'consid', u'liquor', u'trade'] [u'nation', u'dissid', u'releas', u'damag', u'tap'] [u'founder', u'want', u'recal', u'report', u'releas'] [u'worker', u'rescu', u'plan'] [u'push', u'ahead', u'chang'] [u'pie', u'fight', u'past', u'bomber'] [u'pittman', u'deal', u'knockout', u'blow'] [u'pittman', u'grab', u'gold', u'pari'] [u'pittman', u'storm', u'world', u'hurdl', u'gold'] [u'plummer', u'appoint', u'nation', u'coach'] [u'unimpress', u'coag', u'walkout'] [u'polic', u'charg', u'woman', u'steal', u'good'] [u'polic', u'probe', u'fatal', u'stab'] [u'polic', u'seek', u'help', u'find', u'coin', u'collect'] [u'polic', u'seek', u'public', u'help', u'ryde', u'woman', u'death'] [u'polic', u'haigh', u'case', u'open'] [u'polit', u'violenc', u'claim', u'live', u'peru'] [u'port', u'train', u'time', u'crow', u'clash', u'loom'] [u'power', u'franc', u'pitch', u'england'] [u'power', u'return', u'london', u'blackout'] [u'prison', u'walk', u'unlock', u'door'] [u'privat', u'invest', u'seek', u'hospit', u'revamp'] [u'probe', u'launch', u'worker', u'death'] [u'processor', u'beef', u'export', u'quota'] [u'protest', u'support', u'gather', u'outsid', u'gunn', u'meet'] [u'public', u'offer', u'meningococc', u'assur'] [u'punk', u'catfish', u'speci', u'venezuela'] [u'radic', u'chang', u'suggest', u'improv', u'student'] [u'raider', u'rare', u'dog'] [u'raider', u'roll', u'bulldog', u'grab', u'spot'] [u'rann', u'reappoint', u'atkinson', u'attorney', u'general'] [u'rann', u'sack', u'senior', u'advis'] [u'rann', u'upset', u'charg', u'advis'] [u'rann', u'welcom', u'murray', u'river', u'plan'] [u'red', u'urg', u'sailor', u'mind'] [u'reef', u'centr', u'remain', u'focus', u'review'] [u'refuge', u'ralli', u'mark', u'tampa', u'anniversari'] [u'region', u'airport', u'repres', u'seek', u'better'] [u'region', u'develop', u'offic', u'move', u'lismor'] [u'resid', u'mobil', u'phone', u'coverag', u'woe'] [u'road', u'safeti', u'drive', u'youth', u'studi'] [u'sanchez', u'go', u'win'] [u'polic', u'fear', u'fraud', u'suspect'] [u'polic', u'probe', u'govern', u'hacker', u'attack'] [u'rider', u'take', u'lead', u'safari', u'bike', u'section'] [u'settlement', u'reach', u'patient', u'get', u'chop'] [u'sexual', u'assault', u'drop', u'year'] [u'sheep', u'trade', u'suspens', u'tip', u'small', u'impact'] [u'shoaib', u'skittl', u'bangladesh'] [u'sign', u'health', u'deal', u'talk', u'howard', u'tell', u'state'] [u'south', u'east', u'deleg', u'join', u'alcohol', u'summit'] [u'springbok', u'lock', u'expel', u'race', u'alleg'] [u'state', u'rail', u'accept', u'need', u'boost', u'safeti'] [u'state', u'sign', u'water', u'health', u'agreement'] [u'stop', u'play', u'polit', u'health', u'oppn', u'say'] [u'suncorp', u'metway', u'newcrest', u'post', u'profit'] [u'surgeon', u'seek', u'sack', u'overturn'] [u'swedish', u'polic', u'help', u'romeo', u'juliet'] [u'swift', u'grand', u'finaltbird', u'aliv'] [u'tasmanian', u'archbishop', u'accus', u'ignor', u'abus'] [u'bird', u'crush', u'kestrel', u'swift', u'secur', u'final', u'berth'] [u'audit', u'reveal', u'damn', u'evid'] [u'thorp', u'await', u'england', u'decis'] [u'tourism', u'jump', u'fail', u'strengthen', u'trade', u'perform'] [u'transcript', u'shed', u'light', u'septemb', u'tragedi'] [u'truck', u'crash', u'close', u'highway'] [u'urban', u'sprawl', u'make', u'american', u'studi', u'find'] [u'warship', u'head', u'townsvill'] [u'vail', u'blame', u'drought', u'trade', u'deficit'] [u'waltz', u'matilda', u'centr', u'lobbi', u'rugbi', u'board'] [u'warn', u'issu', u'attempt', u'abduct'] [u'william', u'sister', u'target', u'year', u'domin'] [u'world', u'leader', u'condemn', u'najaf', u'bomb'] [u'reserv', u'decis', u'generic', u'drug'] [u'injur', u'minibus', u'crash'] [u'abus', u'hotlin', u'program', u'continu'] [u'milan', u'european', u'super'] [u'water', u'restrict'] [u'adelaid', u'radio', u'station'] [u'africa', u'seek', u'fresh', u'deal', u'generic', u'drug'] [u'akhtar', u'dent', u'bangladeshi', u'hop', u'second', u'test'] [u'jazeera', u'say', u'forc', u'detain', u'journalist'] [u'blast', u'coag', u'deal'] [u'amnesti', u'warn', u'bomb', u'repris'] [u'australia', u'beat', u'britain', u'world', u'row', u'titl'] [u'aust', u'help', u'asia', u'pacif', u'develop', u'water', u'program'] [u'babysitt', u'get', u'life', u'sentenc', u'chop'] [u'deal', u'mean', u'cut', u'health', u'budget', u'gallop', u'say'] [u'baxter', u'children', u'treat'] [u'blackburn', u'complet', u'ferguson', u'transfer'] [u'blair', u'advisor', u'quit'] [u'like', u'charg', u'murder', u'fatal'] [u'brazil', u'vow', u'space', u'launch', u'disast'] [u'burmes', u'work', u'constitut'] [u'capel', u'aton', u'metr', u'failur'] [u'explod', u'near', u'main', u'armi', u'base', u'iraq'] [u'cleric', u'denounc', u'saddam', u'loyalist', u'sermon'] [u'construct', u'natur', u'project', u'begin', u'soon'] [u'croker', u'injuri', u'mar', u'canberra'] [u'dead', u'blast', u'click', u'bombay', u'street', u'photograph'] [u'diana', u'dodi', u'inquest', u'announc'] [u'docker', u'derbi', u'lion', u'roar', u'spot'] [u'eagl', u'edg', u'docker', u'lion', u'control'] [u'eel', u'edg', u'lang', u'park', u'thriller'] [u'electr', u'fault', u'blame', u'hous'] [u'expert', u'question', u'safeti', u'luca', u'height', u'reactor'] [u'explos', u'delhi', u'railway', u'station'] [u'eye', u'chelsea', u'roman', u'rich'] [u'ferri', u'passeng', u'strand', u'suspect', u'packag'] [u'damag', u'brisban', u'offic', u'block', u'nightclub'] [u'disrupt', u'power', u'victoria', u'polic', u'centr'] [u'arrest', u'singapor'] [u'filipino', u'defenc', u'secretari', u'warn', u'coup'] [u'hold', u'najaf', u'blast'] [u'fulham', u'fume', u'manchest', u'bind', u'reyna'] [u'gardin', u'doubt', u'western', u'derbi'] [u'hamilton', u'season', u'break'] [u'health', u'minist', u'deni', u'plan', u'card', u'scheme'] [u'hernandez', u'make', u'puma', u'return', u'canada'] [u'horserac', u'museum'] [u'hundr', u'flee', u'faction', u'fight', u'afghanistan'] [u'hundr', u'gather', u'honour', u'world', u'veteran'] [u'hundr', u'mourn', u'death', u'veteran'] [u'declar', u'winner', u'final', u'cambodian'] [u'iaaf', u'ponder', u'rule', u'drummond', u'incid'] [u'near', u'quit', u'say', u'beckham'] [u'iran', u'declar', u'day', u'mourn', u'hakim'] [u'isra', u'armi', u'withdraw', u'northern', u'gaza'] [u'karlsson', u'power', u'munich', u'lead'] [u'kefu', u'doubt', u'world'] [u'lake', u'alexand', u'reopen', u'public'] [u'landslid', u'kill', u'china'] [u'leed', u'reject', u'inter', u'loan', u'viduka'] [u'lehmann', u'sharehold', u'urg', u'accept', u'takeov'] [u'light', u'plane', u'crash', u'boulia'] [u'lucki', u'fisherman', u'airli', u'beach'] [u'magpi', u'book', u'home', u'final'] [u'charg', u'connect', u'blaster', u'worm'] [u'injur', u'collis', u'bass', u'highway'] [u'shoot', u'dead', u'bundaberg'] [u'mcmanaman', u'citi'] [u'melbourn', u'presid', u'szondi', u'step'] [u'sign', u'tuck'] [u'mortlock', u'track', u'wallabi', u'return'] [u'moulden', u'park', u'primari', u'win', u'anzac', u'award'] [u'murray', u'river', u'rescu', u'plan', u'huge', u'challeng'] [u'mysteri', u'death', u'coincid', u'author'] [u'najaf', u'bomb', u'assassin', u'downer'] [u'najaf', u'resid', u'blame', u'blast', u'sunni', u'loyalist'] [u'nation', u'water', u'plan', u'get', u'lukewarm', u'respons'] [u'natta'] [u'dead', u'russian', u'submarin', u'sink'] [u'korea', u'expand', u'arsenal', u'fail', u'talk'] [u'firefight', u'battl', u'bush', u'blaze'] [u'govt', u'defend', u'cut', u'women', u'council'] [u'oloughlin', u'injuri', u'mar', u'swan'] [u'kill', u'accid'] [u'opal', u'outclass', u'belgium'] [u'oppon', u'blast', u'unsportsmanlik', u'roddick'] [u'opposit', u'accus', u'mugab', u'rig', u'local'] [u'pakistan', u'fight', u'kapali', u'trick'] [u'pakistan', u'iran', u'deni', u'nuclear', u'cooper'] [u'palestinian', u'gunmen', u'kill', u'jewish', u'settler', u'west', u'bank'] [u'panther', u'savag', u'eagl', u'shark', u'strike', u'sink', u'rabbitoh'] [u'paparazzi', u'anticip', u'stella', u'mccartney', u'wed'] [u'peachey', u'free', u'face', u'rabbitoh'] [u'polic', u'hunt', u'video', u'store', u'thief'] [u'polic', u'investig', u'road', u'accid', u'involv', u'toddler'] [u'polic', u'investig', u'suspici'] [u'policeman', u'injur', u'duti'] [u'polic', u'search', u'miss', u'forrestfield', u'woman'] [u'polic', u'search', u'miss', u'gembrook', u'woman'] [u'putin', u'prepar', u'post', u'iraq', u'draft', u'resolut'] [u'raider', u'secur', u'spot'] [u'recycl', u'program', u'kick', u'school'] [u'research', u'track', u'world', u'know', u'white'] [u'roddick', u'celebr', u'birthday', u'round', u'berth'] [u'rise', u'rocket', u'boston', u'lead'] [u'ruddock', u'reject', u'donat', u'claim'] [u'sauvag', u'make', u'gold'] [u'scud', u'fire', u'round'] [u'scud', u'move', u'molik'] [u'secur', u'camera', u'captur', u'theft', u'leonardo'] [u'shoaib', u'fire', u'pakistan', u'victori'] [u'injur', u'battl', u'kashmir'] [u'soccer', u'team', u'promot', u'local', u'brothel'] [u'spain', u'wont', u'seek', u'argentin', u'extradit'] [u'john', u'ambul', u'servic', u'criticis', u'health', u'dept'] [u'strong', u'wind', u'whip', u'melbourn'] [u'sunday', u'liquor', u'trade', u'debat', u'heat'] [u'super', u'sanchez', u'emul', u'mose'] [u'sydney', u'brace', u'wild', u'wind', u'forecast'] [u'sydney', u'water', u'polic', u'steal', u'yacht', u'coff'] [u'taiwan', u'kung', u'extend', u'lpga', u'lead', u'shot'] [u'choos', u'pilot', u'disabl', u'program'] [u'law', u'prais'] [u'telstra', u'servic', u'affect', u'transmiss', u'cabl'] [u'hold', u'dover', u'secur', u'alert'] [u'timber', u'compani', u'support', u'outstrip', u'wilder', u'caus'] [u'toll', u'extend', u'deadlin', u'sharehold'] [u'truck', u'industri', u'honour', u'hall', u'fame', u'inducte'] [u'dead', u'injur', u'accid'] [u'say', u'long', u'korea', u'nuke', u'crisi'] [u'soldier', u'kill', u'grenad', u'attack'] [u'stock', u'higher', u'straight', u'week'] [u'vail', u'push', u'cheap', u'medicin'] [u'vendor', u'peddl', u'design', u'watermelon', u'singl'] [u'venic', u'festiv', u'award', u'sharif', u'lifetim', u'lion'] [u'govt', u'releas', u'climat', u'chang', u'report'] [u'govt', u'nurs', u'registr'] [u'govt', u'halv', u'spend', u'plant'] [u'govt', u'spend', u'flower', u'exorbit', u'opposit'] [u'govt', u'support', u'custodi', u'decis'] [u'winteri', u'weather', u'caus', u'havoc', u'road'] [u'woman', u'charg', u'bundaberg', u'shoot'] [u'woman', u'recov', u'attempt', u'nurs', u'home'] [u'world', u'leader', u'condemn', u'najaf', u'bomb'] [u'approv', u'cheaper', u'drug', u'import', u'develop'] [u'abbott', u'deni', u'lib', u'involv', u'trust', u'fund'] [u'state', u'sign', u'health', u'fund', u'agreement'] [u'member', u'pressur', u'underag', u'brothel'] [u'amrozi', u'move', u'island', u'prison'] [u'ancient', u'stone', u'circl', u'discov', u'scotland'] [u'anderson', u'deni', u'uncertainti', u'hurt', u'parti'] [u'antarctica', u'wind', u'project', u'win', u'engin', u'award'] [u'student', u'hurt', u'clash', u'thai', u'concert'] [u'kill', u'taipei'] [u'trap', u'flood', u'indian'] [u'aussi', u'relay', u'team', u'miss', u'final'] [u'author', u'believ', u'deliber'] [u'author', u'confirm', u'dead', u'russian', u'submarin'] [u'depp', u'thing', u'past'] [u'beckham', u'continu', u'dream', u'start', u'real', u'career'] [u'bend', u'treatment', u'meningococc', u'impact'] [u'biodivers', u'month', u'kick'] [u'boy', u'arrest', u'prompt', u'sentenc', u'review'] [u'brisban', u'resid', u'prais', u'public'] [u'british', u'newspap', u'publish', u'lose', u'kelli', u'articl'] [u'british', u'port', u'return', u'normal', u'bomb', u'alert'] [u'bulgarian', u'danub', u'sink', u'lowest', u'record', u'level'] [u'canada', u'west', u'nile', u'virus', u'infect', u'rise'] [u'capsul', u'dock'] [u'cathol', u'educ', u'remodel'] [u'citi', u'surf', u'record', u'time', u'break'] [u'ask', u'abus', u'victim', u'come', u'forward'] [u'coastal', u'communiti', u'protest', u'wind', u'turbin', u'project'] [u'concern', u'lack', u'mango', u'picker', u'affect'] [u'fight', u'develop', u'plan'] [u'cow', u'kangaroo', u'share', u'similar', u'gene', u'expert'] [u'cronj', u'david', u'omit', u'springbok', u'squad'] [u'crow', u'edg', u'port', u'long', u'break'] [u'davi', u'slice', u'kung', u'lead'] [u'deport', u'appeal', u'die', u'daughter'] [u'docker', u'secur', u'home', u'final'] [u'docker', u'derbi', u'lion', u'roar'] [u'dragon', u'injuri', u'woe', u'continu'] [u'egypt', u'cast', u'doubt', u'nefert', u'mummi', u'discoveri'] [u'elder', u'kill', u'collis', u'northern'] [u'england', u'recal', u'thorp'] [u'fink', u'river', u'cross', u'upgrad'] [u'crew', u'battl', u'blaze', u'south', u'coast'] [u'destroy', u'north', u'brisban', u'school'] [u'firefight', u'win', u'battl', u'blaze'] [u'forc', u'withdraw'] [u'hicki', u'help', u'ireland', u'crush', u'itali'] [u'franc', u'edg', u'england', u'world', u'warm'] [u'germani', u'relax', u'restrict', u'arm', u'sale'] [u'govt', u'review', u'tobacco', u'advertis', u'law'] [u'hama', u'member', u'kill', u'isra', u'missil', u'attack'] [u'harri', u'guid', u'wale', u'victori', u'scot'] [u'hewitt', u'advanc', u'final'] [u'hewitt', u'revel', u'return', u'form'] [u'histor', u'forc', u'base', u'partial', u'sell'] [u'hotel', u'patron', u'evacu', u'break'] [u'hous', u'destroy'] [u'hous', u'price', u'continu', u'soar'] [u'indian', u'polic', u'arrest', u'suspect', u'bombay'] [u'indian', u'presid', u'inspir', u'mar'] [u'kewel', u'boot', u'goal', u'red'] [u'latrob', u'valley', u'power', u'worker', u'face', u'asbesto'] [u'lawyer', u'group', u'propos', u'reform', u'unit', u'nation'] [u'lawyer', u'group', u'propos', u'reform'] [u'lion', u'lock', u'spot'] [u'ljubic', u'refus', u'apologis', u'roddick'] [u'assault', u'katoomba'] [u'critic', u'injur', u'motorcycl', u'accid'] [u'die', u'stab'] [u'injur', u'crash', u'cliff'] [u'send', u'polic', u'chase'] [u'melbourn', u'legaci', u'ask', u'communiti', u'deep'] [u'mose', u'confirm', u'comeback', u'attempt'] [u'netherland', u'answer', u'vatican', u'marriag', u'manual'] [u'marin', u'park', u'plan', u'jurien'] [u'terror', u'group', u'indonesia', u'rudd'] [u'plan', u'quit', u'heatwav', u'death', u'french'] [u'call', u'member', u'stand', u'asid'] [u'target', u'drink', u'drive', u'loophol'] [u'govt', u'rep', u'begin', u'tour', u'greec'] [u'briton', u'say', u'diana', u'murder'] [u'opal', u'clean', u'sweep', u'belgium'] [u'public', u'transport', u'fare', u'increas'] [u'pakistan', u'arrest', u'taliban', u'milit', u'border'] [u'polic', u'arrest', u'steal', u'hire', u'stereo', u'equip'] [u'polic', u'search', u'clue', u'nightclub', u'shoot'] [u'polic', u'suspect', u'miss', u'foul', u'play'] [u'port', u'deni', u'crow', u'doubl', u'chanc'] [u'port', u'push', u'crow'] [u'public', u'transport', u'timet', u'chang', u'attract'] [u'puma', u'rout', u'canada', u'complet', u'sweep'] [u'give', u'mean', u'see'] [u'govt', u'crack', u'slingshot'] [u'rabbit', u'rage', u'royal'] [u'rid', u'loud', u'proud', u'harley', u'mark', u'birthday'] [u'roll', u'stone', u'offer', u'buck', u'headlin'] [u'rooster', u'knight', u'cowboy', u'hold', u'half', u'time', u'lead'] [u'rooster', u'hop', u'dent', u'dragon', u'season'] [u'russia', u'back', u'authoris', u'militari', u'forc', u'iraq'] [u'govt', u'unveil', u'plan', u'rail', u'cross'] [u'sailor', u'sign', u'red'] [u'seek', u'feder', u'help', u'save', u'health', u'review'] [u'schwab', u'retain', u'hawk', u'blue', u'thrash'] [u'scott', u'surg', u'ahead', u'event'] [u'sculli', u'call', u'car', u'fit'] [u'season', u'scott', u'cook'] [u'sheikh', u'arrest', u'pipelin', u'blast'] [u'injur', u'grenad', u'attack', u'cinema', u'iraqi'] [u'year', u'death', u'quarter', u'briton'] [u'spain', u'prime', u'minist', u'choos', u'successor'] [u'spanish', u'successor', u'choos'] [u'springbok', u'lock', u'clear', u'racism'] [u'stella', u'mccartney', u'marri', u'scotland', u'report'] [u'strong', u'perform', u'kidman', u'hopkin', u'venic'] [u'sugiyama', u'battl', u'past', u'aussi', u'pratt'] [u'sweden', u'karlsson', u'retain', u'lead'] [u'sydney', u'assault', u'jack'] [u'woman', u'die', u'age'] [u'teenag', u'girl', u'kill', u'crash'] [u'telstra', u'move', u'protect', u'market', u'share'] [u'telstra', u'servic', u'restor'] [u'thousand', u'gather', u'mourn', u'mohammad', u'baqer', u'hakim'] [u'toll', u'unlik', u'review', u'sharehold', u'offer'] [u'islam', u'milit', u'gun', u'indian', u'capit'] [u'kill', u'pacif', u'hway', u'accid'] [u'palestinian', u'kill', u'isra', u'missil', u'strike'] [u'uganda', u'reopen', u'church', u'own', u'radio', u'station'] [u'union', u'busi', u'holiday'] [u'unit', u'arsenal', u'look', u'continu', u'perfect', u'start'] [u'argentina', u'qualifi', u'olymp'] [u'pledg', u'humanitarian', u'assist'] [u'religi', u'group', u'tell', u'schwarzenegg', u'come'] [u'sprinter', u'fail', u'drug', u'test'] [u'tackl', u'china', u'currenc'] [u'govt', u'increas', u'special', u'need', u'educ'] [u'sign', u'health', u'fund', u'agreement'] [u'polic', u'arrest', u'drug', u'raid'] [u'widow', u'deni', u'sankoh', u'bodi', u'miss'] [u'wilder', u'photograph', u'boycott', u'galleri'] [u'wooli', u'claim', u'pharmaci', u'strong'] [u'abbott', u'deni', u'multipl', u'anti', u'hanson', u'fund'] [u'abbott', u'shrug', u'defam', u'threat'] [u'advoc', u'hope', u'better', u'refuge', u'condit'] [u'investig', u'fair', u'allianc'] [u'agassi', u'finish', u'kafelnikov'] [u'agassi', u'finish', u'kafelnikov', u'roddick'] [u'north', u'tennant', u'creek', u'decis'] [u'airport', u'capac', u'spotlight'] [u'servic', u'soon'] [u'servic'] [u'ord', u'hit', u'month', u'high'] [u'figur', u'brothel', u'inquiri', u'urg', u'stand', u'asid'] [u'demand', u'govt', u'way', u'insur'] [u'say', u'inexperi', u'cost', u'territori', u'extra', u'fund'] [u'seek', u'health', u'reform', u'meet'] [u'arsenal', u'ralli', u'fourth', u'lose'] [u'aussi', u'fli', u'nasa', u'trial'] [u'aussi', u'gollan', u'win', u'franc'] [u'australia', u'claim', u'second', u'row', u'gold'] [u'news', u'swan', u'oloughlin', u'rule'] [u'balanc', u'seek', u'tourism', u'develop'] [u'ballarat', u'feel', u'stage', u'water', u'restrict'] [u'bangladesh', u'mental', u'unabl', u'whatmor'] [u'barcaldin', u'budget', u'alloc', u'road', u'fund'] [u'steel', u'director', u'agre'] [u'murray', u'hit', u'chord', u'venic', u'film', u'festiv'] [u'blackburn', u'baggio'] [u'boomer', u'name', u'face', u'tall', u'black'] [u'boost', u'plan', u'ambul', u'communic'] [u'bronco', u'head', u'gold', u'coast'] [u'brother', u'face', u'attempt', u'murder', u'charg'] [u'build', u'approv', u'surpris', u'jump'] [u'burmes', u'govern', u'reject', u'democraci', u'roadmap'] [u'businessman', u'stab', u'loan', u'repay', u'court', u'tell'] [u'busi', u'weekend', u'firefight'] [u'caldecott', u'continu', u'win', u'way'] [u'alcohol', u'restrict', u'clear'] [u'longer', u'tourism', u'season'] [u'canberra', u'build', u'industri', u'flourish'] [u'canberra', u'offer', u'sydney', u'airport', u'solut'] [u'cardiologist', u'futur', u'remain', u'limbo'] [u'carr', u'expect', u'branch', u'head', u'expel'] [u'carr', u'heap', u'prais', u'rescu', u'team'] [u'carr', u'say', u'figur', u'face', u'expuls', u'parti'] [u'china', u'blame', u'polici', u'unresolv', u'korea'] [u'grower', u'seek', u'restrict', u'review'] [u'clijster', u'mauresmo', u'face', u'open', u'duel'] [u'focus', u'elect'] [u'club', u'gambl', u'campaign', u'stop', u'poki'] [u'coach', u'reflect', u'seagul', u'year'] [u'confer', u'hear', u'skin', u'save', u'method'] [u'copi', u'scud', u'crash', u'open'] [u'corn', u'jam', u'injuri'] [u'council', u'deliv', u'rat', u'rise'] [u'council', u'face', u'budget', u'shortfal'] [u'council', u'hit', u'alcohol', u'claim'] [u'councillor', u'continu', u'boundari', u'chang', u'push'] [u'countrylink', u'fare', u'rise'] [u'coupl', u'plead', u'guilti', u'fraud', u'charg'] [u'court', u'tell', u'biki', u'plant', u'bomb', u'chief'] [u'cowboy', u'set', u'record'] [u'crean', u'woo', u'jewish', u'communiti'] [u'creditor', u'decid', u'pan', u'futur'] [u'creditor', u'delay', u'liquid', u'vote'] [u'creditor', u'reject', u'rescu'] [u'crown', u'land', u'review'] [u'decis', u'viabil'] [u'doubl', u'give', u'star', u'juventus', u'perfect', u'start'] [u'downer', u'back', u'intern', u'assist', u'iraq'] [u'downer', u'call', u'releas'] [u'driver', u'face', u'court', u'alcohol', u'read'] [u'england', u'westwood', u'end', u'victori', u'drought'] [u'european', u'drought', u'help', u'australian', u'grain', u'grower'] [u'extrem', u'caution', u'urg', u'jakarta', u'bashir', u'verdict'] [u'fare', u'evas', u'behaviour', u'train', u'target'] [u'farmer', u'declar'] [u'faulti', u'tank', u'blame', u'dead', u'explos'] [u'investig', u'recent', u'iraq', u'bomb'] [u'govt', u'takeov', u'quarantin', u'servic'] [u'ferdinand', u'butt', u'england', u'squad'] [u'fiji', u'warn', u'textil', u'industri', u'reform', u'choic'] [u'chees', u'mark', u'start', u'china', u'trade', u'deal'] [u'boss', u'offer', u'creditor', u'deal', u'avoid'] [u'forum', u'focus', u'region', u'plan'] [u'formal', u'charg', u'bombay', u'bomb'] [u'gallop', u'urg', u'stop', u'forest', u'plan'] [u'german', u'edg', u'roger', u'mercx', u'race'] [u'girdler', u'expect', u'final'] [u'gold', u'bronz', u'puerto', u'rico'] [u'govt', u'fear', u'nation', u'power', u'reform', u'falter'] [u'govt', u'handl', u'medic', u'insur', u'crisi', u'fair'] [u'govt', u'urg', u'protect', u'vulner', u'koala'] [u'hama', u'deck', u'card', u'label', u'sharon', u'joker'] [u'hancock', u'lewi', u'murder', u'trial', u'juri', u'swear'] [u'hanson', u'ettridg', u'refus', u'bail'] [u'hawaii', u'brace', u'hurrican', u'jimena'] [u'heder', u'continu', u'safari', u'win', u'way'] [u'hollywood', u'mourn', u'movi', u'tough', u'bronson'] [u'hous', u'boom', u'put', u'pressur', u'incom', u'earner'] [u'howard', u'prais', u'pacif', u'forum'] [u'hrea', u'threaten', u'industri', u'action', u'hospit', u'plan'] [u'indigen', u'communiti', u'play', u'histori'] [u'industri', u'wast', u'contamin', u'sit', u'centr'] [u'industri', u'urg', u'help', u'clean', u'contamin', u'sit'] [u'injuri', u'wild', u'card', u'final'] [u'inquiri', u'consid', u'children', u'legal', u'rep', u'divorc'] [u'integr', u'hop', u'overnight', u'sydney', u'power'] [u'internet', u'connect', u'increas', u'australia'] [u'iraqi', u'gang', u'demand', u'famili', u'phone', u'negoti'] [u'iraqi', u'govern', u'council', u'name', u'cabinet'] [u'irrig', u'await', u'water', u'plan', u'detail'] [u'tri', u'attack', u'fergi', u'boot', u'incid'] [u'ivanisev', u'near', u'retir', u'report'] [u'jail', u'compens', u'claim', u'review'] [u'johnson', u'snatch', u'relay', u'gold'] [u'katherin', u'mayor', u'sure', u'polit', u'futur'] [u'kefu', u'doubt', u'world'] [u'kenya', u'lift', u'movement'] [u'knight', u'rest', u'player'] [u'knight', u'offer', u'kennedi', u'final', u'round', u'rest', u'hagan'] [u'kung', u'declar', u'winner', u'illinoi'] [u'labor', u'backbench', u'vow', u'support', u'palestinian', u'state'] [u'late', u'keep', u'ranger'] [u'order', u'return', u'solomon', u'island'] [u'libya', u'seal', u'deal', u'french', u'airlin', u'bomb'] [u'turnout', u'zimbabw', u'local', u'elect'] [u'arrest', u'iraq', u'saudi', u'border', u'najaf', u'blast'] [u'charg', u'chase'] [u'die', u'hexham', u'crash'] [u'face', u'court', u'indec', u'charg'] [u'manufactur', u'sector', u'subdu', u'august'] [u'maryborough', u'hop', u'clean', u'award'] [u'mcintosh', u'charg', u'drop'] [u'face', u'court', u'hotel', u'arm', u'robberi'] [u'miss', u'group', u'safe'] [u'monaghetti', u'voic', u'concern', u'aussi', u'track', u'team'] [u'mose', u'comeback'] [u'think', u'water', u'agreement', u'good', u'start'] [u'murder', u'man', u'wife', u'brother', u'stand', u'trial'] [u'nation', u'museum', u'consid', u'bore', u'exhibit'] [u'nat', u'seek', u'effort', u'fight', u'alcohol', u'woe'] [u'nat', u'welcom', u'water', u'move'] [u'nemesi', u'nalbandian', u'bar', u'feder', u'path', u'open'] [u'passport', u'rule', u'stop', u'ident', u'fraud'] [u'port', u'dredg', u'condit', u'loom'] [u'aborigin', u'leader', u'promis', u'land', u'fight'] [u'nrma', u'concern', u'ignit', u'breathalys'] [u'crack', u'dummi', u'auction', u'bidder'] [u'look', u'extend', u'heroin', u'inject', u'room', u'trial'] [u'meet', u'staff', u'drug', u'inject', u'room'] [u'teen', u'cours', u'childbirth', u'realiti'] [u'jail', u'yacht', u'theft'] [u'nation', u'dissid', u'promis', u'detail'] [u'organ', u'farm', u'rise', u'report'] [u'pair', u'face', u'court', u'illeg', u'fish', u'charg'] [u'pakistan', u'confid', u'sami', u'return', u'dayer'] [u'creditor', u'meet', u'decid', u'futur'] [u'parent', u'expect', u'charg', u'leav', u'infant'] [u'parent', u'express', u'support', u'tasmanian', u'archbishop'] [u'patchi', u'wale', u'prepar', u'world', u'squad'] [u'patrol', u'accompani', u'angl', u'ban'] [u'philippoussi', u'crash', u'open'] [u'pioneer', u'oust', u'ballarat', u'grand', u'final'] [u'plan', u'earli', u'intervent', u'youth', u'fund', u'boost'] [u'player', u'threaten', u'dalli', u'boycott'] [u'plan', u'doctor', u'levi'] [u'polic', u'theft', u'concern'] [u'polic', u'airw', u'join', u'search', u'miss', u'woman'] [u'polic', u'hors', u'recov', u'attack'] [u'polic', u'royal', u'commiss', u'say', u'investig'] [u'post', u'countri', u'music', u'muster', u'clean', u'begin'] [u'produc', u'drought'] [u'provision', u'liquid', u'gutnick', u'famili'] [u'public', u'ask', u'help', u'miss'] [u'public', u'comment', u'seek'] [u'doctor', u'flag', u'health', u'elect', u'issu'] [u'energi', u'minist', u'question', u'singl', u'regul'] [u'govt', u'urg', u'reconsid', u'pipelin', u'support'] [u'check', u'crimin', u'histori', u'teacher'] [u'ralli', u'militari', u'exercis'] [u'rann', u'letter', u'urg', u'health'] [u'recycl', u'scheme', u'urg', u'smoker', u'butt'] [u'rspca', u'seek', u'attend', u'rodeo'] [u'russian', u'defenc', u'minist', u'blame', u'neglig'] [u'saddam', u'deni', u'najaf', u'bomb', u'role', u'tape'] [u'safe', u'place', u'away', u'home'] [u'salin', u'trench', u'trap', u'stock'] [u'offer', u'communiti', u'health'] [u'school', u'speed', u'limit', u'flexibl'] [u'scott', u'take', u'shoot', u'lead', u'massachusett'] [u'scud', u'crash', u'open'] [u'sheedi', u'confid', u'ahead', u'docker', u'clash'] [u'shiit', u'mourn', u'cleric', u'detain'] [u'site', u'redevelop', u'lead', u'call', u'public'] [u'skin', u'store', u'futur', u'confer', u'tell'] [u'snow', u'spark', u'driver', u'safeti'] [u'socceroo', u'decim', u'injuri', u'ahead', u'jamaican'] [u'stoic', u'stewart', u'prepar', u'england', u'swansong'] [u'struggl', u'matilda', u'china', u'crisi'] [u'support', u'democrat', u'inquiri'] [u'hunger', u'strike', u'claim'] [u'tast', u'begin', u'drop'] [u'teenag', u'charg', u'school', u'blaze'] [u'tollway', u'hit', u'brack', u'popular'] [u'totti', u'rule', u'itali', u'crunch', u'euro'] [u'trade', u'deleg', u'iraq', u'hold'] [u'train', u'award', u'winner', u'announc'] [u'tribun', u'summon', u'west', u'coast', u'fullback', u'mcintosh'] [u'trio', u'face', u'trial', u'homeless', u'kill'] [u'line', u'increas', u'fare', u'anniversari'] [u'lib', u'preselect', u'nomin', u'corangamit'] [u'tyre', u'rule', u'stall', u'montoya', u'raikkonen'] [u'ullrich', u'miss', u'world', u'tour', u'crown'] [u'move', u'basra', u'staff', u'kuwait'] [u'govt', u'urg', u'reassess', u'iraq', u'budget'] [u'vanston', u'heckl', u'centrelink', u'offic', u'open'] [u'vaughan', u'yorkshir'] [u'victorian', u'premier', u'popular', u'drop'] [u'vinni', u'head', u'weight', u'melbourn'] [u'cabinet', u'consid', u'barrow', u'project'] [u'wagga', u'get', u'month', u'rainfal', u'boost'] [u'govt', u'say', u'hospit', u'servic', u'scrutinis'] [u'polic', u'street', u'gambl'] [u'waterfal', u'inquiri', u'hear', u'wind'] [u'welfar', u'group', u'welcom', u'poki', u'plan'] [u'west', u'challeng', u'skandali', u'charg'] [u'wheat', u'export', u'defend', u'purchas'] [u'widow', u'say', u'kelli', u'felt', u'betray'] [u'windsor', u'prais', u'water', u'reform', u'breakthrough'] [u'wine', u'industri', u'urg', u'boost', u'export'] [u'winter', u'rain', u'boost', u'central'] [u'woman', u'die', u'heidelberg', u'hous', u'blaze'] [u'woman', u'die', u'melbourn', u'hous'] [u'world', u'number', u'clijster'] [u'youth', u'detox', u'unit', u'need', u'health', u'worker'] [u'dead', u'flood', u'india'] [u'wound', u'baghdad', u'polic', u'station', u'blast'] [u'offic', u'kill', u'baghdad', u'attack'] [u'abbott', u'accus', u'labor', u'reviv', u'hanson'] [u'abbott', u'back', u'union', u'fund', u'probe'] [u'accus', u'carri', u'human', u'remain', u'suitcas', u'court'] [u'actor', u'launch', u'coff', u'green', u'plan'] [u'popul', u'expect'] [u'act', u'alli', u'health', u'advisor', u'appoint'] [u'consid', u'bond', u'parad', u'request'] [u'ord', u'continu', u'healthi', u'gain'] [u'announc', u'nation', u'secretari'] [u'figur', u'face', u'suspens', u'brothel', u'link'] [u'anderson', u'upbeat', u'water', u'plan'] [u'argentin', u'judg', u'order', u'militari', u'leader', u'releas'] [u'astronom', u'monitor', u'giant', u'asteroid'] [u'australia', u'ask', u'play', u'kashmir'] [u'australia', u'franc', u'team', u'beat', u'world'] [u'australian', u'economi', u'bare', u'grow'] [u'australian', u'warn', u'ahead', u'bashir', u'verdict'] [u'baghdad', u'bomb', u'kill', u'injur'] [u'bangladesh', u'confid', u'pakistan', u'seri'] [u'bashir', u'jail', u'year', u'appeal'] [u'beatti', u'want', u'union', u'fund', u'detail', u'public'] [u'beckham', u'tell', u'ronaldo', u'laugh', u'england', u'blow'] [u'plan', u'afoot', u'hospit', u'revamp'] [u'boati', u'safeti', u'remind'] [u'tackl', u'end', u'kefus', u'hop'] [u'boomer', u'seri', u'lead', u'tall', u'black'] [u'brazilian', u'women', u'world', u'vain'] [u'brazil', u'kleberson', u'rule', u'world', u'qualifi'] [u'bush', u'defend', u'cut'] [u'antagon', u'leav', u'ethanol'] [u'armidal', u'join', u'sentenc', u'scheme'] [u'canberra', u'print', u'handicap', u'radio', u'wagga', u'wagga'] [u'carr', u'back', u'elector', u'offic', u'investig', u'unit'] [u'cfmeu', u'return', u'woodsid', u'pilbara', u'plant'] [u'child', u'care', u'group', u'look', u'boss', u'ahead', u'float'] [u'chines', u'tiger', u'cub', u'fli', u'africa', u'learn', u'hunt'] [u'chook', u'farmer', u'blame', u'rule', u'busi', u'closur'] [u'cloke', u'give', u'second', u'grand', u'final', u'chanc'] [u'cole', u'write', u'chelsea', u'cast', u'star'] [u'communiti', u'receiv', u'fund', u'manag', u'salin'] [u'costello', u'optimist', u'despit', u'weak', u'econom', u'figur'] [u'council', u'back', u'administr', u'abattoir'] [u'council', u'consid', u'hous', u'crisi'] [u'councillor', u'mayor', u'critic', u'report'] [u'councillor', u'gather', u'cairn', u'lgaq', u'confer'] [u'council', u'put', u'revis', u'offer', u'staff'] [u'counter', u'terror', u'region', u'project', u'play', u'vital'] [u'court', u'secur', u'boost', u'murder', u'committ'] [u'crean', u'deflect', u'fund', u'critic', u'abbott'] [u'crean', u'welcom', u'poll', u'despit', u'approv', u'drop'] [u'dairi', u'farmer', u'consid', u'industri', u'issu'] [u'reopen', u'marron'] [u'deadlin', u'issu', u'adelaid', u'soccer', u'club'] [u'defenc', u'exercis', u'money', u'spinner', u'central'] [u'democrat', u'hospit', u'concern'] [u'demo', u'highlight', u'paradis', u'concern'] [u'doc', u'defend', u'handl', u'teenag', u'prostitut', u'case'] [u'doctor', u'face', u'hospit', u'indemn', u'agreement'] [u'dozen', u'evacu', u'kenyan', u'tourist', u'resort'] [u'earlier', u'start', u'bushfir', u'danger', u'period'] [u'elect', u'surgeri', u'wait', u'list', u'shrink'] [u'escap'] [u'everton', u'lead', u'premiership', u'transfer', u'race'] [u'expert', u'work', u'identifi', u'ill', u'strike'] [u'expo', u'highlight', u'youth', u'driver', u'issu'] [u'extra', u'help', u'bomber', u'home', u'sheedi'] [u'feder', u'aim', u'improv', u'condit', u'casual'] [u'fiji', u'help', u'player', u'disput'] [u'fittler', u'play', u'crucial', u'final', u'round'] [u'latest', u'chechen', u'violenc'] [u'newspap', u'editor', u'accept', u'court'] [u'charg', u'thailand', u'bomb', u'plot'] [u'dead', u'wound', u'latest', u'aceh', u'clash'] [u'franc', u'ring', u'chang', u'twickenham'] [u'fright', u'flick', u'domin', u'north', u'american', u'holiday'] [u'funer', u'process', u'shiit', u'cleric', u'reach', u'najaf'] [u'grin', u'friend', u'award'] [u'govern', u'sign', u'salin', u'flood', u'plan'] [u'govt', u'target', u'secret', u'union', u'fund'] [u'govt', u'wont', u'interven', u'hospit', u'decis', u'sack'] [u'green', u'threat', u'forest', u'mine'] [u'green', u'welcom', u'news', u'refuge', u'arriv'] [u'growth', u'expect', u'stall'] [u'hakim', u'funer', u'process', u'near', u'najaf'] [u'hama', u'milit', u'kill', u'israel', u'strike'] [u'heal', u'play', u'oversea', u'olymp', u'select'] [u'hewitt', u'match', u'postpon', u'capriati', u'henin'] [u'hospit', u'disput', u'envelop', u'state'] [u'howard', u'approv', u'headway', u'crean'] [u'howard', u'back', u'involv', u'iraq'] [u'increas', u'land', u'valu', u'spark', u'height', u'limit', u'plan'] [u'independ', u'katherin', u'polit', u'analyst'] [u'industri', u'relat', u'commiss', u'consid'] [u'injuri', u'scotland', u'forward', u'squad'] [u'insur', u'compani', u'come', u'accc', u'spotlight'] [u'insur', u'put', u'cloud', u'festiv'] [u'outlin', u'young', u'drug', u'probe'] [u'iran', u'delay', u'trial', u'canadian', u'journalist', u'murder'] [u'isra', u'inquiri', u'arab', u'shoot', u'label'] [u'jone', u'give', u'chanc', u'explain', u'case'] [u'judg', u'continu', u'read', u'verdict', u'bashir', u'case'] [u'juri', u'snowtown', u'trial'] [u'kelli', u'accept', u'merger', u'submiss'] [u'lack', u'support', u'lgaq', u'rural', u'divis'] [u'landhold', u'warn', u'penalti', u'pay', u'water'] [u'late', u'centuri', u'warmest', u'period', u'record'] [u'latham', u'defend', u'staff', u'brothel', u'investig'] [u'legal', u'centr', u'pressur', u'retain', u'staff'] [u'court', u'violent', u'robberi'] [u'attempt', u'rape', u'charg', u'get', u'bail'] [u'face', u'attempt', u'murder', u'charg'] [u'court', u'assault', u'senior'] [u'vow', u'fight', u'despit', u'contempt', u'convict'] [u'market', u'focus', u'aust', u'econom', u'data'] [u'melbourn', u'reveal', u'million', u'game', u'ceremoni'] [u'melbourn', u'spend', u'million', u'game'] [u'militari', u'exercis', u'wont', u'increas', u'terrorist', u'threat'] [u'equip', u'maker', u'lodg', u'plan'] [u'miner', u'say', u'deal', u'offer', u'sharehold', u'benefit'] [u'minist', u'blame', u'hanson', u'fallout', u'poll', u'slide'] [u'minist', u'watch', u'cfmeu', u'conduct'] [u'move', u'game', u'review', u'defeat'] [u'naval', u'boat', u'name', u'australian', u'citi'] [u'netbal', u'vote', u'raven', u'resurrect'] [u'blood', u'alcohol', u'limit', u'target', u'learner', u'driver'] [u'proof', u'bashir', u'head', u'judg', u'say'] [u'green', u'pray', u'chang'] [u'hous', u'price', u'increas', u'slow'] [u'jail', u'disgust', u'behaviour'] [u'nurs', u'welcom', u'hospit', u'condit', u'review'] [u'olymp', u'champion', u'szabo', u'heart', u'scare'] [u'kill', u'injur', u'gaza', u'strike'] [u'nation', u'presid', u'shock', u'hanson', u'bail'] [u'opposit', u'criticis', u'surgeri', u'time', u'prioriti'] [u'owen', u'readi', u'extend', u'career', u'liverpool'] [u'oyster', u'grower', u'want', u'dredg', u'chang'] [u'pair', u'appear', u'court', u'cocain', u'seizur'] [u'park', u'vandal', u'anger', u'councillor'] [u'patient', u'escap', u'adelaid', u'psychiatr', u'hospit'] [u'plan', u'offer', u'better', u'wetland', u'protect'] [u'player', u'threaten', u'dalli', u'boycott'] [u'demand', u'labor', u'explain', u'miss', u'union', u'fund', u'return'] [u'talk', u'postpon'] [u'polic', u'arrest', u'pair', u'cannabi'] [u'polic', u'car', u'pack', u'bomb', u'iraqi'] [u'polic', u'hunt', u'psychiatr', u'patient'] [u'polic', u'hunt', u'attempt', u'rape'] [u'polic', u'investig', u'melbourn', u'murder'] [u'polic', u'plea', u'help', u'miss'] [u'polic', u'probe', u'townsvill', u'stab'] [u'polic', u'honour', u'effort'] [u'polic', u'urg', u'govt', u'support', u'indigen', u'communiti'] [u'poor', u'support', u'put', u'bank', u'plan'] [u'port', u'cunningham', u'rule'] [u'power', u'restor', u'black', u'build'] [u'premier', u'defend', u'sunday', u'liquor', u'trade', u'decis'] [u'prison', u'payout', u'spark', u'govt', u'review'] [u'public', u'servant', u'afraid', u'frank'] [u'public', u'continu', u'access', u'weapon', u'rang'] [u'queensland', u'student', u'test'] [u'racq', u'fight', u'river', u'tunnel', u'plan'] [u'radio', u'report', u'murder', u'philippin'] [u'radio', u'station', u'owner', u'staff'] [u'rail', u'museum', u'take', u'shape'] [u'rainfal', u'outlook', u'look', u'good', u'south', u'west'] [u'rain', u'halt', u'play', u'open'] [u'record', u'price', u'predict', u'lamb'] [u'recov', u'firman', u'miss', u'monza', u'test'] [u'face', u'round', u'miss', u'itali', u'contest'] [u'redknapp', u'charg', u'misconduct', u'touchlin'] [u'light', u'camera', u'run'] [u'resid', u'servic', u'repriev'] [u'ronaldo', u'target', u'pele', u'record'] [u'rural', u'doctor', u'group', u'want', u'medicar', u'rebat', u'boost'] [u'sabco', u'closur', u'leav', u'jobless'] [u'govt', u'accept', u'letter', u'seek', u'medic', u'woe'] [u'govt', u'plan', u'chang', u'river', u'levi'] [u'saqlain', u'pressur', u'perform', u'month'] [u'sartor', u'reject', u'poor', u'mainten', u'blackout', u'caus'] [u'school', u'recognis', u'word', u'perfect', u'effort'] [u'scott', u'claim', u'maiden'] [u'scout', u'converg', u'central'] [u'secur', u'tighten', u'outsid', u'jakarta', u'court'] [u'senior', u'polic', u'offic', u'leav', u'forc'] [u'shepherd', u'like', u'liquid'] [u'shevchenko', u'doubl', u'give', u'milan', u'open', u'victori'] [u'shoulder', u'injuri', u'end', u'kefus', u'world', u'dream'] [u'open', u'sunday'] [u'silverston', u'track', u'protestor', u'free'] [u'skier', u'ask', u'support', u'lomond', u'patrol'] [u'small', u'crowd', u'trickl', u'water', u'meet'] [u'smart', u'passport', u'enhanc', u'secur'] [u'snowtown', u'juri', u'continu', u'deliber', u'tomorrow'] [u'snowtown', u'juri', u'retir'] [u'societi', u'call', u'altern', u'access', u'styx', u'valley'] [u'southcorp', u'suffer', u'loss'] [u'strike', u'forc', u'focus', u'sydney', u'shoot'] [u'suspect', u'bomb', u'hit', u'baghdad', u'polic', u'station'] [u'talk', u'focus', u'plan', u'medicar', u'chang'] [u'tampa', u'refuge', u'arriv', u'australia'] [u'tampa', u'refuge', u'arriv', u'brisban'] [u'hous', u'approv', u'month', u'high'] [u'tasmania', u'grip', u'footi', u'fever'] [u'teen', u'win', u'gympi', u'countri', u'music', u'award'] [u'tender', u'call', u'soon', u'riverway', u'plan'] [u'territori', u'busi', u'warn', u'fake', u'invoic'] [u'trumpet', u'fit', u'ahead', u'echol', u'bout'] [u'timber', u'distributor', u'blame', u'closur', u'log', u'quota'] [u'tiwi', u'island', u'host', u'final', u'forestri', u'strategi'] [u'tobacco', u'compani', u'million'] [u'town', u'seek', u'water', u'restrict', u'exempt'] [u'traffic', u'flow', u'tram', u'crash'] [u'trio', u'face', u'court', u'escap', u'charg'] [u'union', u'manag', u'meet'] [u'union', u'appeal', u'sack'] [u'troop', u'launch', u'afghan', u'offens'] [u'venic', u'honour', u'laurentii', u'lifetim'] [u'verdict', u'bashir', u'trial'] [u'virgin', u'blue', u'call', u'feder', u'aviat', u'secur'] [u'water', u'declar', u'lift'] [u'widow', u'take', u'stand', u'trial', u'gypsi', u'joker', u'biki'] [u'william', u'face', u'tough', u'choic', u'corn', u'jam'] [u'wind', u'farm', u'firm', u'experi', u'share', u'price', u'fall'] [u'drought', u'histori'] [u'present', u'face', u'complaint', u'comment'] [u'kill', u'russian', u'train', u'blast'] [u'abbott', u'play', u'costello', u'comment'] [u'aborigin', u'figur', u'eye', u'labor', u'nation', u'presid'] [u'mazen', u'prepar', u'face', u'arafat', u'declar'] [u'consid', u'zero', u'alcohol', u'limit', u'driver'] [u'agassi', u'advanc', u'quarter', u'final'] [u'agassi', u'overcom', u'dent', u'rain'] [u'airlin', u'push', u'public', u'servic', u'book'] [u'alpha', u'accid', u'kill', u'toowoomba', u'woman'] [u'bemax', u'sharehold'] [u'angwin', u'chaffey', u'match'] [u'argentina', u'final', u'squad', u'world'] [u'arsenal', u'appeal', u'campbel', u'charg', u'report'] [u'attack', u'launch', u'resourc', u'manag'] [u'aussi', u'unchang', u'davi', u'semi', u'final'] [u'aussi', u'women', u'prepar', u'summer', u'intern'] [u'aust', u'discuss', u'trade', u'asean'] [u'australia', u'close', u'embassi', u'apart', u'complex'] [u'australian', u'muslim', u'leader', u'link', u'qaeda'] [u'barmera', u'gear', u'field', u'day'] [u'bashir', u'plan', u'appeal'] [u'brack', u'offer', u'assur', u'cancer', u'concern'] [u'bulldog', u'switch', u'showground'] [u'bulloch', u'replac', u'injur', u'murray', u'scotland', u'captain'] [u'bushrang', u'white', u'win', u'captainci'] [u'hazard', u'reduct', u'rethink'] [u'tougher', u'sentenc', u'work'] [u'china', u'stand', u'firm', u'currenc', u'valuat'] [u'cipollini', u'team', u'kick', u'tour', u'spain'] [u'cold', u'recept', u'kenyan', u'athlet', u'return'] [u'commission', u'appoint', u'troubl', u'wiluna', u'council'] [u'council', u'lament', u'freight'] [u'court', u'jail', u'iileg', u'fisher'] [u'crean', u'attack', u'rudd', u'bashir', u'comment'] [u'cretin', u'comment', u'cost', u'lawyer'] [u'croc', u'sight', u'spark', u'trap', u'effort'] [u'deliveryman', u'coke', u'attack'] [u'disgrac', u'address', u'parliament'] [u'link', u'lung', u'cancer'] [u'downer', u'defend', u'spend', u'condit'] [u'dragon', u'injuri', u'crisi', u'deepen'] [u'drought', u'take', u'toll', u'farmer'] [u'sight', u'council', u'disput'] [u'england', u'lose', u'gerrard', u'sinclair'] [u'environ', u'dept', u'highlight', u'port', u'dredg', u'fear'] [u'feder', u'fund', u'freez', u'calder', u'highway'] [u'continu', u'burn', u'sydney', u'school'] [u'servic', u'begin', u'kuringai', u'chase', u'burn'] [u'firm', u'ask', u'consid', u'bush', u'invest'] [u'post', u'saddam', u'iraqi', u'cabinet', u'swear'] [u'fisheri', u'look', u'oyster', u'concern'] [u'fisher', u'seismic', u'test', u'freez'] [u'focus', u'boost', u'migrant', u'number'] [u'footwear', u'manufactur', u'struggl', u'compet'] [u'fund', u'earmark', u'multi', u'purpos'] [u'fund', u'seek', u'help', u'injur', u'rugbi', u'player'] [u'govt', u'accus', u'dump', u'refuge', u'support'] [u'govt', u'weed', u'dishonest', u'veterinarian'] [u'great', u'scott', u'join', u'world', u'elit'] [u'green', u'claim', u'victori', u'firewood', u'campaign'] [u'group', u'plant', u'idea', u'save', u'rainforest'] [u'hanson', u'ettridg', u'appeal', u'fail', u'bail', u'bid'] [u'hanson', u'support', u'hold', u'weekend', u'vigil'] [u'hart', u'celebr', u'match'] [u'hickss', u'lawyer', u'challeng', u'guantanamo', u'imprison'] [u'high', u'court', u'reject', u'compo', u'claim', u'abattoir', u'worker'] [u'high', u'turnov', u'prove', u'cost', u'mine'] [u'highway', u'crash', u'claim', u'live'] [u'hill', u'wont', u'water', u'levi', u'stanc'] [u'hospit', u'revamp', u'welcom', u'news'] [u'howard', u'cautious', u'welcom', u'bashir', u'sentenc'] [u'illawarra', u'properti', u'price', u'rise'] [u'indonesia', u'call', u'bashir', u'debat'] [u'industri', u'trend', u'increas', u'busi'] [u'injuri', u'hamper', u'coach', u'say', u'roo'] [u'rat', u'hold'] [u'iran', u'recal', u'ambassador', u'britain'] [u'iraqi', u'shiit', u'leader', u'lay', u'rest', u'holi', u'citi'] [u'irrig', u'tell', u'deal', u'live', u'murray', u'plan'] [u'israel', u'consid', u'exil', u'arafat'] [u'jone', u'give', u'defenc', u'corrupt', u'claim'] [u'kelli', u'inquiri', u'tell', u'suicid', u'like'] [u'kerri', u'launch', u'presid'] [u'kirsten', u'shelv', u'retir', u'plan'] [u'kite', u'surfer', u'kill', u'hit', u'powerlin'] [u'knight', u'await', u'player', u'clearanc', u'cowboy', u'clash'] [u'labor', u'brothel', u'landlord', u'stand', u'asid'] [u'landhold', u'urg', u'boost', u'water', u'storag'] [u'liquor', u'store', u'trade', u'hour', u'plan', u'spark', u'concern'] [u'macleod', u'confid', u'adelaid', u'bounc'] [u'charg', u'stab'] [u'maradona', u'help', u'launch', u'wine', u'label'] [u'mayor', u'back', u'anti', u'terror', u'fund'] [u'mayor', u'highlight', u'drought', u'inequ'] [u'mayor', u'quit', u'prove', u'claim', u'mishandl'] [u'mayor', u'welcom', u'feder', u'fund', u'review'] [u'mcgradi', u'consid', u'suncoast', u'schooli', u'chang'] [u'melbourn', u'appoint'] [u'miner', u'fear', u'forest', u'cost', u'job'] [u'minist', u'reliev', u'east', u'hume', u'drought'] [u'moonwalk', u'popular', u'footag'] [u'life', u'leav', u'youth', u'scheme'] [u'potenti', u'indigen', u'tourism'] [u'rain', u'fall', u'albani'] [u'quiet', u'poki', u'vote'] [u'begin', u'alcohol', u'crackdown'] [u'mundin', u'fight', u'echol', u'bout'] [u'nation', u'award', u'mental', u'health', u'servic'] [u'navi', u'boat', u'name', u'recognis', u'albani'] [u'navi', u'ararat'] [u'near', u'death', u'near', u'albani', u'near', u'world', u'championship'] [u'need', u'prayer', u'ganesh', u'india'] [u'timber', u'bodi', u'lift', u'industri', u'hop'] [u'korea', u'parliament', u'back', u'nuclear', u'build'] [u'rest', u'drug', u'council'] [u'resurrect', u'raven'] [u'club', u'plan', u'poki', u'hike', u'challeng'] [u'deleg', u'find', u'long', u'lose', u'greek', u'relat'] [u'nurs', u'upset', u'review', u'recommend', u'delay'] [u'pasminco', u'face', u'lawsuit', u'sale'] [u'patient', u'urg', u'lobbi', u'govt', u'fund'] [u'player', u'vote', u'boycott', u'dalli', u'award'] [u'polic', u'continu', u'hunt', u'danger', u'escape'] [u'polic', u'fail', u'chang', u'magistr', u'decis'] [u'polic', u'street', u'break', u'cycl', u'crime'] [u'polic', u'investig', u'drive', u'shoot'] [u'polic', u'issu', u'warn', u'attack'] [u'polic', u'recognis', u'brave', u'effort'] [u'polic', u'shoot', u'mildura', u'raid'] [u'polic', u'search', u'lead', u'killer'] [u'prison', u'escap', u'label', u'disgrac'] [u'privat', u'lynch', u'sign', u'million', u'dollar', u'book', u'deal'] [u'prosecutor', u'seek', u'year', u'jail', u'bali', u'bomb'] [u'public', u'servant', u'accus', u'avoid', u'confront'] [u'public', u'input', u'plan', u'tweed', u'futur'] [u'public', u'relationship'] [u'qatar', u'put', u'sport', u'muscl'] [u'consid', u'terrorist', u'target'] [u'ralf', u'schumach', u'hospit'] [u'ralf', u'take', u'hospit', u'monza', u'crash'] [u'rann', u'question', u'health', u'fund'] [u'real', u'scrape', u'late', u'draw', u'villarr'] [u'region', u'communiti', u'share', u'road', u'safeti', u'fund'] [u'region', u'learn', u'film', u'make', u'secret'] [u'renam', u'competit', u'laxat', u'sound'] [u'report', u'highlight', u'bulk', u'bill', u'inequ'] [u'resid', u'meet', u'powerlin', u'health', u'concern'] [u'resort', u'owner'] [u'rider', u'rais', u'fund', u'care', u'group'] [u'road', u'peac', u'dead', u'arafat'] [u'robinson', u'fail', u'stop', u'defenc', u'defam'] [u'rotari', u'review', u'polici', u'wake', u'abus', u'claim'] [u'ruddock', u'tamworth', u'indigen', u'job', u'talk'] [u'russian', u'edg', u'opal'] [u'rugbi', u'offici', u'launch', u'racism', u'inquiri'] [u'scheme', u'aim', u'help', u'park', u'peopl'] [u'scott', u'join', u'world', u'elit'] [u'seatbelt', u'hitch', u'secur', u'court', u'fine'] [u'seven', u'profit', u'slide', u'job'] [u'seven', u'job', u'announc', u'drop', u'profit'] [u'share', u'market', u'continu', u'march', u'higher'] [u'share', u'market', u'slip', u'seven', u'tumbl'] [u'sheahan', u'dope', u'reduc', u'month'] [u'sheik', u'deni', u'link', u'qaeda', u'suspect'] [u'shepherd', u'produc', u'wind'] [u'singapor', u'use', u'chines', u'herb', u'acupunctur'] [u'skandali', u'free', u'play', u'warrior'] [u'skywest', u'consid', u'kununurra', u'servic'] [u'smaller', u'timber', u'volum', u'chip', u'sotico'] [u'snowtown', u'juri', u'continu', u'deliber'] [u'snowtown', u'juri', u'retir', u'second'] [u'sorenstam', u'compet', u'skin', u'game'] [u'south', u'african', u'plead', u'guilti', u'station', u'theft'] [u'south', u'west', u'launch', u'school', u'watch'] [u'spain', u'unchang', u'team', u'davi', u'semi', u'final'] [u'state', u'seek', u'guidanc', u'deal', u'terrorist'] [u'strong', u'support', u'farmer', u'start', u'scheme'] [u'strong', u'wind', u'bring', u'powerlin'] [u'surat', u'bear', u'rower', u'rethink', u'futur'] [u'surrey', u'stewart', u'special', u'send'] [u'tafe', u'resourc', u'share', u'hunter', u'firm'] [u'tahiti', u'start', u'rescu', u'oper', u'distress', u'ship'] [u'taiwan', u'remov', u'china', u'passport'] [u'tampa', u'refuge', u'begin', u'process'] [u'tampa', u'refuge', u'spend', u'night', u'australia'] [u'govt', u'continu', u'hunt', u'develop'] [u'tasmania', u'popul', u'face', u'long', u'term', u'declin'] [u'teacher', u'continu', u'protest'] [u'territori', u'repres', u'feder', u'parliament'] [u'terror', u'hotlin', u'govt', u'alert', u'labor', u'alarm'] [u'tfga', u'back', u'water', u'plan'] [u'thailand', u'charg', u'alleg', u'member'] [u'thorp', u'readi', u'fresh', u'start'] [u'children', u'kill', u'brisban', u'stab'] [u'kill', u'french', u'polynesian', u'ferri', u'capsiz'] [u'toddler', u'die'] [u'tran', u'tasman', u'rivalri', u'continu'] [u'arrest', u'omagh', u'bomb'] [u'typhoon', u'hit', u'hong', u'kong', u'guandong'] [u'typhoon', u'leav', u'trail', u'destruct', u'china'] [u'expect', u'hec', u'place', u'fall'] [u'union', u'back', u'allianc', u'file', u'return'] [u'court', u'overturn', u'death', u'sentenc'] [u'boost', u'marshal', u'program'] [u'seek', u'resolut', u'iraq'] [u'vail', u'reject', u'nat', u'leadership', u'assumpt'] [u'vandal', u'turn', u'attent', u'church'] [u'vidmar', u'hang', u'soccer', u'boot'] [u'wallabi', u'face', u'select', u'dilemma'] [u'wallabi', u'plan', u'darwin', u'trip'] [u'wallabi', u'head', u'darwin'] [u'welfar', u'group', u'govt', u'child', u'abus'] [u'weather', u'trigger', u'highway', u'closur'] [u'woman', u'die', u'highway', u'crash'] [u'abba', u'reappoint', u'erakat', u'chief', u'negoti'] [u'abtron', u'devic', u'advertis', u'mislead', u'court', u'rule'] [u'mazen', u'blame', u'peac', u'crisi', u'israel'] [u'mazen', u'face', u'parliament'] [u'accept', u'theori', u'mar', u'surfac', u'challeng'] [u'accus', u'cancel', u'dalli', u'award'] [u'govt', u'oper', u'commerci', u'forestri'] [u'question', u'spain', u'qaeda', u'suspect'] [u'dept', u'reject', u'blanket', u'footrot', u'approach'] [u'agricultur', u'job', u'shake', u'stir', u'emot'] [u'airlin', u'decoy', u'devic', u'consider'] [u'albani', u'grain', u'termin', u'plan', u'modifi'] [u'explain', u'undisclos', u'donat', u'govt'] [u'suggest', u'regist', u'sale', u'morn'] [u'angler', u'prepar', u'fish', u'season'] [u'anti', u'abortionist', u'execut'] [u'anti', u'virus', u'softwar', u'lose', u'fight'] [u'asteroid', u'collis', u'risk', u'downgrad'] [u'dead', u'injur', u'typhoon', u'batter'] [u'australian', u'sheikh', u'deni', u'involv'] [u'australian', u'suspect', u'qaeda', u'link'] [u'author', u'probe', u'trailer', u'mishap'] [u'ballarat', u'threaten', u'sack', u'garbag', u'stand'] [u'balloon', u'record', u'attempt', u'come', u'apart', u'seam'] [u'bashar', u'rescu', u'bangladesh', u'inning'] [u'board', u'consid', u'develop', u'issu'] [u'bomber', u'touch', u'perth'] [u'bomb', u'campaign', u'foil', u'kirkuk'] [u'boomer', u'toppl', u'tall', u'black'] [u'bosnich', u'lose', u'chelsea', u'appeal'] [u'brack', u'highlight', u'protract', u'rail', u'talk'] [u'brain', u'research', u'centr', u'open', u'melbourn'] [u'brazil', u'exempt', u'qualifi', u'rivaldo'] [u'break', u'hill', u'get', u'polic', u'chief'] [u'burn', u'rubber', u'domin', u'monza'] [u'busi', u'schooli'] [u'region', u'base', u'power', u'board'] [u'cancer', u'patient', u'get', u'oper', u'cancel'] [u'claim', u'australia', u'defenc', u'overcommit'] [u'claim', u'southcorp', u'loss', u'shouldnt', u'affect', u'grape', u'demand'] [u'clapton', u'want', u'life', u'like', u'roll', u'stone', u'keith'] [u'cochlear', u'chief', u'retir'] [u'communiti', u'farewel', u'cathol', u'bishop'] [u'concern', u'justic', u'fail', u'juvenil'] [u'confer', u'hear', u'nation', u'midwif', u'shortag'] [u'council', u'back', u'region', u'campaign'] [u'councillor', u'back', u'investig'] [u'crowd', u'favourit', u'weir', u'unfaz'] [u'defenc', u'analyst', u'critic', u'govt', u'defenc', u'fund'] [u'deputi', u'open', u'appeal', u'help', u'wool'] [u'deputi', u'explain', u'water', u'manag', u'plan'] [u'earlier', u'start', u'bushfir', u'danger', u'period'] [u'sick', u'eat', u'poison', u'food'] [u'england', u'recal', u'gun', u'franc'] [u'eurobodalla', u'join', u'poki', u'protest'] [u'expert', u'focus', u'effort', u'abalon', u'diseas', u'threat'] [u'faldo', u'aim', u'wind', u'ryder'] [u'farina', u'forc', u'chang', u'jamaica', u'clash'] [u'farmer', u'action', u'goobang'] [u'feder', u'govt', u'urg', u'address', u'south', u'west', u'woe'] [u'govt', u'plan', u'land', u'weapon', u'rang'] [u'report', u'acceler', u'recoveri'] [u'ferdinand', u'beckham', u'england'] [u'fireproof', u'cabl', u'safer', u'build'] [u'scheme', u'face', u'fund', u'uncertainti'] [u'fish', u'group', u'call', u'public', u'ownership', u'port'] [u'focus', u'solomon', u'rudd', u'tell'] [u'forest', u'agreement', u'prove', u'posit'] [u'worldcom', u'chief', u'plead', u'guilti', u'fraud'] [u'garcia', u'set', u'sight', u'automat', u'ryder', u'spot'] [u'partner', u'wwii', u'veteran', u'entitl', u'widow'] [u'georg', u'defend', u'elect', u'campaign', u'donat'] [u'govt', u'deni', u'offic', u'protect', u'pine'] [u'govt', u'question', u'defenc', u'properti', u'sale'] [u'govt', u'lobbi', u'industri', u'promot', u'speed'] [u'govt', u'reform', u'program'] [u'shortag', u'take', u'toll', u'hospit'] [u'griffith', u'launch', u'higher', u'educ', u'initi'] [u'group', u'hold', u'talk', u'lock', u'girl'] [u'scanner', u'spot', u'hide', u'bloat'] [u'habib', u'famili', u'shock', u'terror', u'contact', u'claim'] [u'hamilton', u'resid', u'unsurpris', u'sand', u'plant'] [u'hand', u'gun', u'steal', u'secur', u'compani'] [u'hanson', u'lawyer', u'lodg', u'bail', u'applic'] [u'health', u'insur', u'pull', u'cover', u'hospit'] [u'high', u'wind', u'caus', u'havoc', u'south', u'east'] [u'hilton', u'quit', u'wake', u'brothel'] [u'hockeyroo', u'hudson', u'sidelin', u'knee', u'injuri'] [u'hollioak', u'mile', u'chariti', u'trip'] [u'hop', u'miss', u'safe'] [u'hormon', u'help', u'treat', u'obes'] [u'hospit', u'staff', u'support', u'protest'] [u'hous', u'price', u'rise', u'june', u'quarter'] [u'hussey', u'leav'] [u'icac', u'probe', u'clear', u'transport', u'minist'] [u'indian', u'boat', u'capsiz', u'fear', u'drown'] [u'indigen', u'servic', u'pick', u'north', u'rout'] [u'indigen', u'liaison', u'team', u'begin', u'fremantl'] [u'industri', u'dismiss', u'govt', u'tighter', u'control'] [u'intellig', u'staff', u'fear', u'weapon', u'claim'] [u'strong', u'drug', u'confer'] [u'ireland', u'doubt', u'scotland', u'match'] [u'isra', u'soldier', u'kill', u'palestinian', u'gunfir'] [u'isra', u'warplan', u'strike', u'south', u'lebanon'] [u'jackson', u'disappoint', u'sluggish', u'ticket', u'sale'] [u'joint', u'custodi', u'children', u'wont', u'solv', u'troubl'] [u'bali', u'bomb', u'suspect', u'say', u'real', u'terrorist'] [u'king', u'head', u'inquiri', u'alleg', u'springbok', u'racism'] [u'kitano', u'win', u'film', u'festiv', u'special', u'award'] [u'landhold', u'continu', u'water', u'levi', u'protest'] [u'latest', u'tape', u'probabl', u'saddam', u'voic'] [u'lion', u'regain', u'michael', u'pike'] [u'lopez', u'affleck', u'marri', u'septemb'] [u'magistr', u'ask', u'toler', u'children'] [u'jail', u'acid', u'attempt', u'murder'] [u'matilda', u'gear', u'england', u'clash'] [u'refus', u'play', u'match', u'york'] [u'militari', u'compo', u'law', u'revamp'] [u'miner', u'take', u'explor', u'portfolio'] [u'mother', u'charg', u'wil', u'murder', u'babi'] [u'motorway', u'worker', u'stage', u'hour', u'strike'] [u'question', u'rail', u'servic', u'chang'] [u'say', u'wrongdo', u'campaign', u'donat'] [u'presenc', u'chang', u'poki', u'vote'] [u'mundin', u'world', u'champion'] [u'mundin', u'champ'] [u'murray', u'river', u'mouth', u'wash'] [u'featur', u'fail', u'gold', u'coast', u'film', u'slump'] [u'legal', u'board', u'plan', u'lift', u'lawyer', u'fee'] [u'zealand', u'rat', u'leav', u'unchang'] [u'cancel', u'dalli', u'award'] [u'cancel', u'dalli', u'award'] [u'govern', u'defend', u'busway', u'budget', u'blowout'] [u'pass', u'rape', u'trial', u'law'] [u'nurs', u'boost', u'plan', u'warren', u'hospit'] [u'olymp', u'bronz', u'medallist', u'lagat', u'deni', u'dope'] [u'opal', u'shine', u'hungari'] [u'ovarian', u'cancer', u'aust', u'highest', u'research'] [u'pair', u'fin', u'assist', u'woomera', u'escape'] [u'pakistan', u'reject', u'bangladesh', u'discrimin', u'charg'] [u'plan', u'consid', u'zero', u'alcohol', u'level', u'plater'] [u'plane', u'maker', u'seek', u'airport', u'space'] [u'play', u'final', u'resum', u'open'] [u'poland', u'take', u'control', u'iraq', u'section'] [u'polic', u'appeal', u'help', u'avoca', u'shoot', u'incid'] [u'polic', u'arrest', u'suspect', u'gangster', u'sydney'] [u'polic', u'forc', u'wait', u'question', u'tripl', u'murder'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'probe', u'tripl', u'murder', u'neighbour', u'mourn'] [u'polic', u'scheme', u'help', u'break', u'barrier'] [u'port', u'readi', u'final', u'action'] [u'powel', u'push', u'resolut', u'iraq'] [u'predict', u'better', u'crop', u'season'] [u'premier', u'dismay', u'cut', u'radio', u'bulletin'] [u'protest', u'air', u'close', u'hour', u'plan'] [u'question', u'agricultur', u'job'] [u'public', u'urg', u'amidst', u'bulk', u'bill', u'debat'] [u'govt', u'overtak', u'rest', u'stop', u'plan'] [u'rain', u'forc', u'rat'] [u'rainfal', u'determin', u'water', u'restrict', u'need'] [u'rain', u'cash', u'german', u'autobahn', u'spark', u'traffic'] [u'rain', u'offer', u'hope', u'grain', u'farmer'] [u'ralf', u'schumach', u'leav', u'hospit', u'test', u'crash'] [u'resourc', u'stock', u'push', u'ord', u'higher'] [u'retail', u'angri', u'prison', u'shop', u'escap'] [u'retir', u'deserv', u'entitl', u'howard'] [u'road', u'crash', u'leav', u'dead'] [u'roddick', u'roar', u'rain', u'delay'] [u'replac', u'kefu', u'number'] [u'rokocoko', u'expect', u'reach', u'height', u'world'] [u'romanian', u'student', u'arrest', u'blaster', u'worm'] [u'ruddock', u'pursu', u'appeal', u'court', u'rule'] [u'rumsfeld', u'arriv', u'unannounc', u'baghdad'] [u'rumsfeld', u'head', u'middl', u'east', u'unannounc', u'trip'] [u'rural', u'centr', u'site', u'decis', u'week', u'away'] [u'safeti', u'plan', u'consid', u'accid', u'cycl'] [u'soccer', u'field', u'replac', u'adelaid', u'citi'] [u'sawmil', u'offer', u'yarloop', u'assur'] [u'schwarzenegg'] [u'scientist', u'basin', u'spring'] [u'select', u'surpris', u'adelaid', u'drop', u'perri'] [u'servic', u'industri', u'boost', u'econom', u'recoveri'] [u'seven', u'cut', u'ringbark', u'local', u'rann', u'say'] [u'shabbir', u'rip', u'bangladesh', u'late', u'order'] [u'singapor', u'sampl', u'penola', u'beer'] [u'snowtown', u'juri', u'retir', u'even'] [u'socceroo', u'battl', u'injuri', u'ahead', u'jamaica', u'clash'] [u'south', u'african', u'turn', u'englishman', u'hop'] [u'sport', u'club', u'get', u'sale', u'approv'] [u'street', u'block', u'emerg'] [u'stuart', u'urg', u'player', u'avoid', u'boycott'] [u'studi', u'question', u'reef', u'tourism', u'impact'] [u'stuff', u'huski', u'nation', u'archiv', u'shop', u'list'] [u'surfac', u'missil', u'seiz', u'saudi', u'arabia'] [u'survey', u'highlight', u'bushfir', u'busi', u'cost'] [u'survey', u'show', u'local', u'govt', u'posit', u'safe'] [u'survey', u'seek', u'public', u'input', u'telstra', u'sale'] [u'tackl', u'corrupt', u'lose', u'tell'] [u'advoc', u'applaud', u'rule', u'right'] [u'teacher', u'help', u'stave', u'abus', u'claim'] [u'thai', u'court', u'refus', u'bail', u'alleg', u'member'] [u'thousand', u'flee', u'shoot', u'central', u'liberia'] [u'transport', u'dept', u'airport', u'breach'] [u'tripl', u'murder', u'suspect', u'hospit', u'guard'] [u'dead', u'crash'] [u'hospitalis', u'magpi', u'attack'] [u'travel', u'agent', u'tast', u'sunshin', u'coast'] [u'welcom', u'draft', u'resolut', u'iraq'] [u'hop', u'super', u'cow', u'creat', u'elit', u'dairi', u'herd'] [u'union', u'fear', u'staff', u'cut', u'downgrad', u'telstra', u'servic'] [u'unsaf', u'highway', u'tree'] [u'defenc', u'staff', u'await', u'secur', u'check'] [u'uruguay', u'australia', u'meet', u'discuss', u'viarsa', u'captur'] [u'anti', u'abort', u'killer', u'execut'] [u'defend', u'aung', u'hunger', u'strike'] [u'say', u'north', u'korea', u'threaten', u'nuclear', u'test'] [u'seek', u'extens', u'chemic', u'arm', u'destruct'] [u'vaughan', u'confid', u'find', u'win', u'touch'] [u'polic', u'review', u'gangland', u'task', u'forc'] [u'wallabi', u'select', u'youth', u'experi'] [u'wallabi', u'selector', u'tip', u'pull', u'surpris'] [u'water', u'user', u'tell', u'face', u'restrict'] [u'white', u'free', u'pend', u'hear'] [u'wildcat', u'sign', u'import', u'jackson'] [u'woman', u'sue', u'state', u'year', u'abus'] [u'kill', u'passeng', u'truck', u'fall', u'ditch'] [u'boost', u'earmark', u'local', u'govt', u'merger'] [u'govt', u'appoint', u'chief', u'nurs'] [u'activ', u'fungus', u'affect', u'global', u'warm', u'studi'] [u'land', u'releas', u'rais', u'environment', u'concern'] [u'adelaid', u'tast', u'sampl', u'state', u'biggest', u'opera'] [u'adler', u'plead', u'guilti', u'stock', u'market', u'charg'] [u'advis', u'iraq', u'say', u'slow', u'bureaucraci', u'fail'] [u'agforc', u'seek', u'sheep', u'industri', u'support'] [u'agricultur', u'crop', u'easier', u'access', u'china'] [u'agricultur', u'minist', u'attack', u'evict', u'notic'] [u'albani', u'resid', u'prais', u'water', u'conserv'] [u'ord', u'dip', u'investor', u'cash'] [u'seek', u'ruddock', u'discret', u'visa', u'case'] [u'aussi', u'domin', u'english', u'counti', u'comp'] [u'aust', u'prepar', u'mock', u'terrorist', u'attack'] [u'australia', u'agre', u'intercept', u'plan'] [u'australian', u'alleg', u'terrorist', u'link'] [u'avellino', u'await', u'suprem', u'court', u'decis'] [u'ayr', u'urg', u'crow', u'fan', u'snap', u'ticket'] [u'banger', u'pressur', u'pakistan', u'final', u'test'] [u'bangladesh', u'eye', u'test'] [u'bangladesh', u'slump', u'second', u'inning'] [u'battl', u'hewitt', u'claim', u'second'] [u'bermuda', u'brace', u'power', u'hurrican'] [u'fight', u'sharehold', u'rebellion'] [u'founder', u'stand', u'grind', u'board', u'meet'] [u'birdsvill', u'gear', u'race'] [u'bomber', u'dump', u'mercuri', u'freo', u'showdown'] [u'bomb', u'explod', u'athen', u'court', u'build'] [u'boomer', u'complet', u'tall', u'black', u'whitewash'] [u'brave', u'ralf', u'hope', u'monza', u'return'] [u'british', u'polic', u'seiz', u'billion', u'drug', u'money'] [u'bronco', u'delay', u'berrigan', u'fit'] [u'bronco', u'edg', u'dragon', u'break'] [u'burdekin', u'upgrad', u'provid', u'green', u'energi'] [u'busi', u'group', u'china', u'highlight', u'trade'] [u'cairn', u'polic', u'launch', u'crackdown'] [u'communiti', u'chang', u'jabiru', u'plan'] [u'cano', u'visitor', u'kakadu', u'fall'] [u'carnarvon', u'polic', u'pleas', u'crime', u'strategi'] [u'carrathool', u'shire', u'councillor', u'die', u'heart', u'attack'] [u'scan', u'like', u'devic', u'search', u'gold', u'deposit'] [u'chang', u'receiv', u'enjoy', u'farewel', u'sendoff'] [u'china', u'okay', u'tung', u'withdraw', u'subvers'] [u'chines', u'acrobat', u'walk', u'niagara', u'fall'] [u'chines', u'research', u'confirm', u'sar', u'come', u'anim'] [u'claim', u'illeg', u'prostitut', u'control'] [u'clijster', u'davenport', u'capriati', u'henin', u'roll', u'semi'] [u'coff', u'harbour', u'council', u'call', u'western', u'bypass'] [u'colombian', u'singer', u'sweep', u'award', u'latin', u'grammi'] [u'comedi', u'battl', u'rival', u'network', u'high', u'court'] [u'commerc', u'attack', u'govt', u'train', u'commit'] [u'convict', u'killer', u'face', u'court', u'escap'] [u'council', u'owner', u'overdu', u'rego'] [u'council', u'want', u'speed', u'limit', u'unchang'] [u'court', u'give', u'avellino'] [u'court', u'show', u'video', u'bomb', u'blast'] [u'crean', u'accus', u'fail', u'secur'] [u'cresswel', u'play', u'okeef', u'rule', u'swan'] [u'crow', u'mcgregor', u'doubt', u'virus'] [u'custom', u'comput', u'contain', u'import'] [u'custom', u'comput', u'steal', u'sydney', u'airport'] [u'differenti', u'rat', u'see', u'workabl', u'lgaq'] [u'disabl', u'servic', u'takeov', u'mean', u'staff', u'reappli'] [u'djerrkura', u'welcom', u'health', u'corpor', u'head'] [u'don', u'elimin', u'docker'] [u'door', u'open', u'eel', u'bronco', u'slump'] [u'duti', u'free', u'spirit', u'potenti', u'weapon', u'terror'] [u'industri', u'crack', u'price'] [u'guerrouj', u'free', u'face', u'rematch', u'baala'] [u'sight', u'sixth', u'season'] [u'figur', u'charg', u'child', u'prostitut'] [u'figur', u'talk', u'polic', u'brothel'] [u'expert', u'consid', u'fli', u'youth', u'mental', u'health', u'servic'] [u'father', u'charg', u'tripl', u'murder'] [u'father', u'guilti', u'murder', u'babi'] [u'final', u'prepar', u'underway', u'crocodil'] [u'firefight', u'battl', u'blaze', u'near', u'dutson', u'down'] [u'newsread', u'jail', u'drug', u'charg'] [u'world', u'champion', u'museeuw', u'drug', u'swoop'] [u'kill', u'chines', u'firework', u'factori', u'blast'] [u'franc', u'germani', u'cool', u'draft', u'rumsfeld', u'iraq'] [u'franc', u'germani', u'readi', u'draft', u'iraq'] [u'fund', u'problem', u'cast', u'doubt', u'ballet', u'compani'] [u'galong', u'resid', u'wari', u'propos', u'expans'] [u'gibernau', u'look', u'turn', u'tabl', u'rossi', u'portug'] [u'girl', u'sexual', u'assault', u'park'] [u'go', u'wind', u'actor', u'brook', u'die', u'age'] [u'govt', u'urg', u'commit', u'mental', u'health', u'fund'] [u'guerrilla', u'kill', u'lay', u'explos', u'iraq'] [u'hanson', u'jail', u'creat', u'nation', u'surg'] [u'health', u'indigen', u'children', u'caus', u'concern'] [u'health', u'worker', u'optimist', u'manag', u'shake'] [u'heritag', u'build', u'sell', u'launceston'] [u'hewitt', u'confid', u'go'] [u'hewitt', u'oust', u'paradorn', u'reach', u'quarter', u'final'] [u'hewitt', u'open'] [u'highway', u'nois'] [u'hong', u'kong', u'withdraw', u'anti', u'subvers', u'legisl'] [u'hop', u'high', u'birthday', u'parad', u'support'] [u'howard', u'dismiss', u'indonesian', u'comment', u'king'] [u'hunter', u'mentor', u'program', u'help', u'indigen', u'teen'] [u'industri', u'warn', u'sit', u'tasmania', u'overfish'] [u'industri', u'warn', u'nation', u'shortag', u'midwiv'] [u'inquiri', u'reopen', u'airport', u'secur', u'breach'] [u'internet', u'email', u'worm', u'target', u'british'] [u'wada', u'investig', u'young', u'dope', u'case'] [u'irrig', u'group', u'welcom', u'water', u'boost'] [u'isra', u'soldier', u'kill', u'wound', u'nablus'] [u'israel', u'reject', u'mazen', u'speech'] [u'italian', u'berlusconi', u'write', u'love', u'song'] [u'italian', u'say', u'countri', u'judg', u'mental', u'disturb'] [u'judg', u'iraq', u'probe', u'warn', u'safe'] [u'judg', u'permit', u'snowtown', u'juror', u'phone', u'home'] [u'kalgoorli', u'book', u'week'] [u'kite', u'surf', u'accid', u'spark', u'proper'] [u'krige', u'straeuli', u'deni', u'bok', u'racism', u'claim'] [u'lifestyl', u'item', u'strike', u'refund', u'list', u'privat'] [u'liverpool', u'diouf', u'cop', u'spit', u'fine'] [u'lyell', u'highway', u'clear', u'tomorrow'] [u'jail', u'rap', u'girlfriend'] [u'maryborough', u'prison', u'return', u'normal', u'follow'] [u'matilda', u'england'] [u'mcdonald', u'obes', u'suit', u'throw'] [u'melbourn', u'airport', u'postal', u'centr', u'deal', u'near', u'abbott'] [u'mercuri', u'dump', u'freo', u'clash'] [u'methadon', u'theft', u'spark', u'polic', u'warn'] [u'ministeri', u'discret', u'safeti', u'mechan', u'inquiri'] [u'minist', u'launch', u'school', u'revamp'] [u'mismanag', u'caus', u'uni', u'money', u'problem'] [u'incent', u'bush'] [u'support', u'drought', u'impact', u'busi'] [u'test', u'struggl', u'mcgee'] [u'nalbandian', u'upset', u'feder'] [u'naracoort', u'obstetrician', u'servic'] [u'nat', u'cast', u'doubt', u'agricultur', u'job'] [u'boy', u'prove', u'jamaica'] [u'cours', u'train', u'medico', u'help', u'refuge', u'oversea'] [u'domest', u'violenc', u'refug', u'derbi'] [u'technolog', u'put', u'council', u'meet', u'onlin'] [u'norway', u'black', u'polar', u'bear', u'get', u'realist', u'makeov'] [u'sign', u'build', u'industri', u'slowdown'] [u'cancel', u'dalli', u'award'] [u'govt', u'creat', u'nois', u'highway', u'fund'] [u'polic', u'invit', u'train', u'counter'] [u'airlin', u'take', u'control', u'airlin'] [u'govt', u'seek', u'wharf'] [u'adelaid', u'elector', u'seat', u'abolish'] [u'polic', u'search', u'miss'] [u'opal', u'close', u'tour', u'loss', u'franc'] [u'owen', u'put', u'faith', u'rooney'] [u'patrol', u'boat', u'welcom', u'home', u'solomon', u'stint'] [u'phoenix', u'tbird', u'squar'] [u'phoenix', u'thunderbird', u'season'] [u'player', u'hold', u'award', u'ceremoni'] [u'polic', u'continu', u'escape', u'hunt'] [u'polic', u'initi', u'request', u'speak', u'qaeda'] [u'polic', u'interview', u'tripl', u'murder'] [u'polic', u'offic', u'keep', u'licenc', u'fatal', u'road', u'crash'] [u'polic', u'probe', u'vehicl', u'arson'] [u'polic', u'wait', u'question', u'tripl', u'murder'] [u'polic', u'focus', u'domest', u'violenc'] [u'pollock', u'strike', u'england', u'ralli'] [u'port', u'advoc', u'super', u'yacht', u'cruis', u'ship'] [u'public', u'urg', u'help', u'graffiti', u'case'] [u'state', u'reject', u'compani', u'poach', u'pact'] [u'race', u'pigeon', u'feather', u'chariti', u'nest'] [u'raikkonen', u'youngest', u'champion'] [u'rain', u'allow', u'fill', u'boost'] [u'region', u'women', u'drive', u'micro', u'busi', u'sector'] [u'research', u'find', u'exercis', u'surgeri', u'aid'] [u'resid', u'dive', u'pool', u'ownership', u'despit', u'water'] [u'resid', u'merger', u'plan'] [u'rockhampton', u'short', u'crisi', u'accommod'] [u'ronaldo', u'world', u'qualifi', u'debut'] [u'ruddock', u'inquiri', u'examin', u'intervent'] [u'ruddock', u'discret', u'senat', u'scrutini'] [u'machin', u'gibb', u'lead', u'south', u'africa', u'assault'] [u'russian', u'rediscov', u'love', u'read'] [u'magistr', u'appear', u'court', u'crimin'] [u'scheme', u'fight', u'gambl', u'woe', u'ethnic', u'communiti'] [u'schizophrenia', u'manic', u'depress', u'common', u'genet'] [u'scottsdal', u'critic', u'govern', u'lack'] [u'scott', u'stumbl', u'tanaka', u'lead', u'canada'] [u'scott', u'prove', u'fit', u'matthew'] [u'secur', u'review', u'custom', u'theft'] [u'sidelin', u'sele', u'eye', u'open', u'comeback'] [u'south', u'african', u'scientist', u'work', u'viagra', u'tree'] [u'spanish', u'station', u'slash', u'quarter', u'staff'] [u'steal', u'coffe', u'sydney', u'restaur'] [u'steal', u'comput', u'secret', u'govt', u'say'] [u'street', u'carniv', u'launch', u'alic', u'spring', u'festiv'] [u'strong', u'earthquak', u'hit', u'zealand'] [u'survey', u'consid', u'indigen', u'jail', u'rate'] [u'suspect', u'toothfish', u'poacher', u'escort', u'africa'] [u'branch', u'want', u'school', u'join', u'anzac', u'march'] [u'teen', u'stand', u'trial', u'crossbow', u'attack'] [u'wound', u'attack', u'sunni', u'mosqu', u'baghdad'] [u'timber', u'firm', u'worker', u'chang'] [u'toll', u'lift', u'offer', u'price', u'takeov', u'rail'] [u'tour', u'champ', u'armstrong', u'split', u'wife'] [u'trio', u'qualifi', u'year', u'end', u'championship'] [u'truck', u'driver', u'convict', u'fatal', u'crash'] [u'secretari', u'general', u'confid', u'iraq', u'agreement'] [u'uruguay', u'demand', u'fish', u'inspector', u'releas'] [u'convoy', u'attack', u'flashpoint', u'iraqi', u'town'] [u'servic', u'sector', u'maintain', u'record', u'high'] [u'freez', u'asset', u'suspect'] [u'util', u'execut', u'highest', u'pay', u'public', u'servant'] [u'veteran', u'welcom', u'patrol', u'boat'] [u'boost', u'diseas', u'prepared'] [u'wagga', u'golf', u'club', u'okay', u'merger'] [u'waikeri', u'get', u'athlet', u'oval'] [u'push', u'expans', u'servic'] [u'waterhous', u'regain', u'licenc'] [u'water', u'return', u'lake', u'boga', u'year'] [u'western', u'dairi', u'look', u'chang', u'constitut'] [u'wine', u'industri', u'renew', u'push', u'relief'] [u'woden', u'intersect', u'canberra', u'worst', u'crash', u'sit'] [u'woman', u'die', u'effect', u'chemotherapi', u'court'] [u'world', u'pitch', u'invad', u'face', u'fin', u'ban'] [u'seek', u'access', u'qaeda', u'suspect', u'june', u'govt'] [u'airlin', u'consid', u'anti', u'missil', u'technolog'] [u'jazeera', u'criticis', u'spain', u'arrest', u'star'] [u'allan', u'shadow', u'howel', u'take', u'halfway', u'lead'] [u'baffl', u'matilda', u'backflip'] [u'dead', u'milit', u'storm', u'indian', u'kashmir'] [u'kill', u'wound', u'kashmir', u'blast'] [u'aung', u'hunger', u'strike', u'cross'] [u'aust', u'navi', u'guard', u'renegad', u'uruguayan', u'fish', u'ship'] [u'bennett', u'turn', u'beat', u'bronco'] [u'surviv', u'sharehold', u'vote'] [u'bodi', u'miss', u'japanes', u'tourist'] [u'bond', u'seizur', u'show', u'dirti', u'money', u'busi'] [u'britain', u'beef', u'militari', u'forc', u'iraq'] [u'british', u'airway', u'resum', u'flight', u'saudi', u'arabia'] [u'british', u'bomb', u'dispos', u'expert', u'kill', u'iraq', u'ambush'] [u'camplin', u'defend', u'titl'] [u'carr', u'consid', u'push', u'feder', u'arena'] [u'clijster', u'reach', u'open', u'final'] [u'crow', u'eagl', u'season'] [u'crow', u'miss', u'johncock', u'mcgregor', u'crucial', u'final'] [u'discredit', u'argentina', u'kick', u'world'] [u'doctor', u'group', u'warn', u'govern'] [u'dog', u'storm', u'warrior', u'notch', u'win'] [u'east', u'timor', u'villag', u'build', u'memori', u'aussi'] [u'nuclear', u'program', u'guarante', u'secur'] [u'fan', u'earli', u'glimps', u'georg', u'music'] [u'hunt', u'link', u'threat'] [u'feder', u'unlik', u'carr', u'say'] [u'ferrero', u'knock', u'hewitt', u'open', u'agassi'] [u'bok', u'spokesman', u'ratchet', u'race'] [u'miss', u'bermuda', u'hurrican'] [u'leak', u'kill', u'baghdad'] [u'govern', u'begin', u'long', u'await', u'work', u'safeti', u'review'] [u'henin', u'hardenn', u'set', u'belgian', u'final'] [u'hewitt', u'open'] [u'injuri', u'send', u'hewitt', u'york'] [u'histori', u'repeat', u'karlsson'] [u'isra', u'missil', u'hit', u'hous', u'gaza', u'citi', u'wit'] [u'israel', u'kill', u'senior', u'hama', u'command', u'west', u'bank'] [u'job', u'data', u'bond', u'push', u'stock'] [u'kashmir', u'market', u'blast', u'kill'] [u'cool', u'head', u'eriksson', u'tell', u'england'] [u'kerr', u'injuri', u'forc', u'scotland', u'late', u'chang'] [u'lang', u'park', u'surfac', u'replac'] [u'libya', u'tunisia', u'launch', u'joint', u'host', u'world'] [u'lion', u'hold', u'edg', u'thriller'] [u'lion', u'hop', u'injuri', u'respit', u'lethal'] [u'loss', u'hard', u'capriati'] [u'majest', u'inzamam', u'shatter', u'bangladeshi', u'hop'] [u'charg', u'ireland', u'omagh', u'bomb'] [u'kill', u'sydney', u'brawl'] [u'kill', u'injur', u'crash', u'park'] [u'risk', u'blain', u'damag', u'thame', u'starvat', u'stunt'] [u'melbourn', u'raid', u'uncov', u'pirat', u'dvds'] [u'address', u'parliament', u'child'] [u'mutola', u'win', u'jackpot', u'white', u'track'] [u'zealand', u'stock', u'gain'] [u'opposit', u'stand', u'child', u'claim'] [u'opposit', u'reshuffl', u'cabinet'] [u'ride', u'tour', u'honour', u'say', u'team', u'manag'] [u'kill', u'hurt', u'disneyland', u'roller', u'coaster'] [u'nation', u'pose', u'limit', u'threat', u'nation', u'parti'] [u'outback', u'buzz', u'birdsvill'] [u'palestinian', u'mazen', u'submit', u'resign'] [u'palestinian', u'resign', u'saturday', u'erakat'] [u'palma', u'drop', u'america', u'venu'] [u'phoenix', u'rise', u'occas', u'avellino'] [u'pie', u'overrun', u'lion', u'thriller'] [u'polic', u'probe', u'murder', u'southern', u'town'] [u'polic', u'seiz', u'thousand', u'pirat', u'dvds'] [u'polic', u'work', u'identifi', u'dead', u'sydney'] [u'power', u'hurrican', u'fabian', u'hit', u'bermuda'] [u'prison', u'releas', u'program', u'suspend'] [u'protest', u'maintain', u'prison', u'vigil', u'support', u'hanson'] [u'opposit', u'hit', u'abbott', u'rural'] [u'queensland', u'polic', u'probe', u'separ', u'murder'] [u'rossi', u'take', u'provision', u'pole', u'estoril'] [u'rugbi', u'boss', u'climb', u'maltida'] [u'charg', u'stab', u'assault'] [u'economi', u'surg', u'rann'] [u'scientist', u'retract', u'ecstasi', u'brain', u'damag', u'studi'] [u'snowtown', u'juri', u'resum', u'deliber', u'tomorrow'] [u'snowi', u'mountain', u'bushfir', u'burn', u'control'] [u'spanish', u'intellig', u'servic', u'say', u'link'] [u'storm', u'bulldog', u'hold', u'half', u'time', u'lead'] [u'survey', u'find', u'million', u'drug', u'abus'] [u'sustain', u'plan', u'stifl', u'innov'] [u'tamar', u'river', u'silt', u'dredg', u'start', u'novemb'] [u'paper', u'criticis', u'bottl', u'cannon', u'instruct'] [u'team', u'manag', u'hit', u'organis', u'cipo'] [u'thirti', u'kill', u'northern', u'pakistan', u'flash', u'flood'] [u'coast'] [u'tokyo', u'disneyland', u'halt', u'roller', u'coaster'] [u'dead', u'crash', u'tree'] [u'injur', u'bunburi', u'plane', u'crash'] [u'liberia', u'envoy', u'say', u'taylor', u'steal', u'million'] [u'japan', u'australia', u'hold', u'secur', u'talk'] [u'amend', u'draft', u'resolut', u'iraq'] [u'soldier', u'hurt', u'mosul', u'grenad', u'attack', u'wit'] [u'vieri', u'pass', u'face', u'wale'] [u'polic', u'visit', u'pursuit', u'crash', u'victim', u'famili'] [u'warrior', u'west', u'half', u'time'] [u'warrior', u'outclass', u'west'] [u'waugh', u'edg', u'kefu', u'eal', u'medal'] [u'webb', u'take', u'lead', u'tulsa'] [u'unabl', u'live', u'mean', u'alston', u'say'] [u'afghan', u'presid', u'call', u'pakistan', u'support'] [u'agassi', u'ferrero', u'world', u'number'] [u'aceh', u'rebel', u'base', u'occupi', u'indonesian'] [u'allan', u'trail', u'tanaka', u'canadian', u'lead'] [u'qaeda', u'tape', u'vow', u'devast', u'attack'] [u'aussi', u'woodbridg', u'near', u'doubl', u'record'] [u'australia', u'lebanon', u'discuss', u'extradit', u'request'] [u'australia', u'ralli', u'go', u'wire'] [u'aust', u'wheat', u'contract', u'ahead', u'iraq'] [u'brave', u'henin', u'lift', u'open', u'titl'] [u'bush', u'approv', u'fall', u'poll'] [u'bush', u'rememb', u'sept', u'white', u'hous', u'lawn'] [u'boost', u'opportun', u'indigen'] [u'camplin', u'buller'] [u'capirossi', u'grab', u'portugues', u'pole'] [u'china', u'evacu', u'follow', u'flood', u'threat'] [u'committe', u'consid', u'nation', u'anti', u'terror'] [u'cum', u'helenus', u'trainer'] [u'dad', u'work', u'longer', u'hour', u'want', u'famili', u'time'] [u'democrat', u'agre', u'superannu', u'packag', u'chang'] [u'donat', u'need', u'blood', u'bank', u'run'] [u'ecuador', u'world', u'flier', u'argentina', u'hold'] [u'egypt', u'tri', u'siev', u'death'] [u'ellison', u'confirm', u'independ', u'review', u'custom'] [u'ellison', u'defend', u'action', u'qaeda', u'suspect'] [u'england', u'final', u'voller', u'fume', u'german', u'flop'] [u'name', u'hama', u'terrorist', u'organis'] [u'evacu', u'mull', u'london', u'prepar', u'terror'] [u'ferrero', u'nalbandian', u'american', u'bias', u'open'] [u'dead', u'indonesian', u'ferri', u'sink'] [u'british', u'minist', u'back', u'scold', u'blair'] [u'govern', u'urg', u'greater', u'effort', u'protect'] [u'govt', u'pressur', u'senat', u'cross', u'media', u'ownership'] [u'govt', u'promot', u'internet', u'travel', u'advisori', u'site'] [u'hama', u'leader', u'promis', u'unforgett', u'lesson'] [u'hama', u'vow', u'aveng', u'assassin', u'attempt'] [u'hanson', u'support', u'continu', u'prison', u'vigil'] [u'better', u'athen', u'jana'] [u'ireland', u'world', u'hop', u'murphi'] [u'iron', u'stomach', u'norwegian', u'gulp', u'oyster', u'record'] [u'juri', u'listen', u'snowtown', u'victim'] [u'kewel', u'lazaridi', u'socceroo'] [u'liberia', u'halt', u'peacekeep', u'unruli', u'interior'] [u'lion', u'sweat', u'voss', u'knee', u'knock'] [u'kill', u'crash', u'polic', u'pursuit'] [u'matilda', u'edg', u'scot'] [u'ministeri', u'intervent', u'immigr'] [u'missil', u'miss', u'plane', u'baghdad'] [u'briton', u'want', u'blair', u'resign', u'poll'] [u'murphi', u'injuri', u'mar', u'ireland'] [u'museeuw', u'miss', u'world', u'championship'] [u'nation', u'museum', u'board', u'divid', u'review', u'critic'] [u'nervous', u'wait', u'continu', u'barrow', u'plant'] [u'newcastl', u'rope', u'cowboy'] [u'law', u'nippl', u'genit', u'pierc', u'minor'] [u'websit', u'aim', u'connect', u'youth', u'govt'] [u'ireland', u'main', u'protest', u'parti', u'reject', u'peac'] [u'norway', u'solberg', u'win', u'ralli', u'australia'] [u'oceania', u'soccer', u'boss', u'scarsella', u'resign'] [u'strike', u'earli', u'vuelta'] [u'outback', u'return', u'normal', u'birdsvill'] [u'penrith', u'crown', u'minor', u'premier'] [u'discuss', u'aust', u'control', u'downer'] [u'polic', u'arrest', u'connect', u'sydney', u'death'] [u'polic', u'seek', u'runaway', u'accid'] [u'port', u'final', u'agoni', u'continu'] [u'posit', u'sign', u'drought', u'recoveri'] [u'prestig', u'scar', u'spain', u'month'] [u'primari', u'student', u'beat', u'senior', u'robot'] [u'qanta', u'plane', u'make', u'emerg', u'land'] [u'youth', u'group', u'worri', u'propos', u'pierc', u'law'] [u'rampant', u'england', u'french', u'style'] [u'report', u'highlight', u'increas', u'threaten'] [u'research', u'identifi', u'brain', u'heal', u'protein'] [u'restor', u'flow', u'boost', u'snowi', u'river', u'health'] [u'roddick', u'heroic', u'set', u'ferrero', u'final', u'clash'] [u'roddick', u'heroic', u'ferrero', u'final', u'clash'] [u'romero', u'head', u'swiss', u'golden'] [u'roo', u'talk', u'tough', u'swan', u'prepar', u'port'] [u'rooster', u'good', u'raider'] [u'russian', u'film', u'win', u'golden', u'lion', u'venic', u'festiv'] [u'unit', u'church', u'discuss', u'minist'] [u'star', u'power', u'hit', u'toronto', u'film', u'fest'] [u'talk', u'hope', u'resolv', u'muja', u'power', u'station', u'disput'] [u'score', u'worth', u'film', u'project'] [u'tear', u'bangladesh', u'test', u'near', u'miss'] [u'telekom', u'keen', u'ullrich', u'reunion'] [u'telstra', u'pledg', u'improv', u'region', u'servic'] [u'kill', u'vehicl', u'rollov'] [u'thump', u'flintoff', u'put', u'england', u'control'] [u'trescothick', u'doubl', u'undo', u'england', u'late'] [u'hurt', u'light', u'plane', u'crash', u'south', u'west'] [u'work', u'salvag', u'middl', u'east', u'peac', u'plan'] [u'webb', u'hour', u'tulsa'] [u'woman', u'dead', u'hospit', u'knife', u'wound'] [u'woman', u'injur', u'train', u'station', u'fall'] [u'world', u'leader', u'worri', u'palestinian', u'mazen'] [u'wind', u'farm', u'near', u'complet'] [u'accus', u'philippin', u'terrorist', u'ghozi', u'report', u'dead'] [u'chief', u'justic', u'charg', u'bash'] [u'agforc', u'urg', u'caution', u'anti', u'terror', u'measur'] [u'airport', u'sale', u'talk', u'prematur'] [u'anderson', u'stay'] [u'andren', u'aim', u'chang', u'super', u'fund', u'inequ'] [u'arafat', u'back', u'speaker'] [u'arafat', u'nomine', u'demand', u'back'] [u'asthmat', u'suffer', u'recent', u'rain'] [u'aussi', u'urg', u'check', u'asic', u'websit', u'forget'] [u'austereo', u'report', u'profit', u'drop'] [u'australian', u'stock', u'overfish', u'report'] [u'author', u'awar', u'possibl', u'qanta', u'terror'] [u'bear', u'enter', u'grand', u'final', u'close'] [u'bermuda', u'mop', u'fabian'] [u'beulah', u'celebr', u'footi', u'premiership'] [u'biki', u'gang', u'member', u'testifi', u'bomb', u'trial'] [u'bomb', u'blast', u'rock', u'kathmandu', u'kill'] [u'bomber', u'coach', u'launch', u'reveng'] [u'boobi', u'trap', u'shoe', u'spark', u'secur', u'alert'] [u'boost', u'plan', u'phone', u'exchang'] [u'britain', u'ireland', u'retain', u'walker'] [u'britain', u'announc', u'iraq', u'commit'] [u'bronco', u'fight', u'high', u'tackl', u'charg'] [u'brough', u'defend', u'job', u'scheme'] [u'bush', u'ask', u'billion', u'help', u'iraq'] [u'bush', u'blaze', u'pose', u'problem'] [u'bush', u'iraq', u'money'] [u'bush', u'visit', u'australia', u'octob'] [u'polit', u'stay', u'sugar', u'rescu'] [u'tougher', u'commerci', u'crab', u'restrict'] [u'campaign', u'underway', u'save', u'king', u'bird'] [u'crash', u'put', u'driver', u'hospit'] [u'carey', u'sceptic', u'voss', u'knee', u'injuri'] [u'carr', u'need', u'canberra', u'labor'] [u'carr', u'specul', u'prompt', u'ridicul', u'govt'] [u'catt', u'healey', u'woodward', u'name', u'england', u'squad'] [u'church', u'congreg', u'want', u'decis', u'chang'] [u'church', u'servic', u'mark', u'bicentenari', u'european'] [u'cipollini', u'quit', u'tour', u'spain'] [u'claim', u'yanco', u'feel', u'colleg', u'cours'] [u'probe', u'cape', u'suspect', u'doubl', u'murder'] [u'commonwealth', u'park', u'revamp'] [u'compani', u'fin', u'fire', u'safeti', u'conscious', u'employe'] [u'confer', u'push', u'indigen', u'doctor'] [u'confer', u'tell', u'famili', u'drug', u'abus', u'need'] [u'consol', u'prize', u'ferrero'] [u'costa', u'say', u'train', u'servic', u'return'] [u'councillor', u'level', u'discrimin', u'claim'] [u'countri', u'energi', u'consid', u'blackout', u'caus'] [u'court', u'deliv', u'fine', u'abalon', u'poach'] [u'critic', u'blood', u'shortag', u'tasmania'] [u'detaine', u'escap', u'come', u'surpris', u'refuge'] [u'disast', u'confer', u'deal', u'communiti', u'safeti'] [u'doctor', u'group', u'clarifi', u'subsidi'] [u'dismiss', u'claim', u'hanson', u'trial', u'polit'] [u'drought', u'list', u'clarenc', u'valley'] [u'drug', u'test', u'work', u'say', u'radcliff'] [u'eighti', u'wwii', u'bomb', u'uncov', u'china'] [u'cruis', u'victori', u'european', u'master'] [u'euro', u'hope', u'playoff', u'chanc'] [u'factori', u'worker', u'strike', u'work', u'condit'] [u'farmer', u'urg', u'weed', u'plant', u'woe'] [u'farm', u'leader', u'steel', u'world', u'trade', u'talk'] [u'father', u'quick', u'think', u'save'] [u'feder', u'upset', u'elector', u'chang'] [u'drown', u'miss', u'indonesian'] [u'star', u'uruguay', u'thrash', u'bolivia', u'world'] [u'face', u'court', u'drug', u'charg'] [u'flintoff', u'blitz', u'reviv', u'england', u'seri', u'hop'] [u'ford', u'keen', u'play', u'role'] [u'india', u'cricket', u'captain', u'ramchand', u'dead'] [u'labor', u'minist', u'sydney', u'mayor'] [u'text', u'bush', u'speech', u'iraq'] [u'fund', u'decis', u'thorn', u'tourism', u'industri'] [u'fund', u'seek', u'anim', u'shelter'] [u'govt', u'compromis', u'custom', u'theft', u'probe'] [u'govt', u'confid', u'lang', u'park', u'readi', u'world'] [u'govt', u'critic', u'decis', u'chang', u'shadow'] [u'govt', u'get', u'mileag', u'carr', u'specul'] [u'green', u'slam', u'draconian', u'limit', u'anti', u'nuclear'] [u'group', u'highlight', u'child', u'care', u'shortag'] [u'health', u'confer', u'aim', u'combat', u'indigen'] [u'henin', u'hardenn', u'grab', u'open', u'glori', u'william'] [u'highway', u'landslid', u'expect', u'caus', u'minor', u'delay'] [u'hill', u'overcom', u'crash', u'defend', u'world', u'titl'] [u'hope', u'local', u'govt', u'help', u'subsidis', u'power'] [u'hornish', u'edg', u'victori', u'chicago', u'race'] [u'hospit', u'trial', u'genet', u'approach', u'detect'] [u'hunter', u'break', u'drought', u'stranglehold'] [u'ierodiaconou', u'claim', u'aerial', u'round'] [u'immigr', u'figur', u'grossli', u'wrong'] [u'index', u'show', u'consum', u'spend', u'eas', u'juli'] [u'india', u'landmin', u'blow', u'polic', u'jeep', u'dead'] [u'indian', u'court', u'postpon', u'verdict', u'stain', u'murder'] [u'indigen', u'communiti', u'onlin'] [u'form', u'filli', u'grand', u'final'] [u'inquiri', u'highlight', u'need', u'famili', u'drug', u'treatment'] [u'institut', u'push', u'forward', u'univers', u'propos'] [u'investig', u'launch', u'claim'] [u'inzamam', u'replac', u'ban', u'latif', u'pakistan', u'captain'] [u'israel', u'fire', u'missil', u'gaza', u'raid'] [u'jakarta', u'hotel', u'reopen', u'fatal', u'bomb'] [u'japanes', u'face', u'leadership', u'challeng'] [u'japan', u'space', u'station', u'contribut'] [u'rise'] [u'jordan', u'reject', u'harsher', u'punish', u'honour'] [u'judg', u'prepar', u'rate', u'coast', u'beach'] [u'jungl', u'theori', u'reviv', u'britain', u'lord', u'lucan', u'mysteri'] [u'juror', u'deliber', u'snowtown', u'case'] [u'kaka', u'lightn', u'strike', u'give', u'brazil', u'win', u'start'] [u'kenya', u'ndereba', u'target', u'athen', u'gold', u'world', u'record'] [u'kewel', u'lead', u'regga', u'boyz', u'merri', u'danc'] [u'kewel', u'star', u'socceroo'] [u'kid', u'help', u'line', u'promot', u'internet', u'servic'] [u'kimmorley', u'includ', u'kangaroo', u'squad'] [u'knight', u'prove', u'strong', u'cowboy'] [u'lang', u'park', u'rip', u'ahead', u'world'] [u'lang', u'park', u'surfac', u'makeov'] [u'laport', u'blast', u'french', u'flop'] [u'latif', u'ban', u'match', u'unfair', u'catch'] [u'launceston', u'council', u'vote', u'apart', u'plan'] [u'legal', u'lawyer', u'shortag', u'evid'] [u'lion', u'trio', u'miss', u'england', u'world', u'squad'] [u'log', u'wipe', u'endang', u'plant', u'green'] [u'mandela', u'enter', u'springbok', u'racism', u'fray', u'report'] [u'guilti', u'kill', u'polic', u'offic'] [u'plead', u'guilti', u'assault', u'woman'] [u'face', u'child', u'charg'] [u'melbourn', u'tour', u'australia'] [u'mexico', u'prepar', u'tight', u'secur', u'meet'] [u'miner', u'plant', u'work', u'track'] [u'minist', u'offer', u'seismic', u'test', u'assur'] [u'missil', u'miss', u'punctur', u'iraq', u'lull'] [u'mock', u'chemic', u'attack', u'stag', u'london'] [u'approv', u'grant', u'mine', u'plan'] [u'oppos', u'boundari', u'plan'] [u'nation', u'park', u'blaze', u'control'] [u'navratilova', u'thwart', u'open', u'mark'] [u'defend', u'decis', u'process'] [u'employ', u'growth'] [u'bishop', u'repres', u'break', u'tradit'] [u'oppn', u'make', u'nois', u'road', u'fund'] [u'nurs', u'deliv', u'age', u'care', u'petit'] [u'oppn', u'readi', u'rumbl', u'parliament', u'resum'] [u'oshea', u'nurs', u'injuri', u'ireland', u'draw'] [u'paint', u'steal', u'melbourn', u'galleri'] [u'pair', u'court', u'break', u'hill', u'attack'] [u'pakistan', u'select', u'polici', u'call', u'question'] [u'administr', u'back', u'takeov'] [u'creditor', u'vote', u'liquid'] [u'pension', u'criticis', u'public', u'transport', u'propos'] [u'perez', u'win', u'tour', u'spain', u'second', u'stage'] [u'perth', u'jail', u'attack', u'year'] [u'plan', u'flow', u'river', u'boost'] [u'polic', u'confer', u'consid', u'cyber', u'crime', u'prevent'] [u'polic', u'defend', u'offic', u'chase', u'turn', u'dead'] [u'polic', u'launch', u'think', u'drive', u'campaign'] [u'polic', u'walk', u'death'] [u'polic', u'probe', u'dead', u'hous', u'blaze'] [u'polic', u'probe', u'rape', u'claim'] [u'polic', u'fatal', u'road', u'crash', u'avoid'] [u'port', u'adelaid', u'earli', u'bird', u'catch', u'fine'] [u'powel', u'refus', u'negoti', u'arafat'] [u'prison', u'face', u'court', u'jail', u'riot'] [u'produc', u'urg', u'help', u'control', u'wild', u'dog'] [u'prosecutor', u'lodg', u'appeal', u'bashir', u'sentenc'] [u'prosecutor', u'appeal', u'bashir', u'sentenc'] [u'protect', u'area', u'spotlight'] [u'public', u'transport', u'fund', u'inquiri', u'report', u'today'] [u'public', u'urg', u'report', u'anim', u'cruelti'] [u'rare', u'white', u'rhino'] [u'razor', u'blade', u'shoe', u'sabotag', u'injur', u'teen'] [u'reef', u'fish', u'restrict', u'finalis'] [u'refuge', u'protest', u'politician', u'doorstep'] [u'refuge', u'want', u'futur', u'clearer'] [u'region', u'senior', u'right', u'scheme'] [u'renew', u'hope', u'tingha', u'age', u'care', u'bed'] [u'rental', u'price', u'slug', u'prove', u'cost'] [u'report', u'reel', u'fish', u'fear'] [u'resourc', u'bank', u'stock', u'market', u'month', u'high'] [u'riverina', u'drought', u'area', u'decreas'] [u'roddick', u'embrac', u'fairytal', u'coron'] [u'roddick', u'storm', u'open'] [u'rossi', u'lead', u'italian', u'sweep', u'portug', u'grand', u'prix'] [u'rubbish', u'recycl', u'tip', u'drysdal', u'paint'] [u'rudd', u'shrug', u'slump', u'support'] [u'rugbi', u'chief', u'north', u'visit'] [u'russia', u'franc', u'germani', u'sceptic', u'plan'] [u'salari', u'scotch', u'import'] [u'santini', u'say', u'world', u'debacl', u'franc'] [u'sheep', u'die', u'reject', u'shipment', u'await', u'clearanc'] [u'simon', u'back', u'protea', u'resili'] [u'soundless', u'music', u'show', u'produc', u'weird', u'sensat'] [u'space', u'rocket'] [u'spain', u'upset', u'serbia', u'montenegro'] [u'spam', u'explos', u'continu'] [u'spoon', u'sugar', u'make', u'batteri', u'recharg'] [u'spotlight', u'fall', u'drought', u'manag'] [u'strike', u'prison', u'guard', u'picket', u'line'] [u'substanc', u'abus', u'report', u'urg', u'crackdown'] [u'sugar', u'price', u'leav', u'grower', u'sour', u'tast'] [u'survey', u'highlight', u'drop', u'out'] [u'survey', u'set', u'poverti', u'line', u'week'] [u'swan', u'coach', u'prais', u'port', u'adelaid'] [u'sydney', u'charg', u'bash', u'death'] [u'tear', u'roddick', u'open', u'champ'] [u'territori', u'child', u'abus', u'agenc', u'struggl', u'cope'] [u'test', u'rule', u'dead', u'ghozi'] [u'thiev', u'steal', u'equip', u'ambul'] [u'thousand', u'strike', u'workplac', u'death'] [u'jail', u'rob', u'jewelleri', u'shop', u'fund'] [u'time', u'right', u'role', u'iraq', u'rice'] [u'tourism', u'group', u'want', u'reef', u'protect'] [u'tway', u'win', u'canadian', u'open'] [u'crewmen', u'hospit', u'shipboard', u'accid'] [u'guilti', u'snowtown', u'murder'] [u'soldier', u'injur', u'guerrilla', u'attack'] [u'union', u'protest', u'hospit', u'staff', u'number'] [u'vandal', u'leav', u'trail', u'destruct', u'benalla'] [u'veron', u'public', u'enemi', u'number', u'argentina'] [u'versatil', u'roger', u'vie', u'spot'] [u'oppn', u'seek', u'speed', u'zone', u'clariti'] [u'visa', u'holder', u'protest', u'canberra'] [u'govt', u'give', u'condit', u'support', u'huge'] [u'wallac', u'omit', u'ireland', u'squad'] [u'polic', u'govt', u'agre', u'talk'] [u'polic', u'walk', u'disput'] [u'water', u'author', u'probe', u'lake', u'sewag', u'spill'] [u'webb', u'storm', u'tulsa'] [u'weekend', u'blaze', u'take', u'hold', u'school'] [u'weekend', u'shoot', u'trigger', u'polic', u'investig'] [u'wheat', u'contract', u'iraq', u'honour'] [u'woodbridg', u'reach', u'brink', u'doubl', u'record'] [u'zambian', u'win', u'controversi', u'african', u'realiti'] [u'investig', u'intellig', u'leak', u'claim'] [u'age', u'care', u'sector', u'edg', u'collaps', u'nurs'] [u'eye', u'turkey', u'england', u'face', u'liechtenstein'] [u'alonso', u'slam', u'ferrari', u'loser'] [u'warn', u'levi', u'backlash'] [u'anderson', u'nomin', u'water', u'prioriti'] [u'anniversari', u'celebr', u'begin', u'korea'] [u'arafat', u'nomine', u'demand', u'support'] [u'asda', u'disappoint', u'posit', u'test', u'increas'] [u'kill', u'nigerian', u'crash'] [u'australian', u'sheep', u'remain', u'shipment', u'limbo'] [u'australia', u'lead', u'interdict', u'exercis'] [u'babi', u'girl', u'diagnos', u'meningococc'] [u'baghdad', u'dream', u'utilis', u'river'] [u'bail', u'refus', u'kidnap', u'charg'] [u'bait', u'scheme', u'aim', u'outfox', u'pest', u'save', u'dingo'] [u'barrist', u'disbar', u'fraud'] [u'baumann', u'announc', u'retir'] [u'beatti', u'ponder', u'delay', u'action', u'fatal', u'polic'] [u'beatti', u'support', u'inquiri', u'hanson', u'case'] [u'beck', u'return', u'trafford', u'england', u'eye'] [u'tackl', u'juvenil', u'crime', u'woe'] [u'bok', u'racism', u'probe', u'stall'] [u'bradman', u'owner', u'slug'] [u'brigitt', u'bardot', u'babi', u'thai', u'eleph', u'name'] [u'bronco', u'civoniceva', u'guilti', u'plea'] [u'busi', u'activ', u'upbeat', u'august', u'survey'] [u'busi', u'plan', u'final', u'pool', u'option'] [u'cabooltur', u'offic', u'honour'] [u'bus', u'replac', u'unprofit', u'bush', u'rail'] [u'govt', u'start', u'implement', u'cigarett', u'sale'] [u'canberra', u'surpass', u'sydney', u'rise', u'rental', u'cost'] [u'cane', u'toad', u'sight', u'south', u'darwin'] [u'carter', u'educ', u'chines', u'student', u'democraci'] [u'charg', u'drop', u'homeless', u'kill'] [u'children', u'target', u'intervent', u'program'] [u'chines', u'gateway', u'precinct', u'upgrad'] [u'clark', u'claim', u'support', u'appeal', u'atsic'] [u'cold', u'hold', u'student', u'great', u'southern'] [u'commission', u'conced', u'lack', u'resourc', u'polic'] [u'communiti', u'fossil', u'begin', u'western'] [u'concern', u'wind', u'farm', u'threaten', u'parrot', u'popul'] [u'convict', u'snowtown', u'killer', u'start', u'prison', u'term'] [u'costa', u'put', u'focus', u'public', u'transport'] [u'council', u'claim', u'port', u'kembla', u'premis', u'licenc'] [u'council', u'backbon', u'tackl', u'pest'] [u'council', u'track', u'pinpoint', u'tourist'] [u'council', u'send', u'build', u'height', u'survey'] [u'council', u'plane', u'revenu'] [u'council', u'support', u'hill', u'develop'] [u'council', u'transport', u'plan', u'detail'] [u'coupl', u'fin', u'illeg', u'water'] [u'court', u'ban', u'swim', u'children'] [u'court', u'hear', u'hanson', u'bail', u'appeal'] [u'court', u'reserv', u'decis', u'hanson', u'bail'] [u'court', u'tell', u'attack', u'put', u'hospit'] [u'cowboy', u'await', u'home', u'grind', u'decis'] [u'crean', u'seek', u'focus', u'carr'] [u'criminologist', u'say', u'snowtown', u'murder', u'trial', u'cost'] [u'democrat', u'press', u'govt', u'stop', u'sale'] [u'democrat', u'unhappi', u'bush', u'spend', u'plan'] [u'depriv', u'breed', u'bizarr', u'murder', u'criminologist'] [u'develop', u'want', u'caravan', u'park', u'chang'] [u'develop', u'boom', u'pressur', u'council'] [u'divis', u'council', u'collaps'] [u'sampl', u'fail', u'link', u'backpack', u'murder'] [u'doctor', u'predict', u'rise', u'medic', u'fee'] [u'dog', u'bite', u'jail', u'drug'] [u'drinker', u'stay', u'home', u'say'] [u'elect', u'improprieti', u'deal', u'johnson'] [u'offic', u'increas', u'darwin'] [u'england', u'bless', u'qualiti', u'depth'] [u'england', u'escap', u'thwart', u'protea'] [u'england', u'woodward', u'welcom', u'favourit'] [u'estonian', u'journalist', u'admit', u'fabric', u'stori'] [u'ethanol', u'dollar', u'doubt', u'govt'] [u'exhibit', u'centr', u'site', u'unknown'] [u'expert', u'advis', u'govt', u'improv', u'health', u'servic'] [u'fairfax', u'doubl', u'annual', u'profit'] [u'feder', u'govt', u'urg', u'fund', u'project'] [u'fewer', u'australian', u'take', u'home', u'loan'] [u'firefight', u'discov', u'burn', u'bodi', u'vacant'] [u'fisher', u'angl', u'reef', u'plan', u'compo'] [u'fletcher', u'appeal', u'suspens'] [u'priest', u'plead', u'guilti', u'indec', u'deal'] [u'french', u'cast', u'off', u'fear', u'world', u'disast'] [u'french', u'heat', u'wave', u'death', u'link', u'organis'] [u'fund', u'earmark', u'franci', u'safeti', u'revamp'] [u'funer', u'firefight', u'victim'] [u'fungal', u'diseas', u'spark', u'grain', u'grower', u'warn'] [u'gallop', u'sign', u'agreement', u'gorgon', u'project'] [u'genet', u'engin', u'bacteria', u'hold'] [u'continu', u'riverland', u'tour'] [u'wrap', u'riverland', u'tour'] [u'global', u'agenc', u'boost', u'bonlac', u'rat'] [u'goldfield', u'consid', u'french', u'tourism', u'prospect'] [u'govern', u'accus', u'target', u'katherin'] [u'govt', u'allow', u'capsicum', u'spray', u'abalon'] [u'govt', u'promis', u'child', u'abus', u'awar', u'campaign'] [u'govt', u'warn', u'levi', u'lead', u'exodus'] [u'grain', u'merger', u'cost', u'job'] [u'grenad', u'explod', u'kill', u'philippin'] [u'hanson', u'appeal', u'decis', u'expect', u'today'] [u'health', u'minist', u'talk', u'zone', u'scheme'] [u'henin', u'clijster', u'herald', u'women', u'game'] [u'henman', u'split', u'coach', u'stefanki'] [u'hewitt', u'coach', u'say'] [u'high', u'tech', u'stock', u'perform', u'market'] [u'hitler', u'filmmak', u'riefenstahl', u'die'] [u'hous', u'program', u'subsidis', u'citi', u'live'] [u'howard', u'delight', u'deputi', u'decis', u'stay'] [u'hurrican', u'fabian', u'claim', u'live'] [u'immunolog', u'expert', u'win', u'prize'] [u'independ', u'clinician', u'investig', u'royal'] [u'indigen', u'child', u'protect', u'worker', u'begin', u'work'] [u'inflat', u'dollar', u'spur', u'busi', u'confid'] [u'injuri', u'blow', u'england', u'ferdinand', u'butt'] [u'intellig', u'report', u'author', u'convinc', u'materi'] [u'rat', u'rise', u'christma'] [u'take', u'aviat', u'plan'] [u'internet', u'file', u'swapper', u'target', u'suit'] [u'iran', u'urg', u'come', u'clean', u'nuclear', u'program'] [u'iraq', u'tell', u'truth', u'weapon'] [u'jaguar', u'wilson', u'time', u'case'] [u'judg', u'bar', u'camera', u'courtroom', u'kobe'] [u'juri', u'advis', u'acquit', u'hanson'] [u'kenya', u'seek', u'bahrain', u'defector', u'bar'] [u'kindergarten', u'express', u'program'] [u'labor', u'seek', u'block', u'widen', u'minist'] [u'landhold', u'plead', u'guilti', u'illeg', u'clear'] [u'launceston', u'council', u'approv', u'apart', u'develop'] [u'launceston', u'council', u'win', u'innov', u'excel', u'award'] [u'lethal', u'rule', u'voss', u'crunch', u'final'] [u'macarthur', u'boost', u'north', u'interest'] [u'macedonian', u'brush', u'beckham', u'death', u'threat', u'claim'] [u'extradit', u'sexual', u'assault', u'charg'] [u'pay', u'thousand', u'bradman'] [u'plead', u'guilti', u'suitcas', u'murder'] [u'exec', u'kenyon', u'jump', u'ship', u'chelski'] [u'meet', u'discuss', u'communic', u'centr', u'futur'] [u'minist', u'deni', u'health', u'staff', u'train'] [u'seek', u'rail', u'assur'] [u'mushtaq', u'spin', u'sussex', u'closer', u'maiden', u'titl'] [u'muslim', u'protest', u'greet', u'sharon', u'india'] [u'nasa', u'set', u'date', u'space', u'shuttl', u'flight'] [u'nativ', u'titl', u'issu', u'domin'] [u'nat', u'welcom', u'disabl', u'fund', u'decis'] [u'research', u'show', u'whale', u'number', u'rise'] [u'tourism', u'campaign', u'launch', u'canberra'] [u'nigerian', u'crash', u'toll', u'top'] [u'northern', u'disabl', u'worker', u'highlight'] [u'north', u'korea', u'vow', u'fight', u'imperialist'] [u'player', u'associ', u'probe', u'negoti', u'option'] [u'nrma', u'worker', u'strike', u'protest'] [u'korea', u'unveil', u'missil', u'anniversari'] [u'number', u'centenarian', u'reach', u'record', u'number'] [u'opal', u'prepar', u'face', u'zealand'] [u'opal', u'readi', u'torrid', u'zealand', u'clash'] [u'owner', u'tri', u'regain', u'possess', u'seiz', u'ship'] [u'paint', u'number', u'clear', u'speed', u'limit', u'confus'] [u'pastor', u'giant', u'sell'] [u'perth', u'woman', u'charg', u'attempt', u'murder'] [u'petacchi', u'enjoy', u'histor', u'stage', u'spain'] [u'petit', u'renew', u'call', u'ocean', u'pool'] [u'phelp', u'gun', u'thorp', u'athen'] [u'pilot', u'charg', u'oper', u'light', u'aircraft'] [u'pirat', u'potter', u'book', u'lack', u'magic'] [u'plan', u'consid', u'tourism'] [u'chang', u'fundrais', u'deduct'] [u'polic', u'disput', u'affect', u'fin', u'revenu'] [u'polic', u'lift', u'work', u'ban', u'disput'] [u'polic', u'seek', u'park', u'bash', u'wit'] [u'power', u'spew', u'swan', u'defeat'] [u'prais', u'health', u'group', u'dental', u'servic', u'effort'] [u'prison', u'offic', u'strike', u'continu'] [u'probe', u'continu', u'lake', u'sewag', u'spill'] [u'public', u'nuclear', u'wast', u'dump', u'licenc'] [u'public', u'hinder', u'terror', u'probe', u'polic'] [u'public', u'meet', u'spotlight', u'hospit', u'woe'] [u'public', u'warn', u'ulladulla', u'burn'] [u'qanta', u'share', u'dive', u'accc', u'reject', u'merger'] [u'qanta', u'share', u'dive', u'merger', u'rule'] [u'health', u'deni', u'meningococc', u'mening'] [u'queensland', u'choos', u'locat'] [u'rain', u'doubl', u'crop', u'size', u'forecast'] [u'rain', u'troubl', u'prompt', u'flush', u'meadow', u'roof'] [u'razor', u'blade', u'shoe', u'spark', u'secur', u'boost'] [u'reef', u'author', u'defend', u'zone', u'review'] [u'research', u'set', u'secret', u'lobster'] [u'resourc', u'sector', u'help', u'share', u'market', u'creep', u'higher'] [u'retir', u'villag', u'deal', u'consum', u'report'] [u'rezon', u'forc', u'cow', u'hors', u'properti'] [u'roddick', u'leap', u'rank', u'hewitt', u'slip'] [u'rugbi', u'chief', u'prais', u'townsvill', u'world', u'venu'] [u'russia', u'itali', u'serbia', u'montenegro', u'israel'] [u'rylston', u'council', u'submit', u'reform', u'plan'] [u'sack', u'doctor', u'spark', u'hospit', u'investig'] [u'schumach', u'confid', u'monza', u'showdown'] [u'scientist', u'cure', u'diabet', u'rat', u'report'] [u'world', u'charg', u'accid'] [u'secur', u'scheme', u'offer', u'dalbi', u'crime', u'snapshot'] [u'senior', u'diplomat', u'meet', u'palestinian', u'prime'] [u'seri', u'level', u'lift', u'england', u'test', u'rat'] [u'sexual', u'activ', u'girl', u'unawar', u'stis', u'youth', u'worker'] [u'sheep', u'shipment', u'strand'] [u'singapor', u'confirm', u'sar', u'case', u'doubt'] [u'snowdon', u'confid', u'repres', u'voter'] [u'socceroo', u'roll', u'farina'] [u'strike', u'coal', u'worker', u'work'] [u'studi', u'say', u'child', u'abus', u'underestim'] [u'tasmania', u'mourn', u'death', u'aborigin', u'elder'] [u'teen', u'bing', u'drink', u'endang', u'live', u'salvo'] [u'suspend', u'drug', u'compani', u'licenc'] [u'thousand', u'flee', u'heavi', u'flood', u'nigeria'] [u'tourist', u'drown', u'highlight', u'need', u'educ'] [u'transgrid', u'employe', u'admit', u'issu', u'fals', u'safeti'] [u'trescothick', u'guid', u'england'] [u'tribun', u'hang', u'fletcher', u'final', u'hop'] [u'tribun', u'ban', u'fletcher', u'not'] [u'triumphant', u'tway', u'soar', u'place', u'world', u'rank'] [u'kill', u'twin', u'bomb', u'blast', u'colombia'] [u'uefa', u'call', u'report', u'greek', u'briberi'] [u'uncertain', u'time', u'ahead', u'mudge', u'meatwork'] [u'chief', u'launch', u'diplomat', u'drive', u'iraq'] [u'union', u'warn', u'govt', u'poll', u'backlash'] [u'union', u'want', u'polic', u'number', u'boost'] [u'uproar', u'hygien', u'scheme', u'come', u'head'] [u'fighter', u'crash', u'south', u'korean', u'coast'] [u'israel', u'hope', u'palestinian', u'commit'] [u'optimist', u'chang', u'iraq', u'schieffer'] [u'vail', u'angri', u'anderson', u'stay'] [u'govt', u'quick', u'reject', u'speed', u'camera', u'claim'] [u'voeller', u'outburst', u'germani', u'talk', u'point'] [u'voss', u'lead', u'australian', u'team'] [u'voss', u'fletcher', u'face', u'nervous', u'wait'] [u'govt', u'cast', u'doubt', u'nativ', u'titl', u'claim'] [u'wallac', u'miss', u'shock', u'irish', u'rugbi'] [u'water', u'restrict', u'remain'] [u'weather', u'hamper', u'timber', u'work'] [u'werewolv', u'london', u'singer', u'die'] [u'whitlam', u'minist', u'willese', u'die', u'age'] [u'wildcat', u'race', u'clear', u'import'] [u'worker', u'urg', u'check', u'wage', u'increas'] [u'youth', u'parliament', u'tackl', u'smoke', u'log'] [u'abattoir', u'closur', u'boost', u'mudge', u'jobless', u'rate'] [u'account', u'reprimand', u'audit'] [u'administr', u'appoint', u'line', u'lode', u'group'] [u'agassi', u'feder', u'qualifi', u'master'] [u'call', u'alcohol', u'tax', u'strength'] [u'council', u'discuss', u'desilt'] [u'worker', u'ambush', u'afghanistan'] [u'arafat', u'nomine', u'condemn', u'suicid', u'attack'] [u'welcom', u'postpon', u'racism', u'inquiri'] [u'kill', u'flood', u'central', u'india'] [u'aussi', u'evan', u'retir', u'tour', u'spain'] [u'australia', u'test', u'terrorist', u'respons', u'unit'] [u'australian', u'injur', u'jerusalem', u'bomb'] [u'babi', u'panda', u'bear', u'captiv', u'china'] [u'bacteria', u'help', u'fight', u'aid', u'women'] [u'bali', u'bomber', u'defiant', u'court', u'hand', u'death'] [u'bali', u'mastermind', u'samudra', u'sentenc', u'death'] [u'bank', u'offer', u'revers', u'mortgag', u'help', u'retir'] [u'ban', u'film', u'park', u'screen', u'hobart'] [u'year', u'ahead', u'barra', u'farm'] [u'black', u'hole', u'hum', u'flat'] [u'blair', u'defend', u'iraqi', u'weapon', u'claim', u'parliament'] [u'blast', u'hit', u'jerusalem', u'cafe'] [u'blue', u'chip', u'retreat', u'drag', u'aussi', u'market'] [u'book', u'highlight', u'reptil', u'habitat', u'conserv'] [u'boston', u'church', u'settl', u'claim', u'million'] [u'bowen', u'miss', u'game', u'danger', u'tackl'] [u'british', u'minist', u'mislead', u'committe', u'iraqi', u'weapon'] [u'bryant', u'lawyer', u'summon', u'alleg', u'victim', u'court'] [u'businessman', u'oppos', u'supermarket', u'plan'] [u'ethanol', u'damag', u'vehicl', u'list'] [u'perman', u'livestock', u'trade', u'saudi'] [u'call', u'govt', u'protect', u'health', u'servic'] [u'carp', u'fisheri', u'plan', u'move', u'ahead'] [u'carr', u'hose', u'feder', u'polit'] [u'chappel', u'join', u'australia', u'cricket', u'associ'] [u'children', u'unabl', u'visit', u'father', u'detent', u'centr'] [u'church', u'want', u'poverti', u'nation', u'agenda'] [u'say', u'qaeda', u'leadership', u'risk', u'break'] [u'claim', u'youth', u'bing', u'drink', u'figur', u'lower'] [u'coal', u'slump', u'drag', u'miner', u'energi', u'export'] [u'colli', u'rev', u'motor', u'race', u'revamp'] [u'committe', u'monitor', u'salin', u'flood', u'scheme'] [u'communiti', u'farewel', u'cathol', u'bishop'] [u'confer', u'hear', u'indigen', u'jail', u'woe'] [u'consum', u'confid', u'close', u'year', u'high'] [u'costa', u'gaug', u'transport', u'concern'] [u'costa', u'torrid', u'train', u'talk'] [u'costa', u'grafton', u'public', u'transport', u'talk'] [u'council', u'form', u'indigen', u'protocol'] [u'council', u'happi', u'discount', u'fare', u'plan'] [u'councillor', u'want', u'escort', u'agenc', u'regul'] [u'council', u'take', u'issu', u'boundari', u'submiss'] [u'court', u'hear', u'biki', u'charg', u'murder', u'offer'] [u'crean', u'question', u'govt', u'leak', u'wilki', u'report'] [u'crespo', u'target', u'argentina', u'outclass', u'venezuela'] [u'cross', u'contin', u'swim', u'delay', u'truck', u'sale'] [u'crowd', u'pleas', u'flintoff', u'grow'] [u'decis', u'pend', u'return', u'lake', u'anchor', u'block'] [u'defenc', u'forc', u'intellig', u'help', u'polic'] [u'deleg', u'address', u'drought', u'impact'] [u'demand', u'rural', u'counsel'] [u'democrat', u'criticis', u'megawati', u'bali'] [u'deputi', u'nat', u'leader', u'lift', u'veil', u'leadership', u'issu'] [u'diabet', u'drug', u'caus', u'heart', u'failur', u'report'] [u'disast', u'confer', u'hear', u'communiti'] [u'diseas', u'threat', u'devil', u'pose', u'problem'] [u'doctor', u'resum', u'controversi', u'naltrexon', u'treatment'] [u'doubt', u'rais', u'aquif', u'plan', u'green', u'impact'] [u'drug', u'compani', u'deni', u'factori'] [u'editor', u'cartoonist', u'investig', u'algier'] [u'educ', u'help', u'sting', u'swim', u'threat'] [u'educ', u'minist', u'open', u'wyndham', u'school', u'upgrad'] [u'elder', u'adelaid', u'die', u'meningococc'] [u'fish', u'group', u'want', u'reef', u'factor', u'consid'] [u'flee', u'inmat', u'drop', u'judg', u'chamber'] [u'fletcher', u'appeal', u'flop'] [u'fletcher', u'appeal', u'suspens'] [u'flood', u'kill', u'histor', u'timbuktu'] [u'nation', u'join', u'militari', u'exercis'] [u'funer', u'farewel', u'indigen', u'elder'] [u'genet', u'modif', u'step', u'say', u'scienc', u'award'] [u'giant', u'hairbal', u'remov', u'girl', u'stomach'] [u'govt', u'accus', u'stall', u'ethanol', u'list'] [u'govt', u'launch', u'inquiri', u'custom', u'theft'] [u'grain', u'harvest', u'confid', u'grow'] [u'harvey', u'surpris', u'select'] [u'health', u'confer', u'discuss', u'indigen', u'palliat'] [u'health', u'group', u'doctor', u'meet', u'insur', u'levi'] [u'henin', u'hardenn', u'hit', u'dope', u'claim'] [u'heritag', u'list', u'recognis', u'cottag'] [u'howard', u'pressur', u'state', u'terror', u'legisl'] [u'hundr', u'flee', u'rebel', u'govt', u'troop', u'clash'] [u'hunter', u'case', u'rise'] [u'iaaf', u'reject', u'white', u'dope', u'explan'] [u'iaea', u'draft', u'iran', u'disclos', u'nuclear'] [u'icac', u'probe', u'hear', u'safeti', u'concern', u'describ'] [u'immigr', u'africa', u'middl', u'east', u'grow', u'fastest'] [u'intern', u'focus', u'issu'] [u'iran', u'say', u'review', u'nuclear', u'cooper'] [u'isra', u'strike', u'kill', u'wound', u'hama', u'leader'] [u'judg', u'begin', u'hand', u'verdict', u'samudra', u'bomb'] [u'judg', u'samudra', u'plan', u'bali', u'bomb'] [u'kalgoorli', u'push', u'desert', u'issu'] [u'knight', u'tahu', u'outsid', u'chanc', u'play', u'semi'] [u'korei', u'agre', u'palestinian'] [u'late', u'dunn', u'strike', u'give', u'ireland', u'draw', u'turk'] [u'lawyer', u'expect', u'spain', u'free', u'jazeera', u'newsman'] [u'local', u'govt', u'seek', u'greater', u'hous', u'debat'] [u'long', u'run', u'plantat', u'blaze'] [u'arrest', u'pick', u'fight', u'duti'] [u'break', u'cliff', u'fall'] [u'charg', u'west', u'sydney', u'gang', u'rape'] [u'extradit', u'face', u'assault', u'charg'] [u'face', u'charg', u'sieg'] [u'ship', u'crate', u'save', u'fare', u'money'] [u'market', u'jitteri', u'amid', u'budget', u'concern'] [u'matera', u'moon', u'select'] [u'want', u'council', u'plan', u'assur'] [u'mcguigan', u'simeon', u'take', u'miranda', u'win'] [u'media', u'puzzl', u'rule', u'defenc'] [u'medic', u'tribun', u'clear', u'offend', u'continu'] [u'megawati', u'busi', u'meet', u'howard'] [u'melbourn', u'museum', u'hand', u'aborigin', u'remain'] [u'flee', u'tarneit', u'paddock', u'shoot'] [u'fund', u'consum', u'tenanc', u'advic'] [u'treatment', u'crash', u'victim'] [u'attack', u'govt', u'deal'] [u'cast', u'doubt', u'hospit', u'upgrad'] [u'rais', u'free', u'trade', u'quarantin', u'worri'] [u'warn', u'tinkerbel', u'land'] [u'murder', u'babi', u'buri', u'brisban'] [u'murder', u'suspect', u'cellmat', u'claim', u'hear', u'confess'] [u'netbal', u'prepar', u'grand', u'final', u'olymp'] [u'approach', u'drug', u'abus', u'need', u'pearson'] [u'medic', u'centr', u'plan', u'gingin'] [u'michelin', u'tyre', u'approv'] [u'program', u'boost', u'school', u'scienc', u'educ'] [u'nrma', u'roadsid', u'staff', u'strike', u'super', u'deal'] [u'nurs', u'fund', u'boost', u'age', u'care'] [u'plead', u'daughter', u'return'] [u'mum', u'bust', u'politician'] [u'opposit', u'plan', u'artist', u'resold'] [u'outstand', u'support', u'soccer', u'club'] [u'pakistan', u'rout', u'banger', u'dayer'] [u'parliament', u'pay', u'tribut', u'whitlam', u'minist'] [u'passeng', u'arrest', u'ryanair', u'secur', u'scare'] [u'pipelin', u'compani', u'fin', u'brisban', u'spill'] [u'pittman', u'give', u'formal', u'recept'] [u'look', u'forward', u'presidenti', u'visit'] [u'polanski', u'remak', u'oliv', u'twist'] [u'polic', u'confisc', u'luxuri', u'cruiser'] [u'polic', u'hunt', u'rapist', u'esper'] [u'polic', u'plea', u'greater', u'road', u'safeti'] [u'polic', u'probe', u'armi', u'hotel', u'incid'] [u'polic', u'step', u'search', u'miss', u'businessman'] [u'pratt', u'thrash', u'bali', u'event'] [u'price', u'back', u'anasta', u'warrior', u'clash'] [u'health', u'offer', u'meningococc', u'reassur'] [u'reef', u'author', u'happi', u'fish', u'plan'] [u'research', u'closer', u'develop', u'dementia', u'drug'] [u'research', u'show', u'regular', u'exercis', u'reduc', u'breast'] [u'review', u'call', u'bush', u'protect'] [u'rivkin', u'win', u'retrial', u'fairfax', u'defam', u'case'] [u'rlpa', u'submit', u'list', u'demand'] [u'ruddock', u'say', u'clark', u'suspens', u'right', u'decis'] [u'ruddock', u'slam', u'labor', u'block', u'migrat', u'chang'] [u'court', u'hear', u'deliber', u'swipe', u'road'] [u'cultur', u'blame', u'snowtown', u'murder', u'govt'] [u'samudra', u'sentenc'] [u'scientist', u'link', u'gene', u'learn', u'difficulti'] [u'scientist', u'hope', u'vaccin', u'lick', u'bluetongu'] [u'secur', u'council', u'delay', u'libya', u'sanction', u'vote'] [u'shepparton', u'host', u'youth', u'justic', u'scheme'] [u'simon', u'garfunkel', u'road'] [u'fear', u'dead', u'power', u'blast', u'chines'] [u'south', u'africa', u'postpon', u'racism', u'inquiri'] [u'stanbrok', u'sale', u'set', u'benchmark', u'properti'] [u'strike', u'continu', u'sydney', u'motorway', u'project'] [u'studi', u'highlight', u'nativ', u'titl', u'differ'] [u'suicid', u'blast', u'shake', u'israel'] [u'suicid', u'blast', u'trigger', u'west', u'bank', u'incurs'] [u'suicid', u'bomber', u'kill', u'seven', u'israel'] [u'suspend', u'drug', u'compani', u'move', u'restor', u'confid'] [u'suspend', u'jail', u'term', u'drive', u'offenc'] [u'swiss', u'team', u'begin', u'davi', u'prepar'] [u'talk', u'begin', u'wine', u'disput'] [u'tall', u'fern', u'olymp'] [u'atsic', u'head', u'front', u'court', u'fish', u'offenc'] [u'scoop', u'pool', u'nation', u'fine', u'food', u'award'] [u'taxi', u'travel', u'face', u'price', u'rise'] [u'slug', u'accompani', u'don', u'baggi', u'green'] [u'telstra', u'want', u'faulti', u'phone', u'feedback'] [u'thousand', u'homeless', u'flood', u'nigeria'] [u'seed', u'davydenko', u'crush', u'newcom'] [u'tourism', u'group', u'back', u'qanta'] [u'transport', u'dept', u'accus', u'cover'] [u'troublesom', u'tree', u'face'] [u'kill', u'northern', u'iraq', u'bomb', u'blast'] [u'delay', u'libya', u'vote', u'french', u'threat'] [u'union', u'back', u'accc', u'yang'] [u'union', u'push', u'better', u'deal', u'mine', u'worker'] [u'unit', u'develop', u'snub', u'bring', u'cheer'] [u'judg', u'pave', u'sept', u'lawsuit'] [u'soldier', u'kill', u'iraq', u'attack'] [u'venezuela', u'crash', u'kill', u'injur'] [u'polic', u'demand', u'fair', u'deal', u'job', u'spill'] [u'polic', u'probe', u'fatal', u'shoot'] [u'victorian', u'polic', u'expand', u'investig'] [u'virgin', u'float', u'green', u'light', u'boost', u'patrick', u'share'] [u'voss', u'lead', u'australian', u'team'] [u'govt', u'seek', u'busi', u'support', u'survey'] [u'wallabi', u'jersey', u'rememb', u'bali', u'bomb'] [u'wallabi', u'jersey', u'rememb', u'bali', u'bomb'] [u'lobster', u'industri', u'consid', u'quota'] [u'warhol', u'work', u'display', u'nation', u'galleri'] [u'word', u'erupt', u'canal', u'develop'] [u'william', u'year', u'wait'] [u'woodsid', u'urg', u'campaign'] [u'chromosom', u'lead', u'caus', u'autism'] [u'arrest', u'home', u'villag', u'palestinian', u'suicid'] [u'protest', u'byron', u'hous', u'develop'] [u'jazeera', u'demand', u'spain', u'releas', u'arrest', u'report'] [u'jazeera', u'air', u'lade', u'tape'] [u'alleg', u'monash', u'gunman', u'quiet', u'success'] [u'air', u'fear', u'hec', u'place'] [u'qaeda', u'leader', u'urg', u'iraqi', u'devour', u'american'] [u'qaeda', u'tape', u'rattl', u'market'] [u'qaeda', u'tape', u'taunt', u'attack', u'anniversari'] [u'analyst', u'launch', u'attack', u'defenc', u'plan'] [u'anangu', u'communiti', u'power', u'boost'] [u'antarct', u'wast', u'remov', u'mission', u'underway'] [u'argentina', u'coria', u'miss', u'davi', u'semi'] [u'attack', u'troop', u'iraq', u'increas'] [u'aussi', u'market', u'follow', u'wall', u'street'] [u'author', u'releas', u'toothfish', u'ship', u'scientif'] [u'bali', u'mastermind', u'prepar', u'death', u'sentenc', u'appeal'] [u'beer', u'coat', u'offer', u'sound'] [u'biki', u'testifi', u'video', u'link', u'secret', u'locat'] [u'brash', u'gilbert', u'champion'] [u'brisban', u'barrist', u'chief', u'magistr'] [u'brisban', u'ralli', u'protest', u'temporari'] [u'burni', u'port', u'busi', u'host', u'ferri'] [u'burn', u'off', u'smoke', u'skylin'] [u'bush', u'commemor', u'septemb', u'vow', u'fight'] [u'bush', u'demand', u'halt', u'palestinian', u'attack', u'israel'] [u'bush', u'urg', u'congress', u'toughen', u'anti', u'terror', u'law'] [u'goulburn', u'polic', u'resourc'] [u'nurs', u'role'] [u'carr', u'back', u'inject', u'room', u'despit', u'critic', u'report'] [u'cheney', u'skip', u'grind', u'zero', u'memori', u'ceremoni'] [u'china', u'step', u'airport', u'screen', u'singapor'] [u'chuck', u'optic', u'illus'] [u'church', u'concern', u'report', u'detain'] [u'claim', u'reef', u'fish', u'regul', u'wont', u'mean'] [u'clover', u'prove', u'lucki', u'cancer', u'suffer'] [u'conflict', u'view', u'follow', u'hospit', u'crisi'] [u'controversi', u'statu', u'erect', u'jamaica'] [u'costa', u'away', u'transport', u'idea'] [u'council', u'accus', u'skate', u'local', u'histori'] [u'council', u'rethink', u'park', u'hospit', u'plan'] [u'croatia', u'serbia', u'montenegro', u'shake', u'hand'] [u'croc', u'import', u'stack', u'real', u'deal'] [u'dalai', u'lama', u'meet', u'bush', u'china', u'protest'] [u'debat', u'begin', u'futur', u'kilda', u'pier', u'kiosk'] [u'defenc', u'accus', u'uneth', u'behaviour', u'stuttl'] [u'democrat', u'suggest', u'pilbara', u'patrol', u'boat', u'plan'] [u'doctor', u'jail', u'brazil', u'sect', u'kill'] [u'drought', u'prompt', u'bore', u'revamp'] [u'economist', u'renew', u'warn', u'recess'] [u'economist', u'optimist', u'employ', u'rise'] [u'euro', u'vote', u'campaign', u'suspend', u'swedish'] [u'surgeon', u'win', u'defam', u'suit', u'daili'] [u'farmer', u'rural', u'financi', u'consult', u'access'] [u'farmer', u'want', u'plan', u'water'] [u'ferrari', u'schumach', u'prepar', u'fight'] [u'file', u'sharer', u'year', u'old', u'music', u'piraci', u'fine'] [u'destroy', u'histor', u'kilda', u'pier', u'kiosk'] [u'firefight', u'extinguish', u'restaur', u'blaze'] [u'kill', u'mexican', u'firework', u'blast'] [u'fletcher', u'appeal', u'fail'] [u'fund', u'boost', u'restor', u'remot', u'servic'] [u'site', u'owner', u'name'] [u'blast', u'ignit', u'centr', u'blaze'] [u'gather', u'consid', u'blue', u'green', u'alga', u'option'] [u'treati', u'allow', u'doubter', u'block', u'import'] [u'golden', u'time', u'export', u'earn'] [u'gough', u'anger', u'england', u'omiss'] [u'govt', u'consid', u'strategi', u'older', u'worker'] [u'govt', u'reject', u'super', u'home', u'deposit'] [u'hewitt', u'scud', u'look', u'challeng', u'fitzi'] [u'high', u'execut', u'equal', u'perform', u'report'] [u'hill', u'defenc', u'forc', u'health'] [u'hogan', u'hero', u'actor', u'hovi', u'die'] [u'hold', u'pattern', u'griffith', u'land', u'fee'] [u'hors', u'bomb', u'kill', u'colombia'] [u'hospit', u'defend', u'caesarean', u'woman', u'wasnt'] [u'time', u'central', u'australia'] [u'hous', u'propos', u'includ', u'koala', u'habitat', u'work'] [u'howard', u'prais', u'unit', u'rival', u'barthez'] [u'hussey', u'bang', u'england'] [u'bowl', u'faster'] [u'icpa', u'deleg', u'converg', u'cunnamulla'] [u'race', u'say', u'defiant', u'mcrae'] [u'industri', u'disput', u'make', u'cityrail', u'unsaf', u'union'] [u'injur', u'springbok', u'star', u'skinstad', u'harbour'] [u'injuri', u'suspens', u'delay', u'name', u'bronco', u'line'] [u'insur', u'woe', u'cast', u'doubt', u'surf', u'lifesav'] [u'intellig', u'leak', u'pressur', u'british', u'minist'] [u'intern', u'bodi', u'check', u'captiv', u'solomon', u'dolphin'] [u'ireland', u'spring', u'surpris', u'rugbi', u'world', u'rank'] [u'israel', u'india', u'pledg', u'cooper', u'fight', u'terror'] [u'isra', u'secur', u'cabinet', u'meet', u'palestinian'] [u'isra', u'troop', u'launch', u'raid', u'west', u'bank', u'gaza', u'strip'] [u'isra', u'troop', u'raid', u'rafah', u'refuge', u'camp'] [u'isra', u'troop', u'palestinian', u'build'] [u'israel', u'talk', u'high', u'quri', u'agenda'] [u'japanes', u'econom', u'ralli', u'boost', u'aussi', u'export'] [u'judiciari', u'end', u'gee', u'career'] [u'lion', u'sweat', u'voss'] [u'lopez', u'affleck', u'wed', u'postpon'] [u'servic', u'rememb', u'septemb'] [u'storag', u'level', u'bring', u'water', u'restrict'] [u'accus', u'burn', u'assault'] [u'market', u'rate', u'rise', u'job', u'boost'] [u'martinez', u'show', u'stomach', u'fight', u'bali'] [u'math', u'troubl', u'link', u'brain', u'cod'] [u'melbourn', u'mourn', u'ravag', u'landmark'] [u'west', u'meet', u'focus', u'industri', u'initi'] [u'miner', u'face', u'brighter', u'outlook', u'insur', u'battl'] [u'miner', u'record', u'profit', u'boost'] [u'mooney', u'unawar', u'elect', u'phone', u'poll'] [u'mornington', u'get', u'mobil', u'phone', u'boost'] [u'want', u'south', u'east', u'health', u'budget', u'boost'] [u'welcom', u'sugar', u'reform', u'delay'] [u'home', u'school', u'rural', u'health'] [u'approach', u'seek', u'fight', u'indigen', u'alcohol'] [u'equip', u'boost', u'research', u'effort'] [u'insur', u'levi', u'chase', u'doctor', u'away'] [u'nickel', u'miner', u'achiev', u'record', u'profit'] [u'nippi', u'damag', u'award', u'stand'] [u'korea', u'expert', u'hint', u'push', u'asid'] [u'north', u'korea', u'intermedi', u'rang', u'missil'] [u'nrma', u'crew', u'agre', u'strike'] [u'mcmanaman', u'readi', u'offer', u'advic'] [u'olyroo', u'turkey'] [u'pair', u'aussi', u'rule', u'best', u'fairest', u'medal'] [u'palestinian', u'author', u'unifi', u'secur', u'forc'] [u'paper', u'urg', u'drought', u'prepar', u'offer'] [u'parliamentari', u'report', u'put', u'pressur', u'blair'] [u'parliament', u'rememb', u'septemb'] [u'peacekeep', u'push', u'liberia', u'anarchi'] [u'pearson', u'support', u'alcohol', u'strength'] [u'persist', u'offend', u'world', u'face', u'suspens'] [u'petacchi', u'enter', u'histori', u'fifth', u'stage'] [u'phillip', u'island', u'supercar', u'calendar'] [u'pilot', u'injur', u'plane', u'crash'] [u'plant', u'scheme', u'near'] [u'prais', u'sept', u'anniversari'] [u'polic', u'protest', u'clash', u'anti', u'globalis'] [u'powel', u'reject', u'european', u'compromis', u'iraq'] [u'prais', u'unifi', u'nativ', u'titl', u'claim'] [u'probe', u'order', u'airport', u'secur', u'breach'] [u'probe', u'uncov', u'dust', u'health', u'concern'] [u'public', u'offer', u'avenu', u'oppos', u'rat', u'slug'] [u'public', u'input', u'marin', u'park', u'plan'] [u'public', u'urg', u'water', u'wise', u'summer', u'loom'] [u'public', u'warn', u'specialist', u'cost'] [u'govt', u'cultur', u'insensit', u'tropic', u'deal'] [u'join', u'intern', u'child', u'protect', u'convent'] [u'somoan', u'communiti', u'hold', u'servic', u'murder'] [u'quri', u'agre', u'palestinian'] [u'race', u'inquiri', u'member', u'quit', u'protest'] [u'raider', u'unfaz', u'storm', u'warn'] [u'rail', u'servic', u'uncertainti', u'creat', u'tourism', u'fear'] [u'light', u'speed', u'camera', u'kick'] [u'refshaug', u'say', u'teacher', u'strike', u'threat', u'inappropri'] [u'resid', u'continu', u'fight', u'solv', u'traffic', u'problem'] [u'resourc', u'centr', u'moot', u'calingiri'] [u'resourc', u'shortfal', u'hamper', u'mackay', u'film', u'industri'] [u'ronaldinho', u'seal', u'brazil', u'struggl'] [u'rooney', u'provid', u'sparkl', u'england'] [u'rspca', u'voic', u'anger', u'sheep', u'shipment', u'death'] [u'ambul', u'open', u'closur'] [u'sabau', u'upset', u'martin', u'romanian', u'open'] [u'salvo', u'highlight', u'teen', u'bing', u'drink'] [u'renew', u'radioact', u'dump', u'opposit'] [u'scholarship', u'honour', u'australian', u'kill', u'sept'] [u'search', u'fail', u'fish', u'boat', u'miss'] [u'seed', u'import', u'win', u'weed', u'appeal'] [u'sept', u'time', u'reflect', u'cosgrov'] [u'small', u'earthquak', u'shake', u'mackay'] [u'solomon', u'island', u'warlord', u'keke', u'court'] [u'sorenstam', u'anxious', u'home', u'solheim', u'triumph'] [u'south', u'korean', u'suicid', u'protest', u'offici'] [u'stab', u'woman', u'ask', u'darwin', u'judg', u'free', u'attack'] [u'strike', u'mean', u'milk', u'dump'] [u'student', u'graduat', u'year', u'finish', u'degre'] [u'summit', u'bullet', u'bypass', u'airport', u'secur'] [u'supermarket', u'reopen', u'mice', u'woe'] [u'suppress', u'order', u'abus', u'trial', u'overturn'] [u'survey', u'consid', u'indigen', u'communiti', u'health'] [u'swedish', u'foreign', u'minist', u'die', u'knife', u'attack'] [u'swedish', u'foreign', u'minist', u'lindh', u'die', u'knife'] [u'swedish', u'foreign', u'minist', u'stab', u'stockholm'] [u'sydney', u'artist', u'take', u'dobel', u'prize'] [u'sydney', u'face', u'enforc', u'water', u'restrict'] [u'land', u'commemor', u'divid'] [u'tasmanian', u'snap', u'rugbi', u'world', u'ticket'] [u'taxi', u'test', u'reveal', u'brain', u'navig', u'techniqu'] [u'teacher', u'threaten', u'strike', u'despit', u'talk'] [u'terror', u'free', u'australia', u'year', u'away'] [u'power', u'insuffici'] [u'thorp', u'reward', u'place', u'tour', u'squad'] [u'tokyo', u'governor', u'criticis', u'bomb', u'comment'] [u'transport', u'dept', u'admit', u'steal'] [u'travel', u'crash', u'victim', u'week', u'away'] [u'tripl', u'organ', u'transplant', u'recipi'] [u'tweed', u'mum', u'drug', u'scheme'] [u'aqsa', u'member', u'kill', u'west', u'bank', u'camp'] [u'injur', u'philippin', u'bomb', u'seminar', u'blast'] [u'typhoon', u'maemi', u'hit', u'japanes', u'island', u'kill'] [u'uncertainti', u'abattoir', u'debt', u'respons'] [u'uncertainti', u'push', u'ethanol', u'project', u'collaps'] [u'union', u'secur', u'better', u'wage', u'deal', u'employe'] [u'ambassador', u'lobbi', u'indonesia'] [u'call', u'korei', u'crack', u'extrem'] [u'fall', u'silent', u'mark', u'septemb', u'anniversari'] [u'veron', u'favour', u'argentin'] [u'govt', u'reject', u'drought', u'critic'] [u'voss', u'close', u'percent', u'matthew'] [u'voss', u'play', u'sudden', u'death', u'clash', u'gabba'] [u'voter', u'opinion', u'seek', u'term'] [u'govt', u'rail', u'link', u'push', u'threaten', u'histor', u'build'] [u'teacher', u'plan', u'strike', u'negoti'] [u'water', u'restrict', u'agenda', u'hast'] [u'whoop', u'cough', u'case', u'rise'] [u'wildlif', u'group', u'prais', u'devil', u'diseas', u'effort'] [u'academ', u'ponder', u'council', u'power'] [u'prison', u'servic', u'comput', u'steal'] [u'adelaid', u'unit', u'enter'] [u'highlight', u'provinci', u'ballarat'] [u'age', u'care', u'nurs', u'consid', u'industri', u'unrest'] [u'launch', u'horsham', u'court', u'revamp'] [u'albani', u'jobless', u'rate', u'fall'] [u'angler', u'highlight', u'pelican', u'plight'] [u'appeal', u'help', u'woman', u'rare', u'brain', u'virus'] [u'appeal', u'test', u'mistak', u'belief', u'acquitt', u'rape'] [u'aquacultur', u'scheme', u'look', u'reconcili'] [u'arafat', u'stand', u'firm', u'israel', u'approv', u'expuls'] [u'assault', u'trial', u'rule', u'scotland', u'winger', u'walker'] [u'asylum', u'seeker', u'expens', u'prison'] [u'discov', u'larg', u'busi', u'pay'] [u'aussi', u'indi', u'takeov', u'plan'] [u'australian', u'share', u'market', u'end', u'week', u'flat'] [u'australian', u'weight', u'crisi', u'balloon'] [u'award', u'win', u'actor', u'john', u'ritter', u'die', u'age'] [u'bacon', u'flag', u'land', u'handov', u'aborigin'] [u'bali', u'bomb', u'survivor', u'pay', u'tribut', u'brisban'] [u'banger', u'better', u'whatmor'] [u'beatti', u'want', u'sugar', u'stalem'] [u'biggest', u'drug', u'haul', u'bust', u'sydney'] [u'blair', u'tell', u'iraq', u'invas', u'increas', u'terror', u'risk'] [u'bligh', u'hear', u'teacher', u'recruit', u'worri'] [u'boat', u'group', u'welcom', u'plan', u'sandbar', u'remov'] [u'bodi', u'recov', u'boat', u'capsiz', u'nigeria'] [u'race', u'pair', u'squar', u'domest', u'match'] [u'bomber', u'seat', u'port', u'malthous'] [u'brinkworth', u'cop', u'record', u'land', u'clear', u'fine'] [u'british', u'minist', u'regret', u'iraqi', u'weapon', u'confus'] [u'break', u'hill', u'jobless', u'rate', u'continu', u'fall'] [u'bulki', u'ballerina', u'career', u'cream'] [u'bunburi', u'jobless', u'rate', u'fall'] [u'bushfir', u'blaze', u'northern', u'southern'] [u'elect', u'voter', u'list', u'display'] [u'perman', u'restrict', u'urban', u'water'] [u'canberra', u'ceremoni', u'honour', u'victim'] [u'centrelink', u'offer', u'help', u'abattoir', u'worker'] [u'charvi', u'confirm', u'welsh', u'skipper'] [u'clijster', u'camp', u'backtrack', u'henin', u'dope', u'charg'] [u'clinic', u'aim', u'boost', u'region', u'number'] [u'collin', u'prove', u'fluke'] [u'communiti', u'care', u'buy', u'drug', u'rehab', u'centr'] [u'continu', u'pill', u'reliev', u'endometriosi'] [u'coron', u'find', u'poor', u'ventil', u'contribut', u'crew'] [u'costello', u'say', u'ansett', u'worker', u'payout'] [u'costello', u'take', u'obstructionist', u'senat'] [u'council', u'collect', u'hazard', u'wast'] [u'council', u'vote', u'lake', u'plan'] [u'council', u'vote', u'overturn', u'pool', u'closur', u'plan'] [u'countri', u'music', u'star', u'johnni', u'cash', u'die'] [u'coupl', u'arrest', u'kid', u'cannabi'] [u'cretin', u'remark', u'cost', u'barrist'] [u'crime', u'alcohol', u'restrict', u'trial'] [u'dailli', u'escap', u'censur', u'german', u'cheat'] [u'hoya', u'reveng', u'citi'] [u'delay', u'kalbarri', u'shark', u'coastal', u'road', u'plan'] [u'dietician', u'obes', u'partial', u'food', u'maker', u'fault'] [u'diner', u'spoil', u'choic', u'treasur', u'lunch'] [u'doctor', u'afford', u'insur', u'levi', u'coonan'] [u'law', u'exempt', u'fail', u'eas', u'farmer', u'concern'] [u'downer', u'plan', u'meet', u'discuss', u'chang'] [u'downer', u'urg', u'israel', u'reconsid', u'arafat', u'remov'] [u'drug', u'haul', u'mark', u'major', u'traffic', u'ring'] [u'eel', u'solomona', u'head', u'england'] [u'emot', u'return', u'favourit', u'lazio', u'visit'] [u'fallon', u'lead', u'opal', u'victori'] [u'farina', u'hit', u'fifa', u'delay'] [u'fatah', u'urg', u'palestinian', u'shield', u'arafat'] [u'fear', u'flower', u'carniv', u'boost', u'spread'] [u'fear', u'murray', u'valley', u'face', u'futur', u'winegrap'] [u'fear', u'polit', u'debat', u'fuel', u'ethanol', u'industri'] [u'announc', u'ahead', u'predict', u'high', u'wind'] [u'firman', u'rule', u'italian', u'grand', u'prix'] [u'flight', u'divert', u'court', u'order', u'toddler', u'plane'] [u'bank', u'manag', u'plead', u'guilti', u'theft'] [u'priest', u'jail', u'offenc'] [u'school', u'driver', u'jail', u'child', u'abus'] [u'sailor', u'disciplin', u'nottingham', u'ground'] [u'franc', u'take', u'risk', u'pick', u'marsh'] [u'georgian', u'captain', u'miss', u'squad'] [u'gilchrist', u'replac', u'captain'] [u'goddess', u'kidman', u'lead', u'best', u'dress', u'list'] [u'gold', u'miner', u'enjoy', u'record', u'result'] [u'govt', u'accus', u'child', u'protect', u'hypocrisi'] [u'green', u'renew', u'opposit', u'live', u'sheep', u'export'] [u'group', u'claim', u'bush', u'preserv'] [u'group', u'consid', u'burdekin', u'timber', u'plantat'] [u'group', u'wasnt', u'bank', u'rush', u'pledg'] [u'gunner', u'test', u'newli', u'promot', u'portsmouth'] [u'hall', u'face', u'insur', u'slug'] [u'harvey', u'norman', u'profit', u'jump'] [u'health', u'profession', u'tackl', u'industri', u'crisi'] [u'hospit', u'offici', u'urg', u'state', u'feder', u'cooper'] [u'hous', u'sector', u'slow', u'june', u'quarter'] [u'hundr', u'jobless', u'smelter', u'close'] [u'inquiri', u'seek', u'differ', u'approach', u'drug', u'fight'] [u'isra', u'troop', u'roll', u'west', u'bank'] [u'jobless', u'rate', u'drop', u'riverina'] [u'kangara', u'food', u'deal', u'boost', u'facil'] [u'kid', u'hospit', u'cannabi', u'overdos'] [u'lambert', u'blow', u'celtic', u'ger', u'lovenkrand'] [u'work', u'bendigo', u'council', u'chief'] [u'secur', u'pose', u'defenc', u'risk', u'expert'] [u'legal', u'action', u'delay', u'ansett', u'payment'] [u'lifestyl', u'underpin', u'australia', u'grow', u'obes'] [u'lion', u'tripl', u'dream', u'aliv'] [u'lion', u'lead', u'chang'] [u'lion', u'readi', u'turn', u'heat', u'matthew'] [u'live', u'cattl', u'trade', u'boost', u'rural', u'economi'] [u'live', u'sheep', u'trade', u'saudi', u'arabia'] [u'magnesium', u'group', u'record', u'loss'] [u'accus', u'stuttl', u'murder', u'await', u'trial', u'decis'] [u'custodi', u'hour', u'sieg'] [u'plead', u'guilti', u'meat', u'cleaver', u'attack'] [u'stand', u'trial', u'monash', u'shoot'] [u'mask', u'guerrilla', u'battl', u'soldier', u'iraq'] [u'maximum', u'forc', u'hurrican', u'isabel', u'extrem', u'danger'] [u'medic', u'group', u'hold', u'talk', u'canberra'] [u'melbourn', u'storm', u'home', u'canberra'] [u'takeov', u'mean', u'job', u'shake'] [u'model', u'predict', u'chanc', u'lung', u'cancer', u'relaps'] [u'monaghan', u'confirm', u'raider'] [u'monash', u'lectur', u'tell', u'court', u'alleg', u'gunman'] [u'doubt', u'rais', u'aquif', u'plan'] [u'mottram', u'hand', u'mont', u'carlo', u'wild', u'card'] [u'mount', u'concern', u'abbrevi', u'town'] [u'welcom', u'mcewen', u'health', u'fund', u'debat'] [u'museum', u'repatri', u'aborigin', u'remain'] [u'musharraf', u'say', u'lade', u'hide', u'tribal'] [u'nalbandian', u'join', u'coria', u'argentin', u'injuri', u'list'] [u'nat', u'highlight', u'powerlin', u'dispar'] [u'campaign', u'target', u'tourist'] [u'northam', u'estat', u'win', u'land', u'plan', u'award'] [u'nozal', u'cement', u'vuelta', u'lead'] [u'kiln', u'maker', u'take', u'global', u'market'] [u'senior', u'public', u'servant', u'rise'] [u'outspoken', u'zimbabwean', u'newspap', u'oper', u'illeg'] [u'palestinian', u'urg', u'protect', u'arafat', u'exil'] [u'panther', u'tough', u'bronco', u'say'] [u'parent', u'want', u'teacher', u'disput', u'resolv'] [u'payn', u'saddl', u'season', u'open'] [u'payout', u'deal', u'secur', u'french', u'vote', u'libya'] [u'pension', u'slight', u'rise'] [u'phoenix', u'claim', u'titl', u'record', u'crowd'] [u'plan', u'consid', u'hospit', u'servic', u'chang'] [u'prais', u'australia', u'resili', u'economi'] [u'polic', u'arrest', u'head', u'algerian', u'publish', u'group'] [u'polic', u'suspect', u'arson', u'shop', u'centr', u'fire'] [u'polic', u'search', u'bodi', u'burn', u'hous'] [u'pompey', u'promis', u'test', u'highburi'] [u'porn', u'film', u'strip', u'italian', u'church', u'holi'] [u'porter', u'squad', u'select'] [u'porter', u'aust', u'squad', u'select'] [u'power', u'firm', u'appeal', u'pawa', u'action'] [u'power', u'recal', u'collin', u'jam', u'vital', u'clash'] [u'price', u'tie', u'fourth', u'goosen', u'lead', u'franc'] [u'firefight', u'battl', u'bush', u'blaze'] [u'govt', u'offer', u'rainforest', u'indigen', u'assur'] [u'quak', u'claim', u'shaki'] [u'race', u'open', u'wound', u'south', u'africa'] [u'racism', u'affect', u'world', u'rugbi', u'oneil'] [u'rain', u'fail', u'subdu', u'sept', u'condol'] [u'research', u'error', u'undermin', u'drug', u'warn'] [u'research', u'focus', u'sugar', u'futur'] [u'resid', u'claim', u'road', u'victori', u'council'] [u'resid', u'seek', u'legal', u'fight', u'develop'] [u'rise', u'number', u'bolster', u'aust', u'dollar'] [u'roadwork', u'boost', u'access', u'communiti'] [u'romanian', u'miss', u'squad'] [u'ronaldo', u'take', u'swipe', u'pele', u'goal', u'record'] [u'ruddock', u'say', u'high', u'centr', u'cost', u'reflect', u'drop'] [u'rural', u'board', u'review', u'differ', u'local', u'govt', u'reform'] [u'sartor', u'promis', u'water', u'restrict', u'polic'] [u'scheme', u'address', u'region', u'skill', u'worker', u'shortag'] [u'scotland', u'townsend', u'world', u'injuri', u'scare'] [u'shearer', u'sign', u'toon', u'deal'] [u'singh', u'shoot', u'night', u'fall', u'chicago'] [u'smallpox', u'vaccin', u'inhibit', u'aid', u'spread'] [u'small', u'turnout', u'bicentenari'] [u'spain', u'newsman', u'accus', u'aid', u'qaeda'] [u'join', u'china', u'bahrain', u'calendar'] [u'spanish', u'giant', u'europ'] [u'special', u'citizenship', u'ceremoni', u'moruya'] [u'specul', u'classifi', u'file', u'fell', u'chines'] [u'storm', u'break'] [u'suspici', u'transact', u'point', u'grow', u'cash'] [u'swan', u'hill', u'seek', u'commonwealth', u'game', u'involv'] [u'sweden', u'push', u'ahead', u'euro', u'vote', u'despit'] [u'swedish', u'polic', u'hunt', u'foreign', u'minist', u'assassin'] [u'aborigin', u'mourn', u'invas'] [u'tasmania', u'major', u'tertiari', u'institut'] [u'teacher', u'strike', u'risk', u'alien', u'public', u'educ'] [u'terror', u'fear', u'fail', u'subdu', u'market'] [u'textil', u'giant', u'seek', u'slower', u'tariff', u'reform'] [u'uncov', u'cross', u'breach'] [u'recent', u'drug', u'raid', u'heron'] [u'timber', u'firm', u'branch', u'grape', u'product'] [u'toddler', u'overdos', u'cannabi', u'babysitt', u'bail'] [u'tourist', u'associ', u'seek', u'member'] [u'soldier', u'kill', u'spate', u'iraqi', u'attack'] [u'uncertain', u'futur', u'armidal', u'explor', u'servic'] [u'union', u'campaign', u'countri', u'teacher', u'boost'] [u'union', u'ralli', u'telstra', u'job'] [u'union', u'question', u'govt', u'public', u'asset', u'sale'] [u'union', u'want', u'incent', u'remot', u'polic'] [u'upgrad', u'give', u'aerodrom', u'weather'] [u'uruguay', u'pin', u'hop', u'homeboy'] [u'forc', u'mistaken', u'kill', u'iraqi', u'polic'] [u'marin', u'jail', u'rape', u'japan'] [u'paus', u'honour', u'sept', u'victim'] [u'plan', u'merci', u'mission', u'sick', u'antarct', u'worker'] [u'senat', u'debat', u'media', u'ownership', u'law'] [u'troop', u'rememb', u'septemb', u'victim'] [u'warn', u'possibl', u'qaeda', u'strike', u'bigger'] [u'urg', u'greater', u'support', u'children'] [u'voss', u'close', u'percent', u'matthew'] [u'claim', u'centr', u'inquiri', u'strong'] [u'westpac', u'drop', u'bank'] [u'white', u'vow', u'fight', u'medal'] [u'wimbledon', u'stick', u'tradit', u'slot'] [u'window', u'flaw', u'threaten', u'internet', u'secur'] [u'world', u'nation', u'park', u'need', u'billion', u'extra', u'fund'] [u'world', u'warn', u'israel', u'banish', u'arafat'] [u'wrangl', u'continu', u'pasminco'] [u'youhana', u'fight', u'centuri', u'fortifi', u'pakistan'] [u'youhana', u'steer', u'pakistan'] [u'arrest', u'chile', u'coup', u'anniversari'] [u'ambros', u'pole', u'sandown'] [u'annan', u'power', u'launch', u'talk', u'iraq', u'futur'] [u'antarct', u'ozon', u'hole', u'biggest', u'scientist'] [u'arafat', u'say', u'exil', u'threat', u'target', u'palestinian', u'rule'] [u'ashcroft', u'casualti', u'lion'] [u'bale', u'play', u'cap', u'crusad', u'movi'] [u'beckham', u'reveal', u'secret', u'success'] [u'briton', u'fail', u'cross', u'arctic', u'ocean', u'kayak'] [u'bulldog', u'brace', u'fire', u'warrior'] [u'bushfir', u'emerg', u'declar', u'northern'] [u'appoint', u'minist', u'perth'] [u'carr', u'beat', u'crean', u'prefer', u'leader', u'poll'] [u'celtic', u'lambert', u'rule', u'munich', u'open'] [u'chalmer', u'hang', u'rain', u'hit', u'chicago'] [u'charg', u'lay', u'detect', u'schoolgirl'] [u'children', u'evacu', u'sunshin', u'coast', u'bushfir'] [u'church', u'plan', u'code', u'stop', u'abus'] [u'costello', u'say', u'state', u'dud', u'taxpay'] [u'coupl', u'ban', u'kid', u'cannabi', u'charg'] [u'court', u'dismiss', u'implos', u'appeal'] [u'crow', u'veteran', u'bickley', u'bow'] [u'davi', u'drop', u'solheim', u'foursom'] [u'democrat', u'support', u'region', u'rebat', u'review'] [u'canio', u'line', u'crack', u'unit'] [u'doctor', u'protest', u'medic', u'indemn', u'levi', u'brisban'] [u'confirm', u'dead', u'canada', u'plane', u'crash'] [u'guerrouj', u'aim', u'athen', u'doubl'] [u'england', u'prove', u'wrong', u'admit', u'campes'] [u'england', u'batsman', u'robin', u'smith', u'quit'] [u'fiji', u'govt', u'sell', u'paper', u'indigen', u'compani'] [u'fiji', u'seven', u'wizard', u'serevi'] [u'meli', u'sink', u'bulldog'] [u'flower', u'sign', u'deal', u'essex'] [u'friend', u'kill', u'iraqi', u'polic'] [u'run', u'goosen', u'warn', u'rival'] [u'garlic', u'test', u'snail', u'slug'] [u'govt', u'deni', u'mislead', u'public', u'iraq', u'risk'] [u'hanson', u'jail', u'boost', u'nation', u'support'] [u'hewitt', u'tune', u'davi', u'semi'] [u'high', u'meli', u'warrior', u'sink', u'bulldog'] [u'howard', u'loos', u'truth', u'iraq', u'rudd'] [u'hurrican', u'isabel', u'move', u'atlant', u'ocean'] [u'india', u'say', u'iraqi', u'troop', u'request'] [u'indonesia', u'make', u'spook', u'ambassador', u'east'] [u'intercept', u'exercis', u'stag'] [u'interdict', u'drill', u'send', u'warn', u'hill'] [u'iran', u'accus', u'ieae', u'bow', u'nuclear'] [u'iran', u'threaten', u'cooper', u'nuclear'] [u'israel', u'snub', u'warn', u'arafat', u'exil'] [u'jordan', u'uncov', u'terror', u'cell', u'report'] [u'kashmir', u'attack', u'kill', u'soldier'] [u'kefu', u'loss', u'throw', u'rival', u'game', u'plan', u'jone'] [u'lade', u'clear', u'pie', u'clash'] [u'legless', u'prison', u'escap', u'south', u'african'] [u'lion', u'good', u'voss'] [u'london', u'airport', u'clear', u'secur', u'alert'] [u'london', u'airport', u'evacu', u'secur', u'alert'] [u'magnific', u'rooster', u'newcastl', u'season'] [u'charg', u'paddock', u'murder'] [u'melbourn', u'protest', u'march'] [u'melbourn', u'storm', u'home', u'canberra'] [u'sar', u'like', u'diseas', u'like', u'chief'] [u'music', u'world', u'mourn', u'cash'] [u'report', u'dead', u'portugues', u'plane', u'crash'] [u'nutti', u'nose', u'nudger', u'reach', u'hard', u'road'] [u'opal', u'outshin', u'tall', u'fern'] [u'orchard', u'owner', u'win', u'businesswoman', u'award'] [u'outback', u'gear', u'festiv', u'weekend'] [u'pace', u'bowler', u'sami', u'pakistan', u'team', u'injuri'] [u'polic', u'kill', u'suspect', u'mumbai', u'bomb', u'mastermind'] [u'powel', u'reject', u'french', u'propos', u'iraq'] [u'powel', u'visit', u'baghdad'] [u'power', u'clash', u'pie'] [u'protea', u'skipper', u'smith', u'step', u'bok', u'race'] [u'doctor', u'ralli', u'indemn', u'levi'] [u'lib', u'presid', u'accus', u'branch', u'stack'] [u'ranieri', u'say', u'makalel', u'power', u'chelsea', u'machin'] [u'rasmussen', u'shin', u'nozal', u'feel', u'pressur'] [u'rooster', u'throw', u'gauntlet', u'knight'] [u'rubin', u'bali'] [u'rwandan', u'presid', u'swear'] [u'sever', u'storm', u'victorian', u'emerg', u'crew', u'busi'] [u'shock', u'obstetrician', u'number', u'worsen', u'say'] [u'small', u'plan', u'return', u'grind', u'mechan'] [u'swedish', u'newspap', u'releas', u'photo', u'lindh', u'murder'] [u'tape', u'probabl', u'lade'] [u'teen', u'die', u'alleg', u'surf', u'accid'] [u'audit', u'cross', u'blood', u'servic'] [u'thousand', u'honour', u'murder', u'swedish', u'minist'] [u'titl', u'hop', u'vanish', u'ralf', u'schumach'] [u'titl', u'pressur', u'boil', u'monza'] [u'townsend', u'go', u'knife'] [u'tredrea', u'run', u'port'] [u'tredrea', u'doubt', u'port'] [u'typhoon', u'maemi', u'claim', u'live', u'south', u'korea'] [u'typhoon', u'maemi', u'kill', u'south', u'korea'] [u'iraq', u'inquiri', u'summon', u'head'] [u'ullrich', u'year', u'quest', u'titl', u'glori'] [u'union', u'push', u'better', u'deal', u'rural', u'polic'] [u'say', u'taylor', u'tri', u'liberia'] [u'secur', u'council', u'lift', u'libya', u'sanction'] [u'unwant', u'sheep', u'shipment', u'head', u'port'] [u'watchdog', u'set', u'iran', u'nuclear', u'deadlin'] [u'express', u'regret', u'iraq', u'shootout'] [u'stock', u'claw', u'posit', u'territori'] [u'venezuela', u'elector', u'council', u'reject', u'chavez'] [u'govt', u'probe', u'doctor', u'real', u'estat', u'photo'] [u'villa', u'confirm', u'talk', u'investor'] [u'villeneuv', u'fear', u'japan'] [u'warrior', u'half', u'time'] [u'talk', u'dog', u'friction', u'clock', u'tick'] [u'zimbabw', u'polic', u'shut', u'privat', u'newspap'] [u'zimbabw', u'inflat'] [u'kill', u'indian', u'kashmir'] [u'accc', u'head', u'say', u'rule', u'prove', u'knocker', u'wrong'] [u'adelaid', u'teenag', u'die', u'meningococc', u'diseas'] [u'aisbett', u'bradford', u'claim', u'win', u'queensland'] [u'alonso', u'go', u'hero', u'zero'] [u'anim', u'liber', u'poultri', u'raid', u'prompt', u'govt'] [u'drown', u'refuge', u'ditch', u'gulf'] [u'baro', u'injuri', u'overshadow', u'liverpool'] [u'beckham', u'aim', u'play', u'day', u'real'] [u'beckham', u'ban', u'famili', u'istanbul', u'grudg', u'match'] [u'bronco', u'break'] [u'civil', u'libertarian', u'condemn', u'driver', u'drug', u'test'] [u'costello', u'hint', u'beatti', u'eye', u'canberra', u'tilt'] [u'crocodil', u'attack', u'year', u'girl'] [u'hoya', u'shock', u'mosley', u'captur', u'doubl'] [u'dementieva', u'crush', u'rubin', u'bali', u'final'] [u'drink', u'doubl', u'risk', u'male', u'colon', u'cancer', u'report'] [u'europ', u'regain', u'solheim'] [u'exil', u'fujimori', u'plan', u'contest', u'perus'] [u'crew', u'brace', u'battl'] [u'kill', u'aceh'] [u'free', u'trade', u'deal', u'look', u'year', u'vail'] [u'goosen', u'charg', u'versaill'] [u'govt', u'consid', u'altern', u'stopov', u'rout', u'avoid'] [u'govt', u'vow', u'push', u'super', u'chang'] [u'granni', u'run', u'dementia', u'boost', u'fund'] [u'harrison', u'guitar', u'sell', u'auction'] [u'heavi', u'gunfir', u'erupt', u'mourner', u'gather', u'fallujah'] [u'hewson', u'accus', u'govt', u'lose', u'plot'] [u'hockey', u'renew', u'earli', u'elect', u'talk'] [u'howard', u'laugh', u'earli', u'elect', u'rumour'] [u'howard', u'say', u'enemi', u'number'] [u'isra', u'minist', u'say', u'kill', u'arafat', u'option'] [u'jone', u'presid'] [u'kenya', u'embark', u'cricket', u'tour'] [u'kewel', u'seal', u'liverpool', u'neill', u'face'] [u'lankan', u'spinner', u'ban', u'fatal', u'crash'] [u'largest', u'wheat', u'grower', u'face', u'civil', u'court', u'action'] [u'board', u'tram', u'shotgun'] [u'mask', u'ransack', u'network', u'ramallah', u'offic'] [u'matilda', u'gear', u'canada', u'clash'] [u'meat', u'loaf', u'gurus', u'rock', u'grand', u'final'] [u'mexican', u'polic', u'discov', u'drug', u'tunnel'] [u'mexico', u'float', u'compromis', u'draft'] [u'miss', u'dead'] [u'namibian', u'doctor', u'vuuren', u'histori'] [u'nationalist', u'parti', u'win', u'seat', u'morocco'] [u'naval', u'exercis', u'enrag', u'north', u'korea'] [u'neill', u'horror', u'tackl', u'put', u'carragh', u'action'] [u'deal', u'power', u'talk'] [u'crack', u'anim', u'cruelti'] [u'provid', u'special', u'protect', u'albino'] [u'pakistan', u'help', u'qaeda', u'afghanistan'] [u'pakistan', u'reject', u'report', u'assist', u'qaeda'] [u'palestinian', u'parliamentari', u'session'] [u'palestinian', u'debat'] [u'panther', u'gallant', u'bronco', u'season'] [u'peacekeep', u'deploy', u'liberian', u'port', u'citi'] [u'pompey', u'prove', u'live', u'boy'] [u'port', u'upbeat', u'jam', u'chanc'] [u'powel', u'pledg', u'iraq', u'power', u'return', u'cours'] [u'priddi', u'injuri', u'blow', u'panther'] [u'radcliff', u'set', u'world', u'best'] [u'rain', u'stop', u'play', u'chicago'] [u'real', u'seven', u'tristan', u'take', u'deportivo'] [u'report', u'find', u'unsaf', u'practic', u'sydney', u'hospit'] [u'rodriguez', u'tour', u'spain', u'home'] [u'rspca', u'leav', u'speechless', u'teen', u'club', u'chicken'] [u'rubin', u'face', u'dementieva', u'bali', u'final'] [u'russia', u'urg', u'iran', u'cooper', u'iaea'] [u'scale', u'women', u'world', u'promis', u'qualiti'] [u'schuettler', u'set', u'final', u'clash', u'schalken'] [u'schumach', u'seiz', u'monza', u'pole'] [u'schumach', u'snatch', u'italian', u'victori'] [u'search', u'continu', u'miss', u'year', u'girl'] [u'seven', u'kill', u'russia', u'road', u'accid'] [u'shake', u'swede', u'vote', u'euro', u'referendum'] [u'skaif', u'take', u'sandown'] [u'south', u'african', u'karachi', u'check', u'secur'] [u'south', u'korean', u'troop', u'assist', u'typhoon', u'clean'] [u'squad', u'alight', u'outsid', u'polic', u'station'] [u'korea', u'begin', u'typhoon', u'clean', u'dead'] [u'strike', u'address', u'teacher', u'shortag'] [u'sydney', u'student', u'smash', u'wash', u'record'] [u'tanzanian', u'sydney', u'marathon'] [u'score', u'contract', u'build', u'anti', u'terror', u'helicopt'] [u'celt', u'sink', u'dunde'] [u'thirti', u'fire', u'burn'] [u'charg', u'kill', u'chicken'] [u'point', u'lead', u'say', u'euro', u'captain', u'nilsmark'] [u'toronto', u'film', u'fest', u'pack', u'deckchair'] [u'tourism', u'huge', u'threat', u'global', u'environ', u'studi'] [u'tourism', u'fund', u'cut', u'impact', u'job'] [u'tredrea', u'hail', u'port', u'turnaround'] [u'milan', u'lazio'] [u'posit', u'dope', u'test', u'world', u'report'] [u'year', u'restor', u'power', u'iraq', u'minist'] [u'soldier', u'die', u'iraq', u'attack'] [u'wallabi', u'escap', u'darwin'] [u'warehous', u'chain', u'bring', u'plastic', u'levi'] [u'white', u'put', u'troubl'] [u'windi', u'condit', u'hamper', u'firefight', u'effort'] [u'winner', u'vocat', u'train', u'award', u'announc'] [u'talk', u'edg', u'forward', u'polic', u'brace', u'protest'] [u'zimbabw', u'media', u'cwealth', u'condemn', u'newspap', u'closur'] [u'allow', u'runaway', u'monkey', u'home', u'luxuri'] [u'dead', u'dozen', u'injur', u'south', u'american'] [u'fijian', u'soldier', u'head', u'iraq'] [u'abattoir', u'meet', u'offer', u'littl', u'entitl', u'hope'] [u'affleck'] [u'court', u'yang', u'power', u'station', u'snub'] [u'agreement', u'help', u'boost', u'busi', u'opportun'] [u'alic', u'hors', u'shine', u'turf', u'club', u'award'] [u'figur', u'gather', u'willese', u'funer'] [u'consult', u'doctor', u'scath', u'hospit', u'report'] [u'anelka', u'trick', u'put', u'citi'] [u'anger', u'mine', u'hour', u'forum', u'snub'] [u'anglican', u'bishop', u'say', u'region', u'dioces', u'merger'] [u'assassin', u'acquit', u'extort'] [u'hang', u'fiji', u'walk', u'wound'] [u'babi', u'boomer', u'volunt', u'studi', u'launch'] [u'baggaley', u'paddl', u'kayak', u'gold'] [u'bali', u'blast', u'accomplic', u'sentenc', u'jail'] [u'bash', u'victim', u'die', u'hospit'] [u'battl', u'goosen', u'hold', u'nerv', u'versaill'] [u'bennett', u'close', u'origin', u'quit', u'decis'] [u'bickley', u'make', u'retir', u'offici'] [u'bomb', u'destroy', u'build', u'near', u'chechnya'] [u'boost', u'signal', u'meet', u'mix', u'recept'] [u'brigad', u'battl', u'fire', u'northern'] [u'british', u'minist', u'recal', u'iraq', u'weapon', u'inquiri'] [u'bronco', u'kelli', u'face', u'judiciari'] [u'bulldog', u'claim', u'premiership'] [u'burrup', u'emerg', u'servic', u'spotlight'] [u'council', u'share', u'revenu'] [u'crackdown', u'wealth', u'creat', u'scheme'] [u'dissolv', u'sugar'] [u'chemist', u'supermarket', u'pharmaci'] [u'cloet', u'guerrouj', u'name', u'athlet', u'year'] [u'council', u'branch', u'shire'] [u'council', u'urg', u'coal', u'concern'] [u'council', u'decid', u'feedlot'] [u'crean', u'target', u'report'] [u'deal', u'strike', u'adelaid', u'termin'] [u'democrat', u'senat', u'sit'] [u'downer', u'push', u'talk'] [u'downer', u'shrug', u'korea', u'threat'] [u'driver', u'hospit', u'crash', u'unit'] [u'educ', u'spotlight', u'berri'] [u'tourist', u'kidnap', u'colombian', u'lose', u'citi'] [u'highlight', u'need', u'smelter', u'hous', u'clean'] [u'ettridg', u'lodg', u'high', u'court', u'bail', u'appeal'] [u'euro', u'giant', u'warm', u'champion', u'leagu', u'style'] [u'exil', u'greek', u'king', u'open', u'school', u'sport', u'centr'] [u'austrian', u'joker', u'berger', u'bow'] [u'north', u'firm', u'sign', u'benefit', u'agreement'] [u'feder', u'parliament', u'women', u'suffrag', u'sculptur'] [u'govt', u'offer', u'farmer', u'drought'] [u'govt', u'pressur', u'privat', u'fund', u'medic'] [u'dead', u'crash', u'argentina'] [u'final', u'reject', u'swell', u'kangaroo', u'squad'] [u'firefight', u'continu', u'battl', u'contain', u'bushfir'] [u'firefight', u'monitor', u'tableland', u'bushfir'] [u'fire', u'burn', u'northern'] [u'fish', u'group', u'oppos', u'finfish', u'plan'] [u'flight', u'uncov', u'nation', u'park', u'cannabi', u'crop'] [u'dead', u'sydney', u'stab'] [u'freeway', u'toll', u'unpopular', u'motorist', u'survey'] [u'freight', u'firm', u'push', u'darwin', u'alic', u'rail', u'benefit'] [u'fund', u'tourist', u'trail'] [u'good', u'crowd', u'turn'] [u'govern', u'push', u'ahead', u'univers', u'reform'] [u'govt', u'consid', u'extend', u'timefram', u'request'] [u'govt', u'figur', u'fuel', u'earli', u'poll', u'specul'] [u'govt', u'move', u'combat', u'drop', u'resourc', u'explor'] [u'govt', u'allow', u'extradit', u'lebanon'] [u'grazier', u'appeal', u'clear', u'fine'] [u'gunmen', u'captur', u'explos', u'seiz'] [u'half', u'worker', u'redund'] [u'hanson', u'consid', u'high', u'court', u'bail', u'appeal'] [u'hanson', u'ettridg', u'await', u'bail', u'decis'] [u'health', u'author', u'defend', u'treatment'] [u'hewitt', u'scud', u'readi', u'davi', u'clash', u'fitzgerald'] [u'historian', u'question', u'forest', u'claim'] [u'holden', u'tri', u'stop', u'industri', u'action'] [u'holland', u'deserv', u'play', u'port', u'buckley'] [u'hospit', u'administr', u'quiz'] [u'howard', u'dous', u'earli', u'poll', u'talk'] [u'icac', u'confirm', u'puplick', u'investig'] [u'inca', u'wall', u'fall', u'archaeologist', u'hotel'] [u'indian', u'court', u'convict', u'missionari', u'murder'] [u'indigen', u'jail', u'rise'] [u'injur', u'puma', u'captain', u'arbizu', u'miss', u'world'] [u'iraq', u'industri', u'run'] [u'iraq', u'polic', u'chief', u'soldier', u'kill'] [u'israel', u'rule', u'immedi', u'remov', u'arafat'] [u'jackson', u'make', u'breakthrough'] [u'jackson', u'name', u'america'] [u'japanes', u'consid', u'review', u'constitut'] [u'respons', u'bali', u'imron'] [u'trainer', u'seek', u'bendigo', u'council', u'spot'] [u'juri', u'consid', u'verdict', u'trial'] [u'juve', u'roma', u'inter', u'pace', u'itali'] [u'kasper', u'stand', u'vain', u'surrey', u'claim', u'titl'] [u'kenyan', u'polic', u'clash', u'student', u'lectur'] [u'kidwel', u'chanc', u'dog', u'clash', u'say', u'bellami'] [u'labor', u'predict', u'increas', u'privat', u'health'] [u'landcar', u'group', u'face', u'fund', u'fear'] [u'landhold', u'illeg', u'fenc', u'warn'] [u'lawrenc', u'welcom', u'competit', u'presid'] [u'lion', u'port', u'sweat', u'video', u'review'] [u'lithuania', u'claim', u'european', u'championship'] [u'live', u'near', u'flight', u'path', u'stink', u'woman', u'say'] [u'local', u'teacher', u'join', u'wednesday', u'strike'] [u'madonna', u'launch', u'children', u'book'] [u'magpi', u'frustrat', u'final', u'ticket'] [u'arrest', u'eldest', u'william', u'sister', u'murder'] [u'bad', u'burn', u'servic', u'station', u'stand'] [u'charg', u'brisban', u'stab'] [u'charg', u'polic', u'bash'] [u'face', u'drug', u'charg', u'wife', u'report', u'break'] [u'plead', u'guilti', u'murder', u'trial'] [u'face', u'court', u'slash'] [u'martin', u'say', u'katherin', u'elect', u'tough'] [u'matilda', u'crash', u'loss'] [u'mayor', u'claim', u'support', u'rationalis', u'servic'] [u'mayor', u'upbeat', u'plan', u'drink', u'law'] [u'melbourn', u'catch', u'worst', u'year'] [u'merbein', u'repeat', u'premiership'] [u'militari', u'seiz', u'power', u'guinea', u'bissau'] [u'miller', u'hand', u'chairman'] [u'minist', u'consid', u'legal', u'action', u'sydney'] [u'monaro', u'high', u'rock', u'place', u'eisteddfod'] [u'detail', u'emerg', u'fatal', u'crash'] [u'air', u'forest', u'project', u'fear'] [u'air', u'wind', u'farm', u'invest', u'fear'] [u'cast', u'doubt', u'push', u'region', u'reform'] [u'nehra', u'doubt', u'face', u'zealand'] [u'netbal', u'australia', u'seal', u'deal'] [u'program', u'aim', u'tackl', u'sport'] [u'newscorp', u'drag'] [u'injuri', u'panther', u'pull'] [u'expect', u'lead', u'econom', u'growth'] [u'govt', u'consid', u'simpler', u'council', u'environ'] [u'palestinian', u'child', u'shoot', u'dead', u'near', u'ramallah'] [u'parliamentari', u'committe', u'explor', u'trade', u'avenu'] [u'perth', u'farewel', u'foreign', u'minist'] [u'philippin', u'rever', u'cardin', u'retir'] [u'plane', u'clear', u'emerg', u'land'] [u'plane', u'forc', u'emerg', u'land'] [u'plan', u'hatch', u'chook', u'power'] [u'plan', u'afoot', u'timber', u'plant'] [u'polic', u'question', u'mitchel', u'stab'] [u'polic', u'driver', u'ignor', u'drink', u'drive'] [u'star', u'court', u'damag', u'claim'] [u'port', u'lade', u'face', u'tribun'] [u'powel', u'criticis', u'isra', u'minist', u'kill'] [u'powel', u'shi', u'away', u'iraq', u'handov', u'deadlin'] [u'powel', u'visit', u'kurdish', u'attack', u'site'] [u'power', u'windi', u'night'] [u'privat', u'radio', u'station', u'boycott', u'burundi', u'govern'] [u'question', u'agricultur', u'colleg', u'job', u'decis'] [u'public', u'warn', u'firework', u'steal'] [u'public', u'warn', u'shonki', u'roof', u'painter'] [u'public', u'warn', u'follow', u'wast', u'station', u'rule'] [u'research', u'say', u'spong', u'project', u'hold', u'water'] [u'resid', u'evacu', u'south', u'melbourn', u'blaze'] [u'keep', u'close', u'clarenc', u'bushfir'] [u'monitor', u'blaze'] [u'riverland', u'base', u'scheme', u'win', u'train', u'award'] [u'road', u'attack', u'hong', u'kong', u'cyclist'] [u'roam', u'phone', u'dead'] [u'robe', u'shake', u'past', u'loss', u'grand', u'final'] [u'rooster', u'score', u'premiership'] [u'polic', u'probe', u'bolkus', u'raffl'] [u'schalken', u'take', u'ninth', u'career', u'titl'] [u'scheme', u'aim', u'boost', u'indigen', u'forest', u'job'] [u'schumach', u'win', u'pole', u'championship'] [u'scientist', u'bank', u'seed', u'collect'] [u'scientist', u'discov', u'fish'] [u'eagl', u'premiership', u'flag'] [u'search', u'resum', u'miss', u'teenag'] [u'singh', u'lewi', u'tie', u'chicago'] [u'sister', u'venus', u'serena', u'william', u'shoot', u'dead'] [u'sister', u'william', u'tenni', u'star', u'shoot', u'dead'] [u'resort', u'welcom', u'snowfal'] [u'skorean', u'northern', u'visit'] [u'slipperi', u'judo', u'jacket', u'throw', u'world', u'game'] [u'standov', u'man', u'murder', u'lead', u'court', u'appear'] [u'stewart', u'retir', u'cricket', u'report'] [u'sudanes', u'newspap', u'remain', u'suspend'] [u'survey', u'find', u'fewer', u'canberra', u'student', u'light'] [u'swan', u'oloughlin', u'fit', u'turn'] [u'swede', u'vote', u'currenc'] [u'sydney', u'busi', u'benefit', u'final', u'fortnight'] [u'sydney', u'nightclub', u'worker', u'charg', u'drug', u'raid'] [u'talk', u'deadlock', u'meet', u'wind'] [u'hint', u'asbesto', u'compo', u'reform'] [u'anglican', u'dioces', u'merg'] [u'tourist', u'flock', u'restor', u'templ'] [u'trio', u'battl', u'lib', u'ballarat', u'preselect'] [u'union', u'predict', u'expand', u'role', u'nurs'] [u'unhappi', u'geraldton', u'enrol', u'number'] [u'soldier', u'kill', u'baghdad', u'attack'] [u'govt', u'stand', u'grind', u'ahead', u'teacher', u'strike'] [u'oppn', u'support', u'region', u'campaign'] [u'virenqu', u'throw', u'vuelta'] [u'govt', u'miner', u'industri', u'advic'] [u'wallabi', u'unveil', u'lightweight', u'jersey'] [u'wallabi', u'unveil', u'look', u'jersey'] [u'oppn', u'predict', u'fewer', u'dairi', u'farmer'] [u'warrnambool', u'back', u'skill', u'worker', u'push'] [u'water', u'storag', u'boost', u'need', u'eas', u'restrict'] [u'westfield', u'sell', u'precinct'] [u'wife', u'face', u'court', u'stab'] [u'william', u'famili', u'pay', u'tribut', u'slay', u'sister'] [u'winegrap', u'shortag', u'predict', u'riverland'] [u'woman', u'face', u'court', u'murder', u'charg'] [u'talk', u'fail', u'mexico'] [u'trade', u'talk', u'collaps'] [u'yuendumu', u'win', u'cafl', u'countri'] [u'zimbabw', u'indi', u'paper', u'appli', u'publish'] [u'fear', u'dead', u'nepal', u'accid'] [u'depart', u'defend', u'plan', u'remov', u'blue', u'gum'] [u'actew', u'accus', u'stifl', u'competit'] [u'nationwid', u'year'] [u'alleg', u'illeg', u'fishermen', u'hold', u'darwin'] [u'american', u'women', u'soccer', u'leagu', u'fold'] [u'delay', u'split', u'detail'] [u'amrozi', u'appeal', u'fail'] [u'angler', u'oppos', u'marin', u'park', u'extens'] [u'angri', u'houllier', u'call', u'lengthi', u'coward'] [u'anti', u'terror', u'campaign', u'menac', u'press', u'freedom'] [u'arafat', u'aid', u'propos', u'indefinit', u'ceasefir'] [u'asio', u'back'] [u'claw', u'earli', u'loss'] [u'dead', u'nepal', u'accid'] [u'australia', u'forecast', u'wetter', u'normal'] [u'australia', u'top', u'chart', u'hire', u'intent'] [u'author', u'defus', u'school', u'bomb', u'ireland'] [u'bare', u'face', u'cheek', u'cost', u'german', u'athlet', u'dear'] [u'beatti', u'open', u'hospit', u'revamp'] [u'bennett', u'quit', u'maroon', u'report'] [u'blast', u'kill', u'japan', u'hostag', u'incid'] [u'blaze', u'kill', u'inmat', u'saudi', u'prison'] [u'bodi', u'exhum', u'solomon', u'island'] [u'boost', u'lobster', u'fisheri', u'catch'] [u'breakthrough', u'heart', u'diseas', u'studi'] [u'british', u'famili', u'open', u'life', u'public'] [u'brother', u'murder', u'missionari', u'forgiv', u'killer'] [u'california', u'elect', u'postpon'] [u'care', u'amidst', u'burn', u'off'] [u'nation', u'indigen', u'educ', u'probe'] [u'channel', u'tunnel', u'train', u'track'] [u'child', u'die', u'motorbik', u'accid'] [u'china', u'say', u'space', u'launch', u'countdown', u'go', u'smooth'] [u'chrome', u'room', u'propos', u'face', u'melbourn', u'council'] [u'clijster', u'keep', u'number', u'rank'] [u'climat', u'chang', u'bring', u'benefit', u'grower'] [u'cole', u'accus', u'illeg', u'salmon', u'import'] [u'commonwealth', u'urg', u'revers', u'zimbabw', u'chogm'] [u'communiti', u'work', u'solut', u'curb', u'racial'] [u'council', u'develop', u'applic', u'rise'] [u'councillor', u'contest', u'lib', u'bendigo', u'preselect'] [u'council', u'form', u'health', u'committe'] [u'crean', u'fall', u'poll'] [u'crean', u'play', u'latest', u'dire', u'opinion', u'poll'] [u'curb', u'tobacco', u'help', u'health', u'care'] [u'disgrac', u'back', u'court', u'action'] [u'disgrac', u'quit'] [u'disloyalti', u'charg', u'labor', u'dismiss'] [u'doctor', u'await', u'meningococc', u'test', u'result'] [u'doctor', u'group', u'upbeat', u'find', u'indemn'] [u'earlier', u'start', u'eurobodalla', u'bushfir', u'danger'] [u'earli', u'poll', u'agenda', u'crean', u'slip'] [u'delay', u'frustrat', u'farmer'] [u'equip', u'fault', u'identifi', u'sewag', u'spill', u'caus'] [u'farmer', u'drought', u'long', u'wait'] [u'fear', u'mount', u'miss', u'woman'] [u'feder', u'obstacl', u'davi', u'glori'] [u'govt', u'urg', u'cast', u'fish', u'woe'] [u'ferrari', u'refus', u'rule', u'tyre', u'action'] [u'fiji', u'busi', u'leader', u'seek', u'film', u'pact', u'australia'] [u'firefight', u'inquest', u'begin'] [u'firefight', u'home', u'effort'] [u'firefight', u'battl', u'sugarloaf', u'blaze'] [u'fire', u'spark', u'tableland', u'bushfir', u'emerg'] [u'babi', u'year', u'bear', u'remot', u'pitcairn'] [u'fisher', u'warn', u'crab', u'limit'] [u'beatl', u'guitar', u'fetch', u'auction'] [u'carlton', u'star', u'william', u'probe'] [u'alleg', u'member', u'face', u'thai', u'trail'] [u'fund', u'remov', u'women', u'right', u'memori'] [u'gold', u'coast', u'face', u'develop', u'crossroad'] [u'govt', u'accus', u'doubl', u'deal'] [u'govt', u'consid', u'cut', u'health', u'fund', u'lifestyl'] [u'govt', u'backdown', u'welfar', u'payment'] [u'govt', u'welcom', u'chogm', u'mugab', u'snub'] [u'graham', u'win', u'clune', u'medal'] [u'grapefruit', u'grower', u'look', u'market', u'strategi'] [u'take', u'pakistan', u'match'] [u'hairi', u'nose', u'vandal', u'desecr', u'grave'] [u'harvey', u'leav', u'gloucestershir'] [u'headless', u'aristocrat', u'look', u'leader'] [u'headi', u'plan', u'celebr', u'season'] [u'honda', u'want', u'villeneuv'] [u'hong', u'kong', u'brace', u'possibl', u'sar', u'return'] [u'hope', u'charter', u'flight'] [u'hospit', u'reject', u'elect', u'surgeri', u'claim'] [u'bring', u'northern', u'scorcher'] [u'diver', u'claim', u'pire'] [u'improp', u'damag', u'marin', u'park', u'moor'] [u'injur', u'tincu', u'romania'] [u'iraq', u'nuke', u'programm', u'iraq', u'scientist'] [u'iraq', u'attend', u'post', u'opec', u'meet'] [u'isra', u'soldier', u'shoot', u'dead', u'islam', u'jihad', u'leader'] [u'japanes', u'worker', u'kill', u'suicid', u'blast'] [u'jewelleri', u'chain', u'post', u'slight', u'profit', u'boost'] [u'jupit', u'happi', u'convent', u'centr', u'work'] [u'kean', u'miss', u'unit', u'greek', u'clash'] [u'keegan', u'see', u'england', u'futur', u'mcmanaman'] [u'labor', u'target', u'atsic', u'disciplinari', u'guidelin'] [u'lack', u'servic', u'creat', u'steal', u'generat'] [u'lade', u'clear', u'pie', u'clash'] [u'leicest', u'past', u'woeful', u'leed'] [u'lion', u'expect', u'neutral', u'sydney', u'clash', u'matthew'] [u'sheep', u'number', u'hamper', u'abattoir'] [u'arrest', u'shoot', u'william', u'sister'] [u'dead', u'hall', u'creek', u'stab'] [u'black', u'rememb', u'nashvill', u'funer'] [u'jail', u'centrelink', u'fraud'] [u'marin', u'train', u'park', u'airport'] [u'maritim', u'colleg', u'help', u'boost', u'port', u'secur'] [u'mayor', u'talk', u'hour', u'medic', u'servic'] [u'melbourn', u'stand', u'end', u'peac'] [u'microsoft', u'win', u'softwar', u'berth', u'motorola', u'mobil'] [u'mildura', u'council', u'lodg', u'commonwealth', u'game'] [u'court', u'action', u'pipelin', u'water', u'woe'] [u'dairi', u'farmer', u'exit', u'industri'] [u'back', u'resid', u'lake', u'plan', u'protest'] [u'form', u'work', u'hour', u'plan'] [u'highlight', u'workplac', u'safeti', u'chang', u'concern'] [u'nasa', u'set', u'galileo', u'crash', u'cours'] [u'nat', u'focus', u'thuringowa', u'seat'] [u'play', u'gain', u'straeuli', u'plan', u'assault'] [u'north', u'coast', u'state', u'school', u'teacher', u'join', u'strike'] [u'head', u'court', u'stop', u'expuls'] [u'student', u'result', u'access'] [u'observatori', u'provid', u'tourism', u'coup'] [u'albanian', u'iraqi', u'wound', u'grenad', u'attack'] [u'orica', u'make', u'garden', u'busi'] [u'parent', u'urg', u'kid', u'home', u'teacher', u'strike'] [u'pittman', u'get', u'busi'] [u'plan', u'afoot', u'rescu', u'chopper'] [u'mark', u'independ', u'program'] [u'urg', u'break', u'cycl', u'depend'] [u'watchdog', u'caution', u'vote'] [u'poland', u'get', u'record', u'case', u'blue'] [u'polic', u'check', u'reveal', u'defect', u'vehicl'] [u'polic', u'investig', u'suspect', u'sydney', u'doubl', u'murder'] [u'polic', u'investig', u'unit', u'blaze', u'bodi'] [u'polic', u'probe', u'graffiti', u'spree'] [u'polic', u'upgrad', u'charg', u'murder', u'assault'] [u'post', u'mortem', u'carri', u'murder', u'victim'] [u'powel', u'finish', u'iraq', u'trip', u'visit', u'memori'] [u'public', u'servant', u'demand', u'boost'] [u'public', u'consult', u'melbourn', u'water'] [u'qanta', u'ban', u'flight', u'snub', u'nose', u'dog'] [u'govt', u'consult', u'communiti', u'senior', u'need'] [u'govt', u'urg', u'tackl', u'feral', u'deer', u'problem'] [u'republican', u'condemn', u'california', u'vote', u'delay'] [u'research', u'group', u'combin', u'effort'] [u'resourc', u'centr', u'offer', u'communiti', u'benefit'] [u'roo', u'buckley', u'coach', u'honour'] [u'roo', u'fuel', u'oloughlin', u'specul'] [u'rudd', u'attack', u'govt', u'media', u'leak'] [u'school', u'peddl', u'drink', u'drive', u'messag'] [u'scientif', u'proof', u'doom', u'best', u'rapper'] [u'shoe', u'save', u'coupl', u'hostag', u'drama'] [u'snowi', u'season'] [u'south', u'africa', u'beef', u'bowl', u'attack', u'pakistan'] [u'speaker', u'andrew', u'retir', u'polit'] [u'stain', u'relat', u'death', u'penalti'] [u'stewart', u'make', u'retir', u'offici'] [u'storm', u'damag', u'fail', u'spark', u'underground', u'power', u'plan'] [u'storm', u'kidwel', u'face', u'dog'] [u'support', u'teacher', u'strike', u'western'] [u'suspect', u'taliban', u'kill', u'clash'] [u'swedish', u'polic', u'deni', u'arrest', u'lindh', u'murder', u'inquiri'] [u'compo', u'law', u'draw'] [u'teacher', u'begin', u'protest'] [u'teacher', u'strike', u'state'] [u'bail', u'uncertain', u'hanson'] [u'thousand', u'sign', u'cancer', u'petit'] [u'arrest', u'melbourn', u'drug', u'bust'] [u'thriller', u'writer', u'receiv', u'book', u'honour'] [u'treasuri', u'admit', u'surpris', u'hous', u'boom'] [u'trial', u'date', u'loom', u'secretari'] [u'unemploy', u'problem', u'bulloo'] [u'envoy', u'urg', u'movement', u'east', u'roadmap'] [u'economi', u'uncertain', u'ahead', u'reserv', u'meet'] [u'warship', u'hurrican', u'approach'] [u'politician', u'urg', u'french', u'menu'] [u'upgrad', u'missil', u'south', u'korea'] [u'govt', u'accus', u'stall', u'polic', u'station'] [u'politician', u'urg', u'push', u'scallop'] [u'victim', u'releas', u'hospit', u'sydney', u'kill'] [u'victori', u'singh', u'knock', u'tiger'] [u'virgin', u'blue', u'announc', u'melbourn', u'newcastl', u'rout'] [u'virgin', u'blue', u'consid', u'sunshin', u'coast', u'airport'] [u'farmer', u'hope', u'inquiri', u'improv', u'livestock'] [u'wakefield', u'announc', u'retir'] [u'water', u'author', u'warn', u'lake', u'blue', u'green', u'alga'] [u'wind', u'affect', u'bushfir', u'fight', u'effort'] [u'wineri', u'form', u'amphitheatr'] [u'wollongong', u'plan', u'futur'] [u'woman', u'leav', u'hospit', u'sydney', u'kill'] [u'world', u'oldest', u'person', u'turn', u'sweet'] [u'world', u'watch', u'lord', u'howe', u'stick', u'insect', u'breed'] [u'breakdown', u'leav', u'australian', u'farmer', u'wait'] [u'zabel', u'outsprint', u'petacchi', u'spain', u'nozal', u'lead'] [u'zimbabw', u'newspap', u'publish', u'fight', u'closur'] [u'arrest', u'unpaid', u'fin'] [u'aborigin', u'council', u'disappoint', u'report'] [u'accid', u'caus', u'fatal', u'saudi', u'prison'] [u'suburb', u'makeov'] [u'adelaid', u'lead', u'australia', u'wireless', u'technolog'] [u'aid', u'talk', u'begin'] [u'albani', u'teacher', u'stop', u'work', u'offer'] [u'imron', u'sentenc', u'tomorrow'] [u'ord', u'benefit', u'wall', u'street', u'high'] [u'face', u'reduc', u'enrol'] [u'arafat', u'expuls', u'discuss'] [u'armi', u'thank', u'communiti', u'exercis', u'support'] [u'aussi', u'male', u'zone', u'fairi', u'label'] [u'australia', u'accus', u'racist', u'condescend'] [u'australia', u'donat', u'eas', u'timor', u'food', u'shortag'] [u'australia', u'give', u'fund', u'burmes', u'cross'] [u'australian', u'dollar', u'lower', u'rat'] [u'ballerina', u'speak', u'weight', u'sack'] [u'industri', u'action', u'expir'] [u'journo', u'admit', u'mistak', u'iraqi', u'weapon', u'stori'] [u'bear', u'shaw', u'brown', u'miss', u'grand', u'final'] [u'beatti', u'pledg', u'ambul', u'delay', u'probe'] [u'bishop', u'call', u'cultur', u'toler'] [u'boca', u'want', u'maradona', u'rais', u'profil', u'china'] [u'bodi', u'solomon', u'weather', u'coast'] [u'bond', u'want', u'scholarship', u'rule', u'chang'] [u'boom', u'properti', u'price', u'creat', u'council', u'quandari'] [u'britain', u'play', u'russian', u'roulett', u'iraqi', u'arm'] [u'broadband', u'subscrib', u'rise'] [u'break', u'hill', u'teacher', u'join', u'protest'] [u'bronco', u'kelli', u'escap'] [u'bronco', u'bennett', u'undecid', u'origin'] [u'busi', u'support', u'forest', u'plan'] [u'studi', u'long', u'work', u'hour', u'impact'] [u'bomb', u'denmark', u'kill', u'polic'] [u'carr', u'threaten', u'poki'] [u'chappel', u'go', u'asylum', u'seeker'] [u'church', u'reject', u'confess', u'report'] [u'announc', u'katherin', u'candid'] [u'cole', u'cooper', u'crackdown', u'illeg'] [u'colombian', u'intensifi', u'search', u'kidnap'] [u'want', u'avail', u'sale'] [u'coron', u'issu', u'wheel', u'motorbik', u'warn'] [u'costello', u'ignor', u'arafat', u'west', u'bank', u'visit'] [u'costello', u'meet', u'palestinian', u'leadership'] [u'costello', u'reaffirm', u'support', u'israel'] [u'council', u'aim', u'boost', u'safeti', u'women', u'pub'] [u'council', u'approv', u'land', u'plan'] [u'council', u'reject', u'lake', u'water', u'craft'] [u'council', u'wait', u'sand', u'drift', u'fund'] [u'council', u'look', u'helipad', u'spot'] [u'clone', u'dead', u'stock'] [u'decompos', u'peni'] [u'deputi', u'leader', u'stand', u'talk', u'environment'] [u'door', u'open', u'secondari', u'barrow', u'project'] [u'downer', u'jump', u'talk'] [u'emerg', u'declar', u'isabel', u'near'] [u'emerg', u'group', u'help', u'save', u'live'] [u'timor', u'research', u'help', u'fight', u'stinger'] [u'european', u'leader', u'heal', u'iraq', u'rift'] [u'fast', u'expens', u'motorbik', u'destroy', u'british'] [u'fear', u'air', u'apart', u'plan', u'impact'] [u'ferguson', u'prais', u'goalless', u'strike', u'pair'] [u'firefight', u'control', u'cawarr', u'bushfir'] [u'firi', u'confid', u'northern', u'bushfir'] [u'night', u'delight', u'milan', u'madrid', u'manchest'] [u'fix', u'level', u'water', u'restrict', u'moot'] [u'flower', u'rule', u'tour'] [u'forecast', u'tip', u'elect'] [u'foreign', u'affair', u'unhappi', u'ignor', u'colombia'] [u'lion', u'laud', u'vosss', u'tenac'] [u'gippsland', u'school', u'stay', u'open', u'amid', u'teacher', u'strike'] [u'good', u'support', u'like', u'teacher', u'strike'] [u'govt', u'call', u'reveal', u'higher', u'educ', u'plan'] [u'govt', u'tough', u'migrat', u'agent'] [u'govt', u'urg', u'tackl', u'hous', u'afford', u'problem'] [u'green', u'boost', u'alburi', u'wodonga', u'presenc'] [u'growth', u'forecast', u'bolster', u'case', u'rate', u'rise'] [u'hanson', u'lodg', u'high', u'court', u'appeal'] [u'health', u'council', u'get', u'birthday', u'present'] [u'hear', u'continu', u'cardiologist', u'contract'] [u'heath', u'dept', u'reject', u'hospit', u'delay', u'claim'] [u'high', u'court', u'hear', u'hanson', u'bail', u'applic'] [u'hill', u'defend', u'iraq', u'decis'] [u'hill', u'stand', u'intellig', u'agenc', u'iraq'] [u'hill', u'sign', u'defenc', u'agreement', u'japan'] [u'honda', u'withdraw', u'suicid'] [u'honour', u'list', u'mark', u'bali', u'anniversari'] [u'hope', u'hospit', u'revamp', u'wait', u'time'] [u'hope', u'meet', u'shed', u'light', u'salin', u'flood'] [u'horsham', u'teacher', u'join', u'protest'] [u'howard', u'reject', u'racist', u'accus', u'zimbabw'] [u'hume', u'council', u'lodg', u'boundari', u'submiss'] [u'indigen', u'prove', u'popular', u'buyer'] [u'indonesia', u'uncov', u'bomb', u'plot', u'polic'] [u'high', u'communiti', u'bank'] [u'investig', u'reveal', u'sydney', u'death', u'murder'] [u'iraqi', u'scientist', u'confirm', u'weapon', u'claim'] [u'agre', u'work', u'death', u'fine', u'inadequ'] [u'jail', u'scheme', u'aim', u'traffic', u'offenc'] [u'jail', u'sentenc', u'speed', u'driver'] [u'japanes', u'cook', u'name', u'best', u'pizza', u'maker', u'napl'] [u'kobe', u'bryant', u'lawyer', u'want', u'record', u'accus'] [u'leaney', u'pull', u'german', u'master'] [u'long', u'black', u'anger', u'cafe'] [u'look', u'dont', u'touch', u'strip', u'club'] [u'mainland', u'address', u'atsic', u'organis'] [u'malthous', u'say', u'magpi', u'deserv', u'respect'] [u'charg', u'freeway', u'stand'] [u'detain', u'kill', u'swedish', u'minist'] [u'die', u'river', u'flee', u'polic'] [u'face', u'child', u'charg'] [u'mareeba', u'servic', u'station', u'join', u'ethanol', u'trial'] [u'media', u'stock', u'drive', u'share', u'market'] [u'melbourn', u'gunman', u'undergo', u'psychiatr', u'assess'] [u'charg', u'tobacco', u'seizur'] [u'men', u'health', u'scheme', u'face', u'fund'] [u'minist', u'critic', u'anti', u'nuclear', u'wast'] [u'minist', u'defend', u'workcov', u'chang'] [u'minist', u'visit', u'solomon', u'intervent', u'forc'] [u'miss', u'bushwalk', u'continu', u'rage'] [u'rain', u'need', u'good', u'harvest'] [u'place', u'expect', u'govt', u'relax', u'rule'] [u'soldier', u'wound', u'iraq'] [u'want', u'unifi', u'effort', u'rescu', u'rail', u'servic'] [u'speed', u'limit', u'urg', u'driver', u'slow'] [u'nielsen', u'captain', u'king'] [u'korea', u'say', u'naval', u'exercis', u'prelud', u'nuclear'] [u'sign', u'miss', u'teen', u'search', u'end'] [u'backbench', u'deni', u'conflict'] [u'resign', u'caus', u'content'] [u'oppn', u'renew', u'west', u'tamworth', u'school'] [u'pass', u'respons', u'facto', u'disput'] [u'teacher', u'mass', u'parliament', u'claim'] [u'teacher', u'reject', u'govt', u'offer'] [u'power', u'supplier', u'face', u'critic'] [u'numinbah', u'valley', u'road', u'slower', u'pace'] [u'firm', u'tri', u'access', u'reserv'] [u'spill', u'hamper', u'highway', u'traffic'] [u'opposit', u'parti', u'fight', u'educ', u'overhaul'] [u'pair', u'reason', u'seek', u'lib', u'bendigo', u'back'] [u'pair', u'plead', u'guilti', u'assault', u'charg'] [u'palestinian', u'faction', u'thrash', u'cabinet'] [u'palestinian', u'attack', u'veto'] [u'palestinian', u'condemn', u'resolut', u'veto'] [u'parent', u'prepar', u'teacher', u'strike', u'govt'] [u'parent', u'urg', u'respons'] [u'parliamentari', u'system', u'receiv', u'scath', u'report'] [u'parliament', u'discuss', u'confession', u'confidenti'] [u'perth', u'polic', u'probe', u'suspect', u'murder', u'suicid'] [u'bait', u'lace', u'arsenic'] [u'pilot', u'accus', u'train', u'sept', u'hijack', u'sue'] [u'plan', u'aim', u'boost', u'inland', u'town'] [u'player', u'union', u'boss', u'spring', u'socceroo', u'neill'] [u'cast', u'doubt', u'elect', u'predict'] [u'play', u'specul'] [u'polic', u'continu', u'highway', u'crackdown'] [u'polic', u'releas', u'inform', u'gangland'] [u'polic', u'search', u'steal', u'contain', u'babi'] [u'polic', u'question', u'freeway', u'stand'] [u'polic', u'union', u'promis', u'rise'] [u'price', u'loom', u'tasman', u'rout'] [u'protect', u'plan', u'indigen', u'site'] [u'rainfal', u'outlook', u'good'] [u'reardon', u'doubt', u'dog'] [u'rebel', u'leader', u'arrest', u'aceh'] [u'research', u'test', u'techniqu', u'control', u'aid'] [u'research', u'studi', u'reef', u'biodivers'] [u'reserv', u'bank', u'offici', u'talk', u'healthi', u'econom'] [u'resid', u'track', u'plan', u'concern'] [u'resort', u'ponder', u'longer', u'season'] [u'retir', u'general', u'challeng', u'bush'] [u'rossi', u'defend', u'proud', u'brazilian', u'record'] [u'rspca', u'probe', u'woolnorth', u'anim', u'cruelti', u'claim'] [u'sack', u'corrupt', u'solomon', u'offici', u'advis'] [u'oppn', u'want', u'mount', u'gambier', u'hospit', u'probe'] [u'scheme', u'aim', u'boost', u'businesswomen', u'number'] [u'schole', u'road', u'recoveri'] [u'school', u'close', u'teacher', u'protest'] [u'search', u'intensifi', u'miss', u'woman'] [u'second', u'hang', u'juri', u'child', u'charg', u'trial'] [u'shell', u'depot', u'closur', u'plan', u'fuel', u'emot'] [u'sleep', u'posit', u'express', u'subconsci', u'studi'] [u'slipper', u'reject', u'fisher', u'claim'] [u'softwar', u'giant', u'founder', u'fund', u'brain', u'atlas'] [u'south', u'east', u'appoint', u'club'] [u'speed', u'bat'] [u'sporn', u'comeback', u'promis', u'opal', u'coach'] [u'start', u'side', u'unchang', u'sudden', u'death'] [u'steinweg', u'clear', u'dope', u'offenc'] [u'john', u'need', u'volunt', u'sport', u'event'] [u'stockfe', u'firm', u'fin', u'mislead', u'label'] [u'subaru', u'champ', u'moya', u'team', u'boss'] [u'suspect', u'meningococc', u'suffer', u'clear'] [u'swan', u'seek', u'saturday', u'smile', u'roo'] [u'swedish', u'polic', u'issu', u'warrant', u'fugit', u'knifeman'] [u'swiss', u'close', u'roof'] [u'sydney', u'airport', u'chief', u'critic', u'secur', u'plan'] [u'forum', u'focus', u'public', u'privat', u'health', u'care'] [u'green', u'seek', u'regul', u'forestri', u'industri'] [u'teacher', u'begin', u'strike'] [u'teacher', u'ralli', u'support', u'wage', u'claim'] [u'teacher', u'strike', u'disput'] [u'teacher', u'strike', u'affect', u'central', u'school'] [u'teacher', u'warn', u'strike'] [u'telstra', u'inquiri', u'botch', u'opposit'] [u'telstra', u'unfaz', u'competitor', u'offer'] [u'thailand', u'cleans', u'undesir', u'bangkok'] [u'thousand', u'hunter', u'teacher', u'strike'] [u'tourist', u'die', u'devonport'] [u'trade', u'minist', u'play', u'summit', u'failur'] [u'tragic', u'accid', u'prompt', u'motorbik', u'warn'] [u'truck', u'firm', u'cyanid', u'charg', u'drop'] [u'monash', u'freeway', u'crash'] [u'wait', u'mandat', u'send', u'peacekeep', u'liberia'] [u'upgrad', u'hospit', u'children', u'ward', u'depend'] [u'admit', u'hold', u'iraqi', u'prison'] [u'batten', u'hurrican'] [u'pay', u'thailand', u'hambali'] [u'senat', u'overturn', u'controversi', u'media', u'rule'] [u'soldier', u'kill', u'iraq'] [u'veget', u'council', u'seek', u'clear', u'land', u'remedi'] [u'govt', u'attack', u'stop', u'teacher', u'strike'] [u'govt', u'oppos', u'inhal', u'recoveri', u'room'] [u'govt', u'urg', u'irrig', u'group', u'chairman'] [u'teacher', u'ralli', u'support', u'better'] [u'virgin', u'blue', u'tran', u'tasman', u'servic'] [u'wallabi', u'legend', u'tip', u'england'] [u'wall', u'street', u'ralli', u'rat'] [u'teacher', u'strike', u'better', u'wag'] [u'teacher', u'turn', u'forc', u'wage', u'protest'] [u'whale', u'watch', u'season', u'begin'] [u'women', u'domin', u'booker', u'shortlist'] [u'workshop', u'consid', u'climat', u'chang', u'impact'] [u'work', u'start', u'soon', u'windorah', u'power', u'station'] [u'actu', u'urg', u'interven', u'ship', u'sale'] [u'scalper', u'face', u'fine'] [u'imron', u'await', u'verdict'] [u'imron', u'jail', u'life'] [u'anasta', u'say', u'storm', u'brew'] [u'arab', u'nation', u'condemn', u'veto', u'arafat'] [u'arafat', u'call', u'truce'] [u'archbishop', u'defend', u'confession', u'confidenti'] [u'architect', u'bodi', u'warn', u'build', u'approv', u'crisi'] [u'atsic', u'leader', u'converg'] [u'aust', u'israel', u'share', u'common', u'outlook', u'terror'] [u'aust', u'track', u'meet', u'kyoto', u'target'] [u'australia', u'list', u'child', u'abus', u'death'] [u'australian', u'polic', u'help', u'forc', u'propos'] [u'open', u'grain', u'receiv', u'sit'] [u'bateman', u'firefight', u'return', u'battl'] [u'beatti', u'urg', u'adopt', u'sugar', u'deal'] [u'bega', u'face', u'threat', u'water', u'restrict'] [u'bemax', u'sharehold', u'vote', u'cristal', u'deal'] [u'blaze', u'destroy', u'sydney', u'factori'] [u'blix', u'say', u'evid', u'exagger'] [u'bond', u'exec', u'bail', u'reject'] [u'bush', u'clarifi', u'posit', u'saddam', u'terror', u'link'] [u'releas', u'school', u'document'] [u'canadian', u'polic', u'investig', u'exot', u'catnap'] [u'canberra', u'communiti', u'receiv', u'fight'] [u'carr', u'deni', u'rais', u'corrupt', u'investig'] [u'carr', u'face', u'question', u'fairfax'] [u'carr', u'head', u'europ', u'trade', u'talk'] [u'carr', u'stand', u'blackmail', u'claim'] [u'announc', u'plus', u'loss'] [u'cloud', u'hover', u'start', u'women', u'world'] [u'colombia', u'sign', u'claus', u'intern'] [u'communic', u'access', u'test', u'prepar'] [u'confer', u'aim', u'stimul', u'awar', u'unpaid'] [u'confer', u'tell', u'year', u'old', u'care', u'famili'] [u'loggerhead'] [u'contract', u'award', u'bridg', u'work'] [u'convict', u'paedophil', u'deni', u'bail'] [u'convict', u'paedophil', u'face', u'court', u'failur'] [u'cork', u'alic', u'darwin', u'rail', u'link'] [u'costa', u'offer', u'respons', u'rail', u'plagiar', u'claim'] [u'council', u'alloc', u'park', u'studi', u'fund'] [u'council', u'buy', u'kelli', u'land'] [u'council', u'defend', u'decis', u'chop', u'tree'] [u'council', u'feel', u'fenc', u'plan'] [u'councillor', u'urg', u'consid', u'role'] [u'court', u'rule', u'minist', u'deport', u'case'] [u'court', u'hear', u'high', u'rise', u'concern'] [u'crean', u'claim', u'join', u'medicar', u'petit'] [u'croc', u'head', u'home', u'european', u'tour'] [u'dairi', u'inquiri', u'hear', u'industri', u'woe'] [u'danish', u'biker', u'kill', u'explos'] [u'date', u'hanson', u'high', u'court', u'bail'] [u'democrat', u'senat', u'brand', u'liber', u'colleagu'] [u'deport', u'put', u'resort', u'invest', u'hold'] [u'doctor', u'ponder', u'futur', u'amidst', u'hospit', u'report'] [u'doctor', u'threaten', u'resign', u'damn', u'report'] [u'dollar', u'rise', u'greenback', u'weaken'] [u'drought', u'close', u'council', u'pool'] [u'drug', u'user', u'face', u'increas', u'stroke', u'risk', u'confer'] [u'condit', u'forc', u'cattl', u'price'] [u'elector', u'inquiri', u'hear', u'popul', u'count'] [u'england', u'thrive', u'world', u'pressur'] [u'entertain', u'centr', u'open', u'door'] [u'expans', u'result', u'record', u'profit', u'foodland'] [u'export', u'firm', u'close', u'door'] [u'famili', u'welcom', u'work', u'death', u'fine'] [u'feder', u'polic'] [u'govt', u'call', u'polic', u'investig', u'labor'] [u'ferguson', u'fight', u'charg'] [u'fiji', u'suprem', u'court', u'rule', u'multi', u'parti', u'disput'] [u'crew', u'contain', u'stradbrok', u'blaze'] [u'erupt', u'iraqi', u'pipelin'] [u'firefight', u'tackl', u'north', u'blaze'] [u'firefight', u'scale', u'bushfir', u'effort'] [u'firefight', u'work', u'contain', u'straddi'] [u'primus', u'forc', u'port', u'select', u'dilemma'] [u'nato', u'command', u'enter', u'race', u'presid'] [u'french', u'wimbledon', u'champ', u'head', u'davi', u'challeng'] [u'fund', u'cut', u'expect', u'impact', u'tele', u'health'] [u'gold', u'coast', u'student', u'involv', u'falun', u'gong', u'case'] [u'govt', u'urg', u'address', u'north', u'hous', u'shortag'] [u'govt', u'tough', u'spammer'] [u'great', u'ocean', u'protect', u'wind'] [u'green', u'approv', u'nickel', u'project'] [u'gympi', u'final', u'cracksnew', u'power', u'sourc'] [u'hamilton', u'wast', u'water', u'plant'] [u'hanson', u'lawyer', u'quiet', u'high', u'court', u'specul'] [u'health', u'cut', u'label', u'short', u'sight', u'social'] [u'hewitt', u'take', u'legal', u'battl', u'court'] [u'hill', u'plan', u'defenc', u'buy', u'overhaul'] [u'question', u'live', u'murray'] [u'hyundai', u'take', u'control', u'australian', u'distributor'] [u'see', u'sign', u'global', u'econom', u'recoveri'] [u'india', u'kill', u'suspect', u'muslim', u'rebel'] [u'indonesian', u'militari', u'kill', u'aceh', u'rebel', u'leader'] [u'injur', u'springbok', u'bobo', u'world'] [u'inquiri', u'hear', u'poor', u'communic', u'hold'] [u'inter', u'juventus', u'complet', u'great', u'start', u'itali'] [u'iraqi', u'attack', u'claim', u'heavi', u'casualti', u'report'] [u'isabel', u'bear', u'coast'] [u'isabel', u'close', u'east', u'coast'] [u'italian', u'apolog', u'mussolini', u'remark'] [u'jobless', u'rate', u'hunter'] [u'karratha', u'pharmaci', u'prompt', u'govt', u'review'] [u'katherin', u'voter', u'face', u'enrol', u'deadlin'] [u'katsidi', u'manag', u'confid', u'boxer', u'chanc'] [u'kookaburra', u'snatch', u'oceania', u'seri', u'lead'] [u'labor', u'run', u'medicar', u'campaign', u'fear'] [u'lachlan', u'council', u'reject', u'super', u'council', u'plan'] [u'langer', u'lead', u'warrior'] [u'lion', u'face', u'tough', u'test', u'hometown', u'hero', u'swan'] [u'liverpool', u'look', u'smicer', u'link', u'kewel', u'diouf'] [u'lomu', u'give', u'world', u'battl'] [u'magistr', u'name', u'centr', u'freeway', u'stand'] [u'malthous', u'say', u'holland', u'decis', u'difficult'] [u'appear', u'court', u'freeway', u'stand'] [u'hospit', u'drive', u'wharf'] [u'sentenc', u'jail', u'invent'] [u'face', u'court', u'council', u'minut'] [u'court', u'charg'] [u'mask', u'japanes', u'wrestler', u'forc', u'reveal', u'face'] [u'mcewen', u'tell', u'public', u'hospit', u'develop'] [u'meet', u'consid', u'alic', u'plan'] [u'melbourn', u'freeway', u'smash', u'victim', u'believ', u'murder'] [u'molik', u'make', u'round', u'shanghai'] [u'citizenship', u'drive'] [u'want', u'spotlight', u'lawyer', u'client', u'confidenti'] [u'councillor', u'quit'] [u'nepales', u'maoist', u'kill', u'armi', u'raid'] [u'apollo', u'style', u'capsul', u'replac', u'nasa'] [u'satellit', u'technolog', u'track', u'aircraft', u'movement'] [u'watchdog', u'strike', u'govt', u'build', u'plan'] [u'york', u'stock', u'exchang', u'chief', u'resign'] [u'major', u'develop', u'status', u'aquacultur', u'plan'] [u'north', u'meet', u'south', u'rail', u'line'] [u'club', u'oper', u'govt', u'manag'] [u'govt', u'consid', u'local', u'govt', u'reform', u'option'] [u'govt', u'urg', u'offer', u'rail', u'servic', u'pledg'] [u'health', u'dept', u'reject', u'critic', u'report', u'find'] [u'refer', u'carr', u'comment', u'corrupt', u'bodi'] [u'welcom', u'coroni', u'find'] [u'surgeri', u'wait', u'time', u'continu', u'rise'] [u'nurs', u'meet', u'closur', u'plan'] [u'stock', u'exchang', u'chairman', u'ask', u'step'] [u'stock', u'exchang', u'head', u'quit'] [u'oldest', u'prison', u'releas', u'cite', u'health'] [u'opposit', u'attack', u'govt', u'hobart', u'tourist'] [u'opposit', u'critic', u'polic', u'offer'] [u'oxfam', u'out', u'australian', u'mine', u'abus'] [u'philippoussi', u'face', u'feder'] [u'pie', u'appeal', u'rocca'] [u'deni', u'high', u'claim'] [u'polic', u'believ', u'crash', u'victim'] [u'polic', u'potenti', u'terrorist', u'target', u'indonesian'] [u'polic', u'launch', u'murder', u'inquiri', u'babi'] [u'polic', u'charg', u'fatal'] [u'polic', u'probe', u'unit', u'bodi'] [u'polic', u'seek', u'identifi', u'north', u'remain'] [u'polic', u'search', u'grim'] [u'polic', u'wait', u'speak', u'melbourn', u'crash', u'driver'] [u'politician', u'urg', u'reject', u'reform'] [u'poor', u'student', u'hardest', u'reform', u'student'] [u'power', u'gambl', u'primus', u'pie', u'pull', u'davi', u'surpris'] [u'profit', u'warn', u'toll', u'wall'] [u'properti', u'owner', u'urg', u'remain', u'awar'] [u'prosecutor', u'highlight', u'brinkworth', u'sentenc', u'hitch'] [u'fighter', u'stradbrok', u'blaze'] [u'quirindi', u'sawmil'] [u'railway', u'track', u'insur', u'woe'] [u'ralf', u'confid', u'sign', u'william', u'contract'] [u'rebel', u'strike', u'paralys', u'nepales', u'capit'] [u'reward', u'offer', u'lose', u'sheep'] [u'roo', u'say', u'success', u'come', u'sooner', u'expect'] [u'ruddock', u'lose', u'appeal', u'detent'] [u'ruddock', u'open', u'asylum', u'seeker', u'hous', u'project'] [u'russian', u'bomber', u'crash', u'kill', u'crew'] [u'saddam', u'tape', u'demand', u'quit', u'iraq'] [u'samoa', u'lose', u'vital', u'player', u'world'] [u'scud', u'face', u'feder'] [u'second', u'woman', u'arrest', u'port', u'piri', u'stab'] [u'secur', u'analysi', u'focus', u'univers', u'degre'] [u'senat', u'agre', u'superannu', u'right'] [u'senat', u'tell', u'plan', u'sell', u'canberra', u'airport'] [u'share', u'market', u'edg', u'higher'] [u'sheep', u'strand', u'middl', u'east', u'okay', u'compani'] [u'spotlight', u'isra', u'weapon', u'confer'] [u'steal', u'year', u'sculptur', u'recov', u'iraq'] [u'studi', u'focus', u'indigen', u'women'] [u'survey', u'form', u'northern', u'cattl', u'snapshot'] [u'suspect', u'gunman', u'take', u'hostag'] [u'suspend', u'jail', u'term', u'cannabi', u'offenc'] [u'recov', u'hospit', u'oper'] [u'govt', u'promis', u'crackdown', u'llegal', u'salmon'] [u'tasmanian', u'dentist', u'shortag', u'report'] [u'tasmania', u'oldest', u'prison', u'walk', u'free'] [u'chang', u'gambl', u'club', u'surviv'] [u'teacher', u'work', u'strike'] [u'teacher', u'condit', u'pressur'] [u'teacher', u'offer'] [u'territori', u'carer', u'face', u'increas', u'pressur'] [u'thoma', u'eye', u'butterfli', u'comeback'] [u'guilti', u'arab', u'bomb', u'attempt'] [u'tougher', u'penalti', u'design', u'improv', u'workplac'] [u'tourism', u'power', u'ahead', u'charter', u'tower'] [u'truss', u'promis', u'murray', u'report', u'public'] [u'truss', u'want', u'releas', u'live', u'murray', u'report'] [u'tuqiri', u'close', u'encount', u'croc', u'kind'] [u'arrest', u'airport', u'theft'] [u'begin', u'distribut', u'food', u'liberia'] [u'unequ', u'make', u'monkey'] [u'union', u'condemn', u'busi', u'welcom', u'build', u'industri'] [u'union', u'happi', u'propos', u'construct'] [u'welcom', u'govt', u'chang', u'enrol', u'plan'] [u'claim', u'taliban', u'kill', u'afghanistan'] [u'colleg', u'stand', u'end', u'gunman', u'dead'] [u'extend', u'pacif', u'naval', u'build'] [u'soldier', u'kill', u'teenag', u'wed', u'confus'] [u'oppn', u'highlight', u'teacher', u'strike', u'cost'] [u'govt', u'cautious', u'welcom', u'strong', u'credit', u'rat'] [u'water', u'author', u'name', u'committe', u'appoint'] [u'water', u'worker', u'strike', u'sack'] [u'union', u'promis', u'backlash', u'propos', u'industri'] [u'wenger', u'rule', u'arsenal', u'wake', u'unit', u'threaten'] [u'work', u'bulli', u'victim', u'urg', u'speak'] [u'world', u'park', u'congress', u'agre', u'protect'] [u'world', u'oldest', u'genit', u'discov', u'scotland'] [u'xstrata', u'consid', u'rolleston', u'coal'] [u'zimbabwean', u'demonstr', u'arrest', u'protest'] [u'zimbabw', u'call', u'wishart'] [u'zimbabw', u'strong', u'despit', u'lack', u'flower', u'power', u'bichel'] [u'acceler', u'radiotherapi', u'benefit', u'cancer', u'patient'] [u'govt', u'question', u'polic', u'offer'] [u'actor', u'robert', u'duval', u'honour', u'hollywood', u'star'] [u'african', u'lion', u'popul', u'declin'] [u'condemn', u'govt', u'immunis', u'fund'] [u'antarct', u'centr', u'confid', u'futur'] [u'aussi', u'rooki', u'cole', u'share', u'stormi', u'lead'] [u'aust', u'deleg', u'tour', u'solomon'] [u'blood', u'threaten', u'spill', u'turin'] [u'ballarat', u'defenc', u'contract'] [u'bank', u'cull', u'job', u'share', u'slide'] [u'bear', u'hope', u'home'] [u'bemax', u'sharehold', u'seal', u'cristal', u'deal'] [u'biaggi', u'take', u'provision', u'pole', u'brazil'] [u'fall', u'erod', u'earli', u'market', u'gain'] [u'blair', u'suffer', u'elect', u'blow'] [u'bond', u'pursu', u'stage', u'medic', u'school'] [u'brazilian', u'foul', u'ronaldo', u'select'] [u'brisban', u'tripl', u'murder', u'go', u'court'] [u'briton', u'detain', u'murder', u'spanish', u'teen'] [u'break', u'hill', u'water', u'supplier', u'tell', u'lift', u'game'] [u'buffalo', u'size', u'rodent', u'guinea', u'pig'] [u'builder', u'union', u'complaint', u'head', u'court'] [u'bulldog', u'walk', u'walk', u'price'] [u'burni', u'docker', u'footbal', u'record'] [u'burundi', u'radio', u'boss', u'lift', u'boycott', u'goodwil'] [u'bush', u'blame', u'arafat', u'stall', u'peac', u'road'] [u'button', u'injur', u'smash'] [u'kosciuszko', u'log'] [u'withdraw', u'fungicid'] [u'canberra', u'polic', u'forc'] [u'captain', u'cook', u'land', u'site', u'get', u'heritag', u'list'] [u'cardin', u'prais', u'controversi', u'film'] [u'celtic', u'fallout', u'munich', u'fiasco'] [u'claim', u'govt', u'nurs', u'program', u'complet', u'failur'] [u'cloud', u'remain', u'wind', u'farm', u'develop', u'protect'] [u'cole', u'myer', u'profit', u'lift', u'percent'] [u'colleg', u'recruit', u'denial', u'anger'] [u'commiss', u'murray', u'report', u'backflip'] [u'communiti', u'input', u'seek', u'masterplan', u'meet'] [u'compani', u'move', u'stop', u'decept', u'stanbrok', u'sale'] [u'costello', u'introduc', u'aust', u'israel'] [u'council', u'criticis', u'mine', u'watchdog', u'propos'] [u'council', u'scheme', u'tackl', u'lantana'] [u'council', u'share', u'drought', u'fund'] [u'council', u'urg', u'refrain', u'region', u'doctor', u'push'] [u'court', u'reserv', u'judgment', u'nemer', u'appeal'] [u'crean', u'deni', u'poll', u'result', u'cover'] [u'credit', u'card', u'compani', u'lose', u'fee', u'case'] [u'croc', u'rooki', u'readi', u'contribut'] [u'davi', u'deserv', u'chanc', u'malthous'] [u'deportivo', u'deal', u'real', u'blow'] [u'diver', u'search', u'north', u'torso'] [u'divid', u'respons', u'roadwork', u'link', u'rate', u'rise'] [u'drought', u'reduc', u'sheep', u'flock'] [u'drug', u'watchdog', u'target', u'world'] [u'dubbo', u'deputi', u'mayor', u'seek', u'feder', u'presid'] [u'econom', u'perform', u'help', u'popul', u'growth'] [u'need', u'ballarat'] [u'edward', u'get', u'plan', u'recommend'] [u'elector', u'offic', u'clear', u'mayor', u'candid'] [u'eleg', u'youhana', u'lead', u'pakistan', u'victori'] [u'nomin', u'presid'] [u'head', u'enlarg', u'citi', u'field', u'wood'] [u'england', u'luger', u'warn', u'springbok', u'backlash'] [u'euro', u'boy', u'threaten', u'world', u'club', u'championship'] [u'evita', u'histor', u'diamond', u'necklac', u'go', u'auction'] [u'explos', u'kill', u'afghanistan'] [u'extinct', u'tree', u'releas', u'sale'] [u'famili', u'happi', u'respons', u'ambul', u'delay'] [u'farmer', u'group', u'claim', u'sustain', u'plan', u'snub'] [u'farmer', u'threaten', u'court', u'action', u'pipelin'] [u'faulti', u'light', u'forc', u'flight', u'turnaround'] [u'feder', u'lead', u'earli', u'melbourn'] [u'feder', u'level', u'davi'] [u'ferrero', u'crush', u'gaudio', u'spain', u'lead'] [u'ferrero', u'lead', u'spain', u'deplet', u'argentina'] [u'fiji', u'flay', u'club', u'countri', u'crisi'] [u'film', u'festiv', u'screen', u'south', u'east'] [u'crew', u'gain', u'upper', u'hand', u'straddi', u'bushfir'] [u'firefight', u'continu', u'contain', u'effort'] [u'fluorid', u'oppon', u'brush', u'plan'] [u'footi', u'final', u'fervour', u'see', u'overland', u'train', u'sell'] [u'execut', u'plead', u'guilti', u'scott', u'case'] [u'offic', u'jail', u'fraud'] [u'foster', u'announc', u'compani', u'float'] [u'frenchman', u'jail', u'life', u'plot', u'attack'] [u'french', u'town', u'offer', u'live', u'internet', u'wed'] [u'fresh', u'doubt', u'portug', u'euro', u'secur'] [u'gate', u'top', u'rich', u'list', u'year'] [u'anti', u'radiat', u'pill', u'home', u'emerg', u'bodi'] [u'govt', u'aim', u'boost', u'skill', u'region', u'migrat'] [u'govt', u'defend', u'vaccin', u'decis'] [u'govt', u'defi', u'senat', u'sheep', u'death', u'detail'] [u'govt', u'support', u'move', u'reduc', u'lobster', u'tariff'] [u'gravel', u'plant', u'worker', u'face', u'uncertain', u'futur'] [u'hama', u'member', u'palestinian', u'secur', u'servic'] [u'handgun', u'aim', u'sight', u'wodonga'] [u'hewitt', u'give', u'australia', u'fli', u'start'] [u'hewitt', u'test', u'form', u'davi', u'open'] [u'offer', u'build', u'assur', u'amidst', u'slowdown'] [u'hide', u'camera', u'guard', u'ancient'] [u'hindmarsh', u'draw', u'clear', u'clash', u'warrior'] [u'hindmarsh', u'doubt', u'draw', u'confirm', u'raider'] [u'hong', u'kong', u'hospit', u'rais', u'sar', u'alert'] [u'hurrican', u'isabel', u'hit', u'coast'] [u'hurrican', u'isabel', u'wreak', u'havoc', u'capit'] [u'warn', u'soar', u'hous', u'price'] [u'imron', u'lawyer', u'consid', u'appeal'] [u'india', u'deni', u'snub', u'pakistani', u'foreign', u'minist'] [u'iraqi', u'defenc', u'minist', u'surrend'] [u'jackson', u'shrug', u'world', u'best'] [u'jacobson', u'lead', u'german', u'master'] [u'figur', u'indic', u'econom', u'slowdown'] [u'jobless', u'rate', u'fall', u'kempsey', u'shire'] [u'jong', u'unlik', u'hero', u'japanes'] [u'knight', u'sign', u'odavi'] [u'lifesav', u'return', u'insur'] [u'lion', u'sydney', u'crunch', u'match'] [u'live', u'telecast', u'second', u'preliminari', u'final'] [u'love', u'martyn', u'selector', u'dilemma'] [u'die', u'farm', u'machineri', u'accid'] [u'hold', u'murder', u'hire', u'kobe', u'bryant', u'accus'] [u'hold', u'offer', u'kill', u'basketbal', u'star'] [u'jail', u'court', u'reject', u'merci', u'claim'] [u'massiv', u'blackout', u'hurrican', u'come', u'ashor'] [u'meat', u'process', u'plant', u'doubt'] [u'miner', u'council', u'undermin', u'oversea', u'watchdog', u'plan'] [u'miner', u'plan', u'koolyanob', u'project', u'product'] [u'minist', u'discuss', u'indigen', u'prawn', u'farm', u'plan'] [u'montoya', u'biggest', u'threat', u'schu'] [u'delay', u'lyell', u'highway', u'reopen'] [u'indigen', u'communiti', u'restrict'] [u'industri', u'action', u'possibl', u'polic'] [u'land', u'need', u'alic', u'hous'] [u'mourner', u'rememb', u'sweden', u'anna', u'lindh'] [u'movi', u'buff', u'gather', u'sebastian'] [u'reject', u'live', u'murray', u'claim'] [u'woman', u'award', u'heritag', u'work'] [u'mushroom', u'picker', u'stumbl', u'counterfeit', u'cash'] [u'neill', u'dont', u'soccer'] [u'email', u'worm', u'target', u'hole', u'internet', u'explor'] [u'korea', u'denounc', u'missil', u'deploy', u'south'] [u'inquiri', u'club', u'industri', u'tell'] [u'govt', u'urg', u'help', u'abattoir', u'worker'] [u'opposit', u'send', u'mislead', u'medicar', u'messag'] [u'opposit', u'warn', u'higher', u'increas', u'hec', u'fee'] [u'perilya', u'consid', u'explor'] [u'petacchi', u'victori', u'hide', u'team', u'setback'] [u'reject', u'bubbl', u'concern'] [u'polic', u'investig', u'stock', u'theft'] [u'polic', u'pressur'] [u'polic', u'rescu', u'effort', u'earn', u'braveri', u'recommend'] [u'polic', u'warn', u'fatigu', u'drive'] [u'prematur', u'remain', u'falconio', u'polic'] [u'primus', u'declar', u'pie', u'clash'] [u'protea', u'green', u'light', u'pakistan', u'tour'] [u'hedland', u'resid', u'angri', u'lack'] [u'public', u'comment', u'seek', u'road', u'plan'] [u'push', u'indigen', u'servic', u'duplic'] [u'lift', u'escal', u'mainten', u'worker', u'strike'] [u'prepar', u'season', u'minist', u'say'] [u'radcliff', u'eye', u'olymp', u'marathon'] [u'recycl', u'plan', u'vote', u'card'] [u'remand', u'court', u'process', u'take', u'long', u'judg', u'say'] [u'report', u'clear', u'cross', u'bali', u'appeal'] [u'report', u'find', u'tourism', u'group', u'woe'] [u'report', u'highlight', u'limit', u'forest', u'log'] [u'report', u'highlight', u'rail', u'line', u'option'] [u'research', u'optimist', u'aid', u'vaccin'] [u'research', u'find', u'older', u'drug', u'user', u'greater', u'risk'] [u'resid', u'sign', u'medicar', u'support', u'petit'] [u'resum', u'india', u'pakistan', u'match', u'pakistani'] [u'review', u'loom', u'local', u'govt', u'reform', u'plan'] [u'roma', u'rememb', u'hero'] [u'room', u'negoti', u'health', u'budget'] [u'rspca', u'find', u'dead', u'cattl'] [u'remain', u'human'] [u'search', u'come'] [u'salvo', u'minist', u'claim', u'immigr', u'dept', u'breach'] [u'samoa', u'lose', u'england', u'base', u'forward', u'world'] [u'sawmil', u'propon', u'keen', u'begin', u'work', u'soon'] [u'scientif', u'shockwav', u'test', u'accus', u'giant', u'squid'] [u'sharehold', u'await', u'cole', u'myer', u'profit', u'result'] [u'short', u'term', u'elect', u'surgeri', u'demand', u'rise'] [u'signific', u'rat', u'rise', u'unlik', u'govt'] [u'light', u'townsvill', u'celebr', u'year'] [u'soldier', u'charg', u'manslaught', u'aid'] [u'south', u'east', u'share', u'drought', u'fund'] [u'speedhog', u'clock', u'face', u'multipl', u'charg'] [u'springbok', u'centr', u'bobo', u'world', u'replac'] [u'stanwel', u'problem', u'havent', u'affect'] [u'starlet', u'take', u'stand', u'suprem', u'court'] [u'state', u'funer', u'plan', u'slim', u'dusti'] [u'survey', u'compar', u'cost', u'live', u'expens'] [u'survey', u'quizz', u'busi', u'coorow', u'issu'] [u'surgeri', u'burma'] [u'sydney', u'sweep', u'wild', u'wind'] [u'sydney', u'unit', u'draw', u'blood', u'open'] [u'tendulkar', u'warn', u'kiwi', u'dog'] [u'soldier', u'confirm', u'kill', u'ambush'] [u'time', u'run', u'redistribut', u'submiss'] [u'time', u'warner', u'drop'] [u'treasur', u'ask', u'clarifi', u'status', u'bushfir'] [u'tripl', u'goodwin', u'fire', u'sussex', u'histor'] [u'south', u'korean', u'fighter', u'miss', u'train'] [u'union', u'plan', u'tough', u'campaign', u'stop', u'build', u'reform'] [u'unit', u'brace', u'gunner', u'backlash', u'euro', u'flop'] [u'hurrican', u'downgrad'] [u'soldier', u'shoot', u'diplomat', u'translat', u'iraq'] [u'soldier', u'report', u'seri', u'attack', u'iraq'] [u'walker', u'court', u'case', u'postpon', u'clear', u'play'] [u'wallabi', u'concentr', u'puma', u'clash'] [u'oppn', u'say', u'govt', u'marina', u'decis', u'wrong'] [u'warship', u'newcastl', u'repair'] [u'warwick', u'enjoy', u'lowest', u'fuel', u'price'] [u'weather', u'hamper', u'firefight', u'effort'] [u'west'] [u'wind', u'whip', u'sydney', u'melbourn'] [u'wind', u'whip', u'melbourn'] [u'wirrpunda', u'win', u'communiti', u'leadership', u'award'] [u'women', u'children', u'kill', u'ferri', u'accid'] [u'women', u'children', u'step', u'detent', u'centr'] [u'wool', u'worker', u'confront', u'brack'] [u'world', u'struggl', u'cope', u'global', u'terror'] [u'zimbabw', u'court', u'rule', u'favour', u'independ', u'daili'] [u'bodi', u'recov', u'flood', u'north'] [u'sheep', u'saudi', u'shipment', u'manag'] [u'candid', u'tightlip', u'elect'] [u'arsenic', u'claim', u'bore', u'water', u'fals', u'alarm'] [u'audit', u'clear', u'blood', u'bank', u'amid', u'breach'] [u'aussi', u'cole', u'take', u'break', u'hurrican', u'stop', u'penn'] [u'aussi', u'incom', u'kill', u'english', u'cricket', u'say'] [u'australian', u'polic', u'assist', u'fiji', u'murder', u'case'] [u'australia', u'pay', u'solomon', u'debt', u'kick', u'start'] [u'beckham', u'billboard', u'black', u'iran'] [u'turnout', u'expect', u'river', u'regatta'] [u'blair', u'govt', u'suffer', u'backlash', u'elect', u'vote'] [u'bond', u'australian', u'hero', u'america', u'skipper'] [u'bond', u'celebr', u'america', u'anniversari'] [u'brazilian', u'killer', u'slice', u'victim', u'ear'] [u'brilliant', u'lion', u'straight', u'decid'] [u'britain', u'germani', u'franc', u'remain', u'divid', u'iraq'] [u'buckley', u'readi', u'port', u'rough', u'stuff', u'malthous'] [u'burma', u'remain', u'hospit', u'surgeri'] [u'campbel', u'doubt', u'trafford', u'father'] [u'cash', u'strap', u'namibia', u'doubt', u'world'] [u'chelsea', u'crush', u'hapless', u'wolv'] [u'child', u'vaccin', u'decis', u'short', u'sight'] [u'clinton', u'unveil', u'srebrenica', u'massacr', u'memori'] [u'death', u'toll', u'rise', u'hurrican', u'clean', u'continu'] [u'dementieva', u'rubin', u'shanghai', u'final'] [u'doubl', u'put', u'australia'] [u'elit', u'line', u'million', u'dollar', u'sprint'] [u'european', u'leader', u'meet', u'seek', u'iraq', u'deadlock'] [u'explos', u'rock', u'central', u'baghdad', u'casualti'] [u'feder', u'warn', u'ahead', u'davi', u'crunch'] [u'crew', u'continu', u'battl', u'blaze', u'island'] [u'forestri', u'tourism', u'agreement', u'propaganda'] [u'presid', u'criticis', u'bush', u'north', u'korea'] [u'fossett', u'fail', u'latest', u'glide', u'record', u'attempt'] [u'ganguli', u'star', u'fail', u'ahead', u'kiwi', u'test', u'seri'] [u'govt', u'boost', u'fund', u'cane', u'toad', u'research'] [u'figur', u'worst', u'season'] [u'hickss', u'father', u'urg', u'rais', u'case', u'bush'] [u'hope', u'forens', u'test', u'determin', u'decad'] [u'howard', u'welcom', u'home', u'troop', u'iraq'] [u'hundr', u'tear', u'farewel', u'murder', u'victim'] [u'hundr', u'troop', u'iraqi', u'town'] [u'expand', u'world', u'team'] [u'give', u'argentina', u'huge', u'loan'] [u'increas', u'role', u'rural', u'ambo', u'practic'] [u'indian', u'court', u'charg', u'seven', u'mosqu', u'destruct'] [u'indian', u'troop', u'kill', u'suspect', u'islam', u'rebel'] [u'injur', u'tendulkar', u'seek', u'pleasur', u'pain'] [u'ireland', u'press', u'ahead', u'smoke'] [u'israel', u'say', u'resolut', u'arafat', u'meaningless'] [u'japan', u'face', u'challeng', u'parti', u'elect'] [u'japan', u'win', u'parti', u'poll'] [u'karachi', u'bomb', u'attack', u'throw', u'fresh', u'doubt', u'protea'] [u'kasper', u'rip', u'durham', u'bat'] [u'kemp', u'optimist', u'project', u'ahead'] [u'kookaburra', u'olymp', u'hockey', u'berth'] [u'kookaburra', u'secur', u'olymp', u'spot'] [u'prosecutor', u'mull', u'charg', u'phil', u'spector', u'case'] [u'latham', u'deliv', u'chifley', u'address'] [u'lead', u'iraqi', u'politician', u'shoot'] [u'magpi', u'book', u'grand', u'final', u'berth'] [u'arrest', u'offer', u'kill', u'basketbal', u'star'] [u'charg', u'molotov', u'cocktail', u'alburi'] [u'kill', u'collis'] [u'molik', u'shanghai'] [u'archbishop', u'hold', u'talk', u'confession'] [u'club', u'kick', u'anti', u'govt', u'campaign'] [u'govt', u'dairi', u'packag', u'includ', u'workshop'] [u'treasur', u'claim', u'hole', u'poki', u'report'] [u'send', u'unambiti', u'propos', u'land', u'right'] [u'town', u'celebr', u'chang', u'season'] [u'nurs', u'launch', u'industri', u'action', u'age', u'care', u'home'] [u'pakistan', u'invit', u'india', u'summit'] [u'pakistan', u'like', u'reject', u'strand', u'australian', u'sheep'] [u'pakistan', u'rail', u'cross', u'crash', u'kill'] [u'palestinian', u'welcom', u'vote', u'arafat'] [u'patterson', u'unmov', u'vaccin', u'critic'] [u'philippin', u'telecom', u'giant', u'phone', u'scandal'] [u'polic', u'hunt', u'gunman', u'doctor', u'shoot', u'hospit'] [u'poulter', u'lead', u'german', u'master', u'moseley', u'content'] [u'pound', u'hop', u'quick', u'decis', u'young', u'dope', u'case'] [u'powel', u'prais', u'indonesia', u'secur', u'meet'] [u'power', u'canberra', u'home', u'blackout'] [u'power', u'south', u'play', u'draw'] [u'protea', u'cancel', u'pakistan', u'tour'] [u'say', u'slim', u'help', u'launch', u'polit', u'career'] [u'scientist', u'target', u'dead', u'diseas', u'affect'] [u'resid', u'warn', u'tailem', u'bend', u'bore'] [u'rossi', u'snatch', u'pole', u'bayliss', u'fifth', u'brazil'] [u'saddam', u'defenc', u'chief', u'surrend', u'blast', u'baghdad'] [u'issu', u'bore', u'water', u'arsenic', u'warn'] [u'seven', u'detent', u'tamworth', u'raid'] [u'sever', u'storm', u'leav', u'thousand', u'power'] [u'sydney', u'home', u'power', u'strong', u'wind'] [u'spain', u'close', u'final', u'feebl', u'henman', u'beat'] [u'straddi', u'blaze', u'jump', u'contain', u'line'] [u'strong', u'quak', u'shake', u'tokyo', u'injuri'] [u'student', u'await', u'meningococc', u'diseas', u'test', u'result'] [u'crane', u'accid', u'kill'] [u'tear', u'nozal', u'pile', u'vuelta', u'pressur'] [u'terror', u'threat', u'open', u'door', u'indonesia', u'busi'] [u'terrorist', u'plan', u'attack', u'indonesia', u'warn'] [u'tourist', u'flock', u'island', u'bushfir', u'continu'] [u'train', u'collis', u'kill', u'pakistan', u'polic'] [u'charg', u'perth', u'ecstasi', u'haul'] [u'approv', u'peacekeep', u'forc', u'liberia'] [u'demand', u'israel', u'drop', u'arafat', u'threat'] [u'strike', u'kill', u'afghan', u'civilian'] [u'hurrican', u'death', u'toll', u'hit'] [u'sanction', u'chines', u'missil', u'export'] [u'sign', u'immun', u'agreement', u'solomon'] [u'slap', u'sanction', u'china', u'missil', u'sale'] [u'ambul', u'offic', u'attack'] [u'warrior', u'send', u'raider', u'pack'] [u'welfar', u'chang', u'begin', u'today'] [u'wholesal', u'chang', u'bok', u'warm'] [u'woman', u'night', u'bush', u'ordeal'] [u'woodbridg', u'arthur', u'prepar', u'vital', u'davi'] [u'worker', u'leav', u'hilton', u'site', u'asbesto', u'concern'] [u'zimbabw', u'independ', u'daili', u'deni', u'licenc'] [u'lib', u'announc', u'campaign', u'platform'] [u'afghan', u'leader', u'move', u'disarm', u'warlord'] [u'aid', u'expert', u'wage', u'diseas'] [u'clearer', u'fire', u'continu', u'straddi'] [u'argentina', u'claim', u'debt', u'agreement', u'world'] [u'attack', u'claim', u'soldier', u'iraq'] [u'breath', u'fresh', u'wright', u'flight'] [u'bulldog', u'blow', u'storm', u'away'] [u'burmes', u'leader', u'hold', u'democraci', u'ralli'] [u'bush', u'approv', u'rat', u'iraq', u'drop', u'poll'] [u'calleri', u'stun', u'ferrero', u'davi'] [u'govt', u'fund', u'train', u'student'] [u'specul', u'crean', u'leadership'] [u'govt', u'help', u'residenti', u'care', u'oper'] [u'uniti', u'poll', u'put', u'carr', u'crean'] [u'celebr', u'latvia', u'vote', u'join'] [u'china', u'condemn', u'econom', u'sanction'] [u'choi', u'lead', u'germani'] [u'clinton', u'call', u'justic', u'bosnia', u'memori'] [u'candid', u'rule', u'prefer', u'talk'] [u'construct', u'law', u'trigger', u'elect', u'abbott'] [u'crespo', u'spree', u'fire', u'chelsea'] [u'czech', u'davi', u'elit'] [u'damron', u'beckman', u'share', u'penn', u'lead', u'laycock'] [u'darwin', u'polic', u'seek', u'overdu', u'boat'] [u'dementieva', u'lift', u'shanghai', u'open', u'crown'] [u'downer', u'rout', u'meet'] [u'eczema', u'suffer', u'need', u'skin', u'studi'] [u'elliott', u'comment', u'death', u'threat', u'report'] [u'coma', u'polic', u'hurt', u'seri', u'match'] [u'govt', u'ignor', u'tasmanian', u'telstra', u'concern'] [u'crew', u'hop', u'favour', u'weather'] [u'fishermen', u'fuel', u'problem'] [u'fishermen', u'support', u'govt', u'safeti', u'program'] [u'spaniard', u'hold', u'embassi', u'bomb', u'plot'] [u'fli', u'boat', u'arriv', u'darwin'] [u'dead', u'philippin', u'gold', u'heist'] [u'franc', u'centr', u'marsh', u'come', u'test'] [u'galileo', u'epic', u'journey', u'flame'] [u'gambian', u'newspap', u'editor', u'arrest'] [u'germani', u'knock', u'world', u'group'] [u'govt', u'blunder', u'ask', u'dead', u'teacher', u'return', u'work'] [u'govt', u'target', u'famili', u'refund', u'opposit'] [u'guantanamo', u'chaplain', u'arrest', u'suspicion'] [u'guantanamo', u'bay', u'muslim', u'chaplain', u'detain'] [u'half', u'million', u'dollar', u'gatlin', u'upset'] [u'hous', u'cycl', u'near', u'peak', u'minchin', u'say'] [u'ibi', u'cull', u'start', u'sydney'] [u'india', u'seek', u'death', u'australian', u'missionari'] [u'indonesia', u'launch', u'aceh', u'offens'] [u'isabel', u'clean', u'month'] [u'kookaburra', u'sweep', u'oceania'] [u'labor', u'unveil', u'save', u'scheme'] [u'latham', u'promot', u'save', u'scheme'] [u'latham', u'propos', u'spark', u'save', u'debat'] [u'latvian', u'vote', u'final', u'referendum'] [u'laycock', u'shot', u'penn', u'lead'] [u'leader', u'outrag', u'attack', u'iraqi', u'politician'] [u'leader', u'split', u'iraq', u'plan'] [u'leagu', u'world', u'stun', u'shelford', u'death'] [u'lion', u'confid', u'lappin', u'recoveri'] [u'lion', u'eye', u'pie', u'peat', u'leppitsch'] [u'hospit', u'nowra', u'petrol', u'drum', u'blast'] [u'mayor', u'seek', u'gambl', u'figur'] [u'murder', u'swedish', u'minist', u'lindh', u'buri', u'stockholm'] [u'nasa', u'galileo', u'crash', u'cours', u'jupit'] [u'nepales', u'general', u'strike', u'cost', u'economi', u'dear'] [u'newcastl', u'start', u'knight', u'marconi', u'draw'] [u'miss', u'avalanch', u'northern', u'india'] [u'excus', u'roo', u'swan', u'crash', u'earth'] [u'norwegian', u'blank', u'franc', u'women', u'world', u'open'] [u'coach', u'quiet', u'death', u'threat', u'report'] [u'govt', u'hold', u'high', u'hop', u'buyback'] [u'land', u'council', u'claim', u'govt', u'report', u'flaw'] [u'minist', u'condemn', u'anti', u'semit', u'graffiti'] [u'scientist', u'bird', u'speci', u'environment'] [u'scientist', u'use', u'bustard', u'health', u'check', u'bush'] [u'oneil', u'larsson', u'charm', u'offens'] [u'boy', u'readi', u'fitzi'] [u'pakistan', u'bid', u'save', u'protea', u'tour'] [u'pakistani', u'cricket', u'condemn', u'protea', u'boycott'] [u'palestinian', u'milit', u'chief', u'murder', u'assail'] [u'pari', u'gang', u'fight', u'trash', u'suburb'] [u'perth', u'crew', u'clean', u'fertilis', u'spill'] [u'perth', u'teen', u'await', u'meningococc', u'diseas', u'test'] [u'petacchi', u'strike', u'gonzalez', u'bow'] [u'phillip', u'island', u'school', u'caus', u'million', u'damag'] [u'polic', u'question', u'inner', u'citi', u'sydney', u'brawl'] [u'school', u'holiday', u'road', u'toll', u'hit'] [u'radcliff', u'win', u'half', u'marathon', u'record', u'time'] [u'reinforc', u'help', u'fight', u'island'] [u'riot', u'break', u'maldiv', u'prison', u'death'] [u'road', u'closur', u'plan', u'anger', u'south', u'east', u'resid'] [u'rocca', u'face', u'tribun', u'wipe'] [u'rossi', u'win', u'brazil', u'stoner', u'second'] [u'russia', u'matilda', u'obstacl'] [u'russia', u'say', u'western', u'firm', u'help', u'iran', u'nuclear'] [u'seven', u'indian', u'mountain', u'kill', u'himalayan'] [u'souness', u'hail', u'hero', u'neill'] [u'spain', u'near', u'davi', u'final', u'berth'] [u'storm', u'warn', u'bulldog', u'anasta'] [u'stradbrok', u'fire', u'control'] [u'striker', u'leagu'] [u'student', u'recov', u'meningococc', u'diseas'] [u'superstar', u'hewitt', u'secur', u'home', u'final'] [u'swim', u'coach', u'whistleblow', u'give', u'award'] [u'govt', u'pleas', u'research'] [u'aviv', u'ralli', u'demand', u'israel', u'withdraw'] [u'tulip', u'open', u'earli', u'hobart', u'festiv'] [u'charg', u'assault', u'paramed'] [u'back', u'iraqi', u'leadership', u'sell', u'state', u'asset'] [u'confirm', u'soldier', u'kill', u'rare', u'tiger', u'baghdad'] [u'deni', u'kill', u'civilian', u'afghan', u'attack'] [u'posit', u'arafat', u'harm', u'peac', u'process'] [u'soldier', u'kill', u'baghdad', u'tiger', u'attack'] [u'vicent', u'mista', u'send', u'valencia'] [u'scientist', u'say', u'test', u'detect', u'alzheim'] [u'extend', u'doubl', u'demerit', u'scheme'] [u'teen', u'recov', u'meningococc'] [u'welford', u'seek', u'advic', u'leader'] [u'wind', u'damag', u'shut', u'healesvill', u'sanctuari'] [u'woman', u'children', u'crash'] [u'zimbabw', u'vice', u'presid', u'die', u'age'] [u'injur', u'bangladesh', u'ship', u'crash'] [u'year', u'wait', u'ticket', u'prize', u'end'] [u'fund', u'boost', u'malaria', u'vaccin'] [u'kill', u'uganda', u'crash'] [u'pledg', u'north', u'rehab', u'scienc', u'centr'] [u'abar', u'tip', u'dollar', u'push', u'cent'] [u'win', u'aria', u'award'] [u'opposit', u'unveil', u'polici', u'direct'] [u'adelaid', u'care', u'facil', u'face', u'uncertain', u'futur'] [u'agreement', u'boost', u'busi', u'right', u'inform'] [u'aid', u'statist', u'rais', u'alarm'] [u'alcohol', u'restrict', u'tourism', u'impact'] [u'applebi', u'second', u'pennsylvania'] [u'atsic', u'happi', u'chang', u'park', u'manag'] [u'aussi', u'face', u'lancashir', u'claim', u'titl'] [u'australia', u'relat', u'strain', u'comment'] [u'australia', u'host', u'spain', u'final'] [u'australia', u'host', u'spain', u'davi', u'final'] [u'ballarat', u'place', u'cut', u'trend'] [u'beenleigh', u'host', u'ministeri', u'communiti', u'forum'] [u'breaker', u'look', u'grand', u'final', u'beat'] [u'british', u'defenc', u'secretari', u'defend', u'action'] [u'break', u'hill', u'farewel', u'compo', u'court'] [u'buckley', u'unwil', u'brownlow', u'guest'] [u'buckley', u'ricciuto', u'claim', u'brownlow', u'harvey'] [u'bulldog', u'track', u'folk'] [u'burma', u'face', u'pressur', u'free'] [u'burn', u'inquiri', u'term', u'refer'] [u'busi', u'time', u'legal', u'servic', u'warrant'] [u'princ', u'highway', u'fund', u'boost'] [u'probe', u'polic', u'remov', u'claim'] [u'promis', u'cut', u'littl', u'region'] [u'child', u'offend', u'work', u'teacher', u'warn'] [u'choi', u'claim', u'german', u'master'] [u'clone', u'cell', u'cure', u'brain', u'diseas', u'mice', u'studi'] [u'colombia', u'continu', u'search', u'kidnap', u'foreign'] [u'commod', u'export', u'look', u'brighter'] [u'compani', u'offer', u'ship', u'sale', u'assur'] [u'confer', u'tell', u'indigen', u'carer', u'need', u'help'] [u'council', u'gaug', u'rail', u'plan', u'busi', u'concern'] [u'council', u'hop', u'bridg', u'fund'] [u'councillor', u'put', u'energi', u'power', u'push'] [u'council', u'want', u'juvenil', u'offend', u'name'] [u'crean', u'refus', u'draw', u'conroy', u'remov'] [u'crean', u'urg', u'interven', u'faction'] [u'curriculum', u'develop', u'warn', u'address', u'issu'] [u'deportivo', u'maintain', u'perfect', u'start', u'real', u'away'] [u'devonport', u'centrelink', u'offic', u'rank', u'best'] [u'dollar', u'hit', u'month', u'high'] [u'dollar', u'retreat', u'morn', u'surg'] [u'dollar', u'spike', u'push', u'ord', u'lower'] [u'dollar', u'top', u'cent', u'level'] [u'eczema', u'research', u'seek', u'volunt'] [u'emmi', u'countdown'] [u'environment', u'popul', u'health', u'expert', u'meet'] [u'expert', u'overse', u'fish'] [u'farmer', u'stress', u'import', u'live', u'export', u'trade'] [u'fatal', u'crash', u'claim', u'mother', u'children'] [u'father', u'melbourn', u'crime', u'figur', u'fail'] [u'ferguson', u'wenger', u'furious', u'cheat'] [u'ferri', u'increas', u'daylight', u'sail'] [u'fifita', u'replac', u'havili', u'tonga'] [u'financi', u'time', u'launch', u'asian', u'edit'] [u'firm', u'hatch', u'plan', u'centr', u'foundat'] [u'join', u'kangaroo', u'squad'] [u'face', u'court', u'illeg', u'tobacco'] [u'execut', u'sue', u'villag', u'roadshow'] [u'funer', u'slim', u'dusti', u'hold', u'friday'] [u'galileo', u'crash', u'jupit'] [u'galileo', u'mission', u'end', u'melbourn', u'scientist'] [u'gather', u'focus', u'boost', u'disabl', u'servic'] [u'govt', u'assign', u'reduc', u'road', u'toll'] [u'govt', u'struggl', u'home', u'strand', u'sheep'] [u'grower', u'predict', u'promis', u'chardonnay', u'crop'] [u'health', u'servic', u'target', u'hospit', u'wait', u'list'] [u'hoax', u'scare', u'spur', u'polic', u'issu', u'warn'] [u'hope', u'nation', u'park', u'manag', u'uniform'] [u'hotel', u'get', u'extend', u'trade', u'hour', u'knock'] [u'hous', u'rental', u'market', u'tight', u'pilbara'] [u'howard', u'pay', u'tribut', u'ruddock', u'mileston'] [u'hunter', u'water', u'worker', u'disput'] [u'india', u'tougher', u'challeng', u'australia', u'fleme'] [u'insur', u'reform', u'time', u'cost'] [u'intern', u'aviat', u'chaplain', u'address', u'terror'] [u'investor', u'quiz', u'wine', u'fund', u'wind'] [u'iraq', u'council', u'member', u'recov', u'shoot'] [u'iraq', u'unveil', u'econom', u'overhaul'] [u'make', u'condit', u'order'] [u'irrig', u'revis', u'snowi', u'hydro', u'offer'] [u'isra', u'troop', u'hama', u'gunman', u'exchang'] [u'japanes', u'minist', u'resign'] [u'japanes', u'reshuffl', u'cabinet'] [u'battl', u'boro'] [u'judg', u'deliv', u'sentenc', u'missionari'] [u'katsidi', u'deliv', u'knockout', u'blow'] [u'kean', u'time', u'unit'] [u'labor', u'call', u'govt', u'backdown', u'leas', u'point'] [u'latham', u'want', u'help', u'save'] [u'lib', u'expel', u'wife', u'independ', u'support'] [u'incom', u'school', u'children', u'urg', u'work'] [u'mackay', u'road', u'share', u'black', u'spot', u'fund'] [u'accus', u'kill', u'doctor', u'make', u'bail'] [u'sentenc', u'communiti', u'servic', u'road', u'rage'] [u'sue', u'liverpool', u'hospit', u'medic', u'neglig'] [u'face', u'court', u'polic', u'station', u'attack'] [u'court', u'hous', u'damag'] [u'arsenal', u'play', u'spite', u'draw'] [u'mcewen', u'hear', u'super', u'infrastructur', u'plan'] [u'meander', u'oppon', u'urg', u'chang', u'stanc'] [u'meet', u'discuss', u'port', u'lincoln', u'develop', u'plan'] [u'meningococc', u'scare', u'victorian', u'teenag'] [u'mighti', u'moya', u'see', u'spain', u'final'] [u'minist', u'pay', u'tribut', u'slim', u'dusti'] [u'minist', u'airport', u'secur', u'comment'] [u'missionari', u'killer', u'sentenc', u'death'] [u'make', u'nurs', u'degre', u'place', u'pledg'] [u'reject', u'claim', u'highway', u'revamp', u'feder'] [u'murray', u'irrig', u'alloc', u'boost'] [u'namibian', u'coach', u'promis', u'reveng', u'club', u'player'] [u'namibia', u'turn', u'world', u'boss'] [u'nation', u'park', u'review', u'year', u'govt'] [u'give', u'fresh', u'view', u'australia'] [u'test', u'reaction', u'radiotherapi', u'treatment'] [u'bid', u'bypass', u'player', u'associ'] [u'prepar', u'honour', u'polic', u'forc'] [u'govt', u'push', u'control', u'nation'] [u'stock', u'exchang', u'name', u'interim', u'chief'] [u'organis', u'plant', u'seed', u'flower'] [u'organis', u'upbeat', u'york', u'park', u'clash'] [u'goal', u'miseri', u'matilda'] [u'pakistan', u'anger', u'india', u'weapon', u'acquisit'] [u'pakistan', u'complet', u'clean', u'sweep'] [u'pakistan', u'declin', u'australian', u'offer', u'free', u'sheep'] [u'pakistan', u'threaten', u'claim', u'damag', u'cancel'] [u'palestinian', u'milit', u'kill', u'isra'] [u'palestinian', u'design', u'meet', u'faction'] [u'pie', u'brace', u'rocca', u'verdict'] [u'urg', u'resolv', u'strand', u'sheep', u'crisi'] [u'welcom', u'home', u'troop', u'townsvill'] [u'polic', u'interview', u'suspect', u'raider', u'death', u'threat'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'remind', u'driver', u'valuabl'] [u'polic', u'urg', u'driver', u'care', u'road', u'toll', u'climb'] [u'pont', u'slam', u'warn', u'drug', u'mad'] [u'port', u'dredg', u'near'] [u'power', u'fin', u'late', u'entri'] [u'shout', u'quiet'] [u'continu', u'swelter', u'extrem', u'danger'] [u'governor', u'return', u'home'] [u'leader', u'volunt', u'breath', u'test'] [u'queensland', u'keen', u'respect', u'countri'] [u'ranger', u'demolish', u'heart', u'regain', u'spot'] [u'carpet', u'roll', u'emmi'] [u'resid', u'powerlin', u'approach', u'concern'] [u'resid', u'hear', u'oberon', u'bathurst', u'merger', u'plan'] [u'call', u'earli', u'total'] [u'roddick', u'lead', u'victori', u'germani', u'releg'] [u'roddick', u'ruin', u'thailand', u'open', u'scenario', u'late'] [u'roger', u'sixth', u'grand', u'prix'] [u'rescu'] [u'scientist', u'say', u'ozon', u'hole', u'record', u'size'] [u'search', u'find', u'miss', u'fisherman'] [u'self', u'confess', u'killer', u'get', u'year', u'jail', u'sentenc'] [u'senat', u'committe', u'hear', u'visa', u'outcom', u'success'] [u'sheep', u'ship'] [u'sibl', u'injur', u'jump', u'castl', u'mishap'] [u'singapor', u'australia', u'sign', u'servic', u'agreement'] [u'site', u'choos', u'purpos', u'build', u'ethanol', u'refineri'] [u'smoke', u'haze', u'nearbi', u'threat'] [u'socceroo', u'bresciano', u'hail', u'parma', u'doubl'] [u'song', u'writer', u'sing', u'slim', u'dusti', u'virtu'] [u'south', u'cafl', u'flag'] [u'spur', u'sack', u'hoddl'] [u'straddi', u'holidaymak', u'urg', u'awar'] [u'stump', u'chariti', u'cricket', u'match'] [u'sugar', u'worker', u'strike', u'demarc'] [u'suicid', u'bomber', u'kill', u'guard', u'baghdad'] [u'support', u'harsher', u'stanc', u'shoplift'] [u'tamworth', u'immigr', u'sting', u'land', u'seven', u'custodi'] [u'govt', u'call', u'discuss', u'futur'] [u'support', u'crean', u'leadership'] [u'target', u'child', u'abus', u'state', u'care'] [u'temperatur', u'region', u'soar'] [u'timber', u'industri', u'blockad', u'outsid', u'offic'] [u'tourism', u'zone', u'work', u'move', u'ahead'] [u'tourist', u'safe', u'bolivia', u'protest'] [u'townsvill', u'eye', u'turn', u'skyward', u'centenari', u'event'] [u'traffic', u'plan', u'aim', u'crash', u'rat'] [u'tulip', u'festiv', u'success', u'prompt', u'expans', u'plan'] [u'ullrich', u'ponder', u'futur', u'bianchi'] [u'unherald', u'dancev', u'lift', u'canada', u'world', u'group'] [u'univers', u'unhappi', u'nurs', u'place', u'snub'] [u'billion', u'restor', u'iraq', u'stabil'] [u'aid', u'forum'] [u'valverd', u'win', u'vuelta', u'punish', u'stage'] [u'air', u'dairi', u'deregul', u'diseas', u'control', u'fear'] [u'govt', u'backflip', u'child', u'offend'] [u'minist', u'defend', u'surveil', u'plan'] [u'compo', u'scheme', u'chang'] [u'vet', u'citi', u'wodonga'] [u'water', u'flow', u'test'] [u'treasur', u'predict', u'cut', u'servic', u'fund'] [u'western', u'feder', u'fund', u'look', u'healthier'] [u'west', u'wing', u'raymond', u'emmi', u'gong'] [u'wind', u'farm', u'plan', u'news', u'govt'] [u'woman', u'die', u'hors', u'fall'] [u'woodsid', u'slat', u'indigen', u'employ', u'level'] [u'young', u'thief', u'bash', u'shop', u'worker'] [u'handgun', u'surrend'] [u'govt', u'urg', u'submiss', u'public'] [u'actu', u'tell', u'labor'] [u'adelaid', u'council', u'approv', u'develop', u'program'] [u'ord', u'fall', u'media', u'resourc', u'stock'] [u'urg', u'game', u'despit', u'dismal'] [u'angel', u'lead', u'chairman'] [u'anonym', u'note', u'ignit', u'liber', u'brawl'] [u'arab', u'channel', u'target', u'crackdown'] [u'arazi', u'guid', u'morocco', u'davi', u'world', u'group'] [u'crack', u'dodgi', u'transact'] [u'aust', u'chariti', u'say', u'link', u'hama'] [u'aust', u'indonesia', u'relat', u'signific', u'damag'] [u'author', u'crack', u'sydney', u'taxi'] [u'bali', u'bomb', u'maker', u'plan', u'attack', u'polic'] [u'say', u'villeneuv', u'race', u'japan'] [u'baxter', u'detaine', u'roof', u'drama'] [u'bell', u'rugbi', u'world'] [u'bennett', u'ponder', u'state', u'origin', u'role', u'price'] [u'blair', u'aid', u'defenc', u'secretari', u'inquiri'] [u'blaze', u'take', u'hold', u'workshop'] [u'bodybuild', u'charg', u'offer', u'kill', u'bryant'] [u'accus', u'stepfath', u'kill', u'move', u'south'] [u'brack', u'hail', u'grand', u'final', u'scalp', u'crackdown'] [u'british', u'polit', u'columnist', u'hugo', u'young', u'die'] [u'break', u'hill', u'desalin', u'plant'] [u'bronco', u'state', u'club', u'bennett'] [u'brownlow', u'medallist', u'buckley', u'turn', u'attent'] [u'burma', u'remain', u'sturdi', u'detent'] [u'busi', u'group', u'propos', u'voluntari', u'code'] [u'eden', u'stop', u'ferri', u'rout'] [u'wind', u'farm', u'strategi'] [u'centr', u'aim', u'remot', u'area', u'attract'] [u'prepar', u'bushfir', u'season'] [u'chief', u'justic', u'drug', u'problem'] [u'china', u'propos', u'northern', u'free', u'trade', u'zone'] [u'choi', u'charg', u'world', u'rank'] [u'chouki', u'posit'] [u'compani', u'lament', u'demarc', u'disput'] [u'complaint', u'hotel', u'book', u'scheme'] [u'consum', u'warn', u'wari', u'door', u'door'] [u'council', u'approv', u'phone', u'tower', u'plan'] [u'council', u'delay', u'mobil', u'phone', u'tower', u'decis'] [u'currenc', u'market', u'settl', u'volatil'] [u'death', u'spector', u'home', u'rule', u'homicid'] [u'venuto', u'skipper', u'derbyshir'] [u'optimist', u'xmas', u'despit', u'recent', u'loss'] [u'owner', u'theft', u'warn'] [u'domest', u'disput', u'tie', u'polic'] [u'dope', u'watchdog', u'see', u'weak', u'tour', u'test'] [u'earli', u'cheer', u'hantuchova', u'leipzig'] [u'dead', u'venezuela', u'gang', u'fire', u'wake'] [u'investig', u'trafford', u'clash'] [u'farmer', u'tip', u'recov', u'strong', u'drought'] [u'farmer', u'sell', u'water', u'right'] [u'father', u'jail', u'child', u'assault'] [u'fear', u'eas', u'milan', u'striker', u'inzaghi'] [u'govt', u'urg', u'continu', u'cane', u'farmer', u'support'] [u'govt', u'urg', u'tackl', u'region', u'airport', u'secur'] [u'firefight', u'effort', u'earn', u'prais'] [u'firemen', u'rescu', u'puppi', u'storey', u'leap'] [u'rebel', u'kill', u'indonesia', u'aceh'] [u'forecast', u'agre', u'stinker'] [u'ballarat', u'player', u'win', u'brownlow'] [u'champ', u'bruno', u'take', u'psychiatr', u'hospit'] [u'french', u'plan', u'iraq', u'independ', u'unwork'] [u'gallop', u'reject', u'marina', u'rule', u'claim'] [u'latham', u'licenc', u'attack', u'campes'] [u'crean', u'poll'] [u'govt', u'consid', u'fund', u'cut', u'cull'] [u'govt', u'defend', u'spend', u'airport', u'servic'] [u'govt', u'work', u'hard', u'home', u'strand', u'sheep'] [u'visit', u'cost', u'medicar', u'chang', u'studi'] [u'green', u'reject', u'mine', u'loss', u'claim'] [u'hanson', u'ettridg', u'remain', u'jail'] [u'harrigan', u'rooster', u'bulldog', u'clash'] [u'healesvill', u'sanctuari', u'open', u'storm', u'clean'] [u'high', u'court', u'finish', u'hear', u'hanson', u'ettridg', u'appeal'] [u'high', u'court', u'hear', u'hanson', u'ettridg', u'bail', u'plea'] [u'high', u'court', u'tell', u'defici', u'ettridg'] [u'high', u'temperatur', u'prove', u'record', u'breaker'] [u'hope', u'librari', u'doubt', u'near'] [u'hostil', u'takeov', u'launch', u'wine', u'compani'] [u'hunter', u'team', u'take', u'sandpip', u'spot'] [u'hurrican', u'marti', u'hammer', u'mexico'] [u'indigen', u'group', u'fail', u'land', u'claim'] [u'inglewood', u'council', u'face', u'roadblock'] [u'inquiri', u'review', u'fix', u'speed', u'camera', u'claim'] [u'investig', u'begin', u'school', u'radiat', u'scare'] [u'iraq', u'close', u'arab', u'offic', u'spokesman'] [u'isra', u'armi', u'kill', u'hama', u'leader', u'hebron'] [u'isra', u'troop', u'kill', u'arm', u'palestinian', u'militari'] [u'italian', u'minist', u'threaten', u'match'] [u'ivori', u'coast', u'rebel', u'suspend', u'particip'] [u'hoddl'] [u'juri', u'consid', u'verdict', u'shoot', u'case'] [u'kiribati', u'budget', u'final', u'approv'] [u'largest', u'arctic', u'shelf', u'break', u'report'] [u'launceston', u'crime', u'rate', u'fall'] [u'leagu', u'legend', u'beetson', u'join', u'elit', u'group'] [u'lion', u'grand', u'final', u'underdog', u'voss'] [u'livestock', u'trade', u'decad', u'recov'] [u'malthous', u'move', u'calm', u'rocca', u'tribun', u'jitter'] [u'accus', u'petrol', u'bomb', u'attack', u'face', u'court'] [u'make', u'cyprus', u'passport', u'check'] [u'face', u'polic', u'assault', u'charg', u'breath', u'test'] [u'maoist', u'rebel', u'kill', u'nepal'] [u'mayor', u'back', u'committe', u'bakeri', u'gaff'] [u'mayor', u'urg', u'state', u'elect', u'intent'] [u'celebr', u'birthday'] [u'milosev', u'health', u'halt', u'trial', u'hear'] [u'miner', u'focus', u'samag', u'investor'] [u'minist', u'angri', u'recept', u'cours'] [u'missionari', u'killer', u'expect', u'appeal'] [u'missionari', u'killer', u'reject', u'appeal', u'option'] [u'monaro', u'power', u'plan', u'wind'] [u'land', u'releas', u'alic', u'hous'] [u'northern', u'beach', u'develop', u'come'] [u'want', u'street', u'crime', u'clean'] [u'nation', u'park', u'fell', u'kosciuszko', u'tree', u'log', u'plan'] [u'nation', u'sheep', u'number', u'lowest', u'year'] [u'nat', u'want', u'think', u'water', u'price', u'polici'] [u'name', u'chairman'] [u'grain', u'export'] [u'chairman', u'promis', u'bum', u'seat'] [u'northam', u'grain', u'grower', u'access'] [u'north', u'west', u'share', u'region', u'achiev', u'award'] [u'player', u'bodi', u'loggerhead'] [u'govt', u'tighten', u'secur', u'industri', u'control'] [u'opposit', u'defend', u'oversea', u'trip'] [u'swelter', u'record', u'septemb', u'heat'] [u'pastoralist', u'benefit'] [u'plan', u'slingshot'] [u'nurs', u'pile', u'wage', u'pressur', u'govt'] [u'oldest', u'fossil', u'modern'] [u'oneil', u'demand', u'action', u'club', u'countri', u'disgrac'] [u'creditor', u'vote', u'rescu'] [u'pere', u'tell', u'sharon', u'gaza', u'strip'] [u'petit', u'back', u'ocean', u'pool', u'push'] [u'pie', u'appeal', u'rocca'] [u'minist', u'upset', u'downer', u'fail', u'state'] [u'polic', u'consid', u'way', u'tackl', u'footbal', u'woe'] [u'polic', u'hunt', u'arm', u'bank', u'bandit'] [u'polic', u'probe', u'prison', u'stab'] [u'polic', u'search', u'miss'] [u'polic', u'urg', u'gypsi', u'joker', u'come', u'clean', u'murder'] [u'poll', u'compet', u'athen', u'reduc'] [u'poultri', u'produc', u'readi', u'fight', u'super', u'farm', u'plan'] [u'power', u'boost', u'north', u'west'] [u'princ', u'harri', u'arriv', u'australia'] [u'princ', u'harri', u'taronga'] [u'princip', u'protest', u'ax', u'news'] [u'prison', u'entri', u'societi', u'spotlight'] [u'probe', u'begin', u'gladston', u'power', u'outag'] [u'protea', u'consid', u'revis', u'pakistan', u'tour'] [u'public', u'submiss', u'consid', u'barrier', u'reef'] [u'owner', u'decis', u'return', u'card', u'applaud'] [u'puletua', u'priddi', u'panther'] [u'qanta', u'applaud', u'australia', u'singapor', u'deal'] [u'court', u'reject', u'serial', u'rapist', u'appeal', u'freedom'] [u'queanbeyan', u'mayor', u'jump', u'transport', u'bandwagon'] [u'ract', u'sell', u'insur', u'divis', u'suncorp'] [u'radiat', u'scare', u'newcastl', u'school'] [u'ravanelli', u'join', u'dunde'] [u'region', u'aust', u'subject', u'privatis'] [u'resid', u'unhurt', u'sydney', u'shoot'] [u'rivaldo', u'say', u'feel', u'humili', u'milan'] [u'rocca', u'front', u'tribun'] [u'roddick', u'fin', u'miss', u'thailand', u'open'] [u'rooster', u'sign', u'walker'] [u'ruddock', u'ignor', u'protest', u'sydney', u'parti'] [u'assur', u'interst', u'electr'] [u'bake', u'record'] [u'saudi', u'policeman', u'milit', u'dead', u'shootout'] [u'scientist', u'say', u'moggi', u'malais', u'make', u'moros'] [u'senat', u'away', u'medicar', u'overhaul'] [u'ship', u'owner', u'say', u'surviv', u'sheep', u'recov'] [u'shire', u'address', u'road', u'flood'] [u'singapor', u'say', u'standard', u'sar', u'case'] [u'springborg', u'upbeat', u'coalit', u'coast', u'chanc'] [u'storm', u'prove', u'cost', u'council'] [u'storm', u'wreak', u'havoc', u'vic', u'north', u'west'] [u'strong', u'wind', u'buffet', u'perth'] [u'studi', u'tackl', u'wide', u'hous', u'shortag'] [u'survey', u'confirm', u'darwin', u'resid', u'recycl'] [u'survey', u'find', u'major', u'sydney', u'cab', u'defect'] [u'survey', u'highlight', u'farmer', u'conserv', u'effort'] [u'sydney', u'unveil', u'power', u'upgrad'] [u'tableland', u'bushfir', u'scrutini'] [u'indigen', u'centr', u'welcom', u'land', u'transfer'] [u'tasmania', u'shift', u'rare', u'parrot', u'interst'] [u'owner', u'warn', u'napper', u'loos'] [u'teenag', u'face', u'murder', u'charg', u'babi', u'death'] [u'teen', u'gunman', u'shoot', u'polic', u'school', u'offici'] [u'teen', u'racecal', u'head', u'smoke'] [u'tender', u'chang', u'delay', u'hospit', u'revamp'] [u'road', u'titl', u'race', u'race'] [u'thousand', u'expect', u'attend', u'field', u'day'] [u'brownlow'] [u'brownlow', u'honour'] [u'toowoomba', u'play', u'role', u'hemp', u'industri'] [u'honour', u'manjimup', u'wineri'] [u'tree', u'injur', u'children', u'wind', u'storm'] [u'trio', u'work', u'cane', u'base', u'product'] [u'committe', u'studi', u'staff', u'safeti', u'iraq'] [u'look', u'forward', u'nurs', u'fund', u'boost'] [u'uni', u'brace', u'fight', u'govt', u'rule'] [u'uni', u'tell', u'meet', u'rule', u'miss', u'extra', u'fund'] [u'univers', u'pressur', u'offer', u'workplac'] [u'review', u'oper', u'baghdad', u'blast'] [u'upbeat', u'black', u'readi', u'assault'] [u'audienc', u'take', u'scari', u'movi'] [u'defend', u'troop', u'cameraman', u'death'] [u'forc', u'fallujah', u'firefight'] [u'seek', u'lake', u'manag', u'chang'] [u'air', u'fear', u'predict', u'energi', u'export', u'fall'] [u'warrior', u'unchang', u'panther', u'clash'] [u'weather', u'heat', u'quick', u'bourk'] [u'westpac', u'report', u'highlight', u'region', u'optim'] [u'woman', u'hospit', u'outback', u'ordeal'] [u'woman', u'jail', u'year', u'relat', u'death'] [u'work', u'port', u'sale', u'move', u'closer'] [u'work', u'progress', u'longreach', u'club'] [u'world', u'clear', u'franc', u'garbajosa'] [u'worst', u'surpris', u'vuelta', u'leader', u'nozal'] [u'young', u'driver', u'face', u'tougher', u'test'] [u'zimbabw', u'civic', u'group', u'seek', u'media', u'altern'] [u'abattoir', u'look', u'worker'] [u'abbott', u'criticis', u'act', u'draconian', u'manslaught'] [u'say', u'nelson', u'face', u'tough', u'educ', u'sale'] [u'adelaid', u'await', u'festiv', u'director', u'announc'] [u'africa', u'ladi', u'tackl', u'aid'] [u'agribusi', u'unit', u'approach'] [u'power', u'share', u'award'] [u'alessio', u'bow'] [u'alic', u'host', u'econom', u'growth', u'gather'] [u'black', u'haunt', u'failur'] [u'black', u'william', u'doubt'] [u'alleg', u'trouser', u'snake', u'smuggler', u'refus', u'bail'] [u'issu', u'ultimatum', u'cole', u'seal', u'section'] [u'reject', u'stanbrok', u'sale', u'collus', u'claim'] [u'annan', u'challeng', u'strike', u'doctrin'] [u'arsenal', u'chief', u'blast', u'stupid', u'player'] [u'arthur', u'draper', u'notch', u'win', u'china'] [u'auction', u'put', u'celebr', u'shoe', u'foot'] [u'aust', u'indonesia', u'work', u'bali', u'servic'] [u'australian', u'artifici', u'heart', u'trial', u'continu'] [u'australia', u'top', u'ecstasi', u'list'] [u'aust', u'secur', u'intellig', u'face', u'scrutini'] [u'bacon', u'say', u'job', u'wont', u'log', u'plan'] [u'bega', u'workcov', u'offic'] [u'biki', u'clubroom', u'head', u'upper', u'hous'] [u'seek', u'public', u'wind', u'farm', u'placement'] [u'blackpool', u'wigan', u'provid', u'surpris', u'act'] [u'brothel', u'come', u'council', u'scrutini'] [u'bruno', u'struggl', u'life', u'box'] [u'bulldog', u'need', u'motiv', u'reardon'] [u'firm', u'buy', u'fail', u'king', u'bros', u'busi'] [u'bush', u'defend', u'ask', u'help'] [u'bush', u'face', u'strong', u'critic'] [u'bush', u'lobbi', u'leader', u'resolut'] [u'busi', u'right', u'oblig', u'outlin'] [u'caffein', u'remov', u'ban', u'drug', u'list'] [u'parent', u'licens', u'children'] [u'credit'] [u'cardena', u'climb', u'victori', u'nozal', u'hold', u'lead'] [u'chirac', u'bush', u'odd', u'iraq'] [u'coconut', u'threaten', u'world', u'heritag', u'sit'] [u'commonwealth', u'reject', u'fund', u'claim'] [u'concern', u'club', u'influenc', u'small', u'rugbi', u'nation'] [u'contract', u'sign', u'age', u'care', u'develop'] [u'council', u'consid', u'flood', u'prevent', u'option'] [u'council', u'offer', u'busi', u'chamber', u'support'] [u'council', u'reject', u'hous', u'plan', u'pollut', u'fear'] [u'council', u'upbeat', u'potenti', u'energi'] [u'court', u'hand', u'dodg', u'barrist', u'hous'] [u'crean', u'pounc', u'poll'] [u'disney', u'shut', u'japan', u'anim', u'unit'] [u'dokic', u'set', u'clijster', u'clash'] [u'dollar', u'rise', u'spark', u'export', u'fear'] [u'dossier', u'phrase', u'drop', u'blair', u'aid', u'email'] [u'downer', u'defend', u'action', u'iraq'] [u'dredg', u'take', u'toll', u'river', u'seagrass'] [u'drug', u'smuggler', u'jail', u'year'] [u'educ', u'cut', u'govt', u'agenda'] [u'educ', u'minist', u'call', u'final', u'year', u'consist'] [u'european', u'util', u'deni', u'massiv', u'blackout'] [u'europ', u'bake', u'hottest', u'summer', u'year'] [u'exclus', u'zone', u'invok', u'sheep', u'shipment'] [u'councillor', u'fin', u'real', u'estat', u'secret', u'profit'] [u'farmer', u'govt', u'draft', u'live', u'sheep'] [u'govt', u'creat', u'aid', u'bodi'] [u'govt', u'urg', u'gambl', u'top'] [u'figur', u'high', u'need', u'protect'] [u'final', u'incid', u'view', u'differ'] [u'firefight', u'battl', u'heat', u'wind'] [u'fisher', u'jail', u'murray', u'theft'] [u'forum', u'examin', u'skill', u'shortag', u'scheme'] [u'geraldton', u'driver', u'scrutini'] [u'germani', u'wont', u'block', u'iraq', u'resolut', u'schroeder'] [u'creat', u'job', u'melbourn'] [u'govt', u'say', u'victim', u'offend', u'meet', u'success'] [u'govt', u'upbeat', u'sheep', u'negoti'] [u'green', u'baxter', u'detent', u'centr', u'fear'] [u'gunner', u'trial', u'trafford', u'fiasco'] [u'hagu', u'investig', u'financ', u'congo'] [u'hanson', u'ettridg', u'look', u'convict', u'appeal'] [u'hewitt', u'scud', u'confirm', u'sydney', u'intern'] [u'histor', u'farm', u'properti', u'hammer'] [u'hope', u'rugbi', u'world', u'boost', u'coast', u'tourism'] [u'husband', u'face', u'murder', u'trial'] [u'icac', u'back', u'charg', u'museum', u'theft'] [u'icac', u'call', u'charg', u'museum'] [u'indonesian', u'polic', u'search', u'readi'] [u'injuri', u'prevent', u'expert', u'highlight', u'high', u'cost'] [u'injuri', u'scar', u'victori', u'springbok'] [u'inquiri', u'consid', u'region', u'privatis', u'impact'] [u'iran', u'agent', u'charg', u'journalist', u'death', u'report'] [u'iraqi', u'govern', u'council', u'restrict', u'jazeera'] [u'irrig', u'water', u'restrict', u'respit'] [u'island', u'threaten', u'home', u'north', u'coast'] [u'isra', u'palestinian', u'team', u'tackl', u'antarctica'] [u'iverson', u'million', u'extens', u'report'] [u'plan', u'attack', u'isra', u'airlin', u'thailand'] [u'jobless', u'rate', u'fall', u'southern', u'gold', u'coast'] [u'johnson', u'fifth', u'japan'] [u'labor', u'blame', u'cwealth', u'sugar', u'industri', u'woe'] [u'labor', u'identifi', u'medicar', u'elect', u'issu'] [u'lehmann', u'board', u'toast', u'takeov'] [u'lobster', u'industri', u'consid', u'export'] [u'jail', u'child', u'crime'] [u'mayor', u'rail', u'concern', u'costa'] [u'mayor', u'fast', u'armidal', u'secur', u'plan'] [u'melbourn', u'driver', u'stop', u'work', u'delay', u'expect'] [u'meningococc', u'victim', u'expect', u'recov'] [u'worker', u'protest'] [u'minist', u'reject', u'ferri', u'claim'] [u'minist', u'stand', u'firm', u'colleg', u'decis'] [u'miss', u'crash'] [u'montoya', u'need', u'histor', u'indi'] [u'approv', u'seek', u'runway', u'extens', u'plan'] [u'question', u'ethanol', u'excis', u'claim'] [u'ponder', u'stem', u'cell', u'research', u'vote', u'loom'] [u'nasa', u'flight', u'secur', u'panel', u'quit'] [u'newcastl', u'council', u'accept', u'fort', u'plan'] [u'model', u'hospit', u'physiotherapi', u'servic'] [u'suspect', u'arrest', u'swedish', u'minist', u'murder'] [u'conflict', u'rocca', u'appeal', u'jackson'] [u'immin', u'transfer', u'sovereignti', u'foreign'] [u'govt', u'urg', u'restraint', u'schooli'] [u'island', u'home', u'save', u'bushfir'] [u'polic', u'minist', u'condemn', u'haul', u'sentenc'] [u'region', u'worker', u'job', u'review'] [u'reveal', u'revis', u'educ', u'cut'] [u'author', u'small', u'risk', u'diseas'] [u'massacr', u'mourn', u'year'] [u'number', u'south', u'east', u'valuat', u'challeng'] [u'halt', u'live', u'sheep', u'export', u'saudi', u'arabia'] [u'build', u'nuke', u'test', u'monitor', u'fiji'] [u'price', u'surg', u'opec'] [u'iraqi', u'dead', u'wound', u'explos'] [u'nation', u'say', u'membership', u'surg'] [u'pakistan', u'arrest', u'indonesian', u'suspect'] [u'palestinian', u'youth', u'kill', u'isra', u'gaza', u'incurs'] [u'backer', u'fight', u'liquid', u'decis'] [u'founder', u'drop', u'indemn', u'claim', u'save', u'bail'] [u'worker', u'pitch', u'save', u'drug', u'compani'] [u'parent', u'say', u'money', u'import', u'church', u'offer'] [u'parkway', u'fund', u'boost'] [u'pentagon', u'widen', u'guantanamo', u'search'] [u'pilbara', u'council', u'chair', u'seek', u'kalgoorli'] [u'plan', u'moot', u'underground', u'highway', u'section'] [u'plan', u'afoot', u'port', u'work'] [u'cut', u'spend', u'bank', u'stand'] [u'polic', u'bust', u'britain', u'biggest', u'drug', u'ring'] [u'polic', u'hunt', u'bank', u'bandit'] [u'polic', u'plea', u'help', u'solv', u'bowen', u'kill'] [u'polic', u'quiz', u'landhold', u'blaze'] [u'politician', u'outrag', u'illawarra', u'youth', u'jobless'] [u'portsmouth', u'mistak', u'venic', u'turner', u'work'] [u'princ', u'harri', u'start', u'jackaroo'] [u'probe', u'begin', u'polic', u'cell', u'death'] [u'protea', u'agre', u'play', u'pakistan'] [u'protest', u'ralli', u'sheep', u'export', u'compani', u'offic'] [u'public', u'urg', u'care', u'croc', u'activ'] [u'real', u'burst', u'river', u'bank', u'tribut', u'match'] [u'refuge', u'converg', u'gunnedah'] [u'rivaldo', u'tell', u'fight', u'place'] [u'rocca', u'appeal', u'board'] [u'rocca', u'grand', u'final'] [u'roddick', u'pull', u'japan', u'open'] [u'rooster', u'reject', u'earli', u'grand', u'final', u'hype'] [u'erupt', u'contract', u'worker'] [u'cathol', u'church', u'offer', u'abus', u'payout'] [u'cathol', u'church', u'offer', u'sexual', u'abus', u'victim'] [u'secker', u'stand', u'firm', u'health', u'claim'] [u'offend', u'lose', u'appeal', u'sentenc'] [u'shatter', u'rocca', u'lose', u'appeal'] [u'sixer', u'final', u'rychart'] [u'slay', u'sister', u'venus', u'serena', u'william', u'buri'] [u'solomon', u'welcom', u'revis', u'australian', u'travel', u'advic'] [u'spammer', u'predat', u'forc', u'microsoft', u'quit', u'chat'] [u'specialist', u'graduat', u'complet', u'test'] [u'stanbrok', u'sale', u'fix', u'claim', u'rival', u'bidder'] [u'streisand', u'bore', u'song'] [u'studi', u'find', u'million', u'porn', u'page', u'internet'] [u'studi', u'find', u'higher', u'cost', u'plan', u'medicar'] [u'sydney', u'festiv', u'boss', u'head', u'adelaid'] [u'sydney', u'set', u'temperatur', u'record'] [u'sydney', u'pull', u'talk', u'union'] [u'sydney', u'staff', u'strike', u'deal', u'backdown'] [u'tasmanian', u'danish', u'princess'] [u'teen', u'face', u'court', u'fatal', u'crash'] [u'teen', u'plead', u'guilti', u'muswellbrook', u'murder'] [u'teen', u'face', u'murder', u'charg', u'remain', u'custodi'] [u'teen', u'court', u'surf', u'death'] [u'thirti', u'rescu', u'melbourn', u'chairlift'] [u'thousand', u'expect', u'outback', u'festiv'] [u'milit', u'policeman', u'shoot', u'dead', u'saudi'] [u'total', u'sydney'] [u'toxic', u'flame', u'retard', u'breast', u'milk'] [u'truss', u'seek', u'meaning', u'cane', u'grower', u'talk'] [u'truss', u'urg', u'govt', u'shift', u'posit'] [u'union', u'get', u'unemploy', u'abattoir', u'worker'] [u'union', u'seek', u'differ', u'approach', u'teacher'] [u'union', u'reject', u'educ', u'dept', u'reform', u'pitch'] [u'protest', u'higher', u'educ', u'plan'] [u'unhappi', u'fund', u'catch'] [u'airman', u'charg', u'spi'] [u'clear', u'militari', u'cameraman', u'death'] [u'visitor', u'centr', u'take', u'action', u'remain', u'black'] [u'wada', u'chief', u'say', u'payer', u'face', u'anthem'] [u'farmer', u'move', u'away', u'sheep'] [u'govt', u'approv', u'controversi', u'forest', u'mine'] [u'wall', u'street', u'gain', u'buoy', u'australian', u'share', u'market'] [u'newspap', u'notic', u'worri', u'jewish', u'group'] [u'parliament', u'vote', u'embryo', u'legisl'] [u'pass', u'cannabi'] [u'warrior', u'thank', u'fan', u'free', u'ticket'] [u'water', u'restrict', u'reduc', u'daylesford'] [u'westpac', u'melbourn', u'staff'] [u'wide', u'record', u'high', u'youth', u'jobless', u'rate'] [u'wool', u'woe', u'affect', u'barcaldin'] [u'work', u'away', u'transport', u'corridor'] [u'wrong', u'weed', u'chemic', u'catch', u'council'] [u'yarram', u'get', u'buri', u'powerlin'] [u'yate', u'accept', u'garden', u'makeov', u'orica'] [u'wari', u'keep', u'market', u'quiet'] [u'york', u'park', u'kick', u'goal', u'economi'] [u'zimbabw', u'aim', u'match', u'champion', u'aussi'] [u'sheep', u'dead', u'export', u'ship', u'rspca'] [u'forest', u'start', u'work'] [u'ainsli', u'shin', u'briton', u'domin', u'world'] [u'forc', u'cadet', u'student'] [u'traffic', u'control', u'defend'] [u'alston', u'prais', u'chat', u'room', u'scrutini'] [u'antarct', u'health', u'hazard', u'space'] [u'armi', u'world', u'terrorist', u'standbi'] [u'aussi', u'team', u'name', u'triathlon', u'world'] [u'australia', u'back', u'swell', u'secur', u'council'] [u'bali', u'bomber', u'waiv', u'sentenc', u'appeal'] [u'bali', u'victim', u'afraid', u'attend', u'memori'] [u'battl', u'hot', u'lehmann'] [u'determin', u'bulli', u'iraq', u'report'] [u'beatti', u'await', u'tree', u'clear', u'deal', u'agreement'] [u'beatti', u'threaten', u'labor', u'confer', u'boycott'] [u'beazley', u'float', u'medicar', u'levi', u'rise'] [u'beij', u'set', u'alight', u'forc'] [u'billi', u'crystal', u'return', u'oscar', u'host'] [u'blanket', u'approach', u'take', u'firefight', u'safeti'] [u'blaze', u'close', u'princ', u'highway'] [u'boost', u'plan', u'rocki', u'longreach', u'servic'] [u'brack', u'beatti', u'odd', u'grand', u'final'] [u'brambl', u'announc', u'chief'] [u'brazil', u'approv'] [u'breaker', u'upbeat', u'grand', u'final', u'chanc'] [u'brisban', u'polic', u'investig', u'multipl', u'stab'] [u'break', u'hill', u'council', u'appoint', u'tourism', u'manag'] [u'bushfir', u'task', u'forc', u'wrap'] [u'bush', u'put', u'split', u'schroeder', u'past'] [u'bush', u'schroeder', u'hatchet', u'buri'] [u'cairn', u'busi', u'crime', u'bulletin'] [u'rethink', u'farmer', u'drive', u'licenc'] [u'canberra', u'arsonist', u'sentenc', u'year', u'jail'] [u'need', u'speed', u'limit', u'quick', u'research'] [u'carr', u'cut', u'tree', u'deal', u'european', u'investor'] [u'centrelink', u'southern', u'temporari', u'worker'] [u'chief', u'minist', u'prais', u'year', u'arson', u'sentenc'] [u'cole', u'myer', u'punish', u'rationalis', u'plan'] [u'collingwood', u'final', u'prepar', u'draw', u'crowd'] [u'coron', u'hand', u'find', u'jump', u'castl'] [u'council', u'confid', u'support', u'ethanol', u'plan'] [u'council', u'accept', u'riverland', u'seat', u'chang'] [u'council', u'address', u'traffic', u'snarl'] [u'council', u'welcom', u'wall', u'plan', u'crumbl'] [u'council', u'worker', u'stalem', u'continu', u'mackay'] [u'countri', u'teacher', u'wari', u'dept', u'restructur', u'plan'] [u'darwin', u'adelaid', u'rail', u'line', u'complet'] [u'defenc', u'forc', u'overse', u'world', u'secur'] [u'develop', u'buy', u'kingston', u'foreshor', u'land'] [u'doctor', u'group', u'oppos', u'relax', u'cannabi', u'law'] [u'downer', u'welcom', u'chang'] [u'drought', u'forc', u'cattl', u'sale', u'nsws'] [u'east', u'gippsland', u'burn', u'control'] [u'exmouth', u'hous', u'project', u'finish'] [u'charg', u'arsenal', u'unit', u'player'] [u'farmer', u'feder', u'urg', u'support', u'wool', u'produc'] [u'fatigu', u'caus', u'coal', u'ship', u'reef', u'crash'] [u'fear', u'educ', u'opposit', u'endang', u'teacher'] [u'fear', u'wors', u'water', u'shortag', u'loom'] [u'govt', u'ask', u'rethink', u'higher', u'educ', u'reform'] [u'govt', u'bungl', u'child', u'offend', u'extradit'] [u'govt', u'rethink', u'drought', u'applic'] [u'ferrero', u'edg', u'thailand'] [u'firefight', u'battl', u'blue', u'mountain', u'blaze'] [u'firefight', u'save', u'mount', u'burr', u'home'] [u'footi', u'fan', u'warn', u'grand', u'final', u'drink', u'drive'] [u'iraqi', u'minist', u'say', u'target', u'iraq'] [u'french', u'prop', u'marconnet', u'miss', u'fiji', u'open'] [u'fund', u'loss', u'cast', u'doubt', u'templ', u'futur'] [u'gale', u'forc', u'warn', u'wind', u'lash', u'tasmania'] [u'power', u'station', u'propon', u'plan', u'compo'] [u'geraldton', u'pair', u'run', u'busi', u'award'] [u'gold', u'coast', u'host', u'aust', u'korea', u'trade', u'talk'] [u'grass', u'name', u'like', u'surfac', u'davi', u'final'] [u'gregan', u'stay', u'brumbi'] [u'gregan', u'undecid', u'wallabi', u'futur'] [u'group', u'attack', u'oval', u'plan', u'fact'] [u'hama', u'spiritu', u'leader', u'rule', u'truce'] [u'hancock', u'heir', u'settl', u'fortun', u'disput'] [u'hantuchova', u'woe', u'continu', u'leipzig', u'defeat'] [u'hear', u'consid', u'local', u'govt', u'fund', u'formula'] [u'hillari', u'clinton', u'publish', u'seek', u'chines', u'recal'] [u'hill', u'prais', u'defenc', u'relationship', u'china'] [u'hopkin', u'get', u'hollywood', u'star'] [u'hotel', u'guard', u'kill', u'baghdad', u'bomb', u'blast'] [u'howard', u'slap', u'propos'] [u'howard', u'attend', u'bali', u'servic', u'despit', u'warn'] [u'hunter', u'household', u'ask', u'restrict', u'water'] [u'hussey', u'keen', u'stand', u'warrior'] [u'indigen', u'forum', u'consid', u'region', u'hous', u'woe'] [u'injuri', u'forc', u'villier', u'springbok', u'squad'] [u'intern', u'battl', u'threaten', u'nation'] [u'iraqi', u'politician', u'die', u'dead', u'baghdad', u'hotel'] [u'irrig', u'water', u'snowi', u'debt'] [u'israel', u'accus', u'breach', u'immun'] [u'isra', u'pilot', u'refus', u'attack', u'palestinian'] [u'italian', u'women', u'cast', u'doubt', u'latin', u'lover', u'myth'] [u'jackson', u'say', u'basketbal', u'offer', u'safe', u'grind'] [u'jaco', u'westhuyzen', u'replac', u'villier'] [u'fuel', u'shortag', u'caus', u'nation', u'flight', u'delay'] [u'kahn', u'retir', u'struggl'] [u'keeper', u'robinson', u'head', u'leed', u'salvat'] [u'kekovich', u'court', u'drink', u'drive', u'charg'] [u'kelli', u'lawyer', u'attack', u'abus', u'power'] [u'kidnap', u'tourist', u'leap', u'freedom', u'colombia'] [u'heartbeat', u'surgeri', u'recoveri', u'scheme'] [u'latif', u'quit', u'pakistan', u'cricket', u'captainci'] [u'littl', u'hope', u'beach', u'sperm', u'whale'] [u'littl', u'hope', u'remain', u'surviv', u'beach', u'whale'] [u'local', u'govt', u'degre', u'moot', u'overcom', u'staff', u'woe'] [u'magpi', u'dismiss', u'tarrant', u'injuri', u'concern'] [u'die', u'melbourn', u'stab'] [u'elud', u'polic', u'servic', u'station', u'heist'] [u'jail', u'indonesia', u'mcdonald', u'bomb'] [u'jail', u'shoot', u'girlfriend'] [u'maroochi', u'council', u'replac', u'tree'] [u'maryborough', u'face', u'water', u'ban'] [u'mayor', u'sow', u'seed', u'doubt', u'cloud', u'plan'] [u'mcgrath', u'clear', u'zimbabw', u'test', u'seri'] [u'medibank', u'privat', u'black'] [u'medibank', u'privat', u'market', u'minist'] [u'meet', u'discuss', u'tamborin', u'issu'] [u'millar', u'eas', u'memori', u'vuelta', u'protest'] [u'minist', u'reflect', u'region', u'health', u'servic'] [u'mix', u'reaction', u'educ', u'shake'] [u'mix', u'respons', u'educ', u'reform'] [u'mix', u'uefa', u'result', u'english', u'club'] [u'mobil', u'phone', u'get', u'troubl'] [u'fund', u'seek', u'save', u'indigen', u'dialect'] [u'telstra', u'worker', u'face', u'cut'] [u'mount', u'gambier', u'hospit', u'committe', u'delay'] [u'navratilova', u'surviv', u'match', u'point', u'leipzig', u'doubl'] [u'navratilova', u'target', u'olymp', u'swansong'] [u'nelson', u'dodg', u'student', u'protest'] [u'traffic', u'plan', u'danger', u'control'] [u'newcastl', u'defend', u'woodgat', u'undergo', u'hernia'] [u'dept', u'help', u'boost', u'protect', u'speci'] [u'program', u'student', u'busi', u'train'] [u'strategi', u'tackl', u'great', u'southern', u'crime'] [u'suburb', u'plan', u'sydney'] [u'nigerian', u'court', u'clear', u'woman', u'adulteri'] [u'evid', u'dope', u'cover', u'say', u'report'] [u'quick', u'high', u'youth', u'jobless', u'rate', u'abbott'] [u'word', u'closur', u'date', u'austoft', u'plant'] [u'farmer', u'plant', u'tree', u'fire', u'destroy'] [u'firefight', u'tame', u'central', u'coast', u'blaze'] [u'govt', u'accus', u'millennium', u'train', u'cover'] [u'govt', u'offer', u'lifelin', u'riverina', u'tafe'] [u'releas', u'kosciuszko', u'develop', u'plan'] [u'broadcast', u'annan', u'slur'] [u'offici', u'french', u'heatwav', u'toll', u'rais'] [u'opec', u'hit', u'share', u'market'] [u'owen', u'break', u'red', u'score', u'record'] [u'pacif', u'highway', u'reopen', u'accid'] [u'palestinian', u'milit', u'kill', u'isra', u'raid'] [u'stoush', u'head', u'court'] [u'worker', u'job', u'line'] [u'paper', u'late', u'emadvertiserem', u'plant'] [u'partnership', u'tackl', u'aborigin', u'children', u'health'] [u'perth', u'airport', u'evacu', u'rid', u'motorbik'] [u'petroleum', u'explor', u'spend', u'rise'] [u'plan', u'tafe', u'move', u'bring', u'littl', u'west', u'chang'] [u'back', u'live', u'sheep', u'export'] [u'wont', u'comment', u'weapon', u'specul'] [u'polic', u'appeal', u'melbourn', u'stab', u'wit'] [u'polic', u'clash', u'sheep', u'protest'] [u'polic', u'continu', u'investig', u'southbank', u'murder'] [u'polic', u'probe', u'hopeval', u'fatal', u'stab'] [u'polic', u'seek', u'help', u'control', u'drug', u'problem'] [u'polic', u'continu', u'attack', u'speedster'] [u'power', u'distributor', u'back', u'energi', u'effici', u'product'] [u'power', u'dump', u'veteran', u'paxman'] [u'prehistor', u'beaver', u'roam', u'wide'] [u'protest', u'live', u'sheep', u'export', u'continu'] [u'public', u'urg', u'minimis', u'grass', u'risk'] [u'tourism', u'target', u'interst', u'relat'] [u'quak', u'monitor', u'focus', u'central'] [u'real', u'skipper', u'raul', u'doubt', u'valencia', u'clash'] [u'region', u'airport', u'protest', u'traffic'] [u'report', u'highlight', u'tourism', u'growth'] [u'rest', u'garcia', u'readi', u'texa', u'open'] [u'rocca', u'grand', u'final'] [u'rock', u'collect', u'list', u'endang'] [u'rooki', u'walker', u'replac', u'rocca'] [u'rooster', u'relax', u'favourit'] [u'seek', u'support', u'veteran', u'carer'] [u'rumsfeld', u'ask', u'congress', u'iraq'] [u'russian', u'paper', u'play', u'card', u'game'] [u'schumach', u'go', u'record', u'sixth', u'crown'] [u'scientist', u'focus', u'fix', u'ballast', u'water', u'woe'] [u'scud', u'fire', u'china'] [u'search', u'fail', u'noosa', u'river', u'croc'] [u'secur', u'guard', u'attack', u'break', u'hill', u'abattoir'] [u'shop', u'hold', u'sale', u'closur'] [u'sheep', u'protest', u'move', u'portland', u'feedlot'] [u'sheep', u'ship', u'stand', u'continu', u'victoria'] [u'ship', u'sink', u'month', u'away'] [u'shire', u'chief', u'warn', u'risk', u'forest'] [u'spur', u'bounc', u'hoddl', u'sack'] [u'storm', u'caus', u'huge', u'blackout', u'tasmania'] [u'student', u'govt', u'mistak', u'labor'] [u'sydney', u'resid', u'face', u'fin', u'water', u'wast'] [u'taliban', u'leader', u'renew', u'jihad'] [u'tamworth', u'public', u'urg', u'sign', u'slim', u'dusti'] [u'traffic', u'control', u'criticis', u'control'] [u'priest', u'say', u'parliament', u'prayer', u'outdat'] [u'turn', u'public', u'carer', u'benefit', u'fight'] [u'plan', u'resurrect', u'news'] [u'tension', u'eas', u'alcohol', u'restrict'] [u'tourism', u'group', u'unhappi', u'committe', u'chang'] [u'kill', u'mosul', u'cinema', u'blast'] [u'uruguay', u'replac', u'injur', u'lock', u'olivera'] [u'control', u'join', u'disput', u'airspac'] [u'court', u'hang', u'anti', u'telemarket', u'list'] [u'detain', u'iraqi', u'journalist'] [u'exoner', u'soldier', u'shoot', u'iraqi'] [u'troop', u'kill', u'rebel', u'north', u'iraq'] [u'vanston', u'opposit', u'student'] [u'varieti', u'club', u'bash'] [u'mortgag', u'broker', u'jail', u'fraud'] [u'reservist', u'head', u'intern', u'train'] [u'watchdog', u'delay', u'commerci', u'radio', u'licenc'] [u'watchdog', u'delay', u'qanta', u'merger', u'decis'] [u'water', u'dri', u'north', u'coast'] [u'wine', u'crush', u'vintag', u'look', u'good'] [u'wilki', u'say', u'border', u'protect', u'ineffect'] [u'woman', u'face', u'attempt', u'murder', u'charg'] [u'million', u'year', u'fossil', u'western'] [u'govt', u'minist', u'fail', u'support', u'local', u'airlin'] [u'activist', u'stop', u'live', u'sheep', u'export'] [u'africa', u'anglican', u'council', u'elect', u'anti', u'head'] [u'airlin', u'fight', u'fuel', u'shortag'] [u'airlin', u'resolv', u'lack', u'emerg', u'pacif', u'runway'] [u'traffic', u'control', u'chang'] [u'black', u'rare', u'manag'] [u'armi', u'tackl', u'soldier', u'suicid'] [u'athen', u'shoot', u'rais', u'olymp', u'secur', u'fear'] [u'atsic', u'sport', u'award', u'seek', u'nomin'] [u'attack', u'shut', u'anti', u'spam', u'websit'] [u'audit', u'reveal', u'need', u'council', u'spend'] [u'australian', u'canadian', u'hold', u'question', u'aceh'] [u'australia', u'face', u'sweden', u'davi'] [u'australia', u'farewel', u'slim', u'dusti'] [u'australia', u'fund', u'disast', u'relief', u'pacif'] [u'babi', u'die', u'suspect', u'meningococc', u'diseas'] [u'bali', u'support', u'group', u'organis', u'say', u'anniversari'] [u'beatti', u'launch', u'domest', u'tourism', u'push'] [u'british', u'singer', u'robert', u'palmer', u'die'] [u'british', u'soldier', u'die', u'iraqi', u'firearm', u'incid'] [u'break', u'hill', u'council', u'demand', u'govt', u'return', u'fuel'] [u'break', u'hill', u'repres', u'nuclear', u'wast'] [u'bush', u'warn', u'iran', u'uranium'] [u'busi', u'welcom', u'park', u'boost'] [u'educ', u'symptom', u'stroke'] [u'canegrow', u'consid', u'help', u'mackay', u'sugar', u'refineri'] [u'canegrow', u'upbeat', u'incom', u'support', u'deal'] [u'carer', u'warn', u'loom', u'strike'] [u'carr', u'want', u'chang', u'travel'] [u'children', u'injur', u'roller', u'coaster', u'accid'] [u'chines', u'airlin', u'set', u'cours', u'melbourn'] [u'coron', u'set', u'date', u'leski', u'inquest'] [u'council', u'concern', u'pool', u'construct', u'cost'] [u'countri', u'music', u'legend', u'farewel'] [u'court', u'delay', u'move', u'deport', u'iranian'] [u'croc', u'attack', u'kakadu', u'tour', u'guid'] [u'crude', u'price', u'stay', u'high', u'opec'] [u'doubl', u'murder', u'sentenc', u'life', u'prison', u'term'] [u'downer', u'disappoint', u'iraq', u'pull'] [u'dunni', u'trot', u'outback'] [u'earthquak', u'japan'] [u'east', u'timor', u'indict', u'crime', u'human'] [u'economist', u'modigliani', u'dead'] [u'educ', u'dept', u'bathurst', u'job', u'safe'] [u'elect', u'surgeri', u'cut', u'wagga', u'push'] [u'english', u'premier', u'leagu', u'preview'] [u'essendon', u'bendigo', u'deal', u'continu'] [u'prodi', u'face', u'grill', u'eurostat', u'fraud'] [u'extrem', u'wind', u'alp', u'derail', u'chair', u'lift'] [u'fall', u'export', u'blame', u'support', u'iraq'] [u'fan', u'heaven', u'mildura', u'music', u'festiv'] [u'fan', u'forc', u'grand', u'final', u'parad'] [u'farmer', u'cast', u'doubt', u'plan', u'wind', u'farm', u'site'] [u'farmer', u'lay', u'poultri', u'regul', u'fear'] [u'farmer', u'urg', u'govt', u'land', u'offer'] [u'govt', u'reject', u'ballarat', u'jobless', u'rate', u'claim'] [u'govt', u'urg', u'boost', u'region', u'fund'] [u'feyenoord', u'hamburg', u'bordeaux', u'notch', u'uefa', u'win'] [u'field', u'highlight', u'sustain', u'farm'] [u'film', u'maker', u'focus', u'cowra', u'breakout', u'documentari'] [u'firefight', u'battl', u'gippsland', u'blaze'] [u'fire', u'close', u'main', u'highway', u'south', u'east'] [u'contest', u'katherin', u'elect'] [u'flight', u'delay', u'amid', u'fuel', u'shortag'] [u'fli', u'scot', u'stewart', u'honour'] [u'footi', u'fever', u'hit', u'remot'] [u'minist', u'claim', u'govt', u'polici', u'damag'] [u'fuel', u'shortag', u'bring', u'flight', u'delay'] [u'fund', u'boost', u'greener', u'fish', u'industri'] [u'german', u'polic', u'smash', u'onlin', u'child', u'porn', u'ring'] [u'ghan', u'steve', u'irwin', u'loco', u'bring', u'tourist'] [u'govt', u'defend', u'rule'] [u'govt', u'appeas', u'mudge', u'meatwork'] [u'hambali', u'brother', u'admit', u'involv', u'offici'] [u'henin', u'hardenn', u'clijster', u'germani'] [u'hill', u'happi', u'interim', u'murray'] [u'hope', u'tourist', u'drink', u'wine', u'tourism', u'push'] [u'stuff', u'yate', u'stay', u'cool', u'scotland'] [u'michael', u'schumach', u'titl'] [u'illeg', u'fire', u'earn', u'jail', u'fin'] [u'injur', u'anderson', u'miss', u'bangladesh', u'test'] [u'inter', u'wari', u'bogey', u'team'] [u'investig', u'probe', u'caus', u'south', u'coast', u'fire'] [u'investor', u'toast', u'lehmann', u'bid'] [u'inzamam', u'lead', u'pakistan'] [u'israel', u'renew', u'blockad', u'ahead', u'jewish', u'year'] [u'japan', u'clean', u'power', u'quak'] [u'fuel', u'shortag', u'problem'] [u'judg', u'renew', u'child', u'detaine', u'releas'] [u'kempsey', u'fan', u'tribut', u'slim', u'dusti'] [u'lappin', u'come', u'final', u'session'] [u'chanc', u'futur', u'darwin', u'harbour'] [u'trobe', u'fear', u'lose', u'student', u'place'] [u'legal', u'tactic', u'charg', u'sept'] [u'lion', u'fan', u'arriv', u'enemi', u'territori'] [u'lion', u'turn', u'spotlight', u'injur', u'lappin'] [u'lion', u'turn', u'spotlight', u'lappin'] [u'lismor', u'koala', u'plan', u'open', u'public'] [u'lobbi', u'group', u'consid', u'wivenho', u'plan'] [u'charg', u'perth', u'airport', u'bomb', u'scare'] [u'die', u'shop', u'stab'] [u'plead', u'guilti', u'credit', u'card', u'fraud'] [u'plead', u'guilti', u'year', u'crime'] [u'matilda', u'dream', u'aliv'] [u'mccartney', u'starr', u'come', u'harrison', u'film'] [u'montoya', u'say', u'titl', u'victori'] [u'age', u'care', u'fund', u'central'] [u'mortar', u'strike', u'kill', u'near', u'baghdad', u'report'] [u'gambier', u'businessman', u'firm', u'win', u'adelaid', u'darwin'] [u'bodi', u'replac', u'soccer', u'australia'] [u'collect', u'bargain', u'law', u'favour', u'govt', u'doctor'] [u'databas', u'help', u'cattl', u'gene', u'studi'] [u'law', u'cross', u'safer'] [u'strand', u'wheat', u'diseas'] [u'deal', u'load', u'sheep', u'govt'] [u'north', u'coast', u'resid', u'face', u'water'] [u'palestinian', u'advoc', u'edward', u'say', u'die'] [u'paradorn', u'bangkok'] [u'parti', u'play', u'latest', u'poll'] [u'perth', u'intern', u'cancel', u'open', u'postpon'] [u'plan', u'begin', u'avoid', u'basketbal', u'traffic', u'woe'] [u'polic', u'close', u'vandal'] [u'polic', u'probe', u'perth', u'airport', u'drama'] [u'poor', u'respons', u'telstra', u'sale', u'submiss'] [u'powel', u'plan', u'deadlin', u'iraqi', u'constitut'] [u'power', u'research', u'rock', u'innamincka'] [u'power', u'station', u'plan', u'boost', u'colli', u'job'] [u'princ', u'highway', u'remain', u'close', u'gippsland'] [u'public', u'feedback', u'seek', u'land', u'issu', u'plan'] [u'qanta', u'appeal', u'accc', u'decis'] [u'critic', u'ruddock', u'attack', u'court'] [u'govt', u'consid', u'leas', u'renew'] [u'pub', u'face', u'bing', u'drink', u'fin'] [u'quandamooka', u'welcom', u'bonner', u'elector'] [u'rain', u'help', u'south', u'west', u'dam', u'rise'] [u'rain', u'need', u'bumper', u'crop'] [u'record', u'septemb', u'loom', u'newcastl'] [u'reef', u'accid', u'blame', u'deregul'] [u'replenish', u'murray', u'river', u'report'] [u'republican', u'endors', u'arni', u'california'] [u'resid', u'metal', u'recycl', u'plan', u'fear'] [u'tip', u'unit', u'form', u'boy', u'setttl'] [u'road', u'closur', u'bring', u'emerg', u'servic', u'assur'] [u'roller', u'coaster', u'accid', u'land', u'children'] [u'rooster', u'bulldog', u'clash', u'sell'] [u'samoa', u'hooker', u'call', u'black', u'help', u'pacif'] [u'scud', u'arthur', u'draper', u'shanghai'] [u'sexual', u'assault', u'studi', u'centr', u'open', u'melbourn'] [u'shane', u'kelli', u'train', u'crash'] [u'share', u'market', u'retreat', u'stock', u'fall'] [u'judg', u'face', u'polit'] [u'sixer', u'finalis', u'rychart', u'deal'] [u'soccer', u'australia', u'wind'] [u'socceroo', u'moor', u'face', u'wait', u'ger', u'armband'] [u'solomon', u'econom', u'plan', u'criticis'] [u'south', u'burnett', u'hospit', u'turn', u'earli', u'profit'] [u'spanish', u'journeyman', u'celebr', u'career', u'best'] [u'sponsor', u'warn', u'england', u'tour', u'zimbabw'] [u'lanka', u'sign', u'darwin', u'cairn', u'test'] [u'state', u'forest', u'back', u'carbon', u'trade', u'scheme'] [u'strand', u'sheep', u'head', u'iraq'] [u'strand', u'sheep', u'buy'] [u'student', u'play', u'skate', u'park', u'plan'] [u'super', u'chicken', u'farm', u'propon', u'reject', u'claim'] [u'survey', u'target', u'beachgoer', u'view', u'artifici', u'reef'] [u'face', u'hous', u'arrest', u'hospit', u'discharg'] [u'talk', u'focus', u'futur', u'plan', u'health', u'centr'] [u'chees', u'giant', u'go'] [u'green', u'seek', u'remov', u'lord', u'prayer'] [u'tassi', u'motorist', u'stay', u'close', u'home'] [u'head', u'attack', u'educ', u'packag'] [u'temporari', u'drive', u'permit', u'possibl', u'struggl'] [u'thousand', u'converg', u'henti', u'field', u'day'] [u'total', u'ban', u'lift', u'north', u'coast'] [u'tway', u'slocum', u'share', u'texa', u'lead', u'baddeley'] [u'charg', u'tewantin', u'murder'] [u'pull', u'staff', u'iraq'] [u'energi', u'group', u'sell', u'australian', u'asset'] [u'soldier', u'kill', u'grenad', u'attack'] [u'sprinter', u'young', u'lose', u'sydney', u'gold'] [u'test', u'launch', u'unman', u'plan', u'south'] [u'valencia', u'real', u'madrid', u'titl', u'hop', u'risk'] [u'cyclist', u'wilson', u'suspend', u'test'] [u'virus', u'decim', u'tassi', u'icon', u'bedevil', u'scientist'] [u'cabinet', u'seek', u'region', u'develop', u'issu'] [u'govt', u'jarrah', u'industri'] [u'groceri', u'industri', u'join', u'nation', u'code', u'review'] [u'minist', u'criticis', u'govt', u'airport', u'secur'] [u'wastewat', u'help', u'save', u'cane', u'crop'] [u'wenger', u'sorri', u'media', u'blame'] [u'whale', u'carcass', u'chainsaw', u'beach'] [u'whale', u'die', u'beach'] [u'white', u'star', u'win', u'black', u'music', u'award'] [u'dog', u'man', u'best', u'friend'] [u'wildcat', u'grab', u'import', u'rawl'] [u'wineri', u'approv', u'kalgoorli', u'site'] [u'say', u'project', u'add', u'job'] [u'worker', u'safeti', u'reduc', u'roster', u'lyell'] [u'zimbabw', u'charg', u'unlicens', u'journalist'] [u'forc', u'home', u'owner', u'grant'] [u'centuri', u'tablet', u'lead', u'lose', u'archiv'] [u'peopl', u'evacu', u'indian', u'landslid'] [u'afghan', u'cuban', u'moroccan', u'russian', u'journalist'] [u'afghan', u'mosqu', u'southern', u'manhattan', u'world'] [u'aftershock', u'japanes', u'island'] [u'algerian', u'armi', u'kill', u'islam', u'rebel', u'report'] [u'qaeda', u'wipe', u'need', u'help', u'afghan'] [u'architect', u'engin', u'rais', u'concern', u'perth'] [u'assassin', u'iraqi', u'politician', u'buri', u'najaf'] [u'kill', u'ivori', u'coast', u'rebel', u'battl'] [u'australian', u'coupl', u'detain', u'aceh'] [u'ayatollah', u'khomeini', u'grandson', u'call'] [u'baddeley', u'slump', u'texa'] [u'baghdad', u'hotel', u'attack', u'fallujah', u'death'] [u'battl', u'gunner', u'beat', u'newcastl'] [u'beatti', u'defend', u'govt', u'final'] [u'best', u'dress', u'socialit', u'charg', u'shoplift'] [u'bewar', u'strength', u'england', u'forward'] [u'billycart', u'racer', u'gear', u'championship'] [u'brisban', u'share', u'grand', u'final', u'fever'] [u'brisban', u'step', u'bushfir', u'prevent', u'measur'] [u'bush', u'putin', u'talk', u'continu', u'camp', u'david'] [u'canada', u'plan', u'special', u'generic', u'drug', u'africa'] [u'clark', u'lead', u'singh'] [u'clijster', u'set', u'reveng', u'match', u'myskina'] [u'cordial', u'maker', u'take', u'legal', u'action', u'koola', u'flavour'] [u'crack', u'ground', u'qanta', u'jet'] [u'dead', u'clash', u'continu', u'iraq'] [u'dean', u'join', u'kerri', u'seek', u'rumsfeld', u'resign'] [u'dent', u'thailand', u'final'] [u'display', u'help', u'peopl', u'differenti', u'frog', u'toad'] [u'evid', u'help', u'polic', u'crimin'] [u'duke', u'energi', u'consid', u'option'] [u'dummi', u'bid', u'imposs', u'stamp', u'expert'] [u'england', u'pressur', u'zimbabw', u'tour'] [u'famili', u'rememb', u'victim', u'cliff', u'collaps'] [u'famili', u'heartbreak', u'matilda', u'garriock'] [u'fan', u'face', u'tough', u'choic', u'grand', u'final'] [u'fan', u'hail', u'grand', u'final', u'wild', u'weather', u'forecast'] [u'fan', u'roll', u'earli', u'grand', u'final'] [u'financi', u'control', u'win', u'qlds', u'businesswoman'] [u'crew', u'close', u'blue', u'mountain', u'blaze'] [u'situat', u'worsen', u'north', u'coast'] [u'fittler', u'play', u'grudg', u'hype'] [u'green', u'leader', u'cynic', u'wood', u'centr'] [u'franc', u'debat', u'euthanasia', u'quadripleg', u'die'] [u'french', u'centr', u'euthanasia', u'debat', u'die'] [u'frenchman', u'deal', u'mockeri', u'card', u'pack'] [u'futur', u'darwin', u'health', u'clinic', u'uncertain'] [u'gidley', u'kangaroo', u'squad'] [u'grand', u'final', u'boost', u'voss'] [u'grand', u'final', u'boost', u'voss'] [u'green', u'water', u'tank', u'guidelin', u'chang'] [u'gunman', u'kill', u'isra', u'jewish', u'year'] [u'helen', u'troy', u'film', u'halt', u'hurrican', u'marti'] [u'holiday', u'spot', u'mobil', u'breath', u'test'] [u'indonesian', u'offic', u'want', u'timor', u'murder'] [u'indonesia', u'releas', u'australian', u'coupl', u'aceh'] [u'iraqi', u'shiit', u'criticis', u'deadlin'] [u'iraq', u'coverag', u'come', u'scrutini', u'media'] [u'japan', u'pie', u'love', u'fan', u'high', u'price'] [u'crack', u'pose', u'threat', u'passeng', u'safeti'] [u'katherin', u'candid', u'outlin', u'platform'] [u'kyli', u'minogu', u'get', u'threaten', u'letter', u'report'] [u'lappin', u'line', u'lion'] [u'launch', u'nigeria', u'satellit', u'saturday'] [u'lifesav', u'championship', u'hold'] [u'lion', u'captur', u'premiership', u'trick'] [u'lion', u'fan', u'gather', u'cheer', u'team'] [u'lion', u'head', u'straight', u'flag'] [u'lion', u'lead', u'quarter', u'time'] [u'lion', u'track', u'trick'] [u'ljubic', u'end', u'paradorn', u'thai', u'dream'] [u'local', u'rugbi', u'leagu', u'player', u'fin', u'steal'] [u'lonhro', u'firm', u'plate', u'favourit'] [u'arrest', u'murder', u'swedish', u'foreign'] [u'charg', u'latham', u'robberi'] [u'die', u'servic', u'station', u'incid'] [u'hospitalis', u'crash'] [u'kill', u'brutal', u'stab', u'attack'] [u'medibank', u'hospit', u'contract', u'plan'] [u'milan', u'releas', u'brazil', u'world', u'winner', u'rivaldo'] [u'minist', u'concern', u'traffic', u'control'] [u'miss', u'woman', u'bushland'] [u'montoya', u'pile', u'pressur', u'schu', u'qualifi'] [u'american', u'drop', u'poverti', u'line'] [u'multicultur', u'group', u'unhappi', u'premier'] [u'mysteri', u'surround', u'grand', u'final', u'line'] [u'alert', u'warn', u'potenti', u'threat', u'ship'] [u'zealand', u'broadcast', u'pressur', u'resign'] [u'conspiraci', u'latif', u'resign', u'inzamam'] [u'cultur', u'gift', u'display', u'japan'] [u'nurs', u'home', u'kill', u'injur'] [u'ogradi', u'leav', u'credit', u'agricol', u'cofidi'] [u'distributor', u'promis', u'repeat', u'fuel'] [u'injur', u'miss', u'japan', u'quak'] [u'oversea', u'market', u'close', u'week', u'slight'] [u'pakistan', u'arrest', u'pair', u'hashish'] [u'panther', u'charg', u'club', u'million', u'game'] [u'panther', u'charg', u'club', u'million', u'game'] [u'panther', u'chief', u'defend', u'busi', u'deal'] [u'parliament', u'open', u'cambodia'] [u'partygo', u'seek', u'meningococc', u'diseas'] [u'pavarotti', u'cost', u'concert', u'cancel'] [u'pentagon', u'tap', u'soldier', u'iraq'] [u'philippoussi', u'arthur', u'fall', u'china'] [u'daughter', u'wed'] [u'polit', u'fear', u'threaten', u'cultur', u'toler'] [u'pope', u'readi', u'appoint', u'cardin'] [u'power', u'restor', u'custom'] [u'princ', u'highway', u'reopen'] [u'princ', u'highway', u'reopen', u'bushfir'] [u'putin', u'bush', u'begin', u'talk', u'camp', u'david'] [u'govt', u'support', u'rspca', u'effort'] [u'rain', u'disrupt', u'start', u'zealand', u'india', u'tour'] [u'roman', u'gladiatori', u'combat', u'site', u'unearth', u'spain'] [u'rooster', u'dog', u'reach', u'decid'] [u'rooster', u'dog', u'reach', u'grand', u'final'] [u'royal', u'palac', u'warn', u'stay', u'away', u'harri'] [u'safeti', u'inspector', u'order', u'closur', u'mous'] [u'schole', u'leicest', u'return'] [u'scud', u'arthur', u'shanghai', u'semi'] [u'second', u'teen', u'charg', u'internet', u'virus'] [u'sheep', u'crisi', u'damag', u'intern', u'reput'] [u'ride', u'take', u'apart', u'accid'] [u'simeoni', u'sprint', u'victori', u'spain'] [u'situat', u'iraq', u'improv', u'downer', u'say'] [u'citi', u'council', u'receiv', u'develop', u'grant'] [u'sponsor', u'slam', u'port', u'clear'] [u'lankan', u'leader', u'vow', u'reviv', u'peac', u'talk'] [u'sukarnoputri', u'meet', u'kadhafi', u'discuss'] [u'begin', u'hous', u'arrest', u'call', u'mount'] [u'teen', u'death', u'kimberley', u'link', u'petrol', u'sniff'] [u'game', u'stop', u'nation'] [u'face', u'drug', u'charg', u'gold', u'coast'] [u'iraqi', u'dead', u'gunfir', u'hospit'] [u'kill', u'injur', u'train', u'blast', u'ethiopia'] [u'unit', u'tabl', u'spirit'] [u'univers', u'close', u'smoker'] [u'kill', u'stamped', u'ivori', u'coast', u'rebel'] [u'ambassador', u'saudi', u'arabia', u'step'] [u'say', u'work', u'detail', u'north', u'korea', u'plan'] [u'sport', u'writer', u'georg', u'plimpton', u'die'] [u'venezuela', u'term', u'presidenti', u'vote'] [u'veteran', u'pakistani', u'opposit', u'leader', u'die', u'age'] [u'violenc', u'flare', u'ivori', u'coast'] [u'wallabi', u'darwin', u'test', u'injur', u'knee'] [u'warmer', u'weather', u'stir', u'snake', u'action'] [u'waugh', u'rafter', u'sign', u'webber', u'tassi', u'endur'] [u'woman', u'die', u'newcastl', u'collis'] [u'woman', u'remain', u'hospit', u'accid'] [u'africa', u'prioritis', u'fight', u'poverti'] [u'agassi', u'withdraw', u'european', u'event'] [u'agent', u'warn', u'auction', u'rental', u'properti'] [u'pollut', u'educ', u'program', u'scrap'] [u'algerian', u'armi', u'kill', u'islamist', u'search'] [u'brush', u'suggest', u'disun'] [u'presidenti', u'candid', u'present', u'case'] [u'angel', u'flight', u'reunit', u'young', u'girl', u'die'] [u'armour', u'track', u'texa', u'titl'] [u'bali', u'memori', u'unveil', u'sydney'] [u'barrichello', u'eye', u'trick'] [u'bomb', u'explod', u'pakistan'] [u'brazil', u'invest', u'cuban', u'tourism', u'industri'] [u'brazil', u'play', u'jamaica', u'england'] [u'britain', u'appoint', u'black', u'polic', u'chief'] [u'bush', u'say', u'world', u'safer', u'saddam'] [u'cancer', u'patient', u'win', u'case', u'insur', u'compani'] [u'chechen', u'condit', u'food'] [u'chines', u'fishermen', u'save', u'down', u'taiwan', u'fighter', u'pilot'] [u'chines', u'restaur', u'order', u'million', u'fire'] [u'collingwood', u'fan', u'stick', u'team'] [u'costello', u'expect', u'ongo', u'budget', u'commit', u'iraq'] [u'costello', u'releas', u'budget', u'result', u'week'] [u'counter', u'terror', u'forc', u'readi'] [u'crean', u'meet', u'indonesian', u'leader'] [u'cwealth', u'accus', u'bias', u'victoria'] [u'darwin', u'student', u'fine', u'tune', u'solar', u'race', u'entri'] [u'defenc', u'forc', u'stag', u'anti', u'terror', u'exercis'] [u'doctor', u'ralli', u'medic', u'insur', u'levi'] [u'drink', u'measur', u'german', u'beer', u'festiv'] [u'duntroon', u'hous', u'open', u'public'] [u'electr', u'fault', u'delay', u'qanta', u'flight'] [u'european', u'commiss', u'approv', u'plan', u'improv'] [u'europ', u'mission', u'moon'] [u'europ', u'moon', u'mission', u'begin'] [u'expert', u'say', u'plan', u'flaw'] [u'famili', u'escap', u'hous'] [u'ferrero', u'skip', u'australian', u'open'] [u'fierc', u'rival', u'draw', u'leed', u'leagu'] [u'fighter', u'crash', u'bahrain'] [u'refineri', u'quak', u'aftershock', u'japan'] [u'corner', u'founder', u'die'] [u'franc', u'blame', u'swiss', u'italian', u'powerlin', u'blackout'] [u'german', u'film', u'win', u'honour', u'spanish', u'festiv'] [u'germani', u'recov', u'ruben', u'paint'] [u'harri', u'break', u'beatti'] [u'greenpeac', u'wrangl', u'indian', u'port', u'block', u'entri'] [u'gregan', u'say', u'wallabi', u'readi', u'peak'] [u'hera', u'tour', u'spain', u'victori'] [u'high', u'court', u'justic', u'kirbi', u'win', u'human', u'right', u'award'] [u'hollywood', u'entertain', u'donald', u'oconnor', u'die'] [u'injuri', u'beat', u'clijster', u'germani'] [u'input', u'seek', u'subantarct', u'wilder', u'plan'] [u'iranian', u'kill', u'rare', u'crocodil', u'attack'] [u'iran', u'rule', u'compromis', u'uranium', u'enrich'] [u'italian', u'blackout', u'cut', u'short', u'rome', u'night', u'parti'] [u'jordan', u'arrest', u'islamist', u'fugit'] [u'lappin', u'hospit', u'punctur', u'lung'] [u'larg', u'cach', u'weapon', u'near', u'saddam', u'hometown'] [u'life', u'save', u'societi', u'forc', u'increas', u'class', u'fee'] [u'lion', u'continu', u'grand', u'final', u'celebr'] [u'lion', u'join', u'immort'] [u'lion', u'parti', u'melbourn', u'fan'] [u'malaysia', u'mahathir', u'retir', u'report'] [u'maloney', u'steer', u'marconi', u'victori'] [u'die', u'retir', u'villag'] [u'kill', u'domest', u'disput', u'polic'] [u'marconi', u'defeat', u'wollongong', u'striker', u'draw'] [u'maroon', u'australian', u'sailor', u'escort', u'aceh'] [u'meteor', u'caus', u'panic', u'east', u'india'] [u'meteorit', u'probabl', u'space', u'junk', u'astronom'] [u'moder', u'quak', u'hit', u'china', u'eastern', u'damag'] [u'nepal', u'maoist', u'insurg', u'despit', u'truce'] [u'nation', u'park', u'reopen', u'januari', u'bushfir'] [u'natur', u'project', u'caus', u'polit', u'rift'] [u'negoti', u'continu', u'sheep', u'shipment'] [u'reconcili', u'communiti', u'group', u'form'] [u'injur', u'accid'] [u'snail', u'pace', u'britain', u'eurostar', u'train'] [u'regret', u'iraq', u'blair', u'insist'] [u'worri', u'montoya', u'final', u'loom'] [u'servic', u'prepar', u'worsen', u'condit'] [u'nurs', u'shortag', u'forc', u'medic', u'centr', u'cancel'] [u'obasanjo', u'say', u'exil', u'liberian', u'leader', u'face', u'trial'] [u'palac', u'confirm', u'princ', u'harri', u'outback'] [u'panther', u'warrior', u'date', u'rooster'] [u'pell', u'cardin'] [u'perth', u'showcas', u'lesbian', u'cultur'] [u'philippoussi', u'beat', u'novak', u'shanghai'] [u'plan', u'macquari', u'open', u'public', u'comment'] [u'court', u'investig', u'elect'] [u'policeman', u'bite', u'arrest'] [u'polic', u'question', u'teen', u'kempsey', u'bushfir'] [u'polic', u'unhappi', u'number', u'drink', u'driver'] [u'power', u'return', u'itali'] [u'public', u'health', u'confer', u'focus', u'prevent'] [u'putin', u'bush', u'warn', u'north', u'korea', u'iran', u'nuclear', u'program'] [u'raikkonen', u'pole', u'put', u'heat', u'titl', u'rival'] [u'roman', u'cultur', u'marathon', u'play', u'million'] [u'rooster', u'answer', u'critic', u'stuart'] [u'russian', u'peacekeep', u'kidnap', u'georgia', u'offici'] [u'russia', u'ask', u'fight', u'forc', u'afghanistan'] [u'ruud', u'claim', u'trick', u'demolish', u'leicest'] [u'councillor', u'want', u'legal', u'drive', u'lift'] [u'scud', u'crush', u'novak', u'collect', u'shanghai', u'crown'] [u'secur', u'exercis', u'kick', u'brisban'] [u'fighter', u'tackl', u'blaze'] [u'steal', u'burn', u'buffalo', u'creek'] [u'sudan', u'say', u'kenya', u'talk', u'basi', u'last', u'peac'] [u'team', u'begin', u'work', u'olymp', u'truce'] [u'thousand', u'demonstr', u'switzerland'] [u'thousand', u'expect', u'welcom', u'home', u'triumphant', u'lion'] [u'thousand', u'march', u'iraq', u'occup'] [u'thousand', u'welcom', u'lion', u'gabba'] [u'truck', u'lose', u'load', u'north', u'adelaid'] [u'counti', u'fair', u'add', u'spice', u'road', u'kill', u'cook'] [u'probe', u'fallujah', u'shoot', u'missil'] [u'valencia', u'beat', u'real', u'spain'] [u'virgin', u'blue', u'tran', u'tasman', u'sevic'] [u'virgin', u'talli', u'cost', u'fuel', u'shortag'] [u'volunt', u'join', u'search', u'miss', u'spear', u'fisherman'] [u'westwood', u'take', u'flight', u'albatross'] [u'wind', u'eas', u'fighter', u'continu', u'battl'] [u'win', u'beatti', u'put', u'lion', u'brack', u'face'] [u'send', u'understrength', u'juve', u'seri', u'summit'] [u'woman', u'injur', u'smash', u'tree'] [u'women', u'world', u'quarter', u'clearer'] [u'worksaf', u'employ', u'staff', u'member'] [u'cannabi', u'thief', u'convict', u'assault'] [u'hop', u'complet', u'burn'] [u'actu', u'prais', u'decis', u'replac', u'abbott'] [u'stag', u'train', u'exercis', u'sydney'] [u'traffic', u'control', u'condemn', u'flight', u'rule'] [u'qaeda', u'tape', u'urg', u'musharraf', u'remov'] [u'armour', u'take', u'texa', u'titl', u'baddeley', u'fifth'] [u'dead', u'iran', u'coach', u'crash'] [u'atsic', u'welcom', u'indigen', u'minist'] [u'attempt', u'child', u'abduct', u'spark', u'polic', u'warn'] [u'author', u'meningococc', u'outbreak'] [u'babi', u'surviv', u'firebomb', u'attack'] [u'bali', u'bomb', u'accomplic', u'lengthi', u'jail', u'sentenc'] [u'ballarat', u'council', u'give', u'reason', u'mall'] [u'basslink', u'group', u'question', u'rise', u'cost'] [u'beatti', u'urg', u'media', u'princ', u'harri', u'breath'] [u'crowd', u'flock', u'countri', u'music', u'gather'] [u'blaze', u'spark', u'nation', u'park', u'closur'] [u'brit', u'die', u'visit', u'great', u'barrier', u'reef'] [u'break', u'hill', u'aliv', u'festiv', u'end', u'high', u'note'] [u'brown', u'quit', u'bulldog'] [u'chang', u'liquor', u'regul'] [u'china', u'probe', u'japanes', u'mass', u'orgi'] [u'chopra', u'hit', u'centuri', u'draw', u'tour', u'game'] [u'accus', u'outdat', u'iraq', u'intellig'] [u'club', u'offer', u'right', u'ingredi', u'learn'] [u'coff', u'harbour', u'doctor', u'anti', u'levi', u'push'] [u'colombian', u'bomb', u'blast', u'kill'] [u'colt', u'outlast', u'valley', u'score', u'grand', u'final'] [u'council', u'hear', u'detail', u'cheaper', u'pool'] [u'defenc', u'expert', u'predict', u'darwin', u'armi', u'cutback'] [u'deficit', u'result', u'hint', u'export', u'recoveri'] [u'dent', u'shock', u'ferrerro', u'thailand', u'final'] [u'dinosaur', u'claw', u'unearth'] [u'director', u'elia', u'kazan', u'die'] [u'doubt', u'cast', u'woodchip', u'futur'] [u'driver', u'warn', u'care', u'road', u'toll', u'rise'] [u'back', u'plan', u'veget', u'regul'] [u'dutch', u'mount', u'rescu', u'oper', u'trap', u'worker'] [u'econom', u'stabil', u'civil', u'secur', u'expert'] [u'egyptian', u'presid', u'urg', u'greater', u'polit', u'freedom'] [u'sweeten', u'surpris', u'canegrow'] [u'endur', u'athlet', u'jail', u'month', u'stalk'] [u'say', u'mussel', u'outbreak'] [u'etsa', u'probe', u'south', u'eastern', u'blackout'] [u'fairfax', u'bid', u'text', u'media'] [u'famili', u'chase', u'victim', u'call', u'inquiri'] [u'farmer', u'group', u'reject', u'call', u'live', u'anim', u'trade'] [u'farmer', u'consult', u'rural', u'crime', u'crackdown'] [u'fear', u'air', u'ental', u'hous', u'delay'] [u'fiji', u'coup', u'leader', u'call', u'return', u'indian'] [u'firefight', u'investig', u'possibl', u'arson', u'near'] [u'fire', u'blaze', u'coast'] [u'warn', u'continu'] [u'flag', u'lower', u'rememb', u'fall', u'polic'] [u'forecast', u'rain', u'prompt', u'warn', u'grape', u'grower'] [u'french', u'face', u'corrupt', u'trial'] [u'bottl', u'blast', u'wake', u'resid'] [u'girdler', u'surpris', u'panther', u'progress'] [u'glori', u'snatch', u'late', u'victori'] [u'gold', u'coast', u'long', u'time', u'short', u'film'] [u'govt', u'eye', u'chang', u'anim', u'export', u'trade'] [u'govt', u'speed', u'harbour', u'dredg', u'studi'] [u'govt', u'urg', u'reject', u'jervi', u'potenti'] [u'green', u'condemn', u'hunter', u'valley', u'power', u'station'] [u'guid', u'map', u'wagga', u'tourism', u'spot'] [u'guinea', u'bissau', u'swear', u'interim', u'leader', u'coup'] [u'harrigan', u'award', u'decid'] [u'health', u'author', u'unhappi', u'draft', u'budget'] [u'hera', u'triumph', u'tour', u'spain'] [u'lift', u'build', u'insur'] [u'honour', u'south', u'east', u'film', u'maker'] [u'hospit', u'reach', u'fundrais', u'target'] [u'hospit', u'revamp', u'delay', u'boost', u'cost'] [u'howard', u'credibl', u'iraq', u'look', u'threadbar'] [u'icac', u'recommend', u'charg', u'integr'] [u'enter', u'discount', u'fuel', u'busi'] [u'india', u'claim', u'milit', u'kill', u'kashmir', u'border'] [u'indigen', u'centr', u'confid', u'land', u'hand'] [u'indigen', u'women', u'protest', u'nuclear', u'dump', u'plan'] [u'industri', u'unrest', u'loom', u'west', u'wimmera', u'health'] [u'investor', u'ask', u'consid', u'salmon', u'float'] [u'iran', u'stick', u'nuclear', u'program'] [u'iran', u'suspend', u'lead', u'reformist', u'daili'] [u'iraqi', u'offici', u'escap', u'assassin', u'attempt'] [u'boat', u'smash', u'wave', u'sydney', u'harbour'] [u'kangaroo', u'selector', u'snub', u'anasta'] [u'kelli', u'make', u'histori', u'nation'] [u'kempsey', u'meet', u'discuss', u'crescent', u'head', u'plan'] [u'kemp', u'review', u'reef', u'zone', u'plan'] [u'lang', u'park', u'world', u'oneil'] [u'lappin', u'join', u'lion', u'ticker', u'tape', u'parad'] [u'levi', u'plan', u'push', u'doctor', u'say'] [u'lion', u'coach', u'expect', u'player', u'exodus'] [u'lion', u'enjoy', u'earn', u'rest'] [u'lisbi', u'trick', u'stun', u'liverpool'] [u'bad', u'burn', u'caravan', u'blaze'] [u'hospit', u'melbourn', u'stab'] [u'hospit', u'sydney', u'stab'] [u'face', u'charg', u'station', u'theft'] [u'court', u'fatal', u'crash'] [u'march', u'honour', u'fall', u'polic'] [u'matilda', u'confid', u'ahead', u'ghana', u'clash'] [u'matilda', u'crash', u'world'] [u'megawati', u'cancel', u'crean'] [u'melbourn', u'charg', u'doubl', u'murder'] [u'melbourn', u'prepar', u'intern', u'race'] [u'melbourn', u'wrap'] [u'mine', u'end', u'cumnock', u'coal'] [u'rain', u'need', u'lift', u'restrict'] [u'ask', u'apologis', u'farm', u'claim'] [u'mudge', u'mayor', u'stand', u'amidst', u'meatwork', u'woe'] [u'myskina', u'upset', u'henin', u'hardenn', u'leipzig', u'final'] [u'cardin', u'glanc'] [u'darwin', u'polic', u'station', u'terrorist', u'target'] [u'decis', u'pan', u'product', u'licenc'] [u'shire', u'go', u'nut', u'safeti', u'net'] [u'hold', u'terrorist', u'detent', u'meet'] [u'maintain', u'credit', u'rat'] [u'push', u'club', u'law'] [u'diabet', u'studi', u'nation', u'standard'] [u'govt', u'screen', u'tender', u'public', u'hous'] [u'worksaf', u'employ', u'staff', u'member'] [u'dead', u'wound', u'train', u'crash', u'germani'] [u'kill', u'injur', u'south', u'shoot'] [u'opera', u'hous', u'anti', u'protest', u'court'] [u'pakistan', u'zimbabw', u'commonwealth', u'group'] [u'palestinian', u'group', u'mark', u'intifada', u'anniversari'] [u'panther', u'play'] [u'paper', u'consid', u'basin', u'resourc', u'manag'] [u'pell', u'elev', u'cardin', u'get', u'mix', u'reaction'] [u'platypi', u'swim', u'grand', u'final'] [u'forese', u'pacif', u'intervent'] [u'unveil', u'widerang', u'ministeri', u'reshuffl'] [u'polic', u'probe', u'paraburdoo', u'death'] [u'polic', u'drink', u'drive', u'messag', u'get'] [u'port', u'piri', u'child', u'lead', u'level', u'high'] [u'poll', u'card', u'access'] [u'probe', u'begin', u'fatal', u'chopper', u'crash'] [u'probe', u'launch', u'sawmil', u'blaze'] [u'puma', u'arriv', u'australia'] [u'push', u'save', u'uni', u'enrol', u'place'] [u'qanta', u'appeal', u'deal'] [u'qanta', u'flight', u'abort', u'adelaid'] [u'qanta', u'patrick', u'ansett', u'asset'] [u'appeal', u'travel', u'insur', u'rule'] [u'polic', u'seiz', u'illeg', u'tobacco'] [u'queensland', u'licenc', u'digit'] [u'reconcili', u'group', u'call', u'indigen', u'studi'] [u'report', u'say', u'poor', u'crush', u'high', u'rent'] [u'reshuffl', u'wont', u'chang', u'elect', u'posit'] [u'residenti', u'develop', u'get', u'green', u'light'] [u'rio', u'arrest', u'clash', u'polic'] [u'rooster', u'rest', u'decid'] [u'rspca', u'happi', u'progress', u'palm', u'hors'] [u'russia', u'undecid', u'kyoto', u'treati'] [u'indigen', u'forum', u'discuss', u'nuclear', u'dump'] [u'schumach', u'win', u'grand', u'prix'] [u'scientist', u'urg', u'aust', u'sign', u'climat', u'chang'] [u'search', u'find', u'bodi', u'miss', u'snorkler'] [u'secur', u'drill', u'continu', u'sydney'] [u'servic', u'hold', u'mark', u'polic', u'remembr'] [u'scheme', u'prompt', u'region', u'teacher', u'fear'] [u'share', u'fall', u'market', u'retreat'] [u'sheep', u'remain', u'strand', u'persian', u'gulf'] [u'shop', u'worker', u'stab', u'hold'] [u'singleton', u'run', u'adelaid', u'radio', u'licenc'] [u'struggl', u'farmer', u'seek', u'chariti'] [u'sorenstam', u'claim', u'fifth', u'season'] [u'southbank', u'safe', u'despit', u'stab', u'polic'] [u'sponsor', u'pull', u'plug', u'tvnz', u'racist', u'remark'] [u'starter', u'fire', u'game', u'newcastl'] [u'stronger', u'hast', u'water', u'restrict', u'come'] [u'sunscreen', u'wont', u'guard', u'fulli', u'melanoma', u'studi'] [u'sunshin', u'coast', u'gear', u'welcom', u'home', u'world', u'champ'] [u'surf', u'lifesav', u'secur', u'insur', u'cover'] [u'sydney', u'airport', u'fuel', u'suppli', u'remain', u'tight'] [u'tableland', u'fire', u'claim', u'home'] [u'taiwanes', u'presid', u'push', u'constitut'] [u'tamworth', u'rememb', u'fall', u'polic'] [u'tenni', u'great', u'gibson', u'die', u'age'] [u'tergat', u'set', u'marathon', u'mark'] [u'rock', u'north', u'american', u'offic'] [u'tourism', u'boost', u'tweed'] [u'press', u'say', u'princ', u'harri', u'aussi', u'media'] [u'offici', u'educ', u'inquiri'] [u'union', u'upbeat', u'teacher', u'disput', u'resolut'] [u'soldier', u'kill', u'iraq', u'militari'] [u'soldier', u'wound', u'fallujah', u'attack', u'militari'] [u'send', u'fresh', u'troop', u'iraq', u'bomb', u'wind'] [u'tri', u'media', u'exposur', u'sell', u'iraq', u'fund'] [u'villasanti', u'join', u'kangaroo', u'squad'] [u'warrior', u'langer', u'drop'] [u'water', u'restrict', u'loom', u'wilcannia'] [u'welfar', u'group', u'say', u'rent', u'squeez'] [u'westwood', u'edg', u'link', u'victori'] [u'worker', u'intervent', u'corpor', u'sale'] [u'world', u'oldest', u'die'] [u'youth', u'club', u'plan', u'begin'] [u'academ', u'highlight', u'reef', u'zone', u'benefit'] [u'account', u'turn', u'spotlight', u'club'] [u'franc', u'form', u'europ', u'biggest', u'airlin'] [u'franc', u'launch', u'takeov'] [u'alston', u'tightlip', u'futur'] [u'altern', u'freight', u'road', u'serv', u'dual', u'purpos'] [u'arab', u'countri', u'iraqi', u'independ'] [u'armi', u'clear', u'soldier', u'east', u'timor', u'crime'] [u'australia', u'japan', u'strengthen', u'defenc', u'tie'] [u'australia', u'move', u'right', u'direct', u'sledg'] [u'beachley', u'target', u'surf', u'titl', u'lead'] [u'belgium', u'polic', u'free', u'supermarket', u'hostag'] [u'bemax', u'post', u'bigger', u'year', u'loss'] [u'crowd', u'expect', u'elmor', u'field', u'day'] [u'blair', u'escap', u'iraq', u'vote'] [u'bodi', u'minefield', u'greec', u'turkey', u'border'] [u'brack', u'shrug', u'impact', u'compani', u'legal', u'claim'] [u'brisban', u'honour', u'lion', u'tripl', u'treat'] [u'brisban', u'brown', u'cop', u'grand', u'final', u'charg'] [u'british', u'explor', u'conquer', u'south', u'pole'] [u'briton', u'break', u'atlant', u'balloon', u'record'] [u'bush', u'miss', u'burgeon', u'health', u'sector'] [u'polic', u'sydney', u'rout'] [u'campaign', u'aim', u'reduc', u'petrol', u'sniff', u'woe'] [u'canadian', u'compani', u'abandon', u'methanol', u'plant'] [u'cane', u'toad', u'reach', u'darwin', u'outskirt'] [u'child', u'detent', u'appeal', u'reach', u'high', u'court'] [u'china', u'prepar', u'astronaut', u'man', u'launch'] [u'cobar', u'council', u'oppos', u'prime', u'plan'] [u'colombian', u'rebel', u'claim', u'tourist', u'kidnap'] [u'communiti', u'ralli', u'school', u'open'] [u'conneri', u'leav', u'mark', u'london', u'premier'] [u'council', u'confirm', u'threat', u'mall', u'fund'] [u'council', u'lobbi', u'road', u'transport', u'boost'] [u'council', u'reject', u'develop', u'plan'] [u'council', u'set', u'sail', u'town', u'squar', u'plan'] [u'council', u'talk', u'mall', u'futur'] [u'council', u'wont', u'specul', u'nois', u'affect', u'home'] [u'court', u'approv', u'stanbrok', u'sale'] [u'crean', u'extend', u'indonesia', u'visit', u'meet', u'presid'] [u'crikey', u'croc', u'hunter', u'consid', u'move', u'brisban'] [u'crock', u'beck', u'real', u'squad'] [u'darwin', u'barrist', u'head', u'council'] [u'darwin', u'confer', u'focus', u'northern', u'secur'] [u'democrat', u'phase', u'livestock', u'export'] [u'dino', u'discoveri', u'promis', u'thing'] [u'drug', u'council', u'reject', u'needl', u'exchang', u'claim'] [u'econom', u'recoveri', u'forecast', u'south', u'pacif'] [u'england', u'paceman', u'johnson'] [u'english', u'premiership', u'star', u'gang', u'rape', u'probe'] [u'esso', u'blast', u'compo'] [u'extra', u'bledislo', u'test', u'rat', u'oneil'] [u'fals', u'paper', u'clear', u'detent', u'centr'] [u'famili', u'farm', u'forum', u'prove', u'popular'] [u'ferrari', u'fear', u'schu', u'titl'] [u'firefight', u'save', u'home', u'blaze'] [u'fire', u'burn', u'northern', u'tableland'] [u'fish', u'club', u'upset', u'rise'] [u'florida', u'citi', u'tri', u'block', u'concert', u'suicid', u'plan'] [u'french', u'corrupt', u'trial'] [u'highway', u'crash'] [u'frost', u'toll', u'hunter', u'vineyard'] [u'frost', u'take', u'toll', u'riverland', u'grape'] [u'fund', u'doubt', u'gladston', u'child', u'support', u'servic'] [u'furyk', u'lead', u'latest', u'matchplay', u'withdraw'] [u'german', u'doctor', u'investig', u'earli', u'death'] [u'glitter', u'spectacl', u'promis', u'open'] [u'good', u'rain', u'give', u'perth', u'dam'] [u'govt', u'agenc', u'promis', u'scheme', u'fight', u'petrol'] [u'govt', u'reveal', u'larger', u'expect', u'surplus'] [u'govt', u'bank', u'offer', u'abattoir', u'fund'] [u'govt', u'boost', u'polic', u'protect', u'lawsuit'] [u'govt', u'urg', u'probe', u'fals', u'passport', u'claim'] [u'greater', u'push', u'boost', u'geraldton', u'mine'] [u'green', u'industri', u'committe', u'fear'] [u'group', u'claim', u'intimid', u'fight', u'stop'] [u'group', u'lament', u'loss', u'indigen', u'youth', u'scheme'] [u'group', u'loggerhead', u'forest', u'map'] [u'grudg', u'saracen', u'free', u'fijian', u'lock', u'duti'] [u'hegarti', u'fitzgibbon', u'rooster', u'train'] [u'hera', u'drop', u'rank', u'despit', u'vuelta'] [u'high', u'water', u'requir', u'fourth'] [u'highway', u'smash', u'toll', u'revis'] [u'hondo', u'doubt', u'test', u'report'] [u'hostag', u'hold', u'belgian', u'supermarket'] [u'indigen', u'highlight', u'smoke', u'threat'] [u'indonesian', u'peopl', u'smuggl', u'continu', u'wilki'] [u'rate', u'hike', u'predict'] [u'investig', u'inspect', u'fatal', u'chopper', u'crash', u'site'] [u'iraqi', u'offici', u'escap', u'possibl', u'assassin'] [u'rais', u'year', u'australia', u'terror', u'expert'] [u'kangaroo', u'captain', u'steven', u'carey', u'talk'] [u'labor', u'call', u'minist', u'scalp', u'sheep', u'ship'] [u'lake', u'boga', u'inflow', u'complet'] [u'lappin', u'join', u'lion', u'ticker', u'tape', u'parad'] [u'launceston', u'council', u'question', u'commerci', u'rat'] [u'leagu', u'grand', u'final', u'erupt', u'violenc'] [u'legless', u'rivaldo', u'wont', u'home', u'newcastl'] [u'life', u'save', u'group', u'need', u'insur', u'lifelin'] [u'liquid', u'appoint', u'cootamundra', u'insur', u'firm'] [u'lose', u'mountain', u'save', u'flash', u'rescuer'] [u'compani', u'say', u'ruin', u'excis'] [u'maher', u'confirm', u'open'] [u'charg', u'year', u'murder'] [u'charg', u'tourist', u'rape', u'face', u'committ'] [u'wound', u'melbourn', u'shoot'] [u'mayor', u'call', u'lethal', u'inject', u'drug', u'user'] [u'meet', u'aim', u'resolv', u'endeavour', u'disput'] [u'melbourn', u'shoot', u'victim', u'lucki', u'surviv'] [u'melbourn', u'stab', u'rais', u'safeti', u'concern'] [u'jail', u'qaeda', u'anti', u'nato', u'plot'] [u'minist', u'upbeat', u'jail', u'rehab', u'centr', u'benefit'] [u'miss', u'safe', u'port', u'stephen', u'search'] [u'mobil', u'recept', u'improv', u'snowi'] [u'mock', u'plane', u'crash', u'readi', u'rescu', u'crew'] [u'world', u'ticket', u'releas', u'australian', u'fan'] [u'mountain', u'hera', u'best'] [u'content', u'forgo', u'promot'] [u'welcom', u'gear', u'fight', u'terror'] [u'musicmatch', u'wad', u'onlin', u'music', u'market'] [u'nat', u'policeman', u'contest', u'seat'] [u'navi', u'captur', u'indonesian', u'fish', u'boat'] [u'niger', u'suspend', u'radio', u'station', u'regul'] [u'nomin', u'close', u'panther', u'advisori', u'board'] [u'north', u'delight', u'promot'] [u'north', u'west', u'motocross', u'rider', u'qualifi', u'nation'] [u'hop', u'minist', u'tractabl', u'jail', u'jam'] [u'tuckshop', u'face', u'high', u'sugar'] [u'doctor', u'welcom', u'abbott', u'appoint'] [u'korea', u'cast', u'doubt', u'fresh', u'talk'] [u'object', u'rais', u'coal', u'hous'] [u'dead', u'injur', u'kashmir'] [u'soldier', u'kill', u'miss', u'iraq'] [u'parent', u'warn', u'terrain', u'bike', u'danger'] [u'buy', u'burswood', u'casino', u'stake'] [u'petit', u'call', u'commerci', u'station'] [u'tip', u'hard', u'fight', u'poll'] [u'polic', u'drug', u'charg', u'raid'] [u'polic', u'festiv', u'weekend', u'arrest'] [u'polic', u'paus', u'rememb', u'fall', u'colleagu'] [u'polic', u'respect', u'fall', u'colleagu'] [u'polic', u'probe', u'solar', u'panel', u'theft'] [u'polic', u'uncov', u'record', u'ecstasi', u'haul'] [u'port', u'back', u'embattl', u'william'] [u'probe', u'launch', u'leak'] [u'problem', u'devonport', u'countri', u'music', u'festiv'] [u'project', u'town', u'centr', u'brand'] [u'promin', u'muslim', u'charg', u'libya', u'link'] [u'puma', u'talk', u'australia', u'upset', u'chanc'] [u'putin', u'indecis', u'threaten', u'kyoto', u'treati'] [u'putin', u'kyoto', u'pressur', u'compani'] [u'govt', u'reject', u'indigen', u'steal', u'wag', u'claim'] [u'govt', u'urg', u'boost', u'reef', u'pest', u'fund'] [u'rain', u'damag', u'crop', u'western'] [u'rare', u'hop', u'mous', u'discov'] [u'resourc', u'media', u'stock', u'nudg', u'market', u'higher'] [u'resurg', u'westwood', u'jump', u'place', u'world'] [u'retail', u'turnov', u'continu', u'rise'] [u'riverina', u'chariti', u'ride', u'near'] [u'roger', u'guess', u'game', u'continu'] [u'rooster', u'panther', u'unchang', u'team'] [u'rooster', u'play', u'best', u'gower'] [u'rural', u'doctor', u'abbott', u'despit', u'nurs', u'comment'] [u'govt', u'get', u'grant', u'region'] [u'mayor', u'condemn', u'drug', u'addict', u'death'] [u'school', u'canteen', u'put', u'hospit'] [u'schumach', u'threshold', u'great'] [u'schwarzenegg', u'popular', u'soar', u'ballot', u'near'] [u'scientist', u'hand', u'foot', u'mouth'] [u'scotland', u'readi', u'feel', u'heat', u'queensland'] [u'scud', u'continu', u'streak', u'tokyo'] [u'search', u'continu', u'miss', u'rock', u'climber'] [u'search', u'wine', u'chief'] [u'self', u'proclaim', u'princ', u'face', u'fraud', u'trial'] [u'servic', u'honour', u'fall', u'polic'] [u'seven', u'year', u'jail', u'stab', u'death'] [u'indian', u'separatist', u'violenc'] [u'snorkel', u'death', u'sadden', u'ambul', u'servic'] [u'solomon', u'militari', u'mission', u'costello'] [u'space', u'stay', u'show', u'mar'] [u'spaniard', u'face', u'grass', u'court', u'ordeal', u'melbourn'] [u'strand', u'sheep', u'come', u'home'] [u'strike', u'disrupt', u'caledoni', u'flight'] [u'suspend', u'sentenc', u'theft', u'assault', u'charg'] [u'sydney', u'airport', u'fuel', u'shortag', u'investig'] [u'sydney', u'plead', u'guilti', u'lane', u'cover', u'murder'] [u'talli', u'quit', u'footbal'] [u'tanzania', u'crash', u'kill', u'polic'] [u'govt', u'urg', u'improv', u'crisi', u'accommod'] [u'tassi', u'gold', u'town', u'celebr', u'fluorid'] [u'thousand', u'turn', u'lion', u'homecom', u'parad'] [u'thredbo', u'disast', u'prompt', u'tighter', u'develop', u'polici'] [u'tighter', u'water', u'restrict', u'possibl', u'river'] [u'time', u'run', u'rate', u'instal'] [u'seed', u'schalken', u'crash', u'kremlin'] [u'tougher', u'water', u'restrict', u'boonah', u'shire'] [u'tourist', u'kill', u'minibus', u'crash'] [u'town', u'score', u'premiership', u'trick'] [u'transport', u'worker', u'threaten', u'action', u'safeti'] [u'tuross', u'head', u'surfer', u'win', u'section'] [u'climber', u'miss'] [u'muslim', u'jail', u'honour', u'kill', u'daughter'] [u'polic', u'arrest', u'anti', u'terror', u'law'] [u'cut', u'iraq', u'staff'] [u'envoy', u'arriv', u'burma', u'mission'] [u'envoy', u'tri', u'free'] [u'staff', u'nation', u'strike', u'vote'] [u'staff', u'vote', u'hour', u'strike'] [u'unsecur', u'creditor', u'accept', u'nardel', u'offer'] [u'uproar', u'suggest', u'unintellig'] [u'person', u'spend', u'make', u'gain'] [u'pull', u'troop', u'liberia'] [u'soldier', u'kill', u'wound', u'afghan', u'battl'] [u'vandal', u'blame', u'phone', u'troubl'] [u'vanston', u'appoint', u'snub', u'mansel', u'say'] [u'vcat', u'find', u'hotel', u'plan', u'charact', u'port'] [u'wagga', u'club', u'protest', u'poki', u'plan'] [u'govt', u'plan', u'live', u'anim', u'trade', u'overhaul'] [u'wall', u'street', u'ralli', u'tech', u'sale'] [u'rock', u'climber', u'rescu'] [u'word', u'erupt', u'timber', u'industri'] [u'water', u'polic', u'surburb', u'tomorrow'] [u'weld', u'raider', u'arriv', u'spring', u'carniv'] [u'white', u'hous', u'deni', u'leak'] [u'wool', u'grower', u'urg', u'join', u'poll'] [u'yeppoon', u'host', u'nation', u'salin', u'confer'] [u'mildura', u'medic', u'school', u'open'] [u'accc', u'take', u'properti', u'develop', u'court'] [u'govt', u'keep', u'preschool', u'open', u'despit'] [u'agreement', u'environment', u'effici', u'motor'] [u'imron', u'seek', u'presidenti', u'clemenc'] [u'petit', u'seek', u'medicar', u'boost'] [u'analyst', u'urg', u'polic', u'boost', u'south', u'pacif'] [u'anarchist', u'group', u'claim', u'olymp', u'citi', u'bomb', u'attack'] [u'armstrong', u'inspir', u'drive', u'franc', u'marsh'] [u'ashcroft', u'hang', u'boot'] [u'atsic', u'boss', u'vision', u'account', u'futur'] [u'aussi', u'dollar', u'surg', u'wake', u'surplus'] [u'aussi', u'china', u'remain', u'highlight', u'world'] [u'australia', u'warn', u'greater', u'movement', u'peopl'] [u'award', u'golden', u'quest', u'disoveri', u'trail'] [u'award', u'recognis', u'cop', u'effort'] [u'bali', u'bomb', u'wors'] [u'bar', u'sato', u'take', u'hospit', u'test', u'crash'] [u'bathurst', u'ralli', u'poker', u'machin'] [u'bathurst', u'ralli', u'poki', u'plan'] [u'bedevil', u'diseas', u'prompt'] [u'averag', u'rainfal', u'central'] [u'bennett', u'expect', u'retir'] [u'blast', u'wound', u'southern', u'india'] [u'brazilian', u'long', u'jumper', u'dope'] [u'british', u'high', u'court', u'end', u'embryo'] [u'british', u'newspap', u'editor', u'quit'] [u'brown', u'bear', u'prepar', u'cross', u'countri', u'trip'] [u'bumper', u'harvest', u'expect', u'frost', u'stay', u'away'] [u'bumpi', u'ride', u'camel', u'export'] [u'burswood', u'casino', u'share', u'switch', u'hand'] [u'cairn', u'council', u'warn', u'water', u'restrict'] [u'cairn', u'magistr', u'jail', u'illeg', u'fishermen'] [u'footbal', u'racism'] [u'camel', u'trade', u'live', u'export', u'slow'] [u'cattl', u'council', u'hop', u'verdict', u'clear'] [u'cattl', u'produc', u'worri', u'return', u'sheep'] [u'cerebr', u'palsi', u'leagu', u'unhappi', u'court', u'outcom'] [u'chamber', u'air', u'cultur', u'centr', u'park', u'worri'] [u'chang', u'charg', u'mackay', u'dump'] [u'charg', u'drop', u'fatal', u'road', u'accid', u'case'] [u'charl', u'darwin', u'staff', u'join', u'nation', u'strike'] [u'charlevill', u'pay', u'tribut', u'slim', u'dusti'] [u'chelsea', u'struggl', u'languag', u'barrier'] [u'construct', u'talk', u'swim', u'centr', u'sack'] [u'consum', u'confid', u'slump', u'weigh', u'wall'] [u'coria', u'qualifi', u'master'] [u'cost', u'cut', u'kindergarten', u'plan'] [u'councillor', u'reject', u'mayor', u'lethal', u'inject'] [u'council', u'move', u'croc', u'hunter', u'sunshin', u'coast'] [u'council', u'presid', u'lament', u'methanex', u'pull'] [u'council', u'ask', u'push', u'road', u'fund'] [u'countri', u'beat', u'citi', u'hous', u'boom'] [u'court', u'hear', u'know', u'friend', u'drug', u'problem'] [u'court', u'hear', u'workmat', u'kill', u'claim'] [u'crash', u'chopper', u'take', u'away', u'inspect'] [u'crean', u'prais', u'trip', u'despit', u'fail', u'meet', u'megawati'] [u'croc', u'chemistri', u'help', u'cairn', u'clash'] [u'csiro', u'research', u'seek', u'salt', u'resist', u'wheat'] [u'cure', u'tassi', u'devil', u'cancer', u'year', u'away'] [u'democrat', u'fail', u'independ', u'probe', u'white'] [u'democrat', u'upbeat', u'crown', u'leas', u'support'] [u'develop', u'plan', u'vacant', u'land', u'rate', u'rise'] [u'drought', u'relief', u'extend', u'riverina', u'farmer'] [u'east', u'timor', u'call', u'foreign', u'invest'] [u'elton', u'john', u'furnitur', u'sale', u'smash', u'expect'] [u'condit', u'support', u'increas'] [u'expand', u'line'] [u'famili', u'protest', u'inquest', u'locat'] [u'farmer', u'look', u'heaven', u'rain'] [u'father', u'argentin', u'footbal', u'kidnap'] [u'fear', u'upgrad', u'cost'] [u'govt', u'tackl', u'region', u'salin'] [u'govt', u'welcom', u'khmer', u'roug', u'retrial'] [u'femal', u'atsic', u'commission', u'quit', u'women', u'post'] [u'fergi', u'world', u'highest', u'pay', u'manag'] [u'figur', u'highlight', u'rainfal', u'variat'] [u'figur', u'home', u'safe'] [u'file', u'share', u'group', u'unit', u'agre', u'code', u'conduct'] [u'forest', u'mine', u'plan', u'spark', u'indigen', u'fear'] [u'kill', u'hunter', u'valley', u'crash'] [u'frustrat', u'jobless', u'riot', u'baghdad'] [u'gazza', u'tri', u'arab', u'emir'] [u'gippsland', u'firm', u'look', u'share', u'game', u'benefit'] [u'girl', u'hospit', u'snake', u'attack'] [u'glass', u'ceil', u'hold', u'women', u'report'] [u'govt', u'plan', u'fatti', u'food', u'school'] [u'govt', u'deni', u'blame', u'wool', u'plant', u'closur'] [u'group', u'seek', u'princ', u'highway', u'fund', u'pledg'] [u'high', u'court', u'prize', u'award'] [u'homecom', u'canada', u'aussi', u'connect'] [u'hop', u'airport', u'secur', u'reduc', u'terror', u'risk'] [u'hospit', u'staff', u'counsel', u'babi', u'death'] [u'hous', u'retail', u'figur', u'stand', u'good', u'stead'] [u'howard', u'want', u'higher', u'rate', u'threshold'] [u'hydro', u'power', u'station', u'greenhous'] [u'india', u'hope', u'australia', u'boycott'] [u'inquiri', u'tell', u'reform', u'hardest'] [u'inter', u'juve', u'roll', u'gunner', u'stumbl'] [u'investig', u'begin', u'fatal'] [u'launch', u'young', u'probe'] [u'iraqi', u'offici', u'predict', u'constitut', u'year'] [u'say', u'help', u'pacif', u'player', u'problem'] [u'ireland', u'fear', u'backlash', u'rank'] [u'irish', u'readi', u'fight', u'wound', u'anim'] [u'israel', u'arrest', u'islam', u'jihad', u'head'] [u'time', u'ecuadorian', u'prompt'] [u'japan', u'show', u'sign', u'econom', u'recoveri'] [u'joint', u'tafeuni', u'fine', u'art', u'degre', u'consid'] [u'juri', u'consid', u'evid', u'sibl', u'kill', u'case'] [u'king', u'island', u'milk', u'fail', u'year'] [u'labor', u'call', u'independ', u'militari', u'investig'] [u'langer', u'commit', u'ryder', u'captainci'] [u'laport', u'readi', u'campaign'] [u'larkham', u'warn', u'dirti', u'puma'] [u'leas', u'sign', u'second', u'race', u'track'] [u'legal', u'storm', u'brew', u'nelson', u'develop'] [u'lifesav', u'need', u'day'] [u'local', u'govt', u'review', u'finish', u'year'] [u'logbook', u'lead', u'polic', u'lose', u'hiker'] [u'love', u'dump', u'martyn', u'return'] [u'excis', u'consum', u'hard', u'retail', u'say'] [u'accus', u'pose', u'femal', u'doctor'] [u'jail', u'internet', u'child', u'porn'] [u'set', u'alight', u'tiananmen', u'squar'] [u'manslaught', u'case', u'enter', u'final', u'stag'] [u'manufactur', u'survey', u'show', u'product', u'job'] [u'pose', u'doctor', u'charg', u'fraud'] [u'market', u'surviv', u'wall', u'street', u'jitter'] [u'martyn', u'tip', u'test', u'recal'] [u'mayor', u'plan', u'special', u'welcom', u'world', u'champ'] [u'mayor', u'meet', u'lobbi', u'rail', u'fund'] [u'mccafferti', u'plan', u'rout'] [u'medic', u'indemn', u'claim', u'surgeon'] [u'melbourn', u'nation', u'tour'] [u'melbourn', u'flinder', u'street', u'makeov'] [u'methanex', u'pull', u'news', u'roebourn'] [u'north', u'coast', u'join', u'poki', u'protest'] [u'milk', u'flow', u'stop', u'king', u'compani'] [u'minist', u'confid', u'beat', u'nat', u'contend'] [u'academ', u'staff', u'deakin'] [u'secur', u'check', u'introduc', u'airport'] [u'moroccan', u'twin', u'jail', u'extrem', u'plot'] [u'continu', u'fenc', u'plan'] [u'murder', u'backpack', u'father', u'welcom', u'trial'] [u'murphi', u'injuri', u'blow', u'liverpool'] [u'murray', u'studi', u'hop', u'boost', u'number'] [u'chang', u'australia', u'oldest', u'woodchip'] [u'nat', u'renam', u'confus'] [u'cours', u'launch', u'aborigin', u'busi', u'leader'] [u'general', u'manag', u'snowi', u'council'] [u'boy', u'adelaid', u'sign', u'spree'] [u'club', u'hold', u'ralli', u'protest', u'poki', u'hike'] [u'buyback', u'kick'] [u'south', u'east', u'caravan', u'park', u'sweep', u'award'] [u'treasur', u'unmov', u'poki', u'protest'] [u'govt', u'plan', u'servic'] [u'booz', u'credit'] [u'basketbal', u'team', u'win', u'start'] [u'breaker', u'win', u'start'] [u'nation', u'senat', u'oppos', u'plan'] [u'open', u'resist', u'date', u'chang', u'pressur'] [u'opposit', u'call', u'medic', u'indemn', u'talk'] [u'opposit', u'council', u'econom', u'tourism', u'plan'] [u'opposit', u'want', u'ruddock', u'stand'] [u'palm', u'island', u'council', u'wait', u'govt', u'decis'] [u'offer', u'lifelin'] [u'patchi', u'rain', u'close', u'birdsvill', u'track'] [u'patterson', u'deni', u'demot'] [u'philippin', u'claim', u'sayyaf', u'deputi', u'custodi'] [u'phone', u'servic', u'disrupt', u'south', u'coast'] [u'pichot', u'slap', u'dirti', u'puma', u'claim'] [u'plane', u'crash', u'north', u'queensland'] [u'plane', u'crash', u'probe', u'begin'] [u'pinpoint', u'health', u'make', u'differ'] [u'say', u'unsold', u'sheep', u'bring', u'home'] [u'govt', u'meet', u'strike', u'telecom', u'worker'] [u'polic', u'forc', u'crisi'] [u'polic', u'council', u'join', u'forc', u'stop', u'thiev'] [u'polic', u'investig', u'melbourn', u'babi', u'death'] [u'polic', u'pursu', u'premiership', u'rape', u'probe'] [u'polic', u'seek', u'wit', u'suspect'] [u'polic', u'test', u'soccer', u'star', u'rape', u'claim'] [u'pope', u'hold', u'audienc', u'skip', u'address'] [u'postal', u'industri', u'ombudsman', u'establish'] [u'prepar', u'solomon', u'troop', u'pull', u'underway'] [u'farmer', u'want', u'drought', u'break', u'rain'] [u'govt', u'want', u'shift', u'steal', u'wag', u'focus'] [u'raiwalui', u'turn', u'fiji'] [u'raul', u'travel', u'real', u'clash', u'porto'] [u'ravenswood', u'endur', u'sale', u'council'] [u'record', u'number', u'european', u'kid', u'surf'] [u'refuge', u'advoc', u'consid', u'high', u'court', u'test', u'case'] [u'region', u'job', u'train'] [u'reservoir', u'save', u'murray', u'water'] [u'right', u'group', u'condemn', u'kenyan', u'editor', u'arrest'] [u'right', u'group', u'want', u'sanction', u'isra', u'barrier'] [u'rise', u'dollar', u'rat', u'worri'] [u'roman', u'antiqu', u'bowl', u'british', u'expert'] [u'rugbi', u'chief', u'inspect', u'dockland'] [u'rwanda', u'rule', u'parti', u'take', u'earli', u'elect', u'lead'] [u'face', u'perman', u'water', u'restrict'] [u'safina', u'oust', u'defend', u'champ', u'advanc', u'moscow'] [u'scott', u'snub', u'reschedul', u'open'] [u'secur', u'fear', u'play', u'south', u'african', u'mind'] [u'sheep', u'export', u'stand', u'scrutini'] [u'shepparton', u'host', u'groceri', u'code', u'inquiri'] [u'slammin', u'charg', u'throw', u'court'] [u'sledger', u'face', u'life', u'cricket', u'australia'] [u'soar', u'dollar', u'drag', u'share', u'market'] [u'solomon', u'corrupt', u'probe', u'underway'] [u'spotlight', u'fall', u'break', u'hill', u'lead', u'reduct'] [u'stanbrok', u'legal', u'continu'] [u'storm', u'hit', u'opal', u'mine', u'town'] [u'stuart', u'hit', u'roo', u'coach', u'anderson', u'fittler'] [u'sudanes', u'newspap', u'suspend', u'defenc', u'report'] [u'support', u'plan', u'live', u'sheep', u'trade', u'chang'] [u'swiss', u'polic', u'wrestl', u'runaway'] [u'symposium', u'tell', u'archaic', u'law', u'hinder', u'tran'] [u'syrian', u'poet', u'adoni', u'see', u'nobel', u'prize', u'frontrunn'] [u'health', u'pressur'] [u'egan', u'administr'] [u'teen', u'charg', u'murder', u'bash', u'victim', u'die'] [u'thai', u'seek', u'loos', u'missil', u'ahead', u'apec', u'summit'] [u'youth', u'theatr', u'partnership'] [u'seed', u'schuettler', u'cruis', u'japan', u'open'] [u'tougher', u'water', u'restrict', u'effect'] [u'treasur', u'offer', u'clue', u'possibl', u'cut'] [u'turtl', u'free', u'trawl', u'open', u'market'] [u'dead', u'wound', u'kashmir'] [u'tyson', u'plead', u'guilti', u'brawl', u'charg'] [u'union', u'launch', u'media', u'campaign', u'build'] [u'union', u'want', u'financi', u'secur'] [u'strike', u'octob'] [u'senat', u'committe', u'approv', u'billion', u'iraq'] [u'team', u'keen', u'mark'] [u'venus', u'delay', u'comeback'] [u'govt', u'offer', u'million', u'water', u'rebat'] [u'victorian', u'view', u'antarctica'] [u'green', u'urg', u'power', u'polici', u'rethink'] [u'water', u'restrict', u'eas', u'victoria'] [u'water', u'restrict', u'loom', u'clarenc', u'valley'] [u'water', u'restrict', u'effect', u'sydney'] [u'wishart', u'earn', u'zimbabw', u'draw'] [u'woman', u'charg', u'husband', u'murder'] [u'wool', u'plant', u'closur', u'cost', u'geelong', u'job'] [u'worker', u'return', u'theme', u'park', u'tiger', u'bite'] [u'zim', u'cruis', u'victori', u'tour', u'match'] [u'boost', u'southern', u'environ'] [u'aborigin', u'fear', u'council', u'chang', u'undermin'] [u'accc', u'probe', u'properti', u'scam'] [u'patient', u'face', u'year', u'wait'] [u'fear', u'doctor', u'resign', u'indemn'] [u'agreement', u'reach', u'sheep', u'trade'] [u'airport', u'offer', u'short', u'term', u'free', u'park'] [u'akermani', u'reject', u'arrog', u'claim'] [u'aker', u'reject', u'lethal', u'arrog', u'claim'] [u'alleg', u'poacher', u'viarsa', u'fremantl', u'tomorrow'] [u'warn', u'specialist', u'doctor', u'exodus'] [u'anti', u'protest', u'guilti', u'opera', u'hous'] [u'arm', u'expert', u'provid', u'congress', u'iraq'] [u'soldier', u'wound', u'iraq', u'attack'] [u'atsic', u'commission', u'remain', u'committe'] [u'atsic', u'councillor', u'hop', u'vanston', u'deliv'] [u'atsic', u'head', u'ask', u'woman', u'quit', u'post'] [u'aussi', u'domin', u'french', u'surf'] [u'aussi', u'star', u'lovel', u'lead', u'plastic', u'pitch', u'backlash'] [u'australia', u'itali', u'sign', u'work', u'holiday', u'agreement'] [u'australia', u'team', u'beat', u'woodward'] [u'bali', u'bomber', u'expect', u'sentenc'] [u'bat', u'want', u'wenger', u'suspend'] [u'beatti', u'rule', u'cabinet', u'reshuffl', u'elect'] [u'bovina', u'show', u'seed', u'capriati', u'exit', u'door'] [u'orphan', u'hunter', u'crash', u'spend', u'night'] [u'break', u'hill', u'await', u'news', u'servic'] [u'broom', u'council', u'reject', u'cabl', u'beach'] [u'brothel', u'claim', u'caus', u'stir', u'busi', u'communiti'] [u'brother', u'face', u'nippi', u'cost'] [u'buchanan', u'upbeat', u'mcgrath', u'progress'] [u'budget', u'surplus', u'road', u'local', u'govt'] [u'bulk', u'bill', u'rat', u'west'] [u'burrup', u'fund', u'secur', u'despit', u'plant', u'cancel'] [u'busi', u'vote', u'develop', u'board', u'chang'] [u'govt', u'action', u'princ'] [u'unwant', u'fruit', u'tree', u'fruit', u'fight'] [u'cambodia', u'say', u'sourc', u'miss', u'thai'] [u'canadian', u'research', u'step', u'closer', u'sar', u'vaccin'] [u'canadian', u'rugbi', u'arriv', u'prepar'] [u'cancer', u'survivor', u'launch', u'dragon', u'boat', u'race'] [u'captiv', u'carnivor', u'miss', u'wide', u'open', u'space'] [u'cardwel', u'homecom', u'injur', u'turtl'] [u'central', u'north', u'build', u'activ', u'fall'] [u'centrelink', u'raid', u'catch', u'welfar', u'cheat'] [u'chicken', u'power', u'site', u'reject', u'council'] [u'chines', u'scientist', u'sentenc', u'worker', u'death'] [u'councillor', u'confid', u'mall', u'conflict'] [u'council', u'govt', u'reject', u'countrylink', u'cut'] [u'council', u'seek', u'direct', u'fund', u'visitor', u'centr'] [u'council', u'worri', u'king', u'milk', u'woe'] [u'court', u'tell', u'knife', u'attack', u'unprovok'] [u'court', u'tell', u'beat', u'throw', u'river'] [u'crash', u'investig', u'continu', u'search', u'caus'] [u'dallaglio', u'play', u'win'] [u'decis', u'loom', u'torr', u'strait', u'nativ', u'titl'] [u'defenc', u'forc', u'staff', u'debt'] [u'diplomat', u'defend', u'free', u'trade', u'talk'] [u'doctor', u'group', u'offer', u'hour', u'servic', u'assur'] [u'dollar', u'hit', u'year', u'high'] [u'domaszewicz', u'upset', u'leski', u'inquiri'] [u'door', u'open', u'ullrich', u'telekom', u'return'] [u'draper', u'set', u'clash', u'schuettler'] [u'drought', u'relief', u'dri', u'farmer'] [u'extra', u'motiv', u'wood', u'georgia'] [u'fals', u'alarm', u'cost', u'polic'] [u'famili', u'fatal', u'crash', u'armidal'] [u'farmer', u'group', u'downplay', u'stronger', u'dollar', u'fear'] [u'farmer', u'group', u'support', u'seaga', u'bond'] [u'fatal', u'accid', u'disrupt', u'sydney', u'traffic'] [u'govt', u'urg', u'scrap', u'levi', u'plan'] [u'fiji', u'plan', u'pacif', u'largest', u'build', u'project'] [u'fiji', u'rawaqa', u'squad', u'remark'] [u'financi', u'advis', u'plead', u'guilti', u'fail', u'scheme'] [u'fittler', u'stuart', u'pile', u'pressur', u'rooster'] [u'flood', u'damag', u'close', u'elliott'] [u'forest', u'remap', u'result', u'releas', u'soon'] [u'fuel', u'spill', u'block', u'england', u'highway'] [u'fund', u'approv', u'intersect', u'upgrad'] [u'gold', u'slow', u'explor'] [u'grand', u'final', u'foe', u'squar'] [u'grapegrow', u'lament', u'frost', u'damag'] [u'hegarti', u'hop', u'kangaroo'] [u'high', u'court', u'centenari', u'celebr', u'canberra'] [u'holland', u'disciplin', u'nistelrooy'] [u'hong', u'kong', u'deal', u'sar', u'epidem', u'appropri'] [u'hoon', u'jail', u'send', u'messag', u'driver'] [u'hospit', u'accus', u'insur', u'disadvantag', u'patient'] [u'hottest', u'septemb', u'record', u'gold', u'coast'] [u'howard', u'campaign', u'fight', u'drug', u'abus'] [u'howard', u'outlin', u'option', u'senat', u'chang'] [u'indigen', u'band', u'readi', u'figjam', u'concert'] [u'indonesia', u'seek', u'repair', u'tourist', u'tie'] [u'injuri', u'concern', u'black', u'lock'] [u'inquiri', u'tell', u'airport', u'secur', u'govt'] [u'insur', u'levi', u'heat', u'doctor', u'walk'] [u'insur', u'woe', u'increas', u'surgeri', u'wait', u'time'] [u'irish', u'hop', u'self', u'belief', u'overcom', u'aussi'] [u'israel', u'approv', u'barrier', u'section'] [u'israel', u'build', u'home', u'west', u'bank'] [u'bring', u'famili', u'closer', u'australian', u'resid'] [u'jone', u'player', u'rotat'] [u'juri', u'deliber', u'sibl', u'kill', u'case'] [u'labor', u'attack', u'cat'] [u'labor', u'stoush', u'poll', u'practic'] [u'latham', u'save', u'negat', u'gear', u'idea', u'criticis'] [u'trobe', u'lectur', u'strike', u'tertiari', u'reform'] [u'legisl', u'alcohol', u'book', u'illeg'] [u'local', u'footbal', u'club', u'merg'] [u'lord', u'honour', u'flower', u'olonga'] [u'macquari', u'bank', u'share', u'jump', u'water'] [u'mcgrath', u'hand', u'fit', u'deadlin'] [u'media', u'criticis', u'plane', u'crash', u'coverag'] [u'jail', u'polic', u'offic', u'murder'] [u'meteorologist', u'rain'] [u'miner', u'monitor', u'rise', u'australian', u'dollar'] [u'mix', u'bless', u'malle', u'cereal', u'farmer'] [u'breast', u'cancer', u'program', u'place', u'offer'] [u'surgeon', u'quit', u'cut', u'expect'] [u'victorian', u'access', u'public', u'hospit'] [u'water', u'restrict', u'flow', u'north', u'coast'] [u'gambier', u'satisfi', u'health', u'fund'] [u'mukhla', u'sentenc', u'death', u'bali', u'bomb'] [u'mukhla', u'appeal', u'sentenc'] [u'newcastl', u'celebr', u'nurs', u'practition'] [u'process', u'let', u'wine', u'maker', u'drop'] [u'nigeria', u'mexico', u'happi', u'stake'] [u'nimbin', u'riot', u'baffl', u'communiti', u'polic'] [u'korea', u'admit', u'process', u'fuel', u'rod'] [u'chang', u'revis', u'resolut', u'iraq'] [u'nowra', u'promot', u'shop'] [u'fear', u'doctor', u'walkout', u'levi'] [u'convict', u'murder', u'sister'] [u'polic', u'begin', u'road', u'safeti', u'crackdown'] [u'nsws', u'graincorp', u'buy', u'qlds', u'grainco'] [u'highest', u'homeless', u'academ'] [u'scientist', u'bore', u'antarct'] [u'odriscol', u'readi', u'special', u'perform'] [u'nation', u'withhold', u'support', u'reform', u'law'] [u'criticis', u'statistician', u'visit'] [u'expect', u'victorian', u'hospit', u'post'] [u'pair', u'jail', u'send', u'messag', u'hoon', u'driver'] [u'pair', u'court', u'drug', u'charg'] [u'pakistan', u'forc', u'kill', u'suspect', u'qaeda'] [u'panther', u'rooster', u'hunker', u'grand', u'final'] [u'parti', u'vote', u'reshuffl', u'govt'] [u'patchi', u'rain', u'bring', u'relief'] [u'phone', u'servic', u'restor', u'major', u'outag'] [u'plan', u'boost', u'varieti', u'oversea', u'student'] [u'plan', u'merg', u'hospit', u'age', u'care', u'hostel'] [u'tackl', u'crocodil', u'hunter'] [u'girl', u'arriv', u'brisban', u'surgeri'] [u'polic', u'offic', u'deni', u'assault', u'itiner'] [u'polic', u'probe', u'chariti', u'blast'] [u'polic', u'probe', u'east', u'coast', u'shoot'] [u'polic', u'boost', u'warburton', u'presenc'] [u'polic', u'replac', u'aborigin', u'liaison', u'offic'] [u'posti', u'charg', u'fail', u'deliv', u'mail'] [u'prison', u'impress', u'london', u'theatreland'] [u'protea', u'win', u'start', u'pakistan'] [u'protest', u'sight', u'anim', u'trade', u'talk'] [u'miner', u'win', u'reconcili', u'award'] [u'rain', u'bring', u'mix', u'bless', u'firefight'] [u'rain', u'help', u'boost', u'crop', u'hop'] [u'rain', u'late', u'crop'] [u'ralf', u'hit', u'william', u'chao'] [u'rebel', u'govt', u'forc', u'clash', u'monrovia'] [u'region', u'airport', u'secur', u'inquiri'] [u'return', u'sheep', u'irrespons', u'quarantin', u'expert'] [u'robson', u'dismiss', u'panic', u'talk', u'newcastl'] [u'rossi', u'close', u'straight', u'world', u'crown'] [u'discrimin', u'case', u'bigger'] [u'warn', u'highway', u'accid', u'risk', u'council'] [u'copper', u'smelter', u'resum', u'oper'] [u'govt', u'upbeat', u'rise', u'miner', u'explor'] [u'schwarzenegg', u'outlin', u'day', u'governor'] [u'secretari', u'calm', u'fear', u'pope', u'health'] [u'share', u'market', u'rise', u'gain'] [u'shortism', u'caus', u'demand', u'lengthen'] [u'short', u'live', u'storm', u'batter', u'opal', u'mine', u'town'] [u'showground', u'host', u'field', u'fest'] [u'small', u'busi', u'focus', u'econom', u'summit'] [u'soccer', u'star', u'order', u'cooper', u'rape', u'probe'] [u'solomon', u'prais', u'australian', u'intervent'] [u'south', u'african', u'coetze', u'win', u'nobel', u'literatur', u'prize'] [u'storm', u'damag', u'close', u'dubbo'] [u'storm', u'leav', u'home', u'power'] [u'student', u'safeti', u'fear', u'spark', u'road', u'closur', u'trial'] [u'studi', u'find', u'breast', u'implant', u'boost', u'suicid', u'rate'] [u'sydney', u'adelaid', u'rural', u'ax'] [u'sydney', u'staff', u'protest', u'interfer'] [u'taipan', u'bite', u'croc', u'amidst', u'rumour'] [u'talk', u'begin', u'save', u'yongala', u'dive', u'site', u'moor'] [u'talk', u'continu', u'strand', u'sheep'] [u'cut', u'forc', u'rate', u'hike', u'oppn'] [u'telstra', u'boss', u'senat', u'probe'] [u'telstra', u'defend', u'switkowski', u'absenc', u'senat'] [u'that', u'cooki', u'crumbl'] [u'dead', u'liberia', u'peacekeep'] [u'soldier', u'kill', u'iraqi', u'attack'] [u'toddler', u'hospit', u'meningococc'] [u'toowoomba', u'cotton', u'research', u'centr', u'benefit'] [u'toronto', u'hatch', u'rare', u'komodo', u'dragon', u'babi'] [u'tough', u'talk', u'minnow', u'georgia'] [u'trade', u'deal', u'japan', u'boost', u'invest', u'tie'] [u'trucker', u'black', u'spot', u'fund'] [u'palestinian', u'kill', u'west', u'bank', u'raid'] [u'labour', u'deleg', u'forc', u'iraq', u'debat'] [u'envoy', u'quiet', u'meet'] [u'union', u'deleg', u'plead', u'guilti', u'work', u'threat'] [u'unit', u'chelsea', u'sting', u'champ', u'leagu', u'loss'] [u'univers', u'staff', u'ask', u'join', u'strike'] [u'need', u'diplomaci', u'chang', u'revamp', u'imag', u'panel'] [u'push', u'revis', u'resolut'] [u'senat', u'reject', u'iraq', u'fund', u'cut'] [u'soldier', u'shoot', u'dead', u'iraq'] [u'sweden', u'women', u'world', u'semi'] [u'moorsel', u'beat', u'longo', u'world', u'hour', u'record'] [u'veteran', u'win', u'discrimin', u'case'] [u'govt', u'deni', u'rob', u'forest', u'program'] [u'wallabi', u'face', u'squad', u'honour'] [u'wall', u'ralli', u'slump'] [u'water', u'effici', u'plan', u'save', u'annual', u'kemp'] [u'waugh', u'drop', u'retir', u'hint'] [u'webb', u'elli', u'arriv', u'australia'] [u'whale', u'watcher', u'urg', u'lookout'] [u'woolworth', u'share', u'drop', u'poor', u'sale', u'outlook'] [u'world', u'pressur', u'israel', u'nuke', u'arab', u'leagu'] [u'zimbabw', u'crash', u'kill'] [u'zimbabw', u'court', u'uphold', u'seizur', u'ban', u'daili'] [u'abbott', u'meet', u'exodus', u'fear'] [u'abbott', u'releas', u'doctor', u'levi', u'plan'] [u'get', u'nationwid', u'datacast', u'licenc'] [u'accus', u'drug', u'traffic', u'overwork'] [u'accus', u'say', u'intent', u'kill', u'friend'] [u'govt', u'fund', u'finalis', u'packag'] [u'airport', u'raid', u'target', u'perth', u'taxi', u'driver'] [u'flog', u'perth', u'melbourn', u'wnbl', u'open'] [u'anderson', u'downplay', u'fear', u'plan', u'airspac'] [u'annan', u'happi', u'draft', u'resolut'] [u'anti', u'corrupt', u'watchdog', u'raid', u'offic'] [u'appeal', u'court', u'order', u'boss', u'fraud', u'trial'] [u'appeal', u'lodg', u'forest', u'plan'] [u'kill', u'afghanistan', u'blast'] [u'beerwah', u'busi', u'fear', u'australia'] [u'bomber', u'charg', u'salari', u'breach'] [u'bordertown', u'polic', u'forc', u'long', u'weekend'] [u'breaker', u'fall', u'loss'] [u'break', u'hill', u'lament', u'servic', u'demis'] [u'broom', u'council', u'want', u'answer', u'station'] [u'brown', u'oppos', u'parliament', u'recal', u'bush', u'visit'] [u'compani', u'celebr', u'year', u'servic'] [u'bushfir', u'help'] [u'butler', u'swear', u'tasmanian', u'governor'] [u'elect', u'candid', u'reveal', u'prefer', u'stanc'] [u'king', u'canyon', u'region', u'polic', u'station'] [u'quick', u'action', u'dust', u'woe'] [u'cambodian', u'polic', u'intercept', u'drug', u'head'] [u'cardin', u'say', u'pope', u'near', u'death'] [u'carr', u'revolt', u'doubl', u'jeopardi', u'draft'] [u'sale', u'septemb', u'quarter'] [u'cash', u'shortag', u'delay', u'kid', u'surgeri'] [u'centrelink', u'initi', u'perth', u'taxi', u'raid'] [u'chilean', u'star', u'rio', u'front', u'court'] [u'church', u'cancel', u'anti', u'divorc', u'chile'] [u'clean', u'storm', u'batter', u'north', u'west'] [u'colombian', u'rebel', u'claim', u'shoot', u'plane'] [u'commerci', u'educ', u'miss', u'rural', u'kid'] [u'compani', u'blame', u'govt', u'loss', u'methanol'] [u'concern', u'rais', u'larg', u'pine', u'plantat'] [u'construct', u'delay', u'prison'] [u'council', u'get', u'walk', u'work'] [u'councillor', u'question', u'support', u'independ', u'bodi'] [u'council', u'transport', u'overhaul'] [u'council', u'citi', u'slicker', u'bush'] [u'coupl', u'receiv', u'bali', u'nurs', u'award'] [u'court', u'rule', u'valanc'] [u'crew', u'rescu', u'sink', u'trawler'] [u'deadlin', u'extend', u'lake', u'mulwala', u'submiss'] [u'debat', u'telescop'] [u'demand', u'counsel', u'servic'] [u'develop', u'boom', u'drive', u'hous', u'market'] [u'digger', u'want', u'rejoin', u'oath'] [u'doctor', u'continu', u'resign', u'insur', u'levi'] [u'doubl', u'demerit', u'point', u'come', u'forc', u'long'] [u'appeal', u'sentenc', u'policeman', u'murder'] [u'draper', u'japan', u'open', u'quarter', u'final'] [u'drill', u'maker', u'share', u'skill', u'fund'] [u'kill', u'tear', u'aceh'] [u'england', u'arriv', u'perth'] [u'environ', u'hotspot', u'extra', u'protect'] [u'israel', u'plan', u'extend', u'west', u'bank', u'barrier'] [u'seek', u'save', u'slipperi', u'extinct'] [u'beij', u'mayor', u'get', u'project'] [u'expert', u'warn', u'diseas', u'threat', u'sheep', u'return'] [u'fatti', u'diet', u'link', u'stroke', u'risk', u'research'] [u'fear', u'air', u'hour', u'polic', u'station', u'staff'] [u'govt', u'maintain', u'defenc', u'commit'] [u'firefight', u'mourn', u'loss', u'colleagu', u'famili'] [u'firm', u'releas', u'wine', u'takeov', u'detail'] [u'flatley', u'stitch', u'heat'] [u'tout', u'senat', u'candid'] [u'policeman', u'guilti', u'indec', u'deal'] [u'kill', u'injur', u'turkey', u'crash'] [u'fourth', u'stand', u'trial', u'policeman', u'murder'] [u'french', u'player', u'world', u'dope', u'check'] [u'frost', u'rain', u'worri', u'grape', u'grower'] [u'german', u'fire', u'audienc', u'imagin'] [u'girlfriend', u'olymp', u'shooter', u'diamond', u'grant'] [u'canola', u'receiv', u'initi', u'approv'] [u'govt', u'blame', u'game', u'methanex', u'pull'] [u'govt', u'commit', u'indigen', u'art', u'program'] [u'govt', u'ahead', u'pinetec', u'reloc', u'grant'] [u'grandmoth', u'granddaught', u'grampian'] [u'grant', u'money', u'await', u'decis', u'mall', u'futur'] [u'green', u'govt', u'refus', u'search'] [u'green', u'lower', u'hous', u'need', u'reform'] [u'gunmen', u'kill', u'shiit', u'muslim', u'pakistan'] [u'hama', u'say', u'secur', u'barrier', u'wont', u'stop', u'attack'] [u'health', u'minist', u'call', u'south', u'east', u'clinic'] [u'hillston', u'bank', u'communiti', u'plan'] [u'hospit', u'cop', u'rise', u'patient', u'number'] [u'howard', u'tightlip', u'bush', u'detail'] [u'hundr', u'home', u'lose', u'power', u'storm'] [u'indigen', u'outcri', u'plan', u'communiti', u'council'] [u'investig', u'probe', u'mareeba', u'plane', u'crash'] [u'koen', u'kock', u'declar', u'bok'] [u'land', u'clear', u'negoti', u'take', u'longer'] [u'leed', u'faith', u'reid'] [u'liberian', u'presid', u'accus', u'rebel', u'coup', u'attempt'] [u'lifesav', u'govt', u'meet', u'insur', u'shortfal'] [u'london', u'protest', u'hand', u'live', u'export', u'petit'] [u'longreach', u'prais', u'effort', u'help', u'stricken'] [u'mackay', u'tell', u'consid', u'middl', u'east', u'trade', u'plan'] [u'bash', u'rob', u'parramatta'] [u'charg', u'babysitt', u'attack'] [u'guilti', u'sister', u'shoot', u'murder'] [u'plead', u'guilti', u'hold'] [u'face', u'court', u'attempt', u'murder', u'charg'] [u'mccabe', u'famili', u'lose', u'tobacco', u'legal', u'challeng'] [u'medic', u'indemn', u'crisi', u'predict', u'littl'] [u'meet', u'help', u'farmer', u'seek', u'drought'] [u'melbourn', u'warehous', u'caus', u'damag'] [u'mellencamp', u'bemoan', u'apolit', u'music', u'industri'] [u'mine', u'plan', u'scuttl', u'telescop'] [u'miss', u'toddler', u'near', u'goondiwindi'] [u'uncertainti', u'millennium', u'rail', u'project'] [u'mosqu', u'blast', u'death', u'toll', u'rise'] [u'nation', u'resourc', u'council', u'move', u'closer'] [u'nauru', u'announc', u'econom', u'agreement', u'china'] [u'nauru', u'court', u'sentenc', u'asylum', u'seeker', u'riot'] [u'nebo', u'council', u'discuss', u'plan'] [u'airport', u'termin', u'carnarvon'] [u'crime', u'solv', u'softwar'] [u'look', u'liver', u'kewel', u'face', u'trial', u'gunner'] [u'pcyc', u'mornington'] [u'recruit', u'townsvill', u'squad'] [u'trial', u'convict', u'murder', u'wife'] [u'opposit', u'urg', u'public', u'council', u'merger'] [u'compani', u'win', u'rail', u'tender'] [u'korea', u'claim', u'nuke', u'rod', u'readi', u'sceptic'] [u'blaze', u'threaten', u'hous'] [u'broadcast', u'sorri', u'chief'] [u'omalley', u'trail', u'garcia'] [u'burn', u'mudge', u'blast'] [u'kill', u'wound', u'iraq'] [u'oppn', u'jump', u'iraq', u'weapon', u'report'] [u'opposit', u'accus', u'fail', u'support', u'wind'] [u'pair', u'lucki', u'escap', u'leav', u'wharf'] [u'pakistan', u'bank', u'akhtar', u'pace'] [u'pakistan', u'test', u'fire', u'short', u'rang', u'ballist', u'missil'] [u'palm', u'council', u'hand', u'minist'] [u'pantani', u'clear', u'sport', u'fraud'] [u'panther', u'fan', u'favourit', u'stuart'] [u'patrol', u'boat', u'assist', u'solomon', u'weapon', u'search'] [u'consum', u'complaint', u'list'] [u'plan', u'exil', u'sheep', u'dock'] [u'plan', u'save', u'wwii', u'airstrip', u'highway', u'connect'] [u'blame', u'state', u'law', u'bulk', u'bill', u'declin'] [u'defend', u'weapon', u'report'] [u'head', u'walk', u'work', u'campaign'] [u'hop', u'levi', u'freez', u'stop', u'exodus'] [u'crack', u'expat', u'worker'] [u'polic', u'help', u'steal', u'truck', u'crash'] [u'polic', u'continu', u'drug', u'raid', u'probe'] [u'polic', u'charg', u'nimbin', u'riot'] [u'polic', u'deal', u'includ', u'free', u'countri', u'hous'] [u'polic', u'road', u'safeti', u'messag', u'ahead', u'long', u'weekend'] [u'polic', u'search', u'miss', u'toddler', u'near', u'goondiwindi'] [u'polic', u'continu', u'bolster', u'road', u'safeti'] [u'polic', u'want', u'question', u'tewantin', u'death'] [u'properti', u'come', u'storm', u'unscath'] [u'public', u'hous', u'secur', u'door', u'stay'] [u'public', u'warn', u'away', u'amor', u'croc'] [u'punter', u'sign', u'counti', u'deal', u'report'] [u'qanta', u'reject', u'region', u'secur', u'concern'] [u'queen', u'golden', u'mile', u'hall', u'fame', u'home'] [u'rag', u'roy', u'warn', u'ger'] [u'rain', u'forc', u'cancel', u'pooncari'] [u'ranger', u'count', u'portugues', u'lucki', u'charm'] [u'reclus', u'writer', u'surpris', u'nobel'] [u'reform', u'gippsland', u'race', u'industri'] [u'region', u'aircraft', u'secur', u'lack'] [u'renmark', u'rural', u'clinic', u'school', u'open'] [u'restrict', u'damag', u'elliott', u'road'] [u'retrain', u'fund', u'timber', u'dairi', u'industri'] [u'richardson', u'fire', u'unbeaten', u'zealand', u'warm'] [u'rockhampton', u'volunt', u'receiv', u'premier', u'award'] [u'rodd', u'tip', u'waterhous', u'pair', u'randwick'] [u'romania', u'separ', u'gypsi', u'child', u'coupl'] [u'roma', u'saleyard', u'beef', u'cattl', u'number'] [u'russia', u'follow', u'small', u'nuke', u'plan'] [u'russian', u'continu', u'nois', u'kremlin'] [u'samoa', u'sititi', u'criticis', u'leota', u'pull'] [u'schumach', u'quit', u'rumour'] [u'schwarzenegg', u'sorri', u'amid', u'fresh', u'harass', u'claim'] [u'scud', u'draper', u'japan'] [u'scud', u'draper', u'japan', u'open'] [u'search', u'continu', u'miss', u'west'] [u'seeth', u'montoya', u'take', u'day', u'calm'] [u'share', u'market', u'end', u'week', u'steadi'] [u'sheep', u'ship', u'dock', u'gulf'] [u'south', u'continu', u'wolv', u'miser', u'start'] [u'state', u'rail', u'deni', u'agre', u'millennium', u'stage'] [u'suicid', u'bomber', u'attack', u'iraq', u'cleaner', u'report'] [u'surf', u'champ', u'wave', u'kirra', u'beach'] [u'surgeon', u'urg', u'hospit', u'plan'] [u'survey', u'say', u'servic', u'sector', u'strong'] [u'swedish', u'name', u'lindh', u'replac'] [u'tail', u'dock', u'ban', u'australia', u'wide'] [u'senat', u'defend', u'bulk', u'bill', u'effort'] [u'telstra', u'scheme', u'aim', u'broadband', u'demand'] [u'telstra', u'share', u'buyback'] [u'telstra', u'worker', u'fight', u'plan', u'cut'] [u'tenni', u'hope', u'head', u'centr', u'tournament'] [u'train', u'driver', u'sack', u'brake', u'tamper', u'claim'] [u'canadian', u'peacekeep', u'kill', u'kabul'] [u'canadian', u'soldier', u'kill', u'injur', u'kabul'] [u'kill', u'injur', u'vietnam', u'ship', u'blast'] [u'envoy', u'fail', u'secur', u'releas'] [u'union', u'threaten', u'action', u'dental', u'assist'] [u'union', u'want', u'forest', u'fund', u'explan'] [u'uruguayan', u'toothfish', u'ship', u'arriv'] [u'inspector', u'admit', u'weapon'] [u'judg', u'rule', u'moussaoui', u'death', u'penalti'] [u'troop', u'truck', u'rocket', u'baghdad'] [u'valencia', u'black', u'beast', u'return', u'barca'] [u'govt', u'bid', u'nepean', u'reserv'] [u'voigt', u'win', u'pari', u'bourg', u'cook', u'seventh'] [u'live', u'coal', u'power', u'say'] [u'wallabi', u'face', u'squad', u'honour'] [u'wall', u'take', u'breather'] [u'warmer', u'weather', u'bring', u'snake'] [u'water', u'restrict', u'review'] [u'water', u'wise', u'messag', u'flow', u'maryborough'] [u'weapon', u'report', u'justifi'] [u'western', u'hardest', u'indemn', u'crisi'] [u'wild', u'storm', u'coast'] [u'wishart', u'steadi', u'struggl', u'zim'] [u'woman', u'die', u'princ', u'highway', u'crash'] [u'woman', u'face', u'drug', u'prison', u'charg'] [u'wound', u'inter', u'bend', u'reveng'] [u'panel', u'judg', u'australia', u'case', u'food'] [u'yacht', u'sink', u'townsvill', u'port'] [u'yellow', u'jersey', u'wearer', u'pena', u'lead', u'colombia', u'world'] [u'youth', u'festiv', u'put', u'reconcili', u'practic'] [u'zimbabw', u'court', u'set', u'date', u'paper', u'challeng'] [u'home', u'detent', u'australian'] [u'adventur', u'hobart', u'tourist', u'attract'] [u'ahmadiyya', u'mosqu', u'open', u'london'] [u'anti', u'log', u'group', u'protest', u'outsid', u'parliament'] [u'archbishop', u'canterburi', u'meet', u'pope'] [u'arni', u'wife', u'stand'] [u'arroyo', u'revers', u'retir', u'decis'] [u'asia', u'poorest', u'countri', u'receiv', u'develop', u'grant'] [u'aussi', u'hold', u'out', u'shore', u'shrink', u'world', u'field'] [u'aussi', u'squash', u'quarter'] [u'battl', u'panther', u'come', u'good', u'lang'] [u'best', u'fairest', u'honour'] [u'biaggi', u'grab', u'pacif', u'pole'] [u'bid', u'hot', u'british', u'bucket', u'water'] [u'boom', u'call', u'inform', u'mark', u'grave'] [u'brown', u'guid', u'clangalang', u'epsom', u'victori'] [u'bush', u'defend', u'decis', u'attack', u'iraq'] [u'canada', u'confirm', u'plan', u'field', u'weak', u'team'] [u'canada', u'shock', u'china', u'world', u'semi'] [u'canberran', u'urg', u'water', u'waster'] [u'carr', u'block', u'debat', u'poki', u'hike'] [u'celebr', u'garag', u'sale', u'attract', u'hundr'] [u'chief', u'clear', u'strand', u'sheep'] [u'child', u'abus', u'inquiri', u'delay', u'month'] [u'cipo', u'abdic', u'world', u'crown'] [u'claim', u'katherin', u'elect'] [u'colombian', u'presid', u'embrac', u'brother'] [u'crean', u'call', u'parti', u'uniti'] [u'crean', u'propos', u'rural', u'migrant', u'settlement'] [u'crean', u'announc', u'home', u'owner', u'grant'] [u'davydenko', u'replac', u'agassi', u'pari', u'master'] [u'death', u'toll', u'rise', u'pakistan', u'minibus', u'attack'] [u'dementieva', u'myskina', u'moscow', u'semi'] [u'diamond', u'doubt', u'shoot', u'world'] [u'doctor', u'split', u'abbott', u'oliv', u'branch'] [u'earth', u'tremor', u'shake', u'canberra'] [u'eastwood', u'claim', u'titl'] [u'ecuador', u'seiz', u'illeg', u'shark', u'fin', u'galapago'] [u'kashmir', u'border', u'exchang'] [u'england', u'favourit', u'world', u'say', u'straeuli'] [u'england', u'pack', u'say', u'aussi', u'coach'] [u'england', u'trumpet', u'edg', u'wallabi'] [u'environ', u'secretari', u'back', u'centralis', u'fish', u'data'] [u'member', u'negoti', u'constitut'] [u'expens', u'flag', u'steal', u'canberra', u'memori'] [u'boss', u'overhaul', u'qualifi', u'format'] [u'ferdinand', u'injuri', u'scare', u'england'] [u'food', u'produc', u'fight', u'european', u'name'] [u'franc', u'lose', u'forward', u'open'] [u'franc', u'hour', u'work', u'week', u'scrutini'] [u'frank', u'face', u'dope', u'charg', u'paper'] [u'georgia', u'captain', u'england', u'match'] [u'german', u'design', u'make', u'acclaim', u'comeback'] [u'gibernau', u'take', u'provision', u'pole', u'pacif'] [u'guest', u'worker', u'want', u'australia', u'survey'] [u'high', u'court', u'critic', u'natur', u'chief', u'justic'] [u'high', u'score', u'german', u'face', u'tough', u'defenc'] [u'increas', u'death', u'link', u'european', u'heatwav'] [u'indonesia', u'make', u'progress', u'money', u'launder'] [u'iraqi', u'kill', u'british', u'soldier'] [u'iraq', u'resolut', u'falter', u'bush', u'defend'] [u'iron', u'keep', u'wait', u'franc'] [u'isra', u'soldier', u'charg', u'child', u'death'] [u'israel', u'step', u'secur', u'ahead', u'holi'] [u'israel', u'suicid', u'blast', u'kill'] [u'johnson', u'rugbi', u'dirtiest', u'skipper', u'krige'] [u'kato', u'motogp', u'hall', u'fame'] [u'king', u'royal', u'start', u'bullet', u'bounc'] [u'krige', u'say', u'england', u'captain', u'play', u'dirti'] [u'love', u'bring', u'bush', u'poet'] [u'die', u'ultralight', u'crash'] [u'mauresmo', u'end', u'dementieva', u'streak', u'moscow'] [u'mcgrath', u'doubt', u'zimbabw', u'test'] [u'measl', u'alert', u'issu', u'virgin', u'flyer'] [u'melbourn', u'chariti', u'benefit', u'celebr', u'garag'] [u'miss', u'dead', u'victoria'] [u'motogp', u'honour', u'late', u'kato'] [u'confus', u'need', u'anti', u'corrupt', u'raid'] [u'nasa', u'delay', u'launch', u'septemb'] [u'navi', u'newest', u'ship', u'commiss', u'servic'] [u'doubt', u'mcgrath', u'fit'] [u'governor', u'vow', u'help', u'tasmanian'] [u'test', u'determin', u'water', u'level'] [u'york', u'honour', u'buri', u'african', u'slave'] [u'zealand', u'tampa', u'refuge', u'reunit'] [u'chief', u'warn', u'bush', u'fire'] [u'govt', u'face', u'court', u'ballast', u'point', u'purchas'] [u'polic', u'seek', u'help', u'girl', u'alleg', u'assault'] [u'storm', u'leav', u'dead', u'miss'] [u'pain', u'kill', u'panther', u'galuvao'] [u'pakistan', u'clinch', u'thrill'] [u'pizzonia', u'make', u'fast', u'return'] [u'play', u'indonesian', u'educ', u'specul'] [u'polic', u'budget', u'blowout', u'prompt', u'public', u'safeti', u'fear'] [u'policeman', u'drag', u'drink', u'driver'] [u'polic', u'search', u'children', u'find', u'submerg'] [u'power', u'plant', u'expect', u'creat', u'hundr', u'job'] [u'privat', u'school', u'call', u'releas', u'test', u'result'] [u'public', u'need', u'help', u'solv', u'insur', u'crisi'] [u'famili', u'offic', u'stand'] [u'name', u'zone'] [u'rebel', u'leader', u'arrest', u'solomon', u'island'] [u'report', u'highlight', u'poor', u'disabl', u'care', u'welfar', u'group'] [u'rudd', u'urg', u'deal', u'strand', u'sheep'] [u'polic', u'plan', u'schooli', u'crackdown'] [u'promot', u'goodwil', u'jew', u'muslim'] [u'saudi', u'hospit', u'investig', u'aid', u'treatment'] [u'schuettler', u'grosjean', u'tokyo', u'final'] [u'search', u'resum', u'miss'] [u'sharapova', u'breez', u'tokyo', u'final'] [u'sheep', u'offload', u'plan', u'logist', u'nightmar', u'coco'] [u'shriver', u'defend', u'arni', u'sexual', u'harass'] [u'south', u'australia', u'face', u'youth', u'worker', u'strike'] [u'specul', u'hot', u'ahead', u'nobel', u'scienc', u'prize'] [u'spirit', u'open', u'account', u'parramatta', u'power', u'kingz'] [u'steven', u'archer', u'quit', u'kangaroo', u'leadership'] [u'support', u'schwarzenegg', u'grow', u'poll', u'reveal'] [u'surfer', u'mark', u'bali', u'bomb', u'anniversari'] [u'govt', u'ignor', u'launceston', u'cardiologist', u'rule'] [u'trek', u'aim', u'aborigin', u'troubl'] [u'children', u'fear', u'drown'] [u'picasso', u'paint', u'auction', u'madrid'] [u'children', u'sweep', u'death'] [u'ullrich', u'telekom', u'return'] [u'soldier', u'kill', u'wound', u'baghdad', u'attack'] [u'troop', u'clash', u'iraqi', u'soldier'] [u'villa', u'deni', u'player', u'rape', u'probe'] [u'vote', u'begin', u'katherin', u'elect'] [u'warrior', u'lose', u'earli', u'wicket'] [u'weapon', u'inspector', u'present', u'evid', u'congress'] [u'woman', u'die', u'road', u'smash'] [u'wood', u'charg', u'clear'] [u'woolli', u'mind', u'studi', u'win', u'nobel', u'award'] [u'zimbabw', u'control', u'perth'] [u'zimbabw', u'vow', u'resist', u'pressur', u'close'] [u'oppn', u'concern', u'home', u'detent', u'polici'] [u'pick', u'bayeux', u'prize', u'coverag'] [u'predict', u'specialist', u'join', u'exodus'] [u'bottl', u'youv', u'bach'] [u'asthma', u'foundat', u'launch', u'educ', u'program'] [u'aussi', u'johnson', u'radcliff', u'take', u'half'] [u'aussi', u'research', u'claim', u'success', u'male'] [u'aussi', u'british', u'squash', u'final'] [u'bali', u'survivor', u'final', u'head', u'home'] [u'biaggi', u'cruis', u'pacif', u'victori', u'stoner', u'second'] [u'black', u'activist', u'death', u'honour', u'pari'] [u'blair', u'know', u'claim', u'wrong'] [u'burk', u'say', u'vindic', u'katherin', u'result'] [u'bush', u'condemn', u'suicid', u'bomb', u'israel'] [u'cane', u'toad', u'bite', u'attack'] [u'carr', u'announc', u'mental', u'health', u'review'] [u'carr', u'flag', u'sydney', u'harbour', u'port'] [u'carr', u'say', u'poki', u'health'] [u'carr', u'speech', u'outlin', u'work', u'snoop', u'restrict'] [u'celt', u'wreck', u'ranger', u'win'] [u'chechen', u'vote', u'hors', u'race'] [u'child', u'abus', u'claim', u'reignit', u'royal', u'commiss', u'call'] [u'china', u'flood', u'leav', u'homeless'] [u'chines', u'cyber', u'dissid', u'court', u'date'] [u'clock', u'tick', u'arafat', u'expuls', u'israel', u'say'] [u'claim', u'journalist', u'detain', u'bash', u'lago'] [u'fight', u'tassi'] [u'convict', u'killer', u'lose', u'transfer'] [u'darwin', u'polic', u'seek', u'sexual', u'assault'] [u'dent', u'myskina', u'kremlin', u'titl'] [u'depress', u'treatment', u'inappropri', u'expert'] [u'indonesian', u'miss', u'fall'] [u'faulkner', u'fail', u'spot', u'senat', u'ticket'] [u'gut', u'high', u'school', u'classroom'] [u'florida', u'suicid', u'postpon'] [u'frail', u'pope', u'meet', u'anglican', u'leader'] [u'shark', u'fund', u'life', u'saver', u'opposit'] [u'govern', u'hope', u'sell', u'strand', u'sheep'] [u'goward', u'predict', u'pay', u'matern', u'leav', u'solut'] [u'granvill', u'disast', u'rescu', u'coordin', u'die'] [u'harri', u'wow', u'southern', u'rodeo'] [u'hindus', u'honour', u'mother', u'teresa', u'calcutta'] [u'hobart', u'polic', u'unabl', u'locat', u'miss', u'girl'] [u'huston', u'keep', u'shoot', u'edg', u'mississippi'] [u'indian', u'troop', u'shoot', u'dead', u'muslim', u'rebel'] [u'iranian', u'policewomen', u'beat'] [u'iran', u'condit', u'agre', u'sign', u'nuclear'] [u'iraqi', u'soldier', u'clash', u'british', u'troop'] [u'iraqi', u'taxi', u'driver', u'wound', u'kirkuk', u'blast'] [u'iraq', u'unveil', u'saddam', u'banknot'] [u'ireland', u'ahern', u'hope', u'violenc'] [u'islam', u'jihad', u'claim', u'haifa', u'suicid', u'bomb'] [u'israel', u'attack', u'palestinian', u'target', u'syria'] [u'israel', u'retali', u'suicid', u'bomb'] [u'jone', u'unhappi', u'warm', u'shut'] [u'kirbi', u'respond', u'attack', u'high', u'court'] [u'land', u'council', u'odd', u'mismanag', u'claim'] [u'aussi', u'bali', u'bomb', u'survivor', u'leav', u'hospit'] [u'limp', u'owen', u'england', u'fit', u'scare'] [u'voter', u'turnout', u'chechen', u'elect'] [u'disappear', u'north', u'queensland', u'coast'] [u'shoot', u'stomach', u'port', u'melbourn'] [u'wait', u'hour', u'rescu', u'launceston'] [u'mcgrath', u'test', u'india', u'tour'] [u'mcgrath', u'zimbabw', u'test'] [u'namibian', u'fullback', u'snyder', u'world'] [u'prison', u'doubt'] [u'grand', u'final', u'kick'] [u'crash', u'claim', u'life', u'injur'] [u'polic', u'search', u'miss', u'pilot'] [u'palestinian', u'kill', u'west', u'bank', u'raid'] [u'palestinian', u'suicid', u'bomber', u'kill', u'israel'] [u'pandiani', u'target', u'deportivo'] [u'panther', u'captur', u'premiership'] [u'panther', u'hold', u'slender', u'half', u'time', u'lead'] [u'perth', u'rail', u'safe', u'oppn'] [u'philippin', u'push', u'arm'] [u'pire', u'keep', u'arsenal'] [u'placido', u'domingo', u'cancel', u'concert', u'bronchiti'] [u'consult', u'public', u'senat', u'chang'] [u'poland', u'say', u'sorri', u'french', u'missil', u'comment'] [u'polic', u'charg', u'rape', u'assault'] [u'polic', u'hold', u'theft', u'crash', u'sydney'] [u'protest', u'stag', u'outsid', u'summit'] [u'labor', u'dump', u'rort', u'whistleblow'] [u'religi', u'leader', u'poverti', u'forum'] [u'riverland', u'runner', u'prepar', u'streak'] [u'rooster', u'panther', u'count', u'kick'] [u'rooster', u'panther', u'prepar', u'battl'] [u'russian', u'troop', u'alert', u'chechnya', u'go', u'poll'] [u'busi', u'confid', u'year', u'high'] [u'salvo', u'polic', u'team', u'melbourn', u'patrol'] [u'schuettler', u'triumph', u'japan'] [u'schwarzenegg', u'struggl', u'late', u'press'] [u'sharapova', u'win', u'titl'] [u'sheep', u'protest', u'stag', u'gold', u'coast'] [u'springbok', u'best', u'behaviour'] [u'kilda', u'beach', u'tram'] [u'govt', u'urg', u'address', u'declin', u'kelp', u'forest'] [u'teen', u'charg', u'high', u'speed', u'chase', u'adelaid'] [u'tesk', u'trail', u'swede', u'lead', u'california'] [u'thailand', u'round', u'illeg', u'worker', u'ahead', u'apec'] [u'tiger', u'cling', u'lead', u'singh', u'make', u'charg'] [u'tiger', u'maul', u'magician', u'horn', u'vega'] [u'toney', u'stop', u'holyfield', u'ninth', u'round'] [u'turnbul', u'resign', u'liber', u'parti', u'treasur'] [u'afghan', u'soldier', u'kill', u'taliban', u'attack'] [u'ullrich', u'return', u'telekom'] [u'union', u'prepar', u'push', u'agenda', u'labor', u'meet'] [u'china', u'presid', u'address', u'parliament'] [u'congressman', u'accus', u'muslim', u'group', u'ruin'] [u'militari', u'reus', u'emb', u'journalist'] [u'sniper', u'defend', u'iraq', u'pipelin'] [u'govt', u'push', u'manag', u'point', u'nepean'] [u'polic', u'expand', u'search', u'power'] [u'villeneuv', u'dump', u'agent'] [u'voss', u'cap', u'brisban', u'best'] [u'river', u'death', u'prompt', u'call', u'safe', u'cross'] [u'women', u'snub', u'oman', u'elect'] [u'yuvraj', u'india', u'squad', u'zealand', u'test'] [u'zimbabw', u'warrior', u'fight', u'thrill', u'draw'] [u'highway', u'safeti', u'boost'] [u'charg', u'fiji', u'coup', u'polic'] [u'game', u'villag', u'schedul', u'opposit'] [u'administr', u'expect', u'quick', u'sale', u'king', u'island'] [u'agent', u'say', u'gold', u'coast', u'home', u'market', u'bottom'] [u'agforc', u'seek', u'review', u'water', u'bore', u'moratorium'] [u'demonstr', u'plant', u'shut'] [u'arab', u'leagu', u'warn', u'whirlwind', u'violenc'] [u'aussi', u'palmer', u'grinham', u'brit', u'squash', u'titl'] [u'australian', u'kill', u'bridg', u'stunt'] [u'australian', u'lift', u'british', u'squash', u'titl'] [u'author', u'continu', u'plane', u'crash', u'probe'] [u'bandit', u'hold', u'southport', u'store'] [u'villeneuv', u'replac'] [u'barton', u'reject', u'paradis', u'opposit'] [u'beer', u'festiv', u'diehard', u'drink', u'close', u'record'] [u'bum', u'squeez', u'venu'] [u'plan', u'announc', u'newcastl', u'port'] [u'weekend', u'sport', u'western'] [u'black', u'cap', u'look', u'skipper', u'crack', u'india', u'mysteri'] [u'bodi', u'triniti', u'beach'] [u'bomb', u'scare', u'halt', u'singapor', u'airlin', u'flight'] [u'british', u'bank', u'giant', u'take', u'irish', u'mortgag'] [u'burni', u'prove', u'popular'] [u'busselton', u'prepar', u'triathlon', u'event'] [u'access', u'adelaid', u'victoria', u'pipelin'] [u'greater', u'mental', u'health', u'toler'] [u'campbel', u'park', u'revamp', u'tourism', u'push'] [u'canada', u'comeback', u'king', u'tragic', u'injuri', u'blow'] [u'crash', u'victim', u'name'] [u'carr', u'announc', u'north', u'coast', u'region', u'park'] [u'carr', u'launch', u'mental', u'health', u'review'] [u'chechnya', u'rig', u'poll', u'close'] [u'cherri', u'blossom', u'arriv'] [u'china', u'put', u'moon', u'land', u'space', u'agenda'] [u'chines', u'poison', u'reservoir', u'boost', u'purifi'] [u'clearer', u'gold', u'coast', u'recept', u'time'] [u'cloncurri', u'council', u'tell', u'age', u'care', u'centr'] [u'close', u'game', u'croc'] [u'competitor', u'number', u'balloon', u'hot'] [u'construct', u'union', u'strike', u'fascist', u'reform'] [u'coron', u'see', u'wreckag', u'fatal', u'plane', u'crash'] [u'council', u'engin', u'local', u'govt', u'polici'] [u'councillor', u'hop', u'island', u'chang'] [u'council', u'mediat', u'orphanag', u'redevelop'] [u'council', u'worker', u'elector', u'doubl', u'standard'] [u'crespo', u'win', u'chelsea', u'angel', u'rescu', u'villa'] [u'crime', u'fighter', u'meet', u'melbourn'] [u'darwin', u'host', u'dog', u'port', u'clash'] [u'dead', u'whale', u'dispos', u'mammoth', u'problem'] [u'derbi', u'milan'] [u'diet', u'keep', u'children', u'overweight', u'studi'] [u'discount', u'good', u'driver', u'propos'] [u'doctor', u'group', u'warn', u'crisi', u'threaten', u'live'] [u'driver', u'urg', u'care', u'school', u'resum'] [u'driver', u'warn', u'equip', u'remov'] [u'drought', u'hit', u'highland', u'water', u'price'] [u'econom', u'boost', u'plan', u'port', u'kembla'] [u'euthanasia', u'advoc', u'build', u'suicid', u'machin'] [u'fame', u'yorker', u'cartoonist', u'die'] [u'fear', u'air', u'speech', u'patholog', u'job'] [u'fear', u'air', u'track', u'upgrad', u'tourism', u'impact'] [u'feder', u'drought', u'polici', u'review'] [u'feder', u'call', u'territori', u'home', u'soccer'] [u'delay', u'strand', u'sheep', u'ship'] [u'fighter', u'save', u'plan', u'melbourn'] [u'fisher', u'await', u'river', u'dredg'] [u'panther', u'kangaroo', u'tour'] [u'flame', u'strong', u'lightn'] [u'fund', u'question', u'hang', u'women', u'hospit'] [u'futur', u'bright', u'queensland', u'scout'] [u'georgian', u'flanker', u'tear', u'hamstr'] [u'german', u'streak', u'women', u'world', u'final'] [u'germani', u'sweden', u'world', u'final'] [u'good', u'qualiti', u'bull', u'brahman', u'week'] [u'govt', u'say', u'megawati', u'bali', u'ceremoni'] [u'grain', u'grower', u'spoil', u'harvest', u'choic'] [u'green', u'concern', u'spark', u'restrict', u'dredger'] [u'green', u'queri', u'chief', u'scientist', u'tinto', u'role'] [u'green', u'warn', u'tasmanian', u'giant', u'kelp'] [u'gunmen', u'kill', u'pakistani', u'milit', u'turn'] [u'health', u'servic', u'reject', u'debt', u'claim'] [u'helicopt', u'winch', u'miss', u'bushwalk', u'safeti'] [u'high', u'court', u'celebr', u'centenari'] [u'howard', u'pay', u'tribut', u'high', u'court', u'centenari'] [u'huston', u'hold', u'pappa', u'victori', u'mississippi'] [u'indigen', u'artist', u'river', u'mural'] [u'indonesian', u'polic', u'turn', u'blind', u'assault'] [u'intern', u'showcas', u'barossa', u'food', u'wine'] [u'internet', u'rise', u'septemb'] [u'investor', u'ignor', u'warn', u'gold', u'coast', u'tourist'] [u'iran', u'reveal', u'nuclear', u'program', u'part', u'locat'] [u'ironman', u'hurst', u'target', u'olymp', u'swim', u'spot'] [u'judg', u'jail', u'pervert', u'polic', u'offic'] [u'kalgoorli', u'hop', u'build', u'crime', u'initi'] [u'kangaroo', u'vulner', u'anderson'] [u'kill', u'death', u'threat', u'haunt', u'colombian', u'elect'] [u'land', u'earmark', u'rescu', u'group'] [u'lgaq', u'back', u'indigen', u'council', u'chang'] [u'liber', u'fail', u'improv', u'afghan', u'women', u'live'] [u'local', u'govt', u'leader', u'resign', u'south', u'east'] [u'appeal', u'jail', u'sentenc', u'welfar', u'fraud'] [u'mandela', u'inspir', u'springbok', u'thing'] [u'hospit', u'port', u'piri', u'stab'] [u'face', u'court', u'babysitt', u'bash'] [u'maul', u'magician', u'critic', u'stabl', u'tiger'] [u'mayor', u'push', u'transport', u'infrastructur', u'boost'] [u'megawati', u'expect', u'bali', u'memori'] [u'memori', u'centr', u'honour', u'bali', u'victim'] [u'face', u'gang', u'rape', u'charg', u'bunburi', u'court'] [u'minist', u'assess', u'region', u'busi', u'growth'] [u'minist', u'downsiz', u'alic', u'spring', u'develop'] [u'mix', u'respons', u'medic', u'levi', u'decis'] [u'surgeri', u'mcgrath'] [u'mortlock', u'miss', u'open', u'match'] [u'question', u'govt', u'palm', u'move'] [u'fear', u'liquor', u'trade', u'hour'] [u'breakthrough', u'attract', u'nobel', u'medicin', u'prize'] [u'muslim', u'refuge', u'pork', u'detent', u'activist'] [u'nation', u'leader', u'embrac', u'chang'] [u'nat', u'agre', u'wine', u'hard', u'swallow'] [u'netbal', u'recognis', u'communiti', u'effort'] [u'newspap', u'month', u'high'] [u'abattoir', u'put', u'hand', u'strand', u'sheep'] [u'farm', u'spider', u'shop'] [u'nypd', u'high', u'rise', u'tiger'] [u'miss', u'girl', u'search', u'continu'] [u'owen', u'england', u'turkey', u'qualifi'] [u'pakistan', u'firework', u'factori', u'claim', u'live'] [u'panther', u'continu', u'premiership', u'parti'] [u'panther', u'wrong', u'thing', u'sattler', u'john'] [u'panther', u'sunshin', u'coast', u'connect', u'enjoy', u'grand'] [u'papua', u'interven', u'work', u'permit'] [u'peac', u'doubt', u'kremlin', u'win', u'chechen'] [u'perth', u'crew', u'intercept', u'suspect', u'illeg', u'fish'] [u'plan', u'afoot', u'better', u'disabl', u'servic'] [u'plan', u'afoot', u'colli', u'pulp'] [u'eye', u'matern', u'allow'] [u'busi', u'alarm', u'foreign', u'worker'] [u'polic', u'driver', u'care', u'road', u'toll', u'climb'] [u'polic', u'plea', u'safe', u'return', u'home'] [u'polic', u'worker', u'kidnap', u'malaysian'] [u'pope', u'canonis', u'missionari'] [u'princ', u'harri', u'bring', u'econom', u'boom', u'rural'] [u'protest', u'like', u'russian', u'favourit', u'win'] [u'public', u'get', u'swan', u'hill'] [u'public', u'protest', u'colleg', u'closur', u'plan'] [u'public', u'urg', u'water', u'plan'] [u'qlds', u'famili', u'dept', u'condemn', u'child', u'death'] [u'rain', u'bring', u'hope', u'record', u'wheat', u'harvest'] [u'ralli', u'offer', u'wind', u'farm', u'support'] [u'recal', u'parliament', u'day', u'work', u'latham'] [u'relief', u'murray'] [u'report', u'back', u'govt', u'intervent', u'unborn', u'babi'] [u'research', u'aim', u'boost', u'grain', u'yield'] [u'research', u'stop', u'gladston', u'shop', u'exodus'] [u'resid', u'look', u'lower', u'cost'] [u'resourc', u'media', u'buoy', u'ord'] [u'riverfront', u'plan', u'avail', u'soon'] [u'roo', u'bolter', u'waterhous', u'scare', u'pom', u'anderson'] [u'rugbi', u'world', u'fever', u'build', u'townsvill'] [u'govern', u'slam', u'disabl', u'servic', u'slash', u'claim'] [u'give', u'kopassus', u'soldier', u'bodi'] [u'searcher', u'comb', u'blue', u'mountain', u'miss'] [u'search', u'miss', u'teen', u'tokelau', u'island'] [u'secur', u'council', u'meet', u'isra', u'raid'] [u'seven', u'indian', u'kashmir', u'violenc'] [u'sheep', u'protest', u'target', u'parliament', u'hous'] [u'skywest', u'perth', u'broom', u'servic', u'take'] [u'somalia', u'worker', u'report', u'kill', u'gunman'] [u'somar', u'stand', u'deputi', u'despit', u'parti', u'dump'] [u'south', u'east', u'volunt', u'group', u'share', u'fund'] [u'south', u'pacif', u'univers', u'leader', u'siwatibau', u'die'] [u'south', u'west', u'public', u'improv', u'health', u'access'] [u'specialist', u'review', u'job', u'resign'] [u'studi', u'aim', u'eas', u'teen', u'move', u'trauma'] [u'syria', u'demand', u'condemn', u'isra', u'strike'] [u'tasmania', u'warn', u'high', u'petrol', u'price'] [u'premier', u'offer', u'abbott', u'health', u'talk'] [u'telstra', u'convinc', u'mobil', u'problem'] [u'tesk', u'finish', u'second', u'california'] [u'dead', u'atlanta', u'church', u'shoot'] [u'time', u'run', u'mortlock'] [u'dog', u'work', u'scottsdal'] [u'trio', u'question', u'polic', u'ram'] [u'turnbul', u'go', u'elect', u'foot'] [u'union', u'demand', u'better', u'condit', u'centr'] [u'union', u'vow', u'fight', u'sydney', u'port', u'closur'] [u'unpreced', u'secur', u'bali', u'anniversari', u'polic'] [u'warn', u'slide', u'slum', u'dwell'] [u'upbeat', u'pakistan', u'protea', u'lead'] [u'say', u'syria', u'wrong', u'terror'] [u'valencia', u'real', u'madrid', u'danc', u'brazil', u'beat'] [u'oppn', u'give', u'qualifi', u'support', u'region'] [u'villeneuv', u'face', u'farewel'] [u'council', u'probe', u'river', u'cross', u'safeti'] [u'farmer', u'drainag', u'channel', u'work'] [u'govern', u'consid', u'relief', u'nickel', u'plant'] [u'join', u'nation', u'fight', u'salin'] [u'wallabi', u'fear', u'puma', u'forward', u'jone'] [u'wallabi', u'mortlock', u'struggl', u'ill'] [u'weapon', u'inspector', u'promis', u'remark', u'thing'] [u'wellington', u'public', u'quiz', u'hous'] [u'western', u'hurt', u'medic', u'levi', u'doctor'] [u'wind', u'farm', u'eyr', u'peninsula', u'fan', u'hop'] [u'wollongong', u'urg', u'canadian', u'rugbi'] [u'wood', u'clinch', u'titl', u'applebi', u'second'] [u'wool', u'price', u'fall', u'month'] [u'work', u'begin', u'secur', u'rockfal', u'area'] [u'work', u'port', u'crucial', u'sydney', u'charact'] [u'zabel', u'cap', u'telekom', u'weekend', u'ogradi'] [u'acoss', u'urg', u'senat', u'block', u'packag'] [u'open', u'bushfir', u'inquiri'] [u'adopt', u'code', u'face', u'olymp', u'pound', u'warn'] [u'aftershock', u'shake', u'hokkaido'] [u'black', u'william', u'undergo', u'fit', u'test'] [u'claim', u'boundari', u'chang', u'hurt', u'elect', u'chanc'] [u'chief', u'upbeat', u'address', u'doctor'] [u'anim', u'flee', u'ravag', u'zimbabw', u'nation', u'park'] [u'antarct', u'specialist', u'drown', u'tasmania'] [u'anwar', u'make', u'final', u'freedom'] [u'arroyo', u'deni', u'filipino', u'link', u'malaysia', u'kidnap'] [u'asean', u'leader', u'decid', u'tough', u'stand', u'burma'] [u'asylum', u'seeker', u'influx', u'shut', u'south', u'korean', u'embassi'] [u'aussi', u'best', u'behaviour', u'waugh'] [u'australia', u'back', u'commonwealth', u'secretari', u'general'] [u'australia', u'lead', u'rate', u'hike', u'tip'] [u'bali', u'secur', u'tighten', u'ahead', u'asean', u'summit'] [u'bali', u'survivor', u'refer', u'phone', u'threat'] [u'barb', u'world', u'build'] [u'bathurst', u'compos', u'hit', u'right', u'note', u'intern'] [u'beef', u'produc', u'oppos', u'livestock', u'scheme'] [u'bettini', u'chase', u'rainbow'] [u'brisban', u'brown', u'face', u'tribun', u'fall'] [u'brown', u'hand', u'week'] [u'bskyb', u'sell', u'entir', u'stake', u'unit'] [u'burk', u'latham', u'wallabi'] [u'busi', u'look', u'good'] [u'california', u'recal', u'elect', u'enter', u'final', u'stretch'] [u'indigen', u'health', u'boost'] [u'cambodia', u'charg', u'seven', u'record', u'heroin', u'haul'] [u'hold', u'irish', u'say', u'coach'] [u'cat', u'thompson', u'year'] [u'china', u'doubl', u'live', u'cattl', u'import', u'australia'] [u'church', u'condemn', u'car', u'beach'] [u'candid', u'declar', u'member', u'katherin'] [u'club', u'want', u'flaw', u'liquor', u'work'] [u'probe', u'foster', u'famili', u'abus', u'claim'] [u'coff', u'harbour', u'base', u'boon', u'wallabi'] [u'committe', u'hear', u'cardiologist', u'case', u'contract'] [u'computershar', u'size', u'communic', u'compani'] [u'confer', u'kick', u'farm', u'focus'] [u'council', u'back', u'fight', u'rail', u'servic'] [u'council', u'defend', u'dredg', u'despit', u'pollut'] [u'council', u'look', u'localis', u'care'] [u'councillor', u'seek', u'industri', u'firm', u'shed', u'job'] [u'council', u'reject', u'burnett', u'river', u'marina', u'develop'] [u'council', u'reject', u'ax', u'consult', u'claim'] [u'council', u'approv', u'hous', u'applic'] [u'council', u'focus', u'infrastructur'] [u'council', u'tire', u'wait', u'coolac', u'bypass'] [u'council', u'join', u'whale', u'buri', u'effort'] [u'council', u'want', u'govt', u'remov', u'bomb'] [u'countdown', u'vaccin', u'childhood'] [u'crawford', u'captain', u'rule'] [u'cuba', u'deni', u'germ', u'warfar', u'accus'] [u'czech', u'bushwalk', u'rescu', u'night', u'snow'] [u'death', u'spark', u'river', u'cross', u'assess'] [u'develop', u'plan', u'clear', u'darwin', u'mangrov'] [u'offer', u'lead', u'moran', u'probe'] [u'doctor', u'consid', u'strike', u'insur', u'bill'] [u'drought', u'support', u'stop', u'farmer'] [u'dubbo', u'host', u'nuclear', u'wast', u'transport', u'meet'] [u'elder', u'woman', u'attack', u'cemeteri', u'ground'] [u'elkington', u'return', u'aussi', u'action'] [u'england', u'strength', u'georgia', u'clash'] [u'england', u'drop', u'ferdinand', u'turkey', u'match', u'report'] [u'england', u'star', u'ferdinand', u'drug', u'controversi'] [u'chief', u'resign', u'head', u'offic', u'move', u'darwin'] [u'ethanol', u'produc', u'techniqu', u'focus'] [u'event', u'respons', u'influx', u'visitor'] [u'fan', u'honour', u'premiership', u'panther'] [u'fear', u'flow', u'live', u'murray', u'debat'] [u'fear', u'fund', u'cut', u'northern', u'servic'] [u'fijian', u'winger', u'tell', u'lift', u'game'] [u'fiji', u'power', u'boss', u'pledg', u'extra', u'juic', u'world'] [u'fiji', u'readi', u'turn', u'tabl', u'franc'] [u'home', u'buyer', u'warn', u'scam'] [u'injur', u'holiday', u'crash'] [u'fletcher', u'sign', u'england', u'deal'] [u'flintoff', u'bangladesh', u'test'] [u'focus', u'ship', u'port', u'kembla'] [u'dead', u'hostag', u'crisi', u'philippin'] [u'franc', u'confid', u'despit', u'recent', u'defeat'] [u'french', u'prop', u'marconnet', u'fiji', u'japan'] [u'govt', u'consid', u'christma', u'coco', u'island'] [u'govt', u'urg', u'stop', u'play', u'timber', u'blame', u'game'] [u'govt', u'improv', u'indigen', u'access', u'famili', u'record'] [u'grazier', u'hope', u'muster', u'support', u'chopper', u'plan'] [u'harrigan', u'ponder', u'retir'] [u'heal', u'sign', u'spur'] [u'health', u'expert', u'converg', u'cairn'] [u'health', u'worker', u'protest', u'privat', u'sector', u'chang'] [u'health', u'worker', u'strike', u'support', u'newcastl'] [u'hedland', u'hospit', u'condit', u'creat', u'concern'] [u'holiday', u'traffic', u'prompt', u'wildlif', u'warn'] [u'hope', u'wind', u'farm', u'work', u'soon'] [u'horgan', u'irish', u'team'] [u'hospit', u'worker', u'protest', u'privatis'] [u'hospit', u'worker', u'join', u'privatis', u'protest'] [u'ask', u'video', u'footag', u'hall', u'youhana', u'spat'] [u'indemn', u'crisi', u'threaten', u'rural', u'birth', u'doctor'] [u'indian', u'ferri', u'pack', u'schoolchildren', u'sink'] [u'india', u'wrestl', u'open', u'woe'] [u'industri', u'action', u'hit', u'elect', u'surgeri'] [u'insur', u'woe', u'affect', u'railway'] [u'investig', u'reach', u'congo', u'massacr', u'site'] [u'iraq', u'foreign', u'ministri', u'mortar', u'attack'] [u'iraq', u'kuwait', u'border', u'peacekeep', u'signal', u'pullout'] [u'isra', u'soldier', u'shoot', u'dead', u'lebanes', u'border'] [u'itali', u'field', u'strength'] [u'japan', u'maintain', u'right', u'particip', u'nuclear'] [u'japan', u'prepar', u'world'] [u'japan', u'quiz', u'worker', u'china', u'orgi', u'report'] [u'japan', u'report', u'strain', u'diseas'] [u'job', u'boost', u'wind', u'power', u'generat', u'plan'] [u'kangaroo', u'clam', u'campbel', u'snub'] [u'kirbi', u'say', u'terror', u'prolong', u'death', u'penalti'] [u'knight', u'team', u'mat', u'select', u'australian'] [u'labor', u'call', u'return', u'strip'] [u'labor', u'icon', u'concern', u'elect', u'chanc'] [u'land', u'council', u'consid', u'respons', u'jabiluka'] [u'latest', u'rusti', u'site', u'item', u'consid'] [u'lend', u'leas', u'clinch', u'militari', u'contract'] [u'colleagu', u'question', u'turnbul', u'poll'] [u'liber', u'backbench', u'say', u'polit', u'place'] [u'local', u'govt', u'group', u'voic', u'telstra', u'sale', u'fear'] [u'local', u'televis', u'radio', u'risk', u'free', u'trade'] [u'looksmart', u'share', u'plung', u'microsoft', u'pull', u'plug'] [u'arrest', u'highway', u'crash'] [u'kill', u'mobil', u'phone', u'wallet', u'court', u'tell'] [u'aussi', u'worker', u'dont', u'like', u'job', u'survey'] [u'market', u'gain', u'holiday', u'trade'] [u'market', u'slight', u'mix', u'blue', u'chip'] [u'melbourn', u'die', u'buller', u'ski', u'accid'] [u'melbourn', u'showground', u'sell', u'condemn'] [u'merg', u'claim', u'leagu', u'team'] [u'west', u'resurrect', u'rugbi', u'leagu', u'comp'] [u'misplac', u'reconcili', u'prayer', u'land', u'coupl'] [u'fund', u'fight', u'indigen', u'famili', u'violenc'] [u'test', u'resid', u'creat', u'nois', u'bypass'] [u'mortlock', u'open'] [u'mower', u'miss', u'scotland', u'open'] [u'get', u'gippsland', u'race', u'track', u'assur'] [u'reject', u'ruddock', u'meatwork', u'idea'] [u'gaug', u'public', u'view', u'rail', u'closur', u'plan'] [u'ruddock', u'guarante', u'independ', u'court'] [u'chechen', u'presid', u'vow', u'ruthless', u'crackdown'] [u'govt', u'minist', u'swear'] [u'year', u'rate', u'hike', u'concern', u'busi'] [u'korea', u'tri', u'japan', u'nuclear', u'talk'] [u'compo'] [u'northam', u'redevelop', u'hit', u'second', u'stage'] [u'border', u'hamper', u'firefight'] [u'hospit', u'worker', u'strike', u'privatis'] [u'oneil', u'wont', u'stand'] [u'owen', u'injuri', u'crisi', u'mount'] [u'pacif', u'job', u'aussi', u'retir', u'vanuatu'] [u'palestinian', u'resist', u'crackdown', u'milit'] [u'paradis', u'face', u'huge', u'cost', u'blow'] [u'parent', u'view', u'need', u'curb', u'drink', u'rat'] [u'pavarotti', u'sound', u'career', u'sing', u'teacher'] [u'philippin', u'join', u'aust', u'major', u'alli'] [u'pirat', u'sink'] [u'abbott', u'urg', u'doctor', u'cooper', u'medic'] [u'militari', u'hunt', u'wartim', u'gold'] [u'polic', u'tougher', u'bike', u'helmet'] [u'polic', u'happi', u'long', u'weekend', u'driver'] [u'polic', u'probe', u'lennox', u'head', u'pedestrian', u'accid'] [u'polic', u'question', u'homeless', u'dead'] [u'polic', u'seek', u'wit', u'abduct', u'attempt'] [u'polic', u'probe', u'attempt', u'child', u'abduct'] [u'pope', u'health', u'hold', u'final', u'trip', u'pompeii'] [u'port', u'plan', u'lead', u'multi', u'purpos', u'termin'] [u'port', u'plan', u'consid', u'good', u'news', u'england'] [u'premier', u'support', u'kalgoorli', u'boulder'] [u'pressur', u'arafat', u'swear', u'emerg', u'cabinet'] [u'princ', u'harri', u'nomin', u'beef', u'ambassador'] [u'puma', u'rolando', u'martin', u'retir', u'world'] [u'govt', u'seek', u'rent', u'assist', u'review'] [u'rain', u'dampen', u'gold', u'coast'] [u'rain', u'help', u'avoid', u'water', u'restrict'] [u'ranger', u'remov', u'johnston', u'river', u'croc'] [u'rann', u'foreshadow', u'mine', u'boom', u'wave', u'goodby'] [u'razzak', u'hit', u'protea', u'lose', u'control'] [u'receivership', u'place', u'age', u'care', u'bond', u'risk'] [u'reef', u'ground', u'case', u'adjourn'] [u'registrar', u'unabl', u'challeng', u'name', u'rule', u'lawyer'] [u'research', u'project', u'test', u'reaction', u'forestri'] [u'resid', u'angri', u'abattoir', u'decis'] [u'rspca', u'urg', u'owner', u'pet'] [u'govt', u'return', u'biospher', u'park', u'indigen'] [u'samoa', u'promis', u'champagn', u'rugbi'] [u'pressur', u'centr', u'code'] [u'give', u'vet', u'minist', u'thumb'] [u'sato', u'replac', u'villeneuv'] [u'saudi', u'arabia', u'behead', u'pakistani', u'drug', u'smuggler'] [u'scotland', u'half', u'rat', u'england', u'rugbi', u'world'] [u'scotland', u'half', u'tip', u'england', u'mccallion', u'flay'] [u'scottsdal', u'age', u'care', u'resid', u'farmyard'] [u'serena', u'real', u'number', u'say', u'clijster'] [u'shire', u'happi', u'power', u'plant', u'plan'] [u'shock', u'defeat', u'robredo', u'vienna'] [u'singl', u'market', u'domin', u'asean', u'talk'] [u'resort', u'benefit', u'sar', u'terrorist', u'threat'] [u'solomon', u'polic', u'exhum', u'alleg', u'keke', u'victim', u'grave'] [u'spectacular', u'meteor', u'crack', u'sound', u'barrier', u'perth'] [u'springbok', u'skipper', u'say', u'team', u'closer'] [u'state', u'gold', u'toowoomba', u'green'] [u'steffi', u'make', u'andr'] [u'stop', u'work', u'loom', u'health', u'privatis'] [u'strong', u'currenc', u'cap', u'farmer', u'return'] [u'strong', u'respons', u'live', u'export', u'petit'] [u'syria', u'court', u'support'] [u'syria', u'push', u'revis', u'resolut', u'isra'] [u'tassi', u'wine', u'get', u'danish', u'royal', u'seal', u'approv'] [u'teen', u'crash', u'steal', u'dead'] [u'tenni', u'great', u'announc', u'birth', u'second', u'child'] [u'theme', u'park', u'spar', u'shark', u'cruelti', u'charg'] [u'tibetan', u'monk', u'letter', u'accus', u'china', u'tortur'] [u'earli', u'predict', u'bumper', u'grain', u'harvest'] [u'tourism', u'campaign', u'use', u'real', u'peopl'] [u'tourism', u'chief', u'lament', u'clune', u'credit', u'union', u'closur'] [u'tourism', u'push', u'riverland'] [u'trio', u'make', u'quantum', u'leap', u'nobel', u'physic', u'prize'] [u'artist', u'build', u'replica', u'guantanamo', u'camp'] [u'ullrich', u'target', u'armstrong'] [u'union', u'say', u'australian', u'offici', u'arrest', u'east'] [u'union', u'warn', u'govt', u'child', u'abus', u'crisi'] [u'scholarship', u'honour', u'bali', u'victim'] [u'peacekeep', u'bodi', u'central', u'africa'] [u'court', u'refus', u'world', u'trade', u'centr', u'bomber', u'appeal'] [u'monitor', u'predict', u'worldwid', u'grain', u'shortag'] [u'resolut', u'iraq', u'make', u'progress'] [u'swap', u'colombia', u'militari', u'immun'] [u'veron', u'tell'] [u'vice', u'chancellor', u'criticis', u'sydney', u'strike'] [u'opposit', u'seek', u'action', u'combat', u'drug'] [u'policeman', u'clear', u'murder'] [u'victoria', u'ticket', u'fin', u'hike', u'doyl'] [u'govt', u'releas', u'desalin', u'pipelin', u'report'] [u'wallabi', u'squad', u'open'] [u'prepar', u'cyclon', u'season'] [u'weather', u'condit', u'spark', u'mozzi', u'virus', u'warn'] [u'whyalla', u'plan', u'solar', u'power', u'plant'] [u'william', u'blake', u'defend', u'hopman'] [u'wool', u'grower', u'urg', u'discuss', u'poll'] [u'wool', u'market', u'woe', u'tambo'] [u'zim', u'grow', u'flower', u'say', u'blignaut'] [u'abattoir', u'develop', u'await', u'appeal', u'outcom'] [u'casual', u'bushfir', u'risk', u'inquest', u'tell'] [u'deni', u'draw', u'favour', u'pie'] [u'ail', u'lock', u'travel', u'black'] [u'allenbi', u'applebi', u'confirm', u'australian', u'open'] [u'amnesti', u'intern', u'sponsor', u'adelaid', u'music'] [u'appoint', u'benefit', u'hospit', u'patient', u'staff'] [u'arafat', u'recov', u'mild', u'heart', u'attack', u'british'] [u'arni', u'support', u'confid'] [u'arson', u'eaglehawk', u'shop', u'blaze'] [u'arthriti', u'drug', u'test', u'prematur', u'babi'] [u'asean', u'talk', u'free', u'trade', u'democraci', u'aggress'] [u'attack', u'strike', u'troop', u'iraq', u'foreign', u'ministri'] [u'aussi', u'dollar', u'tip', u'reach', u'cent', u'level'] [u'aussi', u'finish', u'sixth', u'world', u'champ'] [u'aust', u'england', u'extra', u'secur'] [u'aust', u'lobbi', u'fail', u'save', u'histor', u'changi', u'prison'] [u'australia', u'monitor', u'sar', u'world'] [u'award', u'central', u'victorian', u'tourism'] [u'ax', u'ferdinand', u'deni', u'drug'] [u'botha', u'expect', u'return', u'open'] [u'bali', u'bomb', u'accomplic', u'jail'] [u'bali', u'survivor', u'posit', u'outlook', u'life'] [u'beat', u'wallabi', u'argentina', u'skipper'] [u'beckham', u'join', u'wilkinson', u'corner'] [u'jump', u'wimmera', u'malle', u'pipelin', u'cost'] [u'blind', u'barrier', u'high', u'fli', u'adventur'] [u'bosnian', u'serb', u'revers', u'guilti', u'plea'] [u'launch', u'broadway', u'ambit'] [u'bunburi', u'urg', u'govt', u'health', u'fund'] [u'burdekin', u'grower', u'predict', u'record', u'sugar', u'season'] [u'bush', u'doubt', u'white', u'hous', u'sourc', u'leak'] [u'better', u'grain', u'plan', u'weather', u'lean'] [u'land', u'council', u'execut', u'sack'] [u'canadian', u'media', u'baron', u'die'] [u'carr', u'deni', u'port', u'overhaul', u'close', u'sydney', u'harbour'] [u'cattl', u'quarantin', u'japan', u'outbreak'] [u'cell', u'discoveri', u'earn', u'chemist', u'nobel', u'prize'] [u'champ', u'defend', u'ironman', u'titl'] [u'china', u'set', u'date', u'man', u'space', u'flight'] [u'chines', u'construct', u'site', u'collaps', u'kill'] [u'christma', u'label', u'sheep', u'offload', u'plan', u'laughabl'] [u'claim', u'elig', u'compo'] [u'clijster', u'opt', u'showdown'] [u'code', u'sourc', u'theft', u'take', u'life', u'vivendi', u'sale'] [u'coldplay', u'singer', u'fate', u'polic', u'hand'] [u'commiss', u'lift', u'contract', u'miner'] [u'conserv', u'park', u'return', u'aborigin'] [u'contractor', u'continu', u'hazard', u'reduct'] [u'contractor', u'cost', u'delay', u'townsvill', u'work'] [u'corpor', u'reform', u'help', u'execut', u'salari'] [u'costello', u'back', u'fair', u'fight', u'wentworth'] [u'council', u'back', u'controversi', u'port', u'expans'] [u'councillor', u'put', u'polit', u'career', u'hold'] [u'council', u'lobbi', u'govern', u'clean'] [u'court', u'order', u'tobacco', u'exec', u'appear', u'trial'] [u'danish', u'govt', u'okay', u'australian', u'royal', u'bride'] [u'danish', u'princ', u'marri', u'appl'] [u'depart', u'measur', u'impact', u'cage', u'regul'] [u'doctor', u'withdraw', u'servic', u'despit', u'levi'] [u'dollar', u'break', u'cent'] [u'dollar', u'shoot', u'year', u'high'] [u'dolphin', u'die', u'beach', u'strand'] [u'domest', u'violenc', u'counsel', u'go', u'high', u'tech'] [u'dpis', u'poor', u'sugar', u'outlook', u'surpris'] [u'dravid', u'centuri', u'anchor', u'india'] [u'congo', u'massacr', u'toll', u'hit'] [u'environment', u'group', u'condemn', u'transport', u'nuclear'] [u'wont', u'legal', u'action', u'chemic', u'scare'] [u'eurobodalla', u'face', u'tougher', u'water', u'restrict'] [u'exit', u'poll', u'point', u'arni'] [u'farmer', u'urg', u'drought', u'effort'] [u'fear', u'adelaid', u'suburban', u'sunday', u'trade', u'hurt'] [u'fear', u'air', u'region', u'engin', u'number'] [u'feder', u'stay', u'cours', u'number'] [u'govt', u'reject', u'reduc', u'servic', u'claim'] [u'govt', u'reject', u'wimmera', u'malle', u'drought', u'attack'] [u'fewer', u'rare', u'parrot', u'sight', u'south', u'west'] [u'fin', u'increas', u'keep', u'feral', u'pig'] [u'firefight', u'tackl', u'kimberley', u'blaze'] [u'fix', u'term', u'prevent', u'dictatori', u'senat', u'clerk'] [u'forens', u'sampl', u'take', u'murder', u'accus'] [u'cathol', u'priest', u'jail', u'year'] [u'tobacco', u'solicitor', u'continu', u'fight', u'avoid'] [u'time', u'medic', u'specialist', u'levi', u'fight'] [u'fund', u'flow', u'church', u'restor'] [u'furyk', u'gain', u'grind', u'leader', u'skip', u'vega'] [u'gleeson', u'aim', u'aussi', u'miss'] [u'goldfield', u'esper', u'share', u'fund'] [u'gold', u'open', u'colleg'] [u'good', u'rural', u'forecast'] [u'govt', u'say', u'hick', u'habib', u'human', u'treat'] [u'govt', u'urg', u'consid', u'squat', u'right'] [u'greenhous', u'effect', u'blame', u'rock', u'lobster', u'boom'] [u'gregan', u'mileston'] [u'group', u'want', u'mental', u'health', u'fund', u'maintain'] [u'half', u'million', u'aussi', u'high', u'speed', u'internet'] [u'heavi', u'rainfal', u'record'] [u'henin', u'hardenn', u'begin', u'unseat', u'clijster'] [u'hospit', u'staff'] [u'howard', u'releas', u'senat', u'propos'] [u'illeg', u'fish', u'crackdown', u'net', u'boat'] [u'insur', u'disput', u'stall', u'stromlo', u'observatori'] [u'interact', u'highlight', u'mental', u'health'] [u'interdict', u'group', u'draft', u'aviat', u'secur', u'drill'] [u'rate', u'freez', u'boost', u'bank', u'stock', u'market'] [u'iranian', u'find', u'inquiri', u'photograph', u'death'] [u'iraq', u'attack', u'kill', u'troop', u'hour'] [u'iraqi', u'shiit', u'continu', u'protest', u'cleric'] [u'isra', u'troop', u'section', u'gaza', u'terror', u'control'] [u'jone', u'shrug', u'home', u'defenc', u'pressur'] [u'jone', u'urg', u'refere', u'spectacl'] [u'karzai', u'deni', u'taliban', u'foreign', u'minist', u'free'] [u'labor', u'backbench', u'threaten', u'snub', u'presid'] [u'land', u'council', u'say', u'court', u'case', u'wont', u'hurt'] [u'leed', u'cooper', u'polic', u'assault'] [u'liquor', u'licenc', u'cost', u'wineri', u'thousand'] [u'lomu', u'honour', u'special', u'award'] [u'macgil', u'get'] [u'mafia', u'doubl', u'decker', u'coffin', u'bodi', u'dispos'] [u'major', u'power', u'failur', u'black', u'czech', u'republ'] [u'malaysian', u'vandalis', u'rout', u'australia'] [u'malaysian', u'call', u'aust', u'clarifi', u'allegi'] [u'charg', u'felin', u'flatmat', u'miss'] [u'crech', u'offer', u'frustrat', u'femal', u'shopper'] [u'kill', u'jail', u'multipl', u'murder'] [u'manufactur', u'pool', u'accid', u'stori', u'court', u'tell'] [u'face', u'court', u'lavington', u'incid'] [u'maralinga', u'tradit', u'owner', u'handov', u'term'] [u'meet', u'plan', u'discuss', u'turkish', u'troop', u'deploy'] [u'melbourn', u'construct', u'worker', u'strike'] [u'melbourn', u'make', u'stop'] [u'geraldton', u'centr'] [u'west', u'group', u'compet', u'green', u'award'] [u'militari', u'claim', u'kill', u'aceh', u'rebel'] [u'minist', u'boycott', u'cabinet', u'swear', u'ceremoni'] [u'prevent', u'work', u'undertak'] [u'strike', u'promis', u'health', u'privatis'] [u'air', u'medic', u'indemn', u'solut'] [u'happi', u'corangamit', u'preselect'] [u'reflect', u'reduc', u'public', u'drunken'] [u'murder', u'investig', u'prison', u'dead'] [u'navi', u'part', u'respons', u'drink', u'drive', u'fatal'] [u'chapter', u'open', u'riverina', u'librari', u'servic'] [u'legisl', u'enhanc', u'qlds', u'tourism', u'industri'] [u'tenanc', u'law', u'boost', u'small', u'busi'] [u'evid', u'support', u'fals', u'passport', u'claim'] [u'polic', u'radio', u'upgrad', u'black', u'spot'] [u'abandon', u'impoverish', u'children', u'report'] [u'minist', u'deni', u'plagiar', u'claim'] [u'opposit', u'question', u'dodgi', u'medic', u'indemn'] [u'opposit', u'seek', u'explain', u'return'] [u'pacif', u'airlin', u'staff', u'strike'] [u'pakistan', u'conduct', u'missil', u'test'] [u'parliament', u'tell', u'drought', u'take', u'toll', u'western'] [u'alic', u'reserv'] [u'philippin', u'malaysia', u'track', u'resort', u'staff', u'kidnapp'] [u'releas', u'senat', u'reform', u'propos'] [u'polic', u'happi', u'miss', u'camper', u'search'] [u'polic', u'interview', u'prison', u'gangland', u'slay'] [u'polic', u'seek', u'see', u'hammer', u'homeless'] [u'polic', u'trainer', u'caution', u'recruit', u'abus'] [u'politician', u'back', u'anim', u'feed'] [u'presid', u'pledg', u'iran', u'assist', u'nuclear'] [u'prison', u'face', u'charg'] [u'protea', u'claim', u'victori', u'violenc', u'sweep', u'citi'] [u'public', u'deficit', u'put', u'franc', u'breach', u'rule'] [u'public', u'warn', u'fall', u'powerlin', u'danger'] [u'health', u'upbeat', u'whitsunday', u'measl', u'fight'] [u'reserv', u'leav', u'rat', u'unchang'] [u'riot', u'follow', u'slay', u'pakistani', u'funer'] [u'rise', u'floodwat', u'displac', u'chines'] [u'road', u'safeti', u'campaign', u'deliv', u'mix', u'result'] [u'robson', u'name', u'nigeria', u'coach'] [u'roma', u'receiv', u'grant', u'cultur', u'precinct', u'project'] [u'rspca', u'wont', u'charg', u'world', u'shark'] [u'outlin', u'prefer', u'highway', u'option'] [u'sack', u'wool', u'worker', u'seek', u'bigger', u'payout'] [u'safin', u'comeback', u'falter', u'lyon'] [u'schumach', u'aim', u'doubl', u'japan'] [u'schwarzenegg', u'claim', u'victori', u'california', u'poll'] [u'schwarzenegg', u'homeland', u'welcom', u'victori'] [u'search', u'mine', u'mecca'] [u'asia', u'vulner', u'terror', u'attack', u'expert'] [u'secur', u'concern', u'ahead', u'bali'] [u'secur', u'upgrad', u'bathurst'] [u'sharon', u'warn', u'syria', u'action'] [u'figur', u'studi', u'valu', u'world', u'class'] [u'korea', u'find', u'north', u'talk', u'stanc', u'improp'] [u'south', u'africa', u'broker', u'burundi', u'peac', u'deal'] [u'spanish', u'french', u'polic', u'swoop', u'suspect'] [u'mooroopna', u'factori', u'buyer'] [u'spear', u'fight', u'week', u'life', u'communiti'] [u'specialist', u'medic', u'liabil', u'reform', u'deadlin'] [u'state', u'defend', u'govt', u'road', u'record'] [u'state', u'want', u'govt', u'cattl', u'properti'] [u'studi', u'consid', u'hors', u'centr', u'viabil'] [u'summit', u'number', u'drop', u'town', u'lose', u'transport'] [u'supermarket', u'secur', u'beckham'] [u'survey', u'highlight', u'young', u'drink', u'woe'] [u'sydney', u'port', u'closur', u'crucial', u'region', u'economi'] [u'legal', u'limit', u'jail', u'case'] [u'teen', u'gold', u'coast', u'road', u'crash'] [u'teen', u'face', u'charg', u'fatal', u'road', u'crash'] [u'telstra', u'servic', u'figur', u'fiddl', u'labor'] [u'thousand', u'flock', u'rural', u'field', u'day'] [u'soldier', u'kill', u'iraq'] [u'time', u'wallabi', u'line', u'experi', u'ella'] [u'earli', u'decid', u'eas', u'water', u'restrict'] [u'research', u'centr', u'focus', u'marin'] [u'topsi', u'turvi', u'start', u'commonwealth', u'countri', u'summit'] [u'public', u'servant', u'die'] [u'tour', u'oper', u'worri', u'elector', u'boundari'] [u'trade', u'offici', u'garner', u'busi', u'opportun'] [u'trade', u'hall', u'council', u'support', u'port', u'polici'] [u'train', u'driver', u'hope', u'break', u'drug', u'test', u'impass'] [u'turkish', u'parliament', u'approv', u'troop', u'iraq'] [u'turk', u'express', u'uneas', u'iraq', u'deploy'] [u'union', u'claim', u'hospit', u'strike', u'success'] [u'polic', u'accus', u'assault', u'australian', u'union'] [u'uruguay', u'leav', u'late', u'goalkick', u'bench'] [u'prosecutor', u'appeal', u'sept', u'court'] [u'tri', u'black', u'market', u'iraqi', u'weapon'] [u'vanston', u'maintain', u'govt', u'tough', u'immigr', u'stanc'] [u'construct', u'worker', u'ralli', u'industri'] [u'construct', u'worker', u'strike'] [u'govt', u'deni', u'council', u'game', u'fund', u'claim'] [u'parliament', u'hear', u'toxic', u'plant', u'petit'] [u'improv', u'child', u'death', u'probe'] [u'push', u'chang', u'suprem', u'court'] [u'victorian', u'govt', u'announc', u'closer', u'watch', u'multipl'] [u'vietnam', u'tone', u'wed', u'parti'] [u'look', u'japan', u'trade', u'option'] [u'minist', u'label', u'road', u'fund', u'threat'] [u'afford', u'world', u'hand', u'out', u'rugbi', u'boss'] [u'winemak', u'drink', u'earli', u'success'] [u'woolsh', u'get', u'award', u'honour'] [u'work', u'begin', u'gambier', u'skate', u'park'] [u'world', u'youth', u'complac', u'aid'] [u'chief', u'risk', u'lame', u'duck', u'status', u'talk', u'collaps'] [u'youth', u'worker', u'demand', u'talk', u'premier'] [u'aborigin', u'women', u'unit', u'child', u'abus'] [u'aborigin', u'refuge', u'group', u'plan', u'world', u'protest'] [u'accc', u'defend', u'interconnector', u'subsidi', u'decis'] [u'manag', u'plan', u'time'] [u'jobless', u'rate', u'unchang'] [u'antibiot', u'delay', u'alzheim', u'symptom', u'research'] [u'anti', u'depress', u'prescript', u'concern', u'medic'] [u'applebi', u'lead', u'vega'] [u'aussi', u'heartbreak', u'podium', u'near', u'miss'] [u'barra', u'season', u'shut', u'gulf', u'water'] [u'bayliss', u'look', u'malaysia'] [u'beachley', u'advanc', u'quarter', u'final', u'french'] [u'beachley', u'track', u'world', u'rank'] [u'beatti', u'call', u'queensland', u'rememb'] [u'belgium', u'court', u'reject', u'falungong', u'suit'] [u'turnout', u'farewel', u'armidal', u'famili'] [u'black', u'player', u'deserv', u'place', u'flower'] [u'block', u'bill', u'public', u'vote', u'democrat'] [u'boati', u'welcom', u'safeti', u'chang'] [u'bok', u'drama', u'bring', u'team', u'closer'] [u'bombay', u'polic', u'disconnect', u'flash', u'mob'] [u'bomber', u'releas', u'solomon'] [u'brazil', u'kill', u'squad', u'activ', u'envoy'] [u'bring', u'sheep', u'home', u'wipe', u'nativ', u'speci'] [u'british', u'compani', u'make', u'lehmann', u'win'] [u'break', u'hill', u'possibl', u'site', u'luhrmann', u'movi'] [u'budget', u'deficit', u'loom', u'mildura', u'hospit'] [u'bush', u'visit', u'setback', u'outback', u'summit'] [u'busi', u'ask', u'join', u'agricultur', u'colleg', u'ralli'] [u'businesswoman', u'prepar', u'return', u'bali'] [u'council', u'refuge', u'support'] [u'region', u'consid', u'call'] [u'calm', u'reject', u'neighbour', u'claim'] [u'canadian', u'avant', u'gard', u'jewel', u'fund', u'stir'] [u'canadian', u'parti', u'lobbi', u'mugab', u'arrest'] [u'cancer', u'survivor', u'marsh', u'name', u'french', u'team'] [u'carr', u'reject', u'oppn', u'ship', u'trade', u'infrastructur', u'doubt'] [u'cat', u'sharpen', u'claw', u'fanci', u'felin'] [u'cattl', u'industri', u'renew', u'call', u'meat', u'offic'] [u'chang', u'afoot', u'ambo', u'hospit', u'delay'] [u'china', u'flood', u'kill', u'rain', u'come'] [u'chines', u'hunger', u'stainless', u'steel', u'feed', u'aust'] [u'chines', u'presid', u'doesnt', u'belong', u'democrat'] [u'coalit', u'iraqi', u'council', u'clash', u'turkish'] [u'colombian', u'guerilla', u'hostag', u'appear'] [u'contamin', u'food', u'spark', u'outbreak'] [u'council', u'consid', u'club', u'high', u'water'] [u'council', u'fear', u'sport', u'fund', u'cut'] [u'council', u'look', u'reopen', u'rail', u'cross'] [u'councillor', u'move', u'stop', u'road', u'build'] [u'countri', u'meet', u'discuss', u'interdict', u'initi'] [u'cunnamulla', u'farm', u'put', u'effluent', u'good'] [u'darl', u'down', u'prove', u'popular', u'tourist'] [u'doctor', u'want', u'ongo', u'patient', u'cost', u'remov'] [u'dravid', u'doubl', u'put', u'india', u'command'] [u'dubbo', u'rule', u'site', u'trial'] [u'duti', u'scheme', u'useless', u'canberra', u'home', u'buyer'] [u'educ', u'dept', u'staff', u'strike', u'razor', u'plan'] [u'england', u'player', u'angri', u'despit', u'boycott', u'backdown'] [u'england', u'player', u'boycott', u'threat'] [u'england', u'scrum', u'half', u'dawson', u'open'] [u'iceman', u'cling', u'championship', u'dream'] [u'favourit', u'unbeaten', u'french'] [u'favourit', u'burden', u'kiwi'] [u'fiji', u'sport', u'minist', u'refus', u'visa', u'attend', u'rugbi'] [u'firefight', u'gain', u'control', u'kimberley', u'blaze'] [u'branch', u'presid', u'face', u'court', u'child'] [u'inspector', u'warn', u'poor', u'crane', u'driver', u'train'] [u'leisur', u'centr', u'financ', u'manag', u'face'] [u'frenchwoman', u'atlant', u'west', u'east'] [u'negoti', u'deni', u'treason', u'charg'] [u'geolog', u'serpent', u'naga', u'firebal'] [u'georgian', u'scar', u'england', u'clash'] [u'gladston', u'hotel', u'get', u'green', u'light', u'adult'] [u'gold', u'coast', u'memori', u'honour', u'bali', u'bomb', u'victim'] [u'governor', u'arni', u'give', u'movi', u'career'] [u'governor', u'general', u'welcom', u'world', u'chief', u'justic'] [u'govt', u'back', u'indemn', u'levi'] [u'govt', u'issu', u'warn', u'bali', u'ceremoni'] [u'govt', u'move', u'clamp', u'prison', u'secur'] [u'govt', u'urg', u'streamlin', u'aquacultur', u'approv'] [u'govt', u'urg', u'offer', u'afghani', u'perman', u'resid'] [u'gregan', u'confid', u'play', u'open'] [u'approv', u'burrup', u'methanol', u'plant'] [u'hampstead', u'control', u'tran', u'tasman', u'test'] [u'harri', u'potter', u'excerpt', u'help', u'german', u'homeless'] [u'hayden', u'savag', u'zimbabw'] [u'header', u'head', u'west', u'muster'] [u'health', u'care', u'develop', u'promis', u'job', u'boost'] [u'hewitt', u'focus', u'davi'] [u'horror', u'indonesian', u'smash', u'claim', u'live'] [u'hospic', u'group', u'tri', u'fund', u'shortfal'] [u'hunter', u'water', u'urg', u'review', u'overtim', u'polici'] [u'hurst', u'chanc', u'swim', u'team', u'cotterel'] [u'hurst', u'chanc', u'make', u'nation', u'swim'] [u'india', u'put', u'black', u'cap', u'rack'] [u'indonesia', u'australia', u'discuss', u'fight', u'region'] [u'industri', u'toy', u'christma', u'wish', u'list'] [u'injuri', u'open', u'rugbi', u'world', u'chanc', u'molong'] [u'injuri', u'worri', u'england', u'ahead', u'open'] [u'inquest', u'hear', u'plan', u'fail', u'consid', u'larg'] [u'iranian', u'woman', u'hang', u'strangl'] [u'iraq', u'grenad', u'attack', u'kill', u'soldier'] [u'iraq', u'chang', u'honour', u'arni'] [u'japanes', u'dog', u'style', u'canin', u'cafe'] [u'jobless', u'rate', u'rise'] [u'judg', u'reject', u'milk', u'law', u'review', u'applic'] [u'kiwi', u'lead', u'seven', u'team', u'battl'] [u'krige', u'miss', u'springbok', u'open'] [u'labor', u'accus', u'govt', u'trickeri'] [u'labor', u'decid', u'turn', u'bush'] [u'lack', u'sperm', u'donor', u'render', u'program', u'infertil'] [u'larrikin', u'beem', u'commit', u'aussi'] [u'leed', u'player', u'releas', u'polic', u'question'] [u'lion', u'hart', u'season'] [u'charg', u'bendigo', u'blaze'] [u'fin', u'indec', u'assault'] [u'liabl', u'woman', u'stomp', u'injuri', u'court'] [u'offer', u'help', u'critic', u'court', u'tell'] [u'face', u'court', u'council', u'properti', u'damag'] [u'spear', u'wound', u'leg', u'charg', u'woman'] [u'market', u'edg', u'higher', u'dollar', u'hit', u'year', u'high'] [u'mayor', u'call', u'australia', u'nomin'] [u'mayor', u'urg', u'flood', u'map', u'accept'] [u'worker', u'protest', u'enterpris'] [u'crowd', u'enjoy', u'elmor', u'field', u'day'] [u'victorian', u'look', u'work'] [u'mortgag', u'lender', u'surviv', u'major', u'hous'] [u'mother', u'murder', u'charg', u'undergo', u'mental'] [u'flag', u'burn', u'fail'] [u'murphi', u'fastest', u'bathurst', u'practic'] [u'nation', u'trust', u'concern', u'sydney', u'harbour', u'plan'] [u'navi', u'sonar', u'blame', u'bend', u'whale'] [u'near', u'strength', u'favourit', u'zealand'] [u'allianc', u'form', u'fight', u'possibl', u'pine'] [u'health', u'committe', u'establish'] [u'mum', u'warn', u'inadequ', u'servic', u'insur'] [u'newspap', u'owner', u'urg', u'sharehold', u'reject'] [u'jobless', u'rate', u'fall', u'slight'] [u'dairi', u'promot', u'inspir', u'australian', u'rural', u'lobbi'] [u'say', u'wont', u'nuclear', u'polici'] [u'odd', u'pope', u'nobel', u'peac', u'prize'] [u'olonga', u'grant', u'extend', u'refug', u'britain'] [u'opposit', u'condemn', u'dental', u'wait', u'list'] [u'owen', u'england', u'euro', u'qualifi'] [u'owner', u'ravag', u'carpet', u'busi', u'lament', u'loss'] [u'park', u'sale', u'profit', u'communiti'] [u'parliament', u'pay', u'tribut', u'ahead', u'bali', u'anniversari'] [u'pentagon', u'criticis', u'silenc', u'journalist'] [u'pipelin', u'manag', u'confid', u'project', u'futur'] [u'plan', u'boost', u'tennant', u'creek', u'race', u'meet'] [u'confirm', u'honour', u'indonesian', u'polic'] [u'wont', u'pursu', u'senat', u'chang', u'communiti'] [u'polic', u'obstruct', u'media', u'chase', u'miss', u'gold'] [u'polic', u'arrest', u'english', u'footbal', u'gang', u'rape'] [u'polic', u'investig', u'servic', u'station', u'robberi'] [u'polic', u'probe', u'attempt', u'carri', u'razor', u'blade'] [u'polic', u'probe', u'video', u'shop'] [u'polic', u'releas', u'zimbabw', u'unionist', u'guilt'] [u'polit', u'word', u'erupt', u'bushfir'] [u'price', u'pass', u'perth', u'clash'] [u'priest', u'victim', u'prepar', u'launch', u'group', u'action'] [u'prison', u'escap', u'prompt', u'releas', u'review'] [u'probe', u'begin', u'townsvill', u'prison', u'death'] [u'professor', u'attempt', u'bring', u'mammoth', u'life'] [u'puma', u'test', u'open', u'wallabi'] [u'govt', u'ask', u'tuna', u'boat', u'compo'] [u'govt', u'releas', u'child', u'death', u'figur'] [u'jobless', u'rate', u'fall'] [u'quri', u'offer', u'resign', u'arafat', u'report'] [u'rainwat', u'tank', u'scheme', u'prove', u'popular'] [u'rain', u'wont', u'wash', u'away', u'world', u'ceremoni'] [u'region', u'milit', u'replac', u'weak', u'qaeda', u'expert'] [u'report', u'mobil', u'phone', u'explos', u'vietnam'] [u'resid', u'upset', u'council', u'fuelwatch', u'decis'] [u'rise', u'dollar', u'push', u'price'] [u'robinson', u'look', u'impress', u'rugbi'] [u'roger', u'creat', u'havoc', u'fullback'] [u'continu', u'swim', u'coach', u'sack'] [u'rugbi', u'take', u'centr', u'stage'] [u'russian', u'march', u'germani'] [u'court', u'find', u'wife', u'murder', u'husband'] [u'jobless', u'rate', u'fall'] [u'school', u'discrimin', u'teach', u'sign', u'languag'] [u'schooli', u'nois', u'anger', u'gold', u'coast', u'resid'] [u'schuettler', u'grosjean', u'retir', u'lyon'] [u'schumach', u'take', u'titl', u'grant'] [u'search', u'council', u'general', u'manag', u'delay'] [u'senat', u'report', u'aim', u'reconcili'] [u'shire', u'join', u'forc', u'oppos', u'plantat', u'sell'] [u'smoker', u'urg', u'check', u'oral', u'cancer'] [u'solomon', u'polic', u'link', u'keke', u'missionari', u'murder'] [u'south', u'east', u'expect', u'bumper', u'grain', u'crop'] [u'southern', u'town', u'face', u'drought'] [u'spanish', u'diplomat', u'report', u'murder', u'iraq'] [u'spectat', u'collaps', u'trigger', u'moya', u'comeback'] [u'spotlight', u'bendigo', u'higher', u'educ'] [u'stem', u'cell', u'treatment', u'reliev', u'angina', u'medic', u'trial'] [u'suicid', u'bomber', u'deton', u'isra', u'checkpoint'] [u'suicid', u'bomb', u'highlight', u'frail', u'iraq', u'secur'] [u'suicid', u'bomber', u'kill', u'baghdad'] [u'swedish', u'prosecutor', u'seek', u'time', u'lindh'] [u'tafe', u'rise', u'expect', u'hurt', u'enrol'] [u'taiwan', u'swap', u'troop', u'modern', u'weapon'] [u'tasmania', u'hotel', u'record', u'guest'] [u'tasmania', u'unemploy', u'rate', u'fall'] [u'teacher', u'shortag', u'prompt', u'perform'] [u'tiger', u'taipan', u'maintain', u'unbeaten', u'start'] [u'timber', u'worker', u'stop', u'work', u'discuss', u'wage', u'issu'] [u'time', u'run', u'coal', u'power', u'station', u'allianc'] [u'tourism', u'industri', u'optimist', u'futur'] [u'townsvill', u'lose', u'lead', u'ident'] [u'trial', u'give', u'indigen', u'communiti'] [u'truss', u'urg', u'consid', u'initi', u'drought'] [u'tszyus', u'homecom', u'dream'] [u'tuna', u'catch', u'quota', u'reinstat'] [u'tweed', u'council', u'director', u'resign'] [u'island', u'lose', u'displac', u'compens', u'battl'] [u'unemploy', u'steadi'] [u'union', u'fight', u'king', u'bros', u'worker', u'entitl'] [u'seek', u'uganda', u'truce', u'vaccin'] [u'vandal', u'attack', u'burni', u'hospit'] [u'veteran', u'galthi', u'motiv', u'french', u'assault'] [u'agricultur', u'minist', u'hit', u'fund'] [u'farmer', u'urg', u'govt', u'revisit', u'rescu', u'packag'] [u'victorian', u'parliament', u'rememb', u'bali', u'attack'] [u'victorian', u'food', u'compani', u'merg'] [u'vietnam', u'illeg', u'wildlif', u'trade', u'rife'] [u'villeneuv', u'quit', u'final', u'race'] [u'waff', u'say', u'support', u'strong', u'farmer'] [u'govt', u'consid', u'furnitur', u'maker', u'fund', u'request'] [u'govt', u'highlight', u'burrup', u'seawat', u'pipe', u'work'] [u'hors', u'trainer', u'ban', u'electr', u'shock', u'devic'] [u'jobless', u'rate', u'rise'] [u'wallabi', u'better', u'prepar', u'roff'] [u'wallabi', u'complet', u'final'] [u'wallabi', u'puma', u'prepar', u'final'] [u'water', u'author', u'vie', u'environ', u'award'] [u'weak', u'zimbabw', u'wilt', u'spring', u'test'] [u'woman', u'charg', u'daughter', u'murder'] [u'women', u'soccer', u'need', u'leagu', u'blatter'] [u'worker', u'seek', u'lift', u'disput', u'escal'] [u'inquiri', u'vindic', u'complaint', u'govt'] [u'sayyaf', u'attack', u'bush', u'visit'] [u'afghani', u'warlord', u'agre', u'ceasefir'] [u'aid', u'drug', u'birth', u'block', u'infect', u'studi'] [u'albacet', u'fall', u'victim', u'king', u'bolter'] [u'albani', u'jobless', u'figur', u'drop'] [u'black', u'magic', u'readi', u'bewitch', u'italian'] [u'black', u'wallabi', u'open'] [u'amnesti', u'step', u'campaign', u'abolish', u'death', u'penalti'] [u'step', u'closer', u'compani', u'split'] [u'angri', u'australian', u'forc', u'bali', u'exhibit', u'close'] [u'associ', u'call', u'strike'] [u'asthma', u'death', u'better', u'treatment', u'need'] [u'aussi', u'dollar', u'retain', u'high', u'despit', u'strengthen'] [u'aussi', u'market', u'dollar', u'eas'] [u'aussi', u'roger', u'grab', u'silver', u'road', u'cycl', u'champ'] [u'australia', u'extradit', u'alleg', u'siev', u'smuggler'] [u'aust', u'teach', u'pacif', u'politician', u'media', u'handl'] [u'bali', u'victim', u'visit', u'prison', u'inmat'] [u'blind', u'adventur', u'visit', u'emerald'] [u'bok', u'look', u'spring', u'uruguay'] [u'bomb', u'survivor', u'return', u'bali'] [u'boorowa', u'resid', u'oppos', u'council', u'merger'] [u'brazilian', u'murder', u'meet', u'envoy'] [u'britain', u'go', u'nutti', u'lose', u'marbl', u'search'] [u'british', u'court', u'reject', u'compo', u'claim', u'displac'] [u'british', u'dept', u'store', u'look', u'introduc'] [u'burma', u'thank', u'asean', u'nation', u'lack', u'critic'] [u'burni', u'hospit', u'vandal', u'deliber', u'polic'] [u'bush', u'lash', u'iraq', u'critic'] [u'bush', u'outlin', u'measur', u'isol', u'cuba', u'castro'] [u'cathol', u'church', u'step', u'fight', u'condom'] [u'cathol', u'offic', u'appeal', u'deaf', u'rule'] [u'caulfield', u'clear', u'exceed', u'excel'] [u'chief', u'minist', u'accus', u'derail', u'reconcili'] [u'chile', u'consid', u'doze', u'con', u'siesta'] [u'clijster', u'hammer', u'hantuchova', u'capriati', u'flop'] [u'clinic', u'teach', u'fish', u'basic'] [u'commonwealth', u'urg', u'address', u'land', u'council', u'fund'] [u'convict', u'paedophil', u'guilti', u'fresh', u'offenc'] [u'corsica', u'separatist', u'blame', u'nice', u'blast'] [u'councillor', u'defend', u'swim', u'coach', u'sack'] [u'council', u'servic', u'limit', u'staff', u'picnic'] [u'court', u'hear', u'tape', u'detail', u'accid', u'memori'] [u'cricket', u'wish', u'wallabi', u'good', u'luck'] [u'crop', u'risk', u'summer', u'storm', u'southern'] [u'cunderdin', u'celebr', u'ettamogah', u'open'] [u'depart', u'lookout', u'unusu', u'weed'] [u'develop', u'reprimand', u'illeg', u'clear'] [u'develop', u'hop', u'high', u'riversid', u'centr', u'project'] [u'doctor', u'hope', u'breakthrough', u'indemn', u'talk'] [u'doctor', u'strike', u'deal', u'govt', u'avert', u'walkout'] [u'dollar', u'move', u'higher', u'overnight'] [u'downer', u'explain', u'megawati', u'away'] [u'educ', u'minist', u'support', u'teacher', u'rise'] [u'exposur', u'give', u'protect', u'asthma'] [u'famili', u'rememb', u'bali', u'bomb', u'home', u'soil'] [u'famili', u'court', u'chief', u'criticis', u'share', u'custodi'] [u'fatah', u'offshoot', u'claim', u'tulkarm', u'suicid', u'bomb'] [u'faulti', u'convers', u'contribut', u'boy', u'death'] [u'feder', u'compo', u'aid', u'bali', u'bomb', u'victim'] [u'feral', u'deer', u'remov', u'forest', u'reserv'] [u'fifth', u'palestinian', u'kill', u'isra', u'gaza', u'raid'] [u'fiji', u'look', u'reveng', u'franc'] [u'final', u'touch', u'bali', u'memori', u'mourner', u'arriv'] [u'fishermen', u'hail', u'intern', u'tuna', u'catch', u'agreement'] [u'forestri', u'industri', u'want', u'corrupt', u'alleg'] [u'genocid', u'threat', u'warrant', u'emptiv', u'strike'] [u'protest', u'target', u'ingham'] [u'gold', u'coast', u'host', u'champ', u'seri'] [u'govt', u'call', u'address', u'teacher', u'shortag'] [u'govt', u'offer', u'avert', u'medic', u'indemn', u'crisi'] [u'govt', u'monitor', u'irvinebank', u'truck', u'movement'] [u'govt', u'urg', u'look', u'consid', u'forest'] [u'govt', u'wrong', u'target', u'metropolitan', u'water', u'user'] [u'green', u'engin', u'final', u'tune', u'ahead', u'solar'] [u'gregan', u'join', u'test', u'club'] [u'hart', u'warn', u'lion', u'salari'] [u'hayden', u'enter', u'pantheon', u'great'] [u'hayden', u'set', u'world', u'record'] [u'health', u'servic', u'warn', u'mass', u'resign', u'doctor'] [u'heatwav', u'fire', u'oyster', u'love'] [u'hewitt', u'second', u'master', u'pull'] [u'howard', u'announc', u'nation', u'bushfir', u'inquiri'] [u'hunter', u'semillon', u'name', u'drop'] [u'hurrican', u'carter', u'honour', u'brisban'] [u'imag', u'social', u'snub', u'like', u'kick'] [u'imperi', u'hayden', u'return', u'form'] [u'indigen', u'leader', u'hit', u'high', u'court'] [u'indonesian', u'polic', u'arrest', u'driver', u'truck', u'involv'] [u'indonesia', u'receiv', u'permiss', u'interrog'] [u'inquiri', u'look', u'sydney', u'harbour', u'plan'] [u'interst', u'agricultur', u'entri', u'launceston'] [u'iranian', u'govt', u'happi', u'lawyer', u'nobel', u'prize'] [u'iranian', u'govt', u'spokesman', u'retract', u'nobel', u'prais'] [u'iranian', u'lawyer', u'win', u'nobel', u'peac', u'prize'] [u'japanes', u'call', u'surpris', u'elect'] [u'japanes', u'women', u'leg', u'tell', u'differ', u'walk', u'life'] [u'johnni', u'cash', u'biographi', u'time', u'coincid'] [u'johnson', u'brush', u'krige', u'jib'] [u'kiwi', u'rider', u'dean', u'join', u'credit', u'agricol'] [u'leagu', u'great', u'play', u'gladston'] [u'leed', u'player', u'alleg', u'attack', u'suspend'] [u'legal', u'mind', u'gather', u'celebr', u'high', u'court'] [u'lingeri', u'sexi', u'french'] [u'lockyer', u'bronco', u'best'] [u'loom', u'strike', u'disrupt', u'servic'] [u'machin', u'breakdown', u'delay', u'sheep', u'ship'] [u'magnesium', u'sulphat', u'triall', u'jellyfish', u'sting'] [u'complet', u'underwat', u'marathon', u'loch', u'ness'] [u'kill', u'peni', u'snatch', u'alleg'] [u'kill', u'mango', u'pick', u'accid', u'south'] [u'plead', u'guilti', u'set', u'biki', u'alight'] [u'methanol', u'plant', u'bring', u'renew', u'optim', u'region'] [u'militiamen', u'attack', u'ivori', u'coast', u'util', u'compani'] [u'minist', u'talk', u'matur', u'age', u'worker'] [u'muhammad', u'take', u'ring', u'book', u'launch'] [u'murphi', u'bathurst', u'fastest', u'driver'] [u'muslim', u'teen', u'fall', u'foul', u'anti', u'gang', u'rule'] [u'nation', u'agre', u'worldwid', u'tuna', u'fish', u'limit'] [u'nat', u'push', u'telstra', u'sale', u'profit', u'funnel'] [u'nelson', u'abandon', u'part', u'higher', u'educ'] [u'newcastl', u'power', u'share', u'point'] [u'clue', u'china', u'man', u'space', u'mission'] [u'undi', u'save', u'live'] [u'reshuffl', u'produc'] [u'guarante', u'terror', u'free', u'bali', u'ceremoni'] [u'govt', u'infrastructur', u'creat', u'job'] [u'nuclear', u'veteran', u'greater', u'compens'] [u'weather', u'condit', u'canberra', u'firestorm'] [u'compani', u'receiv', u'environment', u'award'] [u'oliv', u'diseas', u'pit', u'manag'] [u'olymp', u'gold', u'medallist', u'secur', u'firearm'] [u'palestinian', u'report', u'resign'] [u'paradorn', u'lyon'] [u'pentagon', u'report', u'critic', u'post', u'iraq'] [u'perth', u'polic', u'seek', u'steal', u'truck'] [u'peter', u'lehmann', u'board', u'toast', u'hess'] [u'pharmaci', u'guild', u'address', u'indigen', u'imbal'] [u'back', u'governor', u'general', u'comment'] [u'back', u'waltz', u'matilda'] [u'polic', u'investig', u'fatal', u'unit'] [u'polic', u'tighten', u'secur', u'ahead', u'world', u'open'] [u'protest', u'colleg', u'cut', u'fail', u'sway', u'govt'] [u'nat', u'criticis', u'secur', u'prison', u'murder'] [u'politician', u'call', u'commonwealth', u'cooper'] [u'queen', u'consid', u'joh', u'compens', u'claim'] [u'queensland', u'arrest', u'drug', u'oper'] [u'quri', u'threaten', u'quit', u'secur', u'disput'] [u'rain', u'bring', u'hope', u'irrig'] [u'rain', u'keep', u'sorenstam', u'hold', u'hall'] [u'record', u'harvest', u'wine', u'industri'] [u'cross', u'criticis', u'guantanamo', u'condit'] [u'refuge', u'student'] [u'research', u'claim', u'hospit', u'environ', u'put'] [u'reserv', u'trust', u'agre', u'allow', u'leash', u'dog'] [u'resid', u'urg', u'attend', u'bali', u'memori', u'servic'] [u'resid', u'warn', u'snake', u'bite'] [u'resort', u'develop', u'order', u'undertak'] [u'review', u'local', u'govt', u'merger', u'face', u'critic'] [u'review', u'panel', u'clear', u'coverag', u'overal'] [u'rise', u'hous', u'price', u'stop', u'properti', u'boom'] [u'rooki', u'georgeson', u'claim', u'french', u'surf', u'titl'] [u'ross', u'get', u'ahead', u'townsend', u'japan', u'clash'] [u'rossi', u'hop', u'secur', u'titl', u'malaysia'] [u'rossi', u'take', u'provision', u'pole', u'malaysia'] [u'rugbi', u'world', u'kick', u'sydney'] [u'russian', u'newspap', u'editor', u'stab', u'death'] [u'expect', u'lead', u'teacher', u'shortag'] [u'galleri', u'unveil', u'renaiss', u'altar', u'piec'] [u'govt', u'face', u'realiti', u'scam', u'warn'] [u'univers', u'staff', u'vote', u'strike'] [u'secur', u'tight', u'england', u'arriv', u'istanbul'] [u'senden', u'vega'] [u'send', u'peacekeep', u'iraq', u'inevit'] [u'serial', u'casanova', u'bust', u'mail', u'blunder'] [u'shire', u'defend', u'petrol', u'station', u'price', u'board', u'decis'] [u'shooter', u'diamond', u'face', u'licenc', u'deadlin'] [u'skaif', u'fastest', u'bathurst', u'practic'] [u'slay', u'parti', u'accus', u'shiit', u'assassin'] [u'snow', u'fall', u'south', u'east'] [u'solomon', u'quit', u'bomber'] [u'strand', u'sheep', u'like', u'slaughter'] [u'studi', u'show', u'aborigin', u'ident', u'pressur'] [u'swiss', u'compani', u'offer', u'lehmann', u'win', u'bid'] [u'sydney', u'fuel', u'suppli', u'return', u'normal'] [u'taikonaut', u'orbit', u'week', u'report'] [u'talk', u'hold', u'hope', u'medic', u'indemn'] [u'theatr', u'compani', u'chief', u'warn', u'art', u'organis'] [u'timber', u'industri', u'say', u'integr', u'propos', u'essenti'] [u'timber', u'worker', u'strike'] [u'seed', u'feder', u'surviv', u'scare'] [u'tourism', u'allianc', u'join', u'critic', u'nation', u'park'] [u'tourist', u'believ'] [u'townsvill', u'face', u'tough', u'open', u'test'] [u'tradit', u'owner', u'regain', u'maralinga', u'land'] [u'trainer', u'happi', u'recoveri', u'injur', u'hors'] [u'transport', u'problem', u'plagu', u'flower', u'industri'] [u'travel', u'warn', u'current', u'bali', u'anniversari'] [u'trial', u'indic', u'drug', u'halv', u'breast', u'cancer'] [u'trio', u'face', u'charg', u'protea', u'pakistan', u'spat'] [u'trulli', u'keep', u'schumach', u'japan', u'practic'] [u'turnbul', u'deni', u'aspir'] [u'realiti', u'real', u'minist'] [u'star', u'tommi', u'hanlon', u'lose', u'cancer', u'battl'] [u'palestinian', u'dead', u'gaza', u'clash'] [u'soldier', u'baghdad', u'ambush'] [u'union', u'threaten', u'strike', u'univers', u'england'] [u'univers', u'build', u'name', u'botanist'] [u'govt', u'challeng', u'guantanamo', u'detent'] [u'face', u'death', u'sikh', u'murder'] [u'move', u'closer', u'approv', u'iraq'] [u'suprem', u'court', u'urg', u'review', u'guantanamo'] [u'vatican', u'condom', u'claim', u'anger', u'aid', u'educ'] [u'viarsa', u'crew', u'grant', u'bail', u'illeg', u'fish'] [u'buyback', u'scheme', u'criticis', u'understaf'] [u'polic', u'face', u'sack', u'unauthoris', u'file'] [u'virgin', u'blue', u'passeng', u'measl', u'warn'] [u'expert', u'urg', u'overhaul', u'water', u'consumpt'] [u'farmer', u'angri', u'loss', u'salin', u'fund'] [u'govt', u'attempt', u'stop', u'teacher', u'strike'] [u'walcha', u'council', u'undecid', u'pine', u'plantat', u'fight'] [u'wallabi', u'confid', u'ahead', u'world', u'open'] [u'wallabi', u'bali', u'tribut'] [u'wallabi', u'wari', u'unpredict', u'puma'] [u'wallabi', u'world', u'open'] [u'milk', u'price', u'spark', u'letter', u'accc'] [u'webber', u'join', u'schumach', u'gpda', u'director'] [u'whale', u'watch', u'oper', u'warn', u'scallop', u'farm', u'threaten'] [u'wheatbelt', u'unemploy', u'drop'] [u'white', u'face', u'lose', u'gold', u'fail', u'dope', u'test'] [u'wineri', u'end', u'year', u'long', u'search', u'owner'] [u'world', u'open', u'put', u'strain', u'sydney', u'transport'] [u'zimbabw', u'food', u'shortag', u'critic'] [u'miss', u'nigeria', u'ferri', u'capsiz'] [u'hindus', u'arrest', u'disput', u'templ', u'site'] [u'kill', u'island', u'plane', u'crash'] [u'aceh', u'student', u'jail', u'anti', u'govt', u'ralli', u'plan'] [u'black', u'readi', u'rumbl'] [u'applebi', u'move', u'nevada'] [u'arafat', u'quri', u'attempt', u'resolv', u'secur', u'disput'] [u'architect', u'visit', u'histor', u'school', u'north'] [u'arni', u'turn', u'attent', u'budget', u'audit'] [u'asian', u'kill', u'women', u'golf', u'tour', u'aussi', u'stephenson'] [u'attend', u'offic', u'boost', u'wadey', u'pupil', u'number'] [u'australian', u'missionari', u'killer', u'appeal', u'death', u'penalti'] [u'australian', u'wari', u'oversea', u'travel', u'poll'] [u'azzuri', u'face', u'final', u'euro', u'hurdl'] [u'bahamian', u'boy', u'charg', u'child', u'death'] [u'barrichello', u'put', u'ferrari', u'pole'] [u'brisban', u'assault', u'victim', u'coma'] [u'bush', u'threaten', u'tougher', u'stanc', u'cuba'] [u'canada', u'snow', u'aim', u'upset', u'friend'] [u'canadian', u'speaker', u'head', u'commonwealth', u'associ'] [u'canberra', u'water', u'charg', u'doubl'] [u'chaplain', u'charg', u'guantanamo', u'case'] [u'cheney', u'defend', u'iraq'] [u'children', u'thief', u'drive'] [u'civil', u'right', u'group', u'hail', u'nobel', u'peac', u'winner'] [u'clijster', u'henin', u'spot', u'collis', u'cours'] [u'cloudi', u'weather', u'hamper', u'taikonaut', u'launch'] [u'cold', u'weather', u'crack', u'pole', u'sit', u'champion'] [u'comprehens', u'approach', u'need', u'aceh', u'secur'] [u'conker', u'shortag', u'threaten', u'scupper', u'world', u'champ'] [u'delhi', u'dengu', u'fever', u'outbreak', u'worsen'] [u'dutch', u'princ', u'give', u'throne', u'right', u'fiance'] [u'embattl', u'england', u'redempt'] [u'emot', u'hayden', u'bali', u'tribut'] [u'road', u'banesto'] [u'fashion', u'design', u'mcqueen', u'steam', u'danc', u'floor'] [u'feder', u'moya', u'approach', u'final', u'showdown'] [u'french', u'overcom', u'fieri', u'fijian'] [u'funer', u'march', u'baghdad', u'turn', u'anti', u'protest'] [u'gawler', u'project', u'encourag', u'conserv', u'donat'] [u'gaza', u'raid', u'violat', u'intern'] [u'giffin', u'doubt', u'romania', u'match'] [u'giffin', u'romania', u'match'] [u'gold', u'coast', u'ceremoni', u'mark', u'bali', u'anniversari'] [u'govt', u'intervent', u'hurt', u'sheep', u'sale', u'chanc', u'farmer'] [u'green', u'consid', u'inclus', u'nation', u'group'] [u'green', u'merger', u'offer', u'nation', u'altern'] [u'guantanamo', u'creat', u'mental', u'health', u'problem'] [u'hayden', u'promis', u'notch', u'say', u'dean', u'jone'] [u'hayden', u'dedic', u'record', u'inning', u'bali', u'victim'] [u'heavi', u'fight', u'gaza', u'refuge', u'camp', u'raid'] [u'hicki', u'score', u'doubl', u'ireland', u'roll', u'romania'] [u'high', u'court', u'celebr', u'caus', u'terror', u'fear'] [u'indonesia', u'demand', u'access', u'hambali'] [u'injuri', u'bowl', u'aussi'] [u'injuri', u'aussi', u'bowler'] [u'swing', u'win', u'caulfield', u'guinea'] [u'iran', u'cautious', u'applaud', u'nobel', u'prize', u'winner'] [u'iran', u'run', u'time', u'disclos', u'nuclear'] [u'islam', u'nation', u'demand', u'evict', u'iraq'] [u'jone', u'prais', u'scorer', u'sailor'] [u'karzai', u'approv', u'ambiti', u'demobilis', u'plan'] [u'kiwi', u'understrength', u'itali'] [u'leopard', u'kill', u'year', u'bombay'] [u'longer', u'term', u'offer', u'busi', u'confid', u'stanhop'] [u'lonhro', u'confirm', u'class', u'caulfield'] [u'charg', u'bash', u'death', u'homeless'] [u'maoist', u'govt', u'clash', u'kill', u'nepales'] [u'market', u'finish', u'week', u'flat'] [u'matera', u'wirrpunda', u'sign', u'eagl'] [u'milit', u'threat', u'howard', u'arriv', u'bali'] [u'million', u'tune', u'world'] [u'million', u'tune', u'world', u'giffin', u'clear'] [u'glori', u'hayden', u'zimbabw', u'struggl'] [u'moroccan', u'king', u'boost', u'women', u'right'] [u'murphi', u'sizzl', u'bathurst', u'shootout'] [u'nasa', u'laser', u'power', u'model', u'plane', u'take', u'flight'] [u'nation', u'parti', u'vote', u'reform', u'senat'] [u'nation', u'confer', u'consid', u'senat', u'reform'] [u'newscorp', u'hook', u'satellit', u'broadcast', u'hold'] [u'korea', u'threaten', u'arm', u'word', u'japan'] [u'offici', u'encourag', u'children', u'enrol'] [u'kill', u'attack', u'iraqi', u'polic', u'continu'] [u'opposit', u'question', u'govt', u'age', u'care', u'prioriti'] [u'oyster', u'farmer', u'seek', u'drought', u'packag'] [u'paradorn', u'keep', u'master', u'dream'] [u'patienc', u'request', u'email', u'problem', u'plagu', u'isp'] [u'peac', u'group', u'advoc', u'space', u'militaris'] [u'perkin', u'hit', u'wall', u'bathurst'] [u'crean', u'head', u'bali'] [u'polic', u'investig', u'daylight', u'attack', u'adelaid'] [u'polic', u'probe', u'link', u'semi', u'trailer', u'steal'] [u'polic', u'seek', u'wit'] [u'pope', u'upset', u'miss', u'nobel', u'aid'] [u'protea', u'skipper', u'smith', u'ban', u'misconduct'] [u'puma', u'hope', u'reach', u'quarter'] [u'rafah', u'death', u'toll', u'rise', u'secur', u'disput'] [u'rare', u'white', u'humpback', u'make', u'appear', u'moreton'] [u'razorback', u'shock', u'croc'] [u'record', u'mean', u'break', u'say', u'lara'] [u'roll', u'stone', u'fail', u'sign', u'hong', u'kong'] [u'rossi', u'leav', u'honda'] [u'rossi', u'take', u'malaysian', u'pole'] [u'rural', u'aust', u'need', u'infrastructur', u'cut'] [u'school', u'investig'] [u'secur', u'step', u'bali', u'commemor'] [u'servic', u'hold', u'british', u'victim', u'iraq'] [u'sheep', u'shipment', u'destin', u'truss'] [u'slick', u'south', u'africa', u'beat', u'pakistan', u'wicket'] [u'soccer', u'player', u'arrest', u'english', u'rape', u'probe'] [u'sorenstam', u'hall', u'famer', u'houston'] [u'south', u'korean', u'cabinet', u'tender', u'resign'] [u'sport', u'ganguli', u'leav', u'door', u'ajar', u'black', u'cap'] [u'stradbrok', u'plane', u'crash', u'investig', u'continu'] [u'sven', u'fuel', u'quit', u'specul'] [u'sydney', u'top', u'travel', u'list'] [u'taliban', u'tunnel', u'kandahar', u'jail'] [u'consid', u'charg', u'salmon', u'seizur'] [u'cross', u'renew', u'blood', u'donor'] [u'host', u'world', u'biggest', u'organ', u'orchard'] [u'teen', u'charg', u'fatal', u'southbank', u'stab'] [u'thousand', u'protest', u'crop'] [u'detain', u'fieri', u'java', u'crash'] [u'kill', u'nepal', u'rebel', u'attack', u'polic', u'post'] [u'tight', u'secur', u'greet', u'howard', u'crean', u'bali'] [u'astl', u'lead', u'kiwi', u'fightback'] [u'radio', u'talk', u'host', u'admit', u'drug', u'addict'] [u'truck', u'driver', u'charg', u'arnhem', u'hway', u'rollov'] [u'trulli', u'fastest', u'japan', u'qualifi'] [u'turkey', u'turn', u'england', u'soccer', u'fan', u'away'] [u'kill', u'roadsid', u'bomb', u'northern', u'iraq'] [u'ukrain', u'munit', u'explos', u'spark', u'mass', u'evacu'] [u'uncertainti', u'surround', u'black', u'umaga'] [u'unit', u'peac', u'talk'] [u'doctor', u'attempt', u'separ', u'egyptian', u'twin'] [u'reconsid', u'posit', u'iraq', u'powel'] [u'uzbek', u'lagutin', u'take', u'men', u'titl'] [u'victorian', u'group', u'seek', u'polic', u'access', u'file'] [u'vogt', u'fear', u'freak', u'germani'] [u'green', u'vote', u'merg', u'nation', u'parti'] [u'wale', u'hansen', u'pressur'] [u'wallabi', u'better', u'jone'] [u'mine', u'equip', u'readi', u'ship'] [u'nat', u'seek', u'support', u'outback', u'highway', u'upgrad'] [u'reject', u'cathol', u'condom', u'claim'] [u'widmark', u'take', u'dutch', u'lead'] [u'woodward', u'attack', u'australian', u'block'] [u'zidan', u'eye', u'french', u'grand', u'slam'] [u'zimbabw', u'trail', u'wicket', u'hand'] [u'teacher', u'job', u'offer'] [u'miss', u'nigerian', u'ferri', u'accid'] [u'fire', u'inform', u'nation', u'inquiri', u'chief'] [u'adelaid', u'end', u'scottish', u'poet', u'wander'] [u'afghan', u'fail', u'recaptur', u'taliban', u'jailbreak'] [u'agit', u'voter', u'alarm', u'japan', u'campaign'] [u'alpay', u'insult', u'mother', u'say', u'beck'] [u'apec', u'talk', u'focus', u'terror', u'trade'] [u'applebi', u'hit', u'vega'] [u'australian', u'domin', u'golf'] [u'australia', u'observ', u'bomb', u'anniversari'] [u'babi', u'critic', u'driveway'] [u'bali', u'bomber', u'regret', u'report'] [u'bali', u'memori', u'perth'] [u'bali', u'servic', u'begin'] [u'bali', u'victim', u'famili', u'gather', u'perth', u'dawn', u'servic'] [u'bali', u'victim', u'rememb'] [u'bass', u'strait', u'longer', u'hurdl', u'engin'] [u'billion', u'dollar', u'budget', u'beat', u'flood', u'prone', u'chines'] [u'blast', u'hit', u'palestinian', u'refuge', u'camp', u'lebanon'] [u'bomb', u'destroy', u'lorri', u'spain', u'suspect'] [u'boswel', u'manur', u'milk', u'retail', u'boot'] [u'bremer', u'condemn', u'baghdad', u'bomb'] [u'bush', u'emphasis', u'progress', u'postwar', u'iraq'] [u'canberran', u'warn', u'raaf', u'display', u'high', u'court', u'say'] [u'cloth', u'store', u'reward', u'nake', u'ambit'] [u'comoro', u'news', u'agenc', u'bemoan', u'poor', u'communic'] [u'critic', u'work', u'begin', u'separ', u'conjoin'] [u'docker', u'edg', u'pie', u'oval', u'showcas'] [u'eagl', u'sign', u'matera', u'wirrpunda'] [u'earthquak', u'hit', u'japanes', u'island'] [u'emot', u'howard', u'pay', u'respect', u'sari', u'club'] [u'england', u'itali', u'germani', u'lead', u'march', u'euro'] [u'english', u'footbal', u'brace', u'civil', u'report'] [u'feder', u'moya', u'vienna', u'showdown'] [u'feder', u'waltz', u'vienna', u'final'] [u'fiji', u'star', u'caucaunibuca', u'cite', u'foul', u'play'] [u'contain', u'battl'] [u'home', u'buyer', u'need', u'incent'] [u'floriad', u'put', u'root', u'commonwealth', u'park'] [u'deputi', u'cairn', u'dead'] [u'sale', u'california', u'mausoleum', u'spectacular', u'view'] [u'franc', u'commemor', u'cultur', u'icon', u'piaf', u'cocteau'] [u'franc', u'warn', u'libya', u'bomb', u'compens'] [u'funer', u'shower', u'wake', u'dead', u'india'] [u'giant', u'toppl', u'taipan', u'hawk', u'beat', u'breaker'] [u'giffin', u'fresh', u'doubt', u'wallabi'] [u'govt', u'extend', u'bali', u'fund'] [u'govt', u'plan', u'allow', u'oversea', u'spi', u'carri', u'weapon'] [u'govt', u'anti', u'terror', u'spi'] [u'trick', u'joost', u'springbok', u'crush', u'uruguay'] [u'heaven', u'wash', u'jesus', u'colour', u'chang'] [u'henin', u'hunt', u'clijster', u'spot'] [u'henin', u'reach', u'filderstadt', u'final'] [u'high', u'court', u'celebr', u'spark', u'terror', u'concern'] [u'howard', u'crean', u'attend', u'bali', u'memori'] [u'howard', u'pay', u'respect', u'bali', u'sit'] [u'howard', u'pledg', u'health', u'care', u'fund', u'bali'] [u'immigr', u'detaine', u'attend', u'bali', u'commemor'] [u'injuri', u'aussi', u'bowler'] [u'investig', u'island', u'plane'] [u'israel', u'continu', u'rafah', u'raid', u'despit', u'condemn'] [u'isra', u'troop', u'remain', u'rafah', u'arafat', u'quri'] [u'isra', u'troop', u'withdraw', u'gaza'] [u'jone', u'refus', u'comment', u'woodward', u'block', u'claim'] [u'labor', u'support', u'spi'] [u'lacomb', u'stabl', u'world', u'crash'] [u'lafeb', u'dream', u'home', u'comfort'] [u'lightn', u'strike', u'boomer'] [u'ljungskog', u'win', u'sprint', u'retain', u'world', u'titl'] [u'lotteri', u'winner', u'face', u'collect', u'deadlin'] [u'charg', u'buderim', u'attack'] [u'hold', u'southbank', u'threat'] [u'mcmillan', u'help', u'black', u'cap', u'salvag', u'draw'] [u'meet', u'fail', u'patch', u'arafat', u'quri', u'disput'] [u'melbourn', u'ceremoni', u'mark', u'bali', u'anniversari'] [u'microsoft', u'aid', u'child', u'pornographi', u'fight'] [u'mother', u'teresa', u'world', u'good'] [u'urg', u'bali', u'mourner', u'rememb', u'indonesian'] [u'murphi', u'kelli', u'bathurst', u'titl'] [u'nation', u'vote', u'telstra', u'sell'] [u'rule', u'dog', u'nativ', u'bird'] [u'nobel', u'winner', u'demand', u'islam', u'punish', u'ceas'] [u'merci', u'minnow', u'world'] [u'govt', u'step', u'closer', u'workplac', u'smoke', u'chang'] [u'defenc', u'forc', u'award', u'winner', u'honour'] [u'polic', u'seiz', u'record', u'amphetamin', u'haul'] [u'match', u'come', u'marconi', u'spirit'] [u'palestinian', u'leader', u'settl', u'cabinet', u'crisi'] [u'paramed', u'warn', u'summer', u'snake', u'bite', u'risk'] [u'perth', u'polic', u'continu', u'investig', u'truck'] [u'peru', u'crash', u'kill'] [u'philosoph', u'raikkonen', u'look'] [u'polic', u'miss', u'bushwalk'] [u'polic', u'kill', u'ultralight', u'crash'] [u'polic', u'pick', u'trail', u'evid', u'leav', u'daylight'] [u'polic', u'unawar', u'raaf', u'display'] [u'powel', u'express', u'support', u'bali', u'victim'] [u'price', u'competit', u'polici', u'high', u'retail'] [u'privat', u'oper', u'upgrad', u'polic', u'station'] [u'protea', u'lodg', u'appeal', u'hall'] [u'protea', u'appeal', u'hall', u'suspens'] [u'rain', u'offer', u'zimbabw', u'great', u'escap'] [u'rain', u'plagu', u'aussi', u'charg', u'victori'] [u'rain', u'stop', u'play', u'australia', u'sight', u'victori'] [u'rii', u'back', u'cycl', u'shake'] [u'roadsid', u'bomb', u'wound', u'soldier', u'iraq'] [u'romania', u'target', u'larkham'] [u'rossi', u'clinch', u'titl', u'malaysian'] [u'russia', u'claim', u'role', u'china', u'man', u'space'] [u'polic', u'search', u'miss'] [u'schuettler', u'clement', u'meet', u'lyon', u'final'] [u'schumach', u'champion', u'ferrari', u'take', u'team', u'titl'] [u'scot', u'overcom', u'courag', u'japan'] [u'senior', u'confer', u'launch', u'govt', u'directori'] [u'slay', u'diplomat', u'iraqi', u'guard', u'arrest'] [u'sore', u'jaw', u'magn', u'prais', u'fiji', u'punch', u'power'] [u'sorrento', u'enact', u'land', u'european'] [u'spain', u'beef', u'secur', u'presenc', u'baghdad'] [u'springbok', u'look', u'england'] [u'sulawesi', u'attack', u'spark', u'religi', u'violenc', u'fear'] [u'surfer', u'commemor', u'bali'] [u'surgeri', u'begin', u'separ', u'egyptian', u'twin'] [u'surplus', u'help', u'prepar', u'age', u'popul'] [u'syria', u'warn', u'right', u'self', u'defenc', u'isra'] [u'canteen', u'gear', u'bandanna'] [u'govt', u'commit', u'cardiolog', u'improv'] [u'tenni', u'match', u'throw', u'bet', u'scandal'] [u'tesk', u'rid', u'high', u'texa'] [u'thai', u'live', u'centiped', u'record'] [u'thousand', u'gather', u'sydney', u'memori'] [u'thousand', u'attend', u'bali', u'memori', u'servic'] [u'dead', u'bolivia', u'pipelin', u'protest'] [u'tare', u'pile'] [u'guilti', u'heroin', u'haul'] [u'tourist', u'opinion', u'influenc', u'attract'] [u'irish', u'charg', u'murder', u'india'] [u'uncertainti', u'surround', u'black', u'umaga'] [u'claim', u'world', u'place'] [u'say', u'kill', u'baghdad', u'blast'] [u'wale', u'strong', u'canada'] [u'wallabi', u'focus', u'cut', u'mistak', u'rate'] [u'premier', u'prais', u'bali', u'survivor', u'courag'] [u'white', u'whale', u'head', u'coast'] [u'wolv', u'break'] [u'world', u'campaign', u'begin', u'itali'] [u'zimbabw', u'daili', u'news', u'owner', u'vow', u'fight', u'closur'] [u'zim', u'collaps', u'perth'] [u'firefight', u'miss', u'chanc', u'battl', u'januari'] [u'afghanistan', u'set', u'polit', u'parti', u'rule'] [u'alic', u'workshop', u'consid', u'food', u'issu'] [u'black', u'umaga', u'world', u'limbo'] [u'hope', u'indemn', u'disput', u'result'] [u'news', u'corp', u'resourc', u'stock', u'boost', u'market'] [u'cassar', u'daley', u'dead'] [u'appeal', u'lodg', u'drought', u'snub'] [u'applebi', u'hit', u'play', u'jackpot'] [u'arafat', u'inflam', u'stomach', u'palestinian', u'envoy'] [u'australia', u'elder', u'popul', u'tripl', u'report', u'show'] [u'australia', u'privat', u'healthcar'] [u'averag', u'cyclon', u'season', u'tip'] [u'award', u'recognis', u'communiti', u'catchment', u'effort'] [u'baghdad', u'bomb', u'kill'] [u'bali', u'blast', u'victim', u'rememb'] [u'bali', u'survivor', u'take', u'comfort', u'perth', u'servic'] [u'ballarat', u'east', u'seek', u'extend', u'daylight', u'save'] [u'bank', u'complaint', u'fall', u'work', u'need'] [u'bichel', u'wrap', u'perth', u'test'] [u'blind', u'adventur', u'touch', u'fundrais', u'flight'] [u'boat', u'fund', u'public', u'discuss'] [u'bomber', u'price', u'salari', u'breach'] [u'brazil', u'scrape', u'past', u'brave', u'jamaica'] [u'british', u'group', u'give', u'race', u'lehmann'] [u'break', u'hill', u'flower', u'offer', u'exposur'] [u'broom', u'properti', u'sell', u'minut'] [u'servic', u'return', u'chang'] [u'cafe', u'hour', u'worker', u'entitl'] [u'calf', u'trampl', u'girl', u'rodeo', u'mishap'] [u'care', u'bali', u'blame', u'game'] [u'sell', u'forestri', u'tasmania', u'reject'] [u'chang', u'afoot', u'tourism', u'group'] [u'child', u'safeti', u'prioriti', u'foster', u'abus', u'inquiri'] [u'china', u'count', u'great', u'leap', u'forward', u'space'] [u'chines', u'presid', u'respect', u'visit'] [u'clijster', u'down', u'henin', u'hardenn', u'retain', u'spot'] [u'inquiri', u'tell', u'children', u'owe', u'protect'] [u'cole', u'myer', u'proceed', u'credit', u'card', u'rollout'] [u'communiti', u'group', u'highlight', u'poverti', u'fight'] [u'confer', u'examin', u'mine', u'safeti'] [u'logger', u'court'] [u'council', u'amalgam', u'review', u'begin'] [u'council', u'consid', u'port', u'stephen', u'court', u'upgrad'] [u'councillor', u'condemn', u'confidenti', u'lend', u'leas', u'meet'] [u'council', u'prepar', u'elect'] [u'council', u'welcom', u'prawn', u'farm', u'plan'] [u'dairi', u'woe', u'time', u'settl'] [u'protest', u'group', u'form', u'ralli'] [u'darwin', u'boost', u'indonesian', u'trade', u'tie'] [u'davi', u'jalabert', u'heel', u'say', u'saiz'] [u'death', u'philippin', u'milit', u'step', u'forward'] [u'democrat', u'scrutinis', u'plan', u'arm', u'spi'] [u'appeal', u'polic', u'murder', u'sentenc'] [u'get', u'readi', u'season'] [u'egyptian', u'twin', u'success', u'separ'] [u'england', u'georgia', u'merci'] [u'england', u'underlin', u'favourit'] [u'famili', u'fund', u'come', u'earli'] [u'fear', u'air', u'control', u'tower', u'futur'] [u'fear', u'air', u'teacher', u'shortag', u'region', u'impact'] [u'feder', u'govt', u'target', u'peopl', u'traffic'] [u'feder', u'overpow', u'moya', u'retain', u'vienna', u'crown'] [u'govt', u'push', u'help', u'kidney', u'donat'] [u'financi', u'woe', u'sink', u'thargomindah', u'golf', u'club'] [u'firefight', u'closer', u'declar', u'blaze', u'safe'] [u'firm', u'make', u'offer', u'ail', u'timber', u'plantat'] [u'flower', u'grower', u'boost', u'export', u'hop'] [u'caus', u'alarm', u'canberra'] [u'foodi', u'turn', u'dalgeti', u'fair'] [u'star', u'aim', u'scale', u'height'] [u'unionist', u'throw', u'support', u'green', u'vote'] [u'ambassador', u'highlight', u'coastlin', u'terror'] [u'forum', u'hear', u'sport', u'academi', u'detail'] [u'fourth', u'charg', u'carpet', u'store', u'blaze'] [u'free', u'park', u'remain', u'canberra', u'centr'] [u'ganguli', u'back', u'bowler', u'despit', u'draw', u'test'] [u'gaza', u'declar', u'disast', u'zone'] [u'gaza', u'raid', u'leav', u'homeless'] [u'germani', u'take', u'world', u'golden', u'goal'] [u'gold', u'coast', u'kill', u'weekend', u'accid'] [u'govern', u'rule', u'capsicum', u'spray', u'hospit'] [u'govern', u'urg', u'kidney'] [u'green', u'cast', u'doubt', u'scallop', u'farm', u'impact'] [u'health', u'partnership', u'push', u'employe', u'action'] [u'highway', u'reopen', u'pile'] [u'hogg', u'bracken', u'cover', u'australia', u'walk', u'wound'] [u'home', u'buyer', u'urg', u'legal', u'advic'] [u'hospit', u'staff', u'threaten', u'strike', u'action'] [u'illawarra', u'trio', u'rememb', u'bali', u'anniversari'] [u'indonesian', u'milit', u'jail', u'philippin', u'bomb'] [u'industri', u'tour', u'look', u'lobster', u'market'] [u'iraqi', u'kill', u'firefight', u'forc', u'polic'] [u'irrig', u'borrow', u'entitl'] [u'jone', u'salut', u'french', u'flair'] [u'kopassus', u'visit', u'cancel', u'human', u'right', u'concern'] [u'warship', u'rust', u'away'] [u'learn', u'exchang', u'year', u'open'] [u'lectur', u'face', u'museum', u'theft', u'charg'] [u'legendari', u'jockey', u'shoemak', u'die', u'home'] [u'levi', u'seek', u'fund', u'region', u'cemeteri', u'work'] [u'local', u'govt', u'seek', u'power', u'suppli'] [u'die', u'trail', u'bike', u'crash'] [u'hospitalis', u'attack'] [u'hospit', u'accident', u'shoot'] [u'hospit', u'hammer', u'attack'] [u'mayor', u'confid', u'produc', u'drought'] [u'medic', u'expert', u'predict', u'sar', u'outbreak', u'china'] [u'memori', u'dedic', u'bali', u'bomb', u'victim'] [u'north', u'coast', u'unemploy', u'drop'] [u'miner', u'get', u'role', u'councillor'] [u'miner', u'hop', u'flinder', u'rang', u'diamond'] [u'minist', u'open', u'hospit', u'redevelop'] [u'minor', u'parti', u'nat', u'region', u'spend', u'plan'] [u'modest', u'schu', u'downplay', u'record'] [u'monkey', u'bear', u'transplant', u'ovarian', u'tissu'] [u'time', u'comment', u'drought', u'plan'] [u'mottram', u'go', u'burni'] [u'break', u'rank', u'peel', u'deviat'] [u'concern', u'island', u'hous'] [u'multi', u'million', u'dollar', u'pipelin', u'boost'] [u'narrogin', u'amalgam'] [u'nation', u'extend', u'ethanol', u'exempt'] [u'nat', u'outback', u'highway', u'agenda'] [u'nat', u'target', u'averag', u'famili', u'elect'] [u'navi', u'benefit', u'ocean', u'condit'] [u'law', u'reform', u'magistraci'] [u'polic', u'station', u'plan', u'berri'] [u'norfolk', u'ponder', u'impact', u'fewer', u'flight'] [u'drought', u'spread', u'septemb'] [u'school', u'fail', u'aborigin', u'literaci', u'test'] [u'crackdown', u'water', u'waster'] [u'river', u'threaten', u'irrig', u'plan', u'centr'] [u'seek', u'crack', u'child', u'abus'] [u'ogradi', u'confid', u'return'] [u'opposit', u'govern', u'outlin', u'obses', u'strategi'] [u'osaka', u'evacu', u'expert', u'defus', u'wwii', u'bomb'] [u'oyster', u'farmer', u'seek', u'feder'] [u'founder', u'start', u'liquid', u'appeal'] [u'liquid', u'deni', u'mislead', u'creditor'] [u'panther', u'snub', u'kangaroo'] [u'patterson', u'target', u'wealthi', u'famili', u'receiv'] [u'player', u'exchang', u'get', u'underway'] [u'return', u'home', u'emot', u'servic'] [u'govt', u'end', u'search', u'remot', u'gold'] [u'polic', u'hunt', u'video', u'store', u'arm', u'bandit'] [u'polic', u'investig', u'bottl', u'shop', u'raid'] [u'polic', u'offic', u'stand', u'trial', u'drug', u'theft'] [u'polic', u'probe', u'incid', u'sydney', u'tafe'] [u'polic', u'seiz', u'fake', u'rugbi', u'world', u'jersey'] [u'polic', u'stage', u'drug', u'raid', u'darwin', u'armi', u'base'] [u'power', u'station', u'propon', u'reject', u'subsidi', u'claim'] [u'preselect', u'process', u'postpon'] [u'produc', u'vet', u'push', u'slaughter', u'sheep'] [u'produc', u'warn', u'prepar', u'wild', u'bait'] [u'protea', u'seri'] [u'public', u'comment', u'seek', u'byron', u'biodivers', u'plan'] [u'puma', u'selector', u'wield'] [u'boati', u'ethanol'] [u'govt', u'review', u'atherton', u'hospit', u'servic'] [u'labor', u'name', u'cook', u'candid'] [u'razorback', u'prove', u'good', u'croc'] [u'refuge', u'advoc', u'perman', u'visa'] [u'rome', u'bind', u'passeng', u'terroris', u'snake'] [u'govt', u'announc', u'region', u'polic', u'station'] [u'privatis', u'rural', u'justic', u'build'] [u'schuettler', u'make'] [u'schumach', u'stand', u'great'] [u'seawe', u'link', u'possibl', u'cancer', u'treatment'] [u'secur', u'boost', u'plan', u'fish', u'hatcheri', u'theft'] [u'secur', u'paramount', u'revers', u'bali', u'poverti'] [u'serb', u'pilot', u'shoot', u'newli', u'wed'] [u'sheep', u'inquiri', u'head', u'discount', u'export'] [u'shooter', u'diamond', u'rule'] [u'korean', u'leader', u'step', u'referendum', u'fail'] [u'small', u'grocer', u'claim', u'nation', u'duopoli'] [u'soccer', u'legend', u'warren', u'name', u'taskforc'] [u'dismiss', u'turkey', u'tunnel', u'handbag'] [u'south', u'east', u'jobless', u'rate', u'fall'] [u'south', u'korean', u'presid', u'poll', u'reveal'] [u'springborg', u'unworri', u'split', u'telstra'] [u'stepdaught', u'appeal', u'sidney', u'artwork'] [u'tare', u'council', u'like', u'avoid', u'mandatori', u'tank'] [u'tarp', u'inventor', u'cover', u'base', u'award'] [u'credit', u'union', u'sell', u'demutualis', u'plan'] [u'tension', u'increas', u'china', u'space', u'mission', u'near'] [u'tesk', u'second', u'gustafson', u'win', u'controversi', u'crown'] [u'thalidomid', u'market'] [u'compani', u'fail', u'green', u'test'] [u'civil', u'servant', u'face', u'hutton', u'inquiri'] [u'tour', u'possum', u'readi', u'return', u'perth'] [u'tresco', u'tour', u'warm'] [u'truck', u'consid', u'suspici'] [u'charg', u'record', u'speed', u'haul'] [u'union', u'fear', u'newspap', u'compani', u'takeov', u'cost'] [u'student', u'associ', u'seek', u'communic', u'boost'] [u'univers', u'increas', u'graduat', u'ceremoni'] [u'urin', u'sampl', u'take', u'armi', u'base', u'drug', u'raid'] [u'diplomat', u'join', u'ireland', u'talk'] [u'marin', u'head', u'home', u'game'] [u'busi', u'struggl', u'liabil', u'insur'] [u'govt', u'urg', u'stop', u'home', u'buyer', u'grant'] [u'compani', u'gold', u'rush'] [u'face', u'teacher', u'shortag'] [u'govt', u'consid', u'pastor', u'tenur', u'chang'] [u'grower', u'discuss', u'wool', u'levi', u'vote'] [u'whale', u'sydney', u'harbour', u'stopov'] [u'whale', u'frolic', u'sydney', u'harbour'] [u'wolv', u'beat', u'knight', u'post', u'season'] [u'woodward', u'face', u'anxious', u'scrumhalf', u'wait'] [u'wool', u'expo', u'yarn', u'pull', u'younger', u'audienc'] [u'wool', u'grower', u'reject', u'return', u'sheep'] [u'plant', u'improv', u'break', u'hill', u'water'] [u'aborigin', u'seek', u'support', u'fight', u'perth'] [u'bushfir', u'inquiri', u'cost'] [u'adelaid', u'festiv', u'program', u'cross', u'boundari'] [u'adelaid', u'offer', u'nobel', u'author', u'citi'] [u'afl', u'best', u'gear', u'intern', u'rule', u'match'] [u'zealand', u'announc', u'staff', u'cut'] [u'ord', u'climb', u'month', u'high'] [u'alston', u'deni', u'conflict', u'telstra', u'share'] [u'write'] [u'anti', u'corrupt', u'raid', u'legal', u'question'] [u'applebi', u'climb', u'career', u'high', u'rank', u'place'] [u'exhibit', u'rais', u'fund', u'cultur', u'hous', u'plan'] [u'astarloa', u'apologis', u'bettini', u'bribe', u'claim'] [u'astl', u'blow', u'kiwi', u'ahead', u'seri'] [u'launch', u'probe', u'match', u'fix', u'claim'] [u'attack', u'kill', u'soldier', u'iraq'] [u'australian', u'polic', u'patrol', u'papua', u'guinea'] [u'australia', u'shrug', u'decoy', u'critic'] [u'babi', u'hand', u'home', u'grant'] [u'baghdad', u'embassi', u'bomb', u'injur'] [u'ballarat', u'head', u'bendigo'] [u'crowd', u'expect', u'whale', u'festiv'] [u'crowd', u'turn', u'discuss', u'council', u'merger'] [u'laden', u'name', u'qaeda', u'player'] [u'bomber', u'fight', u'rule', u'fine'] [u'break', u'hill', u'woman', u'jail', u'fraud'] [u'contractor', u'reject', u'latest', u'govt', u'offer'] [u'bush', u'reject', u'iraq', u'complaint'] [u'busi', u'group', u'reject', u'social', u'respons', u'survey'] [u'cairn', u'academ', u'join', u'nation', u'protest'] [u'tribal', u'recognit'] [u'shark', u'fin'] [u'canada', u'hop', u'bradburi'] [u'carr', u'investig', u'nation', u'assault', u'claim'] [u'central', u'survey', u'uncov', u'drive', u'habit'] [u'centr', u'put', u'emphasi', u'aborigin', u'male', u'health'] [u'child', u'die'] [u'chines', u'deleg', u'seek', u'invest'] [u'club', u'confer', u'focus', u'poki', u'plan'] [u'communiti', u'outcri', u'pool', u'redevelop'] [u'pois', u'launch', u'campaign'] [u'corpor', u'watchdog', u'clear', u'decept'] [u'corretja', u'come', u'spanish', u'battl'] [u'council', u'call', u'long', u'term', u'water', u'commit'] [u'council', u'question', u'cheap', u'airlin', u'fare'] [u'council', u'urg', u'lodg', u'crime', u'prevent', u'plan'] [u'council', u'urg', u'offer', u'open', u'space'] [u'court', u'rule', u'torr', u'strait', u'nativ', u'titl', u'disput'] [u'court', u'weigh', u'ump', u'futur'] [u'crean', u'call', u'respect', u'bush', u'address'] [u'democrat', u'seek', u'stricter', u'regul', u'uranium'] [u'democrat', u'want', u'fisher', u'compo', u'reef', u'report'] [u'dokic', u'battl', u'past', u'rubin', u'zurich'] [u'itali', u'tonga', u'replay'] [u'confid', u'manag', u'oliv', u'tree', u'diseas'] [u'market', u'explod', u'piraci'] [u'educ', u'polici', u'target', u'student', u'middl', u'east'] [u'egyptian', u'twin', u'good', u'shape', u'night'] [u'elleri', u'gear', u'strong', u'indi', u'show'] [u'ethanol', u'propon', u'say', u'pressur', u'mount', u'govt'] [u'hold', u'iraqi'] [u'expert', u'meet', u'save', u'tasmanian', u'devil'] [u'explos', u'solut', u'stubborn', u'stain'] [u'fail', u'adjust', u'payout'] [u'famili', u'feud', u'sydney', u'shoot', u'polic'] [u'farmer', u'elig', u'drought'] [u'fate', u'inform', u'centr', u'undecid'] [u'fate', u'robe', u'centr', u'undecid'] [u'govt', u'criticis', u'kopassus', u'world'] [u'govt', u'move', u'fail', u'age', u'home'] [u'govt', u'urg', u'boost', u'region', u'road', u'invest'] [u'govt', u'urg', u'nuclear', u'test', u'vet'] [u'ferrari', u'target', u'moto', u'champ', u'rossi'] [u'fijian', u'villag', u'apologis', u'ancestor'] [u'fiji', u'star', u'ban', u'match'] [u'fisherman', u'criticis', u'port', u'plan'] [u'fish', u'debri', u'hurt', u'gippsland', u'bird'] [u'forestri', u'code', u'systemat', u'ignor', u'committe', u'tell'] [u'frost', u'take', u'heavi', u'toll', u'canola', u'crop'] [u'frustrat', u'drive', u'road', u'rage', u'survey', u'show'] [u'gatecrash', u'lay', u'depart', u'claim'] [u'giteau', u'vickerman', u'expect', u'start', u'romania'] [u'goodwin', u'charg', u'select', u'comment'] [u'govt', u'legal', u'stop', u'sheep'] [u'govt', u'crack', u'traffic', u'slave'] [u'greec', u'reject', u'russian', u'extradit', u'order', u'media'] [u'group', u'push', u'calder', u'highway', u'boost'] [u'hand', u'feed', u'wan', u'hunter', u'drought', u'condit'] [u'harbi', u'william', u'consid'] [u'hayden', u'rat', u'world', u'best', u'batsman'] [u'hodg', u'place', u'restrict', u'duti'] [u'hoggard', u'burst', u'put', u'england', u'dhaka'] [u'hope', u'health', u'talk', u'avoid', u'industri', u'woe'] [u'hop', u'highway', u'work', u'boost', u'tourism'] [u'hous', u'boom', u'isol', u'incom', u'earner', u'report'] [u'hungri', u'eagl', u'face', u'troubl', u'fiji'] [u'indigen', u'communiti', u'pose', u'challeng'] [u'indonesia', u'deploy', u'troop', u'avert', u'muslim', u'christian'] [u'industri', u'action', u'bring', u'greec', u'standstil'] [u'injuri', u'pakistan', u'need', u'captain'] [u'injuri', u'worri', u'eas', u'england'] [u'injuri', u'worri', u'mount', u'england'] [u'inquiri', u'chairman', u'defend', u'close', u'hear'] [u'inquiri', u'tell', u'blair', u'chair', u'kelli', u'meet'] [u'defend', u'side', u'comp'] [u'isra', u'troop', u'return', u'rafah', u'camp'] [u'isra', u'troop', u'search', u'rafah', u'tunnel'] [u'israel', u'sign', u'palestinian', u'expuls', u'order'] [u'fuel', u'ration'] [u'kimberley', u'communiti', u'welcom', u'respons', u'petrol'] [u'knife', u'attack', u'caus', u'concern', u'hospit'] [u'kofi', u'annan', u'pull', u'islam', u'summit', u'malaysia'] [u'lehmann', u'confid', u'beat', u'injuri'] [u'back', u'nat', u'infrastructur', u'plan'] [u'liber', u'rival', u'accus', u'turnbul', u'court', u'labor'] [u'liberia', u'get', u'presid', u'ahead', u'elect'] [u'lismor', u'dopey', u'driver', u'surpris', u'offici'] [u'longreach', u'tiger', u'competit'] [u'lovelorn', u'bride', u'fake', u'drug', u'deal', u'jail'] [u'malle', u'fowl', u'figur', u'plummet', u'wake', u'drought'] [u'face', u'court', u'polic', u'incid'] [u'mater', u'staff', u'strike', u'hospit', u'redevelop'] [u'mayor', u'continu', u'support', u'light', u'rail', u'network'] [u'mayor', u'issu', u'warn', u'railway', u'futur'] [u'mayor', u'pleas', u'lend', u'leas', u'meet'] [u'member', u'fight', u'colleg', u'closur'] [u'mideast', u'initi', u'reviv', u'peac', u'plan'] [u'reopen', u'expect', u'boost', u'gold'] [u'mine', u'compani', u'start', u'drill', u'program'] [u'monkey', u'busi', u'brain', u'damag', u'victim'] [u'more', u'woman', u'face', u'drug', u'charg'] [u'violenc', u'nepal', u'peac', u'talk', u'fail'] [u'mundin', u'name', u'australia', u'deadliest', u'sportsman'] [u'murder', u'cameraman', u'famili', u'reject', u'claim'] [u'navratilova', u'name', u'team'] [u'neill', u'uefa', u'crunch', u'match'] [u'newcastl', u'councillor', u'quit'] [u'chief', u'justic'] [u'congress', u'voic', u'indigen', u'women'] [u'provid', u'altern', u'tourist'] [u'panel', u'consid', u'region', u'road', u'need'] [u'pipelin', u'creat', u'construct', u'job'] [u'ireland', u'talk', u'fail', u'elect', u'date'] [u'call', u'greater', u'polic', u'power'] [u'regul', u'funer'] [u'driver', u'affect', u'rage'] [u'opposit', u'reject', u'extend', u'daylight', u'save'] [u'parliament', u'rememb', u'controversi', u'labor'] [u'pasta', u'maker', u'say', u'custom', u'dont', u'want', u'food'] [u'peerless', u'hayden', u'star', u'perth'] [u'defend', u'minist', u'telstra', u'share', u'claim'] [u'polic', u'associ', u'say', u'station', u'time'] [u'polic', u'closer', u'solv', u'sydney', u'shoot'] [u'polic', u'dismantl', u'drug', u'syndic'] [u'polic', u'probe', u'shepparton', u'supermarket', u'hold'] [u'polic', u'probe', u'sydney', u'drive', u'shoot'] [u'polic', u'seek', u'griffith', u'fight', u'wit'] [u'posit', u'earn', u'drive', u'market', u'higher'] [u'prospect', u'councillor', u'guid', u'elect'] [u'public', u'elect', u'vote', u'remind'] [u'public', u'meet', u'discuss', u'land'] [u'puma', u'gambl', u'strength', u'team'] [u'puma', u'tonga', u'join', u'azzurri', u'criticis', u'draw'] [u'consid', u'greater', u'protect', u'grey', u'nurs'] [u'issu', u'fli', u'alert'] [u'raaf', u'cover', u'cost', u'canberra', u'past'] [u'rat', u'rise', u'like', u'christma', u'say'] [u'relentless', u'puma', u'pummel', u'namibia'] [u'riot', u'forc', u'bolivia', u'pipelin'] [u'wait', u'drug', u'test', u'verdict'] [u'rural', u'doctor', u'leav', u'son', u'visa', u'refus'] [u'russia', u'oppos', u'resolut', u'iraq'] [u'rychart', u'clear', u'immigr', u'hurdl'] [u'nat', u'budget', u'region', u'spend'] [u'scheme', u'offer', u'borroloola', u'youth', u'activ'] [u'scot', u'hand', u'euro', u'horror', u'draw'] [u'seal', u'boom', u'threaten', u'fish', u'speci'] [u'second', u'woman', u'court', u'tourist', u'attack'] [u'sharon', u'condemn', u'peac', u'plan'] [u'shop', u'hour', u'deregul', u'gambier'] [u'slim', u'chanc', u'steve', u'irwin', u'chang'] [u'smyth', u'deni', u'sixer', u'doldrum'] [u'snowi', u'shire', u'form', u'land', u'plan'] [u'solar', u'team', u'arriv', u'record', u'challeng'] [u'solomon', u'island', u'chariti', u'founder', u'face', u'jail'] [u'songstress', u'sing', u'virtu', u'theatr', u'revamp'] [u'south', u'coast', u'comment', u'assign', u'taskforc'] [u'southcorp', u'director', u'face', u'sharehold', u'crush'] [u'southcorp', u'sharehold', u'upset', u'payment'] [u'lanka', u'split', u'captainci', u'england', u'tour'] [u'staff', u'urg', u'workplac', u'safer'] [u'stanhop', u'award', u'braveri', u'medal', u'rescu', u'pilot'] [u'stawel', u'mentor', u'scheme', u'healthi', u'start'] [u'storag', u'shed', u'ahead', u'despit', u'communiti', u'concern'] [u'strand', u'sheep', u'threaten', u'industri', u'govt'] [u'swim', u'coach', u'hodg', u'deni', u'alleg'] [u'swim', u'coach', u'restrict', u'duti'] [u'tammin', u'council', u'hop', u'boost', u'town', u'employ'] [u'econom', u'boom', u'leav', u'poor'] [u'worker', u'redund', u'privatis', u'firm'] [u'teenag', u'hospitalis', u'meningococc'] [u'honour', u'rescu', u'effort'] [u'tobin', u'memori', u'mark', u'excel', u'award'] [u'tourist', u'poison', u'garden', u'eden'] [u'transport', u'union', u'warn', u'world', u'secur'] [u'turnbul', u'ask', u'union', u'liber', u'preselect', u'help'] [u'dead', u'sydney', u'drive', u'shoot'] [u'umaga', u'face', u'world'] [u'give', u'power', u'peacekeep', u'afghanistan'] [u'union', u'rais', u'doubt', u'port', u'claim'] [u'arrest', u'baghdad', u'hotel', u'bomb', u'suspect'] [u'court', u'reviv', u'suit', u'pfizer', u'nigerian'] [u'set', u'deadlin', u'iraq', u'timet'] [u'deliv', u'iraq', u'resolut', u'secur'] [u'muster', u'get', u'intern', u'award'] [u'bushfir', u'inquiri', u'recommend', u'fuel', u'reduct'] [u'govt', u'fund', u'seek', u'studi'] [u'govt', u'respons', u'hous', u'grant', u'loophol'] [u'unbeaten', u'nation', u'netbal', u'champ'] [u'secur', u'kelli', u'document', u'public'] [u'villa', u'quiet', u'alpay', u'futur'] [u'catch', u'home', u'grant', u'rort'] [u'govt', u'ask', u'help', u'jobless', u'miner'] [u'wallabi', u'face', u'select', u'dilemma'] [u'wallabi', u'rank'] [u'nat', u'push', u'chang', u'wine', u'rule'] [u'premier', u'eye', u'canberra'] [u'webber', u'champion', u'futur'] [u'wheatbelt', u'town', u'tidi', u'town', u'finalist'] [u'wild', u'control', u'program', u'end'] [u'wine', u'compani', u'pleas', u'takeov'] [u'wollongong', u'councillor', u'fear', u'theatr', u'futur'] [u'woman', u'recov', u'hospit', u'accid'] [u'wool', u'produc', u'elect', u'presid'] [u'young', u'peopl', u'encourag', u'farm'] [u'youth', u'group', u'prepar', u'music', u'festiv'] [u'youth', u'tackl', u'fish', u'clinic'] [u'adelaid', u'readi', u'debut'] [u'administr', u'region', u'airlin'] [u'age', u'aussi', u'come', u'pack', u'jone'] [u'albani', u'offic', u'readi', u'high', u'risk', u'task'] [u'albani', u'resid', u'call', u'calm', u'overhaul'] [u'alburi', u'mayor', u'forese', u'combin', u'citi', u'futur'] [u'anti', u'discrimin', u'amend', u'reform'] [u'staff', u'nation', u'strike'] [u'aust', u'base', u'share', u'busi', u'expand'] [u'australian', u'bear', u'writer', u'win', u'booker', u'prize'] [u'australian', u'expat', u'win', u'booker', u'prize'] [u'bangkok', u'skyscrap', u'safe'] [u'barrier', u'draw', u'boost', u'time', u'caulfield'] [u'blackal', u'farmer', u'seek', u'drought', u'assist'] [u'black', u'spot', u'remov', u'increas', u'road', u'safeti'] [u'blaze', u'take', u'hold', u'warrnambool', u'oldest', u'hous'] [u'bomber', u'solomon', u'pedal', u'quit', u'decis'] [u'box', u'champ', u'thornberri', u'retir'] [u'brack', u'consid', u'test', u'older', u'driver'] [u'break', u'hill', u'perfect', u'budget', u'film', u'say'] [u'break', u'hill', u'resid', u'station'] [u'burk', u'midwif', u'shortag', u'forc', u'long', u'trip'] [u'bush', u'play', u'rumour', u'rift'] [u'bush', u'thank', u'public', u'back'] [u'busi', u'group', u'predict', u'nerv', u'ambul'] [u'action', u'bushfir', u'report', u'recommend'] [u'brake', u'truck', u'stop', u'plan'] [u'allow', u'motherless', u'children', u'visit'] [u'camel', u'tour', u'caus', u'shire', u'concern'] [u'canada', u'rest', u'player', u'black', u'game'] [u'can', u'base', u'sensor', u'guid', u'blind', u'qlder'] [u'capit', u'open', u'world', u'account'] [u'carlton', u'player', u'escap', u'convict'] [u'carr', u'condemn', u'shoot'] [u'chelsea', u'despit', u'birmingham', u'draw'] [u'children', u'court', u'chief', u'call', u'reform'] [u'china', u'launch', u'man', u'space', u'flight'] [u'china', u'man', u'space', u'craft', u'land', u'mongolia'] [u'claim', u'china', u'overtak', u'japan', u'econom'] [u'clock', u'tick', u'sarina', u'council', u'face', u'water', u'woe'] [u'club', u'curfew', u'result', u'safer', u'street'] [u'coff', u'harbour', u'host', u'custodi', u'inquiri'] [u'communiti', u'servic', u'troubl', u'carlton', u'player'] [u'conduct', u'commiss', u'reject', u'hall', u'appeal'] [u'consum', u'confid', u'spark', u'rate', u'rise', u'talk'] [u'coron', u'rule', u'caus', u'crash'] [u'council', u'hear', u'bushland', u'develop', u'protest'] [u'council', u'offic', u'authoris', u'plan'] [u'council', u'plan', u'afford', u'hous'] [u'council', u'plan', u'preserv', u'histor'] [u'council', u'select', u'repres', u'steer'] [u'council', u'undecid', u'tank', u'site', u'rezon'] [u'court', u'hear', u'rivkin', u'appeal'] [u'crean', u'pledg', u'summit', u'reduc', u'poverti'] [u'croc', u'sink', u'sixer', u'razorback', u'tame', u'tiger'] [u'academ', u'join', u'nation', u'strike'] [u'date', u'bendigo', u'start', u'work'] [u'searci', u'hous', u'decis'] [u'death', u'toll', u'mark', u'nuclear', u'test', u'anniversari'] [u'demand', u'riverland', u'white', u'win', u'expect', u'doubl'] [u'democrat', u'unhappi', u'cook', u'decis'] [u'democrat', u'urg', u'tighter', u'uranium', u'mine', u'regul'] [u'dokic', u'battl', u'zurich', u'quarter'] [u'driver', u'river', u'cross', u'fear', u'tragedi'] [u'driver', u'salt', u'lake', u'warn'] [u'drought', u'delay', u'bilbi', u'rescu', u'plan'] [u'elvi', u'return', u'duti'] [u'england', u'host', u'dane', u'novemb', u'friend'] [u'england', u'unchang', u'bok', u'clash'] [u'decis', u'reject', u'power'] [u'abattoir', u'worker', u'ralli', u'entitl'] [u'factori', u'explos', u'india', u'kill', u'injur'] [u'famili', u'depart', u'child', u'abus'] [u'famili', u'feud', u'respons', u'shoot'] [u'farmer', u'sheep', u'ship', u'dock', u'remot'] [u'farmer', u'urg', u'avoid', u'harvest', u'injuri'] [u'farmer', u'urg', u'report', u'frost', u'damag'] [u'govt', u'trial', u'independ', u'age', u'care', u'perth'] [u'feud', u'famili', u'urg', u'cooper', u'polic'] [u'fiji', u'scrape', u'home'] [u'engulf', u'burleigh', u'unit'] [u'firefight', u'test', u'loom'] [u'warn', u'inadequ', u'inquiri', u'tell'] [u'home', u'owner', u'grant', u'condit'] [u'fishermen', u'warn', u'loss', u'reef', u'zone'] [u'fish', u'oper', u'criticis', u'marin', u'park', u'zone'] [u'rebel', u'kill', u'violenc', u'aceh'] [u'foreign', u'compani', u'defend', u'job', u'polici'] [u'franc', u'reshuffl', u'team', u'face', u'japan'] [u'ganguli', u'doubt', u'second', u'test'] [u'gibbon', u'promis', u'prais', u'bush'] [u'gold', u'coast', u'tourism', u'slump', u'buck', u'trend'] [u'gover', u'urg', u'implement', u'bushfir', u'inquiri'] [u'govt', u'opposit', u'accus', u'obstruction'] [u'govt', u'dismiss', u'frivol', u'prison', u'appeal'] [u'govt', u'reject', u'payment', u'plan', u'help'] [u'govt', u'unveil', u'polici', u'help', u'victim', u'polic'] [u'green', u'concern', u'spark', u'stop', u'honeymoon'] [u'green', u'light', u'residenti', u'estat'] [u'health', u'servic', u'put', u'hospit', u'redevelop', u'plan'] [u'high', u'cost', u'mean', u'shellharbour', u'council', u'elect'] [u'hodg', u'deni', u'second', u'misconduct', u'claim'] [u'hope', u'oper', u'cave', u'tourism', u'boost'] [u'hop', u'polici', u'boost', u'citi', u'develop'] [u'hospit', u'assault', u'rise'] [u'india', u'lose', u'ganguli', u'second', u'test'] [u'india', u'launch', u'satellit'] [u'indigen', u'busi', u'get', u'fund', u'boost', u'centr'] [u'indi', u'excit', u'grow', u'coast'] [u'investor', u'block', u'murdoch', u'reward', u'execut'] [u'investor', u'wait', u'news', u'trade', u'stop'] [u'iraqi', u'battl', u'leav', u'dead', u'dozen', u'wound'] [u'iraq', u'launch', u'currenc'] [u'ireland', u'chang', u'namibia', u'match'] [u'isra', u'armi', u'continu', u'sweep', u'rafah'] [u'isra', u'forc', u'stage', u'incurs', u'gaza'] [u'italian', u'rebound', u'overpow', u'tonga'] [u'japan', u'contribut', u'iraq'] [u'jazz', u'festiv', u'boost', u'stawel', u'coffer'] [u'judg', u'rule', u'ump', u'trade'] [u'junior', u'kangaroo', u'prepar', u'clash'] [u'kafelnikov', u'hurt', u'match', u'fix', u'claim'] [u'keat', u'seek', u'promiscu', u'econom', u'tie'] [u'korora', u'teacher', u'stop', u'work', u'deal'] [u'labor', u'protest', u'prove', u'democraci', u'aliv', u'bush'] [u'labor', u'vow', u'fight', u'govt', u'strike', u'propos'] [u'updat', u'deal', u'cyber', u'crime'] [u'lehmann', u'miss', u'india', u'tour'] [u'lehmann', u'miss', u'second', u'test', u'india', u'tour'] [u'light', u'rail', u'discuss', u'deputi'] [u'liverpool', u'boss', u'defend', u'heskey', u'role', u'bust'] [u'longyard', u'golf', u'cours', u'sale', u'end', u'uncertainti'] [u'lopez', u'defus', u'scud', u'russian', u'fail'] [u'patronag', u'cast', u'doubt', u'servic'] [u'mackay', u'send', u'trade', u'deleg'] [u'appeal', u'polic', u'death', u'threat', u'convict'] [u'face', u'court', u'crash'] [u'hospit', u'stab'] [u'plead', u'guilti', u'rape'] [u'mayor', u'push', u'capricorn', u'coast', u'nation', u'park'] [u'mcdermot', u'name', u'develop', u'panel'] [u'medic', u'indemn', u'crisi', u'avert', u'wagga', u'wagga'] [u'member', u'vote', u'rural', u'group', u'futur'] [u'mine', u'compani', u'remain', u'silent', u'senat', u'uranium'] [u'minist', u'question', u'indigen', u'histori', u'claim'] [u'molik', u'hantuchova', u'fall', u'zurich'] [u'field', u'drill', u'west'] [u'train', u'exercis', u'plan', u'curb'] [u'motorcycl', u'gang', u'drive', u'scot', u'town'] [u'highlight', u'hospit', u'concern'] [u'murdoch', u'outlin', u'news', u'corp', u'initi'] [u'music', u'chair', u'wilson', u'jaguar', u'drive'] [u'namibian', u'coach', u'prais', u'hide', u'digniti'] [u'nativ', u'titl', u'public', u'work', u'decis', u'bring', u'mix'] [u'nat', u'choos', u'psychiatrist', u'contest', u'rockhampton'] [u'nat', u'sight', u'south', u'west'] [u'nazi', u'land', u'owner', u'court'] [u'neglect', u'librari', u'resourc', u'nation', u'trend'] [u'claim', u'surfac', u'wartim', u'naval', u'disast'] [u'helicopt', u'final', u'deliv', u'navi'] [u'mine', u'rescu', u'servic', u'advisori', u'committe', u'meet'] [u'zealand', u'inflat', u'steadi'] [u'resolut', u'council', u'hospit', u'impass'] [u'north', u'korea', u'reject', u'talk'] [u'premier', u'slat', u'shoot', u'comment'] [u'union', u'back', u'higher', u'foreign', u'student', u'number'] [u'warn', u'govt', u'plan', u'road', u'fund'] [u'mine', u'facelift'] [u'opposit', u'admit', u'camera', u'figur', u'mistak'] [u'parliament', u'hous', u'secur', u'tighten'] [u'petit', u'call', u'children', u'keep'] [u'phillip', u'come', u'aliv'] [u'plan', u'afoot', u'reviv', u'surat', u'rugbi', u'leagu', u'team'] [u'plan', u'land', u'clear', u'welcom'] [u'govt', u'claim', u'hide', u'gold', u'futil', u'search'] [u'polic', u'arrest', u'hindu', u'leader', u'prevent', u'ayodhya'] [u'polic', u'hunt', u'light', u'finger', u'thiev'] [u'polic', u'investig', u'fatal'] [u'politician', u'pour', u'school', u'document'] [u'poor', u'weather', u'blame', u'drop', u'australia', u'grape'] [u'power', u'provid', u'offer', u'alic', u'train', u'workshop'] [u'princess', u'royal', u'slip', u'melbourn'] [u'progress', u'contract', u'talk', u'specialist'] [u'public', u'question', u'speed', u'camera'] [u'public', u'wast', u'dump'] [u'kid', u'claim', u'home', u'owner', u'grant'] [u'nurs', u'issu', u'warn', u'residenti', u'age', u'care'] [u'resid', u'flee', u'dead', u'attack', u'eastern'] [u'play', u'await', u'drug', u'test', u'fate'] [u'rock', u'lobster', u'forum', u'head', u'dongara'] [u'roddick', u'lead', u'assault', u'madrid'] [u'ruck', u'dead', u'say', u'kiwi', u'coach'] [u'issu', u'measl', u'warn'] [u'parliament', u'reject', u'crown', u'leas'] [u'schoolgirl', u'complet', u'fundrais', u'trek'] [u'school', u'art', u'build', u'get', u'leas', u'life'] [u'search', u'miss', u'nurs', u'home'] [u'separ', u'egyptian', u'twin', u'soon', u'emerg'] [u'serena', u'rush', u'court'] [u'sharehold', u'vote', u'murdoch', u'execut', u'reward'] [u'share', u'market', u'hang', u'finish', u'high', u'note'] [u'sheep', u'ship', u'delay', u'vail', u'visit'] [u'shoot', u'teenag', u'die', u'hospit'] [u'silenc', u'mark', u'maralinga', u'test'] [u'silvagni', u'quit', u'carlton', u'board'] [u'skipper', u'urg', u'england', u'lift', u'bok'] [u'solomon', u'deploy', u'enorm', u'success', u'downer'] [u'solomon', u'stick', u'bomber'] [u'springbok', u'want', u'tempo', u'game', u'england'] [u'andrew', u'lengthen', u'open'] [u'strand', u'sheep', u'quandari', u'mirror', u'govt', u'exercis'] [u'strong', u'quak', u'jolt', u'tokyo', u'injuri', u'report'] [u'studi', u'say', u'govt', u'indigen', u'polici', u'fail'] [u'sydney', u'water', u'crack', u'restrict'] [u'tafe', u'teacher', u'student', u'protest'] [u'nurs', u'demand', u'tougher', u'hospit', u'secur'] [u'telstra', u'commit', u'improv', u'communic'] [u'telstra', u'sell', u'threaten', u'internet', u'servic'] [u'thou', u'shalt', u'flout', u'traffic', u'rule', u'russian', u'priest'] [u'jail', u'harbour', u'bali', u'bomber'] [u'tighter', u'secur', u'consid', u'melbourn', u'tram'] [u'toowoomba', u'precinct', u'project', u'get', u'green', u'light'] [u'tourism', u'bodi', u'look', u'boost', u'intern'] [u'tourism', u'industri', u'welcom', u'increas', u'oversea'] [u'trade', u'minist', u'reassur', u'middl', u'east', u'live', u'anim'] [u'dead', u'workplac', u'accid'] [u'umaga', u'stay', u'world'] [u'union', u'challeng', u'fletcher', u'jone', u'cut'] [u'staff', u'protest', u'industri', u'polici'] [u'forward', u'trial', u'wildcat'] [u'revis', u'iraq', u'draft'] [u'resolut', u'vote', u'iraq'] [u'veto', u'resolut', u'condemn', u'israel', u'secur'] [u'vow', u'catch', u'gaza', u'convoy', u'bomber'] [u'vice', u'chancellor', u'prais', u'depart', u'council'] [u'vickerman', u'giffin', u'mortlock', u'bench'] [u'west', u'gate', u'tragedi', u'rememb'] [u'wild', u'dog', u'threaten', u'kosciuszko', u'sheep', u'graze'] [u'wildlif', u'expert', u'warn', u'bedevil', u'diseas'] [u'william', u'dismiss', u'concern', u'develop'] [u'wollongong', u'council', u'back', u'tourist', u'centr', u'plan'] [u'woman', u'die', u'day', u'attack'] [u'woman', u'charg', u'upgrad', u'murder'] [u'world', u'expect', u'generat', u'rugbi', u'club'] [u'world', u'anglican', u'leader', u'open', u'debat'] [u'year', u'rider', u'write', u'aust', u'record', u'book'] [u'plan', u'protect', u'nativ', u'veget'] [u'abbott', u'unveil', u'plan', u'medic', u'indemn', u'review'] [u'academ', u'action', u'stop', u'tertiari'] [u'opposit', u'promis', u'motor', u'sport', u'facil'] [u'adelaid', u'corrobore', u'mine'] [u'airlin', u'reason', u'chanc', u'trade'] [u'allianc', u'improv', u'healthi', u'food', u'remot'] [u'share', u'suspend'] [u'annan', u'warn', u'muslim', u'leader', u'western'] [u'arafat', u'condemn', u'convoy', u'bomb'] [u'arsenal', u'player', u'admit', u'charg', u'unit', u'brawl'] [u'asylum', u'seeker', u'refus', u'protest', u'detent'] [u'asylum', u'seeker', u'stage', u'rooftop', u'protest'] [u'atec', u'warn', u'industri', u'rebuild', u'sar'] [u'auditor', u'tell', u'foster', u'child', u'inquiri', u'famili'] [u'aust', u'peacekeep', u'arrest', u'rebel', u'milit', u'solomon'] [u'australia', u'plan', u'solomon', u'militari', u'pull'] [u'automot', u'retail', u'announc', u'share', u'market', u'float'] [u'azerbaijan', u'opposit', u'support', u'violent'] [u'bank', u'profit', u'surg'] [u'bank', u'queensland', u'target', u'southern', u'state'] [u'name', u'snub', u'million', u'dollar', u'world', u'match', u'play'] [u'bolivian', u'protest', u'fatal', u'clash', u'troop'] [u'brit', u'lose', u'cunningham', u'kangaroo', u'seri'] [u'break', u'hill', u'record', u'bumper', u'tourist', u'season'] [u'brown', u'tiger'] [u'bush', u'sheriff', u'comment', u'misinterpret', u'ambassador'] [u'calder', u'highway', u'speed', u'limit', u'rise'] [u'chang', u'drought', u'criteria'] [u'canada', u'calendar'] [u'canada', u'face', u'black', u'mission', u'imposs'] [u'capit', u'lose', u'french', u'club', u'world'] [u'carr', u'defend', u'ship', u'remark'] [u'china', u'visit', u'open', u'tamworth', u'door', u'trade'] [u'china', u'vow', u'space', u'mission', u'year'] [u'chines', u'spacecraft', u'land', u'pilot', u'safe'] [u'church', u'strike', u'deal', u'age', u'facil'] [u'claim', u'dairi', u'woe', u'flow', u'milk', u'price'] [u'cliff', u'develop', u'draw', u'green', u'anger'] [u'clock', u'tick', u'age', u'aussi'] [u'cold', u'spring', u'stop', u'festiv', u'attract'] [u'commission', u'resign', u'amalgam', u'plan'] [u'concern', u'rais', u'rural', u'children', u'health'] [u'warn', u'murray', u'stand', u'lose'] [u'council', u'consid', u'nois', u'disput'] [u'council', u'puzzl', u'pipelin', u'fund', u'snub'] [u'court', u'approv', u'demerg', u'document'] [u'court', u'reserv', u'decis', u'rivkin', u'appeal'] [u'croc', u'bite', u'post'] [u'staff', u'join', u'nationwid', u'strike'] [u'cub', u'support', u'fear'] [u'dead', u'tasmania'] [u'deputi', u'defend', u'govt', u'assist', u'scheme'] [u'drought', u'hit', u'south', u'west', u'rural', u'servic'] [u'confid', u'millennium', u'train', u'reliabl'] [u'england', u'roll', u'maul', u'illeg', u'eal'] [u'england', u'wont', u'risk', u'injuri', u'bok', u'coach'] [u'environment', u'group', u'close', u'curti'] [u'environment', u'watchdog', u'probe', u'uranium', u'spill'] [u'everton', u'deni', u'chelsea', u'rooney'] [u'feder', u'environ', u'fund', u'go', u'beg'] [u'ferreira', u'slam', u'disgrac', u'madrid', u'crowd'] [u'confirm', u'singl', u'qualifi'] [u'fifa', u'drug', u'warn', u'ferdinand'] [u'firestorm', u'death', u'inquest', u'releas', u'preliminari'] [u'fodder', u'ship', u'readi', u'coco', u'island', u'sheep', u'mission'] [u'mayor', u'end', u'long', u'council', u'career'] [u'prompt', u'tougher', u'quarantin'] [u'frederick', u'hang', u'intern', u'run', u'boot'] [u'futur', u'region', u'airlin', u'servic', u'doubt'] [u'gallop', u'tabl', u'marina', u'develop', u'legal', u'advic'] [u'germani', u'franc', u'russia', u'agre', u'resolut'] [u'glen', u'inn', u'council', u'record', u'deficit'] [u'govt', u'move', u'ensur', u'public', u'access', u'recreat'] [u'govt', u'pass', u'develop', u'law'] [u'green', u'fume', u'tot', u'bush', u'secur'] [u'green', u'question', u'brighton', u'inciner', u'health', u'impact'] [u'growth', u'hormon', u'beef', u'product', u'caus', u'cancer'] [u'hard', u'issu', u'unresolv', u'free', u'trade', u'deal'] [u'henin', u'hardenn', u'track', u'spot'] [u'heritag', u'inspector', u'check', u'damag', u'home'] [u'high', u'nickel', u'price', u'boost', u'develop'] [u'hockeyroo', u'hudson', u'comeback', u'trail'] [u'hogg', u'injur', u'macgil'] [u'holiday', u'hotel', u'stay', u'open', u'despit', u'sale'] [u'honeymoon', u'open', u'inquiri'] [u'horticulturist', u'hop', u'improv', u'skill'] [u'hotter', u'weather', u'prompt', u'region', u'power', u'warn'] [u'cool', u'thorn', u'unworri', u'canada', u'score'] [u'iluka', u'begin', u'redund', u'plan'] [u'india', u'lose', u'captain', u'ahead', u'crucial', u'kiwi', u'test'] [u'indian', u'troop', u'battl', u'drug', u'smuggler', u'burma'] [u'indonesian', u'court', u'jail', u'bali', u'bomb', u'accomplic'] [u'indonesian', u'court', u'jail', u'mcdonald', u'bomber'] [u'inland', u'support', u'budget', u'surplus', u'bush', u'spend'] [u'insur', u'woe', u'turn', u'away', u'potenti', u'medic', u'student'] [u'intersect', u'black', u'spot', u'safeti', u'boost'] [u'investig', u'probe', u'uranium', u'spill'] [u'iraq', u'currenc', u'go', u'circul'] [u'golfer', u'bull'] [u'island', u'fear', u'sheep', u'arriv'] [u'jindabyn', u'event', u'reel', u'angler'] [u'jone', u'back', u'eal', u'attack', u'england'] [u'jone', u'hit', u'select', u'critic'] [u'judici', u'bias', u'claim', u'rivkin', u'appeal'] [u'junior', u'kangaroo', u'death'] [u'king', u'rule', u'strand', u'sheep'] [u'trobe', u'ralli', u'plan', u'reform'] [u'launceston', u'council', u'continu', u'search', u'manag'] [u'lion', u'secur', u'lappin', u'signatur'] [u'lower', u'hous', u'pass', u'higher', u'educ'] [u'macgil', u'undergo', u'fit', u'test'] [u'magistr', u'find', u'policeman', u'guilti', u'assault'] [u'major', u'event', u'cancel', u'follow', u'pondag', u'algal'] [u'charg', u'cocain', u'bust', u'brisban', u'airport'] [u'hail', u'hero', u'hous', u'rescu'] [u'injur', u'shed', u'explos'] [u'court', u'drug', u'charg'] [u'maori', u'leader', u'elect', u'bodi', u'pacif'] [u'market', u'slip', u'despit', u'strong', u'profit'] [u'mayor', u'confid', u'port', u'hinchinbrook', u'work', u'track'] [u'mayor', u'daunt', u'crocodil', u'hunter', u'expans'] [u'mayor', u'tell', u'altern', u'servic'] [u'face', u'court', u'rape', u'charg'] [u'miner', u'agre', u'water', u'wise'] [u'miner', u'wont', u'guarante', u'kimberley', u'job'] [u'monash', u'staff', u'join', u'strike', u'action'] [u'rain', u'need', u'quell', u'bushfir', u'danger'] [u'motor', u'fatigu', u'admiss', u'shock', u'polic'] [u'back', u'sheep', u'return', u'secur', u'quarantin'] [u'call', u'agricultur', u'colleg', u'investig'] [u'call', u'road', u'safeti', u'investig'] [u'fight', u'doctor', u'coupl', u'australia'] [u'fire', u'shoot', u'govt', u'lobster', u'rule'] [u'offer', u'assur', u'asbesto', u'affect'] [u'reject', u'region', u'sheriff'] [u'garnet', u'plant', u'record', u'higher', u'zinc', u'price'] [u'murray', u'river', u'report', u'receiv', u'environment', u'support'] [u'muslim', u'summit', u'withdrawl', u'iraq'] [u'ball', u'respons', u'fumbl', u'fiji'] [u'newcastl', u'staff', u'join', u'nation', u'univers', u'strike'] [u'ruck', u'polici', u'problem', u'black'] [u'technolog', u'drop', u'cost', u'control', u'wild'] [u'code', u'council', u'open', u'fair'] [u'york', u'ferri', u'crash', u'kill'] [u'convict', u'polic', u'offic', u'guilti'] [u'evid', u'guantanamo', u'detaine', u'tortur', u'ruddock'] [u'evid', u'rivkin', u'mental', u'ill', u'trial'] [u'extend', u'daylight', u'save'] [u'need', u'reserv', u'rais', u'rat'] [u'promis', u'say', u'rychart'] [u'minist', u'visit', u'tamworth', u'district'] [u'opposit', u'push', u'court', u'trial'] [u'tab', u'merg'] [u'region', u'airlin', u'administr'] [u'develop', u'board', u'rep', u'announc'] [u'govern', u'ban', u'slingshot'] [u'minist', u'surpris', u'result', u'aborigin'] [u'polic', u'offic', u'guilti', u'assault'] [u'allow', u'home', u'grant', u'access'] [u'nuclear', u'talk', u'stall', u'nkorea', u'hit'] [u'nurs', u'group', u'push', u'better', u'tasmanian', u'staff'] [u'open', u'record', u'stand', u'india'] [u'parliament', u'end', u'tie', u'privi', u'council'] [u'oliv', u'prebbl', u'plate'] [u'opposit', u'claim', u'sheep', u'ship', u'cost'] [u'pair', u'jail', u'conveni', u'store', u'hold'] [u'palestinian', u'forc', u'arrest', u'convoy', u'blast'] [u'palestinian', u'detain', u'attack', u'convoy'] [u'parliamentari', u'probe', u'consid', u'toxic', u'herbicid'] [u'parliament', u'honour', u'bali', u'victim'] [u'parliament', u'set', u'hospit', u'committe'] [u'payn', u'win', u'defier', u'ride', u'oliv', u'absenc'] [u'petit', u'urg', u'govt', u'scrap', u'soil', u'recycl'] [u'find', u'hide', u'wwii', u'gold'] [u'polic', u'abandon', u'chase', u'amidst', u'safeti', u'fear'] [u'polic', u'investig', u'attempt', u'home', u'invas'] [u'polic', u'seiz', u'north', u'illicit', u'tobacco'] [u'port', u'kembla', u'histori', u'win', u'gong'] [u'probe', u'begin', u'horror', u'pacif', u'highway', u'crash'] [u'public', u'feedback', u'seek', u'indoor', u'pool', u'plan'] [u'qanta', u'storm', u'domest', u'market'] [u'say', u'fund', u'region', u'hous', u'inadequ'] [u'rabbitoh', u'hang', u'death'] [u'realiti', u'show', u'domin', u'world', u'scene'] [u'repco', u'plan', u'stock', u'market', u'float'] [u'report', u'prompt', u'indigen', u'polici', u'chang'] [u'resourc', u'sector', u'boost', u'sharemarket', u'gain'] [u'romanian', u'cruis', u'wallabi', u'bruis'] [u'rossi', u'target', u'life', u'wheel'] [u'runaway', u'thief', u'month'] [u'rural', u'playwright', u'competit', u'launch'] [u'russia', u'say', u'vote', u'iraq', u'draft'] [u'govt', u'expect', u'freehold', u'crown', u'leas'] [u'notch', u'netbal', u'championship', u'win'] [u'submarin', u'maker', u'win', u'contract'] [u'viewer', u'receiv', u'second', u'channel'] [u'schieffer', u'foreshadow', u'free', u'trade', u'deal', u'clash'] [u'school', u'support', u'staff', u'vote', u'disput', u'strike'] [u'shadow', u'attorney', u'general', u'support', u'call'] [u'shortag', u'affect', u'polic', u'bendigo'] [u'south', u'africa', u'expect', u'tough', u'test', u'pakistan'] [u'southern', u'cross', u'join', u'nation', u'strike'] [u'south', u'korean', u'presid', u'aid', u'jail'] [u'spain', u'lead', u'ban', u'weapon', u'drill'] [u'spur', u'turn', u'rivaldo'] [u'staff', u'shortag', u'limit', u'bunburi', u'hospit', u'care'] [u'straeuli', u'join', u'england', u'roll', u'maul', u'critic'] [u'stress', u'england', u'beatabl', u'georgia', u'coach'] [u'strike', u'disrupt', u'campus'] [u'summer', u'stonefruit', u'suppli', u'crop', u'loss'] [u'surfboard', u'manufactur', u'support', u'call'] [u'surgeri', u'end', u'davenport', u'season'] [u'tafe', u'cours', u'includ', u'organ', u'farm'] [u'telemarket', u'face', u'restrict'] [u'tongan', u'skipper', u'clear', u'concuss'] [u'tougher', u'penalti', u'mislead', u'real', u'estat'] [u'uefa', u'giant', u'european', u'cruis'] [u'umaga', u'remain', u'defiant', u'chanc'] [u'univers', u'shut', u'strike', u'action'] [u'univers', u'england', u'staff', u'join', u'nation'] [u'univers', u'staffer', u'ralli', u'higher', u'chang'] [u'watchdog', u'say', u'iran', u'clarifi', u'nuclear'] [u'author', u'investig', u'york', u'ferri', u'crash'] [u'offer', u'econom', u'hope'] [u'impos', u'sanction', u'syria'] [u'renew', u'militari', u'tie', u'indonesia'] [u'women', u'footbal', u'leagu', u'seek', u'reviv'] [u'farmer', u'count', u'frost', u'loss'] [u'voter', u'urg', u'protest', u'indigen'] [u'builder', u'train', u'fund', u'limbo'] [u'grape', u'product', u'drop'] [u'great', u'southern', u'share', u'environ', u'fund'] [u'landcar', u'reach', u'turn', u'point'] [u'wale', u'chang', u'tonga', u'game'] [u'walkley', u'attract', u'strong', u'nomin'] [u'water', u'loss', u'forc', u'sarina', u'closur'] [u'waugh', u'reject', u'hook', u'bias', u'claim'] [u'women', u'tackl', u'sexism', u'parliament'] [u'well', u'highlight', u'sunshin', u'coast', u'ecosystem'] [u'wheatbelt', u'wine', u'win', u'prize'] [u'wide', u'staff', u'join', u'strike'] [u'wollongong', u'protest', u'plan', u'reform'] [u'wood', u'harrington', u'head', u'world', u'challeng', u'line'] [u'academ', u'say', u'small', u'campusus', u'hardest'] [u'adelaid', u'unit', u'debut'] [u'afghan', u'teen', u'prepar', u'deport'] [u'india', u'bomb', u'trial', u'resum', u'conspiraci'] [u'black', u'hammer', u'canada'] [u'anglican', u'reach', u'truce', u'gay'] [u'apart', u'plan', u'get', u'council', u'green', u'light'] [u'appl', u'launch', u'music', u'download', u'window'] [u'woodsid', u'worker', u'strike'] [u'astarloa', u'say', u'conscienc', u'clear', u'dope', u'rumour'] [u'aussi', u'rooki', u'fraser', u'steal', u'monti', u'thunder'] [u'australia', u'fail', u'poverti', u'scorecard'] [u'australian', u'tuna', u'win', u'japan', u'prais'] [u'autopsi', u'conduct', u'carcass'] [u'award', u'pair', u'bali', u'bomb'] [u'bail', u'refus', u'charg', u'child', u'porn'] [u'bali', u'blast', u'care', u'earn', u'medal', u'wagga', u'nurs'] [u'ballarat', u'lose', u'daylight', u'save', u'campaign'] [u'barthez', u'head', u'home', u'marseill'] [u'beatti', u'hop', u'grand', u'prix', u'upset'] [u'bendigo', u'bank', u'revamp'] [u'bendigo', u'host', u'state', u'award'] [u'biker', u'head', u'urg', u'care'] [u'blair', u'add', u'black', u'injuri', u'woe'] [u'blast', u'gunshot', u'near', u'indian', u'kashmir', u'chief', u'home'] [u'blue', u'face', u'highburi', u'exam'] [u'climb', u'electr', u'tower', u'suffer', u'sever', u'burn'] [u'bush', u'discuss', u'iraq', u'north', u'korea', u'koizumi'] [u'bush', u'land', u'japan', u'start', u'asian', u'tour'] [u'chang', u'famili', u'curb', u'fatherless'] [u'capit', u'crash', u'russia'] [u'capricornia', u'support', u'univers', u'action'] [u'carlisl', u'zimbabw', u'shin', u'light'] [u'carr', u'welcom', u'cleric', u'help', u'polic', u'probe'] [u'sale', u'septemb'] [u'church', u'reconcili', u'presid', u'say'] [u'cleric', u'tell', u'congreg', u'help', u'polic', u'probe'] [u'clijster', u'eas', u'zurich', u'quarter'] [u'complaint', u'lodg', u'connect', u'proxi', u'vote'] [u'coron', u'court', u'tell', u'capsiz', u'yacht', u'work'] [u'coroni', u'inquest', u'woman', u'death', u'wind'] [u'council', u'general', u'manag', u'defend', u'handl'] [u'council', u'build', u'bridg'] [u'court', u'grant', u'rann', u'advisor', u'oversea', u'travel'] [u'creditor', u'leagu', u'club', u'decis'] [u'brace', u'heavyweight', u'clash'] [u'cyclist', u'challeng', u'place'] [u'dawson', u'hill', u'england'] [u'deal', u'secur', u'timber', u'job'] [u'boer', u'return', u'boost', u'ranger', u'ahead', u'unit', u'clash'] [u'democrat', u'tougher', u'control', u'uranium'] [u'dentist', u'shortag', u'contribut', u'clinic', u'woe'] [u'doctor', u'recognis', u'bali', u'effort'] [u'dramat', u'homer', u'send', u'yanke', u'world', u'seri'] [u'economist', u'predict', u'jobless', u'rate', u'continu'] [u'eden', u'whale', u'festiv', u'begin'] [u'email', u'problem', u'telstra', u'say'] [u'england', u'thwart', u'teenag', u'centuri', u'maker'] [u'brazil', u'pledg', u'help', u'australian', u'escap'] [u'expert', u'prepar', u'wwii', u'dispos'] [u'farmer', u'undermin', u'explor', u'plan'] [u'oppn', u'seek', u'reef', u'rezon', u'brief'] [u'ferrero', u'cling', u'world', u'spot'] [u'figur', u'highlight', u'strong', u'tourism', u'invest'] [u'fijian', u'challeng', u'mercenari', u'recruit', u'iraq'] [u'final', u'carlisl', u'reap', u'reward'] [u'firefight', u'pack', u'bag', u'competit'] [u'fishermen', u'welcom', u'decis', u'nation', u'park'] [u'teacher', u'get', u'year', u'jail', u'abus'] [u'victorian', u'prison', u'guard', u'face', u'arm', u'hold'] [u'injur', u'canberra', u'crash'] [u'free', u'kick', u'maestro', u'set', u'sight', u'milan'] [u'french', u'magistr', u'toss', u'bench'] [u'frenchman', u'take', u'european', u'central', u'bank'] [u'funer', u'plane', u'crash', u'famili'] [u'gazza', u'throw', u'wolv'] [u'geraldton', u'port', u'dredg', u'end'] [u'gillespi', u'india', u'tour'] [u'govt', u'consid', u'port', u'reject', u'sheep', u'ship'] [u'govt', u'deni', u'cora', u'linn', u'sale', u'plan'] [u'govt', u'fund', u'help', u'repair', u'tamworth', u'school'] [u'govt', u'investig', u'bolivian', u'evacu', u'option'] [u'govt', u'investig', u'secur', u'breach'] [u'govt', u'plan', u'nation', u'centr', u'assess', u'terror', u'threat'] [u'grafton', u'mayor', u'lament', u'rail', u'decis'] [u'green', u'light', u'carnarvon', u'basin', u'field', u'work'] [u'gregan', u'expect', u'wallabi', u'step'] [u'dealer', u'face', u'court', u'replica', u'weapon'] [u'hec', u'fair', u'research', u'say'] [u'drug', u'cocktail', u'slash', u'mortal', u'prolong', u'life'] [u'hodg', u'slap', u'writ', u'channel'] [u'hospit', u'nation', u'alert', u'ensur'] [u'howard', u'hypocrit', u'detaine', u'children'] [u'howard', u'play', u'sheriff', u'comment'] [u'howard', u'prais', u'resolut', u'iraq'] [u'huge', u'secur', u'oper', u'ahead', u'bush', u'japan', u'visit'] [u'hundr', u'worker', u'lose', u'job', u'shock', u'meat'] [u'husband', u'wife', u'honour', u'bali'] [u'ignor', u'mahathir', u'anti', u'semit', u'comment', u'downer', u'say'] [u'india', u'recal', u'laxman', u'seri'] [u'india', u'send', u'rocket', u'carri', u'satellit', u'space'] [u'indigen', u'dancer', u'converg', u'mildura'] [u'indonesian', u'soldier', u'jail', u'aid', u'papua', u'rebel'] [u'strong', u'be', u'sale'] [u'iraq', u'hail', u'endors', u'resolut'] [u'ireland', u'corrigan', u'shoulder', u'injuri'] [u'itali', u'offici', u'take', u'coach', u'advic', u'head'] [u'jacobsen', u'lead', u'greensboro', u'classic'] [u'japan', u'consid', u'send', u'troop', u'iraq'] [u'jimmi', u'rasta', u'remand', u'solomon', u'murder', u'charg'] [u'kiwi'] [u'kiwi', u'experi', u'outback'] [u'krige', u'england', u'grudg', u'match'] [u'land', u'council', u'seek', u'nativ', u'titl', u'resourc'] [u'latest', u'north', u'korean', u'nuclear', u'threat', u'dismiss', u'bluff'] [u'lock', u'take', u'toowoomba', u'ranger'] [u'lomu', u'get', u'disappoint'] [u'mackay', u'accus', u'sell', u'fertilis', u'drug'] [u'madrid', u'chase', u'victori', u'vigo'] [u'malaysia', u'apologis', u'mahathir', u'anti', u'jewish'] [u'malaysian', u'label', u'australia', u'puppet'] [u'charg', u'east', u'brisban', u'stab'] [u'jail', u'burn', u'hous'] [u'face', u'court', u'throat', u'slash'] [u'manufactur', u'fin', u'farm', u'incid'] [u'staff', u'work', u'strike'] [u'mayor', u'hop', u'council'] [u'mayor', u'say', u'manag', u'style', u'work'] [u'mayor', u'welcom', u'fund', u'distribut', u'inquiri'] [u'mcgeechan', u'ring', u'chang', u'eagl', u'clash'] [u'minist', u'dissolv', u'palm', u'council'] [u'ministeri', u'staff', u'question', u'senat'] [u'minist', u'promis', u'time', u'soil', u'recycl'] [u'minist', u'unhappi', u'health', u'committe', u'snub'] [u'money', u'buri', u'man', u'parti', u'plan'] [u'chanc', u'drought', u'break', u'rain'] [u'mourner', u'farewel', u'labor', u'stalwart', u'cairn'] [u'move', u'petrol', u'communiti'] [u'back', u'educ', u'reform'] [u'challeng', u'famili', u'court', u'function'] [u'concern', u'australia', u'post', u'privatis'] [u'hearten', u'latest', u'job', u'figur'] [u'lose', u'ditch', u'effort', u'chang', u'rock', u'lobster'] [u'urg', u'govt', u'outlin', u'timber', u'industri', u'futur'] [u'home', u'anti', u'violenc', u'scheme'] [u'wharf', u'bring', u'navi', u'eden'] [u'plan', u'build', u'nuclear', u'arm', u'iran'] [u'award', u'damag', u'fight'] [u'oppn', u'seek', u'council', u'merger', u'referendum'] [u'polic', u'launch', u'joint', u'oper'] [u'polic', u'team', u'patrol', u'border'] [u'nurs', u'seek', u'boost', u'number'] [u'ocean', u'pool', u'give', u'ahead'] [u'compani', u'begin', u'seismic', u'survey'] [u'olymp', u'spill', u'creat', u'industri', u'concern'] [u'opposit', u'critic', u'propos', u'board'] [u'pair', u'highway', u'crash'] [u'pharmaceut', u'founder', u'lose', u'appeal'] [u'pilot', u'focus', u'ferri', u'crash', u'probe'] [u'condemn', u'mahathir', u'anti', u'semit', u'claim'] [u'polic', u'face', u'long', u'haul', u'track', u'truck'] [u'polic', u'investig', u'second', u'sydney', u'drive'] [u'polic', u'probe', u'teen', u'attack'] [u'polic', u'question', u'follow', u'brisban', u'stab'] [u'polic', u'reject', u'claim', u'bendigo', u'understaf'] [u'polic', u'seiz', u'weapon', u'ammunit', u'gold', u'coast', u'home'] [u'pope', u'celebr', u'year', u'mileston'] [u'port', u'fairi', u'recognis', u'bali', u'braveri'] [u'postcard', u'bandit', u'stag', u'hunger', u'strike', u'prison'] [u'potato', u'shipment', u'creat', u'trade', u'opportun'] [u'christma', u'payout', u'cain', u'unsecur', u'creditor'] [u'probe', u'launch', u'parliamentari', u'dust'] [u'protea', u'lunch', u'pakistan'] [u'public', u'urg', u'avoid', u'youth', u'confront'] [u'purpl', u'face', u'fergi', u'dock'] [u'qanta', u'detail', u'restructur', u'plan'] [u'farmer', u'stall', u'land', u'clear'] [u'premier', u'seek', u'santa', u'polic', u'check'] [u'rain', u'caus', u'disrupt', u'gympi'] [u'rain', u'delay', u'lake', u'frome', u'park', u'open'] [u'rawl', u'steven', u'draft'] [u'head', u'say', u'look', u'china'] [u'region', u'honour', u'bali', u'braveri', u'effort'] [u'regist', u'highlight', u'southern', u'tourism', u'work'] [u'replac', u'pine', u'forest', u'hemp', u'say', u'politician'] [u'report', u'show', u'high', u'cost', u'power'] [u'resid', u'want', u'wast', u'leav', u'undisturb'] [u'richardson', u'vincent', u'slam', u'ton', u'second', u'india'] [u'road', u'close', u'gold', u'coast', u'indi'] [u'rossi', u'fastest', u'phillip', u'island', u'qualifi'] [u'rugbi', u'world', u'offer', u'cowboy', u'boost'] [u'rumsfeld', u'defend', u'holi', u'general'] [u'saff', u'reject', u'natur', u'resourc'] [u'saudi', u'arabia', u'reject', u'sheep', u'say'] [u'saudi', u'crown', u'princ', u'brand', u'extremist', u'deviant'] [u'school', u'support', u'staff', u'vote', u'work', u'ban'] [u'sharehold', u'ponder', u'rural', u'press', u'takeov'] [u'sharon', u'expel', u'arafat'] [u'sharon', u'firm', u'west', u'bank', u'barrier', u'despit', u'threat'] [u'sheedi', u'give', u'messag', u'hope', u'break', u'hill'] [u'singapor', u'troop', u'arriv', u'exercis'] [u'singh', u'set', u'sight', u'million', u'pound', u'prize'] [u'club', u'gear', u'lake', u'boga', u'event'] [u'south', u'africa', u'steadi', u'pakistan'] [u'south', u'west', u'look', u'power', u'station', u'refineri'] [u'spring', u'drought', u'worsen'] [u'steven', u'port', u'trade', u'ultimatum'] [u'strong', u'dollar', u'push', u'import', u'price'] [u'swim', u'chief', u'ponder', u'fresh', u'hodg', u'alleg'] [u'swim', u'coach', u'issu', u'writ', u'alleg'] [u'taiwan', u'skyscrap', u'world', u'tallest', u'build'] [u'tasmanian', u'timber', u'compani', u'name', u'labor', u'donor'] [u'tasmania', u'unlik', u'recoup', u'children', u'home'] [u'teacher', u'forc', u'offic', u'bali', u'honour'] [u'technolog', u'catch', u'school', u'truanci'] [u'telstra', u'blame', u'email', u'problem', u'virus', u'attack'] [u'telstra', u'lose', u'govt', u'tap'] [u'telstra', u'plead', u'patienc', u'email', u'crisi'] [u'toowoomba', u'race', u'burn', u'season'] [u'town', u'prepar', u'bushfir', u'season'] [u'tribun', u'consid', u'deaf', u'student', u'educ'] [u'bomb', u'defus', u'belfast'] [u'guilti', u'crash', u'memori', u'laps', u'offer'] [u'korea', u'talk', u'stalem', u'nuke', u'crisi'] [u'soldier', u'kill', u'attack', u'near', u'kashmir', u'chief'] [u'staff', u'divid', u'strike', u'action'] [u'athlet', u'snare', u'massiv', u'steroid', u'bust'] [u'death', u'toll', u'iraq', u'exceed'] [u'ferri', u'crash', u'probe', u'centr', u'injur', u'pilot'] [u'senat', u'defi', u'bush', u'iraq', u'financ', u'request'] [u'tech', u'close', u'dip', u'caterpillar'] [u'govt', u'vow', u'honour', u'pledg', u'polic'] [u'virgin', u'blue', u'welcom', u'qanta', u'competit'] [u'council', u'consid', u'danger', u'tuart', u'tree', u'option'] [u'invest', u'provid', u'posit', u'forecast'] [u'wallabi', u'look', u'oak', u'size'] [u'water', u'flow', u'releas', u'keepit'] [u'waugh', u'relish', u'bowl', u'challeng'] [u'wont', u'canada', u'light', u'say', u'black', u'skipper'] [u'woman', u'give', u'birth', u'surpris', u'babi'] [u'woman', u'court', u'wodonga', u'murder'] [u'women', u'match', u'clijster', u'henin'] [u'wool', u'bale', u'fetch', u'second', u'highest', u'price'] [u'worker', u'outrag', u'melbourn', u'tram', u'attack'] [u'deton', u'beach'] [u'yass', u'water', u'shortag', u'wors', u'expect'] [u'youth', u'leader', u'urg', u'communiti', u'involv'] [u'adelaid', u'woman', u'deliv', u'surpris', u'babi'] [u'afghan', u'student', u'return', u'home', u'gain', u'visa'] [u'alic', u'spring', u'master', u'game', u'countdown', u'begin'] [u'aussi', u'seat', u'light', u'forc', u'stump'] [u'australia', u'ring', u'chang', u'namibia'] [u'blair', u'add', u'zealand', u'injuri', u'worri'] [u'bolivian', u'presid', u'resign', u'flee', u'report'] [u'bolivian', u'presid', u'resign', u'flee'] [u'bolivian', u'celebr', u'presid', u'prepar'] [u'boucher', u'save', u'protea', u'kirsten', u'injur', u'bouncer'] [u'bull', u'terrier', u'aussi', u'hungri', u'gregan'] [u'bush', u'address', u'north', u'korea', u'iraq', u'japan'] [u'bush', u'prais', u'philippin', u'terror'] [u'canberra', u'poor', u'higher', u'water', u'charg'] [u'canberra', u'warn', u'spring', u'snake', u'boom'] [u'china', u'set', u'sight', u'moon'] [u'clijster', u'henin', u'hardenn', u'zurich', u'semi'] [u'condit', u'derwent', u'river', u'improv'] [u'curtin', u'appoint', u'professor'] [u'boer', u'hammer', u'blow', u'ger'] [u'detaine', u'protest', u'port', u'hedland', u'roof', u'unit'] [u'downer', u'hop', u'mahathir', u'remain', u'silent', u'anti'] [u'downer', u'rais', u'fate', u'aung'] [u'downer', u'warn', u'terror', u'threat', u'econom'] [u'dream', u'start', u'adelaid', u'unit'] [u'celebr', u'birthday', u'semi', u'final', u'spot'] [u'england', u'nonsens', u'roll', u'maul', u'claim'] [u'find', u'suspect', u'airlin', u'secur', u'investig'] [u'govt', u'reveal', u'mornington', u'peninsula', u'plan'] [u'fifa', u'boss', u'blatter', u'slam', u'england', u'player'] [u'filipino', u'protest', u'bush', u'visit'] [u'film', u'plan', u'murder', u'journalist'] [u'flood', u'kill', u'central', u'vietnam'] [u'dead', u'zimbabw', u'plane', u'crash'] [u'franc', u'duti', u'cost', u'barthez', u'unit', u'place', u'fergi'] [u'franc', u'overcom', u'spirit', u'japan'] [u'free', u'children', u'immigr', u'detent', u'perth'] [u'german', u'chancellor', u'win', u'econom', u'reform', u'vote'] [u'howard', u'lobbi', u'apec', u'summit', u'tougher', u'region'] [u'impress', u'maruyama', u'grab', u'shoot', u'greensboro', u'lead'] [u'time', u'punter', u'choic', u'caulfield', u'glori'] [u'iran', u'begin', u'talk', u'nuclear', u'watchdog'] [u'iraqi', u'famili', u'continu', u'detent', u'centr', u'protest'] [u'redevelop', u'plan', u'pan'] [u'killer', u'china', u'quak', u'damag', u'home'] [u'join', u'australia', u'swell', u'casualti', u'list'] [u'lomu', u'reject', u'contract', u'offer'] [u'majest', u'pont', u'overshadow', u'injuri'] [u'face', u'court', u'alleg', u'attack', u'taxi'] [u'kill', u'hous'] [u'militari', u'personnel', u'attend', u'bush', u'surviv', u'cours'] [u'minist', u'discuss', u'world', u'trade', u'apec', u'summit'] [u'miser', u'monti', u'humbl', u'timer'] [u'model', u'tasmanian', u'student', u'deport'] [u'athlet', u'face', u'dope', u'subpoena'] [u'mummifi', u'give', u'freedman', u'fourth', u'caulfield'] [u'easi', u'solut', u'poverti', u'say', u'oneil'] [u'luck', u'uefa', u'draw', u'liverpool'] [u'govt', u'criticis', u'region', u'airlin', u'failur'] [u'parliament', u'extend', u'adopt', u'parent'] [u'promis', u'consult', u'ferri', u'servic'] [u'number', u'ferrero', u'meet', u'feder', u'madrid'] [u'dead', u'miss', u'helicopt', u'crash'] [u'owen', u'rule', u'liverpool'] [u'pakistan', u'south', u'africa'] [u'pell', u'leav', u'rome'] [u'perth', u'resort', u'worker', u'protest', u'smoke', u'exempt'] [u'pilgrim', u'flock', u'rome', u'mother', u'teresa'] [u'plan', u'push', u'trade', u'agenda', u'apec', u'summit'] [u'polic', u'arrest', u'child', u'pornographi', u'crackdown'] [u'polic', u'arm', u'robberi', u'wit', u'come'] [u'polic', u'crack', u'child', u'ring'] [u'polic', u'hunt', u'serial', u'attack'] [u'polic', u'search', u'miss', u'toddler'] [u'politician', u'criticis', u'legisl', u'plan'] [u'poor', u'ignor', u'heartless', u'australia'] [u'power', u'compani', u'appeal', u'hunter', u'valley', u'decis'] [u'presid', u'bush', u'arriv', u'philippin'] [u'bid', u'qanta', u'cost', u'base'] [u'quarantin', u'servic', u'help', u'tiwi', u'island', u'export'] [u'rain', u'forc', u'bangladesh', u'england', u'draw'] [u'rann', u'vow', u'crack', u'biki', u'gang'] [u'road', u'safeti', u'investig', u'begin'] [u'rossi', u'pole', u'phillip', u'island'] [u'diseas', u'unit', u'condemn', u'measl', u'exposur', u'advic'] [u'samoa', u'drop', u'faatau', u'georgia', u'game'] [u'screen', u'legend', u'meryl', u'streep', u'tip', u'lifetim'] [u'sehwag', u'hit', u'indian', u'chase', u'score'] [u'sehwag', u'repli', u'monster', u'kiwi', u'total'] [u'separ', u'twin', u'regain', u'conscious'] [u'serena', u'play'] [u'shoaib', u'cop', u'sledg', u'charg'] [u'kill', u'chicago', u'offic'] [u'spain', u'detain', u'illeg', u'immigr'] [u'spain', u'pledg', u'iraq', u'reconstruct'] [u'spain', u'probe', u'shoot', u'cameraman'] [u'spanish', u'author', u'die', u'bangkok', u'stopov'] [u'standoff', u'kashmir', u'end'] [u'taipei', u'bootscoot', u'tamworth', u'linedanc', u'record'] [u'tanzania', u'ban', u'dirti', u'underwear', u'import'] [u'credit', u'union', u'defend', u'demutualis'] [u'politician', u'interest', u'donat'] [u'teenag', u'injur', u'drive', u'shoot'] [u'children', u'charg', u'high', u'speed', u'chase'] [u'dead', u'chopper', u'crash'] [u'kill', u'chicago', u'high', u'rise'] [u'palestinian', u'kill', u'isra', u'tank'] [u'toopi', u'trick', u'buri', u'kangaroo'] [u'trap', u'aussi', u'safe', u'dfat'] [u'trescothick', u'step', u'bangladesh'] [u'turtl', u'park', u'plan'] [u'afghan', u'teenag', u'return', u'home'] [u'confirm', u'dead', u'helicopt', u'crash'] [u'kill', u'miss', u'chopper', u'crash'] [u'umer', u'lead', u'pakistan', u'chase', u'lahor'] [u'death', u'toll', u'iraq', u'exceed'] [u'general', u'apologis', u'holi', u'comment'] [u'okay', u'alzheim', u'drug'] [u'russian', u'crew', u'lift', u'mission', u'control'] [u'senat', u'pass', u'bush', u'million', u'iraq', u'request'] [u'search', u'airlin', u'weapon'] [u'wallabi', u'demolish', u'romania'] [u'netbal', u'championship'] [u'winter', u'sar', u'explos', u'unlik', u'say', u'chines', u'expert'] [u'world', u'anti', u'dope', u'agenc', u'warn', u'cheat'] [u'world', u'health', u'bodi', u'rule', u'sheep'] [u'world', u'match', u'play', u'semi', u'knife', u'edg'] [u'activist', u'protest', u'bush', u'meet', u'thai', u'leader'] [u'research', u'trace', u'ancient', u'lifestyl'] [u'adam', u'seven', u'help', u'protea', u'seiz', u'initi'] [u'akhtar', u'ban', u'test', u'dayer'] [u'black', u'blair', u'rule', u'world'] [u'black', u'cool', u'face', u'cullen', u'broadsid'] [u'alleg', u'lade', u'tape', u'threaten', u'australia'] [u'armstrong', u'complet', u'tran', u'tour', u'hope'] [u'atsic', u'vow', u'fund', u'account'] [u'golfer', u'trail', u'maruyama', u'greensboro', u'lead'] [u'australian', u'tourist', u'free', u'leav', u'bolivia'] [u'australia', u'wont', u'china', u'currenc', u'push'] [u'aust', u'thailand', u'agre', u'free', u'trade', u'deal'] [u'author', u'launch', u'probe', u'fatal', u'helicopt'] [u'author', u'search', u'lose', u'overboard'] [u'bacon', u'brand', u'decis', u'deport', u'teenag', u'cruel'] [u'bali', u'bomb', u'exhibit', u'detail', u'investig'] [u'bartoli', u'claim', u'tour', u'lombardi'] [u'bjorn', u'record', u'bust', u'face', u'match'] [u'bolivia', u'parti', u'presid', u'resign'] [u'bolivia', u'presid', u'investig', u'fatal'] [u'brazil', u'boy', u'star', u'real', u'deportivo'] [u'bull', u'battl', u'super', u'leagu', u'crown'] [u'bush', u'don', u'beef', u'cape'] [u'bush', u'plan', u'push', u'terror', u'apec'] [u'bush', u'visit', u'rais', u'hop', u'free', u'trade', u'deal'] [u'chechnya', u'swear', u'presid'] [u'coalit', u'seiz', u'vessel', u'crackdown'] [u'cudicini', u'blunder', u'send', u'gunner'] [u'darwin', u'wave', u'solar', u'challeng'] [u'disappear', u'puzzl', u'british', u'teen', u'famili'] [u'dokic', u'stun', u'clijster', u'reach', u'zurich', u'final'] [u'england', u'keep', u'calm', u'half', u'jitter', u'woodward'] [u'england', u'greenwood', u'send', u'home', u'compassion', u'leav'] [u'feder', u'polic', u'museum', u'display', u'bali', u'evid'] [u'govt', u'fail', u'raaf', u'whistleblow', u'lawyer'] [u'ferrero', u'beat', u'feder', u'reach', u'madrid', u'final'] [u'star', u'celtic', u'point', u'clear'] [u'flower', u'make', u'duck', u'debut'] [u'footbal', u'consid', u'carr', u'elect', u'challeng'] [u'franc', u'michalak', u'get', u'green', u'light'] [u'govt', u'data', u'duck', u'shoot', u'decis'] [u'green', u'plan', u'anti', u'bush', u'parliament', u'protest'] [u'gregan', u'hail', u'larkham', u'omin', u'form'] [u'gregan', u'rule'] [u'groin', u'infect', u'ganguli', u'doubt', u'seri'] [u'harri', u'potter', u'fan', u'role', u'film', u'report'] [u'henin', u'hardenn', u'number'] [u'hope', u'fade', u'babi', u'apec', u'bangkok', u'trash'] [u'houllier', u'show', u'strain', u'red', u'skid'] [u'howard', u'get', u'apec', u'busi'] [u'indonesian', u'troop', u'kill', u'rebel', u'aceh'] [u'indonesian', u'volcano', u'come', u'life'] [u'injur', u'gregan', u'doubt', u'wallabi'] [u'inter', u'sack', u'cuper', u'zaccheroni', u'coach'] [u'iran', u'join', u'talk', u'allow', u'tough', u'nuclear', u'check'] [u'iran', u'seek', u'european', u'help', u'nuclear', u'crisi'] [u'iraqi', u'refuge', u'famili', u'end', u'roof', u'protest'] [u'ireland', u'pool', u'namibia', u'rout'] [u'jonni', u'see', u'england', u'past', u'springbok'] [u'jordanian', u'confess', u'kill', u'sister'] [u'kasprowicz', u'replac', u'tour', u'india'] [u'kernot', u'criticis', u'child', u'advoc', u'campaign'] [u'king', u'grand', u'final', u'rematch'] [u'kingz', u'stay', u'melbourn', u'defeat'] [u'laport', u'lead', u'chorus', u'prais', u'england'] [u'london', u'underground', u'derail', u'injur'] [u'marlin', u'upset', u'yanke', u'world', u'seri', u'open'] [u'merciless', u'juve', u'pile', u'miseri', u'ancona'] [u'mismatch', u'advert', u'world', u'romanian'] [u'miss', u'toddler', u'famili', u'seek', u'public', u'help'] [u'monti', u'trail', u'aussi', u'barr', u'macau'] [u'refuge', u'student', u'face', u'deport'] [u'korea', u'promis', u'nuclear', u'display'] [u'threaten', u'build', u'heritag', u'arson', u'site'] [u'heritag', u'list', u'reserv', u'bank'] [u'call', u'releas', u'detain', u'children'] [u'palestinian', u'teen', u'kill', u'west', u'bank', u'clash'] [u'pavarotti', u'seduc', u'mexican', u'farewel', u'recit'] [u'perth', u'glori', u'high', u'score', u'fare'] [u'philippin', u'polic', u'arrest', u'suspect'] [u'polic', u'arrest', u'coupl', u'stab', u'fatal'] [u'polic', u'arrest', u'respons'] [u'quick', u'wicket', u'slow', u'zimbabw', u'fightback'] [u'rossi', u'win', u'motogp', u'bayliss', u'crash'] [u'search', u'continu', u'lose', u'overboard'] [u'secur', u'offic', u'protest', u'better', u'super'] [u'sunset', u'hamper', u'aerial', u'search', u'lose'] [u'survey', u'prove', u'telstra', u'servic', u'improv'] [u'sydney', u'opera', u'hous', u'celebr', u'birthday'] [u'meat', u'menu', u'abattoir', u'closur'] [u'tendulkar', u'move', u'number', u'scorer', u'list'] [u'thousand', u'pound', u'pavement', u'help', u'fight', u'diabet'] [u'thousand', u'turn', u'simon', u'garfunkel', u'reunion'] [u'injur', u'shoot', u'zimbabw', u'opposit'] [u'tiger', u'extend', u'breaker', u'lose', u'streak'] [u'tribut', u'pour', u'spanish', u'writer', u'montalban'] [u'turkey', u'back', u'troop', u'deploy', u'iraq'] [u'marin', u'charg', u'iraqi', u'death'] [u'soldier', u'kill', u'tikrit', u'attack'] [u'valiant', u'tongan', u'deni', u'rattl', u'welsh'] [u'westhuizen', u'say', u'england', u'vulner'] [u'veteran', u'broadcast', u'cook', u'suffer', u'fall'] [u'polic', u'seek', u'miss', u'child', u'british', u'tourist'] [u'forestri', u'polici', u'threaten', u'labor', u'support'] [u'zimbabw', u'close', u'australia', u'total'] [u'zimbabw', u'chanc'] [u'evacu', u'amid', u'torrenti', u'rain', u'near', u'vancouv'] [u'abattoir', u'closur', u'affect', u'tasmania', u'livestock'] [u'aborigin', u'jail', u'rate', u'disturb', u'high'] [u'aborigin', u'medic', u'servic', u'combin', u'effort'] [u'accommod', u'manag', u'warn', u'schooli'] [u'urg', u'appeal', u'sentenc'] [u'strike', u'gaza', u'kill'] [u'black', u'umaga', u'quarter', u'final'] [u'alleg', u'knife', u'attack', u'appear', u'court'] [u'alleg', u'saddam', u'letter', u'urg', u'holi'] [u'allenbi', u'fourth', u'maruyama', u'take', u'greensboro', u'titl'] [u'apec', u'talk', u'focus', u'trade', u'terror'] [u'aquat', u'centr', u'vote'] [u'arm', u'bandit', u'target', u'oberon', u'club'] [u'australian', u'march', u'crush', u'victori'] [u'bagpip', u'rile', u'scot'] [u'ballarat', u'mall', u'consult', u'start'] [u'bendigo', u'get', u'lose', u'fund', u'warn'] [u'blue', u'miss', u'rooney', u'dour', u'draw'] [u'bodi', u'hous', u'near', u'melbourn'] [u'bolivia', u'tidi', u'month', u'civil', u'unrest'] [u'bomb', u'expert', u'miss', u'ahead', u'apec'] [u'brack', u'deni', u'branch', u'stack', u'alleg'] [u'bumper', u'harvest', u'increas', u'need', u'heavi', u'vehicl'] [u'bush', u'rebuk', u'mahathir', u'sidelin', u'apec', u'summit'] [u'busi', u'bank', u'bendigo', u'boost'] [u'licens', u'venu', u'close', u'earli'] [u'action', u'tree', u'clear', u'talk'] [u'stop', u'woomera', u'nuclear', u'wast', u'plan'] [u'beef', u'fight', u'stock', u'theft'] [u'cattlemen', u'fear', u'quarantin', u'risk', u'return', u'sheep'] [u'centrecar', u'servic', u'start'] [u'centr', u'fear', u'closur', u'fund'] [u'childcar', u'centr', u'propon', u'puzzl', u'council'] [u'citi', u'kid', u'learn', u'bush', u'life'] [u'communiti', u'activ', u'hop', u'children'] [u'complaint', u'urg', u'health', u'minist', u'streamlin', u'age'] [u'concern', u'broom', u'chinatown', u'heritag', u'list'] [u'controversi', u'issu', u'tabl', u'unit'] [u'council', u'look', u'maintain', u'small', u'boat', u'access'] [u'councillor', u'expect', u'dune', u'fenc', u'remov'] [u'council', u'meet', u'discuss', u'corrupt', u'claim'] [u'council', u'reject', u'drag', u'race', u'plan'] [u'council', u'announc', u'general', u'manag'] [u'court', u'find', u'bank', u'guilti', u'mislead', u'advertis'] [u'court', u'hear', u'kill', u'children', u'punish', u'wife'] [u'court', u'tell', u'skateboard', u'wear'] [u'crime', u'prevent', u'start', u'school'] [u'dead', u'refuge', u'boat'] [u'deal', u'improv', u'aust', u'student', u'access', u'china'] [u'democrat', u'call', u'govern'] [u'develop', u'welcom', u'inquiri', u'find'] [u'develop', u'boom', u'take', u'toll', u'wildlif'] [u'disabl', u'group', u'voic', u'medicar', u'concern'] [u'destroy', u'toddler', u'attack'] [u'dokic', u'wari', u'hostil', u'recept', u'australian', u'open'] [u'dollar', u'drought', u'live', u'cattl', u'export', u'indonesia'] [u'door', u'open', u'bowen', u'commerc', u'centr'] [u'dreamworld', u'welcom', u'tiger'] [u'driver', u'succumb', u'crash', u'injuri'] [u'econom', u'develop', u'offic', u'readi', u'ahead'] [u'economi', u'passeng', u'fin', u'take', u'busi'] [u'egyptian', u'twin', u'improv', u'movement'] [u'elect', u'surgeri', u'wait', u'list', u'highest', u'level'] [u'say', u'environment', u'protect', u'good'] [u'father', u'say', u'want', u'schoolgirl'] [u'fish', u'industri', u'welcom', u'seismic', u'test'] [u'fish', u'event', u'help', u'region', u'recoveri'] [u'flight', u'resum', u'town'] [u'fluorid', u'fight', u'continu', u'despit', u'campaign'] [u'forest', u'industri', u'exit', u'payment'] [u'free', u'trade', u'deal', u'aussi', u'wine', u'thai'] [u'fund', u'review', u'focus', u'train', u'need'] [u'fund', u'shortfal', u'cancel', u'caloundra', u'christma', u'carol'] [u'plant', u'disput'] [u'geraldton', u'lose', u'citi', u'councillor'] [u'german', u'chancellor', u'freez', u'retir', u'pension'] [u'gladston', u'overboard', u'search', u'call'] [u'gold', u'coast', u'alert', u'feder', u'govt', u'region', u'need'] [u'govern', u'employ', u'disabl', u'peopl', u'declin'] [u'govt', u'closer', u'ship', u'sink', u'agreement'] [u'govt', u'talk', u'strand', u'sheep'] [u'govt', u'urg', u'compens', u'drover'] [u'grain', u'industri', u'job', u'highlight', u'drought', u'turnaround'] [u'great', u'lake', u'develop', u'plan', u'like', u'spark', u'debat'] [u'green', u'light', u'barmera', u'drag', u'race', u'plan'] [u'green', u'highlight', u'indigen', u'opposit', u'plan'] [u'green', u'urg', u'support', u'labor', u'forest', u'polici'] [u'green', u'want', u'seismic', u'test', u'ban'] [u'griffith', u'hospit', u'focus', u'public', u'meet'] [u'hayden', u'notch', u'help', u'aussi', u'test'] [u'hayden', u'help', u'australia', u'victori', u'zimbabw'] [u'health', u'insur', u'hospit', u'reach', u'agreement'] [u'health', u'servic', u'highlight', u'whoop', u'cough', u'prevent'] [u'helicopt', u'project', u'boost', u'local', u'economi'] [u'herbicid', u'implic', u'mangrov', u'dieback'] [u'hint', u'hollywood', u'thailand', u'plan', u'apec', u'star'] [u'hope', u'power', u'station', u'curb', u'firm', u'loss'] [u'horrif', u'evid', u'inquiri', u'foster', u'child'] [u'hospit', u'sale', u'rumour', u'prematur', u'mayn'] [u'howard', u'meet', u'megawati', u'apec'] [u'hundr', u'protest', u'treatment', u'father'] [u'illeg', u'restaur', u'staff', u'decid'] [u'improv', u'asian', u'relat', u'australia', u'tell'] [u'inquiri', u'tell', u'custodi', u'hurt', u'children'] [u'inquiri', u'tell', u'dairi', u'industri', u'regul'] [u'inquiri', u'tell', u'reform', u'decim', u'indigen'] [u'insur', u'woe', u'threaten', u'mildura', u'lifesav'] [u'investig', u'begin', u'rescu', u'chopper', u'crash'] [u'iran', u'attempt', u'resolv', u'nuclear', u'stalem'] [u'iran', u'nuclear', u'visit', u'doubt'] [u'ireland', u'samoa', u'group', u'world', u'romp'] [u'ireland', u'samoa', u'world', u'group'] [u'isra', u'warplan', u'target', u'milit', u'home'] [u'journal', u'advocaci', u'group', u'condemn', u'arrest'] [u'kalbarri', u'take', u'tourism', u'award'] [u'labor', u'rule', u'mean', u'test', u'health', u'insur'] [u'laxman', u'keep', u'india', u'afloat', u'vettori'] [u'laxman', u'thwart', u'zealand', u'seri'] [u'leagu', u'club', u'benefit', u'manag'] [u'lgaq', u'work', u'council', u'candid'] [u'longford', u'meatwork', u'meet', u'closur'] [u'mahathir', u'retir', u'wont', u'chang', u'relat', u'howard'] [u'charg', u'tram', u'attack'] [u'fail', u'turn', u'court', u'hear'] [u'plead', u'guilti', u'dodg'] [u'mayn', u'share', u'rumour', u'immin', u'hospit'] [u'mayor', u'confid', u'clear', u'wrongdo'] [u'meet', u'help', u'plan', u'industri', u'zone'] [u'merredin', u'face', u'charg'] [u'milit', u'escap', u'isra', u'strike'] [u'minist', u'applaud', u'rockhampton', u'hospit', u'wait'] [u'minist', u'foreshadow', u'chang', u'age', u'care'] [u'minist', u'make', u'fli', u'visit', u'south', u'coast'] [u'minist', u'comment', u'navi', u'base', u'expans'] [u'miss', u'toddler', u'famili', u'fear', u'worst'] [u'mista', u'leader', u'valencia', u'thrash', u'espanyol'] [u'mix', u'weekend', u'result', u'unit'] [u'monti', u'beat', u'barr', u'macau', u'titl'] [u'detail', u'airlin', u'woe', u'horizon'] [u'young', u'peopl', u'look', u'chariti'] [u'schoolgirl', u'stay', u'tasmania'] [u'seek', u'extend', u'buyback', u'amnesti'] [u'murray', u'darl', u'basin', u'boss', u'blackmor', u'retir'] [u'murray', u'irrig', u'farewel', u'long', u'stand'] [u'namibia', u'accus', u'irish', u'stamp'] [u'navi', u'intercept', u'indonesian', u'fish', u'boat', u'darwin'] [u'traffic', u'control', u'procedur', u'caus', u'concern'] [u'barrack', u'open', u'ballarat'] [u'bolivian', u'presid', u'present', u'govern'] [u'group', u'work', u'expand', u'port'] [u'news', u'corp', u'resourc', u'drag', u'market', u'lower'] [u'thai', u'trade', u'deal', u'steer', u'profit', u'holden'] [u'zealand', u'chief', u'defend', u'lomu', u'offer'] [u'korea', u'test', u'surfac', u'ship', u'missil'] [u'ground', u'appeal', u'danger', u'driver'] [u'govt', u'address', u'hospit', u'fail'] [u'grade', u'begin', u'exam'] [u'armi', u'personnel', u'undergo', u'drug', u'test'] [u'govt', u'defend', u'notic', u'legisl', u'debat'] [u'opposit', u'urg', u'review', u'nuclear', u'polici'] [u'adopt', u'hunter', u'crime', u'prevent', u'scheme'] [u'obes', u'rate', u'increas', u'studi'] [u'opera', u'hous', u'celebr', u'year'] [u'oper', u'finetun', u'firefight', u'skill'] [u'oper', u'warn', u'ongo', u'respons', u'reef'] [u'opposit', u'accus', u'scaremong'] [u'opposit', u'design', u'initi', u'improv', u'famili'] [u'pirlo', u'pounc', u'milan'] [u'reaffirm', u'china', u'polici'] [u'polic', u'investig', u'rocket', u'propel', u'grenad'] [u'polic', u'probe', u'death', u'coupl', u'near', u'melbourn'] [u'poor', u'weather', u'cloud', u'solar', u'cycl', u'race'] [u'pope', u'beatifi', u'mother', u'teresa'] [u'port', u'dredg', u'near', u'complet'] [u'port', u'macquari', u'quell', u'competit'] [u'privat', u'investig', u'plead', u'guilti', u'steal'] [u'public', u'urg', u'support', u'outback', u'summit'] [u'puma', u'star', u'away', u'romania'] [u'pyrotechnician', u'trial', u'assault'] [u'govt', u'urg', u'help', u'resolv', u'firefight', u'disput'] [u'rural', u'health', u'initi', u'tri', u'oversea'] [u'queensland', u'fattest', u'nation', u'studi'] [u'rabbit', u'erad', u'program', u'prove', u'success'] [u'race', u'defend', u'traralgon', u'fund'] [u'ranger', u'stumbl', u'ahead', u'unit', u'clash'] [u'redback', u'ahead', u'warrior'] [u'region', u'develop', u'expert', u'gather', u'confer'] [u'research', u'unveil', u'breakthrough', u'cancer', u'treatment'] [u'right', u'wing', u'swing', u'swiss', u'polit'] [u'runner', u'marathon', u'effort', u'nation', u'park'] [u'russian', u'craft', u'deliv', u'multin', u'crew', u'space'] [u'scanner', u'help', u'helicopt', u'search'] [u'scot', u'untroubl', u'sloppi'] [u'search', u'salvag', u'underway', u'fatal', u'chopper'] [u'search', u'miss', u'angler', u'call'] [u'search', u'resum', u'miss'] [u'singleton', u'remand', u'custodi', u'alleg'] [u'solar', u'car', u'track', u'record', u'time'] [u'south', u'east', u'join', u'water', u'restrict'] [u'spray', u'painter', u'win', u'compo', u'sue', u'employ'] [u'streaker', u'race', u'racecours'] [u'studi', u'consid', u'fitzroy', u'river', u'farm', u'water'] [u'studi', u'look', u'boost', u'irrig', u'farm'] [u'support', u'rescu', u'servic', u'fatal', u'crash'] [u'support', u'fit', u'initi', u'welcom'] [u'sydney', u'prepar', u'terror', u'attack'] [u'talk', u'iran', u'nuclear', u'facil'] [u'cystic', u'fibrosi', u'suffer', u'carri', u'differ'] [u'girl', u'lawyer', u'say', u'father', u'doesnt', u'want'] [u'govt', u'debat', u'complet', u'smoke'] [u'texa', u'chainsaw', u'massacr', u'cut', u'offic', u'rival'] [u'sewag', u'spill', u'concern', u'local', u'council'] [u'isra', u'kill', u'west', u'bank', u'ambush'] [u'toddler', u'kill', u'garbag', u'truck', u'tragedi'] [u'bank', u'tip', u'dollar', u'surg'] [u'tourism', u'chief', u'consid', u'unifi', u'approach'] [u'townsvill', u'japanes', u'rugbi'] [u'triumphant', u'ferrero', u'surfac'] [u'turnbul', u'preselect', u'hit', u'snag', u'report'] [u'bad', u'burn', u'ballarat', u'explos'] [u'dead', u'israel', u'target', u'hama', u'milit'] [u'agenc', u'pledg', u'boost', u'matern', u'health'] [u'uncommon', u'gene', u'caus', u'poor', u'memori'] [u'unit', u'approach', u'seek', u'pacif', u'highway'] [u'australia', u'need', u'compromis', u'free', u'trade', u'deal'] [u'consid', u'concess', u'korean', u'peninsula'] [u'showman', u'end', u'stunt'] [u'soldier', u'kill', u'attack', u'iraqi', u'citi'] [u'soldier', u'kill', u'iraq', u'ambush'] [u'vandal', u'target', u'school', u'western'] [u'vaughan', u'wari', u'whatmor', u'bangladesh', u'revolut'] [u'vieira', u'ljungberg', u'gunner', u'kiev', u'challeng'] [u'famili', u'access', u'childcar'] [u'opposit', u'back', u'plant', u'mainland'] [u'polic', u'look', u'oversea', u'hoon', u'solut'] [u'water', u'compani', u'spend', u'million', u'fight', u'global'] [u'waugh', u'prais', u'stand', u'attack', u'australia', u'sweep'] [u'winemak', u'celebr', u'award'] [u'woman', u'kill', u'accid'] [u'worker', u'threaten', u'action', u'london', u'train'] [u'world', u'local', u'leader', u'tribut', u'sarajevo'] [u'yanke', u'rout', u'marlin', u'level', u'world', u'seri'] [u'young', u'leader', u'urg', u'rural', u'input', u'polit'] [u'youth', u'violenc', u'subject', u'public', u'meet'] [u'kill', u'south', u'korea', u'accid'] [u'abattoir', u'owner', u'govt'] [u'govt', u'promis', u'improv', u'budget', u'transpar'] [u'agassi', u'headlin', u'strong', u'kooyong', u'field'] [u'age', u'care', u'servic', u'struggl', u'cost'] [u'aid', u'rat', u'fall', u'south', u'africa', u'studi'] [u'airport', u'hope', u'horizon', u'continu', u'oper'] [u'black', u'confid', u'umaga', u'return'] [u'alleg', u'assault', u'case', u'throw', u'court'] [u'allianc', u'loggerhead', u'forest', u'remap'] [u'ord', u'follow', u'wall', u'street', u'higher'] [u'urg', u'extend', u'poki', u'revenu', u'rebat'] [u'apec', u'announc', u'anti', u'terror', u'measur'] [u'apec', u'eye', u'anti', u'terror', u'task', u'forc'] [u'asic', u'urg', u'probe', u'purchas'] [u'athlet', u'steroid', u'catch', u'pound'] [u'australia', u'prais', u'stanc', u'slave', u'trade'] [u'australia', u'strand', u'sheep', u'prompt', u'protest'] [u'crisi', u'scotland'] [u'ballarat', u'council', u'want', u'improv', u'highway'] [u'bellami', u'face', u'sixth', u'oper', u'damag', u'knee'] [u'bettini', u'top', u'world', u'rank', u'armstrong', u'eighth'] [u'bigpond', u'servic', u'normal', u'telstra'] [u'volunt', u'conting', u'need', u'ironman', u'event'] [u'blatter', u'rule', u'year', u'dope', u'ban'] [u'box', u'champ', u'thornberri', u'retir'] [u'bryant', u'send', u'trial', u'rape', u'charg'] [u'bundi', u'resid', u'nation'] [u'busi', u'group', u'welcom', u'compo', u'reform'] [u'cairn', u'confer', u'focus', u'sugar', u'industri'] [u'call', u'polic', u'inform', u'child', u'abus'] [u'canberra', u'stand', u'trial'] [u'hit', u'elder', u'coupl', u'highway'] [u'carlton', u'crow', u'announc', u'list', u'cull'] [u'charg', u'accid', u'say', u'moodi'] [u'chelsea', u'hop', u'boost', u'couto', u'absenc'] [u'children', u'commission', u'call', u'feder', u'advoc'] [u'christma', u'coco', u'island', u'assist', u'sheep'] [u'clune', u'bank', u'spotlight'] [u'cobdogla', u'club', u'celebr', u'award'] [u'committe', u'hear', u'melbourn', u'aiport', u'secur', u'breach'] [u'communiti', u'respect', u'macksvill', u'teacher'] [u'communiti', u'welcom', u'tennant', u'creek', u'polic', u'chang'] [u'concern', u'rais', u'northern', u'irrig', u'plan'] [u'conserv', u'attitud', u'prove', u'cost'] [u'coolgardi', u'school', u'get', u'librari', u'resourc'] [u'council', u'happi', u'lower', u'survey', u'score'] [u'council', u'investig', u'crime', u'fight', u'camera'] [u'council', u'offic', u'look', u'solut', u'youth'] [u'council', u'reclassifi', u'public', u'land', u'despit'] [u'council', u'welcom', u'road', u'safeti', u'fund'] [u'countri', u'campaign', u'work', u'ararat'] [u'court', u'tell', u'children', u'murder', u'spite'] [u'court', u'tell', u'kill', u'kid', u'punish', u'wife'] [u'crayfish', u'number', u'boom', u'south', u'west'] [u'darwin', u'band', u'entertain', u'asylum', u'seeker'] [u'debat', u'continu', u'rockhampton', u'music', u'bowl'] [u'delay', u'predict', u'canberra', u'street', u'bush'] [u'differ', u'coral', u'speci', u'spawn', u'reef', u'research'] [u'dokic', u'target'] [u'dreamworld', u'tiger', u'help', u'speci', u'surviv'] [u'empoli', u'perotti', u'coach'] [u'england', u'ignor', u'critic', u'say', u'robinson'] [u'england', u'world', u'best', u'rugbi', u'team'] [u'urg', u'shark', u'explor'] [u'extern', u'auditor', u'investig', u'council', u'process'] [u'famili', u'begin', u'hunger', u'strike', u'port', u'hedland'] [u'farmer', u'seek', u'wage', u'rise', u'exempt', u'drought'] [u'favourit', u'lonhro', u'snub', u'plate', u'breakfast'] [u'fergi', u'hand', u'touchlin', u'hefti', u'fine'] [u'ferrero', u'pull', u'swiss', u'indoor'] [u'field', u'activ', u'focus', u'drought'] [u'film', u'produc', u'face', u'court', u'smuggl', u'charg'] [u'charg', u'lay', u'drug', u'ring', u'bust'] [u'fisheri', u'group', u'rejig', u'shark', u'quota'] [u'fisheri', u'offici', u'interview', u'indonesian', u'crew'] [u'fishermen', u'happi', u'revis', u'reef', u'protect', u'zone'] [u'flatley', u'prais', u'larkham', u'genius'] [u'forum', u'offer', u'public', u'input', u'traffic', u'flow', u'woe'] [u'bali', u'bomb', u'suspect', u'charg'] [u'french', u'strength', u'scotland', u'match'] [u'giffin', u'chanc', u'namibia', u'game'] [u'gold', u'coast', u'jockey', u'contest', u'melbourn'] [u'govt', u'aim', u'stop', u'dodgi', u'migrat', u'agent'] [u'govt', u'hail', u'holden', u'export'] [u'govt', u'releas', u'kununurra', u'water', u'protect', u'plan'] [u'green', u'group', u'weigh', u'land', u'clear', u'control', u'effort'] [u'griffith', u'communiti', u'air', u'public', u'health', u'concern'] [u'hamilton', u'footbal', u'club', u'switch', u'leagu'] [u'harmison', u'shin', u'gloomi', u'dhaka'] [u'health', u'servic', u'hostel', u'sign', u'agreement'] [u'high', u'busi', u'confid', u'continu'] [u'hotel', u'associ', u'serv', u'din', u'award'] [u'hreidarsson', u'strike', u'pile', u'miseri', u'rover'] [u'immigr', u'wont', u'pressur', u'hunger', u'strike'] [u'indonesian', u'fisherman', u'jail', u'illeg', u'fish'] [u'injuri', u'crisi', u'time'] [u'injuri', u'rival', u'gear', u'action'] [u'interpol', u'link', u'illeg', u'wildlif', u'trade', u'terror'] [u'investig', u'continu', u'accid'] [u'authoris', u'step', u'disarma'] [u'iran', u'agre', u'inspect', u'nuclear', u'sit'] [u'irrig', u'group', u'welcom', u'eas', u'restrict'] [u'islam', u'milit', u'arrest', u'saudi', u'arabia'] [u'isol', u'communiti', u'face', u'substanc', u'abus'] [u'itali', u'hang', u'determin', u'canada'] [u'itali', u'look', u'canada', u'wale'] [u'jone', u'montgomeri', u'draw', u'steroid', u'probe'] [u'karratha', u'woman', u'trial', u'theft'] [u'labor', u'support', u'asia', u'comment'] [u'lavington', u'compani', u'land', u'autopart', u'contract'] [u'lonhro', u'draw', u'wide', u'plate'] [u'love', u'amor', u'cricket'] [u'macgil', u'open'] [u'mackenroth', u'talk', u'economi'] [u'mahathir', u'jewish', u'comment', u'unaccept', u'downer', u'say'] [u'appear', u'court', u'bomb', u'hoax'] [u'arrest', u'shoalhaven', u'bash'] [u'charg', u'woman', u'murder'] [u'guilti', u'plane', u'comment'] [u'trial', u'rape', u'abduct'] [u'plead', u'guilti', u'burglari'] [u'remand', u'custodi', u'attempt', u'murder'] [u'appear', u'court', u'child', u'porn', u'charg'] [u'sentenc', u'smuggl', u'drug'] [u'maroochi', u'carol', u'ahead'] [u'marseill', u'medic', u'barthez'] [u'mayn', u'strike', u'deal', u'sell', u'hospit'] [u'mayor', u'welcom', u'return', u'pittsworth', u'taxi', u'servic'] [u'melbourn', u'water', u'restrict', u'stay'] [u'mildura', u'council', u'call', u'clear', u'busi', u'number'] [u'mildura', u'student', u'warn', u'parti'] [u'mini', u'tornado', u'damag', u'rockhampton', u'properti'] [u'miss', u'toddler', u'search', u'reassess'] [u'mobil', u'phone', u'record', u'hit', u'ferdinand', u'defenc'] [u'honour', u'jackson'] [u'job', u'windfarm', u'compon', u'plant'] [u'mother', u'describ', u'melbourn', u'hospit', u'appal'] [u'mother', u'jail', u'welfar', u'fraud'] [u'namibia', u'coach', u'say', u'ref', u'favour', u'strong', u'nation'] [u'nation', u'take', u'freight', u'servic'] [u'nation', u'dubious', u'state', u'water', u'busi'] [u'nat', u'accus', u'govt', u'power', u'station', u'cover'] [u'general', u'manag', u'stay', u'council', u'polit'] [u'korea', u'fire', u'test', u'missil', u'report'] [u'increas', u'secur', u'alert', u'bush', u'visit', u'ruddock'] [u'northern', u'ireland', u'elect', u'novemb'] [u'govt', u'announc', u'review', u'aborigin', u'educ'] [u'govt', u'condemn', u'water', u'qualiti', u'strategi'] [u'govt', u'defend', u'water', u'leakag'] [u'loss', u'wake', u'lockyer'] [u'olymp', u'stadium', u'leagu', u'home'] [u'opal', u'miner'] [u'opposit', u'accus', u'misinterpret', u'figur'] [u'opposit', u'patient', u'critic', u'children'] [u'opposit', u'back', u'tighten', u'canberra', u'rental', u'law'] [u'opposit', u'critic', u'drag', u'race', u'penalti'] [u'orbost', u'pair', u'jail', u'drug', u'crop'] [u'oscar', u'win', u'actor', u'niro', u'diagnos', u'cancer'] [u'otway', u'basin', u'seismic', u'survey', u'work', u'start'] [u'pakistan', u'complet', u'comfort', u'south', u'africa'] [u'subsidiari', u'place', u'liquid'] [u'pell', u'offici', u'cardin', u'vatican'] [u'penthous', u'magazin', u'sale'] [u'philippin', u'claim', u'activ', u'south'] [u'plan', u'highlight', u'urban', u'fire', u'risk'] [u'applaud', u'apec', u'agenda'] [u'defend', u'focus', u'terror'] [u'urg', u'rais', u'hick', u'detent', u'bush'] [u'poet', u'wheel', u'tour', u'roll', u'western'] [u'polic', u'request', u'peac', u'protest', u'bush', u'visit'] [u'polic', u'suspect', u'doubl', u'murder', u'link'] [u'polic', u'urg', u'road', u'caution', u'indi', u'weekend'] [u'polic', u'withhold', u'gunnedah', u'accid', u'victim'] [u'pope', u'creat', u'cardin'] [u'port', u'kembla', u'dock', u'extens', u'give', u'ahead'] [u'premier', u'promis', u'polic'] [u'profession', u'fish', u'urg'] [u'premier', u'call', u'toll', u'compani', u'repay', u'driver'] [u'place', u'meet', u'rise', u'coke', u'coal', u'demand'] [u'rain', u'help', u'eas', u'goulburn', u'water', u'restrict'] [u'ranger', u'plot', u'ibrox', u'nightmar', u'ferguson'] [u'rapist', u'sentenc', u'alic', u'spring', u'tomorrow'] [u'record', u'entri', u'best', u'foreign', u'film', u'oscar'] [u'redback', u'head', u'maximum', u'point', u'waca'] [u'reef', u'foundat', u'welcom', u'crown', u'thorn', u'fund'] [u'road', u'safeti', u'chief', u'upbeat', u'pacif', u'highway'] [u'rockhampton', u'mayor', u'criticis', u'chopper', u'fund'] [u'romania', u'chang', u'argentina', u'game'] [u'rooki', u'driver', u'rev', u'indi'] [u'salvag', u'crew', u'hop', u'recov', u'submerg', u'chopper'] [u'samoa', u'fanuatanu', u'world'] [u'school', u'lobbi', u'delay', u'school', u'rout'] [u'scotland', u'lesli', u'cite'] [u'scrappi', u'scot', u'face', u'french', u'farc', u'bulloch'] [u'seminar', u'put', u'focus', u'workplac', u'bulli'] [u'shepparton', u'stand', u'murder', u'charg'] [u'shire', u'consid', u'doctor', u'share'] [u'soccer', u'team', u'posit', u'goodwil', u'game', u'prospect'] [u'solar', u'challeng', u'camp', u'finish', u'late'] [u'sorenstam', u'price', u'induct', u'hall', u'fame'] [u'sourc', u'ill', u'wagga', u'resid'] [u'springborg', u'criticis', u'role', u'children'] [u'staff', u'abus', u'passeng', u'problem', u'canberra'] [u'stand', u'crew', u'cover', u'strike', u'auxiliari'] [u'state', u'support', u'free', u'trade', u'deal'] [u'superson', u'scram', u'test', u'recomm'] [u'surplus', u'justifi', u'increas', u'rural', u'spend', u'member'] [u'talk', u'focus', u'snowi', u'hut', u'futur'] [u'professor', u'grant', u'research', u'fund'] [u'tassal', u'share', u'applic', u'close', u'earli', u'keen'] [u'telstra', u'quarter', u'sale'] [u'thornberri', u'hang', u'glove'] [u'week', u'repriev', u'horizon'] [u'tindal', u'readi', u'rugbi', u'greenwood'] [u'town', u'consid', u'year', u'long', u'festiv', u'celebr'] [u'town', u'renew', u'call', u'multi', u'purpos', u'facil'] [u'trade', u'agreement', u'boost', u'wine', u'export'] [u'turnov', u'milan', u'success'] [u'charg', u'alleg', u'abduct'] [u'arrest', u'drug', u'raid'] [u'umaga', u'hope', u'world', u'return'] [u'union', u'question', u'premier', u'support', u'free', u'trade'] [u'union', u'consid', u'industri', u'action'] [u'defend', u'vietnam', u'crime', u'probe'] [u'reopen', u'diplomat', u'mission', u'equatori', u'guinea'] [u'valley', u'cafe', u'blaze', u'arson'] [u'victorian', u'tribun', u'hear', u'complaint'] [u'voluntari', u'administr', u'appoint', u'cotton'] [u'volunt', u'seek', u'centr', u'finish', u'touch'] [u'warrington', u'wood', u'stun', u'face', u'aussi'] [u'water', u'theme', u'park', u'propos', u'darwin'] [u'say', u'bok', u'coach', u'straeuli'] [u'want', u'golf', u'millionair'] [u'wicket', u'waca'] [u'wilkinson', u'disappoint', u'open', u'match'] [u'wine', u'grower', u'reliev', u'water', u'restrict', u'eas'] [u'wine', u'maker', u'urg', u'govt', u'address', u'domest', u'issu'] [u'woman', u'critic', u'state', u'shed', u'blast'] [u'woolmark', u'predict', u'fall', u'industri'] [u'work', u'start', u'renew', u'energi', u'program'] [u'yalgoo', u'prepar', u'christma', u'poll'] [u'yanke', u'face', u'assault', u'charg'] [u'zabaleta', u'seed', u'fall', u'stockholm'] [u'zaccheroni', u'confid', u'halt', u'inter', u'slide'] [u'abbott', u'agre', u'meet', u'health', u'staff', u'medicar'] [u'abbott', u'get', u'messag', u'medic', u'indemn', u'crisi'] [u'abstudi', u'chang', u'indigen', u'student'] [u'academ', u'point', u'posit', u'have'] [u'assault', u'trial', u'doubt'] [u'black', u'optimist', u'injuri'] [u'ord', u'slide', u'dollar', u'soar'] [u'arson', u'attack', u'damag', u'adelaid', u'school'] [u'asthma', u'barrier', u'marathon', u'walk'] [u'athlet', u'chief', u'launch', u'massiv', u'world', u'dope', u'hunt'] [u'athlet', u'chief', u'launch', u'world', u'dope', u'hunt'] [u'aussi', u'refere', u'young', u'sidelin', u'injuri'] [u'australian', u'back', u'wall', u'india', u'punter'] [u'australia', u'pay', u'solomon', u'bank', u'arrear'] [u'azzurri', u'coach', u'kirwan', u'lash', u'schedul'] [u'weather', u'threaten', u'woman', u'pacif', u'solo'] [u'end', u'world', u'scotland', u'lesli'] [u'beatti', u'seek', u'feder', u'health', u'fund', u'boost'] [u'benaud', u'knock', u'shoaib', u'appeal'] [u'bendigo', u'loddon', u'tourism', u'worth', u'million', u'studi'] [u'plan', u'afoot', u'abalon', u'farm'] [u'blue', u'ribbon', u'worker', u'futur', u'unresolv'] [u'brazil', u'say', u'american', u'trade', u'talk', u'collaps'] [u'break', u'hill', u'prepar', u'outback', u'summit'] [u'broom', u'forum', u'discuss', u'tourism', u'impact'] [u'brown', u'say', u'abus', u'rais', u'chines'] [u'build', u'societi', u'sharehold', u'consid'] [u'bush', u'arriv', u'australia'] [u'bush', u'head', u'australia', u'bali', u'stopov'] [u'bush', u'start', u'bali', u'visit', u'amid', u'secur', u'clampdown'] [u'infrastructur', u'bridg', u'wind', u'farm'] [u'region', u'benefit', u'polic', u'number'] [u'call', u'derelict', u'ship', u'solut'] [u'professionalis', u'foster', u'carer', u'role'] [u'canada', u'coach', u'plead', u'pacif', u'comp'] [u'cane', u'harvest', u'finish', u'upbeat', u'note'] [u'cathol', u'school', u'teacher', u'threaten', u'strike', u'action'] [u'hop', u'rais', u'endeavour'] [u'chamber', u'fail', u'drug', u'test', u'report'] [u'chinchilla', u'destroy', u'histor', u'school', u'block'] [u'chines', u'presid', u'arriv', u'histor', u'visit'] [u'chines', u'remedi', u'test', u'fight', u'malaria'] [u'claim', u'hypnotherapi', u'help', u'irrit', u'bowel', u'syndrom'] [u'claim', u'propos', u'farm', u'bore', u'threaten', u'trangi', u'water'] [u'classi', u'shearer', u'lead', u'toon', u'fightback'] [u'compani', u'grant', u'relief', u'help', u'job', u'growth'] [u'concern', u'indigen', u'protest', u'spark', u'bushfir'] [u'concess', u'surgeri', u'cut', u'plan'] [u'condobolin', u'farmer', u'drought', u'access'] [u'cooma', u'north', u'primari', u'student', u'danc', u'drama'] [u'council', u'air', u'water', u'reform', u'dairi', u'industri', u'fear'] [u'council', u'await', u'transport', u'park', u'applic'] [u'council', u'claim', u'compo', u'scheme', u'crippl', u'coal', u'industri'] [u'council', u'face', u'challeng', u'repair', u'histor'] [u'council', u'push', u'drought', u'decis'] [u'council', u'reject', u'west', u'wyalong', u'brothel', u'plan'] [u'council', u'want', u'start', u'inland', u'rail', u'line', u'shift'] [u'council', u'build', u'hous', u'nurs'] [u'council', u'ponder', u'river', u'cross', u'option'] [u'denmark', u'thiev', u'target', u'plant'] [u'dent', u'serv', u'warn', u'schalken', u'fall'] [u'dept', u'review', u'pension', u'mortgag', u'repay'] [u'disgruntl', u'fan', u'turn', u'gerrard', u'warn'] [u'doctor', u'govt', u'indemn', u'crisi'] [u'doctor', u'wait', u'visit', u'right', u'respons'] [u'dollar', u'hit', u'year', u'high'] [u'doubt', u'rais', u'oval', u'plan'] [u'downer', u'welcom', u'iran', u'suspens', u'nuclear'] [u'drought', u'team', u'extend', u'gippsland', u'effort'] [u'dutch', u'team', u'take', u'world', u'solar', u'challeng'] [u'eagl', u'read'] [u'ecstasi', u'batch', u'contain', u'poison', u'polic'] [u'environment', u'treasur', u'risk', u'tourism'] [u'timor', u'welcom', u'mahathir'] [u'expo', u'tell', u'mine', u'graduat', u'shortag'] [u'factbox', u'steroid'] [u'fair', u'trade', u'spotlight', u'fall', u'dorrigo', u'firm'] [u'fear', u'intern', u'freeway', u'plan', u'take', u'long'] [u'figur', u'highlight', u'wimmera', u'malle', u'tourism', u'spend'] [u'oper', u'year', u'schedul'] [u'fishermen', u'action', u'evan', u'river'] [u'fish', u'death', u'prompt', u'emerg', u'beacon', u'review'] [u'flood', u'washington', u'state'] [u'fli', u'fijian', u'look', u'serevi', u'world', u'lift'] [u'franc', u'seven', u'chang', u'scotland', u'match'] [u'fraud', u'hit', u'troubl', u'wine', u'centr'] [u'french', u'journalist', u'kill', u'ivori', u'coast'] [u'geraldton', u'student', u'short', u'list', u'drama'] [u'world', u'japan', u'say', u'ella'] [u'gough', u'target', u'world'] [u'govt', u'look', u'trade', u'deal', u'china'] [u'govt', u'open', u'truck', u'check', u'point'] [u'govt', u'rule', u'turn', u'freeway', u'toll'] [u'govt', u'focus', u'manufactur', u'boost'] [u'govt', u'urg', u'live', u'sheep', u'export', u'market'] [u'green', u'wear', u'black', u'armband', u'address'] [u'group', u'claim', u'pipelin', u'talk', u'water'] [u'group', u'seek', u'carr', u'support', u'hors', u'centr'] [u'group', u'support', u'plan', u'burdekin', u'irrig'] [u'group', u'want', u'stop', u'bigger', u'nation', u'park', u'plan'] [u'harmison', u'trescothick', u'england', u'charg'] [u'health', u'group', u'offer', u'hospit', u'manag', u'assur'] [u'health', u'worker', u'protest', u'plan', u'medicar'] [u'henman', u'beat', u'verkerk', u'feder', u'basel'] [u'hermannsburg', u'get', u'year', u'sexual', u'assault'] [u'hodg', u'appear', u'court', u'stalk', u'alleg'] [u'home', u'insur', u'number', u'drop', u'bushfir', u'danger'] [u'home', u'insur', u'scheme', u'face', u'major', u'reform'] [u'hunter', u'destin', u'australian'] [u'indigen', u'mine', u'contractor', u'boost', u'job'] [u'inflat', u'hold', u'steadi', u'strong', u'dollar'] [u'injuri', u'india', u'seri', u'build'] [u'iran', u'decis', u'allow', u'nuclear', u'inspect'] [u'ireland', u'pick', u'humphrey', u'face', u'argentina'] [u'israel', u'reject', u'barrier', u'resolut'] [u'israel', u'speed', u'build', u'west', u'bank', u'barrier'] [u'israel', u'continu', u'erect', u'secur', u'wall'] [u'sheep', u'stress'] [u'itali', u'beset', u'injuri', u'problem'] [u'jone', u'slap', u'buddha', u'whitak', u'select', u'jibe'] [u'journalist', u'kill', u'ivori', u'coast', u'milit'] [u'judg', u'piggeri', u'plan', u'site'] [u'juve', u'march', u'reel', u'inter', u'thrash', u'moscow'] [u'kenyan', u'presid', u'powel', u'hold', u'talk', u'terror'] [u'land', u'giveaway', u'prove', u'popular'] [u'lightn', u'hit', u'ravenswood', u'miner'] [u'local', u'ralli', u'supermarket', u'plan'] [u'loyal', u'whitak', u'pois', u'captain', u'wallabi'] [u'clear', u'make', u'threat', u'virgin', u'blue', u'flight'] [u'mandela', u'launch', u'music', u'campaign', u'highlight', u'aid'] [u'face', u'court', u'lambton', u'drug'] [u'fall', u'death', u'workplac', u'accid'] [u'suffer', u'head', u'injuri', u'lake', u'macquari'] [u'market', u'focus', u'china', u'trade', u'dollar'] [u'marshal', u'impress', u'versatil', u'england'] [u'mental', u'state', u'alleg', u'tripl', u'murder'] [u'mightili', u'reliev', u'duck', u'blame', u'hous', u'splatter'] [u'mine', u'offer', u'best', u'hope', u'region', u'develop'] [u'minist', u'launch', u'showcas', u'cunnamulla', u'talent'] [u'minist', u'say', u'landcar', u'win', u'battl'] [u'minist', u'announc', u'catchment', u'group'] [u'minnelli', u'sue', u'spousal', u'abus'] [u'miseri', u'jinx', u'philippoussi'] [u'frustrat', u'preselect', u'delay'] [u'murchison', u'council', u'look', u'citi', u'shire', u'best'] [u'murray', u'water', u'price', u'plummet', u'water', u'flood', u'market'] [u'namoi', u'valley', u'group', u'monitor', u'state', u'water', u'plan'] [u'upbeat', u'surg', u'crowd', u'figur'] [u'near', u'half', u'teacher', u'leav', u'quit'] [u'polic', u'task', u'forc', u'crackdown', u'crime'] [u'nightclub', u'curfew', u'help', u'warrnambool', u'crime'] [u'ireland', u'peac', u'talk', u'break'] [u'link', u'sydney', u'drive', u'shoot', u'polic'] [u'mirror', u'mine', u'expo'] [u'chief', u'quiz', u'compani'] [u'govt', u'blow', u'flatul'] [u'offic', u'build', u'site', u'fuel', u'decontamin'] [u'paedophil', u'priest', u'face', u'long', u'jail', u'term'] [u'pakistan', u'sami', u'doubt', u'second', u'test'] [u'peac', u'prize', u'winner', u'affirm', u'commit', u'goodwil'] [u'pell', u'appoint', u'cardin', u'vatican', u'ceremoni'] [u'plan', u'visit', u'break', u'hill', u'fundrais'] [u'ask', u'confirm', u'manjimup', u'jetti', u'fund'] [u'eye', u'china', u'free', u'trade', u'deal'] [u'polic', u'appeal', u'public', u'help', u'attack'] [u'polic', u'direct', u'stock', u'theft', u'sting', u'complaint'] [u'polic', u'hold', u'grave', u'fear', u'miss', u'toddler'] [u'polic', u'hope', u'extradit', u'cannabi'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'question', u'accid', u'kill'] [u'port', u'kembla', u'work', u'prelud', u'growth', u'plan'] [u'port', u'phillip', u'prison', u'oper', u'accus'] [u'properti', u'petrol', u'push', u'inflat'] [u'protest', u'voic', u'opposit', u'bush'] [u'public', u'demand', u'bond', u'bendigo', u'wast', u'dump'] [u'public', u'comment', u'aust', u'largest', u'tiger', u'prawn', u'farm'] [u'puma', u'charg', u'quarter'] [u'demand', u'return', u'bauxit', u'leas'] [u'govt', u'urg', u'bolster', u'gold', u'coast', u'crisi', u'hous'] [u'rawl', u'deal', u'fair', u'roo'] [u'repriev', u'grant', u'refuge', u'schoolgirl'] [u'research', u'tree', u'diseas', u'fight', u'fund'] [u'research', u'gene', u'decid', u'onset'] [u'research', u'show', u'higher', u'cancer', u'risk', u'flight', u'crew'] [u'resid', u'lodg', u'appeal', u'alcoa', u'refineri'] [u'resid', u'urg', u'traralgon', u'race'] [u'review', u'urg', u'helicopt', u'rescu', u'mission'] [u'roam', u'youth', u'leav', u'broom', u'communiti', u'fear'] [u'rofe', u'scuttl', u'warrior', u'perth'] [u'erupt', u'sydney', u'peac', u'prize', u'winner'] [u'ruddock', u'urg', u'china', u'protest', u'observ'] [u'ryan', u'reject', u'dutson', u'down', u'scaremong', u'claim'] [u'claim', u'oldest', u'vertebr', u'fossil'] [u'compani', u'win', u'share', u'iraq', u'contract'] [u'safin', u'slump', u'continu'] [u'pass', u'biki', u'fortress'] [u'school', u'push', u'build', u'sport', u'centr'] [u'sept', u'mastermind', u'kill', u'report', u'offici'] [u'sheep', u'ship', u'futur', u'limbo'] [u'shire', u'critic', u'recommend'] [u'shire', u'hold', u'fast', u'track', u'airport', u'runway'] [u'socceroo', u'latest', u'rank'] [u'solomon', u'strand', u'visa', u'gaff'] [u'solomon', u'strand', u'rout', u'meet', u'bush'] [u'south', u'africa', u'bowler', u'struggl', u'test'] [u'southern', u'tourism', u'meet', u'hail', u'success'] [u'stab', u'spark', u'polic', u'manhunt'] [u'stanbrok', u'unsur', u'beef', u'properti', u'purchas'] [u'studio', u'chang', u'heart', u'movi', u'oscar'] [u'sudanes', u'parti', u'commit', u'peac', u'deal'] [u'sunshin', u'coast', u'remain', u'popular', u'destin'] [u'surgeri', u'improv', u'hunter', u'heart', u'attack', u'surviv', u'rate'] [u'swim', u'coach', u'confid', u'ahead', u'court', u'date'] [u'swim', u'star', u'testifi', u'murder', u'trial'] [u'sydney', u'firm', u'architectur', u'gong'] [u'sydney', u'king', u'derbi'] [u'enjoy', u'increas', u'tourism', u'growth'] [u'tasmanian', u'protest', u'bush', u'visit'] [u'urg', u'redirect', u'sheep', u'shipment'] [u'telco', u'complaint', u'year'] [u'telstra', u'decay', u'record', u'photo', u'opposit'] [u'blast', u'eastern', u'indonesian', u'citi'] [u'tourist', u'visit', u'longest', u'report'] [u'troop', u'deploy', u'crimin', u'north', u'korea', u'tell', u'south'] [u'tweed', u'council', u'consid', u'beach', u'develop'] [u'palestinian', u'milit', u'kill', u'west', u'bank', u'armi'] [u'soldier', u'wound', u'baghdad', u'bomb', u'blast'] [u'demand', u'israel', u'halt', u'west', u'bank', u'barrier'] [u'check', u'microsoft', u'anti', u'trust', u'breach'] [u'governor', u'bush', u'interven', u'right', u'case'] [u'scuba', u'diver', u'drown', u'north'] [u'secur', u'offer', u'dismiss', u'laughabl'] [u'vanston', u'accus', u'green', u'doubl', u'standard'] [u'polic', u'suspect', u'miss', u'toddler', u'take', u'home'] [u'virus', u'rampant', u'chines', u'comput'] [u'wallabi', u'ring', u'chang', u'namibia', u'match'] [u'wallabi', u'shortag', u'rugbi', u'player', u'award'] [u'warrior', u'swann', u'sign', u'bradford'] [u'warrnambool', u'busi', u'take', u'region', u'export'] [u'water', u'level', u'rise', u'central'] [u'western', u'queensland', u'defi', u'tourism', u'downturn'] [u'real', u'fiji', u'stand', u'demand', u'coach'] [u'wollongong', u'rider', u'jump', u'supercross'] [u'woodward', u'strengthen', u'england', u'samoa', u'clash'] [u'yanke', u'surg', u'world', u'seri', u'lead'] [u'youhana', u'second', u'test'] [u'injur', u'sydney', u'collis'] [u'protest', u'expect', u'turn', u'anti', u'bush'] [u'countri', u'discuss', u'iraqi'] [u'abattoir', u'owner', u'consid', u'cormo', u'sheep', u'process'] [u'advoc', u'question', u'church', u'account', u'abus', u'claim'] [u'aid', u'greater', u'threat', u'terror', u'confer'] [u'airlin', u'allianc', u'high', u'court'] [u'algerian', u'extremist', u'pledg', u'allegi', u'qaeda'] [u'alleg', u'mastermind', u'iraqi', u'attack', u'arrest'] [u'accident', u'death', u'china', u'year'] [u'lobbi', u'protect', u'wake', u'free', u'trade'] [u'american', u'airlin', u'scrap', u'profit', u'peak', u'season'] [u'ankl', u'surgeri'] [u'annan', u'call', u'dollar', u'iraq', u'reconstruct'] [u'appeal', u'vanston', u'stop', u'deport', u'girl'] [u'ardmona', u'factori', u'outlet', u'stay', u'time'] [u'atsic', u'tackl', u'rise', u'prison', u'number'] [u'aussi', u'favourit', u'india', u'pont'] [u'swim', u'boss', u'pledg', u'support', u'probe'] [u'aust', u'dollar', u'roar', u'year', u'high'] [u'australia', u'name', u'intern', u'rule', u'test'] [u'australia', u'work', u'peac', u'taiwan', u'strait'] [u'author', u'concern', u'miss', u'yacht'] [u'author', u'daytim', u'summer', u'water'] [u'balaji', u'replac', u'injur', u'salvi', u'india', u'squad'] [u'ballarat', u'recov', u'meningococc', u'diseas'] [u'beatti', u'attend', u'meet', u'presid'] [u'beckham', u'doubt', u'liga', u'duti', u'pull'] [u'belgium', u'offer', u'million', u'euro', u'iraq'] [u'bickley', u'look', u'high', u'note'] [u'upgrad', u'brew', u'tasmania', u'boag'] [u'boati', u'warn', u'teak', u'surf', u'danger'] [u'bosnia', u'bid', u'farewel', u'izetbegov'] [u'die', u'holbrook', u'road', u'crash'] [u'brack', u'meet', u'presid', u'free', u'trade', u'talk'] [u'brick', u'shortag', u'warn', u'builder'] [u'brigg', u'get', u'closer', u'world', u'heavyweight', u'fight'] [u'british', u'athlet', u'deni', u'steroid'] [u'brogden', u'air', u'concern', u'campbel', u'visit'] [u'burswood', u'post', u'septemb', u'quarter', u'profit'] [u'bush', u'address', u'parliament'] [u'bush', u'address', u'australian', u'parliament'] [u'bush', u'administr', u'defend', u'leak', u'memo'] [u'bush', u'fli', u'brief', u'visit'] [u'bush', u'kick', u'visit', u'meet', u'governor', u'general'] [u'bush', u'prais', u'thank', u'australia'] [u'bush', u'prais', u'green', u'interject'] [u'bush', u'protest', u'march', u'despit', u'polic'] [u'bush', u'protest', u'march', u'turn', u'violent'] [u'bush', u'put', u'decemb', u'timefram', u'free', u'trade', u'deal'] [u'bush', u'thank', u'support'] [u'bush', u'welcom', u'parliament', u'hous'] [u'busi', u'head', u'meet', u'chines', u'presid'] [u'regul', u'uranium', u'mine'] [u'campaign', u'work', u'region', u'shift'] [u'chamber', u'vow', u'fight', u'drug', u'charg'] [u'chemistri', u'student', u'admit', u'possess', u'bomb'] [u'chines', u'leader', u'tour', u'sydney', u'departur'] [u'chines', u'leader', u'tour', u'olymp', u'stadium'] [u'coal', u'miner', u'concern', u'rise', u'dollar', u'cost', u'job'] [u'communiti', u'grappl', u'boy', u'death'] [u'confer', u'consid', u'region', u'challeng'] [u'council', u'object', u'take', u'strand', u'sheep'] [u'council', u'reject', u'dampier', u'pharmaci'] [u'council', u'releas', u'mall', u'report'] [u'council', u'seek', u'solut', u'landfil', u'problem'] [u'council', u'reap', u'real', u'estat', u'boom', u'reward'] [u'council', u'head', u'lice', u'check', u'scheme', u'time'] [u'coupl', u'shoot', u'fail', u'jack'] [u'court', u'hand', u'work', u'accid', u'sentenc'] [u'dairi', u'group', u'happi', u'thai', u'trade', u'agreement'] [u'decis', u'reject', u'drought', u'assist', u'outrag'] [u'democrat', u'health', u'summit', u'snub', u'region'] [u'dongara', u'landmark', u'receiv', u'interim', u'heritag'] [u'doubt', u'rais', u'irrig', u'review'] [u'drought', u'busi', u'fund', u'boost'] [u'dutchman', u'doubl', u'stockholm'] [u'econom', u'slump', u'predict', u'port', u'lincoln'] [u'award', u'right', u'prize', u'annan', u'staff'] [u'famili', u'chief', u'respond', u'alleg'] [u'figur', u'highlight', u'fall', u'tourism', u'number'] [u'damag', u'sale', u'greyhound', u'build'] [u'fisherman', u'lucki', u'bite', u'give', u'briton', u'teeth'] [u'arrest', u'anti', u'bush', u'protest'] [u'fijian', u'overpow', u'japan'] [u'labor', u'sign', u'protest', u'letter', u'bush'] [u'kill', u'indian', u'train', u'jump', u'track'] [u'gold', u'coast', u'tourism', u'weather', u'global', u'event'] [u'gonzalez', u'end', u'marathon', u'marlin', u'seri'] [u'govt', u'ban', u'junk', u'food', u'school', u'canteen'] [u'govt', u'seek', u'solut', u'meatwork', u'problem'] [u'govt', u'veto', u'art', u'festiv', u'minist', u'say'] [u'great', u'wait', u'begin', u'luhrmann', u'film'] [u'green', u'ban', u'parliament', u'anti', u'bush'] [u'green', u'demand', u'referendum', u'year', u'govt'] [u'grim', u'outlook', u'region', u'cancer', u'patient'] [u'grower', u'welcom', u'drought', u'elig'] [u'heal', u'send', u'spur', u'strong', u'statement'] [u'health', u'union', u'move', u'forward', u'mater', u'redevelop'] [u'hick', u'lawyer', u'join', u'bush', u'protest', u'parliament'] [u'hodg', u'launch', u'channel', u'defam', u'action'] [u'hunt', u'continu', u'miss', u'toddler'] [u'hunter', u'join', u'protest', u'bush', u'visit'] [u'hurrican', u'patricia', u'churn', u'mexico'] [u'immigr', u'author', u'arrest', u'raid'] [u'indian', u'polic', u'seiz', u'explos', u'hide', u'onion'] [u'india', u'year', u'pakistan', u'test', u'freez'] [u'india', u'year', u'pakistantest', u'freez'] [u'india', u'hold', u'talk', u'kashmiri', u'separatist'] [u'indi', u'driver', u'shock', u'death', u'crash'] [u'indi', u'support', u'car', u'track'] [u'injuri', u'forc', u'newcastl', u'unit', u'younger'] [u'injuri', u'newcastl', u'boy'] [u'interest', u'parti', u'urg', u'regist', u'mediat'] [u'iran', u'hand', u'nuclear', u'declar', u'say'] [u'iran', u'hand', u'nuclear', u'document', u'offici'] [u'iraqi', u'famili', u'plead', u'help', u'leav', u'australia'] [u'iraqi', u'govern', u'council', u'plead'] [u'iraqi', u'polic', u'bomb', u'baghdad'] [u'hear', u'illawarra', u'unfair', u'dismiss', u'case'] [u'israel', u'deni', u'target', u'palestinian', u'civilian'] [u'isra', u'court', u'lift', u'order', u'hezbollah'] [u'japan', u'rest', u'fiji', u'clash'] [u'john', u'clear', u'resum', u'train'] [u'juri', u'dismiss', u'minist', u'defam', u'case'] [u'kill', u'journalist', u'ivori', u'coast', u'intent'] [u'lake', u'boga', u'suffer', u'algal', u'problem'] [u'lawyer', u'air', u'china', u'censorship', u'concern'] [u'lloyd', u'bemoan', u'death', u'myth'] [u'main', u'road', u'find', u'sign', u'blame', u'cross'] [u'accus', u'machet', u'incid'] [u'charg', u'attempt', u'murder'] [u'net', u'deceas', u'granni', u'pension', u'year'] [u'plead', u'guilti', u'murder', u'wife'] [u'sentenc', u'threaten', u'kill', u'polic'] [u'mayor', u'back', u'aerospac', u'firm', u'townsvill', u'job'] [u'mayor', u'water', u'call', u'govt', u'probe'] [u'mcgrath', u'mend'] [u'melbourn', u'host', u'sexual', u'slaveri', u'confer'] [u'gibson', u'sign', u'distribut', u'deal', u'disput'] [u'sentenc', u'year', u'jail', u'term', u'murder'] [u'microwav', u'cook', u'zap', u'away', u'nutrient', u'studi'] [u'mine', u'compani', u'announc', u'record', u'iron', u'haul'] [u'minist', u'question', u'telstra', u'staff', u'sack'] [u'govt', u'support', u'industri', u'wind'] [u'ask', u'bush', u'protest', u'behav'] [u'rais', u'highway', u'spend', u'question'] [u'namibian', u'coach', u'say', u'need', u'reform'] [u'group', u'seek', u'medicar', u'fund', u'boost'] [u'zealand', u'impress', u'western'] [u'zealand', u'unhappi', u'underdog', u'fleme'] [u'korean', u'offic', u'western', u'prison', u'camp'] [u'sight', u'industri', u'woe'] [u'player', u'rep', u'sydney', u'talk'] [u'govt', u'promis', u'land', u'clear', u'result'] [u'govt', u'review', u'train', u'servic', u'protest'] [u'watchdog', u'dismiss', u'airlin', u'merger', u'plan'] [u'opposit', u'alarm', u'youth', u'unemploy', u'stat'] [u'oscar', u'nomin', u'songwrit', u'dead'] [u'palestinian', u'film', u'give', u'second', u'chanc', u'oscar'] [u'palestinian', u'gunman', u'kill', u'firefight'] [u'park', u'servic', u'probe', u'tree', u'poison'] [u'plan', u'develop', u'harbour', u'boat', u'precinct'] [u'plane', u'investig', u'possibl', u'sight', u'miss'] [u'entertain', u'bush', u'lodg', u'barbequ'] [u'push', u'swift', u'resolut', u'hick', u'habib'] [u'public', u'warn', u'dont', u'vandalis', u'mahathir', u'banner'] [u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit'] [u'polic', u'label', u'anti', u'bush', u'protest', u'milit'] [u'polic', u'surround', u'protest', u'outsid', u'embassi'] [u'potato', u'chip', u'raki', u'cigarett', u'ador', u'turkish'] [u'govt', u'accus', u'gag', u'indigen', u'child', u'agenc'] [u'govt', u'call', u'earli', u'drought', u'talk'] [u'govt', u'say', u'tree', u'clear', u'compens', u'fair'] [u'reef', u'valu', u'surpris', u'kemp'] [u'research', u'project', u'get', u'mix', u'support'] [u'resid', u'meatwork', u'entitl', u'push'] [u'restrict', u'help', u'rais', u'water', u'awar'] [u'welcom', u'jail', u'arsonist'] [u'drug', u'charg', u'delay'] [u'rise', u'dollar', u'push', u'market'] [u'riverina', u'tourism', u'spend', u'bounc'] [u'roman', u'amphitheatr', u'unearth', u'germani'] [u'romania', u'demoralis', u'wallabi', u'thrash', u'say'] [u'rowdi', u'recept', u'expect', u'minist'] [u'rugbi', u'world', u'test', u'drug'] [u'firm', u'land', u'contract', u'rebuild', u'iraqi'] [u'sartor', u'launch', u'bega', u'valley', u'sewerag', u'scheme'] [u'woman', u'claim', u'miss', u'world', u'australia', u'titl'] [u'schuettler', u'cruis', u'petersburg'] [u'scientist', u'identifi', u'gene', u'link'] [u'scientist', u'probe', u'mysteri', u'major', u'chromosom'] [u'separ', u'egyptian', u'twin', u'minor', u'complic'] [u'seven', u'face', u'court', u'abalon', u'charg'] [u'chang', u'anim', u'obey', u'law', u'natur'] [u'sign', u'deter', u'truck', u'mildura', u'citi', u'centr'] [u'schoolboy', u'hospitalis', u'take', u'viagra'] [u'southern', u'cross', u'revamp', u'local', u'news', u'bulletin'] [u'south', u'west', u'sport', u'club', u'merg'] [u'spammer', u'face', u'million', u'dollar', u'fin'] [u'state', u'seek', u'commonwealth', u'clariti', u'project'] [u'stiff', u'disciplin', u'schoolboy', u'viagra', u'prank'] [u'student', u'converg', u'albani'] [u'student', u'urg', u'refrain', u'muck'] [u'sugar', u'boss', u'reject', u'price', u'plung', u'predict'] [u'tamworth', u'leagu', u'club', u'post', u'record', u'profit'] [u'tamworth', u'stalwart', u'die', u'age'] [u'tamworth', u'target', u'build', u'sale'] [u'telstra', u'deal', u'email', u'virus'] [u'hama', u'member', u'critic', u'injur', u'nablus'] [u'tiger', u'tri', u'equal', u'consecut', u'mark'] [u'toowoomba', u'raid', u'uncov', u'cash', u'drug'] [u'tourism', u'industri', u'receiv', u'inject'] [u'trescothick', u'thorp', u'help', u'england', u'crucial', u'lead'] [u'injur', u'brunswick', u'blaze'] [u'polic', u'suspend', u'racism', u'alleg'] [u'union', u'back', u'move', u'strip', u'compani', u'mine', u'leas'] [u'union', u'plan', u'carter', u'holt', u'harvey', u'strike'] [u'unit', u'chelsea', u'celebr', u'itali', u'mourn'] [u'secur', u'failur', u'blame', u'baghdad', u'blast'] [u'quartet', u'test', u'posit', u'design', u'steroid'] [u'north', u'korea', u'secur', u'guarante'] [u'contribut', u'fund', u'iraq'] [u'second', u'place', u'world', u'solar', u'challeng'] [u'polic', u'recheck', u'lead', u'miss', u'toddler'] [u'score', u'second', u'place', u'world', u'solar', u'challeng'] [u'virgin', u'sign', u'year', u'deal', u'adelaid', u'airport'] [u'council', u'lobbi', u'afghan', u'asylum', u'seeker'] [u'govt', u'reject', u'feder', u'build', u'reform', u'plan'] [u'wallabi', u'unit', u'despit', u'reshuffl', u'giffin'] [u'watchdog', u'llama', u'rescu', u'crew', u'aid'] [u'waugh', u'back', u'bowl', u'rotat', u'polici'] [u'weak', u'dollar', u'push', u'market', u'higher'] [u'wentworth', u'resid', u'warn', u'boil', u'drink', u'water'] [u'wheatbelt', u'shire', u'catch', u'catch', u'situat'] [u'wheat', u'industri', u'welcom', u'thai', u'free', u'trade', u'deal'] [u'wine', u'corp', u'probe', u'riverland', u'wineri', u'label'] [u'wodonga', u'council', u'consid', u'transport', u'option'] [u'woodsid', u'drop', u'south', u'east', u'plan'] [u'work', u'ban', u'start', u'school'] [u'worldwid', u'drug', u'hunt', u'strip', u'athen', u'track'] [u'fish', u'speci', u'ocean', u'survey'] [u'summer', u'ozon', u'pollut', u'europ', u'hit', u'record'] [u'win', u'media', u'peac', u'award'] [u'adelaid', u'continu', u'dream', u'start'] [u'benalla', u'plant', u'go', u'great', u'gun', u'ammo'] [u'back', u'test', u'drug'] [u'agforc', u'presid', u'call', u'beef', u'tariff'] [u'alic', u'council', u'offer', u'master', u'game', u'fund'] [u'black', u'jack', u'tonga', u'game'] [u'black', u'world', u'dope', u'test'] [u'black', u'loos', u'tonga'] [u'allow', u'pacif', u'island', u'nation', u'fat'] [u'alpin', u'trial', u'armstrong', u'record', u'tour'] [u'urg', u'return', u'hospit', u'public', u'ownership'] [u'amnesti', u'critic', u'pakistan', u'jail', u'children'] [u'buy', u'nation', u'bank'] [u'hail', u'deal', u'creat', u'region', u'leader'] [u'arctic', u'melt', u'worrisom', u'rate', u'nasa'] [u'arm', u'surpris', u'gold', u'coast', u'bank', u'staff'] [u'arsenal', u'lead', u'pressur', u'worri', u'week'] [u'galleri', u'catalogu', u'high', u'tech'] [u'finish', u'week'] [u'aussi', u'intern', u'rule', u'seri'] [u'australia', u'china', u'start', u'free', u'trade', u'negoti'] [u'australia', u'china', u'start', u'free', u'trade', u'talk'] [u'australian', u'scientist', u'global', u'marin', u'census'] [u'australia', u'pledg', u'iraq'] [u'author', u'issu', u'licenc', u'bulk', u'grain'] [u'bangladesh', u'continu', u'frustrat', u'england'] [u'baptism', u'ail', u'inter', u'face', u'roma'] [u'beckham', u'pull', u'hamstr'] [u'bega', u'chees', u'win', u'export', u'award'] [u'bendigo', u'bank', u'branch', u'open', u'robe'] [u'bendigo', u'polic', u'crack', u'drink', u'drive'] [u'cat', u'room', u'monarto'] [u'crowd', u'expect', u'warwick', u'rodeo'] [u'blair', u'govt', u'allow', u'asylum', u'famili', u'stay'] [u'blaster', u'bat', u'hand', u'british', u'davi', u'rein'] [u'booth', u'get', u'scotland', u'incent', u'shoot', u'celtic'] [u'brack', u'back', u'crackdown', u'polic', u'file', u'issu'] [u'brisban', u'kill', u'confront', u'polic'] [u'bryant', u'make', u'season', u'debut', u'laker'] [u'bryant', u'start', u'season', u'game'] [u'bush', u'visit', u'pearl', u'harbour'] [u'businessman', u'face', u'drug', u'charg'] [u'foster', u'carer', u'central', u'western'] [u'casey', u'control', u'madrid', u'lyle', u'struggl'] [u'central', u'australian', u'fire', u'destroy', u'luxuri', u'resort'] [u'chang', u'afoot', u'water', u'resourc', u'manag'] [u'chapman', u'valley', u'shire', u'look', u'long', u'term', u'water'] [u'child', u'killer', u'sentenc', u'sydney', u'court'] [u'child', u'protect', u'worker', u'protest'] [u'china', u'sign', u'gorgon', u'export', u'deal'] [u'clinton', u'broker', u'deal', u'benefit', u'aid', u'suffer'] [u'communiti', u'radio', u'licenc', u'glen', u'inn'] [u'concern', u'increas', u'indigen', u'rate'] [u'concord', u'take', u'flight'] [u'want', u'protect', u'moreton'] [u'costa', u'clarifi', u'book', u'polici'] [u'council', u'concern', u'hospit', u'reduct'] [u'council', u'crisi', u'deepen', u'mayor', u'urg', u'resign'] [u'council', u'face', u'legal', u'settl', u'offic'] [u'council', u'merger', u'move', u'closer', u'realiti'] [u'council', u'rethink', u'mall', u'decis'] [u'council', u'road', u'feder', u'fund'] [u'coupl', u'escap', u'injuri', u'crash', u'hous'] [u'csiro', u'wait', u'alcoa', u'green', u'light', u'wagerup'] [u'death', u'forc', u'town', u'alcohol', u'abus'] [u'democrat', u'decri', u'green', u'bush', u'stunt'] [u'dengu', u'fever', u'effort', u'review', u'north'] [u'dept', u'stand', u'decis', u'disendors', u'landcar'] [u'derbi', u'get', u'readi', u'river', u'derbi'] [u'dispirit', u'kafelnikov', u'bow', u'petersburg'] [u'diver', u'continu', u'search', u'miss'] [u'dont', u'offend', u'beatti', u'tell', u'redneck'] [u'reject', u'setback', u'produc'] [u'epic', u'extend', u'deadlin', u'pipelin', u'sale'] [u'fast', u'love', u'aust', u'coupl', u'concord', u'mile'] [u'fear', u'tourist', u'spot', u'face', u'water', u'pollut', u'woe'] [u'feder', u'upset', u'serv', u'ljubic'] [u'fight', u'continu', u'invalid', u'pension', u'home'] [u'fijian', u'fli', u'coach', u'want'] [u'fiji', u'worri', u'rugbi', u'player', u'drain'] [u'nation', u'elect', u'secur', u'council'] [u'detect', u'serv', u'jail', u'time', u'sell'] [u'fossett', u'aim', u'solo', u'round', u'world', u'record'] [u'kill', u'spate', u'road', u'accid'] [u'franc', u'scotland', u'play', u'avoid', u'wallabi'] [u'gibb', u'miss', u'centuri', u'pakistan', u'domin'] [u'ginepri', u'undaunt', u'dent', u'stockholm'] [u'gladston', u'smelter', u'sign', u'china', u'deal'] [u'govt', u'open', u'stage', u'bendigo', u'busi', u'park'] [u'govt', u'offload', u'strand', u'sheep', u'eritrea'] [u'green', u'claim', u'chines', u'agent', u'vet', u'parliament', u'guest'] [u'green', u'senat', u'lock', u'parliament'] [u'group', u'slam', u'govt', u'fund', u'kimberley', u'river', u'studi'] [u'group', u'gaug', u'rail', u'servic', u'futur'] [u'gunner', u'lose', u'vieira', u'fortnight'] [u'hamilton', u'pool', u'plan', u'continu'] [u'handler', u'head', u'tiger', u'rescu', u'mission'] [u'harradin', u'boycott', u'parliamentari', u'address'] [u'hauritz', u'watson', u'clear', u'play', u'dayer'] [u'health', u'servic', u'highlight', u'doctor', u'registr'] [u'historian', u'recommend', u'rescind', u'pulitz'] [u'howard', u'ask', u'china', u'work', u'taiwan'] [u'howard', u'hail', u'potenti', u'export', u'deal', u'china'] [u'human', u'right', u'agenda', u'visit'] [u'hundr', u'protest', u'iraq', u'outsid'] [u'immens', u'serevi', u'world'] [u'immigr', u'raid', u'leav', u'grower', u'short', u'staff'] [u'indi', u'car', u'street', u'surfer'] [u'investig', u'hand', u'fatal', u'crash', u'result'] [u'irrig', u'water', u'alloc', u'boost'] [u'itali', u'brace', u'black', u'friday', u'nation', u'strike'] [u'itali', u'captain', u'troncon', u'face', u'wale'] [u'itali', u'spotlight', u'press', u'freedom', u'studi'] [u'japan', u'commit', u'iraq', u'reconstruct', u'fund'] [u'johnson', u'sympathi', u'weaken', u'samoa'] [u'johnson', u'urg', u'team', u'rememb', u'histori'] [u'junquiera', u'claim', u'provision', u'indi', u'pole'] [u'jupit', u'merg', u'tabcorp'] [u'kalgoorli', u'host', u'indigen', u'head', u'govt'] [u'kalgoorli', u'wildcat', u'pirat', u'clash', u'live'] [u'kluivert', u'rule', u'arsenal', u'premiership'] [u'kyli', u'use', u'sexi', u'bardot', u'look', u'album'] [u'land', u'council', u'endors', u'pearl', u'north', u'east', u'darwin'] [u'landhold', u'welcom', u'assist'] [u'laser', u'hit', u'spot', u'acn', u'suffer'] [u'legal', u'action', u'consid', u'centaur', u'case'] [u'lib', u'choos', u'ballarat', u'candid'] [u'longford', u'meatwork', u'accept', u'govt', u'assist'] [u'longford', u'meatwork', u'consid', u'govt', u'offer'] [u'lonhro', u'best', u'ride', u'beadman'] [u'madam', u'chiang', u'shek', u'die', u'age'] [u'magistr', u'call', u'minist', u'reunit', u'indonesian'] [u'malaysian', u'visit'] [u'die', u'northam'] [u'jail', u'steal', u'worth'] [u'face', u'court', u'shop', u'assault'] [u'marlin', u'away', u'world', u'seri', u'glori'] [u'mather', u'recal', u'scotland', u'face', u'franc'] [u'upbeat', u'insur', u'fund'] [u'miller', u'complet', u'hous', u'japan'] [u'test', u'newcastl', u'knight', u'captain'] [u'mother', u'jail', u'year', u'kill', u'children'] [u'fear', u'sale', u'talk', u'delay', u'gippsland', u'rail'] [u'want', u'chanc', u'parti', u'address', u'bush'] [u'gambier', u'firm', u'win', u'seven', u'trade', u'crusad'] [u'nairn', u'unhappi', u'green', u'bush', u'outburst'] [u'namibia', u'second', u'stringer', u'clash'] [u'nasa', u'scientist', u'warn', u'space', u'station', u'pose', u'risk'] [u'newcastl', u'brand', u'union', u'action', u'polit'] [u'newcastl', u'unit', u'hungri'] [u'newcastl', u'wari', u'fire', u'adelaid'] [u'mine', u'rescu', u'committe', u'meet', u'today'] [u'probe', u'launch', u'girl', u'death'] [u'program', u'focus', u'indigen', u'teenag'] [u'north', u'west', u'prepar', u'restrict'] [u'nowra', u'glimps', u'melbourn'] [u'coal', u'train', u'derail', u'disrupt', u'passeng'] [u'govt', u'reject', u'snowi', u'council', u'plan'] [u'polic', u'offic', u'face', u'indec', u'assault', u'charg'] [u'welcom', u'tourism', u'fund', u'boost'] [u'oberon', u'lobbi', u'group', u'argu', u'council'] [u'ogilvi', u'place', u'florida'] [u'opposit', u'call', u'urgent', u'polic', u'recruit'] [u'pair', u'deni', u'rap', u'girl', u'court', u'hear'] [u'pair', u'south', u'coast', u'crash'] [u'make', u'men', u'tournament'] [u'palestinian', u'gunman', u'kill', u'isra', u'gaza'] [u'palestinian', u'kill', u'ramallah', u'blast'] [u'plan', u'health', u'reform', u'high', u'summit', u'agenda'] [u'criticis', u'ignor', u'trooper', u'widow'] [u'tri', u'whitewash', u'australian', u'histori', u'labor'] [u'polic', u'home', u'intern', u'drug', u'syndic'] [u'polic', u'shoot', u'steal'] [u'polic', u'search', u'toddler'] [u'polic', u'test', u'hunt', u'continu', u'miss'] [u'pope', u'cancel', u'mass', u'rest', u'vatican'] [u'power', u'station', u'oper', u'fin', u'worker', u'death'] [u'presid', u'address', u'parliament'] [u'protest', u'forc', u'rais', u'issu', u'bush', u'hick'] [u'public', u'liabil', u'threaten', u'australia', u'lifesav'] [u'govt', u'take', u'court', u'action', u'seiz', u'mine', u'leas'] [u'govt', u'urg', u'river'] [u'report', u'downgrad', u'health', u'coast', u'river'] [u'riverland', u'council', u'reject', u'merger', u'plan'] [u'romania', u'launceston', u'rugbi', u'world'] [u'rubber', u'face', u'funnyman', u'carrey', u'go', u'bionic'] [u'russia', u'mourn', u'admit', u'mistak', u'year', u'dead'] [u'safeti', u'revamp', u'warrego', u'highway', u'section'] [u'sale', u'greyhound', u'race', u'night', u'despit', u'club'] [u'lotteri', u'demand', u'dairi', u'competit'] [u'optimist', u'mine', u'prospect'] [u'timber', u'worker', u'strike', u'south', u'east'] [u'scallop', u'fisherman', u'downcast', u'despit', u'season', u'extens'] [u'scot', u'ponder', u'lesli', u'appeal'] [u'scrappi', u'springbok', u'overcom', u'brave', u'georgia'] [u'senat', u'oppos', u'telstra', u'sale'] [u'senat', u'welcom', u'return', u'news', u'servic'] [u'sheep', u'shipment', u'arriv', u'eritrea'] [u'warrnambool'] [u'speaker', u'bar', u'parliament', u'guest'] [u'student', u'industri', u'benefit'] [u'student', u'restraint', u'muck', u'celebr'] [u'studi', u'show', u'spam', u'turn', u'away', u'email', u'user'] [u'super', u'slot', u'japan', u'slam', u'fiji'] [u'surg', u'wall', u'height', u'final', u'determin'] [u'swiss', u'sail', u'australian', u'desert'] [u'tamworth', u'farewel', u'popular', u'resid'] [u'tandou', u'unprofit', u'farm', u'oper'] [u'thousand', u'expect', u'farewel', u'chopper', u'crash'] [u'threat', u'pose', u'drug', u'menac', u'divid', u'coach'] [u'peopl', u'dead', u'separ', u'incid', u'brisban'] [u'timber', u'worker', u'strike', u'enterpris', u'bargain'] [u'townsvill', u'mayor', u'support', u'happi', u'valley', u'safe', u'place'] [u'turkey', u'alpay', u'quit', u'villa'] [u'isra', u'armi', u'offic', u'hold', u'take', u'bribe'] [u'employ', u'centr', u'relaunch'] [u'union', u'vow', u'mudge', u'abattoir', u'fight'] [u'aust', u'year', u'expert'] [u'patent', u'offic', u'hit', u'shock', u'barrag'] [u'senat', u'vote', u'cuba', u'travel'] [u'soldier', u'kill', u'northern', u'iraq', u'attack'] [u'vail', u'prais', u'chines', u'deal'] [u'valencia', u'deportivo', u'fight', u'lead'] [u'waff', u'rule', u'dairi', u'industri', u'regul'] [u'irrig', u'welcom', u'review'] [u'wallabi', u'aim', u'post', u'cricket', u'score'] [u'wallabi', u'favourit', u'french', u'flanker', u'magn'] [u'wallabi', u'plan', u'match', u'combin', u'pacif'] [u'pastoralist', u'control', u'croc', u'cull'] [u'warrior', u'rout', u'redback'] [u'stop', u'skeleton', u'weed', u'quarantin'] [u'wildcat', u'hawk', u'bullet', u'sixer', u'win'] [u'wineri', u'win', u'export', u'honour'] [u'woman', u'succumb', u'crash', u'injuri'] [u'world', u'start', u'test'] [u'worm', u'live', u'longer'] [u'yacht', u'search', u'crew', u'member', u'call'] [u'youth', u'jobless', u'rate', u'reach', u'high'] [u'zimbabw', u'white', u'farmer', u'land', u'report'] [u'accus', u'japanes', u'stalker', u'sue', u'princess'] [u'black', u'back', u'mend'] [u'russian', u'miner', u'aliv', u'rescuer'] [u'wallabi', u'tri'] [u'home', u'power'] [u'american', u'ralli', u'continu', u'occup'] [u'armi', u'exercis', u'take', u'place', u'region'] [u'asterix', u'spirit', u'stem', u'halloween', u'invas', u'franc'] [u'kill', u'swiss', u'train', u'collid'] [u'attack', u'leav', u'soldier', u'dead', u'iraq'] [u'beatti', u'admit', u'foster', u'care', u'inquiri', u'polit'] [u'blue', u'mountain', u'hailstorm'] [u'bourdai', u'snatch', u'indi', u'pole'] [u'bull', u'tame', u'tiger', u'gabba'] [u'california', u'win', u'anti', u'spam', u'judgment'] [u'casey', u'move', u'clear', u'madrid'] [u'cathol', u'church', u'abus', u'procedur', u'fail', u'bishop'] [u'chaucer', u'go', u'onlin'] [u'china', u'presid', u'arriv', u'zealand'] [u'chines', u'leader', u'begin', u'visit'] [u'chines', u'space', u'capsul', u'public', u'display'] [u'chopstick', u'caus', u'arthriti', u'report'] [u'cia', u'intellig', u'sloppi', u'committe'] [u'citylink', u'burnley', u'tunnel', u'close', u'temporarili'] [u'clean', u'begin', u'sever', u'storm'] [u'close', u'zimbabw', u'daili', u'street'] [u'concord', u'make', u'final', u'touchdown'] [u'congo', u'militia', u'resum', u'plunder', u'foreign', u'forc'] [u'court', u'reinstat', u'zimbabwean', u'newpap', u'licenc'] [u'crew', u'probe', u'luxuri', u'uluru', u'resort'] [u'deaf', u'plead', u'govt', u'fund'] [u'debtor', u'robber', u'sentenc', u'earn', u'jail', u'time'] [u'diana', u'photograph', u'trial', u'privaci', u'case'] [u'donor', u'pledg', u'billion', u'iraq'] [u'drug', u'test', u'issu', u'sport', u'confer'] [u'east', u'african', u'leader', u'impetus', u'somalia'] [u'elvi', u'rule', u'forb', u'list', u'earn', u'dead', u'celeb'] [u'england', u'head', u'test', u'victori'] [u'england', u'take', u'test', u'bangladesh'] [u'enqvist', u'track', u'fourth', u'stockholm', u'titl'] [u'eritrea', u'accept', u'strand', u'sheep', u'gift'] [u'expert', u'fail', u'identifi', u'best', u'treat', u'sar'] [u'feder', u'unsur', u'pari', u'master', u'particip'] [u'field', u'omagh', u'captur', u'plate'] [u'field', u'omagh', u'score', u'surpris', u'plate'] [u'fowler', u'clubhous', u'leader', u'madrid'] [u'french', u'demolish', u'scot', u'record'] [u'futur', u'outback', u'plan', u'unveil', u'today'] [u'geomagnet', u'storm', u'hit', u'earth', u'tweak', u'power', u'grid'] [u'ghost', u'festiv', u'rememb', u'miner', u'day', u'go'] [u'giant', u'strong', u'breaker'] [u'googl', u'eye', u'stock', u'market', u'float'] [u'greenwood', u'rejoin', u'england', u'squad'] [u'hail', u'storm', u'sweep'] [u'health', u'summit', u'focus', u'indigen', u'servic'] [u'hemingway', u'honour', u'usual', u'cuba', u'drink', u'spot'] [u'henin', u'hardenn', u'look', u'forward', u'face', u'william'] [u'heroin', u'support', u'servic', u'warn', u'client', u'care'] [u'hollywood', u'studio', u'awash', u'follow'] [u'depart', u'confid', u'futur', u'relat'] [u'leav', u'australia'] [u'hunter', u'rail', u'servic', u'reopen', u'sunday'] [u'form', u'schuettler', u'eye', u'titl', u'month'] [u'ingal', u'speed', u'victori'] [u'jone', u'scotch', u'disharmoni', u'talk'] [u'legisl', u'assembl', u'open', u'public'] [u'liberian', u'rebel', u'demand', u'resign', u'countri'] [u'life', u'save', u'associ', u'address', u'insur', u'issu'] [u'lithuanian', u'presid', u'visit', u'white', u'hous'] [u'lonhro', u'hottest', u'favourit'] [u'madam', u'chiang', u'shek', u'die'] [u'mahathir', u'hit', u'australian', u'politician'] [u'major', u'blackout', u'fierc', u'storm', u'whip'] [u'malaysian', u'domin', u'solar', u'cycl', u'race'] [u'assault', u'flemington'] [u'dead', u'near', u'walk', u'track'] [u'hospitalis', u'stab', u'hand'] [u'menzi', u'school', u'health', u'join', u'charl', u'darwin'] [u'moya', u'take', u'penultim', u'master', u'spot'] [u'romanc', u'win', u'excel', u'award'] [u'nalbandian', u'set', u'roddick', u'clash', u'basel'] [u'drug', u'hope', u'million', u'hepat', u'victim'] [u'look', u'aussi', u'attack', u'face', u'tendulkar', u'test'] [u'mental', u'health', u'law', u'propos'] [u'burn', u'death', u'kenya', u'truck', u'accid'] [u'player', u'associ', u'hail', u'promis', u'talk'] [u'parti', u'fight', u'farm', u'credenti'] [u'teacher', u'consid', u'action', u'wage', u'claim'] [u'govt', u'defend', u'propos', u'reform'] [u'eighth', u'korean', u'men', u'tour', u'event'] [u'pakistan', u'deport', u'brother', u'hambali'] [u'patient', u'shoot', u'dead', u'ambul', u'hijack'] [u'attack', u'donor', u'corrupt', u'conserv'] [u'polic', u'investig', u'woman', u'collaps'] [u'power', u'marconi'] [u'princ', u'rebuk', u'diana', u'butler', u'betray'] [u'pub', u'unhappi', u'propos', u'smoke', u'law'] [u'pull', u'dodgi', u'wallabi', u'work', u'strategi'] [u'pyongyang', u'readi', u'consid', u'secur', u'deal'] [u'polic', u'hunt', u'runaway', u'motorist'] [u'race', u'fan', u'turn', u'forc', u'indi'] [u'report', u'give', u'wagerup', u'clear'] [u'reptil', u'return', u'natur', u'habitat'] [u'republican', u'welcom'] [u'rescuer', u'russian', u'aliv'] [u'road', u'safeti', u'forum', u'focus', u'pacif', u'highway'] [u'russian', u'jailbird', u'free', u'song'] [u'russian', u'tycoon', u'arrest'] [u'scientist', u'search', u'tasman', u'speci'] [u'separ', u'egyptian', u'twin', u'reunit'] [u'shakira', u'join', u'celebr', u'children', u'right', u'champion'] [u'sheep', u'unload', u'eritrea'] [u'singh', u'take', u'lead', u'ogilvi', u'eighth'] [u'road', u'accid'] [u'slater', u'top', u'world', u'rank'] [u'south', u'africa', u'ask', u'britain', u'support'] [u'struggl', u'lyle', u'forc', u'year', u'end'] [u'submarin', u'worker', u'suspend', u'strike'] [u'sydney', u'council', u'turn', u'beach', u'shower'] [u'taliban', u'resurg', u'undermin', u'afghan', u'work'] [u'tampa', u'refuge', u'begin', u'life', u'victoria'] [u'fish', u'expert', u'want', u'carp', u'sterilis'] [u'review', u'motorbik', u'law'] [u'teenag', u'honour', u'life', u'save', u'societi'] [u'teenag', u'kill', u'skateboard', u'accid'] [u'thousand', u'evacu', u'fire', u'menac', u'california'] [u'thousand', u'flee', u'californian', u'fire'] [u'dead', u'earli', u'snow', u'catch', u'austria', u'germani'] [u'dead', u'eastern', u'indonesia', u'explos', u'polic'] [u'toddler', u'injur'] [u'tournament', u'mind', u'final', u'hold', u'darwin'] [u'transfer', u'sheep', u'eritrean', u'soil', u'continu'] [u'polic', u'releas', u'hold', u'skydiv', u'murder'] [u'warn', u'saudi', u'travel'] [u'unbeaten', u'farhat', u'centuri', u'put', u'pakistan', u'charg'] [u'britain', u'warn', u'immin', u'threat', u'saudi'] [u'cattlemen', u'resolv', u'aust', u'free', u'trade', u'beef'] [u'vietnam', u'seek', u'dead'] [u'vanston', u'urg', u'grant', u'schoolgirl', u'visa'] [u'venezuelan', u'polic', u'kill', u'seven', u'colombian', u'drug'] [u'polic', u'search', u'attack', u'fatal', u'shoot'] [u'wada', u'call', u'sport', u'test', u'drug'] [u'fumbl', u'deal', u'royalti'] [u'govt', u'accus', u'health', u'review', u'wast'] [u'wale', u'itali', u'face', u'pool', u'second', u'spot'] [u'wale', u'win', u'quarter', u'final', u'berth'] [u'wallabi', u'namibia'] [u'wallabi', u'work', u'strategi', u'namibia'] [u'teacher', u'criticis', u'state', u'tactic'] [u'toddler', u'intens', u'care', u'driveway'] [u'probe', u'indigen', u'alcohol', u'abus'] [u'wheat', u'board', u'reject', u'saddam', u'kickback', u'claim'] [u'world', u'collid', u'england', u'face', u'samoa'] [u'zimbabwean', u'newspap', u'staff', u'arrest'] [u'escap', u'dimboola', u'hotel'] [u'dead', u'colombia', u'vote', u'rebel', u'fight'] [u'recruit', u'polic', u'offic'] [u'abbott', u'flag', u'bulk', u'bill', u'chang'] [u'actor', u'keep', u'philippin', u'suspens', u'poll'] [u'franc', u'pilot', u'grill', u'polic', u'say'] [u'begin', u'demerg', u'hard', u'sell'] [u'ancient', u'mummi', u'return', u'egypt'] [u'asio', u'carri', u'search', u'deport'] [u'aussi', u'retain', u'squash', u'world', u'team', u'titl', u'bust'] [u'australian', u'shoot', u'isra', u'protest'] [u'baghdad', u'hotel', u'rocket'] [u'blast', u'hear', u'iraq', u'hotel'] [u'blaze', u'continu', u'rage', u'near', u'angel', u'suburb'] [u'bourdai', u'indi', u'pole', u'traci', u'eye', u'seri'] [u'bubbl', u'celebr', u'year', u'sugarfest'] [u'californian', u'evacu', u'ahead'] [u'cambodian', u'star', u'mend', u'shoot'] [u'canada', u'warn', u'travel', u'saudi', u'arabia'] [u'cancer', u'awar', u'fundrais', u'hold'] [u'celtic', u'capitalis', u'ranger', u'draw'] [u'chelsea', u'unit', u'crash', u'home'] [u'chievo', u'climb', u'empoli'] [u'china', u'earthquak', u'injur', u'seven', u'peopl'] [u'chirac', u'pledg', u'help', u'poor', u'farmer', u'fairer', u'deal'] [u'christ', u'cathedr', u'bid', u'spot', u'heritag', u'list'] [u'clean', u'begin', u'storm', u'south', u'east'] [u'clumsi', u'dutch', u'robber', u'smash', u'bank', u'lose', u'loot'] [u'communiti', u'group', u'help', u'refuge', u'seeker'] [u'contact', u'satellit', u'midori'] [u'daylight', u'save', u'start'] [u'deportivo', u'beat', u'valencia', u'spain'] [u'downer', u'want', u'busi', u'capitalis', u'visit'] [u'egyptian', u'twin', u'look'] [u'england', u'surviv', u'samoa', u'scare'] [u'ethiopia', u'receiv', u'million', u'global', u'health', u'fund'] [u'european', u'north', u'african', u'polic', u'chief', u'discuss'] [u'feder', u'unsur', u'pari', u'master', u'particip'] [u'fish', u'reel', u'enqvist', u'hook', u'final', u'berth'] [u'kill', u'injur', u'china', u'earthquak'] [u'sentenc', u'death', u'chad'] [u'fourteen', u'face', u'trial', u'mont', u'blanc', u'tunnel'] [u'franc', u'garbajosa', u'leav', u'world'] [u'french', u'german', u'protest', u'nuclear', u'fuel'] [u'german', u'troop', u'north', u'east', u'afghanistan'] [u'germani', u'fischer', u'tour', u'africa'] [u'glori', u'olymp'] [u'govt', u'deni', u'appeal', u'money', u'hospit'] [u'grand', u'central', u'termin', u'celebr', u'anniversari'] [u'grenad', u'chopper', u'iraq'] [u'gulf', u'arab', u'start', u'holi', u'month', u'ramadan', u'monday'] [u'hail', u'storm', u'caus', u'damag', u'gold', u'coast'] [u'harrison', u'admit', u'posit', u'test', u'ban', u'stimul'] [u'harri', u'potter', u'weav', u'magic', u'germani', u'homeless'] [u'health', u'group', u'push', u'stronger', u'smoke', u'law'] [u'woo', u'trade', u'deal'] [u'india', u'set', u'aussi', u'huge', u'total'] [u'ingal', u'complet', u'doubl'] [u'irish', u'edg', u'puma', u'tens', u'tussl'] [u'irish', u'smart', u'argentina', u'defeat'] [u'israel', u'blow', u'gaza', u'build'] [u'israel', u'raze', u'gaza', u'build'] [u'italian', u'judg', u'order', u'crucifix', u'wall'] [u'sing', u'danc', u'lygon', u'street'] [u'jabiluka', u'owner', u'plan', u'regener', u'celebr'] [u'jack', u'hope', u'play', u'wale', u'game'] [u'jade', u'japanes', u'look', u'avoid', u'wooden', u'spoon'] [u'jone', u'home', u'break', u'fibula'] [u'jone', u'play', u'wallabi', u'romp'] [u'kangaroo', u'limp', u'warm', u'franc'] [u'katich', u'guid', u'blue', u'victori'] [u'king', u'continu', u'win', u'streak'] [u'labor', u'warn', u'rush', u'trade', u'deal'] [u'life', u'sentenc', u'refuge', u'drown'] [u'light', u'aircraft', u'crash', u'ocean'] [u'luxuri', u'resort', u'destroy', u'rebuild'] [u'shoot', u'dead', u'melbourn'] [u'church', u'abus', u'claim', u'predict'] [u'moroccan', u'polic', u'arrest', u'suspect', u'attack', u'group'] [u'motorcycl', u'club', u'rais', u'breast', u'cancer', u'awar'] [u'museum', u'overhaul', u'cost', u'million', u'report'] [u'nalbandian', u'down', u'roddick', u'argentin'] [u'ambul', u'aid', u'patient', u'comfort', u'level'] [u'polic', u'seek', u'overdu', u'rental'] [u'lawyer', u'men', u'legal', u'servic'] [u'solar', u'challeng', u'entrant', u'finish'] [u'occup', u'escap', u'injuri', u'crash'] [u'ogilvi', u'shot', u'florida'] [u'democrat', u'unhappi', u'medicar', u'packag'] [u'orascom', u'award', u'motorola', u'multi', u'million', u'dollar', u'iraq'] [u'claim', u'finish', u'men', u'event'] [u'plan', u'optometrist', u'prescrib', u'medic'] [u'seek', u'oversea', u'help', u'polic'] [u'polic', u'arrest', u'gold', u'coast', u'shoot'] [u'polic', u'charg', u'drug', u'relat', u'offenc'] [u'polic', u'prais', u'volunt', u'rescuer', u'action'] [u'polic', u'question', u'dead', u'skater', u'friend'] [u'polic', u'receiv', u'record', u'number', u'complaint'] [u'portugues', u'version', u'latest', u'harri', u'potter'] [u'premier', u'claim', u'govt'] [u'raulini', u'join', u'fiji', u'retir', u'turn'] [u'record', u'number', u'royal', u'hobart'] [u'reform', u'stabil', u'pact', u'review'] [u'regret', u'forget', u'wallabi', u'walker'] [u'rescuer', u'resum', u'save', u'miss', u'russian'] [u'rescuer', u'save', u'russian', u'miner'] [u'rooki', u'win', u'hail', u'interrupt', u'indi'] [u'russian', u'tycoon', u'hold', u'fraud'] [u'govt', u'push', u'kid', u'exercis', u'campaign'] [u'sargsian', u'meet', u'kuerten', u'russian', u'decid'] [u'saudi', u'rebuk', u'terror', u'warn'] [u'saudi', u'telecom', u'incom', u'percent'] [u'unit', u'church', u'make', u'abus', u'report', u'compulsori'] [u'search', u'continu', u'miss', u'plane'] [u'section', u'costal', u'park', u'complet'] [u'sheep', u'final', u'stop', u'unknown'] [u'small', u'trader', u'probe', u'sunday', u'open', u'pressur'] [u'storm', u'clean', u'continu'] [u'straeuli', u'put', u'bok', u'forward', u'notic'] [u'suspect', u'taliban', u'bomb', u'afghan', u'school'] [u'sydney', u'water', u'look', u'leak'] [u'syria', u'threaten', u'retali', u'israel', u'strike'] [u'boss', u'defend'] [u'taiwanes', u'march', u'independ', u'poll'] [u'thousand', u'anti', u'protest'] [u'traci', u'eye', u'seri'] [u'truss', u'name', u'team', u'monitor', u'anim', u'export'] [u'arrest', u'melbourn', u'shoot'] [u'english', u'base', u'player', u'fail', u'drug', u'test', u'report'] [u'tier', u'need', u'say', u'italian', u'coach'] [u'underdog', u'marlin', u'world', u'seri'] [u'say', u'taliban', u'retak', u'afghanistan'] [u'infant', u'fri', u'drink', u'soft', u'drink', u'studi'] [u'offici', u'escap', u'rocket', u'attack'] [u'support', u'bush', u'drop', u'poll'] [u'warn', u'bomb', u'threat', u'baghdad', u'hotel'] [u'govt', u'accus', u'skimp', u'child', u'health'] [u'victori', u'lift', u'west', u'brom', u'divis', u'summit'] [u'walmart', u'threaten', u'illeg', u'immigr'] [u'polic', u'probe', u'fatal', u'ralli', u'accid'] [u'rescuer', u'save', u'stricken', u'sailor'] [u'teacher', u'step', u'industri', u'action'] [u'wolfowitz', u'surviv', u'baghdad', u'rocket', u'attack'] [u'woodbridg', u'tie', u'doubl', u'record', u'stockholm'] [u'yemen', u'free', u'kuwaiti', u'question'] [u'zimbabw', u'paper', u'shut'] [u'face', u'attempt', u'murder', u'charg', u'break'] [u'action', u'group', u'reject', u'propos', u'road'] [u'adelaid', u'fin', u'child', u'porn'] [u'limit', u'stop', u'japanes', u'polit', u'veteran', u'run'] [u'airport', u'urg', u'qanta', u'boycott'] [u'want', u'medicar', u'rebat', u'rise'] [u'argentina', u'skipper', u'call', u'chang'] [u'argentina', u'reggiardo', u'grau', u'cite'] [u'asio', u'investig', u'qaeda', u'suspect', u'deport'] [u'atherton', u'farmer', u'welcom', u'drought', u'assist'] [u'attempt', u'murder', u'suspect', u'arrest'] [u'australian', u'detain', u'unruli', u'behaviour', u'plane'] [u'australia', u'media', u'freedom', u'rank', u'drop'] [u'author', u'launch', u'inquiri', u'ralli', u'death'] [u'award', u'honour', u'bunburi', u'senior'] [u'step', u'action', u'industri', u'manslaught'] [u'baghdad', u'bomb', u'kill', u'hurt', u'offici'] [u'bangladesh', u'batsmen', u'pressur'] [u'barcelona', u'sociedad', u'track'] [u'barrier', u'reef', u'studi', u'put', u'valu', u'perspect'] [u'beatti', u'accus', u'inact', u'shred', u'affair'] [u'beatti', u'rule', u'daylight', u'save'] [u'serv', u'fish', u'net', u'titl'] [u'blaze', u'prove', u'cost', u'greyhound', u'club'] [u'boati', u'warn', u'reced', u'water', u'level'] [u'proud', u'heroic', u'samoan'] [u'bok', u'wari', u'brilliant', u'samoan'] [u'bridg', u'push', u'ahead', u'maroochydor', u'access', u'road'] [u'burmes', u'court', u'postpon', u'hear', u'home'] [u'bush', u'bodi', u'examin', u'result', u'announc'] [u'california', u'fire', u'kill', u'destroy', u'home'] [u'oppos', u'govt', u'plan', u'reform', u'migrat'] [u'canadian', u'win', u'rock', u'paper', u'scissor', u'world', u'titl'] [u'crash', u'claim', u'life', u'near', u'young'] [u'carnarvon', u'jetti', u'demolish'] [u'cathi', u'freeman', u'launch', u'autobiographi'] [u'caus', u'train', u'derail', u'determin'] [u'child', u'abus', u'victim', u'critic', u'church', u'respons'] [u'child', u'detaine', u'seek', u'damag'] [u'chines', u'presid', u'talk', u'sar', u'trade'] [u'claim', u'polic', u'mistreat', u'alleg', u'rasta', u'associ'] [u'club', u'link', u'golf', u'plan', u'cours'] [u'cole', u'myer', u'propos', u'bonus'] [u'colli', u'clean', u'major', u'tidi', u'town', u'award'] [u'commiss', u'determin', u'antarct', u'catch', u'level'] [u'communiti', u'mourn', u'mayor', u'loss'] [u'confer', u'probe', u'viabil', u'hydrogen', u'power'] [u'continu', u'cover', u'alleg', u'heiner', u'affair'] [u'coria', u'win', u'basel', u'nalbandian', u'withdraw'] [u'corri', u'fli', u'home', u'pregnant', u'wife'] [u'council', u'consid', u'produc', u'store', u'plan'] [u'countri', u'swim', u'meet', u'plan', u'alburi', u'wodonga'] [u'coupl', u'lose', u'rainforest', u'log', u'battl'] [u'court', u'hear', u'marriag', u'split', u'spur', u'stab'] [u'detect', u'seek', u'extradit', u'alleg', u'kidnapp'] [u'develop', u'effort', u'convinc'] [u'dodson', u'launch', u'biographi'] [u'eagl', u'outmuscl', u'japan', u'thriller'] [u'editor', u'get', u'suspend', u'jail', u'term', u'insult'] [u'kill', u'china', u'accid'] [u'england', u'face', u'sanction', u'extra'] [u'england', u'skipper', u'call', u'stark', u'improv'] [u'eritrea', u'expect', u'slaughter', u'sheep'] [u'esper', u'perman', u'clinic', u'school', u'access'] [u'eurobodalla', u'resid', u'face', u'water', u'restrict'] [u'nakason', u'retir', u'japanes', u'polit'] [u'export', u'meat', u'trade', u'menu', u'region', u'forum'] [u'destroy', u'carpent', u'rock', u'home'] [u'firefight', u'union', u'warn', u'inadequ', u'risk'] [u'firm', u'continu', u'shore', u'reserv', u'explor'] [u'fishermen', u'seek', u'fund', u'great', u'barrier', u'reef'] [u'fisher', u'shark', u'research', u'scheme'] [u'councillor', u'sure', u'palm', u'island', u'council'] [u'yugoslav', u'armi', u'offic', u'face', u'crime'] [u'foster', u'consid', u'share', u'buyback'] [u'franc', u'adopt', u'cop', u'tactic', u'say', u'ibanez'] [u'free', u'trade', u'talk', u'resum', u'canberra'] [u'fund', u'shortfal', u'affect', u'theatr', u'show'] [u'ganguli', u'target', u'australia', u'match', u'return'] [u'germani', u'websit', u'inhabit'] [u'gladston', u'near', u'cancer', u'treatment', u'trial'] [u'godolphin', u'cool', u'mamool', u'form'] [u'govt', u'defend', u'qaeda', u'suspect', u'probe'] [u'govt', u'defend', u'disabl', u'assist', u'cut'] [u'govt', u'pledg', u'super', u'incom', u'earner'] [u'govt', u'build', u'hous', u'polic', u'offic'] [u'grain', u'farmer', u'look', u'skyward', u'rain'] [u'green', u'seek', u'inquiri', u'visit'] [u'gun', u'seiz', u'farm', u'raid'] [u'hawk', u'sydney', u'king'] [u'henri', u'cracker', u'see', u'arsenal'] [u'henri', u'spur', u'say', u'charvi'] [u'howard', u'quiet', u'memori', u'snub'] [u'hunter', u'valley', u'road', u'toll', u'increas'] [u'india', u'aveng', u'final', u'defeat'] [u'indian', u'rock', u'star', u'face', u'human', u'traffic', u'charg'] [u'indigen', u'fish', u'forum', u'focus', u'sustain'] [u'indigen', u'group', u'introduc', u'fraser', u'permit'] [u'indigen', u'leader', u'vow', u'etern', u'flame', u'alight'] [u'indonesia', u'join', u'talk', u'illeg', u'fish'] [u'industri', u'target', u'chines', u'tourist'] [u'injur', u'umaga', u'comeback', u'track'] [u'inquest', u'begin', u'murder', u'suicid'] [u'inquiri', u'consid', u'blanket', u'export'] [u'investig', u'continu', u'south', u'coast', u'accid'] [u'iraqi', u'aluminium', u'shipment', u'intercept', u'aust'] [u'ireland', u'loosen', u'australia', u'jone'] [u'island', u'pin', u'econom', u'hop', u'minist'] [u'isra', u'plan', u'settler', u'outpost', u'defi', u'road'] [u'itiner', u'death', u'rule', u'suspici', u'polic'] [u'jone', u'wad', u'extra'] [u'jubil', u'clijster', u'complet', u'quick', u'return'] [u'juventus', u'milan', u'clear', u'seri'] [u'kirsten', u'smack', u'centuri', u'tough', u'target'] [u'kobe', u'fate', u'loom', u'larg', u'season', u'open'] [u'kuerten', u'captur', u'petersburg', u'crown'] [u'labor', u'councillor', u'rais', u'hand'] [u'labor', u'blast', u'howard', u'bush', u'memori', u'visit'] [u'leav', u'shoe', u'fetish', u'leav', u'women', u'hop'] [u'lesli', u'appeal', u'wednesday'] [u'lib', u'choos', u'bendigo', u'candid'] [u'lib', u'choos', u'mcmillan', u'candid'] [u'lifetim', u'injuri', u'cost', u'billion', u'year'] [u'luca', u'height', u'spend', u'fuel', u'rod', u'shipment', u'franc'] [u'die', u'gold', u'coast', u'bike', u'accid'] [u'hospit', u'wagga', u'blaze'] [u'remain', u'hospit', u'graffiti', u'offend'] [u'remand', u'melbourn', u'murder'] [u'face', u'melbourn', u'court', u'murder', u'charg'] [u'mercuri', u'rise', u'queensland', u'west'] [u'migrat', u'court', u'case', u'face', u'greater', u'scrutini'] [u'miner', u'golden', u'opportun', u'west'] [u'minimbah', u'wast', u'decis', u'loom'] [u'minist', u'ask', u'rethink', u'north', u'west'] [u'minist', u'strand', u'second', u'ayer', u'rock'] [u'mini', u'tornado', u'tear', u'stanthorp'] [u'mortar', u'attack', u'kill', u'soldier', u'iraqi', u'prison'] [u'moscow', u'mark', u'theatr', u'hostag', u'raid'] [u'pleas', u'weekend', u'summit'] [u'say', u'govt', u'wear', u'cormo', u'sheep', u'cost'] [u'gambier', u'show', u'mix', u'respons', u'sunday', u'trade'] [u'museum', u'track', u'road', u'reopen'] [u'museum', u'honour', u'italian', u'screen', u'master', u'fellini'] [u'namibia', u'prepar', u'world', u'match', u'launceston'] [u'blast', u'follow', u'baghdad', u'hotel', u'attack'] [u'england', u'health', u'appoint', u'inverel', u'manag'] [u'polic', u'power', u'curb', u'chrome'] [u'rural', u'doctor', u'chief', u'lobbi', u'fresh', u'approach'] [u'nigerian', u'court', u'sentenc', u'briton', u'death', u'murder'] [u'nigerian', u'islam', u'leader', u'declar', u'vaccin', u'unsaf'] [u'kill', u'quak', u'china'] [u'welcom', u'home', u'australian', u'troop'] [u'north', u'coast', u'clean', u'hail', u'storm'] [u'reject', u'upper', u'hous', u'inquiri', u'hospit'] [u'educ', u'minist', u'want', u'teach', u'place'] [u'improv', u'teach', u'condit', u'mcgauran'] [u'resort', u'owner', u'improv', u'protect'] [u'centrebet', u'sell', u'sydney', u'bookmak'] [u'ohern', u'runner', u'madrid'] [u'oneil', u'defend', u'namibia', u'rout'] [u'open', u'day', u'prove', u'posit', u'grenfel', u'real', u'estat'] [u'organ', u'donor', u'urg', u'discuss', u'plan', u'relat'] [u'osullivan', u'reliev', u'narrow'] [u'pair', u'face', u'court', u'drug', u'charg'] [u'pair', u'face', u'drug', u'charg', u'toowoomba'] [u'pair', u'face', u'trial', u'arm', u'robberi'] [u'perth', u'recov', u'israel', u'protest', u'shoot'] [u'plan', u'nation', u'park', u'accompani', u'hous'] [u'polic', u'ship', u'plan', u'look', u'miss', u'pilot'] [u'polic', u'defend', u'speed', u'camera'] [u'polic', u'hunt', u'supermarket', u'arm', u'bandit'] [u'polic', u'probe', u'ralli', u'death'] [u'polic', u'brawl', u'action'] [u'poor', u'visibl', u'hamper', u'chopper', u'search'] [u'postcard', u'bandit', u'polit', u'prison', u'lawyer'] [u'postcard', u'bandit', u'polit', u'prison', u'beatti'] [u'power', u'seek', u'probe', u'defend', u'break'] [u'premier', u'urg', u'push', u'busi', u'china'] [u'produc', u'concern', u'live', u'sheep', u'trade'] [u'protea', u'battl', u'save', u'second', u'test'] [u'public', u'servant', u'mental', u'health', u'claim', u'blow'] [u'storm', u'creat', u'damag'] [u'ralli', u'industri', u'manslaught', u'law'] [u'rann', u'unmov', u'push', u'immedi', u'smoke'] [u'recreat', u'group', u'receiv', u'loan', u'repair', u'marina'] [u'relief', u'sheep', u'touch', u'eritrea'] [u'rescuer', u'search', u'trap', u'russian', u'miner'] [u'research', u'studi', u'link', u'chemotherapi'] [u'resourc', u'bank', u'drag', u'market', u'lower'] [u'reward', u'offer', u'year', u'murder', u'inform'] [u'riverland', u'chief', u'confid', u'health', u'servic', u'boost'] [u'robinson', u'plead', u'guilti', u'fraud', u'charg'] [u'royal', u'butler', u'book', u'hit', u'shelv'] [u'rugbi', u'test', u'return', u'adelaid'] [u'rural', u'doctor', u'intensifi', u'lobbi'] [u'ryan', u'take', u'public', u'reserv', u'plea', u'parliament'] [u'cabinet', u'consid', u'region', u'develop', u'board'] [u'oppn', u'hear', u'irrig', u'issu'] [u'scud', u'master', u'boost'] [u'search', u'miss', u'pilot', u'call'] [u'senat', u'debat', u'telstra', u'sale'] [u'senat', u'reconsid', u'sale', u'telstra'] [u'call', u'help', u'gold', u'coast', u'storm', u'clean'] [u'help', u'storm', u'clean'] [u'singapor', u'clarifi', u'comment', u'australia'] [u'singh', u'win', u'florida', u'ogilvi', u'ninth'] [u'soap', u'diet', u'doesnt', u'fatten'] [u'solicitor', u'preselect', u'labor', u'candid'] [u'souness', u'face', u'touchlin'] [u'southern', u'set', u'koala', u'movi'] [u'south', u'west', u'school', u'boost'] [u'stang', u'relish', u'iraq', u'challeng'] [u'storm', u'bring', u'rain', u'rocki', u'region'] [u'studio', u'hope', u'matrix', u'film', u'strike', u'blow'] [u'sugiyama', u'lift', u'linz', u'titl'] [u'survey', u'find', u'high', u'ambul', u'servic', u'satisfact'] [u'hospit', u'union', u'promot', u'smoke'] [u'west', u'coast', u'properti', u'demand'] [u'offic', u'target', u'barter'] [u'tenni', u'star', u'draper', u'mull', u'switch', u'golf'] [u'terrorist', u'screen', u'process', u'question'] [u'thousand', u'build', u'worker', u'march'] [u'tidi', u'town', u'effort', u'west', u'woman'] [u'timber', u'staff', u'donat', u'wag', u'lock', u'colleagu'] [u'traci', u'wrap', u'champ', u'championship'] [u'explos', u'central', u'baghdad', u'militari'] [u'kill', u'bali', u'polit', u'violenc'] [u'shoot', u'tavern', u'hold'] [u'unionist', u'artist', u'lobbi', u'free', u'trade', u'deal'] [u'union', u'lobbi', u'peer', u'wake', u'court', u'trial'] [u'say', u'trade', u'deal', u'wont', u'kill'] [u'util', u'speak', u'infrastructur', u'cost'] [u'vandal', u'attack', u'newli', u'refurbish', u'surf', u'club'] [u'vuuren', u'return', u'shellshock', u'namibia'] [u'venus', u'william', u'pull', u'philadelphia'] [u'govt', u'roll', u'stamp', u'duti', u'bonanza'] [u'opposit', u'label', u'calder', u'meet', u'stunt'] [u'govt', u'crack', u'mullewa', u'youth', u'woe'] [u'wallabi', u'sterner', u'test', u'gregan'] [u'water', u'alert', u'remain', u'time'] [u'winemak', u'bortoli', u'die'] [u'yulara', u'bushfir', u'control'] [u'zimbabw', u'media', u'director', u'arrest', u'paper', u'shut'] [u'zimbabw', u'polic', u'charg', u'newspap'] [u'ralli', u'broadcast'] [u'abattoir', u'open', u'prompt', u'call', u'industri', u'review'] [u'abbott', u'readi', u'deal', u'democrat', u'medicar'] [u'affirm', u'commit', u'drug', u'rehab', u'program'] [u'spray', u'toxic', u'weed'] [u'afeaki', u'tonga'] [u'call', u'indigen', u'health', u'boost'] [u'anderson', u'ring', u'kangaroo', u'chang'] [u'share', u'slide'] [u'drug', u'chief', u'launch', u'trawl'] [u'award', u'honour', u'brave', u'north', u'coast', u'effort'] [u'azerbaijan', u'court', u'confirm', u'aliyev', u'presid'] [u'balshaw', u'dismiss', u'england', u'press'] [u'bank', u'weigh', u'aussi', u'market'] [u'beckham', u'real'] [u'biki', u'acquit', u'bomb', u'murder'] [u'brisban', u'charg', u'hack'] [u'broom', u'forum', u'voic', u'tourism', u'concern'] [u'bruce', u'rock', u'win', u'wheatbelt', u'tidi', u'town', u'honour'] [u'bush', u'doctor', u'bulk', u'bill', u'concess'] [u'busi', u'time', u'hour', u'servic'] [u'cadburi', u'schwepp', u'slash', u'workforc'] [u'greater', u'inroad', u'pacif', u'highway', u'fund'] [u'canada', u'tonga', u'play', u'pride'] [u'canberra', u'warn', u'fortress', u'mental'] [u'bomb', u'kill', u'fallujah'] [u'carr', u'announc', u'drug', u'jail'] [u'chang', u'sport', u'forum'] [u'charl', u'darwin', u'studi', u'heat', u'induc', u'ill'] [u'china', u'plan', u'man', u'space', u'flight'] [u'coast', u'compani', u'award', u'fund'] [u'coff', u'firm', u'take', u'heart', u'award'] [u'commonwealth', u'pass', u'loan', u'mark'] [u'complaint', u'unansw', u'matern', u'unit', u'closur'] [u'concern', u'angler', u'confid', u'status', u'chang'] [u'confer', u'hear', u'asylum', u'seeker', u'class'] [u'consum', u'watchdog', u'warn', u'cost'] [u'contractor', u'return', u'work'] [u'contract', u'shed', u'light', u'queen', u'elizabeth', u'oval'] [u'conveyor', u'breakdown', u'blame', u'port', u'congest'] [u'costa', u'announc', u'transport', u'safeti', u'bodi'] [u'council', u'appoint', u'assessor', u'review', u'yacht', u'club'] [u'council', u'approv', u'hutton', u'childcar', u'centr'] [u'council', u'approv', u'youth', u'facil'] [u'council', u'consid', u'princ', u'highway', u'fund', u'option'] [u'council', u'fight', u'public', u'access', u'plan', u'illawarra'] [u'council', u'take', u'windfarm', u'fight', u'parliament'] [u'council', u'reconsid', u'aerodrom'] [u'court', u'dismiss', u'packer', u'libel', u'case'] [u'court', u'hear', u'robinson', u'authoris', u'sign'] [u'crayfishermen', u'face', u'test'] [u'crop', u'properti', u'reach', u'record', u'price', u'auction'] [u'crowd', u'pleas', u'japanes', u'winless', u'remind', u'ella'] [u'custom', u'reveal', u'record', u'drug', u'seizur', u'year'] [u'damag', u'storm'] [u'democrat', u'unveil', u'medicar', u'polici'] [u'detent', u'centr', u'wors', u'zone'] [u'digit', u'licenc', u'disadvantag', u'countri', u'driver'] [u'disappoint', u'karat', u'kick', u'manslaught', u'plea'] [u'owner', u'warn', u'leav', u'pet', u'car'] [u'downer', u'accus', u'decept', u'iraq', u'tube'] [u'downer', u'say', u'iraq', u'mission', u'stay'] [u'drink', u'driver', u'number', u'rise'] [u'driver', u'get', u'second', u'chanc', u'high', u'speed', u'chase'] [u'dust', u'storm', u'sweep'] [u'eagl', u'flight', u'year', u'wait'] [u'egyptian', u'twin', u'play', u'week', u'surgeri'] [] [u'england', u'turkey', u'charg', u'istanbul', u'brawl'] [u'england', u'team', u'beat', u'macqueen'] [u'give', u'ahead', u'dampier', u'port', u'dredg'] [u'eritrea', u'wont', u'sell', u'sheep', u'saudi', u'truss'] [u'export', u'enjoy', u'darwin', u'singapor', u'week'] [u'famili', u'shock', u'juri', u'decis', u'acquit', u'biki'] [u'farmer', u'hope', u'heaven', u'crop'] [u'fear', u'meter', u'expir', u'taxi', u'servic'] [u'govt', u'put', u'onus', u'bypass', u'govt'] [u'ferdinand', u'case', u'threat', u'fifa', u'council'] [u'fisheri', u'deni', u'fals', u'promis', u'claim'] [u'fish', u'licenc', u'suggest', u'incom', u'incent'] [u'flood', u'continu', u'caus', u'havoc', u'china'] [u'franc', u'bori', u'get', u'flight'] [u'freeman', u'take', u'scandal', u'person'] [u'french', u'weaken', u'team', u'face'] [u'shutdown', u'spark', u'plea', u'restrict', u'power'] [u'gerrard', u'readi', u'sign', u'anfield', u'deal'] [u'giant', u'turtl', u'wash', u'shore'] [u'glori', u'home', u'schedul'] [u'govt', u'tough', u'drive', u'shoot'] [u'govt', u'warn', u'pool', u'owner', u'avoid', u'fenc', u'fin'] [u'green', u'group', u'want', u'landhold', u'reveget', u'clear'] [u'group', u'meet', u'safe', u'place', u'plan'] [u'hail', u'spur', u'indi', u'start', u'rethink'] [u'hall', u'back', u'mamool', u'godolphin', u'drought'] [u'heal', u'name', u'spur', u'bench'] [u'henman', u'set', u'grosjean', u'reveng', u'clash'] [u'highway', u'upgrad', u'open', u'tourist', u'market'] [u'hobart', u'escap', u'cadburi', u'schwepp', u'cut'] [u'hobart', u'schoolgirl', u'win', u'visa', u'extens'] [u'hollingworth', u'media', u'advic', u'cost'] [u'household', u'keen', u'kerbsid', u'recycl'] [u'hundr', u'ralli', u'work', u'safeti', u'law'] [u'husband', u'accus', u'wife', u'slay', u'face', u'trial'] [u'icac', u'hear', u'evid', u'face', u'claim'] [u'indi', u'organis', u'consid', u'earli', u'start', u'avoid', u'rain'] [u'inquest', u'begin', u'longford', u'murder', u'suicid'] [u'ireland', u'bump', u'australia', u'rank'] [u'ireland', u'bump', u'australia', u'rugbi', u'rank'] [u'israel', u'attack', u'hezbollah', u'posit'] [u'jail', u'russian', u'millionair', u'say'] [u'japanes', u'woman', u'seek', u'asylum', u'north', u'korea'] [u'japan', u'head', u'elect', u'mode'] [u'kergunyah', u'death', u'lead', u'phone', u'repair', u'code'] [u'labor', u'promis', u'crack', u'medicar', u'team'] [u'larsson', u'celtic', u'exit'] [u'leagu', u'ratifi', u'club', u'decis'] [u'leas', u'jetti', u'face', u'rent', u'reassess'] [u'lee', u'stand', u'firm', u'telstra', u'sale'] [u'live', u'sheep', u'trade', u'assur', u'custom'] [u'lodg', u'closur', u'spark', u'age', u'care', u'fear'] [u'lucki', u'escap', u'hobart', u'councillor'] [u'lynch', u'play', u'lion'] [u'magistr', u'reserv', u'decis', u'union', u'threat', u'case'] [u'malaysia', u'ibrahim', u'aust', u'terror', u'link'] [u'die', u'road', u'accid'] [u'die', u'injuri'] [u'leav', u'power', u'fail'] [u'mayor', u'back', u'away', u'mall'] [u'mildura', u'challeng', u'capit', u'davi'] [u'mildura', u'water', u'author', u'expect', u'forc'] [u'minist', u'say', u'school', u'closur', u'concern', u'hear'] [u'throw', u'petrol', u'bomb', u'home', u'bali'] [u'monash', u'grant', u'fund', u'small', u'busi', u'studi'] [u'monti', u'name', u'lawri', u'seve', u'trophi', u'wild', u'card'] [u'fund', u'work', u'program'] [u'break', u'hill', u'mayor'] [u'public', u'comment', u'seek', u'safe', u'hous', u'plan'] [u'happi', u'williamtown', u'jet', u'approv'] [u'murder', u'investig', u'focus', u'group', u'youth'] [u'namibia', u'confid', u'beat', u'romania'] [u'minist', u'upbeat', u'calder', u'highway', u'work'] [u'govt', u'allow', u'construct', u'hydro', u'plant'] [u'opposit', u'leader', u'face', u'leadership', u'challeng'] [u'opposit', u'make', u'brash', u'decis'] [u'provid', u'massiv', u'boost', u'tome'] [u'opposit', u'call', u'senat', u'probe', u'militari'] [u'orang', u'prepar', u'influx', u'univers', u'student'] [u'organ', u'farmer', u'conduct', u'census'] [u'organis', u'bank', u'fundrais', u'target'] [u'osullivan', u'dismiss', u'rank', u'chuckl'] [u'outrag', u'prison', u'ping', u'pong', u'payout'] [u'packer', u'sue', u'paper', u'nasti', u'littl', u'articl'] [u'park', u'meter', u'anger', u'mildura', u'trader'] [u'pisnik', u'advanc', u'second', u'round', u'philadelphia'] [u'plan', u'author', u'decis', u'open'] [u'plan', u'institut', u'meet', u'destin'] [u'plan', u'question', u'weed', u'forc', u'farm', u'closur'] [u'polic', u'appeal', u'wit', u'annandal', u'murder'] [u'polic', u'apprehend', u'gambier', u'teen', u'nangwarri'] [u'polic', u'ballarat', u'counter', u'terror', u'train'] [u'polic', u'releas', u'murder'] [u'polic', u'target', u'vandal', u'spree'] [u'polic', u'summon', u'drive', u'incid'] [u'polic', u'union', u'say', u'fail', u'resign'] [u'polic', u'welcom', u'anti', u'chrome', u'power'] [u'protest', u'target', u'woolworth'] [u'public', u'help', u'seek', u'search', u'deli', u'hold'] [u'qcwa', u'confer', u'look', u'declin', u'membership'] [u'govt', u'clarifi', u'palm', u'council', u'claim'] [u'quri', u'stay', u'palestinian'] [u'rain', u'pose', u'problem', u'farmer'] [u'rebel', u'offer', u'releas', u'lose', u'citi', u'prison'] [u'refuge', u'help', u'settl'] [u'rescuer', u'frantic', u'reach', u'russian', u'miner'] [u'research', u'aim', u'smell', u'wine', u'export', u'boost'] [u'resid', u'encourag', u'particip'] [u'riverland', u'investor', u'urg', u'reject', u'wind', u'motion'] [u'road', u'plan', u'divid', u'resid'] [u'roll', u'stone', u'cancel', u'chines', u'tour'] [u'royal', u'children', u'hospit', u'get', u'emerg', u'grant'] [u'rural', u'busi', u'boost', u'tip'] [u'rylston', u'council', u'undergo', u'financi', u'shake'] [u'health', u'worri', u'measl', u'outbreak'] [u'sailor', u'fear', u'world', u'spot'] [u'sailor', u'fear', u'world', u'spot'] [u'salvo', u'welcom', u'drug', u'jail'] [u'samoa', u'catch', u'cold', u'say', u'wilkinson'] [u'sanctuari', u'call', u'fund', u'help', u'hail', u'batter'] [u'section', u'morgan', u'blanchetown', u'road', u'remain'] [u'seminar', u'demystifi', u'drought'] [u'senat', u'break', u'rank', u'telstra'] [u'senat', u'suspect', u'bird', u'parliament'] [u'volunt', u'converg', u'gold', u'coast', u'help'] [u'sheep', u'export', u'trade', u'need', u'revamp'] [u'singh', u'world', u'number'] [u'slip', u'slop', u'slap', u'lose', u'aussi', u'teen'] [u'societi', u'voic', u'fear', u'cape', u'economi'] [u'solar', u'driver', u'person', u'best'] [u'soni', u'slash', u'job', u'worldwid'] [u'south', u'africa', u'bartlett', u'put', u'club', u'countri'] [u'southern', u'inland', u'face', u'high', u'danger'] [u'south', u'west', u'game', u'inject', u'thousand', u'portland'] [u'space', u'station', u'crew', u'return', u'earth'] [u'stanhop', u'argu', u'continu', u'sydney', u'rail', u'link'] [u'stinger', u'schedul', u'revis'] [u'summit', u'spark', u'region', u'transport', u'debat'] [u'survey', u'highlight', u'weighti', u'problem'] [u'green', u'label', u'govt', u'smoke'] [u'nightclub', u'smoke', u'free'] [u'teen', u'return', u'home', u'meningococc', u'scare'] [u'terror', u'strike', u'right', u'note', u'offic'] [u'thai', u'minist', u'guilti', u'corrupt'] [u'thousand', u'homeless', u'flood', u'sweep', u'china'] [u'charg', u'polic', u'chase'] [u'kill', u'phnomn', u'penh', u'shoot'] [u'timber', u'staff', u'expect', u'return', u'work'] [u'time', u'run', u'wool', u'levi', u'vote'] [u'air', u'nation', u'worker', u'compo', u'fear'] [u'townsvill', u'troop', u'solomon'] [u'troop', u'head', u'home', u'solomon'] [u'arrest', u'starv', u'children'] [u'kill', u'injur', u'kashmir', u'blast'] [u'uranquinti', u'resid', u'question', u'propos', u'power'] [u'uruguay', u'good', u'georgia'] [u'indian', u'journalist', u'award', u'prize'] [u'undet', u'baghdad', u'blast'] [u'warn', u'saudi', u'terrorist', u'threat'] [u'say', u'budget', u'surplus', u'help'] [u'opposit', u'say', u'cancer', u'facil', u'fund'] [u'vigneron', u'optimist', u'despit', u'weather'] [u'cancer', u'foundat', u'back', u'plan', u'treatment'] [u'council', u'eye', u'condom', u'tree', u'plan'] [u'wagga', u'wagga', u'risk', u'norwalk', u'virus'] [u'walcha', u'council', u'want', u'author', u'assess', u'wind', u'farm'] [u'wall', u'hand', u'earli', u'gain'] [u'warfar', u'confer', u'bound', u'media'] [u'weather', u'delay', u'construct', u'perth', u'glori', u'stadium'] [u'west', u'bank', u'settler', u'turn', u'pig', u'protect'] [u'whyalla', u'airlin', u'crash', u'report', u'tabl'] [u'wild', u'wind', u'power', u'adelaid'] [u'wind', u'eas', u'california', u'burn'] [u'wollongong', u'prepar', u'world', u'match'] [u'woodward', u'admit', u'error', u'blunder'] [u'work', u'death', u'spark', u'ralli', u'protect'] [u'zimbabw', u'bullish', u'ahead', u'west', u'indi', u'seri'] [u'zimbabw', u'envoy', u'deni', u'report', u'mugab'] [u'detain', u'latest', u'immigr', u'raid'] [u'seek', u'assur', u'polic', u'number'] [u'forc', u'fight', u'flame', u'near', u'newcastl'] [u'alburi', u'firm', u'receiv', u'henti', u'health', u'tender'] [u'alleg', u'boss', u'face', u'court', u'jakarta'] [u'anderson', u'will', u'discuss', u'highway', u'agreement'] [u'angri', u'resid', u'band', u'protest', u'toll'] [u'record', u'strong', u'climb'] [u'australia', u'crush', u'kiwi', u'rout'] [u'australia', u'crush', u'zealand'] [u'australia', u'edg', u'england', u'team'] [u'australian', u'research', u'east', u'timor', u'massiv'] [u'award', u'honour', u'ulladulla', u'rescuer'] [u'ballarat', u'polic', u'request', u'post', u'revers'] [u'ban', u'cult', u'movi', u'final', u'hit', u'singapor', u'screen'] [u'bendigo', u'bomber', u'welcom', u'field', u'light'] [u'benefit', u'flow', u'sarina', u'council', u'water', u'plan'] [u'bogong', u'moth', u'suspect', u'parliament', u'bird', u'death'] [u'british', u'actor', u'jude', u'wife', u'divorc'] [u'broom', u'employ', u'strategi', u'wander', u'youth'] [u'bushfir', u'threaten', u'gold', u'coast', u'home'] [u'bush', u'host', u'ramadan', u'dinner', u'washington'] [u'busi', u'disput', u'piraci', u'offici'] [u'greater', u'marron', u'protect'] [u'chang', u'dealer', u'win', u'case'] [u'canada', u'mar', u'charron', u'injuri'] [u'maker', u'tell', u'modernis'] [u'casterton', u'lobbi', u'build', u'inspector'] [u'celebr', u'citizen', u'flock', u'join', u'blacklist'] [u'central', u'farmer', u'celebr', u'averag'] [u'china', u'hail', u'visit', u'success'] [u'civilian', u'bush', u'visit', u'secur'] [u'clijster', u'junior', u'answer', u'belgium'] [u'coal', u'disast', u'china', u'kill'] [u'cole', u'myer', u'yield', u'sharehold', u'bonus'] [u'comment', u'seek', u'bendigo', u'orphang', u'redevelop'] [u'commission', u'direct', u'robinson', u'probe', u'offic'] [u'communiti', u'farewel', u'tare', u'mayor'] [u'compani', u'investig', u'sandalwood', u'prospect'] [u'compani', u'seek', u'miner', u'break', u'hill', u'dump'] [u'convict', u'kidnapp', u'lose', u'appeal'] [u'coron', u'consid', u'longford', u'murder', u'suicid', u'evid'] [u'council', u'chang', u'relat', u'sack'] [u'councillor', u'unhappi', u'leak', u'complaint'] [u'council', u'stand', u'firm', u'cliff', u'develop'] [u'court', u'hear', u'evid', u'wife', u'slay'] [u'court', u'hear', u'snowtown', u'victim', u'statement'] [u'crean', u'warn', u'troop', u'iraq'] [u'crew', u'brace', u'bushfir', u'battl', u'gold', u'coast'] [u'crime', u'watchdog', u'prais', u'hack', u'charg'] [u'crocodil', u'hunt', u'despit', u'sink', u'score'] [u'cult', u'member', u'sentenc', u'death', u'tokyo', u'subway'] [u'custom', u'issu', u'christma', u'import', u'warn'] [u'death', u'toll', u'rise', u'california', u'fire'] [u'defeat', u'georgia', u'grow', u'world'] [u'democrat', u'confid', u'telstra', u'defeat'] [u'democrat', u'oppos', u'telstra', u'sale'] [u'deport', u'disrupt', u'terror', u'cell', u'feder', u'polic'] [u'doctor', u'disappoint', u'labor', u'bulk', u'bill', u'plan'] [u'downer', u'defend', u'franc', u'intellig', u'share'] [u'drought', u'keep', u'honey', u'price', u'high'] [u'zone', u'adelaid', u'prove', u'effect'] [u'dust', u'settl', u'england', u'region'] [u'dust', u'settl', u'north', u'coast'] [u'dust', u'storm', u'leav', u'last', u'impress', u'western'] [u'miner', u'rescu', u'russia'] [u'emerg', u'servic', u'scale', u'yulara', u'oper'] [u'employ', u'group', u'over', u'alarmist'] [u'england', u'prepar', u'uruguay', u'clash'] [u'england', u'sock', u'doubl', u'misconduct', u'charg'] [u'england', u'wait', u'judgement', u'fiasco'] [u'timor', u'open', u'memori', u'aust', u'journalist'] [u'famili', u'push', u'tougher', u'law', u'murder'] [u'famili', u'welcom', u'life', u'sentenc', u'murder'] [u'feder', u'polic', u'rethink', u'secur', u'uniform'] [u'govt', u'ask', u'explain'] [u'fin', u'shale', u'plant', u'dust'] [u'firefight', u'braveri', u'honour'] [u'fire', u'forc', u'postpon', u'indi', u'final'] [u'scar', u'ferrero', u'roddick', u'pari'] [u'fish', u'group', u'seek', u'angl', u'pearl', u'farm', u'plan'] [u'footbal', u'academi', u'reject', u'educ', u'critic'] [u'forest', u'group', u'question', u'polici', u'report'] [u'minist', u'front', u'icac', u'hear'] [u'mask', u'barman', u'appeal', u'sack'] [u'gatton', u'bypass', u'speed', u'remain'] [u'giffin', u'return', u'strength', u'wallabi'] [u'global', u'warm', u'put', u'tropic', u'anim', u'risk'] [u'green', u'group', u'want', u'power', u'station', u'plan'] [u'green', u'demand', u'apolog', u'nazi', u'label'] [u'green', u'push', u'govt', u'launch', u'corrupt'] [u'gun', u'surrend', u'gambier'] [u'harrigan', u'blow', u'time', u'refere', u'career'] [u'hib', u'stay', u'easter', u'road'] [u'highland', u'hero', u'receiv', u'braveri', u'award'] [u'high', u'wind', u'leav', u'trail', u'destruct', u'break'] [u'hobart', u'archbishop', u'refus', u'quit', u'abus', u'case'] [u'hospit', u'staff', u'strike', u'disput'] [u'houllier', u'say', u'owen', u'stay', u'anfield'] [u'hous', u'boom', u'boost', u'bank', u'altern'] [u'hundr', u'worker', u'clean', u'storm', u'debri'] [u'hussain', u'clark', u'salvag', u'england', u'inning'] [u'independ', u'block', u'telstra', u'sale'] [u'industri', u'unveil', u'plan', u'hous', u'price'] [u'inquiri', u'continu', u'wagga', u'wagga', u'death'] [u'iraqi', u'buri', u'bomb', u'victim', u'group', u'boost'] [u'isra', u'processor', u'comput', u'speed', u'light'] [u'job', u'blundston', u'compani', u'afloat'] [u'jone', u'fool', u'smile', u'irish'] [u'judg', u'see', u'violenc', u'women'] [u'kempsey', u'stadium', u'plan', u'chang'] [u'kingston', u'council', u'go', u'local', u'vote', u'skate'] [u'kiwi', u'mauger', u'debut', u'wale'] [u'landown', u'ask', u'season', u'prepar'] [u'lawyer', u'welcom', u'girl', u'deport', u'delay'] [u'lesli', u'week'] [u'incom', u'hous', u'plan', u'receiv', u'fund'] [u'madrid', u'look', u'spici', u'beckham'] [u'mahathir', u'unconcern', u'cut'] [u'accus', u'forg', u'bail', u'document'] [u'manag', u'jail', u'gambl', u'bank', u'money'] [u'court', u'drug', u'charg'] [u'leed', u'suffer', u'arsenal', u'edg', u'rotherham'] [u'market', u'rise', u'rate', u'hold'] [u'massa', u'sign', u'year', u'contract', u'sauber'] [u'mayn', u'consid', u'pharmaci', u'sale'] [u'mayor', u'air', u'stamp', u'duti', u'properti', u'concern'] [u'mayor', u'happi', u'polic', u'power', u'boost'] [u'melbourn', u'hope', u'refus', u'gallop'] [u'melbourn', u'face', u'drug', u'charg', u'sydney'] [u'rescu', u'group', u'discuss', u'staff'] [u'minist', u'back', u'aborigin', u'health', u'bodi'] [u'minist', u'peddl', u'stage', u'bikeway'] [u'rain', u'need', u'eas', u'threat'] [u'gambier', u'minist', u'disappoint', u'drug', u'cours'] [u'murder', u'trial', u'year', u'abandon'] [u'murder', u'trial', u'hear', u'forens', u'detail'] [u'nalbandian', u'pull', u'throw', u'scud', u'lifelin'] [u'narromin', u'polic', u'receiv', u'braveri', u'award'] [u'nation', u'trust', u'member', u'vote'] [u'facil', u'household', u'hazard', u'wast'] [u'steroid', u'illeg', u'danger'] [u'parol', u'snowtown', u'killer'] [u'north', u'shire', u'introduc', u'wild', u'bounti'] [u'drug', u'jail', u'fail', u'opposit'] [u'ferri', u'cost', u'job', u'oppn'] [u'govt', u'order', u'stop', u'work', u'theatr'] [u'parliament', u'elect', u'replac'] [u'prais', u'indigen', u'court'] [u'put', u'water', u'share', u'plan', u'hold'] [u'resid', u'complain'] [u'home', u'cultur', u'vultur'] [u'musician', u'produc', u'hygien'] [u'offer', u'onlin', u'degre'] [u'urg', u'boost', u'china', u'tourist', u'number'] [u'lift', u'despit', u'opposit'] [u'opposit', u'sceptic', u'road', u'minist', u'bendigo'] [u'pakistan', u'hold', u'south', u'africa', u'seri'] [u'palestinian', u'kill', u'buffer', u'zone'] [u'diddi', u'face', u'sweatshop', u'accus'] [u'petrol', u'car', u'head', u'scrapheap'] [u'pirat', u'drop', u'injur', u'rigbi'] [u'unimpress', u'green', u'nazi', u'comparison'] [u'polic', u'charg', u'drug', u'raid'] [u'polic', u'probe', u'norseman', u'bodi'] [u'port', u'corpor', u'consid', u'signal', u'station', u'option'] [u'portland', u'ocean', u'steel', u'consid', u'slipway', u'upgrad'] [u'post', u'bungl', u'delay', u'infring', u'fin'] [u'pressur', u'beat', u'australia', u'fleme'] [u'princ', u'plan', u'meet', u'butler', u'diana', u'book'] [u'queensland', u'plan', u'start', u'state', u'camel', u'industri'] [u'queensland', u'scientist', u'sting', u'broom'] [u'rabbi', u'approv', u'west', u'bank', u'patrol', u'pig'] [u'tape', u'increas', u'small', u'busi', u'cost', u'survey'] [u'remot', u'town', u'face', u'water', u'crisi'] [u'renmark', u'lift', u'irrig', u'restrict'] [u'research', u'probe', u'dugong', u'movement'] [u'research', u'show', u'doctor', u'shortag', u'worsen'] [u'riverland', u'wine', u'investor', u'vote', u'fund', u'wind'] [u'robinson', u'week', u'wait', u'trial', u'decis'] [u'whyalla', u'report', u'caus', u'pain'] [u'rudi', u'chanc', u'world', u'cup', u'doubl'] [u'rural', u'communiti', u'offic', u'appoint', u'town'] [u'rusti', u'kangaroo', u'defeat', u'england'] [u'satellit', u'technolog', u'reveal', u'dugong'] [u'schole', u'injuri', u'blow', u'unit'] [u'scot', u'chang', u'fiji', u'decid'] [u'second', u'kashmir', u'grenad', u'attack', u'wound'] [u'senat', u'probe', u'claim', u'china', u'push', u'exclud'] [u'serco', u'driver', u'threaten', u'strike'] [u'shellharbour', u'council', u'reject', u'hous', u'plan'] [u'shire', u'criticis', u'power', u'plan', u'think'] [u'skipton', u'shed', u'get', u'green', u'light', u'process', u'eel'] [u'smart', u'card', u'dumb', u'idea', u'atsic', u'western', u'commission'] [u'solar', u'flare', u'disrupt', u'satellit', u'communic'] [u'speaker', u'clear', u'public', u'galleri'] [u'springbok', u'kick', u'koen', u'touch', u'samoa', u'decid'] [u'springborg', u'reflect', u'sheldon', u'absenc'] [u'sting', u'tail', u'owner', u'escap', u'scorpion'] [u'storm', u'damag', u'spark', u'water', u'ban'] [u'storm', u'leav', u'trail', u'damag', u'southern'] [u'straeuli', u'hop', u'road', u'bring', u'world', u'high'] [u'strong', u'dollar', u'hit', u'bhps', u'line'] [u'hurl', u'huge', u'magnet', u'cloud', u'earth'] [u'suspens', u'stymi', u'bickley', u'swansong'] [u'sydney', u'ferri', u'state', u'corpor'] [u'talli', u'pay', u'tribut', u'harrigan', u'hang'] [u'tare', u'compani', u'retrench', u'staff'] [u'polic', u'face', u'secret', u'rbts'] [u'illeg', u'danger', u'regul', u'warn'] [u'civilian', u'kill', u'iraqi', u'attack'] [u'tidi', u'marbl', u'prove', u'competit'] [u'toad', u'dispos', u'perplex', u'darwin', u'council'] [u'harrigan', u'call', u'quit'] [u'tough', u'tour', u'teach', u'protea', u'need', u'spin', u'smith'] [u'troop', u'return', u'townsvill', u'solomon'] [u'oper', u'kill', u'afghanistan'] [u'group', u'share', u'bundaberg'] [u'lawyer', u'clear', u'guantanamo', u'prison'] [u'uranquinti', u'resid', u'discuss', u'power', u'impact'] [u'uruguay', u'good', u'georgia'] [u'democrat', u'doubt', u'bush', u'credibl', u'iraq'] [u'rat', u'remain', u'hold'] [u'jail', u'qaeda', u'role'] [u'propos', u'thaw', u'relat', u'iran'] [u'trial', u'tasmanian', u'sportsman', u'postpon'] [u'troop', u'polic', u'attack', u'iraq'] [u'vandal', u'threaten', u'public', u'access'] [u'govt', u'blast', u'workcov', u'cost', u'blowout'] [u'govt', u'launch', u'court'] [u'govt', u'plan', u'expand', u'anzac', u'commemor'] [u'vietnam', u'vet', u'tell', u'counsel', u'visit'] [u'vigneron', u'say', u'wine', u'stay', u'despit', u'lehmann', u'sale'] [u'fast', u'track', u'kununurra', u'land', u'develop'] [u'wagga', u'wagga', u'mayor', u'deni', u'wrongdo'] [u'action', u'health', u'reform'] [u'oppn', u'highlight', u'south', u'west', u'hospit', u'woe'] [u'polic', u'defend', u'biki', u'investig'] [u'waugh', u'eye', u'ton', u'year'] [u'weari', u'firefight', u'battl', u'california'] [u'weather', u'cool', u'western', u'queensland'] [u'beat', u'australia', u'miandad'] [u'summer', u'loom', u'central'] [u'wollongong', u'prepar', u'world', u'fever'] [u'woman', u'season', u'irukandji', u'victim'] [u'woodward', u'ultimatum', u'dallaglio'] [u'abattoir', u'worker', u'owe', u'money'] [u'abbott', u'readi', u'bargain', u'medicar'] [u'aborigin', u'health', u'bodi', u'worri', u'plan'] [u'afghanistan', u'fail', u'narco', u'state'] [u'alic', u'firefight', u'alert'] [u'alleg', u'bali', u'bomb', u'builder', u'face', u'court'] [u'anderson', u'shrug', u'close', u'shave', u'england'] [u'argentin', u'pair', u'suspend', u'cite', u'ireland'] [u'fair', u'open', u'cologn'] [u'asio', u'raid', u'spark', u'complaint'] [u'scammer', u'jail', u'year'] [u'aussi', u'major', u'leagu', u'pitcher', u'doubt', u'olymp'] [u'avellino', u'abandon', u'adelaid', u'plan'] [u'bacon', u'dismiss', u'furor', u'governor', u'upgrad'] [u'barossa', u'polic', u'seek', u'culprit'] [u'baxter', u'detaine', u'hospit', u'give', u'birth'] [u'berri', u'council', u'receiv', u'backpack', u'hostel', u'object'] [u'bomb', u'hoax', u'prove', u'cost', u'busi'] [u'brack', u'visit', u'east', u'timores', u'school'] [u'brick', u'stock', u'construct', u'boom'] [u'broom', u'port', u'set', u'volum', u'record', u'ship'] [u'bundaberg', u'school', u'develop', u'technolog', u'syllabus'] [u'bushrang', u'lose', u'berri', u'battl', u'bull'] [u'servic', u'sale', u'jeopardis', u'cobar', u'rugbi', u'leagu'] [u'cabbi', u'rank', u'industri', u'review', u'poor'] [u'cabinet', u'debat', u'tank'] [u'centr', u'boost', u'region', u'job'] [u'action', u'weed'] [u'clear', u'definit', u'indigen', u'customari'] [u'rethink', u'post', u'offic', u'closur', u'plan'] [u'releas', u'report', u'kidnap', u'russia'] [u'caucau', u'raulini', u'name', u'clash', u'scotland'] [u'chariot', u'gold', u'mine', u'open', u'tennant', u'creek'] [u'charron', u'bow', u'canada', u'trounc', u'tonga'] [u'china', u'north', u'korea', u'agre', u'resum', u'nuclear', u'talk'] [u'church', u'concern', u'iraq', u'famili', u'return', u'home'] [u'coff', u'harbour', u'urg', u'pacif', u'highway', u'rethink'] [u'cole', u'extend', u'discount', u'petrol', u'scheme'] [u'connect', u'credit', u'union', u'demutualis', u'reject'] [u'conneri', u'settl', u'lawsuit', u'produc'] [u'consult', u'clear', u'adelaid', u'lawyer', u'intent'] [u'controversi', u'iraq', u'contract', u'fill', u'halliburton'] [u'coron', u'investig', u'tourist', u'disappear'] [u'costello', u'keep', u'budget', u'plan', u'close', u'chest'] [u'council', u'approv', u'cocoanut', u'point', u'develop'] [u'council', u'deni', u'pollut', u'town', u'aquif'] [u'council', u'label', u'residenti', u'charg', u'anti'] [u'councillor', u'feedback', u'plan'] [u'council', u'continu', u'drought', u'fight'] [u'council', u'upbeat', u'jail', u'progress'] [u'council', u'want', u'higher', u'status', u'highway'] [u'courthous', u'group', u'consid', u'green', u'measur'] [u'court', u'decid', u'virgin', u'threat', u'trial'] [u'craft', u'enthusiast', u'head', u'delorain'] [u'townsvill', u'staff'] [u'delay', u'crisi', u'centr', u'decis', u'bring', u'mix'] [u'deportivo', u'lose', u'lead', u'spain'] [u'detaine', u'receiv', u'high', u'school', u'award'] [u'develop', u'confid', u'court', u'decis'] [u'drought', u'dri', u'chees', u'factori', u'profit'] [u'dusti', u'town', u'seek', u'imag'] [u'ear', u'pull', u'world', u'record'] [u'embattl', u'scotland'] [u'england', u'dock', u'player', u'fiasco'] [u'england', u'bangladesh', u'collaps'] [u'england', u'extra', u'fiasco'] [u'famili', u'agenc', u'take', u'green', u'action'] [u'film', u'produc', u'admit', u'anim', u'smuggl'] [u'final', u'chanc', u'franc', u'forget'] [u'financi', u'woe', u'health', u'restructur'] [u'brigad', u'control', u'sydney', u'factori', u'blaze'] [u'fireman', u'die', u'california', u'blaze'] [u'crash', u'kathmandu'] [u'indian', u'groom', u'come', u'bride'] [u'tiwi', u'director', u'deni', u'financi'] [u'freight', u'australia', u'deni', u'hold', u'accus'] [u'friend', u'stand', u'convict', u'karratha', u'bank', u'manag'] [u'frost', u'take', u'toll', u'grain', u'crop'] [u'fund', u'fight', u'wind', u'attempt'] [u'gazza', u'edg', u'closer', u'flight', u'comeback'] [u'gippsland', u'deleg', u'take', u'windfarm', u'issu'] [u'girdler', u'start', u'wale'] [u'gold', u'coast', u'storm', u'damag', u'continu', u'rise'] [u'goondiwindi', u'rugbi', u'club', u'auction', u'hous', u'fund'] [u'govt', u'fund', u'kilcoy', u'abattoir', u'upgrad'] [u'govt', u'vow', u'bring', u'telstra'] [u'shortag', u'boost', u'emerg', u'dept', u'demand'] [u'granni', u'snatcher', u'sentenc', u'melbourn'] [u'grass', u'threaten', u'proserpin'] [u'green', u'councillor', u'call', u'open', u'free', u'trade', u'process'] [u'gross', u'put', u'woe', u'stand'] [u'group', u'offer', u'oyster', u'advic', u'govt'] [u'highland', u'despit', u'coastal', u'rain'] [u'honour', u'babe', u'scratch'] [u'prais', u'australian', u'economi'] [u'indigen', u'agreement', u'clear', u'town', u'growth'] [u'indonesia', u'arrest', u'hotel', u'bomb'] [u'industri', u'commiss', u'hear', u'hospit', u'unfair'] [u'ireland', u'name', u'strong', u'wallabi', u'clash'] [u'irish', u'fear', u'refere', u'ahead', u'wallabi', u'clash'] [u'israel', u'grill', u'polic', u'corrupt', u'probe'] [u'italian', u'tenor', u'franco', u'corelli', u'dead'] [u'girl', u'beatl', u'paul', u'mccartney'] [u'karratha', u'name', u'power', u'corp', u'headquart'] [u'crash', u'chopper'] [u'king', u'theatr', u'plan', u'display'] [u'kosciuszko', u'slow', u'recov', u'bushfir'] [u'latrob', u'host', u'nation', u'rescu', u'competit'] [u'lib', u'expect', u'fight', u'bendigo'] [u'carb', u'diet', u'baker', u'nightmar'] [u'mackay', u'whitsundi', u'receiv', u'drought', u'support'] [u'mahathir', u'offer', u'bang'] [u'mahathir', u'prais', u'cabinet', u'meet'] [u'die', u'highway', u'crash'] [u'fight', u'young', u'attack'] [u'guilti', u'drown', u'children'] [u'kill', u'stab', u'attack', u'melbourn'] [u'shoot', u'dead', u'punchbowl', u'petrol', u'station'] [u'marriag', u'shatter', u'thai', u'beauti', u'queen', u'dream'] [u'mayor', u'lament', u'week', u'gold', u'coast'] [u'mayor', u'push', u'local', u'timber', u'mill'] [u'meet', u'decid', u'nyngan', u'hospit', u'site'] [u'meet', u'consid', u'telstra', u'cut', u'impact'] [u'melbourn', u'polic', u'brace', u'event'] [u'milk', u'produc', u'industri', u'regul'] [u'mincor', u'consid', u'kambalda', u'expans'] [u'miner', u'sand', u'project', u'push', u'lure'] [u'minist', u'back', u'fish', u'bodi'] [u'minist', u'flag', u'child', u'care', u'place'] [u'minist', u'urg', u'inspect', u'school', u'site'] [u'mitchel', u'hail', u'rokocoko', u'return'] [u'mix', u'earn', u'stay', u'market'] [u'mother', u'welcom', u'inquiri', u'cadet', u'suicid'] [u'question', u'brigalow', u'belt', u'appoint'] [u'suspend', u'attack', u'speaker'] [u'gambier', u'health', u'fail', u'secur', u'surgeon', u'contract'] [u'guid', u'encourag', u'rural', u'doctor', u'post'] [u'law', u'crack', u'abalon', u'poacher'] [u'nhulunbuy', u'jail', u'lethal', u'spear', u'attack'] [u'korean', u'patrol', u'boat', u'cross', u'maritim', u'border'] [u'norman', u'add', u'classic', u'line'] [u'rule', u'bite', u'compo', u'case'] [u'ignor', u'mason', u'drink', u'comment'] [u'govt', u'launch', u'oasi', u'probe'] [u'hous', u'debat', u'euthanasia'] [u'south', u'coast', u'council', u'consid', u'super'] [u'warn', u'mozzi', u'plagu'] [u'nurs', u'home', u'plan', u'bring', u'mix', u'reaction'] [u'osullivan', u'prais', u'argentina', u'prop'] [u'pakistan', u'welcom', u'indian', u'peac', u'initi'] [u'parliament', u'tell', u'nation', u'park', u'concern'] [u'pirat', u'notch', u'victori'] [u'plaqu', u'recognis', u'down', u'raaf', u'plan'] [u'back', u'french', u'terror', u'suspect'] [u'fish', u'disput', u'snare', u'australian', u'trawlermen'] [u'reveal', u'role', u'fishermen', u'deport'] [u'policeman', u'face', u'court', u'assault', u'charg'] [u'polic', u'warn', u'school', u'leaver', u'care'] [u'pont', u'pay', u'tribut', u'stand', u'bowler'] [u'psychic', u'unabl', u'help', u'polic', u'miss'] [u'public', u'support', u'airstrip', u'light', u'plan'] [u'auditor', u'review', u'govt', u'advertis'] [u'oppn', u'condemn', u'minist', u'health', u'disclosur'] [u'quri', u'hold', u'ceasefir', u'talk', u'hama'] [u'record', u'year', u'coal', u'industri'] [u'refere', u'direct', u'keep', u'team', u'jone'] [u'renmark', u'crack', u'illeg', u'vine'] [u'report', u'find', u'factor', u'child', u'death'] [u'report', u'highlight', u'world', u'heritag', u'area', u'threat'] [u'resourc', u'stock', u'drive', u'higher'] [u'rivkin', u'richo', u'centr', u'asic', u'inquiri'] [u'roma', u'host', u'chines', u'deleg', u'invest', u'tour'] [u'romania', u'launceston'] [u'roo', u'reject', u'road', u'reflector', u'report'] [u'rossi', u'bid', u'record', u'equal', u'spain'] [u'rubin', u'petrova', u'philadelphia'] [u'rugbi', u'world', u'excit', u'hit', u'launceston'] [u'sack', u'pilot', u'take', u'case'] [u'consid', u'snowtown', u'famili', u'plea'] [u'scienc', u'help', u'improv', u'crop'] [u'scotland', u'lesli'] [u'scot', u'engin', u'room', u'fiji'] [u'scud', u'misfir', u'pari'] [u'secur', u'breach', u'delay', u'flight', u'sydney'] [u'senat', u'committe', u'drub', u'medicar', u'plan'] [u'senat', u'consid', u'kyoto'] [u'simpson', u'call', u'bluff', u'news'] [u'singapor', u'allow', u'limit', u'form', u'clone'] [u'singh', u'look', u'build', u'money', u'lead', u'florida'] [u'charg', u'child', u'porn', u'bust'] [u'smith', u'sorri', u'throw', u'bottl', u'leed'] [u'socceroo', u'neill', u'send'] [u'south', u'african', u'crash', u'kill', u'injur'] [u'south', u'east', u'council', u'differ', u'water', u'stand'] [u'strong', u'dollar', u'boost', u'trade', u'deficit'] [u'suncorp', u'investor', u'offer', u'rosi', u'outlook'] [u'survey', u'show', u'indigen', u'peopl', u'earn', u'rent'] [u'swim', u'bodi', u'latest', u'test'] [u'sydney', u'arrest', u'nigerian', u'email', u'scam'] [u'sydney', u'convict', u'tripl', u'child', u'murder'] [u'busi', u'pressur', u'govt', u'better', u'incent'] [u'privatis', u'condemn', u'profit', u'boom'] [u'teacher', u'accus', u'stand', u'student', u'face'] [u'teen', u'accus', u'murder', u'sentenc', u'charg'] [u'teenag', u'hospit', u'polic', u'chase'] [u'teen', u'face', u'charg', u'stab'] [u'telstra', u'sale', u'vote'] [u'kill', u'kashmir', u'violenc'] [u'toowoomba', u'runner', u'battl', u'rain', u'sleet', u'snow'] [u'townsvill', u'croc', u'giant', u'size'] [u'townsvill', u'troop', u'standbi', u'pacif', u'return'] [u'chang', u'aussi', u'rule'] [u'week', u'wait', u'robinson', u'fraud', u'charg'] [u'studi', u'show', u'arctic', u'thin'] [u'union', u'kick', u'blundston', u'give', u'worker', u'boot'] [u'union', u'say', u'siemen', u'discrimin'] [u'union', u'prosecut', u'fletcher', u'jone', u'redund'] [u'unit', u'nation', u'pull', u'staff', u'iraq', u'report'] [u'uruguay', u'injuri', u'crisi', u'ahead', u'england', u'clash'] [u'archaeologist', u'help', u'reclaim', u'steal', u'maya', u'altar'] [u'court', u'find', u'reagan', u'offici', u'lie'] [u'senat', u'deadlin', u'iraq', u'probe'] [u'vuuren', u'make', u'histori', u'defeat'] [u'ponder', u'killer', u'releas'] [u'govt', u'defend', u'speed', u'camera', u'bonus'] [u'govt', u'deni', u'claim', u'fast', u'rail', u'budget', u'blow'] [u'victorian', u'polic', u'test', u'driver', u'drug'] [u'vieira', u'frustrat', u'latest', u'setback'] [u'vietnames', u'mobster', u'lose', u'death', u'sentenc', u'appeal'] [u'villeneuv', u'seek', u'mclaren', u'test', u'role'] [u'visitor', u'number', u'nation', u'museum'] [u'claim', u'support', u'refund'] [u'wagga', u'crash', u'victim', u'undergo', u'surgeri'] [u'wallabi', u'wari', u'odriscol', u'jone'] [u'wanganeen', u'play', u'career', u'port'] [u'want', u'iraqi', u'general', u'attack'] [u'permit', u'embryo', u'screen'] [u'probe', u'rais', u'timber', u'health', u'risk'] [u'waterfal', u'train', u'crash', u'report', u'delay'] [u'western', u'region', u'receiv', u'interim', u'assist'] [u'westpac', u'deposit', u'profit'] [u'readi', u'stage', u'world', u'say', u'windi'] [u'wind', u'expect', u'bushfir'] [u'woman', u'attack', u'byron', u'beach'] [u'woman', u'convict', u'centrelink', u'scam'] [u'anniversari', u'charg', u'lighthorsemen'] [u'auction', u'adelaid', u'licenc'] [u'seek', u'view', u'taxi', u'fare'] [u'lift', u'look', u'shop', u'centr'] [u'agforc', u'put', u'dampen', u'season', u'hop'] [u'agreement', u'promis', u'greater', u'mine', u'indigen'] [u'airlin', u'competit', u'offer', u'hunter', u'boost'] [u'traffic', u'control', u'discuss', u'worri'] [u'alleg', u'child', u'pornograph', u'releas', u'bail'] [u'alpin', u'road', u'excis', u'anger', u'environment', u'group'] [u'anger', u'sentenc', u'teen', u'killer'] [u'arsenal', u'land', u'heavi', u'fine', u'player', u'ban'] [u'asic', u'launch', u'offici', u'rivkin', u'probe'] [u'atletico', u'sweep', u'sociedad'] [u'afi', u'gettin', u'squar'] [u'auspin', u'timber', u'sale', u'suffer'] [u'aussi', u'tour', u'lanka', u'februari'] [u'austeel', u'get', u'permiss', u'cape', u'preston', u'iron'] [u'australia', u'storm', u'home', u'rule', u'seri'] [u'bank', u'caus', u'slight', u'slide'] [u'bemax', u'merger', u'hasten', u'pooncari', u'project'] [u'berlusconi', u'return', u'crooner', u'root'] [u'best', u'come', u'challeng', u'gold', u'say'] [u'local', u'timber', u'fail'] [u'bosnian', u'court', u'spread', u'crime', u'load'] [u'brack', u'gusmao', u'wreath', u'balibo', u'memori'] [u'break', u'water', u'restrict', u'draw', u'fine'] [u'british', u'cruis', u'ship', u'stomach', u'head'] [u'bunburi', u'nurs', u'protest', u'budget', u'cut'] [u'bushrang', u'crush', u'bull', u'gabba'] [u'businessman', u'defend', u'tattersal'] [u'carr', u'vow', u'tame', u'crime', u'gang'] [u'centrelink', u'fraudster', u'face', u'court'] [u'charg', u'lay', u'crackdown', u'rock', u'thrower'] [u'coff', u'harbour', u'resid', u'tell', u'garden', u'tap'] [u'complementari', u'health', u'sector', u'ask', u'govt', u'support'] [u'cormo', u'sheep', u'fulli', u'unload'] [u'council', u'accept', u'civic', u'centr', u'tender'] [u'council', u'concern', u'resourc', u'manag'] [u'council', u'face', u'mudge', u'abattoir', u'debt', u'repay'] [u'council', u'take', u'action', u'close', u'unauthoris'] [u'court', u'case', u'test', u'legal', u'children'] [u'court', u'deni', u'request', u'offend'] [u'court', u'hear', u'alan', u'jone', u'alia', u'email', u'scam'] [u'court', u'jail', u'prosecutor', u'appeal'] [u'credit', u'union', u'warn', u'futur', u'demutualis'] [u'croc', u'unabl', u'stop', u'king'] [u'csiro', u'launch', u'energi', u'research', u'centr'] [u'currumbin', u'sanctuari', u'rethink', u'anim', u'hospit', u'plan'] [u'death', u'rat', u'higher', u'region', u'report'] [u'death', u'toll', u'rise', u'california', u'fire'] [u'detain', u'teen', u'claim', u'school', u'punish'] [u'develop', u'summon', u'alleg', u'role', u'tree'] [u'doctor', u'gene', u'therapi', u'research', u'earn', u'medal'] [u'earthquak', u'hit', u'northern', u'japan'] [u'east', u'timor', u'ceremoni', u'hold', u'slay', u'journalist'] [u'neighbour', u'give', u'evid', u'murder', u'trial'] [u'father', u'miss', u'german', u'tourist', u'tell', u'trust'] [u'field', u'day', u'drag', u'strip', u'deal', u'council', u'say'] [u'fifa', u'decis', u'disast', u'barthez'] [u'fifa', u'rule', u'barthez', u'marseill'] [u'firefight', u'monitor', u'hinterland', u'blaze'] [u'servic', u'welcom', u'spot', u'fin'] [u'candid', u'step', u'conserv'] [u'fishermen', u'detain', u'northern', u'australia'] [u'flanneri', u'focus', u'oldest', u'fossil'] [u'free', u'trade', u'negoti', u'continu'] [u'fulham', u'look', u'continu', u'good', u'form'] [u'fund', u'explor', u'tourism', u'feasibl'] [u'gaze', u'spur', u'heal'] [u'govt', u'investig', u'fish', u'disput'] [u'green', u'fear', u'free', u'trade', u'ambush'] [u'group', u'lament', u'delay', u'drought', u'declar'] [u'gunner', u'pile', u'agoni', u'leed'] [u'hagan', u'coach', u'maroon'] [u'hagan', u'coach', u'maroon', u'bennett', u'stand'] [u'halloween', u'caper', u'trigger', u'capitol', u'hill', u'alert'] [u'health', u'servic', u'offer', u'specialist', u'assur'] [u'high', u'court', u'adjourn', u'child', u'detent', u'hear'] [u'high', u'hop', u'chopper', u'crash', u'salvag', u'effort'] [u'hinchinbrook', u'develop', u'optimist', u'resort', u'plan'] [u'hmas', u'manoora', u'return', u'solomon'] [u'hospit', u'review', u'oper', u'deficit'] [u'hotel', u'fear', u'smoke', u'law', u'impact'] [u'hous', u'boom', u'step', u'rat', u'pressur'] [u'howard', u'warn', u'australian', u'danger', u'iraq'] [u'howard', u'watch', u'rivkin', u'investig'] [u'howel', u'fire', u'florida', u'lead'] [u'hume', u'council', u'fume', u'amalgam', u'failur'] [u'hussain', u'miss', u'england', u'cruis'] [u'indigen', u'fall', u'rest', u'societi', u'census'] [u'industri', u'action', u'threaten', u'power', u'suppli'] [u'injur', u'mortaza', u'week'] [u'investig', u'begin', u'factori'] [u'iran', u'nuke', u'declar', u'comprehens', u'watchdog'] [u'boss', u'want', u'argentina', u'nation'] [u'isra', u'armi', u'chief', u'warn', u'anger', u'govern'] [u'italian', u'court', u'overturn', u'charg'] [u'jacobson', u'grab', u'lead', u'spain'] [u'jail', u'term', u'need', u'threat', u'melbourn', u'water'] [u'labor', u'dump', u'parti'] [u'land', u'minist', u'fish', u'trip', u'highlight', u'river'] [u'latrob', u'morwel', u'headquart', u'shape'] [u'lem', u'death', u'vole', u'truth'] [u'lewi', u'fight', u'bout', u'trainer'] [u'lib', u'candid', u'seek', u'drought', u'explan'] [u'macgil', u'fail', u'fit', u'test'] [u'magistr', u'highlight', u'need', u'child', u'offend', u'rehab'] [u'mahathir', u'reign'] [u'mahathir', u'successor', u'swear'] [u'malaysia', u'anwar', u'blast', u'mahathir', u'legaci'] [u'malaysia', u'tie', u'come', u'howard'] [u'await', u'sentenc', u'southbank', u'rape'] [u'polic', u'guard', u'corrim', u'sieg'] [u'maroochi', u'candid', u'rule', u'backroom', u'deal'] [u'marriott', u'attack', u'plan', u'blast'] [u'melbourn', u'policeman', u'commend', u'wateri', u'rescu'] [u'charg', u'expect', u'child', u'porn', u'ring'] [u'motor', u'bodi', u'call', u'focus', u'driver', u'train'] [u'fear', u'fund', u'drop', u'setback', u'countri', u'sport'] [u'welcom', u'reject', u'legisl', u'sell'] [u'munro', u'martin', u'park', u'get', u'prefer', u'art'] [u'murder', u'committ', u'hear', u'expect'] [u'bodi', u'overse', u'camel', u'industri'] [u'resid', u'welcom', u'dreamworld'] [u'subdivis', u'plan', u'capricorn', u'coast'] [u'bail', u'alleg', u'toothfish', u'pirat'] [u'concord', u'keep', u'fli', u'announc'] [u'north', u'look', u'strong', u'sale'] [u'nova', u'group', u'grab', u'adelaid', u'radio', u'licenc'] [u'appeal', u'jago', u'murder', u'sentenc'] [u'govt', u'back', u'tamworth', u'hors', u'centr', u'plan'] [u'urban', u'speed', u'limit', u'drop'] [u'govt', u'accus', u'reneg', u'midwif', u'promis'] [u'hous', u'approv', u'year', u'high'] [u'border', u'town', u'seek', u'close', u'highway'] [u'nurs', u'welcom', u'medicar', u'rebat', u'plan'] [u'offici', u'suspend', u'england', u'clash'] [u'park', u'prepar', u'ambassador', u'visit'] [u'petrol', u'station', u'hold', u'trigger', u'polic', u'hunt'] [u'piraci', u'rise'] [u'plan', u'school', u'dougla', u'scuttl'] [u'prepar', u'bush', u'green', u'stunt'] [u'polic', u'interview', u'woman', u'fatal', u'stab'] [u'power', u'list', u'steven', u'kingsley'] [u'pratt', u'bow', u'philadelphia'] [u'primari', u'produc', u'urg', u'check', u'interim', u'drought'] [u'prison', u'keep', u'confin', u'day'] [u'privat', u'health', u'insur', u'complaint', u'surg'] [u'product', u'clone', u'anim', u'safe'] [u'program', u'help', u'school', u'leaver', u'avoid', u'problem'] [u'public', u'warn', u'irukandji', u'jellyfish', u'sting'] [u'putin', u'fire', u'chief', u'staff'] [u'add', u'sampl', u'nation', u'crimin', u'databas'] [u'rapist', u'jail', u'go', u'appeal'] [u'govt', u'urg', u'help', u'resolv', u'rat'] [u'oppn', u'call', u'burn', u'off'] [u'rebel', u'kill', u'villag', u'northern', u'uganda'] [u'region', u'victoria', u'recycl', u'depot'] [u'regul', u'fail', u'stop', u'illeg', u'deer', u'shoot'] [u'report', u'show', u'crime', u'increas'] [u'resid', u'minimbah', u'fight', u'court'] [u'review', u'find', u'disabl', u'face', u'workplac', u'discrimin'] [u'rockhampton', u'busi', u'remain', u'confid'] [u'roddick', u'world'] [u'romania', u'bow', u'style'] [u'royal', u'tongan', u'airlin', u'nosed'] [u'runner', u'high', u'fundrais', u'feat'] [u'sack', u'hospit', u'guard', u'reinstat'] [u'labor', u'elect', u'koutsantoni', u'presid'] [u'salin', u'group', u'encourag', u'channel', u'success'] [u'samoa', u'seek', u'support'] [u'museum', u'display', u'million', u'year', u'fossil'] [u'scientist', u'reef', u'protect', u'boost'] [u'scud', u'reserv', u'bench', u'master'] [u'second', u'marina', u'plan', u'coff', u'harbour'] [u'second', u'solar', u'erupt', u'stir', u'magnet', u'storm'] [u'second', u'string', u'franc', u'strong'] [u'offend', u'elud', u'author', u'escap'] [u'shark', u'attack'] [u'ship', u'sink', u'syria', u'storm', u'fear', u'dead'] [u'siemen', u'offer', u'workplac', u'agreement'] [u'smyth', u'slam', u'rule'] [u'south', u'american', u'fishermen', u'home'] [u'spi', u'espionag', u'sentenc', u'lengthen'] [u'srinath', u'quit', u'sidelin', u'australian', u'tour'] [u'stanhop', u'attack', u'ignor', u'forest', u'group'] [u'strasbourg', u'scratch', u'holi', u'order', u'track'] [u'strike', u'halt', u'sub', u'product', u'union'] [u'studi', u'show', u'sediment', u'kill', u'fish', u'western', u'port'] [u'survey', u'highlight', u'small', u'rise', u'busi', u'confid'] [u'sydney', u'shoot', u'link', u'drive'] [u'tasmanian', u'wit', u'side', u'rugbi', u'match'] [u'school', u'win', u'environ', u'award'] [u'world', u'oldest', u'person', u'die', u'age'] [u'thirteen', u'kill', u'south', u'africa', u'crash'] [u'timelin', u'malaysia', u'mahathir'] [u'tourist', u'death', u'prompt', u'commerci', u'vessel'] [u'traine', u'learn', u'remot', u'area'] [u'trescothick', u'second', u'inning'] [u'trio', u'face', u'court', u'polic', u'drug', u'oper'] [u'troop', u'return', u'solomon', u'deploy'] [u'tweed', u'need', u'industri', u'land', u'hit', u'crisi', u'point'] [u'union', u'ask', u'clear', u'definit', u'region'] [u'unit', u'nation', u'pull', u'staff', u'iraq', u'report'] [u'iraq', u'staff', u'baghdad', u'weekend'] [u'cut', u'middl', u'east', u'road', u'team'] [u'data', u'lift', u'stock', u'hit', u'bond'] [u'econom', u'growth', u'jump'] [u'hous', u'rep', u'approv', u'billion', u'iraq'] [u'offer', u'reward', u'jordanian', u'link'] [u'showman', u'mend', u'tiger', u'attack'] [u'soldier', u'suspect', u'taliban', u'fighter', u'kill'] [u'govt', u'promis', u'toll', u'ringwood', u'bypass'] [u'oppn', u'want', u'polic', u'transfer', u'assur'] [u'victoria', u'sport', u'bonanza'] [u'vidmar', u'sydney', u'unit', u'clash'] [u'virgin', u'blue', u'plan', u'float'] [u'govt', u'dump', u'moora', u'hospit', u'plan'] [u'wait', u'list', u'rise', u'loddon', u'malle', u'public'] [u'wallabi', u'readi', u'irish', u'test', u'gregan'] [u'miner', u'win', u'excel', u'award'] [u'wangaratta', u'prepar', u'jazz', u'fest', u'influx'] [u'oppn', u'worri', u'goldfield', u'polic', u'number'] [u'warn', u'receiv', u'wisden', u'award'] [u'water', u'corp', u'lodg', u'develop', u'applic'] [u'water', u'demand', u'rise', u'council', u'supplement', u'suppli'] [u'water', u'storag', u'boost', u'help', u'save', u'job'] [u'track', u'face', u'derbi', u'runner'] [u'track', u'worri', u'derbi', u'runner'] [u'wild', u'wind', u'fell', u'tree', u'sydney'] [u'wollongong', u'council', u'extend', u'citi', u'centr', u'exhibit'] [u'woman', u'guilti', u'fraud'] [u'kill', u'kashmir', u'violenc'] [u'saga', u'shake', u'england', u'woodward'] [u'kill', u'fight', u'afghanistan', u'provinc'] [u'suburban', u'speed', u'limit', u'extend'] [u'adventur', u'day', u'complet', u'marathon', u'feat'] [u'aid', u'guerrilla', u'leader', u'kill', u'colombia'] [u'traffic', u'control', u'strike', u'safeti'] [u'arafat', u'fatah', u'movement', u'resum', u'talk', u'quri'] [u'asbesto', u'discoveri', u'anger', u'newport', u'worker'] [u'asylum', u'seeker', u'refus', u'refuge', u'status', u'christma'] [u'atsic', u'propos', u'smart', u'card', u'welfar', u'plan'] [u'aussi', u'mumbai'] [u'australian', u'iraq', u'warn', u'violenc', u'continu'] [u'australia', u'india'] [u'author', u'search', u'aboard', u'miss', u'speed'] [u'weather', u'halt', u'epga', u'event'] [u'banger', u'need', u'support', u'critic', u'say', u'whatmor'] [u'beckham', u'get', u'clear'] [u'bomb', u'kill', u'soldier', u'northern', u'iraq'] [u'bullet', u'thrash', u'giant', u'win', u'tiger', u'breaker'] [u'govt', u'review', u'traffic', u'plan'] [u'colleg', u'commit', u'improv', u'medic', u'standard'] [u'cooler', u'weather', u'bring', u'hope', u'california'] [u'cwealth', u'secretari', u'general', u'pay', u'tribut', u'mahathir'] [u'cyclon', u'traci', u'wreck'] [u'darwin', u'home', u'say', u'norfolk', u'administr'] [u'davison', u'blitz', u'tiger'] [u'diesel', u'power', u'electr', u'plant', u'plan'] [u'elvstroem', u'take', u'victoria', u'derbi'] [u'aim', u'spam'] [u'ferguson', u'reignit', u'feud', u'wenger'] [u'arrest', u'britain', u'terror', u'law'] [u'freeman', u'olymp', u'torch'] [u'gastro', u'outbreak', u'caus', u'strain', u'hobart', u'hospit'] [u'gaze', u'join', u'exclus', u'club'] [u'goodwin', u'plead', u'guilti', u'behaviour', u'breach'] [u'goosen', u'grab', u'shoot', u'lead', u'florida'] [u'govt', u'say', u'opposit', u'child', u'protect', u'polici'] [u'govt', u'say', u'nat', u'child', u'protect', u'polici'] [u'high', u'wind', u'power', u'hundr', u'home'] [u'hmas', u'darwin', u'dock', u'port', u'adelaid'] [u'hope', u'spong', u'research', u'world', u'stage'] [u'freez', u'world', u'fund'] [u'give', u'thumb', u'west', u'indi', u'world'] [u'indigen', u'popul'] [u'injuri', u'cut', u'woodman', u'uruguay', u'clash'] [u'investig', u'wait', u'indonesian', u'fish', u'boat'] [u'iran', u'sign', u'nuclear', u'protocol', u'week', u'sourc'] [u'iraqi', u'guerrilla', u'kill', u'soldier'] [u'isra', u'troop', u'kill', u'palestinian', u'west', u'bank'] [u'japan', u'world', u'oldest', u'person'] [u'kirkland', u'carragh', u'sign', u'liverpool', u'deal'] [u'laport', u'slam', u'world', u'ref'] [u'gasp', u'scot', u'dash', u'fiji', u'hop'] [u'lawyer', u'make', u'complaint', u'asio', u'raid'] [u'liberia', u'presid', u'taylor', u'challeng', u'crime'] [u'malaysia', u'call', u'elect', u'victori'] [u'condit', u'hotel', u'attack'] [u'kill', u'fall', u'cliff'] [u'meat', u'clone', u'anim', u'safe', u'studi'] [u'mugab', u'overhaul', u'central', u'bank', u'cabinet', u'report'] [u'muslim', u'spiritu', u'leader', u'plead', u'sydney'] [u'enterpris', u'plan', u'creation'] [u'labor', u'presid', u'concentr', u'membership'] [u'noxious', u'weed', u'prove', u'difficult', u'control'] [u'farm', u'target', u'thiev', u'senat'] [u'get', u'case', u'bend'] [u'opposit', u'attack', u'howard', u'iraq'] [u'opposit', u'hinder', u'govt', u'counter', u'terror'] [u'pacemen', u'england'] [u'philippin', u'releas', u'militari', u'mutin'] [u'polic', u'seek', u'help', u'rockhampton', u'stab'] [u'public', u'warn', u'potenti', u'whoop', u'cough', u'epidem'] [u'nation', u'prepar', u'elect', u'challeng'] [u'record', u'holder', u'unfaz', u'woodbridg', u'doubl'] [u'report', u'suggest', u'power', u'altern'] [u'rescu', u'team', u'face', u'tough', u'test'] [u'resid', u'face', u'spot', u'fin', u'breach'] [u'review', u'examin', u'cormo', u'express', u'saga'] [u'rivkin', u'face', u'prosecut'] [u'roddick', u'advanc', u'henman', u'stun', u'feder'] [u'rossi', u'secur', u'provision', u'pole', u'spain'] [u'russian', u'criticis', u'freez', u'share'] [u'sharon', u'counter', u'russian', u'road', u'offens'] [u'snapper', u'strict', u'enforc'] [u'solomon', u'intervent', u'head', u'hail', u'progress'] [u'spanish', u'govern', u'give', u'ahead', u'huge'] [u'springbok', u'rampag', u'quarter'] [u'striker', u'unit'] [u'sydney', u'gene', u'research', u'receiv', u'award'] [u'thousand', u'expect', u'art', u'fair'] [u'kill', u'separ', u'crash'] [u'archivist', u'plan', u'onlin', u'strategi'] [u'explos', u'hear', u'near', u'coalit', u'compound'] [u'iraq', u'staff', u'baghdad', u'weekend'] [u'cyclon', u'expect', u'come', u'summer'] [u'plan', u'push', u'chang', u'opposit'] [u'senat', u'deadlin', u'iraq', u'intellig', u'expir'] [u'stock', u'open', u'flat', u'analyst'] [u'vandal', u'paint', u'monument', u'slay', u'isra'] [u'polic', u'miss', u'trio'] [u'govt', u'address', u'predict', u'public', u'sector', u'staff'] [u'wallabi', u'surviv', u'ireland', u'scare'] [u'water', u'wast', u'awar', u'rais', u'clean', u'ocean'] [u'welsh', u'lamb', u'seek', u'avoid', u'kiwi', u'slaughter'] [u'wenger', u'defend', u'highburi', u'boy'] [u'weather', u'derbi', u'outcom'] [u'woman', u'jail', u'tri', u'kill', u'daughter'] [u'world', u'oldest', u'test', u'cricket', u'dead'] [u'soldier', u'kill', u'attack', u'helicopt'] [u'peopl', u'kill', u'clash', u'nepal'] [u'kill', u'plung', u'indian', u'gorg'] [u'introduc', u'anti', u'gazump', u'law'] [u'black', u'surviv', u'welsh', u'scare'] [u'clear', u'cannon', u'burk'] [u'warn', u'extend', u'phase', u'trade', u'agreement'] [u'archbishop', u'resist', u'pressur', u'resign'] [u'typhoid', u'fever', u'outbreak'] [u'aussi', u'exact', u'swift', u'reveng', u'india'] [u'build', u'sector', u'job', u'boom', u'survey'] [u'bulli', u'target', u'campaign'] [u'californian', u'firefight', u'welcom', u'cooler', u'weather'] [u'carr', u'criticis', u'lobbi', u'peac', u'prize', u'award'] [u'concert', u'celebr', u'jabiluka', u'rehabilit'] [u'conflict', u'main', u'reason', u'telstra', u'sale'] [u'conserv', u'order', u'cyclon', u'traci', u'wreck'] [u'cum', u'confid', u'ahead'] [u'vaio', u'rescu', u'point', u'battl', u'juve'] [u'dwyer', u'call', u'major', u'chang'] [u'dwyer', u'savag', u'wallabi'] [u'england', u'demolish', u'uruguay'] [u'say', u'tamil', u'tiger', u'propos', u'import', u'step'] [u'film', u'festiv', u'celebr', u'mother', u'teresa'] [u'nehra', u'recal', u'india', u'squad'] [u'isra', u'soldier', u'wound', u'nablus', u'explos'] [u'german', u'protest', u'welfar', u'economi', u'reform'] [u'goosen', u'retain', u'florida', u'lead'] [u'goulburn', u'wait', u'hospit', u'site', u'develop', u'plan'] [u'govt', u'aim', u'strengthen', u'terror', u'law'] [u'govt', u'clear', u'lebanon', u'extradit', u'qaeda'] [u'govt', u'launch', u'nation', u'research', u'program'] [u'govt', u'propos', u'wider', u'medicar', u'safeti'] [u'hazel', u'hawk', u'battl', u'alzheim', u'diseas'] [u'health', u'care', u'card', u'limit', u'fail', u'incom'] [u'henman', u'roll', u'roddick', u'reach', u'pari', u'final'] [u'henri', u'plung', u'leed', u'deeper', u'mire'] [u'hicki', u'return', u'home', u'ruptur', u'achill'] [u'stay', u'rooney', u'tell', u'everton'] [u'indigen', u'communiti', u'mine', u'process'] [u'indonesia', u'step', u'hunt', u'bomb', u'suspect'] [u'inspir', u'adventur', u'complet', u'sixth', u'marathon'] [u'iran', u'say', u'suspend', u'stop', u'enrich'] [u'iraq', u'interim', u'foreign', u'minist', u'refus'] [u'iraq', u'invit', u'offici', u'region', u'summit'] [u'isra', u'mark', u'assassin'] [u'jacobson', u'rodil', u'lock', u'dramat', u'battl', u'spain'] [u'jacobson', u'rodil', u'thriller'] [u'katherin', u'elder', u'support', u'litter', u'reduct', u'program'] [u'librari', u'aim', u'small', u'busi', u'open', u'adelaid'] [u'oxygen', u'benefit', u'dinosaur', u'expert'] [u'malaysian', u'ask', u'strengthen', u'rule'] [u'die', u'cliff', u'fall'] [u'dead', u'south', u'brisban'] [u'marin', u'servic', u'test', u'search', u'rescu', u'skill'] [u'marriott', u'bomb', u'suspect', u'confess', u'express', u'remors'] [u'martyn', u'centuri', u'help', u'australia', u'victori'] [u'mauresmo', u'battl', u'final', u'myskina'] [u'stand', u'privat', u'memorabilia', u'auction'] [u'media', u'rep', u'explor', u'legal', u'protect'] [u'plung', u'manila', u'build', u'site'] [u'govt', u'depart', u'investig', u'imag'] [u'consid', u'charter', u'flight', u'boost', u'tourism'] [u'parent', u'face', u'ban', u'sidelin', u'abus'] [u'parramatta', u'power', u'record'] [u'part', u'venic', u'water'] [u'pitch', u'invad', u'face', u'brisban', u'court'] [u'pitch', u'invas', u'prompt', u'lang', u'park', u'secur', u'review'] [u'polic', u'charg', u'murder', u'fight'] [u'polic', u'identifi', u'accid', u'victim'] [u'polic', u'investig', u'fatal', u'accid'] [u'polic', u'investig', u'man', u'bodi'] [u'policeman', u'serious', u'injur', u'fall'] [u'pont', u'hail', u'clark', u'mumbai'] [u'nat', u'reject', u'insur', u'chang'] [u'quak', u'rattl', u'north', u'eastern', u'japan'] [u'quri', u'put', u'finish', u'touch', u'cabinet', u'sharon'] [u'raid', u'continu', u'carr', u'warn'] [u'report', u'damn', u'assist', u'homeless'] [u'research', u'search', u'studi', u'particip'] [u'ronaldo', u'form', u'real'] [u'rossi', u'power', u'pole', u'valencia'] [u'russian', u'concern', u'yuko', u'crisi', u'spread'] [u'jockey', u'jump', u'gender', u'barrier', u'melbourn'] [u'samoa', u'coach', u'lash', u'kiwi', u'player', u'poacher'] [u'scotland', u'grime', u'issu', u'warn', u'wallabi'] [u'sick', u'man', u'famili', u'criticis', u'medic', u'offic', u'flight'] [u'solomon', u'see', u'bright', u'econom', u'outlook'] [u'springbok', u'niekerk', u'world'] [u'stoner', u'take', u'career', u'grand', u'prix'] [u'superbik', u'champ', u'hodgson', u'switch', u'motogp'] [u'support', u'bush', u'declin', u'poll', u'reveal'] [u'hospit', u'struggl', u'gastro', u'outbreak'] [u'hous', u'say', u'properti', u'sector', u'remain', u'strong'] [u'teenag', u'hospit', u'sydney', u'stab'] [u'telco', u'industri', u'need', u'competit', u'accc', u'deputi'] [u'ten', u'thousand', u'challeng', u'blair', u'hunt'] [u'tonn', u'rubbish', u'remov', u'nepales', u'mountain'] [u'iranian', u'confirm', u'detent', u'academ'] [u'injur', u'crash', u'near', u'blue', u'mountain'] [u'mortar', u'bomb', u'land', u'school', u'iraq', u'princip'] [u'ultra', u'marathon', u'legend', u'young', u'die', u'age'] [u'chopper', u'shoot', u'iraq', u'casualti'] [u'episcop', u'church', u'appoint', u'bishop'] [u'stand', u'firm', u'terror', u'rumsfeld'] [u'teen', u'surfer', u'recov', u'shark', u'attack'] [u'acceler', u'handov', u'iraq'] [u'govt', u'play', u'call', u'hospit', u'inquiri'] [u'viduka', u'futur', u'doubt', u'leed'] [u'elect', u'fund', u'legisl', u'dump'] [u'fisheri', u'polic', u'start', u'abalon', u'season'] [u'govt', u'put', u'prison', u'contractor', u'notic'] [u'wallabi', u'receiv', u'irish', u'wake'] [u'wallabi', u'line', u'worri', u'jone'] [u'walton', u'go', u'noosa'] [u'waugh', u'lift', u'blue', u'victori'] [u'weather', u'help', u'firefight', u'contain', u'california'] [u'white', u'claim', u'gabba'] [u'wildcat', u'claw', u'gaze', u'celebr', u'style'] [u'woman', u'hospit', u'boat'] [u'woman', u'question', u'fatal', u'stab'] [u'woman', u'ram', u'build', u'bush', u'ralli'] [u'announc', u'bushfir', u'spatial', u'zone'] [u'adventur', u'wind', u'surfer', u'conquer', u'pacif'] [u'journalist', u'detain', u'forc', u'north'] [u'age', u'care', u'facil', u'receiv', u'legaci', u'boost'] [u'alga', u'spark', u'fish', u'kill', u'fear'] [u'qaeda', u'suspect', u'intend', u'harm', u'australia'] [u'mere', u'truffl', u'worth', u'gold'] [u'anglican', u'prepar', u'consecr', u'bishop'] [u'antarct', u'enzym', u'speed', u'test', u'report'] [u'appeal', u'expect', u'bank', u'manag', u'sentenc'] [u'asio', u'visit', u'hick', u'habib'] [u'asylum', u'seeker', u'expect', u'testifi', u'peopl'] [u'asylum', u'seeker', u'testifi', u'alleg', u'smuggler'] [u'aurora', u'australi', u'set', u'antarct', u'expedit'] [u'aussi', u'golfer', u'face', u'drop'] [u'aust', u'call', u'help', u'rebuild', u'solomon'] [u'australia', u'fail', u'sign', u'sheep', u'deal', u'saudi'] [u'australian', u'doctor', u'lead', u'group'] [u'australia', u'scrape', u'home', u'thriller'] [u'babi', u'monitor', u'sting', u'trap', u'robber'] [u'ballarat', u'hous', u'price', u'continu', u'rise'] [u'ballarat', u'trainer', u'hop', u'strong'] [u'bank', u'recommend', u'asian', u'monetari', u'fund'] [u'barraba', u'popul', u'doubl', u'annual', u'festiv'] [u'bendigo', u'mother', u'win', u'council', u'elect'] [u'blast', u'rip', u'pipelin', u'northern', u'iraq'] [u'blaze', u'overshadow', u'mummifi', u'inquiri'] [u'boati', u'criticis', u'lack', u'rescu', u'contribut'] [u'boonah', u'call', u'local', u'approach', u'water', u'reform'] [u'boost', u'barcaldin', u'ambul', u'servic'] [u'brewarrina', u'minus', u'doc', u'worker'] [u'british', u'ambassador', u'tehran', u'summon', u'blair'] [u'british', u'explor', u'finish', u'seven', u'straight', u'marathon'] [u'cairn', u'woman', u'face', u'murder', u'charg'] [u'illeg', u'fish', u'boat', u'regist'] [u'carr', u'tell', u'armi', u'offic', u'polit'] [u'centuri', u'runner', u'hamilton', u'island', u'takeov'] [u'clerk', u'senat', u'question', u'green'] [u'communiti', u'hop', u'hospit', u'base', u'servic'] [u'convict', u'hand'] [u'council', u'consid', u'move', u'visitor'] [u'council', u'face', u'department', u'investig'] [u'council', u'give', u'averag', u'rat'] [u'council', u'skate', u'park', u'injuri'] [u'council', u'sign', u'aborigin', u'communiti'] [u'council', u'throw', u'parti', u'follow', u'complet'] [u'coupl', u'charg', u'babi', u'death'] [u'crackdown', u'deter', u'cattl', u'thief'] [u'crane', u'collaps', u'sydney', u'harbour'] [u'csiro', u'research', u'sceptic', u'bushfir'] [u'schedul', u'unfair', u'boss', u'admit'] [u'democrat', u'indic', u'support', u'daylight', u'save'] [u'dog', u'face', u'bleak', u'futur', u'kill', u'spree'] [u'appeal', u'bank', u'manag', u'sentenc'] [u'dump', u'appeal', u'wast', u'money', u'minist', u'say'] [u'echuca', u'polic', u'target', u'traffic', u'offenc'] [u'england', u'reinforc', u'lock'] [u'environment', u'group', u'sweat', u'public', u'support'] [u'etern', u'flame', u'extinguish', u'protest', u'camp'] [u'minist', u'testifi', u'alleg', u'entitl'] [u'open', u'bishop', u'consecr'] [u'state', u'cwealth', u'court', u'battl', u'rememb'] [u'walk', u'free', u'light', u'plane', u'crash'] [u'foreign', u'terrorist', u'crimin', u'iraq', u'attack'] [u'forest', u'agreement', u'need', u'commit'] [u'forest', u'feder', u'pleas', u'project', u'pledg'] [u'foster', u'guilti', u'babi', u'manslaught'] [u'fresh', u'wave', u'buyer', u'eye', u'properti', u'market'] [u'gang', u'violenc', u'premier', u'agenda'] [u'gastro', u'outbreak', u'delay', u'surgeri'] [u'gold', u'coast', u'connect', u'melbourn', u'runner'] [u'gold', u'medal', u'steal', u'paralympian', u'home'] [u'goosen', u'hold', u'singh', u'money', u'titl', u'doubt'] [u'govt', u'ask', u'state', u'support', u'tougher', u'terror', u'law'] [u'govt', u'anti', u'terror', u'push', u'divers'] [u'govt', u'block', u'telstra', u'director', u'rise'] [u'govt', u'chang', u'drug', u'depend', u'disabl', u'rule'] [u'lobbi', u'govt', u'medicar', u'polici'] [u'group', u'call', u'hinchinbrook', u'develop'] [u'hall', u'consid', u'trust', u'fund', u'propos'] [u'hama', u'truce', u'israel', u'limit', u'attack'] [u'hazel', u'hawk', u'confront', u'alzheim'] [u'helicopt', u'shoot', u'tragic'] [u'henman', u'hail', u'greatest', u'achiev', u'pari'] [u'hewitt', u'carri', u'norman', u'club'] [u'star', u'diddi', u'run', u'marathon'] [u'hors', u'race', u'fan', u'cheer', u'past', u'present', u'hero'] [u'human', u'remain', u'dens', u'bushland'] [u'hunter', u'rail', u'guard', u'claim', u'victori', u'decis'] [u'hussey', u'put', u'bushrang'] [u'india', u'plan', u'internet', u'push', u'region'] [u'indigen', u'council', u'form', u'region', u'plan'] [u'indigen', u'link', u'project', u'extend'] [u'indigen', u'lobbi', u'group', u'want', u'money', u'releas'] [u'indonesian', u'flood', u'kill', u'foreign', u'identifi'] [u'indonesian', u'polic', u'fear', u'fugit', u'terrorist', u'strike'] [u'injur', u'walton', u'win', u'noosa', u'triathlon'] [u'injuri', u'ranger', u'blue'] [u'inquest', u'open', u'whistleblow', u'death'] [u'rate', u'uncertainti', u'weigh', u'market'] [u'intern', u'show', u'doctor', u'dementia'] [u'investig', u'look', u'mackay', u'chopper', u'crash'] [u'ireland', u'hop', u'fast', u'start', u'french'] [u'israel', u'mother', u'strike'] [u'jacobson', u'win', u'master', u'play', u'leaney', u'fifth'] [u'jewish', u'leader', u'back', u'carr', u'peac', u'prize'] [u'climb'] [u'jone', u'back', u'gregan', u'sailor'] [u'judg', u'urg', u'valanc', u'settl', u'court'] [u'kangaroo', u'warm', u'wale', u'massacr'] [u'kasper', u'keen', u'cairn', u'black', u'cap'] [u'sudden', u'death'] [u'liverpool', u'track'] [u'lobster', u'industri', u'push', u'quota', u'scheme'] [u'local', u'byfield', u'timber'] [u'charg', u'internet', u'chat', u'room', u'offenc'] [u'die', u'highway', u'crash'] [u'face', u'summon', u'incid'] [u'court', u'wagga', u'sieg'] [u'murder', u'charg', u'face', u'court'] [u'manoora', u'leav', u'sydney'] [u'manoora', u'captain', u'hop', u'welcom', u'ship'] [u'recov', u'croc', u'attack'] [u'court', u'hospit', u'incid'] [u'marathon', u'runner', u'cliff', u'young', u'die', u'age'] [u'mauremso', u'down', u'myskina', u'claim', u'pennsylvania', u'titl'] [u'mayor', u'fume', u'egan', u'letter'] [u'mayor', u'drive', u'transport', u'talk'] [u'meet', u'tell', u'farmer', u'worri', u'govt'] [u'strut', u'facial', u'hair', u'world', u'championship'] [u'stand', u'trial', u'man', u'murder'] [u'west', u'build', u'give', u'heritag', u'list'] [u'frost', u'hit', u'central', u'west', u'farmer'] [u'injuri', u'miseri', u'flower'] [u'want', u'action', u'bairnsdal', u'hospit', u'revamp'] [u'gibson', u'iron', u'start', u'negoti', u'china'] [u'public', u'warn', u'tough', u'water', u'restrict'] [u'murphi', u'goal', u'give', u'liverpool', u'late', u'victori'] [u'nat', u'seek', u'robina', u'hospit', u'emerg', u'boost'] [u'newcastl', u'polic', u'investig', u'fatal', u'halloween'] [u'nikol', u'defend', u'mummifi', u'ride'] [u'nikol', u'answer', u'question', u'mummifi', u'ride'] [u'need', u'rain', u'help', u'crop'] [u'secur', u'check', u'media', u'bush'] [u'reform', u'teacher', u'misconduct', u'manag'] [u'back', u'border', u'polic', u'post'] [u'museum', u'call', u'public', u'access', u'shipwreck'] [u'race', u'investig', u'bank', u'manag', u'bet'] [u'nuclear', u'dump', u'appeal', u'begin', u'today'] [u'oliveira', u'trick', u'help', u'valencia'] [u'overeat', u'gene'] [u'oversea', u'train', u'doctor', u'need', u'check', u'report'] [u'oxley', u'fear', u'bridg', u'delay', u'highway', u'upgrad'] [u'parent', u'target', u'youth', u'drink', u'campaign'] [u'pari', u'allow', u'high', u'rise'] [u'pasminco', u'releas', u'quarter', u'review'] [u'pilot', u'disput', u'head', u'arbitr'] [u'plan', u'start', u'broom', u'growth'] [u'say', u'widow', u'memori', u'snub', u'mistak'] [u'cabinet', u'consid', u'deal'] [u'passport', u'print', u'machin', u'suspect', u'steal'] [u'polic', u'investig', u'gunnedah', u'rail', u'incid'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'question', u'teenag', u'burn', u'bodi'] [u'polic', u'nonsens', u'stanc', u'biki'] [u'polic', u'urg', u'safe', u'summer', u'parti'] [u'politician', u'fear', u'plan', u'radio', u'chang'] [u'posit', u'sign', u'manufactur'] [u'postpon', u'transport', u'meet', u'anger', u'govt'] [u'power', u'firm', u'hop', u'lower', u'council', u'rat', u'wind'] [u'pressur', u'bush', u'iraq', u'casualti', u'mount'] [u'prison', u'shoot', u'dead', u'escap', u'attempt', u'court', u'tell'] [u'public', u'discuss', u'use', u'king', u'theatr'] [u'publish', u'print', u'unrevis', u'draft', u'book', u'mistak'] [u'govt', u'say', u'homeless', u'issu', u'address'] [u'program', u'target', u'drug', u'abus'] [u'race', u'club', u'run', u'award'] [u'ranger', u'shoot', u'escap', u'water', u'buffalo', u'melbourn'] [u'receiv', u'put', u'support', u'spin', u'surviv'] [u'reclaim', u'night', u'organis', u'upset', u'clash'] [u'relat', u'mine', u'compani', u'indigen'] [u'report', u'stop', u'fish', u'farm'] [u'report', u'put', u'live', u'murray', u'initi'] [u'resid', u'prepar', u'cyclon', u'season'] [u'retail', u'spend', u'strong', u'inflat', u'check'] [u'retail', u'spend'] [u'risk', u'travel', u'small', u'studi'] [u'roma', u'shake', u'reggina', u'close', u'itali'] [u'rossi', u'quit', u'honda', u'spanish'] [u'rubbish', u'search', u'telstra', u'file', u'dump'] [u'ruddock', u'hail', u'level', u'cooper', u'french'] [u'rugbi', u'fin', u'pitch', u'invas'] [u'rural', u'doctor', u'meet', u'hospit', u'board', u'snub'] [u'take', u'wast', u'dump', u'opposit', u'feder', u'court'] [u'year', u'student', u'begin', u'final', u'exam'] [u'scotland', u'taylor', u'face', u'wallabi'] [u'season', u'injur', u'venus'] [u'busi', u'begin', u'woodward', u'england'] [u'seven', u'indian', u'kashmir', u'unrest'] [u'shire', u'resid', u'chang'] [u'shire', u'want', u'water', u'alloc', u'manag', u'plan'] [u'simplot', u'test', u'equip', u'ulverston'] [u'south', u'east', u'call', u'timber', u'opportun'] [u'spain', u'shut', u'border', u'gibraltar'] [u'speaker', u'defend', u'decis', u'remov', u'green', u'guest'] [u'hand', u'prepar', u'appeal'] [u'storm', u'leav', u'damag', u'home', u'illawarra'] [u'stronger', u'dollar', u'take', u'toll', u'wool', u'grower'] [u'studi', u'focus', u'industri', u'impact'] [u'supermarket', u'chain', u'south', u'west', u'trout'] [u'support', u'grow', u'airspac', u'plan', u'delay'] [u'swan', u'reach', u'health', u'centr', u'step', u'closer'] [u'swedish', u'polic', u'trouser', u'soak', u'lindh'] [u'sydney', u'archbishop', u'fear', u'church', u'split'] [u'syring', u'kerbsid', u'recycl', u'staff', u'risk'] [u'tare', u'resid', u'ralli', u'rail', u'cut'] [u'tast', u'crab', u'colour'] [u'teen', u'charg', u'mildura', u'murder'] [u'thousand', u'turn', u'parad'] [u'timber', u'worker', u'hold', u'stopwork', u'meet'] [u'town', u'hold', u'breath', u'fanci', u'melbourn', u'runner'] [u'trout', u'hatcheri', u'open', u'celebr', u'year'] [u'civilian', u'kill', u'bomb', u'iraq'] [u'umaga', u'boost', u'black'] [u'unconvinc', u'scot', u'threaten', u'wobbl', u'wallabi'] [u'deleg', u'arriv', u'afghanistan'] [u'union', u'continu', u'fight', u'murrumbidge', u'colleg', u'job'] [u'union', u'offici', u'guilti', u'threat'] [u'church', u'appoint', u'bishop'] [u'vow', u'iraq', u'terrorist'] [u'govt', u'crack', u'money', u'launder'] [u'hospit', u'ceo', u'lose', u'bonus'] [u'villag', u'approv', u'close', u'lengthi', u'debat'] [u'parti', u'odd', u'elect', u'fund'] [u'veteran', u'leav', u'london', u'memori'] [u'watchdog', u'electr', u'price', u'hike'] [u'william', u'rock', u'kiwi', u'india'] [u'woman', u'kill', u'collid', u'school'] [u'world', u'chief', u'secur', u'rethink'] [u'worsley', u'say', u'sorri', u'error', u'judgment'] [u'yakama', u'jockey', u'pray', u'rain'] [u'zimbabw', u'media', u'bodi', u'challeng', u'order', u'licenc'] [u'abort', u'foetus', u'discov', u'near', u'naracoort'] [u'accus', u'detect', u'seek', u'damag'] [u'acoss', u'call', u'freez', u'negat', u'gear'] [u'traffic', u'control', u'accus', u'safeti', u'beat'] [u'talk', u'liber', u'poll', u'boost'] [u'anderson', u'name', u'wing', u'centr'] [u'asio', u'complaint', u'rise'] [u'gregan', u'larkham', u'woeful', u'wallabi', u'campo'] [u'blue', u'mckay', u'retir'] [u'bomb', u'blast', u'rock', u'turkish', u'embassi'] [u'bomb', u'iraqi', u'holi', u'citi', u'kill'] [u'bond', u'innoc', u'claim', u'incred'] [u'booki', u'report', u'record', u'cash'] [u'boss', u'seal', u'comeback', u'melbourn'] [u'brisban', u'doctor', u'save', u'timores', u'babi', u'life'] [u'british', u'sentenc', u'infect'] [u'bull', u'stumbl', u'earli', u'second', u'inning'] [u'carr', u'open', u'environment', u'technolog', u'centr'] [u'cathol', u'archbishop', u'plan', u'meet', u'abus'] [u'celebr', u'continu', u'melbourn'] [u'champagn', u'flow', u'flemington'] [u'church', u'surviv', u'bishop', u'divid', u'primat'] [u'cliff', u'young', u'farewel', u'tomorrow'] [u'coupl', u'floor', u'friski', u'felin'] [u'court', u'fail', u'overturn', u'onetel', u'director', u'asset'] [u'court', u'hear', u'babi', u'scald', u'bath'] [u'court', u'refus', u'hear', u'command', u'case'] [u'court', u'reserv', u'decis', u'rape', u'appeal'] [u'beam', u'baghdad', u'aust', u'troop'] [u'keep', u'market', u'quiet'] [u'custom', u'probe', u'boat', u'arriv', u'island'] [u'darwin', u'school', u'scoop', u'nation', u'award'] [u'dept', u'say', u'servic', u'scratch', u'foster'] [u'continu', u'test', u'wheat', u'virus'] [u'draft', u'plan', u'redevelop', u'molonglo', u'valley'] [u'drug', u'addict', u'anaesthetist', u'strike', u'regist'] [u'dump', u'tap', u'classifi', u'depart'] [u'everingham', u'reassert', u'lib', u'support', u'public'] [u'flash', u'flood', u'devast', u'indonesian', u'tourist', u'town'] [u'fleme', u'attack', u'india', u'schedul'] [u'armi', u'head', u'emerg', u'servic'] [u'charg', u'homeless', u'man', u'death'] [u'franc', u'strength', u'ireland', u'quarter', u'final'] [u'free', u'journalist', u'claim', u'tortur', u'treatment'] [u'french', u'polic', u'arrest', u'suspect', u'dissid'] [u'reform', u'propos', u'question'] [u'genet', u'base', u'diet', u'plan', u'riski', u'studi'] [u'gladston', u'target', u'cane', u'toad'] [u'goodwin', u'build', u'warrior', u'lead'] [u'govt', u'criticis', u'time', u'releas'] [u'govt', u'excis', u'island', u'boat', u'arriv'] [u'govt', u'plan', u'law', u'hama'] [u'govt', u'question', u'suspect', u'wife', u'access'] [u'govt', u'drug', u'addict', u'law', u'attack'] [u'green', u'group', u'back', u'council', u'effort', u'stop', u'illeg'] [u'hess', u'group', u'complet', u'peter', u'lehmann', u'wine', u'deal'] [u'hickss', u'father', u'optimist', u'australian', u'visit'] [u'holland', u'doubl', u'sink', u'birmingham'] [u'hong', u'kong', u'agog', u'croc', u'loos'] [u'howard', u'govt', u'secur', u'poll', u'surg'] [u'indonesian', u'buy', u'boat', u'accus', u'peopl'] [u'intellig', u'chief', u'dismiss', u'iraq', u'doubt'] [u'intern', u'season', u'socceroo'] [u'iran', u'limit', u'reach', u'nuclear', u'watchdog'] [u'irish', u'slip', u'place', u'rugbi', u'rank'] [u'israel', u'outrag', u'threat', u'peac', u'poll'] [u'race', u'stop', u'stop', u'work', u'meet'] [u'jam', u'murdoch', u'take', u'rein', u'bskyb'] [u'japan', u'investig', u'suspect', u'infect'] [u'kashmiri', u'saffron', u'produc', u'iranian'] [u'kiwi', u'catch', u'internet', u'bank', u'scam'] [u'lara', u'grappl', u'select', u'dilemma'] [u'launceston', u'okay', u'aquat', u'centr'] [u'legendari', u'bootmak', u'william', u'die'] [u'long', u'flight', u'heighten', u'risk'] [u'lopez', u'receiv', u'spanish', u'davi'] [u'loud', u'blast', u'mortar', u'near', u'baghdad'] [u'makyb', u'diva', u'favourit', u'flemington'] [u'makyb', u'diva', u'win', u'melbourn'] [u'maloney', u'suspend', u'break', u'tackl'] [u'mamool', u'pull', u'lame'] [u'die', u'plane', u'crash', u'injuri'] [u'mayor', u'unsur', u'bluegum', u'plant', u'benefit'] [u'milit', u'plan', u'ramadan', u'attack', u'saudi'] [u'milosev', u'massiv', u'mistak', u'leader', u'trial'] [u'minist', u'call', u'global', u'plan', u'save', u'patagonian'] [u'minist', u'claim', u'speed', u'limit'] [u'mummifi', u'melbourn'] [u'nation', u'leader', u'urg', u'uniti', u'dairi', u'price'] [u'certif', u'keep', u'rivkin', u'jail'] [u'fin', u'weed', u'pest', u'plant'] [u'north', u'korea', u'tread', u'fine', u'line', u'nuclear', u'program'] [u'opposit', u'call', u'blanket', u'test'] [u'oper', u'dig', u'drug', u'gun'] [u'odd', u'shorten', u'rate', u'hike'] [u'opposit', u'call', u'expand', u'test'] [u'opposit', u'call', u'write', u'protocol', u'live'] [u'opposit', u'slam', u'art', u'queensland', u'spend'] [u'pacif', u'review', u'group'] [u'cellar', u'cost', u'taxpay'] [u'court', u'ask', u'nullifi', u'appoint'] [u'polic', u'indigen', u'etern', u'flame'] [u'polic', u'wait', u'post', u'mortem', u'result', u'identifi'] [u'pont', u'prais', u'perform', u'pressur'] [u'popul', u'pois', u'reach', u'mark'] [u'post', u'taliban', u'draft', u'constitut', u'debat'] [u'putin', u'heal', u'rift', u'pope', u'russian'] [u'rann', u'work', u'south', u'korea', u'china', u'tie'] [u'reef', u'studi', u'public'] [u'revolut', u'promis', u'matrix', u'saga'] [u'ronaldo', u'target', u'champ', u'leagu', u'glori'] [u'russian', u'billionair', u'resign', u'compani'] [u'saddam', u'probe', u'judg', u'assassin', u'wit'] [u'farmer', u'close', u'port', u'fee'] [u'scientist', u'track', u'gene', u'chang', u'fli'] [u'scrap', u'sculptur', u'cost', u'taxpay'] [u'scud', u'aussi', u'number', u'hewitt', u'slip'] [u'search', u'continu', u'survivor', u'sumatran', u'flood'] [u'senat', u'committe', u'hear', u'asio', u'complaint'] [u'senat', u'hear', u'probe', u'self', u'harm', u'case', u'detent'] [u'serena', u'venus', u'plan', u'perth', u'comeback'] [u'seven', u'road'] [u'shaw', u'replac', u'grewcock', u'england'] [u'solar', u'groupi', u'head', u'eclips', u'midnight'] [u'south', u'australian', u'warn', u'email', u'scam'] [u'spanish', u'princ', u'present', u'newsread', u'fiance'] [u'lankan', u'leader', u'sack', u'minist'] [u'suicid', u'bomber', u'injur', u'isra', u'soldier'] [u'farmer', u'fear', u'free', u'trade', u'time', u'frame'] [u'tasmanian', u'pipelin', u'sale'] [u'taxpay', u'head', u'bush', u'bash'] [u'tennant', u'creek', u'gold', u'miner', u'ahead', u'expect'] [u'kill', u'victorian', u'road'] [u'solomon', u'policeman', u'arrest'] [u'troop', u'deploy', u'minist', u'sack', u'lanka'] [u'bodi', u'sink'] [u'kill', u'saudi', u'anti', u'terrorist', u'raid'] [u'suspect', u'milit', u'shoot', u'dead', u'mecca'] [u'umaga', u'train', u'black', u'squad'] [u'accept', u'govt', u'rent', u'free', u'offer'] [u'union', u'offici', u'escap', u'convict'] [u'govt', u'seek', u'isra', u'militari'] [u'product', u'stock', u'climb', u'high'] [u'senat', u'approv', u'billion', u'iraq', u'chest'] [u'soldier', u'kill', u'tikrit', u'attack'] [u'consid', u'commonwealth', u'terror', u'request'] [u'fisheri', u'fifth', u'gain', u'feder', u'govern'] [u'water', u'resourc', u'manag', u'flow', u'catchment'] [u'weather', u'fuel', u'rule', u'caus', u'plane', u'crash'] [u'whatmor', u'name', u'dayer'] [u'world', u'largest', u'iceberg', u'split', u'report'] [u'aust', u'troop', u'leav', u'solomon', u'month'] [u'injur', u'blast', u'wast', u'dispos', u'facil'] [u'dead', u'papua', u'clash'] [u'lib', u'welcom', u'emerg', u'servic', u'chief', u'pledg'] [u'age', u'warn', u'vitamin', u'quick'] [u'alleg', u'leader', u'say', u'wasnt', u'involv'] [u'govt', u'comput', u'miss', u'year'] [u'amnesti', u'lobbi', u'thai', u'govt', u'probe'] [u'appeal', u'court', u'begin', u'hanson', u'ettridg', u'hear'] [u'armi', u'personnel', u'test', u'posit', u'drug'] [u'armi', u'probe', u'timor', u'tortur', u'alleg'] [u'arrest', u'fraca', u'dutch', u'embassi'] [u'ashrawi', u'deliv', u'messag', u'hope'] [u'asic', u'put', u'bar', u'corpor', u'crime', u'report'] [u'asylum', u'seeker', u'anchor', u'melvill', u'island'] [u'asylum', u'seeker', u'identifi', u'turk'] [u'athlet', u'chief', u'doubl', u'ban', u'drug', u'cheat'] [u'attorney', u'general', u'away', u'defam', u'case'] [u'audio', u'problem', u'delay', u'drug', u'committ', u'hear'] [u'aust', u'govt', u'renew', u'media', u'ownership', u'debat'] [u'bank', u'net', u'profit'] [u'belgian', u'rival', u'readi', u'battl'] [u'blast', u'rock', u'coalit', u'baghdad', u'headquart'] [u'board', u'worri', u'increas', u'complaint'] [u'bomb', u'explod', u'near', u'afghan', u'offic'] [u'bulk', u'bill', u'rat', u'free', u'fall'] [u'bush', u'deni', u'iraq'] [u'bushfir', u'inquiri', u'find', u'expect', u'today'] [u'bushman', u'william', u'state', u'funer'] [u'bushrang', u'surviv', u'scare', u'gabba'] [u'cambodian', u'parti', u'form', u'coalit', u'govern'] [u'caretak', u'tri', u'hide', u'dead', u'british', u'schoolgirl'] [u'celt', u'count', u'home', u'advantag', u'stay', u'chase'] [u'ceremoni', u'swear', u'pngs', u'delay'] [u'chemic', u'compani', u'report', u'annual', u'profit'] [u'china', u'beer', u'compani', u'stock', u'freez', u'chairman'] [u'chip', u'fish', u'help', u'poacher'] [u'christma', u'alert', u'boat', u'arriv'] [u'claim', u'aust', u'troop', u'tortur', u'timor', u'militiamen'] [u'claim', u'brigitt', u'rais', u'fund', u'aust', u'indian'] [u'claim', u'propos', u'airspac', u'wont', u'suit', u'australia'] [u'confer', u'focus', u'stronger', u'govern'] [u'confus', u'britain', u'navi', u'ship'] [u'costello', u'return', u'ireland', u'franc'] [u'council', u'inject', u'fund', u'needl', u'dispos', u'plan'] [u'court', u'grant', u'bail', u'convict'] [u'court', u'uphold', u'khmer', u'roug', u'colonel', u'sentenc'] [u'crocodil', u'hunter', u'choos', u'reptil', u'polit'] [u'disgrac', u'magistr', u'strike', u'legal', u'roll'] [u'dollar', u'climb', u'ahead', u'rat', u'decis'] [u'dollar', u'climb', u'wake', u'rate', u'rise'] [u'domest', u'visitor', u'domin', u'tourism'] [u'drunken', u'finn', u'jail', u'botch', u'bank', u'robberi'] [u'consid', u'gulf', u'contamin', u'test'] [u'economist', u'rat', u'rise'] [u'egan', u'respons', u'surpris', u'councillor'] [u'elector', u'staff', u'strike', u'disput'] [u'elector', u'go', u'bulk', u'bill', u'trend'] [u'firefight', u'kill', u'chines', u'build', u'collaps'] [u'foreign', u'legion', u'fire', u'english', u'giant'] [u'minist', u'help', u'identifi', u'secur'] [u'friend', u'farewel', u'marathon', u'legend', u'young'] [u'fund', u'cut', u'threaten', u'research', u'progress', u'prize'] [u'game', u'group', u'announc', u'merger', u'plan'] [u'liabil', u'issu'] [u'govern', u'face', u'battl', u'asylum', u'seeker'] [u'govt', u'consid', u'senat', u'recal', u'milit', u'group'] [u'govt', u'defend', u'croc', u'hunter', u'quarantin'] [u'govt', u'issu', u'challeng', u'asylum', u'seeker'] [u'govt', u'overreact', u'excis', u'push', u'opposit', u'say'] [u'govt', u'put', u'forward', u'anti', u'terror'] [u'govt', u'reaffirm', u'commit', u'health', u'servic'] [u'graffiti', u'gang', u'violenc', u'focus'] [u'green', u'question', u'canberra', u'spacial', u'plan'] [u'group', u'blame', u'hous', u'boom', u'rat', u'rise'] [u'gunn', u'begin', u'plantat', u'woodchip', u'export'] [u'hear', u'start', u'accus', u'heroin', u'smuggler'] [u'holden', u'open', u'plant'] [u'hop', u'fade', u'indonesian', u'flood', u'rescu'] [u'independ', u'school', u'question', u'insur', u'hike'] [u'injuri', u'england', u'catt'] [u'inquiri', u'urg', u'nation', u'bushfir', u'approach'] [u'didnt', u'attack', u'british', u'troop', u'bloodi', u'sunday'] [u'iranian', u'hardlin', u'anti', u'sentiment'] [u'want', u'black', u'say', u'caucau'] [u'jail', u'nation', u'founder', u'appeal'] [u'jone', u'drop', u'roff', u'burk'] [u'jone', u'drop', u'roff', u'pick', u'tuqiri', u'mortlock'] [u'katich', u'lead', u'blue', u'fightback'] [u'melanesian', u'brotherhood', u'buri', u'today'] [u'leed', u'slug', u'viduka', u'fine'] [u'letter', u'show', u'hickss', u'condit', u'deterior', u'father'] [u'liberian', u'rebel', u'govt', u'fighter', u'order'] [u'makyb', u'diva', u'trainer', u'keep', u'option', u'open'] [u'mamool', u'futur', u'doubt', u'injuri'] [u'jail', u'south', u'break', u'hill', u'stab'] [u'plead', u'guilti', u'manslaught', u'babi'] [u'medic', u'panel', u'examin', u'man', u'case', u'damag'] [u'miss', u'teenag', u'bodi', u'creek', u'bank'] [u'mitchel', u'wari', u'desper', u'bok'] [u'affect', u'gastro', u'outbreak'] [u'mourner', u'farewel', u'marathon', u'legend', u'young'] [u'mourner', u'farewel', u'marathon', u'legend', u'young'] [u'murdoch', u'appoint', u'rattl', u'bskyb', u'sharehold'] [u'holden', u'plant', u'vote', u'confid'] [u'kill', u'north', u'china', u'explos'] [u'surpris', u'england', u'wale', u'game'] [u'govt', u'dismiss', u'bushfir', u'recommend'] [u'treasur', u'accus', u'tri', u'buri', u'poki'] [u'older', u'peopl', u'risk', u'drown'] [u'oneil', u'warn', u'wallabi', u'earn'] [u'nation', u'founder', u'appeal', u'wrap'] [u'outcri', u'govt', u'island', u'excis'] [u'owen', u'uefa'] [u'pacif', u'island', u'compet', u'countri', u'champ'] [u'polic', u'probe', u'mildura', u'death', u'want', u'woman'] [u'pong', u'order', u'hide', u'ident', u'court', u'tell'] [u'priest', u'trial', u'alleg', u'sexual', u'assault'] [u'critic', u'nsws', u'reprehens', u'tugun', u'bypass'] [u'redpath', u'ralli', u'braveheart'] [u'releas', u'pakistani', u'seek', u'damag', u'guantanamo'] [u'reserv', u'bank', u'lift', u'rat'] [u'get', u'legisl', u'council', u'support'] [u'william', u'shoe'] [u'govt', u'vow', u'tough', u'love', u'vandal', u'gang'] [u'drug', u'tenni', u'becker', u'join', u'rank'] [u'sharon', u'readi', u'resum', u'palestinian', u'talk'] [u'spiderman', u'spin', u'london', u'traffic', u'gridlock'] [u'lankan', u'presid', u'accus', u'tri', u'creat'] [u'lankan', u'presid', u'defend', u'sack'] [u'lankan', u'presid', u'sack', u'minist', u'suspend'] [u'lanka', u'presid', u'declar', u'state', u'emerg'] [u'georg', u'bank', u'record', u'profit'] [u'stockman', u'hall', u'fame', u'honour', u'william'] [u'student', u'drink', u'spike'] [u'sydney', u'council', u'boycott', u'peac', u'prize'] [u'tabcorp', u'share', u'hold', u'pend', u'announc'] [u'taibu', u'matsikenyeri', u'rescu', u'zimbabw'] [u'taskforc', u'releas', u'bushfir', u'land', u'report'] [u'offend', u'appeal', u'sentenc'] [u'theatr', u'fund', u'bring', u'show', u'break', u'hill'] [u'thiev', u'target', u'passport'] [u'judg', u'kill', u'iraq'] [u'matrix', u'film', u'open', u'worldwid', u'simultan'] [u'confirm', u'wound', u'baghdad', u'blast'] [u'trio', u'custodi', u'sydney', u'murder'] [u'tuqiri', u'back', u'code', u'jump', u'trio'] [u'detaine', u'hospit', u'slash'] [u'union', u'boss', u'fin', u'threaten', u'commiss', u'wit'] [u'union', u'stag', u'blockad', u'fremantl', u'port'] [u'report', u'call', u'releas', u'asylum', u'seeker'] [u'vote', u'year', u'cuba', u'trade', u'embargo'] [u'execut', u'mental', u'prison', u'georgia'] [u'network', u'cancel', u'ronald', u'reagan', u'mini', u'seri'] [u'bank', u'seek', u'tackl', u'fraud', u'travel'] [u'govt', u'reject', u'claim', u'quokka', u'mistreat'] [u'wall', u'street', u'settl', u'high'] [u'walsh', u'return', u'suspens', u'quarter'] [u'woman', u'detain', u'stab', u'domest'] [u'zimbabw', u'court', u'wind', u'mugab', u'elect', u'hear'] [u'worker', u'kill', u'india', u'arson', u'attack'] [u'armi', u'personnel', u'face', u'action', u'posit', u'drug'] [u'unemploy', u'drop'] [u'adelaid', u'move', u'notch', u'index'] [u'altern', u'arrang', u'moot', u'surgeon', u'wrangl'] [u'appeal', u'court', u'criticis', u'hanson', u'verdict', u'comment'] [u'argent', u'light', u'cost', u'share'] [u'arm', u'bandit', u'attack', u'shopkeep'] [u'armi', u'drug', u'test', u'deliv', u'disappoint', u'result'] [u'armi', u'dismiss', u'soldier', u'posit', u'drug'] [u'ashrawi', u'choic', u'peac', u'prize', u'howard'] [u'ashwari', u'accept', u'sydney', u'peac', u'prize'] [u'confirm', u'dead', u'indonesian', u'flood'] [u'atsic', u'welcom', u'museum', u'remain', u'report'] [u'aust', u'dollar', u'rise', u'year', u'high'] [u'australian', u'post', u'record', u'loss'] [u'australian', u'jobless', u'rate', u'fall'] [u'backpack', u'number', u'decreas'] [u'barcelona', u'readi', u'forum', u'feast'] [u'beer', u'buoy', u'lion', u'nathan', u'profit'] [u'bega', u'chees', u'achiev', u'export'] [u'birth', u'centr', u'consid', u'midwif', u'afford'] [u'blast', u'rock', u'agenc', u'afghanistan'] [u'blue', u'inning', u'point'] [u'bone', u'return', u'indigen', u'communiti'] [u'book', u'captur', u'chang', u'face', u'midland'] [u'breakthrough', u'medic', u'discoveri', u'bowel', u'diseas'] [u'bunburi', u'hospit', u'nurs', u'oversuppli', u'problem'] [u'busi', u'group', u'seek', u'trade', u'law', u'exempt'] [u'byron', u'shire', u'await', u'safeti', u'plan', u'decis'] [u'cancer', u'council', u'email', u'campaign'] [u'cargo', u'ship', u'crew', u'want', u'safeti', u'clear'] [u'case', u'alleg', u'drug', u'smuggler', u'fetch'] [u'charg', u'recommend', u'justic', u'peac'] [u'china', u'democraci', u'advoc', u'face', u'year', u'jail'] [u'claim', u'rate', u'rise', u'damag', u'busi'] [u'clijster', u'launch', u'titl', u'defenc', u'victori'] [u'cole', u'leav', u'late', u'arsenal', u'celtic', u'hammer'] [u'communiti', u'farewel', u'teach', u'pioneer'] [u'confer', u'focus', u'catchment', u'manag'] [u'convict', u'serial', u'rapist', u'jail'] [u'convict', u'seek', u'earli', u'hear', u'appeal'] [u'council', u'begin', u'local', u'govt', u'confer', u'plan'] [u'council', u'merger', u'inquiri', u'take', u'riverina', u'submiss'] [u'council', u'offer', u'initi', u'support', u'offic'] [u'council', u'urg', u'boost', u'rural', u'subdivis'] [u'council', u'decid', u'appeal', u'servic'] [u'coupl', u'escap', u'injuri', u'light', u'plane', u'crash'] [u'court', u'secur', u'releas', u'arriv'] [u'court', u'decid', u'hanson', u'ettridg', u'fate', u'today'] [u'court', u'say', u'lawyer', u'petit'] [u'court', u'tell', u'olymp', u'shooter', u'diamond', u'unlaw'] [u'court', u'tell', u'rehabilit', u'offend'] [u'declin', u'bulk', u'bill', u'rat', u'worri'] [u'dentist', u'shortag', u'bite', u'kalgoorli', u'boulder'] [u'derbi', u'trial', u'alcohol', u'restrict'] [u'dfat', u'issu', u'travel', u'advisori'] [u'diamond', u'drink', u'polic', u'interview', u'court', u'hear'] [u'disrupt', u'woorabinda', u'phone'] [u'divers', u'industri', u'help', u'region', u'jobless'] [u'dollar', u'jump', u'jobless', u'figur'] [u'doubt', u'cast', u'renmark', u'paringa', u'disadvantag', u'claim'] [u'drug', u'rife', u'armi', u'base', u'committe', u'tell'] [u'earli', u'man', u'penchant', u'clean', u'teeth', u'discov'] [u'arrest', u'polic', u'drug', u'oper'] [u'erectil', u'tissu', u'octopus', u'finger'] [u'esper', u'reviv', u'ranger', u'patrol'] [u'expert', u'highlight', u'indigen', u'govern', u'issu'] [u'expert', u'decid', u'canola', u'crop'] [u'fatah', u'meet', u'break', u'agreement'] [u'father', u'children', u'strand', u'bali', u'grant'] [u'identifi', u'hijack', u'septemb'] [u'identifi', u'possibl', u'septemb', u'hijack'] [u'fear', u'rate', u'rise', u'hurt', u'farmer'] [u'femal', u'student', u'cook', u'reform', u'protest'] [u'final', u'pois'] [u'fina', u'test', u'sampl'] [u'firm', u'name', u'work', u'lawrenc', u'hargrav', u'drive'] [u'soldier', u'wound', u'iraq', u'attack'] [u'franc', u'prove', u'quarter', u'final'] [u'fund', u'boost', u'northam', u'revamp'] [u'futur', u'secur', u'jadda', u'centr'] [u'geraldton', u'dedic', u'build'] [u'gillespi', u'club', u'comeback'] [u'global', u'woe', u'toll', u'backpack', u'number'] [u'good', u'evalu', u'albani', u'jail'] [u'govern', u'seek', u'clearer', u'sacr', u'site', u'evid'] [u'govt', u'dismiss', u'labor', u'watchdog', u'plan'] [u'govt', u'urg', u'implement', u'recommend'] [u'govt', u'take', u'board', u'aquif', u'concern'] [u'grand', u'prix', u'post', u'record', u'loss'] [u'group', u'track', u'countrylink', u'meet'] [u'hansen', u'face', u'tough', u'select', u'choic'] [u'hanson', u'ettridg', u'wait', u'appeal'] [u'hanson', u'thank', u'support', u'jail', u'releas'] [u'health', u'group', u'upbeat', u'child', u'protocol'] [u'hospit', u'closur', u'time', u'frame', u'shock', u'group'] [u'howard', u'flag', u'willing', u'look', u'childcar'] [u'howard', u'shower', u'prais', u'govt', u'jobless', u'figur'] [u'ident', u'paper', u'suspect', u'asylum', u'boat'] [u'idol', u'substanc', u'chief', u'say'] [u'indonesia', u'extend', u'martial', u'aceh'] [u'inventor', u'consid', u'phone', u'book', u'honour'] [u'inventor', u'unveil', u'handi', u'phone'] [u'irrig', u'group', u'hear', u'alloc', u'appeal'] [u'irrig', u'group', u'seek', u'develop', u'respit'] [u'israel', u'open', u'west', u'bank', u'town'] [u'japan', u'critic', u'north', u'korea', u'racial', u'slur'] [u'jobless', u'figur', u'govt', u'polici', u'work'] [u'jobless', u'figur'] [u'johnni', u'cash', u'win', u'countri', u'music', u'honour'] [u'judg', u'block', u'bush', u'anti', u'abort'] [u'king', u'equal', u'win', u'streak'] [u'labor', u'plan', u'block', u'build', u'legisl'] [u'labor', u'propos', u'watchdog', u'terror', u'law'] [u'ladi', u'underway', u'flemington'] [u'lawrenc', u'favourit', u'presid'] [u'leonard', u'equal', u'rugbi', u'record'] [u'light', u'plane', u'crash', u'western', u'victoria'] [u'malaysia', u'ban', u'ghost', u'tale'] [u'charg', u'assault', u'woman'] [u'manoora', u'arriv', u'sydney'] [u'manoora', u'return', u'sydney'] [u'court', u'charg'] [u'ancient', u'olymp', u'reviv'] [u'michalak', u'make', u'mark', u'franc'] [u'microsoft', u'offer', u'cash', u'reward', u'anti', u'virus', u'fight'] [u'millionair', u'face', u'legal', u'action', u'welfar'] [u'centr', u'hunter', u'promis', u'benefit'] [u'mine', u'firm', u'worker', u'consid', u'unrest'] [u'monaco', u'tear', u'deportivo', u'apart', u'goal', u'thriller'] [u'more', u'plain', u'council', u'record', u'budget', u'deficit'] [u'wind', u'farm', u'blade', u'factori', u'talk'] [u'flag', u'eureka', u'debat'] [u'say', u'plane', u'secur'] [u'unimpress', u'theatr', u'fund'] [u'upset', u'tugun', u'bypass', u'decis'] [u'nat', u'want', u'region', u'hospit', u'fund', u'boost'] [u'newcastl', u'host', u'mental', u'health', u'confer'] [u'medic', u'indemn', u'insur', u'legisl'] [u'news', u'corp', u'profit', u'doubl', u'boost', u'movi'] [u'unemploy', u'steadi'] [u'jobless', u'rate'] [u'laugh', u'terror', u'earthquak', u'warn'] [u'dead', u'injur', u'sydney', u'crash'] [u'nation', u'founder', u'know', u'verdict', u'today'] [u'open', u'loom', u'sober', u'shelter'] [u'pandora', u'reveal', u'maritim', u'secret'] [u'pari', u'lingeri', u'store', u'strip', u'shopper', u'inhibit'] [u'perugia', u'soccer', u'libyan', u'leader', u'fail', u'drug'] [u'philippin', u'criticis', u'terror', u'warn'] [u'plan', u'protect', u'indigen', u'girl'] [u'costello', u'rat', u'comment', u'critic'] [u'play', u'rat', u'hike', u'fear'] [u'welcom', u'law', u'aid', u'return', u'indigen'] [u'polic', u'consid', u'attack'] [u'polic', u'crack', u'drink', u'driver'] [u'polic', u'drug', u'inquiri', u'begin'] [u'polic', u'hunt', u'mask', u'home', u'invad'] [u'polic', u'worth', u'ecstasi', u'tablet'] [u'polic', u'question', u'sydney', u'shoot'] [u'polic', u'question', u'trio', u'sydney', u'shoot'] [u'polit', u'fallout', u'predict', u'hanson', u'ettridg'] [u'star', u'valanc', u'order'] [u'professor', u'donat', u'priceless', u'chines', u'ceram'] [u'rapist', u'sentenc', u'lengthi', u'jail', u'term'] [u'redback', u'seek', u'quick', u'run', u'tiger'] [u'redback', u'tiger', u'play', u'draw'] [u'region', u'airlin', u'gain', u'investor', u'continu', u'trade'] [u'righteous', u'brother', u'dead', u'hotel', u'room'] [u'roddick', u'land', u'easier', u'master', u'draw'] [u'rossouw', u'injur', u'springbok', u'niekerk'] [u'safeti', u'campaign', u'signal', u'rail', u'return'] [u'govt', u'reject', u'liabil', u'plan'] [u'grain', u'farmer', u'look', u'good', u'harvest'] [u'sar', u'vaccin', u'time', u'away'] [u'school', u'tell', u'disadvantag', u'boundari', u'chang'] [u'scientist', u'probe', u'insect', u'forest', u'damag'] [u'scotland', u'wari', u'aussi', u'winger'] [u'scot', u'reshuffl', u'forward', u'pack', u'quarter', u'final'] [u'senat', u'recal', u'disrupt', u'lib', u'preselect', u'lobbi'] [u'senat', u'stoush', u'loom', u'build', u'legisl'] [u'separ', u'fund', u'seek', u'corridor'] [u'share', u'market', u'pick'] [u'small', u'council', u'happi', u'relax', u'record', u'keep'] [u'south', u'australia', u'look', u'boost', u'popul', u'growth'] [u'special', u'harmoni', u'put', u'smile', u'freedman', u'face'] [u'special', u'harmoni', u'put', u'smile', u'freedman', u'face'] [u'speed', u'limit', u'road', u'sign'] [u'speedway', u'get', u'cleaner', u'greener'] [u'spiderman', u'end', u'crane', u'protest'] [u'springbok', u'game', u'plan', u'shroud', u'mysteri'] [u'squadron', u'home', u'solomon', u'stint'] [u'lankan', u'promis', u'polit', u'crisi'] [u'streak', u'put', u'zimbabw', u'seat'] [u'studi', u'highlight', u'goldfield', u'shire', u'woe'] [u'surpris', u'tabcorp', u'lift', u'share'] [u'suspect', u'asylum', u'seeker', u'longer', u'australia'] [u'tabcorp', u'anti', u'competit', u'beatti', u'say'] [u'teacher', u'honour', u'civic', u'effort'] [u'teen', u'face', u'court', u'homeless', u'man', u'death'] [u'teen', u'warn', u'drive', u'licenc', u'scam'] [u'ticket', u'unsold', u'world', u'quarter'] [u'tiger', u'pressur', u'finish'] [u'treasur', u'question', u'reserv', u'bank', u'drought', u'read'] [u'unemploy', u'fall'] [u'unemploy', u'steadi'] [u'unemploy', u'tip', u'stay'] [u'unemploy'] [u'report', u'highlight', u'girl', u'educ', u'woe'] [u'convict', u'serial', u'killer', u'want', u'question'] [u'delay', u'free', u'trade', u'pact', u'lanka', u'crisi'] [u'global', u'rival', u'gear', u'presid'] [u'killer', u'admit', u'murder'] [u'drive', u'broad', u'clone', u'stall'] [u'plan', u'downsiz', u'forc', u'iraq'] [u'veteran', u'yachti', u'head', u'pittwat', u'coff', u'race'] [u'jobless', u'rate'] [u'volunt', u'play', u'bigger', u'manag'] [u'voyag', u'take', u'greet', u'solar', u'edg'] [u'wallabi', u'hop', u'face', u'sudden', u'death'] [u'mine', u'compani', u'win', u'appeal', u'billiton'] [u'support', u'bushfir', u'report', u'find'] [u'weather', u'studi', u'embrac', u'indigen', u'knowledg'] [u'wider', u'mobil', u'phone', u'coverag', u'plan'] [u'thiev', u'leav', u'hand'] [u'young', u'socceroo', u'colombia'] [u'zimbabwean', u'economi', u'rife', u'corrupt', u'confer'] [u'aborigin', u'remain', u'return', u'warrnambool'] [u'academ', u'doubt', u'hanson', u'comeback'] [u'lib', u'facil', u'need', u'mental'] [u'relax', u'water', u'restrict'] [u'afghan', u'film', u'pick', u'london', u'prize'] [u'black', u'batter', u'springbok'] [u'alleg', u'peopl', u'smuggler', u'arriv', u'australia'] [u'alleg', u'peopl', u'smuggler', u'face', u'court'] [u'unhappi', u'govt', u'hospit', u'board', u'decis'] [u'annan', u'back', u'stanc', u'end', u'cuban', u'embargo'] [u'argentina', u'block', u'fish', u'track', u'plan'] [u'arm', u'hostag', u'moscow', u'soro', u'institut'] [u'arson', u'suspect', u'joineri', u'blaze'] [u'asylum', u'seeker', u'unlaw', u'detain', u'court', u'tell'] [u'aussi', u'dollar', u'slip'] [u'author', u'reserv', u'decis', u'suspect', u'crop'] [u'bank', u'firmer', u'share', u'market', u'end', u'week', u'higher'] [u'bank', u'pass', u'rate', u'rise'] [u'blue', u'chase', u'warrior', u'target'] [u'soni', u'lead', u'music', u'merger', u'race'] [u'branson', u'announc', u'virgin', u'rout'] [u'brigitt', u'passport', u'matter', u'french', u'govt', u'say'] [u'british', u'conserv', u'choos', u'howard', u'leader'] [u'british', u'roll', u'injuri', u'kangaroo'] [u'break', u'hill', u'jobless', u'rate', u'rise'] [u'brumbi', u'arthur', u'winner'] [u'build', u'approv', u'increas'] [u'bush', u'outlin', u'polici', u'middl', u'east'] [u'fast', u'train', u'latrob', u'valley'] [u'probe', u'integr', u'aborigin'] [u'cannabi', u'help', u'patient', u'studi', u'find'] [u'kill', u'dog'] [u'central', u'jobless', u'rate', u'fall'] [u'central', u'appoint', u'coach'] [u'china', u'petroleum', u'group', u'tour', u'north'] [u'claim', u'asylum', u'seeker', u'boat', u'damag'] [u'claim', u'apprentic', u'pay'] [u'clijster', u'book', u'semi', u'spot', u'henin', u'hardenn', u'triumph'] [u'coalit', u'troop', u'kill', u'iraq'] [u'commiss', u'fast', u'track', u'salin', u'review'] [u'consum', u'shift', u'drought', u'hit', u'wine', u'industri'] [u'corpor', u'receiv', u'youth', u'leadership', u'fund'] [u'council', u'downsiz', u'confer', u'conting'] [u'council', u'control', u'stock', u'rout'] [u'council', u'vote', u'pool', u'smoke', u'motion'] [u'court', u'return', u'diamond', u'gun', u'firearm', u'licenc'] [u'democrat', u'hope', u'decis', u'lead', u'detent'] [u'deregul', u'blame', u'closur', u'dairi'] [u'desert', u'test', u'help', u'solv', u'life', u'mar', u'puzzl'] [u'detaine', u'riot', u'port', u'hedland'] [u'doc', u'face', u'action', u'grand', u'prix', u'track', u'death'] [u'doctor', u'back', u'kimberley', u'alcohol', u'restrict'] [u'doctor', u'criticis', u'investig', u'track', u'marshal'] [u'dont', u'expect', u'money', u'beatti', u'tell', u'hanson'] [u'doubt', u'cast', u'irrig', u'plan'] [u'doubt', u'cast', u'prawn', u'season', u'delay'] [u'draper', u'make', u'shaki', u'start', u'golf', u'career'] [u'draper', u'golf', u'debut', u'short'] [u'warn', u'loom', u'danger'] [u'earli', u'seve', u'trophi', u'advantag', u'britain', u'ireland'] [u'elder', u'unhappi', u'govt', u'sacr', u'site', u'dismiss'] [u'enzing', u'scoop', u'prize', u'pool', u'hors', u'trial'] [u'nation', u'speak', u'hanson', u'jail'] [u'expert', u'destroy', u'wwii', u'stockpil', u'china'] [u'expert', u'warn', u'loom', u'stinger', u'danger'] [u'fear', u'settlement', u'strategi', u'overload', u'council'] [u'figur', u'highlight', u'prosper', u'crow', u'nest', u'shire'] [u'film', u'industri', u'focus', u'south', u'coast'] [u'firefight', u'battl', u'pine', u'blaze'] [u'firefight', u'battl', u'sawtel', u'bush', u'blaze'] [u'flintoff', u'destroy', u'bangladesh', u'bat', u'attack'] [u'flintoff', u'inspir', u'england', u'seven', u'wicket'] [u'priest', u'plead', u'guilti', u'assault'] [u'rwandan', u'minist', u'face', u'genocid', u'charg'] [u'foster', u'float', u'spin', u'compani'] [u'pride', u'march', u'attract', u'peopl'] [u'giant', u'bounc', u'razorback'] [u'gold', u'coast', u'council', u'happi', u'rail', u'upgrad', u'plan'] [u'govt', u'announc', u'militari', u'shop', u'list'] [u'grant', u'grain', u'monitor', u'technolog'] [u'green', u'push', u'disallow', u'excis', u'regul'] [u'group', u'complet', u'nickel', u'project', u'impact', u'studi'] [u'guard', u'clear', u'prison', u'murder'] [u'gympi', u'welcom', u'hanson', u'releas'] [u'hansen', u'reward', u'black', u'tyro'] [u'hanson', u'case', u'prompt', u'appeal', u'bail', u'review'] [u'hanson', u'case', u'spur', u'prosecut', u'offic', u'review'] [u'hanson', u'releas', u'fuel', u'comeback', u'specul'] [u'hanson', u'releas', u'beatti', u'consid', u'bail', u'reform'] [u'hanson', u'tast', u'freedom', u'gold', u'coast'] [u'hanson', u'woe', u'reignit', u'nation'] [u'harri', u'happi', u'hanson', u'senat'] [u'harri', u'offer', u'senat', u'posit', u'hanson'] [u'harri', u'potter', u'trounc', u'tanya', u'grotter', u'dutch', u'court'] [u'hatfield', u'death', u'natur', u'polic'] [u'hors', u'trial', u'kick', u'adelaid'] [u'hous', u'boom', u'predict', u'flow', u'water'] [u'howard', u'crean', u'head', u'london'] [u'huge', u'communic', u'breakdown', u'brigitt'] [u'human', u'right', u'commission', u'call', u'child'] [u'period', u'grace', u'bros', u'store', u'close'] [u'iraqi', u'ancient', u'treasur', u'baghdad', u'cesspool'] [u'ireland', u'need', u'kean', u'say', u'oshea'] [u'irish', u'coach', u'angri', u'train'] [u'irrig', u'trust', u'chair', u'confid', u'futur'] [u'italian', u'defend', u'putin', u'human', u'right', u'record'] [u'jobless', u'rate', u'fall', u'albani'] [u'jone', u'say', u'wallabi', u'play', u'safe'] [u'kiribati', u'prepar', u'backlash', u'recognis'] [u'koutoufid', u'name', u'carlton', u'captain'] [u'labor', u'demand', u'govt', u'releas', u'detail', u'asylum', u'boat'] [u'lawyer', u'lose', u'bring', u'asylum', u'seeker'] [u'lawyer', u'wait', u'confirm', u'chamber', u'test'] [u'liber', u'parti', u'converg', u'shepparton'] [u'liverpool', u'newcastl', u'uefa', u'drive', u'seat'] [u'liverpool', u'brace', u'unit', u'test'] [u'local', u'lender', u'consid', u'lift', u'rat'] [u'magistr', u'say', u'diamond', u'sober', u'polic'] [u'charg', u'sydney', u'shoot'] [u'mancini', u'seek', u'derbi', u'delight'] [u'jail', u'infant', u'son', u'manslaught'] [u'polic', u'reach', u'settlement'] [u'map', u'program', u'draw', u'acclaim'] [u'maryborough', u'council', u'give', u'promenad', u'plan'] [u'matrix', u'final', u'pull'] [u'mcmillan', u'styri', u'spur', u'black', u'cap'] [u'medal', u'honour', u'bega', u'firefight'] [u'meet', u'seek', u'local', u'input', u'season'] [u'west', u'unemploy', u'drop'] [u'millionair', u'stoddart', u'consid', u'price', u'airlin'] [u'minist', u'pledg', u'local', u'govt', u'reform', u'consult'] [u'minist', u'hear', u'nurs', u'home', u'concern'] [u'morley', u'move', u'prop', u'ash', u'test', u'open'] [u'happi', u'hanson', u'releas'] [u'open', u'feder', u'elector', u'offic'] [u'mundin', u'cruz', u'honour', u'indigen', u'award'] [u'nation', u'bank', u'concern', u'split'] [u'navi', u'tow', u'asylum', u'seeker', u'boat'] [u'nelson', u'push', u'higher', u'educ', u'reform'] [u'nelson', u'reject', u'senat', u'higher', u'educ', u'inquiri'] [u'hospit', u'queenstown'] [u'pharmaci', u'open', u'door', u'dampier'] [u'nikol', u'clear', u'mummifi', u'ride'] [u'korea', u'nuclear', u'deterr', u'readi', u'envoy'] [u'probe', u'crash', u'home', u'build', u'plane'] [u'govt', u'consid', u'return', u'hospit', u'public'] [u'court', u'consid', u'asylum', u'seeker', u'case'] [u'bomber', u'champ', u'long'] [u'nation', u'candid', u'reliev', u'hanson', u'releas'] [u'outlook', u'stray', u'anim', u'port', u'lincoln', u'look'] [u'outlook', u'posit', u'despit', u'rainfal', u'part'] [u'owner', u'face', u'slug', u'unregist', u'dog'] [u'palestinian', u'kill', u'gaza', u'strip'] [u'palestinian', u'leader', u'deadlock', u'ministeri'] [u'palestinian', u'shoot', u'west', u'bank', u'report'] [u'palestinian', u'woman', u'get', u'life', u'internet', u'murder'] [u'peac', u'prize', u'winner', u'ashrawi', u'embrac', u'goodwil'] [u'defend', u'right', u'speak', u'court', u'matter'] [u'poland', u'suffer', u'casualti', u'iraq'] [u'polic', u'continu', u'probe', u'maclean', u'death'] [u'polic', u'probe', u'stratford', u'slay'] [u'polic', u'station', u'revamp', u'begin'] [u'premier', u'suggest', u'border', u'solut', u'tugan', u'bypass'] [u'princ', u'charl', u'deni', u'mysteri', u'alleg'] [u'protest', u'fight', u'continu', u'rail', u'servic'] [u'public', u'elector', u'redistribut'] [u'push', u'continu', u'high', u'school', u'fund'] [u'leader', u'promis', u'review', u'wake', u'hanson'] [u'ranger', u'face', u'season', u'meltdown'] [u'real', u'rock', u'roberto', u'carlo', u'injuri'] [u'region', u'unemploy', u'drop'] [u'report', u'say', u'cannabi', u'main', u'concern', u'teenag'] [u'riverina', u'promot', u'drug', u'free'] [u'riverland', u'fountain', u'book'] [u'russian', u'final'] [u'rwandan', u'minist', u'trial', u'genocid'] [u'court', u'order', u'sentenc', u'gunman'] [u'govt', u'bolster', u'indigen', u'cultur', u'protect'] [u'sammaki', u'reunit', u'children'] [u'saudi', u'raid', u'milit', u'hideout', u'kill'] [u'scot', u'slap', u'jone', u'resort', u'taunt'] [u'senat', u'report', u'call', u'delay', u'educ', u'reform'] [u'senat', u'vote', u'group', u'terror', u'list'] [u'sharp', u'join', u'bellami', u'storm'] [u'shepparton', u'shoot', u'trigger', u'polic', u'probe'] [u'arrest', u'melbourn', u'drug', u'raid'] [u'soldier', u'kill', u'iraq', u'blackhawk', u'crash'] [u'smart', u'rugbi', u'jone'] [u'snowi', u'engin', u'corp', u'plan', u'celebr'] [u'soldier', u'court', u'neglig', u'drive', u'charg'] [u'agricultur'] [u'lankan', u'presid', u'withdraw', u'state', u'emerg'] [u'statehood', u'recognis', u'indigen', u'right', u'land'] [u'statist', u'drop', u'teen', u'pregnanc'] [u'strong', u'expect', u'kalkurla', u'grove', u'land'] [u'studi', u'show', u'fall', u'smoke', u'cancer', u'rat'] [u'styri', u'lose', u'match', u'dissent'] [u'surgeon', u'contract', u'near', u'resolut'] [u'survey', u'quiz', u'public', u'crime', u'woe'] [u'sydney', u'busi', u'rob'] [u'singl', u'mother', u'question', u'govt', u'inquiri'] [u'teen', u'guilti', u'sydney', u'train', u'death'] [u'territori', u'minist', u'say', u'support', u'power'] [u'wicket', u'price', u'put', u'zim', u'charg'] [u'timberlak', u'toast', u'europ', u'music', u'award'] [u'time', u'stand', u'deliv', u'bushrang'] [u'toodyay', u'claim', u'life'] [u'toowoomba', u'prepar', u'schaeffer', u'shield', u'clash'] [u'tragic', u'loss', u'basketbal', u'captain', u'maher'] [u'transjet', u'servic', u'north', u'coast', u'communiti'] [u'doctor', u'face', u'disciplin', u'grand', u'prix', u'track'] [u'move', u'protect', u'titan', u'wreck'] [u'panel', u'derail', u'bush', u'drive', u'broad', u'clone'] [u'peacekeep', u'attack', u'congo'] [u'right', u'envoy', u'meet'] [u'urban', u'croc', u'rais', u'eyebrow'] [u'regul', u'target', u'spam', u'scam'] [u'reject', u'saddam', u'minut', u'peac', u'deal', u'white'] [u'troop', u'presenc', u'iraq'] [u'warn', u'combat', u'troop', u'readi', u'iraq'] [u'victorian', u'die', u'snorkel', u'trip'] [u'viduka', u'leed', u'comeback'] [u'waff', u'want', u'money', u'grain', u'grower'] [u'govt', u'consid', u'option', u'avert', u'teacher', u'strike'] [u'wallabi', u'pace'] [u'waugh', u'guid', u'blue', u'victori'] [u'weather', u'warm', u'grower', u'hop'] [u'webber', u'launch', u'tassi', u'challeng'] [u'webber', u'start', u'trek', u'chariti'] [u'wilko', u'fear', u'failur', u'wale'] [u'williamtown', u'blaze', u'take', u'toll', u'wildlif'] [u'woodbridg', u'bid', u'master', u'record'] [u'wood', u'singh', u'struggl', u'howel', u'perri', u'share'] [u'worsley', u'make', u'burner', u'emiss', u'pledg'] [u'yamba', u'inspector', u'fight', u'compens'] [u'abetz', u'ticket', u'spot', u'uncertain', u'despit', u'cabinet', u'post'] [u'age', u'popul', u'put', u'load', u'cancer', u'servic'] [u'black', u'book', u'semi', u'final', u'berth'] [u'black', u'sink', u'springbok'] [u'allenbi', u'texan', u'meltdown'] [u'anderson', u'back', u'roo', u'ash', u'open'] [u'annan', u'back', u'rapid', u'secur', u'council', u'reform'] [u'antarct', u'watchdog', u'black', u'list', u'pirat', u'fish'] [u'arson', u'suspect', u'buddhist', u'templ'] [u'asylum', u'seeker'] [u'australian', u'accus', u'spi', u'prepar', u'return'] [u'australia', u'humanitarian', u'support', u'iraq', u'invalu'] [u'bali', u'bomb', u'suspect', u'implic', u'sulawesi', u'attack'] [u'barnett', u'keep', u'profil', u'ahead', u'emerg'] [u'beatti', u'hanson', u'underdog', u'status'] [u'bosnian', u'democraci', u'film', u'win', u'raindanc', u'acclaim'] [u'bosnia', u'offer', u'send', u'troop', u'iraq', u'host', u'base'] [u'brack', u'honour', u'freeway', u'pledg', u'costello', u'say'] [u'brazil', u'lawmak', u'convict', u'keep', u'slave'] [u'burma', u'refus', u'accept', u'freedom'] [u'boost', u'breast', u'cancer', u'screen', u'servic'] [u'canberra', u'host', u'battl', u'home', u'brew'] [u'cathol', u'church', u'accus', u'forc', u'adopt'] [u'belt', u'freedom', u'sleep', u'messag'] [u'chamber', u'suspend', u'second', u'test'] [u'china', u'free', u'australian'] [u'circl', u'sentenc', u'trial', u'win', u'bipartisan', u'support'] [u'club', u'support', u'ralli', u'poki', u'rise'] [u'confer', u'celebr', u'sister', u'citi', u'relat'] [u'customari', u'inquiri', u'moot', u'region', u'justic', u'plan'] [u'dynamit', u'lade', u'italian', u'detain', u'quito', u'airport'] [u'einstein', u'take', u'earli', u'lead', u'best', u'german', u'poll'] [u'england', u'rock', u'injuri'] [u'england', u'balshaw', u'wale', u'game'] [u'expert', u'gather', u'constitut', u'confer'] [u'fatah', u'shun', u'quri', u'secur', u'minist', u'nomine'] [u'feder', u'injur', u'accid'] [u'fiji', u'financ', u'minist', u'tip', u'strong', u'growth'] [u'pride', u'march', u'stag', u'adelaid'] [u'dead', u'helicopt', u'crash'] [u'want', u'arm', u'home', u'invas'] [u'franc', u'open', u'space', u'launch', u'russia'] [u'free', u'sammaki', u'await', u'children', u'arriv'] [u'giffin', u'scotland', u'clash'] [u'govt', u'deni', u'tight', u'budget', u'polic', u'rise'] [u'grazier', u'histori', u'brand', u'coramba'] [u'hanson', u'case', u'highlight', u'fund', u'shortfal'] [u'hanson', u'debat', u'point', u'robust', u'democraci', u'judg'] [u'helicopt', u'crash', u'north'] [u'henin', u'hardenn', u'secur', u'spot'] [u'hindu', u'staff', u'arrest', u'anti', u'govern', u'articl'] [u'hogg', u'sign', u'warwickshir'] [u'hope', u'beetl', u'releas', u'destroy', u'noxious', u'weed'] [u'howard', u'arriv', u'talk'] [u'howard', u'head', u'london'] [u'howard', u'reject', u'critic', u'brigitt', u'secur'] [u'reveal', u'champion', u'trophi', u'venu'] [u'hero', u'say', u'privat', u'lynch'] [u'industri', u'welcom', u'govt', u'plan', u'boost', u'fish', u'sector'] [u'intern', u'confer', u'kick', u'hobart'] [u'interst', u'brick', u'import', u'eas', u'shortag'] [u'iran', u'pois', u'meet', u'nuclear', u'program'] [u'ireland', u'true', u'test', u'franc'] [u'ireland', u'want', u'standout', u'lineout'] [u'israel', u'gaza', u'raid', u'kill'] [u'jordan', u'investig', u'ban', u'cartoon'] [u'journalist', u'riski', u'china'] [u'kiwi', u'punter', u'back', u'bok'] [u'lazio', u'mihajlov', u'ban', u'kick', u'spit'] [u'unemploy', u'expens', u'time', u'job'] [u'maher', u'tragedi', u'overshadow', u'build'] [u'machin', u'chess', u'enter', u'virtual', u'realiti'] [u'mead', u'tell', u'wallabi', u'stop', u'look', u'leagu'] [u'melbourn', u'artist', u'award', u'paint', u'prize'] [u'militari', u'upgrad', u'afford', u'govt'] [u'murphi', u'triumph', u'home', u'turf'] [u'myskina', u'stay', u'aliv'] [u'nemer', u'sentenc', u'crime', u'victim', u'rann'] [u'north', u'korea', u'test', u'free', u'nuclear', u'weapon'] [u'govt', u'seek', u'young', u'voic'] [u'cautious', u'dali', u'river', u'develop'] [u'resid', u'prepar', u'earli', u'cyclon', u'season'] [u'olymp', u'scrape', u'past', u'wolv'] [u'opposit', u'call', u'intellig', u'link', u'inquiri'] [u'palestinian', u'kill', u'west', u'bank', u'clash', u'report'] [u'pasminco', u'apologis', u'licenc', u'breach'] [u'ownership', u'make', u'rabi', u'danger'] [u'philippin', u'airport', u'seig', u'end', u'dead'] [u'pierc', u'mauresmo', u'french', u'dream', u'team'] [u'polic', u'appeal', u'stab', u'inform'] [u'polic', u'investig', u'murder', u'year', u'girl'] [u'polit', u'activist', u'kill', u'kashmir'] [u'poor', u'condit', u'hamper', u'helicopt', u'crash', u'probe'] [u'powel', u'applaud', u'symbol', u'east', u'peac', u'plan'] [u'power', u'blackout', u'hit', u'chile'] [u'price', u'take', u'best', u'windi', u'hang'] [u'professor', u'dismiss', u'green', u'nazi', u'comparison'] [u'cross', u'pull', u'baghdad', u'basra'] [u'resurg', u'bullet', u'sink', u'pirat'] [u'salt', u'club', u'scrutini', u'brawl'] [u'samoa', u'commerci', u'rugbi', u'go', u'break'] [u'search', u'miss', u'year', u'resum'] [u'secret', u'nation', u'park', u'talk', u'reveal'] [u'shogun', u'lodg', u'collaps', u'die', u'race'] [u'shogun', u'lodg', u'die', u'winner', u'boss'] [u'slay', u'schoolgirl', u'bodi', u'burn', u'ditch'] [u'sorenstam', u'shoot', u'japanes', u'defenc'] [u'sorenstam', u'shoot', u'clear', u'japan'] [u'south', u'african', u'rugbi', u'boss', u'criticis', u'lack'] [u'specialist', u'boost', u'brisban', u'cancer', u'servic'] [u'lankan', u'presid', u'call', u'uniti', u'govern'] [u'stang', u'verg', u'quit', u'iraq'] [u'surpris', u'unemploy', u'drop', u'boost', u'bush'] [u'swiss', u'support', u'smoker', u'quit'] [u'taliban', u'seek', u'leverag', u'hostag', u'take'] [u'businessman', u'win', u'gold', u'medal', u'honour'] [u'taylor', u'ramp', u'secur', u'offer', u'bounti'] [u'teen', u'kill', u'south', u'yarra', u'nightclub', u'fight'] [u'teen', u'stab', u'restaur', u'brawl'] [u'thorn', u'warn', u'black', u'defenc'] [u'tori', u'star', u'portillo', u'quit', u'polit'] [u'trucki', u'suspend', u'port', u'blockag', u'pend', u'load'] [u'trucki', u'consid', u'port', u'disput', u'compromis'] [u'turkey', u'abandon', u'iraq', u'deploy', u'plan'] [u'soldier', u'kill', u'wound', u'fallujah'] [u'embassi', u'review', u'saudi', u'secur'] [u'job', u'figur', u'fail', u'bolster', u'market'] [u'mail', u'centr', u'reopen', u'anthrax', u'scare'] [u'alert', u'qaeda', u'cargo', u'plane', u'plot'] [u'review', u'helicopt', u'defenc', u'iraq'] [u'warplan', u'bomb', u'target', u'saddam', u'hometown'] [u'lib', u'ponder', u'sell', u'eas', u'salin'] [u'victorian', u'liber', u'welcom', u'treasur', u'costello'] [u'victoria', u'road', u'strategi', u'work', u'minist', u'say'] [u'viduka', u'dump', u'leed', u'bust'] [u'wallabi', u'secur', u'semi', u'final', u'spot'] [u'westwood', u'howel', u'seve', u'trophi', u'honour'] [u'woman', u'give', u'birth', u'polic', u'boat'] [u'worker', u'trap', u'build', u'collaps', u'itali'] [u'world', u'scienc', u'forum', u'kick', u'hungari'] [u'sudanes', u'kill', u'alm', u'rush'] [u'kill', u'iranian', u'road', u'accid'] [u'cinematographi', u'win', u'peer', u'acclaim'] [u'abetz', u'retain', u'spot', u'senat', u'ticket'] [u'alcohol', u'cannabi', u'problem', u'drug', u'servic'] [u'report', u'back', u'nest', u'plan'] [u'amalgam', u'domin', u'meet'] [u'arafat', u'keep', u'secur', u'control', u'israel', u'unimpress'] [u'defend', u'price', u'polici'] [u'rue', u'world', u'seat'] [u'bevan', u'guid', u'australia', u'victori'] [u'bevan', u'lift', u'australia', u'victori'] [u'bomber', u'strike', u'saudi', u'capit'] [u'boomer', u'draw', u'dream', u'team'] [u'brisban', u'biki', u'blood', u'bank', u'fundrais'] [u'brisban', u'home', u'buyer', u'shrug', u'rat', u'rise'] [u'british', u'embassi', u'warn', u'possibl', u'terror', u'attack'] [u'calm', u'burn', u'off', u'cloak', u'perth', u'haze'] [u'cambodia', u'celebr', u'year', u'independ'] [u'capriati', u'mauresmo', u'round', u'semi'] [u'celtic', u'titl', u'charg', u'gather', u'head', u'steam'] [u'commonwealth', u'urg', u'rivkin', u'case'] [u'coorong', u'recoveri', u'mark', u'murray', u'dredg', u'mileston'] [u'costello', u'shoot', u'employ'] [u'council', u'warn', u'rate', u'rise', u'road', u'fund', u'end'] [u'danish', u'cross', u'deplor', u'guantanamo', u'detent'] [u'detect', u'join', u'inquiri', u'sydney', u'girl', u'murder'] [u'diaz', u'senior', u'share', u'queensland', u'lead'] [u'disguis', u'pull', u'saudi', u'suicid', u'attack'] [u'england', u'down', u'brave', u'wale'] [u'england', u'prim', u'revitalis', u'wale'] [u'everton', u'ferguson', u'health', u'scare'] [u'explos', u'hear', u'baghdad'] [u'palestinian', u'kill', u'jenin', u'curfew', u'impos'] [u'franc', u'control', u'half', u'time'] [u'franc', u'overpow', u'ireland'] [u'friend', u'corella', u'bird', u'cull'] [u'georgia', u'ballot', u'count', u'halt', u'amid', u'mass', u'protest'] [u'german', u'harri', u'potter', u'spell'] [u'giteau', u'smith', u'face', u'black'] [u'giteau', u'semi', u'final', u'injuri', u'cloud'] [u'glori', u'bounc', u'unit', u'sink', u'striker'] [u'guilti', u'verdict', u'sap', u'live', u'hanson', u'say'] [u'gunner', u'clear', u'leed', u'free', u'fall'] [u'hanson', u'entitl', u'elector', u'refund'] [u'hezbollah', u'israel', u'prison', u'trade', u'uncertain'] [u'high', u'hop', u'second', u'taikonaut', u'launch'] [u'howard', u'attend', u'remembr', u'servic'] [u'hundr', u'protest', u'west', u'bank', u'wall'] [u'injur', u'mortaza', u'rule', u'month'] [u'investig', u'quiz', u'chopper', u'crash', u'wit'] [u'iran', u'promis', u'iaea', u'cooper', u'diplomat'] [u'iran', u'accept', u'tougher', u'inspect'] [u'iraq', u'zone', u'offici'] [u'italian', u'ralli', u'west', u'bank', u'wall'] [u'say', u'olonga'] [u'jail', u'term', u'condemn', u'indian', u'journalist', u'hide'] [u'jone', u'defend', u'fumbl', u'roger'] [u'jone', u'defend', u'wobbl', u'wallabi'] [u'kangaroo', u'triumph', u'ash', u'open'] [u'kearn', u'back', u'morley'] [u'king', u'continu', u'perfect', u'start'] [u'king', u'outclass', u'croc'] [u'koizumi', u'tip', u'retain', u'power', u'japan', u'vote'] [u'lose', u'bilbao', u'return', u'fernandez'] [u'mitchel', u'hail', u'devast', u'black'] [u'murphi', u'claim', u'trick'] [u'muscovit', u'kiss', u'public', u'affect', u'goodby'] [u'nest', u'plan', u'favour', u'rich', u'govern', u'say'] [u'palestinian', u'govt', u'deal', u'good', u'israel'] [u'nigeria', u'unmov', u'bounti', u'exil', u'taylor'] [u'suspect', u'rebel', u'kill', u'indonesia', u'aceh'] [u'trial', u'cannabi', u'clinic', u'treat', u'user'] [u'children', u'risk', u'heart', u'diseas'] [u'parliament', u'hold', u'power', u'expert'] [u'parramatta', u'power', u'knight'] [u'perth', u'polic', u'investig', u'hold'] [u'polic', u'helicopt', u'control', u'parti'] [u'polic', u'locat', u'miss', u'scout', u'leader'] [u'polic', u'search', u'nation', u'park', u'miss', u'scout'] [u'polici', u'debat', u'nation', u'comeback'] [u'poll', u'close', u'japan', u'elect'] [u'prematur', u'daughter', u'royal', u'edward', u'sophi'] [u'pressur', u'crack', u'black', u'jone'] [u'punter', u'second', u'stringer'] [u'queanbeyan', u'resid', u'urg', u'join', u'rail', u'fight'] [u'cross', u'close', u'iraq', u'offic'] [u'reid', u'vow', u'fight'] [u'rescuer', u'drown', u'kangaroo', u'island', u'save', u'injur'] [u'rescu', u'worker', u'search', u'riyadh', u'bomb', u'survivor'] [u'road', u'accid', u'caus', u'traffic', u'chao'] [u'jone', u'confirm', u'class', u'victori'] [u'finalis', u'health', u'reform', u'bodi'] [u'fundrais', u'station', u'repair', u'track'] [u'sampdoria', u'pile', u'miseri', u'winless', u'empoli'] [u'satellit', u'tracker', u'help', u'bike', u'accid', u'victim'] [u'saudi', u'ambassador', u'condemn', u'evil', u'bomber'] [u'scientist', u'assess', u'prestig', u'spill', u'effect'] [u'scotland', u'yard', u'develop', u'conceal', u'weapon', u'scanner'] [u'seve', u'struggl', u'spain'] [u'sizzl', u'campbel', u'doom', u'tiger', u'money'] [u'diver', u'serious', u'hurt', u'picton', u'accid'] [u'south', u'korean', u'worker', u'clash', u'riot', u'polic'] [u'stanhop', u'media', u'win', u'monaro', u'select'] [u'sydney', u'fund', u'terror', u'cell', u'lebanon', u'court', u'tell'] [u'tamil', u'tiger', u'ceasefir', u'legal', u'lankan'] [u'govt', u'drag', u'feet', u'famili', u'violenc', u'law'] [u'timelin', u'terror', u'saudi', u'arabia'] [u'turkish', u'asylum', u'seeker', u'appli', u'visa'] [u'turkish', u'asylum', u'seeker', u'indonesia'] [u'drown', u'kangaroo', u'island'] [u'drown', u'kangaroo', u'island', u'winch'] [u'tourist', u'miss', u'kangaroo', u'island'] [u'ugandan', u'rebel', u'kill', u'church', u'offici'] [u'union', u'stevedor', u'commit', u'resolv', u'port'] [u'humili', u'olymp', u'basebal', u'exit'] [u'target', u'saddam', u'home', u'town', u'guerrilla'] [u'troop', u'captur', u'saddam', u'bodyguard'] [u'victorian', u'liber', u'region', u'voter'] [u'helicopt', u'crash', u'site', u'guard'] [u'wallabi', u'weak', u'beat', u'black', u'say', u'logan'] [u'warrior', u'overcom', u'redback', u'adelaid'] [u'woodbridg', u'suffer', u'setback', u'record'] [u'world', u'revel', u'polic', u'taxi', u'busi'] [u'young', u'leader', u'instrument', u'indigen', u'govern'] [u'zimbabw', u'heartbreak', u'windi', u'battl', u'draw'] [u'aborigin', u'remain', u'keep', u'box', u'communiti'] [u'govt', u'cautious', u'heritag', u'overhaul'] [u'adelaid', u'host', u'davi'] [u'airlin', u'disappear', u'horizon'] [u'pollut', u'increas', u'heart', u'attack', u'risk', u'studi'] [u'albania', u'oldest', u'woman', u'die', u'age'] [u'black', u'world', u'rank'] [u'qaeda', u'toppl', u'saudi', u'govt'] [u'angri', u'woodward', u'flay', u'falter', u'england'] [u'rat', u'rise', u'tip', u'month'] [u'art', u'povera', u'giant', u'mario', u'merz', u'die', u'itali'] [u'kill', u'riyadh', u'suicid', u'blast'] [u'aust', u'china', u'report', u'highlight', u'age', u'popul'] [u'aust', u'indonesia', u'discuss', u'free', u'trade', u'deal'] [u'australia', u'boost', u'iraq', u'troop', u'train'] [u'awesom', u'franc', u'world', u'osullivan'] [u'bail', u'gang', u'member', u'ban', u'contact', u'biki'] [u'bailey', u'rule', u'test', u'seri'] [u'bank', u'settl', u'disput', u'hobart'] [u'beatti', u'announc', u'stricter', u'rule', u'elector'] [u'beer', u'sale', u'local', u'barley', u'stock'] [u'beer', u'wench', u'spark', u'alcohol', u'abus', u'fear'] [u'booki', u'write', u'wallabi'] [u'die', u'motorbik', u'crash'] [u'bullet', u'prove', u'good', u'hawk'] [u'burma', u'free', u'polit', u'prison'] [u'indigen', u'welfar', u'cycl'] [u'govt', u'boost', u'polic', u'fund'] [u'campaign', u'consid', u'child', u'injuri', u'prevent'] [u'campbel', u'take', u'tour', u'championship'] [u'cancer', u'check', u'reveal', u'high', u'level', u'damag'] [u'centr', u'hop', u'begin', u'work', u'bushfir'] [u'chamber', u'offer', u'deal', u'reveal', u'dope', u'ring', u'secret'] [u'chelsea', u'slash', u'arsenal', u'lead'] [u'china', u'endang', u'panda', u'biscuit'] [u'chines', u'director', u'win', u'prize', u'tokyo', u'film'] [u'clijster', u'protest', u'schedul'] [u'clijster', u'tour', u'champ', u'final'] [u'clinton', u'deliv', u'china', u'aid', u'warn'] [u'club', u'endur', u'profit', u'fall'] [u'commonwealth', u'youth', u'deleg', u'gather'] [u'convict', u'shooter', u'face', u'sentenc'] [u'corrupt', u'watchdog', u'consid', u'investig'] [u'costello', u'answer', u'rbas', u'household', u'debt', u'figur'] [u'council', u'fight', u'sport', u'centr', u'fund'] [u'councillor', u'consid', u'school', u'drop', u'zone', u'plan'] [u'council', u'move', u'seagrass', u'fear'] [u'council', u'highlight', u'poor', u'road'] [u'court', u'let', u'resum', u'trade'] [u'court', u'rule', u'teenag', u'face', u'trial', u'murder'] [u'darwin', u'navi', u'base', u'accid', u'prompt', u'investig'] [u'defenc', u'minist', u'thank', u'australian', u'troop', u'iraq'] [u'develop', u'pace', u'gatton', u'shire'] [u'diamond', u'appli', u'firearm', u'licenc'] [u'diaz', u'down', u'townsend', u'play'] [u'digger', u'london', u'mark', u'special', u'memori'] [u'docker', u'train'] [u'doubt', u'futur', u'leagu', u'club', u'asset'] [u'doubt', u'cast', u'veget', u'crop', u'outlook'] [u'driver', u'avoid', u'jail', u'crash', u'death'] [u'driver', u'steal', u'die', u'crash'] [u'weather', u'spark', u'restrict'] [u'environ', u'group', u'want', u'confus', u'recycl'] [u'farmer', u'group', u'air', u'deregul', u'fear'] [u'farmer', u'cheaper'] [u'ferguson', u'stay', u'unit'] [u'schoolgirl', u'injur', u'deton', u'blast'] [u'food', u'safeti', u'highlight', u'weather', u'warm'] [u'atsic', u'deputi', u'vow', u'court', u'fight'] [u'coach', u'call', u'rugbi', u'shake'] [u'dictat', u'defeat', u'guatemala'] [u'forum', u'focus', u'rainforest', u'threat'] [u'franc', u'brouzet', u'world'] [u'fremantl', u'port', u'employe', u'return', u'work'] [u'ganguli', u'play', u'australia'] [u'georgian', u'presid', u'ask', u'step'] [u'backpack', u'reason', u'come'] [u'gold', u'coast', u'host', u'mental', u'health', u'gather'] [u'govt', u'urg', u'increas', u'fund', u'tackl', u'violenc'] [u'green', u'ballarat', u'candid', u'decid', u'prefer'] [u'green', u'want', u'balanc', u'sandon', u'decis'] [u'group', u'complain', u'disabl', u'accommod'] [u'group', u'push', u'oversea', u'train', u'doctor', u'work'] [u'group', u'reject', u'latrob', u'valley', u'toxic', u'wast', u'claim'] [u'hanson', u'reveal', u'jail', u'sap', u'live'] [u'healey', u'fli', u'england', u'cover'] [u'heritag', u'focus', u'research', u'station'] [u'hezbollah', u'leader', u'demand', u'prison', u'releas'] [u'home', u'build', u'surg', u'ahead'] [u'hospit', u'emerg', u'dept', u'close', u'break', u'point'] [u'hospit', u'resum', u'elect', u'surgeri', u'virus'] [u'houllier', u'vow', u'red', u'revolut', u'continu'] [u'howard', u'back', u'brave', u'blair', u'iraq'] [u'idea', u'moot', u'lower', u'countri', u'rat'] [u'india', u'court', u'stay', u'state', u'order', u'arrest', u'journalist'] [u'india', u'tour', u'pakistan', u'earli'] [u'indigen', u'group', u'seek', u'cooma', u'land', u'recognit'] [u'indonesia', u'ban', u'commemor', u'separatist'] [u'indonesian', u'militari', u'say', u'rebel', u'command', u'hang'] [u'indonesia', u'asylum', u'seeker', u'ambon'] [u'inquiri', u'spark', u'sustain', u'firewood', u'suppli'] [u'internet', u'dissid', u'lose', u'appeal', u'sentenc'] [u'iranian', u'american', u'academ', u'free', u'bail'] [u'iran', u'pledg', u'suspend', u'uranium', u'enrich'] [u'hear', u'test', u'case', u'entitl'] [u'ireland', u'captain', u'wood', u'retir'] [u'israel', u'back', u'hezbollah', u'prison', u'trade'] [u'jail', u'sentenc', u'extend', u'anglican', u'priest'] [u'japan', u'head', u'reduc', u'major', u'exit', u'poll'] [u'japan', u'rule', u'cabinet', u'chang'] [u'kerang', u'year', u'celebr', u'call'] [u'king', u'prove', u'good', u'croc'] [u'kournikova', u'consid', u'surgeri', u'play'] [u'lake', u'eyr', u'basin', u'manag', u'jeopardi'] [u'laport', u'look', u'forward', u'english', u'battl'] [u'leagu', u'reject', u'imperi', u'transfer', u'plan'] [u'liber', u'democrat', u'retain', u'power', u'japan'] [u'lib', u'seek', u'england', u'candid'] [u'local', u'govt', u'consid', u'playground', u'smoke'] [u'local', u'govt', u'seek', u'rate', u'set', u'power'] [u'local', u'charg', u'sydney', u'schoolgirl', u'murder'] [u'macair', u'consid', u'expans', u'potenti'] [u'aid', u'polic', u'maroochydor', u'death', u'probe'] [u'arrest', u'terror', u'charg', u'northern'] [u'die', u'highway', u'crash'] [u'die', u'road', u'crash'] [u'front', u'court', u'girl', u'murder'] [u'court', u'murder', u'charg'] [u'marina', u'develop', u'offer', u'econom', u'spin', u'off'] [u'martin', u'rid', u'away', u'adelaid', u'titl'] [u'mauresmo', u'stun', u'henin', u'hardenn', u'reach', u'final'] [u'singapor', u'troop', u'arriv', u'central'] [u'move', u'attract', u'doctor', u'rockhampton'] [u'highlight', u'jobless', u'figur', u'fall'] [u'gambier', u'join', u'health', u'senat'] [u'navi', u'ship', u'bowen', u'home', u'away', u'home'] [u'accc', u'deputi', u'chair', u'announc'] [u'anti', u'terror', u'law', u'cumbersom', u'ruddock'] [u'panel', u'review', u'feder', u'drought', u'polici'] [u'polici', u'rare', u'liber', u'confer'] [u'power', u'station', u'run'] [u'zealand', u'boost', u'pacif'] [u'light', u'ahead', u'tunnel', u'plan'] [u'call', u'joint', u'govt', u'approach', u'immigr'] [u'teacher', u'award', u'preach', u'democraci'] [u'nullabor', u'plain', u'train', u'derail', u'disrupt', u'servic'] [u'ombudsman', u'probe', u'school', u'safeti'] [u'dead', u'wound', u'southern', u'philippin'] [u'nation', u'resurg', u'delay', u'elect'] [u'fool', u'write', u'aussi', u'thorn'] [u'fool', u'write', u'wallabi', u'thorn'] [u'palestinian', u'leader', u'agre', u'cabinet'] [u'perilya', u'upbeat', u'north', u'prospect'] [u'philippin', u'court', u'reject', u'impeach', u'chief'] [u'write', u'hickss', u'lawyer'] [u'suspend', u'interview'] [u'polic', u'consid', u'charg', u'level', u'cross', u'incid'] [u'polic', u'lobbi', u'close', u'violenc', u'plagu'] [u'polic', u'prais', u'kangaroo', u'island', u'rescuer'] [u'polic', u'probe', u'caravan', u'blaze', u'death'] [u'polic', u'probe', u'greek', u'club', u'blaze'] [u'polocross', u'player', u'name', u'west', u'sport', u'star'] [u'princ', u'charl', u'fli', u'home', u'face', u'mysteri', u'scandal'] [u'public', u'health', u'servic'] [u'public', u'urg', u'bushfir', u'readi'] [u'pump', u'station', u'work', u'save', u'thousand'] [u'qanta', u'director', u'urg', u'step', u'asid'] [u'question', u'rais', u'transact', u'centr', u'fund'] [u'railway', u'bridg', u'work', u'start', u'soon'] [u'expect', u'shed', u'light', u'rat', u'rise'] [u'report', u'highlight', u'council', u'concern'] [u'resid', u'fight', u'plan', u'want', u'knowl', u'meet'] [u'rioter', u'pelt', u'perth', u'polic', u'bottl'] [u'road', u'crash', u'claim', u'teen', u'life'] [u'rossi', u'ride', u'yamaha'] [u'rudd', u'assess', u'iraq', u'situat', u'hand'] [u'chopper', u'crash'] [u'seve', u'britain', u'ireland'] [u'saudi', u'bomb', u'plotter'] [u'scientist', u'spina', u'bifida', u'breakthrough'] [u'assault', u'get', u'priest', u'longer', u'jail', u'stay'] [u'shell', u'work', u'rectifi', u'environment', u'breach'] [u'shire', u'underwrit', u'tree', u'walk'] [u'shooter', u'nation', u'clay', u'target', u'contest'] [u'smith', u'mend', u'wallabi'] [u'stinger', u'suit', u'overheat', u'kid'] [u'strong', u'show', u'ail', u'busi'] [u'studi', u'find', u'worth', u'popular', u'diet'] [u'studi', u'probe', u'work', u'health', u'impact'] [u'stun', u'late', u'see', u'juve', u'pull', u'clear'] [u'capucho', u'keep', u'ranger', u'touch'] [u'super', u'maxi', u'sydney', u'hobart', u'duel'] [u'govt', u'defend', u'program'] [u'telstra', u'upbeat', u'phone'] [u'text', u'messag', u'driver', u'get', u'year', u'suspend'] [u'thai', u'set', u'record', u'live', u'centiped'] [u'matrix', u'revolutionis', u'world', u'offic'] [u'confirm', u'meningococc', u'case'] [u'tiger', u'unchang', u'blue', u'clash'] [u'tough', u'real', u'humbl'] [u'transport', u'firm', u'name', u'busi'] [u'trio', u'court', u'home', u'invas'] [u'tripl', u'treat', u'sorenstam', u'japan'] [u'turkish', u'asylum', u'seeker', u'move', u'indonesian', u'hotel'] [u'union', u'air', u'committe', u'hospit', u'concern'] [u'union', u'blame', u'delay', u'ansett', u'money', u'anderson'] [u'detain', u'baghdad', u'hotel', u'rocket', u'attack'] [u'soldier', u'kill', u'grenad', u'attack', u'iraq'] [u'girl', u'fight', u'court'] [u'govt', u'speak', u'region', u'develop'] [u'polic', u'scrutinis', u'speed', u'camera', u'fals'] [u'virgin', u'float', u'expect', u'rais'] [u'wale', u'upbeat', u'go', u'bang'] [u'liber', u'leader', u'deni', u'hell', u'challeng'] [u'lib', u'meet', u'amid', u'leadership', u'rumour'] [u'wallabi', u'suffoc', u'public', u'pressur'] [u'water', u'work', u'get', u'subsidi'] [u'wave', u'support', u'surf', u'diploma'] [u'white', u'hous', u'unhappi', u'iraqi', u'council'] [u'women', u'strike', u'dengu', u'fever'] [u'woodbridg', u'record', u'track'] [u'woodsid', u'claim', u'whale', u'safe', u'seismic', u'work'] [u'abattoir', u'get', u'revamp'] [u'servic', u'discuss'] [u'signal', u'break', u'hill', u'retain', u'sydney', u'servic'] [u'accc', u'accus', u'geelong', u'petrol', u'station', u'price'] [u'green', u'want', u'rain', u'water', u'tank', u'instal'] [u'black', u'omit', u'umaga'] [u'option', u'consid', u'rail', u'servic'] [u'world', u'athlet', u'sampl', u'face', u'retest'] [u'choos', u'eden', u'monaro', u'candid'] [u'sharehold', u'meet'] [u'anderson', u'warn', u'drought', u'get', u'wors'] [u'artist', u'struggl', u'poverti', u'report'] [u'australia', u'mark', u'remembr'] [u'author', u'appeal', u'wit', u'plane', u'crash'] [u'author', u'search', u'escap', u'fishermen', u'cape'] [u'backpack', u'industri', u'urg', u'complac'] [u'barnett', u'brand', u'leader'] [u'barnett', u'hold', u'lib', u'leadership'] [u'barra', u'head', u'south', u'research'] [u'beachgoer', u'urg', u'watch', u'unstabl', u'condit'] [u'billiton', u'pave', u'site'] [u'bight', u'park', u'safe', u'poach'] [u'pineappl', u'face', u'rough'] [u'blair', u'emphasis', u'import', u'britain', u'twin'] [u'blue', u'chip', u'stock', u'drag', u'market'] [u'bok', u'return', u'resign'] [u'boost', u'council', u'aviat', u'plan'] [u'bull', u'claim', u'late', u'scalp'] [u'bushfir', u'lead', u'blow', u'budget'] [u'bushrang', u'strong', u'start'] [u'pacif', u'highway', u'polic'] [u'campbel', u'shoot', u'tour'] [u'seek', u'truck', u'upgrad'] [u'chang', u'approv', u'wide', u'elector'] [u'chang', u'rural', u'environment', u'manag'] [u'clijster', u'crush', u'mauresmo', u'championship'] [u'confer', u'hear', u'media', u'coverag', u'inspir'] [u'council', u'dark', u'wast', u'site'] [u'counter', u'disast', u'group', u'prepar', u'cyclon'] [u'court', u'hear', u'jealous', u'mother', u'stab', u'daughter'] [u'court', u'appeal', u'reserv', u'decis', u'rapist'] [u'court', u'strip', u'retir', u'payout'] [u'dark', u'cloud', u'cast', u'regul'] [u'doctor', u'baulk', u'rejoin'] [u'dollar', u'climb', u'year', u'high'] [u'drink', u'water', u'boost', u'flow', u'trade'] [u'drop', u'ball', u'drop', u'say', u'jone'] [u'drought', u'dri', u'water', u'author', u'revenu'] [u'echinacea', u'hard', u'help', u'studi'] [u'elliott', u'appeal', u'slat', u'februari'] [u'energi', u'firm', u'expect', u'loss'] [u'eriksson', u'wait', u'ferdinand', u'decis'] [u'ettridg', u'welcom', u'fraud', u'trial', u'probe'] [u'famili', u'launch', u'damag', u'claim', u'beach'] [u'farmer', u'face', u'chang', u'drought', u'condit'] [u'farmer', u'urg', u'genet', u'engin', u'crop'] [u'farmer', u'urg', u'speak', u'drought'] [u'farmer', u'warn', u'tool', u'fuel', u'bushfir'] [u'fast', u'fund', u'seek', u'transport', u'develop', u'studi'] [u'fear', u'drought', u'chang', u'subsidi'] [u'feder', u'polic', u'franc', u'probe', u'brigitt'] [u'feder', u'ralli', u'spoil', u'agassi', u'return'] [u'govt', u'ditch', u'dump', u'plan'] [u'ferrero', u'stumbl', u'spot'] [u'fifa', u'presid', u'slam', u'inact'] [u'flintoff', u'lead', u'england', u'seri'] [u'french', u'forc', u'chang'] [u'fund', u'boost'] [u'ganguli', u'scoff', u'schedul'] [u'giteau', u'smith', u'clash'] [u'giteau', u'smith', u'semi', u'final'] [u'govt', u'deni', u'kurd', u'ask', u'asylum'] [u'group', u'give', u'support', u'oversea', u'doctor', u'plan'] [u'group', u'combin', u'effort', u'fight', u'diabet', u'kidney'] [u'hanson', u'victimis', u'anderson'] [u'hewitt', u'look', u'sharp', u'davi', u'final'] [u'high', u'school', u'number', u'rise'] [u'hobart', u'gateway', u'facelift'] [u'hong', u'kong', u'call', u'aussi', u'hunter', u'elus', u'croc'] [u'hotel', u'owner', u'bond', u'storag'] [u'indonesia', u'examin', u'asylum', u'claim'] [u'indonesian', u'troop', u'kill', u'separatist', u'aceh'] [u'injuri', u'forc', u'javag', u'srinath', u'retir'] [u'inquest', u'begin', u'canberra', u'hospit', u'death'] [u'iran', u'halt', u'uranium', u'enrich'] [u'john', u'come', u'train', u'session'] [u'john', u'look', u'good', u'neck', u'injuri'] [u'jone', u'say', u'forget', u'form', u'book'] [u'juri', u'player', u'vote'] [u'justic', u'kirbi', u'concern', u'self', u'represent'] [u'kurd', u'contest', u'australian', u'refuge', u'claim'] [u'latham', u'offer', u'migrat', u'solut', u'hous', u'price'] [u'leed', u'sack', u'manag', u'reid'] [u'lodg', u'resid', u'home'] [u'jail', u'tourist', u'attack'] [u'rape', u'charg', u'face', u'court'] [u'trial', u'tamara', u'smith', u'murder'] [u'face', u'trial', u'facto', u'slay'] [u'maryborough', u'tertiari', u'campus', u'plan', u'ahead'] [u'mayor', u'air', u'riverway', u'petit', u'concern'] [u'mayor', u'unhappi', u'wast', u'facil', u'decis'] [u'mayor', u'unhappi', u'water', u'plan', u'consult'] [u'migrat', u'prove', u'boon', u'boom', u'boonah'] [u'miner', u'fin', u'fatal', u'hunter', u'accid'] [u'minist', u'want', u'drought', u'panel', u'represent'] [u'mirani', u'resid', u'honour', u'fall', u'troop'] [u'polic', u'combat', u'gregori', u'down', u'woe'] [u'morley', u'escap', u'match'] [u'share', u'slide', u'despit', u'profit'] [u'top', u'bank', u'sector', u'profit'] [u'nake', u'husband', u'imprison', u'year'] [u'nalbandian', u'head', u'australian', u'hardcourt', u'list'] [u'nat', u'highlight', u'disrupt', u'independ'] [u'newcastl', u'mayor', u'rat', u'chang', u'high'] [u'iraqi', u'pull', u'australia', u'hill'] [u'resolut', u'liquor', u'licens'] [u'wrong', u'jonni', u'say', u'woodward'] [u'govt', u'block', u'tunnel', u'plan'] [u'put', u'len', u'hide', u'home', u'camera'] [u'review', u'foreign', u'land', u'ownership'] [u'dead', u'plane', u'crash'] [u'opposit', u'urg', u'govt', u'reduc', u'stamp', u'duti'] [u'pakistan', u'eye', u'asia', u'right'] [u'perth', u'sweat', u'record', u'temperatur'] [u'petit', u'want', u'countrylink', u'servic', u'keep', u'track'] [u'pilot', u'dark', u'traffic'] [u'polic', u'boost', u'riverina'] [u'polic', u'investig', u'melbourn', u'stab'] [u'polic', u'minist', u'endors', u'nation', u'plan', u'combat'] [u'polic', u'minist', u'discuss', u'firework', u'trade'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'offic', u'recov', u'wine', u'bottl', u'attack'] [u'polic', u'probe', u'school', u'exam', u'disrupt'] [u'polic', u'union', u'unhappi', u'initi'] [u'port', u'zone', u'gear', u'predict', u'record', u'harvest'] [u'public', u'urg', u'rememb', u'fall', u'soldier'] [u'coalit', u'promis', u'crop', u'insur', u'impost'] [u'opposit', u'question', u'juri', u'trial'] [u'queen', u'howard', u'blair', u'dedic', u'memori', u'london'] [u'queen', u'open', u'australian', u'memori'] [u'real', u'lead', u'euro', u'footbal', u'year', u'nomin'] [u'tape', u'snare', u'hong', u'kong', u'croc', u'hunt'] [u'region', u'rememb', u'fall', u'troop'] [u'report', u'call', u'lower', u'rural'] [u'rescu', u'chopper', u'tragedi'] [u'respect', u'franc', u'attack', u'england', u'fear'] [u'review', u'highlight', u'taxi', u'industri', u'uncertainti'] [u'roddick', u'eager', u'justifi', u'world', u'lead'] [u'rooki', u'name', u'hockeyroo', u'team'] [u'rover', u'releg', u'zone'] [u'sailor', u'handl', u'rokocoko', u'jone'] [u'jail', u'offend', u'rehab', u'scheme'] [u'saudi', u'forc', u'pour', u'mecca', u'protect', u'ramadan'] [u'saudi', u'king', u'vow', u'crush', u'terrorist'] [u'arrest', u'riyadh', u'blast', u'report'] [u'sharehold', u'time', u'consid', u'rural', u'press'] [u'shiit', u'mayor', u'kill', u'clash', u'troop'] [u'shire', u'record', u'land', u'valuat', u'increas'] [u'simpson', u'captain', u'kangaroo'] [u'slim', u'guitar', u'auction', u'benefit', u'polic', u'woman'] [u'sponsor', u'help', u'schooli', u'prepar'] [u'springer', u'opera', u'get', u'offici', u'thumb'] [u'sweet', u'time', u'babinda', u'sugarcan'] [u'talk', u'focus', u'boundari', u'east', u'timor'] [u'tasmanian', u'urg', u'rememb', u'soldier', u'oversea'] [u'nurs', u'seek', u'rise'] [u'teen', u'charg', u'weekend', u'stab'] [u'telstra', u'urg', u'boost', u'region', u'broadband'] [u'text', u'drive', u'deserv', u'tougher', u'penalti'] [u'court', u'hear', u'guantanamo', u'appeal'] [u'tourism', u'group', u'seek', u'smaller', u'region'] [u'trolley', u'toll', u'top'] [u'troop', u'iraq', u'rememb', u'dead'] [u'decis', u'rais', u'ongo', u'concern'] [u'unionist', u'defend', u'remembr', u'ralli'] [u'union', u'unhappi', u'dismiss'] [u'guilti', u'abus', u'trade', u'rule'] [u'halt', u'oper', u'sudan', u'embassi'] [u'launch', u'afghan', u'offens'] [u'nab', u'baghdad', u'hotel', u'attack'] [u'suspend', u'embassi', u'sudan'] [u'govt', u'urg', u'clarifi', u'toxic', u'wast', u'plan'] [u'fret', u'remembr', u'ralli'] [u'agre', u'teacher', u'talk'] [u'waiter', u'there', u'condom', u'soup'] [u'premier', u'rule', u'public', u'fund', u'elect'] [u'washington', u'sniper', u'suspect', u'plead', u'guilti'] [u'wast', u'water', u'plant', u'stage', u'cost'] [u'watchdog', u'clear', u'iran', u'nuclear', u'weapon', u'claim'] [u'western', u'valu', u'worth', u'fight'] [u'wheelchair', u'wheelchair', u'go'] [u'woman', u'hospit', u'meningococc'] [u'wool', u'grower', u'nervous', u'watch', u'rise', u'dollar'] [u'work', u'start', u'lodg', u'rebuild'] [u'world', u'semi', u'final', u'refere', u'name'] [u'wrangl', u'continu', u'site', u'clean'] [u'stop', u'work', u'south', u'korea'] [u'face', u'age', u'popul'] [u'agforc', u'unhappi', u'rural', u'relief', u'ambul', u'levi'] [u'black', u'home', u'dress', u'room'] [u'clear', u'injur', u'send', u'healey', u'fli'] [u'qaeda', u'claim', u'saudi', u'bomb', u'report'] [u'illeg', u'clear', u'fine', u'south', u'east'] [u'apprentic', u'complet', u'build', u'certif', u'cours'] [u'athlet', u'club', u'wont', u'chang', u'race', u'result'] [u'aussi', u'field', u'strength'] [u'aussi', u'field', u'strength'] [u'aussi', u'troop', u'iraq', u'mark', u'remembr'] [u'australian', u'market', u'close', u'steadi'] [u'australia', u'high', u'tax', u'say', u'labor'] [u'beatti', u'promis', u'rais', u'ambul', u'levi'] [u'berlusconi', u'say', u'itali', u'wont', u'intimid', u'bomb'] [u'blast', u'italian', u'base', u'iraq', u'kill'] [u'blast', u'near', u'afghan', u'compound', u'injur'] [u'bomb', u'blast', u'outsid', u'baghdad', u'court', u'wound'] [u'bomb', u'detector', u'dog', u'help', u'counter', u'terror'] [u'britain', u'introduc', u'ident', u'card', u'year'] [u'brother', u'melbourn', u'hospit', u'hous'] [u'bush', u'honour', u'troop', u'kill', u'iraq'] [u'bush', u'icon', u'farewel'] [u'bush', u'visit', u'secur', u'demand', u'anger', u'london', u'offici'] [u'busi', u'group', u'oppos', u'lower', u'region', u'wag', u'plan'] [u'businesswoman', u'shock', u'award'] [u'drought', u'payment', u'spread', u'wider'] [u'carter', u'holt', u'harvey', u'staff', u'reject', u'offer'] [u'chamber', u'commerc', u'predict', u'bumper', u'xmas', u'retail'] [u'child', u'refuge', u'hous', u'condemn', u'legal', u'fiddl'] [u'children', u'burn', u'hous'] [u'chopper', u'crash', u'probe', u'urg', u'review', u'night', u'visual'] [u'probe', u'assault', u'charg'] [u'colac', u'rememb', u'cliff', u'young'] [u'comic', u'actor', u'carney', u'dead'] [u'commiss', u'investig', u'bank', u'theft', u'bet'] [u'consum', u'confid', u'rat'] [u'consum', u'watchdog', u'explain', u'merger', u'decis'] [u'coober', u'pedi', u'shoot', u'death', u'trigger', u'polic', u'probe'] [u'costello', u'cut'] [u'council', u'discuss', u'oval', u'cultur', u'signific'] [u'council', u'track', u'road', u'plan', u'concern'] [u'court', u'reject', u'wombarra', u'age', u'hous', u'plan'] [u'court', u'step', u'save', u'anim'] [u'court', u'decid', u'extens', u'oyster', u'farm'] [u'court', u'tell', u'drink', u'fatal', u'crash'] [u'darwin', u'resid', u'prais', u'polit', u'knowledg'] [u'death', u'spark', u'polic', u'chang'] [u'deport', u'afghan', u'schoolboy', u'allow', u'return'] [u'deport', u'afghan', u'grant', u'student', u'visa'] [u'dept', u'detain', u'peopl', u'work', u'illeg'] [u'detent', u'polici', u'high', u'court'] [u'vere', u'name', u'kangaroo'] [u'divid', u'highlight', u'mental', u'health', u'drug'] [u'downer', u'check', u'asylum', u'request'] [u'east', u'timor', u'field', u'talk', u'begin'] [u'england', u'boost', u'hill', u'declar'] [u'england', u'lose', u'southgat', u'wait', u'beckham', u'rooney'] [u'global', u'rescu', u'station'] [u'put', u'spencer', u'gulf', u'industri', u'spotlight'] [u'ergon', u'gear', u'cyclon', u'season'] [u'ethanol', u'trial', u'begin', u'north', u'east'] [u'prepar', u'sanction', u'steel', u'duti'] [u'europ', u'mar', u'mission', u'christma', u'touchdown'] [u'explos', u'claim', u'victim', u'iraq'] [u'faceclift', u'underway', u'oakey', u'main', u'street'] [u'farmer', u'voic', u'toxic', u'wast', u'plan', u'opposit'] [u'faulti', u'camera', u'stop', u'speed', u'fin'] [u'fear', u'memori', u'drome', u'futur'] [u'fishermen', u'upbeat', u'harbour', u'work'] [u'footi', u'club', u'dump', u'bali', u'survivor'] [u'forb', u'rugbi', u'player', u'barbarian', u'legend'] [u'franc', u'unchang', u'england', u'clash'] [u'freeman', u'launch', u'tourism', u'program', u'indigen'] [u'french', u'terrorist', u'suspect', u'return'] [u'fund', u'boost', u'region', u'health', u'servic'] [u'fund', u'help', u'prison', u'integr', u'kimberley'] [u'ganguli', u'promis', u'controversi', u'free', u'australia', u'tour'] [u'fire', u'power', u'plan', u'narrabri'] [u'gerrard', u'commit', u'liverpool'] [u'giffin', u'clear', u'black', u'clash'] [u'gippsland', u'water', u'rule', u'long', u'term', u'wast', u'plan'] [u'govt', u'agre', u'princip', u'compo', u'reef'] [u'govt', u'hold', u'firm', u'heroin', u'trial'] [u'govt', u'overrid', u'court', u'dump', u'rule'] [u'govt', u'appeal', u'free', u'iraqi', u'refuge'] [u'grain', u'harvest', u'begin'] [u'gray', u'want', u'viduka', u'leed'] [u'green', u'light', u'anmatjer', u'region', u'develop', u'plan'] [u'group', u'highlight', u'nation', u'park', u'risk'] [u'hanson', u'hop', u'break', u'record', u'swim', u'world'] [u'hanson', u'probe', u'good', u'opposit'] [u'health', u'group', u'await', u'decis'] [u'heat', u'put', u'hold', u'crop', u'harvest'] [u'henin', u'hardenn', u'end', u'year'] [u'herring', u'talk', u'blow', u'raspberri'] [u'hewitt', u'break', u'good', u'australia', u'chanc', u'fitzi'] [u'court', u'hear', u'take', u'evid'] [u'hodg', u'accus', u'drop', u'interim'] [u'hodg', u'answer', u'misconduct', u'alleg', u'court'] [u'home', u'town', u'rememb', u'cliff', u'young'] [u'hour', u'rat'] [u'hous', u'sell', u'add', u'public', u'list', u'troubl'] [u'ident', u'fraud', u'cost', u'year'] [u'india', u'fall', u'australian', u'onslaught'] [u'indigen', u'communiti', u'region', u'plan'] [u'indonesia', u'quarantin', u'kurdish', u'asylum', u'seeker'] [u'interim', u'swim', u'coach', u'drop'] [u'iraq', u'council', u'head', u'want', u'chang', u'bremer'] [u'iraq', u'toll', u'report'] [u'irrig', u'trust', u'endur', u'resign'] [u'isol', u'school', u'seek', u'casual', u'teacher'] [u'isra', u'arab', u'film', u'maker', u'win', u'jenin', u'jenin', u'battl'] [u'isra', u'court', u'allow', u'documentari', u'show'] [u'jadda', u'centr', u'heritag', u'decis', u'advertis'] [u'journal', u'africa', u'life', u'work', u'peril'] [u'katich', u'waugh', u'smash', u'ton', u'hobart'] [u'king', u'bullet', u'song', u'sixer'] [u'kurdish', u'separatist', u'group', u'call', u'quit'] [u'kurd', u'danc', u'island'] [u'labor', u'say', u'propos', u'medicar', u'chang', u'dont'] [u'larri', u'flynt', u'protect', u'topless', u'jessica', u'lynch', u'photo'] [u'lawrenc', u'like', u'presid'] [u'lawyer', u'seek', u'high', u'court', u'intervent'] [u'legal', u'fail', u'poor', u'acoss'] [u'liquid', u'resign', u'asic', u'probe'] [u'london', u'face', u'lockdown', u'bush', u'visit', u'report'] [u'lover', u'year', u'murder'] [u'attempt', u'thredbo', u'disast'] [u'die', u'canberra', u'crash'] [u'die', u'highway', u'crash'] [u'rush', u'hospit', u'impal', u'fenc'] [u'stand', u'trial', u'child', u'charg'] [u'map', u'help', u'plan', u'aircraft', u'nois'] [u'mayor', u'unhappi', u'park', u'manag', u'plan'] [u'mcdonald', u'upset', u'mcjob', u'titl'] [u'mealamu', u'wari', u'wallabi', u'pack'] [u'meet', u'consid', u'rural', u'north', u'west', u'health', u'report'] [u'melbourn', u'train', u'crash', u'probe'] [u'restart', u'oper'] [u'minist', u'move', u'allay', u'concern', u'dunlop'] [u'minist', u'say', u'teacher', u'cancel', u'strike'] [u'minist', u'dump', u'cabinet', u'reshuffl'] [u'mobil', u'phone', u'boost', u'tottenham', u'farmer'] [u'signatur', u'rail', u'servic', u'cut'] [u'morley', u'keen', u'amend'] [u'mother', u'avoid', u'jail', u'daughter', u'stab'] [u'back', u'road', u'scheme', u'boost'] [u'offer', u'age', u'care', u'help'] [u'murray', u'rescu', u'plan', u'target', u'sit'] [u'nativ', u'titl', u'tribun', u'give', u'prais', u'mine'] [u'hospit', u'helipad', u'begin', u'oper'] [u'timet', u'bus'] [u'breakthrough', u'lanka', u'talk'] [u'consid', u'style', u'court'] [u'govt', u'urg', u'boost', u'dentist', u'number'] [u'pair', u'charg', u'policeman', u'hospit'] [u'pair', u'charg', u'cannabi'] [u'palestinian', u'parliament', u'give', u'quri', u'govt', u'thumb'] [u'plan', u'afoot', u'pasta', u'product', u'factori'] [u'plant', u'buffer', u'zone', u'clear'] [u'queen', u'unveil', u'london', u'memori'] [u'polic', u'form', u'nation', u'anti', u'racism', u'network'] [u'polic', u'hunt', u'video', u'store', u'knife', u'bandit'] [u'polic', u'investig', u'sydney', u'tyre', u'factori'] [u'polic', u'shock', u'learn', u'ident', u'bodi'] [u'pope', u'say', u'iraqi', u'blast', u'vile', u'attack', u'peac'] [u'port', u'begin', u'prepar'] [u'pottharst', u'rule', u'olymp'] [u'premier', u'head', u'west', u'econom', u'summit'] [u'press', u'freedom', u'mistak'] [u'pressur', u'wallabi', u'say', u'cannon'] [u'pressur', u'get', u'wilkinson'] [u'privat', u'school', u'fund'] [u'public', u'urg', u'think', u'psycholog', u'benefit'] [u'crack', u'school', u'abus'] [u'govt', u'attack', u'handl', u'watego', u'releas'] [u'rail', u'worker', u'walk', u'disput'] [u'reef', u'zone', u'chang', u'mean', u'fisher', u'compo'] [u'research', u'benefit', u'broadband', u'network'] [u'resid', u'meet', u'rate', u'rise', u'concern'] [u'riverland', u'farmer', u'forum', u'snub'] [u'rocket', u'baghdad', u'area'] [u'roddick', u'regain', u'composur', u'outlast', u'moya'] [u'runaway', u'trolley', u'caus', u'road', u'carnag'] [u'russian', u'court', u'deni', u'magnat', u'bail'] [u'sailor', u'handl', u'rokocoko', u'jone'] [u'broaden', u'court', u'suppress', u'law'] [u'schuettler', u'overcom', u'coria', u'master'] [u'search', u'continu', u'wast', u'facil'] [u'shark', u'drop', u'bali', u'bomb', u'survivor'] [u'sieg', u'underway', u'polic', u'surround', u'hous', u'town'] [u'singapor', u'defenc', u'minist', u'visit', u'troop'] [u'sixer', u'upbeat', u'despit', u'poor', u'form'] [u'southern', u'cross', u'replica'] [u'sport', u'great', u'gallagh', u'die', u'age'] [u'storm', u'damag', u'gunnedah', u'home'] [u'stronger', u'dollar', u'good', u'news', u'produc'] [u'studi', u'rais', u'concern', u'aquif', u'allevi'] [u'survey', u'consid', u'pipelin', u'impact'] [u'survey', u'help', u'bolster', u'month', u'market'] [u'sydney', u'attract', u'budget', u'film'] [u'sydney', u'confer', u'hear', u'asylum', u'health', u'need'] [u'sydney', u'transport', u'underfund', u'auditor'] [u'salmon', u'giant', u'float', u'market'] [u'texa', u'juri', u'clear', u'mogul', u'murder'] [u'time', u'frame', u'plan', u'jindabyn'] [u'toowoomba', u'repres', u'memori', u'servic'] [u'award', u'ballarat', u'tourism', u'attract'] [u'tourism', u'offici', u'converg', u'riverland'] [u'treatment', u'plant', u'await', u'govt', u'fund'] [u'crew', u'rob', u'film', u'crime', u'stori'] [u'charg', u'ident', u'fraud'] [u'union', u'want', u'need', u'base', u'fund', u'polici', u'school'] [u'start', u'plan', u'return', u'sudanes', u'refuge'] [u'approv', u'syrian', u'sanction'] [u'holiday', u'ensur', u'quiet', u'trade'] [u'criticis', u'feder', u'legal', u'alloc'] [u'govt', u'earmark', u'sit', u'toxic', u'dump'] [u'govt', u'refus', u'releas', u'power', u'report'] [u'watchdog', u'examin', u'hanson', u'inquiri', u'request'] [u'well', u'consid', u'sanctuari', u'land', u'sale'] [u'westpac', u'custom', u'warn', u'hoax', u'email'] [u'wild', u'kangaroo', u'pari', u'home'] [u'woodbridg', u'deni', u'record', u'houston'] [u'work', u'parti', u'investig', u'movement', u'firework'] [u'wright', u'join', u'derbyshir'] [u'xmas', u'parti', u'warn', u'harass', u'report'] [u'accus', u'want', u'peopl', u'smuggl', u'court'] [u'afghanistan', u'face', u'challeng', u'year'] [u'afghan', u'await', u'resid', u'decis'] [u'aid', u'vaccin', u'fail', u'critic', u'test'] [u'merger', u'forward', u'qanta', u'boss', u'say'] [u'black', u'aim', u'banish', u'ghost'] [u'announc', u'candid', u'contest', u'gwydir'] [u'play', u'safe', u'refuge'] [u'anmatjer', u'produc', u'promot', u'region', u'growth'] [u'asian', u'tie', u'vital', u'economi', u'say'] [u'australian', u'kill', u'malaysian', u'home', u'invas'] [u'australian', u'qualifi', u'european', u'golf', u'tour'] [u'author', u'fear', u'dengu', u'outbreak'] [u'averag', u'wage', u'growth', u'slow'] [u'bargain', u'push', u'wall', u'street', u'higher'] [u'bat', u'bonanza', u'see', u'australia', u'beat', u'india'] [u'beeper', u'sniff', u'date'] [u'boss', u'defend', u'industri', u'relat', u'stanc'] [u'boss', u'defend', u'stanc'] [u'pledg', u'steer', u'clear', u'world', u'heritag', u'sit'] [u'warn', u'challeng', u'time'] [u'blair', u'promis', u'guantanamo', u'action'] [u'blix', u'doubt', u'iran', u'nuclear', u'claim'] [u'brawl', u'polic', u'busi'] [u'bremer', u'return', u'iraq', u'bush', u'bless'] [u'broadband', u'expens'] [u'sampl', u'posit', u'athlet'] [u'bulldog', u'snare', u'rawl'] [u'busi', u'happi', u'mall', u'road', u'decis'] [u'cairn', u'polic', u'defend', u'action', u'combat', u'drunk'] [u'latrob', u'valley', u'polic'] [u'canberra', u'trial', u'grey', u'water'] [u'casa', u'predict', u'month', u'wait', u'outcom', u'night'] [u'cash', u'boost', u'devil', u'diseas', u'research'] [u'chamber', u'push', u'reopen', u'rail', u'line'] [u'child', u'abus', u'widespread', u'institut', u'inquiri'] [u'china', u'warn', u'taiwan', u'crush', u'split'] [u'warn', u'lose', u'control', u'iraq'] [u'clean', u'begin', u'lake', u'hume', u'sewag', u'spill'] [u'clock', u'tick', u'free', u'trade', u'deal', u'scheiffer'] [u'chairman', u'visit', u'central', u'queensland'] [u'cole', u'myer', u'ring', u'sale'] [u'communiti', u'win', u'access', u'colleg', u'document'] [u'compo', u'barrier', u'reef', u'trawler', u'welcom'] [u'coroni', u'investig', u'polic', u'death'] [u'costello', u'capitalis', u'labor', u'split'] [u'council', u'consid', u'hous', u'crisi'] [u'council', u'deleg', u'drive', u'home', u'traffic', u'woe'] [u'council', u'brief', u'toxic', u'wast', u'dump', u'propos'] [u'court', u'order', u'falconio', u'suspect', u'extradit'] [u'criterium', u'carniv', u'entri', u'increas'] [u'data', u'ignor', u'indigen', u'peopl', u'committe'] [u'deadlock', u'staff', u'compani', u'rise'] [u'dept', u'hold', u'school', u'decis'] [u'derail', u'block', u'central', u'line'] [u'develop', u'organis', u'look', u'forum', u'industri'] [u'doctor', u'free', u'vaccin', u'children'] [u'dog', u'clear', u'fresco', u'din'] [u'dollar', u'post', u'year', u'high'] [u'dont', u'send', u'problem', u'indonesia'] [u'doohan', u'back', u'rossi', u'yamaha', u'success'] [u'doubt', u'cast', u'coastal', u'group', u'futur'] [u'drought', u'take', u'toll', u'cereal', u'harvest', u'crop'] [u'east', u'timor', u'australia', u'consid', u'divid'] [u'eden', u'score', u'clean', u'beach'] [u'england', u'obey', u'fifa', u'order', u'card', u'ban'] [u'error', u'speed', u'camera', u'suspend'] [u'abattoir', u'worker', u'enjoy', u'partial', u'entitl'] [u'falconio', u'suspect', u'face', u'extradit', u'hear'] [u'farmer', u'begin', u'malle', u'harvest'] [u'farmer', u'urg', u'milk', u'free', u'trade', u'agreement'] [u'fear', u'hold', u'queensland', u'rail', u'job'] [u'feder', u'overcom', u'nalbandian', u'jinx'] [u'ferdinand', u'delay', u'judgment', u'dope', u'case'] [u'fijian', u'apologis', u'missionari', u'descend'] [u'fijian', u'attempt', u'lift', u'cannib', u'curs'] [u'fishermen', u'safe', u'boat', u'capsiz'] [u'flintoff', u'star', u'england', u'sweep', u'banger', u'odi'] [u'forest', u'coach', u'snub', u'leed'] [u'onetel', u'boss', u'abandon', u'asset', u'transfer'] [u'zealand', u'pakistan', u'trip'] [u'nomin', u'west', u'ward'] [u'franc', u'offer', u'iraq', u'help', u'sovereignti', u'restor'] [u'fund', u'boost', u'gascoyn', u'group'] [u'gastro', u'outbreak', u'forc', u'hospit', u'closur'] [u'kiss', u'worth'] [u'gillespi', u'name', u'redback', u'squad'] [u'govt', u'accus', u'mislead', u'australian'] [u'govt', u'fudg', u'unemploy', u'figur', u'acoss'] [u'govt', u'pave', u'merger'] [u'govt', u'remov', u'licenc', u'restrict'] [u'govt', u'wait', u'result', u'casa', u'review', u'chopper'] [u'great', u'aussi', u'bushman', u'rememb'] [u'greec', u'play', u'bomb', u'attack', u'ahead', u'olymp'] [u'greek', u'compani', u'shape', u'ship'] [u'green', u'immigr', u'polici', u'chang'] [u'group', u'reject', u'award', u'chang'] [u'guantanamo', u'interpret', u'charg'] [u'crime', u'taskforc', u'raid', u'sydney', u'home'] [u'hama', u'condemn', u'riyadh', u'bomb', u'harm', u'islam'] [u'handl', u'kurd', u'damag', u'australia'] [u'help', u'hand', u'break', u'hill', u'art', u'group'] [u'high', u'court', u'dismiss', u'vote', u'appeal'] [u'hollywood', u'aussi', u'honour'] [u'hong', u'kong', u'enlist', u'farmer', u'catch', u'harbour', u'croc'] [u'hope', u'rain', u'boost', u'prawn', u'number'] [u'hop', u'ecotour', u'gather', u'lift', u'riverland'] [u'hospit', u'death', u'bali', u'bomb', u'week', u'reform'] [u'howard', u'criticis', u'trade', u'tariff'] [u'hunter', u'jaeger', u'debut'] [u'ibanez', u'want', u'better'] [u'icpa', u'welcom', u'inclus', u'teacher', u'school'] [u'indonesia', u'attack', u'australia', u'turn', u'asylum'] [u'inquiri', u'call', u'kurd', u'arriv'] [u'inquiri', u'tell', u'legal', u'face', u'uncertain', u'futur'] [u'investor', u'hope', u'offer', u'golden', u'opportun'] [u'iran', u'back', u'nuclear', u'watchdog', u'report'] [u'iraq', u'suicid', u'attack', u'hit', u'italian', u'base'] [u'reject', u'playground', u'work'] [u'irrig', u'allow', u'north', u'east', u'farmer'] [u'isra', u'troop', u'stage', u'gaza', u'incurs'] [u'italian', u'minist', u'tour', u'iraq', u'bomb', u'site'] [u'itali', u'send', u'carabinieri', u'nasiriyah'] [u'jack', u'readi', u'game', u'life', u'wallabi'] [u'japan', u'hold', u'troop', u'iraq'] [u'job', u'train', u'group', u'close'] [u'knowl', u'reject', u'bureaucrat', u'protect', u'claim'] [u'labor', u'fight', u'chang', u'bushfir', u'effort'] [u'labor', u'reveal', u'superannu', u'plan'] [u'labor', u'split', u'rich'] [u'lay', u'atmospher', u'decept', u'presid'] [u'lawyer', u'win', u'gong', u'film', u'script'] [u'lightn', u'strike', u'caus', u'blackout'] [u'love', u'doubl', u'put', u'bull', u'command'] [u'lunar', u'pole', u'dust', u'studi'] [u'mackay', u'council', u'worker', u'snap', u'strike'] [u'macquari', u'bank', u'deposit', u'healthi', u'profit'] [u'charg', u'mail', u'centr', u'stab'] [u'jail', u'melbourn', u'water', u'suppli', u'threat'] [u'question', u'melbourn', u'underworld', u'slay'] [u'take', u'millmerran', u'council', u'law'] [u'meatwork', u'hire', u'staff'] [u'member', u'get', u'council', u'wast', u'plan'] [u'face', u'rape', u'charg', u'alibi', u'court', u'tell'] [u'minist', u'defend', u'taxi', u'scheme', u'cap'] [u'minist', u'discuss', u'retrench', u'hunter', u'valley'] [u'defend', u'fmit'] [u'muster', u'death', u'prompt', u'safeti', u'helmet'] [u'nation', u'slam', u'trial', u'accuraci'] [u'navi', u'rescu', u'indonesian', u'fishermen'] [u'gene', u'test', u'cancer', u'treatment'] [u'steel'] [u'port', u'redevelop', u'save', u'agricultur'] [u'station', u'go', u'north', u'afghanistan'] [u'time', u'sentiment', u'say', u'galthi'] [u'troubl', u'lawrenc', u'presid', u'latham'] [u'nrma', u'aim', u'boost', u'road', u'safeti', u'audit', u'result'] [u'nrma', u'offic', u'road', u'tomorrow'] [u'auditor', u'probe', u'australian', u'institut', u'music'] [] [u'green', u'question', u'labor', u'donat'] [u'polic', u'protect', u'lawsuit'] [u'tackl', u'drink', u'drive', u'offend'] [u'debat', u'thai', u'free', u'trade', u'opportun'] [u'govt', u'hop', u'resolut'] [u'nurs', u'home', u'death', u'spark', u'safeti', u'review'] [u'offic', u'raid', u'swiss', u'account', u'probe'] [u'nation', u'join', u'zone', u'rebat', u'debat'] [u'nation', u'seek', u'vote', u'death', u'penalti'] [u'oppn', u'say', u'water', u'whistleblow', u'receiv', u'rage'] [u'opposit', u'critic', u'closur', u'hospit'] [u'opposit', u'say', u'pittong', u'fit', u'govt', u'criteria'] [u'owen', u'leav', u'liverpool', u'option', u'open'] [u'patrol', u'probe', u'illeg', u'fish', u'trap'] [u'disput', u'disrupt', u'breakdown', u'servic'] [u'releas', u'passport', u'fraud', u'report'] [u'pole', u'beat', u'itali', u'friend'] [u'polic', u'question', u'stab', u'death'] [u'polic', u'releas', u'local', u'crime', u'figur'] [u'polic', u'face', u'court', u'lie', u'oath', u'charg'] [u'polic', u'question', u'prison', u'melbourn', u'murder'] [u'princip', u'target', u'educ', u'blueprint'] [u'properti', u'owner', u'warn', u'prepar', u'season'] [u'public', u'diamond', u'futur'] [u'public', u'urg', u'save', u'water', u'drought'] [u'dust', u'group', u'welcom', u'monitor'] [u'report', u'rais', u'indigen', u'learn', u'standard'] [u'report', u'show', u'mix', u'result', u'economi'] [u'reserv', u'bank', u'say', u'rat', u'rais', u'cool', u'hous'] [u'riverina', u'road', u'toll', u'grow'] [u'river', u'wast', u'caus', u'headach', u'council'] [u'roddick', u'agassi', u'beat', u'fererro'] [u'rspca', u'call', u'privat'] [u'irrig', u'welcom', u'murray', u'plan'] [u'school', u'contractor', u'talk', u'premier'] [u'scud', u'keep', u'shape', u'ahead', u'final'] [u'aim', u'peat'] [u'solomon', u'rebel', u'court', u'murder'] [u'south', u'africa', u'announc', u'aid', u'blitz'] [u'steadi'] [u'steel', u'tariff', u'rule', u'benefit', u'newcastl'] [u'steal', u'children', u'reunit', u'parent'] [u'strategist', u'push', u'busi', u'servic'] [u'studi', u'link', u'alzheim', u'diseas', u'smoke'] [u'survey', u'show', u'build', u'industri', u'growth'] [u'task', u'forc', u'gain', u'target', u'seven', u'murder'] [u'tasmania', u'play', u'littl', u'devil'] [u'prepar', u'anti', u'log', u'campaign'] [u'salmon', u'giant', u'make', u'splash'] [u'thorn', u'unworri', u'wallabi', u'haka', u'respons'] [u'creditor', u'meet'] [u'drop', u'battl', u'wine'] [u'tour', u'champ', u'defend', u'titl'] [u'turkish', u'kurd', u'beg', u'asylum'] [u'golf', u'world', u'champ', u'kick'] [u'soldier', u'kill', u'wound', u'iraq'] [u'extradit', u'broom', u'assault'] [u'wallabi', u'arriv', u'sydney'] [u'engin', u'award'] [u'union', u'predict', u'govt', u'backdown', u'reform'] [u'union', u'seek', u'billiton', u'execut', u'explan'] [u'union', u'challeng', u'execut'] [u'build', u'boom', u'lift', u'jam', u'hardi'] [u'twin', u'brother', u'doubl', u'crown'] [u'radiat', u'link', u'blind'] [u'vaccin', u'contract', u'meningococc', u'diseas'] [u'govt', u'consult', u'toxic', u'dump', u'sit'] [u'gear', u'season'] [u'wagga', u'nomin', u'senior', u'award'] [u'wallabi', u'weak', u'spot'] [u'premier', u'launch', u'region', u'develop', u'polici'] [u'water', u'author', u'clarifi', u'fine', u'power'] [u'wed', u'bell', u'ring', u'indian', u'mobil', u'phone'] [u'west', u'indi', u'zimbabw'] [u'wind', u'farm', u'boost', u'economi'] [u'wooden', u'love', u'forestri', u'minist', u'say'] [u'woodward', u'confid', u'catt', u'recal'] [u'woodward', u'make', u'chang', u'franc', u'clash'] [u'workcov', u'warn', u'industri', u'safeti', u'mesh'] [u'world', u'oldest', u'person', u'die', u'japan'] [u'zimbabw', u'court', u'rule', u'media', u'chief', u'stand', u'trial'] [u'abus', u'victim', u'urg', u'lodg', u'compo', u'claim'] [u'accident', u'hospit', u'death', u'ignor'] [u'diabet', u'rise', u'prompt', u'educ', u'campaign'] [u'actu', u'aim', u'minimum', u'wage', u'boost'] [u'advisori', u'committe', u'ask', u'consid', u'chang'] [u'keep', u'ticket', u'price', u'steadi'] [u'keep', u'ticket', u'price'] [u'agassi', u'schuettler', u'master', u'duel'] [u'disappoint', u'money', u'launder', u'outcom'] [u'consid', u'doubl', u'jeopardi', u'revamp'] [u'alfr', u'hospit', u'gastro', u'outbreak'] [u'black', u'determin', u'dump', u'choke'] [u'black', u'choker', u'gregan'] [u'hop', u'attract', u'doctor', u'canberra'] [u'urg', u'gympi', u'hospit'] [u'amwu', u'win', u'nation', u'support', u'protest', u'action'] [u'antarct', u'declin', u'hurt', u'ecosystem'] [u'arab', u'station', u'terror', u'fund', u'probe'] [u'ash', u'heat', u'brit'] [u'atsic', u'commission', u'ask', u'stand', u'asid'] [u'atsic', u'dub', u'indigen', u'report', u'shock'] [u'bail', u'post', u'letterbox', u'assault', u'case'] [u'balfour', u'sink', u'teeth', u'betabak'] [u'ballina', u'say', u'gambl', u'affect', u'aspir'] [u'beatti', u'challeng', u'accc', u'tabcorp'] [u'beatti', u'warn', u'lawrenc', u'work', u'crean'] [u'brack', u'vouch', u'mobil', u'speed', u'camera'] [u'brag', u'right', u'grab', u'north'] [u'bryant', u'face', u'alleg', u'victim', u'famili', u'court'] [u'bulk', u'bill', u'number', u'drop'] [u'burdekin', u'farmer', u'look', u'forward', u'record', u'crush'] [u'bushrang', u'forc', u'draw', u'love', u'tripl'] [u'bush', u'undecid', u'lift', u'steel', u'duti'] [u'bush', u'want', u'speed', u'transfer', u'power', u'iraqi'] [u'busi', u'chamber', u'want', u'chang', u'worker', u'law'] [u'dairi', u'farmer', u'boost', u'collect'] [u'central', u'polic', u'happi', u'crime', u'figur'] [u'china', u'coal', u'blast', u'kill'] [u'chines', u'road', u'toll', u'hit'] [u'civilian', u'march', u'welcom', u'home', u'parad'] [u'command', u'cost', u'judg', u'bench'] [u'concern', u'emerg', u'time', u'job', u'statist'] [u'concern', u'rais', u'byron', u'woman'] [u'coria', u'sweep', u'past', u'moya'] [u'councillor', u'join', u'push', u'coastal', u'council', u'reform'] [u'council', u'reject', u'extens', u'nightclub', u'hour'] [u'countri', u'brigad', u'give', u'assur'] [u'court', u'defer', u'governor', u'general', u'rule'] [u'court', u'extend', u'anim', u'protect'] [u'court', u'hear', u'question', u'alleg', u'drug'] [u'court', u'reject', u'speedier', u'clark', u'rape', u'hear'] [u'crash', u'spark', u'highway', u'care'] [u'crean', u'say', u'hell', u'work', u'lawrenc'] [u'credit', u'union', u'pass', u'rate', u'rise'] [u'crock', u'dragon', u'count', u'gigg', u'fear', u'factor'] [u'croc', u'taipan', u'clash'] [u'crow', u'chairman', u'seek', u'elect'] [u'dairi', u'farmer', u'meet', u'supermarket', u'chief'] [u'dallaglio', u'readi', u'battl', u'row'] [u'boer', u'eye', u'year', u'return'] [u'defenc', u'cadet', u'march', u'tare', u'street'] [u'democrat', u'support', u'reef', u'compens'] [u'deniliquin', u'council', u'consid', u'water', u'flourid'] [u'derelict', u'ship', u'move', u'sight'] [u'detect', u'deliv', u'fund', u'ultimatum'] [u'dollar', u'shoot', u'cent'] [u'drought', u'dri', u'beaudesert', u'water', u'suppli'] [u'dubbo', u'deputi', u'mayor', u'look', u'forward'] [u'nino', u'return'] [u'expert', u'evid', u'child', u'trial'] [u'eyr', u'elector', u'retain', u'court', u'rule'] [u'falconio', u'murder', u'accus', u'face', u'court'] [u'falconio', u'murder', u'suspect', u'arriv', u'darwin'] [u'falconio', u'suspect', u'charg', u'murder'] [u'falconio', u'suspect', u'face', u'darwin', u'court'] [u'farmer', u'sign', u'docker'] [u'farmer', u'ask', u'check', u'drought', u'elig'] [u'farmer', u'hear', u'nativ', u'veget', u'manag'] [u'fear', u'workcov', u'impost', u'hurt', u'rural', u'school'] [u'feder', u'say', u'govt', u'help', u'client'] [u'ferdinand', u'deni', u'misconduct', u'charg'] [u'fisher', u'gear', u'lobster', u'season'] [u'isra', u'secur', u'chief', u'blast', u'govern'] [u'foundat', u'contribut', u'fund', u'evalu', u'schooli'] [u'policemen', u'kill', u'southern', u'russia', u'blast'] [u'french', u'chang', u'tack', u'iraq'] [u'fresh', u'doubt', u'govt', u'boat', u'claim'] [u'fruit', u'black', u'melbourn', u'suburb'] [u'georgia', u'presid', u'appeal', u'calm'] [u'germani', u'lead', u'golf', u'world'] [u'gerrard', u'rule', u'denmark', u'game'] [u'goulburn', u'dump', u'develop', u'confid', u'ahead'] [u'govt', u'offer', u'fund', u'landhold', u'legal', u'advic'] [u'govt', u'refuge', u'admiss', u'spark', u'furor'] [u'govt', u'urg', u'review', u'heavi', u'transport', u'industri'] [u'govt', u'boost', u'casual', u'teacher', u'number'] [u'great', u'britain', u'long', u'kangaroo', u'clash'] [u'greek', u'gay', u'protest', u'fine', u'snog'] [u'gregan', u'turn', u'heat', u'black'] [u'group', u'ralli', u'save', u'train', u'servic'] [u'hanson', u'back', u'prosecut', u'inquiri'] [u'hattah', u'lake', u'add', u'murray', u'environment', u'flow'] [u'hector', u'jail', u'anti', u'log', u'protest'] [u'high', u'court', u'reject', u'kurd', u'case'] [u'high', u'court', u'reject', u'nation', u'fraud', u'appeal'] [u'holland', u'unleash', u'scot'] [u'hollywood', u'girl', u'courtney', u'love', u'plead', u'guilti'] [u'immigr', u'hous', u'pretti', u'good', u'vanston', u'say'] [u'india', u'hail', u'success', u'commonwealth'] [u'india', u'match', u'aussi', u'aggress', u'tendulkar'] [u'indian', u'selector', u'postpon', u'test', u'squad', u'announc'] [u'india', u'win', u'host', u'commonwealth', u'game'] [u'indonesia', u'know', u'melvill', u'boat', u'howard'] [u'insur', u'cost', u'spoil', u'break', u'hill', u'christma', u'parti'] [u'ironman', u'champ', u'fear', u'sport', u'futur'] [u'itali', u'blame', u'qaeda', u'baghdad', u'attack'] [u'offici', u'wallabi', u'hold', u'sucker'] [u'offici', u'wallabi', u'hold', u'sucker'] [u'japanes', u'economi', u'show', u'surpris', u'growth'] [u'jone', u'testifi', u'dope', u'probe'] [u'kangaroo', u'count', u'vere'] [u'kimberley', u'aborigin', u'cheer', u'land', u'handov'] [u'kiwi', u'lose', u'fleme', u'india', u'match'] [u'kiwi', u'review', u'pakistan', u'tour', u'follow', u'explicit'] [u'latham', u'hose', u'divis'] [u'latrob', u'valley', u'fast', u'rail', u'work', u'track'] [u'lawyer', u'condemn', u'polic', u'action'] [u'leed', u'star', u'smith', u'arrest', u'report'] [u'injuri', u'put', u'jackson', u'action'] [u'lucki', u'escap', u'lose', u'hobart'] [u'magistr', u'stand', u'trial', u'child', u'charg'] [u'charg', u'firearm', u'offenc'] [u'mcdonald', u'target', u'kid', u'toy', u'cloth'] [u'mcgradi', u'want', u'lower', u'crime', u'rate'] [u'melbourn', u'substat', u'explos', u'black', u'home'] [u'jail', u'memori', u'laps', u'offer', u'critic'] [u'safeti', u'threat', u'board', u'say'] [u'mine', u'compani', u'readi', u'start', u'underground', u'oper'] [u'mine', u'energi', u'sector', u'look', u'forward', u'strong', u'growth'] [u'minist', u'defend', u'public', u'hous', u'sell'] [u'minist', u'turn', u'tap', u'rosali', u'shire', u'resid'] [u'time', u'seek', u'communiti', u'bank', u'pledg'] [u'mother', u'concern', u'son', u'health', u'inquest', u'tell'] [u'naval', u'exercis', u'signal', u'phase', u'china', u'india'] [u'intern', u'weapon', u'control', u'agre'] [u'test', u'help', u'focus', u'treatment'] [u'resolut', u'mackay', u'council', u'industri'] [u'nrma', u'join', u'motor', u'bodi', u'lobbi', u'road'] [u'creat', u'public', u'transport', u'watchdog'] [u'opposit', u'leader', u'dump'] [u'anim', u'healthi', u'buyer'] [u'number', u'miner', u'energi', u'project'] [u'oleari', u'deni', u'leed', u'return'] [u'onesteel', u'move', u'stage', u'life', u'extens'] [u'organis', u'band', u'fight', u'heart', u'diseas'] [u'owen', u'continent', u'say', u'toshack', u'report'] [u'plan', u'moot', u'reduc', u'hospit', u'bed'] [u'deni', u'coalit', u'lose', u'iraqi', u'support'] [u'polic', u'claim', u'communiti', u'awar', u'help'] [u'polic', u'continu', u'hunt', u'miss', u'mudge', u'woman'] [u'polic', u'fear', u'safeti', u'miss', u'fisherman'] [u'polic', u'investig', u'oyster', u'theft'] [u'polic', u'releas', u'accid', u'victim'] [u'privat', u'owner', u'meet', u'dept', u'head'] [u'privat', u'owner', u'miss', u'meet'] [u'profit', u'gladston', u'rockhampton', u'port'] [u'properti', u'owner', u'warn', u'danger', u'period'] [u'question', u'rais', u'school', u'support', u'servic'] [u'raaf', u'personnel', u'remain', u'iraq'] [u'race', u'club', u'saddl'] [u'rain', u'fail', u'eas', u'drought', u'concern'] [u'chief', u'warn', u'generat'] [u'queri', u'properti', u'break'] [u'real', u'england', u'semi', u'final', u'woodward'] [u'record', u'break', u'lara', u'batter', u'zimbabw'] [u'renison', u'stay', u'administr'] [u'research', u'creat', u'virus', u'synthet', u'gene'] [u'rfds', u'mental', u'health', u'servic', u'servic', u'western'] [u'riverland', u'call', u'minist', u'start', u'murray', u'water'] [u'rumsfeld', u'meet', u'japan'] [u'citrus', u'grower', u'face', u'tough', u'season'] [u'schuettler', u'rain', u'roddick', u'parad'] [u'secur', u'guard', u'charg', u'mine', u'expo', u'theft'] [u'secur', u'inquiri', u'jump', u'follow', u'theft'] [u'separ', u'twin', u'leav', u'hospit'] [u'seri', u'club', u'repeat', u'boycott', u'threat'] [u'sheep', u'ship', u'return', u'australia'] [u'reinvent', u'great', u'southern', u'muster'] [u'smelter', u'damag', u'port', u'piri', u'blast'] [u'sprint', u'star', u'green', u'coach', u'call', u'drug', u'ban'] [u'lankan', u'peac', u'process', u'hold'] [u'state', u'angri', u'school', u'fund', u'threat'] [u'state', u'commit', u'murray', u'plan'] [u'strong', u'dollar', u'hamper', u'ord'] [u'stun', u'roddick', u'face', u'test', u'stay'] [u'sydney', u'airport', u'sell', u'complet'] [u'sydney', u'face', u'traffic', u'chao', u'report', u'say'] [u'tafe', u'develop', u'train', u'packag', u'mine'] [u'taiwanes', u'arrest', u'charg'] [u'hop', u'pulp', u'offer'] [u'tasmanian', u'green', u'fear', u'pulp', u'pollut'] [u'telstra', u'aim', u'market', u'resurg'] [u'test', u'determin', u'fox', u'home'] [u'theatr', u'compani', u'increas', u'darl', u'down', u'talent'] [u'thousand', u'tip', u'flock', u'holiday', u'expo'] [u'thousand', u'tip', u'christma', u'parad'] [u'tiger', u'scent', u'victori', u'hobart'] [u'turtl', u'return', u'provid', u'wealth', u'inform'] [u'face', u'court', u'inverel', u'brawl'] [u'ullrich', u'expans', u'pave', u'job', u'growth'] [u'uncl', u'enlist', u'battl', u'aborigin', u'health'] [u'head', u'challeng', u'educ'] [u'unit', u'swoop', u'chines', u'teenag'] [u'battl', u'resist', u'baghdad'] [u'face', u'iraqi', u'fighter', u'chief'] [u'hacker', u'sentenc', u'jazeera', u'attack'] [u'navi', u'hand', u'target', u'practic', u'island'] [u'redeploy', u'iraqi', u'command', u'qatar'] [u'rethink', u'iraq', u'tactic'] [u'vanston', u'open', u'controversi', u'detent', u'hous'] [u'deni', u'toxic', u'dump', u'site', u'choos'] [u'polic', u'demand', u'fund', u'boost'] [u'vic', u'forc', u'draw', u'love', u'tripl'] [u'victoria', u'reach', u'love', u'tripl'] [u'viduka', u'scapegoat', u'report'] [u'villeneuv', u'wont', u'drive', u'report'] [u'coronor', u'surpris', u'prison', u'suicid'] [u'govt', u'urg', u'clarifi', u'vote', u'valu', u'stanc'] [u'judg', u'appoint', u'crime', u'tribun'] [u'wall', u'street', u'unmov', u'data'] [u'pave', u'deal'] [u'polic', u'prepar', u'schooli', u'delug'] [u'polic', u'extradit', u'brother'] [u'senat', u'drop', u'labor', u'faction'] [u'water', u'suppli', u'okay', u'despit', u'drought'] [u'webb', u'alabama'] [u'itali', u'canadian', u'like', u'roam'] [u'wollongong', u'jobless', u'rate', u'worst'] [u'world', u'train', u'strike', u'loom', u'sydney'] [u'year', u'itali', u'worst', u'career', u'say', u'rivaldo'] [u'kill', u'istanbul', u'synagogu', u'explos'] [u'kill', u'flood', u'hit', u'central', u'vietnam'] [u'aussi', u'fraser', u'share', u'china', u'open', u'lead'] [u'aussi', u'plan', u'swallow', u'heroin', u'pack'] [u'australia', u'ahead', u'half', u'time'] [u'beach', u'german', u'pair'] [u'beatti', u'drink', u'drive', u'case', u'add', u'england', u'farc'] [u'blast', u'wound', u'northern', u'iraq'] [u'bomb', u'kill', u'soldier', u'baghdad', u'militari'] [u'brain', u'tumour', u'kill', u'children'] [u'brave', u'stand', u'offer', u'tasmania', u'hope'] [u'britain', u'declar', u'state', u'alert', u'say'] [u'cadburi', u'consid', u'diet', u'tip', u'label'] [u'budget', u'surplus'] [u'defenc', u'dept', u'sign', u'adelaid'] [u'chines', u'offici', u'warn', u'unlaw'] [u'coalit', u'underestim', u'iraqi', u'opposit'] [u'confid', u'vogt', u'count', u'scot', u'spirit', u'sink'] [u'cormo', u'express', u'return', u'australia'] [u'costello', u'advisor', u'win', u'liber', u'select'] [u'countri', u'pledg', u'tighten', u'nation', u'bioweapon'] [u'court', u'action', u'loom', u'bushland', u'acquisit', u'disput'] [u'crew', u'battl', u'bushfir', u'victoria'] [u'cuban', u'independ', u'journalist', u'free', u'year'] [u'cycl', u'club', u'celebr', u'centenari'] [u'delasin', u'share', u'slim', u'lead', u'tournament'] [u'venuto', u'star', u'tiger', u'seal', u'unlik'] [u'dozen', u'injur', u'victorian', u'train', u'derail'] [u'condit', u'firefight', u'busi'] [u'economist', u'upbeat', u'south', u'east', u'properti'] [u'egyptian', u'twin', u'start', u'plastic', u'surgeri'] [u'england', u'spinner', u'croft'] [u'priest', u'lose', u'extradit', u'fight'] [u'feder', u'beat', u'ferrero', u'remain', u'perfect', u'master'] [u'govt', u'repres', u'face', u'heroin', u'charg'] [u'film', u'industri', u'gather', u'byron', u'confer'] [u'firearm', u'seizur', u'prais', u'ellison'] [u'firefight', u'hand'] [u'appear', u'court', u'illeg', u'gun', u'seizur'] [u'fleme', u'readi', u'lead', u'zealand', u'pakistan'] [u'stab', u'fight', u'outsid', u'sydney', u'casino'] [u'franc', u'australia', u'promot', u'tourism', u'share'] [u'activist', u'stage', u'public', u'kiss', u'protest'] [u'global', u'pact', u'stall', u'ozon', u'damag', u'fumig'] [u'govt', u'push', u'asid', u'fraud', u'trial', u'atsic'] [u'govt', u'accept', u'role', u'hous', u'price'] [u'govt', u'suffer', u'properti', u'law'] [u'green', u'lobbi', u'govt', u'recal', u'troop', u'iraq'] [u'green', u'seek', u'inquiri', u'asylum', u'seeker'] [u'hama', u'leader', u'yassin', u'readi', u'hold', u'truce', u'talk'] [u'handwritten', u'lennon', u'lyric', u'auction'] [u'harri', u'potter', u'spoof', u'film'] [u'hawk', u'soar', u'place'] [u'hungri', u'wolv', u'shock', u'parramatta'] [u'india', u'toss', u'elect', u'zealand'] [u'indigen', u'festiv', u'kick', u'state', u'origin'] [u'inter', u'kallon', u'face', u'steroid', u'test'] [u'iraqi', u'self', u'rule', u'june', u'report'] [u'italian', u'survivor', u'return', u'home', u'iraq', u'attack'] [u'japan', u'jolt', u'quak'] [u'juri', u'sniper', u'trial'] [u'lee', u'expect', u'appear', u'falconio', u'murder', u'hear'] [u'malaysian', u'girl', u'arrest', u'australian', u'murder'] [u'arrest', u'suspicion', u'kill', u'peopl'] [u'hospit', u'assault'] [u'marconi', u'down', u'striker'] [u'marsh', u'pledg', u'england', u'cricket', u'superpow'] [u'massiv', u'world', u'audienc', u'tribut', u'match'] [u'media', u'watchdog', u'join', u'lawsuit', u'soldier'] [u'medicar', u'plan', u'long', u'democrat'] [u'melbourn', u'degre', u'weather', u'chang'] [u'mortlock', u'put', u'australia', u'ahead'] [u'moussaoui', u'repres', u'judg', u'rule'] [u'murdoch', u'rough', u'ride', u'bskyb', u'sharehold'] [u'murdoch', u'surviv', u'bskyb', u'sharehold', u'revolt'] [u'medicar', u'packag', u'boost', u'bulk', u'bill', u'abbott'] [u'nolan', u'galleri', u'review', u'amid', u'visitor'] [u'ozon', u'talk', u'resolut'] [u'pair', u'refus', u'bail', u'illeg', u'gun'] [u'parti', u'disun', u'continu', u'despit', u'mill'] [u'passion', u'gould', u'renew', u'blue', u'deal'] [u'pill', u'shouldnt', u'option', u'arthriti'] [u'play', u'underway', u'sydney'] [u'polic', u'probe', u'melbourn', u'tram', u'incid'] [u'portugues', u'journalist', u'abduct', u'iraq'] [u'power', u'explos', u'rock', u'istanbul', u'synagogu'] [u'prop', u'darwin', u'neck', u'injuri', u'scare'] [u'protest', u'govt', u'rethink', u'renew'] [u'protest', u'surround', u'georgian', u'presid', u'offic'] [u'putin', u'seek', u'calm', u'russian', u'busi', u'leader'] [u'child', u'abus', u'case', u'surg'] [u'quak', u'kill', u'china'] [u'rivaldo', u'eye', u'liverpool'] [u'roddick', u'advanc', u'master', u'semi', u'final'] [u'ronaldo', u'defend', u'agent', u'fraud', u'scandal'] [u'sabotag', u'suspect', u'train', u'derail'] [u'govt', u'deni', u'public', u'hospit', u'poach', u'insur'] [u'scientist', u'concern', u'dwindl', u'antarct'] [u'secur', u'step', u'british', u'high', u'commiss'] [u'sept', u'suspect', u'tell', u'repres'] [u'seven', u'dead', u'troop', u'terror', u'suspect'] [u'offend', u'rehab', u'program', u'doubl'] [u'showdown', u'sydney'] [u'sorenstam', u'singapor'] [u'sorenstam', u'lead', u'singapor', u'skin'] [u'south', u'african', u'lead', u'world', u'golf'] [u'spanish', u'tenor', u'land', u'perth', u'concert'] [u'consensus', u'world', u'inform'] [u'streak', u'inspir', u'zimbabw', u'fightback'] [u'struggl', u'minardi', u'woo', u'lucrat', u'arab', u'market'] [u'swedish', u'bank', u'baffl', u'mint', u'deliveri', u'go'] [u'taliban', u'suspect', u'kill', u'fight', u'afghan', u'troop'] [u'back', u'push', u'affirm', u'action', u'legal'] [u'rank', u'twin', u'face', u'french', u'master'] [u'tram', u'driver', u'hospit', u'attack'] [u'troop', u'search', u'journalist', u'iraqi', u'ambush'] [u'union', u'call', u'tram', u'conductor', u'driver'] [u'union', u'threaten', u'strike', u'action', u'public', u'sector'] [u'say', u'evid', u'iraq', u'weapon', u'syria'] [u'step', u'campaign', u'iraq'] [u'tech', u'stock', u'eas', u'drug', u'underpin', u'blue', u'chip'] [u'stay', u'iraq', u'free', u'peac', u'bush', u'vow'] [u'vermeulen', u'maiden', u'centuri', u'keep', u'zimbabw', u'hop'] [u'compani', u'score', u'research', u'grant'] [u'deal', u'black', u'rare', u'island', u'wildlif'] [u'wallabi', u'world', u'final'] [u'wallabi', u'look', u'franc', u'upset', u'inspir'] [u'woodward', u'dismiss', u'foul', u'play', u'claim'] [u'world', u'semi', u'leav', u'singl', u'kiwi', u'shelf'] [u'march', u'oppos', u'racism', u'corpor', u'greed'] [u'sperm', u'whale', u'strand', u'beach'] [u'hurt', u'bogata', u'explos'] [u'rebel', u'kill', u'aceh'] [u'adelaid', u'leap', u'share', u'wnbl', u'lead'] [u'agassi', u'feder', u'master', u'final'] [u'ancient', u'play', u'show', u'text', u'mummi'] [u'ansett', u'continu', u'asic', u'head'] [u'asic', u'lobbi', u'stronger', u'link', u'swiss'] [u'autopsi', u'find', u'bondi', u'beach', u'dolphin', u'spear'] [u'beatti', u'rule', u'schooli'] [u'beckham', u'deni', u'report', u'marriag', u'crisi'] [u'briton', u'dubious', u'bush', u'ahead', u'state', u'visit'] [u'bryan', u'brother', u'outlast', u'french', u'pair', u'claim'] [u'bush', u'annan', u'condemn', u'turkish', u'synagogu', u'attack'] [u'bushrang', u'romp', u'seven', u'wicket'] [u'indigen', u'group', u'push', u'inquiri'] [u'review', u'court', u'rule', u'melvill', u'case'] [u'halt', u'hous', u'develop', u'amid'] [u'casualti', u'undermin', u'iraq', u'effort'] [u'china', u'polic', u'alleg', u'serial', u'killer'] [u'chines', u'death', u'toll', u'rise'] [u'chines', u'teen', u'expel', u'zealand', u'fatal'] [u'classic', u'adelaid', u'display'] [u'concord', u'mania', u'auction', u'price', u'sky'] [u'congo', u'confirm', u'ebola', u'outbreak'] [u'darwin', u'tell', u'injuri', u'terror'] [u'death', u'toll', u'climb', u'cruis', u'ship', u'accid'] [u'death', u'toll', u'rise', u'synagogu', u'attack'] [u'economist', u'solid', u'growth'] [u'dead', u'queen', u'mari', u'accid'] [u'eriksson', u'hit', u'smith', u'select', u'debacl'] [u'explos', u'kill', u'injur', u'colombia'] [u'farmer', u'dairi', u'post', u'record', u'profit'] [u'firefight', u'contain', u'gippsland', u'blaze'] [u'bangladesh', u'tribal', u'peac', u'worker', u'kill'] [u'glori', u'seiz', u'spot'] [u'goosen', u'top', u'singapor', u'skin'] [u'group', u'claim', u'respons', u'dead', u'turkish'] [u'group', u'urg', u'public', u'smoke', u'ban'] [u'ibanez', u'say', u'england', u'come', u'fight'] [u'india', u'rooki', u'pacemen', u'australia', u'tour'] [u'india', u'face', u'australia', u'kolkata', u'showdown'] [u'industri', u'remain', u'concern', u'nation'] [u'injuri', u'worri', u'triumphant', u'wallabi'] [u'ipswich', u'logan', u'properti', u'area', u'reiq'] [u'iraq', u'prepar', u'june', u'handov'] [u'isra', u'lay', u'wreath', u'victim', u'istanbul'] [u'job', u'remain', u'doubt', u'abattoir', u'futur', u'uncertain'] [u'jone', u'back', u'mitchel'] [u'jone', u'prais', u'mortlock', u'magic'] [u'kangaroo', u'clinch', u'ash', u'seri'] [u'kidnap', u'portugues', u'journalist', u'free', u'iraq'] [u'king', u'perfect', u'bullet', u'target'] [u'knive', u'mitchel', u'kiwi', u'seek', u'scapegoat'] [u'leonard', u'set', u'world', u'test', u'record'] [u'maltes', u'claim', u'human', u'rainbow', u'record'] [u'charg', u'assault', u'brisban', u'inner', u'citi'] [u'stab', u'south', u'yarra', u'train', u'station'] [u'chart', u'australia', u'grow', u'dryness'] [u'zealand', u'mourn', u'black', u'exit'] [u'evid', u'brigitt', u'luca', u'height', u'plan'] [u'coach', u'vow', u'carri'] [u'mourn', u'world', u'loss'] [u'opposit', u'call', u'greater', u'role', u'train'] [u'owen', u'pledg', u'futur', u'liverpool'] [u'palestinian', u'shoot', u'dead', u'gaza', u'raid'] [u'palestinian', u'teenag', u'kill', u'isra', u'troop'] [u'patent', u'applic', u'drop', u'time', u'year'] [u'peopl', u'smuggler', u'test', u'australia', u'border', u'ruddock'] [u'polic', u'seek', u'miss', u'woman', u'brisban'] [u'program', u'aim', u'boost', u'season', u'worker', u'prospect'] [u'protest', u'halt', u'action', u'georgian', u'capit'] [u'protest', u'explicit', u'educ', u'program'] [u'govt', u'back', u'milk', u'price', u'summit'] [u'govt', u'urg', u'abandon', u'speed', u'camera', u'trial'] [u'queen', u'mari', u'gangway', u'collaps', u'inquiri', u'begin'] [u'research', u'develop', u'synthet', u'vaccin'] [u'road', u'accid', u'south', u'africa', u'kill'] [u'ruddock', u'downplay', u'asylum', u'seeker', u'disput'] [u'rumsfeld', u'rule', u'earli', u'iraq', u'withdraw'] [u'russian', u'train', u'crash', u'kill'] [u'govt', u'launch', u'tourism', u'plan'] [u'saudi', u'academ', u'slam', u'islam', u'affair', u'minist'] [u'scot', u'surpris', u'dutch', u'euro', u'play', u'off'] [u'serb', u'elect', u'presid'] [u'sewag', u'spill', u'swan', u'river'] [u'sharon', u'convinc', u'turkish', u'author', u'catch'] [u'sonic', u'devic', u'hail', u'save', u'dolphin', u'shark'] [u'south', u'africa', u'control', u'golf', u'world'] [u'stang', u'iraq', u'start', u'tour'] [u'strong', u'wind', u'push', u'kurri', u'kurri', u'home'] [u'surg', u'complaint', u'lawyer'] [u'synagogu', u'bomb', u'toll', u'rise'] [u'onlin', u'advisori', u'board', u'member', u'announc'] [u'pilgrim', u'kill', u'road', u'crash', u'south', u'india'] [u'toilet', u'user', u'tell', u'mind', u'pee'] [u'toll', u'queen', u'mari', u'disast', u'rise'] [u'toll', u'rise', u'chopper', u'collis'] [u'train', u'derail', u'deliber', u'polic'] [u'tram', u'attack', u'push', u'worker', u'industri', u'action'] [u'turkey', u'dismiss', u'synagogu', u'bomb', u'claim'] [u'turn', u'kurd', u'away', u'prevent', u'refuge', u'influx', u'ruddock'] [u'charg', u'victorian', u'train', u'derail'] [u'helicopt', u'crash', u'iraq'] [u'helicopt', u'crash', u'iraqi', u'citi', u'wit'] [u'worker', u'shoot', u'dead', u'afghanistan'] [u'forc', u'sweep', u'arrest', u'baghdad'] [u'judg', u'dismiss', u'lawsuit', u'saudi', u'royal'] [u'militari', u'power', u'unpreced', u'chang', u'expert'] [u'polic', u'launch', u'crimin', u'probe', u'train'] [u'victorian', u'claim', u'victori', u'hobart', u'point'] [u'vietnam', u'flood', u'toll', u'hit'] [u'wallabi', u'answer', u'critic', u'flawless', u'perform'] [u'warn', u'extrem', u'weather', u'condit', u'spark'] [u'webb', u'tesk', u'stay', u'touch'] [u'west', u'indi', u'wicket', u'victori'] [u'wilko', u'boot', u'england', u'world', u'final'] [u'windi', u'clinch', u'zimbabw', u'seri'] [u'woodward', u'confid', u'ahead', u'french', u'clash'] [u'aint', u'see', u'claim', u'jubil', u'jone'] [u'aborigin', u'dancer', u'intern'] [u'abus', u'claim', u'resurfac', u'leski', u'inquest'] [u'speed', u'camera', u'accur', u'minist'] [u'daili', u'walk', u'prolong', u'life', u'confer'] [u'campaign', u'call', u'smoke', u'free', u'pub'] [u'albani', u'ambul', u'keep', u'demand'] [u'alcohol', u'abus', u'women', u'rise', u'report'] [u'black', u'ralli', u'coach', u'mitchel'] [u'alleg', u'drug', u'traffick', u'appear', u'thai', u'court'] [u'qaeda', u'issu', u'car', u'death', u'warn'] [u'qaeda', u'warn', u'tokyo', u'attack', u'report'] [u'argentina', u'control', u'brazil', u'hold'] [u'arson', u'willow', u'grove', u'blaze'] [u'follow', u'bank'] [u'author', u'unsur', u'bellinzona', u'blaze', u'caus'] [u'bali', u'bomber', u'testifi', u'suspect', u'trial'] [u'batti', u'call', u'kick', u'rule', u'rethink'] [u'best', u'enemi', u'face', u'world', u'final'] [u'crowd', u'turn', u'scottsdal'] [u'storm', u'black', u'west', u'home'] [u'bollywood', u'pair', u'sizzl', u'terror'] [u'bombala', u'teacher', u'name', u'state', u'best'] [u'bond', u'receiv', u'royal', u'visit'] [u'brake', u'break', u'hill', u'adelaid', u'servic'] [u'bush', u'dismiss', u'saddam', u'tape'] [u'campaign', u'target', u'drought', u'affect', u'busi'] [u'cannon', u'warn', u'wilko', u'danger'] [u'cathol', u'church', u'appeal', u'school', u'discrimin', u'case'] [u'chang', u'aplenti', u'geraldton', u'educ'] [u'chines', u'race', u'festiv', u'draw', u'record', u'crowd'] [u'church', u'secretari', u'trial', u'alleg', u'steal'] [u'condemn', u'reform'] [u'conrad', u'black', u'resign', u'payment', u'probe'] [u'corangamit', u'council', u'seek', u'wast', u'dump', u'detail'] [u'coron', u'begin', u'leski', u'investig'] [u'council', u'fast', u'track', u'intersect', u'upgrad'] [u'council', u'worker', u'concern'] [u'court', u'appear', u'speedi', u'driver'] [u'croc', u'question', u'loss', u'king'] [u'croc', u'question', u'refere', u'loss', u'king'] [u'cruis', u'ship', u'passeng', u'face', u'tough', u'quarantin', u'fin'] [u'curfew', u'lift', u'underworld', u'figur', u'father'] [u'dane', u'spoil', u'england', u'perfect'] [u'darwin', u'ship', u'wreck', u'tout', u'tourist', u'site'] [u'debat', u'continu', u'exhibit', u'centr', u'site'] [u'deed', u'signal', u'homestead', u'handov'] [u'democrat', u'warn', u'rann', u'voter', u'backlash'] [u'dept', u'investig', u'concern', u'fatal', u'accid'] [u'deputi', u'mayor', u'leav', u'independ'] [u'detent', u'centr', u'detaine'] [u'vaio', u'rescu', u'itali'] [u'dokic', u'end', u'australian', u'open', u'exil'] [u'dollar', u'reduc', u'diesel', u'price', u'seafood'] [u'downer', u'accus', u'labor', u'iraq', u'turn'] [u'drink', u'drive', u'charg', u'flow', u'polic', u'crackdown'] [u'england', u'favourit', u'beat', u'australia'] [u'england', u'leagu', u'serv', u'doubl', u'miseri'] [u'england', u'skipper', u'hail', u'fantast', u'wilko'] [u'environment', u'handbook', u'assist', u'canberran'] [u'ethiopian', u'jew', u'accus', u'israel', u'racism'] [u'exercis', u'test', u'fish', u'diseas', u'procedur'] [u'expert', u'baffl', u'qlds', u'tast', u'speed'] [u'fan', u'ask', u'jump', u'ship', u'pirat', u'sink'] [u'farmer', u'weather', u'nino', u'woe'] [u'farmer', u'receiv', u'storm', u'damag', u'relief'] [u'peopl', u'doctor', u'tell'] [u'feder', u'humbl', u'agassi', u'master'] [u'damag', u'tamworth', u'pcyc'] [u'firefight', u'hope', u'contain', u'blaze'] [u'kill', u'taiwan', u'firework', u'factori', u'blast'] [u'franc', u'fall', u'fail', u'emerg'] [u'french', u'coach', u'reject', u'drop', u'goal', u'chang'] [u'galthi', u'pull', u'play'] [u'geelong', u'announc', u'profit'] [u'lose', u'home', u'battl'] [u'gigg', u'declar', u'return'] [u'gladston', u'nurs', u'honour', u'chariti', u'effort'] [u'governor', u'schwarzenegg', u'offic'] [u'govt', u'brush', u'qaeda', u'threat'] [u'govt', u'urg', u'consid', u'south', u'coast', u'multi', u'purpos'] [u'govt', u'urg', u'revis', u'cyclon', u'build', u'polici'] [u'group', u'launch', u'indigen', u'aquacultur', u'studi'] [u'group', u'protest', u'riverway', u'townhous', u'plan'] [u'group', u'benefit', u'council', u'grant'] [u'gundagai', u'produc', u'receiv', u'assist'] [u'hanson', u'ettridg', u'unsur', u'inquiri'] [u'high', u'hop', u'sheep', u'breed', u'secur', u'wool', u'suppli'] [u'honda', u'snub', u'depart', u'rossi'] [u'indigen', u'leader', u'hear', u'shop', u'centr', u'site'] [u'indigen', u'peopl', u'benefit', u'forestri'] [u'invest', u'youth', u'leagu', u'star', u'jone'] [u'invest', u'disput', u'flare', u'project'] [u'irrig', u'chairman', u'pleas', u'plan', u'murray'] [u'irrig', u'welcom', u'hattah', u'lake', u'decis'] [u'isra', u'palestinian', u'examin', u'altern', u'peac'] [u'seek', u'applic', u'univers', u'council'] [u'johnson', u'hail', u'fantast', u'wilko'] [u'jone', u'woodward', u'buri', u'hatchet'] [u'juri', u'swear', u'inmat', u'murder', u'trial'] [u'kalgoorli', u'busi', u'rais', u'water', u'concern'] [u'karzai', u'condemn', u'worker', u'death'] [u'kennedi', u'quit', u'tech', u'compani', u'board'] [u'kidney', u'dialysi', u'outlook', u'news', u'health'] [u'kiwi', u'skipper', u'fleme', u'pakistan', u'trip'] [u'labor', u'question', u'lack', u'peopl', u'smuggl', u'arrest'] [u'landhold', u'seek', u'groundwat'] [u'laport', u'get', u'vote', u'confid', u'french', u'rugbi'] [u'lee', u'optimist', u'medicar', u'packag'] [u'macair', u'defend', u'servic', u'cut'] [u'acquit', u'schoolboy', u'murder'] [u'die', u'hume', u'highway', u'crash'] [u'face', u'court', u'abattoir', u'stab'] [u'fin', u'carri', u'flare', u'luggag'] [u'get', u'year', u'student', u'kidnap'] [u'mango', u'grower', u'report', u'mix', u'result', u'harvest'] [u'plead', u'guilti', u'drive', u'drug', u'offenc'] [u'marshal', u'island', u'vote', u'deal'] [u'mayor', u'hope', u'clark', u'local', u'issu'] [u'appear', u'court', u'train', u'derail'] [u'mine', u'compani', u'start', u'diamond', u'explor'] [u'minist', u'predict', u'prosper', u'season', u'tabl'] [u'troop', u'return', u'solomon'] [u'warn', u'bendigo', u'thoroughfar'] [u'murray', u'irrig', u'welcom', u'water', u'plan'] [u'nake', u'bok', u'order', u'train', u'gunpoint', u'report'] [u'facil', u'help', u'fight', u'malaria'] [u'zealand', u'loss'] [u'nigerian', u'presid', u'meet', u'mugab'] [u'nikkei', u'slump', u'terror', u'fear'] [u'guarante', u'stall', u'rail', u'standardis'] [u'postal', u'ballot', u'burdekin', u'local', u'govt', u'elect'] [u'north', u'queensland', u'target', u'adventur', u'tourist'] [u'fare', u'soar'] [u'look', u'revamp'] [u'target', u'asia', u'timber', u'export'] [u'pair', u'highway', u'crash'] [u'pair', u'face', u'court', u'train', u'derail'] [u'pavarotti', u'marri', u'want', u'child'] [u'peninsula', u'redevelop', u'plan', u'spotlight'] [u'plan', u'aim', u'boost', u'north', u'west', u'tourism', u'potenti'] [u'plan', u'wildlif', u'law', u'offer', u'certainti'] [u'scotch', u'deputi', u'media', u'plan'] [u'polic', u'continu', u'probe', u'toddler', u'drown'] [u'polic', u'offer', u'drink', u'drive', u'remind'] [u'polic', u'star', u'forc', u'offic', u'join', u'search', u'miss'] [u'polic', u'hunt', u'cole', u'arm', u'bandit'] [u'pollut', u'affect', u'derwent', u'report'] [u'power', u'industri', u'review', u'question'] [u'presid', u'lead', u'mourn', u'itali', u'dead'] [u'privat', u'comment', u'lead', u'libel', u'case'] [u'probe', u'launch', u'power', u'station'] [u'probe', u'consid', u'higher', u'educ', u'particip'] [u'putin', u'warn', u'busi', u'share', u'wealth'] [u'govt', u'consid', u'schooli'] [u'lose', u'rapist', u'prison'] [u'watchdog', u'take', u'hanson', u'trial', u'probe'] [u'record', u'profit', u'cheesemak', u'despit', u'drought'] [u'refshaug', u'reject', u'school', u'critic'] [u'report', u'highlight', u'drink', u'woe'] [u'resid', u'urg', u'suppli', u'sampl', u'aerial'] [u'restaur', u'serv', u'sushi'] [u'rockhampton', u'get', u'obstetrician'] [u'roddick', u'top', u'final', u'rank'] [u'saddam', u'warn', u'attack'] [u'safeti', u'revamp', u'dead', u'intersect'] [u'sale', u'front', u'court', u'fatal', u'hotel', u'blaze'] [u'meningococc', u'case', u'consid', u'high'] [u'samudra', u'lose', u'death', u'sentenc', u'appeal'] [u'want', u'incent', u'migrant'] [u'schooli', u'invad', u'sunshin', u'coast'] [u'scud', u'lead', u'davi', u'charg'] [u'search', u'miss'] [u'semi', u'crash', u'breakfast'] [u'servic', u'resum', u'train', u'crash'] [u'detain', u'connect', u'istanbul', u'blast'] [u'shire', u'path', u'fitter', u'futur'] [u'snowtown', u'killer', u'appeal', u'delay'] [u'solar', u'eclips', u'see'] [u'south', u'africa', u'cruis', u'golf', u'world', u'triumph'] [u'south', u'east', u'receiv', u'welcom', u'rain'] [u'lanka', u'consid', u'chang', u'tactic', u'suit'] [u'stamp', u'duti', u'deliv', u'govt', u'quarter'] [u'steelwork', u'chang', u'end'] [u'strike', u'child', u'care', u'centr'] [u'strip', u'beatl', u'readi', u'releas'] [u'suicid', u'bomber', u'blame', u'turkey', u'attack'] [u'supermarket', u'urg', u'review', u'milk', u'price'] [u'survey', u'help', u'save', u'aborigin', u'tongu'] [u'sydney', u'face', u'thai', u'court', u'drug', u'charg'] [u'tamworth', u'council', u'record', u'sound', u'oper', u'surplus'] [u'bushfir', u'crew', u'busi'] [u'firefight', u'battl', u'weekend', u'blaze'] [u'teen', u'court', u'hack', u'charg'] [u'tesk', u'fourth', u'delasin', u'take', u'champ', u'titl'] [u'tey', u'help', u'port', u'weather', u'lake', u'creek', u'woe'] [u'think', u'give', u'intern', u'airport', u'termin'] [u'tourism', u'group', u'look', u'forward', u'scheme'] [u'tourism', u'industri', u'expect', u'bounc'] [u'troubl', u'ranger', u'endur', u'loss'] [u'union', u'claim', u'job', u'uncertainti', u'affect', u'staff'] [u'union', u'highlight', u'pineappl', u'woe'] [u'uruguayan', u'famili', u'ditch', u'visa'] [u'captur', u'suspect', u'iraqi', u'guerrilla', u'leader'] [u'health', u'industri', u'meet', u'obes', u'crisi', u'loom'] [u'pressur', u'fiji', u'iraqi', u'troop'] [u'korea', u'urg', u'north', u'disarm'] [u'troop', u'launch', u'offens', u'tikrit'] [u'vanston', u'refus', u'releas', u'detain', u'mother'] [u'seek', u'input', u'member', u'water', u'reform', u'green'] [u'educ', u'staff', u'protest', u'cut'] [u'town', u'receiv', u'award'] [u'wallabi', u'nurs', u'niggl'] [u'wallabi', u'cannon', u'warn', u'wilko', u'danger'] [u'nat', u'criticis', u'price', u'hospit', u'revamp'] [u'wast', u'dump', u'decis', u'doubt'] [u'teacher', u'strike'] [u'watson', u'refere', u'world', u'final'] [u'waugh', u'want', u'gate', u'throw', u'open', u'kid'] [u'weather', u'dri', u'winter', u'grain', u'harvest', u'hop'] [u'weather', u'whip', u'burn', u'off'] [u'webber', u'find', u'right', u'formula', u'chariti', u'event'] [u'webber', u'tassi', u'challeng', u'come'] [u'woman', u'die', u'crash'] [u'woman', u'charg', u'teenag', u'death'] [u'woodward', u'scrap', u'form', u'book', u'aussi', u'loom'] [u'woodward', u'wont', u'suck', u'tactic', u'chang'] [u'yemen', u'free', u'reform', u'qaeda', u'suspect'] [u'young', u'honour', u'music', u'award'] [u'youth', u'charg', u'inverel', u'robberi'] [u'yungkingcol', u'race', u'silver', u'citi'] [u'zhang', u'claim', u'gleeson', u'china', u'open', u'crown'] [u'aborigin', u'sign', u'uniqu', u'pearl', u'deal'] [u'aim', u'reduc', u'homeless'] [u'right', u'reach', u'parliament'] [u'call', u'feder', u'action', u'childcar', u'worker'] [u'move', u'adopt', u'right'] [u'agforc', u'welcom', u'legal', u'chang', u'bull', u'catch'] [u'alleg', u'maclean', u'murder', u'fail', u'bail'] [u'ambush', u'kill', u'isra', u'soldier'] [u'anger', u'child', u'rapist', u'releas'] [u'architect', u'watch', u'theatr', u'revamp'] [u'asic', u'probe', u'see', u'kennedi', u'quit', u'board'] [u'despit', u'bank', u'gain'] [u'atsic', u'make', u'progress', u'return', u'remain'] [u'aussi', u'look', u'repeat', u'final', u'perform'] [u'australia', u'claim', u'victori', u'england'] [u'averag', u'parent', u'exceed'] [u'banana', u'import', u'hold', u'pend', u'report'] [u'bank', u'endur', u'branch', u'closur', u'critic'] [u'baxter', u'darwin', u'final'] [u'baxter', u'replac', u'darwin', u'final'] [u'beach', u'bundl', u'alarm', u'pemberton', u'polic'] [u'blood', u'test', u'detect', u'lung', u'diseas'] [u'boati', u'urg', u'cyclon', u'readi'] [u'boom', u'economi', u'help', u'homeless', u'salvo'] [u'brain', u'tumour', u'rule', u'burn', u'ralli', u'championship'] [u'bream', u'diseas', u'close', u'river', u'angler'] [u'brewarrina', u'council', u'elect', u'mayor'] [u'burdekin', u'mango', u'grower', u'anticip', u'lower', u'yield'] [u'burma', u'free', u'prison', u'ahead', u'nation'] [u'bush', u'icon', u'administr'] [u'case', u'involv', u'owner', u'adjourn'] [u'chang', u'fast', u'rail', u'plan', u'track'] [u'child', u'detent', u'face', u'high', u'court', u'challeng'] [u'chinchilla', u'mourn', u'loss', u'long', u'time', u'leader'] [u'chirac', u'blair', u'hold', u'london', u'summit'] [u'fund', u'question', u'hanson', u'inquiri'] [u'coast', u'polic', u'close', u'drug', u'oper', u'arrest'] [u'committe', u'appoint', u'settl', u'lanka', u'power'] [u'concern', u'air', u'guyra', u'council', u'reform'] [u'concern', u'air', u'sydney', u'fring', u'develop'] [u'concern', u'coal', u'increas', u'bushfir', u'threat'] [u'cost', u'blow', u'out', u'increas', u'fast', u'rail', u'project', u'critic'] [u'council', u'demand', u'highway', u'work', u'nuclear', u'wast'] [u'court', u'challeng', u'millionair', u'hotel', u'owner'] [u'court', u'hear', u'abattoir', u'stab', u'evid'] [u'croydon', u'get', u'mobil', u'phone', u'boost'] [u'dairi', u'farmer', u'consid', u'help', u'veget'] [u'death', u'toll', u'istanbul', u'blast', u'rise'] [u'deputi', u'mayor', u'encourag', u'join', u'mcrae'] [u'disabl', u'artist', u'claim', u'discrimin'] [u'diva'] [u'doubt', u'cast', u'cane', u'sale'] [u'dougla', u'receiv', u'hollywood', u'honour'] [u'drought', u'affect', u'farmer', u'receiv', u'fodder', u'donat'] [u'drug', u'abus', u'clinic', u'open', u'adelaid'] [u'earli', u'restrict', u'possibl', u'gippsland'] [u'endang', u'speci', u'list', u'swell'] [u'england', u'regain', u'number', u'rank'] [u'england', u'wont', u'fall', u'rugbi', u'rope', u'dope', u'say', u'campo'] [u'eriksson', u'high', u'prais', u'rooney'] [u'fall', u'iran'] [u'resum', u'fiji'] [u'croatian', u'serb', u'leader', u'indict', u'hagu'] [u'fear', u'hold', u'miss', u'boat', u'skipper'] [u'feder', u'elector', u'boundari', u'review'] [u'feder', u'top', u'tenni', u'prize', u'money', u'list'] [u'govt', u'defend', u'privat', u'school', u'fund'] [u'finish', u'line', u'sight', u'golf', u'player', u'honour'] [u'firefight', u'effort', u'continu', u'tasmania'] [u'arrest', u'sydney', u'drug', u'swoop'] [u'kill', u'strike', u'afghanistan'] [u'wallabi', u'condemn', u'england', u'bore'] [u'fortress', u'london', u'readi', u'bush', u'visit'] [u'franc', u'wield', u'select', u'strong'] [u'georg', u'michael', u'sign', u'deal', u'soni'] [u'governor', u'arni', u'take', u'offic'] [u'govt', u'fund', u'health', u'safeti'] [u'govt', u'revamp', u'medicar', u'overhaul'] [u'govt', u'tell', u'farmer', u'live', u'strong', u'dollar'] [u'grain', u'industri', u'price', u'question'] [u'green', u'tucker', u'consid', u'senat', u'switch'] [u'griffith', u'club', u'discuss', u'airspac'] [u'group', u'make', u'island', u'tourism', u'recommend'] [u'hanson', u'ettridg', u'unreason', u'beatti'] [u'heritag', u'list', u'chamber'] [u'hewitt', u'rare', u'masur', u'say'] [u'high', u'court', u'decid', u'detain', u'infant', u'fate'] [u'hill', u'deni', u'talk', u'base', u'darwin'] [u'hodgson', u'xeus', u'team', u'ducati'] [u'hong', u'kong', u'croc', u'elud', u'hunter'] [u'hope', u'better', u'time', u'pilbara', u'indigen'] [u'hospit', u'report', u'discuss', u'public', u'meet'] [u'howard', u'warn', u'terrorist', u'attack'] [u'illawarra', u'beach', u'get', u'award', u'honour'] [u'incid', u'mar', u'revhead', u'event'] [u'indigen', u'communiti', u'set', u'exampl'] [u'indigen', u'land', u'agreement', u'number'] [u'industri', u'commiss', u'hear', u'council'] [u'industri', u'back', u'small', u'busi', u'consult'] [u'injuri', u'keep', u'schumach', u'soccer', u'appear'] [u'istanbul', u'courthous', u'sieg', u'report'] [u'itali', u'halt', u'mourn', u'victim', u'iraqi', u'attack'] [u'jail', u'face', u'long', u'time', u'drive'] [u'japanes', u'glimps', u'altern', u'view', u'forest'] [u'japanes', u'train', u'set', u'speed', u'record'] [u'japan', u'issu', u'travel', u'warn', u'qaeda', u'threat'] [u'trial', u'open', u'thailand'] [u'juri', u'assault', u'trial', u'visit', u'launceston', u'club'] [u'senat', u'weigh', u'medicar', u'packag'] [u'kingaroy', u'consid', u'babi', u'boomer', u'develop'] [u'lake', u'macquari', u'council', u'pass', u'masterplan', u'propos'] [u'laura', u'bush', u'defend', u'husband', u'decis'] [u'lawyer', u'claim', u'govt', u'brigitt', u'scapegoat'] [u'london', u'highest', u'alert', u'bush', u'visit'] [u'long', u'wait', u'near', u'jamberoo', u'sewerag', u'upgrad'] [u'child', u'porn', u'jail', u'term', u'reduc'] [u'hold', u'arrest', u'purana', u'taskforc'] [u'drive', u'charg', u'remand', u'custodi'] [u'master', u'face', u'preselect', u'challeng'] [u'mayor', u'unveil', u'masterplan', u'rocki', u'spring'] [u'mayor', u'warn', u'glenelg', u'librari', u'deficit'] [u'mickey', u'mous', u'turn'] [u'minist', u'defend', u'privat', u'school', u'fund'] [u'minist', u'consult'] [u'mix', u'opinion', u'manilla', u'fund'] [u'montoya', u'join', u'mclaren'] [u'work', u'need', u'chang'] [u'air', u'drain', u'delay', u'fear'] [u'urg', u'princ', u'highway', u'speed', u'reduct'] [u'nambucca', u'bid', u'indigen', u'offend', u'centr'] [u'nativ', u'titl', u'claim', u'lodg', u'rifl', u'rang'] [u'navratilova', u'creat', u'histori'] [u'nemo', u'craze', u'strip', u'vanuatu', u'reef'] [u'port', u'afforest', u'plan'] [u'nigeria', u'consult', u'cwealth', u'zimbabw', u'summit'] [u'govt', u'announc', u'council', u'develop', u'process'] [u'delay', u'tour', u'pakistan'] [u'nation', u'pick', u'poll'] [u'open', u'fall', u'earli', u'final'] [u'open', u'fall', u'earli', u'final'] [u'paedophil', u'admit', u'break', u'parol', u'condit'] [u'pathet', u'england', u'surrend', u'lanka'] [u'pipelin', u'explos', u'close', u'iraqi', u'refineri'] [u'plan', u'meatwork', u'reopen'] [u'polic', u'accus', u'death', u'threat', u'gangland', u'case'] [u'polic', u'arrest', u'alleg', u'syring', u'robber'] [u'polic', u'gear', u'expect', u'crime', u'increas'] [u'polic', u'hotel', u'owner', u'disput', u'panel'] [u'polic', u'investig', u'shoot', u'incid'] [u'polic', u'worri', u'miss', u'trucki'] [u'port', u'council', u'consid', u'develop', u'plan', u'boston'] [u'potato', u'grower', u'buy', u'south', u'east', u'properti'] [u'power', u'compani', u'fin', u'worker', u'death'] [u'power', u'station', u'light', u'solar', u'scheme', u'second'] [u'probe', u'launch', u'beach', u'dredg'] [u'project', u'minist', u'address', u'linton', u'toxic', u'dump'] [u'prospectus', u'releas', u'victorian', u'ethanol', u'refineri'] [u'public', u'ask', u'help', u'miss'] [u'public', u'politician', u'chang', u'parti'] [u'ralli', u'moora', u'hospit', u'work'] [u'redback', u'honour'] [u'region', u'resid', u'ask', u'entic', u'bush', u'tourist'] [u'report', u'urg', u'servic', u'shake'] [u'rifl', u'compani', u'join', u'welcom', u'home', u'parad'] [u'rumsfeld', u'condemn', u'evil', u'north', u'korea'] [u'russia', u'cri', u'foul', u'gigg', u'incid'] [u'court', u'overturn', u'man', u'suspend', u'sentenc'] [u'secur', u'boost', u'fremantl', u'port'] [u'senior', u'ash', u'test'] [u'sharon', u'quri', u'meet', u'week'] [u'small', u'busi', u'confid', u'return'] [u'solomon', u'island', u'minist', u'seven', u'charg'] [u'sport', u'great', u'farewel', u'intern', u'leagu'] [u'spur', u'send', u'heal', u'home'] [u'steal', u'hart', u'outback'] [u'storm', u'leav', u'resid', u'dark'] [u'strike', u'teacher', u'march'] [u'strong', u'domest', u'demand', u'central', u'aust', u'grape'] [u'student', u'rais', u'doubt', u'transport', u'report'] [u'sudanes', u'plane', u'explos', u'kill'] [u'support', u'hector', u'fine'] [u'suspend', u'sentenc', u'music', u'piraci'] [u'swiss', u'complet', u'lehmann', u'takeov'] [u'synagogu', u'suicid', u'bomber', u'catch', u'camera'] [u'limit', u'back', u'condit', u'merger'] [u'taiwan', u'warn', u'independ', u'move'] [u'cyclist', u'prepar', u'race', u'season'] [u'drug', u'educ', u'program', u'commend'] [u'bushfir', u'alert'] [u'teen', u'face', u'court', u'school', u'cleaner', u'attack'] [u'terror', u'fear', u'global', u'market'] [u'plead', u'guilti', u'internet', u'music', u'piraci'] [u'tiger', u'bradtk', u'crack', u'rebound', u'record'] [u'toughen', u'wallabi', u'prim', u'final', u'jone'] [u'townsvill', u'street', u'close', u'street', u'light'] [u'turk', u'blame', u'local', u'milit', u'blast'] [u'uefa', u'probe', u'turk', u'amid', u'tunnel', u'bust', u'claim'] [u'cut', u'afghan', u'oper'] [u'union', u'concern', u'derail', u'stress'] [u'union', u'vow', u'fight', u'teacher', u'strike'] [u'forc', u'flex', u'muscl', u'iraq'] [u'forc', u'firepow', u'tikrit'] [u'troop', u'kill', u'iraqi', u'civilian', u'report'] [u'organis', u'crime', u'taskforc', u'make', u'arrest'] [u'polic', u'criticis', u'miss', u'person'] [u'wagga', u'mayor', u'surviv', u'censur', u'vote'] [u'wait', u'hurri', u'blood', u'rooki'] [u'wallabi', u'hop', u'ahead', u'final'] [u'milk', u'inquiri', u'warn', u'price', u'cut'] [u'warrnambool', u'rezon', u'make', u'retail', u'need'] [u'washington', u'sniper', u'face', u'death'] [u'teacher', u'strike'] [u'water', u'restrict', u'rais', u'issu'] [u'wellington', u'council', u'warn', u'blockad', u'lift'] [u'wilkinson', u'join', u'waugh', u'player', u'year', u'nomin'] [u'wilkinson', u'welcom', u'beckham', u'support'] [u'winton', u'tour', u'oper', u'urg', u'younger', u'outlook'] [u'wool', u'curtain', u'protect', u'home', u'bushfir'] [u'work', u'dole', u'report', u'suggest', u'chang'] [u'world', u'offici', u'cite', u'french', u'flanker', u'kick'] [u'anim', u'owner', u'expect', u'court'] [u'boost', u'effici', u'alston'] [u'accc', u'probe', u'berri', u'coke', u'takeov', u'plan'] [u'ban', u'smoke', u'pub'] [u'act', u'credit', u'rat', u'safe'] [u'aerial', u'watch', u'keep', u'fire'] [u'back', u'medicar', u'packag'] [u'ambul', u'fear', u'takeaway', u'plan', u'hold'] [u'atsic', u'chairman', u'say', u'food', u'card', u'prioriti'] [u'attempt', u'plan', u'refloat', u'ground', u'dredg'] [u'aussi', u'juggernaut', u'crush', u'india'] [u'aussi', u'juggernaut', u'roll', u'india'] [u'aussi', u'hungrier', u'say', u'black', u'spencer'] [u'australian', u'skin', u'cancer', u'rat', u'soar'] [u'injuri', u'forc', u'noffk', u'team'] [u'bakhtiyari', u'case', u'stall', u'februari'] [u'balaji', u'replac', u'injur', u'salvi', u'australia', u'tour'] [u'bank', u'chief', u'warn', u'age', u'popul', u'impact'] [u'barnett', u'sell', u'medicar', u'chang'] [u'bendigo', u'compani', u'lock', u'staff'] [u'turnout', u'expect', u'warship', u'commemor'] [u'bomber', u'join', u'forc'] [u'injur', u'conveyor', u'belt', u'accid'] [u'brigg', u'fight', u'tarver', u'titl'] [u'bulk', u'bill', u'rat', u'uncertain', u'medicar'] [u'bush', u'bind', u'britain'] [u'bush', u'land', u'london', u'amid', u'anti', u'anger'] [u'busway', u'happi', u'transport', u'report'] [u'centr', u'plan', u'cast', u'doubt', u'local', u'consum'] [u'remot', u'jail', u'improv', u'inmat', u'condit'] [u'canadian', u'grand', u'prix', u'track'] [u'canberra', u'defer', u'debat', u'smoke', u'phase'] [u'part', u'busi', u'damag', u'blaze'] [u'carr', u'throw', u'support', u'latham', u'econom'] [u'chang', u'consid', u'public', u'librari', u'fund'] [u'child', u'die', u'quak', u'jolt', u'central', u'philippin'] [u'china', u'protest', u'quota', u'plan'] [u'chopper', u'join', u'search', u'miss'] [u'claim', u'medicar', u'packag', u'offer', u'bush', u'bulk'] [u'claim', u'scheme', u'boost', u'region', u'airport', u'safeti'] [u'concern', u'rais', u'broker', u'jail', u'term'] [u'confer', u'tell', u'econom', u'futur', u'tie', u'financi'] [u'coron', u'tour', u'leski', u'inquest'] [u'council', u'boundari', u'review', u'surpris'] [u'council', u'consid', u'impact', u'lose', u'park', u'meter'] [u'council', u'crime', u'fight', u'plan', u'await', u'approv'] [u'council', u'focus', u'secur', u'camera', u'plan'] [u'council', u'staff', u'vote', u'offer'] [u'council', u'spend', u'ironman', u'competit'] [u'countri', u'songwrit', u'gibson', u'die'] [u'crean', u'lose', u'public', u'trust', u'economi'] [u'croc', u'hunt', u'boost', u'hong', u'kong', u'tourism'] [u'dali', u'consid', u'irrig', u'minist'] [u'dingo', u'hybrid', u'return', u'home', u'certain', u'futur'] [u'disgruntl', u'hall', u'stay', u'tiger'] [u'doctor', u'group', u'see', u'good', u'medicar', u'packag'] [u'doctor', u'shortag', u'spark', u'train', u'concern'] [u'dollar', u'offset', u'soar', u'price'] [u'dope', u'chief', u'pound', u'slam', u'white', u'hous'] [u'dozi', u'flatley', u'welcom', u'world', u'wake'] [u'duff', u'magic', u'light', u'irish'] [u'elder', u'guilti', u'murder'] [u'england', u'bring', u'tindal', u'catt'] [u'english', u'sieg', u'fan', u'media'] [u'demand', u'halt', u'west', u'bank', u'fenc'] [u'farmer', u'help', u'lower'] [u'farr', u'jone', u'back', u'england', u'shutdown', u'machin'] [u'fight', u'promis', u'wast', u'dump', u'plan'] [u'figur', u'uncov', u'pain', u'truth', u'fall'] [u'fiji', u'report', u'flop'] [u'financi', u'advisor', u'jail', u'client', u'theft'] [u'kill', u'pakistan', u'hall', u'collaps'] [u'mayor', u'look', u'enter', u'polit'] [u'swedish', u'helicopt', u'crash'] [u'franc', u'black', u'face', u'consol', u'game'] [u'fund', u'shortfal', u'wont', u'stop', u'port', u'plan'] [u'fund', u'help', u'studi', u'endang'] [u'project', u'viabil', u'know', u'soon'] [u'gigg', u'get', u'clear', u'euro', u'playoff'] [u'girl', u'die', u'road', u'tragedi'] [u'gold', u'price', u'hit', u'year', u'high'] [u'govt', u'consult', u'accus', u'conflict'] [u'govt', u'expect', u'smooth', u'passag', u'medicar', u'plan'] [u'group', u'consid', u'plan', u'hospit', u'chang'] [u'hewitt', u'davi', u'obsess'] [u'high', u'court', u'set', u'bakhtiyari', u'date'] [u'high', u'hop', u'swim', u'meet', u'inspir', u'indigen'] [u'highway', u'bypass', u'rout', u'choos'] [u'hospit', u'memo', u'spark', u'conflict', u'debat'] [u'human', u'remain', u'lao'] [u'india', u'spinner', u'contain', u'australia', u'seri'] [u'infantri', u'school', u'staff', u'face', u'prosecut'] [u'internet', u'bubbl', u'analyst', u'turn', u'report'] [u'iraq', u'secur', u'balanc'] [u'jone', u'shrug', u'larkham', u'drop', u'goal', u'drought'] [u'juri', u'consid', u'toowoomba', u'murder', u'trial', u'verdict'] [u'kangaroo', u'leash'] [u'kasparov', u'tie', u'machin', u'chess', u'seri'] [u'knee', u'surgeri', u'forc', u'hardwick', u'season'] [u'koizumi', u'elect', u'japanes'] [u'land', u'clear', u'threaten', u'aust', u'mammal'] [u'leed', u'morri', u'charg', u'rape'] [u'liber', u'cross', u'floor', u'electr', u'reform'] [u'longreach', u'hold', u'william', u'servic'] [u'malaysia', u'mull', u'vertic', u'burial', u'land', u'shortag'] [u'plead', u'guilti', u'hous', u'charg'] [u'sentenc', u'tree', u'clear'] [u'mayor', u'upbeat', u'land', u'releas', u'plan'] [u'vow', u'safeti', u'inquiri'] [u'mcdonald', u'prompt', u'collaps'] [u'mcgradi', u'pleas', u'drug', u'seizur'] [u'meet', u'debat', u'toxic', u'wast', u'dump', u'plan'] [u'melbourn', u'hospit', u'head', u'quit'] [u'face', u'uncertain', u'futur'] [u'minist', u'blast', u'activist', u'sabotag', u'claim'] [u'minist', u'ask', u'smoke', u'pub'] [u'miss', u'climber', u'search'] [u'miss', u'turn', u'bakeri'] [u'mix', u'respons', u'medicar', u'chang'] [u'job', u'weav', u'mill'] [u'rain', u'alic'] [u'pleas', u'medicar', u'chang'] [u'murder', u'trial', u'hear', u'jail', u'death', u'evid'] [u'nasa', u'say', u'shuttl', u'track', u'launch', u'autumn'] [u'navi', u'honour', u'sailor', u'lose', u'wwii', u'warship', u'sink'] [u'industri', u'wind', u'snowi'] [u'noosa', u'river', u'unifi', u'plan'] [u'fear', u'england', u'jone', u'say'] [u'govt', u'oppos', u'sydney', u'flight', u'expans'] [u'govt', u'urg', u'develop', u'board', u'plan'] [u'govt', u'cotton', u'plant', u'short', u'sight', u'truss', u'say'] [u'govt', u'cotton', u'label', u'polit', u'stunt'] [u'tourist', u'head', u'toowoomba', u'region'] [u'olymp', u'weightlift', u'bail', u'steroid', u'raid'] [u'parent', u'group', u'anger', u'anticip', u'public'] [u'patrick', u'share', u'fall', u'profit', u'rise'] [u'pen', u'albani', u'teacher', u'join', u'strike'] [u'peopl', u'alert', u'danger', u'paralysi', u'tick'] [u'perth', u'approv', u'project', u'breweri', u'site'] [u'perth', u'vote', u'rais', u'palla', u'hotel'] [u'meat', u'ploy', u'sabotag', u'sheep', u'trade'] [u'plan', u'moot', u'indigen', u'welfar', u'fund'] [u'plan', u'begin', u'region', u'broadband', u'boost'] [u'plan', u'defenc', u'revamp', u'health'] [u'defend', u'medicar', u'packag'] [u'polic', u'launch', u'probe', u'woman', u'dead'] [u'polic', u'prepar', u'gold', u'coast', u'schooli'] [u'polic', u'tightlip', u'jackson', u'raid'] [u'port', u'adelaid', u'execut', u'stay', u'club'] [u'public', u'urg', u'join', u'refineri', u'green', u'plan', u'group'] [u'redback', u'inning', u'point'] [u'region', u'visit', u'servic', u'take'] [u'research', u'warn', u'hide', u'smoke', u'diseas'] [u'research', u'find', u'pollut', u'good', u'coral', u'growth'] [u'retail', u'urg', u'help', u'fight', u'chrome'] [u'review', u'consid', u'calm', u'prosecut'] [u'rumsfeld', u'paint', u'dark', u'portrait', u'north', u'korea'] [u'premier', u'deflect', u'blame', u'nemer', u'case'] [u'youth', u'project', u'reap', u'prais', u'lead'] [u'shire', u'undergo', u'drought', u'assess'] [u'singer', u'meat', u'loaf', u'collaps'] [u'solomon', u'bank', u'aust'] [u'solomon', u'minist', u'hold', u'domest', u'incid'] [u'south', u'west', u'doctor', u'happi', u'medicar', u'chang'] [u'lankan', u'parliament', u'say', u'closur', u'illeg'] [u'storm', u'caus', u'damag', u'north'] [u'strong', u'crowd', u'expect', u'ballarat'] [u'student', u'hope', u'develop', u'drought', u'resist', u'pastur'] [u'super', u'council', u'suggest', u'face', u'opposit'] [u'support', u'seek', u'welfar'] [u'surg', u'dollar', u'rattl', u'media', u'stock'] [u'liber', u'urg', u'forestri', u'tie'] [u'territori', u'buck', u'trend', u'sale'] [u'timber', u'group', u'citicis', u'rush'] [u'townsvill', u'troop', u'home'] [u'seek', u'cool', u'transatlant', u'trade', u'rift'] [u'union', u'member', u'ralli', u'govt', u'polici'] [u'union', u'vote', u'stage', u'strike'] [u'court', u'overrul', u'marriag'] [u'expert', u'panel', u'decri', u'america', u'ignor'] [u'frigat', u'landmark', u'vietnam', u'visit'] [u'launch', u'fresh', u'raid', u'baghdad'] [u'slam', u'europ', u'iran', u'report'] [u'prison', u'number', u'doubl'] [u'wallabi', u'handl', u'condit', u'jone'] [u'wall', u'street', u'correct', u'continu'] [u'webber', u'welcom', u'chang'] [u'whoop', u'cough', u'outbreak', u'hit', u'cooma', u'school'] [u'wilkinson', u'grab', u'player', u'year', u'gong'] [u'wood', u'expect', u'tough', u'challeng', u'link', u'cours'] [u'woodward', u'reject', u'bore'] [u'wool', u'produc', u'pay', u'levi'] [u'xaus', u'follow', u'superbik', u'team', u'mate', u'hodgson', u'motogp'] [u'prompt', u'open', u'tanner', u'shoot', u'case'] [u'youth', u'bodi', u'back', u'earli', u'intervent'] [u'youth', u'talk', u'green', u'issu'] [u'kill', u'hundr', u'injur', u'istanbul', u'blast'] [u'accc', u'urg', u'probe', u'powerlin', u'plan'] [u'step', u'closer', u'legalis', u'adopt'] [u'govt', u'consid', u'reduc', u'land'] [u'plan', u'synthet', u'heroin', u'trial'] [u'age', u'popul', u'demograph', u'timebomb', u'costello'] [u'defend', u'plan', u'increas', u'electr', u'price'] [u'aid', u'treatment', u'rais', u'heart', u'attack', u'risk', u'studi'] [u'airlin', u'seek', u'high', u'court', u'rule', u'allow', u'allianc'] [u'airlin', u'staffer', u'win', u'braveri', u'award', u'flight'] [u'black', u'clinch', u'place'] [u'black', u'fight', u'coach'] [u'black', u'fight', u'mitchel', u'life'] [u'talk', u'loew', u'cinema'] [u'analyst', u'comfort', u'zone', u'bali'] [u'assessor', u'north', u'west', u'storm', u'damag', u'near', u'mark'] [u'atsic', u'chief', u'pleas', u'croker', u'decis'] [u'aussi', u'author', u'win', u'nation', u'book', u'award'] [u'australian', u'militari', u'return', u'order', u'solomon'] [u'australian', u'remain', u'lao'] [u'australia', u'newest', u'idol'] [u'australia', u'seed', u'champion', u'trophi'] [u'back', u'grow', u'campaign'] [u'bali', u'bomb', u'mastermind', u'samudra', u'appeal', u'suprem'] [u'bank', u'push', u'australian', u'share', u'market'] [u'bank', u'urg', u'boost', u'region', u'loan'] [u'beatti', u'play', u'potenti', u'schooli', u'woe'] [u'berri', u'council', u'debat', u'truck', u'road'] [u'betsen', u'harsh', u'say', u'maso'] [u'bird', u'book', u'aim', u'teach', u'primari', u'student', u'democraci'] [u'blair', u'bush', u'condemn', u'istanbul', u'blast'] [u'brazil', u'squander', u'lead', u'argentina', u'gift', u'point'] [u'break', u'hill', u'sole', u'park', u'council', u'tour', u'nuclear'] [u'broom', u'lectur', u'vie', u'educ', u'award'] [u'canola', u'grower', u'blackleg', u'compens'] [u'bomb', u'hit', u'back', u'local', u'council', u'iraq'] [u'carmichael', u'omalley', u'share', u'open', u'lead'] [u'church', u'guilti', u'obstruct', u'justic'] [u'clean', u'begin', u'portland', u'flood'] [u'cohen', u'emul', u'uncl', u'georg'] [u'compulsori', u'interview', u'number'] [u'concern', u'faulti', u'hospit', u'equip'] [u'confer', u'discuss', u'land', u'releas'] [u'confid', u'wallabi', u'arriv', u'sydney'] [u'consortium', u'tender', u'accept', u'deliveri'] [u'consum', u'warn', u'bewar', u'loan', u'offer'] [u'cost', u'fee', u'world', u'poor'] [u'council', u'consid', u'retail', u'plan'] [u'council', u'push', u'plan', u'dual', u'highway'] [u'council', u'push', u'continu', u'road', u'safeti', u'program'] [u'court', u'agre', u'expedit', u'coach', u'defam', u'case'] [u'court', u'agre', u'fast', u'track', u'hodg', u'libel', u'case'] [u'court', u'akram', u'india', u'coach'] [u'crean', u'capitalis', u'critic', u'work', u'dole'] [u'croc', u'hunter', u'lure', u'prey', u'reptilian', u'buffet'] [u'croc', u'hunter', u'road', u'australian', u'year'] [u'darwin', u'avoid', u'surgeri'] [u'davi', u'pressur', u'aussi', u'spain', u'lopez'] [u'defenc', u'forc', u'arriv', u'home', u'oversea', u'tour'] [u'defenc', u'sell', u'make', u'wodonga'] [u'deport', u'thai', u'teenag', u'suspend'] [u'develop', u'say', u'orphanag', u'plan', u'best', u'solut'] [u'disput', u'end', u'simplot', u'factori'] [u'dont', u'write', u'coulthard', u'say', u'manag'] [u'dope', u'boss', u'warn', u'australian', u'olympian'] [u'say', u'wild', u'dog', u'cost', u'beef', u'industri'] [u'drought', u'stricken', u'farmer', u'relief', u'exempt'] [u'drover', u'bond', u'anim', u'cruelti'] [u'detain', u'immigr', u'raid'] [u'embattl', u'hospit', u'chief', u'quit'] [u'england', u'receiv', u'beck', u'back'] [u'offici', u'announc', u'pyongyan', u'meet'] [u'exot', u'anim', u'danger', u'australia'] [u'explos', u'rock', u'istanbul', u'british', u'consul'] [u'fall', u'birth', u'rate', u'need', u'urgent', u'attent', u'report'] [u'farmer', u'hard', u'northern', u'storm'] [u'farm', u'financ', u'strong', u'despit', u'drought', u'impact'] [u'north', u'older', u'worker', u'face', u'increas'] [u'fate', u'world', u'fame', u'dugong', u'unknown'] [u'father', u'abandon', u'babi'] [u'ferguson', u'everton', u'bust', u'report'] [u'fiji', u'extend', u'turtl', u'kill'] [u'crew', u'prais', u'work'] [u'aussi', u'presid', u'action'] [u'slay', u'detain', u'philippin', u'fightback'] [u'tourist', u'injur', u'border', u'shoot'] [u'policeman'] [u'kill', u'bomb', u'attack', u'northern', u'iraq'] [u'franc', u'betsen', u'ban', u'week'] [u'fuel', u'remov', u'ground', u'ship'] [u'fund', u'boost', u'indigen', u'heritag'] [u'giant', u'potato', u'salad', u'break', u'record'] [u'govt', u'defend', u'damn', u'report', u'dwindl'] [u'grain', u'face', u'troubl', u'time'] [u'green', u'group', u'fear', u'coast', u'threat'] [u'green', u'seek', u'extent', u'southern', u'protect'] [u'guyra', u'communiti', u'stand', u'unit', u'reform'] [u'haslam', u'resid', u'demand', u'compani', u'come', u'dark'] [u'health', u'concern', u'australian', u'indonesian', u'jail'] [u'health', u'fund', u'limit', u'deficit', u'concern', u'costello'] [u'highway', u'open', u'south', u'east', u'accid'] [u'home', u'wait', u'power', u'wild', u'storm'] [u'weather', u'make', u'toowoomba', u'resid', u'reach'] [u'howard', u'promis', u'tourism', u'boost'] [u'howard', u'win', u'gold', u'olymp', u'order'] [u'hungri', u'russian', u'strand', u'berlin', u'gameshow'] [u'health', u'interrupt', u'egyptian', u'presid', u'speech'] [u'incent', u'move', u'ballarat'] [u'india', u'gear', u'aussi', u'ordeal'] [u'indigen', u'youth', u'forum', u'hold', u'darwin'] [u'industri', u'welcom', u'govt', u'tourism', u'packag'] [u'invad', u'send', u'tamworth', u'resid', u'batti'] [u'iraq', u'insurg', u'target', u'baghdad'] [u'israel', u'bind', u'resolut', u'roadmap'] [u'istanbul', u'consul', u'blast', u'caus', u'bomb', u'wit'] [u'judg', u'question', u'turk', u'detent'] [u'juri', u'deliber', u'alleg', u'murder', u'fate'] [u'kalbarri', u'polic', u'prepar', u'youth', u'invas'] [u'labor', u'pledg', u'financ', u'industri', u'revamp', u'super'] [u'lawyer', u'bid', u'pardon', u'billi'] [u'lawyer', u'warn', u'anim', u'liberationist', u'charg'] [u'leed', u'faith', u'viduka'] [u'leski', u'coron', u'criticis', u'legal', u'decis'] [u'lightn', u'spark', u'gippsland', u'blaze'] [u'lion', u'miss', u'copeland', u'hart'] [u'livecorp', u'condemn', u'irrespons', u'sheep', u'sabotag'] [u'logger', u'accus', u'ignor', u'aborigin', u'site', u'warn'] [u'moral', u'continu', u'plagu', u'hospit'] [u'charg', u'alleg', u'sheep', u'fee', u'sabotag'] [u'die', u'win', u'vodka', u'drink', u'contest'] [u'fin', u'harass', u'dolphin'] [u'fin', u'illeg', u'clear', u'veget'] [u'jail', u'fatal', u'motorcycl', u'crash'] [u'kill', u'accid'] [u'face', u'court', u'park', u'fire'] [u'manunda', u'resid', u'infect', u'dengu', u'fever'] [u'mayor', u'warn', u'port', u'project', u'overshadow'] [u'meet', u'discuss', u'plan'] [u'milit', u'seiz', u'nigerian', u'platform', u'hold'] [u'death', u'attract', u'fine'] [u'mini', u'cyclon', u'creat', u'havoc', u'cullullerain'] [u'mine', u'wast', u'leav', u'kangaroo', u'flat', u'resid'] [u'minist', u'hear', u'toxic', u'dump', u'opposit', u'hand'] [u'minist', u'launch', u'alic', u'archiv', u'home'] [u'money', u'recov', u'date', u'servic'] [u'cross', u'floor', u'power', u'deregul'] [u'say', u'teacher', u'shortag', u'claim', u'wrong'] [u'mutant', u'clue', u'cystic', u'fibrosi', u'fight'] [u'mysteri', u'hang', u'sydney', u'harbour'] [u'nation', u'waltz', u'matilda', u'campaign', u'usher'] [u'exhibit', u'unveil', u'australia', u'silent', u'workforc'] [u'hotel', u'announc', u'launceston'] [u'korea', u'accus', u'rumsfeld', u'crimin', u'junket'] [u'emerg', u'unansw'] [u'posit', u'world', u'test', u'say', u'rugbi', u'drug', u'buster'] [u'wallabi', u'plan', u'wilko', u'claim', u'jone'] [u'farmer', u'want', u'parliament', u'urgent', u'consid'] [u'forest', u'worker', u'battl', u'north', u'bushfir'] [u'govt', u'sack', u'aborigin', u'council', u'appoint'] [u'soldier', u'remain', u'duti', u'drug', u'probe'] [u'nurs', u'reject', u'howard', u'govt', u'medicar', u'packag'] [u'opposit', u'back', u'heroin', u'type', u'drug', u'trial', u'help'] [u'opposit', u'call', u'judici', u'inquiri'] [u'opposit', u'natur', u'resourc', u'defer', u'fail'] [u'parent', u'park', u'creat', u'traffic', u'problem'] [u'protest', u'unlik', u'affect', u'nurs', u'home'] [u'plan', u'dept', u'hear', u'pearl', u'oyster', u'farm', u'fear'] [u'call', u'stand', u'hick', u'habib'] [u'campaign', u'hick', u'releas', u'father', u'say'] [u'threaten', u'close', u'settlement'] [u'polic', u'probe', u'claim', u'unionist', u'assault', u'outsid', u'home'] [u'polic', u'question', u'homemad', u'reptil', u'park'] [u'powel', u'discuss', u'british', u'guantanamo', u'detaine'] [u'power', u'go', u'hospit', u'oper'] [u'premier', u'wife', u'offer', u'schooli', u'week', u'advic'] [u'prescript', u'drug', u'dead', u'toddler', u'bodi'] [u'magnesia', u'look', u'expans'] [u'question', u'mark', u'hugh', u'futur', u'wale', u'coach'] [u'radio', u'station', u'board', u'mass', u'waltz', u'matilda'] [u'raymond', u'power', u'final'] [u'redback', u'charg', u'victori'] [u'cross', u'make', u'plea', u'fund'] [u'tide', u'wash', u'townsvill', u'beach'] [u'reinforc', u'schooli', u'polic'] [u'research', u'support', u'reduct', u'spanish', u'mackerel'] [u'resid', u'anger', u'hospit', u'closur', u'plan'] [u'review', u'propos', u'certif', u'countri'] [u'rfds', u'move', u'closer', u'fund', u'target'] [u'africa', u'approv', u'mass', u'aid', u'drug', u'treatment'] [u'sailor', u'rescu', u'yacht', u'burn'] [u'scotland', u'wale', u'euro', u'dream', u'shatter'] [u'search', u'continu', u'miss', u'skipper'] [u'secur', u'buckinham', u'palac', u'report'] [u'seminar', u'place', u'indigen', u'issu', u'spotlight'] [u'servic', u'say', u'schooli'] [u'shred', u'sheep', u'fee'] [u'charg', u'istanbul', u'bomb'] [u'week', u'till', u'buyback', u'program', u'finish'] [u'solomon', u'island', u'politician', u'meet', u'donor'] [u'solomon', u'call', u'oversea', u'fund', u'polic'] [u'solomon', u'prais', u'aust', u'intervent', u'forc'] [u'solomon', u'safer', u'sydney', u'melbourn', u'mission', u'chief'] [u'state', u'respons', u'economi'] [u'stricter', u'law', u'urg', u'innoc', u'panel'] [u'sugar', u'outlook', u'sweet'] [u'support', u'bush', u'latest', u'poll'] [u'sydney', u'airport', u'deni', u'nois', u'claim'] [u'taiwan', u'develop', u'rapid', u'test', u'sar', u'virus', u'report'] [u'telstra', u'payment', u'late', u'fee', u'rise'] [u'tender', u'call', u'yamba', u'dredg', u'project'] [u'dead', u'hurt', u'turkey', u'blast', u'offici'] [u'break', u'drama', u'case', u'draw', u'world', u'final'] [u'shed', u'surpris'] [u'swim', u'coach', u'want', u'defam', u'case', u'expedit'] [u'tourism', u'queensland', u'launch', u'plan', u'lure', u'outback'] [u'townsvill', u'welcom', u'home', u'troop'] [u'trade', u'begin', u'repco', u'share'] [u'trade', u'opportun', u'asia', u'vital', u'downer', u'say'] [u'troop', u'kill', u'aceh', u'rebel'] [u'truck', u'ram', u'hospit', u'petrol', u'station'] [u'tweed', u'meet', u'look', u'catchment', u'model'] [u'activist', u'hold', u'japan', u'free', u'whale'] [u'trial', u'suicid', u'attempt', u'tiananmen'] [u'ngos', u'north', u'korea'] [u'union', u'criticis', u'academ'] [u'unit', u'church', u'guilti', u'contempt', u'court'] [u'armi', u'arrest', u'suspect', u'saddam', u'loyalist'] [u'call', u'greater', u'cooper', u'asia', u'pacif'] [u'close', u'run', u'opposit', u'say'] [u'depart', u'come', u'greater', u'export'] [u'opposit', u'push', u'health', u'advis', u'sack'] [u'victoria', u'oper', u'surplus', u'reveal'] [u'villa', u'oleari', u'plead', u'poverti'] [u'govt', u'consid', u'liquor', u'store', u'sunday', u'trade'] [u'lib', u'lobbi', u'vote', u'right', u'prison'] [u'wallabi', u'forward', u'wont', u'intimid', u'jone'] [u'wallabi', u'forward', u'wont', u'jone'] [u'resourc', u'sector', u'urg', u'rise', u'gold', u'price'] [u'water', u'restrict', u'appli', u'eurobodalla'] [u'webber', u'pledg', u'immedi', u'futur', u'jaguar'] [u'western', u'power', u'fin', u'goldfield', u'death'] [u'western', u'swelter', u'week', u'long', u'heat', u'wave'] [u'work', u'dole', u'time', u'consum'] [u'world', u'australia', u'howard'] [u'youth', u'worker', u'hold', u'forum', u'mental', u'ill'] [u'zimbabw', u'drop', u'carlisl', u'windi', u'dayer'] [u'zimbabw', u'union', u'call', u'strike', u'arrest'] [u'hurt', u'india', u'mosqu', u'bomb', u'polic'] [u'accc', u'drop', u'qanta', u'action'] [u'disappoint', u'heroin', u'substitut', u'trial'] [u'health', u'minist', u'back', u'synthet', u'heroin', u'trial'] [u'age', u'popul', u'hurt', u'australian', u'lifestyl'] [u'black', u'coach', u'grab'] [u'black', u'threaten', u'boycott', u'gate', u'receipt'] [u'alleg', u'rapist', u'liken', u'case', u'lindi', u'chamberlain'] [u'debat', u'green', u'phone', u'woe'] [u'america', u'form', u'world', u'largest', u'free', u'trade', u'zone'] [u'anderson', u'rule', u'rest', u'dayer'] [u'andrew', u'renew', u'call', u'reform', u'union'] [u'fin', u'secur', u'screen', u'blunder'] [u'arab', u'leader', u'condemn', u'turkey', u'blast'] [u'armidal', u'council', u'set', u'date', u'sport', u'agreement'] [u'atsic', u'urg', u'youth', u'attend', u'forum'] [u'aussi', u'dollar', u'reach', u'fresh', u'peak'] [u'australia', u'captain', u'sensibl', u'readi', u'laugh'] [u'australia', u'tell', u'review', u'patent', u'law'] [u'aust', u'upgrad', u'turkey', u'travel', u'advisori'] [u'author', u'investig', u'sheep', u'sabotag', u'claim'] [u'author', u'name', u'year'] [u'bendigo', u'servic', u'farewel', u'policeman'] [u'berri', u'council', u'investig', u'properti', u'find', u'scheme'] [u'biochip', u'push', u'livestock', u'diseas', u'manag'] [u'biodri', u'plant', u'offer', u'canefarm', u'lifelin'] [u'bleed', u'diseas', u'heart', u'hop', u'shock', u'smoker'] [u'boati', u'skill', u'standard'] [u'bomb', u'shake', u'market'] [u'bosnian', u'serb', u'live'] [u'brack', u'look', u'harmoni', u'workplac'] [u'brain', u'abnorm', u'blame', u'attent', u'deficit'] [u'breaker', u'centr', u'get', u'game'] [u'breastfe', u'link', u'blood', u'pressur', u'overst'] [u'brisban', u'court', u'jail', u'drink', u'driver'] [u'byron', u'polic', u'drop', u'charg', u'coldplay', u'singer'] [u'forest', u'manag', u'chang'] [u'train', u'crash', u'faulti', u'level', u'cross'] [u'ceduna', u'water', u'cut', u'leav', u'town', u'embarrass'] [u'cheap', u'power', u'project', u'hold'] [u'china', u'tighten', u'rule', u'internet', u'address', u'manag'] [u'chines', u'nation', u'triumphant', u'return'] [u'coal', u'miner', u'threaten', u'strike', u'gretley', u'disast'] [u'collieri', u'ask', u'road', u'fund', u'contribut'] [u'communiti', u'group', u'pacif', u'solut'] [u'construct', u'work', u'break', u'dunsborough', u'water', u'line'] [u'consum', u'warn', u'steal', u'can', u'meat'] [u'council', u'resurrect', u'night', u'patrol'] [u'council', u'want', u'fast', u'start', u'indigen', u'facil'] [u'creditor', u'flightship', u'rescu', u'plan'] [u'croc', u'head', u'south', u'giant', u'clash'] [u'croc', u'tough', u'road', u'doubl'] [u'oppon', u'hold', u'festiv'] [u'deplet', u'gunner', u'price', u'unit', u'bust'] [u'derelict', u'hotel', u'like', u'demolish'] [u'detect', u'investig', u'bateman', u'bodi'] [u'detent', u'centr', u'famili', u'residenti'] [u'disney', u'profit', u'doubl', u'million'] [u'encourag', u'wild', u'bait', u'report'] [u'doctor', u'highlight', u'high', u'cost', u'child', u'vaccin'] [u'doctor', u'obes', u'fight'] [u'dont', u'forget', u'flatley', u'woodward', u'warn'] [u'downer', u'world', u'terror', u'warn'] [u'downer', u'issu', u'world', u'warn'] [u'drought', u'market', u'boost', u'beef', u'export', u'valu'] [u'farmer', u'exempt', u'pay', u'wage', u'rise'] [u'england', u'home', u'sydney'] [u'expert', u'fear', u'sacr', u'sit', u'destroy', u'bago', u'log'] [u'famili', u'imprison', u'appeal', u'embassi'] [u'farmer', u'renew', u'wheat', u'test'] [u'fear', u'lake', u'entranc', u'closur', u'hurt', u'tourism'] [u'festiv', u'light', u'music', u'fuse'] [u'film', u'industri', u'concern', u'free', u'trade', u'talk'] [u'ansett', u'worker', u'settl', u'payment', u'disput'] [u'forum', u'aim', u'better', u'environment', u'manag'] [u'gazza', u'struggl', u'wolv'] [u'gold', u'field', u'reveal', u'saint', u'ive', u'develop', u'plan'] [u'govt', u'escap', u'scrutini', u'asylum', u'seeker'] [u'govt', u'work', u'council', u'waterfront', u'develop'] [u'grain', u'creditor', u'owe'] [u'grampian', u'water', u'eas', u'north', u'west', u'restrict'] [u'green', u'plan', u'free', u'trade', u'veto', u'aussi', u'content'] [u'green', u'report', u'need', u'greater', u'environ', u'focus'] [u'gregan', u'ralli', u'wallabi'] [u'griev', u'famili', u'independ', u'malpractic'] [u'gulf', u'wholist', u'health', u'approach'] [u'habib', u'wife', u'confront', u'howard', u'radio'] [u'heavi', u'rain', u'fall', u'gippsland'] [u'swindl', u'bag', u'million'] [u'hodg', u'sign', u'leicestershir', u'contract'] [u'hospit', u'endur', u'gastro', u'outbreak'] [u'hospit', u'find', u'earli', u'year'] [u'hsbc', u'resum', u'busi', u'turkey', u'firm', u'alert'] [u'hussey', u'langer', u'lead', u'warrior', u'fightback'] [u'illeg', u'snare', u'platypus'] [u'incumb', u'win', u'georgian', u'elect'] [u'india', u'kale', u'face', u'life', u'bribe', u'claim'] [u'indigen', u'health', u'servic', u'open', u'more'] [u'injuri', u'wont', u'stop', u'titl', u'assault', u'schumach'] [u'intern', u'earli', u'lead', u'presid'] [u'investig', u'begin', u'heritag', u'list', u'build'] [u'investig', u'swan', u'river', u'sewerag', u'spill', u'begin'] [u'israel', u'defiant', u'barrier'] [u'itali', u'shelv', u'plan', u'nuclear', u'wast', u'storag'] [u'itali', u'lead', u'trio', u'fear', u'travel', u'sick'] [u'japanes', u'stori', u'scoop', u'afi'] [u'johnson', u'johnson', u'pull', u'disrespect'] [u'johnson', u'say', u'gregan'] [u'juri', u'unabl', u'reach', u'templeton', u'verdict'] [u'kangaroo', u'mayor', u'appeal', u'water'] [u'kelli', u'bowl', u'competit', u'championship'] [u'kenyan', u'polic', u'charg', u'mombasa', u'attack'] [u'kiwi', u'draft', u'rooki', u'pakistan', u'tour'] [u'lack', u'aborigin', u'rugbi', u'remedi', u'say'] [u'lake', u'cullullerain', u'recov', u'storm'] [u'land', u'corp', u'welcom', u'practic', u'gift'] [u'legalis', u'heroin', u'undermin', u'terrorist', u'research'] [u'liberationist', u'warn', u'export', u'sabotag'] [u'lion', u'centr', u'pair', u'tackl', u'kangaroo'] [u'lion', u'sting', u'aussi', u'mental', u'jibe'] [u'lose', u'student', u'night', u'snowi', u'mountain'] [u'magistr', u'delay', u'hear', u'polic', u'wit', u'drug'] [u'arrest', u'sydney', u'harbour', u'bridg', u'climb'] [u'guilti', u'burn', u'wife', u'death'] [u'kick', u'stink'] [u'mauresmo', u'pierc', u'push', u'franc', u'final'] [u'question', u'suspect', u'abduct'] [u'minist', u'reject', u'critic', u'review', u'process'] [u'miss', u'melbourn', u'famili'] [u'miss', u'school', u'boy', u'safe'] [u'mitchel', u'await', u'fate'] [u'mobil', u'phone', u'shepparton'] [u'posit', u'test', u'world', u'championship'] [u'turkey', u'attack', u'plan', u'britain', u'warn'] [u'prais', u'tourism', u'white', u'paper'] [u'intellig', u'train', u'centr', u'open', u'gold'] [u'servic', u'directori', u'launch'] [u'zealand', u'upgrad', u'tourist', u'warn', u'turkey'] [u'candid', u'contest', u'council', u'poll'] [u'govt', u'commit', u'tingha', u'health', u'centr'] [u'polic', u'charg', u'child', u'offenc'] [u'protest', u'delay', u'eden', u'log', u'work'] [u'nuclear', u'watchdog', u'meet', u'discuss', u'iran'] [u'pair', u'face', u'court', u'unit', u'murder'] [u'parent', u'warn', u'post', u'natal', u'depress'] [u'parliamentari', u'group', u'call', u'nation', u'heroin'] [u'petrol', u'price', u'fix', u'charg', u'leahi', u'drop'] [u'petrol', u'focus', u'woolworth'] [u'plan', u'display', u'communiti', u'centr'] [u'polic', u'defend', u'highway', u'transport', u'oper'] [u'polic', u'fine', u'driver', u'obey', u'speed', u'limit'] [u'polic', u'investig', u'cobar', u'stab'] [u'polic', u'investig', u'miss', u'woman', u'case'] [u'polic', u'quiet', u'confid', u'ahead', u'rugbi', u'world'] [u'polic', u'readi', u'schooli', u'invas'] [u'polic', u'releas', u'detail', u'alleg', u'attack'] [u'polic', u'scale', u'miss', u'diver', u'search'] [u'polic', u'seek', u'help', u'reunit', u'famili'] [u'polic', u'seek', u'tamworth', u'respons', u'hold'] [u'polic', u'seek', u'miss', u'melbourn'] [u'polici', u'help', u'shape', u'alic', u'region', u'plan'] [u'pound', u'mull', u'urg', u'outcast'] [u'princ', u'harrison', u'join', u'rock', u'hall', u'fame'] [u'pristin', u'council', u'say', u'reserv', u'hand'] [u'public', u'urg', u'cyclon', u'readi'] [u'python', u'attack', u'swallow', u'bangladeshi', u'woman'] [u'student', u'celebr', u'schooli', u'week'] [u'welcom', u'part', u'tourism', u'plan'] [u'rain', u'welcom', u'need'] [u'real', u'madrid', u'avoid', u'mickey', u'mous'] [u'redback', u'gillespi', u'dayer'] [u'redback', u'cruis', u'victori'] [u'renmark', u'appeal', u'lyrup', u'speed', u'limit'] [u'report', u'say', u'need', u'lake', u'eyr', u'tourism'] [u'report', u'warn', u'young', u'aussi', u'risk'] [u'rocket', u'launcher', u'near', u'italian', u'embassi'] [u'rocket', u'slam', u'baghdad', u'hotel', u'ministri'] [u'rossi', u'gambl', u'open', u'motogp', u'titl', u'race'] [u'rottnest', u'polic', u'happi', u'schooli', u'behaviour'] [u'rwandan', u'polic', u'arrest', u'journalist', u'seiz', u'magazin'] [u'schooli', u'week', u'taint', u'violenc'] [u'schooli', u'celebr', u'kick', u'qlds', u'gold', u'coast'] [u'secur', u'council', u'condemn', u'turkey', u'bomb'] [u'sharehold', u'call', u'liquid'] [u'sheep', u'futur', u'limbo'] [u'showground', u'hous', u'exhibit', u'centr'] [u'sixer', u'lose', u'nash', u'tiger', u'clash'] [u'slipper', u'upbeat', u'white', u'paper', u'tourism', u'impact'] [u'small', u'busi', u'boost', u'hunter'] [u'soccer', u'legend', u'treat', u'cancer'] [u'south', u'africa', u'make', u'environment', u'progress'] [u'southern', u'student', u'await', u'score'] [u'steel', u'firm', u'consid', u'port', u'kembla', u'revamp'] [u'storm', u'leav', u'resid', u'dark'] [u'storm', u'black', u'western'] [u'strachan', u'leed'] [u'studi', u'question', u'asylum', u'seeker', u'mental', u'health'] [u'survey', u'show', u'bush', u'doctor', u'work', u'harder'] [u'swedish', u'polic', u'probe', u'report', u'meat', u'lace'] [u'sydney', u'mayor', u'say', u'merger', u'like'] [u'tasmanian', u'anglican', u'deal', u'fresh', u'abus', u'claim'] [u'tension', u'grow', u'taiwan', u'elect'] [u'thompson', u'return', u'boost', u'celtic'] [u'thousand', u'schooli', u'head', u'airli', u'beach'] [u'tiger', u'gabba'] [u'global', u'polici', u'maker', u'warn', u'protection'] [u'tourism', u'bodi', u'want', u'aviat', u'review'] [u'tourism', u'market', u'promis'] [u'townsvill', u'schooli', u'urg', u'good', u'time'] [u'trio', u'charg', u'raid'] [u'troop', u'differ', u'solomon'] [u'turkey', u'blast', u'rattl', u'market', u'world', u'wide'] [u'turkey', u'blast', u'shake', u'aussi', u'market'] [u'turkey', u'confirm', u'arrest', u'istanbul', u'bomb'] [u'turkey', u'match', u'postpon', u'bomb', u'attack'] [u'unemploy', u'high', u'consum', u'debt'] [u'union', u'move', u'gretley', u'loophol', u'fear'] [u'union', u'rep', u'sorri', u'council', u'manag'] [u'univers', u'mildura', u'campus', u'open'] [u'china', u'trade', u'tension', u'continu', u'simmer'] [u'crack', u'internet', u'fraud'] [u'postpon', u'launch', u'arab'] [u'vanston', u'rule', u'popul', u'target'] [u'govt', u'sit', u'marathon', u'hour', u'session'] [u'lightn', u'fire', u'control'] [u'virgin', u'anger', u'drop', u'qanta', u'action'] [u'vogt', u'keep', u'faith', u'dutch', u'disast'] [u'wait', u'call', u'aussi'] [u'wallabi', u'complet', u'final', u'prepar'] [u'polic', u'prais', u'behav', u'schooli'] [u'warn', u'schooli', u'prepar', u'parti'] [u'water', u'compani', u'fin', u'pollut', u'river', u'dam'] [u'water', u'compani', u'rais', u'doubt', u'minimbah'] [u'webb', u'florida'] [u'wessel', u'suspend', u'alleg', u'race', u'slur'] [u'wessel', u'suspend', u'alleg', u'racial', u'slur'] [u'wheat', u'board', u'prepar', u'food', u'fight'] [u'wodonga', u'storm', u'clean', u'time'] [u'woman', u'kill', u'fatal', u'hous'] [u'wood', u'prepar', u'showdown'] [u'woodward', u'back', u'right', u'amid', u'dwyer'] [u'worker', u'kill', u'hunter', u'accid'] [u'work', u'group', u'releas', u'newcastl', u'citi', u'rail', u'report'] [u'warn', u'dolphin', u'slaughter', u'mediterranean'] [u'pile', u'caus', u'traffic', u'chao', u'brisban'] [u'host', u'franc', u'congratul', u'australia'] [u'kilo', u'illeg', u'firework', u'seiz'] [u'abbott', u'back', u'indigen', u'health', u'deal'] [u'abbott', u'sell', u'medicar', u'packag', u'doctor'] [u'govt', u'hotel', u'kurrajong'] [u'govt', u'encrypt', u'school', u'comput'] [u'stand', u'synthet', u'heroin', u'trial'] [u'actu', u'happi', u'ansett', u'agreement'] [u'aid', u'awar', u'week', u'kick'] [u'qaeda', u'claim', u'respons', u'istanbul'] [u'qaeda', u'warn', u'attack', u'turkey', u'make', u'arrest'] [u'qaeda', u'warn', u'tokyo', u'attack'] [u'australia', u'clean', u'perth', u'cycl'] [u'bishop', u'accus', u'abus', u'year', u'death'] [u'bloodsh', u'predict', u'amid', u'georgian', u'elect', u'protest'] [u'brack', u'govt', u'back', u'wind', u'farm'] [u'breaker', u'replac', u'coach', u'lose', u'match'] [u'bulldog', u'snap', u'cooney'] [u'bull', u'troubl', u'gabba'] [u'bush', u'home', u'visit'] [u'bushrang', u'warrior', u'play', u'draw'] [u'cargo', u'plane', u'missil', u'baghdad', u'militari'] [u'celtic', u'connect', u'back', u'england'] [u'china', u'call', u'support', u'taiwan'] [u'china', u'top', u'world', u'illeg', u'ivori', u'trade', u'report'] [u'civilian', u'plane', u'land', u'baghdad', u'flight'] [u'clijster', u'athen', u'boycott', u'threat'] [u'conflict', u'issu', u'flare'] [u'copeland', u'commit', u'lion'] [u'countdown', u'world', u'final'] [u'davi', u'mallon', u'crowd', u'leaderboard'] [u'domin', u'surg', u'clear', u'presid'] [u'labour', u'kill', u'india'] [u'electron', u'nose', u'replic', u'dog', u'sniff', u'skill'] [u'england', u'ahead', u'half', u'time'] [u'england', u'touch', u'rugbi', u'world'] [u'england', u'win', u'world', u'bet', u'battl'] [u'england', u'win', u'world'] [u'england', u'win', u'world', u'thriller'] [u'bomb', u'throw', u'embassi', u'iran'] [u'flatley', u'kick', u'world', u'overtim'] [u'fluoro', u'fish', u'sell', u'pet'] [u'kill', u'injur', u'grenad', u'attack'] [u'free', u'australian', u'return', u'china'] [u'french', u'grand', u'prix', u'cancel', u'report'] [u'gregan', u'swansong'] [u'hezbollah', u'chief', u'threaten', u'strike', u'heart'] [u'horror', u'hour', u'road'] [u'hotel', u'purchas', u'prais', u'oppn'] [u'india', u'australia', u'ganguli'] [u'indian', u'board', u'probe', u'bribe', u'alleg'] [u'indian', u'arriv', u'adelaid', u'amid', u'briberi', u'claim'] [u'individu', u'contest', u'settl', u'final'] [u'inquiri', u'rottnest', u'begin'] [u'irish', u'fetch', u'euro'] [u'jackson', u'fan', u'plan', u'vigil'] [u'jackson', u'friend', u'react', u'disbelief'] [u'posit', u'gregan'] [u'maher', u'tame', u'tiger'] [u'meningococc', u'victim', u'adelaid', u'school'] [u'miss', u'crocodil'] [u'motorist', u'kill', u'sydney', u'accid'] [u'nasa', u'say', u'probe', u'have', u'quiet', u'ride', u'mar'] [u'korean', u'nuclear', u'power', u'plant', u'plan', u'stall'] [u'tourist', u'commiss', u'happi', u'merger'] [u'nude', u'springbok', u'train', u'snap', u'shock', u'south', u'africa'] [u'train', u'return'] [u'olymp', u'edg', u'tabl'] [u'peac', u'possibl', u'month', u'quri'] [u'vote', u'rule', u'invalid'] [u'polic', u'break', u'brawl', u'sydney', u'tavern'] [u'polic', u'hunt', u'miss', u'crocodil'] [u'polic', u'investig', u'pile', u'brisban'] [u'polic', u'offic', u'injur'] [u'privat', u'bodi', u'claim'] [u'protest', u'centr', u'stage', u'afi'] [u'punch', u'drink', u'teenag', u'hospitalis'] [u'qanta', u'welcom', u'accc', u'decis'] [u'rain', u'soak', u'sydney', u'ahead', u'world', u'final'] [u'rain', u'stop', u'play', u'bushrang', u'chase', u'victori'] [u'raymond', u'meet', u'mauresmo', u'final', u'open'] [u'report', u'say', u'child', u'abus', u'cost', u'year'] [u'retir', u'dream', u'spot', u'arent', u'dreami'] [u'roll', u'dispirit', u'french'] [u'rwandan', u'polic', u'temporarili', u'releas'] [u'african', u'diamond', u'fail', u'meet', u'reserv'] [u'prepar', u'bushfir', u'season'] [u'branch', u'pass', u'confid', u'vote'] [u'schooli', u'flock', u'gold', u'coast'] [u'sharon', u'remov', u'settlement'] [u'sniper', u'juri', u'stall', u'penalti'] [u'solomon', u'export', u'industri', u'stay', u'dormant'] [u'spanish', u'woman', u'busi', u'free', u'shop', u'spree'] [u'lanka', u'england', u'dayer', u'abandon'] [u'storm', u'cut', u'power', u'western'] [u'suicid', u'bomber', u'attack', u'iraqi', u'polic', u'station'] [u'suicid', u'bomber', u'turk', u'say', u'sham'] [u'surf', u'skier', u'drown', u'rough', u'sea'] [u'teacher', u'face'] [u'terror', u'suspect', u'plan', u'attack', u'australia'] [u'tiger', u'hammer', u'bull'] [u'tiwi', u'home', u'employ', u'train', u'centr'] [u'traffic', u'control', u'concern', u'propos'] [u'turkey', u'tens', u'toll', u'hit'] [u'turk', u'arrest', u'issu', u'worldwid', u'warn'] [u'turk', u'plan', u'silent', u'peac', u'protest'] [u'turk', u'ralli', u'terror', u'attack'] [u'kill', u'collis'] [u'say', u'bomb', u'wont', u'hurt', u'turkey'] [u'brush', u'iraq', u'attack'] [u'director', u'lynch', u'receiv', u'swedish', u'honour'] [u'forc', u'kill', u'hungarian', u'student', u'iraq'] [u'issu', u'global', u'terror', u'alert'] [u'test', u'bomb', u'florida'] [u'violent', u'break', u'sydney', u'west'] [u'wallabi', u'draw', u'blood'] [u'wall', u'steadi', u'nervous', u'week'] [u'waugh', u'cautious', u'return'] [u'wessel', u'continu', u'deni', u'racism', u'claim'] [u'wilkinson', u'boot', u'england', u'ahead'] [u'wilkinson', u'kick', u'start', u'world', u'final'] [u'wiltord', u'add', u'arsenal', u'injuri', u'woe'] [u'woman', u'kill', u'accid'] [u'woodford', u'name', u'coach'] [u'zia', u'name', u'pakistan', u'squad'] [u'aborigin', u'youth', u'need', u'space', u'forum'] [u'offer', u'manslaught', u'delay'] [u'adelaid', u'apprehend', u'iraq'] [u'afghanistan', u'free', u'prison', u'ramadan'] [u'airport', u'prepar', u'onslaught', u'rugbi', u'fan'] [u'anti', u'terror', u'ralli', u'turkey'] [u'australia', u'dream', u'victim', u'gloat', u'woodward'] [u'australian', u'turkey', u'bomb', u'victim'] [u'australian', u'turkey', u'bomb', u'victim'] [u'australian', u'pair', u'rescu', u'mountain', u'snow', u'cave'] [u'australian', u'water', u'difficult', u'patrol', u'vanston'] [u'aviat', u'histori', u'rememb', u'darwin'] [u'awesom', u'annika', u'vault', u'clear'] [u'bali', u'burn', u'doctor', u'honour'] [u'beatti', u'defend', u'health'] [u'berlusconi', u'friend', u'jail', u'bribe', u'case'] [u'best', u'rugbi', u'world', u'quot'] [u'bjorn', u'triumph', u'japan', u'garcia', u'stumbl'] [u'blair', u'hail', u'england', u'world', u'hero'] [u'boat', u'carri', u'terrorist', u'vanston'] [u'hospit', u'motorcycl', u'accid'] [u'breakaway', u'church', u'propos', u'ordin'] [u'brock', u'mountain'] [u'butcher', u'arrest', u'ramadan', u'meat', u'scam'] [u'carmichael', u'captur', u'open', u'crown'] [u'coach', u'take', u'swipe', u'media'] [u'communiti', u'market', u'grant'] [u'controversi', u'design', u'defend', u'museum', u'work'] [u'crean', u'desert', u'deni'] [u'croatian', u'poll'] [u'dad', u'armi', u'england'] [u'demonstr', u'storm', u'georgian', u'parliament'] [u'deportivo', u'draw', u'open', u'door', u'titl', u'rival'] [u'diseas', u'bodi', u'part', u'cigarett', u'pack'] [u'england', u'grind', u'halt', u'jonni'] [u'england', u'hero', u'wilkinson', u'modest', u'victori'] [u'england', u'world'] [u'english', u'fan', u'celebr', u'world'] [u'euphor', u'english', u'fan', u'home'] [u'north', u'shake', u'earthquak'] [u'fiji', u'win', u'race'] [u'home', u'owner', u'warn', u'shonki', u'builder'] [u'migrant', u'kill', u'india', u'north', u'east'] [u'fountain', u'honour', u'women', u'suffrag'] [u'franc', u'rugbi', u'world'] [u'french', u'take', u'break'] [u'georgia', u'opposit', u'say', u'nation', u'guard'] [u'georgia', u'govt', u'channel', u'report'] [u'georgia', u'presid', u'oust'] [u'georgia', u'presid', u'readi', u'consid', u'earli'] [u'govt', u'urg', u'commit', u'ethanol', u'industri'] [u'gregan', u'ponder', u'test', u'futur'] [u'gregan', u'proud', u'beat', u'wallabi'] [u'gunshot', u'fire', u'indonesia', u'restiv', u'poso', u'district'] [u'hanson', u'lack', u'support', u'senat', u'abbott'] [u'heavi', u'rain', u'caus', u'flood'] [u'indonesia', u'extend', u'australian', u'jail', u'term'] [u'indonesia', u'replac', u'militari', u'command', u'aceh'] [u'inquiri', u'barbar', u'bok', u'boot', u'camp'] [u'investig', u'meningococc', u'case', u'begin'] [u'iraqi', u'secur', u'chief', u'kill', u'mosul', u'polic'] [u'italian', u'cruis', u'ship', u'cancel', u'stop', u'turkish', u'coast'] [u'itali', u'major', u'target', u'extremist', u'minist', u'warn'] [u'rememb'] [u'johnson', u'prais', u'england', u'team', u'effort'] [u'jone', u'call', u'invest', u'side'] [u'jone', u'call', u'replac', u'rule'] [u'jone', u'say', u'wallabi', u'improv'] [u'jone', u'target', u'kick', u'game', u'improv'] [u'juventus', u'open', u'point', u'inter'] [u'kangaroo', u'overjoy', u'histor', u'ash', u'clean', u'sweep'] [u'kangaroo', u'strike', u'aussi'] [u'kangaroo', u'reveng', u'world', u'loss'] [u'kingz', u'stun', u'stallion'] [u'labor', u'back', u'plan', u'boost', u'bulk', u'bill', u'rat'] [u'lara', u'gayl', u'centuri', u'destroy', u'zimbabw'] [u'lithuanian', u'protest', u'demand', u'presid', u'resign'] [u'local', u'govt', u'unhappi', u'hous', u'polici'] [u'malaysia', u'defend', u'sack', u'editor'] [u'manou', u'cleari', u'lift', u'redback'] [u'medic', u'student', u'hungri', u'degre'] [u'milan', u'evacu', u'thousand', u'defus', u'wwii', u'bomb'] [u'miss', u'trucki', u'famili', u'appeal', u'inform'] [u'monash', u'medic', u'centr', u'close', u'paediatr', u'intens'] [u'nelson', u'court', u'independ', u'packag'] [u'north', u'korea', u'nuke', u'talk', u'decemb', u'report'] [u'scienc', u'fund', u'bodi'] [u'foundat', u'launch'] [u'chang', u'arsenal', u'chelsea', u'unit'] [u'final', u'decis', u'scrap', u'french', u'minist'] [u'health', u'minist', u'unhappi', u'medicar', u'packag'] [u'nation', u'popular', u'rise'] [u'oppn', u'attack', u'medicar', u'packag'] [u'pakistan', u'captain', u'latif', u'troubl'] [u'pakistan', u'drop', u'zia', u'media', u'storm'] [u'pakistani', u'releas', u'guantanamo'] [u'pierc', u'mauresmo', u'franc', u'charg'] [u'polic', u'boost', u'number'] [u'polic', u'investig', u'bottl', u'shop', u'robberi'] [u'polic', u'raid', u'lead', u'larg', u'cannabi'] [u'polic', u'firework', u'caus', u'spearwood', u'blaze'] [u'polic', u'warn', u'teen', u'parti', u'gatecrash'] [u'polic', u'watch', u'schooli'] [u'quak', u'hit', u'japanes', u'prefectur'] [u'queen', u'offer', u'congratul'] [u'rain', u'doesnt', u'dampen', u'schooli', u'spirit'] [u'redback', u'bowl', u'blue'] [u'region', u'growth', u'depend', u'report'] [u'renew', u'govt', u'address', u'child', u'abus'] [u'rio', u'clear', u'attack', u'cop'] [u'rocket', u'fire', u'iraq', u'compani', u'iraqi'] [u'rock', u'legend', u'stage', u'protest', u'point', u'nepean'] [u'rugbi', u'world', u'boost', u'tourism', u'sector'] [u'scott', u'inspir', u'intern', u'clean', u'sweep'] [u'shatter', u'wallabi', u'fair', u'beat', u'jone'] [u'shop', u'warn', u'dont', u'money'] [u'slim', u'turnout', u'jackson', u'vigil'] [u'south', u'africa', u'seek', u'chang', u'humili'] [u'south', u'pacif', u'polic', u'chief', u'meet', u'brisban'] [u'state', u'emerg', u'georgia'] [u'striker', u'stun', u'power'] [u'suicid', u'blast', u'claim', u'baghdad'] [u'taipan', u'dodg', u'bullet'] [u'govt', u'doubl', u'assault', u'penalti'] [u'teen', u'charg', u'australian', u'murder', u'malaysia'] [u'turk', u'polic', u'arrest', u'suspect', u'bomb', u'plot'] [u'turk', u'detain', u'connect', u'kirkuk', u'blast'] [u'isra', u'secur', u'guard', u'kill'] [u'test', u'world', u'champ', u'dope', u'trawl'] [u'soldier', u'kill', u'iraqi', u'citi', u'mosul'] [u'armi', u'maintain', u'troop', u'presenc', u'iraq', u'report'] [u'move', u'closer', u'iran'] [u'hous', u'pass', u'landmark', u'medicar', u'drug'] [u'hous', u'vote', u'block', u'spam'] [u'soldier', u'kill', u'blast', u'north', u'baghdad'] [u'vail', u'leav', u'seal', u'trade', u'deal'] [u'nistelrooy', u'fire', u'unit'] [u'walton', u'impress', u'selector', u'geelong', u'triathlon'] [u'woman', u'serious', u'injur', u'accid'] [u'woodward', u'defend', u'mitchel'] [u'world', u'final', u'point', u'point'] [u'dead', u'miss', u'china', u'blast'] [u'abbott', u'woolworth', u'sell', u'prescript'] [u'aborigin', u'heritag', u'preserv', u'grant'] [u'debat', u'suburb'] [u'pass', u'industri', u'manslaught', u'law'] [u'agenc', u'help', u'indigen', u'communiti'] [u'ambul', u'delay', u'fear', u'spark', u'staff', u'boost'] [u'sharehold', u'anger'] [u'sharehold', u'vote', u'stanwel', u'project'] [u'athlet', u'chief', u'tighten', u'dope', u'rule'] [u'audit', u'rais', u'brothel', u'legal', u'question'] [u'aussi', u'daw', u'romp', u'victori', u'taiwan'] [u'aussi', u'test', u'davi', u'grass'] [u'australian', u'hold', u'iraq', u'wrong', u'place'] [u'australian', u'free', u'iraq'] [u'tackl', u'indigen', u'live', u'condit'] [u'beckham', u'strike', u'help', u'real'] [u'brit', u'need', u'adopt', u'win', u'attitud', u'morley'] [u'break', u'hill', u'clean', u'tidi', u'town', u'award'] [u'bulk', u'rat', u'rise', u'packag', u'abbott'] [u'bumper', u'lavend', u'crop', u'expect'] [u'bunburi', u'back', u'aust', u'free', u'trade', u'plan'] [u'burma', u'releas', u'opposit', u'figur'] [u'airport', u'secur', u'law', u'upgrad'] [u'mandatori', u'light', u'life', u'jacket'] [u'truck', u'redesign'] [u'consolid', u'tourism', u'effort'] [u'care', u'australia', u'quit', u'iraq'] [u'cattl', u'graze', u'ban', u'part', u'victoria'] [u'chang', u'help', u'wolv', u'perth'] [u'chang', u'guard', u'nation', u'trust'] [u'cherri', u'grower', u'hail', u'vertic', u'hail'] [u'civil', u'action', u'speaker', u'throw'] [u'clark', u'appeal', u'hear', u'warrnambool'] [u'cleaner', u'face', u'jail', u'steal', u'cold'] [u'committe', u'tell', u'cost', u'shift', u'cost', u'taxpay'] [u'communiti', u'group', u'urg', u'open', u'free', u'trade', u'debat'] [u'concern', u'power', u'station'] [u'confer', u'clear', u'pollut', u'manag'] [u'council', u'approv', u'wetland', u'restor'] [u'council', u'consid', u'island', u'bridg', u'option'] [u'croatian', u'nationalist', u'claim', u'elect', u'victori'] [u'croatian', u'pois', u'nation', u'poll'] [u'dawson', u'schoolboy', u'dummi', u'crucial', u'kick'] [u'deficit', u'prompt', u'council', u'budgetari', u'chang'] [u'democraci', u'parti', u'hong', u'kong'] [u'democrat', u'claim', u'uniti'] [u'drought', u'take', u'toll', u'region', u'prosper'] [u'duran', u'duran', u'land', u'brit', u'lifetim', u'award'] [u'earli', u'start', u'gift', u'buy', u'spree', u'herald', u'bumper'] [u'edelsten', u'appeal', u'medic', u'tribun'] [u'edgi', u'aussi', u'davi', u'countdown'] [u'charg', u'yarra', u'murder'] [u'electr', u'fault', u'blame', u'build'] [u'abandon', u'talk', u'time', u'warner'] [u'england', u'fli', u'home', u'scoop', u'rugbi', u'award'] [u'england', u'prepar', u'hero', u'welcom', u'world'] [u'england', u'take', u'world', u'home'] [u'exercis', u'test', u'victoria', u'emerg', u'servic'] [u'famili', u'court', u'overstretch', u'institut'] [u'farmer', u'welcom', u'soak', u'rain'] [u'govt', u'urg', u'rethink', u'drought', u'applic'] [u'firm', u'court', u'recov', u'sport', u'club', u'donat'] [u'council', u'employe', u'mayor'] [u'primelif', u'boss', u'hit', u'board'] [u'franc', u'learn', u'england', u'success'] [u'fund', u'drought', u'halt', u'epilepsi', u'project'] [u'fund', u'boost', u'drought', u'coordin'] [u'garden', u'check', u'plant', u'pest'] [u'pipelin', u'bomb', u'iraq'] [u'georgian', u'presid', u'resign'] [u'georgian', u'hail', u'peopl', u'revolut'] [u'gold', u'industri', u'urg', u'boost', u'explor'] [u'good', u'soak', u'illawarra'] [u'govt', u'lash', u'return', u'idea'] [u'govt', u'urg', u'address', u'region', u'popul', u'fall'] [u'govt', u'review'] [u'govt', u'space', u'control'] [u'govt', u'urg', u'boost', u'polic', u'fund'] [u'grind', u'zero', u'train', u'make', u'emot', u'trip'] [u'gunner', u'face', u'trial', u'siro'] [u'heal', u'play', u'greek', u'leagu'] [u'health', u'fear', u'australian', u'indonesian', u'prison'] [u'hepburn', u'spring', u'landmark', u'rebuild'] [u'hib', u'leav', u'brokenheart', u'goal', u'seal', u'derbi'] [u'put', u'policeman', u'hospit'] [u'hop', u'tour', u'help', u'hous', u'shortag'] [u'hous', u'road', u'accid', u'claim', u'live'] [u'hous', u'crisi', u'hurt', u'struggl', u'famili'] [u'howard', u'lament', u'fall', u'parti', u'membership'] [u'immun', u'propos', u'label', u'danger'] [u'independ', u'unconvinc', u'educ', u'plan'] [u'indian', u'board', u'call', u'meet', u'briberi', u'alleg'] [u'india', u'cash', u'play', u'cricket', u'saga', u'snowbal'] [u'industri', u'disput', u'threaten', u'power', u'suppli'] [u'industri', u'urg', u'heed', u'catamaran', u'crash', u'report'] [u'iran', u'base', u'qaeda', u'member', u'order', u'saudi', u'attack'] [u'israel', u'free', u'jordanian', u'prison'] [u'jackson', u'innoc', u'taylor'] [u'japanes', u'tourist', u'boost', u'local', u'economi'] [u'jindabyn', u'land', u'releas', u'cater', u'futur', u'growth'] [u'job', u'safe', u'effici', u'push'] [u'kean', u'winner', u'boost', u'spur', u'campaign'] [u'kingfish', u'loss', u'risk'] [u'knife', u'bandit', u'hold', u'gold', u'coast', u'store'] [u'landlord', u'requir', u'limit', u'lead', u'exposur'] [u'lehmann', u'test', u'hope'] [u'loxton', u'waikeri', u'mayor', u'await'] [u'mallon', u'win', u'sorenstam', u'bogey', u'final', u'hole'] [u'arrest', u'iraq', u'want', u'secreci'] [u'dead', u'fall', u'fuji'] [u'rescu', u'fall'] [u'man', u'year', u'fast', u'baffl', u'doctor'] [u'mauresmo', u'power', u'franc', u'titl'] [u'miner', u'angri', u'worker', u'death', u'decis'] [u'minist', u'clarifi', u'wind', u'farm', u'guidelin'] [u'minist', u'hamper', u'teacher', u'disput', u'barnett'] [u'miss', u'woman', u'surviv', u'croc', u'attack'] [u'tourist', u'roma', u'region'] [u'moscow', u'hostel', u'blaze', u'kill'] [u'air', u'home', u'buy', u'discount', u'concern'] [u'consid', u'accid', u'tow', u'plan'] [u'alga', u'threaten', u'great', u'barrier', u'reef'] [u'deal', u'make', u'work', u'franc', u'easier'] [u'power', u'line'] [u'research', u'centr'] [u'tourism', u'manag', u'break', u'hill'] [u'date', u'georgia', u'poll'] [u'strike', u'traffic', u'chang'] [u'face', u'court', u'woman', u'death'] [u'minist', u'criticis', u'medicar', u'packag'] [u'oneil', u'hop', u'rugbi', u'number'] [u'pacif', u'polic', u'leader', u'meet', u'brisban'] [u'paedophil', u'return', u'prison'] [u'pair', u'court', u'poki', u'theft'] [u'pakistan', u'announc', u'kashmir', u'ceas'] [u'pakistan', u'coach', u'miandad', u'eye', u'clean', u'sweep'] [u'sell', u'busi'] [u'platform', u'tasmanian', u'forest', u'clash'] [u'polic', u'heroin', u'haul', u'melbourn'] [u'polic', u'probe', u'alic', u'road', u'death'] [u'polic', u'probe', u'bendigo', u'croc', u'theft'] [u'polic', u'seek', u'english', u'soccer', u'player'] [u'port', u'steven', u'bind', u'blue'] [u'probe', u'continu', u'mildura', u'school'] [u'produc', u'threaten', u'anim', u'protest'] [u'gain', u'major', u'sponsor'] [u'rain', u'bring', u'crop', u'damag', u'fear'] [u'rainfal', u'jeopardis', u'vic', u'grain', u'harvest'] [u'ralli', u'highlight', u'medicar', u'concern'] [u'recal', u'issu', u'vitamin', u'pill'] [u'region', u'plan', u'pipelin'] [u'report', u'give', u'high', u'mark', u'shellharbour', u'shoalhaven'] [u'costello', u'name', u'world', u'vision', u'chief'] [u'riverland', u'health', u'extra', u'fund'] [u'roma', u'pressur', u'lazio'] [u'ronaldson', u'rekindl', u'polit', u'career'] [u'rsls', u'memori', u'dedic'] [u'rule', u'licens', u'recreat', u'fish'] [u'schooli', u'blame', u'gold', u'coast', u'arrest'] [u'school', u'open', u'despit', u'weekend', u'blaze'] [u'search', u'bodi', u'renew'] [u'senat', u'vote', u'migrat', u'chang'] [u'senat', u'criticis', u'govt', u'health', u'servic'] [u'servic', u'hold', u'turkey', u'blast', u'victim'] [u'sesam', u'street', u'pois', u'cambodian', u'debut'] [u'shadow', u'lover', u'chase', u'total'] [u'share', u'market', u'remain', u'steadi'] [u'sharon', u'consid', u'peac', u'process'] [u'shire', u'hop', u'save', u'elect', u'referendum', u'cost'] [u'sidelin', u'atsic', u'chief', u'appeal', u'convict'] [u'hospit'] [u'solomon', u'vote'] [u'south', u'west', u'rail', u'link', u'talk', u'track'] [u'lanka', u'take', u'confid', u'rain', u'ruin', u'seri'] [u'stakehold', u'abl', u'speak', u'bioregion', u'review'] [u'state', u'polic', u'airport'] [u'storm', u'bring', u'rain', u'blackout', u'central'] [u'storm', u'toll', u'riverina', u'crop'] [u'studi', u'tour', u'offer', u'meningococc', u'strategi'] [u'styx', u'protest', u'tree'] [u'sudan', u'newspap', u'resum', u'circul'] [u'sunshin', u'coast', u'schooli', u'behav'] [u'sydney', u'water', u'boss', u'deni', u'conflict'] [u'sylvia', u'select', u'melbourn'] [u'taxi', u'raid', u'airport'] [u'teen', u'get', u'detent', u'offenc'] [u'telstra', u'detail', u'share', u'buyback', u'term'] [u'kill', u'indonesian', u'flood'] [u'tiger', u'surviv', u'nerv', u'jangl', u'moment', u'sink'] [u'late', u'talk', u'say', u'georgian', u'opposit'] [u'tooni', u'blair', u'join', u'simpson'] [u'tour', u'industri', u'happi', u'white', u'paper', u'plan'] [u'trade', u'visit', u'consid', u'success'] [u'triathlon', u'champ', u'set', u'sight', u'world', u'comp'] [u'trio', u'face', u'court', u'drug', u'charg'] [u'soldier', u'shoot', u'dead', u'mosul'] [u'union', u'discuss', u'suspend', u'worker'] [u'helicopt', u'go', u'afghanistan'] [u'intern', u'share', u'presid'] [u'readi', u'assist', u'georgia'] [u'remov', u'illeg', u'export', u'break'] [u'vendi', u'back', u'ballarat', u'report'] [u'victoria', u'wallabi', u'genom'] [u'host', u'anti', u'game'] [u'water', u'trust', u'help', u'region', u'victoria'] [u'weekend', u'shoot', u'basketbal', u'side'] [u'week', u'rural', u'health', u'spotlight'] [u'western', u'town', u'tidi', u'effort'] [u'face', u'huge', u'loss', u'mine', u'delay'] [u'wolv', u'shock', u'glori'] [u'work', u'parti', u'meet', u'sydney', u'canberra', u'rail'] [u'year', u'sit', u'focus', u'health', u'educ'] [u'zimbabw', u'level', u'seri', u'windi', u'bat', u'flop'] [u'refus', u'australia', u'parti', u'fund'] [u'adelaid', u'polic', u'investig', u'road', u'rage', u'incid'] [u'prepar', u'rugbi', u'onslaught'] [u'age', u'care', u'worker', u'walk'] [u'albani', u'woman', u'honour', u'mental', u'health', u'effort'] [u'albino', u'gorilla', u'snowflak', u'die', u'barcelona'] [u'alburi', u'council', u'probe', u'staff', u'blow'] [u'back', u'north', u'medic', u'board', u'plan'] [u'step', u'campaign', u'pressur', u'govt'] [u'sharehold', u'approv', u'stanwel', u'restart'] [u'anderson', u'defend', u'aviat', u'law'] [u'ansett', u'worker', u'hope', u'get'] [u'antiqu', u'collector', u'swap', u'urn', u'report'] [u'arab', u'station', u'deni', u'incit', u'violenc'] [u'australian', u'urg', u'support', u'white', u'ribbon'] [u'bethungra', u'close', u'monitor'] [u'blair', u'chirac', u'mend', u'break', u'tie'] [u'blaze', u'raze', u'moscow', u'student', u'dorm'] [u'bond', u'scan', u'suffer', u'pain'] [u'briton', u'get', u'year', u'thai', u'child', u'abus'] [u'bush', u'sign', u'troop', u'rise'] [u'buyer', u'pirat', u'good', u'studi'] [u'campaign', u'encourag', u'test'] [u'care', u'review', u'baghdad', u'secur'] [u'carlo', u'real', u'figo', u'uncertain'] [u'chamber', u'name', u'pari', u'steroid', u'user'] [u'charlevill', u'plan', u'outback', u'colleg'] [u'chicago', u'bull', u'coach', u'cartwright'] [u'childcar', u'worker', u'rise'] [u'chines', u'polic', u'probe', u'multipl', u'murder', u'japan'] [u'christian', u'send', u'chines', u'labour', u'camp', u'report'] [u'clark', u'lawyer', u'accus', u'publican', u'lie'] [u'club', u'bowl', u'council', u'leas', u'decis'] [u'cochlear', u'name'] [u'consum', u'confid', u'caus', u'market', u'surg'] [u'council', u'push', u'junction', u'black', u'spot'] [u'council', u'consid', u'money', u'save', u'idea'] [u'councillor', u'disagre', u'dump', u'site'] [u'council', u'pleas', u'cost', u'shift', u'report', u'find'] [u'council', u'debat', u'keep', u'reserv'] [u'council', u'urg', u'help', u'fast', u'rail', u'plan'] [u'countri', u'desper', u'doctor'] [u'countri', u'singer', u'glen', u'campbel', u'arrest'] [u'court', u'allow', u'ansett', u'settlement'] [u'court', u'appeal', u'order', u'trial'] [u'miss', u'tiger', u'select'] [u'crean', u'pull', u'frontbench', u'line'] [u'csiro', u'optimist', u'methan', u'growth', u'steadi'] [u'darwin', u'restaur', u'shut'] [u'derelict', u'freighter', u'futur', u'know', u'soon'] [u'domest', u'violenc', u'action', u'plan', u'near'] [u'doubt', u'cast', u'cattl', u'graze'] [u'dredg', u'owner', u'unawar', u'salvag', u'plan', u'deadlin'] [u'dunde', u'administr'] [u'round', u'bend', u'byron', u'sewerag', u'crisi'] [u'england', u'victori', u'parad', u'delay'] [u'famili', u'rememb', u'victim', u'militari', u'accid'] [u'farmer', u'urg', u'caution', u'rate', u'rise'] [u'increas', u'visit', u'nation', u'park'] [u'femal', u'chief', u'justic', u'name'] [u'land', u'rout', u'build', u'pole'] [u'forum', u'focus', u'attent', u'indigen', u'hous'] [u'french', u'perous', u'remain', u'solomon'] [u'fund', u'probe', u'spark', u'inter', u'govt', u'agreement'] [u'fund', u'help', u'whale', u'world', u'promot', u'theatr'] [u'gather', u'aim', u'boost', u'preschool', u'particip'] [u'georgia', u'urgent'] [u'govt', u'condemn', u'excis'] [u'govt', u'consid', u'option', u'migrat', u'zone'] [u'govt', u'offer', u'help', u'pine', u'manufactur'] [u'govt', u'outlin', u'asio', u'chang'] [u'grazier', u'want', u'earli', u'declar'] [u'group', u'battl', u'wind', u'farm'] [u'group', u'urg', u'embrac', u'desert', u'knowledg'] [u'gunnedah', u'polic', u'station', u'close', u'revamp'] [u'hail', u'rain', u'close', u'runway'] [u'hanson', u'futur', u'nation', u'unclear'] [u'harvey', u'say', u'area', u'health', u'tardi', u'respond'] [u'hick', u'habib', u'allow', u'speak', u'famili'] [u'hick', u'habib', u'lawyer'] [u'homeless', u'agenda', u'hous', u'week'] [u'hope', u'crash', u'probe', u'spark', u'maritim', u'safeti', u'boost'] [u'howard', u'crean', u'tribut', u'wallabi'] [u'hussain', u'predict', u'rough', u'time', u'ahead'] [u'indian', u'bushrang'] [u'india', u'offer', u'reciproc', u'ceas'] [u'india', u'pakistan', u'implement', u'ceasefir'] [u'india', u'struggl', u'bushrang'] [u'indigen', u'languag', u'book', u'cultur', u'aliv'] [u'indigen', u'leader', u'look', u'futur'] [u'in', u'white', u'flatten', u'indian', u'bat', u'line'] [u'institut', u'join', u'forc', u'desert', u'research'] [u'iraqi', u'council', u'submit', u'timet'] [u'iraqi', u'ruler', u'arab', u'satellit', u'station'] [u'jackson', u'say', u'abus', u'charg'] [u'judg', u'hear', u'zimbabw', u'daili', u'news', u'case', u'probe'] [u'juri', u'consid', u'rape', u'verdict'] [u'juri', u'discharg', u'murder', u'trial'] [u'juri', u'recommend', u'death', u'sniper'] [u'kale', u'challeng', u'india'] [u'keown', u'wiltord', u'arsenal'] [u'legend', u'mine', u'develop', u'gold', u'plan'] [u'lehmann', u'look', u'comeback', u'bull'] [u'lengthi', u'surgeri', u'separ', u'conjoin', u'twin', u'begin'] [u'leski', u'inquest', u'hear', u'confess', u'claim'] [u'liverpool', u'lose', u'finnan', u'month'] [u'local', u'govern', u'push', u'fund', u'reform'] [u'local', u'govt', u'group', u'welcom', u'cost', u'shift', u'report'] [u'lockerbi', u'bomber', u'get', u'year'] [u'mackay', u'council', u'hop', u'better', u'fund', u'deal'] [u'bash', u'busi', u'failur', u'court', u'tell'] [u'charg', u'face', u'trial'] [u'face', u'trial', u'tripl', u'fatal', u'crash'] [u'want', u'connect', u'death'] [u'matern', u'group', u'speak', u'obstetr', u'woe'] [u'mayor', u'pregnanc', u'slur'] [u'mayor', u'worri', u'fenc', u'fund'] [u'mayor', u'want', u'earli', u'ethanol', u'decis'] [u'meet', u'schedul', u'rail', u'rout'] [u'meet', u'wast', u'dump', u'fear'] [u'mobil', u'phone', u'network', u'outag', u'affect'] [u'report', u'kingfish', u'escap'] [u'mother', u'jail', u'decept', u'offenc'] [u'mourn', u'retir'] [u'mubarak', u'see', u'public', u'time', u'health'] [u'murder', u'trial', u'hear', u'evid'] [u'nasa', u'face', u'huge', u'shuttl', u'disast'] [u'nationwid', u'search', u'abduct', u'girl'] [u'coal', u'seam', u'methan', u'contract'] [u'charg', u'turkey', u'blast'] [u'north', u'queensland', u'feel', u'heat'] [u'norway', u'bomb', u'proof', u'heavi', u'road'] [u'state', u'govern', u'reject', u'breakwat', u'propos'] [u'examin', u'plan', u'allow', u'croc', u'hunt'] [u'parliament', u'invad', u'appeal', u'convict'] [u'shadow', u'back', u'drop', u'male', u'consent'] [u'compani', u'reject', u'ingredi'] [u'review', u'relationship', u'tonga'] [u'olymp', u'shooter', u'diamond', u'seek', u'earlier', u'hear'] [u'oneil', u'brace', u'biggest', u'celtic', u'game'] [u'opposit', u'criticis', u'attack', u'care', u'australia'] [u'perth', u'train', u'driver', u'stop', u'work', u'safeti'] [u'philippin', u'ship', u'sink', u'miss'] [u'lash', u'labor', u'migrat', u'zone'] [u'urg', u'defend', u'map', u'centr', u'job'] [u'forecast', u'strong', u'econom', u'growth'] [u'concern', u'upcom', u'elect'] [u'polic', u'accept', u'report', u'death', u'teen'] [u'polic', u'deter', u'schooli', u'troublemak'] [u'polic', u'hard', u'schooli', u'line', u'work'] [u'polic', u'warn', u'drink', u'spiker'] [u'pont', u'tiger'] [u'port', u'creat', u'cargo', u'handl', u'record'] [u'prison', u'refus', u'speak', u'leski', u'inquest'] [u'probe', u'order', u'student', u'accommod'] [u'problem', u'sprout', u'chapman', u'valley', u'crop'] [u'protest', u'question', u'kiribati', u'taiwan', u'tie'] [u'publican', u'clark', u'case', u'deni', u'racist', u'polic'] [u'public', u'transport', u'fare', u'rise'] [u'public', u'urg', u'comment', u'crop'] [u'oppn', u'promis', u'broadwat', u'dredg'] [u'queen', u'gag', u'fake', u'footman', u'forev'] [u'quinn', u'seek', u'stop', u'beach', u'sand', u'pump'] [u'radcliff', u'suffer', u'rare', u'defeat'] [u'radiotherapi', u'servic', u'dubbo', u'campaign'] [u'rain', u'benefit', u'hunter', u'water', u'storag'] [u'rain', u'lift', u'restrict'] [u'red', u'lose', u'tune'] [u'region', u'report', u'encourag', u'bendigo'] [u'report', u'highlight', u'fall', u'incom'] [u'report', u'highlight', u'gippsland', u'migrat', u'popul'] [u'report', u'highlight', u'lower', u'workforc', u'figur'] [u'research', u'test', u'termit', u'proof', u'option'] [u'reynold', u'win', u'creditor', u'meet', u'today'] [u'road', u'mark', u'unsaf', u'claim', u'ract'] [u'roqu', u'junior', u'blow', u'leed'] [u'guarante', u'job', u'nurs'] [u'saha', u'doubl', u'put', u'fulham'] [u'santa', u'sidekick', u'attempt', u'holland', u'hold'] [u'refus', u'murder', u'parol'] [u'scheme', u'help', u'prison', u'rejoin', u'societi'] [u'school', u'contract', u'ultimatum'] [u'scientist', u'spell', u'land', u'clear', u'danger'] [u'scud', u'confid', u'grass', u'court', u'play', u'quick'] [u'senat', u'committe', u'review', u'medicar', u'packag'] [u'senat', u'vote', u'medicar', u'probe'] [u'senior', u'georgian', u'minist', u'resign'] [u'seven', u'sentenc', u'bali', u'bomb', u'term'] [u'share', u'market', u'push', u'higher'] [u'sheep', u'export', u'probe', u'threaten', u'kuwaiti', u'market'] [u'showdown', u'loom', u'treetop', u'styx', u'protest'] [u'hospit'] [u'skin', u'miss', u'phelp', u'thorp', u'clash'] [u'small', u'busi', u'minist', u'visit', u'wagga'] [u'small', u'busi', u'upbeat', u'economi', u'survey'] [u'solomon', u'pacif', u'journal', u'award'] [u'stamp', u'duti', u'chang', u'minim', u'opposit'] [u'struggl', u'predict', u'lib', u'senat', u'ticket'] [u'studi', u'consid', u'park', u'meter', u'pluse'] [u'styx', u'valley', u'protest', u'end', u'plan'] [u'sunfish', u'say', u'zone', u'stunt'] [u'support', u'council', u'beach', u'protect', u'pledg'] [u'sydney', u'confer', u'address', u'child', u'abus'] [u'busi', u'confid', u'set', u'nation', u'lead'] [u'plan', u'tighter', u'drug', u'law'] [u'treasur', u'seek', u'health', u'advic', u'polit'] [u'telecentr', u'closur', u'see', u'reloc'] [u'tenanc', u'consum', u'advic', u'centr', u'close'] [u'thai', u'court', u'jail', u'brit', u'paedophil'] [u'thousand', u'welcom', u'england', u'home'] [u'iraqi', u'kill', u'lay', u'bomb'] [u'total', u'declar', u'west'] [u'tougher', u'shark', u'protect', u'unnecessari', u'reserach'] [u'tour', u'team', u'finalis'] [u'turkey', u'sampl', u'chill', u'vibe', u'face'] [u'rebel', u'attack', u'indian', u'kashmir'] [u'typhoon', u'hit', u'remot', u'pacif', u'atol'] [u'unit', u'need', u'point', u'greec'] [u'europ', u'agre', u'iran', u'nuclear', u'resolut'] [u'give', u'nuke', u'pacif', u'island', u'ship'] [u'impos', u'duti', u'chines', u'televis'] [u'leav', u'iraq', u'longer', u'need'] [u'vail', u'free', u'trade', u'talk'] [u'govt', u'transport', u'fare', u'rise'] [u'oppn', u'rais', u'higher', u'transport', u'concern'] [u'victori', u'england', u'home', u'soil'] [u'violenc', u'sport', u'caus', u'facial', u'injuri'] [u'electr', u'disput', u'resolv'] [u'offer', u'higher', u'public', u'servic', u'offer'] [u'polic', u'condemn', u'aborigin', u'death'] [u'water', u'author', u'readi', u'pollut', u'problem'] [u'water', u'plan', u'good', u'bacchus', u'marsh', u'vegi', u'grower'] [u'west', u'brom', u'striker', u'hugh', u'arrest'] [u'west', u'play', u'career', u'bulldog'] [u'whale', u'dead', u'tasmanian', u'beach'] [u'wit', u'call', u'clark', u'appeal'] [u'worker', u'receiv', u'union', u'visit', u'propos', u'law'] [u'yamaha', u'team', u'manag', u'depart', u'rossi', u'move'] [u'young', u'soccer', u'player', u'hone', u'skill'] [u'youth', u'help', u'green', u'oakey'] [u'household', u'recycl'] [u'probe', u'sydney', u'radio', u'deal'] [u'abbott', u'pounc', u'labor', u'leader', u'talk'] [u'accc', u'skittl', u'coke', u'berri'] [u'debat', u'tougher', u'sentenc'] [u'opposit', u'seek', u'trial', u'levi'] [u'reject', u'australia', u'celebr'] [u'agenc', u'tackl', u'mullewa', u'youth', u'woe'] [u'aid', u'death', u'infect', u'high'] [u'airport', u'secur', u'upgrad', u'delay', u'passeng'] [u'space', u'chang', u'fear', u'air'] [u'good', u'thing', u'come'] [u'ord', u'edg', u'ahead'] [u'illustri', u'career'] [u'arsenal', u'storm', u'sensat', u'monaco', u'qualifi'] [u'artest', u'power', u'pacer', u'sixth', u'straight'] [u'attempt', u'drug', u'deal', u'get', u'suspend', u'sentenc'] [u'aussi', u'driver', u'follow', u'schumach', u'footstep'] [u'australia', u'middl', u'power', u'downer', u'say'] [u'australian', u'face', u'death', u'penalti', u'singapor'] [u'australian', u'donat', u'medic', u'book', u'iraq'] [u'aust', u'renew', u'turkey', u'travel', u'warn'] [u'author', u'probe', u'opal', u'blaze'] [u'bailey', u'back', u'anderson', u'cronulla'] [u'bailey', u'back', u'anderson'] [u'basketbal', u'snap', u'croc', u'safeti'] [u'bigpond', u'troubl', u'fix'] [u'boat', u'accid', u'kingfish', u'escap'] [u'build', u'approv', u'slow', u'goondiwindi'] [u'gympi', u'medic', u'specialist'] [u'camden', u'ripper', u'get', u'life', u'london', u'murder'] [u'canberra', u'newspap', u'face', u'defam', u'claim'] [u'cane', u'farmer', u'meet', u'sugar', u'crisi'] [u'carr', u'weigh', u'migrat', u'zone', u'debat'] [u'chamber', u'catch', u'world', u'championship'] [u'chelsea', u'better', u'milan', u'team', u'say'] [u'china', u'plan', u'reopen'] [u'china', u'shut', u'kiribati', u'space', u'base', u'report'] [u'church', u'wed', u'minor'] [u'claim', u'wag', u'impact', u'build', u'industri'] [u'coca', u'cola', u'contest', u'accc', u'decis'] [u'cole', u'boss', u'grant', u'rise'] [u'compani', u'upbeat', u'davi', u'grass'] [u'compulsori', u'school', u'fee', u'continu'] [u'construct', u'show', u'modest', u'growth'] [u'corrupt', u'claim', u'refer', u'watchdog'] [u'council', u'award', u'indigen', u'job', u'effort'] [u'council', u'boost', u'field', u'day', u'fund', u'guarante'] [u'council', u'flight', u'decis', u'winner'] [u'council', u'reform', u'law', u'draw', u'critic'] [u'council', u'seek', u'wast', u'plant', u'chang'] [u'council', u'trial', u'televis', u'meet'] [u'court', u'rule', u'logi', u'packer', u'night'] [u'deportivo', u'ditch', u'unlucki', u'shirt'] [u'deschamp', u'hail', u'monaco', u'except', u'achiev'] [u'develop', u'problem', u'kid', u'studi'] [u'downer', u'defend', u'hick', u'habib', u'process'] [u'drought', u'hurt', u'grain', u'compani', u'profit'] [u'drought', u'shear', u'sheep', u'number'] [u'drug', u'smoke', u'worker', u'win', u'appeal', u'high', u'court'] [u'drug', u'user', u'share', u'needl'] [u'dept', u'consid', u'west', u'tamworth', u'school', u'option'] [u'england', u'lose', u'beer', u'battl', u'aussi'] [u'maintain', u'anti', u'log'] [u'expedit', u'soak', u'spong', u'inform'] [u'expert', u'studi', u'bite', u'mark', u'beach', u'whale'] [u'expert', u'discuss', u'youth', u'alcohol', u'woe'] [u'extra', u'fund', u'need', u'coal', u'tourism', u'plan'] [u'fail', u'club', u'properti', u'vest'] [u'famili', u'disappoint', u'coron', u'find'] [u'famili', u'australia', u'home'] [u'feder', u'like', u'lose', u'sight', u'home'] [u'fiji', u'polic', u'defend', u'muslim', u'cleric', u'expuls'] [u'fingerprint', u'year', u'solv', u'crime'] [u'meningococc', u'case'] [u'onetel', u'boss', u'appeal', u'fail'] [u'freeman', u'rule', u'run', u'return'] [u'french', u'plan', u'world', u'week'] [u'gather', u'consid', u'museum', u'plan'] [u'gillespi', u'confid', u'return', u'australian'] [u'govt', u'cast', u'illeg', u'fish'] [u'govt', u'expand', u'health', u'safeti'] [u'govt', u'push', u'deal', u'medicar'] [u'govt', u'stand', u'plan', u'abolish', u'student', u'loan'] [u'govt', u'talk', u'overshadow', u'medicar', u'inquiri'] [u'graincorp', u'record', u'loss'] [u'group', u'sink', u'teeth', u'fluorid', u'debat'] [u'hewitt', u'readi', u'spanish', u'challeng'] [u'high', u'hop', u'break', u'hill', u'explor'] [u'hodg', u'star', u'bushrang', u'tame', u'india'] [u'hooper', u'sign', u'lancashir'] [u'hous', u'plan', u'go'] [u'hundr', u'oppos', u'wast', u'dump', u'plan'] [u'hunt', u'abduct', u'toddler'] [u'indonesian', u'fishermen', u'catch', u'dead', u'dolphin'] [u'insurg', u'target', u'iraqi', u'align'] [u'internet', u'link', u'kid', u'sexual', u'aggress'] [u'italian', u'consul', u'general', u'tour', u'gippsland'] [u'jackson', u'snub', u'school'] [u'januari', u'decis', u'expect', u'footbal', u'club'] [u'juri', u'consid', u'verdict', u'wife', u'murder', u'trial'] [u'kahn', u'unpopular', u'german', u'sportsmen', u'survey'] [u'landlock', u'swiss', u'pick', u'spanish', u'america', u'venu'] [u'lawyer', u'differ', u'guantanamo', u'deal'] [u'leski', u'inquest', u'hear', u'claim'] [u'lion', u'post', u'profit'] [u'local', u'govt', u'group', u'urg', u'start', u'inland', u'rail', u'work'] [u'deni', u'murder', u'english', u'schoolgirl'] [u'manilla', u'seek', u'support', u'elector', u'chang'] [u'marin', u'park', u'group', u'talk', u'reef', u'rezon'] [u'martin', u'move', u'retain', u'feder', u'seat'] [u'meet', u'discuss', u'age', u'care', u'home', u'roster', u'concern'] [u'melbourn', u'win', u'budget', u'airlin', u'race'] [u'mental', u'health', u'servic', u'lack', u'report', u'find'] [u'mine', u'leas', u'transfer', u'get', u'green', u'light'] [u'mine', u'union', u'safeti', u'concern'] [u'user', u'inject', u'drug'] [u'mugab', u'invit', u'chogm', u'nigeria'] [u'murder', u'trial', u'juri', u'hear', u'bloodstain', u'evid'] [u'boss', u'collect', u'packag'] [u'nat', u'cast', u'doubt', u'fish', u'rule', u'fair'] [u'nat', u'toxic', u'wast', u'plan', u'lack'] [u'book', u'address', u'drought', u'polici'] [u'share', u'issu', u'gympi', u'gold'] [u'share', u'placement', u'gympi', u'gold'] [u'ireland', u'go', u'poll'] [u'formal', u'probe', u'wiluna', u'council', u'demis'] [u'cattleman', u'welcom', u'propos', u'hunt'] [u'boss', u'play', u'rugbi', u'threat'] [u'nrma', u'lose', u'uniform', u'staff'] [u'propos', u'drug', u'test', u'politician'] [u'lower', u'consent'] [u'nurs', u'vacanc', u'hard'] [u'oecd', u'tip', u'rate', u'rise'] [u'vaccin', u'access'] [u'olymp', u'shoot', u'champion', u'ban', u'dope'] [u'oneil', u'optimist', u'celtic', u'reach'] [u'paedophil', u'task', u'forc', u'begin', u'church', u'probe'] [u'phone', u'network', u'equip', u'failur'] [u'pilot', u'plead', u'guilti', u'reckless', u'conduct'] [u'pitcairn', u'island', u'hope', u'airstrip', u'lifelin'] [u'govt', u'lose', u'immun'] [u'tell', u'intern', u'agenc'] [u'welcom', u'australian', u'role'] [u'poet', u'come', u'think', u'your', u'hard'] [u'polic', u'communiti', u'help', u'lower', u'burglari', u'rate'] [u'polic', u'greater', u'power', u'battl', u'chrome'] [u'policeman', u'fear', u'clark', u'assault', u'court', u'tell'] [u'polic', u'oper', u'put', u'brake', u'truck', u'driver'] [u'polic', u'probe', u'rail', u'death'] [u'polic', u'evid', u'clark', u'appeal'] [u'polit', u'erupt', u'hobart', u'build', u'sale'] [u'pool', u'long', u'time', u'come'] [u'port', u'piri', u'hop', u'magnesium', u'smelter'] [u'premier', u'want', u'improv', u'schooli', u'parti'] [u'properti', u'gurus', u'compani', u'collaps'] [u'protest', u'state', u'forest', u'loggerhead'] [u'proud', u'wenger', u'salut', u'inspir', u'henri'] [u'public', u'region', u'health', u'fear'] [u'push', u'trial', u'enterpris', u'zone'] [u'crack', u'pierc', u'sniff'] [u'polic', u'stun', u'protest', u'woman'] [u'ract', u'drive', u'home', u'need', u'clear', u'road', u'mark'] [u'record', u'hobart'] [u'remark', u'spark', u'secur', u'scare'] [u'report', u'call', u'safer', u'rural', u'road'] [u'report', u'highlight', u'indigen', u'fish', u'woe'] [u'report', u'highlight', u'wimmera', u'malle', u'drought', u'impact'] [u'research', u'turn', u'camera', u'giant', u'crab'] [u'resid', u'duplex', u'ghetto', u'fear'] [u'resid', u'water', u'boil', u'alert'] [u'review', u'spark', u'develop', u'board', u'concern'] [u'reynold', u'win', u'group', u'liquid'] [u'deepen', u'manslaught', u'law'] [u'rudd', u'shrug', u'leadership', u'talk'] [u'rugbi', u'heavyweight', u'confirm', u'lightweight', u'drink'] [u'sar', u'test', u'japanes', u'hong', u'kong'] [u'school', u'budget', u'cover', u'asbesto', u'remov'] [u'school', u'deni', u'race', u'fight'] [u'schooli', u'behaviour', u'deterior'] [u'scientist', u'probe', u'whale', u'strand'] [u'sean', u'tale', u'iraq'] [u'self', u'belief', u'bradford', u'surviv', u'say'] [u'senat', u'oppos', u'plastic', u'levi'] [u'ship', u'owner', u'face', u'hefti', u'fine', u'strand', u'vessel'] [u'shire', u'excit', u'hilton', u'plan'] [u'shire', u'water', u'tough', u'restrict'] [u'silo', u'accid', u'prompt', u'bush', u'health', u'fund'] [u'korean', u'opposit', u'leader', u'start', u'hunger', u'strike'] [u'space', u'nation', u'radio', u'servic', u'illawarra'] [u'share', u'suspens', u'remain'] [u'spray', u'contracept', u'pill', u'trial'] [u'lanka', u'untest', u'fernando', u'england'] [u'stevedor', u'oper', u'wind', u'white'] [u'steven', u'glad', u'melbourn'] [u'storm', u'damag', u'wont', u'stop', u'crop', u'harvest'] [u'strong', u'warrnambool', u'migrat'] [u'studi', u'focus', u'coastal', u'water', u'qualiti'] [u'support', u'council', u'revenu', u'boost'] [u'surplus', u'millic', u'properti', u'sale'] [u'sydney', u'properti', u'market', u'plateaus'] [u'sydney', u'radio', u'enemi', u'team'] [u'talk', u'avert', u'transport', u'stoppag'] [u'defend', u'fund'] [u'consid', u'child', u'slap'] [u'task', u'forc', u'review', u'rottnest', u'manag'] [u'teenag', u'thank', u'support', u'fight', u'stay'] [u'taxpay', u'help', u'subsidis', u'gold', u'coast', u'schooli'] [u'teen', u'murder', u'charg', u'custodi'] [u'british', u'judg', u'condemn', u'guantanamo', u'detent'] [u'tougher', u'law', u'urg', u'properti', u'invest', u'sector'] [u'travel', u'expens', u'tabl', u'state', u'politician'] [u'trial', u'date', u'director'] [u'trial', u'boost', u'cairn', u'polic', u'power'] [u'minist', u'tri', u'speed', u'iraqi', u'power', u'transfer'] [u'union', u'enter', u'fray', u'senat', u'ticket'] [u'union', u'want', u'sydney', u'radio', u'deal', u'probe'] [u'nuclear', u'watchdog', u'caution', u'iran'] [u'consid', u'worldwid', u'troop', u'shift'] [u'economi'] [u'releas', u'muslim', u'guantanamo', u'chaplin'] [u'vice', u'chancellor', u'upbeat', u'educ', u'talk'] [u'govt', u'air', u'local', u'govt', u'fund', u'fear'] [u'polic', u'investig', u'doubl', u'shoot'] [u'victim', u'crime', u'associ', u'lose', u'fund'] [u'victoria', u'appoint', u'professor', u'review', u'canola'] [u'virgin', u'play', u'price', u'rival'] [u'vline', u'fare', u'rise', u'win', u'back'] [u'wagin', u'radio', u'station', u'lose', u'licenc'] [u'want', u'iraqi', u'leader', u'wife', u'captur'] [u'opposit', u'wari', u'pace', u'power', u'reform'] [u'plant', u'industri', u'strength', u'hemp'] [u'washington', u'trim', u'loan', u'guarante', u'israel'] [u'waugh', u'hail', u'time', u'great'] [u'waugh', u'hail', u'great'] [u'waugh', u'pull', u'stump'] [u'waugh', u'retir', u'tip', u'pont', u'successor'] [u'waugh', u'tip', u'pont'] [u'waugh', u'speak', u'play', u'futur'] [u'waugh', u'walk', u'pont', u'wait'] [u'weir', u'compani', u'reject', u'flood', u'fault', u'report'] [u'west', u'brom', u'hugh', u'charg', u'fatal', u'crash'] [u'world', u'oldest', u'food', u'store', u'discov', u'germani'] [u'yeppoon', u'woman', u'face', u'murder', u'trial'] [u'abbott', u'begin', u'talk', u'medicar', u'safeti'] [u'aborigin', u'activist', u'clarri', u'isaac', u'die'] [u'adopt', u'industri', u'death', u'law'] [u'bring', u'industri', u'manslaught', u'regim'] [u'parliament', u'move', u'year', u'term'] [u'adopt', u'amend', u'moot', u'law'] [u'age', u'care', u'home', u'worker', u'consid', u'strike'] [u'anglican', u'primat', u'criticis', u'downer'] [u'argentina', u'receiv', u'terror', u'attack', u'warn'] [u'aristocrat', u'name'] [u'athen', u'torch', u'relay', u'visit', u'record', u'nation'] [u'atsic', u'form', u'domest', u'violenc', u'action', u'plan'] [u'auckland', u'mackay', u'flight'] [u'aust', u'turkey', u'consul', u'close'] [u'bank', u'push', u'ord', u'lower'] [u'crop', u'risk', u'job', u'say', u'health'] [u'beach', u'group', u'move', u'closer', u'artifici', u'reef'] [u'beatti', u'demand', u'opposit', u'apolog', u'wake'] [u'beatti', u'unfaz', u'qanta', u'decis'] [u'beckham', u'notch', u'real', u'european', u'goal'] [u'bendigo', u'cancer', u'treatment', u'time', u'drop'] [u'polic', u'campaign', u'target', u'drink', u'driver'] [u'bloodi'] [u'britain', u'cut', u'asylum', u'applic', u'half'] [u'britain', u'newest', u'royal', u'name'] [u'british', u'firm', u'plan', u'human', u'stem', u'cell', u'trial', u'report'] [u'british', u'schoolgirl', u'murder', u'case', u'hear'] [u'bunburi', u'public', u'servant', u'picket'] [u'busi', u'group', u'happi', u'plant', u'oper', u'reopen'] [u'fund', u'boost', u'sustain', u'water'] [u'region', u'fish', u'agreement'] [u'champion', u'milan', u'lead', u'parad'] [u'china', u'woo', u'kiribati', u'ditch', u'taiwan', u'link'] [u'claim', u'christma', u'wind', u'wont', u'hinder', u'health'] [u'clark', u'appeal', u'hear', u'offic', u'give', u'warn'] [u'clone', u'legisl', u'introduc'] [u'compani', u'spend', u'quarter'] [u'concord', u'make', u'flight', u'birthplac'] [u'coral', u'harm', u'fertilis', u'scientist'] [u'councillor', u'question', u'high', u'rise', u'develop', u'plan'] [u'council', u'forest', u'privatis', u'assur'] [u'crean', u'give', u'ultimatum', u'jump', u'face', u'vote'] [u'crean', u'mull', u'futur'] [u'dalbi', u'council', u'back', u'ethanol', u'plan'] [u'diamond', u'stand', u'year'] [u'diver', u'search', u'victim', u'cyclon', u'traci'] [u'doctor', u'seek', u'women', u'test', u'orgasmatron'] [u'dont', u'steve', u'plead', u'indian', u'chariti', u'kid'] [u'doubt', u'emerg', u'singapor', u'death', u'penalti', u'promis'] [u'driver', u'charg', u'death', u'nation', u'leader'] [u'drought', u'shear', u'sheep', u'number'] [u'economist', u'call', u'revis', u'home', u'buyer'] [u'elder', u'contribut', u'economi', u'underestim'] [u'employ', u'urg', u'encourag', u'older', u'worker'] [u'english', u'seamer', u'kirtley', u'eye', u'test', u'place'] [u'exit', u'poll', u'put', u'hardlin', u'ahead', u'ireland'] [u'failur', u'secur', u'sport', u'complex', u'site', u'frustrat'] [u'fear', u'hold', u'miss', u'teenag'] [u'bait', u'safe', u'minist', u'say'] [u'firefight', u'craft', u'boost', u'fight', u'bushfir'] [u'flood', u'prompt', u'call', u'school', u'upgrad'] [u'request', u'delay', u'unreason', u'opposit'] [u'anglican', u'priest', u'jail', u'charg'] [u'iraqi', u'general', u'die', u'interrog'] [u'formula', u'return', u'unlik', u'villeneuv'] [u'futur', u'unclear', u'sheep', u'shipment'] [u'gillespi', u'test'] [u'gillespi', u'macgil', u'test'] [u'author', u'defend', u'appoint'] [u'protest', u'convict', u'trespass'] [u'away', u'watch'] [u'govt', u'announc', u'hornet', u'upgrad'] [u'govt', u'address', u'sydney', u'taxi', u'woe'] [u'govt', u'rais', u'properti', u'disput', u'council'] [u'great', u'britain', u'skipper', u'month'] [u'greenback', u'declin', u'spur', u'aussi', u'dollar'] [u'green', u'accus', u'govt', u'port', u'plan'] [u'group', u'hope', u'dispel', u'ignor', u'aid'] [u'hackett', u'like', u'miss', u'world', u'meet'] [u'hackett', u'okay', u'collaps'] [u'head', u'selector', u'confid', u'waugh', u'play', u'india'] [u'henri', u'ronaldo', u'zidan', u'fifa', u'player'] [u'hewitt', u'face', u'ferrero', u'davi', u'open'] [u'hillari', u'hint', u'white', u'hous', u'campaign'] [u'hodg', u'doubl', u'secur', u'draw'] [u'hong', u'kong', u'croc', u'elud', u'aussi', u'hunter'] [u'howard', u'warn', u'readmit', u'zimbabw'] [u'indonesia', u'arrest', u'papuan', u'separatist'] [u'isra', u'armi', u'say', u'kill', u'palestinian', u'unarm'] [u'israel', u'seiz', u'sing', u'saddam', u'osama', u'doll'] [u'israel', u'withdraw', u'resolut', u'year'] [u'japan', u'threaten', u'trade', u'sanction'] [u'judg', u'order', u'retrial', u'alleg', u'murder', u'threat', u'case'] [u'kingscliff', u'asset', u'face', u'rise', u'tide'] [u'klim', u'readi', u'intern', u'comeback'] [u'labor', u'confid', u'econom', u'figur'] [u'labor', u'dismiss', u'leadership', u'specul'] [u'labor', u'expect', u'cross', u'picket', u'line'] [u'keep', u'hop', u'aliv', u'adelaid'] [u'lawyer', u'argu', u'british', u'murder', u'suspect', u'extradit'] [u'laywer', u'say', u'hick', u'deal', u'stink'] [u'lethal', u'leisel', u'claim', u'queensland', u'accolad'] [u'london', u'victori', u'parad', u'england'] [u'manchest', u'citi', u'want', u'young', u'schmeichel', u'uefa'] [u'die', u'motorbik', u'accid', u'near', u'bruthen'] [u'give', u'suspend', u'jail', u'term', u'kill', u'threat'] [u'mayor', u'say', u'crime', u'plan', u'taint', u'mayfield'] [u'mcmahon', u'share', u'captainci', u'role', u'phoenix'] [u'media', u'muster', u'princ', u'harri'] [u'media', u'threaten', u'aceh', u'report'] [u'meet', u'discuss', u'countrylink', u'servic'] [u'meninga', u'face', u'assault', u'charg'] [u'middl', u'order', u'save', u'bull', u'adelaid'] [u'project', u'increas', u'indigen', u'workforc'] [u'minist', u'deni', u'claim', u'polic', u'wont', u'particip'] [u'minist', u'deni', u'claim', u'communiti', u'exclud'] [u'minist', u'rule', u'state', u'fund', u'rail', u'tunnel'] [u'minist', u'welcom', u'farmer', u'offer', u'captur', u'river'] [u'miss', u'sydney', u'mother', u'locat'] [u'mix', u'view', u'remain', u'plan', u'merg', u'north'] [u'kill', u'congo', u'ferri', u'disast'] [u'movi', u'star', u'presidenti', u'spook', u'philippin'] [u'lobbi', u'offic', u'region', u'zone'] [u'refut', u'local', u'govt', u'fund', u'fear'] [u'murder', u'hear', u'famili', u'read', u'victim', u'impact'] [u'mysteri', u'nois', u'space', u'station'] [u'nalbandian', u'confirm', u'australian', u'hardcourt'] [u'nato', u'launch', u'defenc', u'battalion'] [u'newcastl', u'aircraft', u'compani', u'radar'] [u'develop', u'corp', u'chief', u'seek', u'self'] [u'tamper', u'proof', u'passport', u'launch'] [u'nielsen', u'star', u'king', u'extend', u'streak'] [u'nigerian', u'base', u'email', u'swindl', u'suck', u'greedi'] [u'firearm', u'year', u'olymp', u'medallist', u'diamond'] [u'waugh', u'guarante', u'selector', u'confid'] [u'nrma', u'threaten', u'spill'] [u'north', u'coast', u'score', u'tourism', u'fund', u'boost'] [u'gorg', u'recreat', u'aquarium'] [u'toughen', u'murder', u'sentenc'] [u'nurs', u'home', u'staff', u'consid', u'strike', u'action'] [u'look', u'weaken', u'dollar'] [u'opposit', u'annual', u'literaci', u'test'] [u'outlaw', u'exhibit', u'open', u'canberra'] [u'parti', u'unit', u'fight', u'countrylink', u'servic'] [u'parti', u'drug', u'spread', u'australia', u'studi'] [u'free', u'trade', u'tabl', u'vail'] [u'pilot', u'warn', u'regul', u'reduc', u'safeti'] [u'pngs', u'deputi', u'prime', u'minist', u'sack'] [u'polic', u'expect', u'clark', u'help', u'court', u'hear'] [u'polic', u'investig', u'sight', u'miss', u'trucker'] [u'politician', u'tribut', u'broadcast', u'satchel'] [u'prison', u'escap', u'open', u'secur', u'centr'] [u'promin', u'lebanes', u'spiritu', u'leader', u'die'] [u'public', u'sector', u'strike', u'action', u'intensifi'] [u'public', u'servant', u'stage', u'kalgoorli', u'picket', u'line'] [u'public', u'servic', u'strike', u'crippl', u'region', u'servic'] [u'polic', u'probe', u'schooli', u'complaint'] [u'radio', u'deal', u'turn', u'definit', u'control'] [u'redback', u'roll'] [u'reef', u'rezon', u'plan', u'move', u'closer', u'realiti'] [u'region', u'doctor', u'shortag', u'worsen', u'report'] [u'relief', u'sexual', u'abus', u'victim', u'paedophil'] [u'remot', u'town', u'get', u'health', u'centr'] [u'report', u'highlight', u'need', u'help', u'small', u'busi'] [u'resid', u'effluent', u'plan', u'disapprov'] [u'retail', u'encourag', u'remov', u'ban', u'toy'] [u'rodeo', u'rider', u'head', u'toowoomba'] [u'comedi', u'award'] [u'ruddock', u'move', u'allow', u'longer', u'terrorist'] [u'ruddock', u'turn', u'heat', u'peopl', u'smuggler'] [u'saakashvili', u'get', u'clear', u'georgian', u'poll'] [u'commit', u'piri', u'smelter', u'project'] [u'govt', u'bite', u'public', u'dental', u'fund'] [u'plan', u'smoke', u'free', u'public', u'place'] [u'soldier', u'receiv', u'braveri', u'award'] [u'schooli', u'complaint', u'coast', u'polic', u'offic'] [u'scud', u'wear', u'favourit', u'pride'] [u'senior', u'figur', u'despair', u'leadership'] [u'servic', u'rememb', u'health', u'servic', u'staff'] [u'sharon', u'say', u'israel', u'cede', u'land'] [u'sheep', u'number', u'year'] [u'releas', u'hospit'] [u'korean', u'opposit', u'leader', u'accus', u'blackmail'] [u'south', u'coast', u'local', u'govern', u'boundari', u'chang'] [u'southcorp', u'fin', u'disclosur', u'irregular'] [u'south', u'east', u'member', u'join', u'catchment', u'group'] [u'pacif', u'polic', u'commit', u'drug', u'crackdown'] [u'spain', u'valencia', u'land', u'america'] [u'staff', u'suspend', u'strike', u'action', u'negoti'] [u'sticker', u'save', u'pear', u'squeez', u'test'] [u'strategi', u'aim', u'address', u'increas', u'region', u'youth'] [u'studi', u'show', u'pattern', u'ovarian', u'cancer', u'symptom'] [u'stun', u'arrest', u'protest'] [u'sweden', u'return', u'aborigin', u'remain'] [u'sydney', u'deni', u'peopl', u'smuggl', u'claim'] [u'taiwan', u'pass', u'referendum'] [u'tariff', u'cut', u'threaten', u'textil', u'industri', u'union'] [u'electr', u'bill', u'trump', u'mainland'] [u'ferri', u'oper'] [u'govt', u'air', u'meander', u'delay', u'concern'] [u'govt', u'consid', u'stamp', u'duti', u'relief'] [u'tasmanian', u'dupe', u'log', u'green'] [u'teenag', u'brazilian', u'striker', u'chelsea'] [u'telstra', u'close', u'tamworth', u'info', u'centr'] [u'pressur', u'waugh'] [u'palestinian', u'shoot', u'dead', u'gaza', u'strip'] [u'time', u'determin', u'airspac', u'chang', u'benefit'] [u'tough', u'time', u'home', u'buyer'] [u'tourist', u'follow', u'dinosaur', u'footstep'] [u'tram', u'driver', u'injur', u'rock', u'throw'] [u'truck', u'industri', u'spotlight'] [u'tuna', u'farm', u'compani', u'hope', u'resolv', u'licenc', u'talk'] [u'tweed', u'resid', u'fight', u'poker', u'machin'] [u'govt', u'asylum', u'seeker', u'crackdown'] [u'union', u'feel', u'prosecut', u'record', u'undermin', u'safeti'] [u'warn', u'aid', u'catastroph'] [u'arrest', u'saddam', u'deputi', u'famili'] [u'launch', u'mass', u'weapon', u'sweep', u'iraq'] [u'reinforc', u'iraq', u'forc'] [u'vettori', u'stay', u'home', u'kiwi', u'head', u'hammer'] [u'auditor', u'find', u'hospit', u'troubl'] [u'council', u'welcom', u'damn', u'rural', u'road', u'report'] [u'prison', u'complaint', u'jump'] [u'countri', u'taxi', u'industri', u'review'] [u'farmer', u'welcom', u'industri', u'hemp', u'crop', u'option'] [u'govt', u'fear', u'feder', u'polici', u'fuel', u'dairi'] [u'walkley', u'nod', u'take', u'gold'] [u'wallet', u'confirm', u'belong', u'miss'] [u'polic', u'minist', u'talk', u'crime', u'figur'] [u'warrior', u'hooker', u'latu', u'treat'] [u'waugh', u'name', u'australian', u'year'] [u'welsh', u'furi', u'aussi', u'critic'] [u'wessel', u'clear', u'alleg', u'racial', u'slur'] [u'western', u'tourism', u'campaign', u'target', u'true', u'travel'] [u'wheelhous', u'rule', u'young', u'socceroo', u'open'] [u'william', u'confid', u'australia', u'spot'] [u'world', u'champ', u'fern', u'visit', u'adelaid'] [u'world', u'biggest', u'outdoor', u'music', u'festiv', u'get', u'green'] [u'zimbabw', u'streak'] [u'secur', u'boost', u'embassi'] [u'ambros', u'set', u'pace'] [u'amend', u'sexual', u'assault', u'law', u'hasti', u'lawyer'] [u'angler', u'group', u'back', u'limit'] [u'antibiot', u'resist', u'bacteria', u'spark', u'hospit', u'fear'] [u'asic', u'ask', u'probe', u'nrma', u'vote'] [u'aspirin', u'effect', u'heart', u'diseas', u'prevent'] [u'atsic', u'review', u'call', u'smaller', u'bodi'] [u'auction', u'reflect', u'continu', u'properti', u'market', u'strength'] [u'aussi', u'citi'] [u'australia', u'encourag', u'embrac', u'globalis'] [u'australian', u'drug', u'trial', u'singapor', u'adjourn'] [u'threaten', u'action', u'loss', u'yamba', u'condit'] [u'bateman', u'communiti', u'tell', u'larg'] [u'beazley', u'throw', u'ring'] [u'beazley', u'leadership'] [u'beckham', u'pick', u'gong', u'queen'] [u'beckham', u'receiv', u'royal', u'honour'] [u'bichel', u'rock', u'redback'] [u'seek', u'citi', u'council', u'financ', u'talk'] [u'pineappl', u'save', u'chop'] [u'billion', u'face', u'water', u'shortag', u'glacier', u'melt'] [u'blair', u'suffer', u'second', u'health', u'scare'] [u'boca', u'argentin', u'titl', u'libertador', u'crown'] [u'brack', u'approv', u'rat', u'slump'] [u'brack', u'flag', u'trade', u'tourism', u'agenda', u'meet'] [u'brack', u'sign', u'victoria', u'scienc', u'pact'] [u'britain', u'arrest', u'terror', u'suspect'] [u'bush', u'home', u'secret', u'iraq', u'visit'] [u'bush', u'make', u'surpris', u'visit', u'iraq'] [u'butcher', u'run', u'lanka'] [u'caesarean', u'link', u'rais', u'risk', u'second'] [u'cairn', u'busi', u'learn', u'terror', u'manag'] [u'canefarm', u'govt', u'disapprov', u'poll'] [u'crash', u'melbourn', u'bedroom'] [u'carer', u'number', u'rise', u'studi', u'find'] [u'carr', u'tightlip', u'leadership'] [u'cattl', u'industri', u'fear', u'rise', u'dollar'] [u'caus', u'unknown', u'fatal', u'ultralight', u'crash'] [u'celebr', u'mark', u'open', u'town', u'hall'] [u'central', u'tighten', u'tap'] [u'centr', u'oper', u'part', u'respons', u'detaine'] [u'chelsea', u'readi', u'resit', u'titl', u'exam'] [u'claim', u'tender', u'process', u'hurt', u'region'] [u'coal', u'staff', u'work', u'longer', u'hour'] [u'cobar', u'worri', u'lose', u'staff', u'bourk'] [u'coff', u'brief', u'minist', u'revitalis', u'plan'] [u'congo', u'ferri', u'capsiz', u'kill'] [u'cotton', u'grower', u'face', u'challeng'] [u'coulthard', u'set', u'record'] [u'countri', u'dead', u'toll', u'leftov'] [u'court', u'set', u'date', u'falconio', u'committ', u'hear'] [u'crean', u'destroy', u'disloyalti', u'beatti'] [u'credit', u'bing', u'continu'] [u'crew', u'fix', u'port', u'piri', u'power', u'line'] [u'croc', u'seek', u'vital', u'razorback'] [u'crow', u'nest', u'council', u'side', u'resid'] [u'csiro', u'studi', u'exot', u'pest', u'threat'] [u'danish', u'pram', u'snatcher', u'bag', u'babi', u'mistak'] [u'democrat', u'push', u'fast', u'track', u'smoke', u'ban'] [u'drink', u'drive', u'crackdown', u'begin', u'earli', u'christma'] [u'dunde', u'discov', u'price', u'cash', u'disast'] [u'embattl', u'crean', u'announc', u'futur'] [u'explos', u'discov', u'home', u'qaeda', u'suspect'] [u'south', u'enjoy', u'coastal', u'properti', u'boom'] [u'feder', u'polic', u'continu', u'albani', u'probe'] [u'fin', u'impos', u'water', u'restrict', u'breach'] [u'firefight', u'control', u'fire', u'north', u'adelaid'] [u'firefight', u'want', u'money'] [u'fight', u'aircraft', u'pass', u'test'] [u'forest', u'manag', u'chang', u'timber', u'industri'] [u'detaine', u'famili', u'reunit', u'children'] [u'iraqi', u'general', u'die', u'interrog'] [u'guy', u'want', u'miss', u'outback', u'quest'] [u'germani', u'arrest', u'alleg', u'qaeda', u'leader'] [u'gibraltar', u'go', u'poll', u'year', u'spain'] [u'girl', u'interview', u'schooli', u'complaint'] [u'technolog', u'help', u'canola', u'crop'] [u'governor', u'address', u'central', u'student'] [u'govt', u'fund', u'doubt', u'threaten', u'rural', u'counsel'] [u'govt', u'fund', u'help', u'fight', u'tennant', u'creek', u'eros'] [u'govt', u'unveil', u'fund', u'boost'] [u'great', u'ape', u'go', u'west', u'warn'] [u'hackett', u'world', u'meet'] [u'hackett', u'withdraw', u'pool', u'collaps'] [u'hail', u'farmer', u'elig', u'loan'] [u'health', u'depart', u'warn', u'ross', u'river'] [u'hec', u'architect', u'hail', u'govt', u'plan', u'rais', u'debt'] [u'hewitt', u'forc', u'open', u'fifth'] [u'hous', u'afford', u'continu', u'fall'] [u'howard', u'wish', u'crean', u'best'] [u'india', u'pakistan', u'upbeat', u'kashmir', u'ceasefir', u'remain'] [u'inter', u'confid', u'trip', u'ladi'] [u'urg', u'chamber', u'come', u'clean'] [u'urg', u'chamber', u'grass'] [u'israel', u'legalis', u'west', u'bank', u'settlement'] [u'istanbul', u'attack', u'mastermind', u'identifi'] [u'jackson', u'get', u'chanc', u'british', u'chart'] [u'jone', u'break', u'breast', u'stroke', u'record'] [u'kewel', u'keep', u'pool', u'track', u'citi', u'heart', u'crash'] [u'kimberley', u'nativ', u'titl', u'claim', u'agreement', u'reach'] [u'labor', u'delay', u'decis', u'cook'] [u'labor', u'go', u'past', u'premier', u'say'] [u'labor', u'ponder', u'leadership', u'option'] [u'launceston', u'welcom', u'loom', u'pont', u'captainci'] [u'leeton', u'council', u'continu', u'fight', u'save', u'yanco'] [u'leski', u'inquest', u'hear', u'prison', u'favour'] [u'liberian', u'faction', u'storm', u'disarma', u'meet'] [u'lifesav', u'sight', u'mackay'] [u'local', u'govt', u'group', u'wont', u'annual', u'elect'] [u'local', u'offic', u'join', u'statewid', u'tribut'] [u'long', u'lose', u'bird', u'aliv', u'remot', u'fiji'] [u'macadamia', u'processor', u'shell', u'support', u'aussi'] [u'mackay', u'sugar', u'seek', u'region', u'approach', u'reform'] [u'malaysia', u'airlin', u'report', u'break', u'cabl', u'incid'] [u'malaysia', u'mahathir', u'appoint', u'petrona', u'advisor'] [u'malle', u'farmer', u'criticis', u'strict', u'truck', u'inspect'] [u'die', u'swan', u'hill', u'accid'] [u'come', u'forward', u'case'] [u'jail', u'year', u'kill', u'sister'] [u'maritim', u'colleg', u'boost', u'thailand', u'tie'] [u'maritim', u'colleg', u'look', u'asia', u'help', u'extend'] [u'martin', u'set', u'nation', u'park', u'deadlin'] [u'mildura', u'council', u'vote', u'control', u'econom', u'bodi'] [u'mildura', u'netbal', u'applaud', u'council', u'court', u'decis'] [u'minist', u'deni', u'claim', u'nativ', u'titl', u'grant'] [u'peopl', u'charg', u'inverel', u'brawl'] [u'assault', u'reflect', u'rise', u'crime', u'report'] [u'moya', u'level', u'davi', u'final'] [u'attack', u'grafton', u'appoint'] [u'nation', u'tour', u'coloni', u'begin', u'hobart'] [u'nat', u'tax', u'gambl', u'club', u'futur'] [u'naval', u'command', u'receiv', u'militari', u'honour'] [u'continu', u'regul', u'goldfield'] [u'ireland', u'elect', u'result', u'fail', u'impress', u'british'] [u'bail', u'attempt', u'murder', u'charg'] [u'norwegian', u'hacker', u'rebut', u'music', u'piraci', u'critic'] [u'govt', u'chang', u'track', u'rail', u'fund', u'decis'] [u'power', u'compani', u'high', u'court'] [u'osasuna', u'offer', u'home', u'comfort', u'real', u'madrid'] [u'owner', u'baffl', u'caus', u'wildlif', u'park'] [u'pair', u'face', u'rape', u'trial'] [u'player', u'prepar', u'bowl', u'record', u'attempt'] [u'politician', u'block', u'stop', u'upfront', u'allow'] [u'polic', u'arrest', u'sydney', u'raid'] [u'polic', u'arrest', u'raid', u'home'] [u'polic', u'captur', u'escap', u'prison'] [u'polic', u'launch', u'probe', u'wildlif'] [u'polic', u'offer', u'crime', u'rate', u'assur'] [u'polic', u'question', u'clark', u'appeal'] [u'polic', u'raid', u'probe', u'million', u'dollar', u'fraud', u'claim'] [u'polic', u'recov', u'steal', u'coast', u'good'] [u'polic', u'seek', u'kunda', u'park', u'hold'] [u'polic', u'tell', u'clark', u'appeal', u'fear'] [u'polic', u'receiv', u'tasmanian', u'paedophil', u'ring', u'claim'] [u'pont', u'readi', u'role'] [u'pont', u'tribut', u'inspir', u'waugh'] [u'power', u'provid', u'generat', u'profit'] [u'pressur', u'mount', u'crean'] [u'project', u'power', u'indigen', u'communiti'] [u'premier', u'back', u'beazley'] [u'quick', u'announc', u'support', u'latham'] [u'ravensthorp', u'seek', u'offic', u'possibl', u'popul'] [u'cross', u'launch', u'fund', u'save', u'staff', u'aid'] [u'report', u'highlight', u'fall', u'farm', u'incom'] [u'report', u'highlight', u'unhealthi', u'state', u'region'] [u'research', u'question', u'fishway', u'secret', u'document'] [u'resid', u'group', u'welcom', u'gippsland', u'water', u'report'] [u'resid', u'oppos', u'super', u'council', u'plan'] [u'reveal', u'pope', u'back', u'anfield', u'red'] [u'rise', u'dollar', u'keep', u'cattl', u'price'] [u'rise', u'jellyfish', u'sting', u'prompt', u'action', u'plan'] [u'rspca', u'question', u'sheep', u'treatment'] [u'urg', u'action', u'rock', u'throw'] [u'russian', u'energi', u'merger', u'rock'] [u'council', u'welcom', u'tougher', u'law'] [u'farmer', u'stagger', u'harvest', u'time'] [u'safe', u'tan', u'drug', u'trial', u'releas', u'initi', u'result'] [u'santa', u'knee', u'limit', u'town'] [u'schooli', u'polic', u'misconduct', u'claim', u'anger', u'beatti'] [u'schwarten', u'concern', u'specialist', u'wait'] [u'shop', u'owner', u'fight'] [u'shepparton', u'step', u'polic', u'event', u'influx'] [u'shiit', u'leader', u'push', u'urgent', u'iraq', u'elect'] [u'shoalhaven', u'parent', u'seek', u'support', u'servic', u'boost'] [u'sluggish', u'market', u'close', u'higher'] [u'space', u'station', u'nois', u'crash', u'offici'] [u'spam', u'chang', u'fail'] [u'spanish', u'angri', u'anthem'] [u'spontan', u'combust', u'blame', u'factori'] [u'star', u'princess', u'arriv', u'melbourn'] [u'strong', u'dollar', u'affect', u'work', u'hour', u'union'] [u'student', u'forget', u'green'] [u'studi', u'show', u'benefit', u'increas', u'countri', u'speed'] [u'super', u'council', u'plan', u'deal'] [u'sven', u'disappoint', u'contract', u'announc'] [u'test', u'select', u'put', u'katich', u'spot'] [u'tfga', u'await', u'impact', u'rural', u'merger'] [u'thai', u'stick', u'german', u'husband'] [u'thousand', u'hous', u'damag', u'china', u'quak'] [u'tough', u'alcohol', u'restrict', u'mornington'] [u'tram', u'driver', u'want', u'camera', u'instal', u'attack'] [u'truck', u'crash', u'leav', u'dead'] [u'face', u'court', u'sydney', u'shoot'] [u'rais', u'capit', u'london', u'list'] [u'unesco', u'see', u'summit', u'foot', u'drag', u'press', u'freedom'] [u'union', u'prais', u'act', u'industri', u'manslaught', u'law'] [u'union', u'scar', u'initi', u'cost', u'region', u'health'] [u'univers', u'head', u'quit', u'moscow', u'dorm'] [u'univers', u'test', u'technolog', u'aquacultur'] [u'probe', u'possibl', u'iran', u'pakistan', u'nuclear', u'link'] [u'holiday', u'cool', u'world', u'financi', u'market'] [u'soldier', u'alleg', u'kill', u'girl', u'iraq'] [u'vice', u'chancellor', u'educ', u'packag'] [u'govt', u'deni', u'fate', u'contamin', u'sheep'] [u'virgin', u'blue', u'gold', u'coast', u'perth', u'flight'] [u'virgin', u'give', u'qanta', u'share', u'batter'] [u'vizard', u'score', u'world', u'swim', u'event'] [u'export', u'opportun', u'fuel', u'trip'] [u'wangaratta', u'welcom', u'industri', u'assist'] [u'opposit', u'step', u'region', u'hospit', u'campaign'] [u'watchdog', u'want', u'jail', u'option', u'cartel', u'boss'] [u'water', u'suppli', u'dwindl', u'ilfracomb'] [u'waugh', u'run', u'australian', u'year', u'award'] [u'readi', u'hewitt'] [u'wollongong', u'mayor', u'back', u'general', u'manag', u'vision'] [u'xenophon', u'propos', u'industri', u'manslaught', u'law'] [u'kill', u'pakistan', u'crash'] [u'academi', u'steadi', u'lunch'] [u'activist', u'call', u'govt', u'work', u'harder'] [u'adenau', u'win', u'best', u'german', u'contest', u'marx'] [u'state', u'confer', u'kick'] [u'ambros', u'close', u'titl'] [u'ambros', u'titl', u'line'] [u'anxieti', u'plagu', u'meat', u'loaf', u'say'] [u'aussi', u'athlet', u'hand', u'drug', u'ban'] [u'aussi', u'grab', u'davi', u'lead'] [u'author', u'resum', u'search', u'miss'] [u'better', u'safeti', u'barrier', u'save', u'kato'] [u'blast', u'shatter', u'georgia', u'bloodless', u'revolut'] [u'boost', u'england', u'ahead', u'lanka', u'test'] [u'brazil', u'crack', u'illeg', u'log'] [u'british', u'embassi', u'resum', u'limit', u'visa', u'servic'] [u'brolga', u'award', u'showcas', u'tourism'] [u'bull', u'collaps', u'adelaid'] [u'bull', u'verg', u'outright', u'victori'] [u'bush', u'iraq', u'visit', u'elect', u'stunt', u'analysi'] [u'cairn', u'demolish', u'pakistani', u'bowl', u'attack'] [u'toughen', u'workplac', u'safeti', u'law'] [u'call', u'applic', u'nation', u'museum'] [u'cannon', u'claim', u'excel', u'award'] [u'chamber', u'cool', u'dope', u'plea', u'bargain'] [u'china', u'report', u'surg', u'aid', u'case'] [u'china', u'sever', u'diplomat', u'tie', u'kiribati'] [u'unhappi', u'bush', u'surpris', u'visit', u'iraq'] [u'court', u'lift', u'kale', u'bribe', u'charg'] [u'court', u'order', u'freez', u'nation', u'fund'] [u'condit', u'fuel', u'high', u'danger', u'warn'] [u'fate', u'kidnap', u'australian', u'unclear'] [u'fear', u'screensound', u'review', u'leav'] [u'fight', u'aid', u'continu', u'mandela', u'say'] [u'finnish', u'judg', u'brush', u'drink', u'charg'] [u'fire', u'burn', u'fleurieu', u'peninsula'] [u'fitzi', u'bank', u'doubl'] [u'intellig', u'analyst', u'receiv', u'award'] [u'gayl', u'hind', u'boost', u'windi'] [u'gazza', u'abandon', u'wolv', u'comeback'] [u'german', u'lawyer', u'surpris', u'court', u'send', u'jail'] [u'german', u'media', u'slam', u'politician', u'censorship'] [u'glori', u'slide', u'newcastl'] [u'govt', u'agenc', u'tell', u'meet', u'energi', u'target'] [u'grenada', u'prime', u'minist', u'win', u'term', u'elect'] [u'hawk', u'breaker', u'auckland'] [u'hockeyroo', u'thrash', u'england'] [u'holiday', u'spirit', u'help', u'wall', u'street', u'shake'] [u'hundr', u'protest', u'violenc', u'baghdad'] [u'ibanez', u'quit', u'intern', u'rugbi'] [u'latham'] [u'india', u'troubl', u'academi'] [u'india', u'target', u'reid', u'bowl', u'coach'] [u'industri', u'chief', u'meet', u'club', u'smoke'] [u'intern', u'account', u'firm', u'quit', u'burma', u'lobbi'] [u'isra', u'soldier', u'kill', u'palestinian', u'near', u'gaza'] [u'jail', u'offic', u'gunplay', u'want'] [u'japan', u'satellit', u'launch', u'end', u'failur'] [u'jone', u'score', u'record', u'doubl'] [u'katich', u'guid', u'blue', u'victori'] [u'kenya', u'drop', u'murder', u'charg', u'blast', u'suspect'] [u'king', u'tame', u'tiger', u'razorback'] [u'kingz', u'coach', u'quit', u'melbourn', u'trip'] [u'leisel', u'set', u'world', u'mark', u'melbourn'] [u'lone', u'rescu', u'whale', u'deep', u'water'] [u'catch', u'cigarett', u'pack', u'trouser'] [u'mexican', u'dirti', u'wit', u'shoot', u'dead'] [u'michael', u'jackson', u'video', u'miss', u'premier', u'date'] [u'minist', u'focus', u'radiat', u'therapi', u'specialist'] [u'koutsantoni', u'state', u'presid'] [u'negoti', u'breakthrough', u'avert', u'nation', u'coal'] [u'nigerian', u'pirat', u'kidnap', u'seven', u'foreign', u'worker'] [u'korea', u'seek', u'compo', u'cut', u'nuke', u'project'] [u'jolli', u'season', u'broadway', u'produc'] [u'govt', u'suggest', u'super', u'home'] [u'owen', u'week'] [u'palestinian', u'rule', u'sharon', u'talk'] [u'part', u'nation', u'park', u'close', u'feral', u'anim'] [u'peac', u'process', u'cloud', u'northern', u'ireland'] [u'perri', u'lead', u'sergio', u'sizzl'] [u'perth', u'millionair', u'file', u'complaint', u'polic'] [u'petit', u'aim', u'oust', u'venezuelan', u'presid'] [u'photograph', u'clear', u'diana', u'crash', u'snap'] [u'tighten', u'law', u'lose', u'wartim', u'gold', u'claim'] [u'polic', u'arrest', u'schooli', u'parti'] [u'polic', u'arrest', u'italian', u'anti', u'terror', u'swoop'] [u'polic', u'charg', u'teenag', u'assault'] [u'polic', u'claim', u'pacif', u'drug', u'ring', u'bust'] [u'pont', u'fail', u'tiger'] [u'power'] [u'rescuer', u'hope', u'refloat', u'strand', u'whale'] [u'research', u'isol', u'heart', u'attack', u'gene'] [u'rogu', u'wave', u'sweep', u'rock'] [u'compani', u'score', u'million', u'defenc', u'contract'] [u'sharon', u'plan', u'west', u'bank', u'annex', u'report'] [u'skaif', u'pole'] [u'slick', u'report', u'conceal', u'crime', u'problem'] [u'sokyola', u'take', u'miracl', u'mile'] [u'student', u'lobbi', u'defeat', u'govt', u'tertiari', u'reform', u'plan'] [u'switzerland', u'hand', u'seiz', u'antiqu', u'egypt'] [u'giant', u'kelp', u'near', u'protect', u'list'] [u'teen', u'die', u'balconi', u'fall', u'gold', u'coast', u'high'] [u'thailand', u'reject', u'futur', u'foreign'] [u'polic', u'schooli', u'conduct', u'probe'] [u'tiger', u'wood', u'swedish', u'model', u'elin'] [u'tough', u'ireland', u'talk', u'ahead', u'hardlin', u'gain'] [u'tree', u'reduc', u'greenhous', u'studi'] [u'charg', u'christma', u'card', u'drug', u'smuggl'] [u'adopt', u'protocol', u'unexplod', u'weapon'] [u'critic', u'israel', u'secur', u'barrier'] [u'admit', u'fail', u'afghan', u'poppi', u'output', u'doubl'] [u'soldier', u'shoot', u'iraqi', u'tot', u'child'] [u'space', u'agenc', u'worri', u'space', u'station', u'nois'] [u'opposit', u'question', u'speed', u'camera'] [u'polic', u'defend', u'speed', u'camera'] [u'vinni', u'jone', u'charg', u'rage'] [u'wilkomania', u'pull', u'crowd'] [u'windi', u'rest', u'drake', u'dayer'] [u'woodbridg', u'back', u'scud'] [u'world', u'fail', u'deal', u'aid', u'annan'] [u'young', u'socceroo', u'fight', u'dubai', u'draw'] [u'zimbabwean', u'newspap', u'hit', u'fresh', u'legal', u'snag'] [u'zimbabw', u'consid', u'quit', u'cwealth'] [u'academi', u'build', u'lead', u'laxman', u'lift', u'india'] [u'leadership', u'campaign', u'pick', u'pace'] [u'ambros', u'captur', u'crown'] [u'anglesea', u'fire', u'spread'] [u'aristocrat', u'head', u'look', u'restructur'] [u'arrest', u'doubl', u'southern', u'schooli', u'join', u'parti'] [u'asia', u'threat', u'galvanis', u'govern', u'world'] [u'asic', u'widen', u'probe', u'kay', u'busi', u'collaps'] [u'passeng', u'kill', u'congo', u'plane', u'crash'] [u'babi', u'treatment', u'renew', u'hospit', u'inquiri'] [u'blatter', u'question', u'valid', u'ferdinand', u'unit'] [u'brackss', u'second', u'term', u'best', u'worst', u'time'] [u'brigitt', u'case', u'highlight', u'asio', u'inflex', u'ruddock'] [u'britain', u'close', u'deal', u'guantanamo', u'detaine'] [u'britain', u'grant', u'asylum', u'chechen', u'envoy', u'zakayev'] [u'britain', u'stick', u'ireland', u'accord', u'despit'] [u'british', u'bride', u'lose', u'limb', u'road', u'accid'] [u'british', u'polic', u'releas', u'hold'] [u'govt', u'energi'] [u'look', u'indigen', u'crisi', u'accommod'] [u'cambodian', u'aid', u'patient', u'turn', u'faith', u'healer'] [u'camera', u'surveil', u'airport', u'vandal'] [u'china', u'crocodil', u'dunde', u'join', u'reptil', u'hunt'] [u'china', u'miss', u'world', u'pageant', u'world', u'apart'] [u'admit', u'lack', u'specif', u'iraqi', u'weapon'] [u'cityrail', u'apolog', u'rail', u'delay'] [u'conjoin', u'filipino', u'twin', u'leav', u'hospit'] [u'cool', u'chang', u'aid', u'anglesea', u'fight'] [u'council', u'launch', u'group', u'plan', u'youth', u'train'] [u'croc', u'hunter', u'score', u'tourism', u'award'] [u'diplomat', u'iraq', u'death', u'complic', u'japanes'] [u'trapper', u'join', u'fight', u'livestock', u'attack'] [u'electr', u'swap', u'payment', u'windfal', u'supplier'] [u'england', u'meet', u'foe', u'franc', u'euro', u'clash'] [u'envelop', u'white', u'powder', u'spark', u'alarm', u'franc'] [u'field', u'omagh', u'disappoint', u'japan'] [u'filipino', u'troop', u'rescu', u'kidnap', u'famili'] [u'squad', u'extinguish', u'remot', u'bushfir'] [u'detaine', u'elat', u'reunion', u'children'] [u'senat', u'pick', u'senior', u'australian'] [u'free', u'australian', u'leav', u'nigeria'] [u'frodo', u'economi', u'ring', u'dollar', u'zealand'] [u'gambl', u'focus', u'research', u'centr'] [u'garcia', u'turn', u'heat', u'blow', u'cold', u'citi'] [u'gerrard', u'reveal', u'owen', u'departur', u'fear'] [u'gillard', u'back', u'latham', u'labor', u'leadership'] [u'global', u'poverti', u'level', u'time', u'high'] [u'govt', u'deni', u'build', u'rip', u'school'] [u'high', u'wind', u'caus', u'world', u'jump'] [u'polic', u'seek', u'inform', u'miss', u'australian'] [u'hockeyroo', u'dutch', u'rival'] [u'hop', u'fade', u'find', u'miss', u'aliv'] [u'indigen', u'tourism', u'high', u'hotel', u'brolga', u'winner'] [u'injuri', u'inspir', u'innov', u'gain', u'widespread', u'school'] [u'inter', u'humbl', u'champion', u'juve'] [u'iran', u'relax', u'femal', u'custodi', u'children'] [u'iraq', u'draft', u'islam', u'constitut'] [u'iraq', u'interim', u'leader', u'review', u'plan', u'face'] [u'itali', u'india', u'sign', u'technolog', u'pact'] [u'japan', u'nationalis', u'region', u'bank'] [u'kasper', u'bowl', u'record', u'book', u'bull', u'roll'] [u'kava', u'lift', u'wale'] [u'land', u'return', u'indigen', u'communiti'] [u'lomu', u'walk', u'proper', u'kidney', u'setback'] [u'lucki', u'escap', u'motorist', u'fall', u'farm'] [u'mahathir', u'propos', u'corpor', u'close', u'world'] [u'die', u'stab', u'attack'] [u'paddl', u'kayak', u'bass', u'strait', u'record'] [u'milner', u'offer', u'leed', u'hope', u'blackburn', u'villa'] [u'nation', u'confer', u'debat', u'drug', u'patent'] [u'nigerian', u'releas', u'australian', u'captiv'] [u'ground', u'class', u'action', u'game', u'compani'] [u'proof', u'qaeda', u'iraq', u'general'] [u'note', u'actor', u'rush', u'honour', u'founder'] [u'speaker', u'baffl', u'polli', u'drug', u'test'] [u'pakistan', u'perform', u'success', u'liver'] [u'pakistan', u'lift', u'indian', u'overflight'] [u'palestinian', u'meet', u'envoy', u'reviv'] [u'palestinian', u'say', u'isra', u'wall', u'sabotag'] [u'pendal', u'year', u'career', u'state', u'elect'] [u'port', u'arthur', u'tourism', u'boom', u'boost', u'financ'] [u'power', u'struggl', u'push', u'lanka', u'poll'] [u'price', u'deal', u'put', u'sister', u'closer', u'hospit'] [u'punter', u'win', u'hungari', u'record', u'lotteri'] [u'premier', u'back', u'beazley', u'rudd', u'combo'] [u'rain', u'aid', u'crew', u'battl', u'outbreak'] [u'razzaq', u'snatch', u'unlik', u'victori', u'novic'] [u'remot', u'communiti', u'servic', u'access'] [u'rescuer', u'confid', u'sperm', u'whale', u'surviv'] [u'rhino', u'kill', u'migrant', u'worker', u'india', u'north'] [u'rivaldo', u'chase', u'star', u'chelsea', u'team'] [u'rivaldo', u'leav', u'milan'] [u'ronaldo', u'rescu', u'real'] [u'ruddock', u'examin', u'period', u'detent', u'laps'] [u'rudd', u'beazley', u'ballot'] [u'rudd', u'decid', u'leadership', u'nomin', u'today'] [u'rugbi', u'hero', u'wilkinson', u'music', u'legend', u'jagger', u'share'] [u'confer', u'reject', u'citizen', u'initi'] [u'light', u'camera', u'captur', u'speedster'] [u'scud', u'bag', u'davi', u'glori', u'australia'] [u'scud', u'fire', u'australia', u'davi', u'victori'] [u'spanish', u'offic', u'dead', u'iraq', u'attack', u'ministri'] [u'soccer', u'injur', u'firework', u'display'] [u'sorenstam', u'skin', u'stun', u'eagl'] [u'south', u'kingz', u'nightmar', u'continu'] [u'spain', u'reaffirm', u'support', u'iraq', u'oper'] [u'star', u'princess', u'domin', u'hobart', u'skylin'] [u'kilda', u'sponsor', u'tasmania', u'littl', u'athlet'] [u'sudan', u'suspend', u'newspap', u'say', u'fail', u'nation'] [u'superstiti', u'thief', u'return', u'steal', u'thai', u'templ'] [u'swiss', u'adventur', u'plan', u'solar', u'power', u'flight'] [u'taiwan', u'arrest', u'research', u'sell', u'secret', u'china'] [u'taiwan', u'play', u'referendum', u'talk'] [u'thoma', u'klim', u'seal', u'injuri', u'comeback'] [u'toxic', u'wast', u'forum', u'look', u'futur', u'manag'] [u'turkish', u'court', u'charg', u'prime', u'suspect', u'istanbul'] [u'japanes', u'kill', u'iraq', u'near', u'tikrit'] [u'kill', u'separ', u'accid'] [u'soldier', u'kill', u'iraq', u'ambush'] [u'union', u'hold', u'action', u'govt'] [u'colonel', u'charg', u'guantanamo', u'secret'] [u'polic', u'seek', u'shooter', u'kill'] [u'state', u'depart', u'crack', u'diplomat'] [u'troop', u'arrest', u'alleg', u'iraqi', u'milit'] [u'west', u'indi', u'edward', u'wreak', u'havoc'] [u'west', u'indi', u'newboy', u'edward', u'wreak', u'havoc'] [u'inspir', u'woodi', u'play'] [u'world', u'star', u'perform', u'mandela', u'aid', u'concert'] [u'million', u'aid', u'patient', u'drug'] [u'accc', u'warn', u'dishonest', u'busi'] [u'milan', u'releas', u'rivaldo'] [u'soften', u'right'] [u'aid', u'council', u'warn', u'complac'] [u'airport', u'play', u'flight', u'scare'] [u'help', u'rebuild', u'iraq', u'health'] [u'anderson', u'accus', u'union', u'scare', u'campaign'] [u'anderson', u'ponder', u'legal', u'action'] [u'appeal', u'trucki', u'inform'] [u'arm', u'ivori', u'coast', u'demand', u'departur'] [u'asylum', u'seeker', u'treatment', u'nation', u'black', u'spot', u'studi'] [u'aussi', u'hop', u'master', u'huntingdal'] [u'australia', u'india', u'pakistan', u'play', u'seri'] [u'australia', u'davi', u'hero'] [u'author', u'identifi', u'turkish', u'suicid', u'bomber'] [u'balfour', u'bakeri', u'take'] [u'bank', u'resourc', u'push', u'market', u'lower'] [u'bashir', u'lawyer', u'plan', u'appeal'] [u'revamp', u'underway', u'panorama', u'track'] [u'biki', u'secur', u'label', u'discriminatori'] [u'blaze', u'tear', u'north', u'east', u'sawmil'] [u'bleak', u'outlook', u'wool', u'sector'] [u'bleari', u'eye', u'bowler', u'record'] [u'book', u'celebr', u'drover', u'best', u'life', u'track'] [u'brack', u'go'] [u'brack', u'refus', u'side', u'beatti', u'back', u'beazley'] [u'busi', u'focus', u'servic'] [u'servic', u'unlik', u'start'] [u'aviat', u'ombudsman'] [u'canadian', u'compani', u'bid', u'pasminco', u'oper'] [u'capricornia', u'decid', u'leadership', u'option'] [u'carr', u'announc', u'firefight', u'team'] [u'carr', u'play', u'harbour', u'bridg', u'secur', u'breach'] [u'carseldin', u'hit', u'second', u'academi', u'declar'] [u'cattlemen', u'assn', u'demand', u'better', u'road'] [u'central', u'aust', u'share', u'heritag', u'grant'] [u'central', u'restrict', u'loom'] [u'chanc', u'say', u'communiti', u'wont', u'rule'] [u'chelsea', u'manchest', u'unit'] [u'china', u'global', u'dump', u'grind', u'electron'] [u'civilian', u'death', u'toll', u'iraq', u'clash'] [u'clark', u'appeal', u'hear', u'evid'] [u'committe', u'question', u'rbas', u'annual', u'report'] [u'compo', u'urg', u'futur', u'industri', u'estat', u'move'] [u'confisc', u'homework', u'raid', u'upset', u'girl'] [u'urg', u'caution', u'deepen', u'port'] [u'convict', u'child', u'offend', u'refus', u'bail'] [u'coron', u'deliv', u'open', u'find', u'child', u'death'] [u'council', u'inspect', u'camp', u'sit'] [u'council', u'feder', u'scheme', u'crossroad'] [u'council', u'see', u'benefit', u'supermarket', u'plan'] [u'council', u'urg', u'vote', u'citi', u'centr', u'strategi'] [u'court', u'dismiss', u'polic', u'assault', u'case'] [u'court', u'hear', u'perth', u'mint', u'swindl', u'appeal'] [u'levi', u'moot', u'boost', u'firefight', u'effort'] [u'shark', u'coach', u'anderson'] [u'defenc', u'minist', u'offer', u'condol', u'japan', u'spain'] [u'demand', u'pick', u'commerci', u'space'] [u'diamond', u'explor', u'underway', u'central', u'aust'] [u'dicey', u'deal', u'program', u'launch'] [u'doctor', u'shortag', u'take', u'toll', u'surgeri', u'wait', u'time'] [u'dozen', u'kill', u'iraq', u'ambush', u'attempt'] [u'drainag', u'work', u'begin', u'soon'] [u'drug', u'lookout', u'guilti'] [u'drug', u'record', u'abandon', u'nurs', u'home'] [u'dump', u'anderson', u'ponder', u'legal', u'action'] [u'egypt', u'recov', u'smuggl', u'antiqu'] [u'elector', u'commiss', u'broaden', u'polit', u'neutral'] [u'emma', u'georg', u'announc', u'retir'] [u'english', u'soccer', u'chief', u'defend', u'ferdinand', u'decis'] [u'eureka', u'celebr', u'begin'] [u'export', u'perform', u'undermin', u'growth', u'figur'] [u'farmer', u'face', u'locust', u'swarm'] [u'farmer', u'hear', u'nativ', u'veget', u'detail'] [u'farmer', u'urg', u'season', u'readi'] [u'femal', u'smoker', u'greater', u'cancer', u'risk'] [u'firefight', u'battl', u'bushfir', u'south', u'east'] [u'firefight', u'tackl', u'gippsland', u'blaze'] [u'prove', u'capit'] [u'garcia', u'end', u'drought', u'citi'] [u'geneva', u'peac', u'ceremoni', u'hear', u'arafat', u'speech'] [u'gibbon', u'back', u'latham'] [u'govt', u'donat', u'alzheim', u'research'] [u'green', u'urg', u'conscienc', u'vote', u'child', u'abus', u'inquiri'] [u'guantanamo', u'inmat', u'releas', u'report'] [u'hall', u'fame', u'honour', u'hayman'] [u'hanson', u'saga', u'unit', u'nation', u'say', u'parti', u'leader'] [u'health', u'report', u'news', u'surpris'] [u'hewitt', u'take', u'earn', u'rest'] [u'high', u'hop', u'bombast', u'shiraz'] [u'hobbit', u'film', u'pipelin', u'follow', u'ring', u'success'] [u'hope', u'ethanol', u'trial', u'fuel', u'develop'] [u'hope', u'highway', u'work', u'deliv', u'retail', u'boost'] [u'hospit', u'overcrowd', u'anger', u'nurs'] [u'howard', u'carr', u'trade', u'blow', u'inject', u'room'] [u'imperi', u'lose', u'leagu', u'chang'] [u'independ', u'quit', u'elect'] [u'india', u'avoid', u'humili', u'tour', u'match', u'end', u'draw'] [u'injuri', u'time', u'winner', u'keep', u'ger', u'touch'] [u'inquiri', u'find', u'driver', u'error', u'caus', u'runaway', u'train'] [u'inquiri', u'probe', u'militari', u'tie'] [u'iraq', u'council', u'member', u'conflict', u'elect'] [u'ironman', u'make', u'success', u'swim', u'debut'] [u'israel', u'launch', u'raid', u'ramalah'] [u'jade', u'rooney', u'face', u'demot', u'bench'] [u'japanes', u'station', u'begin', u'terrestri', u'digit'] [u'kelli', u'defend', u'grafton', u'offic', u'appoint'] [u'kenyan', u'polic', u'detain', u'mombasa', u'bomb'] [u'labor', u'contend', u'neck', u'neck'] [u'lake', u'close', u'clean'] [u'hous', u'draw', u'resid', u'say'] [u'link', u'suggest', u'infect', u'speed'] [u'loan', u'avail', u'help', u'hail', u'affect', u'farmer'] [u'macgil', u'confid', u'select', u'chanc'] [u'arrest', u'rescu'] [u'seri', u'gayl', u'send', u'west', u'indi', u'storm'] [u'pay', u'petrol', u'nephew'] [u'manufactur', u'show', u'healthi', u'sign'] [u'polic', u'guard', u'sieg'] [u'mayor', u'push', u'need', u'toowoomba', u'bypass'] [u'medic', u'student', u'help', u'differ'] [u'crash', u'avoid', u'tamworth'] [u'midair', u'incid', u'fals', u'alarm', u'safeti', u'bureau'] [u'miner', u'dig', u'deep', u'gibson'] [u'miracl', u'save', u'famili'] [u'mitchel', u'offens', u'black', u'search'] [u'mobil', u'smuggl', u'jail'] [u'monkey', u'give', u'birth', u'launceston', u'citi', u'park'] [u'yeppoon', u'resid', u'wait', u'list', u'worri'] [u'mornington', u'unrest', u'follow', u'alcohol', u'restrict'] [u'morocco', u'return', u'illeg', u'immigr', u'nigeria'] [u'wit', u'protest', u'hear'] [u'spend', u'time', u'travel', u'bigger'] [u'murali', u'say', u'england', u'tough', u'beat'] [u'nation', u'work', u'health', u'code', u'revis'] [u'nato', u'launch', u'anti', u'respons', u'unit'] [u'nat', u'legisl'] [u'defam', u'case', u'continu'] [u'fast', u'respons', u'team', u'address', u'anim', u'diseas'] [u'law', u'tackl', u'rogu', u'tourism', u'firm'] [u'multi', u'purpos', u'communiti', u'build', u'alic'] [u'recycl', u'centr', u'open', u'candelo'] [u'stage', u'riverland', u'risk', u'assess'] [u'bail', u'accus', u'naracoort', u'fire'] [u'north', u'west', u'build', u'success'] [u'govt', u'spend', u'media', u'watch'] [u'review', u'drink', u'aim', u'young'] [u'feder', u'seat', u'report'] [u'opposit', u'claim', u'health', u'bureaucrat', u'abus'] [u'opposit', u'push', u'releas', u'child', u'detaine'] [u'perkin', u'join', u'olympian', u'council'] [u'perth', u'mint', u'swindl', u'appeal', u'begin'] [u'pilot', u'concern', u'airspac', u'breach'] [u'plagu', u'locust', u'concern', u'storm', u'rain'] [u'plan', u'underway', u'forest', u'hazard', u'burn'] [u'accus', u'point', u'score', u'opiat', u'trade'] [u'polic', u'blitz', u'target', u'road', u'safeti'] [u'polic', u'hunt', u'involv', u'stab'] [u'polic', u'hunt', u'attack'] [u'polic', u'probe', u'death', u'custodi'] [u'polic', u'probe', u'jail', u'death'] [u'polic', u'probe', u'separ', u'western', u'death'] [u'polic', u'probe', u'murder', u'extend', u'search', u'husband'] [u'polic', u'interview', u'schooli', u'claim'] [u'polic', u'uncov', u'cannabi', u'crop'] [u'polic', u'drown', u'victim'] [u'promin', u'lawyer', u'charg', u'fatal', u'accid'] [u'public', u'deliv', u'slogan', u'plate'] [u'public', u'servant', u'get', u'older', u'skill', u'report'] [u'public', u'quiz', u'port', u'flood'] [u'public', u'health', u'review', u'find'] [u'public', u'urg', u'eas', u'water'] [u'qanta', u'ditch', u'fli', u'kangaroo', u'discount', u'airlin'] [u'fever', u'victim', u'sue', u'employ'] [u'govt', u'offer', u'child', u'care', u'fund'] [u'quak', u'hit', u'china', u'seven', u'dead'] [u'quak', u'rock', u'north', u'western', u'china'] [u'quarantin', u'websit', u'target', u'young', u'travel'] [u'race', u'club', u'share', u'resourc'] [u'radio', u'boost', u'palm', u'youth'] [u'ranger', u'prove', u'good', u'redland'] [u'light', u'camera', u'doubl', u'speed', u'camera'] [u'reid', u'coach', u'indian', u'pacemen', u'australia', u'tour'] [u'resid', u'powerless', u'lightn', u'woe'] [u'retrial', u'begin', u'today', u'sexual', u'abus', u'nightclub', u'case'] [u'review', u'consid', u'schooli', u'plan'] [u'rise', u'demand', u'forc', u'chariti'] [u'roger', u'deportivo'] [u'roma', u'milan', u'share', u'spot', u'itali'] [u'rylston', u'council', u'probe', u'end'] [u'safeti', u'bureau', u'probe', u'emerg', u'land'] [u'satellit', u'extend', u'life'] [u'sawmil', u'fear', u'impact', u'redgum', u'campaign'] [u'schooli', u'polic', u'misconduct', u'inquiri', u'widen'] [u'scientist', u'search', u'clue', u'whale', u'strand'] [u'servic', u'rememb', u'legendari', u'bushman'] [u'seven', u'indian', u'kashmir', u'rebellion'] [u'shellharbour', u'trial', u'tackl', u'crime'] [u'sixteen', u'year', u'detent', u'rape'] [u'skipper', u'jail', u'illeg', u'fish'] [u'smith', u'season'] [u'sponsorship', u'wrangl', u'keep', u'clijster', u'away'] [u'springborg', u'want', u'scienc', u'base', u'tree', u'clear'] [u'lanka', u'fort', u'citi', u'sieg', u'barmi', u'armi'] [u'stone', u'bros', u'appeal', u'ingal', u'penalti'] [u'stopwork', u'meet', u'teacher', u'tomorrow'] [u'strong', u'dollar', u'expect', u'hurt', u'tuna', u'industri'] [u'student', u'death', u'spark', u'polic', u'investig'] [u'student', u'confid', u'senat', u'amend', u'plan'] [u'student', u'uninjur', u'school', u'accid'] [u'summer', u'road', u'safeti', u'campaign', u'underway'] [u'support', u'derbi', u'wharf', u'upgrad'] [u'suspect', u'outbreak'] [u'sydney', u'resid', u'ralli', u'wast', u'station'] [u'tasmanian', u'support', u'latham'] [u'teacher', u'feder', u'critic', u'plan', u'educ'] [u'teen', u'die', u'highway', u'crash'] [u'threaten', u'speci', u'protect', u'port', u'sorel'] [u'tiger', u'recal'] [u'timber', u'worker', u'ralli', u'enterpris', u'agreement'] [u'trainer', u'oliv', u'death', u'overturn'] [u'tran', u'tasman', u'clash', u'kick', u'super', u'season'] [u'treatment', u'wipe', u'oliv', u'pest'] [u'turtl', u'nest', u'threaten', u'feral', u'pig'] [u'babi', u'traffick', u'sentenc', u'death'] [u'kill', u'fatal', u'accid'] [u'prepar', u'england', u'gear', u'murali', u'threat'] [u'union', u'fear', u'cut', u'junior', u'doctor', u'number'] [u'univers', u'fund', u'continu'] [u'push', u'middl', u'east', u'peac', u'process', u'continu'] [u'fire', u'burn'] [u'govt', u'urg', u'tackl', u'state', u'drug', u'problem'] [u'polic', u'scale', u'search', u'miss'] [u'victorian', u'fire', u'bring', u'control'] [u'lifesav', u'issu', u'warn', u'summer', u'begin'] [u'polic', u'crack', u'domest', u'violenc'] [u'warn', u'issu', u'discount', u'fuel', u'allianc'] [u'water', u'problemat', u'growth'] [u'wellington', u'turn', u'star'] [u'well', u'highlight', u'speed', u'camera', u'fear'] [u'western', u'rain', u'bring', u'good'] [u'west', u'indi', u'reveng', u'south', u'africa'] [u'wolf', u'free', u'return', u'racetrack'] [u'young', u'prison', u'endur', u'live', u'neglect', u'studi'] [u'anim', u'stay', u'territori', u'protect'] [u'kill', u'nepal', u'clash'] [u'aborigin', u'polic', u'liaison', u'offic'] [u'aborigin', u'popul', u'underestim', u'survey'] [u'academ', u'cast', u'doubt', u'latham', u'leader'] [u'accc', u'settl', u'impot', u'clinic', u'disput'] [u'accus', u'admit', u'kill', u'schoolgirl'] [u'actu', u'deni', u'conflict', u'latham'] [u'adelaid', u'airport', u'secur', u'criticis'] [u'airli', u'group', u'rat', u'review', u'plan', u'high'] [u'airport', u'work', u'start', u'soon'] [u'alga', u'plagu', u'lake', u'close'] [u'alleg', u'melbourn', u'underworld', u'figur', u'releas'] [u'ambros', u'grappl', u'supercar', u'seri'] [u'ambul', u'servic', u'offer', u'roster', u'chang', u'assur'] [u'anderson', u'unveil', u'tighter', u'airport', u'secur', u'plan'] [u'angler', u'time', u'know', u'rule'] [u'complet', u'bank'] [u'asian', u'pirat', u'sell', u'microsoft', u'window'] [u'asthma', u'link', u'mental', u'ill'] [u'auspin', u'resum', u'busi', u'blaze'] [u'australia', u'draw', u'zealand', u'champ', u'trophi'] [u'austrian', u'klien', u'pole', u'jaguar', u'drive'] [u'bacon', u'welcom', u'latham'] [u'bali', u'survivor', u'appeal', u'burn', u'research', u'fund'] [u'beat', u'beazley', u'vow', u'support'] [u'beatti', u'confirm', u'futur', u'schooli', u'role'] [u'beazley', u'backer', u'declar', u'support', u'latham'] [u'boat', u'sink', u'india', u'fear', u'dead'] [u'bosnian', u'muslim', u'trial', u'hagu'] [u'brack', u'defend', u'polic', u'sieg', u'ram'] [u'breakthrough', u'virtual', u'colonoscopi', u'invas'] [u'brook', u'back', u'mitchel', u'black', u'coach'] [u'build', u'industri', u'fear', u'impact', u'rat', u'rise'] [u'burdekin', u'mayor', u'urg', u'ethanol', u'action'] [u'bush', u'sign', u'allow', u'studi', u'generat'] [u'busi', u'look', u'forward', u'christma', u'shop'] [u'buyer', u'compet', u'album', u'lennon', u'sign', u'killer'] [u'stand', u'leader'] [u'ballarat', u'eureka', u'parliament', u'sit'] [u'card', u'help', u'curb', u'schooli', u'gatecrash'] [u'chastiti', u'best', u'protect', u'aid', u'vatican'] [u'clark', u'appeal', u'hear', u'polic', u'evid'] [u'clean', u'beach', u'clean', u'award'] [u'communiti', u'rememb', u'tamworth', u'stalwart'] [u'compani', u'await', u'plan', u'decis'] [u'compani', u'face', u'court', u'anim', u'cruelti', u'charg'] [u'concord', u'auction', u'take', u'record', u'nose'] [u'council', u'group', u'upbeat', u'rail', u'project'] [u'council', u'ahead', u'subdivis'] [u'court', u'find', u'guilti', u'rape'] [u'court', u'order', u'public', u'servant', u'steal'] [u'court', u'reserv', u'decis', u'journalist', u'appeal'] [u'crime', u'author', u'reflect', u'killer', u'death'] [u'damag', u'assess', u'diesel', u'spill'] [u'labor', u'leadership'] [u'drought', u'affect', u'south', u'west'] [u'earli', u'work', u'begin', u'timber'] [u'earthquak', u'hit', u'north', u'west', u'china'] [u'econom', u'develop', u'board', u'contract'] [u'tourism', u'ventur', u'concern', u'tarkin', u'log'] [u'educ', u'shake', u'keep', u'tafe', u'riverina'] [u'eriksson', u'settl', u'england', u'futur', u'euro'] [u'farmer', u'urg', u'harvest', u'safe'] [u'feder', u'parliament', u'hear', u'refuge', u'petit'] [u'chief', u'defend', u'snowi', u'fund', u'level'] [u'firefight', u'protest', u'farmer', u'charg'] [u'femal', u'english', u'channel', u'swimmer', u'die'] [u'fleme', u'doubt', u'test', u'pakistan'] [u'forecast', u'revis', u'grain', u'recoveri'] [u'forecast', u'dampen', u'reef', u'coral', u'bleach', u'fear'] [u'solomon', u'militia', u'leader', u'solitari', u'lawyer'] [u'terror', u'suspect', u'arrest', u'london'] [u'frustrat', u'fiji', u'rugbi', u'coach', u'mccallion', u'quit'] [u'fund', u'seek', u'beach', u'secur', u'boost'] [u'futur', u'bleak', u'tasmanian'] [u'gigg', u'ronaldo', u'escap', u'ban', u'arsenal', u'fraca'] [u'gilchrist', u'battl', u'gabba', u'test', u'loom'] [u'gilli', u'battl', u'ahead', u'gabba', u'test'] [u'gold', u'price', u'reach', u'high'] [u'govt', u'accus', u'attack', u'public', u'liabil', u'right'] [u'govt', u'flag', u'concess', u'sweeten'] [u'govt', u'mock', u'latham', u'jekyl', u'hyde', u'charact'] [u'govt', u'negoti', u'media', u'ownership'] [u'greenhous', u'confer', u'open', u'milan'] [u'green', u'phone', u'agenda'] [u'group', u'monitor', u'council', u'marina', u'effort'] [u'group', u'loggerhead', u'catchment', u'claim'] [u'hall', u'creek', u'death', u'consid', u'suspici'] [u'hawk', u'cruis', u'number'] [u'hockeyroo', u'china'] [u'hockeyroo', u'readi', u'china'] [u'hume', u'cootamundra', u'mayor', u'opposit'] [u'hunter', u'pirat', u'coach'] [u'india', u'pakistan', u'resum', u'link'] [u'injuri', u'scan', u'put', u'scud', u'clear'] [u'inquest', u'hear', u'jaidyn', u'leski', u'bruis'] [u'internet', u'mous', u'free', u'china'] [u'investig', u'probe', u'bathtub', u'drown'] [u'iraq', u'battl', u'toll', u'question'] [u'iraqi', u'happi', u'saddam', u'lack', u'confid'] [u'irrig', u'trust', u'rule', u'crop', u'alloc', u'method'] [u'latham', u'howard'] [u'jaguar', u'replac', u'wilson', u'klien'] [u'jenni', u'georg', u'urg', u'solidar', u'leader'] [u'kalgoorli', u'teen', u'face', u'rape', u'trial'] [u'kay', u'creditor', u'leav', u'limbo'] [u'kay', u'face', u'angri', u'investor'] [u'kimberley', u'land', u'hand'] [u'kingfish', u'farm', u'compens', u'opposit', u'say'] [u'labor', u'bet', u'latham'] [u'lancast', u'veteran', u'gather', u'canberra'] [u'latham', u'demand', u'uniti'] [u'latham', u'work', u'beatti', u'say'] [u'latham', u'assign', u'frontbench', u'duti'] [u'latham', u'leadership', u'label', u'gambl'] [u'lawrenc', u'hop', u'latham', u'refuge', u'compromis'] [u'leed', u'dismiss', u'takeov', u'specul'] [u'librari', u'celebr', u'indigen', u'cultur'] [u'accus', u'run', u'ecstasi', u'releas', u'bail'] [u'die', u'polic', u'beat'] [u'die', u'kiteboard', u'accid'] [u'face', u'court', u'drug', u'charg'] [u'face', u'jail', u'offenc'] [u'mayor', u'vote', u'referendum', u'agenda'] [u'mayor', u'unhappi', u'attack'] [u'meatwork', u'revamp', u'boost', u'job'] [u'meet', u'discuss', u'merci', u'centr', u'concern'] [u'melbourn', u'batter', u'sever', u'thunderstorm'] [u'melbourn', u'hors', u'wear', u'nappi'] [u'milosev', u'run', u'serbian', u'parliament'] [u'mine', u'rescu', u'servic', u'mark', u'anniversari'] [u'minist', u'say', u'rocki', u'wait', u'list', u'better'] [u'monkey', u'arriv', u'creat', u'excit'] [u'dengu', u'fever', u'hit', u'cairn'] [u'stop', u'qaeda'] [u'mornington', u'shire', u'chang', u'alcohol', u'plan'] [u'motorcyclist', u'die', u'hit'] [u'concern', u'local', u'govt', u'minist'] [u'mundin', u'announc', u'titl', u'defenc'] [u'near', u'collis', u'blame', u'airspac', u'chang'] [u'middl', u'east', u'peac', u'plan', u'launch'] [u'tourism', u'manag', u'keen', u'start', u'work'] [u'northern', u'ireland', u'rival', u'deadlock'] [u'nrma', u'win', u'constitut'] [u'class', u'resum', u'teacher', u'strike', u'talk'] [u'call', u'crackdown', u'prison', u'phone'] [u'teacher', u'threaten', u'step', u'strike', u'action'] [u'teacher', u'vote', u'strike'] [u'govt', u'reject', u'pointless', u'punish'] [u'examin', u'hour', u'hospit', u'care'] [u'olymp', u'cycl', u'champ', u'delay', u'athen', u'trial'] [u'opposit', u'put', u'heat', u'minist', u'mickelberg'] [u'paedophil', u'jail', u'year'] [u'pakistan', u'lead', u'sami', u'destroy', u'kiwi'] [u'pasminco', u'aim', u'refloat', u'despit', u'takeov'] [u'pasminco', u'stand', u'takeov', u'reject'] [u'pirat', u'dump', u'coach', u'palmer'] [u'plan', u'coolum', u'polic', u'station'] [u'polic', u'bodi', u'dead', u'woman', u'husband'] [u'polic', u'microphon', u'offic'] [u'polic', u'charg', u'drug', u'raid'] [u'policeman', u'award', u'lifesav', u'attempt'] [u'polic', u'speed', u'camera', u'claim', u'wrong'] [u'polic', u'shoot', u'brisban'] [u'polic', u'probe', u'sieg', u'handl'] [u'prosecutor', u'appeal', u'bashir', u'treason', u'acquitt'] [u'public', u'ask', u'help', u'miss', u'toddler'] [u'public', u'sector', u'agreement', u'boost', u'armi', u'reserv'] [u'public', u'sector', u'union', u'dismiss', u'minist', u'threat'] [u'public', u'urg', u'consid', u'drought', u'stricken', u'famili'] [u'govt', u'consid', u'futur', u'schooli', u'involv'] [u'score', u'credit', u'rat'] [u'rain', u'expect', u'continu', u'south', u'east'] [u'rain', u'stop', u'play', u'england', u'lanka', u'test'] [u'rat', u'rise', u'disincent', u'build'] [u'report', u'show', u'sugar', u'industri', u'valu'] [u'reserv', u'expect', u'rais', u'rat'] [u'resourc', u'stock', u'close', u'higher'] [u'retail', u'build', u'figur'] [u'revamp', u'plan', u'remot', u'communiti'] [u'river', u'bodi', u'consid', u'suspici'] [u'road', u'safeti', u'concern', u'motorist'] [u'rockhampton', u'councillor', u'quit'] [u'ronaldinho', u'barca', u'clash', u'real'] [u'rumsfeld', u'win', u'foot', u'mouth', u'award'] [u'rural', u'victoria', u'build', u'construct', u'growth'] [u'saddam', u'aid', u'catch', u'kill'] [u'govt', u'urg', u'rail', u'decis'] [u'sale', u'world', u'trade', u'centr', u'share', u'near'] [u'vietnam', u'news', u'broadcast'] [u'scandal', u'prompt', u'boe', u'ceo', u'resign'] [u'scheme', u'control', u'pest', u'go', u'global'] [u'scientist', u'sail', u'antarct', u'mission'] [u'scottish', u'rugbi', u'chief', u'sack'] [u'shale', u'firm', u'fall', u'receivership'] [u'shark', u'bank', u'raper'] [u'shire', u'want', u'airport', u'ownership'] [u'south', u'korea', u'hold', u'firm', u'iraq', u'troop', u'decis'] [u'speed', u'unlik', u'caus', u'riverland', u'road', u'death', u'polic'] [u'lanka', u'toss', u'test', u'england'] [u'stang', u'fear', u'life', u'iraq'] [u'storm', u'leav', u'home', u'dark'] [u'super', u'card', u'chief'] [u'surf', u'injuri', u'compo', u'fight', u'go', u'high', u'court'] [u'surg', u'dollar', u'crash', u'record', u'woodchip', u'export'] [u'tasmanian', u'fire', u'threaten', u'power', u'line'] [u'labor', u'focus', u'howard'] [u'teacher', u'protest'] [u'teacher', u'stop', u'work', u'disput'] [u'teacher', u'decid', u'industri', u'unrest'] [u'teacher', u'protest', u'offer'] [u'tennant', u'creek', u'aim', u'boost', u'tourist', u'number'] [u'thorp', u'hackett', u'name', u'year', u'best', u'swimmer'] [u'thousand', u'march', u'oppos', u'sbss', u'vietnames', u'news'] [u'kill', u'israel', u'nab', u'want', u'milit'] [u'student', u'kill', u'fall', u'pack'] [u'train', u'driver', u'strike', u'pacif', u'nation'] [u'trilater', u'talk', u'north', u'korea'] [u'trucki', u'clear', u'pedestrian', u'death'] [u'ultra', u'light', u'make', u'emerg', u'land'] [u'unusu', u'spring', u'bring', u'soak', u'region'] [u'amateur', u'champ', u'confid', u'ahead', u'master'] [u'blast', u'kyoto', u'pact', u'straitjacket'] [u'dollar', u'falter', u'aussi', u'surg'] [u'end', u'scrutini', u'muslim', u'foreign', u'visitor'] [u'sport', u'baron', u'rais', u'stake'] [u'view', u'iraqi', u'ambush', u'signific', u'victori'] [u'vandal', u'close', u'camp', u'grind'] [u'govern', u'extend', u'fish', u'amnesti'] [u'premier', u'talk', u'industri'] [u'warm', u'welcom', u'predict', u'dokic', u'return'] [u'water', u'qualiti', u'problem', u'bendora'] [u'water', u'restrict', u'unchang', u'despit', u'closur'] [u'wilko', u'watch', u'world', u'final', u'video'] [u'wine', u'return', u'fall', u'fourth', u'year'] [u'reject', u'riverland', u'closur', u'specul'] [u'yorkshir', u'bank', u'harvey'] [u'young', u'socceroo', u'readi', u'brazil', u'test', u'ang'] [u'zahra', u'welcom', u'latham', u'leader'] [u'resign', u'pakistan', u'cricket', u'board', u'chief'] [u'abort', u'spark', u'legal', u'battl'] [u'abus', u'alleg', u'surpris'] [u'academ', u'see', u'pros', u'con', u'latham', u'appoint'] [u'divert', u'melbourn'] [u'afghan', u'soldier', u'kill', u'clash', u'milit'] [u'discuss', u'nurs', u'staff', u'woe'] [u'alga', u'lake', u'fish', u'kill'] [u'alleg', u'taxi', u'devil', u'serial', u'killer', u'arrest', u'china'] [u'amnesti', u'arriv', u'burma', u'visit'] [u'anderson', u'reject', u'plane', u'near', u'miss', u'claim'] [u'asic', u'launch', u'kay', u'receivership', u'process'] [u'asic', u'urg', u'investig', u'nrma', u'vote'] [u'asio', u'say', u'seven', u'block', u'enter', u'australia'] [u'aspirin', u'link', u'reduc', u'risk', u'stomach', u'cancer'] [u'fear', u'dead', u'india', u'crash'] [u'australian', u'economi', u'surg', u'forward'] [u'hailston', u'rain', u'swift', u'creek'] [u'bosnian', u'serb', u'get', u'year', u'massacr'] [u'brack', u'prais', u'emerg', u'worker', u'storm'] [u'brazilian', u'get', u'green', u'light'] [u'britain', u'launch', u'athlet', u'inquiri'] [u'british', u'advanc', u'copi', u'report'] [u'british', u'rider', u'wegelius', u'clear', u'dope'] [u'busi', u'lobbi', u'condemn', u'rate', u'rise'] [u'coff', u'includ', u'jetstar', u'plan'] [u'offic', u'region', u'affair', u'certainti'] [u'review', u'reserv', u'bank', u'board', u'amid'] [u'calm', u'firi', u'continu'] [u'chang', u'announc', u'drought', u'elig'] [u'citrus', u'name', u'cancer', u'heart', u'diseas', u'fighter'] [u'claim', u'region', u'aviat', u'probe', u'benefit', u'bigger'] [u'clark', u'clear', u'riotous', u'behaviour'] [u'clark', u'join', u'warn', u'hampshir'] [u'clark', u'futur', u'doubt', u'appeal', u'rule'] [u'cold', u'comfort', u'kid', u'echinacea', u'studi'] [u'commerc', u'ballarat', u'look', u'ahead'] [u'concern', u'tuna', u'industri', u'uncertainti'] [u'convict', u'murder', u'appeal', u'high', u'court'] [u'council', u'back', u'develop'] [u'council', u'busi', u'urg', u'share', u'region'] [u'court', u'action', u'seek', u'mine', u'leas', u'return'] [u'court', u'ask', u'kay', u'stay'] [u'csiro', u'examin', u'invas'] [u'death', u'connect', u'ecstasi', u'polic', u'warn'] [u'dept', u'seek', u'idea', u'region', u'health', u'care'] [u'dollar', u'hit', u'fresh', u'year', u'high'] [u'downpour', u'littl', u'chang', u'rain', u'total'] [u'downpour', u'soak', u'huntingdal'] [u'chase', u'extradit', u'english', u'tourist'] [u'draft', u'port', u'river', u'sanctuari', u'open', u'public'] [u'educ', u'chief', u'will', u'talk', u'teacher', u'hous'] [u'educ', u'reform', u'progress', u'nation', u'senat'] [u'england', u'gile', u'strike'] [u'environ', u'dept', u'happi', u'shoot', u'fine'] [u'farmer', u'feder', u'angri', u'rat', u'hike'] [u'feder', u'fund', u'seek', u'combat', u'suicid'] [u'fifa', u'chief', u'urg', u'club', u'limit', u'domest', u'leagu'] [u'victim', u'consid', u'commemor', u'option'] [u'flood', u'southern', u'franc', u'kill'] [u'forgac', u'worker', u'stop', u'work', u'foreign', u'worker'] [u'chief', u'magistr', u'releas', u'jail'] [u'doctor', u'appeal', u'deregistr'] [u'arrest', u'alleg', u'qaeda', u'link'] [u'strike', u'lightn', u'blue', u'mountain'] [u'fourteen', u'dead', u'rebel', u'clash', u'uganda'] [u'french', u'coach', u'laport', u'decis', u'futur'] [u'galatasaray', u'stay', u'aliv', u'juve'] [u'ganguli', u'pay', u'tribut', u'waugh'] [u'lesbian', u'program', u'receiv', u'polic'] [u'german', u'flick', u'top', u'shortlist', u'european', u'film'] [u'gilchrist', u'play'] [u'gold', u'price', u'high'] [u'golf', u'associ', u'investig', u'illeg', u'driver'] [u'govt', u'float', u'idea', u'older', u'employe', u'work'] [u'govt', u'sweeten', u'chang', u'deal'] [u'return', u'visit', u'rise'] [u'green', u'group', u'air', u'coal', u'concern'] [u'growth', u'figur', u'rat', u'rise'] [u'gunner', u'southampton', u'leagu', u'quarter'] [u'haas', u'back', u'wiluna', u'council', u'probe'] [u'health', u'servic', u'reject', u'nurs', u'staff', u'claim'] [u'hid', u'leadership', u'bacon', u'fine', u'fettl'] [u'higher', u'rat', u'affect', u'hous', u'price'] [u'hockeyroo', u'muscl', u'argentina'] [u'hous', u'afford', u'issu', u'lead', u'sydney', u'slum'] [u'howard', u'tip', u'latham', u'honeymoon'] [u'huge', u'croc', u'captur', u'rockhampton'] [u'huntley', u'cross', u'examin', u'girl', u'death'] [u'icac', u'warn', u'employ', u'fals', u'qualif'] [u'india', u'crash', u'claim', u'live'] [u'indigen', u'justic', u'fund', u'boost'] [u'indi', u'driver', u'brack', u'releas', u'hospit'] [u'itali', u'approv', u'controversi', u'media'] [u'jackson', u'undergo', u'test', u'stress', u'fractur'] [u'johansson', u'eye', u'comeback'] [u'judg', u'rule', u'dismiss', u'clark', u'charg'] [u'labor', u'begin', u'latham'] [u'labor', u'meet', u'pick', u'shadow', u'cabinet'] [u'latham', u'leadership', u'labor', u'disun', u'martin'] [u'lawyer', u'jump', u'mitchel', u'caus'] [u'leicest', u'deni', u'coach', u'role', u'johnson'] [u'lightn', u'strike', u'blue', u'mountain'] [u'local', u'lender', u'consid', u'rat', u'rise'] [u'lodg', u'seek', u'politician', u'help', u'stay', u'aliv'] [u'mackay', u'join', u'ethanol', u'blend', u'trial'] [u'magnet', u'water', u'plan', u'pipelin'] [u'pay', u'miss', u'world', u'ticket'] [u'man', u'bodi', u'sydney'] [u'shoot', u'polic', u'question'] [u'shoot', u'adelaid', u'sieg'] [u'stab', u'home', u'invas'] [u'marin', u'park', u'rezon', u'plan', u'debat'] [u'matern', u'unit', u'review'] [u'mayor', u'unhappi', u'chang', u'educ', u'offic'] [u'medicar', u'packag', u'talk', u'stall'] [u'melbourn', u'brace', u'storm'] [u'melbourn', u'clean', u'freak', u'storm'] [u'melbourn', u'hobart', u'attract', u'strong', u'fleet'] [u'melbourn', u'storm', u'clean', u'continu'] [u'menu', u'titan', u'sell'] [u'scare', u'blame'] [u'oper', u'get', u'licenc', u'deadlin'] [u'miner', u'acquir', u'west', u'tenement'] [u'minist', u'prais', u'safeti'] [u'mosaic', u'boost', u'output'] [u'reject', u'cabinet', u'reshuffl', u'specul'] [u'seek', u'probe', u'rail', u'tunnel', u'plan'] [u'unhappi', u'receivership'] [u'mugab', u'continu', u'attack', u'australia', u'commonwealth'] [u'murali', u'frustrat', u'england'] [u'nat', u'question', u'rule', u'claim'] [u'negoti', u'continu', u'strand', u'sheep'] [u'seizur', u'spark', u'illeg', u'fish', u'warn'] [u'requir', u'greater', u'disclosur', u'club'] [u'sale', u'overtak', u'record'] [u'elmor', u'bank', u'open', u'door'] [u'nightclub', u'frustrat', u'trade', u'hour'] [u'deal', u'enterpris', u'impass'] [u'north', u'west', u'countri', u'gold', u'credit', u'union', u'talk'] [u'north', u'west', u'support', u'latham'] [u'booz', u'miss', u'world', u'contest'] [u'draw', u'help', u'origin', u'star'] [u'review', u'final', u'format'] [u'nuclear', u'reactor', u'shut', u'flood', u'franc'] [u'older', u'screen', u'prostat', u'cancer', u'studi'] [u'ontzinc', u'determin', u'pasminco'] [u'opera', u'hous', u'step', u'closer', u'world', u'heritag'] [u'pair', u'accus', u'poki', u'raid', u'face', u'court'] [u'panel', u'offer', u'parksid', u'plan', u'input'] [u'phoenix', u'mcmahon', u'scoop', u'netbal', u'award'] [u'pilot', u'escap', u'ultralight', u'crash'] [u'pirat', u'coach'] [u'polic', u'defend', u'action', u'offic', u'restaur'] [u'polic', u'britain', u'arrest', u'anti', u'terrorist', u'sweep'] [u'polic', u'probe', u'sieg', u'shoot'] [u'polic', u'reveal', u'link', u'randwick', u'doubl', u'murder'] [u'polic', u'seek', u'help', u'cyclist', u'stab'] [u'poor', u'children', u'face', u'literaci', u'problem', u'research'] [u'port', u'recruit', u'prim', u'year'] [u'privat', u'anim', u'sell'] [u'product', u'face', u'court', u'action', u'cancel'] [u'public', u'ask', u'help', u'miss', u'woman'] [u'public', u'urg', u'wari', u'nest', u'croc'] [u'public', u'urg', u'cyclon', u'prepar'] [u'public', u'urg', u'save', u'water', u'restrict', u'loom'] [u'qanta', u'name', u'honour', u'kununurra'] [u'polic', u'investig', u'suspect', u'murder', u'suicid'] [u'raid', u'net', u'illeg', u'plant', u'hormon'] [u'rain', u'hamper', u'test', u'prepar'] [u'raper', u'upbeat', u'shark', u'prospect'] [u'happi', u'region', u'affair', u'offic', u'keep'] [u'region', u'aviat', u'inquiri', u'deliv', u'recommend'] [u'renison', u'remain', u'close'] [u'research', u'effort', u'step', u'grapevin', u'leaf'] [u'reserv', u'bank', u'expect', u'boost', u'rat'] [u'revamp', u'plan', u'port', u'wyndham', u'road'] [u'rural', u'dentist', u'short', u'suppli'] [u'rural', u'despair', u'rate', u'rise'] [u'russia', u'tell', u'stay', u'georgia', u'busi'] [u'russia', u'block', u'current', u'kyoto', u'pact', u'kremlin'] [u'sacr', u'object', u'return', u'indigen', u'elder'] [u'issu', u'scam', u'warn'] [u'opposit', u'highlight', u'hospit', u'wait', u'list'] [u'treasur', u'stand', u'public', u'liabil', u'chang'] [u'scholarship', u'offer', u'island'] [u'school', u'council', u'hit', u'complaint'] [u'scott', u'stick', u'tiger'] [u'search', u'begin', u'north', u'east', u'gold'] [u'second', u'water', u'plan', u'consid', u'fairer'] [u'septemb', u'exhibit', u'open', u'york'] [u'sheep', u'highway', u'truck', u'roll'] [u'shipwreck', u'add', u'museum', u'databas'] [u'rhino', u'sydney', u'holiday'] [u'sixer', u'bullet', u'strong'] [u'korean', u'opposit', u'boycott'] [u'solomon', u'look', u'public', u'servic', u'issu'] [u'south', u'africa', u'name', u'cricket', u'year'] [u'south', u'east', u'deliv', u'tidi', u'perform'] [u'spain', u'reconfirm', u'iraq', u'commit'] [u'storm', u'warn', u'issu'] [u'strong', u'growth', u'figur', u'boost', u'market'] [u'student', u'help', u'water', u'save', u'push'] [u'support', u'longreach', u'airport', u'push'] [u'survey', u'suggest', u'properti', u'slow'] [u'talk', u'delay', u'nativ', u'veget'] [u'tour', u'oper', u'criticis'] [u'thai', u'claim', u'fight', u'drug'] [u'tiger', u'disgust', u'engag', u'hassl'] [u'toad', u'prank', u'leav', u'hundr', u'dark'] [u'toowoomba', u'better', u'christma', u'trade'] [u'tourism', u'council', u'upset', u'landown'] [u'town', u'welcom', u'aviat', u'report'] [u'tractor', u'accid', u'land', u'farmer', u'hospit'] [u'treasur', u'hunter', u'uncov', u'million', u'lose', u'gold'] [u'trio', u'custodi', u'mornington', u'unrest'] [u'truck', u'accid', u'block', u'sydney', u'wollongong', u'highway'] [u'tuna', u'farm', u'plan', u'move', u'closer', u'realiti'] [u'tuna', u'fisher', u'seek', u'manag', u'plan', u'certainti'] [u'assembl', u'meet', u'isra', u'wall'] [u'uncertainti', u'latham', u'abil', u'tackl', u'green'] [u'union', u'worker', u'enterpris', u'bargain'] [u'uni', u'kalgoorli', u'boulder', u'campus', u'get', u'master'] [u'univers', u'win', u'nation', u'award'] [u'deni', u'saddam', u'aid', u'captur'] [u'slide', u'good', u'news', u'aussi', u'dollar'] [u'soldier', u'kill', u'iraq', u'ambush'] [u'auction', u'seiz', u'florida', u'bull', u'semen'] [u'warn', u'terrorist', u'threat', u'kenyan', u'capit'] [u'valencia', u'hold', u'stalem', u'real', u'sociedad'] [u'govt', u'defend', u'emerg', u'phone', u'overload', u'wake'] [u'oppn', u'urg', u'polic', u'stun'] [u'govt', u'say', u'power', u'rush'] [u'minist', u'stand', u'firm', u'mickelberg', u'appeal'] [u'claim', u'calm', u'zealous'] [u'polic', u'investig', u'perth', u'stab'] [u'readi', u'govern', u'iraq', u'presid'] [u'westsid', u'plaza', u'revamp', u'plan', u'reveal'] [u'wheelchair', u'user', u'urg'] [u'whitsunday', u'council', u'back', u'flight', u'plan'] [u'zimbabw', u'treason', u'trial', u'resum'] [u'hawk', u'win', u'way'] [u'action', u'urg', u'grape', u'grower'] [u'afghani', u'return', u'aust', u'student', u'visa'] [u'afghanistan', u'like', u'hell', u'return', u'deporte'] [u'agricultur', u'colleg', u'notic'] [u'traffic', u'defend', u'near', u'miss'] [u'ancient', u'rock', u'tasmania'] [u'anderson', u'announc', u'aviat', u'secur', u'upgrad'] [u'anderson', u'meet', u'legal', u'advis'] [u'asio', u'expect', u'pass', u'senat'] [u'aust', u'popul', u'hit', u'million'] [u'australia', u'bat', u'shower', u'gabba'] [u'australia', u'sign', u'missil', u'shield'] [u'author', u'probe', u'emerg', u'failur'] [u'bank', u'announc', u'role', u'right', u'issu'] [u'bank', u'boss', u'warn', u'rate', u'rise'] [u'bank', u'sell', u'life', u'insur'] [u'bank', u'resourc', u'push'] [u'beatti', u'threaten', u'ettridg', u'claim'] [u'bega', u'tap', u'youth', u'danc', u'fund'] [u'bhopal', u'tragedi', u'turn'] [u'blue', u'green', u'alga', u'lake', u'charm'] [u'bomb', u'squad', u'polic', u'seiz', u'explos', u'border'] [u'brigitt', u'qaeda', u'terrorist', u'lawyer'] [u'british', u'muslim', u'charg', u'conspir', u'shoe'] [u'brit', u'bonus', u'london', u'marathon'] [u'bryant', u'lead', u'laker', u'ralli', u'struggl', u'spur'] [u'bush', u'set', u'elect', u'fundrais', u'record'] [u'educ', u'portfolio', u'colleg'] [u'educ', u'trial'] [u'technolog', u'stop', u'train', u'surf'] [u'shire', u'merger', u'incent'] [u'boost', u'kalgoorli', u'homeless', u'hous'] [u'chang', u'ail', u'health', u'educ', u'servic'] [u'calm', u'clear', u'park'] [u'cannib', u'confess', u'trial', u'shock', u'germani'] [u'chines', u'communist', u'parti', u'member', u'get', u'year'] [u'citi', u'countri', u'divid', u'widen', u'popul', u'drift'] [u'clark', u'ask', u'reinstat'] [u'clark', u'await', u'court', u'decis'] [u'clark', u'convict', u'fin'] [u'captain', u'bird'] [u'communiti', u'farm', u'plan', u'draw', u'good', u'govt', u'respons'] [u'concert', u'band', u'compet', u'nation', u'titl'] [u'cont', u'howler', u'give', u'milan', u'edg', u'italian'] [u'council', u'open', u'mind', u'caneland'] [u'council', u'reject', u'govt', u'report', u'claim'] [u'council', u'urg', u'form', u'valla', u'beach', u'develop', u'plan'] [u'council', u'want', u'brake', u'truck', u'stop', u'plan'] [u'court', u'drop', u'teen', u'rape', u'charg'] [u'crisi', u'club', u'leed', u'repriev'] [u'crow', u'command', u'attent', u'coff', u'screen'] [u'davenport', u'spearhead', u'pacif', u'open'] [u'death', u'spark', u'coron', u'life', u'jacket'] [u'deer', u'loos', u'sydney', u'street'] [u'defenc', u'forc', u'personnel', u'test', u'posit', u'drug'] [u'deregul', u'cost', u'dairi', u'farmer', u'year'] [u'dinosaur', u'remain', u'queensland'] [u'disast', u'declar', u'french', u'flood'] [u'disney', u'rake', u'billion', u'offic'] [u'dodt', u'hop', u'master'] [u'dollar', u'head', u'cent'] [u'probe', u'abort', u'trial'] [u'condit', u'halv', u'valencia', u'orang', u'harvest', u'crop'] [u'educ', u'chief', u'reject', u'dept', u'shake', u'fear'] [u'emerg', u'plan', u'form', u'central', u'west'] [u'employ', u'group', u'face', u'critic'] [u'england', u'fight', u'murali', u'magic'] [u'english', u'club', u'chase', u'rivaldo'] [u'ethanol', u'blend', u'sale', u'sugar', u'region'] [u'ettridg', u'seek', u'probe', u'fraud', u'case'] [u'expect', u'waugh', u'ruthless', u'australian', u'india'] [u'fake', u'letter', u'spark', u'fair', u'trade', u'warn'] [u'farmer', u'hop', u'rain'] [u'fear', u'rate', u'rise', u'toll', u'ail', u'farmer'] [u'fear', u'rat', u'rise', u'hurt', u'region', u'victoria'] [u'fisher', u'reel', u'cray', u'price'] [u'fish', u'group', u'seek', u'reef', u'rezon', u'compo'] [u'fletcher', u'jone', u'union', u'urg', u'discuss', u'loss'] [u'dead', u'southern', u'philippin', u'attack'] [u'fund', u'boost', u'plan', u'labor', u'council'] [u'game', u'lodg', u'owner', u'deni', u'betray', u'tiger', u'privaci'] [u'project', u'pipelin', u'south', u'east'] [u'govt', u'dismiss', u'traffic', u'concern'] [u'govt', u'pledg', u'upgrad', u'navi', u'frigat'] [u'govt', u'studi', u'radioact', u'wast', u'dump', u'feasibl'] [u'green', u'group', u'head', u'court', u'east'] [u'hail', u'storm', u'payout', u'unlik', u'christma'] [u'health', u'care', u'job', u'creat'] [u'health', u'deadlin', u'loom', u'store'] [u'heavi', u'rain', u'caus', u'flood', u'sydney'] [u'henman', u'turn', u'american', u'coach'] [u'hickss', u'lawyer', u'hope', u'meet', u'christma'] [u'higher', u'educ', u'near', u'senat', u'vote'] [u'hockeyroo', u'grind', u'draw', u'argentina'] [u'hospit', u'acknowledg', u'staff', u'shortag'] [u'hous', u'price', u'continu', u'rise'] [u'hous', u'shortag', u'predict', u'seven', u'year'] [u'howard', u'arriv', u'nigeria'] [u'hugh', u'bid', u'tour', u'card'] [u'hunt', u'second', u'rocki', u'croc'] [u'independ', u'senat', u'action', u'criticis'] [u'indigen', u'leader', u'warn', u'abus', u'backlash'] [u'inquiri', u'shoot', u'expect', u'week'] [u'invocar', u'funer', u'chain', u'list'] [u'warn', u'discrimin', u'muslim'] [u'iron', u'mine', u'compani', u'push', u'pilbara', u'expans', u'plan'] [u'japan', u'send', u'troop', u'iraq', u'report'] [u'jetstar', u'benefit', u'unlik', u'outback'] [u'johansson', u'tenni', u'return', u'adelaid'] [u'juri', u'consid', u'biki', u'drug', u'case', u'evid'] [u'katsidi', u'underestim', u'kenyan', u'boxer'] [u'kay', u'order', u'dispos', u'asset'] [u'labor', u'want', u'tobacco', u'compani', u'butt'] [u'langer', u'lead', u'aussi', u'charg'] [u'langer', u'rock', u'india'] [u'latham', u'meet', u'ambassador'] [u'latham', u'name', u'crean', u'strategi', u'post'] [u'latham', u'squar', u'elect', u'campaign'] [u'latham', u'vow', u'reunit', u'break', u'parti'] [u'lazio', u'edg', u'closer', u'quarter', u'final'] [u'leagu', u'kicker', u'face', u'time', u'wast', u'fin'] [u'leed', u'share', u'soar', u'sheikh', u'confirm'] [u'liber', u'pay', u'price', u'cross', u'floor'] [u'liotta', u'take', u'best', u'human', u'video', u'game', u'award'] [u'liverpool', u'crash', u'leagu'] [u'local', u'council', u'name', u'complaint', u'list'] [u'lonard', u'cain', u'share', u'master', u'lead'] [u'lonard', u'master', u'defenc', u'track'] [u'long', u'wait', u'goat', u'abattoir', u'revamp'] [u'lukin', u'port', u'lincoln', u'plan'] [u'get', u'year', u'speed', u'drug', u'make', u'oper'] [u'jail', u'plead', u'guilti', u'incest'] [u'recov', u'lightn', u'strike'] [u'shoot', u'polic', u'brandish'] [u'face', u'wollongong', u'murder', u'committ'] [u'unit', u'target', u'viduka', u'report'] [u'target', u'viduka'] [u'marshal', u'centuri', u'vain', u'pakistan'] [u'marshal', u'island', u'unhappi', u'closur', u'health'] [u'mayor', u'welcom', u'land', u'develop', u'plan'] [u'medic', u'centr', u'test', u'cool', u'tower', u'bacteria'] [u'meet', u'give', u'thumb', u'supermarket', u'plan'] [u'mine', u'leas', u'trial', u'loom', u'year'] [u'area', u'experi', u'athlet', u'role', u'model', u'scheme'] [u'mous', u'genom', u'avail', u'hardback', u'edit'] [u'deliv', u'plan', u'countrylink', u'track'] [u'present', u'countrylink', u'report', u'costa'] [u'murder', u'diplomat', u'bodi', u'arriv', u'japan'] [u'musician', u'hop', u'inspir', u'volunt', u'firefight'] [u'mystic', u'river', u'win', u'season', u'best', u'film', u'award'] [u'nat', u'attack', u'rate', u'rise'] [u'nat', u'lament', u'temporari', u'grain', u'cart', u'permit'] [u'food', u'develop'] [u'polic', u'station', u'open', u'border'] [u'singapor', u'darwin', u'flight', u'announc'] [u'news', u'limit', u'accus', u'costello', u'cover'] [u'asbesto', u'burni', u'hospit'] [u'doubt', u'global', u'warm', u'real'] [u'cut', u'credit', u'union', u'merger', u'plan'] [u'norfolk', u'probe', u'uncov', u'fear', u'intimid'] [u'unveil', u'rule', u'chang'] [u'govt', u'urg', u'chang', u'council', u'rate', u'peg'] [u'call', u'budget', u'surplus', u'spend', u'hous'] [u'economi', u'like', u'suffer', u'rate', u'hike'] [u'number', u'death', u'custodi', u'drop'] [u'offset', u'alpin', u'case', u'resum', u'court'] [u'seven', u'staff', u'abus', u'perth', u'hospit'] [u'paltrow', u'expect', u'babi', u'rock', u'boyfriend'] [u'pick', u'avenu', u'site', u'choos', u'age', u'care', u'facil'] [u'plan', u'water', u'price', u'hike', u'challeng'] [u'elect', u'eighth'] [u'offer', u'mix', u'reaction', u'aust', u'polic', u'deploy'] [u'polic', u'miss', u'warrnambool', u'woman'] [u'polic', u'investig', u'possibl', u'murder', u'suicid'] [u'polic', u'pair', u'honour', u'braveri'] [u'polic', u'probe', u'suspici', u'death', u'launceston'] [u'polic', u'recaptur', u'escape', u'year'] [u'polic', u'seek', u'pair', u'sydney', u'shoot'] [u'polic', u'withdraw', u'motorcyclist', u'speed', u'fin'] [u'port', u'hedland', u'detaine', u'stage', u'protest'] [u'powel', u'launch', u'unoffici', u'middl', u'east', u'peac', u'plan'] [u'powel', u'urg', u'bigger', u'role', u'nato', u'iraq'] [u'probe', u'continu', u'near', u'miss'] [u'prostitut', u'case', u'involv', u'offici'] [u'public', u'urg', u'continu', u'save', u'water'] [u'putin', u'accus', u'rig', u'upcom', u'elect'] [u'coupl', u'win', u'nation', u'famili', u'year', u'award'] [u'properti', u'market', u'unlik', u'slow', u'reiq'] [u'raaf', u'helicopt', u'dramat', u'rescu'] [u'ranger', u'trebl', u'defenc', u'intact'] [u'real', u'stun', u'atletico', u'barca', u'thrash', u'malaga'] [u'cross', u'warn', u'terror', u'erod', u'human'] [u'region', u'migrant', u'servic', u'seek', u'feder', u'fund', u'boost'] [u'report', u'urg', u'rylston', u'council', u'probe'] [u'rise', u'demand', u'salvo', u'servic', u'push'] [u'river', u'cross', u'chang', u'moot', u'fatal', u'accid'] [u'rivkin', u'excus', u'offset', u'court', u'action'] [u'road', u'extens', u'project', u'begin', u'today'] [u'rudd', u'impress', u'latham', u'perform'] [u'rugbi', u'world', u'help', u'boost', u'trade', u'figur'] [u'rumsfeld', u'urg', u'afghan', u'warlord', u'disarm', u'fighter'] [u'govt', u'defend', u'fund', u'offer', u'jetstar', u'base'] [u'salvat', u'armi'] [u'saudi', u'arrest', u'suspect', u'riyadh', u'bomb'] [u'scientist', u'crack', u'caus', u'geomagnet', u'storm'] [u'drive', u'death', u'case', u'near'] [u'seven', u'kill', u'shanghai', u'explos'] [u'shortag', u'valencia', u'orang', u'expect'] [u'turkish', u'kurd', u'send', u'home', u'fail'] [u'korean', u'parliament', u'overrid', u'presidenti', u'veto'] [u'solomon', u'coup', u'leader', u'face', u'fresh', u'charg'] [u'need', u'oper'] [u'springbok', u'coach', u'step', u'report'] [u'storm', u'black', u'home'] [u'storm', u'sweep', u'newcastl'] [u'stronger', u'dollar', u'take', u'toll', u'develop'] [u'suprem', u'court', u'hear', u'medic', u'misconduct', u'appeal'] [u'sydney', u'face', u'anti', u'terror', u'charg'] [u'sydney', u'charg', u'terror', u'law'] [u'sydney', u'radio', u'merger', u'call'] [u'tap', u'convers', u'play', u'mickelberg', u'court'] [u'parliament', u'recognis', u'aborigin', u'owner'] [u'terror', u'suspect', u'lawyer', u'want', u'close', u'watch'] [u'thousand', u'sign', u'petit', u'live', u'export', u'trade'] [u'face', u'court', u'unclassifi', u'porn'] [u'tourism', u'oper', u'buy', u'anim', u'report'] [u'townsvill', u'council', u'consid', u'biofuel'] [u'hospitalis', u'unit', u'block'] [u'genocid', u'court', u'sentenc', u'rwandan', u'life'] [u'uniform', u'need', u'firework', u'sale', u'coron'] [u'say', u'fight', u'mine', u'need', u'million'] [u'wait', u'report', u'iraq', u'weapon'] [u'assign', u'defenc', u'lawyer', u'hick'] [u'athlet', u'board', u'propos', u'life', u'ban', u'steroid'] [u'author', u'launch', u'appeal', u'moussaoui'] [u'creat', u'paramilitari', u'forc', u'iraq'] [u'town', u'edg', u'sniper', u'shoot'] [u'worker', u'work', u'harder', u'report'] [u'polic', u'trial', u'stun', u'gun'] [u'victorian', u'galleri', u'reopen'] [u'viduka', u'back', u'gray', u'leed'] [u'govt', u'consid', u'tourism', u'plan', u'feasibl'] [u'wasim', u'face', u'legal', u'battl'] [u'watchdog', u'find', u'breach'] [u'water', u'storag', u'boost', u'eas', u'restrict'] [u'wooli', u'warehous', u'worker', u'strike'] [u'world', u'oldest', u'soccer', u'club', u'save'] [u'abbott', u'rebuk', u'latham', u'jibe'] [u'aborigin', u'communiti', u'closer', u'healthi'] [u'aborigin', u'women', u'sterilis', u'consent'] [u'accc', u'take', u'legal', u'action', u'real', u'estat', u'group'] [u'economi', u'crippl', u'free', u'trade'] [u'activist', u'conced', u'sheep', u'ship'] [u'aguilera', u'eminem', u'timberlak', u'grammi', u'nod'] [u'forc', u'come', u'boati', u'rescu'] [u'airport', u'group', u'play', u'secur', u'boost', u'cost'] [u'allenbi', u'shoot', u'clear', u'huntingdal'] [u'alzheim', u'leav', u'reagan', u'unabl', u'speak', u'fee'] [u'amnesti', u'call', u'detent', u'centr', u'probe', u'riot'] [u'anger', u'hobart', u'schoolgirl', u'latest', u'visa', u'extens'] [u'anim', u'activist', u'protest', u'sheep', u'export'] [u'anim', u'trial', u'rais', u'hop', u'sar', u'vaccin'] [u'annan', u'honour', u'memori', u'georg', u'harrison'] [u'asic', u'probe', u'nrma', u'complaint'] [u'atsic', u'board', u'clark'] [u'aussi', u'crash', u'rugbi', u'seven'] [u'aussi', u'surviv', u'seven', u'scar'] [u'aust', u'post', u'probe', u'wollongong', u'porn', u'claim'] [u'australian', u'dollar', u'march'] [u'australian', u'advis', u'travel', u'iraq'] [u'ban', u'paper', u'defi', u'mugab', u'appear', u'abuja', u'summit'] [u'bendigo', u'campus', u'consid', u'option'] [u'bass', u'boost', u'plan', u'brogo'] [u'bank', u'pass', u'rat', u'rise'] [u'breaker', u'lose', u'streak'] [u'british', u'dentist', u'award', u'visa'] [u'broadband', u'centr', u'launch', u'melbourn'] [u'broom', u'bomb', u'threat', u'backfir'] [u'bush', u'can', u'steel', u'import', u'duti'] [u'bush', u'draw', u'steel'] [u'specif', u'norfolk', u'intimid'] [u'shark', u'remov', u'metro', u'beach'] [u'go', u'stop', u'centr', u'close'] [u'reject', u'govt', u'wealth', u'privileg'] [u'capsiz', u'australian', u'boat', u'wash'] [u'cathol', u'church', u'remain', u'silent', u'abus', u'case'] [u'chogm', u'open', u'nigeria'] [u'christma', u'tree', u'auction', u'rais', u'money', u'cancer'] [u'claremont', u'introduc', u'develop', u'restrict'] [u'clark', u'appeal', u'atsic', u'commission'] [u'clark', u'ask', u'vanston'] [u'colli', u'motorplex', u'power', u'ahead'] [u'commonwealth', u'leader', u'arriv', u'nigeria', u'chogm'] [u'cooper', u'seek', u'log', u'disput'] [u'cost', u'educ', u'reform', u'creat', u'tier'] [u'council', u'knock', u'valla', u'beach', u'shop', u'complex'] [u'councillor', u'urg', u'support', u'christma', u'spirit'] [u'council', u'share', u'road', u'clean', u'fund'] [u'court', u'consid', u'leski', u'claim'] [u'critic', u'question', u'missil', u'allianc'] [u'david', u'hem', u'die', u'age'] [u'death', u'toll', u'hit', u'russian', u'train', u'blast'] [u'debat', u'continu', u'alma', u'pool'] [u'dinosaur', u'site', u'expect', u'yield', u'find'] [u'disput', u'radioact', u'wast', u'continu'] [u'docker', u'parker', u'veteran', u'list'] [u'want', u'fri'] [u'drought', u'christma', u'sale'] [u'drug', u'squad', u'offic', u'court'] [u'effort', u'help', u'smelli', u'basin'] [u'electr', u'fault', u'leav', u'pool', u'user', u'high'] [u'electr', u'engulf', u'movi', u'world', u'attract'] [u'emerg', u'call', u'handl', u'best', u'report'] [u'esper', u'highlight', u'airport', u'secur', u'cost'] [u'lover', u'turn', u'janitor', u'english'] [u'explos', u'hear', u'kabul', u'rumsfeld', u'visit'] [u'explos', u'hitch', u'sink', u'plan', u'earli', u'scuttl'] [u'extend', u'wast', u'site', u'consult', u'unlik'] [u'farina', u'slam', u'oceania', u'play', u'plan'] [u'investig', u'indonesian', u'murder', u'case'] [u'fear', u'goondiwindi', u'struggl', u'motel', u'bed'] [u'fear', u'road', u'toll', u'rise', u'wake', u'polic', u'budget'] [u'fear', u'secur', u'plan', u'prove', u'cost', u'region'] [u'govt', u'bulli', u'tactic', u'educ'] [u'fergi', u'rest', u'heart', u'treatment'] [u'crew', u'fight', u'blaze', u'theme', u'park'] [u'fish', u'industri', u'enjoy', u'bumper', u'tiger', u'prawn', u'season'] [u'flood', u'alert', u'issu', u'north', u'west'] [u'flood', u'continu', u'ravag', u'southern', u'franc'] [u'liberian', u'presid', u'chase', u'interpol'] [u'charg', u'drug', u'firearm'] [u'iraqi', u'soldier', u'baghdad', u'street'] [u'free', u'trucki', u'rest', u'stop', u'offer'] [u'freight', u'train', u'driver', u'protest', u'offer'] [u'fruit', u'fli', u'grow', u'senil', u'japanes', u'research'] [u'fund', u'manag', u'list'] [u'furious', u'blatter', u'admit', u'soccer', u'dope', u'problem'] [u'futur', u'longest', u'serv', u'doubt'] [u'geraldton', u'student', u'choos', u'gallipoli', u'honour'] [u'good', u'time', u'dairi', u'industri', u'long', u'time'] [u'govt', u'creat', u'child', u'care', u'place'] [u'govt', u'pledg', u'sugar', u'worker', u'support'] [u'govt', u'warn', u'protest', u'sheep', u'action'] [u'grey', u'nurs', u'shark', u'face', u'extinct', u'report'] [u'grow', u'concern', u'nativ', u'veget'] [u'handgun', u'buyback', u'centr', u'visit', u'gold', u'coast'] [u'high', u'farm', u'confid', u'surpris', u'minist'] [u'hindu', u'nationalist', u'domin', u'indian', u'elect'] [u'histori', u'beckon', u'barca', u'real', u'beckham'] [u'hockeyroo', u'hop', u'line'] [u'hollywood', u'movi', u'prove', u'china'] [u'howard', u'blast', u'latham', u'flag', u'stunt'] [u'hugh', u'shin', u'qualifi'] [u'indian', u'cricket', u'chief', u'proceed', u'kale', u'case'] [u'indian', u'writer', u'revel', u'gong'] [u'ingal', u'lose', u'skaif', u'crash', u'appeal'] [u'instant', u'movement', u'flourish'] [u'insur', u'cost', u'rise', u'renmark', u'pageant'] [u'iraq', u'baath', u'parti', u'reemerg', u'guis', u'report'] [u'send', u'forgac', u'worker', u'work'] [u'isra', u'claim', u'iraqi', u'weapon', u'fals', u'report'] [u'jayawarden', u'muralitharan', u'frustrat', u'england'] [u'jimmi', u'littl', u'hit', u'high', u'note', u'art', u'award'] [u'journal', u'call', u'british', u'tobacco'] [u'cape', u'york', u'court', u'conven', u'power'] [u'juri', u'find', u'driver', u'guilti', u'drive', u'death'] [u'kale', u'face', u'hear', u'briberi', u'alleg'] [u'keef', u'amus'] [u'kissing', u'role', u'argentin', u'dirti', u'reveal'] [u'kowanyama', u'hop', u'peac', u'start', u'alcohol'] [u'labor', u'help', u'pass', u'asio'] [u'landhold', u'near', u'paradis', u'upset', u'pressur'] [u'launceston', u'hospit', u'search', u'head'] [u'lead', u'split', u'australian', u'master'] [u'let', u'roar', u'say', u'lazio', u'coach', u'mancini'] [u'lib', u'choos', u'hill', u'challeng'] [u'liverpool', u'injuri', u'jinx', u'strike', u'kewel'] [u'maclean', u'mayor', u'lead', u'council', u'merger', u'protest'] [u'mahatma', u'coat', u'hang', u'test'] [u'accus', u'murder', u'face', u'bail', u'assault', u'charg'] [u'die', u'sawmil', u'mishap'] [u'face', u'murder', u'charg'] [u'market', u'steadi', u'day', u'gain'] [u'mayor', u'air', u'zero', u'wast', u'doubt'] [u'meet', u'discuss', u'highway'] [u'meet', u'hear', u'rise', u'hospit', u'deficit'] [u'encourag', u'visit', u'doctor'] [u'mexican', u'radio', u'execut', u'shoot', u'dead'] [u'middl', u'east', u'truce', u'talk', u'begin', u'egypt'] [u'mildura', u'join', u'airport', u'secur', u'boost'] [u'milton', u'bank', u'fund'] [u'worker', u'entitl'] [u'angri', u'loss', u'school', u'base', u'polic', u'offic'] [u'peopl', u'take', u'advantag', u'cheaper', u'travel'] [u'talk', u'plan', u'cooma', u'hospit', u'oper'] [u'water', u'woe', u'possibl', u'chiltern'] [u'log', u'discoveri', u'forest', u'fear'] [u'test', u'prevent', u'cervic', u'cancer', u'studi'] [u'work', u'bridg', u'highway', u'safeti', u'gap'] [u'nigeria', u'block', u'move', u'secur', u'taylor', u'arrest'] [u'log', u'aborigin', u'rock', u'site'] [u'govt', u'urg', u'recognis', u'rail', u'benefit'] [u'nswrl', u'elect', u'love'] [u'overhaul', u'train', u'secur'] [u'govt', u'deni', u'sterilis', u'claim'] [u'ocean', u'debri', u'threaten', u'marin', u'life'] [u'oceania', u'hand', u'south', u'america', u'play', u'off', u'world'] [u'soldier', u'kill', u'baghdad', u'blast', u'armi'] [u'opec', u'maintain', u'product', u'ceil'] [u'open', u'lead', u'pakistan', u'home'] [u'organ', u'transplant', u'ring', u'bust', u'brazil', u'africa'] [u'oyster', u'claim', u'settl', u'long', u'court', u'battl'] [u'pastor', u'sustain', u'summit', u'hold', u'darwin'] [u'philippin', u'lift', u'death', u'penalti'] [u'play', u'resum', u'gabba'] [u'polic', u'call', u'riot', u'port', u'hedland', u'detent'] [u'polic', u'fear', u'miss', u'elder', u'wife'] [u'polic', u'steal', u'ring', u'man', u'stomach'] [u'polic', u'halt', u'search', u'cyclon', u'traci', u'victim'] [u'polic', u'hunt', u'involv', u'sieg'] [u'polic', u'prepar', u'drink', u'drive', u'crackdown'] [u'polic', u'seiz', u'ecstasi', u'tablet'] [u'polic', u'station', u'attack', u'iraq'] [u'polic', u'crack', u'antisoci', u'behaviour'] [u'polish', u'hurt', u'helicopt', u'land'] [u'polli', u'pressur', u'govt', u'rail', u'rout'] [u'port', u'macquari', u'coff', u'includ', u'airport', u'secur'] [u'powel', u'pressur', u'nato', u'support', u'iraq'] [u'premiership', u'princ', u'pauper', u'head', u'head'] [u'public', u'offer', u'mine', u'plan', u'feedback'] [u'public', u'warn', u'whop', u'cough', u'danger'] [u'nat', u'question', u'tree', u'clear', u'compo'] [u'randel', u'skipper', u'barbarian'] [u'ranger', u'burk', u'tip', u'send'] [u'record', u'passeng', u'rockhampton', u'airport'] [u'reef', u'rezon', u'win', u'tourism', u'support'] [u'refurbish', u'carillion', u'reopen', u'public'] [u'report', u'highlight', u'violent', u'jail'] [u'report', u'highlight', u'wine', u'industri', u'contribut'] [u'research', u'doubt', u'hookah', u'health', u'benefit'] [u'pilot', u'clear', u'safeti', u'concern'] [u'rocki', u'galleri', u'take', u'deliveri', u'work'] [u'rural', u'work', u'popular', u'despit', u'drought', u'colleg', u'say'] [u'rylston', u'council', u'probe', u'detail', u'releas'] [u'sack', u'baxter', u'guard', u'rehir', u'green'] [u'santa', u'helper', u'train'] [u'board', u'decid', u'vietnames', u'news'] [u'drop', u'vietnames', u'news'] [u'serb', u'general', u'get', u'year', u'sarajevo', u'sieg'] [u'singapor', u'sewag', u'recycl', u'plant', u'tourist'] [u'korean', u'opposit', u'end', u'parliamentari', u'boycott'] [u'south', u'african', u'rugbi', u'urg', u'racism', u'probe'] [u'springbok', u'coach', u'straeuli', u'step'] [u'staterail', u'track', u'millennium', u'train'] [u'storm', u'lash', u'mildura'] [u'storm', u'toll', u'central', u'coast'] [u'straeuli', u'embarrass', u'springbok', u'boot', u'camp'] [u'strand', u'sheep', u'prepar', u'export'] [u'studi', u'highlight', u'sunshin', u'coast', u'econom', u'driver'] [u'swim', u'sampl', u'clear', u'trawl'] [u'tear', u'control', u'detent', u'centr', u'riot'] [u'telstra', u'review', u'emerg'] [u'tiwi', u'island', u'learn', u'manag', u'health', u'servic'] [u'suspect', u'arrest'] [u'palestinian', u'expel', u'west', u'bank'] [u'bomb', u'attack', u'convoy', u'baghdad'] [u'kill', u'multi', u'pile'] [u'kill', u'injur', u'head', u'collis'] [u'speed', u'charg', u'releas', u'bail'] [u'travel', u'agent', u'experi', u'life', u'outsid', u'sydney'] [u'chang', u'forc', u'student'] [u'union', u'deleg', u'fin', u'bulli', u'builder'] [u'union', u'want', u'inquiri', u'aust', u'post', u'porn', u'scandal'] [u'renew', u'travel', u'warn', u'lebanon'] [u'say', u'rwandan', u'crime', u'verdict', u'appropri'] [u'warn', u'christma', u'terror', u'attack', u'indonesia'] [u'violent', u'protest', u'rock', u'port', u'hedland', u'detent', u'centr'] [u'virgin', u'blue', u'set', u'issu', u'price', u'list'] [u'virginia', u'farm', u'produc', u'buy', u'kangaringa', u'properti'] [u'watson', u'help', u'tiger', u'respect', u'total'] [u'waugh', u'accus', u'snub', u'team', u'mat'] [u'waugh', u'duck', u'brisban'] [u'wine', u'maker', u'fight', u'cheap', u'booz', u'boom'] [u'white', u'hous', u'chang', u'stori'] [u'wild', u'rabbit', u'extermin', u'program', u'begin'] [u'william', u'hit', u'test', u'omiss'] [u'william', u'releas', u'duti'] [u'wolv', u'striker', u'share', u'honour'] [u'woolworth', u'strike'] [u'woolworth', u'warehous', u'employe', u'strike'] [u'young', u'socceroo', u'brazil'] [u'youth', u'tell', u'respect', u'alcohol', u'law', u'face', u'fin'] [u'zaheer', u'star', u'waugh', u'gabba', u'nightmar'] [u'absent', u'mugab', u'continu', u'domin', u'chogm'] [u'age', u'mother', u'prompt', u'fresh', u'miss', u'person', u'appeal'] [u'airlin', u'warn', u'fuel', u'shortag'] [u'black', u'fail', u'test'] [u'allenbi', u'hunt', u'master', u'titl'] [u'annan', u'powel', u'prais', u'geneva', u'propos'] [u'atsic', u'say', u'govt', u'review', u'find', u'fail'] [u'aust', u'week', u'trade', u'deal'] [u'bankwest', u'deni', u'turn', u'rottnest', u'profit'] [u'bartlett', u'stand', u'asid'] [u'bartlett', u'stand', u'asid', u'alterc'] [u'bartlett', u'wine', u'rage', u'incid'] [u'bartlett', u'wine', u'ruckus', u'high', u'inappropri'] [u'beethoven', u'manuscript', u'fetch'] [u'belgium', u'take', u'legal', u'action', u'hitler', u'wine'] [u'berlin', u'streak', u'univers', u'cut'] [u'bomb', u'explod', u'afghanistan'] [u'bosnian', u'serb', u'general', u'guilti', u'crime'] [u'brack', u'pledg', u'home', u'ownership'] [u'britain', u'lift', u'turkey', u'travel', u'warn'] [u'brown', u'urg', u'social', u'justic', u'platform', u'latham'] [u'bush', u'appoint', u'oilman', u'solv', u'iraq', u'debt'] [u'bush', u'shoot', u'moon', u'elect', u'campaign'] [u'camplin', u'fli', u'high', u'finland'] [u'demolish', u'hous'] [u'carr', u'media', u'monitor', u'astound', u'opposit'] [u'child', u'care', u'fund', u'wont', u'help', u'famili', u'crossin'] [u'chogm', u'leader', u'tackl', u'zimbabw', u'second'] [u'chogm', u'panel', u'deal', u'zimbabw'] [u'chogm', u'reappoint', u'mckinnon', u'head'] [u'cocain', u'ecstasi', u'caus', u'genet', u'mutat'] [u'concert', u'jeopardi', u'ticket', u'sale', u'south'] [u'court', u'order', u'woman', u'compens', u'money'] [u'crawford', u'huntingdal', u'charg'] [u'cricket', u'australia', u'warn', u'william'] [u'deceas', u'japanes', u'diplomat', u'receiv', u'honour'] [u'democrat', u'bartlett', u'claim'] [u'develop', u'reject', u'nepean', u'build', u'claim'] [u'disciplinari', u'tribun', u'solv', u'local', u'govern'] [u'cruis', u'missil', u'attract', u'defenc', u'offer'] [u'duffi', u'victim', u'seek', u'develop', u'stay'] [u'dwarf', u'rumour', u'squash'] [u'england', u'tailend', u'defi', u'murali', u'save', u'test'] [u'explos', u'fear', u'forc', u'recal'] [u'fault', u'suspect', u'movi', u'world'] [u'fergi', u'busi', u'heart', u'scare'] [u'final', u'hop', u'line', u'hockeyroo'] [u'franc', u'favour', u'soccer', u'world', u'draw'] [u'french', u'lotteri'] [u'french', u'hour', u'bombay'] [u'govt', u'plan', u'redirect', u'real', u'estat', u'fund', u'immor'] [u'govt', u'welcom', u'vietnames', u'news'] [u'green', u'join', u'lifetim', u'steroid'] [u'greenpeac', u'protest', u'food'] [u'hawk', u'overthrow', u'king'] [u'high', u'tide', u'rais', u'mosquito', u'bear', u'virus', u'risk'] [u'hockeyroo', u'champion', u'trophi', u'final'] [u'huge', u'protest', u'pension', u'reform', u'itali'] [u'hugh', u'hend', u'roll', u'florida'] [u'india', u'babi', u'food', u'promot'] [u'islam', u'jihad', u'vow', u'attack'] [u'journalist', u'win', u'indonesia', u'prestigi', u'human'] [u'kale', u'face', u'cash', u'cap', u'probe'] [u'kingz', u'horror', u'season', u'continu'] [u'kookaburra', u'striker', u'grab', u'award'] [u'lancast', u'bomber', u'restor', u'glori'] [u'latham', u'lay', u'polici', u'vision'] [u'light', u'approach', u'urg', u'spare', u'bogong', u'moth'] [u'kill', u'fatal', u'accid'] [u'maoist', u'accus', u'abduct', u'student'] [u'mass', u'immunis', u'plan', u'iran'] [u'mcwilliam', u'sign', u'aprilia'] [u'minist', u'run', u'time', u'school', u'fund'] [u'movi', u'world', u'staff', u'question'] [u'mugab', u'repeat', u'threat', u'quit', u'commonwealth'] [u'africa', u'union', u'chief', u'say', u'scrap', u'race', u'quota'] [u'north', u'guid', u'warrior', u'home'] [u'accus', u'stall', u'shark', u'reserv'] [u'corrupt', u'watchdog', u'return', u'seiz', u'document'] [u'gain', u'indigen', u'educ', u'seat'] [u'seek', u'european', u'tourist'] [u'woman', u'sue', u'qanta', u'toilet', u'trip'] [u'dozen', u'hurt', u'blast', u'afghan', u'citi'] [u'palestinian', u'truce', u'talk', u'break'] [u'panel', u'begin', u'chart', u'futur'] [u'paterson', u'rid', u'high', u'hawaii'] [u'back', u'australian', u'compact'] [u'ensur', u'men', u'access', u'alimoni'] [u'poll', u'show', u'labor', u'lead', u'coalit'] [u'powel', u'welcom', u'geneva', u'accord'] [u'prison', u'offic', u'suspend', u'drug'] [u'probe', u'russian', u'train', u'blast', u'begin'] [u'queensland', u'honour', u'local', u'hero', u'hayden'] [u'consid', u'rise', u'student', u'fight'] [u'rail', u'freight', u'deal', u'agre'] [u'rain', u'wreak', u'havoc', u'gabba', u'test'] [u'randel', u'head', u'strong', u'barbarian', u'england'] [u'reef', u'pollut', u'plan', u'receiv', u'mix', u'reaction'] [u'rumsfeld', u'begin', u'iraq', u'visit'] [u'rumsfeld', u'talk', u'field', u'command', u'iraq'] [u'rumsfeld', u'visit', u'troop', u'iraq'] [u'russia', u'blame', u'chechen', u'train', u'blast'] [u'russia', u'tighten', u'secur', u'ahead', u'parliament', u'poll'] [u'polic', u'recruit', u'drive', u'underway'] [u'self', u'govern', u'grant', u'scheme', u'boost', u'art', u'offer'] [u'solomon', u'island', u'refuge', u'return', u'villag'] [u'storm', u'warn', u'decad', u'delug'] [u'land', u'trout'] [u'tasmania', u'fear', u'cut', u'qanta', u'flight'] [u'teacher', u'union', u'unhappi', u'deal'] [u'dead', u'road', u'accid'] [u'tissu', u'transplant', u'limit', u'joint', u'failur'] [u'tobacco', u'industri', u'skirt', u'report'] [u'bush', u'doll', u'readi', u'christma'] [u'townsvill', u'beach', u'cleanest'] [u'traine', u'ranger', u'expand', u'larrakia', u'care'] [u'twickenham', u'capac', u'boost', u'world'] [u'kill', u'fatal', u'accid'] [u'admit', u'nuke', u'deploy', u'falkland'] [u'umpir', u'hair', u'farewel', u'australian', u'cricket'] [u'unexplod', u'ordnanc', u'hous'] [u'unexplod', u'ordnanc', u'prove', u'fals', u'alarm'] [u'delay', u'iraq', u'reconstruct', u'tender'] [u'sniper', u'investig', u'expand'] [u'vail', u'outlin', u'iraqi', u'wheat', u'strategi'] [u'vanston', u'condemn', u'issu', u'student', u'visa'] [u'veteran', u'triathlet', u'celebr', u'birthday'] [u'victoria', u'accus', u'cash', u'grab'] [u'spend', u'eureka', u'parti'] [u'miner', u'fear', u'royalti', u'review'] [u'minist', u'rile', u'electr', u'reform', u'oppon'] [u'warrior', u'cruis', u'victori', u'tiger'] [u'wheatbelt', u'power', u'overnight', u'wind'] [u'youth', u'lure', u'adelaid', u'hors', u'race', u'criticis'] [u'group', u'welcom', u'homeless', u'plan'] [u'adopt', u'reef', u'program', u'launch'] [u'allenbi', u'take', u'master'] [u'ambul', u'union', u'entir', u'happi', u'report'] [u'triomph', u'close', u'renov'] [u'argentina', u'worri', u'british', u'nuke', u'sink', u'falkland'] [u'australian', u'famili', u'mow', u'singapor'] [u'australian', u'sweep', u'world', u'triathlon', u'titl'] [u'australia', u'win', u'champion', u'trophi', u'final'] [u'backpack', u'carri', u'explos'] [u'bartlett', u'apologis', u'democrat', u'elect', u'chanc'] [u'bartlett', u'public', u'apologis', u'assault'] [u'bartlett', u'need', u'famili', u'support', u'latham'] [u'beatti', u'call', u'bartlett', u'resign'] [u'blue', u'bushrang', u'ball', u'thriller'] [u'bomb', u'attack', u'kill', u'soldier', u'wound', u'iraq'] [u'bomb', u'explod', u'northern', u'iraq'] [u'bomb', u'wound', u'afghan', u'citi'] [u'brown', u'urg', u'latham', u'stand', u'forest'] [u'bumper', u'sticker', u'help', u'solv', u'crime'] [u'chanderpaul', u'jacob', u'record', u'stand'] [u'china', u'long', u'send', u'woman', u'space'] [u'chogm', u'leader', u'hop', u'deal', u'zimbabw'] [u'commonwealth', u'maintain', u'pakistan', u'suspens'] [u'commonwealth', u'panel', u'break', u'zimbabw', u'deal'] [u'council', u'dismiss', u'polic', u'fund', u'idea'] [u'cwealth', u'leader', u'superior', u'complex', u'mugab'] [u'cybercop', u'robber', u'grow', u'trickier', u'world'] [u'darwin', u'resid', u'ask', u'beggar'] [u'delay', u'gift', u'deliveri', u'save', u'bangladeshi', u'woman'] [u'democrat', u'admit', u'bartlett', u'wine', u'furor', u'damag'] [u'democrat', u'quiet', u'bartlett', u'stand'] [u'dissid', u'tell', u'cold', u'pant', u'dilemma'] [u'duffi', u'resid', u'concern', u'futur'] [u'engin', u'busi', u'catch'] [u'explos', u'sink', u'hole'] [u'ferrari', u'unveil', u'melbourn'] [u'damag', u'melbourn', u'workshop'] [u'firefight', u'bail', u'flood', u'french', u'town'] [u'furyk', u'streak', u'clear', u'grand', u'slam', u'event'] [u'ganguli', u'dream', u'fire', u'india', u'fightback'] [u'goodby', u'lenin', u'sweep', u'europ', u'film', u'prize'] [u'gunner', u'frustrat', u'leav', u'chelsea'] [u'hend', u'hugh', u'chase'] [u'histor', u'brisban', u'landscap', u'demolish'] [u'wicket', u'like', u'spear', u'heart', u'waugh'] [u'hong', u'kong', u'ask', u'mcdonald', u'withdraw', u'fri'] [u'howard', u'condemn', u'bartlett', u'action'] [u'howard', u'see', u'chang', u'zimbabw'] [u'hundr', u'palestinian', u'protest', u'geneva'] [u'hungri', u'thai', u'eleph', u'raid', u'plantat', u'report'] [u'indonesia', u'sell', u'hundr', u'million', u'dollar'] [u'injuri', u'worri', u'mount', u'celtic'] [u'waiver', u'rais', u'help', u'aborigin', u'home'] [u'ireland', u'take', u'miss', u'world', u'china'] [u'irish', u'miss', u'world', u'begin', u'reign'] [u'israel', u'reject', u'partial', u'palestinian', u'truce'] [u'israel', u'reject', u'palestinian', u'truce', u'offer'] [u'jakarta', u'studi', u'australian', u'missil', u'defenc', u'plan'] [u'juve', u'crash', u'milan', u'spot', u'itali'] [u'kangaroo', u'boss', u'probe', u'hotel', u'theft'] [u'karzai', u'stand', u'afghanistan', u'adopt'] [u'mitchel', u'black', u'coach', u'say', u'poll'] [u'korean', u'fish', u'help', u'fight', u'malaria'] [u'laport', u'wire', u'french', u'decis'] [u'latham', u'pledg', u'live', u'lodg'] [u'return', u'blue'] [u'listen', u'women', u'promis', u'marriag'] [u'macgil', u'take', u'vital', u'wicket', u'australia'] [u'kill', u'shoot'] [u'michael', u'roger', u'win', u'australian', u'cyclist', u'year'] [u'middl', u'east', u'truce', u'talk', u'wrap', u'cairo'] [u'miss', u'rugbi', u'world', u'final', u'ball'] [u'seek', u'support', u'tighten', u'elector'] [u'moscow', u'poll', u'open', u'russia', u'parliamentari', u'elect'] [u'music', u'fan', u'enjoy', u'aussi'] [u'children', u'kill', u'afghan', u'raid'] [u'counter', u'terror', u'chopper', u'take', u'flight'] [u'govt', u'await', u'final', u'hospit', u'report'] [u'reject', u'claim', u'polic', u'budget', u'blow'] [u'author', u'janet', u'frame', u'termin', u'cancer'] [u'origin', u'plot', u'solar', u'revolut'] [u'pakistan', u'open', u'clean', u'sweep'] [u'pakistan', u'win', u'toss', u'elect', u'fifth'] [u'palestinian', u'group', u'agre', u'halt', u'attack', u'israel'] [u'pizza', u'enter', u'bangladesh', u'market'] [u'polic', u'negoti', u'hostag', u'situat'] [u'power', u'grab', u'spot'] [u'power', u'worker', u'burn', u'transform', u'explos'] [u'probe', u'begin', u'alleg', u'assault', u'prison'] [u'polic', u'seek', u'wit', u'smash'] [u'queen', u'elizabeth', u'end', u'nigeria', u'state', u'visit'] [u'real', u'stretch', u'lead', u'histor', u'barca'] [u'research', u'centr', u'doubt', u'benefit', u'fund', u'plan'] [u'richard', u'gere', u'visit', u'jordan', u'peac', u'mission'] [u'right', u'wing', u'polli', u'criticis', u'immigr', u'polici'] [u'rumsfeld', u'leav', u'iraq'] [u'rumsfeld', u'tour', u'iraqi', u'troubl', u'spot'] [u'russia', u'go', u'poll'] [u'russia', u'vote', u'putin', u'expect', u'tighten', u'grip'] [u'saddam', u'coordin', u'resist', u'say', u'tribal', u'leader'] [u'introduc', u'gambl', u'rule'] [u'scientist', u'hone', u'replac', u'joint'] [u'secretari', u'general', u'deni', u'cwealth', u'target', u'zimbabw'] [u'sheep', u'shipment', u'depart', u'meat', u'delay'] [u'kill', u'clash', u'southern', u'india'] [u'priest', u'deacon', u'ordain'] [u'spanish', u'phone', u'booth', u'take', u'finger', u'hostag'] [u'sudan', u'leader', u'kenya', u'civil'] [u'suspici', u'sock', u'spark', u'qaeda', u'alert'] [u'teacher', u'union', u'view', u'govt', u'unhelp'] [u'palestinian', u'shoot', u'gaza'] [u'tour', u'star', u'roger', u'name', u'cyclist', u'year'] [u'train', u'collis', u'injur', u'itali'] [u'transport', u'union', u'work', u'improv', u'standard'] [u'tripl', u'jumper', u'match', u'record'] [u'armi', u'remain', u'iraq', u'transfer'] [u'issu', u'saudi', u'secur', u'warn'] [u'probe', u'death', u'afghan', u'children'] [u'swoop', u'insurg', u'iraqi', u'highway'] [u'vaughan', u'delight', u'england', u'gut', u'great', u'gall'] [u'activist', u'confid', u'duck', u'hunt'] [u'polic', u'crack', u'drunken', u'driver'] [u'victoria', u'land', u'deal', u'chines', u'airlin'] [u'polic', u'investig', u'kojonup', u'incid'] [u'warrior', u'control', u'tiger'] [u'wine', u'maker', u'unhappi', u'cellar', u'door', u'licens'] [u'world', u'final', u'ball', u'go', u'miss'] [u'young', u'socceroo', u'clash'] [u'year', u'charg', u'bakeri', u'robberi'] [u'year', u'dollar', u'float'] [u'kill', u'injur', u'kashmir', u'accid'] [u'abattoir', u'capac'] [u'accc', u'concern', u'dairi', u'inquiri', u'claim'] [u'acoss', u'warn', u'cut'] [u'govt', u'lack', u'commit', u'wast'] [u'opposit', u'claim', u'land', u'price', u'high'] [u'afghan', u'villag', u'disput', u'claim', u'bomb'] [u'albani', u'liason', u'offic', u'fund'] [u'american', u'athlet', u'zero', u'toler', u'stand'] [u'asylum', u'seeker', u'face', u'reject', u'fail'] [u'atsic', u'put', u'rival', u'reform', u'plan'] [u'australian', u'walk', u'stretch', u'fit'] [u'backpack', u'face', u'court', u'explos', u'charg'] [u'bali', u'bomb', u'suspect', u'say', u'want'] [u'basic', u'error', u'cost', u'croc'] [u'blackal', u'prep', u'student', u'complet', u'trial', u'year'] [u'brack', u'defend', u'approach', u'taxi'] [u'broad', u'represent', u'lawrenc', u'hargrav', u'group'] [u'budget', u'surplus'] [u'busi', u'usual', u'receiv'] [u'cairn', u'look', u'resum', u'test', u'career'] [u'council', u'honour', u'board'] [u'cane', u'toad', u'head', u'north', u'kakadu'] [u'chines', u'student', u'sell', u'blood', u'money'] [u'chogm', u'panel', u'deadlock', u'zimbabw'] [u'chogm', u'panel', u'present', u'zimbabw', u'deal', u'leader'] [u'citi', u'prefer', u'ignor', u'aborigin', u'issu'] [u'coco', u'resid', u'prepar', u'cyclon'] [u'coco', u'warn', u'cyclon'] [u'commonwealth', u'keep', u'zimbabw'] [u'commonwealth', u'leader', u'close', u'deal', u'zimbabw'] [u'communiti', u'urg', u'join', u'bridg', u'workshop'] [u'contract', u'paradis', u'work'] [u'costello', u'compar', u'bartlett', u'labor', u'leader'] [u'council', u'back', u'sponsor', u'campaign'] [u'council', u'give', u'condit', u'approv', u'backpack'] [u'council', u'plan', u'upgrad', u'local', u'bridg'] [u'coupl', u'worri', u'time', u'commit', u'studi'] [u'court', u'reject', u'nuclear', u'dump', u'case'] [u'court', u'fast', u'track', u'bond', u'director', u'bail', u'appeal'] [u'crane', u'collaps', u'surfer', u'paradis'] [u'csiro', u'herbarium', u'plan', u'draw'] [u'csiro', u'say', u'ethanol', u'cost', u'benefit', u'report'] [u'darci', u'face', u'court', u'child', u'charg'] [u'defenc', u'scientist', u'refocus', u'missil', u'program'] [u'dodt', u'learn', u'master', u'experi'] [u'dope', u'chief', u'pound', u'savag', u'life', u'propos'] [u'doubt', u'cast', u'futur', u'higher', u'educ', u'fund'] [u'driver', u'time', u'drink', u'drive', u'remind'] [u'drought', u'predict', u'christma', u'sale'] [u'drought', u'releas', u'grip', u'region'] [u'condit', u'spark', u'restrict'] [u'earth', u'move', u'central', u'kimberley', u'resid'] [u'explos', u'eyr', u'peninsula'] [u'farmer', u'cautious', u'optimist', u'nativ', u'titl'] [u'farmer', u'interest', u'tree', u'plant'] [u'farmer', u'warn', u'water', u'restrict'] [u'fast', u'bowler', u'kruger', u'call', u'south', u'africa'] [u'feder', u'urg', u'address', u'fall', u'membership'] [u'feder', u'fund', u'help', u'creat', u'rutherglen', u'health'] [u'fruit', u'fight', u'southern'] [u'fund', u'help', u'bridg', u'safeti', u'concern'] [u'furyk', u'romp', u'shoot', u'victori', u'grand', u'slam'] [u'geraldton', u'greenough', u'offer', u'temporari', u'dig'] [u'gippsland', u'public', u'warn', u'restrict'] [u'gladston', u'redevelop', u'begin'] [u'gloomi', u'time', u'central', u'west', u'busi'] [u'golf', u'winner', u'master', u'play', u'thriller'] [u'govern', u'consid', u'law'] [u'govern', u'set', u'sail', u'submarin', u'deal'] [u'govt', u'retir', u'plan', u'backfir', u'austria'] [u'green', u'group', u'oppos', u'powerlin', u'plan'] [u'green', u'welcom', u'latham', u'forest'] [u'harri', u'board', u'reject', u'rural', u'press'] [u'hec', u'chang', u'region', u'student'] [u'hend', u'cling', u'lifelin'] [u'herbarium', u'closur', u'draw'] [u'hop', u'mandela', u'join', u'eureka', u'celebr'] [u'hospit', u'open', u'revamp', u'age', u'care', u'facil'] [u'howard', u'name', u'pacif', u'year'] [u'huge', u'putt', u'clinch', u'european', u'tour', u'open'] [u'immigr', u'offici', u'question', u'malaysian', u'trio'] [u'india', u'chase', u'unlik', u'gabba'] [u'india', u'chase', u'unlik', u'gabba'] [u'indigen', u'legal', u'glossari', u'spell', u'crime'] [u'rat', u'rise', u'macfarlan'] [u'internet', u'activist', u'jail', u'china'] [u'internet', u'user', u'expect', u'reach', u'million', u'china'] [u'iraqi', u'offic', u'claim', u'hide'] [u'iraqi', u'ministri', u'talk', u'fuel', u'shortag'] [u'month', u'high'] [u'katsidi', u'deliv', u'knockout', u'blow', u'kenyan'] [u'kiwi', u'paceman', u'bond', u'miss', u'pakistan', u'seri'] [u'knee', u'surgeri', u'hockey', u'skirv'] [u'labor', u'target', u'kingsley', u'edward', u'retir'] [u'latham', u'dismiss', u'costello', u'bartlett', u'comparison'] [u'latham', u'unveil', u'frontbench'] [u'leski', u'inquest', u'hear', u'abus', u'claim'] [u'let', u'fair', u'dinkum', u'waugh'] [u'light', u'tunnel', u'inland', u'rail', u'plan'] [u'liverpool', u'knock', u'houllier', u'australia', u'offer'] [u'truck', u'driver', u'seek', u'better', u'condit'] [u'bulk', u'bill', u'rate', u'take', u'toll', u'emerg'] [u'lowi', u'back', u'farina'] [u'macfarlan', u'sorri', u'home', u'buyer'] [u'mackay', u'council', u'target', u'bikeway', u'project'] [u'maestro', u'mancini', u'lift', u'roma'] [u'mayor', u'happi', u'veget', u'law'] [u'mcbride', u'final', u'lift', u'thistl'] [u'meet', u'consid', u'water', u'restrict'] [u'meet', u'tell', u'busi', u'jail', u'benefit'] [u'metro', u'attempt', u'stop', u'strike'] [u'miner', u'say', u'uranium', u'peac', u'protest', u'wrong', u'track'] [u'mine', u'wast', u'plan', u'creat', u'anger'] [u'fund', u'higher', u'educ', u'reform', u'deal'] [u'open', u'revamp', u'colleg'] [u'murdoch', u'eye', u'stake', u'polish', u'group', u'report'] [u'murray', u'clean', u'health', u'dubious'] [u'museum', u'head', u'blame', u'polit', u'demis'] [u'burn', u'unit', u'plan', u'perth'] [u'councillor', u'elect', u'geraldton'] [u'news', u'corp', u'push', u'lower'] [u'poki', u'question', u'gambl', u'rule'] [u'north', u'mackay', u'crash', u'leav', u'injur'] [u'nrma', u'battl', u'escal'] [u'drought', u'condit', u'improv'] [u'river', u'need', u'urgent', u'attent', u'report'] [u'urg', u'calm', u'unlicens', u'child', u'care'] [u'fight', u'rep', u'seat'] [u'offici', u'claim', u'sayyaf', u'senior', u'leader', u'captur'] [u'ormerod', u'doubl', u'fire', u'saint', u'goal'] [u'ozzi', u'osbourn', u'wipe', u'pill', u'report'] [u'palestinian', u'truce', u'talk', u'fail'] [u'park', u'relief', u'south', u'coast', u'driver'] [u'plan', u'coal', u'transport', u'cost'] [u'polic', u'confirm', u'sydney', u'shoot', u'link'] [u'polic', u'consid', u'raid', u'relat'] [u'polic', u'continu', u'sydney', u'shoot', u'probe'] [u'polic', u'deton', u'explos', u'cave'] [u'polic', u'investig', u'road', u'death'] [u'policeman', u'testifi', u'protect', u'wit', u'death'] [u'polic', u'probe', u'denmark'] [u'polic', u'probe', u'fatal', u'train', u'accid'] [u'polic', u'pursu', u'teenag', u'high', u'speed', u'chase'] [u'polic', u'releas', u'video', u'miss', u'bathurst', u'woman'] [u'polic', u'search', u'miss', u'wit'] [u'polic', u'destroy', u'explos', u'gambier', u'cave'] [u'polic', u'unhappi', u'road', u'behaviour'] [u'poor', u'demand', u'cut', u'servic'] [u'powerlin', u'locat', u'unlik'] [u'putin', u'parti', u'ahead', u'russia'] [u'putin', u'parti', u'head', u'elect', u'victori'] [u'protest', u'block', u'east', u'gippsland', u'road'] [u'public', u'price', u'ethanol', u'expans', u'report'] [u'public', u'urg', u'care', u'restrict'] [u'public', u'warn', u'danger', u'restrict', u'begin'] [u'push', u'local', u'firm', u'build', u'contract'] [u'qanta', u'snap', u'strike', u'delay', u'servic'] [u'queensland', u'rail', u'project', u'creat', u'job'] [u'queensland', u'red', u'player', u'dead'] [u'rain', u'offer', u'respit', u'drought', u'persist'] [u'rain', u'spark', u'river', u'monitor'] [u'reserv', u'chief', u'defend', u'rate', u'hike'] [u'resid', u'worri', u'bunburi', u'hospit'] [u'erupt', u'school', u'condit'] [u'russia', u'elect', u'chief', u'say', u'poll', u'valid'] [u'jump'] [u'samurai', u'beat', u'blizzard', u'offic', u'spot'] [u'saudi', u'secur', u'forc', u'clash'] [u'school', u'ignor', u'govern', u'direct'] [u'scientist', u'crack', u'banana', u'worker', u'diseas'] [u'senat', u'advisor', u'threaten', u'expos', u'rort'] [u'offend', u'medic', u'registr', u'cancel'] [u'shake', u'loom', u'clarenc', u'valley', u'local', u'govt'] [u'sheep', u'shipment', u'set', u'cours', u'middl', u'east'] [u'sidelin', u'bartlett', u'look', u'silver', u'line'] [u'singapor', u'stop', u'burmes', u'right', u'forum'] [u'kill', u'injur', u'eastern', u'china', u'accid'] [u'solomon', u'woman', u'charg', u'lesbian', u'offenc'] [u'southern', u'cross', u'consid', u'student'] [u'spanish', u'cyclist', u'jimenez', u'dead'] [u'outlet', u'closur', u'unlik', u'hurt', u'tourism'] [u'georg', u'warn', u'email', u'fraud'] [u'korean', u'compani', u'pull', u'staff', u'iraq'] [u'strong', u'holiday', u'accommod', u'book', u'shoalhaven'] [u'sub', u'servic', u'deal', u'calm', u'troubl', u'water'] [u'support', u'northern', u'rail', u'link', u'gold', u'coast'] [u'surfer', u'escap', u'shark', u'attack'] [u'surplus', u'prove', u'govt', u'wrong', u'tack', u'crean'] [u'sydney', u'polic', u'review', u'women', u'disappear'] [u'sydney', u'shoot', u'label', u'total', u'mad'] [u'taiwan', u'politician', u'say', u'aid', u'wrath'] [u'talk', u'resum', u'teacher', u'disput'] [u'taskforc', u'propos', u'slash'] [u'trucki', u'seek', u'better'] [u'tasmanian', u'hous', u'price', u'drop'] [u'senat', u'push', u'sport', u'venu'] [u'top', u'nation', u'greenpow', u'output', u'report'] [u'teen', u'die', u'road', u'crash', u'near', u'bateman'] [u'arrest', u'embassi', u'pari', u'receiv'] [u'territori', u'declin'] [u'commonwealth', u'plan', u'zimbabw'] [u'thousand', u'flock', u'mine', u'parad'] [u'horror', u'weekend', u'pacif', u'highway'] [u'tourism', u'award', u'recognis', u'riverland', u'malle'] [u'tourist', u'escap', u'surfer', u'crane', u'crash'] [u'townsvill', u'score', u'clean', u'beach', u'titl'] [u'tradit', u'owner', u'nativ', u'titl', u'right'] [u'transport', u'dept', u'rent', u'breath', u'tester'] [u'transvestit', u'potter', u'win', u'british', u'prize'] [u'traralgon', u'host', u'educ', u'hear'] [u'trevor', u'chappel', u'name', u'bangladesh', u'field', u'coach'] [u'turley', u'select', u'labor', u'mayor', u'candid'] [u'critic', u'kill', u'afghan', u'children'] [u'expect', u'jump', u'dubai', u'campus', u'number'] [u'symposium', u'discuss', u'wide', u'rang', u'topic'] [u'team', u'cambodia', u'prepar', u'crime', u'trial'] [u'soldier', u'kill', u'hurt', u'mosul', u'blast'] [u'isra', u'tactic', u'iraq', u'general'] [u'seek', u'injunct', u'livestock', u'protest'] [u'vicent', u'doubl', u'lift', u'valencia'] [u'govt', u'rule', u'local', u'consum', u'offic', u'closur'] [u'polic', u'mark', u'year', u'servic'] [u'vietnames', u'polic', u'detain', u'seven', u'christian'] [u'vike', u'queen', u'exhum'] [u'virgin', u'blue', u'take', u'market'] [u'virgin', u'investig', u'knife', u'scare'] [u'virgin', u'investig', u'knife', u'secur', u'breach'] [u'wagga', u'council', u'consid', u'piggeri', u'plan'] [u'govt', u'puzzl', u'royalti', u'plan', u'opposit'] [u'govt', u'urg', u'focus', u'coral', u'infrastructur'] [u'waugh', u'defend', u'bowl', u'attack', u'draw'] [u'wine', u'associ', u'elect', u'chief'] [u'weed', u'blame', u'mount', u'hors', u'death'] [u'wilki', u'consid', u'watchdog', u'role'] [u'william', u'press', u'test', u'case', u'waca'] [u'yoga', u'popular', u'survey'] [u'young', u'women', u'fork', u'weight', u'loss'] [u'zimbabw', u'final', u'chogm', u'agenda'] [u'zimbabw', u'quit', u'commonwealth'] [u'address', u'salin'] [u'educ', u'consum', u'financi', u'choic'] [u'nudg', u'jone', u'sydney', u'rat'] [u'account', u'appear', u'court', u'fraud', u'charg'] [u'plan', u'comprehens', u'arson', u'studi'] [u'adopt', u'lowest', u'rate', u'record'] [u'alcohol', u'disput', u'break', u'fine'] [u'alcohol', u'manag', u'plan'] [u'black', u'coach', u'mitchel', u'henri'] [u'allenbi', u'edg', u'rank'] [u'accus', u'govt', u'witch', u'hunt'] [u'sharehold', u'vote', u'split'] [u'director', u'quit'] [u'astic', u'chairman', u'disgust', u'state', u'darwin', u'jail'] [u'asylum', u'seeker', u'lawyer', u'see', u'littl', u'hope'] [u'author', u'claim', u'murray', u'river', u'healthier', u'imagin'] [u'ballina', u'council', u'put', u'brake', u'tree', u'chop'] [u'bangladesh', u'diplomat', u'leav', u'iraq', u'email', u'threat'] [u'bartlett', u'hold', u'support', u'slide'] [u'bennett', u'see', u'mackay', u'player', u'origin', u'chanc'] [u'brother', u'ganguli', u'lead', u'exampl'] [u'black', u'challeng', u'cobb', u'debat', u'nuclear', u'issu'] [u'blast', u'kill', u'moscow'] [u'board', u'offer', u'pest', u'control', u'advic'] [u'botox', u'triall', u'treat', u'pelvic', u'pain'] [u'britain', u'count', u'cost', u'iraq'] [u'british', u'citizen', u'treat', u'alien', u'court'] [u'buena', u'vista', u'pianist', u'ruben', u'gonzalez', u'die'] [u'build', u'facelift'] [u'bundaberg', u'identifi', u'ideal', u'stopov', u'point'] [u'burma', u'negoti', u'address'] [u'busi', u'doubt', u'hous', u'price', u'crash'] [u'busi', u'final', u'parliament'] [u'polic', u'resourc', u'recognis', u'region'] [u'port', u'work', u'includ', u'rail', u'fund'] [u'carr', u'fin', u'treasur'] [u'caution', u'creep', u'busi', u'confid'] [u'celebr', u'gather', u'golf', u'classic'] [u'chess', u'offici', u'hope', u'grandmast', u'pull', u'crowd'] [u'chief', u'scientist', u'face', u'conflict', u'claim'] [u'china', u'plan', u'moon', u'probe'] [u'chines', u'serial', u'killer', u'sentenc', u'death'] [u'chogm', u'end', u'crisi', u'mugab', u'steal'] [u'civil', u'right', u'activist', u'sue', u'group'] [u'reconsid', u'child', u'abus', u'law'] [u'coco', u'island', u'resid', u'danger', u'cyclon'] [u'compani', u'start', u'work', u'fire', u'power', u'plant'] [u'conserv', u'council', u'hail', u'court', u'rule'] [u'council', u'agre', u'loan', u'help', u'restor', u'lighthous'] [u'councillor', u'chang', u'sit', u'protect', u'stanc'] [u'council', u'offer', u'cheap', u'land', u'attract', u'busi'] [u'council', u'push', u'termin', u'access', u'boost'] [u'council', u'reject', u'club', u'plea', u'waiver', u'water'] [u'council', u'help', u'clarifi', u'pool', u'law'] [u'countri', u'labor', u'chairman', u'express', u'support'] [u'rival', u'french', u'blood', u'compani'] [u'kirsten', u'miss', u'test', u'west', u'indi'] [u'defenc', u'cadet', u'graduat', u'canberra'] [u'democrat', u'founder', u'call', u'bartlett', u'quit'] [u'democrat', u'meet', u'bartlett', u'futur'] [u'dinosaur', u'creat', u'problem', u'polic', u'forc'] [u'dollar', u'break', u'cent'] [u'doubt', u'remain', u'hall', u'futur'] [u'drain', u'tender', u'call', u'flood', u'manag', u'scheme'] [u'dubbo', u'host', u'orient', u'titl'] [u'economi', u'power', u'despit', u'confid'] [u'elect', u'chief', u'say', u'unit', u'russia', u'win', u'poll'] [u'electr', u'current', u'control', u'game', u'player', u'postur'] [u'england', u'salut', u'world', u'hero'] [u'ethanol', u'propon', u'reject', u'report'] [u'team', u'head', u'north', u'korea'] [u'minist', u'review', u'alburi', u'local', u'govt'] [u'expert', u'push', u'cultur', u'approach', u'suicid'] [u'farmer', u'worri', u'risk'] [u'femal', u'mayor', u'possibl', u'break', u'hill'] [u'firefight', u'probe', u'scrap', u'metal', u'shed', u'blaze'] [u'black', u'wilson', u'crock', u'cricket'] [u'charg', u'britain', u'terror', u'fund'] [u'fundrais', u'hospit', u'exceed', u'target'] [u'gatecrash', u'concern', u'gladston'] [u'bangladeshi', u'visa', u'rule'] [u'gaze', u'goorjian', u'nbls', u'best'] [u'german', u'cannib', u'seek', u'victim'] [u'giant', u'flag', u'melbourn', u'aust'] [u'govt', u'promis', u'famili', u'revamp'] [u'grain', u'harvest', u'condit', u'licenc'] [u'greek', u'terror', u'leader', u'guilti'] [u'guantanamo', u'chaplain', u'charg'] [u'control', u'bodi', u'semi', u'automat', u'handgun'] [u'health', u'premium', u'pressur', u'insur', u'say'] [u'hend', u'graduat', u'school'] [u'hick', u'lawyer', u'confirm', u'inform'] [u'hick', u'lawyer', u'doubt', u'fair', u'trial', u'possibl'] [u'high', u'court', u'hasten', u'appeal'] [u'hospit', u'cleaner', u'deliv', u'ultimatum'] [u'hull', u'say', u'student', u'presid', u'touch'] [u'human', u'surviv', u'mar', u'nasa'] [u'hussain', u'anderson', u'england'] [u'improv', u'indian', u'impress', u'hayden'] [u'injuri', u'upset', u'hockeyroo', u'athen', u'dream'] [u'insur', u'hold', u'genet', u'test', u'requir'] [u'iraq', u'bomb', u'wound', u'troop'] [u'irish', u'tycoon', u'rais', u'stake'] [u'irrig', u'blast', u'water', u'price'] [u'jam', u'brown', u'appoint', u'funk', u'govern'] [u'japan', u'approv', u'iraq', u'mission'] [u'japan', u'halv', u'growth', u'figur'] [u'kimberley', u'nativ', u'titl', u'uncertainti', u'expect'] [u'labor', u'seek', u'detent', u'centr', u'abus', u'probe'] [u'labor', u'urg', u'balanc', u'view', u'forest'] [u'larsson', u'consid', u'premiership', u'option'] [u'latham', u'back', u'zimbabw'] [u'latham', u'boost', u'labor', u'elect', u'hop', u'poll'] [u'latham', u'commit', u'earli', u'childhood', u'educ'] [u'latham', u'commit', u'improv', u'region', u'airport'] [u'latham', u'find', u'poll', u'encourag'] [u'leed', u'deni', u'sheikh'] [u'leski', u'claim', u'question'] [u'let', u'fair', u'dinkum', u'waugh'] [u'lismor', u'council', u'impos', u'limit', u'safeguard'] [u'local', u'govt', u'elect', u'delay'] [u'lonard', u'eye', u'short', u'game'] [u'lyon', u'strength', u'celtic', u'showdown'] [u'major', u'wineri', u'accept', u'award'] [u'escap', u'shoot', u'sydney', u'polic'] [u'jail', u'life', u'murder'] [u'market', u'dip', u'insur', u'stock', u'fall'] [u'melbourn', u'sweat', u'temperatur', u'soar'] [u'merimbula', u'bateman', u'identifi', u'church'] [u'model', u'agenc', u'deni', u'mislead', u'client'] [u'call', u'poki'] [u'fund', u'seek', u'tackl', u'youth', u'crime'] [u'claim', u'agreement', u'coff'] [u'vow', u'continu', u'fight', u'nuclear', u'wast', u'dump'] [u'warn', u'toxic', u'wast', u'dump', u'disastr'] [u'nation', u'leader', u'claim', u'countrylink', u'servic', u'face'] [u'nativ', u'titl', u'disput', u'settl', u'court'] [u'develop', u'plan', u'nobbi', u'headland'] [u'employ', u'program', u'aborigin', u'youth'] [u'outlet', u'fuel', u'lower', u'price'] [u'nrma', u'disput', u'head', u'feder'] [u'club', u'face', u'tough', u'choic', u'south', u'boss'] [u'hike', u'pension', u'transport', u'fare'] [u'join', u'maverick', u'state'] [u'labor', u'hide', u'extra', u'money', u'opposit'] [u'nurs', u'stop', u'work', u'better'] [u'govt', u'scupper', u'missil', u'project'] [u'dead', u'toronto', u'theatr', u'collaps'] [u'catch', u'drink', u'drive'] [u'opposit', u'consid', u'atsic', u'chief', u'futur'] [u'orang', u'rail', u'worker', u'job'] [u'ozzi', u'osbourn', u'injur', u'accid'] [u'pair', u'shoot', u'sydney', u'south', u'west'] [u'palestinian', u'push', u'truce', u'effort'] [u'pasminco', u'seal', u'market', u'deal'] [u'penguin', u'protect', u'develop', u'agenda'] [u'pension', u'price', u'hike', u'expect', u'public'] [u'peopl', u'power', u'help', u'save', u'rail', u'servic'] [u'plan', u'attack', u'wild', u'number'] [u'plan', u'open', u'troubl', u'road'] [u'plaqu', u'mark', u'discoveri', u'anniversari'] [u'polic', u'charg', u'gold', u'coast', u'chase'] [u'polic', u'investig', u'safeti', u'hunter', u'station'] [u'polic', u'mystifi', u'boy', u'disappear'] [u'polic', u'probe', u'suspect', u'tennant', u'creek', u'assault'] [u'polic', u'search', u'home', u'bakeri', u'blaze'] [u'polic', u'crack', u'drink', u'drive'] [u'polic', u'target', u'fatal', u'stop', u'holiday', u'road'] [u'polic', u'win', u'crime', u'battl', u'carr'] [u'popstar', u'slow', u'evalu', u'life'] [u'pork', u'choic', u'aussi'] [u'port', u'record', u'record', u'coal', u'tonnag'] [u'postal', u'worker', u'reject', u'sick', u'leav', u'polici'] [u'properti', u'market', u'cool', u'real', u'estat', u'institut'] [u'public', u'urg', u'calm', u'prosecut'] [u'putin', u'parti', u'win', u'russian', u'parliament', u'poll'] [u'qcoss', u'want', u'budget', u'surplus', u'spend', u'health'] [u'health', u'deni', u'claim', u'cover'] [u'rail', u'line', u'feasibl', u'studi', u'track'] [u'report', u'highlight', u'declin', u'stock', u'theft'] [u'report', u'highlight', u'need', u'hospit', u'emerg', u'cover'] [u'road', u'death', u'baffl', u'polic'] [u'rover', u'boss', u'souness', u'face', u'abus', u'charg'] [u'rspca', u'chief', u'take', u'helm', u'world', u'bodi'] [u'polic', u'stick', u'revolv'] [u'readi', u'reap', u'windfal'] [u'school', u'mainten', u'backlog', u'shock', u'local'] [u'schwarzenegg', u'face', u'defam', u'action'] [u'sharehold', u'decid', u'demerg'] [u'sharehold', u'like', u'support', u'split'] [u'shoalhaven', u'council', u'consid', u'ethanol', u'report'] [u'springborg', u'crack', u'drunken'] [u'state', u'help', u'hous', u'price', u'latham'] [u'strike', u'action', u'christma', u'deliveri'] [u'student', u'walkout', u'celebr'] [u'taiwan', u'cabinet', u'parliament', u'reconsid'] [u'forest', u'protest', u'confront', u'latham'] [u'tasmania', u'edg', u'lead'] [u'work', u'fibr', u'optic', u'cabl'] [u'teacher', u'strike', u'gain', u'staff'] [u'teen', u'face', u'court', u'arm', u'robberi'] [u'tender', u'call', u'desert', u'knowledg', u'work'] [u'quarter', u'million', u'hail', u'england', u'world'] [u'south', u'korean', u'miss', u'dead', u'antarctica'] [u'tiger', u'win', u'fifth', u'straight', u'player', u'award'] [u'tipperari', u'anim'] [u'tourism', u'industri', u'lament', u'lake', u'level'] [u'trade', u'domin', u'china', u'talk'] [u'traffic', u'tunnel', u'blame', u'health', u'problem'] [u'triathlon', u'champ', u'eye', u'athen'] [u'uncertain', u'futur', u'tourism', u'staff'] [u'unemploy', u'rate', u'fall', u'year'] [u'union', u'meet', u'hungarian', u'worker'] [u'unoc', u'face', u'trial', u'burma', u'abus'] [u'refer', u'isra', u'barrier', u'intern', u'court'] [u'concern', u'russian', u'elect', u'result'] [u'congressman', u'guilti', u'manslaught'] [u'dollar', u'batter', u'deficit'] [u'olymp', u'committe', u'press', u'dope', u'document'] [u'reefer', u'refuge', u'lose', u'asylum', u'claim', u'canada'] [u'soldier', u'kill', u'iraqi', u'drive', u'shoot'] [u'unleash', u'avalanch', u'afghanistan'] [u'govt', u'urg', u'duck', u'shoot'] [u'magistr', u'tough'] [u'victoria', u'prepar', u'fight', u'point', u'nepean', u'leas'] [u'keep', u'hopman'] [u'lobster', u'season', u'get', u'better'] [u'warrior', u'go', u'final'] [u'surgeri', u'wait', u'time', u'unchang', u'report'] [u'take', u'control'] [u'water', u'pipe', u'connect', u'tieri', u'capella'] [u'welfar', u'demand', u'rise', u'upper', u'spencer', u'gulf'] [u'weather', u'blame', u'accid'] [u'william', u'spree', u'set', u'waca', u'thriller'] [u'windi', u'suffer', u'fresh', u'injuri', u'blow'] [u'young', u'socceroo', u'head', u'sharjah', u'second', u'round'] [u'zidan', u'call', u'testifi', u'juventus', u'dope', u'trial'] [u'zimbabw', u'urg', u'engag', u'commonwealth'] [u'abbott', u'stand', u'person', u'attack'] [u'abus', u'law', u'undermin', u'aborigin'] [u'donat', u'space', u'east', u'timores', u'embassi'] [u'action', u'group', u'seek', u'airlin', u'help'] [u'afghan', u'children', u'kill', u'second', u'raid'] [u'agforc', u'fight', u'drought', u'battl'] [u'hop', u'secur', u'fund', u'pilot', u'project'] [u'agreement', u'offer', u'health', u'servic', u'boost'] [u'alleg', u'rapist', u'appear', u'court'] [u'hop', u'stop', u'dubbo', u'health', u'chang'] [u'asylum', u'seeker', u'advoc', u'recognis', u'effort'] [u'asylum', u'seeker', u'begin', u'hunger', u'strike'] [u'asylum', u'seeker', u'lip', u'nauru'] [u'athlet', u'heavyweight', u'face'] [u'atsic', u'consid', u'consent', u'law'] [u'atsic', u'seek', u'talk', u'indigen', u'imprison'] [u'aussi', u'adventur', u'strand', u'antarctica'] [u'aust', u'medicin', u'regul', u'establish'] [u'australian', u'school', u'consid', u'jakarta', u'bomb'] [u'australian', u'lose', u'battl', u'bulg', u'survey'] [u'wait', u'zimbabw', u'test', u'tour', u'ahead'] [u'author', u'probe', u'gippsland', u'fire'] [u'bank', u'loss', u'pull', u'share', u'market', u'lower'] [u'bathurst', u'council', u'accept', u'rezon', u'applic'] [u'beachley', u'leav', u'wait', u'record'] [u'bega', u'council', u'approv', u'hous', u'estat'] [u'blackout', u'hit', u'south', u'east'] [u'bodi', u'think', u'miss', u'senior'] [u'british', u'date', u'expect', u'chang'] [u'budget', u'airlin', u'boost', u'north'] [u'bunburi', u'nurs', u'complain', u'roster', u'chang'] [u'bushfir', u'research', u'award'] [u'byron', u'bank', u'tree', u'remov', u'effluent'] [u'cafl', u'confirm', u'match', u'day', u'chang'] [u'carr', u'deni', u'crime', u'comment'] [u'carr', u'renew', u'port', u'kembla', u'transport', u'pledg'] [u'guilti', u'mislead', u'home', u'loan'] [u'celta', u'roll', u'weaken', u'milan', u'ruud', u'equal', u'law'] [u'china', u'send', u'troop', u'liberia'] [u'coal', u'alli', u'predict', u'loss'] [u'cobb', u'reject', u'nuclear', u'wast', u'debat'] [u'coff', u'heart', u'monitor', u'firm', u'list'] [u'commission', u'welcom', u'polic', u'chase', u'report'] [u'commiss', u'welcom', u'govt', u'report'] [u'competit', u'spotlight', u'shine', u'rice', u'sale'] [u'unhappi', u'decis'] [u'council', u'give', u'time', u'repli', u'dept', u'report'] [u'council', u'seek', u'better', u'region', u'rail', u'servic'] [u'council', u'renov', u'memori', u'bath'] [u'prepar', u'major', u'takeov'] [u'currumbin', u'interchang', u'eas', u'traffic', u'woe'] [u'cycl', u'star', u'race', u'launceston'] [u'democrat', u'execut', u'stand', u'bartlett'] [u'earn', u'braveri', u'award', u'bomb', u'bust'] [u'dorset', u'council', u'rais', u'bridg', u'fund', u'fear'] [u'doubt', u'cast', u'pipelin', u'busi', u'case'] [u'drop', u'rat', u'hold'] [u'drought', u'hurt', u'natur', u'tourism'] [u'drought', u'panel', u'tour', u'centr'] [u'east', u'timor', u'accus', u'aust', u'exploit'] [u'east', u'timor', u'ask', u'maintain', u'forc'] [u'eccleston', u'urg', u'stay', u'helm'] [u'electr', u'equip', u'replac', u'follow', u'storm'] [u'england', u'strike', u'earli', u'blow', u'kandi', u'test'] [u'boyfriend', u'give', u'inquest', u'evid'] [u'extra', u'highway', u'overtak', u'lane'] [u'famili', u'shipwreck', u'cuban', u'agent'] [u'farmer', u'lock', u'govt', u'offici'] [u'fatal', u'truck', u'crash', u'block', u'highway', u'traffic'] [u'fear', u'air', u'educ', u'loss'] [u'fear', u'wine', u'suppli', u'spark', u'dump'] [u'februari', u'finish', u'tip', u'council', u'boundari', u'review'] [u'feder', u'split', u'coach'] [u'firefight', u'give', u'research', u'centr'] [u'firefight', u'reunit', u'anniversari'] [u'fitzroy', u'council', u'reject', u'feedlot', u'plan'] [u'fleme', u'doubt', u'pakistan', u'seri'] [u'fmit', u'turmoil', u'continu'] [u'forestri', u'worker', u'push', u'shorter', u'week'] [u'foul', u'play', u'suspect', u'boy', u'disappear'] [u'climber', u'dead', u'mountain'] [u'geraldton', u'centr', u'save', u'live'] [u'giant', u'tree', u'protect'] [u'gibbon', u'drive', u'home', u'bendigo', u'issu', u'latham'] [u'gile', u'lead', u'england', u'fightback'] [u'gladston', u'sever', u'storm'] [u'gore', u'back', u'dean', u'best', u'hope', u'elect'] [u'govt', u'accus', u'inact', u'climat', u'chang'] [u'govt', u'expect', u'opposit', u'water', u'plan'] [u'govt', u'reject', u'latest', u'detent', u'centr', u'abus', u'claim'] [u'govt', u'report', u'record', u'catch', u'illeg', u'fish', u'boat'] [u'govt', u'point', u'nepean', u'construct'] [u'govt', u'warn', u'futur', u'extrem', u'weather'] [u'great', u'white', u'track', u'reveal', u'vital', u'inform'] [u'green', u'welcom', u'wilki', u'fold'] [u'grow', u'popul', u'hospit', u'revamp'] [u'hardcourt', u'test', u'davi', u'swede'] [u'harsher', u'water', u'restrict', u'pipelin'] [u'health', u'award', u'fund', u'indigen', u'research'] [u'health', u'servic', u'take', u'longer', u'bill'] [u'health', u'servic', u'urg', u'chang', u'manag', u'tack'] [u'hmas', u'melbourn', u'compo', u'case', u'get', u'ahead'] [u'hobart', u'waterfront', u'hotel', u'plan', u'releas'] [u'home', u'loan', u'approv', u'slip'] [u'hong', u'kong', u'conduct', u'bird', u'test'] [u'hotel', u'closur', u'upset', u'busi', u'group'] [u'indigen', u'health', u'campaign', u'launch'] [u'indonesia', u'allow', u'cross', u'return', u'aceh'] [u'indonesia', u'anti', u'terror', u'challeng', u'court'] [u'iran', u'allow', u'nuclear', u'check'] [u'iran', u'nobel', u'winner', u'hit', u'foreign', u'polici'] [u'iraqi', u'nation', u'orchestra', u'perform'] [u'israel', u'opt', u'barrier', u'extens'] [u'judg', u'ban', u'legal', u'action'] [u'kirsten', u'link', u'sussex'] [u'labor', u'comment', u'detent', u'indigen', u'issu'] [u'latham', u'push', u'australian', u'republ'] [u'latham', u'campaign', u'trail', u'gippsland'] [u'council', u'slam', u'medic', u'review', u'panel'] [u'lobster', u'price', u'rock'] [u'local', u'govt', u'group', u'seek', u'stock', u'rout', u'chang'] [u'local', u'govt', u'happi', u'nativ', u'titl', u'settlement'] [u'loxton', u'broadband', u'year'] [u'mackay', u'host', u'leagu', u'carniv'] [u'mafia', u'kill', u'itali', u'studi'] [u'maitland', u'councillor', u'plan', u'suburb'] [u'charg', u'firearm', u'threat'] [u'charg', u'melbourn', u'sieg'] [u'kill', u'gold', u'coast', u'build', u'site'] [u'take', u'iron'] [u'counter', u'council', u'critic'] [u'mayor', u'accus', u'compani', u'dupe', u'citi'] [u'mayor', u'defend', u'council', u'financ'] [u'mcgee', u'target', u'tour'] [u'melbourn', u'run', u'super', u'team'] [u'melbourn', u'singl', u'tram', u'network'] [u'memori', u'return', u'fall', u'soldier', u'diari', u'famili'] [u'million', u'spend', u'hospit', u'redevelop'] [u'minist', u'prais', u'make', u'concess', u'fish'] [u'minist', u'warn', u'work', u'continu', u'aquif', u'report'] [u'fear', u'air', u'lake', u'eppalock', u'level'] [u'stamp', u'duti', u'relief', u'govt'] [u'talk', u'launceston', u'hospit', u'servic'] [u'scream', u'meet'] [u'motel', u'plan', u'support', u'draw', u'critic'] [u'motorcycl', u'club', u'break', u'tradit'] [u'maintain', u'push', u'age', u'care', u'home', u'redhead'] [u'mugab', u'decis', u'selfish', u'blair'] [u'mundingburra', u'candid', u'want', u'patient', u'travel'] [u'home', u'loan', u'approv', u'fall', u'octob'] [u'jellyfish', u'speci'] [u'medic', u'centr', u'mullewa'] [u'zealand', u'head', u'iraq', u'mission'] [u'zealand', u'coach', u'year', u'eye', u'fiji', u'hint'] [u'nrma', u'stand', u'continu'] [u'nrma', u'worker', u'deni', u'put', u'motorist', u'risk'] [u'parti', u'divid', u'child', u'law'] [u'nurs', u'continu', u'workload', u'protest'] [u'obes', u'epidem', u'hit', u'indigen', u'australia'] [u'oneil', u'back', u'gregan', u'captainci'] [u'pacif', u'highway', u'open', u'fatal', u'crash'] [u'pakistan', u'reveal', u'board', u'chairman'] [u'founder', u'quiz', u'busi', u'deal'] [u'parcel', u'post', u'worker', u'strike'] [u'parent', u'question', u'son', u'heroin', u'death'] [u'peac', u'prize', u'winner', u'hit'] [u'peanut', u'allergi', u'common', u'studi'] [u'pentagon', u'gag', u'hickss', u'lawyer'] [u'pig', u'upset', u'king', u'croc', u'cat'] [u'pioneer', u'voyeur', u'websit', u'shut', u'seven', u'year'] [u'pirat', u'player', u'play', u'sydney'] [u'polic', u'bust', u'drug', u'ring'] [u'polic', u'inquiri', u'doubl', u'fatal', u'forward'] [u'polic', u'investig', u'theft', u'vandal'] [u'polic', u'look', u'wagin'] [u'polic', u'kava'] [u'polic', u'inquisit', u'german', u'heroin'] [u'polic', u'question'] [u'polic', u'tell', u'statist', u'roster'] [u'popul', u'fall', u'western'] [u'press', u'freedom', u'group', u'bombard', u'summit', u'pirat'] [u'radio', u'nation', u'strike'] [u'rain', u'help', u'eas', u'coast', u'water', u'woe'] [u'rain', u'help', u'stave', u'wilcannia', u'restrict'] [u'rat', u'hike', u'littl', u'impact', u'consum'] [u'recommend', u'improv', u'safeti', u'polic'] [u'resid', u'prepar', u'submiss', u'wast', u'dump'] [u'rotarian', u'upgrad', u'vanuatu', u'hospit'] [u'russia', u'blame', u'chechen', u'moscow', u'bomb'] [u'russian', u'presidenti', u'elect', u'march'] [u'democrat', u'bartlett', u'quit'] [u'hospit', u'staff', u'strike'] [u'santa', u'dream', u'white', u'christma', u'look', u'grim'] [u'scott', u'roll', u'good', u'form', u'championship'] [u'spong', u'busi', u'arnhem', u'land'] [u'second', u'chaplain', u'volunt', u'help', u'polic'] [u'secur', u'put', u'afghan', u'poll', u'doubt'] [u'settler', u'threaten', u'west', u'bank', u'outpost'] [u'silenc', u'gene', u'expect', u'reap', u'reward'] [u'snowsil', u'take', u'race', u'time', u'athen', u'lead'] [u'snowi', u'hydro', u'push', u'cloud', u'seed'] [u'south', u'keep'] [u'speed', u'camera', u'trap', u'cop', u'prank'] [u'squash', u'grinham', u'move', u'hong', u'kong'] [u'lanka', u'bolster', u'bat', u'second', u'test'] [u'struggl', u'leed', u'takeov', u'talk'] [u'student', u'attend', u'nation', u'defenc', u'confer'] [u'survey', u'look', u'shortag', u'skill', u'mine'] [u'sydney', u'research', u'provid', u'fertil', u'hope'] [u'taiwan', u'hold', u'referendum', u'despit', u'rebuk'] [u'hold', u'warrior'] [u'tasmania', u'launch', u'spot', u'campaign'] [u'terror', u'face'] [u'thousand', u'expect', u'enjoy', u'alburi', u'festiv'] [u'charg', u'nightclub'] [u'kill', u'kashmir', u'explos'] [u'toowoomba', u'host', u'world', u'shear', u'titl'] [u'townsvill', u'vigil', u'recognis', u'human', u'right'] [u'tree', u'clear', u'trial', u'area', u'name'] [u'fish', u'boat', u'catch', u'arnhem', u'land'] [u'confer', u'clear', u'forest', u'hurdl', u'kyoto'] [u'manag', u'iraq', u'oper', u'cyprus'] [u'offici', u'iraq', u'envoy'] [u'claim', u'upper', u'hand', u'iraq'] [u'link', u'isra', u'militari', u'tactic'] [u'prosecutor', u'jackson', u'case', u'dismiss', u'memo'] [u'reject', u'north', u'korea', u'nuclear', u'deal'] [u'reject', u'north', u'korea', u'nuclear', u'demand'] [u'shut', u'franc', u'germani', u'iraqi', u'contract'] [u'soldier', u'kill', u'iraq'] [u'question', u'livestock', u'theft', u'figur'] [u'govern', u'mean', u'spirit', u'transport'] [u'victorian', u'cancer', u'surviv', u'rate', u'rise'] [u'govt', u'hatch', u'plan', u'deregul'] [u'crime', u'tribun', u'saddam', u'absentia'] [u'warn', u'ahead', u'season'] [u'warrior', u'tiger', u'play', u'thrill', u'draw'] [u'warrior', u'tiger', u'play', u'thrill'] [u'water', u'tariff', u'price', u'polici', u'review'] [u'view', u'nanni', u'state'] [u'webber', u'champ', u'minardi', u'boss', u'stoddart'] [u'weekend', u'rain', u'miss', u'catchment'] [u'wilki', u'undecid', u'polit', u'career'] [u'william', u'factor', u'offer', u'lift', u'buchanan'] [u'worker', u'disput', u'compulsori', u'drug', u'test'] [u'wound', u'israel', u'blast'] [u'adelaid', u'strike', u'cancel'] [u'agforc', u'air', u'stock', u'rout', u'chang', u'fear'] [u'agreement', u'bolster', u'marin', u'research'] [u'servic', u'promis', u'econom', u'benefit'] [u'launch', u'council', u'candid'] [u'ambul', u'servic', u'respond', u'quicker', u'time'] [u'amrozi', u'refus', u'testifi', u'bali', u'case'] [u'ancient', u'javanes', u'coin', u'wash', u'london'] [u'rank', u'uni'] [u'armstrong', u'mountain', u'hera', u'jump', u'ship'] [u'atsb', u'issu', u'report', u'plane', u'crash'] [u'atsic', u'commission', u'support', u'abus', u'legisl'] [u'atsic', u'question', u'indigen', u'jail', u'polici'] [u'auditor', u'general', u'hear', u'nat', u'highway', u'blowout', u'claim'] [u'aussi', u'mull', u'adelaid', u'pace', u'attack'] [u'aussi', u'softbal', u'upset', u'japan'] [u'australia', u'commit', u'polic'] [u'australia', u'consid', u'polic', u'assist'] [u'bank', u'allow', u'scrap', u'eftpo', u'wholesal', u'fee'] [u'bank', u'resourc', u'push', u'share', u'market', u'lower'] [u'barn', u'target', u'athen', u'select'] [u'bartlett', u'tell', u'pont'] [u'biologist', u'track', u'movement', u'frog', u'speci'] [u'blaze', u'rag', u'glenorchi', u'timber', u'yard'] [u'charg', u'drive', u'offenc'] [u'breakthrough', u'murder', u'case'] [u'bush', u'congratul', u'putin', u'elect', u'result'] [u'bushfir', u'threaten', u'camp', u'grind'] [u'calm', u'spill', u'lake', u'flood', u'fear'] [u'campaign', u'continu', u'improv', u'highway'] [u'campaign', u'warn', u'illeg', u'rabbit'] [u'cane', u'toad', u'kill', u'snake'] [u'explos', u'rock', u'italian', u'town'] [u'cash', u'flow', u'ansett', u'worker'] [u'catchment', u'benefit', u'fund', u'boost'] [u'chelsea', u'target', u'juventus', u'midfield', u'nedv'] [u'chief', u'justic', u'recognis', u'palm', u'justic', u'group'] [u'chines', u'banker', u'jail', u'corrupt'] [u'church', u'unclear', u'inmat', u'futur'] [u'plan', u'iraqi', u'domest', u'servic', u'report'] [u'citigold', u'look', u'charter', u'tower', u'expans'] [u'citi', u'socceroo', u'get', u'date', u'duke'] [u'communiti', u'correct', u'worker', u'protest'] [u'concern', u'rice', u'market', u'reform'] [u'communiti', u'watch'] [u'construct', u'bargara', u'unit', u'block', u'start'] [u'correct', u'worker', u'stage', u'protest'] [u'costello', u'scuttl', u'backbench', u'plan'] [u'council', u'hope', u'tarcutta', u'truck', u'stop'] [u'councillor', u'dismiss', u'consult', u'water', u'report'] [u'councillor', u'fear', u'hous', u'impact', u'plant'] [u'council', u'maintain', u'polit'] [u'council', u'prais', u'tourism', u'polici'] [u'council', u'consult', u'public', u'trade', u'hour'] [u'council', u'urg', u'livestock', u'plan', u'stronger'] [u'council', u'want', u'return', u'dubbo', u'elector'] [u'crew', u'rescu', u'blaze', u'trawler'] [u'crew', u'battl', u'bushfir', u'tasman', u'peninsula'] [u'offer', u'scienc', u'cours'] [u'dalai', u'lama', u'stress', u'import', u'india', u'pakistan'] [u'defam', u'action', u'latham', u'drop'] [u'develop', u'consid', u'legal', u'port', u'nepean', u'block'] [u'domest', u'violenc', u'accept', u'china', u'poll'] [u'dummi', u'bid'] [u'dust', u'action', u'group', u'signal', u'court', u'action'] [u'earthquak', u'shake'] [u'embattl', u'singer', u'kelli', u'win', u'award'] [u'england', u'coach', u'fletcher', u'prais', u'strength'] [u'england', u'crumbl', u'muralitharan', u'controversi'] [u'warn', u'swim', u'beach'] [u'explor', u'offic', u'basin', u'ahead'] [u'famili', u'shock', u'babi', u'killer', u'sentenc'] [u'farmer', u'lament', u'powerlin', u'plan'] [u'farmer', u'slow', u'seek', u'drought'] [u'feder', u'delay', u'coach', u'choic'] [u'equip', u'pass', u'date'] [u'flea', u'bite', u'gogh', u'sell', u'million'] [u'fleme', u'miss', u'pakistan', u'seri', u'hernia'] [u'fleme', u'test', u'fit', u'wellington', u'match'] [u'fmit', u'board', u'member', u'nomin', u'vacanc'] [u'nation', u'candid', u'mayor'] [u'child', u'charg', u'drop'] [u'french', u'adopt', u'doggi', u'bag', u'wine'] [u'fuel', u'suppli', u'freez', u'strand', u'australian', u'pilot'] [u'german', u'look', u'love', u'wrong', u'place'] [u'germani', u'free', u'septemb', u'accus'] [u'giant', u'tree', u'death', u'prompt', u'nation', u'park'] [u'girl', u'miss', u'educ', u'stake', u'bodi'] [u'bartlett', u'chanc', u'rudd', u'say'] [u'global', u'warm', u'blame', u'extrem', u'weather'] [u'goldfield', u'prison'] [u'govt', u'consult', u'drought', u'affect', u'farmer'] [u'govt', u'urg', u'fund', u'respit', u'care'] [u'govt', u'urg', u'push', u'tougher', u'law'] [u'grinham', u'squash', u'quarter'] [u'har', u'race', u'chief', u'defend', u'restructur'] [u'health', u'servic', u'worri', u'union', u'ban', u'stall'] [u'help', u'hand', u'break', u'hill', u'har', u'race'] [u'hope', u'water', u'flow', u'studi'] [u'hop', u'high', u'polic', u'beat', u'crime'] [u'hous', u'boom', u'continu', u'mackay'] [u'hungri', u'hayden', u'prowl', u'adelaid'] [u'hungri', u'hayden', u'make', u'obsess'] [u'see', u'clear', u'profit'] [u'indigen', u'talk', u'irrig', u'plan'] [u'industri', u'factori', u'connect', u'natur'] [u'intern', u'student', u'head', u'poatina'] [u'jackson', u'return'] [u'japan', u'chase', u'free', u'trade', u'asia'] [u'jehovah', u'convent', u'begin', u'sydney'] [u'jobless', u'rate', u'steadi'] [u'journalist', u'defend', u'decis', u'enter', u'aborigin'] [u'kangaroo', u'theft', u'probe', u'stall'] [u'kartik', u'answer', u'indian'] [u'kimmorley', u'keep', u'cronulla', u'captainci'] [u'kingfish', u'farm', u'locat', u'caus', u'concern'] [u'labor', u'dismiss', u'vote', u'rig', u'claim'] [u'landcar', u'effort', u'southern', u'farmer'] [u'latham', u'make', u'region', u'commit'] [u'latham', u'republ', u'plan', u'viabl'] [u'legless', u'zanardi', u'race', u'tour', u'season'] [u'leski', u'inquest', u'hear', u'memori', u'laps'] [u'live', u'export', u'trade', u'talk', u'begin', u'riyadh'] [u'local', u'industri', u'benefit', u'film', u'success'] [u'long', u'serv', u'councillor', u'honour', u'mudge'] [u'lucki', u'lyon', u'lead', u'final', u'team'] [u'machineri', u'spar', u'cost', u'blaze'] [u'mackay', u'legal', u'centr', u'close'] [u'madigan', u'work', u'galleri', u'entranc'] [u'injur', u'robbi', u'william', u'concert'] [u'kill', u'fatal', u'crash'] [u'mansfield', u'saleyard', u'jeopardi'] [u'manuka', u'site', u'redevelop'] [u'martin', u'stand', u'consent', u'law'] [u'mayor', u'reject', u'investig'] [u'mayor', u'stand', u'delay', u'koala', u'plan'] [u'north', u'coast', u'research', u'bushfir', u'centr'] [u'miner', u'resourc', u'export', u'rise'] [u'miner', u'boost', u'effici', u'amidst', u'loom', u'loss'] [u'minist', u'inspect', u'gladston', u'storm', u'damag'] [u'minist', u'reject', u'highway', u'blowout', u'claim'] [u'mogo', u'play', u'role', u'boost', u'firefight', u'protect'] [u'case', u'confirm', u'whoop', u'cough', u'outbreak'] [u'encourag', u'need', u'trade', u'minist', u'say'] [u'unimpress', u'anarchi', u'cours'] [u'nation', u'energi', u'regul', u'establish'] [u'nation', u'museum', u'decis', u'racist', u'dodson'] [u'nat', u'question', u'ethanol', u'report'] [u'nat', u'irrig', u'report', u'govt'] [u'pakistan', u'cricket', u'chief', u'embrac', u'india'] [u'power', u'station', u'come', u'line'] [u'newspap', u'competit', u'breach'] [u'zealand', u'rugbi', u'ball'] [u'council', u'opposit', u'flourid', u'water', u'propos'] [u'nrma', u'talk', u'break'] [u'govt', u'depart', u'blame', u'slow', u'land'] [u'health', u'complaint', u'head', u'roll'] [u'nurs', u'rise'] [u'trucki', u'threaten', u'christma', u'strike'] [u'nurs', u'tell', u'malpractic', u'death'] [u'nurs', u'home', u'staff', u'assur'] [u'oarsom', u'pair', u'olymp', u'fast', u'track'] [u'democrat', u'contest', u'poll'] [u'opera', u'hous', u'protest', u'case', u'adjourn'] [u'pakistan', u'razzaq', u'miss', u'start', u'zealand', u'tour'] [u'pampl', u'grab', u'lead'] [u'parcel', u'deliveri', u'strike'] [u'peopl', u'encourag', u'rail', u'servic'] [u'plan', u'build', u'industri', u'cooper'] [u'pleas', u'iraqi', u'rebuild', u'contract'] [u'stand', u'frontbench', u'attack', u'latham'] [u'polic', u'face', u'action', u'prank'] [u'polic', u'investig', u'holiday', u'camp', u'fire'] [u'polic', u'search', u'miss'] [u'polic', u'target', u'water', u'safeti'] [u'polic', u'urg', u'christma', u'road', u'safeti'] [u'propos', u'bail', u'difficult'] [u'public', u'ask', u'water', u'save', u'idea'] [u'queensland', u'spend', u'renov'] [u'radar', u'help', u'coastal', u'town', u'cyclon', u'readi'] [u'ravensthorp', u'health', u'centr', u'oper'] [u'reid', u'hand', u'sydney', u'wildcard'] [u'rembrandt', u'steal', u'heist'] [u'report', u'sydney', u'hospit', u'claim'] [u'resurg', u'indian', u'threaten', u'adelaid'] [u'tinto', u'announc', u'iron', u'boost'] [u'riverland', u'support', u'work', u'dole', u'scheme'] [u'road', u'group', u'upbeat', u'latham', u'deer', u'park', u'comment'] [u'safeti', u'audit', u'disrupt', u'construct', u'work'] [u'govt', u'appeal', u'wast', u'dump', u'decis'] [u'salvo', u'ban', u'detent', u'centr', u'blame'] [u'quiet', u'achiev', u'say'] [u'schumach', u'stronger', u'year', u'say', u'todt'] [u'senior', u'collin', u'charg'] [u'shortlist', u'announc', u'springbok'] [u'sid', u'downturn', u'natur', u'doctor', u'say'] [u'singer', u'husband', u'charg', u'domest', u'violenc'] [u'situat', u'critic', u'timor', u'asylum', u'seeker'] [u'korea', u'investig', u'claim', u'north', u'nuke', u'activ'] [u'smoke', u'longreach', u'club'] [u'smoke', u'bomb', u'prank', u'mar', u'danc'] [u'south', u'africa', u'pull', u'plug', u'santa', u'claus', u'mail'] [u'spanish', u'coastguard', u'save', u'wild', u'boar', u'bacon'] [u'spectat', u'warn', u'steer', u'clear', u'dolphin'] [u'spread', u'plant', u'diseas', u'caus', u'concern'] [u'stem', u'cell', u'creat', u'fertil', u'sperm', u'mice'] [u'storm', u'toll', u'south', u'east', u'forest'] [u'swan', u'hill', u'council', u'reject', u'wast', u'dump', u'propos'] [u'tatiana', u'head', u'north', u'search', u'gold'] [u'teacher', u'disput', u'soon', u'resolv'] [u'time', u'run', u'elector', u'boundari'] [u'tourist', u'urg', u'fruit', u'fli', u'riverland'] [u'tradit', u'healer', u'launch', u'book'] [u'trust', u'seek', u'govt', u'action', u'woodsmok', u'pollut'] [u'twin', u'peak', u'director', u'rais', u'money', u'medit'] [u'union', u'head', u'guard', u'safe', u'hous'] [u'union', u'welcom', u'alloc', u'registri'] [u'unit', u'coach', u'urg', u'better', u'decis', u'make'] [u'unit', u'doubl', u'nistelrooy', u'chequ'] [u'plan', u'militari', u'base', u'eastern', u'europ'] [u'refug', u'fight', u'save', u'abus', u'eleph'] [u'sooth', u'russian', u'concern', u'troop', u'movement'] [u'issu', u'tuna', u'warn'] [u'ventolin', u'inhal', u'recal'] [u'govt', u'probe', u'flood', u'fraud', u'claim'] [u'hospit', u'complic', u'alarm', u'say'] [u'victorian', u'chief', u'back', u'judgment'] [u'violenc', u'common', u'health', u'care', u'worker', u'studi'] [u'violenc', u'rock', u'middl', u'east'] [u'govt', u'plan', u'greenhous', u'gas'] [u'wall', u'steadi', u'ahead', u'econom', u'data'] [u'water', u'alloc', u'agforc', u'support'] [u'water', u'crisi', u'microscop'] [u'west', u'indi', u'gambl', u'greenhorn'] [u'westpac', u'prais', u'latest', u'rat', u'rise'] [u'wind', u'bring', u'power', u'line', u'tree'] [u'windsor', u'urg', u'state', u'challeng', u'liquor', u'plan'] [u'wollongong', u'council', u'revis', u'pool', u'databas'] [u'york', u'water', u'suppli', u'increas'] [u'youth', u'unemploy', u'drop', u'year'] [u'zaheer', u'doubt', u'adelaid', u'test'] [u'zimbabw', u'offici', u'stand', u'dictat', u'comment'] [u'zimbabw', u'parliament', u'back', u'commonwealth', u'pull'] [u'honour', u'braveri', u'bali'] [u'academ', u'reject', u'cours', u'anarchi', u'claim'] [u'accc', u'find', u'condit', u'mislead'] [u'agassi', u'serena', u'defend', u'aust', u'open', u'titl'] [u'angler', u'fin', u'shark', u'fish', u'breach'] [u'angler', u'warn', u'reef', u'law'] [u'antarct', u'adventur', u'resist', u'move', u'send', u'home'] [u'antarct', u'voyag', u'discoveri', u'hunt', u'speci'] [u'armi', u'band', u'leader', u'demot', u'challeng', u'order'] [u'asian', u'nation', u'declar', u'common', u'communiti'] [u'make', u'strong', u'gain'] [u'attack', u'ivori', u'coast', u'televis', u'leav', u'dead'] [u'attempt', u'abduct', u'disturb', u'polic'] [u'aussi', u'pilot', u'secur', u'fuel', u'antarctica'] [u'aussi', u'squash', u'sister', u'knock', u'world', u'open'] [u'australia', u'bat'] [u'australia', u'take', u'session', u'honour'] [u'australia', u'win', u'toss', u'elect'] [u'bartlett', u'resum', u'duti'] [u'bateman', u'perman', u'polit', u'offic'] [u'beatti', u'backtrack', u'latham', u'comment'] [u'beatti', u'deni', u'approach', u'minist'] [u'rush', u'expect', u'crop', u'submiss'] [u'blair', u'fight', u'british', u'freedom', u'summit'] [u'boyfriend', u'charg', u'ryan', u'disappear'] [u'break', u'hill', u'jobless', u'rate', u'rise'] [u'build', u'evacu', u'furnitur', u'factori'] [u'bush', u'defend', u'decis', u'iraq', u'contract'] [u'feder', u'support', u'highway', u'revamp'] [u'campaign', u'fail', u'stop', u'agricultur', u'colleg', u'closur'] [u'cardiologist', u'announc', u'futur'] [u'carr', u'defend', u'handl', u'hospit', u'crisi'] [u'carr', u'woodlawn', u'worker', u'partial'] [u'chariti', u'report', u'christma', u'shortag'] [u'chicken', u'farm', u'boost', u'safeti', u'fine'] [u'citi', u'face', u'manchest', u'derbi', u'doom'] [u'colleg', u'pray', u'miss', u'teenag'] [u'cooma', u'monaro', u'council', u'reject', u'super', u'council', u'plan'] [u'copi', u'aust', u'india', u'prepar', u'team'] [u'council', u'decis', u'lead', u'hotel', u'reopen'] [u'councillor', u'saleyard', u'leas'] [u'council', u'think', u'transport', u'plan', u'right', u'track'] [u'court', u'find', u'teen', u'guilti', u'esper', u'murder'] [u'court', u'order', u'real', u'estat', u'agent', u'damag'] [u'croc', u'hope', u'continu', u'win', u'way'] [u'cuban', u'hijack', u'plane', u'reach'] [u'dairi', u'farmer', u'parmalat', u'assur'] [u'deal', u'save', u'pictur', u'garden'] [u'democrat', u'announc', u'soon'] [u'deport', u'businessman', u'jail', u'singapor'] [u'dept', u'angri', u'deliber', u'fire'] [u'dept', u'announc', u'health', u'servic', u'arrang'] [u'dept', u'confirm', u'sourc'] [u'diver', u'retriev', u'rock', u'climber', u'bodi'] [u'deni', u'meddl', u'leski', u'case'] [u'docker', u'revers', u'financi', u'woe'] [u'doubt', u'cast', u'gold', u'price', u'forecast'] [u'break', u'barrier'] [u'downer', u'back', u'iraq', u'contract'] [u'drought', u'dri', u'abattoir', u'number'] [u'durham', u'sign', u'akhtar', u'second', u'season'] [u'die', u'win', u'workplac', u'compo', u'claim'] [u'earthquak', u'look'] [u'entri', u'seek', u'cunnamulla', u'fella', u'competit'] [u'exempt', u'like', u'free', u'state'] [u'exot', u'weed', u'travel', u'shoe'] [u'expand', u'firm', u'urg', u'consid', u'local'] [u'farmer', u'seek', u'recognit', u'terracotta', u'warrior'] [u'fear', u'patron', u'contract', u'hepat'] [u'fear', u'train', u'servic', u'derail', u'truck', u'job'] [u'festiv', u'mark', u'cultur', u'centr', u'open'] [u'fewer', u'custom', u'leav', u'dark', u'payment'] [u'film', u'maker', u'apologis', u'lizard', u'smuggl'] [u'firefight', u'battl', u'fortescu', u'blaze'] [u'gene', u'chimp', u'post'] [u'flyer', u'order', u'repar'] [u'priest', u'appeal', u'abus', u'sentenc'] [u'worldcom', u'chief', u'die'] [u'forum', u'focus', u'cross', u'border', u'multicultur', u'issu'] [u'forum', u'offer', u'voic', u'dubbo', u'youth'] [u'member', u'join', u'council'] [u'fund', u'child', u'health', u'wait', u'list'] [u'global', u'warm', u'affect', u'stock'] [u'good', u'time', u'ahead', u'townsvill', u'race'] [u'govt', u'encourag', u'bud', u'idol'] [u'govt', u'firm', u'face', u'sew', u'protest'] [u'govt', u'float', u'open', u'freight', u'rail', u'link'] [u'govt', u'launch', u'indigen', u'tourism', u'program'] [u'govt', u'prepar', u'challeng'] [u'grain', u'receiv', u'year'] [u'grigorieva', u'hop', u'coast', u'help', u'secur', u'olymp'] [u'grigorieva', u'vault', u'coast'] [u'hail', u'storm', u'link', u'climat', u'chang'] [u'health', u'servic', u'announc', u'budget', u'surplus'] [u'hear', u'smell', u'separ', u'chimp'] [u'high', u'court', u'allow', u'indefinit', u'jail', u'appeal'] [u'hodg', u'take', u'extend', u'leav'] [u'hospit', u'revamp', u'plan', u'push', u'onward'] [u'hundr', u'quit', u'iraqi', u'armi', u'disput'] [u'hussey', u'captain', u'australia', u'india'] [u'hybrid', u'car', u'antarctica'] [u'iaea', u'chief', u'tell', u'israel', u'nuke'] [u'flight', u'repair', u'problem', u'nasa'] [u'injuri', u'windi', u'deep', u'say', u'logi'] [u'insur', u'woe', u'snuff', u'christma', u'candl'] [u'introduc', u'fish', u'threaten', u'frog', u'popul'] [u'iranian', u'face', u'deport', u'lose', u'case'] [u'italian', u'senat', u'pass', u'strict', u'fertil', u'law'] [u'italian', u'senat', u'pass', u'tough', u'fertil', u'law'] [u'jagger', u'receiv', u'knighthood'] [u'japan', u'asean', u'nation', u'meet'] [u'japan', u'work', u'south', u'east', u'asian', u'tie'] [u'suspect', u'deport', u'indonesia'] [u'fin', u'injuri'] [u'king', u'track', u'pig', u'upset', u'bullet'] [u'koperberg', u'meet', u'council', u'settl'] [u'leski', u'inquest', u'hear', u'disput', u'evid'] [u'liquor', u'accord', u'deliv', u'cask', u'chang'] [u'charg', u'fraud'] [u'charg', u'sydney', u'shoot'] [u'extradit', u'theft', u'charg'] [u'mayor', u'happi', u'phone', u'boost'] [u'mbeki', u'criticis', u'howard', u'role', u'zimbabw', u'decis'] [u'arrest', u'coff', u'brawl'] [u'question', u'taxi', u'driver', u'assault'] [u'miandad', u'confid', u'pakistan', u'arriv'] [u'minist', u'back', u'construct', u'safeti', u'effort'] [u'fund', u'tackl', u'reef', u'pest'] [u'indigen', u'land', u'protect', u'victoria'] [u'storm', u'rain', u'head', u'central', u'highland'] [u'storm', u'predict', u'western'] [u'draw', u'line', u'council', u'boundari'] [u'upbeat', u'break', u'hill', u'site', u'epic', u'film'] [u'want', u'straight', u'answer', u'ambul', u'station'] [u'nat', u'confid', u'taxi', u'allow', u'rethink'] [u'nauru', u'hunger', u'strike', u'widen'] [u'newcastl', u'kingz'] [u'newcastl', u'target', u'unit', u'butt'] [u'home', u'year', u'dental', u'servic'] [u'hous', u'estat', u'build', u'communiti', u'pride'] [u'recruit', u'signal', u'chang'] [u'nrma', u'patrol', u'road'] [u'nrma', u'staff', u'march', u'head', u'offic'] [u'minist', u'deni', u'nurs', u'threat'] [u'nuclear', u'inform', u'miss', u'alamo', u'blunder'] [u'offic', u'charg', u'prison', u'smuggl'] [u'firm', u'overcharg', u'iraq'] [u'oldest', u'fossil', u'marsupi', u'discov', u'china'] [u'onlin', u'hotlin', u'timber', u'chemic', u'concern'] [u'open', u'south', u'africa', u'solid', u'start'] [u'opposit', u'happi', u'icac', u'probe'] [u'opposit', u'question', u'role', u'babi', u'manslaught'] [u'orgi', u'scandal', u'outrag', u'china'] [u'osbourn', u'stop', u'breath', u'follow', u'accid'] [u'oscar', u'doubl', u'predict'] [u'paedophil', u'lose', u'sentenc', u'reduc'] [u'perth', u'extradit'] [u'money', u'spend'] [u'point', u'nepean', u'land', u'spark', u'battl', u'will'] [u'polic', u'close', u'book', u'literari', u'mysteri'] [u'polic', u'weapon', u'drug', u'hous'] [u'polic', u'hunt', u'child', u'attack'] [u'polic', u'probe', u'child', u'abduct', u'attempt'] [u'pont', u'prime', u'career'] [u'pont', u'put', u'australia', u'command'] [u'power', u'connect', u'cost', u'remain', u'high'] [u'privat', u'fund', u'museum', u'open'] [u'probe', u'launch', u'butler', u'tank', u'water', u'woe'] [u'public', u'hospit', u'nurs', u'boost'] [u'push', u'reopen', u'rail', u'freight', u'link'] [u'qanta', u'manag', u'join', u'aviat', u'safeti', u'board'] [u'quak', u'move', u'millthorp', u'resid'] [u'queen', u'be', u'sting', u'rule'] [u'race', u'driver', u'scoot', u'troubl'] [u'rain', u'earli', u'christma', u'gift', u'farmer'] [u'rampag', u'win', u'cultur', u'recognit'] [u'real', u'pit', u'bayern', u'champ', u'leagu'] [u'region', u'fear', u'hold', u'tafe'] [u'religi', u'group', u'oppos', u'french', u'school', u'rule'] [u'remors', u'german', u'thief', u'return', u'steal', u'loot'] [u'research', u'closer', u'ebola', u'treatment'] [u'revamp', u'rescu', u'chopper'] [u'reveng', u'rapist', u'refus', u'appeal'] [u'erupt', u'nativ', u'titl', u'claim'] [u'rugbi', u'boss', u'oneil', u'resign'] [u'russia', u'work', u'save', u'tigress'] [u'govt', u'compar', u'milli', u'vanilli'] [u'school', u'cleaner', u'face', u'uncertain', u'futur', u'union', u'say'] [u'school', u'feder', u'govt', u'fund', u'boost'] [u'scientist', u'say', u'debat', u'hijack'] [u'scientist', u'discov', u'bacteria', u'produc', u'power'] [u'scientist', u'longev'] [u'scottsdal', u'sawmil', u'busi', u'year'] [u'senior', u'collin', u'lead', u'second', u'round'] [u'senior', u'clear', u'coolum'] [u'senior', u'hold', u'clubhous', u'lead'] [u'serena', u'sign', u'massiv', u'sponsorship', u'deal'] [u'servic', u'station', u'oper', u'baulk', u'racv', u'servic'] [u'seven', u'pilgrim', u'injur', u'west', u'bank', u'shoot'] [u'shire', u'warn', u'need', u'kiddi', u'pool', u'fenc'] [u'singapor', u'airlin', u'pleas', u'court', u'rule'] [u'skandia', u'win', u'sydney', u'hobart', u'warm'] [u'snowdon', u'seek', u'pine', u'answer'] [u'sobrieti', u'reign', u'hall', u'power', u'howard', u'say'] [u'solomon', u'militia', u'leader', u'face', u'court'] [u'lanka', u'tighten', u'grip', u'england'] [u'staff', u'screensound', u'head', u'say'] [u'storm', u'leav', u'damag', u'trail', u'lake', u'macquari'] [u'strand', u'tourist', u'die', u'desert', u'journey'] [u'suppli', u'issu', u'worri', u'mango', u'processor'] [u'support', u'belmont', u'hospit', u'midwiferi', u'servic'] [u'sydney', u'guilti', u'manslaught'] [u'sydney', u'theatr', u'compani', u'rob'] [u'tasmanian', u'honour', u'role', u'bali', u'bomb'] [u'nurs', u'rise'] [u'option', u'open', u'say'] [u'taxi', u'driver', u'quiz', u'crime', u'crackdown'] [u'telemarket', u'job', u'bolster', u'bundaberg', u'economi'] [u'dinosaur', u'drug', u'say', u'pound'] [u'time', u'journalist', u'injur', u'iraq'] [u'tourism', u'group', u'open', u'visitor', u'centr'] [u'transport', u'compani', u'wind'] [u'trek', u'ludwig', u'leichardt', u'event'] [u'trespass', u'decis', u'disappoint', u'atsic'] [u'schoolgirl', u'murder', u'trial', u'wind'] [u'unemploy', u'drop', u'north', u'west'] [u'consid', u'second', u'plagiar', u'report'] [u'link', u'death', u'climat', u'chang'] [u'postpon', u'decis', u'clone'] [u'push', u'tech', u'develop', u'riski'] [u'tactic', u'blame', u'civilian', u'death', u'iraq'] [u'valencia', u'cruis', u'past', u'maccabi', u'uefa'] [u'vandal', u'caus', u'airport', u'safeti', u'concern'] [u'vic', u'domin'] [u'democrat', u'senat', u'back', u'bartlett'] [u'adopt', u'crop'] [u'wheatbelt', u'unemploy', u'figur', u'drop'] [u'wilkinson', u'return', u'newcastl'] [u'winegrap', u'grower', u'upset', u'money', u'demand'] [u'sign', u'deal'] [u'woman', u'award', u'terror', u'studi'] [u'woman', u'charg', u'bank', u'theft'] [u'youth', u'drop', u'centr', u'extend', u'open', u'hour'] [u'brisban', u'suburb', u'power'] [u'rebel', u'art', u'shake'] [u'arson', u'suspect', u'brisban', u'tyre', u'shop', u'blaze'] [u'australia', u'build', u'massiv', u'total'] [u'aust', u'swim', u'appoint', u'act', u'coach'] [u'azerbaijan', u'baba', u'die', u'age'] [u'bank', u'turn', u'forest', u'natur', u'reserv'] [u'bartlett', u'continu', u'split', u'democrat'] [u'beachley', u'win', u'sixth', u'straight', u'world', u'titl'] [u'bichel', u'heap', u'pressur', u'india'] [u'bondi', u'host', u'anti', u'child', u'detent', u'protest'] [u'kill', u'blast', u'near', u'karzai', u'pakistan', u'home'] [u'bush', u'back', u'return', u'strong', u'dollar', u'polici'] [u'bush', u'defend', u'integr', u'busi', u'iraq'] [u'bush', u'sign', u'syria', u'sanction'] [u'canadian', u'swear'] [u'church', u'push', u'communiti', u'base', u'asylum', u'process'] [u'civilian', u'network', u'join', u'anti', u'terror', u'effort'] [u'coastwatch', u'put', u'tourist', u'rescu', u'luck'] [u'court', u'report', u'highlight', u'fund', u'shortfal'] [u'cull', u'concern', u'spark', u'kangaroo', u'stocktak'] [u'darwin', u'woman', u'honour', u'breast', u'cancer', u'awar'] [u'dead', u'british', u'tourist', u'fail', u'precaut'] [u'democrat', u'bartlett', u'notic'] [u'dilshan', u'leav', u'england', u'struggl'] [u'doubl', u'pont'] [u'dravid', u'laxman', u'need', u'count'] [u'dutch', u'driver', u'face', u'court', u'jogger', u'death'] [u'earli', u'christma', u'red', u'owen', u'kewel', u'resum'] [u'envoy', u'urg', u'israel', u'palestinian', u'relat'] [u'constitut', u'summit', u'rock'] [u'countri', u'deadlock', u'vote'] [u'outbreak', u'kill', u'children'] [u'frentzen', u'leav', u'seri'] [u'fuel', u'compani', u'eas', u'price', u'watchdog'] [u'fuel', u'final', u'reach', u'strand', u'adventur'] [u'fuel', u'reach', u'strand', u'adventur'] [u'german', u'presid', u'say', u'compatriot', u'grumpi'] [u'govt', u'issu', u'disabl', u'park', u'warn'] [u'green', u'warn', u'govt', u'respons', u'deporte', u'safeti'] [u'heat', u'take', u'toll', u'nauru', u'hunger', u'striker'] [u'hick', u'final', u'meet', u'lawyer'] [u'hiroshima', u'bomb', u'survivor', u'protest', u'museum', u'display'] [u'tech', u'lego', u'inspir', u'young', u'engin'] [u'hodg', u'take', u'leav', u'legal', u'case', u'pend'] [u'inter', u'hand', u'sochaux', u'uefa', u'test', u'barca', u'return'] [u'iran', u'sign', u'protocol', u'tougher', u'nuke'] [u'iraqi', u'bomb', u'kill', u'policeman', u'wind', u'pole'] [u'iraqi', u'cleric', u'demand', u'role'] [u'italian', u'viewer', u'urg', u'think', u'outsid'] [u'jackson', u'domin', u'sportstar', u'award'] [u'juri', u'retir', u'british', u'schoolgirl', u'murder', u'trial'] [u'juventus', u'aim', u'lift', u'seri'] [u'kalli', u'centuri', u'compound', u'windi', u'woe'] [u'knight', u'striker', u'notch', u'win'] [u'kuwaiti', u'media', u'target', u'letter', u'bomb'] [u'kyoto', u'protocol', u'stall', u'russia', u'dalli'] [u'laport', u'sign', u'year', u'deal'] [u'latham', u'lift', u'labor', u'poll', u'stand'] [u'launceston', u'general', u'allay', u'cardiolog', u'fear'] [u'charg', u'bank', u'theft'] [u'markgraaff', u'withdraw', u'coach', u'race'] [u'microsoft', u'remov', u'swastika', u'softwar', u'font'] [u'nauru', u'detent', u'protest', u'escal'] [u'nauru', u'strike', u'haven', u'blacklist'] [u'staff', u'boost', u'indigen', u'tourism', u'develop'] [u'nigeria', u'warn', u'bounti', u'hunter', u'taylor', u'snatch'] [u'dead', u'injur', u'road', u'accid'] [u'opposit', u'criticis', u'govt', u'hunter', u'island'] [u'orang', u'plan', u'absurd', u'opposit', u'say'] [u'outrag', u'afghan', u'talk', u'deport', u'nauru', u'detaine'] [u'outrag', u'rural', u'colleg', u'closur'] [u'palestinian', u'student', u'kill', u'roadblock', u'shoot'] [u'parliament', u'mislead', u'hospit', u'malpractic'] [u'peru', u'leav', u'homeless'] [u'peru', u'presid', u'ask', u'cabinet', u'resign'] [u'pneumonia', u'claim', u'free', u'willi', u'star'] [u'polic', u'street', u'inner', u'sydney', u'crime', u'blitz'] [u'polic', u'dead', u'british', u'tourist'] [u'polic', u'presenc', u'remain', u'despit', u'tram', u'attack'] [u'polic', u'silent', u'possibl', u'gangland', u'murder', u'link'] [u'polic', u'underworld', u'kill'] [u'power', u'hungri', u'fergi', u'face', u'boardroom', u'revolt', u'report'] [u'prawn', u'industri', u'float', u'fish', u'farm', u'concern'] [u'prison', u'catch', u'month'] [u'creat', u'indigen', u'youth', u'fund'] [u'queen', u'leav', u'hospit', u'doubl', u'surgeri'] [u'quit', u'decis', u'mutual', u'rugbi', u'boss', u'oneil'] [u'rain', u'aid', u'fortescu', u'firefight'] [u'real', u'deportivo', u'home'] [u'reef', u'fish', u'law', u'come', u'play'] [u'retir', u'judg', u'say', u'detent', u'polici', u'shame'] [u'rspca', u'want', u'pest', u'hunt'] [u'make', u'bali', u'bomb', u'payout'] [u'teacher', u'hone', u'internet', u'skill'] [u'scholarship', u'boost', u'indigen', u'health', u'research'] [u'search', u'resum', u'miss', u'teen'] [u'senior', u'take', u'stroke', u'lead', u'final', u'round'] [u'mick', u'claim', u'great', u'honour'] [u'mick', u'take', u'centr', u'stage', u'buckingham', u'palac'] [u'sixer', u'breaker', u'thrash', u'giant'] [u'korean', u'jail', u'north', u'summit', u'bribe'] [u'smith', u'make', u'mark', u'west', u'indi'] [u'smithon', u'resid', u'protest', u'island', u'leas'] [u'soham', u'juri', u'send', u'home', u'weekend'] [u'soni', u'bertelsmann', u'agre', u'music', u'merger', u'deal'] [u'swashbuckl', u'crow', u'spark', u'terror', u'alert'] [u'sydney', u'firm', u'can', u'toni', u'award'] [u'tasmanian', u'biki'] [u'adelaid', u'hill', u'crash'] [u'ukrain', u'announc', u'compens', u'deal', u'black'] [u'court', u'slap', u'gag', u'order', u'milosev'] [u'senat', u'demand', u'guantanamo', u'resolut'] [u'soldier', u'kill', u'iraq', u'attack'] [u'gogh', u'withdraw', u'auction'] [u'vic', u'claim', u'inning', u'point'] [u'teacher', u'plan', u'roll', u'strike', u'wage', u'disput'] [u'villeneuv', u'continu', u'wait', u'drive', u'offer'] [u'virgin', u'blue', u'blame', u'govt', u'servic'] [u'approv', u'corrupt', u'fight', u'bodi'] [u'liber', u'light'] [u'wenger', u'tip', u'henri', u'world', u'best'] [u'westhuyzen', u'leicest', u'boss'] [u'wilkinson', u'doubt', u'england', u'neck', u'injuri'] [u'albright', u'criticis', u'bush', u'poor', u'post', u'strategi'] [u'algal', u'bloom', u'halt', u'smoki', u'aquacultur'] [u'antarctica', u'adventur', u'face', u'delay'] [u'arab', u'prison', u'serious', u'injur', u'custodi'] [u'rage', u'grip', u'launceston'] [u'aurora', u'warn', u'christma', u'prank'] [u'aussi', u'paralympian', u'win', u'giant', u'slalom'] [u'australia', u'aim', u'earli', u'wicket'] [u'australia', u'play', u'japan', u'sofbal', u'seri', u'final'] [u'babi', u'scheme', u'bonus', u'parent'] [u'barca', u'win', u'way', u'send', u'local'] [u'bell', u'fire', u'investig'] [u'biki', u'scour', u'victoria', u'chariti', u'donat'] [u'blair', u'confirm', u'saddam', u'captur', u'report'] [u'bushfir', u'close', u'road', u'tasmania'] [u'canberran', u'oppos', u'screensound', u'reloc'] [u'bomb', u'destroy', u'iraqi', u'polic', u'station'] [u'chelsea', u'owner', u'formal', u'offer', u'henri', u'report'] [u'china', u'blame', u'labour', u'ill', u'greenspan'] [u'chronolog', u'life', u'saddam', u'hussein'] [u'cometh', u'hour', u'cometh'] [u'cosgrov', u'commit', u'extend', u'east', u'timor', u'role'] [u'custom', u'offic', u'win', u'free', u'speech', u'rule'] [u'test', u'confirm', u'saddam', u'captur', u'iraq', u'council', u'head'] [u'doctor', u'group', u'call', u'feder', u'fund'] [u'downer', u'urg', u'open', u'mind', u'missil', u'shield'] [u'dravid', u'laxman', u'torment', u'australia'] [u'ellison', u'tour', u'tackl', u'counter', u'terror', u'smuggl'] [u'constitut', u'summit', u'collaps'] [u'road'] [u'govt', u'travel', u'prefer', u'reduc', u'rout', u'competit'] [u'govt', u'urg', u'adopt', u'bushfir', u'centr', u'model'] [u'histor', u'constitut', u'talk', u'begin', u'afghanistan'] [u'holland', u'rethink', u'cocain', u'smuggl', u'polici'] [u'hopkin', u'retain', u'undisput', u'middleweight', u'titl'] [u'like', u'australia', u'say', u'irish', u'athlet'] [u'immigr', u'confirm', u'nauru', u'hunger', u'strike', u'casualti'] [u'indian', u'batsmen', u'adelaid'] [u'form', u'taipan', u'upset', u'hawk'] [u'iran', u'reformist', u'fear', u'elect', u'interfer'] [u'isra', u'forc', u'kill', u'palestinian', u'milit', u'armi'] [u'japan', u'defeat', u'australia', u'softbal', u'seri'] [u'karzai', u'dismiss', u'taliban', u'threat'] [u'kierath', u'deni', u'leadership', u'hop', u'elect'] [u'king', u'georg', u'white', u'restrict', u'consid'] [u'kiwi', u'prove', u'combin'] [u'let', u'buri', u'beckham', u'bone', u'incid', u'plead', u'irureta'] [u'light', u'flyweight', u'unif', u'duel', u'end', u'draw'] [u'lindsey', u'question', u'liber', u'preselect', u'process'] [u'local', u'disput', u'hunter', u'island', u'leas', u'deal'] [u'lord', u'ring', u'britain', u'favourit', u'novel'] [u'loya', u'jirga', u'conven', u'ratifi', u'afghan', u'constitut'] [u'charg', u'sydney', u'crime'] [u'minist', u'defend', u'king', u'cross', u'inject', u'room'] [u'miss', u'enact', u'jog', u'driver', u'memori'] [u'murder', u'intimid', u'male', u'prison', u'guard'] [u'needi', u'famili', u'help', u'hand', u'christma'] [u'ban', u'special', u'raver'] [u'health', u'crisi', u'warrant', u'royal', u'commiss'] [u'claim', u'medic', u'panel', u'patient', u'right'] [u'democrat', u'spell', u'elect', u'agenda'] [u'food', u'rule', u'match', u'state', u'aagaard'] [u'work', u'hard', u'malaysian', u'travel'] [u'hop', u'emul', u'aust', u'trade', u'deal'] [u'pavarotti', u'say', u'second', u'time'] [u'philippin', u'minist', u'die', u'sudden', u'diplomat'] [u'poet', u'palestin', u'die', u'age'] [u'polic', u'continu', u'hunt', u'underworld', u'killer'] [u'polic', u'investig', u'paradis', u'accid'] [u'polic', u'deni', u'inject', u'room', u'honey', u'claim'] [u'polic', u'probe', u'moreton', u'boat', u'explos'] [u'polic', u'search', u'sedan', u'miss', u'case'] [u'polic', u'enact', u'miss', u'teen', u'movement'] [u'port', u'hedland', u'hunger', u'strike', u'continu', u'church', u'say'] [u'plan', u'disast', u'respons', u'unit'] [u'queen', u'leav', u'hospit', u'face', u'knee'] [u'queensland', u'ramp', u'school', u'secur'] [u'ruiz', u'beat', u'rahman', u'ugli', u'bout'] [u'saddam', u'face', u'public', u'trial', u'iraqi', u'offici'] [u'africa', u'strong', u'posit', u'west', u'indi'] [u'polic', u'investig', u'shoot'] [u'schwarzer', u'boro', u'record'] [u'second', u'hunger', u'striker', u'take', u'hospit'] [u'senior', u'win', u'second', u'titl'] [u'south', u'tabl', u'clash'] [u'spain', u'morocco', u'plan', u'undersea', u'tunnel'] [u'spink', u'extend', u'legaci'] [u'sydney', u'immigr', u'raid'] [u'syria', u'condemn', u'sanction'] [u'syria', u'say', u'israel', u'friend', u'congress'] [u'teenag', u'drown', u'yarra', u'river'] [u'thiev', u'face', u'tougher', u'penalti'] [u'thousand', u'evacu', u'amid', u'costa', u'rica', u'flood'] [u'season', u'break', u'record'] [u'tourist', u'death', u'show', u'danger', u'campaign', u'lack'] [u'charg', u'ecstasi', u'haul'] [u'violent', u'attack', u'perth'] [u'unconfirm', u'report', u'saddam', u'arrest', u'iraq'] [u'unit', u'chelsea', u'revolut', u'stall'] [u'agenc', u'dark', u'terror', u'group', u'financ'] [u'confirm', u'saddam', u'captur', u'aliv'] [u'forc', u'video', u'captur', u'saddam'] [u'offic', u'fin', u'beat', u'iraqi'] [u'review', u'iraqi', u'armi', u'mass', u'walkout'] [u'hoogenband', u'victori', u'deni', u'world'] [u'vaughan', u'savour', u'best', u'inning', u'draw'] [u'vic', u'head', u'outright', u'point'] [u'visit', u'medic', u'await', u'collect', u'bargain', u'verdict'] [u'plan', u'good', u'parent', u'class'] [u'warn', u'take', u'comeback', u'step'] [u'wilkinson', u'week'] [u'yemen', u'foil', u'attack', u'british', u'embassi'] [u'oyster', u'farm', u'close'] [u'aagaard', u'lose', u'health', u'portfolio'] [u'abar', u'downgrad', u'export', u'earn', u'forecast'] [u'abbott', u'sell', u'medic', u'indemn', u'plan', u'cabinet'] [u'clarifi', u'crowd', u'control', u'legisl'] [u'adventur', u'leav', u'antarct'] [u'afghan', u'start', u'debat', u'constitut'] [u'agarkar', u'lead', u'indian', u'charg'] [u'agarkar', u'tear', u'aussi', u'attack'] [u'agarkar', u'tear', u'aussi'] [u'albani', u'offic', u'carri', u'inspect'] [u'albani', u'jobless', u'rate', u'drop'] [u'allianc', u'hop', u'credit', u'union', u'licenc'] [u'ord', u'jump', u'saddam', u'captur'] [u'american', u'film', u'institut', u'honour', u'year'] [u'antarct', u'adventur', u'land'] [u'author', u'loss', u'contempt', u'court', u'appeal'] [u'bali', u'victim', u'hesit', u'film', u'product'] [u'beatti', u'pledg', u'coast', u'waterway', u'fund'] [u'bergkamp', u'strike', u'put', u'arsenal'] [u'bore', u'work', u'boost', u'wilcannia', u'water'] [u'britain', u'oppos', u'death', u'penalti', u'saddam'] [u'brogden', u'back', u'inject', u'room'] [u'bumbl', u'fijian', u'unfit', u'world', u'report'] [u'bushrang', u'chase'] [u'bushrang', u'escap', u'outright'] [u'prove', u'tall', u'bridg'] [u'compo', u'claim', u'chang'] [u'peel', u'region', u'elect', u'delay'] [u'camera', u'phone', u'caus', u'privaci', u'concern'] [u'canberra', u'sydney', u'flight'] [u'candlelight', u'vigil', u'hold', u'murder', u'toddler'] [u'bomb', u'kill', u'baghdad'] [u'crash', u'childcar', u'centr'] [u'cfmeu', u'concern', u'worker', u'pasminco', u'plant'] [u'chechen', u'rebel', u'kill', u'guard', u'report'] [u'chines', u'garbag', u'collector', u'get', u'death', u'kill'] [u'christma', u'thiev', u'steal', u'stock'] [u'citrus', u'grower', u'vote', u'bigger', u'levi'] [u'coff', u'harbour', u'coroni', u'inquiri', u'probe', u'murder'] [u'council', u'car', u'ethanol', u'blend', u'fuel'] [u'councillor', u'consid', u'belmont', u'foreshor', u'develop'] [u'councillor', u'question', u'council', u'reform'] [u'council', u'surplus', u'spend', u'bush'] [u'council', u'want', u'broadband', u'connect'] [u'court', u'order', u'clark', u'paper', u'handov'] [u'crackdown', u'urg', u'unsaf', u'jetskiier'] [u'crunch', u'week', u'black', u'coach', u'mitchel'] [u'dealer', u'petit', u'speed', u'limit'] [u'delorain', u'resid', u'discuss', u'locomot', u'futur'] [u'despotovski', u'ponder', u'return', u'knight', u'stadium'] [u'develop', u'board', u'upbeat', u'central', u'west', u'growth'] [u'evid', u'rais', u'leski', u'suspect'] [u'doctor', u'boost', u'western'] [u'doubl', u'murder', u'accus', u'deni', u'bail'] [u'investig', u'babi', u'death'] [u'dravid', u'wari', u'late', u'spin'] [u'driver', u'face', u'charg'] [u'drought', u'affect', u'christma', u'shop'] [u'drought', u'blame', u'grain', u'fold'] [u'drug', u'squad', u'offic', u'grant', u'bail'] [u'elder', u'woman', u'contract', u'meningococc', u'diseas'] [u'epilepsi', u'relat', u'death', u'refer'] [u'eros', u'fear', u'spark', u'slower', u'water', u'speed'] [u'european', u'leader', u'welcom', u'saddam', u'captur'] [u'expert', u'say', u'leski', u'evid', u'accident'] [u'famili', u'dept', u'better', u'resourc', u'beatti'] [u'famili', u'upset', u'refuge', u'girl', u'plight'] [u'farmer', u'urg', u'tree', u'clear', u'law', u'protest'] [u'fear', u'screensound', u'futur'] [u'miss', u'raft', u'accid', u'indonesia'] [u'film', u'produc', u'get', u'smuggl', u'fine'] [u'children', u'product', u'recal'] [u'footbal', u'club', u'play', u'brawl'] [u'human', u'shield', u'tell', u'iraqi', u'reaction'] [u'franc', u'win', u'time', u'grand', u'prix'] [u'fund', u'promis', u'seek', u'women', u'health', u'centr'] [u'futur', u'educ', u'support', u'staff', u'limbo'] [u'gold', u'near', u'yalgoo'] [u'govt', u'look', u'polic', u'cross', u'border', u'power'] [u'grain', u'facil', u'pressur'] [u'grower', u'deni', u'centrelink', u'rort'] [u'grow', u'monaro', u'graze', u'countri'] [u'hayden', u'fall', u'adelaid'] [u'hayden'] [u'health', u'servic', u'defend', u'cut', u'elect', u'surgeri'] [u'helicopt', u'crash', u'near', u'columba', u'fall'] [u'higher', u'earner', u'like', u'divorc', u'studi'] [u'hope', u'warwick', u'rodeo', u'open', u'late'] [u'hope', u'remain', u'colleg', u'residenti', u'cours'] [u'hospit', u'project', u'lead', u'improv', u'care'] [u'hostag', u'take', u'southern', u'russia', u'report'] [u'hunger', u'strike', u'send', u'hospit'] [u'indian', u'inspir', u'lara', u'record', u'spree'] [u'indian', u'verg', u'famous', u'victori'] [u'india', u'adelaid'] [u'industri', u'better', u'inform', u'indigen'] [u'industri', u'welcom', u'fine', u'shark', u'fisherman'] [u'infrastructur', u'protect', u'port', u'extens'] [u'injur', u'prepar', u'elect'] [u'quot', u'reaction', u'saddam', u'captur'] [u'insur', u'premium', u'cloud', u'diabet', u'camp'] [u'intellig', u'saddam', u'needl', u'haystack'] [u'interim', u'heritag', u'list', u'railway', u'hous'] [u'investig', u'begin', u'factori', u'abus', u'claim'] [u'iran', u'build', u'case', u'saddam'] [u'iraqi', u'australian', u'welcom', u'saddam', u'captur'] [u'iraqi', u'leader', u'stake', u'claim', u'saddam'] [u'iraqi', u'peopl', u'winner', u'howard'] [u'island', u'airlin', u'ground'] [u'italian', u'bruni', u'sign', u'minardi'] [u'justic', u'group', u'urg', u'monitor', u'indigen'] [u'king', u'import', u'brown', u'arriv', u'sydney'] [u'labor', u'question', u'herbarium', u'reloc'] [u'liber', u'happi', u'senat', u'ticket'] [u'lotteri', u'scam', u'warn'] [u'love', u'hold', u'wood', u'golf', u'world', u'challeng'] [u'lucki', u'kitten', u'surviv', u'scrape', u'street', u'sweeper'] [u'magistr', u'plead', u'guilti', u'child', u'charg'] [u'millionair', u'overnight'] [u'charg', u'attempt', u'abduct'] [u'die', u'port', u'kembla', u'hous'] [u'court', u'senior', u'murder'] [u'custodi', u'court', u'appear'] [u'man', u'death', u'suspici', u'polic'] [u'court', u'child', u'attack'] [u'marin', u'survey', u'timor', u'begin'] [u'market', u'tip', u'welcom', u'saddam', u'captur'] [u'meet', u'consid', u'leve', u'flood', u'concern'] [u'meet', u'decid', u'supermarket', u'plan'] [u'sale', u'wait', u'govern', u'fund'] [u'industri', u'strong', u'xstrata', u'takeov'] [u'minist', u'hint', u'cassowari', u'habitat'] [u'minist', u'urg', u'stay', u'council', u'budget', u'woe'] [u'miriam', u'council', u'move', u'burial', u'outsid'] [u'mitchel', u'put', u'case', u'rugbi', u'board'] [u'asylum', u'seeker', u'join', u'hunger', u'strike'] [u'injur', u'hors', u'leav', u'palm'] [u'mother', u'charg', u'doubl', u'murder'] [u'angri', u'seymour', u'water', u'offic', u'closur'] [u'museum', u'director', u'take', u'posit'] [u'musharraf', u'address', u'pakistani', u'public'] [u'musharraf', u'escap', u'assassin'] [u'figur', u'chines', u'love'] [u'flight', u'unlock', u'tourism', u'opportun'] [u'law', u'begin', u'today'] [u'object', u'saddam', u'death'] [u'nrma', u'say', u'queensland', u'tow', u'problem'] [u'health', u'minist', u'deni', u'hospit'] [u'hospit', u'procedur', u'review'] [u'lib', u'health', u'royal', u'commiss'] [u'upper', u'hous', u'probe', u'health', u'complaint'] [u'health', u'minist', u'oust', u'reshuffl'] [u'offici', u'down', u'year'] [u'spill', u'reach', u'coastlin'] [u'dead', u'head', u'collis'] [u'pakistan', u'batsmen', u'rampant', u'test', u'warm'] [u'parent', u'urg', u'internet', u'cautious'] [u'park', u'victoria', u'accus', u'miss', u'tourism'] [u'parliament', u'hous', u'reduc', u'water', u'consumpt', u'level'] [u'petit', u'call', u'zone', u'revamp'] [u'petit', u'seek', u'zone', u'rebat', u'chang'] [u'plan', u'afoot', u'stabl', u'lobster', u'price'] [u'plan', u'sink', u'perth', u'railway', u'line'] [u'look', u'forward', u'saddam', u'trial'] [u'cabinet', u'assess', u'aust', u'packag'] [u'polic', u'appeal', u'inform', u'abduct'] [u'polic', u'arrest', u'teen', u'arm', u'robberi'] [u'polic', u'info', u'underworld', u'shoot'] [u'polic', u'continu', u'search', u'miss', u'teenag'] [u'polic', u'continu', u'search', u'sunshin', u'coast'] [u'polic', u'waratah', u'west', u'fight'] [u'polic', u'investig', u'melbourn', u'shoot'] [u'polic', u'drown', u'victim'] [u'polic', u'probe', u'toddler', u'death'] [u'priest', u'abus', u'charg', u'escap', u'prison', u'sentenc'] [u'probe', u'find', u'timber', u'health', u'threat'] [u'public', u'urg', u'continu', u'water', u'boil'] [u'criticis', u'feder', u'youth', u'pledg'] [u'rail', u'yard', u'transform', u'tourism', u'site'] [u'ranger', u'fall', u'celtic'] [u'real', u'edg', u'deportivo', u'stay'] [u'real', u'estat', u'agent', u'face', u'dummi', u'bid', u'charg'] [u'recreat', u'park', u'open', u'christma', u'break'] [u'region', u'road', u'accid', u'claim', u'live'] [u'road', u'signag', u'consid', u'outback', u'tourist'] [u'roma', u'clear', u'itali'] [u'rural', u'press', u'take', u'control', u'harri'] [u'author', u'warn', u'escap', u'psychiatr', u'patient'] [u'saddam', u'deni', u'weapon', u'claim', u'report'] [u'saddam', u'hold', u'baghdad', u'airport'] [u'saddam', u'cooper', u'rumsfeld', u'say'] [u'saddam', u'captur', u'produc', u'mix', u'feel', u'middl'] [u'saddam', u'captur', u'send', u'market', u'higher'] [u'farmer', u'oppos'] [u'safeti', u'award', u'nightclub', u'curfew'] [u'safeti', u'remind', u'christma', u'light'] [u'saff', u'back', u'natur', u'resourc', u'manag'] [u'magistr', u'remand', u'trial'] [u'scholarship', u'offer', u'young', u'indigen', u'leader'] [u'school', u'blaze', u'prove', u'cost'] [u'scientist', u'clone', u'resist', u'calv'] [u'scientist', u'closer', u'ebola', u'treatment'] [u'scientist', u'survey', u'timor', u'life'] [u'sharehold', u'consid', u'offer', u'newspap', u'firm'] [u'shire', u'presid', u'succumb', u'injuri'] [u'shooter', u'parti', u'welcom', u'law'] [u'smith', u'famili', u'bring', u'christma', u'cheer'] [u'socceroo', u'close', u'venezuela', u'friend', u'deal'] [u'someth', u'gotta', u'make', u'wave', u'offic'] [u'storm', u'threaten', u'southern', u'india'] [u'studi', u'show', u'disturb', u'trend', u'region'] [u'summit', u'adopt', u'plan', u'action', u'technolog'] [u'sydney', u'rental', u'vacanc', u'rate', u'increas'] [u'taipan', u'climb', u'ladder', u'hawk'] [u'firefight', u'battl', u'peninsula', u'blaze'] [u'govt', u'urg', u'help', u'children', u'diabet', u'camp'] [u'taxpay', u'pick', u'gallop', u'trip'] [u'teacher', u'sick', u'meningococc'] [u'tendulkar', u'remov', u'martyn', u'waugh'] [u'thirteen', u'player', u'name', u'queensland', u'hockey', u'side'] [u'charg', u'heist'] [u'tourism', u'group', u'lose', u'market', u'manag'] [u'town', u'squar', u'sail', u'till', u'christma'] [u'turkish', u'cypriot', u'vote', u'deadlock'] [u'dead', u'militari', u'accid', u'near', u'iran', u'nuclear'] [u'hospit', u'accid'] [u'deni', u'anim', u'cruelti', u'charg'] [u'youth', u'program', u'help', u'kid'] [u'union', u'ask', u'better', u'worker', u'entitl'] [u'look', u'govern'] [u'allow', u'saddam', u'right'] [u'dollar', u'gain', u'saddam', u'captur'] [u'politician', u'urg', u'quick', u'saddam', u'trial'] [u'venic', u'celebr', u'opera', u'hous', u'rebirth'] [u'lib', u'happi', u'senat', u'prospect'] [u'lib', u'promis', u'strong', u'campaign'] [u'environ', u'dept', u'give', u'site', u'clear'] [u'wast', u'dump', u'plan', u'oppon', u'block', u'highway'] [u'water', u'display', u'highlight', u'save'] [u'saddam', u'captur'] [u'wilkinson', u'win', u'sport', u'person', u'year'] [u'work', u'finish', u'underground', u'power', u'plan'] [u'year', u'student', u'receiv', u'result'] [u'youth', u'employe', u'honour', u'award', u'ceremoni'] [u'kill', u'iraq', u'ambush', u'attempt'] [u'sign', u'firefight', u'agreement'] [u'opposit', u'critic', u'art', u'budget', u'cut'] [u'adventur', u'land', u'adelaid'] [u'airlin', u'suspens', u'worri', u'flinder', u'communiti'] [u'alcohol', u'screen', u'imparja'] [u'anim', u'cull', u'plan', u'like', u'draw', u'mix', u'reaction'] [u'anim', u'right', u'protest', u'present', u'piggeri', u'video'] [u'annan', u'oppos', u'saddam', u'death', u'penalti'] [u'spill', u'olymp'] [u'archaeolog', u'concern', u'shannon', u'creek', u'pipelin'] [u'archibald', u'winner', u'face', u'court'] [u'dead', u'cyclon', u'hit', u'south', u'india'] [u'aussi', u'dollar', u'like', u'higher'] [u'australia', u'recruit', u'young', u'redback'] [u'australia', u'hire', u'intent', u'lead'] [u'beatti', u'turn', u'paradis'] [u'lade', u'omar', u'wont', u'take', u'aliv', u'pakistan', u'cleric'] [u'boral', u'launch', u'cement', u'maker'] [u'builder', u'secur', u'liber', u'preselect'] [u'cabinet', u'reject', u'hous', u'plan'] [u'papparazi', u'ban', u'privat', u'event'] [u'cambodia', u'destroy', u'missil', u'stockpil'] [u'campo', u'parad', u'street', u'london'] [u'carer', u'like', u'suffer', u'depress', u'report'] [u'chaney', u'call', u'compassion'] [u'charg', u'stand', u'melbourn', u'real', u'estat', u'agent'] [u'china', u'confid', u'sar', u'return'] [u'chopper', u'crash', u'inquiri', u'recommend', u'safeti', u'gear'] [u'christma', u'spirit', u'lack', u'assault', u'case', u'rise'] [u'cicada', u'number', u'explod', u'rain'] [u'clean', u'mobil', u'tank', u'begin'] [u'cochlear', u'share', u'drop', u'profit', u'warn'] [u'communiti', u'help', u'overturn', u'correct', u'servic', u'plan'] [u'commut', u'abl', u'access', u'timet'] [u'concern', u'neerkol', u'exhibit'] [u'cooper', u'charg'] [u'council', u'allow', u'storey', u'build'] [u'council', u'awash', u'mix', u'view', u'bath', u'plan'] [u'council', u'consid', u'rail', u'boom', u'gate'] [u'council', u'debat', u'landfil', u'option'] [u'council', u'defer', u'copper', u'lake', u'decis'] [u'council', u'pool', u'fund', u'dive'] [u'council', u'rethink', u'identif'] [u'council', u'urg', u'link', u'road', u'fund'] [u'court', u'reject', u'applic', u'marriag'] [u'court', u'show', u'secur', u'tape', u'footag'] [u'crime', u'commiss', u'investig', u'gangland', u'death'] [u'offload', u'anim', u'health', u'oper'] [u'death', u'spark', u'greater', u'road', u'safeti'] [u'democrat', u'manag', u'push', u'leadership', u'spill'] [u'dozen', u'seal', u'pup', u'wash', u'rock'] [u'drought', u'lengthen', u'meatwork', u'year'] [u'elliott', u'issu', u'bankruptci', u'petit'] [u'defeat', u'marsh', u'show', u'leadership'] [u'everyday', u'abus', u'homosexu', u'studi'] [u'farmer', u'group', u'readi', u'seek', u'canola', u'probe'] [u'feder', u'polic', u'offic', u'arriv'] [u'graduat', u'find', u'primari', u'school', u'teach', u'job'] [u'film', u'bodi', u'defend', u'cut'] [u'film', u'fan', u'piec', u'memorabilia'] [u'final', u'hepat', u'restaur', u'screen'] [u'servic', u'tell', u'resid', u'remain', u'vigil'] [u'firm', u'press', u'matter', u'paper', u'chang'] [u'fisher', u'warn', u'law'] [u'kill', u'landmin', u'explos', u'angola'] [u'flower', u'hondo', u'return', u'seri'] [u'chamber', u'commerc', u'offici', u'fin'] [u'join', u'anti', u'log', u'protest'] [u'health', u'minist', u'deni', u'cover'] [u'kill', u'protest', u'saddam', u'arrest'] [u'tonn', u'ivori', u'africa'] [u'fund', u'help', u'foster', u'riverland', u'small', u'busi'] [u'furnitur', u'textil', u'artist', u'reward'] [u'girl', u'critic', u'childcar', u'crash'] [u'govt', u'releas', u'fund', u'age', u'care', u'facil'] [u'govt', u'slash', u'fund', u'environ', u'group'] [u'govt', u'tell', u'inject', u'room', u'wast', u'money'] [u'registrar', u'bolster', u'blayney'] [u'greenpeac', u'activist', u'dead', u'brazil'] [u'group', u'aim', u'market', u'lamb'] [u'grower', u'time', u'payment'] [u'guilti', u'plea', u'warn', u'blackmail', u'charg'] [u'hangov', u'matter', u'time'] [u'hick', u'speak', u'father'] [u'higher', u'nickel', u'price', u'boost', u'goldfield', u'product'] [u'home', u'build', u'level', u'increas'] [u'hotter', u'weather', u'bring', u'warn'] [u'howard', u'brush', u'latham', u'gain'] [u'hume', u'council', u'resist', u'alburi', u'takeov'] [u'improv', u'hall', u'creek', u'hous'] [u'india', u'begin', u'chase'] [u'india', u'cheer', u'victori', u'cricket'] [u'india', u'dent', u'australia', u'domin'] [u'indian', u'home', u'adelaid'] [u'india', u'brink', u'histori', u'adelaid'] [u'india', u'sacr', u'cow', u'shake', u'hip'] [u'india', u'take', u'lead'] [u'indonesian', u'polic', u'free', u'suspect', u'extremist'] [u'injuri', u'forc', u'england', u'chang'] [u'injuri', u'jinx', u'strike', u'newcastl', u'defend', u'woodgat'] [u'inmat', u'face', u'court', u'riot'] [u'investig', u'begin', u'possibl', u'fish', u'kill'] [u'iraqi', u'assn', u'say', u'death', u'saddam'] [u'italian', u'presid', u'refus', u'media', u'law'] [u'jamieson', u'win', u'seat', u'albani', u'council'] [u'johnson', u'delight', u'docker'] [u'juri', u'consid', u'verdict', u'murder', u'trial'] [u'kapooka', u'chief'] [u'karzai', u'reopen', u'afghan', u'highway'] [u'landslid', u'kill', u'indonesia'] [u'lara', u'hit', u'west', u'indi', u'face', u'defeat'] [u'latham', u'play', u'improv', u'poll'] [u'leed', u'build', u'rescu', u'plan', u'viduka'] [u'legal', u'behalf', u'nauru', u'detaine'] [u'lille', u'share', u'mix', u'memori', u'aluminium'] [u'liquid', u'smithton', u'chees', u'compani'] [u'lobster', u'industri', u'wait', u'extens', u'decis'] [u'loos', u'park', u'block', u'blame', u'runaway', u'indonesian'] [u'lrmi'] [u'mackay', u'council', u'trial', u'fuel', u'ethanol', u'pledg'] [u'magistr', u'call', u'govt', u'fund', u'drug', u'scheme'] [u'major', u'product', u'tour', u'central'] [u'malaysian', u'villag', u'claim', u'sight'] [u'charg', u'murder', u'refus', u'bail'] [u'die', u'gladston', u'crash'] [u'escap', u'blaze', u'apart'] [u'get', u'bond', u'boat', u'death'] [u'face', u'trial', u'follow', u'internet', u'crime', u'law'] [u'wrong', u'imprison', u'award'] [u'market', u'lose', u'yesterday', u'gain'] [u'market', u'eas', u'saddam', u'captur'] [u'media', u'get', u'glimps', u'royal', u'life'] [u'melbourn', u'relaunch', u'latrob', u'invest', u'plan'] [u'melbourn', u'storm', u'cost', u'promina'] [u'plead', u'guilti', u'nightclub', u'assault'] [u'minist', u'consid', u'amalgam'] [u'miss', u'cyclist'] [u'miss', u'father', u'unlik', u'polic'] [u'miss', u'senior', u'safe'] [u'motorist', u'prais', u'assist', u'crash', u'victim'] [u'seek', u'rail', u'secur', u'boost'] [u'welcom', u'wide', u'child', u'care', u'boost'] [u'gambier', u'hospit', u'dysfunct', u'inquiri', u'hear'] [u'nativ', u'titl', u'rule', u'overturn', u'feder', u'court'] [u'childcar', u'centr', u'alburi'] [u'state', u'govern', u'youth', u'fund'] [u'newstead', u'charg', u'murder'] [u'surgeri', u'help', u'babi', u'breath', u'better'] [u'visitor', u'centr', u'bolster', u'north', u'west', u'tourism'] [u'nitpick', u'stall', u'aid', u'grant', u'india'] [u'dollar', u'respit', u'rural', u'export'] [u'job', u'deal'] [u'saddam', u'trial', u'month', u'iraq', u'court', u'founder', u'say'] [u'davi', u'open', u'test'] [u'polic', u'apologis', u'raid'] [u'polic', u'search', u'trail', u'bike', u'rider'] [u'win', u'fierc', u'battl'] [u'spill', u'investig'] [u'opposit', u'call', u'dairi', u'work', u'group'] [u'opposit', u'reveal', u'document', u'hospit'] [u'opposit', u'say', u'centr', u'stay', u'open'] [u'polic', u'raid', u'motorcycl', u'club'] [u'owen', u'year', u'kewel', u'eye', u'return'] [u'pilchard', u'industri', u'question', u'quota'] [u'plant', u'head', u'expect', u'complaint', u'dismiss'] [u'outlin', u'fuel', u'excis', u'overhaul'] [u'polic', u'charg', u'pair', u'cannabi', u'raid'] [u'polic', u'releas', u'road', u'fatal'] [u'polic', u'search', u'middl', u'age'] [u'polic', u'consid', u'staff', u'shortag', u'woe'] [u'polic', u'unhappi', u'alcohol', u'offenc'] [u'popular', u'picnic', u'grind', u'reopen'] [u'postal', u'worker', u'cope', u'santa', u'post'] [u'power', u'shock', u'mahoney', u'select'] [u'probe', u'continu', u'bush', u'bodi'] [u'project', u'repair', u'art', u'centr', u'underway'] [u'premier', u'say', u'wont', u'stand'] [u'quinn', u'suspici', u'waterway', u'announc'] [u'rain', u'hamper', u'pitch', u'prepar', u'pakistan'] [u'rawl', u'join', u'bulldog', u'blue', u'snap', u'steven'] [u'region', u'oppos', u'hospit', u'downgrad'] [u'report', u'highlight', u'england', u'jobless', u'level'] [u'resid', u'hope', u'groundwat', u'rule', u'wast', u'dump'] [u'tinto', u'restructur', u'job'] [u'rock', u'throw', u'train', u'injur', u'passeng'] [u'roma', u'youth', u'polici', u'launch'] [u'apologis', u'advert'] [u'rspca', u'offer', u'time', u'advic'] [u'rural', u'clinic', u'school', u'perform'] [u'saddam', u'replac', u'jesus', u'time'] [u'sale', u'forc', u'chang', u'plan', u'rabattoir'] [u'remo', u'recal', u'couscous', u'product'] [u'schumach', u'set', u'sight', u'titl', u'number', u'seven'] [u'scientist', u'prepar', u'whale', u'research', u'expedit'] [u'seafood', u'industri', u'fish', u'cheaper', u'fuel'] [u'search', u'fail', u'miss', u'perth'] [u'second', u'charg', u'sydney', u'shoot'] [u'secur', u'measur', u'step', u'darwin'] [u'senat', u'reflect', u'histori', u'vote'] [u'attack', u'put', u'woman', u'hospit'] [u'shire', u'call', u'airport', u'secur'] [u'shire', u'pursu', u'plan', u'hous', u'saleyard'] [u'marshal', u'begin', u'work'] [u'snowi', u'tourism', u'look', u'strong', u'season'] [u'stang', u'hope', u'iraq', u'soccer', u'futur'] [u'state', u'govt', u'urg', u'dredg', u'river'] [u'korea', u'presid', u'renew', u'pledg', u'quit'] [u'suncorp', u'expand', u'offic'] [u'super', u'weather', u'forecast', u'quicker'] [u'taiwan', u'say', u'missil', u'vote'] [u'tapi', u'ridicul', u'cascarino', u'dope', u'accus'] [u'extend', u'school', u'leav'] [u'ferri', u'oper', u'place', u'administr'] [u'tchen', u'angri', u'senat', u'seat', u'loss'] [u'teacher', u'high', u'tech', u'western'] [u'teen', u'guilti', u'hous', u'blaze'] [u'toddler', u'treat', u'child', u'care', u'crash'] [u'townsend', u'head', u'list', u'scotland', u'retir'] [u'tribut', u'femal', u'indigen', u'minist'] [u'tutu', u'slam', u'south', u'africa', u'stand', u'zimbabw'] [u'twin', u'doctor', u'leav', u'singapor', u'hong', u'kong'] [u'poison', u'fish', u'lunch', u'vietnam'] [u'indigen', u'job', u'strategi'] [u'rocket', u'slam', u'kabul', u'casualti'] [u'envoy', u'begin', u'mission', u'reduc', u'iraq', u'debt'] [u'pros', u'fail', u'vijay'] [u'drug', u'trial', u'tackl', u'malaria'] [u'violet', u'town', u'group', u'want', u'shepparton', u'support'] [u'wagga', u'expect', u'weekend'] [u'indigen', u'juvenil', u'detent', u'rat', u'increas'] [u'remain', u'burglari', u'capit', u'australia'] [u'water', u'garden', u'save', u'home', u'csiro'] [u'wine', u'industri', u'look', u'increas', u'export'] [u'western', u'australian', u'recognis', u'braveri'] [u'wildcat', u'state', u'grace'] [u'winona', u'ryder', u'win', u'prais', u'judg'] [u'woman', u'face', u'court', u'theft', u'charg'] [u'worksaf', u'investig', u'pipelin', u'issu'] [u'world', u'largest', u'book', u'unveil'] [u'worley', u'manag', u'plan'] [u'young', u'thief', u'allow', u'home'] [u'zidan', u'fifa', u'player', u'year', u'time'] [u'revamp', u'museum', u'flight'] [u'urg', u'target', u'alcohol', u'abus'] [u'sack', u'spark', u'fear'] [u'keen', u'televis', u'tribun', u'proceed'] [u'age', u'care', u'demand', u'high', u'murray'] [u'age', u'care', u'nurs', u'abandon', u'job'] [u'alav', u'knock', u'sociedad', u'king'] [u'alcohol', u'spark', u'imparja', u'debat'] [u'hop', u'indemn', u'relief'] [u'amnesti', u'warn', u'pacif', u'prison', u'crisi'] [u'anderson', u'urg', u'hear', u'airport', u'tower', u'plea'] [u'energi', u'purchas', u'includ', u'west', u'asset'] [u'arm', u'boat', u'patrol', u'southern', u'ocean'] [u'arm', u'hold', u'trigger', u'manhunt'] [u'arsenal', u'bolton', u'leagu', u'semi', u'final'] [u'asic', u'get', u'interim', u'leader'] [u'push', u'higher', u'wall', u'gain'] [u'aussi', u'advanc', u'squash', u'world', u'open'] [u'aussi', u'readi', u'answer', u'indian', u'challeng'] [u'australian', u'issu', u'general', u'travel', u'alert'] [u'backpack', u'evacu', u'hostel'] [u'baghdad', u'blast', u'kill'] [u'bath', u'work', u'begin', u'februari'] [u'beller', u'pitch', u'prim', u'australia', u'india', u'clash'] [u'beller', u'pitch', u'prim', u'cricket', u'match'] [u'blaze', u'claim', u'dooki', u'crop'] [u'boat', u'maker', u'boost', u'job'] [u'brazil', u'crash', u'kill', u'injur'] [u'break', u'hill', u'prepar', u'festiv'] [u'bull', u'gabba', u'dayer'] [u'bush', u'sign', u'anti', u'spam'] [u'canberra', u'eas', u'water', u'restrict'] [u'canegrow', u'reflect', u'excis', u'decis'] [u'caretak', u'guilti', u'english', u'schoolgirl', u'murder'] [u'warn', u'email', u'fraud'] [u'challeng', u'tasmania', u'hous', u'industri'] [u'champion', u'beachley', u'consid', u'quit'] [u'child', u'kidnapp', u'give', u'longer', u'jail', u'term'] [u'child', u'pornographi', u'trial', u'adjourn'] [u'children', u'withdraw', u'sale'] [u'china', u'vow', u'crush', u'taiwan', u'independ', u'drive'] [u'chines', u'businessman', u'link', u'leed', u'takeov'] [u'grill', u'saddam'] [u'coal', u'alli', u'job', u'takeov'] [u'committe', u'hear', u'specialist', u'evid'] [u'compani', u'seek', u'bottl', u'wine', u'local'] [u'construct', u'camp', u'undergo', u'safeti', u'probe'] [u'council', u'claim', u'rosi', u'coffer'] [u'council', u'hint', u'bridport', u'water', u'restrict'] [u'council', u'hop', u'hospit', u'compo'] [u'councillor', u'vote', u'mayor', u'talk'] [u'council', u'see', u'purpl', u'hous'] [u'council', u'consid', u'supermarket', u'plan'] [u'council', u'urg', u'fight', u'toxic', u'dump'] [u'council', u'seek', u'servic', u'view'] [u'council', u'worri', u'develop', u'move'] [u'court', u'tell', u'manslaught', u'case', u'weak'] [u'construct', u'offici', u'begin'] [u'darwin', u'contract', u'elect'] [u'darwin', u'swim', u'spot', u'stay', u'close'] [u'deleg', u'caus', u'uproar', u'afghan', u'convent'] [u'demon', u'pick', u'campbel', u'rooki', u'draft'] [u'develop', u'mean', u'posit', u'pipelin'] [u'diamond', u'ring', u'lead', u'killer', u'polic'] [u'diesel', u'shortag', u'limit', u'oper'] [u'digit', u'radio', u'pilot', u'switch'] [u'diver', u'search', u'olymp', u'gold'] [u'doubt', u'cast', u'tara', u'popul', u'figur'] [u'downer', u'push', u'tongan', u'reform'] [u'dozen', u'rescu', u'river', u'near', u'melbourn'] [u'seek', u'babi', u'manslaught', u'sentenc', u'report'] [u'appeal', u'babi', u'manslaught', u'sentenc'] [u'drought', u'affect', u'famili', u'forsak', u'educ'] [u'dungog', u'council', u'turn', u'debt', u'woe'] [u'probe', u'olymp', u'spill'] [u'epic', u'give', u'posit', u'energi', u'forecast'] [u'ethanol', u'excis', u'decis', u'offer', u'indcor', u'certainti'] [u'excit', u'build', u'golf', u'open'] [u'farmer', u'wild', u'board', u'rat', u'relief'] [u'fear', u'age', u'care', u'dire', u'strait'] [u'govt', u'releas', u'fuel', u'excis', u'polici'] [u'govt', u'support', u'ethanol', u'plan'] [u'ferdinand', u'futur', u'hand', u'panel'] [u'figur', u'highlight', u'central', u'aust', u'attack'] [u'film', u'bodi', u'back', u'cut'] [u'servic', u'probe', u'rocherlea', u'blaze'] [u'flight', u'enact', u'ground'] [u'fisichella', u'test', u'ferrari', u'say', u'sauber'] [u'world', u'winner', u'england'] [u'execut', u'charg', u'briberi'] [u'freez', u'lift', u'burrup', u'plan', u'approv'] [u'fuel', u'woe', u'impact', u'harvest'] [u'fulham', u'cottag', u'return'] [u'fund', u'seek', u'save', u'fish'] [u'gallop', u'accus', u'runaway', u'rail', u'cost'] [u'good', u'cattl', u'export'] [u'governor', u'open', u'galleri'] [u'gregan', u'stay', u'year'] [u'harri', u'sale', u'rais', u'fear', u'local', u'news', u'coverag'] [u'heat', u'stay', u'health', u'minist'] [u'hilmer', u'sell', u'fairfax', u'share'] [u'hospit', u'alter', u'servic', u'christma'] [u'hous', u'blast', u'leav', u'hospit'] [u'india', u'land', u'hobart', u'team', u'clash'] [u'indonesian', u'muslim', u'outlaw', u'suicid', u'bomb'] [u'industri', u'warn', u'consum', u'wari', u'internet'] [u'intern', u'divis', u'blame', u'harri', u'sale'] [u'iran', u'signal', u'agreement', u'nuclear', u'check'] [u'iraqi', u'lab', u'plan', u'blair', u'say'] [u'iraqi', u'question', u'bodycount'] [u'iraq', u'minist', u'push', u'return'] [u'isra', u'plot', u'kill', u'saddam', u'reveal'] [u'jackson', u'formal', u'charg', u'prosecutor'] [u'juri', u'clear', u'polic', u'offic', u'crimin', u'charg'] [u'labor', u'town', u'latham', u'beazley'] [u'labor', u'review', u'super', u'entitl', u'latham'] [u'labor', u'work', u'govt', u'anti', u'terror', u'law'] [u'land', u'council', u'air', u'nativ', u'titl', u'offic', u'concern'] [u'leski', u'coron', u'criticis', u'expert'] [u'lib', u'declar', u'south', u'west', u'candid'] [u'life', u'term', u'give', u'china', u'orgi'] [u'lobster', u'tariff', u'decis', u'year'] [u'put', u'victorian', u'job', u'risk', u'govt'] [u'maher', u'star', u'bull', u'rout', u'redback'] [u'maher', u'salvag', u'inning'] [u'die', u'crash', u'passeng', u'critic'] [u'earn', u'braveri', u'award', u'abort', u'centr', u'action'] [u'face', u'court', u'stab'] [u'undergo', u'mental', u'check', u'sieg'] [u'mayor', u'seek', u'second', u'magnesium', u'project'] [u'mcgradi', u'reject', u'confid', u'motion'] [u'meet', u'talk', u'drought', u'measur'] [u'fund', u'seek', u'market', u'gold', u'zone'] [u'talk', u'kosciuszko', u'plan'] [u'back', u'call', u'wild', u'fund'] [u'needl', u'exchang', u'scheme', u'move', u'closer', u'realiti'] [u'cancer', u'drug', u'triall'] [u'foreshor', u'develop', u'wind'] [u'indemn', u'plan'] [u'rule', u'season'] [u'zealand', u'guarante', u'foreshor', u'access'] [u'water', u'restrict', u'wilcannia'] [u'assault', u'school'] [u'oppn', u'seek', u'health', u'royal', u'commiss'] [u'prawn', u'farm', u'sale', u'fuel', u'expans', u'plan'] [u'nuclear', u'crisi', u'talk', u'rule', u'year', u'south'] [u'olympian', u'ask', u'robber', u'return', u'gold', u'medal'] [u'onion', u'plant', u'nose', u'resid'] [u'organis', u'reflect', u'summerjam', u'failur'] [u'osbourn', u'heavi', u'metal', u'neck'] [u'pacemen', u'bowl', u'africa', u'west', u'indi'] [u'paralymp', u'skier', u'toppl', u'thorpedo', u'nsws', u'best'] [u'pension', u'polit', u'power', u'slash'] [u'urg', u'indemn', u'plan'] [u'point', u'cook', u'join', u'anniversari', u'flight', u'celebr'] [u'polic', u'call', u'protest', u'disrupt', u'council'] [u'polic', u'charg', u'dubbo', u'council', u'blaze'] [u'policeman', u'kill', u'saddam', u'demonstr'] [u'polic', u'probe', u'cruis', u'assault', u'alleg'] [u'polli', u'urg', u'road', u'fund', u'track'] [u'pope', u'call', u'sanction', u'leader', u'violat'] [u'posit', u'data', u'push', u'market', u'higher'] [u'posti', u'busi', u'xmas', u'approach'] [u'govt', u'boost', u'fund', u'child', u'protect'] [u'rail', u'secur', u'near', u'complet'] [u'research', u'trial', u'prostat', u'cancer', u'drug'] [u'research', u'track', u'naracoort', u'bat'] [u'revamp', u'brisban', u'north', u'bank', u'eyesor', u'slat'] [u'reward', u'offer', u'miss', u'teen', u'case'] [u'rise', u'land', u'valu', u'spark', u'rat', u'fear'] [u'roddick', u'feder', u'ferrero', u'king', u'world'] [u'erupt', u'daughter', u'hospit', u'death'] [u'rspca', u'unhappi', u'chicken', u'killer', u'sentenc'] [u'russian', u'space', u'trip', u'sale'] [u'salt', u'affect', u'farmer', u'respit'] [u'scheme', u'aim', u'hedland', u'water'] [u'search', u'miss', u'snowi', u'mountain', u'hiker'] [u'shark', u'facil'] [u'sheep', u'diseas', u'spread'] [u'singapor', u'breed', u'world', u'bisexu', u'butterfli'] [u'korea', u'send', u'troop', u'iraq'] [u'smaller', u'citi', u'risk', u'hous', u'price', u'collaps'] [u'special', u'train', u'plan', u'bushfir', u'pilot'] [u'sporn', u'lightn'] [u'strategi', u'aim', u'boost', u'bank', u'farm', u'relat'] [u'strong', u'econom', u'growth', u'forecast'] [u'sydney', u'bandit', u'spark', u'manhunt'] [u'tafe', u'cours', u'coff', u'harbour'] [u'taiwan', u'test', u'posit', u'sar'] [u'tip', u'christma', u'spend', u'record'] [u'taxi', u'driver', u'rebel'] [u'thailand', u'aust', u'pledg', u'combat', u'peopl', u'smuggl'] [u'tonga', u'gain', u'boost', u'wast'] [u'trio', u'clear', u'murder'] [u'tropic', u'hit', u'arnhem', u'land'] [u'turf', u'club', u'upbeat', u'beadman', u'ride'] [u'twin', u'town', u'plan', u'doubl', u'size'] [u'graduat', u'face', u'flat', u'job', u'market', u'report'] [u'union', u'name', u'sarina', u'shop', u'dump', u'month'] [u'withdraw', u'hamper', u'intern', u'school', u'plan'] [u'plan', u'extend', u'bougainvill', u'mission'] [u'deflat', u'push', u'aust', u'dollar', u'higher'] [u'raid', u'iraqi', u'suspect', u'weapon'] [u'secur', u'iraq', u'debt', u'deal'] [u'vanston', u'wash', u'hand', u'nauru', u'protest'] [u'vatican', u'criticis', u'treatment', u'saddam'] [u'violenc', u'continu', u'iraq'] [u'virgin', u'launch', u'wellington', u'sydney', u'servic'] [u'consid', u'aborigin', u'fish', u'right'] [u'plan', u'mine', u'job', u'summit'] [u'ship', u'builder', u'navi'] [u'water', u'restrict', u'eas', u'central'] [u'waugh', u'confid', u'australia', u'come'] [u'waugh', u'relish', u'challeng', u'go'] [u'william', u'confid', u'speedi', u'recoveri'] [u'william', u'confid', u'speedi', u'return'] [u'cut', u'riverland', u'news', u'bulletin'] [u'world', u'streaker', u'face', u'court'] [u'face', u'court', u'ecstasi', u'haul'] [u'fear', u'dead', u'south', u'korea', u'factori'] [u'aborigin', u'council', u'call', u'alcohol'] [u'academ', u'warn', u'age', u'care', u'crisi'] [u'activist', u'live', u'export', u'test', u'case'] [u'oppn', u'criticis', u'transport', u'propos'] [u'adelaid', u'share', u'stem', u'cell', u'fund'] [u'chang', u'water', u'test', u'method'] [u'ord', u'slide', u'earli', u'gain'] [u'ambul', u'servic', u'urg', u'summer', u'water', u'safeti'] [u'aquif', u'studi', u'tap', u'well'] [u'armstrong', u'aim', u'tour'] [u'asic', u'search', u'vizard', u'hous'] [u'atsic', u'urg', u'alcohol', u'advertis'] [u'aurora', u'notic', u'spark'] [u'aust', u'open', u'down'] [u'australia', u'agre', u'exercis'] [u'blatter', u'slam', u'europ', u'billionair', u'club'] [u'blaze', u'take', u'hold', u'preschool'] [u'bool', u'lagoon', u'limit', u'duck', u'hunter'] [u'burni', u'council', u'focus', u'attract', u'convent'] [u'bush', u'doctor', u'indemn', u'insur', u'effort'] [u'bushrang', u'need', u'perth', u'dayer'] [u'butt', u'plead', u'stay'] [u'surfer', u'tunnel', u'eas', u'traffic', u'woe'] [u'canadian', u'jail', u'flight', u'assault'] [u'cannon', u'trade', u'insolv', u'liquid'] [u'chang', u'bail', u'condit', u'child'] [u'chelsea', u'chase', u'nistelrooy'] [u'chirac', u'call', u'french', u'headscarf'] [u'question', u'alic', u'crime', u'figur'] [u'coal', u'export', u'grow', u'despit', u'strong', u'dollar', u'report'] [u'comment', u'seek', u'anglican', u'school', u'plan'] [u'commiss', u'offer', u'council', u'river', u'cross', u'report'] [u'communiti', u'gear', u'season', u'woe'] [u'council', u'bank', u'clune', u'studi'] [u'council', u'give', u'crisi', u'centr'] [u'council', u'give', u'servic', u'club', u'work'] [u'council', u'forgo', u'saleyard', u'secur', u'payment'] [u'council', u'urg', u'care', u'think', u'present'] [u'council', u'want', u'imparja', u'alcohol', u'continu'] [u'court', u'landhold', u'clear', u'fine'] [u'credit', u'union', u'plan', u'move', u'ahead'] [u'cyclon', u'concern', u'hamper', u'satellit'] [u'democrat', u'seek', u'year', u'ethanol', u'excis', u'free', u'period'] [u'demon', u'boss', u'surviv', u'leadership', u'challeng'] [u'doctor', u'meet', u'bateman', u'resign'] [u'downer', u'ponder', u'tonga'] [u'down', u'lead', u'windi', u'open'] [u'dummi', u'bid', u'charg', u'dismiss'] [u'earli', u'start', u'give', u'down', u'aust', u'open', u'lead'] [u'ethanol', u'refineri', u'plan', u'move', u'closer', u'realiti'] [u'timor', u'seek', u'longer', u'stay'] [u'govt', u'back', u'point', u'nepean'] [u'succumb', u'melbourn', u'heat'] [u'firefight', u'face', u'tough', u'condit', u'battl', u'blaze'] [u'firefight', u'skill', u'test'] [u'flinder', u'street', u'east', u'work', u'schedul'] [u'princip', u'face', u'wait', u'court', u'decis'] [u'sight', u'tasmania'] [u'freak', u'goal', u'save', u'inter', u'italian'] [u'fund', u'boost', u'internet', u'scheme'] [u'gallipoli', u'nomin', u'heritag', u'list'] [u'german', u'challeng', u'australian', u'movi', u'record'] [u'gladston', u'welcom', u'asbesto', u'payout'] [u'goldfield', u'acquisit', u'boost', u'miner', u'size'] [u'gold', u'ring', u'cheaper', u'swan', u'swim', u'expens'] [u'govt', u'announc', u'taxi', u'chang'] [u'govt', u'consid', u'home', u'grant', u'mean', u'test'] [u'govt', u'say', u'super', u'chang', u'unlik'] [u'greec', u'jail', u'terror', u'leader'] [u'griev', u'famili', u'want', u'death', u'inquest'] [u'grower', u'combin', u'effort', u'stave', u'liquid'] [u'grower', u'tell', u'address', u'liquid', u'payment'] [u'hamilton', u'green', u'favour', u'bowler'] [u'hewitt', u'bypass', u'olymp'] [u'hewitt', u'skip', u'olymp'] [u'hick', u'face', u'conspiraci', u'charg'] [u'high', u'citi', u'hous', u'price', u'prompt', u'bush', u'return'] [u'hop', u'anderson', u'address', u'black', u'spot'] [u'huge', u'market', u'retract', u'syring', u'inventor'] [u'india', u'hop', u'maintain', u'momentum', u'hobart'] [u'indigen', u'artefact', u'spark', u'sandon', u'legal'] [u'indigen', u'leader', u'seek', u'treati'] [u'intrud', u'stab', u'japanes', u'boy', u'classroom'] [u'investig', u'continu', u'paint', u'busi'] [u'iranian', u'face', u'sixth', u'christma', u'detent'] [u'isra', u'soldier', u'kill', u'palestinian', u'gunmen'] [u'jackson', u'return', u'cap'] [u'king', u'crush', u'cat'] [u'king', u'holder', u'mallorca', u'fall', u'levant'] [u'lara'] [u'leed', u'star', u'morri', u'court', u'rape', u'charg'] [u'lehmann', u'clear', u'comeback'] [u'liverpool', u'injuri'] [u'longer', u'hour', u'seek', u'rescu', u'chopper'] [u'blood', u'transmiss', u'case', u'diagnos'] [u'magnesium', u'site', u'decis', u'expect', u'year'] [u'malt', u'manufactur', u'win', u'suppli', u'contract'] [u'face', u'court', u'yamba', u'rape'] [u'shoot', u'reagan', u'allow', u'leav'] [u'master', u'appeal', u'preselect', u'ballot'] [u'mayor', u'angri', u'council', u'merger', u'review'] [u'mayor', u'urg', u'region', u'incent', u'help', u'peopl'] [u'mbeki', u'arriv', u'mugab', u'talk'] [u'mcgrath', u'lehmann', u'eye', u'januari', u'comeback'] [u'mean', u'test', u'plan', u'home', u'grant'] [u'medial', u'societi', u'pan', u'indemn', u'packag'] [u'melbourn', u'fire', u'caus', u'thousand', u'dollar'] [u'meninga', u'assault', u'hear', u'april'] [u'reach', u'court', u'settlement', u'church', u'abus'] [u'meter', u'reader', u'strike'] [u'michael', u'jackson', u'face', u'molest', u'charg'] [u'midwiv', u'protest', u'appoint'] [u'millic', u'hous', u'trust', u'properti', u'worth'] [u'minardi', u'sign', u'baumgartn'] [u'plan', u'promis', u'truck', u'movement'] [u'minist', u'conced', u'need', u'sarina', u'polic', u'station'] [u'minist', u'open', u'longreach', u'ambul', u'facil'] [u'misheard', u'verdict', u'free'] [u'activ', u'urg', u'youth', u'crime'] [u'arrest', u'expect', u'council', u'blaze'] [u'fund', u'inject', u'drug', u'scheme'] [u'highlight', u'need', u'polic', u'road', u'crackdown'] [u'sing', u'prais', u'bega', u'dairi', u'industri'] [u'tri', u'save', u'tafe', u'cours'] [u'want', u'land', u'review'] [u'worri', u'diesel', u'shortag', u'rural', u'impact'] [u'gambier', u'busi', u'urg', u'recycl'] [u'nation', u'park', u'spar', u'lightn', u'fire'] [u'nat', u'muchea', u'saleyard', u'wrong', u'track'] [u'nauru', u'manag', u'claim', u'children', u'push', u'strike'] [u'nauru', u'staff', u'fear', u'children'] [u'share', u'close'] [u'cours', u'test', u'aust', u'open', u'competitor'] [u'chief', u'name'] [u'korea', u'beef', u'nuclear', u'forc'] [u'immedi', u'colleg', u'sell'] [u'opposit', u'swamp', u'hospit', u'complaint'] [u'student', u'improv', u'result'] [u'cyclon', u'watch'] [u'optus', u'plan', u'satellit', u'launch'] [u'palestinian', u'teenag', u'kill', u'rafah'] [u'patrol', u'boat', u'contract', u'buoy', u'canberra', u'compani'] [u'polic', u'diver', u'recov', u'item', u'sink', u'booya'] [u'polic', u'issu', u'rail', u'safeti', u'warn'] [u'polic', u'prais', u'melbourn', u'rescu'] [u'polic', u'role', u'soham', u'murder', u'inquiri'] [u'polic', u'seek', u'help', u'solv', u'wellington', u'death'] [u'polic', u'station', u'target', u'dead', u'suicid', u'attack'] [u'polic', u'look', u'clue', u'miss', u'teen'] [u'princess', u'diana', u'inquest', u'januari'] [u'probe', u'order', u'nauru', u'protest'] [u'public', u'council', u'aquat', u'park'] [u'doctor', u'unhappi', u'indemn', u'packag'] [u'refuge', u'group', u'want', u'media', u'access', u'nauru'] [u'region', u'victoria', u'experi', u'interst', u'tourism'] [u'report', u'clear', u'near', u'miss'] [u'research', u'show', u'coral', u'gene', u'human', u'similar'] [u'road', u'contribut', u'weed', u'woe'] [u'saddam', u'baghdad', u'iraqi', u'council'] [u'safeti', u'probe', u'dead', u'intersect'] [u'sar', u'hit', u'market'] [u'seek', u'imparja', u'fund', u'stop', u'booz'] [u'seven', u'kill', u'french', u'armi', u'plane', u'crash'] [u'shooter', u'gather', u'pussi', u'hunt'] [u'singaporean', u'member', u'arrest', u'minist'] [u'singapor', u'sar', u'alert'] [u'singapor', u'quarantin', u'taiwan', u'sar', u'scare'] [u'site', u'choos', u'human', u'servic', u'build'] [u'skippi', u'star', u'die', u'london'] [u'lanka', u'draw', u'inspir', u'india'] [u'storm', u'leav', u'wheatbelt', u'home', u'dark'] [u'studi', u'find', u'fall', u'fruit', u'picker', u'number'] [u'sudan', u'confisc', u'jazeera', u'equip'] [u'surf', u'titl', u'decid', u'postpon'] [u'sydney', u'dump', u'face', u'court', u'challeng'] [u'tanker', u'blast', u'baghdad', u'accid'] [u'busi', u'defend', u'nurs', u'offer'] [u'scientist', u'win', u'intern', u'prize'] [u'white', u'asbesto'] [u'yacht', u'adventur', u'forc', u'home'] [u'thompson', u'barbarian', u'match'] [u'thredbo', u'search', u'miss', u'hiker', u'expand'] [u'soldier', u'wound', u'iraqi', u'attack', u'polic'] [u'campus', u'offer', u'marin', u'biolog', u'cours'] [u'union', u'fear', u'uranium', u'worker', u'safeti'] [u'union', u'welcom', u'extra', u'famili', u'dept', u'fund'] [u'court', u'rule', u'medic', u'marijuana'] [u'let', u'saudi', u'embassi', u'staff', u'leav'] [u'soldier', u'kill', u'baghdad', u'ambush'] [u'strike', u'central', u'american', u'free', u'trade', u'deal'] [u'troop', u'kill', u'iraq'] [u'vandal', u'target', u'mobil', u'phone', u'tower'] [u'seek', u'good', u'address', u'fuel', u'shortag'] [u'farmer', u'appeal', u'fuel', u'harvest'] [u'govt', u'back', u'lung', u'function', u'review', u'recommend'] [u'opposit', u'seek', u'wind', u'farm', u'answer'] [u'villa', u'middlesbrough', u'advanc', u'leagu', u'semi'] [u'vital', u'oxygen', u'sensor'] [u'accus', u'nativ', u'titl', u'reluct'] [u'busi', u'troubl', u'perth', u'rail', u'link'] [u'withhold', u'payment', u'anger', u'farmer', u'group'] [u'woman', u'convict', u'leav', u'babi', u'daughter'] [u'work', u'begin', u'year', u'movi', u'studio'] [u'wright', u'brother', u'flight', u'end', u'splash'] [u'contract', u'secur', u'region', u'rail', u'freight'] [u'iraqi', u'polic', u'kill', u'attack', u'offici'] [u'abalon', u'poacher', u'bust', u'victoria'] [u'announc', u'bushfir', u'rebuild', u'plan'] [u'win', u'power', u'station'] [u'allan', u'make', u'moonah', u'link'] [u'ord', u'push', u'higher'] [u'team', u'strong', u'start', u'india'] [u'aussi', u'champ', u'squash', u'world', u'open'] [u'australia', u'commit', u'million', u'help', u'fiji', u'fight'] [u'australian', u'get', u'older', u'averag'] [u'beatti', u'criticis', u'indigen', u'care', u'comment'] [u'becker', u'dodg', u'internet', u'fallout'] [u'bishop', u'involv', u'abus', u'mediat'] [u'brack', u'talk', u'region', u'employ'] [u'british', u'face', u'dirti', u'bombcharg'] [u'bulk', u'haulag', u'firm', u'complain', u'rat', u'shortfal'] [u'bull', u'tiger', u'steadi'] [u'bunburi', u'mayor', u'look', u'state', u'polit'] [u'bunburi', u'welcom', u'sink', u'illeg', u'fish', u'boat'] [u'burn', u'recov', u'steal', u'medal'] [u'burr', u'back', u'growth', u'clearfel'] [u'detaine', u'join', u'famili', u'christma'] [u'nurs', u'home', u'fund', u'boost'] [u'canada', u'decriminalis'] [u'card', u'scheme', u'patient', u'inform'] [u'centrelink', u'check', u'save', u'govt'] [u'chang', u'need', u'golf', u'club', u'project'] [u'chief', u'hospit', u'bureaucrat', u'sack'] [u'chook', u'rule', u'meat', u'eater', u'roost'] [u'clean', u'continu', u'victorian', u'storm'] [u'coast', u'enjoy', u'longer', u'beach', u'patrol'] [u'communiti', u'group', u'urg', u'share', u'fund'] [u'corridor', u'work', u'includ', u'hous', u'survey'] [u'court', u'award', u'posthum', u'damag', u'asbesto', u'victim'] [u'court', u'flummox', u'misheard', u'verdict'] [u'croc', u'expect', u'bullet'] [u'cyclon', u'season', u'open', u'debbi'] [u'debat', u'consid', u'grower', u'unsecur', u'creditor', u'status'] [u'delay', u'expect', u'catchment', u'author'] [u'despotovski', u'miss', u'melbourn', u'match'] [u'doctor', u'group', u'see', u'mix', u'insur', u'plan'] [u'downer', u'dous', u'nauru', u'citizenship', u'plan'] [u'down', u'lead', u'aust', u'open', u'field'] [u'down', u'retain', u'open', u'lead'] [u'unsur', u'action', u'court', u'verdict'] [u'east', u'germani', u'communist', u'leader', u'walk', u'free'] [u'esper', u'polic', u'crack', u'robberi'] [u'europ', u'mar', u'probe', u'enter', u'phase'] [u'explos', u'kill', u'baghdad'] [u'shire', u'presid', u'seek', u'rejoin', u'council'] [u'fals', u'alarm', u'task', u'forc'] [u'farmer', u'critic', u'aurora', u'energi'] [u'govt', u'await', u'toxic', u'wast', u'site', u'decis'] [u'ferdinand', u'hear', u'adjourn'] [u'fleme', u'hit', u'pakistan', u'fight'] [u'bond', u'exec', u'fail', u'gain', u'bail'] [u'fulham', u'aim', u'cash', u'chelsea', u'slump'] [u'fulham', u'warn', u'fergi', u'saha'] [u'gillespi', u'box', u'test'] [u'goldfield', u'record', u'high', u'suicid', u'rate'] [u'govt', u'reject', u'ward', u'closur', u'claim'] [u'govt', u'launch', u'healthi', u'river', u'strategi'] [u'gray', u'readi', u'viduka', u'goal', u'rush'] [u'green', u'group', u'unhappi', u'council', u'tree', u'polici'] [u'group', u'work', u'visitor', u'centr'] [u'henri', u'name', u'black', u'coach'] [u'hib', u'oust', u'celtic', u'leagu'] [u'high', u'hop', u'koori', u'court'] [u'hinkley', u'inquest', u'plan', u'coff', u'harbour'] [u'hospit', u'inquiri', u'chief', u'work'] [u'hous', u'price', u'kalgoorli', u'boulder'] [u'indigen', u'student', u'creat', u'histori'] [u'indonesian', u'polic', u'terror', u'suspect'] [u'insid', u'trade', u'raid', u'target', u'vizard'] [u'insur', u'oyster', u'contamin', u'payout'] [u'inter', u'viduka', u'heighten'] [u'investig', u'begin', u'fatal'] [u'pay', u'price', u'flop', u'mitchel'] [u'iran', u'allow', u'surpris', u'nuclear', u'inspect'] [u'iraq', u'unjustifi', u'putin', u'say'] [u'jackson', u'charg', u'child', u'molest'] [u'jackson', u'lawyer', u'vow', u'fight'] [u'japan', u'purchas', u'defenc', u'shield'] [u'jobless', u'rate', u'indic', u'econom', u'downturn'] [u'juri', u'consid', u'peopl', u'smuggl', u'case'] [u'kidman', u'film', u'top', u'globe', u'list'] [u'labor', u'green', u'nauru', u'help'] [u'land', u'valuer', u'protest', u'workload'] [u'love', u'put', u'hand', u'india'] [u'die', u'sturt', u'highway', u'crash'] [u'jail', u'cannabi', u'elig', u'parol', u'soon'] [u'face', u'trial', u'pregnant', u'woman', u'assault', u'charg'] [u'stand', u'trial', u'post', u'offic', u'murder'] [u'seek', u'region', u'focus', u'hous'] [u'mccafferti', u'chief', u'lose', u'posit'] [u'mcgrath', u'say', u'return', u'crucial'] [u'melbourn', u'nightclub', u'shut'] [u'milan', u'italian', u'clash', u'roma'] [u'minist', u'unveil', u'clarenc', u'valley', u'super', u'council', u'plan'] [u'minist', u'welcom', u'digger', u'club', u'fine'] [u'stay', u'quiet'] [u'navi', u'examin', u'westralia', u'find'] [u'black', u'coach', u'target', u'forward'] [u'niagara', u'fall', u'jumper', u'fin'] [u'injuri', u'latest', u'sydney', u'shoot'] [u'money', u'rise', u'age', u'care', u'sector', u'say'] [u'suspect', u'tent', u'embassi', u'arson', u'polic'] [u'drug', u'user', u'like', u'seek', u'help', u'survey', u'find'] [u'nuke', u'watchdog', u'prais', u'iran'] [u'stock', u'exchang', u'face', u'overhaul'] [u'time', u'report', u'defi', u'order', u'reveal', u'sourc'] [u'ombudsman', u'launch', u'port', u'hedland', u'riot', u'inquiri'] [u'optus', u'deni', u'centr'] [u'palm', u'resid', u'welcom', u'admin', u'chang'] [u'plan', u'readi', u'danger', u'heat'] [u'plan', u'underway', u'medic', u'school', u'facil'] [u'polic', u'hope', u'enanct', u'help', u'miss'] [u'polic', u'hunt', u'bomber'] [u'polic', u'charg', u'hous', u'blaze'] [u'polic', u'forc', u'holiday', u'period'] [u'polic', u'push', u'christma', u'road', u'safeti'] [u'polic', u'readi', u'holiday', u'road', u'safeti', u'blitz'] [u'polic', u'upgrad', u'narromin', u'death', u'probe', u'status'] [u'pont', u'skip', u'tiger', u'blue', u'clash'] [u'port', u'hedland', u'financi', u'woe', u'lead', u'council'] [u'posit', u'data', u'drive', u'wall', u'street', u'higher'] [u'probe', u'launch', u'shed', u'blaze'] [u'public', u'servant', u'claim'] [u'public', u'urg', u'buckl', u'save', u'live'] [u'qanta', u'australia', u'post', u'road', u'freight', u'deal'] [u'connect', u'armidal', u'mall', u'secur', u'boost'] [u'govt', u'help', u'fund', u'work'] [u'push', u'drought', u'research', u'centr', u'fund'] [u'quirindi', u'mayor', u'stand', u'shire', u'shake', u'plan'] [u'quot', u'seek', u'pool', u'revamp'] [u'race', u'club', u'announc', u'prizemoney'] [u'rain', u'boost', u'water', u'alloc'] [u'ratepay', u'remind', u'valuat', u'avenu'] [u'realnetwork', u'file', u'microsoft', u'anti', u'trust', u'suit'] [u'real', u'surviv', u'king', u'scare'] [u'chief', u'exec', u'look', u'forward', u'competit'] [u'rivkin', u'remain', u'free'] [u'rylston', u'council', u'respond', u'harsh', u'report'] [u'saddam', u'document', u'drive', u'crackdown'] [u'santo', u'fail', u'fatal'] [u'scheme', u'boost', u'region', u'broadband', u'access'] [u'scott', u'make', u'histori', u'belat', u'ski', u'gold'] [u'search', u'interst', u'freight', u'train', u'oper'] [u'search', u'widen', u'miss', u'czech', u'tourist'] [u'senden', u'earli', u'mover', u'moonah', u'link'] [u'welcom', u'danger', u'beach', u'report'] [u'sharon', u'threaten'] [u'singapor', u'claim', u'anti', u'terror', u'success'] [u'site', u'loss', u'anglican', u'school', u'plan'] [u'snore', u'link', u'heart', u'failur'] [u'farmer', u'snub'] [u'cours', u'tougher', u'access'] [u'south', u'jump', u'clear', u'wolv', u'stallion', u'draw'] [u'lankan', u'batsmen', u'torment', u'england'] [u'georg', u'predict', u'hous', u'slowdown'] [u'georg', u'warn', u'cool', u'hous', u'growth'] [u'surpris', u'port', u'recruit', u'prim', u'second', u'chanc'] [u'sydney', u'hobart', u'suffer', u'late', u'withdraw'] [u'takeov', u'battl', u'take', u'turn'] [u'teen', u'guilti', u'washington', u'sniper', u'case'] [u'better', u'urg', u'help', u'needi', u'christma'] [u'wicket', u'murali', u'check', u'england'] [u'tongan', u'sentenc', u'kava', u'charg'] [u'torbay', u'back', u'kelli', u'amidst', u'reform', u'anger'] [u'trader', u'enjoy', u'strong', u'christma', u'sale'] [u'transport', u'put', u'brake', u'lower', u'speed', u'limit', u'plan'] [u'arrest', u'underworld', u'case'] [u'tell', u'drop', u'anti', u'terror', u'law'] [u'union', u'back', u'driver', u'offer'] [u'administr', u'surviv', u'baghdad', u'assassin'] [u'court', u'deal', u'guantanamo', u'blow'] [u'court', u'overrul', u'bush', u'terror', u'detent'] [u'lose', u'barrichello', u'tell', u'ferrari'] [u'oppos', u'sharon', u'palestinian', u'solut'] [u'resettl', u'thousand', u'secret', u'armi'] [u'weapon', u'inspector', u'ponder', u'futur'] [u'vanston', u'team', u'hold', u'nauru', u'talk'] [u'politician', u'urg', u'vizard', u'stay'] [u'virgin', u'review', u'melbourn', u'incid', u'report'] [u'warn', u'kiss', u'tell', u'accus', u'fin'] [u'warrior', u'perth', u'dayer'] [u'target', u'tuna', u'catch'] [u'water', u'fund', u'livingston', u'shire'] [u'west', u'coast', u'group', u'upbeat', u'plan', u'law'] [u'westralia', u'report', u'receiv', u'mute', u'welcom'] [u'wimbledon', u'organis', u'look', u'retract', u'roof'] [u'youth', u'refug', u'hous', u'plan', u'alic'] [u'clear', u'telstra', u'unansw', u'call'] [u'clear', u'telstra', u'unansw', u'call'] [u'adelaid', u'shock', u'power'] [u'black', u'foot', u'henri', u'rugbi'] [u'qaeda', u'leader', u'say', u'chase', u'american', u'homeland'] [u'annan', u'press', u'burma', u'work', u'democraci'] [u'arafat', u'remain', u'central', u'palestinian', u'figur'] [u'archiv', u'expos', u'rumsfeld', u'iraq', u'mission'] [u'aussi', u'hand', u'olymp', u'ceremoni', u'rein'] [u'australian', u'produc', u'olymp', u'ceremoni'] [u'australia', u'welcom', u'libyan', u'weapon', u'commit'] [u'ballast', u'polici', u'safeguard', u'port', u'phillip'] [u'beatti', u'hop', u'term'] [u'brazil', u'pass', u'controversi', u'social', u'reform', u'packag'] [u'british', u'royal', u'mail', u'stick', u'australia', u'rugbi'] [u'bull', u'batsmen', u'punish', u'redback'] [u'crash', u'kill', u'belgium'] [u'bushrang', u'inning', u'point'] [u'probe', u'note', u'acceptor', u'casino'] [u'carmak', u'bank', u'agre', u'futur'] [u'cash', u'strap', u'german', u'citi', u'levi'] [u'church', u'ordain', u'femal', u'indigen', u'priest'] [u'cleric', u'say', u'bali', u'bomber', u'god', u'fighter'] [u'coal', u'washeri', u'research', u'clean', u'process', u'csiro'] [u'colombian', u'gunmen', u'kill', u'report', u'port', u'citi'] [u'colombian', u'rebel', u'free', u'isra', u'tourist'] [u'coupl', u'lucki', u'escap', u'freeway', u'rock', u'attack'] [u'court', u'rule', u'pakistani', u'muslim', u'women', u'free', u'choos'] [u'cyclon', u'debbi', u'near', u'coast'] [u'downer', u'dismiss', u'sexist', u'nepot', u'claim'] [u'down', u'hold', u'moonah', u'link'] [u'down', u'hold', u'open', u'lead', u'applebi', u'move'] [u'dream', u'come', u'true', u'iron', u'defend', u'world', u'surf'] [u'drought', u'forc', u'kangaroo', u'cull'] [u'risk', u'indiscrimin', u'studi'] [u'famili', u'back', u'jackson', u'child', u'abus', u'charg'] [u'ferdinand', u'ban', u'month'] [u'ferdinand', u'short', u'say', u'wada', u'chief'] [u'ferdinand', u'punish', u'harsh', u'redknapp'] [u'crew', u'bring', u'gippsland', u'blaze', u'control'] [u'fleme', u'vettori', u'riot', u'pakistan'] [u'govt', u'ramp', u'phone', u'drive', u'penalti'] [u'govt', u'send', u'famili', u'iraq'] [u'grey', u'nurs', u'shark', u'protect'] [u'griev', u'father', u'seek', u'westralia', u'braveri', u'award'] [u'harrop', u'thompson', u'secur', u'olymp', u'spot'] [u'hospit', u'deni', u'patient', u'leav', u'watch', u'babi'] [u'howard', u'visit', u'vibrant', u'solomon'] [u'indigen', u'program', u'fail'] [u'form', u'bevan', u'put', u'blue', u'control'] [u'injur', u'norman', u'like', u'miss', u'australian', u'open'] [u'irish', u'priest', u'buri', u'cart', u'funer'] [u'isra', u'palestinian', u'protest', u'settlement'] [u'suspect', u'istanbul', u'suicid', u'blast', u'formal'] [u'king', u'hawk', u'song', u'taipan'] [u'landslid', u'kill', u'philippin'] [u'lara', u'chanderpaul', u'prop', u'west', u'indi'] [u'leader', u'talk', u'militari', u'tie', u'china', u'bid'] [u'libya', u'weapon', u'program'] [u'crush', u'death', u'industri'] [u'kill', u'vehicl', u'rollov'] [u'miss', u'snowi', u'mountain', u'tourist', u'aliv'] [u'mother', u'seek', u'curtain', u'safeti', u'standard'] [u'murdoch', u'win', u'satellit', u'dream'] [u'music', u'file', u'sharer', u'clear', u'dutch', u'court'] [u'nato', u'approv', u'extens', u'afghan', u'forc'] [u'nauru', u'hunger', u'strike', u'continu'] [u'nicholson', u'shin', u'india'] [u'justic', u'minist', u'call', u'feder', u'action'] [u'opportun', u'knock', u'australia'] [u'organis', u'crime', u'rife', u'report', u'say'] [u'pari', u'prosecutor', u'appeal', u'diana', u'paparazzi', u'acquitt'] [u'parmalat', u'reveal', u'euro', u'black', u'hole'] [u'philippin', u'landslid', u'death', u'toll', u'approach'] [u'plan', u'unveil', u'freedom', u'tower', u'york'] [u'visit', u'solomon', u'island'] [u'polic', u'driver', u'care'] [u'polic', u'launch', u'search', u'miss', u'elder'] [u'halt', u'landmark', u'court', u'rule'] [u'reject', u'complaint'] [u'rampant', u'lankan', u'domin', u'england'] [u'ranger', u'blame', u'spirit', u'go', u'break'] [u'retail', u'test', u'internet', u'music', u'download'] [u'plan', u'minimum', u'wage'] [u'sar', u'quarantin', u'lift', u'singapor'] [u'scandal', u'peru', u'minist', u'quit', u'day'] [u'season', u'end', u'knock', u'star', u'bear'] [u'seven', u'film', u'special', u'effect', u'oscar'] [u'spain', u'surpris', u'troop', u'iraq'] [u'spanish', u'news', u'agenc', u'close', u'arab', u'servic'] [u'sudan', u'close', u'jazeera', u'offic', u'detain', u'employe'] [u'suspect', u'question', u'lade', u'link'] [u'sydney', u'servic', u'station', u'attend', u'stab'] [u'teen', u'drug', u'fall'] [u'isl', u'wight', u'comeback'] [u'thousand', u'student', u'send', u'home', u'sniper', u'scare'] [u'tiatto', u'pois', u'citi', u'rescu', u'mission'] [u'tiger', u'bite', u'lee'] [u'soon', u'decid', u'libya', u'sanction'] [u'track', u'legend', u'lewi', u'give', u'year', u'probat'] [u'kill', u'separ', u'road', u'accid'] [u'appeal', u'australia', u'nauru', u'crisi'] [u'union', u'stalwart', u'halfpenni', u'die', u'age'] [u'urg', u'peacekeep', u'troop', u'liberia'] [u'want', u'access', u'brazil', u'atom', u'enrich', u'plant'] [u'kill', u'iraqi', u'polic', u'report'] [u'increas', u'terror', u'alert', u'holiday', u'season'] [u'open', u'talk', u'role', u'iraq'] [u'stock', u'choppi', u'trade', u'attack', u'threat', u'weigh'] [u'valdez', u'spill', u'impact', u'long', u'last', u'report'] [u'vanston', u'hail', u'peopl', u'smuggl', u'convict'] [u'releas', u'forestri', u'plan'] [u'weather', u'hamper', u'snowi', u'mountain', u'tourist', u'search'] [u'west', u'africa', u'imped', u'polio', u'erad'] [u'window', u'arriv', u'mail'] [u'woodward', u'confirm', u'lion', u'talk'] [u'world', u'court', u'hold', u'hear', u'isra', u'wall'] [u'world', u'court', u'rule', u'israel', u'wall'] [u'zimbabw', u'court', u'rule', u'favour', u'newspap'] [u'fear', u'dead', u'philippin', u'landslid'] [u'injur', u'blast', u'argentina'] [u'driver', u'warn', u'doubl', u'demerit', u'point'] [u'launch', u'websit', u'unclaim', u'moni'] [u'adelaid', u'drench', u'downpour'] [u'adelaid', u'hous', u'raid', u'cross', u'border', u'drug', u'sting'] [u'afghan', u'arrest', u'taliban', u'offici', u'link', u'dead'] [u'afghan', u'near', u'deal', u'controversi', u'presidenti'] [u'atapattu', u'deni', u'match', u'fix'] [u'author', u'fear', u'miss', u'elder'] [u'weather', u'hinder', u'pakistan', u'match'] [u'beckham', u'year', u'boot', u'unit'] [u'belgium', u'youth', u'sampra', u'depart'] [u'berlusconi', u'save', u'parmalat', u'probe', u'begin'] [u'bevan', u'magic', u'give', u'blue', u'upper', u'hand'] [u'bevan', u'power', u'blue', u'inning', u'point'] [u'lade', u'tape', u'appear', u'say'] [u'lade', u'tape', u'slam', u'crusad', u'iraq'] [u'bondi', u'sewerag', u'plant', u'million', u'upgrad'] [u'british', u'famili', u'demand', u'inquiri', u'lockerbi'] [u'bull', u'squash', u'redback', u'gabba'] [u'cambodian', u'appeal', u'life', u'sentenc', u'backpack'] [u'centurion', u'clark', u'unbeaten', u'declar'] [u'chelsea', u'joint', u'bolton', u'hold', u'arsenal'] [u'conspiraci', u'abound', u'serbia', u'brace', u'djindjic'] [u'cyclon', u'debbi', u'cross', u'coast'] [u'cyclon', u'debbi', u'die'] [u'cyclon', u'debbi', u'weaken', u'cross', u'coast'] [u'damag', u'minor', u'cyclon', u'debbi', u'hit'] [u'downer', u'prais', u'effort'] [u'down', u'regain', u'open', u'lead'] [u'duff', u'disloc', u'shoulder'] [u'england', u'cruis', u'past', u'zealand', u'barbarian'] [u'ferdinand', u'quit', u'england', u'ferguson'] [u'ferguson', u'say', u'ferdinand', u'case', u'court'] [u'final', u'round', u'get', u'underway', u'moonah'] [u'femal', u'indigen', u'priest', u'overjoy'] [u'saddam', u'offici', u'shoot', u'dead', u'iraq'] [u'furious', u'mitchel', u'quit', u'zealand'] [u'fusion', u'reactor', u'site', u'decis', u'delay'] [u'green', u'stop', u'luca', u'earn', u'shoot', u'beyer'] [u'hobart', u'hospit', u'warn', u'patient', u'whoop', u'cough'] [u'hundr', u'gather', u'parti', u'neverland'] [u'india', u'play', u'draw', u'hobart'] [u'india', u'test', u'short', u'rang', u'surfac', u'missil'] [u'indonesia', u'singapor', u'mull', u'deploy', u'marshal'] [u'iranian', u'fund', u'turkey', u'bomb', u'suspect'] [u'isra', u'palestinian', u'meet', u'report'] [u'isra', u'arrest', u'hama', u'offici', u'west', u'bank'] [u'italian', u'govt', u'discuss', u'troubl', u'station'] [u'khaddafi', u'see', u'tie', u'west'] [u'kiwi', u'extra', u'spinner', u'second', u'pakistan'] [u'libya', u'put', u'pressur', u'israel'] [u'libyan', u'offici', u'meet', u'nuclear', u'watchdog'] [u'libya', u'prais', u'scrap', u'weapon', u'program'] [u'libya', u'nuclear', u'program', u'advanc', u'think'] [u'lonard', u'crown', u'open', u'champ'] [u'malaysia', u'delay', u'suspect', u'deport'] [u'abandon', u'dream', u'record', u'solo', u'sail'] [u'assault', u'club', u'lock'] [u'die', u'stab', u'servic', u'station'] [u'die', u'trawler', u'accid'] [u'murder', u'palmerston'] [u'hospitalis', u'derelict', u'hous'] [u'marri', u'women', u'beij', u'condom', u'ration'] [u'mask', u'kill', u'suspect', u'palestinian', u'collabor'] [u'mista', u'valencia'] [u'mrdja', u'doubl', u'boost', u'perth'] [u'nation', u'holiday', u'road', u'toll', u'hit'] [u'live', u'come', u'handi', u'kitti', u'rescu'] [u'govt', u'defend', u'health', u'fund', u'growth', u'cut'] [u'outrag', u'jackson', u'visit'] [u'panther', u'boss', u'hit', u'rooster', u'threat'] [u'person', u'dead', u'caravan'] [u'call', u'releas', u'land', u'eas', u'hous'] [u'polic', u'hundr', u'call', u'miss'] [u'polic', u'search', u'assault'] [u'protest', u'block', u'highway', u'toxic', u'wast', u'dump'] [u'brace', u'christma', u'heatwav'] [u'polic', u'second', u'enact', u'miss'] [u'raaf', u'spi', u'iran', u'approv', u'report'] [u'ranger', u'surviv', u'heart', u'scare'] [u'refuge', u'group', u'concern', u'nauru', u'deleg'] [u'report', u'recommend', u'taxi', u'overhaul'] [u'rooster', u'threaten', u'salari', u'challeng'] [u'russia', u'tout', u'space', u'honeymoon'] [u'saddam', u'hold', u'kurd', u'drug', u'leav'] [u'sapphir', u'claim', u'women', u'soccer', u'crown'] [u'sarwan', u'build', u'west', u'indi', u'lead', u'border'] [u'seafood', u'industri', u'put', u'bite', u'pain', u'shark'] [u'search', u'continu', u'elder', u'brisban'] [u'sharon', u'comment', u'unhelp', u'palestinian', u'say'] [u'siberian', u'tiger', u'china', u'cataract', u'remov'] [u'charg', u'cross', u'border', u'drug', u'traffic'] [u'lanka', u'annihil', u'england', u'clinch', u'seri'] [u'sudan', u'criticis', u'close', u'jazeera', u'offic'] [u'charg', u'club', u'lock', u'assault'] [u'injur', u'blast', u'thousand', u'argentin'] [u'kill', u'attack', u'iraqi', u'citi', u'polic'] [u'tiger', u'declaw', u'gang', u'nobodi'] [u'tollway', u'consid', u'drop', u'automat', u'fin'] [u'totti', u'doubl', u'send', u'roma', u'point', u'clear'] [u'shop', u'put', u'dampen', u'christma'] [u'tribut', u'pour', u'unionist', u'halfpenni'] [u'briton', u'rescu', u'antarct', u'helicopt'] [u'drop', u'charg', u'guantanamo'] [u'navi', u'claim', u'gulf', u'heroin', u'bust'] [u'priest', u'challeng', u'cardin', u'case'] [u'govt', u'launch', u'probe', u'juvenil', u'justic'] [u'vic', u'pile', u'run', u'waca'] [u'virgin', u'atlant', u'pilot', u'arrest', u'booz'] [u'govt', u'look', u'worldwid', u'cancer', u'centr'] [u'waiter', u'there', u'aria', u'soup'] [u'plan', u'tougher', u'law', u'danger', u'drive'] [u'woman', u'kill', u'accid'] [u'woman', u'kill', u'strike'] [u'world', u'court', u'set', u'danger', u'preced', u'israel'] [u'zimbabw', u'opposit', u'leader', u'ralli', u'parti', u'faith'] [u'hous', u'boost', u'kimberley', u'communiti'] [u'chistma', u'trade', u'rise'] [u'govt', u'defend', u'court', u'appoint'] [u'alic', u'council', u'focus', u'traffic'] [u'extradit', u'request', u'khazal'] [u'ambul', u'bypass', u'sydney', u'hospit'] [u'archbishop', u'denounc', u'detent', u'polici'] [u'ascot', u'turf', u'show', u'improv'] [u'audit', u'offic', u'back', u'ansett', u'entitl', u'process'] [u'australian', u'phone', u'cost', u'high'] [u'australian', u'terror', u'threat', u'level', u'unchang'] [u'bank', u'custom', u'shoot', u'sydney', u'hold'] [u'barbarian', u'lock', u'flavel', u'cite', u'hill', u'incid'] [u'beach', u'barg', u'refloat'] [u'beatti', u'lament', u'nathan', u'delay'] [u'bendigo', u'campus', u'link', u'ballarat'] [u'bevan', u'elliott', u'flaw', u'star'] [u'bhutan', u'princ', u'leav', u'oxford', u'fight', u'rebel'] [u'blue', u'chase', u'fall', u'short'] [u'blue', u'fall', u'short', u'despit', u'stun', u'chase'] [u'blue', u'fall', u'short', u'despit', u'stun', u'chase'] [u'boati', u'remind', u'play', u'safe'] [u'boati', u'tell', u'play', u'safe'] [u'bodi', u'recov', u'immigr', u'ship', u'sink', u'near'] [u'bodi', u'releas', u'youth', u'drive', u'safe', u'strategi'] [u'boggabri', u'resid', u'ask', u'water', u'usag'] [u'boost', u'plan', u'break', u'hill', u'jail'] [u'breast', u'cervix', u'cancer', u'death', u'rate', u'fall'] [u'briberi', u'alleg', u'branch'] [u'brother', u'lawyer', u'reject', u'terror', u'convict'] [u'bushfir', u'move', u'town'] [u'busi', u'help', u'lower', u'power', u'bill'] [u'celtic', u'control'] [u'christma', u'gift', u'plan', u'detaine'] [u'colombian', u'rebel', u'free', u'hostag'] [u'committe', u'consid', u'recreat', u'lake', u'construct'] [u'communiti', u'consid', u'crime', u'prevent', u'tactic'] [u'compani', u'fin', u'firework', u'death'] [u'council', u'chief', u'fin', u'escort', u'payment'] [u'council', u'consid', u'build', u'light', u'rail'] [u'council', u'tell', u'action', u'reform'] [u'court', u'bail', u'drug', u'squad', u'detect'] [u'crook', u'santa', u'christma', u'parti'] [u'damag', u'theme', u'park', u'ride', u'reopen'] [u'death', u'victim', u'take', u'russian', u'train', u'blast'] [u'deleg', u'hop', u'nauru', u'hunger', u'strike'] [u'diamond', u'court', u'assault', u'charg'] [u'diplomat', u'keen', u'nauru', u'hunger', u'strike'] [u'dorset', u'readi', u'simplot', u'loss'] [u'down', u'look', u'boost', u'apprenticeship'] [u'dozen', u'alleg', u'milit', u'arrest', u'iraq'] [u'dravid', u'back', u'zaheer', u'return'] [u'econom', u'progress', u'import', u'arm', u'libya'] [u'farmer', u'fear', u'state', u'crop', u'decis'] [u'fear', u'hold', u'immigr', u'boat', u'sink', u'near'] [u'gut', u'byron', u'factori'] [u'fish', u'attractor', u'instal', u'port', u'macquari'] [u'suspect', u'rocket', u'kabul'] [u'fund', u'match', u'boost', u'reef', u'health', u'program'] [u'gambl', u'author', u'call', u'poki', u'cull'] [u'grant', u'boost', u'outback', u'explor', u'centr'] [u'group', u'loggerhead', u'forest', u'plan'] [u'gulf', u'arab', u'leader', u'approv', u'anti', u'terror', u'pact'] [u'histor', u'communiti', u'collect', u'move'] [u'iaea', u'chief', u'visit', u'libya', u'week'] [u'illeg', u'log', u'rule', u'landslid', u'caus'] [u'indigen', u'child', u'protect', u'staff', u'start', u'work'] [u'indonesia', u'jail', u'mcdonald', u'bomb', u'plotter'] [u'insur', u'woe', u'threaten', u'huskisson', u'carniv'] [u'insurg', u'target', u'iraqi', u'pipelin'] [u'irish', u'crowd', u'tomb', u'solstic', u'watch'] [u'isra', u'commando', u'refus', u'occupi', u'territori'] [u'windi', u'washout'] [u'boom', u'time', u'nanango'] [u'japan', u'trade', u'surplus', u'jump', u'novemb'] [u'pois', u'test', u'return'] [u'legal', u'action', u'consid', u'return', u'asylum', u'seeker'] [u'libya', u'allow', u'atom', u'inspect'] [u'lifesav', u'train', u'chang', u'beachgoer'] [u'local', u'mother', u'join', u'more', u'polic', u'forc'] [u'lockerbi', u'victim', u'famili', u'pressur', u'libya'] [u'loxton', u'die', u'weekend', u'crash'] [u'magistr', u'probe', u'saddam', u'regim', u'crime'] [u'bail', u'firearm', u'charg'] [u'hand', u'parliament', u'hous', u'theft'] [u'court', u'charg'] [u'moin', u'help', u'pakistan', u'avoid', u'follow'] [u'monkey', u'sight', u'coron', u'beach'] [u'moodi', u'world', u'captur', u'british', u'number', u'spot'] [u'appoint', u'elect', u'campaign', u'manag'] [u'polit', u'asid', u'rock', u'roll'] [u'nauru', u'defend', u'detaine', u'treatment'] [u'nauru', u'protest', u'prepar'] [u'divis', u'overse', u'defenc', u'role'] [u'member', u'name', u'health', u'board'] [u'nineteen', u'mummi', u'egypt'] [u'north', u'african', u'summit', u'cancel'] [u'nrma', u'seek', u'speed', u'camera', u'audit'] [u'croc', u'popul', u'stabilis', u'park', u'servic'] [u'miss', u'philippin', u'ferri', u'accid'] [u'painkil', u'worri', u'chemist'] [u'park', u'educ', u'centr', u'anger', u'timber', u'industri'] [u'perth', u'doctor', u'claim', u'breakthrough', u'treatment'] [u'perth', u'murder', u'zimbabw'] [u'petrol', u'spill', u'spark', u'creek', u'clean', u'effort'] [u'philippin', u'actor', u'make', u'presidenti'] [u'philippin', u'landslid', u'toll'] [u'player', u'defend', u'buchanan', u'broadsid'] [u'bring', u'christma', u'beer', u'solomon'] [u'head', u'solomon'] [u'polic', u'appeal', u'wit', u'assault'] [u'polic', u'arrest', u'alleg', u'drug', u'dealer'] [u'polic', u'oper', u'nab', u'hundr', u'north', u'coast'] [u'polic', u'probe', u'central', u'truck', u'crash'] [u'polic', u'probe', u'flight', u'scuffl'] [u'polic', u'recov', u'bodi', u'macquari', u'river'] [u'polic', u'surround', u'hous', u'hold'] [u'polic', u'urg', u'care', u'wind', u'flip', u'truck'] [u'port', u'hedland', u'aim', u'plastic', u'free', u'status'] [u'possibl', u'jackson', u'visit', u'rais', u'eyebrow'] [u'probe', u'continu', u'fisherman', u'death'] [u'public', u'get', u'harrington', u'rezon', u'plan'] [u'rail', u'blame', u'heat', u'derail'] [u'quak', u'shake', u'northern', u'japanes', u'island'] [u'reader', u'digest', u'admit', u'mail', u'order', u'fiddl'] [u'real', u'king', u'help', u'madrid', u'crown', u'winter'] [u'recal', u'readi', u'perform'] [u'report', u'find', u'corrupt', u'council', u'procur'] [u'rescuer', u'continu', u'search', u'mudslid', u'victim'] [u'retail', u'report', u'slow', u'christma', u'trade'] [u'retail', u'urg', u'improv', u'train'] [u'rivkin', u'face', u'health', u'test'] [u'road', u'victim', u'get', u'special', u'school', u'fund', u'hear'] [u'rooster', u'defend', u'salari', u'threat'] [u'rule', u'cover', u'timber', u'harvest'] [u'russel', u'crow', u'father'] [u'saddam', u'prove', u'help', u'ordinari', u'iraqi'] [u'search', u'continu', u'miss', u'rider'] [u'rescu', u'warn', u'rock', u'fishermen'] [u'serbian', u'assassin', u'trial', u'begin'] [u'serena', u'pull', u'hopman'] [u'clean', u'weather', u'lash'] [u'shabana', u'lift', u'world', u'squash', u'crown'] [u'skipton', u'communiti', u'council', u'oppos', u'toxic', u'wast', u'dump'] [u'smec', u'win', u'iraqi', u'power', u'contract'] [u'spam', u'cost', u'busi', u'week'] [u'stab', u'death', u'investig'] [u'step', u'need', u'leav', u'pet', u'home'] [u'steward', u'inspect', u'ascot', u'track'] [u'store', u'owner', u'score'] [u'swimmer', u'urg', u'avoid', u'shark', u'infest', u'canal'] [u'sydney', u'brother', u'guilti', u'fund', u'terror'] [u'talk', u'fail', u'train', u'strike', u'ahead'] [u'talk', u'focus', u'iraq', u'debt'] [u'tasmania', u'map', u'wine', u'rout'] [u'teacher', u'welcom', u'interim', u'deal'] [u'teenag', u'fin', u'carri', u'explos'] [u'teen', u'whoop', u'cough', u'booster'] [u'terrorist', u'suspect', u'wife', u'consid', u'visit'] [u'thiev', u'target', u'ancient', u'fresco'] [u'thiev', u'vandalis', u'ancient', u'fresco', u'israel', u'masada'] [u'thousand', u'demand', u'kirkuk', u'kurd'] [u'timber', u'compo', u'snub', u'worri', u'nation'] [u'tire', u'milan', u'slip', u'defeat', u'season'] [u'tourism', u'associ', u'seek', u'better', u'signag', u'boat'] [u'underworld', u'claim', u'air', u'melbourn', u'court'] [u'unit', u'ferdinand', u'stormi', u'week', u'high'] [u'captur', u'iraqi', u'secret', u'servic', u'general'] [u'captur', u'offic', u'iraq', u'crackdown'] [u'democrat', u'accus', u'bush', u'allow', u'terror', u'threat'] [u'rais', u'terror', u'alert'] [u'soldier', u'name', u'person', u'year'] [u'road', u'toll', u'rise', u'ravenswood', u'crash'] [u'victoria', u'claim', u'solid', u'victori'] [u'victorian', u'citi', u'face', u'tougher', u'water', u'restrict'] [u'victori', u'green', u'taunt', u'beyer'] [u'polic', u'investig', u'bush', u'bodi'] [u'probe', u'fall', u'write', u'numeraci', u'level'] [u'warrior', u'hurtl', u'outright', u'defeat'] [u'water', u'save', u'plan', u'seek'] [u'wavebreak', u'manag', u'plan', u'long', u'overdu'] [u'fail', u'allay', u'crocodil', u'coach', u'frustrat'] [u'world', u'oldest', u'test', u'player', u'die', u'india'] [u'young', u'power', u'school', u'secur', u'interim', u'fund'] [u'plan', u'timber', u'process', u'revamp'] [u'accid', u'close', u'pacif', u'highway', u'near', u'ballina'] [u'milan', u'juventus', u'lead', u'italian', u'renaiss'] [u'actress', u'hope', u'lang', u'die', u'age'] [u'afghan', u'send', u'home', u'nauru', u'alleg', u'kill'] [u'passeng', u'arrest', u'hacksaw', u'blade'] [u'alfr', u'hospit', u'defend', u'consult', u'cost'] [u'armstrong', u'face', u'tour', u'freez'] [u'arrest', u'zimbabw', u'perth', u'man', u'murder'] [u'atsic', u'council', u'urg', u'chang', u'mornington'] [u'aussi', u'hopman', u'reveng'] [u'australia', u'look', u'boost', u'libya', u'export', u'deal'] [u'australian', u'death', u'spark', u'zimbabw', u'warn'] [u'light', u'halt', u'pakistan', u'charg', u'draw', u'test'] [u'banana', u'tide', u'bring', u'xmas', u'cheer', u'lithuania'] [u'beatti', u'offer', u'annex', u'tweed', u'head'] [u'bird', u'death', u'spark', u'hydro', u'monitor'] [u'bush', u'clear', u'plan', u'caus', u'controversi'] [u'bushrang', u'crush', u'warrior', u'perth'] [u'bush', u'tell', u'enjoy', u'christma', u'despit', u'warn'] [u'central', u'philippin', u'brace', u'landslid'] [u'china', u'terrorist', u'shoot', u'dead'] [u'china', u'take', u'step', u'prevent', u'sar', u'cover'] [u'christma', u'give', u'market', u'littl', u'cheer'] [u'compens', u'deadlin', u'pass', u'septemb'] [u'condit', u'good', u'sydney', u'hobart'] [u'cyprus', u'christian', u'station', u'secur', u'alert'] [u'czech', u'nedv', u'win', u'european', u'footbal'] [u'deadlin', u'run', u'sept', u'fund'] [u'deep', u'freez', u'threaten', u'live', u'britain'] [u'democrat', u'support', u'refuge', u'strand', u'south', u'africa'] [u'develop', u'push', u'ahead', u'quirindi', u'shire'] [u'diamond', u'court', u'decis', u'expect', u'today'] [u'diamond', u'court', u'hear', u'adjourn'] [u'diamond', u'fail', u'assault', u'charg', u'drop'] [u'doctor', u'await', u'appeal', u'outcom'] [u'donor', u'zimbabw', u'food'] [u'duke', u'target', u'leed', u'draw'] [u'earthquak', u'hit', u'california'] [u'earthquak', u'hit', u'california', u'kill'] [u'eccleston', u'heap', u'prais', u'bahrain', u'circuit'] [u'egyptian', u'envoy', u'israel', u'bolster', u'peacemak'] [u'egyptian', u'minist', u'assault', u'mosqu'] [u'egyptian', u'minist', u'return', u'home', u'palestinian'] [u'employ', u'servic', u'appoint', u'administr'] [u'expect', u'better', u'perform', u'pont'] [u'falun', u'dafa', u'vow', u'moomba', u'appear'] [u'fan', u'quirki', u'snap', u'comic', u'compendium'] [u'father', u'demand', u'mandatori', u'defens', u'drive', u'cours'] [u'ferdinand', u'tragedi', u'charlton'] [u'ferdinand', u'devast', u'drug'] [u'holiday', u'road', u'death', u'hunter'] [u'thai', u'soldier', u'injur', u'iraq'] [u'associ', u'face', u'briberi', u'charg'] [u'worker', u'share', u'entitl'] [u'green', u'come', u'home', u'mundin', u'mind'] [u'group', u'hope', u'flight', u'lift', u'tourism'] [u'gulf', u'arab', u'state', u'sign', u'anti', u'terror', u'pact'] [u'hayden', u'reject', u'sponsorship', u'critic'] [u'health', u'fear', u'air', u'treat', u'pine'] [u'highway', u'open', u'truck', u'blaze'] [u'execut', u'get', u'suspend', u'sentenc'] [u'hobbit', u'ringwraith', u'break', u'offic', u'record'] [u'warn', u'afghan', u'opium', u'product'] [u'indonesian', u'cleric', u'name', u'child', u'saddam', u'hussein'] [u'industri', u'woe', u'derail', u'countrylink', u'servic'] [u'isra', u'soldier', u'kill', u'gaza', u'incurs'] [u'jackson', u'postpon', u'british', u'trip'] [u'japan', u'celebr', u'emperor', u'birthday'] [u'kenyan', u'presid', u'free', u'prison'] [u'kurdish', u'judg', u'kill', u'iraq'] [u'land', u'valuer', u'begin', u'work', u'ban'] [u'compani', u'seek', u'parol', u'chang'] [u'promis', u'firework'] [u'libya', u'invit', u'compani'] [u'loos', u'screw', u'halt', u'spanish', u'nuclear', u'power', u'station'] [u'magistr', u'consid', u'diamond', u'assault', u'charg'] [u'sever', u'burn'] [u'face', u'forrestdal', u'murder', u'charg'] [u'want', u'state', u'flee'] [u'media', u'baron', u'keep', u'quiet', u'stock', u'exchang', u'meet'] [u'miandad', u'criticis', u'fleme', u'tactic'] [u'east', u'death', u'toll', u'rise'] [u'militari', u'identifi', u'dead', u'soldier'] [u'minist', u'warn', u'jail', u'drug', u'smuggl'] [u'nauru', u'detaine', u'pass', u'meet'] [u'nazi', u'lyric', u'land', u'band', u'leader', u'jail'] [u'daili', u'put', u'pope', u'pocket'] [u'home', u'care', u'arrang', u'renal', u'patient'] [u'commut', u'face', u'rail', u'disrupt'] [u'probe', u'hold', u'cell', u'supervis'] [u'issu', u'indonesian', u'travel', u'warn'] [u'miss', u'philippin', u'ferri', u'landslid'] [u'pair', u'bail', u'drug', u'hear'] [u'pair', u'face', u'court', u'drug', u'charg'] [u'pakistan', u'probe', u'suggest', u'greed'] [u'palestinian', u'kill', u'raid'] [u'perth', u'kill', u'zimbabw'] [u'philippin', u'disast', u'toll', u'top'] [u'plastic', u'levi', u'constitut'] [u'plea', u'govt', u'deport', u'afghan', u'detaine'] [u'polic', u'confirm', u'miss', u'kill', u'croc'] [u'polic', u'probe', u'riverina', u'shoot', u'death'] [u'polic', u'storm', u'hous', u'insid'] [u'pope', u'say', u'world', u'peac', u'possibl'] [u'port', u'arthur', u'tourist', u'treat', u'live'] [u'publican', u'appeal', u'rape', u'relat', u'sentenc'] [u'hold', u'bank', u'theft'] [u'queen', u'deliv', u'christma', u'speech', u'mobil', u'phone'] [u'rafter', u'rule', u'comeback', u'despit', u'doubl', u'plan'] [u'rail', u'stoppag', u'end', u'union', u'meet'] [u'rain', u'delay', u'grain', u'harvest', u'central'] [u'relief', u'colombian', u'rebel', u'releas', u'hostag'] [u'renown', u'kidney', u'research', u'guilti', u'misconduct'] [u'report', u'highlight', u'stock', u'fall'] [u'rescuer', u'search', u'earthquak', u'victim'] [u'rivkin', u'hand', u'stockbrok', u'licenc'] [u'rivkin', u'take', u'independ', u'medic'] [u'rivkin', u'undergo', u'health', u'exam'] [u'roddick', u'henin', u'hardenn', u'name', u'champion'] [u'rodman', u'comeback', u'trail'] [u'russia', u'offer', u'iraq', u'debt', u'relief'] [u'farmer', u'look', u'forward', u'bumper', u'harvest'] [u'paulo', u'join', u'chase', u'rivaldo'] [u'search', u'quak', u'survivor', u'end', u'california'] [u'search', u'croc', u'fatal', u'attack'] [u'serial', u'relationship', u'women', u'mental', u'health'] [u'seven', u'arrest', u'assault', u'egyptian'] [u'shale', u'plant', u'report', u'rais', u'health', u'concern'] [u'south', u'africa', u'recal', u'adam', u'kirsten', u'drop', u'peterson'] [u'stage', u'libya', u'nuclear', u'inspect'] [u'suspect', u'elud', u'sydney', u'polic'] [u'sydney', u'polic', u'link', u'armour', u'robberi'] [u'symond', u'sami', u'round', u'kent'] [u'teen', u'court', u'girlfriend', u'death'] [u'telstra', u'reject', u'overcharg', u'claim'] [u'kill', u'separatist', u'jail', u'indian', u'kashmir'] [u'charg', u'sydney', u'christma', u'fire'] [u'children', u'jail', u'murder'] [u'dead', u'british', u'armi', u'helicopt', u'crash'] [u'soldier', u'kill', u'baghdad', u'bomb', u'attack'] [u'soldier', u'kill', u'bomb', u'blast'] [u'convict', u'albanian', u'traffick'] [u'union', u'monitor', u'parmalat', u'probe'] [u'union', u'worri', u'tafe', u'chang'] [u'arrest', u'alleg', u'milit', u'link', u'saddam', u'aid'] [u'beef', u'associ', u'oppos', u'australia', u'free'] [u'beef', u'secur', u'amid', u'heighten', u'terror', u'alert'] [u'envoy', u'look', u'asia', u'iraq', u'debt', u'relief'] [u'judg', u'rule', u'militari', u'forc', u'anthrax'] [u'pay', u'wada', u'due'] [u'soldier', u'wound', u'mosul'] [u'fingerprint', u'visitor'] [u'vandal', u'attack', u'golf', u'club'] [u'vanston', u'receiv', u'nauru', u'deleg', u'report'] [u'vegi', u'process', u'stop', u'scottsdal', u'factori'] [u'govt', u'power', u'price'] [u'oppn', u'seek', u'teen', u'death', u'inquest'] [u'victorian', u'court', u'end', u'suit'] [u'virgin', u'atlant', u'pilot', u'bail', u'alcohol', u'charg'] [u'space', u'station', u'await', u'mar', u'land'] [u'water', u'trade', u'work'] [u'white', u'strip', u'singer', u'charg', u'assault'] [u'woman', u'plead', u'guilti', u'danger', u'drive'] [u'women', u'group', u'consid', u'anti', u'smoke', u'effort'] [u'women', u'urg', u'combat', u'domest', u'violenc'] [u'world', u'clone', u'deer', u'reveal'] [u'zimbabw', u'murder', u'polit', u'motiv', u'perth', u'famili'] [u'govt', u'consid', u'coron', u'find'] [u'nauru', u'kick', u'solomon', u'flight'] [u'travel', u'urg', u'bewar', u'say'] [u'akhtar', u'boost', u'pakistan', u'second', u'test'] [u'alic', u'resid', u'christma', u'access'] [u'call', u'independ', u'nauru', u'team'] [u'warn', u'travel', u'symptom'] [u'energi', u'confirm', u'purchas'] [u'arm', u'hold', u'trigger', u'polic', u'probe'] [u'arm', u'marshal', u'plan'] [u'asylum', u'seeker', u'remain', u'manus'] [u'australian', u'export', u'watch', u'case'] [u'australia', u'suspend', u'beef', u'import'] [u'author', u'launch', u'probe', u'second', u'virgin'] [u'baghdad', u'christian', u'cancel', u'christma', u'midnight'] [u'ballarat', u'galleri', u'director', u'appoint'] [u'beatti', u'draw', u'indigen', u'foster', u'care', u'debat'] [u'beauti', u'hippo'] [u'affleck', u'reveal', u'real', u'fascin'] [u'bergkamp', u'doubt', u'wolv', u'clash'] [u'blair', u'bush', u'visit', u'libya'] [u'bok', u'rugbi', u'board', u'showdown'] [u'break', u'hill', u'seek', u'assur', u'wast', u'dump'] [u'brush', u'sport', u'fame'] [u'busi', u'show', u'latham', u'appoint'] [u'review', u'virgin', u'scare'] [u'canadian', u'citi', u'face', u'worst', u'outbreak', u'syphili'] [u'canadian', u'court', u'uphold'] [u'canadian', u'court', u'uphold', u'legal'] [u'censorship', u'see', u'hillari', u'book', u'withdraw', u'china'] [u'china', u'invit', u'foreign', u'bid', u'nuclear', u'power'] [u'china', u'launch', u'crackdown', u'internet', u'game', u'piraci'] [u'christma', u'road', u'toll', u'hit'] [u'christma', u'shopper'] [u'find', u'council', u'misconduct'] [u'communiti', u'receiv', u'flood', u'damag', u'relief', u'packag'] [u'consum', u'spend', u'fuel', u'econom', u'growth'] [u'court', u'adjourn', u'extradit', u'hear'] [u'darwin', u'unveil', u'passeng', u'railway', u'station'] [u'delay', u'tamworth', u'region', u'council', u'elect'] [u'democrat', u'want', u'detaine', u'deport', u'chang'] [u'diamond', u'miss', u'olymp', u'trial'] [u'doubt', u'rais', u'highway', u'safeti', u'fund'] [u'down', u'look', u'forward', u'strong', u'year'] [u'driver', u'urg', u'avoid', u'fatigu', u'danger'] [u'driver', u'warn', u'doubl', u'demerit', u'point'] [u'drug', u'giant', u'lose', u'suit', u'chines', u'competitor'] [u'duff', u'week'] [u'vindic', u'hollywood', u'piraci', u'case'] [u'egyptian', u'foreign', u'minist', u'continu', u'peac', u'push'] [u'eighth', u'palestinian', u'kill', u'rafah', u'raid'] [u'england', u'zimbabw', u'tour', u'decis', u'expect'] [u'ethiopia', u'say', u'kill', u'gambella', u'unrest'] [u'explos', u'near', u'govern', u'build', u'north', u'iraq'] [u'explos', u'rock', u'southern', u'baghdad'] [u'famili', u'receiv', u'generous', u'donat'] [u'farmer', u'feder', u'drought'] [u'finger', u'cross', u'beagl', u'spearhead', u'martian'] [u'firefight', u'battl', u'blaze', u'brisban', u'suburb'] [u'firefight', u'jervi', u'bushfir'] [u'case', u'rattl', u'asian', u'market'] [u'soldier', u'plead', u'guilti', u'cocain'] [u'simplot', u'worker', u'focus', u'futur'] [u'fulham', u'turn', u'unit', u'offer', u'saha'] [u'garrison', u'replac', u'king', u'captain'] [u'german', u'daili', u'publish', u'good', u'news', u'xmas'] [u'giant', u'cruis', u'ship', u'arriv', u'adelaid'] [u'grundig', u'skipper', u'say', u'race', u'record', u'safe'] [u'gun', u'fall', u'silent', u'baghdad', u'overnight', u'battl'] [u'hang', u'fan', u'tell', u'houllier'] [u'hewitt', u'clijster', u'engag'] [u'hick', u'lawyer', u'slam', u'document', u'block'] [u'holiday', u'spree', u'tip', u'push', u'onlin', u'sale'] [u'hong', u'kong', u'suspend', u'beef', u'import'] [u'hope', u'medic', u'indemn', u'deal', u'boost', u'servic'] [u'leav', u'citi', u'say', u'keegan'] [u'india', u'bollywood', u'offer', u'internet', u'film', u'download'] [u'iraqi', u'secur', u'forc', u'member', u'kill', u'mosul'] [u'italian', u'cabinet', u'examin', u'parmalat', u'woe'] [u'itali', u'announc', u'rescu', u'plan', u'parmalat'] [u'rain', u'money', u'thank', u'japanes', u'generos'] [u'jackson', u'trip', u'cloud'] [u'jordan', u'set', u'world', u'record', u'biggest', u'tissu'] [u'judg', u'move', u'strip', u'pinochet', u'immun'] [u'juror', u'consid', u'penalti', u'sniper', u'case'] [u'juri', u'urg', u'life', u'sentenc', u'sniper', u'case'] [u'kalgoorli', u'airport', u'viabl', u'option', u'studi', u'find'] [u'kimberley', u'council', u'rememb', u'great', u'leader'] [u'leak', u'polic', u'document', u'warn', u'attack'] [u'libya', u'confirm', u'nuclear', u'watchdog', u'chief', u'visit'] [u'liverpool', u'welcom', u'kewel'] [u'lord', u'ring', u'set', u'portugues', u'offic', u'record'] [u'scare', u'push', u'qualiti', u'check', u'cattl'] [u'charg', u'drug', u'ring'] [u'charg', u'fatal', u'road', u'crash'] [u'minist', u'call', u'imparja', u'fund', u'review'] [u'miss', u'fishermen', u'home', u'safe', u'face', u'charg'] [u'miss', u'tourist', u'spark', u'polic', u'warn'] [u'mitchel', u'coach', u'zealand'] [u'council', u'playground', u'arsenic', u'treat'] [u'unhappi', u'resourc', u'manag'] [u'nation', u'secret', u'safe', u'theft', u'minist'] [u'netherland', u'epidem'] [u'northern', u'flood', u'watch'] [u'rail', u'disput', u'head'] [u'govt', u'announc', u'hous', u'loan', u'relief'] [u'outrag', u'plan', u'sell', u'solomon', u'histor', u'hous'] [u'pakistan', u'court', u'order', u'french', u'newsmen', u'free', u'bail'] [u'pakistan', u'press', u'right', u'urg', u'frenchmen', u'seek', u'bail'] [u'palestinian', u'kill', u'gaza', u'incurs'] [u'palestinian', u'shelv', u'meet', u'isra'] [u'perkin', u'appoint', u'olymp', u'alumni', u'group'] [u'philippin', u'vessel', u'scrambl', u'rescu'] [u'plan', u'save', u'berlusconi', u'mediaset', u'group'] [u'send', u'christma', u'wish', u'troop', u'oversea'] [u'polic', u'boost', u'promis'] [u'polic', u'probe', u'mildura', u'teen', u'rape'] [u'polic', u'readi', u'christma', u'revel'] [u'polic', u'suspend', u'search', u'croc', u'victim'] [u'polic', u'warn', u'holiday', u'road', u'safeti', u'crackdown'] [u'polic', u'truck', u'driver', u'fatal'] [u'politician', u'loggerhead', u'timber', u'fund'] [u'priest', u'offer', u'sneak', u'preview', u'gibson', u'jesus'] [u'project', u'power', u'station', u'oper'] [u'rafter', u'play', u'doubl', u'australian', u'open'] [u'rail', u'strike', u'loom', u'merger', u'disput'] [u'record', u'entri', u'launceston', u'cycl', u'classic'] [u'region', u'unhappi', u'travel', u'allow'] [u'report', u'highlight', u'cost', u'reef', u'fish', u'closur'] [u'ronaldo', u'pay', u'tribut', u'zamorano', u'say', u'goodby'] [u'rooney', u'talk'] [u'royal', u'corgi', u'death', u'blight', u'royal', u'christma'] [u'rumsfeld', u'talk', u'anti', u'terror', u'campaign'] [u'russia', u'halt', u'import', u'beef'] [u'russian', u'court', u'order', u'khodorkovski', u'remain', u'jail'] [u'accus', u'fall', u'wasp', u'pest'] [u'schwarzenegg', u'visit', u'quak', u'town'] [u'search', u'call', u'miss', u'perth', u'contact'] [u'search', u'call', u'croc', u'attack'] [u'search', u'end', u'miss', u'perth', u'contact', u'famili'] [u'search', u'resum', u'croc', u'attack', u'victim'] [u'korea', u'plan', u'troop', u'iraq'] [u'spin', u'wizard', u'muralitharan', u'eye', u'world', u'record'] [u'stalk', u'croc', u'behaviour', u'consid', u'strang'] [u'stanhop', u'bag', u'levi', u'uncertainti'] [u'africa', u'ban', u'beef', u'relat', u'import'] [u'strand', u'barg', u'refloat', u'owner', u'face', u'charg'] [u'suicid', u'bomb', u'north', u'iraq', u'kill'] [u'woman', u'help', u'fight', u'aid', u'discrimin'] [u'teen', u'death', u'holiday', u'road', u'toll', u'climb'] [u'thailand', u'ban', u'beef', u'import'] [u'tipperari', u'anim', u'resold', u'local'] [u'iraqi', u'judg', u'murder'] [u'townsvill', u'abuzz', u'mozzi', u'assault', u'plan'] [u'turkish', u'polic', u'bomb', u'equip', u'haul', u'detain'] [u'associ', u'demand', u'action', u'nauru'] [u'unit', u'want', u'verdict', u'write'] [u'review', u'afghan', u'asylum', u'claim', u'nauru'] [u'beef', u'market', u'halt', u'import'] [u'comedian', u'lenni', u'bruce', u'posthum', u'pardon'] [u'confirm', u'case'] [u'issu', u'bahrain', u'terror', u'alert'] [u'stock', u'push', u'slight', u'higher'] [u'tell', u'rogu', u'state', u'follow', u'libya', u'exampl'] [u'vanston', u'urg', u'nauru', u'hunger', u'striker', u'reconsid'] [u'need', u'time', u'speed', u'camera'] [u'send', u'trade', u'mission', u'middl', u'east'] [u'waugh', u'ponder', u'select', u'decis'] [u'dont', u'sell', u'player', u'leed', u'chairman'] [u'white', u'hous', u'fault', u'iraq', u'uranium', u'claim', u'report'] [u'woman', u'accus', u'slay', u'husband', u'refus', u'bail'] [u'women', u'council', u'outrag', u'plan', u'sell', u'solomon'] [u'world', u'youth', u'drug', u'pair', u'hand', u'long', u'ban'] [u'xmas', u'come', u'earli', u'minardi', u'recruit'] [u'zaheer', u'return', u'box', u'clash'] [u'zimbabw', u'polic', u'arrest', u'suspect', u'australian'] [u'indonesia', u'troubl', u'aceh', u'provinc'] [u'franc', u'cancel', u'pari', u'flight'] [u'alert', u'halt', u'franc', u'flight'] [u'alic', u'spring', u'mayor', u'send', u'christma', u'greet'] [u'anim', u'activist', u'poison', u'swedish', u'meat'] [u'subdu', u'christma', u'bethlehem'] [u'kill', u'northern', u'india'] [u'aussi', u'hurt', u'thai', u'hotel'] [u'aussi', u'ask', u'recycl', u'christma', u'card'] [u'australian', u'hold', u'indonesia', u'spend', u'xmas'] [u'bethlehem', u'usher', u'sombr', u'christma'] [u'blast', u'rock', u'central', u'baghdad'] [u'bodi', u'drown', u'soldier', u'recov', u'iraq'] [u'bomb', u'blast', u'damag', u'guesthous', u'afghanistan'] [u'bomb', u'kill', u'soldier', u'rocket', u'baghdad'] [u'castlereagh', u'bush', u'threat', u'minim'] [u'champ', u'elyse', u'host', u'chines', u'year', u'parad'] [u'china', u'jail', u'judg', u'take', u'corpor', u'bribe'] [u'china', u'rais', u'death', u'toll', u'explos'] [u'christma', u'road', u'toll'] [u'church', u'leader', u'preach', u'peac', u'love', u'understand'] [u'cross', u'dress', u'restaur', u'sue', u'review'] [u'death', u'toll', u'bolivia', u'flood', u'rise'] [u'democrat', u'urg', u'premier', u'help', u'homeless'] [u'donat', u'demand', u'rise', u'chariti'] [u'dravid', u'laugh', u'test', u'pressur'] [u'kill', u'iraq', u'bomb'] [u'europ', u'step', u'secur', u'christma'] [u'factori', u'continu', u'blaze'] [u'financi', u'pressur', u'strain', u'relationship'] [u'destroy', u'coober', u'pedi', u'school'] [u'dead', u'hurt', u'russian', u'train', u'crash'] [u'fruit', u'pop', u'xmas', u'cherri', u'hop'] [u'field', u'explos', u'kill', u'china'] [u'gingin', u'growth', u'plan', u'downsiz'] [u'girl', u'drown', u'melbourn', u'pool'] [u'guard', u'inmat', u'brisban', u'prison', u'incid'] [u'health', u'offici', u'issu', u'chickenpox', u'remind'] [u'hobart', u'coupl', u'award', u'damag', u'son', u'death'] [u'indian', u'unsaf', u'syring', u'health', u'ministri'] [u'indonesia', u'boost', u'secur', u'measur'] [u'iran', u'threaten', u'retali', u'event', u'isra'] [u'judg', u'select', u'michael', u'jackson', u'molest', u'case'] [u'limit', u'market', u'turkey', u'report'] [u'scare', u'hit', u'beef', u'trade'] [u'malaysian', u'rescu', u'philippin', u'survivor'] [u'malaysia', u'senai', u'airport', u'undergo', u'expans'] [u'charg', u'hunter', u'murder'] [u'hospitalis', u'stab'] [u'strangl', u'python'] [u'mcdonald', u'drag', u'wall', u'street', u'lower'] [u'melbourn', u'polic', u'tell', u'box', u'crowd', u'behav'] [u'countri', u'halt', u'beef', u'import'] [u'mother', u'escap', u'hous'] [u'musharraf', u'agre', u'quit', u'armi', u'post'] [u'musharraf', u'escap', u'bomb', u'attack', u'dead'] [u'nauru', u'detaine', u'doubt', u'review'] [u'near', u'china', u'explos'] [u'york', u'airport', u'close', u'secur', u'scare'] [u'year', u'injur', u'kashmir'] [u'mar', u'signal', u'beagl', u'probe'] [u'pakistan', u'leader', u'surviv', u'latest', u'attack'] [u'palestinian', u'kill', u'summit', u'talk', u'delay'] [u'palestinian', u'carri', u'explos', u'kill'] [u'parent', u'tell', u'check', u'safeti'] [u'pedestrian', u'death', u'road', u'toll'] [u'pope', u'christma', u'messag', u'lament', u'terror'] [u'queen', u'deliv', u'christma', u'messag'] [u'rain', u'close', u'park'] [u'regul', u'examin', u'parmalat', u'collaps'] [u'return', u'asylum', u'seeker', u'face', u'uncertainti'] [u'rocket', u'attack', u'hit', u'baghdad', u'hotel'] [u'scientist', u'await', u'news', u'mar', u'mission'] [u'skipper', u'prepar', u'sail', u'everest'] [u'south', u'australian', u'spend', u'xmas'] [u'south', u'west', u'warn', u'risk'] [u'spanish', u'polic', u'foil', u'terrorist', u'bomb'] [u'spanish', u'polic', u'thwart', u'bomb', u'attack', u'madrid', u'station'] [u'strand', u'asylum', u'seeker', u'believ', u'head'] [u'strand', u'barg', u'scuttl', u'coast'] [u'strict', u'anti', u'sar', u'measur', u'prepar', u'china'] [u'sudan', u'releas', u'jazeera', u'correspond'] [u'surf', u'lifesav', u'busi', u'work'] [u'swallow', u'diamond', u'ring', u'show', u'evid'] [u'swim', u'safe', u'urg', u'lifesav'] [u'policemen', u'wound', u'bomb', u'blast', u'baghdad'] [u'soldier', u'kill', u'iraq', u'bomb', u'blast'] [u'troop', u'celebr', u'wintri', u'christma', u'home'] [u'explos', u'rock', u'pakistani', u'citi'] [u'year', u'kill', u'hous'] [u'approv', u'year', u'budget', u'top', u'billion'] [u'soldier', u'kill', u'baghdad', u'bomb', u'blast'] [u'vegetarian', u'virgin', u'mari', u'rile', u'boston', u'church'] [u'virgin', u'incid', u'spark', u'investig'] [u'pledg', u'consult'] [u'politician', u'die', u'age'] [u'waugh', u'tell', u'team', u'step', u'challeng'] [u'dead', u'musharraf', u'assassin'] [u'facil', u'tri', u'track', u'beagl'] [u'adelaid', u'gear', u'sheffield', u'carniv'] [u'african', u'plane', u'crash', u'kill'] [u'franc', u'continu', u'terror', u'investig'] [u'franc', u'resum', u'flight', u'scare'] [u'alleg', u'kidnapp', u'compani', u'execut', u'catch'] [u'issu', u'safeti', u'warn'] [u'arson', u'think', u'bushfir'] [u'asylum', u'seeker', u'want', u'return', u'kuwait'] [u'kill', u'flood', u'southern', u'turkey'] [u'dead', u'panama', u'quak'] [u'theft', u'trigger', u'polic', u'hunt'] [u'author', u'probe', u'school', u'blaze'] [u'bichel', u'surplus', u'requir'] [u'bomber', u'musharraf', u'assassin', u'identifi'] [u'box', u'blue', u'trader'] [u'box', u'warn', u'victorian', u'driver'] [u'brisban', u'prison', u'guard', u'attack'] [u'britain', u'warn', u'bahrain', u'grand', u'prix', u'terrorist'] [u'british', u'confirm', u'case'] [u'celtic', u'turn', u'screw', u'ger'] [u'china', u'delay', u'oper', u'block', u'dead'] [u'bank', u'warn', u'fraudul', u'websit'] [u'deal', u'reach', u'marshal'] [u'driveway', u'mishap', u'put', u'hospit'] [u'earli', u'morn', u'crash', u'leav', u'dead'] [u'firefight', u'concern', u'spark', u'nation', u'park', u'protest'] [u'japanes', u'troop', u'leav', u'iraq', u'mission'] [u'captur', u'christma', u'rocket', u'attack'] [u'feder', u'politician', u'die'] [u'german', u'firefight', u'rescu', u'flock', u'seagul'] [u'german', u'enjoy', u'nake', u'lake'] [u'girl', u'drown', u'melbourn'] [u'group', u'respons', u'istanbul', u'bomb'] [u'help', u'hand', u'christma', u'blue'] [u'india', u'whip', u'pakistan', u'despit', u'latif', u'centuri'] [u'india', u'condemn', u'dead', u'assassin', u'attempt'] [u'india', u'despit', u'late', u'loss'] [u'india', u'bat', u'juggernaut', u'roll'] [u'iran', u'quak', u'kill', u'thousand'] [u'israel', u'closer', u'unilater', u'measur'] [u'pantomim', u'time'] [u'japanes', u'court', u'order', u'taiwan', u'airlin'] [u'japanes', u'housewif', u'order', u'damag'] [u'japanes', u'theme', u'park', u'receiv', u'bomb', u'threat'] [u'japan', u'chang', u'allow', u'women', u'throne'] [u'accus', u'georgetown', u'murder', u'face', u'court'] [u'critic', u'gold', u'coast', u'stab'] [u'drown', u'gold', u'coast'] [u'nab', u'hong', u'kong', u'arm', u'haul', u'face', u'charg'] [u'join', u'nauru', u'hunger', u'strike'] [u'rain'] [u'mother', u'escap', u'burn', u'hous'] [u'musharraf', u'speak', u'fail', u'assassin'] [u'evid', u'pari', u'terror', u'plot'] [u'word', u'beagl', u'latest'] [u'offici', u'confirm', u'hivaid', u'outbreak', u'china'] [u'opposit', u'call', u'marshal'] [u'pakistan', u'roll', u'second', u'test'] [u'perth', u'toddler', u'drown'] [u'polic', u'call', u'sydney', u'shoot'] [u'polic', u'happi', u'driver', u'christma', u'effort'] [u'polic', u'investig', u'woman', u'death', u'pool', u'drown'] [u'polic', u'issu', u'warn', u'toddler', u'drown'] [u'polic', u'prepar', u'ferri', u'train', u'exercis'] [u'polic', u'shoot', u'brisban'] [u'power', u'earthquak', u'coast'] [u'putin', u'send', u'messag', u'condol', u'iran', u'quak'] [u'polic', u'offic', u'question', u'fatal', u'shoot'] [u'road', u'toll', u'rise', u'fatal', u'accid'] [u'quak', u'hit', u'iran', u'buri', u'debri'] [u'queen', u'head', u'christma'] [u'queen', u'make', u'appear', u'christma', u'servic'] [u'queensland', u'payn', u'take', u'latrob', u'wheel'] [u'recycl', u'option', u'christma', u'card'] [u'rescuer', u'battl', u'bodi', u'benin', u'plane', u'crash'] [u'rocket', u'destroy', u'kirkuk', u'polic'] [u'rocket', u'baghdad', u'target'] [u'polic', u'driver', u'care'] [u'saudi', u'arrest', u'seiz', u'bomb', u'make'] [u'shoaib', u'rip', u'kiwi', u'middl', u'order'] [u'shopper', u'urg', u'bewar', u'credit', u'card', u'fraud'] [u'shop', u'centr', u'pack', u'box', u'sale'] [u'singelton', u'endur', u'road', u'rage', u'attack'] [u'miss', u'turkish', u'flood'] [u'rebel', u'kill', u'civilian', u'abduct', u'aceh'] [u'skandia', u'zana', u'jockey', u'sydney', u'hobart', u'honour'] [u'spectat', u'warn', u'sydney', u'sightse'] [u'speed', u'waugh'] [u'stawel', u'gift', u'winner', u'latrob'] [u'bark', u'beagl'] [u'stowaway', u'dead', u'york', u'jamaica'] [u'worshipp', u'warn', u'cover'] [u'swedish', u'babi', u'alleg', u'bake', u'oven', u'mother'] [u'swiss', u'musician', u'fulfil', u'bach', u'dream', u'chang'] [u'sydney', u'lifesav', u'urg', u'caution'] [u'taiwan', u'clear', u'sar', u'infect', u'offici'] [u'aviv', u'gaza', u'violenc', u'claim'] [u'miss', u'mudslid'] [u'turkey', u'say', u'seven', u'catch', u'human', u'smuggl', u'case'] [u'soldier', u'kill', u'iraq'] [u'soldier', u'kill', u'mortar', u'attack', u'north', u'east'] [u'confirm', u'case'] [u'soldier', u'defus', u'roadsid', u'bomb', u'northern'] [u'liber', u'boost', u'rural', u'hospit', u'fund'] [u'vietnames', u'cyber', u'dissid', u'face', u'trial', u'week'] [u'vigil', u'silent', u'mar', u'probe', u'beagl', u'enter', u'second'] [u'waugh', u'readi', u'test'] [u'websit', u'emb', u'name', u'word', u'phrase'] [u'wit', u'seek', u'park', u'shoot'] [u'yacht', u'crew', u'weather', u'watch'] [u'zana', u'approach', u'jervi'] [u'zana', u'skandia', u'grundig'] [u'coupl', u'marri', u'mass', u'ceremoni', u'bangladesh'] [u'observatori', u'continu', u'beagl'] [u'franc', u'resum', u'flight'] [u'dead', u'benin', u'plane', u'crash'] [u'dead', u'storm', u'rip', u'turkey'] [u'auditor', u'deni', u'fraud', u'claim', u'parmalat', u'scandal'] [u'aust', u'agenc', u'launch', u'iranian', u'earthquak', u'appeal'] [u'australia', u'hunt', u'earli', u'wicket'] [u'author', u'attempt', u'rescu', u'distress', u'dolphin'] [u'badani', u'lead', u'india', u'reveng'] [u'bangladeshi', u'peacekeep', u'kill', u'benin', u'plane'] [u'black', u'benin', u'plane', u'crash'] [u'blood', u'bank', u'review', u'polici', u'scare'] [u'surviv', u'metr', u'fall'] [u'bracken', u'bank', u'earli', u'wicket'] [u'hit', u'cruis', u'passeng'] [u'bushfir', u'threaten', u'south', u'coast'] [u'coroni', u'inquiri', u'fatal', u'shoot'] [u'canberra', u'cinema', u'evacu', u'amid', u'alert'] [u'chelsea', u'crash', u'unit', u'arsenal', u'march'] [u'chief', u'nuke', u'inspector', u'head', u'libya'] [u'china', u'seal', u'sourc', u'dead', u'leak'] [u'chines', u'minist', u'restart', u'talk'] [u'claim', u'govt', u'bungl', u'revalu', u'process'] [u'cuba', u'denounc', u'concentr', u'camp'] [u'eighteen', u'indonesian', u'armi', u'tank', u'collid'] [u'fairi', u'penguin', u'resid', u'man'] [u'find', u'buyer', u'avert', u'closur'] [u'field', u'assembl', u'melbourn', u'hobart', u'race'] [u'fiji', u'legend', u'serevi', u'join', u'stade', u'bordelai'] [u'crew', u'bushfir'] [u'firework', u'blast', u'kill', u'pakistan'] [u'plan', u'foreign', u'rescuer', u'arriv', u'kerman'] [u'flood', u'warn', u'issu', u'western', u'alic', u'spring'] [u'foreign', u'worker', u'reach', u'iran', u'quak', u'zone'] [u'indonesian', u'dead', u'miss'] [u'soldier', u'kill', u'iraq'] [u'hunter', u'pack', u'english', u'field', u'despit'] [u'french', u'thiev', u'drive', u'victim', u'home', u'christma'] [u'german', u'entrepreneur', u'plan', u'bring', u'internet'] [u'germani', u'offer', u'iran', u'swift', u'rescu', u'help', u'quak'] [u'gingin', u'industri', u'plan', u'scrap'] [u'govt', u'pledg', u'iran'] [u'guantanamo', u'prison', u'concentr', u'camp', u'cuba', u'say'] [u'hayden', u'pont', u'lead', u'aussi', u'recoveri'] [u'holiday', u'road', u'toll'] [u'holiday', u'road', u'toll', u'hit'] [u'hong', u'kong', u'ramp', u'sar', u'alert'] [u'iaea', u'pois', u'test', u'libya', u'pledg', u'weapon'] [u'indec', u'merit', u'lead', u'melbourn', u'hobart', u'fleet'] [u'india', u'inadequaci', u'come', u'fore'] [u'iran', u'appeal', u'intern', u'quak'] [u'iran', u'arch', u'israel', u'offer', u'condol'] [u'islamist', u'want', u'music', u'ban', u'kuwaiti', u'school'] [u'jackson', u'speak', u'abus', u'charg'] [u'rebel', u'leader', u'hand', u'indian', u'polic'] [u'king', u'overwhelm', u'breaker', u'auckland'] [u'kiwi', u'command', u'pakistan', u'falter'] [u'lara', u'jacob', u'resurrect', u'west', u'indi'] [u'lead', u'group', u'benefit', u'strong', u'wind'] [u'libya', u'appear', u'close', u'nuclear', u'bomb'] [u'local', u'businessman', u'stand', u'cook', u'elect'] [u'loud', u'blast', u'shake', u'southern', u'iraqi', u'citi'] [u'arrang', u'shoot', u'woman'] [u'charg', u'murder', u'cairn'] [u'jail', u'asylum', u'boat', u'death'] [u'mar', u'probe', u'fail', u'contact', u'mothership'] [u'mcgee', u'gear', u'launceston', u'classic'] [u'merri', u'xmas'] [u'minist', u'defend', u'polic', u'action', u'fatal', u'shoot'] [u'cop', u'waugh', u'sydney', u'goodby'] [u'movi', u'star', u'kate', u'winslet', u'second', u'child'] [u'mozambiqu', u'hospit', u'short', u'blood'] [u'kill', u'truck', u'plung', u'cliff', u'bolivia'] [u'crime', u'oper', u'extend'] [u'govt', u'unveil', u'art', u'fund', u'plan'] [u'korea', u'agre', u'round', u'nuclear', u'talk'] [u'convent', u'get', u'call', u'brothel', u'portug'] [u'oneil', u'resign', u'lose', u'larsson'] [u'palestinian', u'youth', u'kill', u'west', u'bank', u'town'] [u'person', u'kill', u'fatal', u'accid'] [u'pilot', u'renew', u'airspac', u'chang'] [u'offer', u'condol', u'earthquak', u'victim'] [u'polic', u'scene', u'sydney', u'shoot'] [u'polic', u'probe', u'man', u'death', u'caravan', u'park'] [u'polic', u'probe', u'sydney', u'shoot'] [u'polic', u'search', u'sweep', u'rock'] [u'polic', u'solv', u'christma', u'mysteri'] [u'polic', u'urg', u'resid', u'care', u'shoot'] [u'post', u'christma', u'sale', u'start'] [u'qassam', u'rocket', u'fire', u'southern', u'israel', u'injuri'] [u'queen', u'mari', u'dock', u'home', u'port'] [u'cross', u'launch', u'multi', u'million', u'dollar', u'appeal'] [u'cross', u'set', u'iran', u'quak', u'appeal'] [u'rescu', u'worker', u'battl', u'stem', u'toxic', u'fume'] [u'resid', u'brace', u'evacu', u'crew', u'battl'] [u'russian', u'court', u'keep', u'yuko', u'sharehold', u'jail'] [u'search', u'continu', u'mudslid'] [u'search', u'fail', u'miss', u'fisherman'] [u'search', u'resum', u'croc', u'victim', u'bodi'] [u'second', u'herd', u'quarantin'] [u'shipwreck', u'crew', u'rescu', u'bust', u'smuggl'] [u'dead', u'mudslid'] [u'skandia', u'lead', u'despit', u'brush', u'natur'] [u'skandia', u'lead', u'hobart'] [u'soccer', u'legend', u'best', u'hold', u'alleg', u'beat'] [u'foreign', u'troop', u'kill', u'hurt', u'iraq', u'blast'] [u'sudan', u'peac', u'talk', u'resum', u'kenya'] [u'survivor', u'benin', u'crash', u'arriv', u'home'] [u'suspect', u'sar', u'case', u'china'] [u'sydney', u'iranian', u'group', u'discuss', u'option'] [u'terror', u'hotlin', u'work', u'justic', u'minist', u'say'] [u'thai', u'vow', u'student', u'clash', u'death'] [u'beagl', u'fail'] [u'kill', u'wound', u'explos', u'iraq'] [u'snowboard', u'miss', u'utah', u'avalanch'] [u'tribal', u'chief', u'shoot', u'dead', u'northern', u'iraq', u'polic'] [u'tuckey', u'defend', u'forestri', u'inform', u'request'] [u'unlik', u'australian', u'downer', u'say'] [u'say', u'peacekeep', u'head', u'liberia', u'rebel', u'area'] [u'seven', u'peopl', u'utah', u'avalanch'] [u'offici', u'fault', u'french', u'terror', u'alert'] [u'concern', u'terror', u'threat'] [u'stock', u'inch', u'quiet', u'trade'] [u'troop', u'kill', u'iraqi', u'patrol', u'attack'] [u'troop', u'kill', u'taliban', u'dead', u'ambush'] [u'vatican', u'terror', u'target', u'christma', u'berlusconi'] [u'crew', u'battl', u'factori'] [u'bushfir', u'burn', u'control'] [u'polic', u'shadow', u'joker', u'interst'] [u'wilko', u'comeback', u'trail'] [u'woman', u'charg', u'stab'] [u'woman', u'die', u'collis'] [u'woman', u'bodi', u'river'] [u'woodford', u'gear', u'folk', u'festiv'] [u'world', u'answer', u'iran'] [u'year', u'school', u'leaver', u'recognis', u'depart'] [u'kill', u'thai', u'accid'] [u'coalit', u'casualti', u'multipl', u'attack', u'iraq'] [u'demonstr', u'king', u'nepal'] [u'antarct', u'quest', u'aim', u'unit', u'isra', u'palestinian'] [u'attack', u'kill', u'iraq', u'holi', u'citi'] [u'australia', u'eye', u'inning', u'lead'] [u'australia', u'resum', u'chase'] [u'babi', u'dolphin', u'rescu', u'delay'] [u'benin', u'plane', u'crash', u'death', u'toll', u'rise'] [u'berlusconi', u'deni', u'vatican', u'attack', u'comment'] [u'box', u'sale', u'shop', u'canberra'] [u'bremer', u'contradict', u'blair', u'iraq', u'weapon'] [u'bremer', u'reject', u'blair', u'claim'] [u'britain', u'close', u'door', u'free', u'health', u'care'] [u'butler', u'blitz', u'stun', u'pakistan'] [u'cadibarra', u'set', u'melbourn', u'launceston', u'record'] [u'canada', u'warn', u'link'] [u'celtic', u'pile', u'pressur', u'hib'] [u'childcar', u'chain', u'open'] [u'china', u'alert', u'sar', u'suspect', u'case'] [u'clean', u'continu', u'chines', u'leak'] [u'cold', u'weather', u'kill', u'northern', u'india'] [u'cold', u'weather', u'kill', u'north', u'india'] [u'controversi', u'film', u'show', u'turkey'] [u'belong', u'heir', u'appar'] [u'earthquak', u'raze', u'ancient', u'jewel'] [u'east', u'timor', u'mourn', u'campaign', u'death'] [u'england', u'star', u'thorp', u'face', u'polic', u'probe'] [u'england', u'star', u'tindal', u'injur', u'bath'] [u'escud', u'golovin', u'hand', u'open', u'wildcard'] [u'chief', u'surviv', u'parcel', u'bomb'] [u'financ', u'chief', u'budget', u'freez', u'propos'] [u'european', u'tourist', u'free', u'iran', u'kidnapp'] [u'european', u'tourist', u'kidnap', u'iran', u'free'] [u'fame', u'british', u'actor', u'alan', u'bat', u'die'] [u'fast', u'furious', u'seven', u'come', u'sydney'] [u'father', u'daughter', u'kill', u'grenad', u'blast'] [u'feder', u'govern', u'hour', u'plan'] [u'firefight', u'contain', u'blaze', u'southern'] [u'soldier', u'wound', u'karbala', u'blast'] [u'folk', u'festiv', u'mark', u'year', u'second', u'home'] [u'insurg', u'kill', u'iraq'] [u'germani', u'thank', u'iran', u'hostag', u'releas'] [u'giant', u'boat', u'duel', u'dash', u'south'] [u'gibb', u'centuri', u'put', u'south', u'africa', u'control'] [u'glori', u'close', u'spot', u'striker', u'rout'] [u'hope', u'fade', u'miss', u'mudslid'] [u'hop', u'fade', u'iran', u'earthquak', u'victim'] [u'incid', u'juvenil', u'justic', u'centr'] [u'indec', u'merit', u'prowler', u'tight', u'tussl'] [u'indec', u'merit', u'catch', u'prowler'] [u'indec', u'merit', u'lead', u'melbourn', u'hobart'] [u'investig', u'probe', u'death'] [u'itali', u'court', u'declar', u'parmalat', u'insolv'] [u'japanes', u'busi', u'leader', u'economi', u'improv'] [u'joker', u'tightlip', u'interst', u'bike'] [u'kosciuszko', u'burst', u'bloom', u'bushfir'] [u'kuwaiti', u'editor', u'acquit', u'criticis', u'rule'] [u'emperor', u'actor', u'die', u'age'] [u'latif', u'keep', u'pakistan', u'afloat', u'seri'] [u'libya', u'accept', u'snap', u'inspect'] [u'charg', u'caravan', u'park', u'murder'] [u'mass', u'grave', u'vietnam'] [u'mcewen', u'take', u'launceston', u'classic'] [u'memori', u'servic', u'benin', u'crash', u'victim', u'hold'] [u'mexican', u'star', u'gloria', u'trevi', u'jail', u'hunger', u'strike'] [u'minist', u'blame', u'theft', u'crime', u'rise'] [u'lawyer', u'sign', u'defend', u'saddam'] [u'protest', u'launch', u'west', u'bank', u'barrier'] [u'dead', u'california', u'mudslid'] [u'word', u'beagl'] [u'govt', u'launch', u'blitz', u'build', u'site', u'safeti'] [u'polic', u'look', u'arm', u'robberi', u'suspect'] [u'korea', u'readi', u'nuclear', u'crisi', u'talk'] [u'polic', u'arrest', u'standoff'] [u'owen', u'near', u'year', u'return'] [u'pakistan', u'close', u'name', u'musharraf', u'suicid', u'bomber'] [u'parmalat', u'founder', u'arrest'] [u'peopl', u'smuggl', u'finish', u'downer'] [u'polic', u'appeal', u'help', u'assault', u'investig'] [u'polic', u'continu', u'search', u'croc', u'victim', u'bodi'] [u'polic', u'search', u'prison', u'escape'] [u'pont', u'reign', u'suprem'] [u'power', u'pressur', u'leader'] [u'priest', u'businessman', u'arrest', u'journalist'] [u'probe', u'death', u'launch'] [u'pursu', u'strand', u'ship', u'owner'] [u'raaf', u'leav', u'iran', u'merci', u'mission'] [u'rain', u'swell', u'drought', u'stricken', u'northern', u'river'] [u'rescuer', u'search', u'miss', u'mudslid'] [u'road', u'toll', u'rise'] [u'russian', u'rocket', u'lift', u'isra', u'satellit', u'space'] [u'safeti', u'come', u'say', u'nicorett', u'skipper'] [u'polic', u'investig', u'mail', u'blast'] [u'search', u'begin', u'miss', u'person'] [u'search', u'resum', u'miss', u'fisherman'] [u'serbia', u'vote', u'race', u'nationalist'] [u'serb', u'start', u'vote', u'divis', u'elect'] [u'sherwood', u'rest', u'season'] [u'egypt', u'prison', u'kill', u'guard', u'escap', u'train'] [u'skandia', u'keep', u'zana'] [u'skandia', u'lead', u'dash', u'south'] [u'skandia', u'lead', u'nicorett'] [u'stab', u'victim', u'prais', u'polic', u'brisban', u'shoot'] [u'african', u'supermarket', u'chain', u'fight', u'trolley'] [u'strong', u'earthquak', u'rock', u'indonesia'] [u'suspect', u'ebola', u'case', u'zimbabw'] [u'suspect', u'sar', u'patient', u'quarantin', u'china'] [u'swimmer', u'prepar', u'lonsdal', u'classic'] [u'taiwan', u'offer', u'quak', u'stricken', u'iran'] [u'tast', u'festiv', u'open', u'hobart'] [u'hush', u'life', u'hors', u'whisper'] [u'injur', u'rollov'] [u'tindal', u'fit', u'hop', u'rise', u'scan'] [u'troop', u'dead', u'iraq', u'blast'] [u'troop', u'kill', u'taliban', u'dead', u'ambush'] [u'turkish', u'polic', u'seiz', u'massiv', u'haul', u'antiqu'] [u'critic', u'injur', u'crash'] [u'hold', u'plot', u'blow', u'british', u'report'] [u'iraqi', u'children', u'soldier', u'kill', u'baghdad'] [u'kill', u'bushfir'] [u'arm', u'team', u'start', u'libyan', u'meet'] [u'union', u'judg', u'airspac', u'senat'] [u'peacekeep', u'liberia', u'deploy', u'rebel'] [u'put', u'bounti', u'iraq', u'want'] [u'say', u'canada'] [u'soldier', u'die', u'baghdad', u'twin', u'bomb', u'blast'] [u'research', u'bird', u'intern', u'studi'] [u'vintag', u'motorcycl', u'destroy'] [u'want', u'suspect', u'sar', u'case', u'test', u'outsid', u'china'] [u'woman', u'charg', u'stab', u'attack'] [u'world', u'effort', u'get', u'iran', u'quak', u'toll'] [u'zimbabw', u'arriv', u'triangular', u'challeng'] [u'miner', u'pull', u'aliv', u'hour', u'trap'] [u'agarkar', u'snare', u'langer'] [u'flow', u'affect', u'farmer'] [u'pour', u'iran', u'quak', u'victim'] [u'arthur', u'hand', u'sydney', u'wildcard'] [u'kill', u'bomb', u'explod', u'near'] [u'atsic', u'chair', u'call', u'foster', u'care', u'recruit', u'drive'] [u'australian', u'pitch', u'help', u'earthquak', u'victim'] [u'australian', u'stock', u'trade'] [u'ayatollah', u'survey', u'iran', u'eathquak', u'damag'] [u'better', u'time', u'kosciuszko', u'tourism'] [u'crowd', u'tast', u'tassi'] [u'seek', u'jail', u'term', u'child', u'destruct'] [u'blackburn', u'ferguson', u'break', u'kneecap', u'season'] [u'blow', u'india', u'zaheer', u'rule'] [u'bodi', u'sydney'] [u'britain', u'arm', u'marshal', u'flight'] [u'british', u'comic', u'monkhous', u'die'] [u'chess', u'gurus', u'check', u'adelaid', u'showdown'] [u'child', u'custodi', u'report', u'releas'] [u'china', u'prepar', u'launch', u'doubl', u'star'] [u'china', u'find', u'sign', u'sar', u'quarantin', u'worker'] [u'coca', u'cola', u'quiet', u'parmalat', u'rumour'] [u'committe', u'propos', u'famili', u'overhaul'] [u'crew', u'pittwat', u'coff', u'yacht', u'race'] [u'cyprus', u'hold', u'pakistani', u'terror', u'suspect'] [u'dairi', u'farmer', u'reassur', u'parmalat'] [u'death', u'spark', u'hospit', u'assur'] [u'death', u'toll', u'china', u'blast', u'jump'] [u'detaine', u'question', u'grafton', u'brawl'] [u'dinosaur', u'phar', u'resurrect'] [u'dolphin', u'free', u'outer', u'harbour'] [u'drug', u'centr', u'warn', u'huff', u'danger'] [u'dubbo', u'policeman', u'assault', u'riot'] [u'dead', u'california', u'mudslid'] [u'boss', u'palio', u'defend'] [u'farina', u'pick', u'olyroo', u'qualifi', u'squad'] [u'govt', u'call', u'stamp', u'duti'] [u'filipino', u'elect', u'extort'] [u'effort', u'bring', u'parkland', u'blaze', u'control'] [u'servic', u'issu', u'permit', u'remind'] [u'nation', u'keep', u'nose', u'overal'] [u'fisher', u'help', u'free', u'babi', u'dolphin'] [u'focus', u'turn', u'handicap', u'honour'] [u'gallop', u'plan', u'settlement', u'celebr'] [u'govt', u'consid', u'child', u'custodi', u'propos'] [u'guatemalan', u'choos', u'presid'] [u'helicopt', u'go', u'miss'] [u'hobbit', u'maintain', u'reign', u'offic'] [u'holiday', u'road', u'toll', u'reach'] [u'hunter', u'plan', u'statewid'] [u'indec', u'merit', u'cruis', u'melbourn', u'hobart'] [u'indec', u'melbourn', u'hobart'] [u'investig', u'hous', u'begin'] [u'iranian', u'communiti', u'hold', u'quak', u'chariti', u'concert'] [u'iranian', u'earthquak', u'felt', u'ballarat'] [u'ireland', u'protect', u'huge', u'atlant', u'coral', u'reef'] [u'isra', u'troop', u'kill', u'palestinian', u'report'] [u'japanes', u'runaway', u'keep', u'stillborn', u'babi', u'month'] [u'secur', u'defenc', u'contract'] [u'khamenei', u'tour', u'iran', u'earthquak', u'devast'] [u'knock', u'noosa', u'council', u'green', u'plan'] [u'fail', u'truli', u'impress'] [u'liber', u'oppos', u'home', u'detent', u'plan'] [u'face', u'court', u'drive', u'charg'] [u'unit', u'extend', u'lead'] [u'mar', u'invas', u'continu'] [u'memori', u'servic', u'hold', u'benin', u'crash', u'victim'] [u'face', u'thai', u'court', u'terror', u'plan'] [u'mongia', u'guid', u'india', u'triangular', u'final'] [u'moor', u'ger', u'trim', u'celtic', u'lead'] [u'nauru', u'hunger', u'strike', u'need', u'decis', u'action'] [u'nauru', u'hunger', u'striker', u'take', u'hospit'] [u'near', u'miss', u'firefight', u'water', u'pump', u'fail'] [u'negoti', u'syria', u'start', u'scratch'] [u'ball', u'burst', u'rip', u'india', u'apart'] [u'probe', u'juvenil', u'detent', u'incid'] [u'record', u'higher', u'christma', u'sale'] [u'union', u'confid', u'parmalat', u'job'] [u'nuclear', u'watchdog', u'begin', u'libya', u'inspect'] [u'offici', u'iranian', u'quak', u'death', u'toll', u'reach'] [u'organis', u'predict', u'faster', u'melbourn'] [u'pakistan', u'near', u'victori', u'shoaib', u'blitz'] [u'polic', u'begin', u'kallaroo', u'murder', u'probe'] [u'polic', u'chase', u'inform', u'miss', u'teen'] [u'polic', u'confid', u'find', u'croc', u'victim'] [u'polic', u'continu', u'hunt', u'killer', u'croc'] [u'polic', u'high', u'spirit', u'ferri', u'train'] [u'polic', u'probe', u'blacktown', u'pursuit', u'crash'] [u'polic', u'probe', u'hous', u'blaze'] [u'polic', u'probe', u'motorcyclist', u'death'] [u'polic', u'probe', u'suspect', u'kidnap'] [u'polic', u'station', u'kid', u'mother'] [u'polic', u'question', u'teen', u'shop', u'damag'] [u'public', u'ask', u'angl', u'fish', u'contest'] [u'road', u'toll', u'rise', u'motorcyclist', u'death'] [u'rain', u'chang', u'road', u'condit'] [u'cross', u'fli', u'tonn', u'victim'] [u'rspca', u'alarm', u'pet', u'lock', u'car'] [u'mening', u'patient', u'mend'] [u'saudi', u'deni', u'arrest', u'suicid', u'bomber'] [u'seafood', u'buyer', u'urg', u'question', u'prawn', u'origin'] [u'sharon', u'prepar', u'road', u'failur'] [u'siev', u'sentenc', u'hand', u'downer'] [u'continu', u'compens', u'quest'] [u'skandia', u'win', u'sydney', u'hobart'] [u'small', u'bomb', u'wound', u'child', u'pakistani', u'citi'] [u'speed', u'climb', u'drink', u'drive', u'drop', u'hunter'] [u'stage', u'film', u'star', u'alan', u'bat', u'die'] [u'strong', u'quak', u'jolt', u'northern', u'japan'] [u'sudan', u'govt', u'rebel', u'hammer', u'deal'] [u'sydney', u'prepar', u'year', u'bang'] [u'sydney', u'woman', u'miss', u'hike'] [u'taliban', u'claim', u'kabul', u'suicid', u'blast'] [u'teen', u'die', u'southern', u'road', u'crash'] [u'dead', u'iran', u'mission', u'crash'] [u'time', u'run', u'weapon', u'amnesti'] [u'tindal', u'miss', u'nation', u'follow', u'ankl'] [u'troop', u'kill', u'roadsid', u'attack'] [u'ultra', u'nationalist', u'serb', u'vote', u'monitor'] [u'unit', u'loss', u'put', u'play', u'off', u'doubt'] [u'unit', u'resid', u'evacu', u'blaze'] [u'expand', u'beef', u'recal'] [u'implic', u'iraq', u'reconstruct', u'scam'] [u'involv', u'corrupt', u'iraqi', u'minist'] [u'children', u'swim', u'water', u'safeti'] [u'communiti', u'count', u'cost', u'fatal', u'bushfir'] [u'polic', u'identifi', u'abandon', u'children'] [u'polic', u'seek', u'info', u'desert', u'children'] [u'waugh', u'clear', u'sydney'] [u'wilkinson', u'injur', u'comeback', u'match'] [u'windi', u'battl', u'surviv'] [u'wind', u'boost', u'melbourn', u'hobart', u'speed'] [u'workcov', u'warn', u'illeg', u'firework', u'danger'] [u'zimbabw', u'prepar', u'possibl', u'ebola', u'outbreak'] [u'abattoir', u'work', u'includ', u'mudge', u'connect'] [u'addict', u'mast', u'melbourn', u'hobart'] [u'ambul', u'bypass', u'jump', u'fail', u'concern', u'minist'] [u'ambul', u'campaign', u'eas', u'camp', u'violenc'] [u'arab', u'countri', u'join', u'iran', u'effort'] [u'armidal', u'dumaresq', u'ahead', u'merger', u'talk'] [u'artist', u'nora', u'heysen', u'dead'] [u'atsic', u'chairman', u'offer', u'foster', u'care', u'option'] [u'aussi', u'kill'] [u'australia', u'lure', u'japanes', u'beef', u'buyer'] [u'award', u'grain', u'farmer', u'wheat'] [u'baggio', u'retir', u'season'] [u'black', u'harri', u'leav', u'pakistan'] [u'bomb', u'explod', u'riyadh', u'wit'] [u'injur', u'speedboat', u'accid'] [u'brewarrina', u'warn', u'flood', u'risk'] [u'british', u'clergi', u'slam', u'white', u'vigilant', u'bush', u'blair'] [u'briton', u'head', u'rottnest', u'island', u'task', u'forc'] [u'brumbi', u'group', u'unhappi', u'cull', u'plan'] [u'bulk', u'bill', u'drop', u'hit', u'hardest'] [u'bunburi', u'crash', u'put', u'hospit'] [u'burundi', u'blame', u'vatican', u'offici', u'death', u'rebel'] [u'bushwalk', u'hospit', u'fall'] [u'bypass', u'work', u'delay', u'southern', u'traffic'] [u'california', u'mudslid', u'death', u'toll', u'rise'] [u'trader', u'femal', u'appoint'] [u'boost', u'region', u'busi', u'confid'] [u'catamaran', u'racer', u'sail', u'south', u'east', u'victoria'] [u'cattl', u'kill', u'truck', u'rollov'] [u'group', u'protest', u'radio', u'network'] [u'child', u'custodi', u'plan', u'import', u'money'] [u'claim', u'jealousi', u'secur', u'licenc', u'remov'] [u'clean', u'continu', u'reserv', u'blaze'] [u'concern', u'rais', u'melbourn', u'transport'] [u'convict', u'murder', u'lodg', u'high', u'court', u'appeal'] [u'cost', u'influenc', u'custodi', u'chang', u'hull'] [u'council', u'reject', u'longer', u'rylston', u'pool', u'hour'] [u'court', u'confirm', u'retir', u'villag', u'ownership'] [u'court', u'hear', u'alleg', u'rapist', u'tri', u'hire', u'hitman'] [u'court', u'hear', u'alleg', u'thief', u'shop', u'spree'] [u'court', u'okay', u'nude', u'barbi', u'photo'] [u'cricket', u'unit', u'iran', u'earthquak', u'appeal'] [u'croc', u'upset', u'tiger'] [u'darwin', u'ponder', u'rugbi', u'futur'] [u'darwin', u'revel', u'tell', u'leav', u'car', u'home'] [u'deadlin', u'aquif', u'criteria'] [u'death', u'toll', u'rise', u'indian', u'cold', u'snap'] [u'dizzi', u'chanc', u'waugh', u'farewel'] [u'doubt', u'mount', u'famili', u'tribun'] [u'nasdaq', u'year', u'high'] [u'east', u'timor', u'pay', u'tribut', u'independ', u'activist'] [u'farmer', u'help', u'bolster', u'southern', u'busi'] [u'issu', u'almanac', u'alert'] [u'fiji', u'caucau', u'popular'] [u'push', u'gympi', u'gold', u'receivership'] [u'threaten', u'cessnock'] [u'joint', u'china', u'satellit', u'launch'] [u'nation', u'take', u'overal', u'honour'] [u'focus', u'turn', u'quak', u'survivor', u'iran'] [u'trillion', u'britain'] [u'fragrant', u'flower', u'stretch', u'snake', u'record'] [u'ganguli', u'defend', u'decis', u'shield', u'tendulkar'] [u'gnome', u'seek', u'home', u'liber'] [u'gold', u'coast', u'road', u'death', u'spark', u'polic', u'plea'] [u'goulburn', u'valley', u'alert'] [u'govt', u'tell', u'stop', u'illeg', u'fish'] [u'gunner', u'touch', u'southampton'] [u'hand', u'cream', u'set', u'bomb', u'detector'] [u'handicap', u'straggler', u'approach', u'hobart'] [u'hayden', u'power', u'australia', u'home'] [u'higher', u'level', u'lift', u'tourism', u'hop'] [u'highlight', u'vintag', u'sport', u'year'] [u'hong', u'kong', u'star', u'anita', u'die'] [u'hope', u'record', u'time', u'pittwat', u'coff', u'yacht'] [u'hunter', u'obstetr', u'decis', u'month', u'away'] [u'hurst', u'see', u'eckstein', u'holm', u'main', u'competit'] [u'indec', u'merit', u'home', u'melbourn'] [u'indonesian', u'journalist', u'shoot', u'dead', u'aceh', u'skirmish'] [u'iranian', u'detaine', u'send', u'quak'] [u'iran', u'quak', u'death', u'toll', u'rise', u'offici'] [u'iran', u'quak', u'rescu', u'wind'] [u'japan', u'china', u'agre', u'write', u'iraqi', u'debt'] [u'kiwi', u'want', u'akram', u'beat', u'akhtar'] [u'lara', u'rule', u'whitewash', u'inning', u'defeat'] [u'letter', u'bomb', u'target', u'euro', u'institut'] [u'herd', u'slaughter'] [u'hospitalis', u'bushwalk', u'fall'] [u'lose', u'train', u'accid'] [u'question', u'adelaid', u'sieg'] [u'trap', u'roadsid', u'ditch', u'day'] [u'mayor', u'welcom', u'drought', u'fund'] [u'miandad', u'heav', u'sigh', u'relief'] [u'mick', u'join', u'elliott', u'mari', u'prehistor'] [u'miss', u'chopper', u'crew', u'safe'] [u'nauru', u'hunger', u'strike', u'weaken'] [u'near', u'drown', u'survivor', u'oblivi', u'rescu', u'attempt'] [u'oper', u'promis', u'cheaper', u'fare'] [u'bodi', u'help', u'indigen', u'artist'] [u'newcastl', u'crew', u'sail', u'sydney', u'hobart', u'place'] [u'strait', u'time', u'appoint', u'editor', u'chief'] [u'sight', u'hunter', u'mine', u'disput'] [u'need', u'panic', u'parmalat', u'collaps', u'dairi', u'group'] [u'taxpay', u'meet', u'super', u'shortfal'] [u'offici', u'shoot', u'crocodil'] [u'search', u'continu', u'sydney', u'bushwalk'] [u'offici', u'investig', u'small', u'saudi', u'blast'] [u'iraqi', u'kill', u'injur', u'baghdad', u'blast'] [u'paddler', u'cours', u'torrumbarri'] [u'pakistan', u'beat', u'rain', u'wallop', u'zealand', u'clinch'] [u'palestinian', u'critic', u'isra', u'order', u'outpost'] [u'papal', u'envoy', u'murder', u'burundi'] [u'park', u'infrastructur', u'month'] [u'parmalat', u'chief', u'admit', u'lawyer', u'say'] [u'pat', u'presenc', u'swell', u'crowd', u'figur'] [u'care', u'warn', u'ahead', u'firework'] [u'plan', u'start', u'south', u'west', u'rescu', u'chopper'] [u'polic', u'chase', u'woomby', u'post', u'offic', u'robber'] [u'polic', u'close', u'fruit', u'pick', u'thiev'] [u'polic', u'consid', u'alic', u'blaze', u'suspici'] [u'polic', u'happi', u'central', u'driver'] [u'polic', u'issu', u'warn', u'internet', u'blackmail', u'scam'] [u'polic', u'seiz', u'cannabi', u'nimbin', u'raid'] [u'privat', u'bore', u'owner', u'face', u'restrict'] [u'public', u'await', u'govt', u'shale', u'respons'] [u'public', u'figur', u'face', u'child', u'charg', u'portug'] [u'public', u'urg', u'support', u'nauru', u'detaine', u'review'] [u'qanta', u'readi', u'work', u'aust', u'marshal', u'plan'] [u'qanta', u'warn', u'custom', u'bogus', u'sit'] [u'seek', u'money', u'sustain', u'artesian', u'basin'] [u'tourism', u'happi', u'festiv', u'season'] [u'refuge', u'group', u'urg', u'help', u'nauru', u'protest'] [u'insur', u'count', u'cost', u'global', u'warm'] [u'report', u'nauru', u'detaine', u'mischiev'] [u'result', u'flow', u'year', u'water', u'qualiti', u'trial'] [u'revel', u'urg', u'watch', u'drink', u'spike'] [u'riski', u'hobart', u'fuel', u'spill', u'complet'] [u'runner', u'consid', u'retir', u'devonport'] [u'russian', u'tycoon', u'stalk', u'report'] [u'opposit', u'rais', u'small', u'busi', u'fear'] [u'sar', u'case', u'confirm', u'chines', u'offici'] [u'search', u'helicopt', u'miss'] [u'search', u'scale', u'miss', u'angler'] [u'payout', u'unlik', u'govt'] [u'site', u'choos', u'wilder', u'centr'] [u'sixer', u'punt', u'european', u'sign'] [u'spray', u'aim', u'control', u'locust', u'number'] [u'stage', u'thrill', u'final'] [u'strong', u'explos', u'rock', u'baghdad'] [u'struggl', u'spur', u'fear', u'kanout', u'mali'] [u'survey', u'show', u'good', u'time', u'illawarra', u'busi'] [u'swimmer', u'drown', u'north', u'western', u'tasmania'] [u'sydney', u'hiker', u'safe'] [u'syria', u'turn', u'focus', u'isra', u'nuke'] [u'tanker', u'overturn', u'southern', u'tasmania'] [u'liber', u'mourn', u'death'] [u'thousand', u'flock', u'woodford', u'folk', u'festiv'] [u'dead', u'iraq', u'battl'] [u'townsvill', u'croc', u'snap'] [u'townsvill', u'spray', u'mozzi', u'number'] [u'troop', u'faulti', u'helmet', u'iraq', u'supplier'] [u'tumut', u'river', u'manag', u'spotlight'] [u'nuclear', u'chief', u'prais', u'libyan', u'cooper'] [u'aust', u'marshal', u'talk', u'underway'] [u'cardiologist', u'work', u'launceston', u'hospit'] [u'push', u'marshal', u'plan'] [u'victorian', u'polic', u'close', u'dibra', u'murder'] [u'victorian', u'yacht', u'tip', u'rudder'] [u'wall', u'gain', u'lead', u'aust', u'market'] [u'wall', u'street', u'drive', u'higher'] [u'wangaratta', u'reveal', u'manag', u'plan'] [u'power', u'compani', u'investig', u'caus'] [u'waugh', u'prais', u'crush'] [u'wilkinson', u'nation'] [u'wine', u'chief', u'fire', u'part', u'shoot'] [u'wollongong', u'harbour', u'algal', u'bloom', u'disappear'] [u'worksaf', u'probe', u'shire', u'presid', u'death'] [u'youth', u'transfer', u'centr', u'riot'] [u'zimbabw', u'face', u'famin', u'crisi'] [u'play', u'cupid', u'lovelorn', u'tiger'] [u'adelaid', u'rest', u'catch', u'schedul'] [u'aerial', u'search', u'spot', u'miss', u'stockman'] [u'airlin', u'bodi', u'say', u'govern'] [u'traffic', u'land', u'fee'] [u'antarct', u'mission', u'strand', u'safeti', u'concern'] [u'artist', u'heysen', u'ash', u'scatter'] [u'asylum', u'miss', u'sydney', u'hobart'] [u'audit', u'find', u'fund', u'fail', u'develop', u'busi'] [u'australia', u'begin', u'asbesto', u'free', u'futur'] [u'australian', u'arriv', u'iran'] [u'australian', u'climber', u'kill'] [u'australian', u'receiv', u'payout'] [u'australia', u'welcom'] [u'author', u'rule', u'drug', u'riot', u'spark'] [u'author', u'wait', u'shoot', u'croc', u'surfac'] [u'baghdad', u'gear', u'year', u'threat'] [u'beef', u'industri', u'call', u'support', u'livestock'] [u'express', u'await', u'regul', u'approv'] [u'blast', u'coal', u'firework', u'factori', u'kill'] [u'bodi', u'british', u'tourist', u'pull', u'iran', u'quak'] [u'brazil', u'judg', u'order', u'citizen', u'fingerprint'] [u'brochur', u'highlight', u'danger', u'snowi', u'motorcyclist'] [u'burni', u'girl', u'sprint', u'victori', u'devonport'] [u'crash', u'pakistan', u'kill'] [u'bush', u'design', u'thailand', u'deputi'] [u'canberra', u'gear', u'year'] [u'central', u'aust', u'road', u'condit', u'eas'] [u'central', u'prepar', u'year', u'crowd'] [u'child', u'escap', u'fieri', u'coff', u'crash'] [u'christma', u'letter', u'write', u'santa'] [u'seek', u'smaller', u'preschool', u'class', u'size'] [u'consum', u'expect', u'happi', u'year'] [u'council', u'promis', u'year', u'crackdown'] [u'doctor', u'urg', u'drink', u'caution', u'young', u'australian'] [u'dollar', u'end', u'year', u'year', u'high'] [u'driver', u'death', u'rais', u'road', u'toll'] [u'dubbo', u'ask', u'citizen', u'water', u'suppli'] [u'england', u'rugbi', u'coach', u'knight'] [u'england', u'rugbi', u'coach', u'knight', u'team', u'honour'] [u'europ', u'china', u'launch', u'solar', u'research', u'satellit'] [u'exot', u'anim', u'home'] [u'famili', u'event', u'plan', u'year'] [u'farmer', u'vehicl', u'insur', u'rebat'] [u'fire', u'spark', u'farm', u'machineri', u'warn'] [u'flood', u'warn', u'rain', u'continu'] [u'khmer', u'roug', u'head', u'admit', u'genocid'] [u'dead', u'injur', u'avalanch'] [u'fourth', u'letter', u'bomb', u'target', u'euro', u'institut'] [u'text', u'john', u'howard', u'year', u'messag'] [u'gallop', u'stand', u'minist', u'burrup', u'cost', u'blowout'] [u'gang', u'unit', u'investig', u'kallaroo', u'firebomb'] [u'german', u'hospit', u'seal', u'terror', u'threat'] [u'gillespi', u'return', u'prompt', u'select', u'dilemma'] [u'gold', u'open'] [u'govt', u'consid', u'iran', u'detaine', u'quak', u'fund', u'request'] [u'gympi', u'gold', u'sharehold', u'face', u'nervous', u'wait'] [u'health', u'minist', u'uncomfort', u'tobacco', u'money'] [u'high', u'wind', u'lash', u'central', u'victoria'] [u'melbourn', u'break', u'decemb', u'record'] [u'hunter', u'record', u'case'] [u'indonesian', u'polic', u'probe', u'possibl', u'student', u'link'] [u'iran', u'earthquak', u'survivor', u'battl', u'cold'] [u'iranian', u'presid', u'downplay', u'thaw', u'relat'] [u'iranian', u'howard', u'year', u'thought'] [u'iraqi', u'boxer', u'train', u'kuwait'] [u'iraqi', u'plane', u'attack', u'suspect', u'die', u'custodi'] [u'iraq', u'urg', u'aust', u'send', u'asylum', u'seeker', u'home'] [u'jewish', u'settlement', u'expand', u'sharon'] [u'kalgoorli', u'welcom', u'child', u'custodi', u'report'] [u'kazaa', u'top', u'searcher', u'list'] [u'yacht', u'near', u'hobart'] [u'group', u'push', u'youth', u'commiss'] [u'gillespi', u'squad'] [u'leve', u'builder', u'deni', u'council', u'flood', u'claim'] [u'london', u'road', u'sign', u'joke', u'lose', u'isra', u'polic'] [u'longreach', u'urg', u'water'] [u'mackay', u'polic', u'boost', u'number', u'year'] [u'put', u'squeez', u'local', u'beef', u'price'] [u'hospit', u'choke', u'incid'] [u'jail', u'roadsid', u'assault'] [u'face', u'court', u'baddaginni', u'fire'] [u'market', u'contract', u'power', u'bill'] [u'mar', u'express', u'prepar', u'beagl', u'chat'] [u'mayor', u'hop', u'gympi', u'gold', u'woe', u'wont', u'hurt', u'kilkivan'] [u'mclaren', u'drop', u'coulthard'] [u'melbourn', u'edg', u'record', u'high', u'temperatur'] [u'melbourn', u'timber', u'yard', u'blaze', u'bring', u'control'] [u'west', u'harvest', u'near'] [u'milk', u'human', u'kind', u'touch', u'goulburn', u'valley'] [u'miner', u'find', u'cooper', u'basin'] [u'miner', u'seek', u'golden', u'opportun', u'western'] [u'miner', u'unfaz', u'harmoni', u'option', u'decis'] [u'miss', u'angler', u'safe'] [u'miss', u'child', u'safe', u'mother'] [u'mother', u'children', u'bruce', u'highway', u'crash'] [u'tri', u'road', u'sens', u'princ', u'highway', u'woe'] [u'rain', u'littl', u'lift', u'lake', u'level'] [u'musharraf', u'tighten', u'grip', u'pakistan'] [u'block', u'sixer', u'shoot', u'moor'] [u'neuticl', u'offer', u'castrat', u'canin', u'virtual', u'viril'] [u'nevill', u'say', u'england', u'strike', u'threat', u'real'] [u'newcastl', u'chairman', u'blast', u'team'] [u'newcastl', u'prepar', u'welcom'] [u'year', u'revel', u'urg', u'consid'] [u'plan', u'recal', u'beef', u'aqi'] [u'northern', u'name', u'australia', u'ambassador'] [u'rais', u'nation', u'road', u'toll'] [u'polic', u'search', u'miss', u'trio'] [u'injur', u'isra', u'gunship', u'attack'] [u'iraqi', u'kill', u'roadsid', u'bomb', u'attack'] [u'paddler', u'sight', u'murray', u'marathon', u'finish'] [u'part', u'murrimbidge', u'open', u'swim'] [u'peopl', u'power', u'forc', u'wast', u'plant', u'closur'] [u'pittman', u'race', u'modifi', u'event'] [u'polic', u'miss', u'search'] [u'polic', u'escort', u'gypsi', u'joker', u'adelaid'] [u'polic', u'escort', u'prais', u'gypsi', u'joker'] [u'polic', u'forc', u'retreat', u'inverel', u'parti'] [u'polic', u'investig', u'possibl', u'stab', u'death'] [u'polic', u'australian', u'kill', u'avalanch'] [u'polic', u'expect', u'year', u'troubl'] [u'polic', u'plan', u'zero', u'toler', u'approach', u'year'] [u'polic', u'prepar', u'year'] [u'polic', u'readi', u'year', u'revel'] [u'polic', u'readi', u'tackl', u'year', u'troublemak'] [u'polic', u'stalk', u'gunman', u'darwin', u'suburb'] [u'polic', u'shadow', u'gypsi', u'joker'] [u'polic', u'walk', u'away', u'rollov'] [u'polic', u'watch', u'gypsi', u'joker', u'prepar', u'road', u'trip'] [u'pont', u'top', u'bat', u'rat'] [u'pyrotechnician', u'grant', u'interim', u'permit'] [u'coast', u'host', u'thousand', u'revel'] [u'look', u'capitalis', u'beef', u'worri'] [u'rafter', u'tuesday', u'return'] [u'rain', u'boost', u'central', u'fruit'] [u'rash', u'resolut', u'hard', u'follow', u'research'] [u'figur', u'lend', u'growth', u'slow'] [u'cross', u'demand', u'access', u'saddam'] [u'redskin', u'coach', u'join', u'jobless', u'queue'] [u'resourc', u'stock', u'constrain', u'market', u'gain'] [u'mayor', u'dig', u'deep', u'rivaldo'] [u'royal', u'corgi', u'enrol', u'behaviour', u'train'] [u'rugbi', u'player', u'star', u'controversi', u'honour', u'list'] [u'russian', u'writer', u'bogomolov', u'die'] [u'public', u'help', u'save', u'water'] [u'saudi', u'arabia', u'say', u'qaeda', u'suspect', u'surrend'] [u'saudi', u'arabia', u'want', u'surrend'] [u'sheffield', u'sign', u'wolv', u'striker'] [u'shepparton', u'upbeat', u'financi', u'state'] [u'shire', u'govt', u'sign', u'roadwork', u'displeasur'] [u'miss', u'avalanch', u'report'] [u'south', u'african', u'scientist', u'dispel', u'ebola', u'fear'] [u'south', u'west', u'hospit', u'deliv', u'healthi', u'perform'] [u'sprint', u'champ', u'posit', u'test'] [u'spur', u'portsmouth', u'transfer'] [u'tasmania', u'lead', u'union'] [u'tasmanian', u'scrub', u'blaze', u'control'] [u'thousand', u'crowd', u'earli', u'sydney', u'firework'] [u'thousand', u'sleep', u'open', u'iran', u'quak', u'toll', u'climb'] [u'tourism', u'expect', u'bounc'] [u'townsend', u'step', u'closer', u'natal'] [u'union', u'believ', u'cessnock', u'miner', u'entitl', u'safe'] [u'accus', u'parmalat', u'brazen', u'corpor', u'fraud'] [u'consum', u'confid', u'slip'] [u'say', u'anthrax', u'vaccin', u'safe', u'troop'] [u'shrimper', u'target', u'rate', u'asian', u'product'] [u'ephedra', u'diet', u'supplement', u'heart', u'risk'] [u'amnesti', u'net', u'handgun'] [u'victorian', u'tell', u'watch', u'sky', u'shark', u'danger'] [u'vietnam', u'dissid', u'journalist', u'jail', u'seven', u'year'] [u'govt', u'consid', u'kimberley', u'herbicid'] [u'polic', u'prepar', u'year', u'crackdown'] [u'wavelength', u'take', u'melb', u'hobart', u'handicap'] [u'weighti', u'obsess', u'trap', u'york', u'collector'] [u'west', u'brom', u'miss', u'chanc', u'wimbledon'] [u'western', u'sydney', u'taxi', u'driver', u'strike', u'tonight'] [u'wheatbelt', u'effort', u'help', u'reduc', u'dead', u'crash'] [u'whitsunday', u'council', u'tell', u'tour', u'oper', u'ceas'] [u'seek', u'clarif', u'suspect', u'sar', u'case'] [u'williamstown', u'hospit', u'put', u'birth', u'hold'] [u'heat', u'tamworth', u'water', u'climb'] [u'wolfowitz', u'replac', u'guantanamo', u'trial', u'head'] [u'year', u'photo'] [u'dead', u'bomb', u'end', u'aceh', u'year', u'concert'] [u'abandon', u'pet', u'crowd', u'rspca', u'shelter'] [u'water', u'charg', u'doubl'] [u'aftershock', u'strike', u'fear', u'iran', u'quak', u'survivor'] [u'athen', u'olymp', u'construct', u'schedul'] [u'author', u'continu', u'search', u'miss', u'fish'] [u'flight', u'detain', u'washington', u'airport'] [u'beagl', u'remain', u'silent', u'hop', u'pin', u'mar', u'express'] [u'black', u'cap', u'hope', u'share', u'coach', u'magic'] [u'bomb', u'baghdad', u'restaur', u'kill'] [u'brawl', u'lake', u'macquari', u'year', u'festiv'] [u'british', u'chief', u'fear', u'invas', u'middl'] [u'bush', u'determin', u'build', u'past', u'success'] [u'candid', u'ring', u'taiwan', u'year'] [u'cargo', u'seizur', u'seal', u'libyan', u'pledg'] [u'carragh', u'baro', u'verg', u'return', u'red'] [u'central', u'australian', u'tourism', u'look', u'better', u'time'] [u'child', u'kill', u'baghdad', u'blast'] [u'china', u'summon', u'japanes', u'diplomat', u'koizumi'] [u'crowd', u'number', u'hobart', u'year', u'celebr'] [u'dead', u'bodi', u'british', u'airway'] [u'death', u'toll', u'indian', u'cold', u'wave', u'rise'] [u'doubt', u'remain', u'job', u'blaze'] [u'close', u'year', u'high'] [u'drug', u'help', u'reduc', u'genit', u'herp', u'transmiss'] [u'survivor', u'pull', u'rubbl', u'iran'] [u'english', u'rugbi', u'star', u'delight', u'year'] [u'ervin', u'haul', u'help', u'zimbabw', u'past', u'australia'] [u'fall', u'festiv', u'crowd', u'fantast'] [u'famili', u'friend', u'mourn', u'australian', u'death'] [u'fate', u'beckon', u'australian', u'cricket', u'rock'] [u'ferdinand', u'hurt', u'england', u'nevill'] [u'dead', u'restaur', u'bomb', u'iraq'] [u'kill', u'suspect', u'suicid', u'bomb', u'baghdad'] [u'arrest', u'parmalat', u'scandal'] [u'rescu', u'earthquak', u'rubbl'] [u'forest', u'group', u'put', u'case', u'prescrib'] [u'report', u'dead', u'colombia', u'clash'] [u'french', u'year', u'amid', u'tight', u'secur'] [u'furnitur', u'consortium', u'seek', u'sotico', u'purchas'] [u'gale', u'forc', u'wind', u'wipe', u'edinburgh', u'year', u'parti'] [u'plant', u'close', u'emerg'] [u'govt', u'confisc', u'million', u'crimin', u'asset'] [u'govt', u'defend', u'year', u'public', u'transport', u'measur'] [u'govt', u'push', u'chang', u'health', u'servic'] [u'halliburton', u'lose', u'iraq', u'fuel', u'contract'] [u'high', u'rent', u'blame', u'launceston', u'firm', u'go', u'bust'] [u'indigen', u'communiti', u'griev', u'aunti', u'pass'] [u'indigen', u'health', u'agenc', u'year', u'resolut'] [u'indonesia', u'mark', u'violent', u'year'] [u'ireland', u'work', u'peac', u'leader'] [u'isra', u'soldier', u'arrest', u'shoot', u'british'] [u'israel', u'boost', u'settler', u'number', u'golan', u'minist'] [u'israel', u'deport', u'swedish', u'lawmak', u'report'] [u'jackson', u'face', u'charg', u'manhandl'] [u'jackson', u'interview', u'ethic', u'spotlight'] [u'jamieson', u'gear', u'defend', u'burni', u'wheel'] [u'joker', u'year', u'troubl', u'free', u'polic'] [u'journalist', u'injur', u'baghdad', u'bomb'] [u'koizumi', u'make', u'impromptu', u'shrine', u'visit'] [u'lehmann', u'wont', u'report', u'temper', u'aggress'] [u'loan', u'scheme', u'student', u'opposit'] [u'london', u'await', u'crowd', u'usher'] [u'rescu', u'phillip', u'island', u'fall'] [u'mcrae', u'readi', u'dakar', u'challeng'] [u'medico', u'honour', u'doctor', u'kill', u'avalanch'] [u'methadon', u'kill', u'heroin', u'research'] [u'compani', u'woe', u'toll', u'gympi'] [u'industri', u'hop', u'strong'] [u'mint', u'unveil', u'collector', u'coin'] [u'miss', u'fish', u'trio'] [u'morn', u'pill', u'avail'] [u'mother', u'prais', u'effort', u'croc', u'victim', u'bodi'] [u'musharraf', u'lead', u'pakistan'] [u'music', u'bodi', u'chang', u'hit', u'right', u'note'] [u'nation', u'park', u'bodi', u'consid', u'tourism', u'impact'] [u'newcastl', u'unit', u'blagojev', u'look', u'singapor'] [u'heart', u'bypass', u'method', u'show', u'clog', u'studi'] [u'south', u'wale', u'road', u'toll', u'rise'] [u'jobless', u'claim', u'drop', u'year'] [u'willi', u'nelson', u'song', u'condemn', u'iraq'] [u'bulk', u'bill', u'radiolog', u'servic'] [u'northern', u'tasmania', u'record', u'troubl', u'free', u'year'] [u'search', u'cost', u'taxpay', u'thousand'] [u'resid', u'urg', u'quit'] [u'revel', u'leav', u'worri', u'profession'] [u'polic', u'arrest', u'rowdi', u'celebr'] [u'polic', u'arrest', u'seven', u'parmalat', u'probe', u'widen'] [u'polic', u'face', u'year', u'violenc', u'lennox', u'head'] [u'polic', u'year', u'drink', u'drive', u'arrest'] [u'polic', u'prais', u'revel', u'behaviour', u'despit', u'offic'] [u'polic', u'troop', u'deploy', u'africa', u'capit'] [u'properti', u'boom', u'flinder', u'island'] [u'queensland', u'yearn', u'stabil', u'tripl', u'elect'] [u'razorback', u'victor'] [u'record', u'reveal', u'joh', u'anti', u'terror', u'move'] [u'refuge', u'visa', u'number', u'steadi'] [u'region', u'urg', u'local', u'race', u'meet'] [u'report', u'show', u'worri', u'invad', u'kuwait'] [u'revel', u'flock', u'melbourn', u'year', u'celebr'] [u'revel', u'mark', u'year', u'collect', u'pig'] [u'riotous', u'year', u'festiv', u'kill', u'filipino'] [u'road', u'death', u'mar', u'start'] [u'govt', u'power', u'price', u'review'] [u'industri', u'ask', u'conserv'] [u'secur', u'tight', u'prepar', u'year'] [u'smith', u'race', u'south', u'africa'] [u'space', u'probe', u'mission', u'comet', u'dust'] [u'stirl', u'hop', u'track', u'posit'] [u'streak', u'say', u'zimbabw', u'refresh', u'readi'] [u'swiss', u'build', u'world', u'biggest'] [u'tasmania', u'grind', u'break', u'law', u'effect'] [u'teenag', u'girl', u'year', u'disappear'] [u'teen', u'fall', u'bathurst', u'build', u'firework'] [u'thirteen', u'arrest', u'canberra', u'year', u'event'] [u'thousand', u'hail', u'year', u'celebr'] [u'thousand', u'march', u'hong', u'kong', u'democraci'] [u'kill', u'iraq', u'demonstr'] [u'train', u'death', u'mar', u'celebr'] [u'leagu', u'boss', u'world'] [u'welcom', u'pinochet', u'chilean', u'coup', u'document', u'reveal'] [u'unit', u'blagojev', u'look', u'singapor', u'club'] [u'eas', u'iran', u'sanction'] [u'popul', u'rise', u'million'] [u'rule', u'blanket', u'test'] [u'govt', u'urg', u'focus', u'lower', u'countri', u'road'] [u'polic', u'fewer', u'year', u'arrest'] [u'region', u'urg', u'local', u'race', u'meet'] [u'vic', u'road', u'toll', u'lowest', u'record', u'level'] [u'polic', u'arrest', u'year', u'celebr'] [u'renew', u'bushfir', u'appeal'] [u'waugh', u'back', u'gillespi', u'swansong'] [u'welfar', u'group', u'hop', u'bridg', u'wealth', u'divid'] [u'whitlam', u'document', u'reveal', u'princ', u'wilder'] [u'wilkinson', u'clear', u'shoulder', u'injuri'] [u'woman', u'die', u'southern', u'crash'] [u'averag', u'rain', u'gladston'] [u'acci', u'push', u'wish', u'list', u'govt', u'econom', u'agenda'] [u'aceh', u'year', u'blast', u'toll', u'rise'] [u'prepar', u'moomba', u'crisi', u'supplier'] [u'resid', u'prais', u'save', u'water'] [u'space', u'problem', u'bed', u'process'] [u'chang', u'share', u'transfer'] [u'american', u'dead', u'oman'] [u'arafat', u'meet', u'egyptian', u'envoy', u'fatah', u'mark'] [u'astronom', u'chart', u'milki', u'way', u'alien', u'zone'] [u'aust', u'market', u'begin', u'year', u'flat'] [u'baghdad', u'restaur', u'bomb', u'toll', u'mount'] [u'bali', u'earthquak', u'kill', u'injur'] [u'barcoo', u'shire', u'consid', u'youth', u'facil', u'boost'] [u'brack', u'govt', u'slip', u'poll'] [u'brazil', u'begin', u'fingerprint', u'travel'] [u'british', u'airway', u'advis', u'cancel', u'flight'] [u'bush', u'dismiss', u'thaw', u'iranian', u'tie'] [u'bush', u'say', u'pakistan', u'nuke', u'secur'] [u'busi', u'time', u'hunter', u'ambul', u'worker'] [u'cane', u'toad', u'target', u'pussi', u'hunt'] [u'central', u'boati', u'warn', u'high', u'wind'] [u'child', u'drown', u'spark', u'water', u'safeti', u'warn'] [u'chines', u'firework', u'blast', u'kill'] [u'chines', u'suspect', u'sar', u'case', u'isol'] [u'chippendal', u'refus', u'bail', u'murder', u'charg'] [u'chopper', u'help', u'dous', u'crop', u'blaze'] [u'club', u'record', u'beckon', u'celtic', u'ranger'] [u'colleagu', u'grappl', u'avalanch', u'victim', u'death'] [u'coma', u'comeback', u'shinozuka', u'make', u'win', u'start'] [u'communiti', u'breath', u'life', u'point', u'lonsdal'] [u'cool', u'vest', u'heat', u'worker'] [u'council', u'consid', u'airport', u'rezon'] [u'credit', u'card', u'user', u'warn', u'shop', u'wise'] [u'croc', u'shoot', u'win'] [u'dairi', u'farmer', u'interest', u'parmalat'] [u'darwin', u'adelaid', u'rail', u'line', u'potenti', u'drug', u'rout'] [u'defiant', u'tendulkar', u'give', u'india', u'upper', u'hand'] [u'detent', u'centr', u'escape', u'consid', u'danger'] [u'detent', u'centr', u'plan', u'park'] [u'devonport', u'crash', u'rais', u'tasmanian', u'road', u'toll'] [u'unearth', u'convict', u'ghost', u'tale'] [u'owner', u'warn', u'hare', u'poison'] [u'dokic', u'pull', u'zealand', u'tournament'] [u'domest', u'tourism', u'help', u'gold', u'coast', u'weather', u'tough'] [u'doubt', u'remain', u'western', u'orthopaed', u'servic'] [u'eagleton', u'rejoin', u'newcastl', u'unit', u'grade'] [u'earthquak', u'shake', u'mexico', u'citi'] [u'egypt', u'condemn', u'isra', u'settlement', u'expans'] [u'british', u'tourist', u'kill', u'crash'] [u'challeng', u'wood', u'dubai'] [u'enterpris', u'pakistan', u'hold', u'ace'] [u'ethnic', u'tension', u'flare', u'northern', u'iraq'] [u'export', u'expect', u'strong', u'cattl', u'sale', u'indonesia'] [u'famili', u'feud', u'spark', u'polic', u'arrest'] [u'north', u'cyclon', u'watch'] [u'seiz', u'british', u'airway', u'plane', u'washington'] [u'fear', u'case', u'hurt', u'lamb', u'trade'] [u'feder', u'flood', u'fund', u'flow', u'carnarvon'] [u'govt', u'boost', u'busselton', u'flood', u'fund'] [u'claim', u'armidal', u'storag', u'warehous'] [u'crew', u'battl', u'melt', u'glass', u'leak', u'sydney'] [u'fish', u'industri', u'expect', u'bleak'] [u'teen', u'charg', u'state', u'chase'] [u'french', u'art', u'worker', u'occupi', u'cultur', u'embassi', u'rome'] [u'suppli', u'secur', u'moomba', u'shutdown'] [u'geraldton', u'polic', u'arrest', u'rowdi', u'revel'] [u'grain', u'grower', u'look', u'better'] [u'group', u'take', u'handgun', u'licenc', u'fee'] [u'gunner', u'load', u'histor', u'quest'] [u'relat', u'death', u'half', u'figur', u'report'] [u'gypsi', u'joker', u'expect', u'ride', u'today'] [u'healesvill', u'crash', u'kill', u'paramed'] [u'hong', u'kong', u'street', u'marcher', u'demand', u'democraci'] [u'time', u'western', u'queensland'] [u'howard', u'prais', u'great', u'leader', u'waugh'] [u'howard', u'stay', u'home', u'elect', u'loom'] [u'hundr', u'honour', u'late', u'east', u'timor', u'activist', u'mcnaughtan'] [u'indian', u'cold', u'snap', u'toll', u'kill'] [u'indian', u'govt', u'see', u'delay', u'controversi', u'cabl'] [u'iran', u'earthquak', u'victim', u'muslim', u'prayer'] [u'iraqi', u'civilian', u'die', u'roadsid', u'bomb', u'explos'] [u'isra', u'armi', u'lift', u'blockad', u'jenin'] [u'isra', u'armi', u'lift', u'jenin', u'blockad'] [u'israel', u'limit', u'trade', u'union', u'power'] [u'ivanho', u'dig', u'gold'] [u'king', u'canut', u'trainer', u'hail', u'perth', u'fairytal'] [u'labor', u'pledg', u'slash', u'privat', u'school', u'fund'] [u'landhold', u'rais', u'licens', u'question'] [u'libya', u'deni', u'pressur', u'forc', u'abandon', u'weapon'] [u'lifeguard', u'warn', u'danger', u'gold', u'coast', u'surf'] [u'lightn', u'rob', u'polic', u'communic'] [u'start', u'year', u'southern', u'polic'] [u'court', u'alburi', u'death'] [u'mcgrath', u'fresh', u'injuri', u'doubt'] [u'minnow', u'yeovil', u'hunt', u'liverpool', u'scalp'] [u'miss', u'rescu', u'tread', u'water'] [u'urg', u'hunter', u'imag', u'bulk'] [u'nasa', u'scientist', u'seek', u'stardust'] [u'nauru', u'detain', u'threaten', u'eyelid', u'shut'] [u'nauru', u'hunger', u'strike', u'continu', u'weaken'] [u'nelson', u'defend', u'fund', u'govern', u'school'] [u'ferri', u'launch', u'test', u'voyag', u'million'] [u'blackout', u'household', u'minist'] [u'happi', u'year', u'real', u'name'] [u'north', u'korea', u'authoris', u'nuclear', u'visit', u'report'] [u'norwegian', u'beat', u'sebastian', u'world', u'idol', u'crown'] [u'surgeri', u'injur', u'tindal'] [u'teacher', u'stress', u'claim', u'rocket', u'percent', u'higher'] [u'road', u'toll', u'slight', u'year'] [u'obstetr', u'inquiri', u'add', u'perth', u'hospit'] [u'opposit', u'label', u'govt', u'transport', u'fiasco'] [u'pakistani', u'bowler', u'destroy', u'wellington'] [u'parent', u'happi', u'teacher', u'return', u'cobar'] [u'parmalat', u'australia', u'sale'] [u'pittwat', u'coff', u'fleet', u'readi', u'sail'] [u'polic', u'north', u'west', u'year', u'arrest'] [u'polic', u'probe', u'suspect', u'murder', u'elder', u'woman'] [u'polic', u'warn', u'motorist', u'mobil', u'phone'] [u'pont', u'take', u'mcgilvray', u'medal'] [u'power', u'thump', u'newcastl'] [u'prosecut', u'shock', u'unlicens', u'electr'] [u'prosecutor', u'question', u'parmalat', u'exec'] [u'protest', u'afghan', u'constitut', u'debat'] [u'purfleet', u'face', u'court', u'stab', u'death'] [u'wine', u'industri', u'tell', u'improv', u'safeti'] [u'rain', u'boost', u'ross', u'river', u'virus', u'number'] [u'rain', u'need', u'lift', u'fruit', u'vegi', u'grower'] [u'recov', u'pae', u'plan', u'australian', u'open', u'return'] [u'cross', u'seek', u'blood', u'donat'] [u'review', u'head', u'hop', u'clear', u'power', u'price'] [u'road', u'toll', u'reach', u'holiday', u'period', u'end'] [u'secret', u'british', u'paper', u'reveal', u'fiasco', u'concord'] [u'secur', u'alert', u'shut', u'termin'] [u'secur', u'concern', u'grind', u'mexico', u'flight', u'twice'] [u'aid', u'hunt', u'elder', u'woman', u'killer'] [u'sheep', u'export', u'threaten', u'scare'] [u'skandia', u'reign', u'suprem', u'derwent'] [u'south', u'east', u'farmer', u'face', u'water', u'shortag'] [u'specialist', u'expect', u'return', u'southern'] [u'supplier', u'scrambl', u'replac', u'moomba'] [u'rule', u'like', u'help', u'magic', u'million', u'sale'] [u'tear', u'memori', u'quak', u'victim'] [u'teenag', u'drown', u'help', u'struggl', u'swimmer'] [u'thousand', u'enjoy', u'year', u'race', u'meet', u'celebr'] [u'tremor', u'felt', u'bali'] [u'trucki', u'die', u'crash', u'train'] [u'miss', u'explos', u'tanker'] [u'troop', u'stay', u'iraq', u'minist'] [u'unnam', u'chemic', u'revolutionis', u'termit', u'control'] [u'captur', u'iraqi', u'suspect', u'smuggl', u'foreign'] [u'vandal', u'kill', u'ransack', u'hous'] [u'wagga', u'mayor', u'seek', u'elect'] [u'govt', u'ponder', u'juvenil', u'bail', u'facil'] [u'shire', u'recognis', u'indigen', u'health', u'scheme'] [u'waugh', u'ponder', u'final', u'dilemma'] [u'waugh', u'ponder', u'tricki', u'wicket'] [u'waugh', u'fight', u'hand'] [u'warn', u'ross', u'river', u'virus', u'case', u'rise'] [u'weird', u'wacki', u'reign', u'suprem'] [u'wetland', u'blaze', u'promot', u'growth'] [u'spirit', u'opportun', u'nasa', u'shoot', u'mar'] [u'women', u'domin', u'year', u'prize'] [u'woodchip', u'blaze', u'day', u'extinguish'] [u'woodford', u'festiv', u'wind', u'record', u'crowd'] [u'rescu', u'rough', u'sea', u'roll', u'dive', u'boat'] [u'journalist', u'kill'] [u'activist', u'seek', u'british', u'arrest', u'warrant', u'mugab'] [u'univers', u'place', u'tough'] [u'ambul', u'servic', u'mourn', u'death', u'paramed'] [u'asia', u'trade', u'deal', u'improv', u'india', u'pakistan', u'tie'] [u'australia', u'play', u'hungari', u'open'] [u'author', u'continu', u'search', u'croc', u'victim'] [u'cancel', u'flight', u'amid', u'secur', u'alert'] [u'prepar', u'resum', u'servic'] [u'barthez', u'get', u'ahead', u'marseill', u'switch'] [u'blizzard', u'crippl', u'part'] [u'brazilian', u'champion', u'cruzeiro', u'join', u'hunt', u'rivaldo'] [u'britain', u'crisi', u'plan', u'margaret', u'love', u'marriag'] [u'buchanan', u'aussi', u'sachin'] [u'castaigned', u'downbeat', u'franc', u'return', u'report'] [u'defend', u'wheat', u'grade'] [u'cold', u'weather', u'kill', u'bangladesh'] [u'confus', u'cloud', u'report', u'chines', u'sar', u'patient'] [u'control', u'fear', u'govt', u'ignor', u'safeti', u'concern'] [u'court', u'reject', u'appeal', u'bali', u'bomber', u'accomplic'] [u'croft', u'call', u'time', u'england'] [u'diagnosi', u'sar', u'suspect', u'postpon'] [u'egyptian', u'crash', u'plane', u'head', u'pari'] [u'england', u'prop', u'white', u'miss', u'nation'] [u'offer', u'closer', u'tie', u'libya'] [u'fairytal', u'end', u'escap', u'waugh', u'grasp'] [u'famili', u'dept', u'probe', u'irwin', u'babi', u'croc', u'debut'] [u'fear', u'scan', u'caus', u'harm', u'babi'] [u'fire', u'threaten', u'camp', u'grind'] [u'firework', u'factori', u'close', u'dead', u'blast'] [u'dead', u'miss', u'firework', u'blast'] [u'soldier', u'investig', u'ivori', u'coast'] [u'freez', u'weather', u'threaten', u'iran', u'quak', u'survivor'] [u'german', u'lade', u'record', u'authent'] [u'guerrilla', u'ambush', u'train', u'western', u'iraq'] [u'gypsi', u'joker', u'finish', u'nation'] [u'hawk', u'consign', u'record', u'defeat'] [u'heavi', u'artilleri', u'cannon', u'baghdad'] [u'hewitt', u'play', u'open', u'form'] [u'high', u'rat', u'hurt', u'australian', u'famili'] [u'historian', u'surviv', u'fake', u'obituari'] [u'hope', u'wallabi', u'home', u'reserv'] [u'houllier', u'unconcern', u'oneil', u'rumour'] [u'indian', u'cold', u'snap', u'kill', u'peopl'] [u'indonesian', u'minist', u'report', u'polic'] [u'industri', u'data', u'lift', u'stock'] [u'iranian', u'opposit', u'clash', u'mourner', u'london'] [u'iran', u'plan', u'reconstruct'] [u'iran', u'reject', u'humanitarian', u'mission', u'offici'] [u'iran', u'prosecut', u'build', u'breach'] [u'irwin', u'apologis', u'croc', u'stunt'] [u'isra', u'armi', u'enter', u'jenin', u'hour'] [u'italian', u'tanker', u'rais', u'pollut', u'fear'] [u'kaif', u'rule', u'indian', u'squad'] [u'kippa', u'ring', u'charg', u'murder'] [u'laundromat', u'caus', u'damag'] [u'lesbian', u'regist', u'relationship', u'law'] [u'lifesav', u'rescu', u'swimmer', u'catch'] [u'lull', u'south', u'korean', u'bird', u'outbreak'] [u'malaysian', u'polic', u'alert', u'ahead', u'lunar', u'year'] [u'accus', u'kill', u'father'] [u'charg', u'driver', u'assault'] [u'possess', u'explos', u'materi', u'charg'] [u'ram', u'burgl', u'golf', u'club'] [u'mayor', u'inaugur', u'prove', u'guilti'] [u'middlesex', u'sight', u'kumbl'] [u'miss', u'dead'] [u'moomba', u'shortag', u'week'] [u'motorbik', u'death', u'push', u'holiday', u'road', u'toll'] [u'nalbandian', u'withdraw', u'adelaid'] [u'nasa', u'prais', u'canberra', u'role', u'collect', u'stardust'] [u'nauru', u'hunger', u'striker', u'near', u'death', u'report'] [u'near', u'half', u'russian', u'smoke', u'scientist'] [u'neglig', u'dead', u'china', u'leak', u'report'] [u'charg', u'irwin', u'croc', u'stunt'] [u'govt', u'unsur', u'impact', u'crisi'] [u'nation', u'park', u'boundari', u'widen'] [u'nuke', u'launch', u'nasa', u'long', u'rang', u'mission'] [u'parmalat', u'say', u'audit', u'execut', u'extend', u'leav'] [u'polic', u'appeal', u'wit', u'assault'] [u'polic', u'govt', u'extens'] [u'polic', u'elder', u'woman', u'strangl', u'home'] [u'power', u'cyclon', u'brew', u'samoa'] [u'properti', u'crash', u'possibl', u'warn'] [u'rail', u'death', u'fuel', u'call', u'cross', u'safeti', u'review'] [u'plane', u'crash', u'kill'] [u'rental', u'shortag', u'caus', u'problem', u'tasmania'] [u'resid', u'warn', u'shark', u'swim', u'canal'] [u'road', u'toll', u'top', u'holiday', u'season', u'end'] [u'rudolph', u'end', u'centuri', u'drought', u'west', u'indi'] [u'samoan', u'resid', u'prepar', u'cyclon'] [u'scientist', u'develop', u'termit', u'pesticid'] [u'scientist', u'evid', u'earli', u'arctic', u'dweller'] [u'secur', u'fear', u'grind', u'flight'] [u'servia', u'fretign', u'clinch', u'chaotic', u'dakar', u'second'] [u'kashmir', u'train', u'station', u'shoot'] [u'south', u'asia', u'step', u'closer', u'free', u'trade', u'deal'] [u'spacecraft', u'snap', u'startl', u'pictur', u'comet'] [u'studi', u'find', u'know', u'number'] [u'studi', u'women', u'drug', u'crime', u'link', u'need', u'institut'] [u'styri', u'fire', u'black', u'cap', u'victori'] [u'summer', u'sale', u'loom', u'penniless', u'parma'] [u'tana', u'open', u'bid', u'glori'] [u'teen', u'kill', u'wheel', u'drive', u'accid'] [u'tendulkar', u'laxman', u'spoil', u'waugh', u'parti'] [u'territorian', u'urg', u'address', u'kidney', u'diseas'] [u'kill', u'argentina', u'firework', u'shop', u'explos'] [u'palestinian', u'shoot', u'dead', u'nablus', u'medic'] [u'overcrowd', u'catch', u'near'] [u'union', u'back', u'parmalat', u'australia', u'boss'] [u'armi', u'buy', u'million', u'anthrax', u'shot'] [u'audit', u'firm', u'disown', u'italian', u'parmalat', u'unit'] [u'claim', u'qaeda', u'drug', u'bust', u'persian', u'gulf'] [u'deleg', u'north', u'korea', u'endors', u'bush'] [u'forc', u'conduct', u'raid', u'iraq'] [u'forc', u'launch', u'anti', u'corrupt', u'commiss', u'iraq'] [u'govt', u'defend', u'flight', u'clampdown', u'fighter'] [u'helicopt', u'down', u'iraq'] [u'hold', u'reuter', u'staff', u'near', u'chopper', u'crash', u'iraq'] [u'quarantin', u'herd', u'amid', u'fear'] [u'soldier', u'kill', u'iraq', u'helicopt', u'crash'] [u'soldier', u'kill', u'mortar', u'attack', u'iraq'] [u'club', u'search', u'volunt', u'lifesav'] [u'govt', u'investig', u'foul', u'odour', u'kalgoorli'] [u'world', u'champion', u'wood', u'chopper', u'gather'] [u'rescu', u'dive', u'boat', u'roll'] [u'afghanistan', u'agre', u'constitut'] [u'australia', u'start', u'massiv', u'chase'] [u'australia', u'whitewash', u'hungari', u'perth'] [u'author', u'develop', u'pictur', u'book'] [u'barthez', u'star', u'marseill', u'debut'] [u'battl', u'sar', u'complex', u'expert'] [u'beckham', u'limp', u'real', u'increas', u'lead'] [u'blair', u'land', u'basra', u'meet', u'british', u'troop'] [u'brisban', u'fruit', u'shop', u'rob'] [u'british', u'airway', u'flight', u'take'] [u'british', u'airway', u'refus', u'marshal', u'report'] [u'british', u'singer', u'injur', u'zealand', u'road', u'crash'] [u'burni', u'catch'] [u'bushrang', u'thrash', u'tiger', u'devonport'] [u'govern', u'build', u'build'] [u'canberra', u'help', u'nasa', u'space', u'probe', u'mar', u'touchdown'] [u'celtic', u'firm', u'doom', u'ger', u'titl'] [u'charlton', u'fall', u'giant', u'kill', u'gillingham'] [u'chines', u'archaeologist', u'year', u'oracl'] [u'cold', u'wave', u'kill', u'south', u'asia'] [u'cool', u'chang', u'hit'] [u'crock', u'quick', u'pose', u'problem', u'england'] [u'cyclon', u'warn', u'north', u'coast'] [u'detroit', u'name', u'america', u'fattest', u'citi'] [u'earthquak', u'rock', u'nepal', u'word', u'casualti'] [u'egyptian', u'crash', u'rescuer', u'face', u'canyon', u'current'] [u'eurobodalla', u'council', u'plan', u'measur', u'curb', u'water'] [u'fals', u'alarm', u'close', u'capitol'] [u'want', u'sourc', u'name', u'agent', u'leak', u'case'] [u'fear', u'mount', u'nauru', u'hunger', u'strike', u'stand', u'firm'] [u'kill', u'ancient', u'ethiopia', u'church', u'collaps'] [u'final', u'waugh', u'get'] [u'firefight', u'battl', u'blaze', u'wheatbelt'] [u'firefight', u'treat', u'smoke', u'inhal'] [u'premier', u'corcoran', u'dead'] [u'resuc', u'boat', u'engin', u'fail'] [u'french', u'comfort', u'shock', u'relat'] [u'crisi', u'threaten', u'job'] [u'gavaskar', u'replac', u'kaif', u'india', u'squad'] [u'georgia', u'vote', u'elect', u'leader'] [u'gilli', u'lash', u'boy'] [u'glass', u'compani', u'warn', u'crisi', u'stop', u'product'] [u'greenspan', u'blow', u'econom', u'polici', u'trumpet'] [u'hewitt', u'readi', u'hopman', u'open'] [u'hobbl', u'gayl', u'slam', u'blister', u'centuri', u'windi'] [u'india', u'humbl', u'aussi'] [u'india', u'stick', u'boot'] [u'indonesia', u'introduc', u'visa', u'australian', u'tourist'] [u'irwin', u'intern', u'croc', u'stunt'] [u'isra', u'palestinian', u'expedit', u'face', u'arctic', u'wind'] [u'kingz', u'batter', u'glori', u'vault'] [u'charg', u'deliber', u'light', u'fire'] [u'kill', u'ultralight', u'plane', u'crash'] [u'briton', u'stump', u'chicago', u'music'] [u'mar', u'rover', u'send', u'signal', u'earth'] [u'mission', u'mar', u'readi', u'land'] [u'american', u'consid', u'beef', u'safe', u'poll'] [u'motorcyclist', u'kill', u'lose', u'control', u'bike'] [u'music', u'organis', u'get'] [u'nablus', u'death', u'toll', u'rise'] [u'nicorett', u'complet', u'comeback', u'victori'] [u'injuri', u'nepali', u'earthquak'] [u'nomin', u'resourc', u'develop', u'award', u'open'] [u'fight', u'aid', u'annan'] [u'clash', u'squar'] [u'cultur', u'group', u'award', u'thousand', u'grant'] [u'avalanch', u'funer', u'week'] [u'dead', u'seven', u'wound', u'haiti', u'rebel', u'attack'] [u'kill', u'injur', u'grenad', u'explos'] [u'pacif', u'highway', u'reopen', u'crash'] [u'pakistan', u'arrest', u'musharraf', u'attack'] [u'patel', u'fall', u'india', u'bat'] [u'perth', u'teen', u'hardcourt', u'tournament'] [u'philippin', u'blast', u'kill', u'militari'] [u'pirat', u'pull', u'taipan', u'upset'] [u'polic', u'charg', u'campsit', u'bushfir'] [u'polic', u'continu', u'hunt', u'melbourn', u'gunman'] [u'polic', u'continu', u'mountain', u'search', u'miss'] [u'polic', u'hunt', u'white', u'toyota'] [u'polic', u'investig', u'death', u'north'] [u'polic', u'investig', u'univers'] [u'polic', u'search', u'melbourn', u'gunman'] [u'power', u'quak', u'rattl', u'french', u'pacif', u'territori'] [u'quak', u'survivor', u'rescu', u'iran'] [u'remain', u'bodi', u'recov', u'egypt', u'crash'] [u'rescu', u'worker', u'scour'] [u'road', u'safeti', u'head', u'sadden', u'holiday', u'road', u'toll'] [u'rocker', u'ozzi', u'die', u'twice', u'bike', u'crash'] [u'samoa', u'threat', u'power', u'cyclon', u'near'] [u'senior', u'colombian', u'rebel', u'command', u'seiz', u'ecuador'] [u'skipper', u'capsiz', u'boat', u'face', u'court'] [u'smoke', u'name', u'main', u'caus', u'avoid', u'death'] [u'south', u'africa', u'villier', u'win', u'dakar', u'stage'] [u'south', u'asian', u'leader', u'sign', u'trade', u'deal'] [u'south', u'asia', u'summit', u'open', u'pakistan'] [u'state', u'hold', u'crisi', u'meet'] [u'surf', u'lifesav', u'warn', u'swimmer', u'care'] [u'tassi', u'tast', u'festiv', u'wind'] [u'teacher', u'block', u'tafe', u'increas'] [u'teenag', u'rescu', u'gorg'] [u'tehran', u'rule', u'polit', u'mission', u'iran'] [u'thousand', u'head', u'mumbai', u'anti', u'globalis'] [u'injur', u'accid'] [u'tiger', u'bowl', u'cheapli'] [u'twice', u'cancel', u'british', u'airway', u'flight', u'land'] [u'helicopt', u'add', u'firefight', u'team'] [u'kill', u'separ', u'vehicl', u'rollov'] [u'surviv', u'metr', u'balconi', u'fall'] [u'soldier', u'kick', u'iraqi', u'prison', u'death', u'report'] [u'warn', u'flight', u'disrupt', u'terror'] [u'univers', u'launch', u'music', u'televis', u'channel'] [u'expel', u'cuban', u'diplomat'] [u'rover', u'land', u'mar', u'riski', u'descent'] [u'rover', u'land', u'mar', u'strong', u'signal', u'hear'] [u'troop', u'arrest', u'suspect', u'iraq'] [u'troop', u'kill', u'woman', u'child', u'iraq', u'report'] [u'govt', u'defend', u'decis', u'hazard', u'wast'] [u'win', u'aust', u'richest', u'wood', u'chop', u'prize'] [u'ban', u'egyptian', u'airlin', u'switzerland'] [u'winter', u'guest', u'bird', u'decreas', u'bangladesh', u'lose'] [u'yemen', u'declar', u'port', u'citi', u'aden', u'free', u'landmin'] [u'seek', u'colli', u'river', u'bridg'] [u'pipelin', u'go', u'onlin', u'earli'] [u'agoni', u'continu', u'akhtar'] [u'albani', u'dialysi', u'treatment', u'place'] [u'jazeera', u'air', u'lade', u'tape'] [u'jazeera', u'lade', u'tape', u'refer'] [u'discuss', u'casual', u'worker', u'entitl'] [u'ambul', u'servic', u'defend', u'increas'] [u'angler', u'pluck', u'safeti', u'boat', u'mishap'] [u'annan', u'welcom', u'adopt', u'afghan', u'constitut'] [u'arroyo', u'begin', u'uphil', u'battl', u'elect'] [u'arthur', u'seat', u'chairlift', u'reopen', u'collaps'] [u'australia', u'face', u'massiv', u'final', u'chase'] [u'australian', u'dollar', u'hit', u'high'] [u'author', u'jefferi', u'dead', u'age'] [u'avalanch', u'victim', u'gardner', u'buri', u'today'] [u'bali', u'bomber', u'add', u'sword'] [u'barca', u'slide', u'valencia', u'heat', u'real'] [u'beef', u'industri', u'welcom', u'trade', u'mission', u'asia'] [u'beef', u'outlook', u'good', u'despit', u'pressur'] [u'gun'] [u'properti', u'blaze', u'put', u'hospit'] [u'blair', u'make', u'surpris', u'visit', u'iraq'] [u'bodi', u'discov', u'sydney', u'rubbish'] [u'bomb', u'kill', u'philippin'] [u'boobi', u'trap', u'letter', u'target', u'lawmak'] [u'british', u'scientist', u'refus', u'abandon', u'hope'] [u'britney', u'tie', u'knot', u'tight'] [u'bulk', u'bill', u'dri', u'ballarat'] [u'bunburi', u'nurs', u'home', u'lift', u'standard'] [u'burundi', u'rebel', u'agre', u'peac', u'talk'] [u'bush', u'lobbi', u'champion', u'incent', u'rural', u'home'] [u'busi', u'unabl', u'afford', u'casual', u'entitl', u'plan'] [u'camel', u'graze', u'bushfir', u'threat', u'away'] [u'crash', u'victim', u'releas', u'wreckag'] [u'detail', u'lead', u'polic', u'fenech', u'attack'] [u'plant', u'await', u'moomba', u'restrict'] [u'charlevill', u'leve', u'bank', u'plan'] [u'china', u'confirm', u'sar', u'case'] [u'china', u'deni', u'sar', u'case', u'report'] [u'china', u'blast', u'death', u'toll', u'rise'] [u'civet', u'cull', u'eas', u'china', u'sar', u'fear'] [u'clash', u'erupt', u'isra', u'troop', u'tulkarem'] [u'coalit', u'deni', u'troop', u'blame', u'kill'] [u'cold', u'snap', u'claim', u'live', u'asia'] [u'cooler', u'time', u'forecast', u'north', u'east', u'victoria'] [u'council', u'approv', u'unit', u'develop'] [u'court', u'grant', u'bail', u'attack', u'outsid'] [u'croc', u'look', u'clash'] [u'croc', u'look', u'clash', u'loss', u'perth'] [u'cyclon', u'heta', u'lash', u'samoa'] [u'donat', u'flow', u'famili', u'crash'] [u'dope', u'rife', u'east', u'german', u'footbal', u'historian'] [u'doyl', u'announc', u'marriag', u'breakdown'] [u'drought', u'forc', u'farmer', u'withdraw', u'scheme'] [u'earthquak', u'cost', u'bali', u'million'] [u'earthquak', u'prompt', u'iran', u'capit', u'rethink'] [u'egypt', u'airlin', u'deni', u'safeti', u'issu', u'swiss'] [u'electrolux', u'spar', u'restrict'] [u'emerg', u'land', u'austrian', u'plane', u'munich'] [u'escape', u'incid', u'trigger', u'polic', u'manhunt'] [u'euro', u'hit', u'high', u'dollar'] [u'execut', u'saddam', u'meaningless', u'iraqi', u'govern'] [u'fall', u'glass', u'close', u'exhibit'] [u'fear', u'air', u'leas', u'extens', u'cost'] [u'fenech', u'offer', u'attack', u'rough', u'justic'] [u'fenech', u'stab', u'street', u'attack'] [u'ferguson', u'admit', u'striker'] [u'adelaid', u'care', u'centr', u'forc', u'evacu'] [u'firefight', u'thank', u'camper', u'respons'] [u'franc', u'belgium', u'clinch', u'hopman', u'tie'] [u'french', u'factori', u'shut', u'seven'] [u'french', u'robot', u'dive', u'crash', u'black'] [u'ganguli', u'call'] [u'generous', u'queensland', u'urg', u'continu', u'donat'] [u'georgia', u'elect', u'educ', u'lawyer', u'presid'] [u'giant', u'coach', u'brawl', u'charg'] [u'gippsland', u'record', u'hotter', u'decemb'] [u'good', u'atmospher', u'vajpaye', u'musharraf', u'meet'] [u'hewitt', u'mind'] [u'hewitt', u'mind'] [u'hobart', u'eat', u'summer', u'festiv', u'program'] [u'holiday', u'beatti', u'urg', u'address', u'foster', u'care'] [u'hollywood', u'suffer', u'year'] [u'hope', u'govt', u'agreement', u'bolster', u'pest', u'control'] [u'hors', u'lover', u'jump', u'bega'] [u'weather', u'fuel', u'jump', u'water'] [u'howard', u'hint', u'octob', u'elect'] [u'hundr', u'firebal', u'fall', u'spain'] [u'hurst', u'keep', u'athen', u'dream', u'track'] [u'icebreak', u'final', u'set', u'sail', u'resolv'] [u'import', u'say', u'standard', u'fuel', u'petrol'] [u'india', u'confirm', u'tour', u'pakistan'] [u'india', u'pakistan', u'leader', u'meet', u'time'] [u'india', u'pakistan', u'leader', u'meet', u'domin', u'south'] [u'irwin', u'loco', u'doubt', u'croc', u'stunt'] [u'islam', u'milit', u'arrest', u'isra', u'troop', u'raid'] [u'israel', u'jail', u'conscienti', u'objector'] [u'job', u'threaten', u'crisi'] [u'kangaroo', u'blackout', u'generat', u'anger'] [u'kewel', u'brand', u'cheat'] [u'labor', u'thrash', u'plan', u'releas', u'detaine'] [u'lara', u'centuri', u'mean', u'membership', u'elit', u'group'] [u'liber', u'brand', u'train', u'roll', u'delay', u'outrag'] [u'libya', u'say', u'justif', u'prolong'] [u'lucki', u'charm', u'work', u'mind', u'carrier'] [u'malaysian', u'state', u'enforc', u'islam', u'dress', u'code'] [u'arrest', u'fenech', u'assault'] [u'charg', u'nightclub', u'samurai', u'incid'] [u'crush', u'death'] [u'face', u'murder', u'charg', u'shepparton', u'death'] [u'miner', u'boost', u'kimberley', u'nickel', u'explor'] [u'minist', u'hand', u'elect', u'report'] [u'moomba', u'crisi', u'talk', u'underway'] [u'moomba', u'suppli', u'step'] [u'want', u'croc', u'hunter', u'train', u'name', u'plan', u'derail'] [u'want', u'local', u'focus', u'princ', u'highway'] [u'say', u'crash', u'help', u'injur', u'star'] [u'murder', u'charg', u'lay', u'bodi', u'roadsid'] [u'nasa', u'spirit', u'rover', u'power', u'mar', u'explor'] [u'nauru', u'hunger', u'strike', u'pointless', u'unhcr'] [u'probe', u'post', u'match', u'mele'] [u'nervous', u'beef', u'produc', u'await', u'year', u'sale'] [u'approach', u'stem', u'perth', u'burglari', u'polic'] [u'downgrad', u'santo', u'share', u'dive'] [u'holiday', u'road', u'death', u'south', u'east'] [u'north', u'west', u'shire', u'broadcast'] [u'opposit', u'question', u'sharp', u'rise', u'indigen'] [u'polic', u'abandon', u'search', u'killer', u'croc', u'carcass'] [u'absorb', u'trade', u'wast', u'charg'] [u'opiat', u'oversuppli', u'poppi', u'harvest', u'begin'] [u'palestinian', u'financ', u'minist', u'threaten', u'quit'] [u'parent', u'audit', u'speed', u'camera'] [u'parmalat', u'head', u'reject', u'detain', u'founder', u'offer'] [u'philippin', u'isol', u'suspect', u'sar', u'case'] [u'plan', u'begin', u'colli', u'motorplex', u'race'] [u'plan', u'afoot', u'copper'] [u'plenti', u'offer', u'magic', u'million', u'sale'] [u'polic', u'charg', u'explod', u'firework'] [u'polic', u'defus', u'bomb', u'saudi', u'telephon', u'offic'] [u'polic', u'launch', u'murder', u'investig', u'man', u'death'] [u'polic', u'killer', u'croc', u'search'] [u'polic', u'probe', u'devonport', u'doubl', u'stab'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'seek', u'wit', u'hotel', u'shoot'] [u'polic', u'unhappi', u'drink', u'drive', u'rise'] [u'polic', u'urg', u'karratha', u'public', u'help', u'crack'] [u'polic', u'worri', u'rise', u'speed', u'offenc'] [u'polic', u'drown', u'victim'] [u'agre', u'reward', u'ensur', u'nuke', u'talk', u'north', u'korea'] [u'prep', u'phase', u'common', u'sens', u'opposit'] [u'pressur', u'mount', u'govt', u'wast', u'plant'] [u'boost', u'wag', u'matern', u'leav', u'campaign'] [u'public', u'chemic'] [u'rebel', u'identifi', u'aceh', u'year', u'blast', u'site'] [u'renew', u'call', u'polic', u'rescu', u'boat', u'gulf'] [u'ring', u'extend', u'reign', u'offic'] [u'road', u'crash', u'spark', u'polic', u'warn'] [u'rowley', u'shoal', u'protect', u'plan', u'releas'] [u'saakashvili', u'win', u'elect', u'georgia', u'landslid'] [u'safe', u'assum', u'lade', u'tape', u'genuin'] [u'santo', u'crisi', u'caus', u'share', u'market', u'retreat'] [u'santo', u'share', u'dive', u'wake', u'moomba', u'crisi'] [u'opposit', u'slam', u'busi', u'agenc', u'chang'] [u'scout', u'prepar', u'jambore'] [u'searcher', u'girl', u'abduct', u'townsvill'] [u'seminar', u'target', u'indigen', u'health', u'problem'] [u'ship', u'fume', u'kill', u'coast'] [u'skandia', u'arriv', u'home', u'hero', u'welcom'] [u'skipper', u'face', u'court', u'dive', u'boat', u'roll'] [u'south', u'west', u'victoria', u'enjoy', u'rain'] [u'spain', u'martin', u'win', u'adelaid', u'thriller'] [u'sperm', u'count', u'drop', u'year', u'studi'] [u'spirit', u'send', u'colour', u'postcard', u'mar'] [u'state', u'work', u'minimis', u'crisi', u'fallout'] [u'storm', u'cut', u'power', u'central', u'victoria'] [u'studi', u'warn', u'injuri', u'paintbal', u'game'] [u'sydney', u'drown', u'sussex', u'inlet'] [u'tafe', u'teacher', u'join', u'student', u'rise', u'protest'] [u'taiwan', u'threat', u'qaeda'] [u'manufactur', u'concern', u'wind'] [u'parliament', u'acknowledg', u'tradit'] [u'problem', u'link', u'dokic', u'pull'] [u'territorian', u'urg', u'look', u'kidney'] [u'thousand', u'evacu', u'destroy', u'minh'] [u'thousand', u'brazilian', u'indian', u'invad', u'ranch'] [u'toddler', u'surviv', u'lone', u'bushwalk', u'scrub'] [u'tourist', u'hurt', u'paraglid', u'mishap'] [u'townsvill', u'boomer'] [u'teen', u'escap', u'quambi', u'detent', u'centr'] [u'say', u'terror', u'alert', u'disrupt', u'flight', u'year'] [u'union', u'hope', u'loss', u'minim', u'moomba', u'crisi'] [u'food', u'author', u'face', u'pressur', u'action'] [u'rover', u'beam', u'photo', u'mar', u'land'] [u'step', u'oper', u'parmalat', u'inquiri'] [u'envoy', u'welcom', u'afghan', u'constitut'] [u'vatanen', u'clock', u'dakar', u'stage'] [u'highlight', u'weed', u'danger', u'amidst', u'hors'] [u'lib', u'reject', u'plan', u'toxic', u'wast', u'sit'] [u'north', u'west', u'brace', u'cyclon', u'wind'] [u'policeman', u'join', u'cross', u'border', u'station'] [u'resid', u'await', u'cyclon', u'condit'] [u'road', u'toll', u'alarm', u'polic'] [u'water', u'bore', u'month', u'fulli', u'repair'] [u'waterhous', u'hop', u'danc', u'hero', u'weav', u'magic'] [u'strong', u'zimbabw'] [u'waugh', u'fairytal', u'finish', u'tatter'] [u'waugh', u'defi', u'histori'] [u'wine', u'grower', u'look', u'forward', u'drop'] [u'william', u'bullish', u'ahead', u'launch'] [u'wit', u'say', u'irwin', u'croc', u'photo', u'mislead'] [u'wolv', u'fail', u'bite', u'knight'] [u'woman', u'face', u'court', u'servic', u'station', u'hold'] [u'yacht', u'race', u'winner', u'call', u'harbour', u'upgrad'] [u'zimbabw', u'privat', u'phone', u'compani', u'dismiss'] [u'govt', u'accus', u'neglect', u'elder'] [u'adelaid', u'darwin', u'link', u'win', u'freight', u'contract'] [u'anderson', u'happi', u'deal', u'delay'] [u'anim', u'protect', u'group', u'form', u'polit', u'parti'] [u'arthur', u'advanc', u'adelaid'] [u'aussi', u'begin', u'mammoth', u'chase'] [u'aussi', u'volunt', u'hand', u'athen'] [u'author', u'black', u'egypt'] [u'ball', u'akhtar', u'good', u'news', u'zealand'] [u'beatti', u'get', u'irwin'] [u'booya', u'dive', u'resum', u'season'] [u'british', u'airway', u'flight', u'riyadh', u'depart'] [u'britney', u'spear', u'seek', u'annul', u'vega', u'wed'] [u'build', u'sacr', u'aborigin', u'site', u'criticis'] [u'busi', u'probe', u'stick', u'drill'] [u'busi', u'urg', u'recycl', u'christma', u'card'] [u'famili', u'crisi', u'hotlin', u'creat'] [u'canberra', u'hospit', u'rank'] [u'canberran', u'dirti', u'water', u'suppli'] [u'canberra', u'tafe', u'turn', u'rise'] [u'centrelink', u'glitch', u'send', u'wrong', u'messag', u'famili'] [u'centrelink', u'reject', u'labor', u'glitch', u'claim'] [u'charl', u'want', u'dead', u'diana', u'letter'] [u'china', u'begin', u'cull', u'fight', u'sar'] [u'releas', u'foster', u'care', u'find'] [u'coastwatch', u'stumbl', u'lose', u'world'] [u'committe', u'heart', u'surgeri', u'propos'] [u'communiti', u'faster', u'power', u'failur'] [u'concern', u'irwin', u'stunt', u'affect', u'great', u'southern'] [u'council', u'seek', u'louder', u'voic', u'partnership'] [u'council', u'want', u'camperdown', u'connect'] [u'cricket', u'fever', u'grip', u'india'] [u'croc', u'hunter', u'bite', u'critic'] [u'croc', u'look', u'speedi', u'daniel', u'replac'] [u'curtain', u'fall', u'illustri', u'career'] [u'cyclon', u'spar', u'niue'] [u'cyclon', u'warn', u'cancel'] [u'boost', u'good', u'news', u'industri'] [u'darwin', u'polic', u'crack', u'public', u'drink'] [u'davenport', u'put'] [u'corcoran', u'farewel', u'state', u'funer'] [u'dive', u'compani', u'cancel', u'trip', u'weather'] [u'doctor', u'claim', u'health', u'fail', u'heart'] [u'drier', u'condit', u'expect'] [u'dual', u'kandahar', u'blast', u'kill'] [u'effort', u'continu', u'lake', u'weed'] [u'urg', u'probe', u'woodchip', u'plan'] [u'european', u'target', u'letter', u'bomb', u'campaign'] [u'task', u'forc', u'investig', u'letter', u'bomb'] [u'fan', u'cruis', u'european', u'premier'] [u'feder', u'fund', u'flow', u'flood', u'prevent', u'work'] [u'ferdinand', u'give', u'week', u'appeal'] [u'fergi', u'blast', u'player', u'advanc'] [u'fewer', u'domest', u'violenc', u'case', u'south', u'coast'] [u'fiji', u'rugbi', u'boss', u'face', u'legal', u'challeng'] [u'film', u'name', u'right', u'king', u'england'] [u'firefight', u'chopper', u'head', u'mansfield'] [u'forest', u'blaze', u'near', u'dubbo', u'grow'] [u'french', u'nation', u'kill', u'drive', u'shoot'] [u'futur', u'look', u'bleak', u'tassi', u'frog'] [u'galleri', u'aim', u'reopen', u'space'] [u'galleri', u'close', u'exhibit', u'space'] [u'countri', u'dweller', u'like', u'experi'] [u'gibb', u'kalli', u'centuri', u'protea', u'control'] [u'govt', u'pledg', u'indigen', u'health', u'studi'] [u'govt', u'reject', u'claim', u'age', u'care', u'staff'] [u'group', u'air', u'kosciuszko', u'nation', u'park', u'fear'] [u'gullit', u'come', u'home', u'feyenoord'] [u'harass', u'saudi', u'saddam', u'seek'] [u'health', u'author', u'play', u'china', u'sar', u'case'] [u'heat', u'help', u'break', u'alic', u'record'] [u'heavi', u'snow', u'delay', u'flight', u'vienna'] [u'hope', u'cricket', u'fan', u'rise', u'earli', u'india'] [u'hospit', u'set', u'sight', u'surgeri', u'plan'] [u'hunter', u'shape', u'good', u'tourism', u'season'] [u'auckland', u'daniilidou', u'athen', u'mind'] [u'india', u'pakistan', u'histor', u'kashmir', u'talk'] [u'india', u'pakistan', u'talk', u'welcom'] [u'indigen', u'communiti', u'outrag', u'develop'] [u'indigen', u'drive', u'lesson', u'program', u'save', u'live'] [u'investig', u'stab', u'continu'] [u'expert', u'head', u'iran'] [u'quad', u'celebr', u'birthday'] [u'jail', u'worker', u'releas', u'bail', u'alleg'] [u'kewel', u'hit', u'dive', u'claim'] [u'suit', u'file', u'parmalat', u'inquiri', u'widen'] [u'lehmann', u'return', u'redback'] [u'liverpool', u'draw', u'newcastl'] [u'liverpool', u'qualifi', u'champion', u'leagu'] [u'mackay', u'firm', u'tell', u'arson', u'threat'] [u'magic', u'million', u'barrier', u'draw', u'loom'] [u'major', u'focus', u'wood', u'offer', u'rich', u'promis'] [u'arrest', u'fenech', u'assault'] [u'injur', u'motorcycl', u'accid'] [u'face', u'court', u'child', u'abduct', u'rape', u'charg'] [u'fulham', u'saha'] [u'market', u'hit', u'month', u'high'] [u'mayor', u'think', u'militari', u'tattoo', u'plan', u'cost'] [u'mayor', u'unhappi', u'merger', u'consult', u'time'] [u'medic', u'centr', u'eas', u'doctor', u'shortag'] [u'memori', u'servic', u'adventur', u'hold'] [u'west', u'experi', u'downpour'] [u'monkey', u'magic', u'stamp', u'releas'] [u'montoya', u'pledg', u'crown', u'part', u'gift'] [u'moomba', u'flow', u'increas', u'today'] [u'moomba', u'talk', u'continu'] [u'moomba', u'woe', u'forc', u'abattoir', u'chang', u'sourc'] [u'hospit', u'bed', u'wont', u'help', u'govt'] [u'torr', u'strait', u'dengu', u'fever', u'case'] [u'moroccan', u'soldier', u'keep', u'bride', u'wait', u'year'] [u'nasa', u'eye', u'mar', u'rover', u'stop'] [u'nasa', u'receiv', u'colour', u'pictur', u'snap'] [u'nasa', u'scientist', u'live', u'martian', u'time'] [u'needl', u'free', u'vaccin', u'caus', u'harm', u'good'] [u'fish', u'hook', u'help', u'protect', u'endang'] [u'fund', u'better', u'spend', u'health', u'servic', u'atsic'] [u'jersey', u'legalis', u'stem', u'cell', u'research'] [u'korea', u'propos', u'nuclear', u'freez'] [u'north', u'west', u'heatwav', u'spark'] [u'govt', u'dismiss', u'hospit', u'pressur', u'claim'] [u'firefight', u'hop', u'cooler', u'condit'] [u'duti', u'polic', u'offic', u'injur'] [u'onlin', u'music', u'swap', u'drop', u'wake', u'industri'] [u'pacif', u'island', u'cyclon', u'watch'] [u'passeng', u'escap', u'light', u'plane', u'crash'] [u'peterhansel', u'penalti', u'retain', u'dakar', u'lead'] [u'pilot'] [u'polic', u'expect', u'school', u'vandal', u'arrest'] [u'polic', u'drown', u'victim'] [u'polic', u'probe', u'vandal', u'attack'] [u'polic', u'question', u'shoot'] [u'polic', u'ranger', u'pitch', u'solv', u'tent', u'mysteri'] [u'polic', u'research', u'drink', u'driver'] [u'polic', u'save', u'burn', u'shed'] [u'polic', u'seek', u'wit', u'devonport', u'stab'] [u'polic', u'determin', u'drown', u'victim', u'ident'] [u'polic', u'hunt', u'escap', u'teenag'] [u'polic', u'identifi', u'dead'] [u'portug', u'refus', u'request', u'arm', u'guard'] [u'preselect', u'erupt', u'lib'] [u'princess', u'diana', u'inquest', u'begin', u'tonight'] [u'prison', u'passeng', u'flight', u'risk'] [u'probe', u'launch', u'wineri', u'offic', u'blaze'] [u'public', u'ask', u'hold', u'miss'] [u'public', u'ask', u'save', u'water', u'face', u'fin'] [u'public', u'feedback', u'seek', u'marin', u'park', u'plan'] [u'public', u'urg', u'snake'] [u'pub', u'best', u'mercuri', u'hit'] [u'qanta', u'provid', u'passeng', u'info'] [u'accept', u'child', u'abus', u'report'] [u'govt', u'declin', u'powerlin', u'green', u'plea'] [u'quirindi', u'critic', u'attack'] [u'rain', u'help', u'boost', u'ilfracomb', u'water', u'suppli'] [u'rain', u'wash', u'adelaid', u'hardcourt'] [u'rann', u'criticis', u'irwin', u'action'] [u'davi', u'shoot', u'orlean'] [u'reef', u'fish', u'closur', u'announc'] [u'research', u'seek', u'reduc', u'multipl', u'birth'] [u'rivaldo', u'head', u'cruzeiro', u'agent'] [u'road', u'crash', u'leav', u'hospit'] [u'ross', u'river', u'virus', u'outbreak', u'possibl'] [u'santo', u'await', u'moomba', u'report'] [u'schuettler', u'take', u'easi', u'doha'] [u'schumach', u'william', u'negoti', u'hold'] [u'seed', u'steadi', u'start', u'chennai'] [u'share', u'market', u'ralli', u'tip', u'continu'] [u'sharon', u'vow', u'push', u'separ', u'plan', u'road'] [u'shoalhaven', u'impos', u'plastic'] [u'skinstad', u'take', u'break', u'rugbi'] [u'soil', u'danger', u'build', u'part', u'csiro'] [u'south', u'asia', u'sign', u'free', u'trade', u'pact'] [u'spanish', u'polic', u'track', u'meteorit', u'fragment'] [u'spate', u'accid', u'spark', u'polic', u'road', u'safeti'] [u'stateless', u'asylum', u'seeker', u'appli', u'releas'] [u'strong', u'wind', u'tasman', u'peninsula'] [u'survey', u'find', u'busi', u'servic', u'sector', u'peak'] [u'sweeter', u'grape', u'harvest', u'predict'] [u'sydney', u'apart', u'block', u'evacu'] [u'sydney', u'public', u'hospit', u'cope', u'lib'] [u'tape', u'probabl', u'lade'] [u'parliament', u'hous', u'vandalis'] [u'polic', u'rise'] [u'teacher', u'group', u'reject', u'rise', u'tuition', u'fee'] [u'teenag', u'wildcard', u'upset', u'shaughnessi'] [u'hous', u'build', u'indigen', u'communiti'] [u'ticket', u'sale', u'fall', u'north', u'american'] [u'tourism', u'eas', u'road', u'closur'] [u'trade', u'talk', u'resum', u'sydney'] [u'turkish', u'bomb', u'suspect', u'lade', u'say'] [u'thai', u'policemen', u'kill', u'bomb', u'blast'] [u'troop', u'stay', u'iraq', u'year'] [u'union', u'call', u'hellyer', u'explor'] [u'union', u'claim', u'age', u'care', u'staff', u'level'] [u'unitab', u'prepar', u'takeov'] [u'rais', u'million', u'iran', u'earthquak', u'victim'] [u'worker', u'pull', u'trembl', u'iran'] [u'class', u'action', u'firm', u'file', u'parmalat'] [u'free', u'reuter', u'staff', u'detain', u'iraq'] [u'introduc', u'secur', u'check'] [u'keep', u'libya', u'sanction', u'place'] [u'move', u'reassur', u'beef', u'buyer'] [u'refus', u'north', u'korean', u'nuclear', u'demand'] [u'rout', u'czech', u'perth'] [u'destroy', u'calv', u'probe'] [u'vanston', u'reject', u'nauru', u'attack'] [u'visitor', u'number', u'victoria', u'increas'] [u'govt', u'boost', u'east', u'agricultur', u'tie'] [u'govt', u'reprioritis', u'pipelin', u'plan'] [u'wall', u'street', u'begin', u'year', u'solid', u'gain'] [u'waugh', u'go', u'fight'] [u'waugh', u'go', u'fight'] [u'waugh', u'leav', u'imperish', u'legaci'] [u'waugh', u'near', u'dramat'] [u'waverley', u'consid', u'turn', u'beach', u'shower'] [u'white', u'bengal', u'tigress', u'give', u'birth'] [u'condemn', u'china', u'plan', u'slaughter', u'cat'] [u'warn', u'china', u'cull', u'fear'] [u'wild', u'hors', u'donkey', u'cull', u'program', u'success'] [u'william', u'unveil', u'ferrari', u'beater'] [u'zambian', u'court', u'stay', u'journalist', u'deport', u'order'] [u'kill', u'afghan', u'explos'] [u'abandon', u'catamaran', u'wash', u'ashor'] [u'aceh', u'rebel', u'seek', u'ceas', u'releas', u'hostag'] [u'govt', u'recov', u'cost', u'bushfir'] [u'polic', u'watch', u'festiv', u'visitor'] [u'say', u'fan', u'wont', u'increas', u'secur', u'cost'] [u'agricultur', u'compani', u'boost', u'asset', u'cattl', u'number'] [u'alic', u'spring', u'council', u'help', u'improv', u'namatjira'] [u'alleg', u'fenech', u'attack', u'grant', u'bail'] [u'alleg', u'fenech', u'attack', u'face', u'court'] [u'limit', u'spend', u'elect', u'battl'] [u'criticis', u'hospit'] [u'amrozi', u'appeal', u'reject'] [u'anderson', u'confid', u'free', u'trade', u'agreement'] [u'anderson', u'vow', u'live', u'export', u'chang'] [u'anim', u'activist', u'face', u'court', u'victoria'] [u'arafat', u'sack', u'embattl', u'intellig', u'chief'] [u'arson', u'tamworth', u'blaze'] [u'arthur', u'seat', u'chairlift', u'action'] [u'arthur', u'seat', u'chairlift', u'open'] [u'astronaut', u'fail', u'possibl', u'leak'] [u'astronom', u'sun', u'twin'] [u'team', u'beat', u'zimbabw'] [u'aussi', u'dollar', u'reach', u'high'] [u'aussi', u'reid', u'stun', u'ferreira'] [u'australian', u'record', u'number', u'car'] [u'australian', u'visa', u'free', u'status', u'safe', u'dfat'] [u'australia', u'anglican', u'primat', u'step'] [u'author', u'confid', u'dubbo', u'bushfir'] [u'bank', u'bandit', u'trigger', u'polic', u'manhunt'] [u'beef', u'price', u'skyrocket', u'japan'] [u'field', u'saddl', u'mountain', u'bike', u'race'] [u'ahead', u'transport', u'grain', u'harvest'] [u'bird', u'fear', u'chicken'] [u'birdwatch', u'din', u'rare', u'fli', u'visitor'] [u'blackout', u'consid', u'inevit', u'overhead'] [u'bracken', u'succumb', u'strain'] [u'britain', u'say', u'marshal', u'respons', u'prudent'] [u'bulgarian', u'journalist', u'show', u'secur', u'measur'] [u'bundaberg', u'woman', u'die', u'crash'] [u'bush', u'famili', u'feel', u'board', u'school', u'rise', u'icpa'] [u'bushfir', u'impact', u'restrict', u'nation', u'park', u'access'] [u'busi', u'remind', u'check', u'cool', u'tower'] [u'cairn', u'face', u'court', u'brother', u'murder'] [u'coast', u'offer', u'right', u'develop'] [u'cambodia', u'mark', u'year', u'pot', u'fall'] [u'canadian', u'pupil', u'tell', u'cool', u'snowbal', u'fight'] [u'candid', u'name', u'indigo', u'shire', u'poll'] [u'cane', u'grower', u'chase', u'bigger', u'slice', u'market'] [u'carr', u'defend', u'crime', u'prevent', u'shoot'] [u'carr', u'issu', u'bushfir', u'warn'] [u'cattalini', u'cop', u'match'] [u'cattl', u'station', u'get', u'good', u'soak'] [u'celin', u'dion', u'join', u'hollywood', u'star'] [u'coffe', u'lower', u'diabet', u'risk', u'studi'] [u'communiti', u'accus', u'council', u'jeopardis', u'anim'] [u'concern', u'freight', u'adelaid', u'darwin', u'rail'] [u'contamin', u'sheep', u'fee', u'case', u'adjourn'] [u'councillor', u'call', u'shop', u'reopen'] [u'court', u'adjourn', u'sibl', u'manslaught', u'case'] [u'cyclon', u'isol', u'tini', u'pacif', u'nation'] [u'damag', u'car', u'auction', u'melbourn'] [u'death', u'toll', u'aceh', u'blast', u'rise'] [u'debut', u'centuri', u'smith', u'earn', u'windi', u'draw'] [u'dirti', u'bomb', u'fear', u'alert', u'report'] [u'distinguish', u'armi', u'command', u'dali', u'die'] [u'diver', u'converg', u'hobart', u'olymp', u'trial'] [u'dollar', u'start', u'slip'] [u'dragon', u'sign', u'barrett'] [u'dragon', u'secur', u'barrett', u'year'] [u'esso', u'plant', u'help', u'moomba', u'blast'] [u'europ', u'set', u'date', u'launch', u'comet', u'hunter'] [u'step', u'secur', u'suspect', u'letter'] [u'fame', u'japanes', u'geisha', u'die', u'york', u'citi'] [u'farmer', u'advantag', u'deposit', u'scheme'] [u'south', u'coast', u'lifesav', u'marathon', u'effort'] [u'fenech', u'accus', u'deni', u'attack'] [u'franc', u'deni', u'locat', u'crash', u'black', u'box'] [u'freight', u'firm', u'track', u'adelaid', u'darwin'] [u'french', u'author', u'remov', u'woman', u'bind'] [u'fund', u'help', u'boost', u'gippsland', u'lake', u'health'] [u'futur', u'gympi', u'gold', u'uncertain'] [u'ganguli', u'say', u'australia'] [u'crisi', u'spark', u'nation', u'energi', u'plan'] [u'task', u'forc', u'establish'] [u'good', u'grain', u'harvest', u'forecast', u'rain', u'hold'] [u'govt', u'defend', u'screen', u'cargo', u'ship', u'crew'] [u'grain', u'harvest', u'bring', u'hope', u'struggl', u'farmer'] [u'greek', u'step', u'earli', u'elect'] [u'griffith', u'mayor', u'seek', u'elect'] [u'hackett', u'throw', u'challeng', u'thorp'] [u'harrison', u'estat', u'charg', u'doctor', u'souvenir'] [u'heart', u'attack', u'suspect', u'workplac', u'death'] [u'heart', u'pile', u'miseri', u'dunde'] [u'holiday', u'park', u'put', u'focus', u'environ'] [u'hospit', u'await', u'aircondition', u'respit'] [u'time', u'continu', u'england', u'district'] [u'illeg', u'fish', u'boat', u'catch', u'gulf'] [u'indigen', u'health', u'studi', u'focus', u'infant', u'death'] [u'injuri', u'forc', u'clijster', u'hopman'] [u'iran', u'egypt', u'mend', u'diplomat', u'tie'] [u'iran', u'egypt', u'restor', u'diplomat', u'tie'] [u'isra', u'armi', u'pull', u'nablus'] [u'jockey', u'hop', u'devonport', u'trick'] [u'journalist', u'face', u'record', u'censorship'] [u'kangaroo', u'power'] [u'kimberley', u'artist', u'join', u'perth', u'art', u'festiv'] [u'landown', u'safest', u'insid', u'threat'] [u'lightn', u'strike'] [u'makyb', u'diva', u'aim', u'autumn', u'return'] [u'question', u'alleg', u'assault'] [u'court', u'high', u'speed', u'chase'] [u'masuoka', u'surg', u'dakar', u'lead'] [u'mayor', u'hop', u'offer', u'visitor', u'royal', u'welcom'] [u'medic', u'group', u'want', u'salari', u'cap', u'foreign'] [u'medic', u'ethic', u'media', u'fail', u'rate'] [u'meet', u'oppos', u'local', u'govt', u'merger', u'plan'] [u'mega', u'million', u'lotteri', u'winner', u'show', u'fake', u'claimant'] [u'mening', u'breakthrough', u'lead', u'vaccin'] [u'merredin', u'consid', u'salin', u'fund', u'failur'] [u'milan', u'sink', u'roma', u'nedv', u'keep', u'juve', u'touch'] [u'moomba', u'explos', u'affect', u'price'] [u'air', u'fear', u'place'] [u'renew', u'expand', u'water', u'storag'] [u'say', u'santo', u'foot', u'safeti', u'audit'] [u'mugab', u'meet', u'megawati', u'jakarta'] [u'multi', u'million', u'dollar', u'flash', u'appeal', u'iran'] [u'music', u'lesson', u'fall', u'waysid'] [u'nasa', u'show', u'postcard', u'mar'] [u'nation', u'galleri', u'risk', u'lose', u'prestig'] [u'nation', u'concern', u'predict', u'teacher'] [u'nat', u'heat', u'tower', u'debat'] [u'nigerian', u'accus', u'rape', u'face', u'death', u'stone'] [u'niue', u'count', u'cost', u'savag', u'storm'] [u'excus', u'indigen', u'violenc', u'quartermain'] [u'north', u'korea', u'impos', u'condit', u'nuclear'] [u'norwest', u'energi', u'agre', u'sell', u'cliff', u'head'] [u'singl', u'doubt', u'magic', u'million', u'favourit'] [u'govt', u'count', u'mislead', u'public'] [u'high', u'alert'] [u'swelter', u'temperatur', u'approach'] [u'moot', u'cheaper', u'option'] [u'ombudsman', u'review', u'state', u'care', u'abus', u'claim'] [u'kill', u'snowi', u'mtns', u'boat', u'accid'] [u'pair', u'rescu', u'amid', u'fortescu'] [u'paradorn', u'moya', u'advanc', u'india'] [u'paramlat', u'investig', u'probe', u'bank', u'knowledg'] [u'philippin', u'clear', u'sar', u'case'] [u'plantat', u'pulpwood', u'termin', u'reject', u'rail'] [u'polic', u'appeal', u'wit', u'attempt', u'abduct'] [u'polic', u'appeal', u'wit', u'sydney', u'shoot'] [u'polic', u'appeal', u'public', u'sydney', u'shoot'] [u'polic', u'flag', u'taxi', u'thiev', u'crackdown'] [u'polic', u'investig', u'racehors', u'shoot'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'open', u'marrickvill', u'death', u'case'] [u'polic', u'search', u'clue', u'stab', u'case'] [u'polic', u'seek', u'miss', u'fisherman', u'lake', u'eucumben'] [u'polic', u'speak', u'injur', u'highway'] [u'polic', u'upset', u'school', u'vandal'] [u'powel', u'call', u'unifi', u'iraq'] [u'power', u'soar', u'temperatur'] [u'pratt', u'battl', u'gold', u'coast', u'second', u'round'] [u'prison', u'flee', u'jail', u'famili'] [u'raper', u'call', u'return', u'gold', u'coast', u'team'] [u'renal', u'servic', u'help', u'indigen', u'diabet'] [u'renown', u'photograph', u'francesco', u'scavullo', u'die'] [u'report', u'back', u'cathol', u'bishop'] [u'report', u'show', u'nsws', u'time', u'mum', u'rise'] [u'retail', u'spend', u'send', u'rat'] [u'northern', u'illawarra', u'scheme', u'boost', u'busi'] [u'ruddock', u'enter', u'nauru', u'spat'] [u'consid', u'desecr', u'grave'] [u'govt', u'releas', u'healthi', u'eat', u'guidelin'] [u'schwarzenegg', u'lay', u'budget', u'plan'] [u'scud', u'misfir', u'qatar'] [u'slovak', u'triumph', u'despit', u'hantuchova', u'poor', u'form'] [u'smoker', u'higher', u'breast', u'cancer', u'risk', u'studi'] [u'snake', u'length', u'slipperi', u'subject'] [u'western', u'region', u'heat', u'relief'] [u'speed', u'doom', u'galaxi', u'hint', u'milki', u'way', u'fate'] [u'lanka', u'power', u'struggl', u'invalid', u'truce'] [u'state', u'theatr', u'open', u'sydney'] [u'strong', u'dollar', u'put', u'squeez', u'orang', u'export'] [u'summer', u'heat', u'drive', u'power', u'peak'] [u'suspect', u'admit', u'kill', u'swedish', u'minist'] [u'sydney', u'funer', u'honour', u'defenc', u'leader'] [u'sydney', u'petrol', u'station', u'shoot', u'kill'] [u'syria', u'hint', u'nuclear', u'program'] [u'tamworth', u'enjoy', u'strong', u'holiday', u'tourism'] [u'fire', u'forc', u'camper', u'evacu'] [u'tasmania', u'ferri', u'arriv', u'sydney'] [u'teen', u'driver', u'clear', u'fatal', u'accid'] [u'test', u'great', u'want', u'gold', u'coast', u'team'] [u'dead', u'west', u'bank', u'sweep', u'infuri'] [u'rank', u'cap', u'knockout', u'year', u'katsidi'] [u'trade', u'subdu', u'wall', u'street'] [u'transport', u'boost', u'tourism'] [u'truss', u'consid', u'cormo', u'express', u'find'] [u'face', u'court', u'alleg', u'chase'] [u'injur', u'fresh', u'attack', u'thai', u'polic', u'station'] [u'union', u'highlight', u'age', u'care', u'worker', u'pressur'] [u'union', u'worri', u'moomba', u'safeti'] [u'unlucki', u'robber', u'leav', u'crime', u'scene', u'batter'] [u'consid', u'general', u'iraq'] [u'expert', u'bolster', u'australia', u'john', u'diseas'] [u'say', u'case', u'come', u'canada'] [u'scientist', u'studi', u'comet', u'data'] [u'free', u'hundr', u'iraqi', u'prison'] [u'troop', u'sweep', u'iraqi', u'syrian', u'border', u'camp'] [u'vandal', u'attack', u'communic', u'landmark'] [u'vanston', u'ask', u'disclos', u'brisban', u'detent'] [u'vehicl', u'break', u'spark', u'lock', u'car'] [u'help', u'region', u'centr', u'fight', u'toxic', u'dump', u'plan'] [u'declar', u'buyback', u'success'] [u'look', u'tackl', u'electron', u'crime', u'problem'] [u'villa', u'surg', u'sixth'] [u'visa', u'free', u'visit', u'endang', u'loom', u'rule'] [u'farmer', u'readi', u'live', u'export', u'report'] [u'holiday', u'road', u'death', u'drop'] [u'waugh', u'celebr', u'fit', u'farewel'] [u'wheatbelt', u'farmer', u'drought'] [u'whitbread', u'prize', u'honour', u'children', u'book'] [u'wide', u'record', u'domest', u'violenc', u'order'] [u'woodchip', u'plan', u'spark', u'traffic', u'fear'] [u'zimbabw', u'take', u'team'] [u'activist', u'claim', u'africa', u'farmland'] [u'actor', u'harrison', u'ford', u'wife', u'divorc'] [u'actress', u'kate', u'hudson', u'give', u'birth'] [u'lift', u'restrict'] [u'airlin', u'cockpit', u'need', u'rethink', u'british', u'expert'] [u'alleg', u'rapist', u'murder', u'fail', u'appear', u'court'] [u'analyst', u'tip', u'unemploy', u'drop'] [u'applebi', u'confirm', u'royal', u'melbourn'] [u'competit', u'adopt', u'outback', u'theme'] [u'camp', u'wallabi', u'discuss'] [u'asic', u'releas', u'corpor', u'disclosur', u'progress', u'report'] [u'aussi', u'dakar', u'ralli'] [u'aussi', u'stosur', u'semi', u'final'] [u'australian', u'beef', u'industri', u'welcom', u'japanes'] [u'australian', u'doctor', u'prepar', u'nauru', u'visit'] [u'australian', u'scientist', u'galaxi'] [u'flight', u'depart', u'late', u'fifth'] [u'beagl', u'mar', u'probe', u'lose', u'space'] [u'bjorkman', u'roll', u'roddick'] [u'black', u'cap', u'fall', u'short', u'pakistan'] [u'black', u'south', u'african', u'reclaim', u'farm'] [u'blagojev', u'leav', u'newcastl', u'unit', u'singapor'] [u'brevill', u'inventor', u'die', u'age'] [u'british', u'govt', u'plan', u'power', u'curb', u'terror'] [u'british', u'soldier', u'kill', u'train', u'rang', u'iraq'] [u'broom', u'urg', u'council', u'scandal'] [u'build', u'boom', u'boost', u'cessnock', u'invest'] [u'bullet', u'shoot', u'sink', u'giant'] [u'bush', u'arm', u'elect', u'chest'] [u'bush', u'unveil', u'earn', u'legal', u'immigr', u'chang'] [u'cairn', u'council', u'cut', u'million', u'debt'] [u'better', u'creswick', u'water', u'suppli'] [u'canadian', u'snorkel', u'die', u'whitsunday'] [u'canberra', u'rev', u'nation', u'hotrod', u'festiv'] [u'crash', u'victim', u'succumb', u'injuri'] [u'cash', u'incent', u'bollywood', u'script', u'boredom'] [u'casino', u'chip', u'pave', u'tag', u'bank', u'note'] [u'charder', u'win', u'devonport'] [u'china', u'extend', u'sar', u'cull', u'rat'] [u'china', u'hong', u'kong', u'sar', u'watch'] [u'china', u'dong', u'unit'] [u'china', u'strike', u'martial', u'constitut'] [u'chines', u'newspap', u'come', u'sar', u'report'] [u'chines', u'sar', u'patient', u'releas', u'hospit'] [u'communiti', u'quiz', u'councillor'] [u'convict', u'murder', u'appli', u'chang', u'prison'] [u'countri', u'hospit', u'stop', u'obstetr', u'servic'] [u'court', u'order', u'fulham', u'marlet', u'case'] [u'croc', u'roam', u'street', u'town'] [u'croc', u'sign', u'point', u'guard', u'import'] [u'custom', u'warn', u'spanish', u'letter', u'scam'] [u'demand', u'herbal', u'remedi', u'threaten', u'plant', u'studi'] [u'doctor', u'claim', u'govt', u'block', u'naura', u'visa'] [u'dokic', u'ditch', u'sydney', u'event'] [u'dominion', u'extend', u'gold', u'mine', u'oper'] [u'drop', u'centr', u'cater', u'risk', u'young', u'peopl'] [u'educ', u'continu', u'protect', u'fish', u'stock'] [u'email', u'scam', u'target', u'westpac'] [u'emerg', u'arriv', u'cyclon', u'ravag', u'niue'] [u'player', u'clear', u'rape', u'charg', u'report'] [u'expert', u'warn', u'contact', u'len', u'wearer', u'water'] [u'export', u'queri', u'cormo', u'find'] [u'famili', u'mourn', u'egyptian', u'crash', u'victim'] [u'farmer', u'nation', u'livestock', u'identif'] [u'farmer', u'feder', u'altern', u'wast', u'dump'] [u'south', u'coast', u'lifesav', u'continu', u'win', u'way'] [u'feder', u'urg', u'reject', u'medicar', u'rebat', u'plan'] [u'govt', u'urg', u'help', u'council', u'liabil'] [u'ferdinand', u'win', u'fergi', u'prais'] [u'ferreira', u'say', u'season'] [u'firefight', u'confid', u'contain', u'penrith', u'blaze'] [u'servic', u'bomb', u'blaze', u'north', u'west', u'wollongong'] [u'boy', u'injur', u'vietnam', u'shell'] [u'franc', u'search', u'suspect', u'terrorist'] [u'french', u'locat', u'second', u'black', u'plane'] [u'funer', u'farewel', u'doctor', u'wife', u'children'] [u'gallop', u'announc', u'port', u'upgrad'] [u'genet', u'alarm', u'clock', u'tell', u'plant', u'flower'] [u'gibbon', u'seek', u'latrob', u'campus', u'rethink'] [u'gilchrist', u'aim', u'rack', u'run'] [u'glitch', u'delay', u'mar', u'rover', u'roll'] [u'global', u'warm', u'threaten', u'million', u'speci'] [u'group', u'welcom', u'price', u'hike', u'australian', u'beef'] [u'heart', u'attack', u'kill', u'dominican'] [u'heat', u'news', u'pastur', u'livestock'] [u'case', u'negat', u'china', u'sar', u'alert', u'remain'] [u'hollywood', u'special', u'effect', u'hide', u'surgeri', u'scar'] [u'indian', u'brief', u'cabinet', u'breakthrough'] [u'indonesian', u'polic', u'detain', u'canberra', u'bali'] [u'injur', u'molik', u'hand', u'slovakia', u'victori'] [u'italian', u'strike', u'forc', u'alitalia', u'cancel', u'flight'] [u'japanes', u'team', u'brisban', u'beef', u'talk'] [u'johnson', u'aim', u'peak', u'olymp'] [u'labor', u'get', u'heavi', u'clear', u'fell'] [u'lara', u'reclaim', u'bill'] [u'libya', u'deni', u'secret', u'meet', u'israel'] [u'lonard', u'action'] [u'magic', u'million', u'sale', u'expect', u'live'] [u'arrest', u'attack', u'polic'] [u'hospit', u'multipl', u'stab', u'wound'] [u'plan', u'kidnap', u'test', u'wife', u'love'] [u'mar', u'express', u'listen', u'beagl', u'bark'] [u'melbourn', u'farewel', u'ambul', u'offic'] [u'merit', u'see', u'fund', u'boost', u'drug', u'court', u'scheme'] [u'michael', u'jackson', u'surrend', u'passport'] [u'mini', u'cyclon', u'whip', u'northern'] [u'minist', u'announc', u'sweeten', u'wide', u'sugar'] [u'miracl', u'quak', u'survivor', u'fight', u'life'] [u'miss', u'yachtsmen', u'shelter', u'tasmania'] [u'montoya', u'give', u'thumb'] [u'mortar', u'attack', u'injur', u'troop', u'iraq'] [u'mourner', u'rememb', u'labor', u'premier'] [u'push', u'indigen', u'ownership', u'palm', u'island'] [u'grill', u'blair', u'late', u'hutton', u'inquiri', u'submiss'] [u'music', u'festiv', u'demand', u'spark', u'water', u'pump', u'test'] [u'nauru', u'hunger', u'strike'] [u'nauru', u'invit', u'help', u'detaine', u'care'] [u'chief', u'execut', u'hunter', u'develop', u'bodi'] [u'robot', u'rout', u'egypt', u'crash', u'search'] [u'nightclub', u'curfew', u'trial', u'extend', u'june'] [u'niue', u'treat', u'relief', u'flight'] [u'beer', u'swelter', u'marbl'] [u'need', u'sydney', u'council', u'merger', u'mayor'] [u'plan', u'stop', u'evapor', u'pond', u'trial'] [u'surpris', u'farm', u'deposit', u'figur'] [u'treasur', u'defend', u'land', u'chang'] [u'cattlemen', u'welcom', u'live', u'export', u'chang'] [u'town', u'give', u'cardboard', u'coffin', u'thumb'] [u'olyroo', u'claim', u'gasp'] [u'olyroo', u'claim', u'minut'] [u'dead', u'storm', u'tear', u'southern'] [u'pair', u'face', u'drug', u'charg', u'search'] [u'pakistan', u'launch', u'oper', u'milit'] [u'paradorn', u'quarter', u'final', u'india'] [u'parmalat', u'parent', u'group', u'declar', u'insolv'] [u'parramatta', u'prove', u'power', u'unit'] [u'patio', u'sink', u'archaeologist', u'vike', u'hop'] [u'peru', u'flood', u'kill', u'leav', u'homeless'] [u'plan', u'help', u'reduc', u'alcohol', u'relat', u'violenc'] [u'court', u'delay', u'decis'] [u'court', u'rule', u'saga'] [u'polic', u'crack', u'armidal', u'repeat', u'offend'] [u'polic', u'hunt', u'attack', u'alic', u'assault'] [u'polic', u'kill', u'lake', u'drown'] [u'polic', u'unhappi', u'west', u'road', u'death'] [u'postcard', u'mail', u'final', u'reach'] [u'protest', u'kill', u'australian', u'indonesia'] [u'punter', u'back', u'aussi', u'lift'] [u'qanta', u'marshal', u'talk', u'continu'] [u'confid', u'alleg', u'offend'] [u'rafter', u'return', u'doubl', u'match'] [u'ranieri', u'get', u'russian', u'grill'] [u'registr', u'problem', u'delay', u'afghan', u'elect'] [u'reid', u'adelaid'] [u'reid', u'rusedski', u'adelaid'] [u'report', u'say', u'rivkin', u'sick'] [u'report', u'highlight', u'detent', u'centr', u'riot', u'cost'] [u'resid', u'upset', u'leasehold', u'offer', u'timefram'] [u'resourc', u'sector', u'weigh', u'market'] [u'roaster', u'planet', u'warm'] [u'saboteur', u'destroy', u'kirkuk', u'pipelin'] [u'safin', u'secur', u'russia'] [u'santo', u'say', u'moomba', u'plant', u'track', u'march'] [u'opposit', u'suggest', u'escap', u'plan', u'worker'] [u'search', u'underway', u'year', u'old', u'miss', u'bass'] [u'second', u'string', u'real', u'draw', u'eibar'] [u'secur', u'boost', u'sydney', u'opera', u'hous'] [u'concern', u'miss', u'year'] [u'busi', u'storm', u'lash', u'upper', u'hunter'] [u'seven', u'draw', u'pit', u'australia', u'england'] [u'shire', u'seek', u'airstrip', u'firefight', u'plan'] [u'marshal', u'talk', u'continu'] [u'smoke', u'rat', u'increas', u'slowli'] [u'spotlight', u'shin', u'grace', u'bros', u'build'] [u'stosur', u'move', u'women', u'hardcourt', u'quarter', u'final'] [u'stosur', u'secur', u'quarter', u'final', u'berth'] [u'stosur', u'semi'] [u'strong', u'dollar', u'take', u'toll', u'queensland', u'farmer'] [u'studi', u'suggest', u'screen', u'parent', u'adhd', u'children'] [u'suarez', u'daniilidou', u'march', u'auckland'] [u'taliban', u'apologis', u'kandahar', u'blast', u'mistak'] [u'meatwork', u'live', u'export', u'chang'] [u'temperatur', u'respit', u'western', u'queensland'] [u'terror', u'trial', u'begin', u'kenya'] [u'thailand', u'link', u'blast'] [u'tight', u'import', u'rule', u'affect', u'small', u'winemak'] [u'toilet', u'paper', u'return', u'tokyo', u'subway'] [u'offici', u'head', u'singapor', u'malaysia'] [u'train', u'mishap', u'put', u'ricciuto', u'knife'] [u'tremor', u'iran', u'maximum', u'alert'] [u'tuckey', u'outlin', u'prefer', u'pipelin', u'rout'] [u'pacif', u'highway', u'crash'] [u'union', u'doesnt', u'want', u'privat', u'jail'] [u'union', u'posit', u'austin', u'administr'] [u'unit', u'pull', u'clear', u'titl', u'rival', u'stumbl'] [u'ask', u'court', u'rule', u'enemi', u'combat'] [u'call', u'iraq', u'rebuild', u'tender'] [u'dollar', u'pull', u'grind'] [u'journalist', u'defi', u'court', u'order', u'reveal', u'sourc'] [u'lotteri', u'loser', u'press', u'claim', u'court'] [u'scientist', u'assembl', u'honeybe', u'genom'] [u'soldier', u'die', u'iraq', u'mortar', u'attack'] [u'govt', u'aim', u'prais', u'bendigo', u'owner'] [u'govt', u'remain', u'upbeat', u'southern'] [u'govt', u'upbeat', u'resourc', u'agreement'] [u'water', u'restrict', u'possibl', u'clarenc', u'valley'] [u'watt', u'jackson', u'film', u'critic', u'approv'] [u'waugh', u'committ', u'replac'] [u'weather', u'concern', u'poppi', u'grower'] [u'weather', u'turn', u'favour', u'forest', u'firefight'] [u'wisher', u'urg', u'charl', u'chin'] [u'werribe', u'farmer', u'govt', u'water', u'deal'] [u'opera', u'hard', u'follow'] [u'wider', u'abus', u'inquiri', u'possibl'] [u'william', u'welcom', u'control', u'port', u'hinchinbrook', u'work'] [u'woman', u'search', u'sign', u'love'] [u'wood', u'look', u'posit', u'start'] [u'year', u'tintin', u'set', u'cash', u'till', u'ring'] [u'want', u'grape', u'pest', u'free'] [u'airbag', u'delay', u'nasa', u'mar', u'explor', u'drive'] [u'attack', u'dayer'] [u'alic', u'civic', u'centr', u'honour', u'game', u'athlet'] [u'applebi', u'surg', u'shoot', u'lead', u'tour', u'open'] [u'artist', u'fin', u'decad', u'drink', u'drive', u'charg'] [u'aussi', u'triumph', u'thriller'] [u'australian', u'team', u'go', u'niue'] [u'australia', u'hopman'] [u'aust', u'eas', u'impact', u'japan', u'beef'] [u'author', u'probe', u'space', u'breach'] [u'baghdad', u'hotel', u'grenad'] [u'beckham', u'madrid', u'face', u'real', u'sociedad'] [u'belgium', u'celebr', u'turn'] [u'bertolucci', u'hail', u'cinema', u'auteur'] [u'blood', u'protein', u'warn', u'miscarriag', u'risk'] [u'blue'] [u'blue', u'lunch'] [u'bomb', u'prank', u'caus', u'tokyo', u'base', u'evacu'] [u'bremer', u'look', u'renew', u'energi'] [u'brisban', u'run', u'braveri', u'award'] [u'britain', u'list', u'airlin', u'ban', u'sky'] [u'bunburi', u'play', u'terror', u'threat', u'amidst', u'port'] [u'bush', u'expect', u'announc', u'space', u'mission'] [u'bushrang', u'newcastl'] [u'cabcharg', u'consid', u'buy', u'cashcard'] [u'chang', u'anim', u'law', u'vicious'] [u'canberra', u'expens', u'rent'] [u'keep', u'market', u'afloat'] [u'celebratori', u'marque', u'destroy', u'wind'] [u'chanc', u'slip', u'hill'] [u'china', u'embarrass'] [u'china', u'monitor', u'rail', u'passeng', u'sar'] [u'claim', u'age', u'care', u'facil', u'close', u'wake'] [u'claim', u'mount', u'stromlo', u'insur', u'refus'] [u'compani', u'fin', u'workplac', u'breach'] [u'cooler', u'weather', u'help', u'firefight', u'control', u'forest'] [u'corrupt', u'scandal', u'claim', u'south', u'korea', u'presid'] [u'croc', u'test', u'theori', u'pirat'] [u'daniilidou', u'giantkil', u'promis', u'classic'] [u'darwin', u'brace', u'predict', u'record'] [u'deficit', u'rural', u'export', u'drop'] [u'diamond', u'olymp', u'shoot'] [u'dirti', u'water', u'return', u'normal'] [u'dive', u'dollar', u'push', u'australian', u'currenc'] [u'doctor', u'govt', u'fund', u'nauru', u'trip'] [u'dodson', u'head', u'kimberley', u'develop', u'commiss'] [u'doubt', u'remain', u'intern', u'school'] [u'downer', u'pledg', u'send', u'offici', u'look', u'naurus'] [u'give', u'birth', u'matern', u'leav', u'offer'] [u'eighteen', u'dead', u'massacr', u'colombia'] [u'elvi', u'imperson', u'claim', u'world', u'record', u'rock'] [u'tumbi', u'jockey', u'club'] [u'falluja', u'helicopt', u'crash', u'kill', u'soldier'] [u'famili', u'incent', u'work', u'harder', u'labor'] [u'farmer', u'group', u'back', u'process', u'industri'] [u'farmer', u'group', u'think', u'fund', u'right', u'track'] [u'farmer', u'urg', u'prepar', u'drought'] [u'farmer', u'want', u'forestri', u'sector', u'share', u'water', u'cost'] [u'feasibl', u'studi', u'launch', u'pulp'] [u'govt', u'consid', u'month', u'port', u'closur'] [u'figur', u'drought', u'stricken'] [u'firefight', u'bolster', u'effort', u'quell', u'south', u'coast'] [u'firefight', u'monitor', u'spot'] [u'firefight', u'walk', u'suicid', u'prevent'] [u'florida', u'compani', u'win', u'iraqi', u'media', u'contract'] [u'rann', u'advisor', u'front', u'court'] [u'dead', u'girl', u'miss'] [u'friend', u'star', u'courteney', u'pregnant'] [u'funer', u'mountain', u'adventur', u'hold'] [u'seal', u'captur', u'near', u'public', u'toilet'] [u'georgia', u'elect', u'fresh', u'parliament', u'march'] [u'govt', u'pledg', u'iran', u'quak', u'relief'] [u'govt', u'plug', u'australian', u'beef', u'japanes', u'deleg'] [u'govt', u'wont', u'doctor', u'nauru', u'trip'] [u'gunner', u'face', u'test', u'nerv', u'unit', u'pile'] [u'high', u'temp', u'push', u'tamworth', u'water'] [u'hong', u'kong', u'group', u'sink', u'sydney', u'coal'] [u'hubbl', u'make', u'mosaic', u'galaxi'] [u'incorrect', u'label', u'babi', u'food', u'brand', u'recal'] [u'injur', u'molik', u'play', u'final'] [u'iraqi', u'danc', u'prison', u'free'] [u'iraq', u'mosqu', u'bomb', u'kill'] [u'israel', u'bring', u'ethiopian', u'jew', u'home'] [u'japan', u'flag', u'humanitarian', u'troop', u'mission'] [u'journalist', u'send', u'jail', u'call', u'parliament'] [u'judg', u'block', u'documentari', u'moham', u'fay'] [u'king', u'spot'] [u'labor', u'demand', u'govt', u'urgent', u'releas', u'banana', u'import'] [u'labor', u'forest', u'plan', u'breach', u'minist'] [u'lake', u'hume', u'record', u'alga', u'woe'] [u'languag', u'friend', u'influenti'] [u'leak', u'fear', u'subsid', u'pressur', u'stabilis'] [u'lebanes', u'girl', u'march', u'french', u'scarf'] [u'lethal', u'leisel', u'set', u'australian', u'mark'] [u'libya', u'sign', u'bomb', u'compens', u'deal'] [u'seek', u'rail', u'cost', u'live', u'answer'] [u'llodra', u'reid', u'crash', u'adelaid'] [u'locust', u'spray', u'farmer', u'urg'] [u'love', u'put', u'bull'] [u'cigarett', u'fail', u'cancer', u'risk'] [u'loyalti', u'undivid', u'perugia', u'look'] [u'magic', u'million', u'sale', u'reach', u'magic', u'number'] [u'crush', u'accid', u'remain', u'hospit'] [u'paddl', u'pedal', u'rais', u'cancer', u'awar'] [u'market', u'watch', u'dollar', u'dive'] [u'masuoka', u'give', u'dakar'] [u'million', u'dollar', u'deal', u'navi', u'boost', u'vic'] [u'mix', u'respons', u'like', u'mussel', u'plan'] [u'molik', u'injuri', u'kill', u'hopman', u'dream'] [u'molik', u'final'] [u'moya', u'surviv', u'scare', u'indian', u'open'] [u'renew', u'call', u'causeway', u'revamp'] [u'nat', u'want', u'region', u'plan', u'detail'] [u'neilsen', u'lead', u'king'] [u'bushfir', u'detect', u'tower', u'unveil'] [u'chopper', u'crash', u'iraq'] [u'soldier', u'dead', u'militari', u'helicopt', u'shoot'] [u'place', u'mallett', u'south', u'africa', u'shortlist'] [u'north', u'west', u'seek', u'reticul'] [u'drug', u'accus', u'allow', u'interst', u'treatment'] [u'compani', u'share', u'resum', u'trade'] [u'opposit', u'seek', u'save', u'sydney', u'fig'] [u'pakistan', u'launch', u'attack', u'hunt', u'qaeda'] [u'palestinian', u'nation', u'state', u'quri'] [u'parti', u'push', u'promot', u'polici'] [u'plan', u'afoot', u'region', u'port', u'expans'] [u'court', u'halt', u'swear'] [u'polic', u'interview', u'stab'] [u'polic', u'investig', u'geelong', u'stab'] [u'polic', u'probe', u'drive', u'shoot', u'outsid', u'recept'] [u'polic', u'seek', u'help', u'solv', u'explos', u'incid'] [u'polic', u'warn', u'smoker', u'cigarett', u'butt', u'penalti'] [u'polic', u'road', u'crash', u'victim'] [u'polish', u'diver', u'probe', u'give', u'fish', u'champagn'] [u'politician', u'argu', u'univers', u'place'] [u'pont', u'clear', u'play'] [u'poop', u'penguin', u'faecal', u'attract'] [u'health', u'dept', u'accus', u'bulli'] [u'live', u'export', u'industri', u'hail', u'chang', u'wari'] [u'queen', u'mari', u'get', u'royal', u'bless'] [u'rafter', u'lose', u'comeback', u'match'] [u'rain', u'fall', u'central', u'predict'] [u'reinforc', u'tackl', u'sydney'] [u'research', u'hope', u'breed', u'dead', u'stinger'] [u'return', u'dutch', u'master', u'brighten', u'pictur'] [u'roddick', u'conqueror', u'beat', u'henman', u'go'] [u'roger', u'langer', u'guid', u'victori'] [u'rusedski', u'return', u'posit', u'drug', u'test'] [u'rusedski', u'play', u'posit', u'drug', u'test'] [u'farmer', u'group', u'disappoint', u'live', u'export'] [u'govt', u'hire', u'independ', u'expert', u'overse', u'moomba'] [u'scientist', u'warn', u'potenti', u'nanotech', u'health', u'risk'] [u'scrap', u'metal', u'yard', u'ablaz', u'melbourn'] [u'shire', u'wari', u'protocol', u'chang'] [u'korea', u'fear', u'attack', u'south', u'east', u'asian', u'interest'] [u'steril', u'fruit', u'fli', u'erad', u'problem'] [u'storm', u'power', u'central', u'resid'] [u'strachan', u'quit', u'southampton'] [u'sudanes', u'celebr', u'wealth', u'share', u'deal'] [u'surfboat', u'marathon', u'continu', u'despit', u'hypothermia'] [u'tafe', u'student', u'angri', u'teacher', u'action', u'cut'] [u'tafe', u'teacher', u'stand', u'firm', u'plan', u'industri'] [u'tait', u'spree', u'lead', u'redback', u'victori'] [u'tiger', u'collaps', u'adelaid'] [u'tough', u'time', u'predict', u'lamb', u'industri'] [u'doctor', u'beatl', u'extend', u'peac'] [u'union', u'negoti', u'nurs', u'cut'] [u'cargo', u'plane', u'missil', u'baghdad', u'land'] [u'exagger', u'iraqi', u'weapon', u'threat', u'report'] [u'hold', u'firm', u'north', u'korea'] [u'keep', u'silicon', u'breast', u'implant', u'sale'] [u'obes', u'epidem', u'mean', u'disabl', u'report'] [u'play', u'withdraw', u'iraq', u'weapon', u'team'] [u'soldier', u'sweep', u'saddam', u'stronghold'] [u'vampir', u'robber', u'plan', u'bite', u'dust'] [u'vandal', u'destroy', u'endang', u'bird', u'breed', u'site'] [u'vesta', u'seek', u'renew', u'energi', u'scheme', u'extens'] [u'galleri', u'exhibit', u'space', u'reopen'] [u'victorian', u'ambul', u'offic', u'mourn'] [u'busi', u'leader', u'pleas', u'broom', u'sydney'] [u'whitak', u'name', u'captain', u'waratah'] [u'winter', u'ill', u'caus', u'sar', u'scar'] [u'winter', u'live', u'export', u'halt', u'destroy', u'industri'] [u'wishart', u'seri'] [u'wollongong', u'polic', u'raid', u'cannabi', u'plantat'] [u'woman', u'face', u'bigami', u'charg', u'victoria'] [u'world', u'fall', u'short', u'child', u'health', u'target'] [u'yeat', u'studi', u'urg', u'toler', u'brilliant'] [u'yeppoon', u'griev', u'loss', u'mother', u'children'] [u'look', u'declar', u'free', u'grape'] [u'transfer', u'repeat', u'teen', u'offend'] [u'annan', u'seek', u'peac', u'keeper', u'ivori', u'coast'] [u'arnberg', u'moss', u'steer', u'vic', u'lunch'] [u'asylum', u'seeker', u'launch', u'hunger', u'strike', u'indonesia'] [u'kill', u'philippin', u'attack'] [u'aussi', u'dive', u'champ', u'hobart'] [u'australian', u'team', u'enrout', u'niue'] [u'reconstruct', u'cost', u'billion'] [u'barca', u'give', u'ahead', u'david', u'talk'] [u'suspend', u'talkshow', u'anti', u'arab', u'outburst'] [u'birdi', u'blitz', u'earn', u'singh', u'halfway', u'lead'] [u'black', u'philippin', u'nazaren', u'process'] [u'blake', u'davenport', u'lead', u'hopman', u'glori'] [u'blue', u'dismiss', u'elliott'] [u'blue', u'lose', u'late', u'wicket', u'newcastl'] [u'brisban', u'bullet'] [u'britain', u'back', u'hong', u'kong', u'peopl', u'democraci', u'move'] [u'british', u'fish', u'chip', u'poisson', u'frite'] [u'british', u'polic', u'doubt', u'french', u'diana', u'evid', u'report'] [u'british', u'worker', u'tell', u'chat'] [u'briton', u'plead', u'guilti', u'terror', u'charg'] [u'briton', u'hold', u'guantanamo', u'see', u'home', u'soon'] [u'bush', u'advisor', u'defend', u'iraq', u'weapon', u'claim'] [u'bushfir', u'spark', u'call', u'unexplod', u'ordnanc'] [u'bush', u'look', u'mar', u'elect', u'year'] [u'asic', u'regul', u'properti', u'invest'] [u'canada', u'test', u'diseas'] [u'bear', u'coupl', u'reunit', u'berlin'] [u'celebr', u'alic', u'darwin', u'train', u'debut'] [u'chappel', u'warn', u'tearaway'] [u'checkpoint', u'charli', u'museum', u'founder', u'dead'] [u'claim', u'saddam', u'tri', u'month'] [u'commiss', u'order', u'ship', u'worker', u'strike'] [u'communiti', u'benefit', u'solar', u'power', u'plant'] [u'court', u'bar', u'polic', u'interfer', u'zimbabwean'] [u'crash', u'plan', u'fuselag', u'probabl', u'intact', u'egyptian'] [u'crew', u'battl', u'wwii', u'ammo', u'dump'] [u'cricket', u'legend', u'call', u'tasmania', u'home'] [u'croc', u'expert', u'want', u'govt', u'approv', u'safari', u'hunt'] [u'csiro', u'job', u'mat', u'scandal'] [u'cyprus', u'armi', u'embarrass', u'plan', u'dump'] [u'daniilidou', u'success', u'defend', u'auckland', u'titl'] [u'niro', u'scorses', u'write', u'joint', u'memoir'] [u'develop', u'lodg', u'coomera', u'master', u'plan'] [u'doctor', u'sue', u'harrison', u'famili', u'quit', u'hospit'] [u'dope', u'chief', u'cast', u'doubt', u'rusedski', u'test'] [u'drop', u'nasdaq', u'head', u'sixth', u'gain'] [u'factori', u'damag', u'explos', u'northern', u'tasmania'] [u'fals', u'lotteri', u'claimant', u'charg', u'crime'] [u'feder', u'hotel', u'expand', u'tasmanian', u'branch'] [u'figo', u'fire', u'long', u'time', u'agent'] [u'crew', u'battl', u'contain', u'sydney', u'blaze'] [u'firefight', u'prepar', u'battl', u'blaze'] [u'kill', u'philippin', u'communist', u'attack'] [u'flash', u'flood', u'kill', u'iran'] [u'flash', u'flood', u'kill', u'iran'] [u'fleme', u'seal', u'kiwi'] [u'south', u'vietnames', u'premier', u'head', u'home'] [u'offici', u'say', u'bush', u'blind'] [u'french', u'journalist', u'suspend', u'jail', u'term'] [u'french', u'journalist', u'sentenc', u'month', u'jail'] [u'fund', u'seek', u'indigen', u'juvenil', u'program'] [u'fund', u'technic', u'hurdl', u'rais', u'bush', u'space'] [u'seal', u'return', u'home'] [u'gayl', u'hit', u'whirlwind', u'windi', u'stutter'] [u'good', u'weather', u'eas', u'shortag'] [u'govt', u'criticis', u'inact', u'hick'] [u'govt', u'deni', u'hurt', u'battler'] [u'grenad', u'throw', u'coalit', u'forc', u'iraq'] [u'henman', u'blow', u'break', u'lead', u'exit', u'qatar'] [u'holiday', u'home', u'contribut', u'hous', u'problem'] [u'homeswest', u'see', u'need', u'water', u'fund'] [u'hrbati', u'llodra', u'book', u'adelaid', u'final', u'showdown'] [u'scapegoat', u'say', u'angri', u'rusedski'] [u'india', u'seamer', u'bhandari'] [u'indonesian', u'muslim', u'group', u'urg', u'franc', u'revok'] [u'iran', u'eas', u'internet', u'access', u'restrict'] [u'judg', u'order', u'enron', u'trial', u'ahead'] [u'karzai', u'say', u'afghan', u'presidenti'] [u'latham', u'welcom', u'railway', u'open'] [u'lehmann', u'phillip', u'charg'] [u'liverpool', u'dream', u'come', u'true', u'jone'] [u'malaysia', u'thailand', u'step', u'border', u'patrol'] [u'collaps', u'abseil'] [u'die', u'crash', u'power', u'pole'] [u'kill', u'collis'] [u'man', u'licenc', u'suspend', u'care', u'centr', u'crash'] [u'marijuana', u'buzz', u'link', u'runner', u'high', u'studi'] [u'masuoka', u'win', u'ninth', u'stage', u'mali', u'leg', u'cancel'] [u'merri', u'christma', u'robberi', u'warn', u'shotgun'] [u'michael', u'jackson', u'leas', u'neverland', u'ranch'] [u'miller', u'sign', u'manchest', u'unit'] [u'motogp', u'start', u'grid', u'trim'] [u'mountain', u'king', u'focus', u'seventh', u'crown'] [u'moya', u'paradorn', u'edg', u'closer', u'indian', u'final'] [u'govern', u'group', u'discuss', u'report'] [u'special', u'favour', u'diamond'] [u'health', u'issu', u'measl', u'warn'] [u'ask', u'commonwealth', u'croc', u'hunt', u'approv'] [u'korea', u'show', u'nuclear', u'deterr', u'forc'] [u'mar'] [u'oust', u'georgian', u'presid', u'bank', u'account'] [u'owen', u'start', u'villa'] [u'parmalat', u'investig', u'raid', u'bank', u'america'] [u'persist', u'wind', u'sydney', u'bushfir'] [u'player', u'sale', u'wont', u'affect', u'team', u'parma', u'coach'] [u'poland', u'midnight', u'sale', u'real', u'riot'] [u'polic', u'diver', u'recov', u'bodi', u'lake'] [u'polic', u'investig', u'molotov', u'cocktail', u'attack'] [u'polic', u'investig', u'molotov', u'cocktail', u'explos'] [u'polic', u'launch', u'probe', u'babi', u'church'] [u'polic', u'question', u'pair', u'shoot'] [u'polic', u'suspect', u'bomb', u'sydney', u'explos'] [u'pont', u'prais', u'australia', u'field'] [u'press', u'right', u'group', u'call', u'releas', u'iranian'] [u'qanta', u'enforc', u'toilet', u'train'] [u'govt', u'quiet', u'health', u'furor'] [u'polic', u'probe', u'suspici', u'death'] [u'polic', u'search', u'hous', u'murder', u'investig'] [u'razzaq', u'rule', u'pakistan', u'post'] [u'rebel', u'philippin', u'power', u'plant'] [u'card', u'repriev', u'diouf'] [u'cross', u'push', u'saddam', u'visit'] [u'remot', u'indigen', u'communiti', u'gain', u'health', u'fund'] [u'ronaldo', u'dismiss', u'rumour', u'london', u'trip'] [u'russia', u'hunt', u'leak', u'space', u'station'] [u'saddam', u'prison', u'pentagon'] [u'saddam', u'status', u'legal', u'accept', u'icrc'] [u'salmon', u'farmer', u'face', u'upstream', u'battl', u'cancer'] [u'saudi', u'indict', u'support', u'terror'] [u'serena', u'australian', u'open'] [u'spain', u'shock', u'kookaburra', u'malaysia'] [u'spirit', u'test', u'mar', u'temperatur'] [u'strong', u'interst', u'tourism', u'predict', u'continu'] [u'sudden', u'ill', u'kill', u'muslim', u'brotherhood', u'leader'] [u'sugiyama', u'win', u'gold', u'coast', u'event'] [u'swimmer', u'world', u'biggest', u'organis', u'ocean'] [u'swiss', u'arrest', u'riyadh', u'bomb'] [u'sydney', u'blaze', u'contain'] [u'sydney', u'bushfir', u'control'] [u'sydney', u'polic', u'question', u'explos'] [u'syria', u'appeal', u'push', u'israel', u'peac', u'talk'] [u'centr', u'win', u'broadband', u'fund'] [u'terror', u'threat', u'level', u'high'] [u'tramway', u'backer', u'confid', u'heritag', u'demand'] [u'tripl', u'treat', u'newburi', u'dive', u'championship'] [u'turkey', u'capit', u'punish'] [u'favour'] [u'figur', u'shock', u'economist'] [u'lower', u'terror', u'alert', u'warn', u'risk', u'remain', u'high'] [u'militari', u'kill', u'iraqi', u'policemen'] [u'navi', u'pilot', u'remain', u'return', u'vietnam'] [u'team', u'visit', u'north', u'korean', u'nuclear', u'plant'] [u'kill', u'anim', u'probe'] [u'venus', u'ferrero', u'smile', u'hong', u'kong', u'win'] [u'verstappen', u'hope', u'jordan', u'deal'] [u'volcano', u'erupt', u'french', u'indian', u'ocean', u'island'] [u'wenger', u'ask', u'kanu', u'extens'] [u'west', u'african', u'summit', u'begin', u'niger'] [u'west', u'perth', u'land', u'sale', u'spotlight'] [u'launch', u'second', u'sar', u'investig'] [u'woman', u'get', u'chemic', u'burn', u'sit', u'toilet'] [u'woman', u'offer', u'doggi', u'danc', u'lesson'] [u'woodford', u'sympathi', u'embattl', u'rusedski'] [u'zimbabw', u'opposit', u'leader', u'remand', u'treason'] [u'zimbabw', u'daili', u'news', u'fail', u'publish'] [u'kill', u'injur', u'bangladesh', u'crash'] [u'hurt', u'algerian', u'earthquak'] [u'school', u'erect', u'fenc', u'stop', u'vandal'] [u'unveil', u'emerg', u'centr'] [u'albania', u'mourn', u'migrant', u'death'] [u'releas', u'elect', u'manifesto'] [u'applebi', u'regain', u'lead', u'hawaii'] [u'asbesto', u'fear', u'delay', u'niue', u'clean'] [u'dead', u'albanian', u'immigr', u'boat'] [u'aussi', u'wheeler', u'hobart'] [u'aust', u'plan', u'biggest', u'anti', u'terror', u'oper'] [u'avalanch', u'kill', u'snowboard', u'franc'] [u'barca', u'close', u'seal', u'david', u'deal'] [u'blaze', u'close', u'arthur', u'seat', u'chairlift'] [u'british', u'iraq', u'leader', u'quit', u'armi', u'report'] [u'british', u'tourist', u'die', u'blue', u'mountain', u'trek'] [u'briton', u'doubt', u'blair', u'name', u'weapon', u'expert'] [u'build', u'job', u'decemb', u'period'] [u'bush', u'launch', u'elect', u'year', u'drive'] [u'bush', u'want', u'iraqi', u'invas', u'start'] [u'cairn', u'face', u'court', u'incid'] [u'canberra', u'classic', u'lose', u'seed'] [u'cancer', u'council', u'meet', u'begin'] [u'celtic', u'join', u'ranger', u'fourth', u'round'] [u'china', u'warn', u'meddl', u'hong', u'kong'] [u'circus', u'pay', u'homag', u'wire', u'wizard'] [u'cleari', u'spree', u'doom', u'tiger', u'adelaid'] [u'court', u'award', u'smoker', u'widow', u'million'] [u'crew', u'battl', u'sydney', u'bushfir'] [u'critic', u'return', u'king', u'best', u'pictur'] [u'cruis', u'draw', u'religi', u'inspir', u'latest'] [u'csiro', u'deni', u'boy', u'claim'] [u'cuba', u'crack', u'internet'] [u'cyclist', u'kill', u'collis'] [u'dane', u'claim', u'iraqi', u'blister'] [u'danish', u'troop', u'test', u'iraq', u'shell', u'chemic'] [u'darwin', u'resid', u'greatest', u'person', u'happi'] [u'earli', u'morn', u'blast', u'jolt', u'baghdad'] [u'indian', u'kashmir', u'insurg'] [u'ella', u'appoint', u'italian', u'assist', u'coach'] [u'eriksson', u'agent', u'dismiss', u'chelsea', u'link'] [u'arrest', u'demand', u'flight', u'aust'] [u'ferrari', u'launch'] [u'crew', u'control', u'arthur', u'seat', u'blaze'] [u'kill', u'iraqi', u'job', u'protest'] [u'foreign', u'doctor', u'prop', u'public', u'hospit'] [u'envoy', u'say', u'troop', u'need'] [u'forum', u'human', u'impact', u'environ', u'open'] [u'dead', u'indonesian', u'cafe', u'blast'] [u'fulham', u'boss', u'hail', u'saha'] [u'german', u'breweri', u'claim', u'anti', u'age', u'beer'] [u'german', u'defenc', u'minist', u'shake', u'tail', u'feather'] [u'girl', u'hospit', u'fall', u'amus', u'park'] [u'glori', u'olymp'] [u'goodwin', u'lift', u'warrior', u'waca', u'swelter'] [u'govt', u'plan', u'school', u'exercis', u'scheme'] [u'govt', u'say', u'act', u'doctor', u'shortag'] [u'guantanamo', u'detent', u'slam'] [u'gunner', u'shoot', u'thrash', u'boro'] [u'haa', u'withdraw', u'australian', u'open'] [u'hamstr', u'injuri', u'keep', u'johnson', u'sidelin'] [u'hogg', u'chanc', u'zimbabw', u'clash'] [u'hope', u'find', u'jumper', u'aliv', u'fade'] [u'hospit', u'over', u'reliant', u'foreign', u'doctor'] [u'hrbati', u'take', u'adelaid', u'titl'] [u'hundr', u'gatecrash', u'riot', u'sunshin', u'coast'] [u'indonesian', u'polic', u'investig', u'dead', u'cafe', u'blast'] [u'inquiri', u'iraq', u'protest', u'death', u'begin'] [u'insurg', u'probabl', u'down', u'helicopt', u'fallujah'] [u'investig', u'quiz', u'parmalat', u'subsidiari', u'head'] [u'iran', u'reformist', u'bar', u'poll'] [u'iraqi', u'govern', u'council', u'annoy', u'saddam'] [u'iraqi', u'jobless', u'protest', u'shoot', u'dead', u'report'] [u'iraqi', u'kill', u'clash', u'coalit', u'forc'] [u'iraq', u'unveil', u'post', u'saddam', u'stamp'] [u'isra', u'star', u'lash', u'babi', u'keegan'] [u'israel', u'seek', u'goodwil', u'reopen'] [u'italian', u'deputi', u'hit', u'berlusconi', u'rhetor'] [u'japanes', u'skydiv', u'kill', u'parachut'] [u'john', u'consid', u'code', u'switch', u'report'] [u'karaok', u'bomb', u'kill'] [u'katich', u'thorn', u'ton', u'blue'] [u'keiko', u'whale', u'pose', u'environment', u'threat'] [u'king', u'carlo', u'thai', u'star', u'clash', u'indian', u'final'] [u'kingz', u'draw', u'snap', u'lose', u'streak'] [u'kookaburra', u'draw', u'south', u'korea'] [u'leader', u'norwich', u'stun', u'bradford'] [u'mali', u'say', u'territori', u'safe', u'despit', u'cancel'] [u'charg', u'sydney', u'explos'] [u'drown', u'fall', u'boat'] [u'escap', u'injuri', u'fall', u'asleep'] [u'front', u'court', u'sydney', u'bomb'] [u'injur', u'quak', u'die'] [u'kill', u'accid'] [u'court', u'charg', u'teen', u'murder'] [u'mar', u'rover', u'get', u'feet'] [u'mbeki', u'launch', u'elect', u'campaign'] [u'morkel', u'brother', u'defi', u'west', u'indi'] [u'near', u'iran', u'poll', u'hope', u'bar', u'report'] [u'airspac', u'incid', u'worri', u'control'] [u'suspect', u'sar', u'case', u'southern', u'china'] [u'zealand', u'consid', u'castrat', u'fiend'] [u'kill', u'afghan', u'clash'] [u'invit', u'latham', u'rail', u'open'] [u'plan', u'indigen', u'croc', u'safari', u'job'] [u'penniless', u'parma', u'rich', u'spirit'] [u'philippin', u'face', u'water', u'crisi', u'insuffici'] [u'poet', u'nissim', u'ezekiel', u'die'] [u'polic', u'arrest', u'worker', u'china', u'disast'] [u'polic', u'probe', u'alleg', u'fraud'] [u'polic', u'probe', u'biki', u'violenc', u'adelaid', u'nightclub'] [u'polic', u'search', u'fear', u'drown'] [u'polic', u'suspect', u'butler', u'saudi', u'royal', u'theft'] [u'polit', u'crisi', u'loom', u'iran'] [u'power', u'blackout', u'leav', u'hundr', u'launceston'] [u'pratt', u'elimin', u'sydney'] [u'protea', u'unchang', u'squad'] [u'qcoss', u'fear', u'split', u'child', u'welfar', u'servic'] [u'polic', u'investig', u'road', u'accid', u'death'] [u'quak', u'fear', u'drive', u'afghan', u'home'] [u'plane', u'crash', u'team', u'await', u'black', u'box'] [u'right', u'group', u'denounc', u'handl', u'iraqi', u'compo'] [u'ronaldo', u'fin', u'english', u'jaunt'] [u'royal', u'coupl', u'releas', u'babi', u'media'] [u'scientist', u'secret', u'mix', u'water'] [u'seed', u'court', u'disast', u'zealand'] [u'injuri', u'tremor', u'rattl', u'algeria', u'report'] [u'spanish', u'foreign', u'minist', u'tour', u'quak', u'iran'] [u'signal', u'beagl', u'mar', u'probe'] [u'striker', u'hold', u'olyroo', u'brisban'] [u'suspend', u'host', u'defend', u'anti', u'arab', u'comment'] [u'swiss', u'polic', u'rubber', u'bullet', u'dispers', u'davo'] [u'teenag', u'remain', u'hospitalis', u'cliff', u'fall'] [u'teenag', u'stay', u'awak', u'week', u'realiti'] [u'hold', u'mugab', u'plane', u'stori'] [u'kill', u'taiwan', u'accid'] [u'three', u'charm', u'gram', u'director'] [u'tiger', u'lose', u'lunch'] [u'rescu', u'cano', u'capsiz'] [u'injur', u'machet', u'attack'] [u'kill', u'basra'] [u'separ', u'crash'] [u'men', u'bodi', u'separ', u'incid'] [u'polic', u'arrest', u'suicid', u'bomb', u'plan', u'report'] [u'commemor', u'struggl', u'slaveri'] [u'claim', u'russia', u'sell', u'arm', u'iraq'] [u'commut', u'divert', u'threat'] [u'firm', u'win', u'iraqi', u'media', u'contract'] [u'militari', u'defend', u'shoot', u'iraqi', u'policemen'] [u'play', u'blister', u'agent', u'discoveri'] [u'want', u'diplomat', u'solut', u'north', u'korea'] [u'valencia', u'real', u'slip'] [u'venezuela', u'chavez', u'hit', u'summit'] [u'victoria', u'widen', u'koala', u'contracept', u'plan'] [u'viduka', u'return', u'home', u'leed', u'woe', u'continu'] [u'warrior', u'lunch'] [u'webber', u'test', u'jaguar'] [u'wildcard', u'escud', u'lift', u'qatar', u'open', u'titl'] [u'william', u'star', u'zimbabw', u'rout'] [u'winner', u'pleas', u'hobart', u'marathon', u'support'] [u'woman', u'kill', u'accid'] [u'zimbabw', u'newsmen', u'arrest', u'mugab', u'plane', u'report'] [u'zimbabw', u'polic', u'arrest', u'mugab', u'alli', u'fraud', u'case'] [u'afghanistan', u'happi', u'guantanamo', u'detent'] [u'agricultur', u'giant', u'head', u'offic', u'brisban'] [u'regul', u'investig', u'incid', u'armidal'] [u'albania', u'arrest', u'polic', u'chief', u'peopl', u'smuggl'] [u'alleg', u'sydney', u'bomber', u'bail'] [u'want', u'rethink', u'import', u'doctor'] [u'analyst', u'downplay', u'drop'] [u'anderson', u'admit', u'incid', u'inevit'] [u'angler', u'die', u'lake', u'eppalock', u'boat', u'mishap'] [u'applebi', u'surviv', u'singh', u'challeng', u'million'] [u'astarloza', u'jet', u'tour', u'defenc'] [u'atsic', u'bodi', u'push', u'post', u'jail', u'program'] [u'australia', u'increas', u'nauru'] [u'aust', u'share', u'stand', u'firm', u'despit', u'job', u'shock'] [u'ballarat', u'firm', u'quiz', u'local', u'economi'] [u'bank', u'sector', u'boost'] [u'bendigo', u'campus', u'consid', u'region', u'status'] [u'fish', u'make', u'controversi', u'offic', u'splash'] [u'blair', u'say', u'resign', u'lie'] [u'blair', u'suggest', u'saddam'] [u'blast', u'rock', u'barraba', u'hotel'] [u'bodi', u'meet', u'child', u'safeti'] [u'bomb', u'destroy', u'build', u'corsica'] [u'bomb', u'prompt', u'fertilis', u'sale', u'restrict'] [u'boundari', u'chang', u'boost', u'tourism', u'fund'] [u'accid', u'kill', u'china'] [u'bushrang', u'fight', u'draw'] [u'cabl', u'beach', u'swimmer', u'warn', u'croc', u'sight'] [u'review', u'stamp', u'duti', u'concess'] [u'water', u'pip', u'chang', u'boost', u'river', u'health'] [u'camplin', u'win', u'track', u'canada'] [u'crash', u'injur', u'remain', u'hospit'] [u'china', u'claim', u'possibl', u'sar', u'case'] [u'china', u'sign', u'nuclear', u'anti', u'terror', u'deal'] [u'climat', u'chang', u'blame', u'fern', u'demis'] [u'clinton', u'ancient', u'british', u'militari', u'honour'] [u'communiti', u'servic', u'look', u'bowral', u'babi'] [u'coria', u'auckland', u'earli', u'jitter'] [u'cyclon', u'render', u'niue', u'unviabl'] [u'cyclon', u'rais', u'question', u'niue', u'nationhood'] [u'detain', u'philippin', u'leader', u'estrada', u'plan'] [u'diamond', u'olymp', u'hop', u'tatter'] [u'dollar', u'surg', u'cost', u'industri', u'studi'] [u'dominikov', u'knock', u'canberra'] [u'drought', u'bring', u'dire', u'predict', u'young', u'cattl'] [u'egypt', u'stop', u'arab', u'minist', u'bring', u'gift', u'gazell'] [u'claim', u'hit', u'sniper'] [u'elder', u'die', u'train', u'accid'] [u'elvi', u'leav', u'build', u'live'] [u'england', u'skipper', u'johnson', u'quit', u'intern'] [u'espanyol', u'murcia'] [u'european', u'summer', u'hotter', u'expert', u'predict'] [u'expect', u'health', u'fund', u'hike', u'abbott', u'warn'] [u'export', u'ponder', u'impact', u'live', u'sheep', u'idea'] [u'treasuri', u'chief', u'evid', u'iraqi', u'wmds'] [u'fan', u'farewel', u'hong', u'kong', u'star', u'anita'] [u'farmer', u'urg', u'neighbour', u'weed', u'spray'] [u'farmer', u'urg', u'seek', u'drought', u'entitl'] [u'fertilis', u'maker', u'deni', u'help', u'plan', u'bali'] [u'fiji', u'govt', u'coup', u'watch', u'report'] [u'financ', u'firm', u'avco', u'fin', u'near', u'credit'] [u'french', u'lawyer', u'prepar', u'court', u'case'] [u'friend', u'pirat', u'viewer', u'poll'] [u'germani', u'buy', u'million', u'anti', u'radiat', u'pill'] [u'girl', u'critic', u'condit', u'fairground'] [u'govt', u'deleg', u'middl', u'east', u'export', u'mission'] [u'govt', u'deleg', u'nauru', u'inspect'] [u'govt', u'ignor', u'global', u'warm', u'green'] [u'govt', u'denial', u'greenhous', u'emiss', u'carr'] [u'govt', u'scrap', u'greenhous', u'trade', u'scheme'] [u'govt', u'encourag', u'disabl', u'work'] [u'guantanamo', u'briton', u'fate', u'resolv'] [u'hewitt', u'reid', u'rusedski', u'sydney'] [u'homeless', u'attack', u'suprem', u'court', u'judg'] [u'hussey', u'lead', u'bushrang', u'thrill'] [u'injur', u'caldecott', u'unsur', u'pari', u'dakar', u'ralli'] [u'injur', u'hind', u'south', u'africa', u'tour'] [u'inquiri', u'look', u'shire', u'expans'] [u'strong', u'albani', u'tourism', u'plan'] [u'iraqi', u'protest', u'clash', u'british', u'troop'] [u'isra', u'cabinet', u'member', u'attend', u'mass', u'ralli'] [u'israel', u'seek', u'peac', u'talk', u'syria'] [u'record', u'thousand', u'kiss', u'chile'] [u'king', u'carlo', u'end', u'paradorn', u'reign', u'indian', u'open'] [u'langer', u'declar', u'perth'] [u'lashko', u'cours', u'olymp'] [u'latham', u'offer', u'simplifi', u'small', u'busi'] [u'latham', u'attend', u'rail', u'open', u'amid', u'controversi'] [u'lehmann', u'fail', u'redback', u'chase'] [u'local', u'work', u'geraldton', u'hospit', u'revamp'] [u'accus', u'screwdriv', u'attack', u'wife'] [u'arrest', u'mildura', u'woman', u'death'] [u'masuoka', u'readi', u'final', u'dakar', u'push'] [u'mbeki', u'work', u'health', u'scare'] [u'miner', u'upbeat', u'walhalla', u'gold', u'drill'] [u'moomba', u'wont', u'forc', u'domest', u'price', u'rise', u'conlon'] [u'urg', u'super', u'chang', u'overcom', u'hous', u'woe'] [u'david', u'blaze', u'control'] [u'nasa', u'plan', u'test', u'drive', u'mar', u'manoeuvr'] [u'nato', u'forc', u'raid', u'crime', u'suspect', u'hous'] [u'bulk', u'bill', u'scheme', u'kick'] [u'visa', u'attract', u'immigr', u'region'] [u'ration', u'busi', u'energi', u'minist'] [u'appoint', u'australian', u'museum', u'head'] [u'health', u'minist', u'hail', u'nurs', u'deal'] [u'feel', u'pinch', u'doctor', u'cross', u'tasman'] [u'pollut', u'hit', u'french', u'atlant', u'beach'] [u'palestinian', u'reject', u'term', u'financi'] [u'perren', u'love', u'lead', u'bull', u'chase'] [u'perth', u'heatwav', u'predict', u'eas', u'sunday'] [u'philippin', u'leav', u'peopl', u'homeless'] [u'pilot', u'incid', u'exagger'] [u'calm', u'ahead', u'parliamentari', u'sit'] [u'polic', u'hunt', u'wodonga', u'attack'] [u'polic', u'investig', u'cyclist', u'freeway', u'death'] [u'polic', u'bodi', u'sport'] [u'polic', u'probe', u'south', u'tamworth', u'attack'] [u'polic', u'question', u'sport', u'club', u'break'] [u'port', u'export', u'closur', u'plan', u'need', u'think'] [u'protest', u'promis', u'plan', u'park', u'closur'] [u'public', u'nurs', u'look', u'wage', u'rise'] [u'budget', u'surplus', u'fund', u'child', u'protect'] [u'oppn', u'highlight', u'sunshin', u'coast', u'hous', u'concern'] [u'rain', u'western', u'queensland', u'dam'] [u'receiv', u'petrol', u'compani', u'asset'] [u'reformist', u'fight', u'elect', u'iran'] [u'resort', u'owner', u'plan', u'major', u'chang'] [u'riot', u'spark', u'secur', u'revamp', u'juvenil', u'detent'] [u'roma', u'maintain', u'lead', u'milan', u'juve', u'pace'] [u'roma', u'withstand', u'drought', u'pressur'] [u'aim', u'shield', u'student', u'inappropri'] [u'crisi', u'highlight', u'pipelin', u'need'] [u'saudi', u'arabia', u'launch', u'satellit', u'news', u'channel'] [u'school', u'year', u'saudi'] [u'search', u'black', u'continu'] [u'second', u'dairi', u'herd', u'destroy'] [u'secret', u'document', u'link', u'vaccin', u'gulf'] [u'secur', u'offic', u'fin', u'train', u'assault'] [u'servic', u'farewel', u'victim'] [u'seymour', u'hospit', u'close', u'obstetr', u'servic'] [u'shark', u'attack', u'diver', u'coast'] [u'sheedi', u'leav', u'hospit', u'perth', u'beach', u'collaps'] [u'ship', u'servic', u'concern', u'remain', u'king', u'island'] [u'shire', u'lament', u'power', u'grid', u'woe'] [u'cliff', u'richard', u'plant', u'rise', u'honour'] [u'site', u'work', u'start', u'bathurst', u'orang', u'hospit'] [u'southern', u'queensland', u'record', u'good', u'soak'] [u'spotlight', u'turn', u'haven'] [u'stop', u'work', u'meet', u'disrupt', u'adelaid', u'bus'] [u'suspect', u'charg', u'murder', u'swedish', u'minist'] [u'swazi', u'king', u'seek', u'fund', u'palac'] [u'sydney', u'ferri', u'order', u'ticket', u'problem'] [u'arrest', u'pakistan', u'assassin'] [u'thai', u'girl', u'grant', u'bridg', u'visa', u'extens'] [u'thousand', u'recruit', u'desert', u'afghan', u'armi'] [u'thousand', u'ralli', u'support', u'isra', u'settler'] [u'england', u'highway', u'crash'] [u'tiger', u'control', u'wicket', u'spree'] [u'toll', u'flash', u'flood', u'iran', u'rise'] [u'seed', u'daniilidou', u'retir', u'hurt', u'hobart'] [u'shiit', u'cleric', u'say', u'plan', u'iraq'] [u'torbay', u'kelli', u'consid', u'shire', u'merger'] [u'journalist', u'arrest', u'nepal'] [u'child', u'porn', u'rocket', u'paedophil'] [u'unit', u'newcastl', u'draw', u'chelsea'] [u'report', u'admit', u'decept', u'probe'] [u'troop', u'recov', u'larg', u'weapon', u'haul', u'iraq'] [u'govern', u'criticis', u'school', u'campaign'] [u'wallabi', u'maintain', u'coff', u'harbour', u'base'] [u'word', u'erupt', u'mayor', u'independ'] [u'watchdog', u'warn', u'litter', u'bug'] [u'wildcat', u'upset'] [u'william', u'gun', u'test', u'place'] [u'winter', u'ill', u'kill', u'afghan', u'children'] [u'woman', u'kill', u'collis', u'devonport'] [u'woman', u'kill', u'injur', u'crash'] [u'work', u'track', u'age', u'care', u'facil'] [u'seek', u'elimin', u'carp', u'waterway'] [u'adecco', u'share', u'slide', u'account', u'issu'] [u'afghan', u'state', u'lift', u'local', u'women', u'singer'] [u'agassi', u'back', u'dope', u'test', u'regim'] [u'shall', u'weari'] [u'agricultur', u'compani', u'announc', u'chang'] [u'alzheim', u'research', u'teach', u'drug', u'trick'] [u'american', u'charg', u'airport', u'drug', u'seizur'] [u'apex', u'support', u'probe', u'assault', u'claim'] [u'arrest', u'zimbabwean', u'journalist', u'releas', u'bail'] [u'asic', u'probe', u'fund', u'manag'] [u'aussi', u'action', u'sydney'] [u'australia', u'buy', u'star', u'war'] [u'australian', u'dollar', u'surg', u'high'] [u'aust', u'see', u'need', u'colour', u'code', u'passeng'] [u'barcelona', u'david', u'loan'] [u'bathurst', u'galleri', u'await', u'hill', u'work'] [u'beatti', u'opt', u'short', u'elect', u'campaign'] [u'beatti', u'tip', u'bloodbath', u'govt'] [u'beatti', u'announc', u'elect', u'date'] [u'billionair', u'back', u'anti', u'bush', u'campaign'] [u'bomb', u'kill', u'bangladesh', u'saint', u'tomb'] [u'bowen', u'enjoy', u'influx', u'chang', u'resid'] [u'british', u'airway', u'accept', u'arm', u'marshal'] [u'british', u'backpack', u'murder', u'case', u'resum'] [u'british', u'serial', u'killer', u'shipman', u'die', u'prison'] [u'british', u'veteran', u'gulf', u'sick', u'inquiri'] [u'bull', u'steal', u'inning', u'point'] [u'bull', u'surviv', u'morn', u'session'] [u'burger', u'boost', u'beef', u'demand', u'analyst'] [u'busi', u'group', u'welcom', u'region', u'migrant', u'plan'] [u'call', u'major', u'bass', u'highway', u'expenditur'] [u'capriati', u'latest', u'open', u'pull'] [u'cash', u'incent', u'wont', u'boost', u'bulk', u'bill'] [u'charg', u'lay', u'detent', u'centr', u'riot'] [u'chopper', u'rescu', u'worker', u'fend', u'shark'] [u'clijster', u'doubt', u'open', u'sydney', u'pull'] [u'coalit', u'aim', u'restor', u'balanc'] [u'coff', u'council', u'unhappi', u'land', u'claim'] [u'compromis', u'plan', u'flow', u'sewag', u'pipe', u'protest'] [u'concern', u'gippsland', u'road'] [u'council', u'back', u'migrant', u'visa', u'scheme'] [u'council', u'meet', u'plan', u'local', u'govt', u'merger'] [u'court', u'confirm', u'acquitt', u'indonesian', u'policeman'] [u'court', u'hear', u'confess', u'backpack', u'murder', u'case'] [u'cutback', u'matern', u'care', u'auburn', u'hospit'] [u'debt', u'ride', u'leed', u'talk', u'asset', u'sale'] [u'defenc', u'intellig', u'train', u'centr', u'open', u'door'] [u'defenc', u'reject', u'gulf', u'ill', u'alleg'] [u'defend', u'champion', u'kuerten', u'marathon'] [u'democrat', u'continu', u'campaign', u'banish', u'bartlett'] [u'doctor', u'hope', u'inspect', u'nauru', u'health'] [u'drake', u'collymor', u'secur', u'west', u'indi', u'victori'] [u'driver', u'caus', u'park', u'chao'] [u'bali', u'bomber', u'seek', u'presidenti', u'clemenc'] [u'european', u'central', u'bank', u'warn', u'brutal', u'euro', u'surg'] [u'famili', u'fan', u'ralli', u'round', u'jackson', u'child', u'abus', u'case'] [u'farmer', u'pump', u'gascoyn', u'river'] [u'spark', u'energi', u'woe', u'primari', u'industri'] [u'like', u'diseas', u'reach', u'mainland', u'tasmania'] [u'forestri', u'firm', u'question', u'powerlin', u'rout'] [u'champ', u'pierc', u'pull', u'australian', u'open'] [u'franc', u'open', u'defenc', u'germani', u'face'] [u'frasier', u'soon', u'longer', u'listen'] [u'ghost', u'ship', u'artifici', u'reef'] [u'gold', u'coast', u'custodi', u'sword', u'attack'] [u'gold', u'sell', u'sell', u'million'] [u'govt', u'accus', u'banana', u'bend', u'trade', u'deal'] [u'govt', u'ask', u'help', u'secur', u'stromlo', u'futur'] [u'govt', u'label', u'labor', u'airport', u'propos', u'farc'] [u'greyhound', u'trainer', u'face', u'anim', u'cruelti', u'charg'] [u'guccion', u'upset', u'ferrero', u'scud'] [u'health', u'dept', u'offer', u'fish', u'kill', u'assur'] [u'health', u'fund', u'defend', u'price', u'rise'] [u'holiday', u'go', u'poll'] [u'hospit', u'coal', u'briquett', u'shortag', u'prove', u'cost'] [u'hunter', u'winemak', u'lower', u'price', u'hard', u'swallow'] [u'husband', u'jail', u'assault'] [u'india', u'success', u'test', u'fire', u'missil'] [u'inland', u'driver', u'urg', u'check', u'local', u'condit'] [u'iraq', u'seek', u'australian', u'expertis', u'save', u'tigri'] [u'hear', u'silverwat', u'guard', u'disput'] [u'iron', u'give', u'mussel', u'strength', u'scientist'] [u'ironmen', u'advanc', u'final', u'round'] [u'itali', u'villag'] [u'japan', u'stock', u'australian', u'beef'] [u'job', u'servic', u'firm', u'industri'] [u'kenyan', u'grandad', u'join', u'primari', u'school'] [u'kingaroy', u'centenari', u'project', u'stall'] [u'give', u'condit', u'approv', u'marshal'] [u'kookaburra', u'edg', u'malaysia', u'close'] [u'kyli', u'battl', u'beyonc', u'aguilera', u'brit', u'award'] [u'labor', u'pledg', u'child', u'care', u'place'] [u'labor', u'promis', u'extra', u'place'] [u'labor', u'urg', u'govt', u'come', u'clean', u'nauru', u'health'] [u'lake', u'cargelligo', u'death', u'probe', u'near', u'finish'] [u'latham', u'criticis', u'health', u'fund', u'rise'] [u'latham', u'happi', u'wrong', u'railway', u'potenti'] [u'latham', u'second', u'sydney', u'airport', u'site'] [u'launceston', u'trader', u'worri', u'youth', u'behaviour'] [u'lord', u'ring', u'continu', u'offic', u'reign'] [u'magic', u'million', u'growth', u'sale'] [u'maher'] [u'appear', u'court', u'sydney', u'murder'] [u'charg', u'sydney', u'sniper', u'shoot'] [u'deni', u'steal', u'crystal'] [u'kill', u'collis'] [u'market', u'await', u'earn', u'season'] [u'mayor', u'shed', u'light', u'school', u'road', u'safeti'] [u'mcenro', u'admit', u'steroid'] [u'mcgee', u'mcewen', u'tip', u'tour', u'success'] [u'minist', u'probe', u'council', u'boss', u'departur'] [u'mix', u'respons', u'syria', u'israel', u'peac', u'talk'] [u'mean', u'money', u'indian', u'polic'] [u'moomba', u'blast', u'cost', u'onesteel', u'dear'] [u'mooney', u'await', u'plan', u'hospit', u'site'] [u'question', u'commonwealth', u'game', u'expenditur'] [u'multicultur', u'group', u'happi', u'migrant', u'plan'] [u'announc', u'drag', u'lower'] [u'suspend', u'worker', u'rogu', u'trade'] [u'bahrain', u'circuit', u'complet'] [u'councillor', u'northampton'] [u'visa', u'rais', u'terror', u'threat', u'refuge', u'group'] [u'nigeria', u'interrog', u'journalist', u'report'] [u'chang', u'plan', u'land'] [u'north', u'east', u'victorian', u'perform', u'cattlemen'] [u'council', u'fear', u'road', u'fund', u'scheme'] [u'govt', u'track', u'address', u'rail', u'secur'] [u'opposit', u'want', u'teacher', u'shortag'] [u'see', u'benefit', u'migrant', u'scheme'] [u'firm', u'accus', u'rip', u'motorist'] [u'spill', u'hit', u'whitsunday'] [u'opposit', u'undecid', u'croc', u'hunt'] [u'packag', u'contain', u'bullet', u'case', u'send'] [u'parmalat', u'administr', u'back', u'australian', u'branch'] [u'pasminco', u'worker', u'walk'] [u'patchi', u'rainfal', u'southern', u'queensland'] [u'park', u'belconnen', u'town', u'centr'] [u'pilbara', u'polic', u'drink', u'drive', u'worri'] [u'offer', u'illeg', u'immigr', u'amnesti'] [u'polic', u'question', u'sydney', u'sniper', u'shoot'] [u'polic', u'road', u'victim'] [u'premier', u'predict', u'thing', u'sydney', u'devonport'] [u'pressur', u'pakistan', u'kiwi', u'seek', u'seri', u'shut'] [u'progress', u'associ', u'oppos', u'subdivis'] [u'protest', u'fin', u'ferri', u'stunt'] [u'lender', u'bank', u'success'] [u'queen', u'mari', u'set', u'maiden', u'atlant', u'cross'] [u'rain', u'bring', u'damag', u'tamworth'] [u'rare', u'russian', u'tigress', u'die', u'week', u'struggl'] [u'redback', u'face', u'uphil', u'battl'] [u'refuge', u'advoc', u'support', u'migrat', u'scheme'] [u'resid', u'councillor', u'talk', u'powerlin', u'fear'] [u'reuter', u'protest', u'detent', u'staff', u'iraq'] [u'reward', u'offer', u'catch', u'grave', u'vandal'] [u'rice', u'wait', u'wildcat', u'clearanc'] [u'riverland', u'group', u'welcom', u'migrant', u'plan'] [u'rover', u'martian', u'drive', u'nasa'] [u'ruddock', u'urg', u'fertilis', u'control', u'deal'] [u'rural', u'visa', u'plan', u'question'] [u'russian', u'admir', u'trial', u'sink'] [u'salmon', u'research', u'win', u'grant', u'diseas', u'probe'] [u'sauber', u'criticis', u'test', u'driver', u'restrict'] [u'saudi', u'arabia', u'author', u'score', u'huge', u'weapon'] [u'seven', u'iraqi', u'kill', u'clash', u'troop'] [u'shark', u'sight', u'tweed', u'coast'] [u'celebr', u'birthday'] [u'south', u'east', u'enjoy', u'strong', u'tourism'] [u'space', u'station', u'leak', u'trace', u'nasa'] [u'stanwel', u'park', u'sign', u'inform', u'billboard'] [u'stockman', u'hall', u'fame', u'plan', u'tourism', u'boost'] [u'stosur', u'continu', u'good', u'form'] [u'stosur', u'hobart'] [u'surf', u'blue', u'away'] [u'swift', u'netbal', u'star', u'injur', u'smash'] [u'syria', u'reject', u'invit', u'meet', u'isra', u'presid'] [u'syria', u'say', u'land', u'invit', u'peac', u'israel'] [u'polic', u'higher', u'wag'] [u'tender', u'call', u'hume', u'freeway', u'work'] [u'terror', u'exercis', u'test', u'respons'] [u'rail', u'secur', u'guard', u'fin', u'assault'] [u'tiger', u'build', u'lead', u'adelaid'] [u'seed', u'suarez', u'advanc', u'canberra'] [u'soldier', u'head', u'australia'] [u'totti', u'nedv', u'name', u'itali', u'best', u'player'] [u'palestinian', u'arrest', u'west', u'bank'] [u'union', u'call', u'teacher', u'rise'] [u'unpredict', u'hanson', u'expect', u'campaign'] [u'armi', u'think', u'tank', u'criticis', u'iraq', u'invas'] [u'terror', u'detaine', u'name', u'secret', u'court'] [u'accident', u'drop', u'unarm', u'bomb', u'britain'] [u'probe', u'oneil', u'secreci', u'breach'] [u'propos', u'colour', u'cod', u'passeng'] [u'soldier', u'die', u'bomb', u'troop', u'kill', u'seven', u'iraqi'] [u'stock', u'inch', u'earn', u'loom'] [u'criticis', u'wind', u'energi', u'polici'] [u'govt', u'urg', u'tackl', u'shepparton', u'public', u'hous'] [u'victori', u'applebi', u'close', u'world'] [u'visa', u'woe', u'forc', u'bind', u'croc', u'leav', u'import'] [u'warrior', u'look', u'good', u'bull'] [u'elect', u'springborg'] [u'welcom', u'rain', u'fall', u'north', u'queensland'] [u'west', u'coast', u'shellfish', u'health', u'clear'] [u'white', u'hous', u'reject', u'oneil', u'critic'] [u'womad', u'welcom', u'melt', u'music', u'flavour'] [u'world', u'skipper', u'johnson'] [u'youth', u'soccer', u'camp', u'gold', u'coast'] [u'adelong', u'bank', u'communiti', u'support'] [u'afghan', u'aliv', u'sound', u'music'] [u'airlin', u'look', u'expand', u'north', u'west', u'asia', u'servic'] [u'arabiya', u'resum', u'iraq', u'coverag', u'soon', u'govern'] [u'candid', u'play', u'wilton', u'airport', u'site'] [u'ambul', u'union', u'negoti', u'claim'] [u'america', u'leader', u'sign', u'free', u'trade', u'agreement'] [u'analyst', u'tip', u'comfort', u'labor', u'poll'] [u'angler', u'fin', u'illeg', u'fish'] [u'angolan', u'govt', u'deni', u'alleg'] [u'ashtonfield', u'school', u'plan', u'move', u'ahead'] [u'remain', u'steadi'] [u'asylum', u'seeker', u'group', u'rais', u'doubt', u'migrant'] [u'atlas', u'highlight', u'high', u'south', u'east', u'wind', u'speed'] [u'aussi', u'advanc', u'sydney'] [u'australian', u'offici', u'kill', u'uzbek', u'crash'] [u'author', u'probe', u'gold', u'coast', u'boat', u'capsiz'] [u'avellino', u'sign', u'netbal', u'team'] [u'beatti', u'child', u'focus', u'elect', u'ruse', u'springborg'] [u'better', u'late', u'spirit', u'tasmania'] [u'bird', u'wors', u'sar'] [u'bird', u'kill', u'asia', u'health', u'scare'] [u'black', u'cap', u'romp', u'victori', u'pakistan'] [u'blast', u'hit', u'iraqi', u'polic', u'station'] [u'bomber', u'strike', u'isra', u'border', u'cross'] [u'british', u'backpack', u'murder', u'hear', u'adjourn'] [u'british', u'peac', u'activist', u'shoot', u'middl', u'east', u'die'] [u'brown', u'track', u'tour'] [u'bryant', u'sidelin', u'sprain', u'shoulder'] [u'bull', u'begin', u'chase', u'warrior', u'declar'] [u'burglar', u'muhammad', u'ali', u'short'] [u'burk', u'shire', u'warn', u'wild', u'weather'] [u'busi', u'push', u'fund', u'inject'] [u'hunter', u'polic', u'number', u'boost'] [u'centuri', u'rail', u'dream', u'realiti'] [u'china', u'confirm', u'sar', u'case', u'report'] [u'clijster', u'wont', u'rush', u'open'] [u'urg', u'region', u'inclus', u'amphetamin', u'fight'] [u'coalit', u'argu', u'child', u'protect', u'elect'] [u'coastwatch', u'highlight', u'log', u'fear'] [u'commiss', u'warn', u'zimbabwean', u'newspap'] [u'chess', u'help', u'develop', u'game'] [u'concentr', u'let', u'pirat'] [u'concern', u'rais', u'raymond', u'koala', u'health'] [u'conserv', u'underpin', u'canobola', u'plan'] [u'consum', u'confid', u'jump', u'year', u'high'] [u'control', u'forest', u'burn', u'continu', u'duffi'] [u'costello', u'talk', u'star', u'war'] [u'costello', u'weigh', u'campaign'] [u'croc', u'expect', u'tough', u'clash'] [u'crown', u'princ', u'denmark', u'visit', u'tasmania'] [u'cult', u'tell', u'kid', u'drink', u'bleach', u'beat', u'sar'] [u'dairi', u'group', u'say', u'australia', u'wont', u'flood', u'market'] [u'dakar', u'leader', u'accus', u'rival', u'illeg', u'overtak'] [u'damag', u'irwin', u'locomot', u'miss', u'journey'] [u'darl', u'river', u'flow', u'prevent', u'water', u'pump'] [u'defect', u'spark', u'search', u'council'] [u'detaine', u'protest', u'baxter'] [u'devonport', u'mayor', u'welcom', u'ferri'] [u'disney', u'close', u'florida', u'anim', u'studio'] [u'dokic', u'australian', u'open'] [u'drug', u'halt', u'genit', u'herp', u'approv'] [u'dutch', u'ministri', u'find', u'white', u'sock', u'indec'] [u'educ', u'chang', u'rais', u'communiti'] [u'educ', u'dept', u'upbeat', u'teacher', u'vacanc'] [u'children', u'hospitalis'] [u'elect', u'complic', u'tree', u'clear', u'issu', u'agforc'] [u'electranet', u'wont', u'stop', u'develop', u'applic'] [u'eye', u'hawaiian', u'open', u'defenc'] [u'emot', u'high', u'friend', u'cast', u'near', u'final'] [u'england', u'keeper', u'jam', u'join', u'citi'] [u'england', u'begin', u'qualifi', u'austria'] [u'fall', u'paramed', u'rememb', u'victoria'] [u'fisher', u'reel', u'size', u'limit', u'plan'] [u'fish', u'kill', u'buri', u'north', u'west'] [u'flood', u'cut', u'western', u'road'] [u'foster', u'care', u'issu', u'wont', u'decid', u'poll', u'reynold'] [u'arrest', u'tanzania', u'ivori', u'haul'] [u'frazier', u'hobart', u'semi', u'final'] [u'fulham', u'deni', u'saha'] [u'ghan', u'claim', u'strong', u'intern', u'book'] [u'govt', u'extend', u'region', u'doctor', u'scheme'] [u'govt', u'urg', u'extend', u'pool', u'fenc', u'review'] [u'grazier', u'look', u'pastur', u'growth'] [u'greec', u'test', u'counter', u'terror', u'tactic', u'game'] [u'haitian', u'presid', u'promis', u'elect'] [u'handwrit', u'analyst', u'testifi', u'backpack', u'murder'] [u'handwrit', u'expert', u'testifi', u'british'] [u'hayden', u'say', u'order', u'mark'] [u'health', u'fund', u'public', u'stunt'] [u'high', u'perform', u'student', u'miss', u'place'] [u'high', u'petrol', u'price', u'fuel', u'farm', u'group', u'frustrat'] [u'mozzi', u'sniff', u'sweat'] [u'india', u'cruis', u'victori', u'hobart'] [u'india', u'cruis', u'hobart'] [u'indonesian', u'court', u'dismiss', u'timor', u'right', u'abus'] [u'injur', u'stosur', u'expect', u'contest', u'open'] [u'injuri', u'prompt', u'seaman', u'quit', u'decis'] [u'injuri', u'put', u'coria', u'open'] [u'iranian', u'presid', u'threaten', u'resign'] [u'johnson', u'miss', u'australian', u'track', u'season'] [u'judg', u'delay', u'sentenc', u'internet', u'offend'] [u'kashmir', u'separatist', u'indian', u'govt', u'hold', u'talk'] [u'kenya', u'oldest', u'schoolboy', u'enrol'] [u'kidney', u'group', u'want', u'chang', u'donor', u'law'] [u'kookaburra', u'come', u'beat', u'india'] [u'krige', u'quit', u'springbok'] [u'labor', u'promis', u'increas', u'murray', u'darl', u'flow'] [u'latham', u'airport', u'comment', u'reignit', u'local', u'debat'] [u'maher', u'eye', u'athen', u'olymp'] [u'accus', u'sydney', u'shoot', u'refus', u'bail'] [u'martin', u'attend', u'adelaid', u'darwin', u'inaugur'] [u'mcgrath', u'put', u'comeback', u'hold'] [u'melbourn', u'stand', u'trial', u'babi', u'murder'] [u'accus', u'sydney', u'shoot', u'sorri'] [u'mentor', u'scheme', u'benefit', u'darl', u'down', u'youth'] [u'miner', u'agre', u'boost', u'iron', u'cooper'] [u'worker', u'return', u'work'] [u'ministeri', u'visit', u'ceduna', u'pipelin'] [u'miss', u'tafe', u'place'] [u'iran', u'minist', u'readi', u'quit', u'elect'] [u'mummi', u'show', u'pharoah', u'worship', u'king', u'beast'] [u'share', u'recov', u'despit', u'scandal', u'probe'] [u'nat', u'urg', u'public', u'protest', u'plan', u'kosciuszko'] [u'netbal', u'hospit', u'crash'] [u'medic', u'school', u'readi', u'student'] [u'militari', u'school', u'offer', u'region', u'train'] [u'renault', u'track', u'debut'] [u'studi', u'shatter', u'internet', u'geek', u'imag'] [u'loaf', u'solomon', u'flour', u'power', u'dri'] [u'plan', u'tougher', u'water', u'restrict'] [u'northern', u'respit', u'rain'] [u'north', u'south', u'railway', u'tip', u'boost', u'local', u'economi'] [u'guilti', u'plea', u'trial', u'open', u'swedish'] [u'govt', u'inject', u'public', u'hospit'] [u'oneil', u'back', u'iraq', u'claim'] [u'pakistan', u'collaps', u'black', u'cap'] [u'pari', u'hilton', u'go', u'undress', u'worst', u'dress'] [u'parmalat', u'offer', u'australian', u'assur'] [u'perth', u'base', u'gold', u'miner', u'upbeat', u'north'] [u'pipelin', u'await', u'water', u'licenc', u'approv'] [u'poacher', u'bond', u'catch', u'rabbit'] [u'polic', u'arrest', u'youth', u'alleg', u'danger', u'drive'] [u'polic', u'charg', u'melbourn', u'home', u'invas'] [u'polic', u'hope', u'quiet', u'school', u'holiday'] [u'policeman', u'punish', u'prison', u'assault'] [u'polic', u'probe', u'british', u'serial', u'killer', u'death'] [u'polic', u'probe', u'southern', u'crash'] [u'polic', u'shoot', u'dead', u'sydney'] [u'polic', u'turn', u'drug', u'darwin', u'raid'] [u'prais', u'flow', u'north', u'west', u'water', u'user'] [u'prison', u'group', u'welcom', u'polic', u'killer', u'releas'] [u'prison', u'guard', u'captur', u'riverland', u'escape'] [u'prison', u'offic', u'maintain', u'strike'] [u'prison', u'offic', u'order', u'work'] [u'protest', u'reject', u'claim', u'ferri', u'stunt', u'danger'] [u'public', u'urg', u'pool', u'diseas', u'free'] [u'green', u'claim', u'labor', u'dirti', u'trick'] [u'minist', u'stand', u'asid', u'bulli'] [u'opposit', u'break', u'bank'] [u'rain', u'help', u'quench', u'aramac'] [u'rann', u'set', u'student', u'read', u'challeng'] [u'real', u'quarter'] [u'redback', u'lose', u'quick', u'wicket'] [u'regist', u'record', u'hors', u'kill', u'weed'] [u'rescu', u'worker', u'give', u'clear', u'french'] [u'roddick', u'feder', u'agassi', u'kooyong'] [u'rise', u'see', u'traffic', u'gold', u'coast', u'issu'] [u'row', u'australia', u'unveil', u'olymp', u'coach', u'team'] [u'royal', u'pheasant', u'shoot', u'terrifi', u'british', u'children'] [u'rumsfeld', u'call', u'oneil', u'sour', u'grape', u'book'] [u'saddam', u'status', u'trial', u'iraqi'] [u'govt', u'unmov', u'kangaroo', u'water', u'restrict'] [u'saleyard', u'rais', u'compani', u'fear'] [u'say', u'chees', u'incrimin', u'chines', u'camera', u'thiev'] [u'school', u'contractor', u'warn', u'strike', u'cost'] [u'scientist', u'consid', u'lili', u'impact', u'swamp', u'wallabi'] [u'senior', u'send', u'intrud', u'pack'] [u'servic', u'boost', u'nanango', u'busi'] [u'sheep', u'farmer', u'battl', u'strike'] [u'singaporean', u'celebr', u'chines', u'year', u'lucki'] [u'korea', u'confid', u'resolv', u'nuclear', u'crisi'] [u'smelter', u'worker', u'strike'] [u'social', u'secur', u'payment', u'affect'] [u'south', u'korea', u'beef', u'quarantin', u'effort'] [u'space', u'station', u'leak', u'stop', u'pressur', u'stabl', u'nasa'] [u'spur', u'unit', u'butt'] [u'stab', u'inmat', u'condit', u'stabilis'] [u'state', u'reli', u'gambl', u'revenu', u'latham'] [u'luke', u'move', u'increas', u'premium'] [u'strong', u'dollar', u'hit', u'oversea', u'student', u'number'] [u'swiss', u'glacier', u'shrink', u'climat', u'chang'] [u'sydney', u'resid', u'boost', u'gold', u'coast', u'popul'] [u'sydney', u'water', u'listen', u'pipe', u'concern'] [u'talk', u'continu', u'goulburn', u'local', u'govt', u'area'] [u'govt', u'explain', u'bass', u'highway', u'posit'] [u'teacher', u'kill', u'netherland', u'school', u'shoot'] [u'telstra', u'shift', u'job', u'india'] [u'telstra', u'offshor', u'job'] [u'quarter', u'russian', u'censorship', u'poll'] [u'general', u'visit', u'china'] [u'tough', u'competit', u'aust', u'award'] [u'tourist', u'keen', u'view', u'underwat', u'observatori'] [u'treasur', u'tell', u'telstra', u'job', u'australia'] [u'truck', u'compani', u'fin', u'accid'] [u'tube', u'feed', u'cost', u'rise', u'victoria'] [u'camera', u'ban', u'jackson', u'hear'] [u'bushfir', u'contain', u'victoria'] [u'union', u'goal', u'wolv'] [u'union', u'telstra', u'plan', u'australian', u'job'] [u'unit', u'fulham', u'agre', u'saha', u'deal', u'report'] [u'unit', u'sign', u'chines', u'teenag'] [u'unit', u'fulham', u'saha'] [u'send', u'team', u'assess', u'iraq', u'staff', u'secur'] [u'beef', u'leav', u'limbo'] [u'militari', u'criticis', u'legal', u'process'] [u'rover', u'spirit', u'head', u'hill', u'mar'] [u'vanston', u'defend', u'electron', u'visa'] [u'veron', u'hire', u'guard', u'machet', u'raid'] [u'victorian', u'polic', u'recov', u'olympian', u'medal'] [u'vietnam', u'ban', u'import', u'chines', u'civet', u'cat'] [u'vietnam', u'report', u'suspect', u'bird', u'case'] [u'visa', u'plan', u'boost', u'gippsland', u'migrant', u'number'] [u'volcano', u'erupt', u'russia', u'east'] [u'detect', u'attempt', u'trace', u'miss', u'million'] [u'govt', u'defend', u'bushfir'] [u'keen', u'restart', u'trade', u'saudi', u'arabia'] [u'walgett', u'farmer', u'welcom', u'downpour'] [u'oppon', u'iraq', u'contract'] [u'weaken', u'bolton', u'knock'] [u'wildlif', u'prompt', u'develop', u'site', u'rethink'] [u'woman', u'hospit', u'stab'] [u'world', u'elit', u'clash', u'kooyong'] [u'wright', u'bowl', u'tiger', u'victori'] [u'zimbabw', u'bat', u'india'] [u'child', u'protect', u'scheme', u'review'] [u'action', u'threaten', u'uncuf', u'prison', u'court'] [u'retain', u'lowest', u'jobless', u'rate'] [u'introduc', u'strict', u'gambl', u'law'] [u'agassi', u'advanc', u'kooyong', u'final'] [u'albani', u'angler', u'face', u'fin'] [u'anderson', u'join', u'elect', u'campaign'] [u'finish', u'lower', u'flat', u'trade'] [u'aussi', u'skip', u'sharjah', u'tournament'] [u'australia', u'play', u'role', u'space', u'program'] [u'bank', u'robberi', u'trigger', u'polic', u'manhunt'] [u'bank', u'urg', u'help', u'custom', u'bush'] [u'barcaldin', u'school', u'get', u'feder', u'fund', u'boost'] [u'beatti', u'stand', u'fall', u'rise'] [u'bird', u'claim', u'vietnam'] [u'boonah', u'warn', u'harsher', u'water', u'restrict'] [u'braill', u'librari', u'open'] [u'brigg', u'book', u'fight', u'ruiz'] [u'british', u'activist', u'die', u'month', u'isra'] [u'bullet', u'tame', u'tiger'] [u'bull', u'warrior', u'draw', u'waca'] [u'contractor', u'complain', u'contract'] [u'bush', u'announc', u'step', u'space', u'explor'] [u'calm', u'urg', u'possibl', u'sydney', u'sar', u'case'] [u'blast', u'wound', u'outsid', u'karachi', u'church'] [u'carrigan', u'fail', u'women', u'cycl', u'comp'] [u'carr', u'promis', u'improv', u'rail', u'safeti'] [u'central', u'australian', u'rail', u'link', u'realis', u'dream'] [u'chelsea', u'cruis', u'fourth', u'round'] [u'china', u'ban', u'poultri', u'import', u'counter', u'bird'] [u'china', u'surfer', u'rise', u'million', u'peopl'] [u'china', u'unveil', u'space', u'plan'] [u'clark', u'atsic', u'case', u'adjourn', u'week'] [u'clark', u'claim', u'atsic', u'suspens', u'isnt', u'legal'] [u'clark', u'appeal', u'caus', u'ultimatum'] [u'exploit', u'elect', u'chairman', u'warn'] [u'coff', u'mayor', u'back', u'merger', u'stanc'] [u'costello', u'tie', u'job', u'reform'] [u'costello', u'urg', u'latham', u'voic', u'gambl', u'concern'] [u'council', u'hop', u'owner', u'wont', u'pooh', u'pooh', u'plan'] [u'councillor', u'air', u'candid', u'defect', u'concern'] [u'councillor', u'want', u'road', u'fund', u'scheme', u'maintain'] [u'council', u'consid', u'chief', u'execut', u'exit'] [u'council', u'urg', u'finish', u'groundwat', u'probe'] [u'court', u'hear', u'chill', u'account', u'swedish', u'minist'] [u'date', u'chang', u'melbourn'] [u'defiant', u'rise', u'domin', u'campaign'] [u'diana', u'crash', u'wit', u'rule', u'conspiraci'] [u'dinosaur', u'roam', u'brazil', u'amazon', u'report'] [u'doctor', u'brush', u'surgeri', u'skill'] [u'dodson', u'look', u'develop', u'commiss', u'challeng'] [u'dollar', u'steadi', u'volatil', u'stock', u'market'] [u'doubt', u'cast', u'oversea', u'rural', u'doctor', u'placement'] [u'doubt', u'migrant', u'scheme', u'afghan', u'worker'] [u'down', u'tourism', u'websit', u'prove', u'popular'] [u'ecstasi', u'link', u'long', u'term', u'memori', u'loss', u'studi'] [u'expect', u'chines', u'hope', u'stork', u'skip', u'goat', u'monkey'] [u'expert', u'warn', u'bird', u'virus', u'plagu'] [u'fail', u'asylum', u'seeker', u'turkey'] [u'farmer', u'slow', u'respond', u'drought'] [u'fast', u'bowler', u'head', u'injuri', u'list'] [u'feder', u'polic', u'probe', u'loss'] [u'govt', u'urg', u'approv', u'hospit', u'licenc'] [u'financi', u'offic', u'plead', u'guilti', u'enron', u'charg'] [u'finegan', u'relish', u'challeng'] [u'finnegan', u'relish', u'challeng'] [u'crew', u'alert', u'baxter', u'disturb'] [u'firefight', u'contain', u'helen', u'blaze'] [u'firm', u'ask', u'explain', u'fals', u'alert', u'messag'] [u'train', u'head', u'darwin', u'adelaid'] [u'fischer', u'confid', u'rail', u'link', u'succeed'] [u'flight', u'attend', u'hospitalis', u'suspect', u'sar'] [u'olymp', u'rower', u'await', u'sentenc'] [u'rail', u'employe', u'convict', u'attack'] [u'lead'] [u'fund', u'help', u'boost', u'children', u'hospit'] [u'ganguli', u'prais', u'indian', u'perform'] [u'messag', u'send', u'injur', u'sydney', u'swift'] [u'global', u'confer', u'showcas', u'resourc'] [u'glori', u'face', u'injuri', u'crisi'] [u'gold', u'coast', u'boxer', u'book', u'fight', u'ruiz'] [u'govt', u'bulli', u'nauru', u'doctor', u'visit'] [u'govt', u'assist', u'naurus', u'medic', u'servic'] [u'guccion', u'tumbl', u'sydney'] [u'hawk', u'high', u'defeat', u'taipan'] [u'health', u'equip', u'deal', u'sar', u'costello'] [u'hewitt', u'sydney', u'semi', u'final', u'scud'] [u'hick', u'famili', u'cheer', u'stand', u'militari', u'trial'] [u'hickss', u'lawyer', u'back', u'critic', u'militari', u'trial'] [u'hospit', u'labour', u'babi', u'boom'] [u'hospit', u'probe', u'return', u'gambier'] [u'humbl', u'croc', u'look', u'import'] [u'indigen', u'bodi', u'call', u'justic', u'discriminatori'] [u'inspir', u'rabbit', u'proof', u'fenc', u'pass', u'away'] [u'iraqi', u'shell', u'chemic', u'danish', u'armi'] [u'islam', u'milit', u'detain', u'singapor'] [u'japanes', u'compani', u'creat', u'dream', u'machin'] [u'japan', u'asago', u'make', u'tenni', u'final', u'hobart'] [u'kimberley', u'communiti', u'seek', u'input', u'legisl'] [u'latham', u'highlight', u'concern', u'wilton', u'airport', u'site'] [u'latham', u'pledg', u'help', u'solv', u'gambl', u'problem'] [u'zimbabw', u'clash'] [u'fire', u'line'] [u'libya', u'ratifi', u'nuclear', u'chemic', u'treati'] [u'long', u'wait', u'newcastl', u'market'] [u'carri', u'bullet', u'arrest', u'heathrow'] [u'critic', u'injur', u'util'] [u'face', u'court', u'cannabi', u'plant'] [u'face', u'court', u'child', u'care', u'crash'] [u'mayor', u'say', u'govt', u'atlas'] [u'mayor', u'seek', u'apolog', u'complaint', u'drop'] [u'mayor', u'case', u'continu', u'road', u'fund', u'scheme'] [u'mayor', u'unhappi', u'rail', u'termin', u'garden', u'shed'] [u'mcrae', u'bright', u'spot', u'dakar', u'ralli'] [u'melbourn', u'face', u'date', u'chang'] [u'fisher', u'away', u'gill', u'fight'] [u'motorist', u'strand', u'floodwat'] [u'museum', u'team', u'dissect', u'dead', u'whale'] [u'stop', u'hervey', u'opposit'] [u'nightclub', u'murder', u'case', u'adjourn'] [u'north', u'port', u'handl', u'pasminco', u'busi'] [u'north', u'west', u'farmer', u'welcom', u'drench'] [u'prison', u'offic', u'return', u'work'] [u'rail', u'author', u'condemn', u'waterfal'] [u'record', u'drop', u'jobless', u'rate'] [u'user'] [u'unemploy', u'rate', u'fall'] [u'compani', u'eye', u'darwin', u'casino'] [u'olyroo', u'thrash', u'samoa'] [u'bega', u'moruya', u'mental', u'health'] [u'pakistani', u'train', u'leav', u'india'] [u'pasminco', u'caus', u'stink', u'hobart', u'withdraw'] [u'passeng', u'criticis', u'cabin', u'crew', u'flight'] [u'perth', u'soccer', u'team', u'crippl', u'injuri'] [u'plane', u'make', u'emerg', u'land', u'china'] [u'plan', u'woe', u'sidelin', u'rural', u'machineri', u'worker'] [u'plan', u'slash', u'ambul', u'wait', u'time'] [u'plea', u'smoke', u'pub'] [u'leader', u'quit', u'cabinet'] [u'polic', u'interview', u'devonport', u'stab', u'victim'] [u'polic', u'issu', u'arrest', u'warrant', u'home', u'detent'] [u'polic', u'search', u'miss', u'woman'] [u'priest', u'oblig', u'report', u'crimin', u'confess'] [u'public', u'urg', u'toxic', u'soil', u'recycl'] [u'push', u'continu', u'hospit', u'site', u'near', u'campus'] [u'qlds', u'jobless', u'rate', u'creep', u'higher'] [u'queensland', u'truck', u'driver', u'appear', u'court'] [u'rail', u'link', u'open', u'busi'] [u'rain', u'help', u'drought', u'farmer'] [u'brigad', u'leader', u'arrest', u'cairo'] [u'research', u'gene', u'link', u'alcohol'] [u'research', u'develop', u'platypus', u'diseas', u'vaccin'] [u'resid', u'evacu', u'nambour', u'pool'] [u'review', u'consid', u'indigen', u'polic', u'offic'] [u'roddick', u'henin', u'hardenn', u'open', u'seed'] [u'ruddock', u'deni', u'hickss', u'case', u'unfair'] [u'jobless', u'rate', u'increas', u'slight'] [u'sar', u'infect', u'unlik', u'sydney', u'case'] [u'sar', u'unlik', u'sydney', u'case'] [u'sean', u'penn', u'report', u'iraq', u'powder'] [u'ship', u'chang', u'cast', u'doubt', u'job'] [u'singapor', u'highest', u'execut', u'rate', u'world'] [u'sothebi', u'auction', u'work', u'picasso', u'dega'] [u'south', u'korea', u'foreign', u'minist', u'resign'] [u'spirit', u'robot', u'roll', u'short', u'drive', u'mar'] [u'state', u'forest', u'offer', u'log', u'assur'] [u'state', u'urg', u'ratifi', u'greenhous', u'protocol'] [u'stronger', u'dollar', u'news', u'winegrow'] [u'syria', u'see', u'hope', u'peac', u'sharon'] [u'tabcorp', u'defend', u'decis', u'increas', u'minimum'] [u'taboo', u'close', u'broadway', u'million', u'loss'] [u'tamworth', u'hospit', u'benefit', u'health', u'fund'] [u'govt', u'investig', u'ferri', u'freight', u'potenti'] [u'jobless', u'rate', u'unchang', u'trend', u'term'] [u'taskforc', u'recommend', u'sar', u'clinic'] [u'teenag', u'musician', u'dead', u'camp'] [u'tenterfield', u'face', u'hour', u'medic', u'dilemma'] [u'thiev', u'target', u'aria', u'award', u'win', u'waif'] [u'thoma', u'prais', u'bush', u'space', u'plan'] [u'thoma', u'set', u'commonwealth', u'record'] [u'thousand', u'iraqi', u'gather', u'demand', u'elect'] [u'kill', u'iraqi', u'drive'] [u'thuringowa', u'experi', u'build', u'boom'] [u'toowoomba', u'player', u'matilda', u'select'] [u'tough', u'time', u'take', u'shine', u'opal', u'mine'] [u'hick', u'home', u'latham'] [u'death', u'zero', u'holiday', u'road', u'toll'] [u'green', u'turtl', u'releas', u'wild'] [u'charg', u'mugab', u'plane', u'stori'] [u'union', u'highlight', u'port', u'secur', u'failur'] [u'student', u'debt', u'blow', u'opposit'] [u'aust', u'bilater', u'energi', u'talk', u'hold'] [u'captur', u'iraq', u'want', u'list'] [u'china', u'lead', u'global', u'econom', u'recoveri'] [u'shatter', u'record', u'annual', u'trade', u'deficit'] [u'soldier', u'suicid', u'rise', u'iraq', u'pentagon'] [u'tech', u'stock', u'post', u'strong', u'profit'] [u'troop', u'kill', u'iraqi', u'battl'] [u'vail', u'remain', u'confid', u'trade', u'talk'] [u'jobless', u'rate', u'rise'] [u'firm', u'sign', u'plus', u'woodchip', u'deal'] [u'oppn', u'urg', u'stronger', u'line', u'predatori', u'fish'] [u'parti', u'bicker', u'underdog', u'status'] [u'unemploy', u'rate', u'remain', u'static'] [u'western', u'brace', u'possibl', u'flood'] [u'world', u'leader', u'attend', u'emerg', u'polio', u'erad'] [u'student', u'miss', u'place'] [u'farmer', u'hope', u'better', u'futur'] [u'actress', u'hagen', u'dead'] [u'adelaid', u'fring', u'festiv', u'ticket', u'sale'] [u'push', u'world', u'final', u'rematch', u'brisban'] [u'alic', u'await', u'histor', u'train'] [u'alic', u'darwin', u'rail', u'boost', u'port', u'augusta', u'rann'] [u'alic', u'welcom', u'histor', u'train'] [u'american', u'team', u'lose', u'sprinter'] [u'angler', u'fin', u'illeg', u'sell', u'fish'] [u'armaguard', u'steal', u'sydney'] [u'arsenal', u'keeper', u'lehmann', u'gun', u'english', u'refere'] [u'close', u'lower', u'sluggish', u'trade'] [u'atletico', u'sevilla', u'scrape', u'king'] [u'aussi', u'rumford', u'fire', u'south', u'africa', u'lead'] [u'aust', u'energi', u'talk', u'finish', u'optimist', u'note'] [u'author', u'prepar', u'possibl', u'river', u'flood'] [u'bank', u'call', u'boost', u'region', u'servic'] [u'beatti', u'clear', u'favourit', u'elect'] [u'beatti', u'deni', u'second', u'minist', u'quit'] [u'beatti', u'seek', u'apolog', u'rise'] [u'boat', u'facil', u'upgrad', u'tasmania'] [u'bremer', u'return', u'discuss', u'iraq', u'futur'] [u'brigitt', u'releas', u'immin', u'lack', u'evid'] [u'britain', u'probe', u'death', u'activist', u'shoot', u'israel'] [u'british', u'soldier', u'widow', u'releas', u'damn', u'iraq', u'tape'] [u'break', u'hill', u'council', u'apprentic'] [u'burma', u'releas', u'member', u'aung', u'kyi'] [u'burnett', u'push', u'irrig', u'rescu', u'plan'] [u'antarct', u'expedition'] [u'bomb', u'injur', u'karachi'] [u'boost', u'grain', u'receiv', u'network'] [u'central', u'aust', u'warn', u'rotavirus', u'outbreak'] [u'child', u'abus', u'failur', u'slam'] [u'children', u'salmonella', u'victim', u'award', u'compo'] [u'chines', u'court', u'uphold', u'death', u'sentenc'] [u'citrus', u'export', u'cast', u'doubt', u'rail', u'line'] [u'claim', u'restaur', u'rip', u'casual', u'employe'] [u'clear', u'rise', u'accus'] [u'coalit', u'target', u'rose', u'seat'] [u'concern', u'shortag', u'mening', u'vaccin'] [u'council', u'back', u'leisur', u'centr', u'plan'] [u'council', u'happi', u'properti', u'sale', u'result'] [u'council', u'sack', u'rubbish', u'collector'] [u'council', u'oppos', u'centr', u'closur'] [u'countri', u'music', u'festiv', u'spark', u'road', u'closur'] [u'croc', u'hope', u'form', u'revers', u'breaker'] [u'cyclon', u'damag', u'cost', u'niue', u'pacif', u'forum'] [u'dairi', u'factori', u'list'] [u'delaney', u'take', u'coach', u'role'] [u'eagl', u'extend', u'worsfold', u'contract'] [u'ebola', u'come', u'bush', u'meat', u'studi'] [u'ebola', u'research', u'link', u'virus', u'anim'] [u'emerg', u'unit', u'announc', u'tweed', u'hospit'] [u'england', u'moodi', u'miss', u'nation', u'open'] [u'farmer', u'urg', u'govt', u'push', u'bank', u'report', u'find'] [u'fatal', u'accid', u'prompt', u'polic', u'pursuit', u'probe'] [u'ferdinand', u'appeal', u'like', u'report'] [u'brisban', u'hotel', u'extinguish'] [u'trail', u'mainten', u'doubt'] [u'blood', u'roddick', u'kooyong'] [u'kill', u'arson', u'attack', u'chines', u'market'] [u'flight', u'attend', u'clear', u'sar', u'releas'] [u'flight', u'attend', u'releas', u'hospit'] [u'flight', u'record', u'crash', u'egyptian', u'plane', u'locat'] [u'flood', u'warn', u'issu', u'drought', u'area'] [u'arrest', u'sydney', u'drug', u'raid'] [u'franco', u'lead', u'hawaii', u'year', u'open'] [u'frazier', u'hobart', u'final'] [u'frazier', u'triumph', u'hobart'] [u'gallop', u'sell'] [u'crisi', u'pasminco', u'smelter', u'product'] [u'survey', u'work', u'start', u'newcastl'] [u'german', u'drug', u'smuggler', u'rumbl', u'natur'] [u'gilchrist', u'guid', u'australia', u'victori'] [u'global', u'internet', u'child', u'porn', u'ring', u'smash'] [u'crop', u'appeal', u'farmer'] [u'graf', u'edberg', u'elect', u'tenni', u'hall', u'fame'] [u'grape', u'product', u'tip', u'rise'] [u'green', u'light', u'lake', u'macquari', u'station'] [u'hacker', u'target', u'server'] [u'hampshir', u'want', u'warn', u'stay'] [u'hanson', u'wont', u'campaign', u'elect', u'ettridg'] [u'heaven', u'open'] [u'heavi', u'rain', u'leav', u'worker', u'strand'] [u'hewitt', u'meet', u'moya', u'sydney', u'final'] [u'hope', u'kimberley', u'cotton', u'crop', u'plan'] [u'hospit', u'highlight', u'need', u'cancer', u'treatment'] [u'ibm', u'profit', u'soar', u'strong', u'sale'] [u'indigen', u'communiti', u'polic', u'alic', u'train'] [u'indigen', u'rock', u'move', u'road'] [u'indonesia', u'ban', u'poultri', u'import', u'asian'] [u'injur', u'wilkinson', u'delay', u'comeback'] [u'injuri', u'setback', u'tszyu'] [u'investig', u'death', u'custodi', u'begin'] [u'iran', u'quak', u'toll', u'top'] [u'israel', u'high', u'court', u'review', u'secur', u'barrier'] [u'japanes', u'troop', u'iraq'] [u'juve', u'brink', u'semi', u'edg', u'perugia'] [u'king', u'conquer', u'bullet'] [u'kookaburra', u'pakistan', u'draw'] [u'languag', u'run', u'mar', u'rover'] [u'metal', u'press', u'bow', u'technolog'] [u'latham', u'brisban', u'beatti'] [u'latham', u'prais', u'gambl', u'stanc'] [u'leed', u'cool', u'sheikh', u'specul'] [u'lee', u'rethink', u'telstra', u'sale'] [u'legal', u'delay', u'falconio', u'murder', u'hear'] [u'lib', u'townsvill', u'candid', u'reject', u'industri'] [u'live', u'sheep', u'export', u'vietnam', u'begin'] [u'macfarlan', u'eye', u'deal'] [u'charg', u'ammunit', u'flight'] [u'fin', u'illeg', u'fish'] [u'custodi', u'syring', u'hold'] [u'media', u'organis', u'push', u'aid', u'awar'] [u'melbourn', u'restaur', u'clear', u'salmonella'] [u'microsoft', u'chang', u'window', u'music', u'browser'] [u'ministeri', u'resign', u'hurt', u'campaign', u'beatti'] [u'missil', u'defenc', u'program', u'lead', u'arm', u'race'] [u'moscow', u'court', u'keep', u'yuko', u'chief', u'bar'] [u'mount', u'resid', u'begin', u'flood', u'clean'] [u'push', u'shoalhaven', u'licenc'] [u'face', u'clean', u'flood'] [u'deni', u'rogu', u'trade', u'authoris'] [u'investig', u'result', u'februari'] [u'nalbandian', u'face', u'agassi', u'kooyong', u'final'] [u'crimin', u'punish', u'scheme', u'test'] [u'chopper', u'help', u'canberra', u'defenc'] [u'polic', u'train', u'program', u'plan', u'alic'] [u'technolog', u'help', u'save', u'water'] [u'zealand', u'bowler', u'mill', u'escap', u'fine'] [u'niue', u'unlik', u'host', u'pacif', u'island', u'forum'] [u'rail', u'boss', u'face', u'disciplinari', u'action'] [u'rail', u'manag', u'sack', u'waterfal', u'disast'] [u'teach', u'posit', u'fill', u'fast'] [u'nurs', u'home', u'staff', u'ask', u'strike'] [u'tedi', u'suit', u'drop'] [u'olyroo', u'crush'] [u'oneil', u'claim', u'miracl', u'fifth', u'time', u'trial', u'crown'] [u'femal', u'democrat', u'presidenti', u'candid'] [u'oversea', u'bear', u'aussi', u'prefer', u'capit'] [u'pakistan', u'india', u'rail', u'link', u'resum', u'year'] [u'parmalat', u'bank', u'draw', u'probe', u'report'] [u'petit', u'seek', u'speed', u'limit', u'review'] [u'play', u'resum', u'sydney', u'intern'] [u'poison', u'think', u'wildlif', u'death'] [u'polic', u'identifi', u'drown', u'victim'] [u'polic', u'look', u'miss', u'caloundra'] [u'polic', u'raid', u'home', u'sydney'] [u'pont', u'win', u'toss', u'hobart'] [u'public', u'warn', u'virus'] [u'queanbeyan', u'council', u'pledg', u'park', u'facelift'] [u'rail', u'delay', u'play', u'sydney', u'intern'] [u'rain', u'bring', u'relief', u'parch', u'southern'] [u'rain', u'trigger', u'northern', u'flood', u'watch'] [u'rann', u'govern', u'accus', u'break', u'elect'] [u'region', u'upbeat', u'amidst', u'tough', u'time'] [u'remain', u'vietnam', u'soldier', u'return'] [u'renew', u'energi', u'target', u'track', u'report'] [u'renmark', u'rural', u'clinic', u'school', u'get', u'fund', u'boost'] [u'reprocess', u'fuel', u'rod', u'north', u'korea'] [u'republ', u'gold', u'asx'] [u'resid', u'home', u'chlorin', u'leak'] [u'sack', u'foreign', u'minist', u'nkorea', u'polici'] [u'rover', u'roll', u'martian', u'surfac'] [u'santa', u'maria', u'invad', u'jackson'] [u'sar', u'virus', u'civet', u'cage'] [u'rule', u'time', u'chang', u'commonwealth', u'game'] [u'scientist', u'hope', u'platypus', u'diseas', u'vaccin'] [u'seven', u'iraqi', u'shoot', u'dead', u'soldier'] [u'shackl', u'cassano', u'roman', u'conquest', u'say'] [u'shuttl', u'defend', u'bolster', u'celtic', u'titl', u'charg'] [u'korea', u'name', u'veteran', u'diplomat', u'foreign', u'minist'] [u'soar', u'aussi', u'beef', u'price', u'threaten', u'japanes', u'sale'] [u'solomon', u'internet', u'provid', u'appeal', u'custom'] [u'south', u'africa', u'gun', u'australia', u'crown', u'say'] [u'star', u'investor'] [u'strong', u'king', u'island', u'milk'] [u'summit', u'pledg', u'mass', u'immunis', u'polio'] [u'support', u'urg', u'wolv'] [u'suspend', u'atsic', u'chairman', u'appeal', u'reinstat'] [u'sydney', u'mental', u'health', u'facil', u'scrutini'] [u'sydney', u'rail', u'delay', u'expect', u'waterfal', u'probe'] [u'tasmanian', u'council', u'divid', u'propos', u'reform'] [u'opposit', u'seiz', u'leak', u'prison', u'report'] [u'thomson', u'flood', u'peak', u'revis'] [u'kill', u'student', u'hit', u'iraq'] [u'thwait', u'ask', u'decis', u'duck', u'season'] [u'toddler', u'kill', u'sydney', u'polic', u'pursuit'] [u'todt', u'confid', u'french', u'green', u'light'] [u'tough', u'open', u'start', u'scud', u'larkham'] [u'transform', u'blast', u'black', u'town'] [u'tree', u'put', u'pay', u'vatanen', u'dakar'] [u'trucki', u'court', u'drug', u'charg'] [u'tszyu', u'call', u'titl', u'fight'] [u'dead', u'wound', u'brawl', u'indonesia', u'lombok'] [u'refus', u'confirm', u'china', u'claim'] [u'releas', u'kelli', u'report'] [u'ulladulla', u'say', u'goodby', u'plastic', u'bag'] [u'ultralight', u'pilot', u'make', u'forc', u'land'] [u'deleg', u'east', u'timor', u'return', u'home'] [u'univers', u'support', u'boost', u'number', u'rural', u'doctor'] [u'econom', u'data', u'boost', u'greenback'] [u'object', u'trade', u'sanction'] [u'propos', u'defenc', u'train', u'facil', u'australia'] [u'weapon', u'hunter', u'wont', u'return', u'iraq', u'report'] [u'venezuela', u'decriminalis', u'theft'] [u'govt', u'make', u'chang', u'disabl', u'taxi', u'subsidi'] [u'mainten', u'work', u'caus', u'disrupt'] [u'waterfal', u'find', u'respons', u'inadequ'] [u'water', u'restrict', u'loom', u'break', u'hill'] [u'water', u'shortag', u'reduc', u'plant'] [u'indigen', u'communiti'] [u'town', u'fight', u'salin'] [u'watt', u'nomin', u'screen', u'actor', u'guild', u'award'] [u'waugh', u'lead'] [u'urg', u'workplac', u'caution', u'death'] [u'accus', u'hold', u'malaria', u'drug'] [u'kill', u'colonel', u'door'] [u'wolv', u'newcastl', u'notch', u'win'] [u'wolv', u'newcastl', u'stay', u'aliv'] [u'wolv', u'seek', u'turn', u'premiership', u'hierarchi', u'upsid'] [u'woman', u'court', u'stab'] [u'work', u'begin', u'meatwork', u'revamp'] [u'workplac', u'death', u'spark', u'safeti', u'remind'] [u'world', u'media', u'urg', u'fight', u'aid'] [u'zimbabw', u'rope'] [u'opposit', u'call', u'independ', u'child', u'abus'] [u'actor', u'cruis', u'play', u'cupid', u'portugues', u'coupl'] [u'allan', u'grab', u'hawaii', u'lead', u'miss'] [u'allan', u'seiz', u'hawaii', u'clubhous', u'lead'] [u'alleg', u'bali', u'paedophil', u'aust', u'diplomat'] [u'antarct', u'divis', u'seek', u'women', u'worker'] [u'arrest', u'diplomat', u'previous', u'investig'] [u'australian', u'miss', u'go', u'overboard'] [u'beatti', u'find', u'campaign', u'charact', u'build'] [u'beatti', u'springborg', u'fight', u'underdog', u'status'] [u'black', u'recov', u'flash', u'airlin', u'boe'] [u'black', u'cap', u'post', u'record', u'score', u'pakistan'] [u'black', u'cap', u'thriller'] [u'british', u'woman', u'win', u'right', u'appeal'] [u'brown', u'urg', u'greater', u'educ', u'fund'] [u'bull', u'blue'] [u'butt', u'unavoid', u'say', u'ferguson'] [u'camplin', u'retain', u'number', u'spot'] [u'canberra', u'bushfir', u'exhibit', u'open'] [u'china', u'arrest', u'explos'] [u'china', u'confirm', u'sar', u'case'] [u'coalit', u'promis', u'return', u'polic', u'queen', u'street'] [u'compani', u'cut', u'heaven', u'link'] [u'controversi', u'mar', u'suarez', u'canberra'] [u'countri', u'music', u'lover', u'brave', u'delug', u'tamworth'] [u'coupl', u'escap', u'burn', u'home'] [u'rossi', u'name', u'itali', u'captain', u'england', u'clash'] [u'ettridg', u'plan', u'book', u'expos', u'shenanigan'] [u'urg', u'rapid', u'action', u'save', u'endang', u'speci'] [u'expert', u'disput', u'claim', u'emiss', u'harm', u'rock'] [u'team', u'agre', u'french', u'grand', u'prix'] [u'fear', u'prison', u'unrest', u'amid', u'unit', u'closur'] [u'ferdinand', u'appeal', u'start', u'tuesday'] [u'german', u'court', u'give', u'worker', u'boot'] [u'gilchrist', u'predict', u'doubl'] [u'girl', u'stab', u'death'] [u'global', u'health', u'bodi', u'deni', u'malpractic', u'malaria'] [u'govt', u'award', u'fair', u'compens', u'rail', u'oper'] [u'govt', u'renew', u'energi', u'target', u'pathet'] [u'green', u'pleas', u'poll'] [u'henin', u'hardenn', u'claim', u'sydney', u'crown'] [u'histori', u'train', u'reach', u'darwin'] [u'hobart', u'cheapest', u'live', u'report'] [u'houllier', u'insist', u'heskey', u'sale'] [u'howard', u'meet', u'defenc', u'personnel'] [u'hrbati', u'take', u'titl'] [u'hunt', u'springbok', u'coach', u'throw', u'wide', u'open'] [u'iranian', u'demand', u'revers', u'elect', u'ban'] [u'iraq', u'bind', u'japanes', u'troop', u'arriv', u'kuwait'] [u'irrit', u'spray', u'forc', u'pub', u'evacu'] [u'israel', u'sweden', u'envoy', u'attack', u'suicid', u'bomber'] [u'jackson', u'enter', u'guilti', u'plea'] [u'johnson', u'announc', u'retir'] [u'katherin', u'celebr', u'railway', u'link'] [u'kookaburra', u'face', u'tough', u'task', u'pakistan'] [u'latham', u'back', u'premier', u'medicar', u'elect', u'platform'] [u'lebanon', u'execut', u'prison', u'year'] [u'longreach', u'spar', u'major', u'flood'] [u'lord', u'mayor', u'pull', u'sydney', u'elect'] [u'question', u'teen', u'stab'] [u'mar', u'rover', u'get', u'busi'] [u'refus', u'bail', u'million', u'dollar', u'drug', u'bust'] [u'moya', u'injuri', u'hand', u'hewitt', u'sydney'] [u'moya', u'injuri', u'hand', u'sydney', u'hewitt'] [u'say', u'rain', u'relief', u'despit', u'flood'] [u'nalbandian', u'captur', u'kooyong', u'classic'] [u'nalbandian', u'dethron', u'agassi', u'king', u'kooyong'] [u'nasa', u'decre', u'earli', u'demis', u'hubbl', u'telescop'] [u'zealand', u'toss', u'bat', u'pakistan'] [u'kill', u'injur', u'baghdad', u'bomb', u'blast'] [u'pakistan', u'presid', u'demand', u'holi'] [u'pari', u'dakar', u'masuoka', u'triumph', u'peterhansel', u'stay'] [u'pari', u'london', u'look', u'landmark', u'olymp', u'bid'] [u'pelous', u'captain', u'franc'] [u'postal', u'worker', u'threaten', u'strike', u'wag'] [u'powel', u'maintain', u'saddam', u'threat'] [u'price', u'right', u'open'] [u'razorback', u'dodg', u'bullet'] [u'cross', u'disappoint', u'guantanamo', u'condit'] [u'river', u'fishway', u'point', u'migrat'] [u'roddick', u'pull', u'kooyong', u'play'] [u'rumford', u'cape', u'town'] [u'samoa', u'seek', u'formal', u'abolish', u'death', u'penalti'] [u'singapor', u'defend', u'execut', u'polici'] [u'sixteen', u'migrant', u'drown', u'spanish', u'island'] [u'smith', u'gibb', u'share', u'record', u'south', u'africa', u'spree'] [u'south', u'africa', u'declar', u'drought', u'disast', u'area'] [u'spirit', u'breaker', u'post', u'comfort', u'win'] [u'stoddart', u'float', u'seater', u'celeb', u'race'] [u'strong', u'wind', u'strand', u'gold', u'coast', u'theme', u'park'] [u'surf', u'indi', u'filmmak', u'sundanc', u'festiv'] [u'tamworth', u'camper', u'move', u'flood', u'alert'] [u'tech', u'stock', u'boost', u'market'] [u'teen', u'stab', u'spark', u'manhunt', u'brisban'] [u'wive', u'club', u'author', u'die', u'plastic'] [u'thousand', u'street', u'support', u'hama'] [u'civilian', u'kill', u'iraq', u'blast'] [u'iraqi', u'soldier', u'kill', u'roadsid', u'bomb'] [u'kashmir', u'rebel', u'leader', u'kill', u'indian', u'forc'] [u'tourist', u'rescu', u'theme', u'park', u'chairlift'] [u'train', u'near', u'darwin', u'histor', u'journey'] [u'host', u'quit', u'arab'] [u'kill', u'crash'] [u'consid', u'modifi', u'iraq', u'handov', u'plan'] [u'expect', u'deal', u'satellit', u'navig'] [u'probe', u'abus', u'iraqi', u'prison'] [u'fact', u'find', u'team', u'iraq', u'disput'] [u'veron', u'fli', u'home', u'treatment'] [u'vietnam', u'order', u'mass', u'chicken', u'cull', u'control', u'bird'] [u'nurs', u'face', u'rise', u'tide', u'violenc'] [u'waterfal', u'sack', u'cover'] [u'woodbridg', u'make', u'histori', u'sydney'] [u'woodbridg', u'start', u'drive', u'doubl', u'record'] [u'wood', u'pull', u'cycl', u'doubl'] [u'world', u'record', u'holder', u'jacob', u'posit', u'test'] [u'world', u'social', u'forum', u'open', u'anti'] [u'young', u'nadal', u'fire', u'shot', u'zealand'] [u'investig', u'australian', u'accus', u'child'] [u'allan', u'fade', u'fifth', u'hawaii'] [u'anwar', u'support', u'protest', u'jail'] [u'aussi', u'run', u'wicket'] [u'author', u'urg', u'parent', u'bewar', u'rise'] [u'beatti', u'promis', u'health', u'fund', u'boost'] [u'beatti', u'vow', u'tree', u'clear'] [u'beckham', u'tell', u'real', u'butt', u'report'] [u'berlusconi', u'doctor', u'confirm', u'facelift'] [u'blast', u'destroy', u'muslim', u'name', u'french'] [u'breaker', u'chase', u'second'] [u'bushrang', u'hold', u'redback'] [u'clijster', u'confirm', u'open'] [u'clone', u'child', u'suffer', u'health', u'problem'] [u'ahead', u'rare', u'plant', u'speci'] [u'elder', u'woman', u'die', u'hous'] [u'england', u'skipper', u'johnson', u'quit', u'intern', u'rugbi'] [u'farmer', u'anger', u'beatti', u'tree', u'clear', u'promis'] [u'flood', u'fail', u'dampen', u'tamworth', u'spirit'] [u'flood', u'eas', u'northern'] [u'kill', u'injur', u'locomot', u'hit', u'train'] [u'franc', u'find', u'second', u'black', u'crash'] [u'french', u'minist', u'slam', u'headscarf', u'demonstr'] [u'frigid', u'winter', u'put', u'north', u'eastern', u'deep', u'freez'] [u'german', u'anatomist', u'execut', u'chines', u'prison'] [u'gibb', u'kalli', u'record', u'protea', u'domin'] [u'glori', u'extend', u'lead'] [u'granvill', u'memori', u'honour', u'waterfal', u'victim'] [u'hansen', u'lile', u'share', u'south', u'african', u'open', u'lead', u'rumford'] [u'harvey', u'gillespi', u'australia'] [u'hewitt', u'pleas', u'open', u'build'] [u'histori', u'make', u'train', u'get', u'busi'] [u'holling', u'sue', u'conrad', u'black', u'million'] [u'step', u'illeg', u'bet'] [u'india', u'set', u'record', u'total'] [u'indigen', u'peopl', u'reap', u'job', u'rail', u'link'] [u'inquiri', u'criticis', u'britain', u'anti', u'terror', u'polici'] [u'israel', u'open', u'gaza', u'cross', u'suicid', u'bomb'] [u'japanes', u'militari', u'equip', u'arriv', u'kuwait'] [u'kleinschmidt', u'sainct', u'reach', u'dakar'] [u'labor', u'pledg', u'volunt', u'coastguard'] [u'latham', u'plan', u'scheme', u'foreign', u'worker'] [u'laxman', u'dravid', u'lead', u'indian', u'charg'] [u'laxman', u'lead', u'india', u'victori'] [u'leed', u'rock', u'wolv', u'bite'] [u'die', u'dive', u'accid', u'portsea'] [u'drown', u'victor', u'harbour'] [u'drown', u'coast'] [u'memori', u'servic', u'honour', u'victim', u'granvill'] [u'modena', u'dampen', u'lazio', u'relief'] [u'museum', u'loss', u'indigen', u'remain', u'reveal'] [u'declar', u'north', u'west', u'disast', u'zone'] [u'face', u'vic', u'women', u'cricket', u'final'] [u'offici', u'probe', u'prison', u'overdos'] [u'year', u'canberra', u'recal', u'bushfir', u'loss'] [u'pakistan', u'detain', u'aid', u'countri', u'nuclear', u'bomb'] [u'pakistan', u'ahm', u'report', u'suspect', u'action'] [u'polic', u'arrest', u'shoot'] [u'polic', u'hunt', u'gangland', u'shoot'] [u'polic', u'question', u'sydney', u'shoot'] [u'polic', u'question', u'algerian', u'journalist'] [u'press', u'attack', u'jackson', u'street', u'antic'] [u'price', u'pip', u'heaven', u'titl'] [u'prison', u'take', u'hospit', u'suspect', u'overdos'] [u'prison', u'offic', u'critic', u'opposit', u'leak'] [u'public', u'servant', u'threaten', u'stop', u'politician'] [u'flood', u'level', u'expect', u'peak'] [u'opposit', u'unveil', u'health', u'polici'] [u'qlds', u'central', u'west', u'brace', u'flood', u'peak'] [u'redback', u'chase'] [u'govt', u'vow', u'continu', u'fight', u'wast', u'dump'] [u'sceptic', u'greet', u'clone'] [u'second', u'firm', u'sign', u'adelaid', u'darwin', u'trade'] [u'selector', u'inspect', u'gabba', u'name', u'team'] [u'sharon', u'back', u'ambassador', u'action', u'suicid'] [u'sorenstam', u'target', u'calendar', u'grand', u'slam', u'reduc'] [u'strong', u'finish', u'popey', u'turn'] [u'struggl', u'ranger', u'titl', u'hop', u'aliv'] [u'suicid', u'bomber', u'strike', u'outsid', u'baghdad'] [u'sydney', u'hospit', u'donat', u'run', u'cost'] [u'sydney', u'muslim', u'join', u'protest', u'french'] [u'teenag', u'rescu', u'cliff', u'fall'] [u'teen', u'arrest', u'crash', u'steal'] [u'thoma', u'berlin', u'swim', u'meet'] [u'thousand', u'march', u'pari', u'anti', u'nuclear', u'protest'] [u'thousand', u'protest', u'london', u'islam'] [u'tourist', u'tell', u'pain', u'trek', u'break', u'ankl'] [u'blast', u'rock', u'lebanon', u'camp', u'tens', u'execut'] [u'iraqi', u'kill', u'explos', u'devic', u'deton'] [u'women', u'injur', u'hit', u'power', u'pole'] [u'test', u'cow', u'suspect', u'import'] [u'troop', u'iraq', u'offici'] [u'valencia', u'barca', u'squander', u'point'] [u'vatican', u'host', u'reconcili', u'concert'] [u'vic', u'melbourn'] [u'woodbridg', u'target', u'newcomb', u'slam', u'talli'] [u'wwii', u'aerial', u'photograph', u'internet'] [u'accid', u'investig', u'underway'] [u'airlin', u'investig', u'cabin', u'fume', u'mysteri'] [u'come', u'polli', u'make', u'offic', u'spot'] [u'qaeda', u'suspect', u'arrest', u'pakistan'] [u'altern', u'sewerag', u'pipelin', u'plan', u'win', u'support'] [u'alumina', u'refineri', u'object', u'discuss'] [u'ambassador', u'attack', u'draw', u'sweden'] [u'anderson', u'angri', u'beatti', u'land', u'clear', u'pledg'] [u'anxious', u'wait', u'univers', u'offer'] [u'arm', u'hold', u'trigger', u'polic', u'manhunt'] [u'arsenal', u'controversi', u'villa'] [u'aust', u'firm', u'forefront', u'mar', u'research'] [u'aust', u'firm', u'share', u'iraq', u'contract'] [u'author', u'probe', u'south', u'east', u'fish', u'kill'] [u'author', u'probe', u'suspect', u'jail', u'drug', u'overdos'] [u'baghdad', u'suicid', u'bomb', u'death', u'toll', u'like', u'rise'] [u'barclay', u'brother', u'black', u'newspap', u'stake'] [u'bendigo', u'resid', u'decid', u'univers', u'futur'] [u'birdi', u'blitz', u'steer', u'immelman', u'south', u'african', u'titl'] [u'bomb', u'scare', u'forc', u'bind', u'plane', u'divert'] [u'boost', u'indigen', u'geraldton'] [u'bouncer', u'charg', u'hook', u'fight', u'life'] [u'bush', u'space', u'plan', u'get', u'thumb'] [u'calm', u'offer'] [u'camplin', u'gold', u'lead', u'aussi', u'charg'] [u'cancer', u'survivor', u'wilson', u'take', u'cycl', u'titl'] [u'carl', u'tag', u'vickeri', u'england', u'skipper'] [u'cautious', u'reaction', u'highway', u'fund', u'talk'] [u'celtic', u'stay', u'clear', u'battl', u'heart'] [u'chechen', u'claim', u'shes', u'world', u'oldest'] [u'code', u'conduct', u'launch', u'lobster', u'fishermen'] [u'consum', u'urg', u'conserv', u'power'] [u'council', u'boundari', u'review', u'underway'] [u'court', u'tell', u'detect', u'profession'] [u'cricket', u'gather', u'bendigo', u'competit'] [u'cricket', u'world', u'mourn', u'loss', u'david', u'hook'] [u'croc', u'victori', u'breaker'] [u'csiro', u'warn', u'increas', u'temperatur'] [u'david', u'hook', u'precoci', u'prolif'] [u'deadlin', u'loom', u'doctor', u'regist'] [u'demand', u'rise', u'welfar', u'support'] [u'diana', u'crash', u'wit', u'say', u'involv'] [u'dog', u'bark', u'help', u'rescu', u'owner'] [u'dollar', u'dip'] [u'donat', u'flow', u'victim'] [u'downer', u'defend', u'diplomat', u'child', u'probe'] [u'down', u'farmer', u'warn', u'rise', u'mous', u'number'] [u'drown', u'investig', u'begin'] [u'educ', u'union', u'push', u'public', u'school', u'fund'] [u'elli', u'possibl', u'final', u'swift'] [u'defend', u'hawaiian', u'titl', u'foot', u'birdi'] [u'entri', u'mark', u'increas', u'cours', u'deakin'] [u'govt', u'flag', u'road', u'rail'] [u'fifth', u'bird', u'death', u'confirm', u'vietnam'] [u'firefight', u'test', u'safeti', u'gear'] [u'fishermen', u'accus', u'kill', u'eat', u'whale'] [u'flood', u'woe', u'eas', u'highway', u'begin', u'reopen'] [u'forecast', u'say', u'job', u'growth', u'peak'] [u'test', u'player', u'hook', u'critic', u'hotel'] [u'arrest', u'drug', u'charg'] [u'french', u'retriev', u'egypt', u'plane', u'blackbox'] [u'fume', u'caus', u'ill', u'melbourn', u'adelaid', u'flight'] [u'crisi', u'like', u'worsen', u'govt'] [u'gingin', u'concern', u'reduc', u'flow', u'local', u'brook'] [u'govt', u'contribut', u'bushfir', u'recoveri'] [u'govt', u'deni', u'public', u'advertis', u'blitz'] [u'greek', u'anti', u'hooligan', u'rule', u'spark', u'soccer', u'brawl'] [u'greek', u'coastguard', u'arrest', u'migrant'] [u'green', u'light', u'give', u'supermarket', u'develop'] [u'guccion', u'open', u'round'] [u'gympi', u'gold', u'receiv', u'sell', u'eldorado', u'mine'] [u'hayden', u'india', u'match'] [u'hollywood', u'produc', u'stark', u'die'] [u'hong', u'kong', u'group', u'bid', u'produc'] [u'hous', u'financ', u'figur', u'fall'] [u'howard', u'send', u'sympathi', u'hook', u'famili'] [u'icpa', u'unhappi', u'internet', u'access'] [u'india', u'russian', u'aircraft', u'carrier'] [u'inquiri', u'like', u'hear', u'hospit', u'mistreat'] [u'investig', u'begin', u'dreamworld', u'chair', u'lift'] [u'investig', u'urg', u'coal', u'ship', u'queue'] [u'iraq', u'reconstruct', u'contract', u'offer', u'fair'] [u'israel', u'armi', u'destroy', u'milit', u'hous', u'report'] [u'israel', u'arrest', u'islam', u'jihad', u'offici'] [u'isra', u'ambassador', u'get', u'attack', u'explain'] [u'japanes', u'defend', u'iraqi', u'troop', u'deploy'] [u'japan', u'urg', u'drop', u'beef', u'tariff'] [u'judg', u'consid', u'extradit', u'child', u'case'] [u'katich', u'replac', u'hayden', u'india', u'match'] [u'king', u'outclass', u'giant'] [u'knight', u'unit', u'play', u'draw'] [u'kookaburra', u'laugh'] [u'labor', u'oppos', u'park', u'plan'] [u'lack', u'place', u'rais', u'labor'] [u'leed', u'stave', u'administr'] [u'life', u'sentenc', u'push', u'bali', u'bomber', u'ghoni'] [u'load', u'begin', u'live', u'sheep', u'shipment'] [u'longreach', u'resid', u'escap', u'flood'] [u'charg', u'hook', u'fight', u'life'] [u'die', u'danger', u'swim', u'spot'] [u'front', u'court', u'girlfriend', u'slay'] [u'marathon', u'ralli', u'car', u'stopov', u'roma'] [u'mayor', u'question', u'council', u'merger', u'approv', u'process'] [u'west', u'properti'] [u'minist', u'decid', u'airport', u'control', u'tower'] [u'mount', u'stromlo', u'insur', u'disput', u'settl'] [u'defend', u'absenc', u'protest', u'ralli'] [u'estim', u'rogu', u'trade', u'loss'] [u'newcastl', u'round', u'offer'] [u'hospit', u'fume', u'caus', u'ill'] [u'health', u'crisi'] [u'student', u'keen', u'nurs'] [u'weak', u'usag', u'survey'] [u'ogradi', u'team', u'french', u'dope', u'swoop'] [u'oppon', u'senat', u'reject', u'medicar', u'plus'] [u'pakistan', u'arrest', u'seven', u'qaeda', u'suspect'] [u'paramed', u'lurch', u'chang'] [u'parmalat', u'financ', u'chief', u'return', u'work'] [u'perth', u'base', u'weight', u'loss', u'compani', u'shape'] [u'peterhansel', u'complet', u'doubl', u'dakar', u'glori'] [u'philippin', u'downplay', u'terror', u'warn'] [u'plan', u'underway', u'balloon', u'open'] [u'polic', u'arrest', u'second', u'william', u'sister', u'murder', u'suspect'] [u'polic', u'probe', u'nation', u'park', u'drown'] [u'pont', u'defend'] [u'prais', u'indigen', u'burial', u'survey'] [u'pratt', u'score', u'upset', u'melbourn'] [u'presidenti', u'race', u'heat', u'democrat'] [u'propos', u'council', u'merger', u'refer', u'auditor', u'general'] [u'public', u'ask', u'help', u'miss', u'teen'] [u'elect', u'focus', u'turn', u'order'] [u'quinn', u'quell', u'talk', u'disquiet', u'seat'] [u'rain', u'forecast', u'continu'] [u'real', u'save', u'face', u'miss', u'spot'] [u'retrench', u'worker', u'optimist'] [u'rise', u'river', u'expect', u'spark', u'flood'] [u'road', u'rail', u'intersect', u'microscop'] [u'saha', u'agre', u'principl'] [u'scientist', u'sing', u'boost', u'immun'] [u'shoot', u'anti', u'govern', u'march', u'haiti'] [u'south', u'east', u'asian', u'minist', u'talk', u'region'] [u'state', u'rail', u'fin', u'worker', u'injuri'] [u'africa', u'wicket', u'inning', u'victori'] [u'studi', u'highlight', u'pollut', u'impact', u'dolphin'] [u'survey', u'highlight', u'northern', u'polic', u'dissatisfact'] [u'survey', u'reveal', u'pear', u'grower', u'loss'] [u'homeless', u'give', u'tent', u'live'] [u'teenag', u'hospit', u'follow', u'arm', u'robberi'] [u'thirteen', u'wound', u'bomb', u'attack', u'iraqi', u'holi', u'citi'] [u'seed', u'melbourn'] [u'totti', u'keep', u'record', u'break', u'roma'] [u'unemploy', u'benefit', u'number', u'decreas'] [u'univers', u'increas', u'student', u'offer'] [u'urg', u'return', u'iraq'] [u'beef', u'pass', u'australian'] [u'gain', u'flow'] [u'pull', u'troop', u'seoul'] [u'vail', u'hop', u'free', u'trade', u'deal', u'soon'] [u'vineyard', u'owner', u'wari', u'white', u'wine', u'product'] [u'vote', u'ahead', u'despit', u'flood'] [u'growth', u'forecast', u'shine'] [u'warwick', u'top', u'cheap', u'petrol'] [u'watchdog', u'find', u'aircraft', u'near', u'miss'] [u'water', u'restrict', u'tighten'] [u'weather', u'forc', u'tasmania'] [u'webber', u'say', u'champion'] [u'woman', u'die', u'paraglid', u'mishap'] [u'miss', u'capsiz', u'freighter'] [u'adelaid', u'eye', u'disgruntl', u'glori', u'hitman', u'mori'] [u'stick', u'vote', u'strategi'] [u'anderson', u'safeti', u'opposit', u'say'] [u'angler', u'warn', u'follow', u'fish', u'kill'] [u'armi', u'base', u'chief', u'happi', u'train', u'cours'] [u'aussi', u'cricket', u'team', u'stun', u'hook', u'death'] [u'aussi', u'cricket', u'team', u'stun', u'hook', u'death'] [u'australian', u'open', u'result'] [u'australian', u'chair', u'human', u'right', u'commiss'] [u'beetl', u'threaten', u'cauliflow', u'crop'] [u'blast', u'indonesian', u'chemic', u'plant', u'injur'] [u'injur', u'accid'] [u'britain', u'probe', u'infant', u'death'] [u'bushrang', u'match', u'call', u'cricket', u'world'] [u'busi', u'leader', u'stamp', u'duti'] [u'centurion', u'gayl', u'sarwan', u'save', u'windi'] [u'charg', u'killer', u'parent', u'justifi', u'court'] [u'check', u'space', u'station', u'leak'] [u'chines', u'economi', u'continu', u'surg'] [u'chines', u'polic', u'arrest', u'child', u'traffic'] [u'chopper', u'improv', u'firefight'] [u'churchil', u'parrot', u'aliv'] [u'clijster', u'stroll', u'melbourn'] [u'communiti', u'await', u'fatal', u'report'] [u'concern', u'rais', u'bushfir'] [u'cooper', u'fail', u'regain', u'passport'] [u'coron', u'say', u'patient', u'death', u'unavoid'] [u'council', u'question', u'boundari', u'propos'] [u'council', u'decid', u'duyfken', u'journey'] [u'council', u'spend', u'sewerag', u'project'] [u'decreas', u'appl', u'product'] [u'democrat', u'support', u'bush', u'oppon'] [u'detent', u'centr', u'detaine', u'complain', u'miss'] [u'diamond', u'cow', u'best', u'friend'] [u'dip', u'dollar', u'boost', u'major', u'stock'] [u'owner', u'warn', u'leav', u'anim'] [u'drunken', u'eleph', u'electrocut', u'india'] [u'duck', u'hunt', u'season', u'draw'] [u'negoti', u'continu', u'power', u'station'] [u'kill', u'separatist', u'violenc', u'india'] [u'eleventh', u'arrest', u'parmalat', u'probe'] [u'team', u'threaten', u'boycott', u'european', u'race'] [u'ferdinand', u'appeal', u'suspens'] [u'ferguson', u'play', u'wolv', u'defeat'] [u'firefight', u'chopper', u'head'] [u'fire', u'investig'] [u'sar', u'vaccin', u'test'] [u'flood', u'continu', u'western', u'queensland'] [u'flood', u'isol', u'border', u'town'] [u'flood', u'reignit', u'debat', u'road'] [u'battl', u'claim', u'live', u'sudan', u'report'] [u'freak', u'accid', u'leav', u'hospit'] [u'german', u'doctor', u'face', u'corps', u'disput'] [u'gippsland', u'fin', u'snake', u'collect'] [u'govt', u'defend', u'purchas', u'second', u'machin'] [u'govt', u'energi', u'panel', u'recommend', u'criticis'] [u'govt', u'ambul', u'servic', u'break'] [u'green', u'candid', u'withhold', u'prefer'] [u'grow', u'prawn', u'industri', u'benefit', u'west'] [u'heatwav', u'predict', u'exagger', u'research', u'say'] [u'hewitt', u'arthur', u'reid', u'melbourn'] [u'hewitt', u'curs', u'strike', u'mamiit'] [u'historian', u'seek', u'help', u'sink', u'ship'] [u'holling', u'share', u'rise', u'market', u'reserv'] [u'hook', u'death', u'prompt', u'secur', u'review'] [u'hop', u'fade', u'norway', u'capsiz', u'victim'] [u'weather', u'spark', u'victorian', u'warn'] [u'hussey', u'play'] [u'india', u'bat', u'gabba'] [u'indigen', u'candid', u'challeng', u'beatti'] [u'inquest', u'probe', u'prison', u'death'] [u'inquiri', u'look', u'rural', u'subdivis'] [u'interim', u'settlement', u'reach', u'drug', u'overdos', u'case'] [u'isra', u'oppn', u'leader', u'secret', u'meet'] [u'isra', u'soldier', u'kill', u'lebanon', u'border', u'blast'] [u'israel', u'boycott', u'genocid', u'meet', u'artwork'] [u'israel', u'target', u'hama', u'cleric', u'liquid'] [u'japanes', u'troop', u'enter', u'southern', u'iraq'] [u'jewish', u'settler', u'oppos', u'armi', u'outpost'] [u'katich', u'keen', u'impress'] [u'kerri', u'score', u'surpris', u'iowa'] [u'labor', u'issu', u'warn', u'medicar', u'inquiri'] [u'labor', u'miss', u'green', u'prefer', u'north'] [u'leed', u'give', u'week', u'repriev', u'creditor'] [u'lift', u'rapist', u'give', u'life', u'attack', u'australian'] [u'accus', u'nazi', u'massacr', u'involv'] [u'charg', u'partner', u'death'] [u'charg', u'stab'] [u'mcewen', u'claim', u'stage', u'amid', u'tour'] [u'mcewen', u'claim', u'tour', u'stage'] [u'mental', u'test', u'accus', u'kill', u'swedish'] [u'mildura', u'campus', u'make', u'round', u'offer'] [u'moratti', u'resign', u'inter', u'presid'] [u'happi', u'broadcast', u'decis'] [u'mundin', u'retain', u'super', u'middleweight', u'titl'] [u'mundin', u'retain', u'titl'] [u'nation', u'ditch', u'candid', u'domest', u'violenc'] [u'newcastl', u'climb', u'fifth', u'fulham'] [u'north', u'korea', u'unimpress', u'japan', u'troop', u'deploy'] [u'health', u'studi', u'focus', u'age', u'popul'] [u'indigen', u'student', u'offer', u'scholarship'] [u'politician', u'attack', u'howard', u'school', u'stanc'] [u'nuclear', u'watchdog', u'play', u'role', u'libya', u'disarma'] [u'numbat', u'escap'] [u'pair', u'face', u'court', u'cannabi'] [u'paramed', u'face'] [u'park', u'telescop', u'find', u'doubl', u'pulsar'] [u'paroo', u'flood', u'level', u'expect', u'increas'] [u'philippin', u'offici', u'slay', u'mayor', u'wound', u'attack'] [u'philippoussi', u'clijster', u'second', u'round'] [u'philippoussi', u'surviv', u'nail', u'bite'] [u'pilot', u'reject', u'incid', u'danger'] [u'plummer', u'tip', u'reduc', u'captainci', u'contract'] [u'spark', u'debat', u'public', u'school', u'valu'] [u'privat', u'school', u'stanc', u'disgrac', u'union'] [u'vote', u'year', u'term'] [u'polic', u'deni', u'live', u'risk', u'follow', u'alert'] [u'polic', u'investig', u'theft', u'cash', u'nurseri'] [u'polic', u'probe', u'hendon', u'death'] [u'polic', u'worri', u'miss', u'sydney', u'woman'] [u'polit', u'bias', u'charg', u'african'] [u'polit', u'correct', u'privat', u'school'] [u'polit', u'slow', u'interst', u'anim', u'shipment'] [u'pratt', u'lead', u'australian', u'charg'] [u'public', u'help', u'seek', u'arm', u'robberi'] [u'pyongyang', u'call', u'korea', u'unit'] [u'parti', u'decid', u'prefer'] [u'premier', u'apologis', u'lobotomi', u'jibe'] [u'racv', u'call', u'commonwealth', u'fund', u'highway'] [u'railcorp', u'pan', u'secur', u'camera', u'propos'] [u'record', u'number', u'team', u'cricket', u'comp'] [u'region', u'student', u'appli', u'place'] [u'reid', u'rusedski', u'crash'] [u'resid', u'oppos', u'hour', u'servic', u'centr'] [u'rockhampton', u'rugbi', u'union', u'player', u'prepar'] [u'fund', u'take', u'govt', u'own', u'corpor'] [u'biotech', u'compani', u'administr'] [u'saha'] [u'sharon', u'warn', u'golan', u'height'] [u'sheep', u'ship', u'readi', u'head', u'kuwait'] [u'ship', u'capsiz', u'freez', u'water', u'norway'] [u'shire', u'eas', u'water', u'restrict'] [u'small', u'town', u'miss', u'court', u'sit'] [u'soldier', u'arrest', u'palestinian', u'west', u'bank'] [u'spammer', u'mail', u'virus', u'surfac'] [u'springborg', u'promis', u'referendum', u'year', u'term'] [u'stanhop', u'defend', u'chief', u'child', u'protect', u'inquiri'] [u'survey', u'highlight', u'increas', u'welfar', u'need'] [u'survey', u'determin', u'coastal', u'safeti', u'knowledg'] [u'synchrotron', u'construct', u'track', u'melbourn'] [u'govt', u'refus', u'live', u'sheep', u'export'] [u'teenag', u'cyclist', u'kill', u'collis'] [u'tendulkar', u'doubt', u'india'] [u'kingz', u'conquer', u'wolv'] [u'crew', u'rescu', u'capsiz', u'norwegian', u'cargo'] [u'youngster', u'domin'] [u'train', u'driver', u'shatter', u'gnome', u'prank'] [u'tribut', u'flow', u'david', u'hook'] [u'trust', u'push', u'ahead', u'meander', u'appeal'] [u'dead', u'algerian', u'plant', u'blast'] [u'ullrich', u'hop', u'strongest', u'team', u'beat'] [u'chief', u'seek', u'time', u'iraq', u'return'] [u'underdog', u'dean', u'shrug', u'primari', u'result'] [u'union', u'threaten', u'action', u'council', u'chang'] [u'begin', u'baghdad', u'offens'] [u'bomb', u'kill', u'afghan', u'report'] [u'produc', u'choos', u'ring', u'best'] [u'senat', u'warn', u'free', u'trade', u'australian', u'drug'] [u'vegi', u'price', u'tip', u'skyrocket'] [u'vermeulen', u'skull', u'fractur', u'cap', u'night'] [u'bush', u'fruit', u'sell'] [u'crack', u'domest', u'violenc'] [u'walkov', u'number', u'hewitt'] [u'water', u'restrict', u'tighten', u'nimmitabel'] [u'water', u'save', u'boost', u'environment', u'flow'] [u'water', u'sewerag', u'elect', u'agenda'] [u'woman', u'die', u'accid', u'steal'] [u'woodsid', u'disput'] [u'workmat', u'unawar', u'dead', u'colleagu'] [u'world', u'biggest', u'solar', u'power', u'station', u'open'] [u'zimbabw', u'opposit', u'chief', u'reject', u'mugab', u'kill', u'plot'] [u'abbott', u'back', u'howard', u'tradit', u'school', u'valu'] [u'abbott', u'vow', u'chang', u'medicar', u'plan'] [u'adelaid', u'oval', u'farewel', u'hook'] [u'agassi', u'power', u'melbourn', u'round'] [u'aitken', u'shun', u'tour', u'prepar', u'athen'] [u'ord', u'finish', u'flat'] [u'anderson', u'offer', u'clear', u'flight', u'chang'] [u'australian', u'bellydanc', u'ban', u'egypt'] [u'australian', u'open', u'singl', u'result', u'wednesday'] [u'australia', u'communiti', u'base', u'airlin', u'take'] [u'author', u'search', u'miss', u'teen', u'tourist'] [u'author', u'urg', u'vigil', u'bird'] [u'bali', u'bomb', u'survivor', u'jail', u'year'] [u'beatti', u'pledg', u'million', u'sweeten'] [u'beatti', u'promis', u'manufactur', u'boost'] [u'beatti', u'talk', u'vote', u'strategi'] [u'beetl', u'plagu', u'infest', u'goulburn'] [u'bendigo', u'school', u'odd', u'school', u'stanc'] [u'better', u'access', u'plan', u'derwent', u'bridg'] [u'bowen', u'council', u'signal', u'elect', u'sign', u'rule'] [u'british', u'airway', u'boss', u'unilater'] [u'bull', u'charg', u'hobart'] [u'bungl', u'unwant', u'distract', u'beatti'] [u'driver', u'stop', u'work', u'abus'] [u'bush', u'defend', u'iraq', u'invas'] [u'bush', u'creat', u'axi', u'evil', u'democrat'] [u'bush', u'warn', u'constitut', u'marriag'] [u'busi', u'protest', u'super', u'council', u'plan'] [u'drought', u'reflect', u'size'] [u'expert', u'help', u'polic', u'handl', u'mental'] [u'govt', u'revamp', u'road', u'tourism', u'spot'] [u'maintain', u'presenc', u'timor'] [u'accid', u'put', u'hospit'] [u'industri', u'ring', u'record', u'sale', u'year'] [u'cattl', u'produc', u'warn', u'stock', u'theft'] [u'charg', u'lay', u'nativ', u'bird', u'shoot'] [u'rule', u'action', u'beatti', u'minist'] [u'communiti', u'brace', u'floodwat'] [u'convict', u'polic', u'killer', u'releas', u'jail'] [u'costello', u'back', u'parent', u'choic', u'school', u'debat'] [u'costello', u'prais', u'record', u'sale'] [u'council', u'blame', u'faulti', u'power', u'line', u'bridgetown'] [u'council', u'highlight', u'swim', u'spot', u'danger'] [u'councillor', u'conced', u'labor', u'posit', u'dictat', u'oasi'] [u'council', u'prepar', u'legal', u'fight', u'stop', u'flat'] [u'council', u'question', u'boundari', u'chang', u'review'] [u'council', u'scale', u'port', u'lincoln', u'plan'] [u'council', u'upbeat', u'abattoir', u'reopen'] [u'council', u'upset', u'merger', u'consult'] [u'council', u'urg', u'push', u'stand', u'campus'] [u'croc', u'sink', u'pirat'] [u'dane', u'plan', u'provid', u'australian', u'bear', u'princess'] [u'darwin', u'teen', u'win', u'nation', u'countri', u'music', u'contest'] [u'democrat', u'pull', u'presidenti', u'race'] [u'democrat', u'bush', u'speech', u'slight', u'averag', u'american'] [u'depress', u'asylum', u'seeker', u'releas', u'lawrenc'] [u'detent', u'centr', u'lockout', u'opposit'] [u'deutsch', u'bank', u'manag', u'trial', u'begin'] [u'downer', u'slam', u'loss', u'claim'] [u'elder', u'woman', u'die', u'crash'] [u'elector', u'commiss', u'focus', u'bendigo', u'council'] [u'england', u'expect', u'cancel', u'zimbabw', u'tour', u'report'] [u'review', u'parmalat', u'account', u'practis'] [u'norman', u'grower', u'grape', u'payment', u'updat'] [u'famili', u'lobbi', u'fair', u'trial', u'guantanamo'] [u'famili', u'servic', u'denial', u'advoc'] [u'ferri', u'line', u'defend', u'sydney', u'devonport', u'delay'] [u'figur', u'point', u'econom', u'slowdown'] [u'aussi', u'fight', u'round', u'place'] [u'aussi', u'fight', u'round', u'place'] [u'want', u'violent', u'home', u'invas'] [u'flatley', u'name', u'captain', u'red'] [u'kill', u'horror', u'crash', u'highway'] [u'foxtel', u'unveil', u'digit', u'servic'] [u'franc', u'question', u'terror', u'suspect', u'wife'] [u'giant', u'snail', u'gold', u'coast'] [u'gilchrist', u'zimbabw', u'odi'] [u'girl', u'critic', u'fatal', u'crash'] [u'glider', u'pilot', u'hospitalis', u'crash', u'land'] [u'gold', u'coast', u'tourism', u'chief', u'look', u'opportun'] [u'govt', u'upgrad', u'road', u'fatal', u'accid'] [u'grace', u'approach', u'game', u'wildcat'] [u'grazier', u'want', u'continu', u'wild', u'bait'] [u'greec', u'fund', u'afghani', u'olymp', u'team'] [u'guccion', u'bundl', u'open', u'pratt', u'molik'] [u'guccion', u'bundl', u'aust', u'open'] [u'health', u'servic', u'talk', u'merger', u'benefit'] [u'herbal', u'remedi', u'cancer', u'drug', u'studi'] [u'high', u'school', u'say', u'academ', u'rank', u'unfair'] [u'honda', u'confirm', u'brazilian', u'barro'] [u'hook', u'servic', u'hold', u'adelaid', u'oval'] [u'hook', u'good', u'work', u'go', u'organ', u'donat'] [u'human', u'right', u'group', u'urg', u'anwar', u'releas'] [u'hussey', u'lead', u'warrior', u'fightback'] [u'illeg', u'keep', u'snake', u'land', u'fine'] [u'independ', u'deni', u'defect', u'accus'] [u'independ', u'stand', u'firm', u'medicar', u'chang'] [u'invad', u'beetl', u'paint', u'town', u'black'] [u'iraqi', u'policeman', u'kill', u'assassin', u'citi'] [u'order', u'woodsid', u'worker', u'work'] [u'isra', u'court', u'issu', u'briberi', u'charg', u'tie', u'sharon'] [u'isra', u'warplan', u'strike', u'lebanon', u'attack'] [u'japanes', u'studi', u'find', u'burn'] [u'jetti', u'group', u'say', u'foreshor', u'plan'] [u'juninho', u'fire', u'boro', u'sight', u'silverwar'] [u'latham', u'back', u'public', u'school', u'teacher'] [u'latham', u'pledg', u'boost', u'bulk', u'bill'] [u'lawyer', u'order', u'relax', u'jackson'] [u'lazio', u'sweep', u'italian', u'semi'] [u'leader', u'need', u'resolv', u'trade', u'talk'] [u'lewi', u'recontest', u'hammond'] [u'lib', u'adjourn', u'master', u'complaint', u'hear'] [u'live', u'export', u'face', u'ship', u'shortag'] [u'local', u'campaign', u'put', u'spotlight', u'townsvill'] [u'love', u'make', u'late', u'wicket', u'rock', u'bull'] [u'malaysian', u'deputi', u'anwar', u'deni', u'bail'] [u'mall', u'polic', u'presenc'] [u'charg', u'knife', u'attack'] [u'jail', u'life', u'deprav', u'murder'] [u'plead', u'guilti', u'homeless', u'man', u'murder'] [u'court', u'fatal', u'crash'] [u'martian', u'soil', u'pose', u'puzzl', u'nasa', u'scientist'] [u'mayor', u'candid', u'rais', u'plan', u'doubt'] [u'mcewen', u'yellow', u'tour', u'kick'] [u'mcpartland', u'grab', u'tour', u'lead', u'epic', u'breakaway'] [u'medic', u'team', u'head', u'cyclon', u'niue'] [u'microsoft', u'admit', u'humour', u'failur', u'mikerowesoft'] [u'molli', u'exhaust', u'visa', u'ordeal'] [u'movi', u'magic', u'help', u'cancer', u'patient'] [u'museum', u'offer', u'snapshot', u'alic', u'life'] [u'nation', u'trust', u'respond', u'council', u'critic'] [u'year', u'usher', u'monkey', u'busi'] [u'nightclub', u'weed', u'problem', u'bouncer'] [u'organis', u'crime', u'link', u'armi', u'drug', u'bust', u'polic'] [u'compani', u'novus', u'announc', u'profit', u'jump'] [u'tanker', u'roll', u'spark', u'road', u'clean'] [u'onlin', u'sale', u'grow', u'percent', u'play', u'bigger'] [u'page', u'name', u'break', u'hill', u'elect', u'team'] [u'petrol', u'tip', u'litr'] [u'player', u'live', u'fear', u'posit', u'dope', u'test'] [u'govt', u'immun', u'push', u'look', u'shaki'] [u'take', u'step', u'counter', u'illeg', u'immigr'] [u'polic', u'search'] [u'polic', u'fear', u'miss', u'person'] [u'polic', u'killer', u'statement', u'releas'] [u'polic', u'probe', u'armi', u'drug', u'claim'] [u'polic', u'probe', u'torbay', u'inlet', u'shoot', u'claim'] [u'polic', u'promis', u'secur', u'crackdown'] [u'polli', u'sweep', u'offic', u'spot'] [u'port', u'kembla', u'worker', u'reject', u'steelwork', u'agreement'] [u'powerlin', u'blame', u'blaze'] [u'public', u'alcohol', u'free', u'beach', u'area', u'plan'] [u'floodwat', u'flow', u'drought'] [u'quick', u'spread', u'internet', u'virus', u'link', u'spammer'] [u'rabbi', u'compos', u'prayer', u'protect', u'porn'] [u'rail', u'infrastructur', u'corp', u'fin', u'driver', u'death'] [u'rain', u'cloud', u'water', u'restrict', u'issu'] [u'rain', u'fail', u'save', u'windi', u'pollock', u'strike'] [u'rain', u'benefit', u'murray', u'darl', u'basin', u'farmer'] [u'reef', u'fisher', u'urg', u'join', u'compens', u'process'] [u'research', u'reveal', u'dementia', u'patient', u'sooth'] [u'road', u'tip', u'boost', u'govt', u'coffer'] [u'roebourn', u'shire', u'defer', u'councillor', u'elect'] [u'rspca', u'reveal', u'fund', u'problem'] [u'russian', u'armi', u'aim', u'save', u'chill', u'filter', u'beer'] [u'russian', u'carrier', u'deal', u'indian', u'navi', u'power'] [u'govt', u'offer', u'revis', u'deal', u'public', u'servant'] [u'liber', u'accus', u'inconsist', u'polici'] [u'track', u'road', u'fund', u'boost'] [u'town', u'demand', u'broadband', u'get'] [u'search', u'end', u'ship', u'survivor', u'norway'] [u'sheep', u'shipment', u'set', u'sail', u'kuwait'] [u'sorri', u'maryborough', u'there', u'candid', u'springborg'] [u'south', u'african', u'prosecutor', u'clear', u'spi'] [u'south', u'burni', u'leak', u'spark', u'evacu'] [u'south', u'east', u'town', u'cull', u'corella', u'number'] [u'southern', u'highland', u'tourism', u'slump', u'normal'] [u'spirit', u'make', u'martian', u'rock'] [u'sportspeopl', u'urg', u'regist', u'master', u'game'] [u'springborg', u'accus', u'break'] [u'springborg', u'deni', u'bogus', u'candid', u'claim'] [u'standard', u'need', u'protect', u'world', u'countri'] [u'station', u'host', u'pastor', u'research'] [u'steel', u'worker', u'reject', u'compani', u'workplac', u'offer'] [u'stosur', u'knock', u'melbourn'] [u'studi', u'assess', u'emiss', u'effect', u'ancient'] [u'sugar', u'deal', u'sweet', u'north', u'farmer'] [u'support', u'albani', u'base', u'fisheri', u'patrol'] [u'crew', u'hope', u'weather', u'forecast', u'curb', u'risk'] [u'teacher', u'strike', u'action', u'hold'] [u'team', u'gut', u'hook', u'death'] [u'teenag', u'die', u'sand', u'cave', u'collaps'] [u'timber', u'blaze', u'leav', u'damag'] [u'soon', u'predict', u'shuttl', u'return', u'space'] [u'catch', u'boost', u'tuna', u'fisher', u'profit'] [u'topless', u'pose', u'springborg', u'say'] [u'tree', u'hunter', u'hit', u'jackpot', u'tasmania'] [u'trip', u'aim', u'boost', u'townsvill', u'caledonia'] [u'product', u'firm', u'boost', u'gold', u'coast', u'job'] [u'cofidi', u'rider', u'arrest', u'dope', u'probe'] [u'face', u'iraq', u'crime', u'claim'] [u'union', u'clearer', u'regul', u'workplac'] [u'focus', u'iraq', u'elect', u'sistani', u'alli'] [u'dollar', u'continu', u'drop'] [u'immigr', u'send', u'molli', u'pack'] [u'object', u'whos', u'obes', u'fight'] [u'stock', u'fall', u'high'] [u'opposit', u'blame', u'govt', u'bouncer', u'law'] [u'opposit', u'continu', u'reject', u'plan', u'wast'] [u'vote', u'strategi', u'reflect', u'polit', u'landscap'] [u'reject', u'jail', u'breach', u'restrain', u'order'] [u'warrior', u'stay', u'blue'] [u'water', u'restrict', u'continu', u'roma', u'despit', u'rain'] [u'weather', u'blame', u'veget', u'shortag'] [u'western', u'power', u'slam', u'respons', u'fatal'] [u'confirm', u'sar', u'case', u'china'] [u'wonder', u'girl', u'get', u'invit'] [u'wright', u'ganguli', u'jump', u'dravid', u'defenc'] [u'lockdown', u'escap', u'artist', u'chimp', u'break', u'free'] [u'revamp', u'shed', u'light', u'traeger', u'park'] [u'need', u'highway', u'upgrad', u'nrma'] [u'hous', u'industri', u'cool'] [u'black', u'plan', u'privat', u'test', u'boost', u'revenu'] [u'ord', u'strong', u'gain'] [u'road', u'lead', u'drought', u'polici'] [u'licenc', u'elect', u'issu'] [u'annan', u'urg', u'calm', u'isra', u'raid', u'lebanon'] [u'art', u'deserv', u'fair'] [u'asic', u'investig', u'trade', u'loss'] [u'aussi', u'hensbi', u'share', u'hope', u'classic', u'lead'] [u'australia', u'ambassador', u'name', u'northern'] [u'australian', u'open', u'result', u'thursday'] [u'author', u'issu', u'bird', u'warn', u'southern'] [u'author', u'probe', u'farm', u'death'] [u'bank', u'parmalat', u'australia'] [u'battl', u'reid', u'tenni', u'hero'] [u'air', u'program', u'critic', u'manag', u'kelli'] [u'beatti', u'promis', u'wait', u'list'] [u'beatti', u'promis', u'gladston'] [u'beatti', u'push', u'ahead', u'sugar', u'reform'] [u'beckham', u'send', u'real', u'valencia'] [u'belconnen', u'park', u'fee', u'scrap', u'lib'] [u'bellingen', u'mayor', u'reject', u'growth', u'vote'] [u'bennett', u'keen', u'coach', u'kangaroo'] [u'bidder', u'battl', u'candid', u'ridicul', u'argyl'] [u'crowd', u'say', u'england', u'super', u'council'] [u'biggest', u'flood', u'decad', u'bring', u'heartbreak'] [u'bird', u'scare', u'widen', u'asia'] [u'bolton', u'close', u'leagu', u'final', u'berth'] [u'bouncer', u'charg', u'hook', u'manslaught'] [u'bouncer', u'charg', u'manslaught', u'hook'] [u'brigitt', u'wife', u'accept', u'french'] [u'bushrang', u'emot', u'tribut', u'hook'] [u'extend', u'armi', u'recruit', u'train', u'cours'] [u'manilla', u'shire', u'flood', u'elig'] [u'cambodia', u'promin', u'trade', u'unionist', u'shoot', u'dead'] [u'capsiz', u'freighter', u'rock'] [u'catchment', u'council', u'say', u'landcar', u'offic', u'wont', u'close'] [u'club', u'countri', u'battl', u'long', u'go', u'woodward'] [u'coast', u'volleybal', u'player', u'featur', u'aust'] [u'coff', u'deputi', u'mayor', u'echo', u'jetti', u'plan', u'concern'] [u'communiti', u'share', u'region', u'develop', u'fund'] [u'corrupt', u'prison', u'offic', u'alleg', u'damag', u'say'] [u'costello', u'pan', u'beatti', u'govt', u'econom', u'mismanag'] [u'council', u'adopt', u'singl', u'wast', u'servic', u'contract'] [u'council', u'audit', u'highlight', u'worksit', u'woe'] [u'council', u'pass', u'tree', u'plan', u'amidst', u'councillor', u'concern'] [u'council', u'staff', u'tourism', u'resort', u'amidst', u'protest'] [u'court', u'hear', u'link', u'woman', u'accus', u'murder'] [u'crash', u'land', u'doesnt', u'stop', u'glider', u'event'] [u'croc', u'hunter', u'clear', u'workplac', u'safeti', u'breach'] [u'dark', u'hors', u'springborg', u'prove', u'popular', u'punter'] [u'declin', u'devil', u'popul', u'leav', u'door', u'open'] [u'venuto', u'keep', u'tiger', u'hunt'] [u'drought', u'polici', u'fail'] [u'edington', u'rule', u'pool', u'moscow'] [u'encourag', u'springborg', u'head', u'corner'] [u'ethanol', u'firm', u'extend', u'prospectus', u'deadlin'] [u'euro', u'climb', u'continu'] [u'expert', u'probe', u'fall', u'pool', u'entranc', u'wall'] [u'famili', u'unhappi', u'mausoleum', u'condit'] [u'farmer', u'urg', u'boost', u'level'] [u'farmer', u'urg', u'seek', u'drought'] [u'farmer', u'welcom', u'feder', u'road', u'packag'] [u'fatal', u'accid', u'prompt', u'call', u'hume', u'upgrad'] [u'fear', u'retail', u'exploit', u'appl', u'price'] [u'firefight', u'save', u'bushfir', u'threaten', u'hous'] [u'flood', u'welcom', u'revil', u'rural'] [u'follow', u'lead', u'beatti', u'tell', u'minor', u'parti'] [u'formula', u'warn'] [u'free', u'trade', u'effort', u'wont', u'affect', u'singl', u'desk'] [u'fuel', u'subsidi', u'chang', u'come', u'govt'] [u'gaze', u'guid', u'tiger', u'victori'] [u'glori', u'continu', u'win', u'streak'] [u'gold', u'coast', u'farewel', u'stalwart'] [u'gold', u'industri', u'govt', u'urg', u'bolster', u'explor'] [u'gough', u'leav', u'yorkshir'] [u'govt', u'backbench', u'defend', u'state', u'school'] [u'great', u'southern', u'help', u'bolster', u'economi'] [u'grower', u'welcom', u'river', u'flow'] [u'gulf', u'nation', u'forgiv', u'iraqi', u'debt'] [u'headscarf', u'plan', u'unravel', u'franc'] [u'health', u'sugar', u'domin', u'campaign'] [u'hewitt', u'readi', u'round'] [u'hick', u'comment', u'action', u'rudd'] [u'hickss', u'lawyer', u'urg', u'intervent'] [u'hick', u'trial', u'wont', u'fair', u'lawyer'] [u'home', u'safe', u'blaze', u'firefight'] [u'hume', u'shire', u'resid', u'reject', u'boundari', u'chang', u'plan'] [u'warn', u'england', u'zimbabw', u'pull'] [u'india', u'hold', u'kashmir', u'talk', u'separatist'] [u'inter', u'semi', u'juventus'] [u'job', u'lose', u'rise', u'dollar'] [u'consid', u'measur', u'speed', u'game'] [u'isra', u'prosecutor', u'consid', u'sharon', u'indict'] [u'isra', u'warplan', u'overfli', u'south', u'lebanon'] [u'jonker', u'yellow', u'cook', u'slam', u'tour', u'boss'] [u'killer', u'parent', u'treat', u'bad', u'say', u'lawyer'] [u'kimberley', u'communiti', u'prepar', u'toad', u'invas'] [u'kodak', u'slash', u'job', u'year'] [u'kuwait', u'agre', u'iraq', u'debt'] [u'leagu', u'club', u'search', u'general', u'manag'] [u'leed', u'fan', u'turn', u'selfish', u'player'] [u'hit', u'india'] [u'lend', u'leas', u'move', u'ownership'] [u'liverpool', u'council', u'admit', u'loss', u'oasi'] [u'lose', u'plane', u'search', u'resum', u'year'] [u'magistr', u'discuss', u'pitjantjatjara', u'land', u'issu'] [u'charg', u'rifl', u'shoot'] [u'jail', u'girlfriend', u'murder'] [u'jail', u'scratch', u'polic', u'spit', u'court'] [u'murder', u'charg', u'face', u'bedsid', u'bail', u'hear'] [u'market', u'hit', u'month', u'high'] [u'martin', u'support', u'train', u'facil', u'base'] [u'mayor', u'cast', u'doubt', u'wilton', u'airport', u'plan'] [u'meet', u'back', u'break', u'hill', u'water', u'legal'] [u'minist', u'doubt', u'fair', u'piec'] [u'minist', u'foreshadow', u'direct', u'educ'] [u'mortar', u'attack', u'kill', u'soldier', u'wound'] [u'want', u'reason', u'retrain', u'plan', u'snub'] [u'mugab', u'start', u'talk', u'opposit'] [u'revalu', u'foreign', u'currenc', u'portfolio'] [u'featur', u'eurobodalla'] [u'reviv', u'north', u'korea', u'talk'] [u'twist', u'german', u'septemb', u'case'] [u'head', u'roll', u'waterfal', u'inquiri'] [u'norfolk', u'island', u'fishermen', u'surviv', u'day', u'adrift'] [u'doctor', u'clear', u'poor', u'practis'] [u'govt', u'target', u'sydney', u'power', u'waster'] [u'opposit', u'question', u'detent', u'centr', u'riot'] [u'lifesav', u'stronger', u'pool', u'fenc', u'law'] [u'want', u'fair', u'road', u'scheme'] [u'oberon', u'policeman', u'lord', u'howe', u'post'] [u'payout', u'cost', u'polic', u'servic'] [u'palestinian', u'question', u'commit', u'middl', u'east'] [u'paringa', u'bushfir', u'close', u'highway'] [u'passeng', u'flock', u'virgin', u'blue'] [u'pentagon', u'report', u'throw', u'doubt', u'defenc'] [u'ask', u'recal', u'diplomat', u'domest'] [u'pngs', u'hous', u'minist', u'sack'] [u'polic', u'wit', u'hotel', u'robberi'] [u'polic', u'newspap', u'blockad', u'zimbabw'] [u'policeman', u'flag', u'golf', u'world', u'record', u'attempt'] [u'polic', u'oper', u'help', u'theft'] [u'polic', u'urg', u'caution', u'road'] [u'poll', u'predict', u'easi', u'victori', u'beatti'] [u'pont', u'confid', u'bounc'] [u'port', u'hedland', u'want', u'debt', u'plan', u'talk'] [u'poultri', u'industri', u'warn', u'dead', u'virus'] [u'power', u'outag', u'leav', u'resid', u'dark'] [u'press', u'watchdog', u'complain', u'treatment'] [u'protest', u'worker', u'await', u'forestri', u'respons'] [u'public', u'invit', u'adelaid', u'oval', u'farewel', u'hook'] [u'public', u'invit', u'adelaid', u'oval', u'servic', u'hook'] [u'oppn', u'promis', u'health', u'fund', u'boost'] [u'racq', u'question', u'parti', u'ethanol', u'view'] [u'rail', u'corp', u'fin', u'death'] [u'rain', u'lift', u'water', u'restrict'] [u'report', u'child', u'abus', u'jump'] [u'reserv', u'develop', u'snub', u'greet', u'applaus'] [u'resid', u'readi', u'thargomindah', u'flood'] [u'road', u'death', u'spark', u'polic', u'safeti'] [u'rural', u'resid', u'live', u'fear', u'power', u'line'] [u'saha', u'get', u'covet', u'trafford'] [u'state', u'school', u'attract', u'intern', u'student'] [u'school', u'prepar', u'year', u'blaze'] [u'school', u'teach', u'anti', u'farmer', u'anderson'] [u'scientist', u'concern', u'impact', u'devil', u'diseas'] [u'scientist', u'decid', u'cold', u'kill', u'neanderth'] [u'scud', u'hewitt', u'reid'] [u'seiz', u'marco', u'fund', u'order', u'govern'] [u'self', u'regul', u'lawyer'] [u'sharon', u'quit', u'israel', u'briberi', u'case'] [u'skateboard', u'urg', u'skatepark'] [u'south', u'east', u'harvest', u'unlik', u'reach', u'estim'] [u'spanish', u'judg', u'rule', u'woman', u'dress'] [u'springborg', u'attack', u'australia', u'controversi'] [u'spur', u'green', u'light', u'transfer', u'spree'] [u'stanwel', u'gladston', u'consid', u'magnesium', u'smelter'] [u'storm', u'cut', u'power', u'south', u'coast', u'resid'] [u'sudden', u'delug', u'damag', u'wanaar'] [u'sugarcan', u'grower', u'fungal', u'diseas', u'impact'] [u'swimmer', u'warn', u'stinger', u'danger'] [u'agre', u'continu', u'fund', u'therapi'] [u'tafe', u'staff', u'caus', u'concern'] [u'labor', u'fight', u'propos', u'confer', u'number'] [u'tasmania', u'review', u'bouncer', u'law'] [u'rescu', u'boat', u'capsiz'] [u'tiger', u'marshal', u'happi', u'play', u'posit'] [u'toowoomba', u'boxer', u'eye', u'junior', u'welterweight', u'titl'] [u'trucker', u'industri', u'rail'] [u'train', u'strategi', u'focus', u'high', u'growth', u'industri'] [u'travel'] [u'line', u'confid', u'fix', u'ferri', u'delay'] [u'network', u'broadcast', u'region', u'news', u'illawarra'] [u'sperm', u'donor', u'lose', u'anonym'] [u'union', u'continu', u'thorley', u'entitl', u'push'] [u'union', u'welcom', u'alp', u'manufactur', u'promis'] [u'citi', u'pass', u'emerg', u'karaok', u'booth'] [u'record', u'compani', u'crack', u'pirat'] [u'govt', u'offer', u'connect', u'guarante'] [u'teacher', u'deliv', u'wage', u'ultimatum'] [u'teacher', u'strike', u'look', u'ahead'] [u'victoria', u'ban', u'pip'] [u'victorian', u'teacher', u'strike'] [u'offer', u'tafe', u'posit'] [u'water', u'restrict', u'remain', u'break', u'hill'] [u'town', u'recruit', u'footbal', u'work'] [u'wilkinson', u'unsur', u'comeback', u'date'] [u'wolv', u'hold', u'liverpool', u'draw'] [u'woman', u'die', u'skydiv', u'accid'] [u'woodward', u'plea', u'chang'] [u'world', u'econom', u'forum', u'kick', u'switzerland'] [u'arrest', u'pawn', u'shop', u'sting'] [u'academ', u'name', u'wollongong', u'citizen'] [u'opposit', u'question', u'upgrad', u'schedul'] [u'adelaid', u'jail', u'indonesia'] [u'adelaid', u'mayor', u'deni', u'cash', u'comment', u'claim'] [u'albatross', u'migrat', u'prove', u'worth', u'flutter'] [u'alic', u'darwin', u'train', u'cost', u'truck', u'job'] [u'highlight', u'region', u'bulk', u'bill', u'fear'] [u'tobacco', u'tie'] [u'attack', u'doctor', u'hospit', u'board'] [u'ambul', u'staff', u'hold', u'negoti', u'guarante'] [u'ancona', u'turn', u'baggio', u'lead', u'surviv', u'fight'] [u'angel', u'play', u'game'] [u'angler', u'reap', u'benefit', u'fish', u'number', u'boom'] [u'arsenal', u'main', u'rival', u'ferguson'] [u'ash', u'head', u'australia'] [u'aust', u'releas', u'nauru', u'rehab', u'money', u'engin', u'say'] [u'australian', u'open', u'result', u'friday'] [u'australian', u'sailor', u'help', u'train', u'iraqi'] [u'australian', u'swim', u'name', u'nugent', u'head', u'coach'] [u'author', u'clear', u'hanson', u'prosecut'] [u'author', u'track', u'giant', u'snail', u'trail'] [u'author', u'dismiss', u'complaint', u'polic'] [u'barrington', u'resid', u'angri', u'develop', u'plan'] [u'bathurst', u'council', u'general', u'manag', u'head', u'wagga'] [u'beaconsfield', u'gold', u'success', u'attract'] [u'beatti', u'expect', u'lose', u'gold', u'coast', u'seat'] [u'beatti', u'account'] [u'beatti', u'springborg', u'welcom', u'year', u'monkey'] [u'bird', u'like', u'thailand', u'admit'] [u'bird', u'matter', u'time', u'australia'] [u'bird', u'scare', u'prompt', u'australian', u'alert'] [u'blair', u'face', u'parliamentari', u'debat', u'hutton', u'report'] [u'bourk', u'irrig', u'look', u'resum', u'pump'] [u'recov', u'incid'] [u'brigalow', u'bioregion', u'decis', u'loom'] [u'british', u'hiker', u'fulfil', u'nake', u'ambit'] [u'british', u'suicid', u'bomb', u'comment', u'spark', u'outrag'] [u'break', u'hill', u'run', u'possibl'] [u'brown', u'back', u'townsvill', u'candid', u'find'] [u'bushrang', u'train'] [u'busi', u'survey', u'contain', u'warn', u'govt'] [u'canberra', u'fresh', u'contact', u'mar', u'rover'] [u'canberra', u'trial', u'syring', u'vend', u'machin'] [u'cancer', u'council', u'offer', u'accommod', u'fund'] [u'casa', u'probe', u'plane', u'mishap'] [u'celta', u'vigo', u'barcelona', u'suffer', u'surpris', u'defeat'] [u'chief', u'concern', u'bushfir', u'insur', u'level'] [u'charter', u'tower', u'look', u'ash', u'econom', u'boost'] [u'clark', u'atsic', u'suspens', u'continu'] [u'clark', u'suspens', u'fight', u'higher', u'court'] [u'coast', u'record', u'road', u'death'] [u'cofidi', u'affair', u'deepen', u'rider', u'admit', u'dope'] [u'communiti', u'prefer', u'oversea', u'doctor'] [u'concern', u'miss', u'road', u'fund'] [u'condit', u'help', u'contain', u'bushfir'] [u'coral', u'transplant', u'permit', u'rais', u'green', u'fear'] [u'costello', u'see', u'hous', u'market', u'cool'] [u'council', u'consid', u'landfil', u'share', u'arrang'] [u'council', u'effort', u'help', u'maintain', u'road', u'fund', u'scheme'] [u'council', u'consid', u'road', u'fund', u'condit'] [u'council', u'upbeat', u'oval', u'condit'] [u'court', u'find', u'guilti', u'polic', u'kill', u'threat'] [u'croc', u'releas', u'import', u'veal'] [u'dane', u'hansen', u'share', u'joburg', u'lead'] [u'don', u'aussi', u'star', u'hop', u'team', u'return'] [u'doubt', u'rais', u'highway', u'upgrad', u'cost'] [u'dri', u'fruit', u'price', u'predict', u'rise', u'slight'] [u'earli', u'wicket', u'slow', u'bull', u'chase'] [u'ecologist', u'welcom', u'river', u'flush'] [u'edington', u'continu', u'moscow', u'medal', u'spree'] [u'electr', u'storm', u'black', u'thousand'] [u'eleph', u'pack', u'trunk', u'escap'] [u'endeavour', u'foundat', u'seek', u'phase', u'industri'] [u'enron', u'chief', u'account', u'surrend', u'polic'] [u'ettridg', u'reject', u'whitewash', u'report'] [u'farmer', u'warn', u'poison', u'plant'] [u'feder', u'assist', u'farmer', u'hit', u'billion'] [u'feder', u'polic', u'examin', u'hanson', u'jail'] [u'financi', u'agenc', u'downgrad', u'outlook'] [u'firefight', u'control', u'south', u'east', u'blaze'] [u'freightlink', u'defend', u'price'] [u'fruit', u'firm', u'fight', u'takeov'] [u'fund', u'seek', u'cobar', u'medic', u'centr'] [u'futur', u'unclear', u'kodak', u'australian', u'staff'] [u'garfunkel', u'go', u'unrecognis', u'drug', u'bust'] [u'urg', u'recognit', u'young'] [u'govt', u'lose', u'asylum', u'seeker', u'court'] [u'govt', u'reject', u'alp', u'backflip', u'border', u'protect'] [u'govt', u'industri', u'assist', u'total'] [u'greek', u'urg', u'speed', u'work', u'olymp', u'venu'] [u'group', u'happi', u'road', u'scheme', u'continu'] [u'gunnedah', u'council', u'abandon', u'merger', u'plan'] [u'hook', u'death', u'put', u'cricket', u'perspect', u'lehmann'] [u'hunter', u'jobless', u'rate', u'slight'] [u'hussey', u'roger', u'warrior', u'control'] [u'india', u'hold', u'talk', u'kashmir', u'seperatist'] [u'india', u'kashmir', u'separatist', u'urg', u'violenc'] [u'indian', u'wed', u'kill'] [u'insur', u'compani', u'appeal', u'test', u'case'] [u'iran', u'urg', u'abandon', u'nuke', u'program'] [u'irish', u'minist', u'vow', u'creat', u'asylum', u'seeker'] [u'iron', u'protest', u'stage'] [u'ivori', u'coast', u'policeman', u'jail', u'journalist', u'murder'] [u'jenson', u'smash', u'track', u'record', u'test'] [u'kerri', u'democrat', u'race', u'poll'] [u'kodak', u'tightlip', u'possibl', u'australian', u'cut'] [u'latham', u'seek', u'tobacco', u'donat'] [u'leed', u'wont', u'sell', u'smith'] [u'lee', u'prais', u'pont', u'heroic'] [u'thank', u'pont', u'heroic'] [u'legal', u'decri', u'lack', u'sniff', u'rehabilit'] [u'lehmann', u'shock', u'hook', u'death'] [u'lib', u'reject', u'labor', u'visa', u'plan'] [u'lion', u'cub', u'bear', u'adelaid'] [u'lobster', u'industri', u'await', u'tariff', u'cut', u'news'] [u'long', u'reach', u'border'] [u'guilti', u'wife', u'murder'] [u'get', u'year', u'pension', u'murder'] [u'mansfield', u'council', u'record', u'oper', u'boost'] [u'market', u'finish', u'week', u'posit', u'note'] [u'mayor', u'anti', u'merger', u'stanc'] [u'mcewen', u'sprint', u'second', u'tour', u'stage', u'jonker'] [u'mcgee', u'fdjeuxcom', u'boss', u'put', u'ethic', u'result'] [u'milan', u'sweep', u'semi', u'roma', u'fail', u'shake'] [u'molik', u'pratt', u'bow', u'roddick', u'blast', u'dent'] [u'moomba', u'plant', u'repair', u'schedul'] [u'fund', u'seek', u'port', u'kembla', u'secur'] [u'highlight', u'need', u'crisi', u'care', u'centr'] [u'lament', u'miss', u'fund', u'calder', u'highway'] [u'talk', u'continu', u'road', u'fund', u'scheme'] [u'nasa', u'lose', u'touch', u'mar', u'rover'] [u'nat', u'launch', u'lockyer'] [u'categori', u'tunarama', u'festiv', u'tuna', u'toss'] [u'nickel', u'miner', u'set', u'sight', u'radio', u'hill'] [u'aust', u'sport', u'nomin', u'upset', u'mayor'] [u'nation', u'water', u'storag', u'review'] [u'opposit', u'leader', u'tightlip', u'shadow'] [u'nuclear', u'black', u'market', u'unsettl'] [u'politician', u'deni', u'fish', u'free', u'lunch'] [u'olyroo', u'olymp', u'play'] [u'pakistani', u'link', u'qaeda', u'assassin', u'bid'] [u'perri', u'move', u'shoot', u'lead', u'california'] [u'parliamentari', u'hiatus', u'delay', u'australian'] [u'polic', u'hunt', u'gold', u'coast', u'syring', u'rapist'] [u'polic', u'prepar', u'aust', u'road', u'blitz'] [u'polic', u'deploy'] [u'polic', u'station', u'go'] [u'polic', u'union', u'say', u'forc', u'deserv', u'rise'] [u'polic', u'warn', u'aust', u'traffic', u'crackdown'] [u'pottharst', u'cook', u'opposit', u'side'] [u'poverti', u'health', u'need', u'address', u'annan'] [u'prepar', u'save', u'rescu', u'rough', u'sea'] [u'prison', u'staff', u'order', u'work'] [u'probe', u'begin', u'sydney', u'hospit', u'misconduct', u'claim'] [u'public', u'seek', u'time', u'oyster', u'plan', u'comment'] [u'opposit', u'promis', u'fund', u'reduc', u'hospit'] [u'queensland', u'promis', u'fair', u'hear', u'hanson', u'claim'] [u'quinn', u'welcom', u'help', u'feder', u'colleagu'] [u'raaf', u'honour', u'tasmanian', u'wwii', u'pilot'] [u'rafter', u'bid', u'belat', u'farewel', u'australian', u'fan'] [u'rain', u'help', u'reviv', u'lake', u'studi'] [u'recent', u'rain', u'expect', u'boost', u'outback', u'tourism'] [u'renov', u'ash', u'head', u'australia'] [u'reservoir', u'discont', u'flow', u'water', u'concern'] [u'roundtabl', u'discuss', u'dairi', u'woe'] [u'rower', u'slog', u'olymp', u'spot', u'penrith'] [u'rugbi', u'boss', u'plan', u'penalti', u'goal'] [u'rwandan', u'minist', u'jail', u'genocid'] [u'safin', u'beat', u'demon', u'mauresmo', u'defi', u'pain'] [u'govt', u'anger', u'wast', u'dump', u'secreci'] [u'saracen', u'link', u'larkham'] [u'scarborough', u'seadog', u'defi', u'odd'] [u'scheme', u'address', u'region', u'teacher', u'shortag'] [u'offend', u'extradit', u'cambodia', u'court'] [u'sharon', u'plan', u'stay'] [u'shire', u'highlight', u'grow', u'crime', u'problem'] [u'shire', u'local', u'award', u'winner'] [u'sign', u'help', u'sting', u'great', u'keppel'] [u'socceroo', u'venezuela', u'friend'] [u'back', u'liverpool', u'hospit', u'euthanasia', u'claim'] [u'lanka', u'retain', u'tillakaratn', u'captain'] [u'strong', u'support', u'continu', u'road', u'fund', u'scheme'] [u'supervis', u'centr', u'inquiri', u'costello'] [u'sydney', u'level', u'lowest', u'year'] [u'tamworth', u'retain', u'water', u'restrict'] [u'polic', u'welcom', u'survey', u'result'] [u'research', u'alzheim', u'link'] [u'tender', u'call', u'worker', u'club', u'demolit'] [u'thailand', u'await', u'bird', u'test', u'result'] [u'thailand', u'confirm', u'bird', u'case'] [u'thargomindah', u'resid', u'prepar', u'rise'] [u'thousand', u'expect', u'flock', u'festival'] [u'kill', u'road'] [u'tourism', u'sector', u'bounc', u'post', u'sar'] [u'townsvill', u'final'] [u'tragedi', u'strike', u'skydiv', u'contest'] [u'road', u'accid'] [u'ulladulla', u'high', u'school', u'hear'] [u'umaga', u'surgeri', u'linger', u'knee', u'complaint'] [u'union', u'surpris', u'educ', u'chief', u'sack'] [u'armi', u'award', u'medal', u'australian', u'soldier'] [u'congressmen', u'slam', u'bush', u'trade', u'talk'] [u'dollar', u'continu', u'slide'] [u'take', u'hard', u'line', u'australian', u'sugar'] [u'vandal', u'spray', u'anti', u'dump', u'messag', u'benalla'] [u'govt', u'lure', u'profession', u'teach', u'countri'] [u'liber', u'announc', u'portfolio', u'reshuffl'] [u'polic', u'start', u'screen', u'teacher', u'year'] [u'public', u'sector', u'wage', u'stoush', u'head'] [u'train', u'driver', u'weigh', u'australia', u'strike'] [u'real', u'rival', u'defiant', u'valencia'] [u'wed', u'death', u'toll', u'rise'] [u'weight', u'loss', u'compani', u'head', u'liquid'] [u'welfar', u'agenc', u'struggl', u'meet', u'demand'] [u'welfar', u'group', u'want', u'lower', u'power', u'price'] [u'whirlwind', u'hollywood', u'dancer', u'miller', u'die'] [u'wildcat', u'look', u'bounc', u'bullet'] [u'wine', u'invest', u'fund', u'chief', u'resign'] [u'women', u'work', u'kill', u'iraq', u'attack'] [u'xstrata', u'restructur', u'lift', u'north', u'west'] [u'zimbabw', u'opposit', u'deni', u'peac', u'talk', u'mugab'] [u'zimbabw', u'polit', u'parti', u'deni', u'peac', u'plan', u'talk'] [u'zimbabw', u'shut', u'relaunch', u'newspap'] [u'actu', u'warn', u'diplomat', u'solomon', u'disput'] [u'adelaid', u'unit', u'kingz'] [u'secur', u'personnel', u'head', u'home', u'iraq'] [u'alonso', u'fastest', u'barcelona', u'test'] [u'dead', u'iraq', u'attack'] [u'australia', u'bird', u'minist'] [u'australian', u'mull', u'indonesian', u'jail', u'term', u'appeal'] [u'australian', u'open', u'result', u'saturday'] [u'ban', u'place', u'thai', u'poultri', u'import', u'aqi'] [u'beatti', u'latest', u'newspap', u'poll'] [u'beatti', u'promis', u'boost', u'dental', u'servic'] [u'bird', u'claim', u'victim', u'vietnam'] [u'bird', u'vaccin', u'month', u'away'] [u'blair', u'stick', u'iraq', u'claim', u'despit', u'quit'] [u'blue', u'chase', u'inning', u'point'] [u'blue', u'inning', u'point'] [u'bono', u'promis', u'swear', u'golden', u'globe', u'cermoni'] [u'brack', u'welcom', u'citylink', u'investig'] [u'brigitt', u'wife', u'releas', u'franc'] [u'brigitt', u'wife', u'releas', u'franc'] [u'british', u'polic', u'offic', u'say', u'question'] [u'bulgaria', u'polic', u'rare', u'python', u'hand', u'luggag'] [u'bull', u'middl', u'order', u'defi', u'tiger'] [u'bull', u'tiger', u'play', u'draw'] [u'burk', u'seek', u'return', u'shadow', u'ministri'] [u'burma', u'reach', u'ceasefir', u'insurg'] [u'butler', u'condemn', u'howard', u'school'] [u'skill', u'migrant', u'attract'] [u'tougher', u'sprinkler', u'measur'] [u'build', u'prison', u'hume'] [u'canada', u'agre', u'forgiv', u'iraq', u'debt'] [u'cana', u'overcom', u'henman', u'marathon', u'match'] [u'cathay', u'pacif', u'hire', u'extra', u'cabin', u'crew', u'report'] [u'chile', u'dictat', u'pinochet', u'hospitalis'] [u'citi', u'seek', u'reveng', u'year', u'later'] [u'conrad', u'black', u'battl', u'affili'] [u'deputi', u'secretari', u'state', u'visit', u'china', u'japan'] [u'diamond', u'boot', u'cowboy', u'best', u'friend'] [u'doctor', u'guilti', u'perjuri', u'patient'] [u'dozen', u'dead', u'heavi', u'wind', u'bitter', u'cold', u'lash', u'europ'] [u'electr', u'fault', u'suspect', u'factori', u'blaze'] [u'england', u'delay', u'decis', u'zimbabw', u'tour'] [u'european', u'spacecraft', u'unveil', u'mar', u'wateri', u'past'] [u'weapon', u'inspector', u'cast', u'fresh', u'doubt', u'iraq'] [u'fame', u'german', u'photograph', u'kill', u'crash'] [u'fear', u'rail', u'freight', u'charg', u'increas'] [u'feder', u'demolish', u'aussi', u'reid'] [u'final', u'world', u'trade', u'centr', u'victim', u'count'] [u'ground', u'egyptian', u'plane', u'pari', u'airport'] [u'student', u'return', u'snowi', u'project', u'school'] [u'gaze', u'celebr', u'record'] [u'gibson', u'lash', u'christ', u'film', u'demand'] [u'govt', u'tobacco', u'donat', u'anti', u'smoke', u'lobbi'] [u'green', u'confid', u'win', u'seat', u'elect'] [u'gronholm', u'lead', u'loeb', u'mont', u'carlo', u'open'] [u'hair', u'rais', u'cancer', u'risk', u'studi'] [u'halliburton', u'repay', u'million', u'iraqi', u'kickback'] [u'hawk', u'second', u'bullet', u'misfir'] [u'hewitt', u'set', u'feder', u'clash'] [u'howard', u'slam', u'labor', u'asylum', u'seeker', u'polici'] [u'indian', u'meet', u'islam', u'separatist', u'disput'] [u'india', u'test', u'short', u'rang', u'nuclear', u'capabl', u'missil'] [u'indigen', u'communiti', u'gain', u'polic', u'post'] [u'indonesian', u'polic', u'question'] [u'indonesia', u'renew', u'arm', u'race', u'warn'] [u'injuri', u'cut', u'short', u'pittman', u'brisban'] [u'vice', u'presid', u'suspend'] [u'iran', u'guardian', u'council', u'review', u'poll', u'mistak'] [u'isra', u'command', u'urg', u'west', u'bank', u'roadblock', u'rethink'] [u'italian', u'censor', u'berlusconi', u'satir'] [u'jewish', u'leader', u'slam', u'gibson', u'passion', u'film'] [u'jonker', u'close', u'tour', u'victori'] [u'jonker', u'retain', u'yellow', u'jersey'] [u'khaddafi', u'visit', u'indonesia', u'month'] [u'labor', u'get', u'asylum', u'seeker', u'polici'] [u'laxman', u'hero', u'india'] [u'light', u'aircraft', u'collaps', u'takeoff'] [u'lightn', u'capit', u'stay', u'aliv'] [u'suffer', u'sever', u'injuri', u'crash', u'trail'] [u'surviv', u'hour', u'ordeal', u'trap', u'tractor'] [u'mar', u'knock', u'spirit', u'nasa', u'rover'] [u'mickelson', u'surg', u'stroke', u'lead'] [u'miss', u'girl', u'dead', u'river'] [u'moseley', u'stay', u'touch', u'johannesburg'] [u'musharraf', u'fear', u'pakistani', u'scientist', u'sell', u'nuke'] [u'nation', u'seek', u'shoalhaven', u'plan', u'reviv'] [u'navi', u'intercept', u'alleg', u'toothfish', u'poacher'] [u'nuclear', u'secret', u'trade', u'like', u'drug', u'iaea'] [u'compani', u'clear', u'burma', u'right', u'abus'] [u'olymp', u'bodi', u'suspend', u'amid', u'corrupt', u'probe'] [u'opposit', u'offer', u'polic', u'helicopt', u'elect'] [u'oscar', u'pirat', u'arrest', u'onlin', u'bootleg'] [u'pakistan', u'arrest', u'taliban', u'governor'] [u'pakistan', u'faith', u'captain', u'inzamam'] [u'parmalat', u'execut', u'commit', u'suicid'] [u'person', u'hospitalis', u'accid'] [u'physicist', u'hawk', u'deni', u'abus', u'wife'] [u'polic', u'continu', u'probe', u'whistleblow', u'bulli'] [u'polic', u'drop', u'charg', u'brothel', u'madam'] [u'polic', u'search', u'central', u'west', u'miss', u'girl'] [u'present', u'suspend', u'pend', u'cash', u'comment', u'probe'] [u'opposit', u'elect', u'campaign', u'target', u'road'] [u'reid', u'demolish', u'william', u'crash'] [u'religi', u'leader', u'call', u'iraqi', u'stop'] [u'rocket', u'indian', u'kashmir', u'nation'] [u'rossi', u'play', u'chanc', u'yamaha'] [u'russia', u'say', u'pressur', u'kyoto', u'delay', u'unfair'] [u'cricket', u'honour', u'hook'] [u'saha', u'complet', u'unit'] [u'scud', u'overpow', u'ancic', u'venus', u'crash'] [u'separ', u'egyptian', u'twin', u'walk'] [u'queensland', u'recov', u'sever', u'storm'] [u'shark', u'strong', u'start', u'seven'] [u'shuttl', u'flight', u'look', u'like', u'busi', u'usual', u'nasa'] [u'kill', u'miss', u'boat', u'sink'] [u'skateboard', u'slash', u'knife'] [u'sky', u'limit', u'record', u'breaker'] [u'socceroo', u'clash', u'south', u'africa'] [u'spirit', u'make', u'feebl', u'mar'] [u'spirit', u'rover', u'communic', u'earth'] [u'striker', u'unit', u'match', u'abandon'] [u'tarkin', u'protect', u'group', u'meet', u'weekend'] [u'cancer', u'council', u'push', u'tobacco'] [u'teenag', u'die', u'bird', u'vietnam'] [u'thai', u'govern', u'handl', u'bird'] [u'kill', u'road', u'accid'] [u'tiatto', u'give', u'month', u'save', u'citi', u'career'] [u'time', u'run', u'state', u'solut', u'arafat'] [u'tougher', u'penalti', u'dummi', u'bidder', u'auction'] [u'triathlet', u'thompson', u'take', u'aquathlon', u'titl'] [u'buddhist', u'monk', u'policeman', u'kill', u'south'] [u'pilot', u'kill', u'chopper', u'crash', u'iraq'] [u'umaga', u'miss', u'start', u'super', u'report'] [u'union', u'question', u'polic', u'survey', u'releas'] [u'liaison', u'team', u'arriv', u'iraq'] [u'team', u'survey', u'secur', u'risk', u'baghdad'] [u'ask', u'iran', u'send', u'qaeda', u'captiv', u'home'] [u'busi', u'urg', u'bush', u'libyan', u'sanction'] [u'claim', u'iraqi', u'milit', u'captur'] [u'stock', u'investor', u'profit'] [u'urg', u'europ', u'join', u'terror'] [u'gear', u'australia', u'celebr'] [u'walk', u'listen', u'studi'] [u'white', u'hous', u'seek', u'militari', u'spend'] [u'wood', u'caution', u'rush', u'thing'] [u'thief', u'get', u'steer'] [u'zimbabwean', u'polic', u'raid', u'opposit', u'parti'] [u'zimbabwean', u'chase', u'indian', u'total'] [u'arrest', u'sydney', u'rail', u'drug', u'bust'] [u'proceed', u'probe', u'cash', u'comment'] [u'academ', u'defend', u'butler', u'controversi', u'speech'] [u'personnel', u'arriv', u'home', u'iraq', u'servic'] [u'african', u'human', u'right', u'court'] [u'anderson', u'critic', u'beatti', u'grin', u'polit'] [u'anglican', u'bishop', u'prais', u'labor', u'refuge', u'polici'] [u'anglo', u'zulu', u'enact', u'draw', u'cast', u'thousand'] [u'arsenal', u'chelsea', u'liverpool', u'notch', u'win'] [u'atsic', u'lobbi', u'fund', u'clark', u'appeal'] [u'attack', u'kill', u'iraq'] [u'attempt', u'murder', u'charger', u'machet', u'attack'] [u'australian', u'open', u'result', u'sunday'] [u'ban', u'film', u'take', u'honour', u'bangladeshi', u'film'] [u'beatti', u'promis', u'ambul', u'boost'] [u'beatti', u'promis', u'ambul', u'servic'] [u'brack', u'inject', u'fund', u'polic', u'forc'] [u'britain', u'buck', u'pressur', u'admit', u'err', u'iraqi'] [u'dump', u'merger', u'plan', u'nation', u'film', u'archiv'] [u'cambodian', u'mourn', u'unionist', u'death'] [u'canberra', u'assist', u'second', u'mar', u'land'] [u'internet', u'music', u'bust'] [u'celtic', u'maintain', u'huge', u'ger'] [u'chile', u'dictat', u'pinochet', u'discharg', u'hospit'] [u'clean', u'continu', u'storm', u'south', u'east'] [u'congression', u'visit', u'mark', u'thaw', u'libyan'] [u'daili', u'mail', u'parent', u'map', u'daili', u'sunday'] [u'date', u'rape', u'drug', u'drop', u'sweden'] [u'dido', u'score', u'franc', u'madonna', u'britney', u'look'] [u'desex', u'law', u'fail', u'rspca'] [u'dog', u'need', u'yoga'] [u'downer', u'israel', u'meet', u'sharon'] [u'farmer', u'famili', u'tell', u'heroic', u'tale', u'surviv'] [u'fergi', u'pois', u'sign', u'unit', u'contract', u'report'] [u'gate', u'pledg', u'unclog', u'email', u'box'] [u'gate', u'knight', u'report'] [u'govt', u'plan', u'compulsori', u'leav', u'pass', u'high', u'school'] [u'green', u'prefer', u'decis', u'beatti'] [u'hansen', u'edg', u'ahead', u'pursuit', u'second', u'titl'] [u'hezbollah', u'confirm', u'prison', u'swap', u'israel'] [u'indonesia', u'mull', u'random', u'blood', u'test', u'bird'] [u'inquiri', u'launch', u'polic', u'crash'] [u'intern', u'crisi', u'meet', u'call', u'bird'] [u'iran', u'dismiss', u'claim', u'sept', u'link'] [u'iraqi', u'wmds', u'open', u'question', u'powel'] [u'iraq', u'weapon', u'report', u'take', u'serious', u'annan'] [u'hollywood', u'sing', u'hail', u'hobbit'] [u'israel', u'accept', u'turkish', u'mediat', u'offer', u'talk'] [u'johnson', u'talk', u'hill', u'captainci', u'chanc'] [u'jone', u'say', u'set', u'aussi', u'empir'] [u'jonker', u'end', u'cycl', u'career', u'style'] [u'journalist', u'releas', u'brief', u'arrest', u'aceh'] [u'say', u'iraq', u'weapon', u'syria', u'report'] [u'king', u'bullet', u'bounc'] [u'klitschko', u'retir', u'box', u'champ', u'lewi'] [u'labor', u'coalit', u'score', u'health', u'polici'] [u'lightn', u'storm', u'put', u'southern', u'sydney', u'dark'] [u'lightn', u'strike', u'kill', u'cricket'] [u'loeb', u'put', u'citroen', u'drive', u'seat'] [u'maher', u'accus', u'tiger', u'soft', u'tactic'] [u'major', u'want', u'blair', u'rap', u'kelli', u'probe'] [u'attack', u'shark'] [u'cairn', u'court', u'bomb', u'hoax', u'charg'] [u'matthew', u'back', u'voss', u'open'] [u'mayor', u'tout', u'shoalwat', u'militari', u'base'] [u'media', u'damag', u'famili', u'pope'] [u'mitchel', u'fight', u'interim', u'crown', u'tszyus'] [u'molik', u'bow', u'davenport', u'henin', u'hardenn'] [u'molik', u'face', u'french', u'ambush'] [u'dope', u'scandal', u'hurt', u'cycl', u'armstrong'] [u'georgian', u'presid', u'welcom', u'powel'] [u'newton', u'exhibit', u'open', u'despit', u'death'] [u'year', u'suffer', u'head', u'injuri', u'accid'] [u'nomin', u'seek', u'sport', u'award'] [u'say', u'reduct', u'school', u'class', u'size', u'come'] [u'weekend', u'road', u'toll', u'rise'] [u'gear', u'australia', u'festiv'] [u'truck', u'industri', u'look', u'bright'] [u'olymp', u'outclass', u'wolv'] [u'dead', u'miss', u'strong', u'wind', u'philippin'] [u'opportun', u'mar', u'land'] [u'opportun', u'land', u'mar'] [u'opportun', u'probe', u'land', u'mar'] [u'opportun', u'send', u'mar', u'pictur'] [u'orang', u'utan', u'rehab', u'start', u'borneo', u'ape'] [u'pakistan', u'free', u'scientist', u'nuclear', u'leak', u'probe'] [u'pedestrian', u'kill', u'brisban'] [u'perth', u'resid', u'ask', u'recycl', u'aust'] [u'perth', u'train', u'driver', u'consid', u'strike'] [u'piec', u'boat', u'histori', u'home', u'hobart'] [u'drop', u'springborg', u'launch', u'campaign'] [u'polic', u'crack', u'paint', u'sniff'] [u'polic', u'hunt', u'involv', u'watch', u'robberi'] [u'polic', u'investig', u'possibl', u'speed', u'accid'] [u'polic', u'search', u'miss'] [u'prosecutor', u'order', u'bodi', u'exhum', u'rasta'] [u'brace', u'storm'] [u'opposit', u'vow', u'campaign', u'live'] [u'quak', u'jolt', u'taiwan'] [u'ravanelli', u'goal', u'fail', u'save', u'perugia'] [u'renown', u'arab', u'writer', u'munif', u'die'] [u'roddick', u'agassi', u'cruis', u'quarter', u'final'] [u'ronaldo', u'target', u'real'] [u'rossi', u'give', u'thumb', u'test', u'ride'] [u'sewag', u'station', u'upgrad', u'curb', u'pollut', u'risk'] [u'south', u'east', u'queensland', u'strike', u'lightn'] [u'sprinkler', u'turn', u'canberra'] [u'storer', u'pluck', u'tamworth', u'golden', u'guitar'] [u'servic', u'ask', u'consum', u'check'] [u'taxpay', u'spend', u'million', u'clean', u'graffiti'] [u'thailand', u'bring', u'troop', u'fight', u'bird'] [u'thunderstorm', u'ravag', u'south', u'east'] [u'tiger', u'edg', u'eel', u'seven', u'glori'] [u'tight', u'secur', u'keep', u'anti', u'protest'] [u'time', u'travel', u'music', u'rivalri', u'sundanc'] [u'tiwi', u'island', u'celebr', u'aust', u'footi'] [u'triplett', u'make', u'charg', u'california'] [u'dead', u'miss', u'sudden', u'squall', u'northern'] [u'unhealthi', u'lifestyl', u'put', u'beij'] [u'food', u'firm', u'oppos'] [u'propos', u'arm', u'check', u'north', u'korea', u'report'] [u'south', u'korea', u'hold', u'talk', u'beef', u'import'] [u'polic', u'union', u'hail', u'fund', u'boost'] [u'school', u'arent', u'face', u'fund', u'crisi', u'minist'] [u'lib', u'pledg', u'toughen', u'plate', u'rule'] [u'polic', u'charg', u'suspect', u'evid'] [u'warrior', u'lose', u'late', u'wicket'] [u'waugh', u'want', u'award', u'inspir', u'youth'] [u'wilkinson', u'nation', u'comeback', u'doubt'] [u'acoss', u'draw', u'attent', u'rich', u'poor', u'divid'] [u'spend', u'prioriti', u'question'] [u'agricultur', u'trade', u'agreement', u'howard'] [u'safeti', u'probe', u'launch', u'beach', u'land'] [u'flag', u'defenc', u'base', u'golf', u'cours', u'review'] [u'ambul', u'levi', u'fund', u'beatti', u'paramed', u'plan'] [u'atsic', u'leader', u'call', u'inclus', u'aust'] [u'aussi', u'martyn', u'open'] [u'aust', u'activ', u'aplenti'] [u'aust', u'award', u'aplenti', u'northern'] [u'aust', u'award', u'honour', u'local', u'achiev'] [u'aust', u'honour', u'flow', u'southern', u'northern'] [u'aust', u'honour', u'south', u'east', u'pair'] [u'australia', u'beacon', u'harmoni'] [u'australia', u'honour', u'tasmanian'] [u'australia', u'wipeout', u'hewitt', u'scud'] [u'australian', u'open', u'result', u'monday', u'week'] [u'australian', u'talent', u'gear', u'golden', u'globe'] [u'bangladesh', u'grappl', u'mysteri', u'diseas'] [u'bangladesh', u'mahmud', u'quit', u'cricket', u'lose'] [u'beatti', u'push', u'free', u'trade', u'sweeten'] [u'beatti', u'springborg', u'promis', u'west'] [u'bionic', u'inventor', u'score', u'australia', u'award'] [u'bird', u'death', u'increas', u'asia'] [u'bird', u'greater', u'threat', u'health', u'expert'] [u'bird', u'reach', u'indonesia'] [u'bird', u'strain', u'detect', u'pakistan'] [u'blair', u'scrambl', u'avert', u'damag', u'defeat'] [u'blue', u'chase', u'victori'] [u'blue', u'chase', u'target'] [u'brazilian', u'soccer', u'say', u'goodby', u'great'] [u'bull', u'hobart'] [u'bushfir', u'recoveri', u'worker', u'receiv', u'australia'] [u'bushrang', u'redback', u'play', u'hook', u'trophi'] [u'cadburi', u'sue', u'victorian', u'dairi', u'giant'] [u'camper', u'warn', u'danger'] [u'camplin', u'fli', u'high', u'canada'] [u'canberra', u'welcom', u'citizen'] [u'cobar', u'oper', u'look', u'good'] [u'clijster', u'continu', u'crush', u'form'] [u'coalit', u'person', u'attack', u'beatti', u'say'] [u'cook', u'sanderson', u'beach', u'volleybal', u'titl'] [u'councillor', u'consid', u'legal', u'action', u'honesti'] [u'countri', u'perform', u'prove', u'talent'] [u'date', u'israel', u'hezbollah', u'prison', u'swap'] [u'davi', u'swede', u'gun', u'aussi'] [u'diamond', u'miner', u'look', u'outback'] [u'domest', u'violenc', u'survivor', u'name', u'local', u'hero'] [u'dougla', u'receiv', u'lifetim', u'achiev', u'award'] [u'driver', u'urg', u'watch', u'return', u'student'] [u'dunde', u'unit', u'local', u'derbi'] [u'english', u'cricket', u'chief', u'want', u'talk', u'zimbabw', u'tour'] [u'member', u'saddam', u'baath', u'parti', u'pledg'] [u'farmer', u'recov', u'tractor', u'mishap'] [u'film', u'director', u'schepisi', u'honour', u'aust', u'award'] [u'final', u'loom', u'polic', u'road', u'oper'] [u'damag', u'perth', u'sawmil'] [u'firefight', u'tackl', u'rocki', u'cape', u'blaze'] [u'fishermen', u'miss', u'squall', u'philippin'] [u'injur', u'sydney', u'shoot'] [u'floodwat', u'return', u'england'] [u'floodwat', u'spark', u'creek', u'strand'] [u'french', u'green', u'boycott', u'chines', u'presid', u'address'] [u'plant', u'detect', u'landmin'] [u'green', u'seat'] [u'group', u'prais', u'curb', u'great', u'ocean', u'road'] [u'hama', u'readi', u'accept', u'phase', u'withdraw'] [u'help', u'team', u'bomaderri', u'death'] [u'howard', u'defiant', u'iraq', u'involv'] [u'howard', u'fear', u'terrorist', u'attack'] [u'hunter', u'resid', u'name', u'aust', u'honour'] [u'indigen', u'artist', u'aust', u'winner'] [u'indonesia', u'admit', u'bird', u'warn'] [u'iranian', u'vote', u'chang', u'elector', u'ban'] [u'iran', u'guardian', u'council', u'veto', u'power', u'challeng'] [u'japan', u'turn', u'barcod', u'restor', u'beef', u'market'] [u'kangaroo', u'want', u'power'] [u'katherin', u'rememb', u'australia', u'flood'] [u'kutcher', u'float', u'like', u'butterfli', u'offic'] [u'labor', u'lay', u'cutback', u'fund', u'promis'] [u'late', u'strike', u'seal', u'olyroo'] [u'latham', u'call', u'uniti', u'australian', u'societi'] [u'latham', u'plan', u'review', u'better', u'parent', u'measur'] [u'local', u'govt', u'group', u'back', u'norman', u'win', u'grower'] [u'long', u'weekend', u'road', u'toll', u'hit'] [u'die', u'hospit', u'motorcycl', u'accid'] [u'kill', u'accid'] [u'court', u'bomaderri', u'stand'] [u'mickelson', u'edg', u'kendal', u'victori', u'california'] [u'migrant', u'australia', u'home', u'citizenship'] [u'migrant', u'pledg', u'allegi', u'hobart'] [u'milan', u'narrow', u'seri'] [u'storm', u'ahead', u'south', u'east'] [u'school', u'stanc', u'puzzl', u'teacher', u'feder'] [u'mysteri', u'ill', u'kill', u'bangladesh'] [u'nalbandian', u'ferrero', u'quarter'] [u'niue', u'toddler', u'die', u'hospit'] [u'sugar', u'deal', u'vail'] [u'legal', u'pioneer', u'recognis', u'australia'] [u'south', u'coast', u'share', u'aust', u'honour'] [u'town', u'flood', u'alert'] [u'olympian', u'australia', u'honour', u'winner'] [u'olymp', u'legend', u'fanni', u'blanker', u'koen', u'dead'] [u'olyroo', u'face', u'kiwi', u'athen', u'berth'] [u'olyroo', u'triumph', u'kiwi'] [u'parmalat', u'founder', u'leav', u'hospit', u'jail'] [u'plan', u'afoot', u'boost', u'armi', u'cadet', u'number'] [u'encourag', u'debat', u'school'] [u'reject', u'behaviour', u'legisl', u'propos'] [u'polic', u'lament', u'hunter', u'drink', u'drive'] [u'polic', u'weekend', u'drink', u'drive', u'arrest'] [u'polic', u'search', u'clue', u'sydney', u'drive', u'shoot'] [u'poultri', u'screen', u'adequ', u'aqi', u'say'] [u'pressur', u'elect', u'grow', u'iraq'] [u'leader', u'stand', u'health', u'plan'] [u'rare', u'tiger', u'russia', u'east'] [u'receiv', u'appoint', u'flowcom'] [u'record', u'centuri', u'power', u'bull', u'home'] [u'ring', u'claim', u'film', u'throne', u'golden', u'globe'] [u'riverland', u'welcom', u'australian', u'citizen'] [u'russian', u'soldier', u'kill', u'chechen', u'ambush'] [u'tuna', u'farmer', u'net', u'australia', u'award'] [u'scientist', u'artist', u'campaign', u'award', u'winner'] [u'scientist', u'isol', u'genet', u'marker', u'leprosi'] [u'scottish', u'milliped', u'earth', u'oldest', u'creatur'] [u'scud', u'drop'] [u'scud', u'hewitt', u'quarter', u'final', u'berth'] [u'scud', u'hewitt', u'quarter', u'final', u'spot'] [u'second', u'blaze', u'strike', u'goonoo', u'forest'] [u'second', u'marriott', u'blast', u'suspect', u'trial'] [u'seven', u'suspect', u'rebel', u'kill', u'aceh'] [u'sharehold', u'queri', u'transfer', u'payment'] [u'shark', u'attack', u'spark', u'dive', u'warn'] [u'siem', u'clinch', u'titl', u'play'] [u'skaif', u'bennett', u'name', u'australia', u'honour'] [u'slipperi', u'surpris', u'python', u'appear', u'barcelona'] [u'south', u'glori', u'score', u'draw'] [u'south', u'korea', u'report', u'suspect', u'bird', u'case'] [u'sport', u'lifestyl', u'essenc', u'australia'] [u'springborg', u'head', u'west', u'offici', u'launch'] [u'storm', u'lash', u'south', u'east', u'queensland'] [u'storm', u'play', u'havoc', u'power', u'suppli'] [u'survey', u'show', u'chines', u'unhappi', u'fight'] [u'sydney', u'launch', u'australia', u'festiv'] [u'syria', u'scoff', u'claim', u'iraqi', u'weapon'] [u'taiwan', u'declar', u'bird', u'free'] [u'territorian', u'receiv', u'australia', u'award'] [u'terror', u'fear', u'stifl', u'vital', u'issu', u'archbishop'] [u'thailand', u'confirm', u'bird', u'fatal'] [u'thai', u'deni', u'bird', u'cover'] [u'thai', u'troop', u'deploy', u'battl', u'bird'] [u'thousand', u'australian', u'citizen'] [u'thousand', u'flock', u'aust', u'parad'] [u'toyota', u'overtak', u'ford', u'sale'] [u'trucki', u'court', u'drug'] [u'tuna', u'tosser', u'unlik', u'reel', u'world', u'record'] [u'queensland', u'receiv', u'australia', u'honour'] [u'underworld', u'leak', u'nuclear', u'secret', u'pakistani'] [u'unit', u'fifth', u'round'] [u'seek', u'fund', u'rebuild', u'gaza', u'home'] [u'express', u'concern', u'algerian', u'elect'] [u'helicopt', u'crash', u'iraq', u'crew', u'miss'] [u'releas', u'jazeera', u'cameraman', u'iraq'] [u'valencia', u'slip', u'real', u'madrid', u'breath'] [u'govt', u'say', u'plate', u'zero', u'alcohol', u'plan', u'unwork'] [u'wait', u'iraqi', u'weapon', u'downer'] [u'rail', u'disput', u'track'] [u'resid', u'offici', u'aussi'] [u'warrior', u'chop', u'blue', u'angel', u'quit', u'high'] [u'water', u'patrol', u'uncov', u'fish', u'breach'] [u'western', u'resid', u'share', u'aust', u'honour'] [u'fear', u'bird', u'outbreak'] [u'windi', u'meltdown', u'worst', u'perform'] [u'woman', u'die', u'bundarra', u'crash'] [u'young', u'aust', u'year', u'hop', u'award', u'fuel'] [u'zimbabw', u'go', u'fight', u'adelaid'] [u'zimbabw', u'massiv', u'chase'] [u'secur', u'bolster', u'kill'] [u'kill', u'cairo', u'build', u'collaps'] [u'academ', u'predict', u'charter', u'tower', u'challeng'] [u'afghan', u'presid', u'sign', u'decre', u'make'] [u'add', u'francisco', u'destin', u'list'] [u'annan', u'say', u'commiss', u'need', u'thwart', u'genocid'] [u'anzac', u'visit', u'gallipoli', u'chang'] [u'arsenal', u'face', u'chelsea'] [u'dead', u'cairo', u'build', u'collaps'] [u'aussi', u'face', u'select', u'dilemma'] [u'aust', u'award', u'winner', u'seek', u'volunt'] [u'australian', u'navi', u'start', u'target', u'practic'] [u'barbara', u'walter', u'leav'] [u'beatti', u'await', u'detail', u'militari', u'base'] [u'beatti', u'order', u'campaign', u'gutter'] [u'bendigo', u'bank', u'address', u'shortcom'] [u'benfica', u'striker', u'die', u'collaps', u'pitch'] [u'billiton', u'hop', u'good', u'coke', u'coal', u'price'] [u'biodivers', u'trade', u'scheme', u'month', u'away'] [u'bird', u'crisi', u'summit', u'hold'] [u'bird', u'rais', u'fear', u'poultri', u'industri'] [u'bird', u'vaccin', u'month', u'away'] [u'bird', u'owner', u'urg', u'lock', u'bird'] [u'birth', u'pool', u'eas', u'earli', u'labour', u'pain', u'doctor'] [u'blair', u'face', u'tight', u'vote', u'fund', u'reform'] [u'boro', u'open', u'talk', u'sign', u'mill'] [u'bounti', u'reject', u'suspend', u'seismic', u'test'] [u'broom', u'take', u'plan', u'approach', u'recruit'] [u'brown', u'target', u'shoot', u'championship', u'win'] [u'buchanan', u'back', u'struggl', u'martyn'] [u'bullish', u'time', u'beef', u'produc'] [u'bushwalk', u'rescu', u'blue', u'mountain'] [u'royal', u'commiss', u'health'] [u'govt', u'clarifi', u'propos'] [u'call', u'govt', u'reconsid', u'centr'] [u'caltex', u'franchis', u'challeng', u'discount', u'fuel', u'plan'] [u'caltex', u'fuel', u'disput', u'refer', u'mediat'] [u'canberra', u'mourn', u'famili', u'kill', u'smash'] [u'central', u'victorian', u'share', u'aust', u'award'] [u'chariti', u'group', u'help', u'share', u'cost', u'school', u'year'] [u'china', u'confirm', u'bird', u'outbreak'] [u'clinton', u'gift', u'internet', u'email'] [u'cole', u'uphold', u'appeal', u'fail'] [u'conserv', u'council', u'slam', u'port', u'botani', u'environ'] [u'corridor', u'work', u'includ', u'local', u'road', u'chang'] [u'costello', u'accus', u'labor', u'amateur', u'account'] [u'cotter', u'unlik', u'rise', u'ash'] [u'councillor', u'unhappi', u'health', u'servic', u'offer'] [u'cricket', u'communiti', u'prepar', u'hook', u'farewel'] [u'damag', u'storm', u'rise'] [u'david', u'hook', u'funer'] [u'debat', u'rag', u'bird', u'pakistan'] [u'debri', u'miss', u'plane', u'search'] [u'diamond', u'accept', u'firearm', u'charg'] [u'disgrac', u'cyclist', u'say', u'percent', u'rider'] [u'doctor', u'jail', u'lie', u'medic', u'board'] [u'dominican', u'migrant', u'miss'] [u'doubt', u'rais', u'truanci', u'plan'] [u'downer', u'urg', u'asia', u'open', u'bird'] [u'dreamworld', u'take', u'chairlift', u'precaut'] [u'driver', u'start', u'heed', u'road', u'safeti', u'warn'] [u'driver', u'urg', u'wari', u'school', u'student'] [u'earli', u'agfair'] [u'emerg', u'servic', u'worker', u'reflect', u'aust'] [u'councillor', u'get', u'aust', u'honour'] [u'expert', u'predict', u'popul', u'declin', u'short', u'term'] [u'feder', u'fund', u'boost', u'jetti', u'plan'] [u'feedback', u'seek', u'hors', u'remov', u'plan'] [u'firefight', u'protect', u'rare', u'plant', u'blaze'] [u'flood', u'relief', u'arrang', u'widen'] [u'forest', u'industri', u'loggerhead', u'protest'] [u'jethro', u'tull', u'rocker', u'chang'] [u'free', u'throw', u'let', u'defeat', u'croc'] [u'face', u'labor', u'opposit'] [u'geelong', u'help', u'test', u'bird', u'virus'] [u'ghan', u'timet', u'track'] [u'girl', u'bali', u'diagnos', u'suspect', u'bird'] [u'girl', u'drown', u'spark', u'counsel', u'offer'] [u'gold', u'coast', u'school', u'join', u'prep', u'trial'] [u'golden', u'girl', u'cook', u'take', u'injuri', u'time'] [u'gold', u'miner', u'upbeat', u'drill', u'prospect'] [u'govt', u'approv', u'assist', u'palestinian'] [u'govt', u'educ', u'reform', u'packag', u'caus', u'concern'] [u'govt', u'urg', u'resolv', u'clark', u'futur'] [u'green', u'limit', u'prefer', u'labor'] [u'guid', u'aim', u'boost', u'break', u'hill', u'visitor', u'number'] [u'henley', u'mersey', u'attract', u'good', u'crowd'] [u'hook', u'leav', u'adelaid', u'oval', u'time'] [u'hope', u'resolut', u'hospit', u'doctor', u'disput'] [u'hope', u'second', u'magistr', u'boost', u'legal', u'servic'] [u'hume', u'highway', u'talk', u'focus', u'safeti'] [u'india', u'turn', u'youth'] [u'indigen', u'disput', u'settl', u'court'] [u'indigen', u'communiti', u'tell', u'stori'] [u'indigen', u'begin', u'youth', u'scheme'] [u'indigen', u'women', u'group', u'case', u'nuclear'] [u'indonesia', u'deni', u'bird', u'cover'] [u'indonesian', u'fish', u'boat', u'nab'] [u'insurrect', u'trial', u'resum', u'south', u'africa'] [u'ioc', u'face', u'corrupt', u'charg'] [u'iraq', u'kick', u'join'] [u'irish', u'want', u'leagu', u'world', u'spot'] [u'isra', u'secur', u'barrier', u'provoc', u'downer', u'say'] [u'israel', u'prais', u'australia', u'stanc', u'terror'] [u'japanes', u'balloonist', u'take', u'pacif', u'cross'] [u'japan', u'formal', u'order', u'troop', u'iraq'] [u'earn', u'hollywood', u'dishonour', u'razzi'] [u'kenyan', u'court', u'hotel', u'bomb'] [u'turn', u'fish', u'vietnam', u'bird'] [u'kip', u'get', u'aust', u'honour'] [u'labor', u'say', u'defenc', u'land', u'sell', u'cheapli'] [u'late', u'rate', u'payment', u'affect', u'shire', u'financ'] [u'late', u'train', u'trigger', u'compo'] [u'latham', u'defend', u'parent', u'propos'] [u'law', u'trigger', u'gun', u'handback', u'opportun'] [u'leader', u'head', u'north', u'elect', u'race'] [u'legisl', u'focus', u'limit', u'great', u'ocean'] [u'liverpool', u'striker', u'heskey', u'face', u'injuri'] [u'local', u'share', u'aust', u'award'] [u'love', u'blindbut', u'improv'] [u'guilti', u'beach', u'attack'] [u'drug', u'charg', u'front', u'court'] [u'mar', u'rover', u'photo', u'holi', u'grail'] [u'mauresmo', u'pull', u'australian', u'open'] [u'mechan', u'failur', u'derail'] [u'west', u'host', u'cabinet', u'meet'] [u'mix', u'respons', u'wastewat', u'pipelin', u'pledg'] [u'model', u'warship', u'prepar', u'battl'] [u'audit', u'deal', u'team'] [u'delay', u'bathurst', u'visitor', u'centr'] [u'motiv', u'mickelson', u'see', u'major', u'possibl'] [u'happi', u'vail', u'free', u'trade', u'posit'] [u'warn', u'industri', u'safeti', u'profit'] [u'multicultur', u'high', u'school', u'celebr', u'year'] [u'mysteri', u'surround', u'fish', u'kill'] [u'announc', u'strateg', u'sell'] [u'loss', u'total'] [u'trader', u'say', u'manag', u'awar', u'currenc'] [u'worm'] [u'emerg', u'servic', u'schedul'] [u'offer', u'avert', u'industri', u'action'] [u'sport', u'centr', u'readi', u'busi'] [u'extend', u'medic', u'indemn', u'paediatr'] [u'poultri', u'farmer', u'confid', u'avoid', u'bird'] [u'govt', u'revamp', u'tennant', u'railway', u'station'] [u'accept', u'asylum', u'seeker', u'nauru'] [u'space', u'expert', u'ask', u'nasa', u'lift', u'mar'] [u'accept', u'nauru', u'asylum', u'seeker'] [u'oilfield', u'spark', u'frenzi', u'trade'] [u'olyroo', u'close', u'olymp', u'berth'] [u'opal', u'avoid', u'olymp', u'draw'] [u'park', u'meter', u'decis', u'hold'] [u'parmalat', u'audit', u'reveal', u'bigger', u'debt', u'report'] [u'parmalat', u'debt'] [u'perth', u'australia', u'revel', u'warn'] [u'phelp', u'spitz', u'chief'] [u'polic', u'motorcycl', u'crash', u'victim'] [u'polic', u'offic', u'plead', u'guilti', u'possess'] [u'polic', u'probe', u'knife', u'incid'] [u'polic', u'unhappi', u'continu', u'drive', u'offenc'] [u'polic', u'welcom', u'children', u'court', u'plan'] [u'probe', u'cyclist', u'alleg', u'drug'] [u'probe', u'launch', u'hospit', u'assault', u'claim'] [u'propos', u'coastal', u'plan', u'legisl', u'worri', u'shire'] [u'public', u'ask', u'help', u'fund', u'green', u'fight'] [u'public', u'nation', u'park', u'natur', u'reserv'] [u'public', u'pipelin', u'launch'] [u'parent', u'quiz', u'coalit', u'educ', u'fund'] [u'rain', u'doesnt', u'dampen', u'aust', u'enthusiasm'] [u'rare', u'eleph', u'kill', u'indonesian', u'park'] [u'reason', u'give', u'delay', u'power', u'return'] [u'cross', u'defend', u'bali', u'appeal', u'fund', u'decis'] [u'brew', u'telstra', u'sale', u'claim'] [u'russia', u'collabor', u'mar', u'explor', u'putin'] [u'safin', u'stun', u'roddick', u'agassi', u'henin', u'hardenn'] [u'salt', u'maker', u'consid', u'export', u'potenti'] [u'unhappi', u'reform', u'packag'] [u'school', u'support', u'miss', u'teen', u'famili'] [u'schumach', u'readi', u'action', u'ferrari'] [u'scud', u'fire', u'shoot', u'davi', u'schedul'] [u'search', u'continu', u'crew', u'miss', u'plane'] [u'search', u'prison', u'site', u'drag'] [u'second', u'thai', u'die', u'bird'] [u'share', u'market', u'trade', u'finish'] [u'shark', u'unlik', u'attack'] [u'sign', u'highlight', u'stormwat', u'pollut'] [u'sixer', u'lobbi', u'sign'] [u'iraqi', u'policemen', u'kill'] [u'sixteen', u'trap', u'rubbl', u'collaps', u'build'] [u'snake', u'handler', u'hospit', u'king', u'brown', u'bite'] [u'south', u'west', u'victorian', u'share', u'aust', u'honour'] [u'spear', u'beyonc', u'pink', u'fizzi'] [u'bridg', u'level', u'cross', u'fatal', u'site'] [u'steal', u'watch', u'difficult', u'sell', u'polic'] [u'student', u'begin', u'school', u'year'] [u'studi', u'find', u'killer', u'get', u'longer', u'jail', u'term'] [u'sugar', u'industri', u'fear', u'token', u'gestur'] [u'suicid', u'bomber', u'kill', u'canadian', u'peacekeep', u'kabul'] [u'survey', u'forecast', u'strong', u'econom', u'growth'] [u'govt', u'deni', u'specialist', u'resign'] [u'oppn', u'want', u'parliament', u'decid', u'worker', u'law'] [u'teacher', u'prepar', u'school', u'year'] [u'tendulkar', u'skip', u'clash'] [u'suspect', u'bird', u'case', u'thailand', u'offici'] [u'test', u'confirm', u'bird', u'outbreak', u'lao', u'offici'] [u'thailand', u'confirm', u'death', u'bird'] [u'timefram', u'releas', u'airport', u'comment'] [u'troop', u'kill', u'suspect', u'rebel', u'aceh'] [u'storey', u'build', u'collaps', u'cairo'] [u'place', u'divid', u'state'] [u'reform', u'anger', u'govt'] [u'unit', u'sharehold', u'tough', u'fergi'] [u'mission', u'send', u'iraq'] [u'investig', u'iraqi', u'civilian', u'death'] [u'offici', u'hold', u'landmark', u'libya', u'talk'] [u'review', u'intellig', u'iraqi', u'weapon'] [u'get', u'anti', u'toxic', u'dump', u'push'] [u'violenc', u'mar', u'perth', u'aust', u'festiv'] [u'volunt', u'prais', u'forest', u'effort'] [u'expert', u'say', u'bird', u'vaccin', u'month', u'away'] [u'wall', u'street', u'step', u'posit', u'territori'] [u'polic', u'seek', u'question', u'murder'] [u'warn', u'unlik', u'lankan', u'seri'] [u'fear', u'major', u'outbreak', u'asia', u'fight', u'bird'] [u'wine', u'industri', u'urg', u'avoid', u'arrog'] [u'wine', u'industri', u'warn', u'arrog'] [u'work', u'parti', u'consid', u'sawtel', u'rate', u'rise'] [u'zidan', u'admit', u'creatin', u'juventus', u'dope'] [u'zimbabwean', u'student', u'consid', u'deport', u'fight'] [u'zimbabw', u'promis', u'stump', u'england'] [u'zimbabw', u'reject', u'mugab', u'ill', u'report'] [u'commiss', u'hear', u'flight', u'attend', u'phone'] [u'polic', u'chief', u'swap', u'badg', u'book'] [u'actu', u'push', u'poor', u'famili'] [u'alic', u'council', u'put', u'fund', u'matter', u'agenda'] [u'make', u'elect', u'pitch', u'central'] [u'aluminium', u'smelter', u'feel', u'stronger', u'dollar', u'impact'] [u'amazoncom', u'post', u'year', u'profit'] [u'amrozi', u'seek', u'judici', u'review', u'escap', u'execut'] [u'argentin', u'dirti', u'babi', u'meet', u'grandmoth'] [u'arrest', u'expect', u'environ', u'centr', u'blockad'] [u'fall', u'despit', u'major', u'trade'] [u'aussi', u'hit', u'world', u'swim', u'facil'] [u'aussi', u'unchang', u'davi', u'open'] [u'australian', u'dollar', u'rid', u'high', u'weak', u'greenback'] [u'australian', u'journalist', u'catch', u'iraq', u'battl'] [u'aust', u'review', u'chicken', u'import', u'rule'] [u'badani', u'lead', u'india'] [u'barra', u'fish', u'industri', u'call', u'review'] [u'basebal', u'prokopec', u'track', u'athen'] [u'baxter', u'detaine', u'hospitalis', u'hunger', u'strike'] [u'beatti', u'target', u'home', u'buyer'] [u'beef', u'produc', u'await', u'floodwat'] [u'better', u'expect', u'patronag', u'flight'] [u'clean', u'pilbara', u'asbesto'] [u'crowd', u'expect', u'local', u'govt', u'reform', u'ralli'] [u'blair', u'clear', u'hutton', u'kelli', u'report'] [u'bodi', u'remain', u'coast'] [u'bolton', u'final', u'despit', u'villa', u'scare'] [u'bowl', u'club', u'look', u'water', u'relief', u'fund'] [u'bradford', u'await', u'casualti', u'report', u'panther', u'clash'] [u'british', u'soldier', u'kill', u'kabul', u'explos'] [u'burma', u'accus', u'work', u'destabilis', u'asia'] [u'crocodil', u'hunt'] [u'gympi', u'gold', u'asset'] [u'effort', u'control', u'wild', u'dog'] [u'contemporari', u'design', u'centr'] [u'charter', u'tower', u'agre', u'seat', u'hard', u'hold'] [u'china', u'say', u'bird', u'outbreak', u'control'] [u'coalit', u'promis', u'bust', u'graffiti', u'artist'] [u'classroom', u'make', u'children'] [u'coron', u'rule', u'famili', u'tragedi'] [u'costello', u'fear', u'bird', u'hurt', u'tourism'] [u'council', u'back', u'lighthous', u'platform', u'effort'] [u'council', u'keen', u'start', u'greenwel', u'waterfront', u'work'] [u'councillor', u'put', u'water', u'suppli', u'council', u'agenda'] [u'council', u'meet', u'merger', u'opposit'] [u'council', u'unhappi', u'collaps'] [u'cricket', u'australia', u'deni', u'warn', u'tour'] [u'davi', u'male', u'golfer'] [u'davi'] [u'deadlin', u'loom', u'winemak', u'oppos', u'price'] [u'diamond', u'guilti', u'assault'] [u'diamond', u'guilti', u'assault', u'charg'] [u'diamond', u'miner', u'look', u'explor'] [u'doubt', u'cast', u'labor', u'parent', u'plan'] [u'downer', u'downplay', u'bird', u'threat'] [u'drought', u'blame', u'develop', u'collaps'] [u'east', u'timor', u'pursu', u'wiranto', u'crime'] [u'emot', u'darwin', u'call', u'quit'] [u'england', u'favourit', u'dallaglio', u'throat', u'warn'] [u'environ', u'group', u'continu', u'protest', u'gippsland'] [u'expert', u'watch', u'citrus', u'market', u'amid', u'bird', u'scare'] [u'farmer', u'urg', u'nomin', u'award'] [u'father', u'michael', u'jackson', u'accus', u'seek', u'joint'] [u'feder', u'face', u'ferrero', u'clijster'] [u'govt', u'urg', u'fund', u'hume', u'highway', u'work'] [u'feud', u'cost', u'fergi'] [u'figur', u'reveal', u'piraci', u'attack', u'grow'] [u'firefight', u'continu', u'battl', u'port', u'kembla'] [u'firefight', u'port', u'kembla', u'burn'] [u'flood', u'caus', u'havoc', u'north', u'east', u'tasmania'] [u'floodplain', u'rehabilit', u'option', u'releas'] [u'forest', u'protest', u'block', u'log', u'oper'] [u'dual', u'intern', u'fiji', u'coach', u'contend'] [u'francou', u'face', u'year'] [u'fund', u'seek', u'energi', u'plant'] [u'silo', u'explod', u'port', u'kembla'] [u'gladston', u'council', u'vote', u'land', u'offer'] [u'gladston', u'industri', u'pipelin', u'delay'] [u'govern', u'urg', u'support', u'wast', u'water', u'scheme'] [u'govt', u'back', u'grade', u'test'] [u'govt', u'urg', u'cancel', u'zimbabw', u'tour'] [u'grape', u'grower', u'question', u'price'] [u'green', u'group', u'face', u'financi', u'ruin', u'develop'] [u'green', u'announc', u'barron', u'river', u'cook', u'prefer'] [u'green', u'eurobodalla', u'council', u'candid'] [u'group', u'loggerhead', u'forest', u'log'] [u'harch', u'get', u'matilda'] [u'hook', u'melbourn', u'memori', u'cancel'] [u'hope', u'copi', u'bulk', u'bill', u'clinic', u'idea'] [u'hop', u'fade', u'miss', u'plan', u'crew'] [u'hors', u'rider', u'angri', u'snowi', u'manag', u'plan'] [u'humid', u'condit', u'impact', u'environ', u'report'] [u'indigen', u'event', u'see', u'reconcili', u'symbol'] [u'industri', u'area', u'earmark', u'prison'] [u'internet', u'avail', u'ghan', u'rider'] [u'vice', u'presid', u'face', u'corrupt', u'charg'] [u'iraqi', u'refuge', u'face', u'court', u'assault', u'charg'] [u'iron', u'make', u'geraldton', u'port'] [u'israel', u'radio', u'say', u'palestinian', u'kill', u'gaza'] [u'jone', u'larrio', u'award'] [u'kambalda', u'boom', u'help', u'neighbour'] [u'kangaroo', u'power', u'woe', u'affect', u'tourism'] [u'kerri', u'bandwagon', u'roll', u'hampshir'] [u'kerri', u'win', u'hampshir', u'vote'] [u'kiwi', u'coach', u'spot', u'loophol', u'oversea', u'player'] [u'latham', u'criticis', u'govt', u'inflat', u'figur'] [u'latham', u'speak', u'labor', u'offici', u'campaign', u'launch'] [u'latham', u'wont', u'commit', u'end', u'forest', u'clear'] [u'leav', u'polit', u'zimbabw', u'tour', u'cricket'] [u'lib', u'block', u'shave', u'comeback'] [u'libya', u'hand', u'nuclear', u'info'] [u'lightn', u'boost', u'brogan', u'presenc'] [u'littl', u'rain', u'good', u'sign', u'barra', u'season'] [u'loud', u'blast', u'shake', u'baghdad'] [u'lucki', u'escap', u'melbourn', u'hous'] [u'magistr', u'air', u'concern', u'falconio', u'case'] [u'major', u'support', u'tree', u'clear', u'poll'] [u'accus', u'allow', u'leav', u'state'] [u'die', u'highway', u'truck', u'crash'] [u'man', u'bodi', u'hous', u'blaze'] [u'stand', u'trial', u'stuttl', u'murder'] [u'matilda', u'host', u'olymp', u'tournament'] [u'mayor', u'happi', u'morriset', u'zone', u'plan'] [u'mcenro', u'confid', u'davi', u'success'] [u'melbourn', u'anim', u'join', u'oscar', u'nomine'] [u'charg', u'shop', u'robberi'] [u'injur', u'burst', u'flame'] [u'milk', u'processor', u'reject', u'singl', u'desk', u'pressur', u'claim'] [u'minist', u'inspect', u'youth', u'detent', u'centr'] [u'minist', u'urg', u'resolv', u'dubbo', u'health', u'disput'] [u'mobil', u'lure', u'young', u'poverti', u'trap', u'studi'] [u'inform', u'call', u'council', u'merger', u'plan'] [u'moscow', u'tretyakov', u'bring', u'master', u'street'] [u'motorcyclist', u'road', u'despit', u'death'] [u'music', u'festiv', u'attract', u'differ', u'audienc'] [u'mydoom', u'worm', u'spread', u'rapid'] [u'continu', u'rogu', u'trade', u'probe'] [u'nalbandian', u'latest', u'challeng', u'feder'] [u'nasa', u'say', u'second', u'mar', u'rover', u'experi', u'problem'] [u'near', u'miss', u'dryclean'] [u'newcastl', u'council', u'approv', u'children', u'court', u'plan'] [u'newcastl', u'seek', u'fulli', u'fund', u'place'] [u'shift', u'speed', u'gold', u'product'] [u'tower', u'viewer', u'pictur'] [u'environ', u'threat', u'kembla'] [u'govt', u'privat', u'school', u'account'] [u'govt', u'consid', u'gulf', u'communiti', u'polic'] [u'hotel', u'attend', u'secur', u'forum'] [u'polic', u'stop', u'view', u'seiz', u'paper'] [u'opposit', u'leader', u'spark', u'racial', u'debat'] [u'teenag', u'stun', u'oscar', u'nomin'] [u'miss', u'port', u'kembla'] [u'nation', u'unconcern', u'candid'] [u'pittman', u'face', u'injuri', u'hurdl'] [u'plan', u'moranbah', u'brisban', u'direct', u'flight'] [u'plenti', u'candid', u'expect', u'council', u'elect'] [u'india', u'fright'] [u'polic', u'consid', u'assault', u'lead'] [u'polic', u'continu', u'coober', u'pedi', u'murder', u'probe'] [u'polic', u'hunt', u'escap', u'prison'] [u'polic', u'search', u'stab'] [u'port', u'devast', u'francou', u'sidelin'] [u'potenti', u'candid', u'drum', u'council', u'role'] [u'poultri', u'farmer', u'readi', u'bird'] [u'probe', u'launch', u'carrara', u'fish', u'kill'] [u'public', u'urg', u'oppos', u'forest', u'sale', u'plan'] [u'quirki', u'murder', u'mysteri', u'land', u'literari', u'award'] [u'rain', u'spark', u'western', u'locust', u'fear'] [u'ranger', u'watch', u'asian', u'migratori', u'bird'] [u'red', u'aussi', u'star', u'brumbi'] [u'referendum', u'moot', u'cut', u'council', u'size'] [u'refuge', u'group', u'sceptic', u'despit', u'labor', u'baxter', u'visit'] [u'region', u'airlin', u'cut', u'canberra', u'sydney', u'flight'] [u'region', u'doctor', u'incent'] [u'region', u'public', u'servant', u'await', u'offer'] [u'research', u'troubl', u'make', u'fish', u'continu'] [u'reserv', u'reopen', u'blaze'] [u'resid', u'question', u'smell', u'problem'] [u'rey', u'smash', u'arsenal', u'transfer', u'record'] [u'riverland', u'notch', u'water', u'save'] [u'erupt', u'coast', u'candid', u'elect', u'sign'] [u'santo', u'report', u'fall', u'revenu'] [u'scott', u'admit', u'rib', u'lose'] [u'scud', u'affect', u'court', u'distract', u'alexand'] [u'seafood', u'industri', u'fear', u'greater', u'poach', u'threat'] [u'search', u'fail', u'plane', u'crash', u'victim'] [u'search', u'miss', u'plane', u'call'] [u'second', u'talk', u'wind'] [u'second', u'mar', u'rover', u'rais', u'antenna', u'earth'] [u'senior', u'citizen', u'nab', u'teenag', u'intrud'] [u'servic', u'help', u'youth', u'avoid', u'petrol', u'sniff'] [u'shire', u'want', u'walpol', u'tourism', u'fund'] [u'sing', u'continu', u'cowboy', u'connect'] [u'sixer', u'await', u'moor', u'decis'] [u'sleep', u'camper', u'surviv', u'croc', u'attack'] [u'smelter', u'worker', u'hear', u'offer'] [u'soni', u'post', u'record', u'sale'] [u'spain', u'young', u'nadal'] [u'storm', u'power', u'central', u'queensland'] [u'strong', u'dollar', u'help', u'inflat', u'year'] [u'stronger', u'dollar', u'take', u'toll', u'goat', u'industri'] [u'subdivis', u'approv', u'affect', u'cricket', u'club', u'season'] [u'suspect', u'milit', u'refug', u'arafat', u'compound'] [u'suspend', u'atsic', u'leader', u'pursu', u'court', u'challeng'] [u'tasmania', u'clean', u'delug'] [u'plan', u'distanc', u'educ'] [u'thailand', u'admit', u'screw', u'handl', u'bird'] [u'thousand', u'chicken', u'shed', u'blaze'] [u'kill', u'baghdad', u'explos'] [u'coalit', u'soldier', u'kill', u'iraq'] [u'thunderstorm', u'warn', u'south', u'east', u'queensland'] [u'tour', u'decis', u'shouldnt', u'polit'] [u'tourist', u'warn', u'motorcycl', u'trek', u'danger'] [u'townsvill', u'crack', u'drink', u'breach'] [u'trio', u'charg', u'chinatown', u'kidnap'] [u'troubl', u'parl', u'food', u'sell'] [u'talk', u'pioneer', u'jack', u'paar', u'die'] [u'admit', u'afghan', u'june', u'poll', u'delay'] [u'verstappen', u'jordan', u'talk'] [u'vietnam', u'report', u'bird', u'death'] [u'govt', u'criticis', u'electr', u'propaganda'] [u'warrior', u'coach', u'get', u'contract', u'extens'] [u'watchdog', u'seek', u'aircraft', u'safeti', u'upgrad'] [u'welfar', u'group', u'open', u'latham', u'parent', u'plan'] [u'western', u'victoria', u'experi', u'birth', u'high', u'low'] [u'wilder', u'societi', u'apologis', u'permit'] [u'wine', u'associ', u'chief', u'resign'] [u'woman', u'court', u'nurs', u'assault'] [u'woodward', u'verg', u'name', u'england', u'captain'] [u'work', u'ban', u'plan', u'stanwel', u'power', u'station'] [u'zimbabw', u'threaten', u'damag', u'suit', u'england', u'dont'] [u'arrest', u'marijuana', u'crop'] [u'abba', u'singer', u'sign', u'record', u'deal'] [u'deem', u'suspect', u'painkil', u'safe'] [u'adelaid', u'bank', u'record', u'million', u'profit'] [u'presenc', u'solomon'] [u'belgian', u'clash', u'decid', u'open', u'honour'] [u'promis', u'stop', u'nuclear', u'wast', u'dump'] [u'latham', u'asylum', u'seeker', u'polici', u'carr', u'say'] [u'interven', u'help', u'resolv', u'paediatrician'] [u'want', u'access', u'painkil', u'restrict'] [u'anim', u'activist', u'break', u'bail', u'condit'] [u'anim', u'activist', u'court', u'sheep', u'shipment'] [u'annan', u'fear', u'collaps', u'palestinian', u'author'] [u'area', u'shortlist', u'defenc', u'train', u'grind'] [u'arroyo', u'deal', u'philippin', u'coup', u'plotter'] [u'asic', u'issu', u'invest', u'warn'] [u'aussi', u'polic', u'help', u'dous', u'solomon'] [u'australia', u'bat', u'zimbabw', u'melbourn'] [u'australia', u'donat', u'combat', u'bird'] [u'bacon', u'give', u'crean', u'time', u'mind'] [u'bali', u'bomber', u'jail', u'life'] [u'bartlett', u'vow', u'alcohol', u'free', u'polit', u'futur'] [u'battl', u'safin', u'claim'] [u'be', u'alzheim', u'diseas', u'cure'] [u'blast', u'hit', u'iraq', u'secur', u'forc', u'north', u'baghdad'] [u'boro', u'arsenal', u'clash', u'call'] [u'brain', u'structur', u'chang', u'see', u'depress', u'teen'] [u'breaker', u'wildcat', u'clash', u'end', u'carpark', u'punch'] [u'brew', u'giant', u'put', u'pub', u'sale'] [u'britain', u'relax', u'cannabi', u'doctor', u'worri'] [u'bronco', u'boss', u'say', u'club', u'chase', u'hodg'] [u'busi', u'chamber', u'seek', u'cooma', u'plan'] [u'cooler', u'public', u'meet', u'place', u'alic'] [u'carr', u'call', u'attack', u'health'] [u'catchment', u'group', u'consid', u'flood', u'research'] [u'celebr', u'author', u'janet', u'frame', u'die'] [u'channel', u'countri', u'flood', u'boost', u'flora', u'fauna'] [u'child', u'attack', u'seoul'] [u'china', u'crack', u'bird', u'outbreak'] [u'china', u'deni', u'bird', u'sourc'] [u'cigarett', u'spark', u'nurs', u'home', u'blaze'] [u'clijster', u'set', u'belgian', u'final'] [u'club', u'rein', u'indoor', u'equestrian', u'centr', u'plan'] [u'committe', u'tell', u'probabl', u'wrong'] [u'contract', u'loss', u'put', u'stevedor', u'job', u'cloud'] [u'costello', u'claim', u'labor', u'rais', u'tax', u'rat'] [u'coulthard', u'enjoy', u'mclaren', u'swansong'] [u'council', u'await', u'govt', u'toxic', u'dump', u'respons'] [u'council', u'plan', u'seek', u'merger', u'view', u'month'] [u'council', u'sell', u'beachfront', u'land', u'profit'] [u'council', u'look', u'elect', u'merger'] [u'council', u'tell', u'fund', u'wast'] [u'croc', u'expert', u'confid', u'anim', u'hunt'] [u'croc', u'consid', u'import'] [u'dalbi', u'netbal', u'head', u'africa'] [u'deleg', u'voic', u'opposit', u'council', u'merger', u'plan'] [u'denmark', u'call', u'probe', u'stand', u'prison'] [u'denmark', u'council', u'back', u'tree', u'plantat'] [u'desalin', u'plant', u'near', u'complet'] [u'dinki', u'sing', u'dingo', u'howl', u'success'] [u'test', u'man', u'burn', u'bodi'] [u'doctor', u'unhappi', u'nauru', u'refuge', u'assess'] [u'dodgi', u'ankl', u'put', u'clijster', u'doubt'] [u'driver', u'plead', u'guilti', u'motorcyclist', u'death'] [u'drug', u'problem', u'golf', u'warn', u'price'] [u'earli', u'respons', u'bird', u'contain', u'say'] [u'ellison', u'confid', u'aust', u'bird'] [u'england', u'white', u'lead', u'yorkshir'] [u'english', u'winter', u'break', u'plan', u'back', u'despit', u'wife'] [u'esper', u'say', u'nuclear', u'wast'] [u'suspend', u'import', u'bird', u'south', u'east'] [u'expert', u'consid', u'honeysuckl', u'asbesto'] [u'exxon', u'tell', u'valdez', u'spill'] [u'fall', u'number', u'close', u'primari', u'student', u'hostel'] [u'farm', u'group', u'question', u'parti', u'climat', u'variabl'] [u'farm', u'group', u'seek', u'action', u'stop', u'live', u'export', u'trade'] [u'feder', u'lead', u'swiss', u'team', u'romania'] [u'fergi', u'sign', u'year', u'roll', u'unit', u'contract'] [u'ferguson', u'record', u'unrival', u'british', u'soccer'] [u'ferri', u'welcom', u'bartlett', u'decis'] [u'fifa', u'final', u'agre', u'adopt', u'anti', u'dope', u'code'] [u'fiji', u'controversi', u'militari', u'chief', u'reappoint'] [u'crew', u'continu', u'clean', u'port', u'kembla'] [u'firman', u'push', u'claim', u'jordan', u'drive'] [u'injur', u'plane', u'make', u'forc', u'land'] [u'flash', u'flood', u'wreak', u'havoc', u'melbourn'] [u'floodwat', u'loom', u'wanaar'] [u'food', u'compani', u'chang', u'job', u'doubt'] [u'food', u'poison', u'kill', u'indonesia'] [u'blair', u'aid', u'attack', u'respons', u'kelli'] [u'doctor', u'remain', u'strike', u'medic', u'regist'] [u'wine', u'group', u'presid', u'lament', u'loss'] [u'free', u'land', u'bruce', u'rock', u'grab'] [u'leak', u'forc', u'sydney', u'opera', u'hous', u'evacu'] [u'gender', u'test', u'volleybal'] [u'german', u'tourist', u'arrest', u'smuggl', u'frog', u'insect'] [u'govt', u'happi', u'peopl', u'smuggl', u'sentenc'] [u'govt', u'launch', u'inquiri', u'port', u'botani', u'expans'] [u'griev', u'lehmann', u'readi', u'compet'] [u'griev', u'lehmann', u'readi', u'game'] [u'group', u'aim', u'close', u'boulder', u'wast', u'plant'] [u'hamilton', u'fatal', u'plane', u'crash', u'probe', u'near', u'finish'] [u'herron', u'continu', u'market', u'ibuprofen', u'drug'] [u'hezbollah', u'broadcast', u'interview', u'isra'] [u'hill', u'unhappi', u'agreement', u'forestri', u'water'] [u'hotel', u'facelift'] [u'howard', u'seek', u'apolog', u'claim'] [u'hume', u'resid', u'speak', u'boundari', u'chang'] [u'hutton', u'accus', u'whitewash', u'kelli', u'affair'] [u'hutton', u'report', u'back', u'iraq', u'decis', u'downer', u'say'] [u'iaea', u'investig', u'plan', u'woomera', u'nuclear', u'dump'] [u'indian', u'sterilis', u'rare', u'royal', u'bengal', u'tiger'] [u'indonesia', u'order', u'mass', u'bird', u'cull'] [u'indonesia', u'order', u'mass', u'chicken', u'cull'] [u'industri', u'park', u'undergo', u'expans'] [u'inject', u'room', u'want', u'say'] [u'inquest', u'launch', u'bendigo', u'shoot', u'death'] [u'investig', u'probe', u'massiv', u'solomon', u'blaze'] [u'israel', u'hezbollah', u'breakthrough', u'prison', u'swap'] [u'say', u'wrong'] [u'king', u'pirat', u'sword'] [u'labor', u'offer', u'independ', u'fund'] [u'latham', u'outlin', u'vision', u'labor', u'govern'] [u'life', u'exist', u'mar', u'australian', u'scientist'] [u'lightn', u'strike', u'central', u'home'] [u'live', u'export', u'protest', u'face', u'legal', u'action'] [u'malaysian', u'airlin', u'accept', u'arm', u'marshal'] [u'await', u'releas', u'year', u'hostag'] [u'charg', u'bexhil', u'stand'] [u'kill'] [u'mariah', u'carey', u'drop', u'sexi', u'outfit', u'jakarta'] [u'martin', u'heroin', u'inject', u'room'] [u'matern', u'diet', u'influenc', u'longev', u'mice'] [u'mayor', u'say', u'safeti', u'road', u'closur'] [u'mcgee', u'hail', u'clean', u'team', u'ethic', u'cofidi', u'dope'] [u'mcgee', u'meet', u'millar', u'multipl', u'olymp', u'duel'] [u'meatwork', u'accus', u'creek', u'pollut'] [u'melbourn', u'battl', u'major', u'storm'] [u'mideast', u'prison', u'swap', u'plan', u'land', u'germani'] [u'mideast', u'prison', u'swap', u'underway'] [u'milan', u'claim', u'spot', u'itali'] [u'mildura', u'campus', u'question', u'place', u'offer'] [u'mincor', u'boost', u'job', u'purchas'] [u'miner', u'upbeat', u'gold', u'prospect'] [u'worker', u'consid', u'resum', u'work', u'blaze'] [u'minist', u'highlight', u'detent', u'centr', u'secur'] [u'minist', u'probe', u'wheel', u'drive', u'safeti'] [u'montoya', u'scorch', u'track', u'record'] [u'fund', u'seek', u'port', u'macquari', u'hospit'] [u'stand', u'irwin', u'train', u'comment'] [u'mydoom', u'variant', u'emerg', u'target', u'microsoft'] [u'nation', u'park', u'servic', u'respond', u'hors', u'rid'] [u'nauru', u'health', u'facil', u'good', u'doctor'] [u'need', u'altern', u'cool', u'area'] [u'doctor', u'region', u'post'] [u'visa', u'threaten', u'bali', u'tourism'] [u'north', u'east', u'tasmania', u'drench', u'flood', u'rain'] [u'overhaul', u'judiciari'] [u'prove', u'lucrat', u'indigen'] [u'nation', u'question', u'candid', u'withdraw'] [u'opposit', u'slam', u'carr', u'hospit', u'visit'] [u'parent', u'ask', u'help', u'combat', u'school', u'absente'] [u'parl', u'sale', u'offer', u'unsecur', u'creditor'] [u'peopl', u'smuggler', u'sentenc', u'year', u'jail'] [u'plan', u'afoot', u'richmond', u'sandlewood', u'plantat'] [u'fear', u'bird', u'cross', u'indonesian', u'border'] [u'polic', u'search', u'miss', u'pilot'] [u'polic', u'probe', u'alburi', u'incid'] [u'polic', u'probe', u'springborg', u'domest', u'violenc'] [u'polic', u'recov', u'valuabl', u'steal', u'coin'] [u'polic', u'continu', u'search', u'miss', u'plane'] [u'polish', u'feder', u'suspend', u'cyclist', u'cofidi'] [u'polit', u'storm', u'erupt', u'blackout'] [u'pollock', u'take', u'protea'] [u'pont', u'india', u'game'] [u'poor', u'health', u'forc', u'crean', u'retir', u'polit'] [u'premier', u'leagu', u'bring', u'winter', u'break'] [u'press', u'hold', u'withdraw', u'holling', u'offer'] [u'prison', u'group', u'prais', u'plan', u'canberra', u'prison'] [u'public', u'servant', u'reject', u'govt', u'offer'] [u'public', u'servic', u'negoti', u'continu'] [u'public', u'council', u'size'] [u'grazier', u'face', u'tough', u'road'] [u'rain', u'forc', u'draw', u'melbourn'] [u'rain', u'forc', u'wash'] [u'real'] [u'record', u'level', u'loan', u'approv'] [u'reef', u'ground', u'prompt', u'maritim', u'rescu', u'review'] [u'research', u'work', u'vaccin', u'chicken'] [u'resolut', u'delay', u'ambul', u'crew'] [u'rivkin', u'detent'] [u'road', u'revamp', u'plan', u'spark', u'tree', u'concern'] [u'consid', u'break', u'hill', u'speed', u'limit'] [u'safin', u'shock', u'agassi', u'claim', u'final', u'berth'] [u'santoro', u'get', u'davi', u'boot'] [u'school', u'disput', u'worsen', u'amid', u'bulli', u'claim'] [u'scientist', u'test', u'identifi', u'burn', u'bodi'] [u'servic', u'highlight', u'limit', u'petrol', u'sniffer', u'help'] [u'share', u'market', u'hold', u'grind', u'despit', u'wall', u'street'] [u'shire', u'group', u'back', u'council', u'anti', u'merger', u'stanc'] [u'sicili', u'hop', u'stage', u'tyson', u'comeback', u'fight'] [u'singer', u'faith', u'evan', u'arrest', u'drug'] [u'sleep', u'camper', u'lucki', u'escap', u'croc', u'attack'] [u'soul', u'singer', u'jam', u'brown', u'arrest', u'domest'] [u'speedway', u'look', u'meet', u'insur', u'cost'] [u'sport', u'club', u'fight', u'drought', u'urg', u'think'] [u'springborg', u'defend', u'wife', u'profil'] [u'strand', u'resid', u'await', u'food', u'suppli'] [u'studi', u'consid', u'princ', u'highway', u'issu'] [u'sugar', u'remain', u'stick', u'point', u'free', u'trade', u'talk'] [u'suicid', u'blast', u'vindic', u'secur', u'fenc', u'israel'] [u'swede', u'begin', u'davi', u'countdown'] [u'taiwan', u'scientist', u'record', u'bird', u'case'] [u'cherri', u'dollar'] [u'flood', u'water', u'refus', u'subsid'] [u'tasmanian', u'rain', u'break', u'record'] [u'teacher', u'discuss', u'profession', u'standard'] [u'teen', u'reunit', u'famili', u'long', u'search'] [u'texa', u'execut', u'inmat', u'surpris', u'confess'] [u'thai', u'chilli', u'farmer', u'suffer', u'bird'] [u'tour', u'franc', u'chief', u'call', u'wada', u'ban'] [u'townsvill', u'hop', u'attract', u'chopper', u'mainten'] [u'transact', u'cull', u'staff', u'merger'] [u'truss', u'call', u'indonesia', u'slaughter', u'chicken'] [u'twin', u'attack', u'kill', u'injur', u'iraq'] [u'charg', u'shop', u'robberi'] [u'underground', u'power', u'expens', u'beatti', u'say'] [u'union', u'lobbi', u'payment', u'casual', u'chicken'] [u'armi', u'plan', u'boost', u'forc'] [u'fear', u'rate', u'hike', u'draw', u'market'] [u'scientist', u'creat', u'form', u'matter'] [u'coron', u'recommend', u'polic', u'pursuit', u'polici', u'review'] [u'govt', u'defend', u'student', u'enrol'] [u'govt', u'deni', u'defend', u'bird', u'safeguard'] [u'govt', u'say', u'airlin', u'fund'] [u'govt', u'poki', u'fund'] [u'vietnames', u'children', u'discov', u'foul', u'tast', u'coin'] [u'nurs', u'threaten', u'night', u'shift', u'boycott'] [u'offic', u'ask', u'explain', u'domest', u'violenc', u'claim'] [u'westpac', u'unveil', u'plan', u'singl', u'nation', u'ident'] [u'whale', u'explod', u'taiwan', u'street'] [u'wildcat', u'defend', u'boucher', u'carpark', u'punch'] [u'wild', u'storm', u'pass', u'wide'] [u'woman', u'win', u'polic', u'misconduct', u'case'] [u'worker', u'consid', u'industri', u'action', u'roster'] [u'zimbabw', u'pass', u'farm', u'seizur', u'easier'] [u'face', u'court', u'cannabi', u'haul'] [u'fear', u'dead', u'indonesian', u'landslid'] [u'age', u'care', u'boost', u'bateman'] [u'aborigin', u'advoc', u'rais', u'racism', u'concern'] [u'alcohol', u'restrict', u'perman'] [u'accus', u'hypocrisi', u'polit', u'donat'] [u'name', u'nepean', u'river', u'second', u'sydney', u'airport'] [u'pledg', u'nation', u'dental', u'plan'] [u'angri', u'canegrow', u'confront', u'premier'] [u'annan', u'call', u'accept', u'migrant'] [u'end', u'week', u'black'] [u'atsic', u'issu', u'juvenil', u'divers', u'fund', u'warn'] [u'aust', u'push', u'singl', u'market'] [u'aust', u'offer', u'diseas', u'riddl', u'asia'] [u'australia', u'name', u'motor', u'sport', u'championship'] [u'australian', u'deleg', u'visit', u'north', u'korea'] [u'australian', u'wait', u'death', u'sentenc', u'decis'] [u'tell', u'fear', u'blair', u'govt'] [u'beatti', u'return', u'cairn'] [u'bendigo', u'tafe', u'seek', u'fund', u'inject'] [u'birmingham', u'wait', u'butt'] [u'bjorn', u'lead', u'thailand', u'australian', u'tie'] [u'boat', u'capsiz', u'refuge', u'fear', u'dead'] [u'boucher', u'tucker', u'suspens', u'carpark', u'punch'] [u'breaker', u'good', u'wildcat', u'auckland', u'grudg'] [u'brumbi', u'announc', u'colac', u'fund'] [u'bull', u'blue', u'wild', u'storm', u'lash', u'gabba'] [u'driver', u'criticis', u'leav', u'child'] [u'bushfir', u'inquiri', u'highlight', u'communic', u'problem'] [u'clamp', u'industri', u'water'] [u'celebr', u'mark', u'militari', u'exercis'] [u'cell', u'door', u'leav', u'unlock', u'twice', u'prison'] [u'chang', u'room', u'experi', u'conduct', u'adelaid'] [u'children', u'releas', u'guantanamo'] [u'china', u'combat', u'bird'] [u'china', u'report', u'suspect', u'bird', u'outbreak'] [u'coal', u'price', u'tip', u'rise'] [u'coastwatch', u'say', u'log', u'detail', u'lack'] [u'compani', u'tri', u'boost', u'canberra', u'tourism', u'scene'] [u'council', u'back', u'push', u'water', u'qualiti', u'legal', u'fight'] [u'councillor', u'investig', u'lose', u'record'] [u'council', u'creditor', u'gather'] [u'council', u'outlin', u'pipelin', u'plan', u'opposit'] [u'cricket', u'boss', u'launch', u'appeal', u'steal', u'bat'] [u'croc', u'hope', u'snap', u'tiger'] [u'dakar', u'ralli', u'kidnap', u'foil', u'secret', u'agent'] [u'reckon', u'loom', u'german', u'cannib'] [u'demand', u'egg', u'skyrocket'] [u'democrat', u'highlight', u'south', u'australian', u'crop', u'fear'] [u'dope', u'agenc', u'issu', u'warn', u'drug', u'cheat'] [u'dope', u'spectr', u'continu', u'haunt', u'cycl'] [u'downer', u'seek', u'clemenc', u'aussi', u'trial'] [u'economist', u'forecast', u'rat', u'rise'] [u'elia', u'guilti', u'carpark', u'shoot'] [u'elliott', u'fail', u'extend', u'bankruptci', u'notic', u'deadlin'] [u'england', u'delay', u'zimbabw', u'decis'] [u'england', u'face', u'japan', u'iceland', u'euro'] [u'defend', u'profit', u'slide'] [u'timor', u'ban', u'fresh', u'poultri', u'import'] [u'alburi', u'lawyer', u'face', u'charg', u'fail'] [u'boss', u'criticis', u'hutton', u'iraq', u'report'] [u'exhaust', u'safin', u'hit', u'high', u'spot'] [u'export', u'cormo', u'express', u'saga'] [u'extens', u'harbour', u'plan', u'submiss'] [u'team', u'cash', u'inject'] [u'farmer', u'die', u'truck', u'roll'] [u'farmer', u'learn', u'toxic', u'wast', u'dump', u'plan'] [u'feder', u'demolish', u'ferrero', u'grab', u'roddick', u'crown'] [u'feder', u'demolish', u'ferrero', u'grab', u'world', u'number'] [u'ferrero', u'rout', u'make', u'feder'] [u'firefight', u'battl', u'blaze', u'north', u'east'] [u'hurt', u'fall', u'tree', u'wild', u'storm'] [u'flood', u'eas'] [u'olymp', u'rower', u'jail', u'stock', u'market', u'fraud'] [u'question', u'post', u'offic', u'robberi'] [u'fund', u'shortfal', u'jeopardis', u'rural', u'train'] [u'german', u'cannib', u'sentenc', u'half', u'year'] [u'glen', u'ella', u'hop', u'inspir', u'italian', u'renaiss'] [u'golden', u'circl', u'escap', u'industri', u'action'] [u'govern', u'ban', u'medicar', u'cut'] [u'govt', u'accus', u'dodgi', u'bookkeep'] [u'govt', u'extend', u'sunday', u'sprinkler', u'plan'] [u'govt', u'visa', u'secur', u'record', u'attack'] [u'grant', u'offer', u'famili', u'affect', u'flood'] [u'green', u'candid', u'highlight', u'need', u'health'] [u'group', u'debat', u'wast', u'plant', u'smelli', u'problem'] [u'health', u'servic', u'cut', u'paediatr', u'servic'] [u'heater', u'tiger', u'brandi', u'bear', u'indian'] [u'hervey', u'candid', u'call', u'coastal', u'river'] [u'hodg', u'hussey', u'ton', u'help', u'bushrang', u'narrow'] [u'hodg', u'husssey', u'ton', u'bushrang', u'collaps'] [u'hope', u'suit', u'sting', u'jellyfish'] [u'hop', u'ghan', u'arriv', u'bolster', u'port', u'augusta'] [u'hospit', u'look', u'privat', u'patient'] [u'hospit', u'resolv', u'surgeri', u'insur', u'woe'] [u'hospit', u'take', u'action', u'nurs', u'assault'] [u'howard', u'blast', u'sloppi', u'latham'] [u'hunter', u'hospit', u'shoot'] [u'hussey', u'hail', u'dream', u'come', u'true'] [u'iaaf', u'await', u'document', u'young', u'drug', u'case'] [u'indigen', u'mentor', u'project'] [u'inquest', u'spark', u'better', u'polic', u'border'] [u'iraq', u'step', u'closer', u'return', u'olymp', u'fold'] [u'isra', u'leader', u'respond', u'suicid', u'bomb'] [u'isra', u'troop', u'enter', u'bethlehem'] [u'keeper', u'jone', u'return', u'wolv'] [u'king', u'island', u'milk', u'plant', u'despit'] [u'kraft', u'worker', u'face', u'uncertain', u'futur'] [u'labor', u'debat', u'contenti', u'asylum', u'seeker', u'polici'] [u'labor', u'peopl', u'smuggl', u'plan', u'target', u'small', u'fish'] [u'latham', u'victori', u'labor', u'adopt', u'immigr'] [u'run', u'wild', u'storm', u'lash', u'gabba'] [u'lawyer', u'defend', u'action', u'dump', u'nat', u'candid'] [u'leader', u'bjorn', u'clash', u'monti', u'bangkok'] [u'leed', u'breath', u'player', u'defer', u'payment'] [u'leed', u'unit', u'chronolog', u'financi', u'meltdown'] [u'lobbyist', u'letter', u'spark', u'parliamentari', u'secur'] [u'lake', u'level', u'forc', u'school', u'regatta'] [u'lui', u'figo', u'stay', u'real', u'boss'] [u'lunk', u'join', u'list', u'star', u'ladi', u'master'] [u'magnesium', u'intern', u'chief', u'meet', u'central'] [u'arrest', u'shoot', u'spree'] [u'burn', u'explos'] [u'face', u'court', u'cannabi', u'crop'] [u'guilti', u'church', u'murder'] [u'front', u'court', u'attempt', u'arm', u'robberi', u'charg'] [u'court', u'highway', u'crash'] [u'trap', u'foundri', u'blast'] [u'ronaldo', u'deni', u'dive', u'trick'] [u'melbourn', u'prepar', u'storm'] [u'microsoft', u'offer', u'bounti', u'mydoom', u'creator'] [u'minist', u'say', u'alic', u'rezon'] [u'mix', u'result', u'product', u'review'] [u'fund', u'birdsvill', u'clinic'] [u'rain', u'need', u'drought'] [u'moy', u'determin', u'red', u'derbi', u'blue'] [u'threaten', u'leav', u'land', u'protect'] [u'napthin', u'want', u'activist', u'avoid', u'live', u'export'] [u'nasa', u'seek', u'second', u'opinion', u'hubbl', u'demis'] [u'nation', u'leader', u'get', u'beatti', u'vote', u'sympathi'] [u'nat', u'candid', u'seek', u'legal', u'advic', u'nazism', u'claim'] [u'nat', u'drop', u'whitsunday', u'candid', u'nazi', u'claim'] [u'self', u'dialysi', u'room', u'gladston', u'hospit'] [u'niue', u'premier', u'deni', u'cyclon', u'claim'] [u'nobbi', u'solano', u'move', u'south', u'villa'] [u'introduc', u'second', u'goalkick', u'deadlin'] [u'order', u'striker', u'unit', u'match', u'replay'] [u'govt', u'reject', u'rezon', u'blackmail', u'claim'] [u'polic', u'longer', u'solv', u'crime', u'report'] [u'doctor', u'fee', u'highest', u'countri'] [u'deport', u'sexual', u'abus', u'lankan', u'girl'] [u'opera', u'hous', u'protest', u'weekend', u'jail'] [u'paediatrician', u'get', u'longer', u'contract'] [u'pae', u'make', u'mix', u'final', u'comeback'] [u'pampl', u'touch', u'phoenix', u'open'] [u'panel', u'review', u'bendigo', u'campus', u'submiss'] [u'parker', u'forc', u'charlton', u'talk', u'chelsea'] [u'pascual', u'suarez', u'women', u'doubl', u'crown'] [u'person', u'kill', u'fatal', u'truck', u'accid'] [u'pixar', u'pull', u'disney', u'anim', u'deal'] [u'say', u'zimbabw', u'tour', u'matter', u'cricket', u'australia'] [u'set', u'elect', u'year', u'agenda'] [u'polic', u'consid', u'flood', u'evacu'] [u'polic', u'search', u'trawler', u'crew'] [u'polic', u'seek', u'help', u'plane', u'crash', u'probe'] [u'polic', u'urg', u'domest', u'violenc', u'report'] [u'polic', u'urg', u'tourist', u'care', u'road'] [u'polit', u'parti', u'claim', u'victori', u'nuclear', u'wast'] [u'posit', u'outlook', u'queensland', u'magnesia'] [u'premiership', u'penalis', u'default', u'club'] [u'prison', u'staff', u'consid'] [u'coalit', u'question', u'sunwat', u'role'] [u'govt', u'confid', u'indi', u'futur'] [u'govt', u'win', u'heritag', u'disput', u'site'] [u'rain', u'threaten', u'hunter', u'grape', u'harvest'] [u'ranger', u'count', u'twin', u'ambit', u'reignit'] [u'record', u'deficit', u'blow', u'expect'] [u'redback', u'optimist', u'final', u'chanc'] [u'renault', u'bullish', u'launch', u'machin'] [u'research', u'studi', u'north', u'jellyfish'] [u'resid', u'creat', u'nois', u'manufactur', u'plant'] [u'resid', u'evacu', u'flood'] [u'resid', u'oppos', u'luna', u'park', u'develop'] [u'resort', u'upgrad', u'firefight', u'plan'] [u'rivkin', u'warn', u'defi', u'prison', u'order'] [u'rixon', u'join', u'surrey'] [u'roma', u'rock', u'stand', u'firm', u'despit', u'wobbl'] [u'liber', u'leader', u'laugh', u'poll'] [u'sar', u'virus', u'deadlier', u'research'] [u'schofield', u'retir', u'success', u'euro'] [u'scientist', u'develop', u'ultim', u'remot', u'control'] [u'scientist', u'scout', u'solar', u'site'] [u'search', u'call', u'miss', u'fisherman'] [u'search', u'underway', u'trawler', u'fisherman'] [u'rock', u'fierc', u'storm'] [u'struggl', u'repair', u'storm', u'damag'] [u'singaporean', u'judg', u'deliber', u'australian', u'drug'] [u'singer', u'jam', u'brown', u'free', u'domest', u'violenc', u'case'] [u'solari', u'spell', u'salvat', u'real', u'madrid'] [u'solomon', u'probe', u'fate', u'miss'] [u'solskjaer', u'comeback', u'road', u'unit'] [u'somali', u'charg', u'terror', u'ellison'] [u'somali', u'warlord', u'sign', u'peac', u'deal'] [u'storm', u'batter', u'sunshin', u'coast', u'home'] [u'studi', u'prostat', u'cancer', u'begin'] [u'suarez', u'ruano', u'pascual', u'claim', u'australian', u'titl'] [u'super', u'bowl', u'tip', u'violent', u'affair'] [u'supersub', u'griffith', u'fire', u'olyroo', u'athen'] [u'support', u'policeman', u'restrain', u'order', u'view'] [u'swiss', u'author', u'investig', u'rivkin'] [u'tafe', u'student', u'urg', u'complet', u'enrol', u'detail'] [u'tangentyer', u'council', u'attack', u'librari', u'plan'] [u'releas', u'detail', u'brothel'] [u'senat', u'lodg', u'complaint', u'newspol'] [u'tassi', u'cricket', u'offici', u'confid', u'dayer'] [u'temporari', u'protect', u'visa', u'caus', u'mental', u'ill'] [u'thailand', u'report', u'bird', u'case'] [u'arrest', u'cannabi', u'cafe', u'raid'] [u'trade', u'shortag', u'delay', u'home', u'repair'] [u'transport', u'see', u'crucial', u'region', u'economi'] [u'year', u'ban', u'introduc', u'modafinil'] [u'union', u'air', u'concern', u'hospit', u'staff', u'shortag'] [u'union', u'happi', u'pasminco', u'decis'] [u'union', u'speak', u'high', u'cut'] [u'ban', u'time', u'honour', u'typefac'] [u'vail', u'continu', u'sticki', u'trade', u'talk'] [u'nistelrooy', u'stay', u'unit'] [u'farmer', u'attack', u'govt', u'plan', u'live', u'cattl'] [u'bat', u'dayer'] [u'traffic', u'infring', u'notic', u'faulti', u'court'] [u'govt', u'dept', u'face', u'corrupt', u'probe'] [u'waterfal', u'train', u'crash', u'inquiri', u'resum'] [u'investig', u'china', u'bird'] [u'wildcat', u'breaker', u'charg', u'punch'] [u'wine', u'group', u'offer', u'cheap', u'electr'] [u'wool', u'grower', u'upbeat', u'india', u'tariff', u'decis'] [u'work', u'continu', u'alstonvill', u'bypass', u'design'] [u'zaragoza', u'beat', u'barcelona', u'reach', u'semi', u'final'] [u'health', u'offer', u'oxygen', u'rebat', u'woman'] [u'adelaid', u'polic', u'probe', u'shoot'] [u'plan', u'second', u'airport', u'wacki', u'anderson'] [u'amaq', u'presid', u'stand', u'feder', u'elect'] [u'arsenal', u'rey', u'debut', u'citi'] [u'athen', u'bind', u'olyroo', u'silenc', u'critic'] [u'athen', u'olymp', u'committe', u'focus', u'terror'] [u'dead', u'scotland', u'age', u'care', u'home', u'blaze'] [u'australian', u'deleg', u'head', u'korea'] [u'aust', u'close', u'deal', u'marshal'] [u'barca', u'suffer', u'blow', u'kluivert', u'injuri'] [u'journalist', u'quit', u'sex', u'report'] [u'beat', u'clijster', u'kid', u'long', u'career'] [u'beatti', u'head', u'sugar', u'territori'] [u'beatti', u'sieg', u'fishermen'] [u'bush', u'avoid', u'call', u'iraq', u'intellig', u'inquiri'] [u'bush', u'blair', u'nomin', u'nobel', u'peac', u'prize'] [u'bush', u'plan', u'kill', u'castro'] [u'bush', u'want', u'fact', u'iraqi'] [u'butt', u'snub', u'birmingham'] [u'primari', u'school', u'class', u'size', u'cap'] [u'canberra', u'airport', u'overlook'] [u'canberra', u'look', u'brighter', u'tourist', u'imag'] [u'carnarvon', u'polic', u'continu', u'search', u'miss', u'woman'] [u'carr', u'quiet', u'labor', u'airport', u'plan'] [u'toppl', u'gorg'] [u'celt', u'sign', u'perth', u'glori', u'stopper', u'milosev'] [u'china', u'report', u'fourth', u'sar', u'case'] [u'chines', u'case', u'spark', u'fresh', u'bird', u'fear'] [u'church', u'gather', u'rememb', u'waterfal', u'accid'] [u'church', u'servic', u'mark', u'waterfal', u'crash', u'anniversari'] [u'cipollini', u'want', u'crack', u'petacchi'] [u'civil', u'liberti', u'advoc', u'slam', u'prison'] [u'clijster', u'gun', u'major', u'spot'] [u'coalit', u'turn', u'attent', u'school', u'bus'] [u'coulthard', u'quit', u'season', u'mclaren', u'boss'] [u'democrat', u'poll', u'show', u'issu', u'impact', u'young'] [u'doctor', u'question', u'toddler', u'autopsi'] [u'dummi', u'bid', u'legisl', u'take', u'effect', u'sunday'] [u'dutch', u'embassi', u'baghdad', u'attack'] [u'editor', u'russian', u'websit', u'arrest'] [u'pampl', u'trail', u'mickelson', u'phoenix'] [u'ellison', u'catch', u'perth', u'jack', u'chase'] [u'emot', u'memori', u'servic', u'hold', u'waterfal'] [u'everton', u'ferguson', u'accus', u'racial', u'abus'] [u'charg', u'hasselbaink'] [u'express', u'face', u'giant', u'russian', u'test'] [u'firefight', u'bring', u'blaze', u'control'] [u'flood', u'water', u'eas'] [u'box', u'champ', u'nunn', u'jail', u'year'] [u'french', u'appeal', u'corrupt', u'find'] [u'sale', u'latham', u'consid', u'sell', u'kirribilli'] [u'french', u'pair', u'strip', u'melbourn', u'doubl'] [u'gibson', u'surpris', u'controversi', u'latest', u'flick'] [u'glori', u'surg', u'clear', u'power', u'wolv'] [u'golovin', u'hand', u'wildcard', u'pari', u'tournament'] [u'googl', u'boobl', u'legal', u'wrangl', u'trademark'] [u'govt', u'blame', u'film', u'industri', u'crisi'] [u'gray', u'call', u'mental', u'strength', u'escap'] [u'greec', u'step', u'secur', u'ahead', u'olymp'] [u'green', u'trail', u'bjorn', u'bangkok'] [u'habib', u'lawyer', u'slam', u'ruddock'] [u'habib', u'terror', u'trial', u'closer', u'ellison'] [u'hama', u'make', u'rival', u'respons', u'claim'] [u'heidfeld', u'snare', u'jordan', u'drive'] [u'henin', u'hardenn', u'lift', u'open', u'titl'] [u'henin', u'hardenn', u'lift', u'aust', u'open', u'titl'] [u'henin', u'hardenn', u'take', u'open', u'titl'] [u'iran', u'guardian', u'council', u'remov', u'elect', u'ban'] [u'isra', u'troop', u'enter', u'bethlehem', u'second', u'straight'] [u'israel', u'say', u'world', u'court', u'right', u'rule'] [u'jacki', u'chan', u'say', u'afraid', u'visit', u'bird'] [u'kiwi', u'question', u'mark', u'astl', u'return'] [u'krayzelburg', u'grab', u'silver', u'york', u'meet'] [u'labor', u'airport', u'site', u'pan'] [u'labor', u'unit', u'latham', u'confer', u'end'] [u'latham', u'face', u'backlash', u'refuge', u'polici'] [u'latham', u'promis', u'read', u'aloud', u'literaci'] [u'leak', u'report', u'highlight', u'failur', u'labor'] [u'limp', u'shirvo', u'pull', u'canberra'] [u'llodra', u'santoro', u'doubl'] [u'lopez', u'replac', u'injur', u'moya', u'spain', u'davi'] [u'citi', u'agre', u'loan', u'deal', u'buyten'] [u'releas', u'hospit', u'shoot'] [u'shoot', u'time', u'undergo', u'surgeri'] [u'mar', u'spirit', u'restor', u'opportun', u'readi', u'roll'] [u'martyn', u'water', u'obscen', u'gestur'] [u'megawati', u'quiet', u'iraq', u'voucher', u'claim'] [u'melbourn', u'polic', u'breath', u'test', u'blitz'] [u'mind', u'switch', u'research', u'market'] [u'monasteri', u'robber', u'priest', u'swear', u'bibl'] [u'mydoom', u'worm', u'link', u'russian', u'sourc'] [u'nasa', u'delud', u'safeti', u'astronaut', u'say'] [u'nasa', u'rememb', u'columbia', u'dead'] [u'nazi', u'link', u'candid', u'admir', u'springborg'] [u'news', u'organis', u'want', u'camera', u'jackson', u'hear'] [u'team', u'help', u'restor', u'power'] [u'women', u'bowl', u'cheapli'] [u'bird', u'committe', u'meet'] [u'govt', u'leav', u'fisheri', u'surplus'] [u'streak', u'ahead', u'polic', u'spend'] [u'nation', u'rise', u'ash', u'leader', u'say'] [u'opposit', u'tackl', u'divis', u'refuge', u'issu'] [u'parker', u'add', u'chelsea', u'english', u'revolut'] [u'perth', u'mayor', u'defend', u'skywork', u'blame', u'media'] [u'pig', u'pirat', u'bullet', u'good', u'sixer'] [u'pirat', u'slump', u'bullet', u'tiger'] [u'pizzonia', u'say', u'william', u'second', u'tester'] [u'polic', u'begin', u'burn', u'cannabi', u'haul'] [u'polic', u'investig', u'adelaid', u'shoot'] [u'politician', u'voic', u'concern', u'jetstar', u'launch'] [u'pont', u'figur', u'tassi', u'sport', u'award'] [u'port', u'chang', u'environ', u'risk', u'union'] [u'powel', u'hit', u'half', u'centuri', u'rain', u'match'] [u'opposit', u'blame', u'beatti', u'govt', u'blackout'] [u'storm', u'leav', u'power'] [u'rape', u'charg', u'leed', u'player', u'drop'] [u'ruddock', u'expect', u'habib', u'announc', u'soon'] [u'russel', u'crow', u'injur', u'film', u'accid'] [u'saddam', u'hand', u'govern', u'council'] [u'polic', u'return', u'work'] [u'saudi', u'author', u'uncov', u'terrorist', u'cell'] [u'schu', u'give', u'thumb'] [u'search', u'continu', u'miss', u'deckhand'] [u'call', u'wild', u'storm'] [u'shirvo', u'pull', u'hamstr', u'canberra'] [u'stock', u'slight', u'lower', u'wall', u'street'] [u'examin', u'possibl', u'prostat', u'cancer', u'factor'] [u'region', u'rise', u'water'] [u'dead', u'iraq', u'bomb', u'blast'] [u'escap', u'hous', u'blaze'] [u'soldier', u'kill', u'bomb', u'northern', u'iraq'] [u'trade', u'practic', u'face', u'decis', u'anger', u'virgin'] [u'train', u'driver', u'warn', u'employ', u'meet', u'demand'] [u'charg', u'pool', u'hall', u'murder'] [u'moder', u'earthquak', u'jolt', u'taiwan'] [u'issu', u'deadlin', u'qaeda'] [u'test', u'elect', u'feasibl', u'iraq'] [u'women'] [u'vincent', u'shirvington', u'impress', u'canberra'] [u'volunt', u'help', u'fauna', u'survey'] [u'govt', u'order', u'wast', u'treatment', u'pond', u'empti'] [u'waratah', u'annihil', u'chief', u'trial', u'match'] [u'worshipp', u'flock', u'mecca'] [u'healthi', u'chicken', u'cull', u'singapor'] [u'prison', u'like', u'offend', u'report'] [u'evacu', u'indonesian', u'volcano', u'spew', u'smoke'] [u'theme', u'park', u'propos', u'melbourn'] [u'local', u'mayor', u'happi', u'cross', u'border'] [u'pollut', u'level'] [u'adelaid', u'polic', u'investig', u'fatal'] [u'heavyweight', u'odd', u'airport', u'talk'] [u'amaq', u'presid', u'resign', u'polit', u'career'] [u'open', u'stage', u'men', u'night', u'final'] [u'barramundi', u'fishermen', u'look', u'govt', u'action'] [u'bartlett', u'say', u'alp', u'asylum', u'seeker', u'polici'] [u'beat', u'navratilova', u'farewel', u'aust', u'open'] [u'beatti', u'ahead', u'loom'] [u'beatti', u'warn', u'complac'] [u'brack', u'reject', u'claim', u'arrog'] [u'brescia', u'dent', u'roma', u'titl', u'hop'] [u'brisban', u'grab', u'olymp', u'triathlon', u'spot'] [u'british', u'airway', u'cancel', u'flight'] [u'brown', u'hop', u'disench', u'labor'] [u'bull', u'bat', u'clash'] [u'bush', u'shift', u'stanc', u'probe', u'iraq', u'intellig'] [u'bush', u'vow', u'wise', u'spend'] [u'camera', u'phone', u'despit', u'concern', u'privaci'] [u'camplin', u'claim', u'world', u'utah'] [u'canberra', u'airport', u'disappoint', u'plan'] [u'cancer', u'clinic', u'young', u'adult', u'unveil'] [u'celtic', u'crush', u'kilmarnock', u'clear'] [u'champion', u'feder', u'dismiss', u'swiss', u'slam'] [u'china', u'halt', u'poultri', u'export', u'bird', u'area'] [u'china', u'reveal', u'bird', u'outbreak'] [u'chines', u'restaur', u'firebomb', u'perth'] [u'crean', u'younger', u'brother', u'retir', u'polit'] [u'cunneen', u'keep', u'women', u'final', u'dream', u'aliv'] [u'dimarco', u'kay', u'share', u'phoenix', u'lead'] [u'dummi', u'bid', u'properti', u'price'] [u'earthquak', u'russia', u'eastern', u'coast'] [u'eighteen', u'kill', u'iraq', u'attack'] [u'elder', u'dead'] [u'electr', u'fault', u'blame', u'hous'] [u'environment', u'friend', u'exhibit', u'hous', u'open'] [u'chief', u'accus', u'british', u'govt', u'intimid'] [u'farmer', u'construct', u'dam'] [u'feder', u'open', u'champ'] [u'feder', u'thrash', u'safin', u'open'] [u'express', u'face', u'giant', u'russian', u'test'] [u'fergi', u'hail', u'birth', u'killer', u'strike', u'combo'] [u'flight', u'cancel', u'credibl', u'threat'] [u'flight', u'fear', u'qaeda', u'attack'] [u'french', u'tackl', u'racist', u'program'] [u'ghan', u'begin', u'histor', u'journey'] [u'gilchrist', u'symond', u'power', u'australia', u'waca'] [u'govt', u'refuge', u'spin', u'work', u'democrat'] [u'green', u'confid', u'head', u'feder', u'elect'] [u'hawk', u'heap', u'miseri', u'pirat'] [u'howard', u'say', u'latham', u'like', u'spender'] [u'hundr', u'dead', u'fish'] [u'illeg', u'fish', u'threaten', u'lobster', u'kenyan'] [u'imola', u'formula'] [u'india', u'feel', u'heat', u'waca'] [u'india', u'waca'] [u'indonesia', u'begin', u'charg', u'tourist', u'visa'] [u'iraq', u'award', u'foreign', u'bank', u'licenc'] [u'iraqi', u'govern', u'council', u'limit', u'jazeera', u'coverag'] [u'isp', u'crippl', u'mydoom', u'worm', u'target', u'websit'] [u'jimenez', u'win', u'bangkok', u'classic'] [u'keegan', u'delight', u'buyten', u'arriv'] [u'leader', u'expect', u'nation', u'benefit', u'jail'] [u'maher', u'stroke', u'make', u'histori', u'gabba'] [u'martyn', u'escap', u'punish', u'gestur'] [u'middlesbrough', u'target', u'viduka'] [u'miss', u'ballarat', u'girl'] [u'offic', u'question', u'philippin', u'militari'] [u'mose', u'complet', u'world', u'campaign', u'style'] [u'navi', u'escort', u'fish', u'boat', u'shore'] [u'korea', u'test', u'weapon', u'peopl'] [u'noie', u'closur', u'rumour', u'concern', u'union'] [u'norwich', u'beat', u'sheffield', u'unit', u'stay', u'point'] [u'sign', u'miss', u'carnarvon', u'woman'] [u'govt', u'accus', u'cover', u'polic', u'report'] [u'govt', u'say', u'bed', u'avail', u'mental'] [u'polic', u'target', u'interst', u'drug', u'runner'] [u'firm', u'manag', u'construct', u'marshal', u'island'] [u'oliveira', u'trick', u'power', u'valencia'] [u'iranian', u'reformist', u'resign'] [u'pakistani', u'actress', u'bollywood', u'film'] [u'pakistan', u'sack', u'father', u'nuclear', u'program', u'report'] [u'perth', u'polic', u'continu', u'search', u'gunman'] [u'polic', u'charg', u'murder', u'arson'] [u'polic', u'investig', u'hous'] [u'polic', u'investig', u'nightclub', u'brawl'] [u'polic', u'search', u'cemeteri', u'assault'] [u'poll', u'show', u'bush', u'slide'] [u'portugues', u'hospit', u'turn', u'help'] [u'power', u'queensland', u'home'] [u'power', u'restor', u'home'] [u'prison', u'face', u'lengthi', u'lockdown'] [u'liber', u'candid', u'investig', u'alleg'] [u'power', u'restor', u'today'] [u'realiti', u'pioneer', u'die'] [u'redback', u'rofe', u'peg', u'vic', u'elliott'] [u'red', u'brumbi', u'ballymor', u'trial'] [u'report', u'highlight', u'teacher', u'ratio', u'prison', u'fail'] [u'rofe', u'peg', u'vic', u'elliott'] [u'safin', u'feder', u'lock'] [u'saha', u'score', u'debut', u'unit'] [u'francisco', u'feng', u'shui'] [u'outlaw', u'biki', u'fortress'] [u'schu', u'set', u'track', u'record', u'ferrari'] [u'second', u'rover', u'drive', u'mar', u'time'] [u'sharon', u'readi', u'peac', u'talk', u'mubarak'] [u'springborg', u'hear', u'indigen', u'child', u'abus', u'concern'] [u'stallion', u'good', u'striker', u'brisban'] [u'stamped', u'kill', u'hajj', u'pilgrimag'] [u'stanhop', u'happi', u'confer'] [u'storm', u'caus', u'havoc', u'queensland'] [u'storm', u'hammer', u'central'] [u'suspect', u'serial', u'killer', u'china', u'stand', u'trial'] [u'suspect', u'toothfish', u'boat', u'escort', u'australia'] [u'eye', u'top', u'spanish', u'film', u'award'] [u'protest', u'push', u'live', u'export'] [u'tiger', u'warrior', u'wash', u'launceston'] [u'trade', u'deal', u'card', u'howard'] [u'treati', u'aim', u'save', u'albatross', u'extinct'] [u'trinidad', u'eye', u'comeback', u'hoya'] [u'million', u'pilgrim', u'reach', u'hajj', u'climax'] [u'protest', u'burn', u'hutton', u'report'] [u'union', u'rejuven'] [u'unseed', u'mix', u'doubl', u'pair', u'shock', u'navratilova', u'pae'] [u'fear', u'dead', u'congo', u'ferri'] [u'deputi', u'defenc', u'secretari', u'wolfowitz', u'iraq'] [u'wallabi', u'bushfir', u'survivor', u'speci'] [u'criticis', u'china', u'handl', u'sar'] [u'wigan', u'cowboy', u'wayward', u'hodg'] [u'wigan', u'cowboy', u'interest', u'wayward', u'hodg'] [u'youth', u'cancer', u'program', u'launch'] [u'complex', u'look', u'age', u'care', u'resid'] [u'abbott', u'pledg', u'vigil', u'onlin', u'drug', u'sale'] [u'abbott', u'talk', u'privat', u'health', u'rebat'] [u'aborigin', u'leader', u'call', u'famili'] [u'accc', u'tackl', u'telstra', u'mobil', u'phone'] [u'accid', u'spate', u'keep', u'emerg', u'servic', u'busi'] [u'alic', u'look', u'ghan', u'tourism', u'spin', u'off'] [u'qaeda', u'attack', u'fear', u'grind', u'domest', u'flight'] [u'appeal', u'lodg', u'convict', u'bank', u'manag'] [u'kill', u'iraq', u'ammunit', u'dump', u'blast'] [u'arsenal', u'chelsea', u'edg', u'rover'] [u'arson', u'suspect', u'adelaid', u'unit', u'blaze'] [u'finish', u'slight', u'higher'] [u'atsic', u'workshop', u'address', u'famili', u'violenc'] [u'attack', u'speed', u'esplanad', u'revamp'] [u'aussi', u'gear', u'swedish', u'attack'] [u'aussi', u'look', u'ahead', u'final'] [u'australia', u'unprepar', u'major', u'disast', u'report'] [u'awol', u'striker', u'defend', u'face', u'music'] [u'baildon', u'delay', u'elect', u'statement'] [u'balconi', u'fall', u'victim', u'die'] [u'barri', u'manilow', u'hospitalis', u'chest', u'pain'] [u'beatti', u'look', u'earn', u'vote'] [u'beatti', u'refin', u'sugar', u'comment'] [u'beatti', u'unfaz', u'polic', u'union'] [u'bird', u'infect', u'spread', u'china'] [u'blair', u'address', u'iraq', u'wmds', u'howard', u'contempl'] [u'face', u'court', u'swim', u'pool', u'incid'] [u'breaker', u'wildcat', u'warn', u'carpark', u'punch'] [u'bremer', u'condemn', u'latest', u'suicid', u'bomb', u'iraq'] [u'bridg', u'cataract', u'gorg', u'remain', u'close'] [u'british', u'govt', u'unveil', u'terror', u'plan'] [u'brit', u'wicker', u'coffin'] [u'driver', u'coerc', u'sign', u'contract'] [u'bushrang', u'adelaid'] [u'button', u'talk', u'hop', u'season'] [u'move', u'eas', u'student', u'accommod'] [u'poll', u'shire', u'futur'] [u'extend', u'countrylink', u'servic', u'adelaid'] [u'caravan', u'park', u'support', u'ralli'] [u'chanderpaul', u'shin', u'windi', u'stay', u'aliv'] [u'childcar', u'centr', u'expand'] [u'chines', u'astronaut', u'begin', u'space', u'flight', u'train'] [u'chines', u'serial', u'killer', u'sentenc'] [u'clark', u'centuri', u'power', u'spirit', u'decid', u'women'] [u'want', u'juvenil', u'justic', u'scheme', u'save'] [u'coast', u'broadband', u'need', u'microscop'] [u'congo', u'offici', u'probe', u'ferri', u'blaze'] [u'council', u'grant', u'year', u'leas', u'wilson', u'inlet'] [u'council', u'say', u'incent', u'need', u'region'] [u'council', u'lobbi', u'infrastructur', u'fund'] [u'council', u'benefit', u'land', u'agreement'] [u'council', u'seek', u'commerci', u'fish'] [u'croc', u'posit', u'loss', u'tiger'] [u'croc', u'remain', u'posit', u'play', u'chanc'] [u'deal', u'reach', u'aquarium', u'legionnair', u'outbreak'] [u'democrat', u'attack', u'alp', u'asylum', u'seeker', u'polici'] [u'desper', u'blue', u'bank', u'waugh', u'rescu'] [u'desper', u'blue', u'bank', u'waugh', u'rescu'] [u'domest', u'violenc', u'control', u'katherin'] [u'king', u'pep', u'venezuelan', u'presid', u'elect'] [u'doyl', u'lament', u'bendigo', u'violenc'] [u'dutch', u'nation', u'plead', u'guilti', u'drug', u'charg'] [u'ecologist', u'want', u'murray', u'water', u'cut'] [u'year', u'open', u'school'] [u'encourag', u'need', u'woman', u'report'] [u'enhanc', u'scheme', u'fund', u'wipe', u'council', u'debt'] [u'question', u'dolphin', u'health', u'studi'] [u'eurobodalla', u'green', u'team', u'unveil'] [u'farmer', u'crop', u'destroy', u'tassi', u'flood'] [u'fatal', u'accid', u'investig', u'continu'] [u'feder', u'true', u'great'] [u'firefight', u'tenur', u'extend', u'reduc', u'fuel'] [u'gut', u'newspap', u'offic'] [u'fishermen', u'lobster', u'reduct', u'number'] [u'foul', u'mouth', u'parrot', u'kill', u'china'] [u'french', u'garden', u'win', u'intern', u'piano'] [u'friend', u'wit', u'shoot', u'sydney', u'murder'] [u'ghan', u'head', u'north', u'alic'] [u'graphic', u'photo', u'cover', u'cigarett', u'pack'] [u'green', u'inquiri', u'polit', u'donat'] [u'hello', u'kitti', u'go', u'platinum'] [u'hors', u'rider', u'disput', u'kosciusko', u'chang'] [u'howard', u'elect', u'trail'] [u'howard', u'reject', u'latham', u'school', u'plan'] [u'howard', u'set', u'sight'] [u'human', u'right', u'group', u'want', u'child', u'soldier', u'demob'] [u'indigen', u'land', u'trust', u'disput', u'log'] [u'indonesian', u'water', u'buffalo', u'shake', u'butcher'] [u'injur', u'farmer', u'face', u'long', u'hospit', u'stay'] [u'isra', u'nuclear', u'traitor', u'free', u'april', u'report'] [u'jackson', u'come', u'undo', u'super', u'bowl'] [u'kashmiri', u'milit', u'offer', u'cash', u'surrend'] [u'kay', u'storm', u'home', u'phoenix', u'open'] [u'keightley', u'fire', u'blue', u'women', u'cricket', u'titl'] [u'kinder', u'face', u'teacher', u'shortag'] [u'labor', u'candid', u'oppos', u'site', u'second', u'sydney'] [u'labor', u'set', u'school', u'fund', u'shake'] [u'gasp', u'ronaldo', u'put', u'real'] [u'latham', u'play', u'free', u'child', u'care', u'claim'] [u'brink', u'gabba'] [u'lifesav', u'warn', u'swim', u'open', u'beach'] [u'lightn', u'caus', u'kiewa', u'scrub'] [u'lille', u'get', u'track'] [u'list', u'reveal', u'near', u'donat', u'liber'] [u'local', u'news', u'return', u'screen'] [u'local', u'shop', u'hous', u'primari', u'student'] [u'lovenkrand', u'injuri', u'overshadow', u'ranger'] [u'magistr', u'tour', u'titanium'] [u'magnesium', u'firm', u'eye', u'central', u'plant', u'site'] [u'court', u'kidnap', u'robberi'] [u'manufactur', u'industri', u'continu', u'growth'] [u'masur', u'play', u'scud', u'cash', u'feud', u'claim'] [u'media', u'giant', u'challeng', u'fine', u'judg'] [u'melbourn', u'cabbi', u'bash', u'rob'] [u'appear', u'court', u'drug', u'traffic', u'charg'] [u'milan', u'point', u'clear'] [u'mine', u'propos', u'nauru', u'consid'] [u'death', u'link', u'bird'] [u'mountain', u'bike', u'comp', u'enter'] [u'back', u'placement'] [u'seek', u'meet', u'review', u'hospit', u'psychiatr'] [u'mydoom', u'worm', u'hit', u'softwar', u'maker', u'websit'] [u'chief', u'quit', u'amid', u'trade', u'scandal'] [u'share', u'chief', u'quit'] [u'ncoss', u'back', u'stamp', u'duti', u'retent'] [u'newcastl', u'crime', u'rate', u'fall'] [u'england', u'record', u'heavi', u'rain'] [u'juvenil', u'detent', u'facil', u'establish'] [u'chief', u'step'] [u'fussi', u'win', u'bega'] [u'nrma', u'question', u'petrol', u'price'] [u'nuclear', u'scientist', u'admit', u'leak', u'secret', u'offici'] [u'consid', u'inquiri', u'polic', u'rape', u'claim'] [u'okon', u'consid', u'return', u'farina'] [u'iranian', u'resign'] [u'patriot', u'clinch', u'gasp', u'super', u'bowl'] [u'patriot', u'super', u'bowl', u'thriller'] [u'platinum', u'east', u'kimberley'] [u'announc', u'intern', u'section'] [u'elect', u'date'] [u'assess', u'propos', u'inquiri', u'iraq'] [u'rat', u'fall'] [u'polic', u'associ', u'happi', u'consid', u'super', u'issu'] [u'polic', u'crack', u'school', u'speed'] [u'polic', u'expect', u'breakthrough', u'miss', u'toddler', u'case'] [u'polic', u'oper', u'target', u'unruli', u'behaviour'] [u'polic', u'probe', u'nabowla', u'stab'] [u'polic', u'recov', u'steal', u'good'] [u'polic', u'upbeat', u'tackl', u'drug', u'runner'] [u'polic', u'worri', u'hijack'] [u'popul', u'chang', u'forc', u'local', u'council', u'meet'] [u'power', u'compani', u'come', u'scrutini'] [u'power', u'return', u'brisban', u'home'] [u'prison', u'escap', u'claim', u'dole', u'payment'] [u'prison', u'guard', u'union', u'talk'] [u'properti', u'price', u'hold', u'summer'] [u'public', u'urg', u'prejudg', u'godfath', u'soul'] [u'opposit', u'aim', u'lure', u'vote', u'fish'] [u'rate', u'rise', u'tip', u'deficit', u'jump'] [u'record', u'cold', u'januari', u'gambier'] [u'refuge', u'jail', u'flatmat', u'stab'] [u'resid', u'warn', u'thiev', u'target', u'home'] [u'reveng', u'make', u'victori', u'sweet', u'feder'] [u'road', u'group', u'hop', u'feder', u'fund'] [u'rofe', u'destroy', u'bushrang'] [u'recreat', u'right', u'resum'] [u'ruddock', u'warn', u'qaeda', u'threat', u'remain'] [u'saudi', u'revamp', u'holi', u'sit', u'hajj', u'crush'] [u'scotland', u'manag', u'mcleod', u'die', u'age'] [u'second', u'road', u'fatal', u'south', u'coast'] [u'separ', u'blaze', u'damag', u'home'] [u'societi', u'angri', u'grandstand', u'roof', u'remov'] [u'simpson', u'camel', u'seek'] [u'south', u'african', u'priest', u'fake', u'abduct'] [u'south', u'west', u'resid', u'hear', u'local', u'news'] [u'storm', u'lash', u'sydney'] [u'opposit', u'renew', u'magistr', u'boost'] [u'tenni', u'australia', u'rule', u'electron', u'line', u'call'] [u'vietnames', u'fear', u'dead', u'pirat', u'attack'] [u'tourist', u'die', u'central', u'australia', u'highway', u'crash'] [u'trenorden', u'charg', u'glenelg', u'murder'] [u'trenorden', u'remain', u'custodi'] [u'tropic', u'river', u'forum', u'open', u'darwin'] [u'tweed', u'get', u'dialysi', u'unit'] [u'tweed', u'galleri', u'offici', u'open'] [u'twin', u'bomb', u'claim', u'live', u'iraq'] [u'unaccept', u'wait', u'list', u'attack'] [u'home', u'ownership', u'rat', u'drop'] [u'offer', u'year'] [u'union', u'meet', u'educ', u'depart', u'discuss'] [u'want', u'rule', u'bioprospect', u'antarctica'] [u'upgrad', u'grain', u'wagon', u'hand'] [u'domest', u'flight', u'cancel', u'secur', u'fear'] [u'promis', u'justic', u'iraq', u'suicid', u'bomb'] [u'probe', u'iraq', u'intellig'] [u'vail', u'hammer', u'free', u'trade', u'talk'] [u'oppn', u'attack', u'brumbi', u'rat'] [u'prison', u'lockdown', u'continu'] [u'firm', u'welcom', u'toothfish', u'boat', u'apprehens'] [u'warn', u'driver', u'school', u'year', u'start'] [u'suspect', u'human', u'human', u'bird', u'spread'] [u'warn', u'bird', u'death', u'toll', u'hit'] [u'william', u'davenport', u'look', u'bounc', u'japan'] [u'work', u'ban', u'forc', u'jail', u'lockdown'] [u'year', u'monkey', u'bring', u'miseri', u'china', u'ape'] [u'serv', u'danc', u'offic'] [u'young', u'kill', u'sydney', u'factori', u'shoot'] [u'young', u'raid', u'net', u'jewelleri', u'haul'] [u'fine', u'electrician', u'rail', u'death'] [u'abbott', u'set', u'record', u'straight', u'elect'] [u'welcom', u'fuel', u'competit', u'qlds', u'north'] [u'court', u'welcom', u'magistr'] [u'minist', u'reject', u'retir', u'specul'] [u'social', u'plan'] [u'airlin', u'confid', u'aircraft', u'approv'] [u'appeal', u'launch', u'german', u'cannib', u'sentenc'] [u'predict', u'market', u'particip', u'recoveri'] [u'aussi', u'netbal', u'captainci', u'grab'] [u'aussi', u'kasprowicz'] [u'babi', u'offer', u'music', u'cours'] [u'bibl', u'prove', u'mightier', u'robberi'] [u'blair', u'announc', u'weapon', u'probe'] [u'blair', u'launch', u'iraq', u'intellig', u'inquiri'] [u'alight', u'attempt', u'ipswich', u'robberi'] [u'brack', u'write', u'childcar', u'warn'] [u'britain', u'ponder', u'terror', u'law'] [u'brogden', u'vow'] [u'brown', u'coal', u'viabil', u'studi', u'latrob', u'valley'] [u'brumbi', u'amaz', u'channel', u'ax', u'super'] [u'brumbi', u'shock', u'channel', u'ax', u'super'] [u'bulldog', u'search', u'support', u'north'] [u'bull', u'blue', u'rain'] [u'bush', u'order', u'probe', u'iraqi', u'weapon'] [u'bushrang', u'build', u'lead', u'rain', u'interrupt', u'gabba', u'game'] [u'bush', u'spend', u'trillion', u'budget'] [u'call', u'jail', u'account'] [u'canegrow', u'target', u'beatti'] [u'carey', u'brother', u'charg', u'assault'] [u'thief', u'sentenc', u'month', u'jail'] [u'centuri', u'upbeat', u'amidst', u'pasminco', u'chang'] [u'chamber', u'upbeat', u'despit', u'hakfoort', u'sell'] [u'child', u'care', u'probe', u'hear', u'brutal', u'claim'] [u'cobar', u'wait', u'despit', u'arriv'] [u'colleg', u'start', u'plan', u'fund', u'spend'] [u'communiti', u'alcohol', u'abus'] [u'communiti', u'encourag', u'burglar'] [u'contract', u'kill', u'price'] [u'cool', u'weather', u'expect', u'central', u'victoria'] [u'council', u'issu', u'school', u'park', u'fin'] [u'council', u'offic', u'highlight', u'growth', u'stress'] [u'court', u'appear', u'alleg', u'jacker'] [u'cycl', u'need', u'lift', u'revamp', u'season'] [u'cyclist', u'get', u'cash', u'refund', u'year'] [u'dallaglio'] [u'diver', u'help', u'barg', u'refloat'] [u'plessi', u'quit', u'rugbi', u'board'] [u'elder', u'call', u'charg', u'polic', u'wildlif'] [u'elect', u'word', u'erupt', u'cherbourg', u'claim'] [u'employ', u'opposit', u'plan', u'build', u'law'] [u'escap', u'child', u'offend', u'interest'] [u'expert', u'warn', u'sting', u'suit'] [u'away', u'europ', u'warn', u'boss'] [u'fairfax', u'cut', u'job', u'print', u'closur'] [u'famili', u'associ', u'want', u'violent', u'play', u'stop'] [u'feder', u'say', u'impact', u'student', u'rise'] [u'feder', u'ferrero', u'sign', u'hamburg', u'master'] [u'financ', u'compani', u'say', u'hous', u'market', u'favour'] [u'author', u'warn', u'bushfir', u'risk'] [u'firefight', u'battl', u'bush', u'blaze', u'near', u'perth'] [u'fitzgerald', u'defend', u'scud'] [u'shire', u'foreman', u'convict', u'fraud'] [u'frustrat', u'martyn'] [u'fund', u'announc', u'namoi', u'valley', u'industri'] [u'german', u'fear', u'european', u'bird', u'case'] [u'ghan', u'complet', u'histor', u'journey'] [u'ghan', u'make', u'dash', u'darwin'] [u'ghan', u'reach', u'tennant', u'creek'] [u'goodwin', u'sign', u'sussex'] [u'gough', u'move', u'essex'] [u'govern', u'communiti', u'join', u'fight', u'alcohol'] [u'govern', u'blame', u'local', u'council', u'cost', u'blow'] [u'govt', u'announc', u'anti', u'drug', u'boost'] [u'grant', u'council', u'conduct', u'poll', u'citi'] [u'green', u'concern', u'vote', u'card'] [u'hail', u'devast', u'bird', u'near', u'wollongong'] [u'hanson', u'call', u'protest', u'vote'] [u'hantuchova', u'down', u'molik', u'tokyo'] [u'health', u'provid', u'scrambl', u'save', u'million'] [u'heineken', u'classic', u'second', u'prize', u'barn'] [u'high', u'court', u'reserv', u'child', u'detent', u'decis'] [u'hill', u'reject', u'need', u'local', u'iraq', u'weapon', u'probe'] [u'hollywood', u'studio', u'oscar', u'cash', u'overdr'] [u'howard', u'warn', u'labor', u'industri', u'relat'] [u'hubbl', u'find', u'oxygen', u'carbon', u'distant', u'planet'] [u'indonesia', u'confirm', u'dead', u'bird', u'strain'] [u'inquest', u'tell', u'fatal', u'payback', u'polic'] [u'insur', u'concern', u'sport', u'doctor', u'leav'] [u'irish', u'race', u'tycoon', u'turn', u'heat', u'fergi'] [u'israel', u'sharon', u'threaten', u'form', u'govern'] [u'jackson', u'remain', u'limit', u'prepar'] [u'jackson', u'super', u'bowl', u'mishap', u'spark', u'indec', u'inquiri'] [u'jackson', u'battl', u'fractur'] [u'jail', u'lockdown', u'spark', u'inmat', u'tension', u'fear'] [u'janet', u'jackson', u'superbowl', u'flash', u'spark', u'outrag'] [u'japan', u'farewel', u'soldier', u'iraq', u'mission'] [u'jewish', u'settler', u'reject', u'sharon', u'plan'] [u'kasper', u'stun'] [u'kasprowicz', u'stun', u'final'] [u'katherin', u'track', u'ghan', u'arriv'] [u'kenyan', u'face', u'terrorist', u'attack', u'trial'] [u'latham', u'attack', u'payout'] [u'latham', u'promis', u'kirribilli', u'hous'] [u'launceston', u'crash', u'spark', u'inquest'] [u'lawyer', u'make', u'second', u'hick', u'visit'] [u'leader', u'discuss', u'king', u'ship', u'problem'] [u'leader', u'messag', u'road'] [u'lectur', u'blame', u'polit', u'rebuk'] [u'leed', u'reject', u'boro', u'viduka'] [u'disput', u'local', u'govern', u'claim'] [u'lismor', u'prepar', u'flood', u'survey'] [u'lobster', u'council', u'defend', u'sustain'] [u'logger', u'ralli', u'nativ', u'veget'] [u'malaysia', u'mull', u'legalis', u'transvestit'] [u'front', u'court', u'stab'] [u'hold', u'suspect', u'parcel', u'send', u'leader'] [u'hospit', u'liverpool', u'shoot'] [u'market', u'settl', u'dollar', u'climb'] [u'masur', u'renew', u'davi', u'reward'] [u'mcgrath', u'track', u'monday', u'comeback'] [u'memori', u'plaqu', u'unveil', u'pilton', u'cemeteri'] [u'mildura', u'look', u'promot', u'wine', u'credenti'] [u'minor', u'flood', u'predict', u'steadi', u'rain', u'fall'] [u'dope', u'grow', u'suspect', u'record', u'raid'] [u'mourner', u'farewel', u'victim', u'iraq', u'suicid', u'blast'] [u'call', u'polit', u'donat', u'transpar'] [u'claim', u'defenc', u'dept', u'jeopardis', u'local', u'job'] [u'squabbl', u'polit', u'point', u'score'] [u'nat', u'reject', u'live', u'export', u'recommend'] [u'near', u'drown', u'victim', u'stabl', u'condit'] [u'environment', u'lobbi', u'group', u'launch'] [u'juri', u'crossbow', u'accus', u'trial'] [u'nrma', u'call', u'fuel', u'price', u'investig'] [u'order', u'malici', u'prosecut', u'compo'] [u'communiti', u'entertain', u'youth', u'reduc', u'crime'] [u'korea', u'name', u'talk', u'date'] [u'korea', u'readi', u'talk', u'downer'] [u'fund', u'east', u'timor', u'justic', u'probe'] [u'odriscol', u'look', u'ireland'] [u'oppn', u'blame', u'govt', u'miss', u'offer'] [u'opposit', u'warn', u'super', u'council'] [u'paint', u'hitler', u'tokyo'] [u'pittsworth', u'cabbi', u'keep', u'busi'] [u'pivac', u'coach', u'fiji'] [u'plantat', u'crop', u'includ', u'nativ', u'tree'] [u'admit', u'doubt', u'grow'] [u'power', u'restor', u'wollongong', u'home', u'fierc'] [u'powerscrap', u'firm', u'find', u'plan', u'viabl'] [u'premier', u'leagu', u'club', u'splash', u'cash', u'rest'] [u'primus', u'prim', u'season'] [u'prison', u'guard', u'stop', u'work'] [u'protest', u'focus', u'mental', u'health', u'resourc'] [u'protestor', u'fail', u'present', u'petit'] [u'public', u'health', u'warn', u'tick', u'increas'] [u'grazier', u'lookout', u'weed'] [u'quarantin', u'effort', u'boost', u'amidst', u'bird', u'fear'] [u'quarantin', u'expert', u'beetl', u'pest'] [u'race', u'organis', u'bemus', u'beloki', u'withdraw'] [u'consid', u'rat', u'rise'] [u'redback', u'trail', u'adelaid'] [u'reef', u'bodi', u'concern', u'green', u'zone', u'hammer'] [u'reserv', u'urg', u'lift', u'rat'] [u'resid', u'fear', u'council', u'creat', u'pristin', u'reserv'] [u'resid', u'trap', u'turkish', u'flat', u'collaps'] [u'resourc', u'media', u'stock', u'weigh', u'market'] [u'restaur', u'owner', u'meet', u'firebomb', u'attack'] [u'ricin', u'senat', u'offic'] [u'riverland', u'polic', u'watch', u'drug', u'offens'] [u'rivkin', u'lawyer', u'plan', u'appeal'] [u'rome', u'hold', u'bird', u'talk'] [u'samag', u'doubt', u'prompt', u'lower', u'power', u'price'] [u'public', u'servant', u'continu', u'strike'] [u'debut', u'site', u'mydoom', u'target', u'microsoft'] [u'scud', u'join', u'davi', u'team', u'mat'] [u'second', u'child', u'detent', u'case', u'reach', u'high', u'court'] [u'seven', u'dump', u'super', u'coverag'] [u'shark', u'flag', u'women', u'stay', u'men', u'golf'] [u'shark', u'want', u'women', u'stay', u'men', u'golf'] [u'sharon', u'drop', u'gaza', u'settlement', u'bombshel'] [u'sharon', u'plan', u'free', u'gaza'] [u'sharon', u'settlement', u'plan', u'public', u'relat'] [u'sharon', u'hand', u'arab', u'isra', u'town', u'palestinian'] [u'shock', u'smoke', u'warn', u'draw', u'mix', u'reaction'] [u'springborg', u'catch', u'poll'] [u'stanwel', u'short', u'list', u'magnesium', u'project'] [u'sydney', u'doctor', u'defend', u'patient', u'treatment'] [u'tafe', u'student', u'choos', u'fee', u'despit', u'teacher'] [u'taiwan', u'presid', u'make', u'china', u'offer'] [u'ambul', u'offic', u'work', u'hobart'] [u'declar', u'marin', u'reserv'] [u'tasmanian', u'student', u'struggl', u'hous'] [u'danger', u'state', u'prison'] [u'teacher', u'union', u'want', u'truanci', u'plan', u'trial'] [u'telstra', u'offer', u'mobil', u'relief', u'storm', u'victim'] [u'tender', u'expect', u'call', u'hume', u'freeway'] [u'test', u'fail', u'detect', u'german', u'bird', u'case'] [u'timber', u'committe', u'back', u'power', u'station', u'propos'] [u'time', u'run', u'trade', u'talk', u'deal'] [u'toddler', u'die', u'turkey', u'build', u'collaps'] [u'turkey', u'build', u'collaps', u'toll'] [u'underground', u'gold', u'construct', u'begin'] [u'unfair', u'point', u'stay', u'say', u'mosley'] [u'union', u'predict', u'build', u'industri', u'loss'] [u'uralla', u'accid', u'kill'] [u'uralla', u'council', u'pursu', u'allianc', u'neighbour'] [u'militari', u'reduc', u'baghdad', u'presenc'] [u'scientist', u'claim', u'sar', u'breakthrough'] [u'fast', u'rail', u'accus', u'construct', u'cost', u'cut'] [u'land', u'declar', u'bushfir', u'prone'] [u'prison', u'lockdown', u'go'] [u'wandera', u'log', u'protest', u'lead', u'talk'] [u'watchdog', u'warn', u'earli', u'super', u'scam'] [u'waugh', u'get', u'raini', u'blue', u'brisban'] [u'weather', u'bureau', u'say', u'nino'] [u'welfar', u'group', u'want', u'public', u'liabil', u'probe'] [u'wilkinson', u'nation', u'open'] [u'worksaf', u'baffl', u'farm', u'tragedi'] [u'zimbabw', u'head', u'home', u'fight', u'defeat'] [u'zim', u'crash', u'perth'] [u'abattoir', u'boss', u'seek', u'perman', u'resid', u'asylum'] [u'late', u'fund', u'disclosur', u'detail'] [u'ambassador', u'deni', u'indonesian', u'embassi', u'bug'] [u'annan', u'attempt', u'break', u'impass', u'iraq'] [u'appeal', u'launch', u'stop', u'clear', u'tree'] [u'applebi', u'say', u'women', u'tour', u'need', u'golfer'] [u'atsic', u'want', u'trust', u'document', u'releas'] [u'bank', u'bump'] [u'barrymor', u'star', u'shin', u'hollywood', u'walk', u'fame'] [u'beatti', u'committ', u'racetrack'] [u'beatti', u'affirm', u'commit', u'visit', u'cherbourg'] [u'beatti', u'springborg', u'hust', u'region'] [u'bichel', u'disappoint', u'dump'] [u'blaze', u'near', u'control'] [u'bird', u'effort', u'creat', u'melbourn', u'airport', u'woe'] [u'bird', u'kill', u'asia'] [u'blue', u'chase', u'outright', u'gabba'] [u'boat', u'accid', u'kill', u'uganda'] [u'boozi', u'biscuit', u'hard', u'swallow'] [u'boro', u'stun', u'gunner', u'reach', u'leagu', u'final'] [u'accus', u'murder', u'father', u'claim', u'abus'] [u'die', u'bird', u'thailand'] [u'burdekin', u'resid', u'count', u'flood', u'cost'] [u'bushfir', u'final', u'contain'] [u'bushrang', u'rout', u'redback'] [u'busi', u'campaign', u'ring', u'road'] [u'businessman', u'back', u'water', u'technolog'] [u'carer', u'welcom', u'support'] [u'sale', u'boom'] [u'thiev', u'poor'] [u'worker', u'drive', u'boost', u'push'] [u'child', u'kill', u'convict', u'call', u'question'] [u'child', u'offend', u'southern'] [u'china', u'battl', u'bird', u'case'] [u'coal', u'miner', u'union', u'discuss', u'return', u'work'] [u'coal', u'miner', u'walk'] [u'commerci', u'fish', u'industri', u'want', u'meet'] [u'committe', u'studi', u'hospit', u'futur'] [u'committe', u'urg', u'moratorium', u'bluegum', u'plant'] [u'compani', u'plead', u'guilti', u'environment', u'charg'] [u'cook', u'show', u'earli', u'season', u'form'] [u'council', u'back', u'dump', u'oppon'] [u'council', u'reassur', u'log', u'wandera', u'forest'] [u'council', u'stress', u'import', u'kraft', u'factori'] [u'council', u'discuss', u'abattoir', u'futur'] [u'council', u'investig', u'hous', u'flood', u'prone', u'area'] [u'council', u'urg', u'address', u'traffic', u'concern', u'issu'] [u'court', u'decid', u'rivkin', u'sentenc', u'appeal'] [u'creditor', u'line', u'lode', u'decis', u'welcom'] [u'crossbow', u'attack', u'trial', u'hear', u'judg'] [u'crown', u'thorn', u'starfish', u'outbreak', u'near'] [u'davenport', u'sweep', u'tokyo', u'quarter'] [u'death', u'toll', u'iraq', u'suicid', u'bomb', u'hit'] [u'death', u'toll', u'mount', u'turkey', u'build', u'disast'] [u'deleg', u'prepar', u'bali', u'terror', u'summit'] [u'demon', u'seek', u'financi'] [u'demon', u'turn', u'cash', u'bail'] [u'dengu', u'fever', u'outbreak', u'concern', u'author'] [u'develop', u'polici', u'concern', u'irrig', u'group'] [u'draw', u'end', u'blue', u'final', u'hop'] [u'drought', u'blame', u'high', u'cost', u'fruit', u'vege'] [u'drought', u'hardship', u'highlight', u'panel', u'forum'] [u'dump', u'plan', u'galvanis', u'resid'] [u'dyson', u'return', u'red'] [u'email', u'giant', u'spam', u'charg'] [u'bosnian', u'serb', u'polici', u'maker', u'face', u'crime', u'trial'] [u'experi', u'reduc', u'wild', u'fruit', u'fli', u'hail'] [u'expert', u'meet', u'bird', u'crisi'] [u'export', u'angri', u'cattl', u'levi'] [u'facilit', u'call', u'chang', u'colleg', u'teach'] [u'farmer', u'warn', u'check'] [u'farm', u'safeti', u'group', u'critic', u'helmet', u'requir'] [u'ferri', u'capsiz', u'toll', u'top'] [u'finish', u'touch', u'golf', u'cours'] [u'flinder', u'hop', u'diamond'] [u'fraudster', u'jail', u'credit', u'card', u'chequ', u'book', u'scam'] [u'leak', u'threaten', u'explos', u'gunnedah'] [u'ghan', u'make', u'adelaid'] [u'ghan', u'track', u'return', u'trip'] [u'glenelg', u'mayor', u'look', u'support', u'livestock'] [u'good', u'friday', u'agreement', u'review'] [u'govt', u'accus', u'blame', u'shift', u'samag', u'issu'] [u'govt', u'doubl', u'spend', u'unman', u'plan'] [u'govt', u'urg', u'consid', u'hedland', u'coastguard', u'base'] [u'green', u'supermarket', u'plastic'] [u'owner', u'urg', u'advantag', u'buyback', u'unit'] [u'hanson', u'issu', u'plea', u'juror'] [u'hart', u'surpris', u'council', u'honour'] [u'health', u'promis', u'doctor'] [u'hewitt', u'verg', u'davi', u'great'] [u'hewitt', u'wari', u'unknown', u'swede'] [u'high', u'court', u'hear', u'life', u'sentenc', u'challeng'] [u'hodg', u'ponder', u'play', u'futur'] [u'howard', u'stand', u'iraq', u'decis'] [u'indonesia', u'face', u'long', u'term', u'secur', u'risk', u'studi'] [u'kerri', u'take', u'edward', u'clark', u'stay', u'aliv'] [u'killer', u'seek', u'life', u'sentenc', u'review'] [u'labor', u'lukewarm', u'defenc', u'plan'] [u'land', u'council', u'petrol', u'compani', u'announc', u'land', u'deal'] [u'latham', u'heckl', u'region', u'tour'] [u'latham', u'help', u'boost'] [u'latham', u'region', u'campaign', u'roll'] [u'confus', u'creat', u'rivkin', u'appeal', u'doubt'] [u'lismor', u'site', u'amalgam', u'hear'] [u'livingston', u'silver', u'line', u'dark', u'financi'] [u'local', u'footbal', u'benefit', u'docker', u'train'] [u'charg', u'attempt', u'murder', u'refus', u'bail'] [u'electrocut', u'freak', u'accid'] [u'face', u'attempt', u'murder', u'charg'] [u'martyn', u'say', u'sorri', u'finger', u'salut'] [u'mayor', u'highlight', u'restrict', u'prime', u'real', u'estat'] [u'media', u'ident', u'trenorden', u'dead', u'cell'] [u'microsoft', u'withstand', u'mydoom', u'attack'] [u'milton', u'add', u'alpin', u'ski', u'gold', u'haul'] [u'mix', u'reaction', u'log', u'protest'] [u'terror', u'attack', u'inevit', u'downer'] [u'water', u'seek', u'thomson', u'river'] [u'want', u'administr', u'appoint', u'health', u'servic'] [u'nambucca', u'shire', u'lobbi'] [u'narrogin', u'resid', u'vote', u'amalgam'] [u'carolina', u'senat', u'close', u'presidenti'] [u'netbal', u'boss', u'seek', u'repres', u'player'] [u'equat', u'leav', u'powel', u'unsur', u'iraq'] [u'leve', u'alter', u'direct', u'flood', u'water'] [u'nippl', u'gate', u'wont', u'stop', u'jackson', u'timberlak', u'grammi'] [u'north', u'west', u'resid', u'phone'] [u'give', u'striker', u'unit', u'replay', u'ahead'] [u'opposit', u'demand', u'rivkin', u'time'] [u'polic', u'drug', u'bust', u'south', u'coast'] [u'slat', u'tourism', u'research', u'withdraw'] [u'dead', u'russian', u'blast'] [u'pakistan', u'scientist', u'ask', u'clemenc', u'leak'] [u'pasminco', u'upbeat', u'port', u'piri'] [u'disput', u'delay', u'lengthen', u'inmat', u'lock'] [u'perilya', u'oper', u'breakdown'] [u'plan', u'open', u'hospit', u'ward'] [u'continu', u'campaign'] [u'defend', u'super', u'scheme'] [u'reflect', u'like', u'latham', u'poll', u'boost'] [u'polic', u'hunt', u'video', u'store', u'arm', u'robber'] [u'polic', u'hunt', u'youth', u'alight'] [u'polic', u'search', u'murder', u'victim', u'bodi'] [u'polic', u'seek', u'help', u'underworld', u'murder', u'probe'] [u'polic', u'seek', u'vandal'] [u'polic', u'seek', u'public', u'help', u'size', u'vehicl'] [u'polic', u'investig', u'hous', u'blaze'] [u'polit', u'infight', u'delay', u'itali', u'media'] [u'poultri', u'bird', u'owner', u'warn', u'watch', u'bird'] [u'power', u'surg', u'jolt', u'telstra', u'worker', u'brisban'] [u'premier', u'elect', u'bandwagon', u'roll', u'keppel'] [u'prison', u'wont', u'join', u'court', u'challeng', u'law'] [u'public', u'meet', u'discuss', u'pipelin'] [u'rat', u'stay', u'steadi'] [u'recuper', u'prokopec', u'target', u'athen'] [u'refuge', u'group', u'highlight', u'child', u'detent', u'rat'] [u'retail', u'sale', u'month', u'high', u'overal'] [u'ricciuto', u'season'] [u'ricin', u'scare', u'push', u'dollar'] [u'roff', u'aim', u'super', u'career', u'high'] [u'gallus', u'tell', u'howard', u'wont'] [u'schooli', u'urg', u'accommod', u'homework'] [u'schultz', u'label', u'latham', u'airport', u'stunt'] [u'scotland', u'coach', u'say', u'face', u'hard', u'road'] [u'seear', u'win', u'olymp', u'triathlon', u'spot'] [u'shire', u'move', u'allay', u'concert', u'concern'] [u'softwood', u'process', u'boost', u'job'] [u'speed', u'put', u'children', u'safeti', u'risk', u'polic'] [u'lankan', u'stack', u'squad', u'spinner'] [u'staff', u'increas', u'rais', u'abalon', u'poach', u'sting'] [u'state', u'propos', u'minimum', u'wage', u'rise'] [u'stress', u'eleph', u'present', u'jumbo', u'task'] [u'studi', u'forecast', u'jump', u'privat', u'health', u'cost'] [u'studi', u'probe', u'pacif', u'tuna', u'manag'] [u'support', u'gather', u'class', u'action'] [u'survey', u'highlight', u'danger', u'rock', u'fish'] [u'move', u'regul', u'worker'] [u'opposit', u'want', u'power', u'price', u'rise', u'answer'] [u'temporari', u'measur', u'suggest', u'intersect'] [u'thailand', u'report', u'fifth', u'bird', u'death'] [u'toowoomba', u'resid', u'prais', u'recycl'] [u'toyn', u'reject', u'land', u'acquisit'] [u'train', u'smash', u'court', u'sequel'] [u'truck', u'spill', u'acid', u'tanami', u'highway'] [u'tyre', u'see', u'good', u'cement', u'work', u'fuel'] [u'chief', u'overrul', u'expert', u'iraq', u'dossier'] [u'hold', u'inquiri', u'iraq', u'intellig'] [u'promis', u'bolster', u'student', u'number'] [u'iraq', u'govt', u'transit'] [u'sailor', u'enjoy', u'time', u'broom'] [u'concret', u'saddam', u'bolt', u'hole'] [u'viduka', u'vow', u'repay', u'leed', u'loyalti'] [u'agreement', u'hail', u'step', u'forward'] [u'minist', u'criticis', u'lack', u'marshal'] [u'warrior', u'strong', u'posit', u'open'] [u'warrior', u'place', u'open'] [u'wife', u'terror', u'suspect', u'brigitt', u'make', u'jail', u'visit'] [u'wilki', u'demand', u'independ', u'iraq', u'probe'] [u'work', u'child', u'precinct', u'develop', u'underway'] [u'yuko', u'sibneft', u'sign', u'divorc', u'memorandum'] [u'home', u'black', u'lightn', u'strike'] [u'aborigin', u'children', u'perform', u'art', u'festiv'] [u'stand', u'candid', u'accus', u'bulli'] [u'anderson', u'reject', u'latham', u'nat', u'attack'] [u'angri', u'canefarm', u'squar', u'major'] [u'anim', u'activist', u'want', u'live', u'export'] [u'art', u'festiv', u'manag', u'stand', u'appoint'] [u'consid', u'report', u'possibl', u'cycl', u'drug', u'case'] [u'australia', u'indonesia', u'joint', u'anti', u'terror'] [u'balloon', u'titl', u'hold', u'mildura'] [u'bank', u'media', u'stock', u'weigh', u'market'] [u'beatric', u'celebr'] [u'beatti', u'face', u'elect', u'loss', u'possibl'] [u'beatti', u'play', u'tugun', u'trump', u'card'] [u'bird', u'claim', u'victim', u'vietnam'] [u'blair', u'admit', u'setback', u'iraqi', u'weapon', u'search'] [u'blair', u'heckl', u'iraq', u'debat'] [u'boat', u'harbour', u'draft', u'plan', u'present'] [u'boonah', u'council', u'review', u'water', u'restrict'] [u'british', u'labour', u'deputi', u'protest', u'appoint'] [u'bundaberg', u'organ', u'food', u'supplier', u'target', u'japanes'] [u'busi', u'usual', u'student', u'despit', u'tafe', u'strike'] [u'action', u'stall', u'burni', u'hous', u'site'] [u'campbel', u'captur', u'clubhous', u'lead'] [u'canberra', u'polic', u'number', u'adequ', u'minist', u'say'] [u'carr', u'find', u'conveni', u'store', u'alcohol', u'plan', u'hard'] [u'cheap', u'travel', u'plan'] [u'china', u'predict', u'tough', u'bird', u'battl'] [u'cinema', u'draw', u'near', u'oscar', u'ballot', u'mail'] [u'claim', u'educ', u'depart', u'chequ', u'bounc'] [u'clayton', u'girlfriend', u'offer', u'ebay'] [u'coalit', u'seat', u'springborg'] [u'coalit', u'promis', u'yeppoon', u'hospit'] [u'coal', u'expans', u'plan', u'approv', u'govt'] [u'coastal', u'strip', u'manag', u'meet', u'continu'] [u'coff', u'host', u'nation', u'health', u'care', u'trial'] [u'commission', u'concentr', u'land', u'clear'] [u'compani', u'plan', u'begin', u'iron', u'mine'] [u'loser', u'walk', u'away', u'storey', u'fall'] [u'controversi', u'clone', u'attempt', u'fail'] [u'council', u'call', u'generat'] [u'council', u'unhappi', u'cemeteri', u'clear', u'decis'] [u'court', u'reject', u'rivkin', u'appeal'] [u'court', u'rule', u'claim', u'boxer', u'estat'] [u'croc', u'trap', u'remov', u'river'] [u'crow', u'spend', u'time', u'riverland', u'communiti'] [u'currumbin', u'charg', u'stalk'] [u'debt', u'zimbabw', u'wing'] [u'diamond', u'lift'] [u'drought', u'blame', u'skyrocket', u'fruit'] [u'charg', u'spate', u'burglari'] [u'rip', u'royal', u'melbourn', u'shred'] [u'expert', u'consid', u'rail', u'safeti', u'waterfal', u'probe'] [u'famili', u'feud', u'street', u'fight', u'polic'] [u'farmer', u'urg', u'battl', u'live', u'export', u'trade', u'shutdown'] [u'fifa', u'kick', u'centenari', u'live', u'legend', u'sneak'] [u'wollongong', u'mayor', u'jack', u'parker', u'die'] [u'indian', u'soldier', u'kill', u'kashmir', u'blast'] [u'francou', u'go', u'knife'] [u'futur', u'fortuna', u'defenc', u'centr', u'discuss'] [u'geraldton', u'student', u'univers', u'centr'] [u'ghan', u'head', u'alic', u'return', u'trip'] [u'girl', u'suspend', u'school', u'say', u'hell'] [u'global', u'firm', u'move', u'headquart', u'queensland'] [u'gold', u'coast', u'pedestrian', u'rob', u'gunpoint'] [u'good', u'rainfal', u'boost', u'level'] [u'govt', u'blast', u'river', u'clean', u'work'] [u'govt', u'releas', u'submiss', u'port', u'infrastructur'] [u'grace', u'bros', u'chang', u'plan', u'spark', u'concern'] [u'green', u'blast', u'rail', u'delay', u'figur'] [u'group', u'begin', u'seawe', u'salin', u'research'] [u'health', u'promis', u'receiv', u'mix', u'reaction'] [u'health', u'servic', u'scratch', u'despit', u'budget'] [u'hide', u'agenda', u'claim', u'level', u'water', u'author'] [u'hockey', u'fail', u'convinc', u'stick', u'tourism'] [u'hockeyroo', u'domin', u'lose', u'athen'] [u'hope', u'better', u'treatment', u'children', u'court'] [u'horan', u'hop', u'secur', u'toowoomba', u'seat'] [u'hous', u'crisi', u'caus', u'overcrowd', u'survey'] [u'howard', u'head', u'kalgoorli'] [u'illeg', u'tyre', u'dump', u'spark', u'investig'] [u'indigen', u'group', u'demand', u'answer', u'miss'] [u'infight', u'take', u'toll', u'lib'] [u'inform', u'session', u'plan', u'council', u'poll'] [u'iranian', u'leader', u'give', u'elect'] [u'irish', u'tycoon', u'step', u'ferguson'] [u'islam', u'group', u'claim', u'respons', u'iraq'] [u'jackson', u'say', u'offenc', u'intend', u'bustier', u'go'] [u'jail', u'theophan', u'earli', u'releas'] [u'jetti', u'upgrad', u'plan', u'busselton', u'beachfront'] [u'jone', u'eye', u'gold', u'athen'] [u'jordan', u'luck', u'heidfeld'] [u'king', u'dodg', u'bullet'] [u'king', u'dodg', u'bullet', u'hawk', u'beat', u'pig'] [u'lara', u'heap', u'prais', u'prolif', u'kalli'] [u'latham', u'take', u'nation', u'parti', u'neglect'] [u'latham', u'tell', u'need', u'greater', u'rural', u'credibl'] [u'learn', u'centr', u'happi', u'fund', u'cut'] [u'lewi', u'hang', u'glove'] [u'major', u'parti', u'releas', u'elect', u'cost'] [u'charg', u'cannabi', u'crop'] [u'citi', u'write', u'chapter', u'lore'] [u'extradit', u'face', u'child', u'charg'] [u'plead', u'guilti', u'kill', u'tenni', u'star'] [u'mar', u'rover', u'travel', u'rocki', u'road', u'seek', u'water'] [u'martin', u'give', u'thumb', u'darwin', u'tower'] [u'massa', u'escap', u'crash', u'minor', u'injuri'] [u'mcgrath', u'fail', u'fit', u'test'] [u'melbourn', u'polic', u'accus', u'brutal'] [u'memori', u'hold', u'miss', u'gold', u'coast'] [u'mine', u'school', u'combat', u'labour', u'shortag'] [u'log', u'illeg', u'forest', u'import'] [u'moroccan', u'clear', u'german', u'trial'] [u'accus', u'polic', u'breach'] [u'suggest', u'sydney', u'devonport', u'ferri', u'stop'] [u'nation', u'candid', u'buoy', u'elect', u'predict'] [u'natur', u'resourc', u'forum', u'hold', u'gippsland'] [u'law', u'council', u'final', u'word', u'brothel'] [u'resolut', u'public', u'sector', u'wage'] [u'rest', u'star', u'davi', u'begin'] [u'norman', u'swing', u'thing'] [u'northcot', u'murder', u'trial', u'begin', u'victoria'] [u'north', u'coal', u'miner', u'order', u'work'] [u'health', u'servic', u'tell', u'tighten', u'belt'] [u'visit', u'boon', u'bulldog'] [u'youth', u'highest', u'pay', u'nation'] [u'opposit', u'leader', u'cop', u'maori', u'attack'] [u'opposit', u'support', u'crown', u'land', u'propos', u'toxic'] [u'optus', u'ring', u'profit'] [u'oscar', u'bodi', u'expel', u'member', u'piraci', u'scheme'] [u'pair', u'charg', u'drug'] [u'pakistan', u'govt', u'deni', u'offici', u'involv'] [u'pakistan', u'pardon', u'father', u'bomb'] [u'pakistan', u'scientist', u'pardon', u'leak'] [u'parti', u'leader', u'hust', u'elect'] [u'peak', u'bodi', u'aim', u'educ', u'depress'] [u'petrol', u'station', u'alcohol', u'sale', u'communiti'] [u'philippin', u'tighten', u'quarantin', u'bird', u'fear'] [u'pipe', u'construct', u'continu', u'despit', u'heavi', u'rain'] [u'plan', u'reduc', u'kindergarten', u'class', u'size', u'welcom'] [u'question', u'futur'] [u'stale', u'idea'] [u'polic', u'highlight', u'danger', u'illeg', u'home', u'drug'] [u'polic', u'arrest', u'sydney', u'stab', u'case'] [u'polic', u'oper', u'uncov', u'drug'] [u'polic', u'probe', u'gunshot', u'claim'] [u'polic', u'search', u'pizza', u'driver', u'rob'] [u'polit', u'protest', u'injur', u'harar'] [u'pont', u'back', u'star', u'propos'] [u'poultri', u'product', u'quarantin', u'townsvill'] [u'protestor', u'fight', u'live', u'export', u'recommend'] [u'public', u'forum', u'discuss', u'livestock', u'scheme'] [u'qanta', u'investig', u'smoke', u'engin', u'incid'] [u'coalit', u'promis', u'fund', u'increas'] [u'grazier', u'hail', u'drought'] [u'premier', u'wont', u'apologis', u'hanson', u'jail'] [u'rain', u'welcom', u'qlds', u'north'] [u'ratepay', u'concern', u'council', u'review', u'signag'] [u'raymond', u'island', u'koala', u'surpris', u'research'] [u'real', u'estat', u'agent', u'say', u'rat'] [u'redback', u'drop', u'fitzgerald', u'vic', u'clash'] [u'refineri', u'emiss', u'respons', u'health'] [u'refuge', u'fate', u'reli', u'report', u'say', u'immigr'] [u'research', u'show', u'segreg', u'canola', u'cost'] [u'resid', u'divid', u'orang', u'bypass'] [u'richmond', u'mayor', u'reject', u'wild', u'river', u'polici'] [u'riverland', u'theatr', u'group', u'school'] [u'road', u'reconstruct', u'plan', u'approv'] [u'rumsfeld', u'stand', u'case', u'iraq'] [u'ryle', u'comeback', u'doubt'] [u'opposit', u'demand', u'probe', u'trenorden', u'death'] [u'sapphir', u'thiev', u'escap', u'haul'] [u'scientist', u'control', u'rubber', u'vine', u'weed'] [u'scud', u'kick', u'defenc'] [u'second', u'pictur', u'dictionari', u'aim', u'save', u'indigen'] [u'secur', u'doubt', u'athen', u'olymp', u'prepar'] [u'sharon', u'gaza', u'pull', u'vote'] [u'shop', u'centr', u'idea', u'reject', u'parliament'] [u'sight', u'indic', u'fox', u'spread'] [u'nuclear', u'trade', u'bigger', u'think'] [u'souvenir', u'hunter', u'tell', u'disrupt', u'histori'] [u'springborg', u'promis', u'tougher', u'stanc', u'drunken'] [u'sprinter', u'white', u'know', u'fate'] [u'africa', u'flag', u'super', u'chang'] [u'striker', u'replay', u'stallion', u'power', u'split', u'point'] [u'sydney', u'leak', u'caus', u'peak', u'hour', u'chao'] [u'sydney', u'train', u'station', u'evacu', u'leak'] [u'team', u'await', u'davi', u'draw'] [u'tech', u'stock', u'bring', u'market'] [u'teenag', u'charg', u'attempt', u'murder'] [u'telecom', u'profit', u'aust', u'oper'] [u'tenni', u'coach', u'face', u'indec', u'assault', u'charg'] [u'terrorist', u'hunter', u'call', u'studi', u'root', u'caus'] [u'think', u'tank', u'suggest', u'heavili', u'arm', u'polic'] [u'thirteen', u'kill', u'crash', u'india', u'north', u'east'] [u'tiger', u'work', u'blaze', u'warrior'] [u'timet', u'chang', u'light', u'waterfal', u'crash'] [u'fee', u'waiv', u'storm', u'clean'] [u'train', u'track', u'sydney'] [u'triathlon', u'caus', u'traffic', u'delay'] [u'treat', u'smoke', u'inhal', u'cafe'] [u'unit', u'loan', u'dong', u'antwerp'] [u'busi', u'group', u'back', u'aust', u'trade', u'talk'] [u'coastguard', u'stop', u'float', u'immigr'] [u'court', u'uphold', u'marriag', u'decis'] [u'free', u'trade', u'deal', u'close', u'howard'] [u'sailor', u'pack', u'darwin', u'hotel'] [u'vacant', u'market', u'manag', u'posit', u'draw'] [u'verdict', u'delay', u'german', u'trial', u'septemb'] [u'jail', u'lockdown', u'continu'] [u'jail', u'lockdown', u'free', u'theophan'] [u'call', u'superannu', u'rule'] [u'polic', u'caution', u'access', u'file'] [u'coal', u'miner', u'continu', u'strike'] [u'countri', u'tourist', u'bureaus', u'financi', u'woe'] [u'walton', u'stun', u'olymp', u'omiss'] [u'word', u'erupt', u'woman', u'oxygen'] [u'warrior', u'rack', u'huge', u'total', u'beller'] [u'warrnambool', u'hospit', u'convert', u'natur'] [u'water', u'associ', u'back', u'plan', u'irrig', u'loan'] [u'water', u'manag', u'strategi', u'launch', u'alburi'] [u'western', u'bulldog', u'learn', u'experi'] [u'western', u'queensland', u'forget', u'campaign'] [u'west', u'indi', u'beat', u'africa'] [u'whitsunday', u'ratepay', u'reject', u'independ', u'review'] [u'william', u'brush', u'asid', u'local', u'japan'] [u'wind', u'farm', u'construct', u'boost', u'local', u'workforc'] [u'wollongong', u'hawk', u'defeat', u'razorback', u'home', u'turf'] [u'woodward', u'lead', u'lion', u'zealand'] [u'million', u'upgrad', u'albani', u'grain', u'termin'] [u'adelaid', u'boost', u'final', u'hop'] [u'albani', u'bomb', u'discoveri', u'prompt', u'legal', u'action'] [u'albani', u'hospit', u'staff', u'stop', u'work'] [u'alcohol', u'restrict', u'negat', u'reaction'] [u'allan', u'lead', u'california'] [u'set', u'high', u'athen'] [u'arab', u'channel', u'air', u'qaeda', u'tape'] [u'asian', u'nation', u'urg', u'curb', u'bird', u'spread'] [u'warn', u'super', u'scam'] [u'aussi', u'basebal', u'thrash', u'south', u'africa'] [u'australia', u'rout', u'india'] [u'author', u'monitor', u'algal', u'bloom'] [u'author', u'fish', u'death', u'wont', u'close', u'lake'] [u'author', u'enforc', u'hunt', u'rule'] [u'bacteria', u'prompt', u'water', u'warn'] [u'worker', u'protest', u'british', u'govt', u'attack'] [u'beatti', u'hop', u'lure', u'film', u'forum'] [u'beatti', u'bypass', u'surpris'] [u'bombala', u'council', u'hold', u'funer', u'lose'] [u'brack', u'deni', u'report', u'cabinet', u'reshuffl'] [u'braidwood', u'ralli', u'super', u'council'] [u'braveheart', u'welcom', u'appeal', u'reject'] [u'breaker', u'sink', u'pirat'] [u'breaker', u'player', u'face', u'tribun'] [u'brigitt', u'target', u'sydney', u'militari', u'base', u'report'] [u'brother', u'court', u'break', u'enter'] [u'buck', u'stop', u'bush', u'say', u'intellig', u'chief'] [u'bugger', u'ralli', u'protest', u'council', u'merger'] [u'bulldog', u'scrape', u'home'] [u'driver', u'trap', u'north', u'crash'] [u'bush', u'want', u'drought', u'assist', u'simplifi'] [u'candid', u'defend', u'bulli', u'alleg'] [u'canegrow', u'hop', u'high', u'recent', u'rain'] [u'capit', u'crash', u'wnbl', u'semi'] [u'cattl', u'identif', u'scheme', u'difficulti'] [u'celtic', u'face', u'hartson', u'heart', u'breaker'] [u'china', u'bird', u'crisi', u'deepen'] [u'choir', u'accus', u'govt', u'censorship'] [u'chief', u'say', u'iraq', u'wasnt', u'immin', u'threat'] [u'civilian', u'rebel', u'rampag', u'uganda'] [u'clean', u'australia', u'founder', u'join', u'anti', u'log', u'camp'] [u'ax', u'staff', u'asian', u'news'] [u'communiti', u'rais', u'fund', u'miss', u'teen', u'famili'] [u'council', u'approv', u'shop', u'mall', u'renmark'] [u'council', u'flood', u'brothel', u'object'] [u'court', u'hear', u'chao', u'crossbow', u'attack'] [u'court', u'rule', u'favour', u'zimbabw', u'media', u'law'] [u'crush', u'kill', u'chines', u'festiv'] [u'damag', u'quak', u'rock', u'papua'] [u'davenport', u'set', u'dokic', u'date', u'tokyo'] [u'dead', u'link', u'bird', u'studi'] [u'death', u'toll', u'mount', u'moscow', u'subway', u'blast'] [u'defenc', u'chief', u'open', u'ballarat', u'memori'] [u'demand', u'egg', u'increas', u'wake', u'bird'] [u'detect', u'investig', u'major', u'accid', u'adelaid'] [u'dorothi', u'dixer', u'latham', u'agenda'] [u'doubt', u'cast', u'hous', u'site', u'sale'] [u'honour', u'western', u'queensland', u'employe'] [u'open', u'lead', u'melbourn'] [u'emerg', u'worker', u'free', u'crash', u'driver'] [u'english', u'club', u'warn', u'player', u'releas'] [u'everyth', u'peachey', u'shark'] [u'expert', u'air', u'croc', u'manag', u'concern'] [u'farm', u'group', u'unhappi', u'major', u'parti', u'offer'] [u'fear', u'popul', u'head', u'east'] [u'author', u'warn', u'high', u'danger'] [u'jail', u'resum', u'oper', u'work', u'ban', u'lift'] [u'theophan', u'leav', u'jail'] [u'releas', u'hospit', u'tram', u'accid'] [u'fruit', u'shed', u'investig', u'continu'] [u'fund', u'run', u'lockyer', u'catchment', u'centr'] [u'galleri', u'defend', u'right', u'display', u'polit', u'paint'] [u'ghan', u'return', u'adelaid'] [u'goondiwindi', u'look', u'increas', u'tourism'] [u'grain', u'rail', u'closur', u'recommend', u'report'] [u'grant', u'receiv', u'high', u'countri', u'rabbit', u'cull'] [u'great', u'britain', u'hold', u'hockeyroo', u'draw'] [u'green', u'trail', u'melbourn'] [u'group', u'loggerhead', u'green', u'forestri'] [u'hall', u'creek', u'prais', u'liquor', u'law'] [u'health', u'check', u'impact', u'region', u'rail', u'servic'] [u'heat', u'pressur', u'power', u'suppli'] [u'heavyweight', u'champ', u'lennox', u'lewi', u'retir'] [u'hewitt', u'draw', u'aussi', u'level', u'scud', u'towel'] [u'hib', u'end', u'ger', u'leagu', u'defenc'] [u'histor', u'trail', u'celebr', u'year'] [u'home', u'invas', u'trigger', u'polic', u'manhunt'] [u'howard', u'bush', u'tip', u'discuss', u'trade', u'deal'] [u'hubbl', u'reveal', u'imag', u'black', u'galaxi'] [u'hume', u'council', u'join', u'amalgam', u'protest'] [u'hume', u'council', u'join', u'amalgam', u'protest'] [u'indigen', u'group', u'highlight', u'complaint'] [u'indonesian', u'quak', u'toll', u'rise'] [u'infight', u'boost', u'master', u'preselect', u'chanc'] [u'investig', u'begin', u'train', u'derail'] [u'ivanisev', u'hand', u'milan', u'rotterdam', u'wildcard'] [u'jackson', u'grammi', u'list', u'breast', u'spread'] [u'japan', u'central', u'bank', u'see', u'slow', u'recoveri'] [u'japan', u'host', u'environment', u'meet'] [u'kakadu', u'cane', u'toad', u'invas'] [u'kashmir', u'attack', u'leav', u'dead'] [u'minut', u'campaign', u'qlds', u'southern', u'seat'] [u'laverton', u'resid', u'qualiti', u'drink', u'water'] [u'lazio', u'beat', u'milan', u'close', u'final'] [u'give', u'aussi', u'momentum', u'pont'] [u'lobster', u'council', u'chief', u'face', u'confid', u'motion'] [u'local', u'council', u'tell', u'bugger'] [u'locum', u'doctor', u'fire', u'visit', u'porn', u'sit'] [u'log', u'protest', u'cost', u'contractor'] [u'macquari', u'hospit', u'accept', u'rescu', u'packag'] [u'magazin', u'name', u'melbourn', u'world', u'citi'] [u'magistr', u'reserv', u'decis', u'doctor', u'fraud', u'case'] [u'malaysia', u'probe', u'alleg', u'libyan', u'nuclear', u'link'] [u'male', u'suicid', u'rate', u'outstrip', u'femal'] [u'drown', u'murray', u'river'] [u'face', u'child', u'charg', u'face', u'court'] [u'court', u'spear', u'incid'] [u'polic', u'patrol'] [u'sentenc', u'life', u'kill', u'daughter'] [u'share', u'home', u'dead', u'brother', u'month'] [u'marbl', u'bar', u'seal', u'road', u'open', u'year', u'wait'] [u'market', u'fund', u'need', u'invigor', u'kakadu', u'appeal'] [u'melbourn', u'student', u'union', u'forc', u'liquid'] [u'migrat', u'tribun', u'approv', u'zimbabwean', u'student'] [u'milan', u'look', u'cash', u'titl', u'rival', u'meet'] [u'mine', u'compani', u'join', u'forc', u'pilbara'] [u'mine', u'compani', u'pull', u'west', u'coast', u'clean'] [u'mine', u'school', u'propos', u'address', u'skill', u'shortag'] [u'minist', u'concern', u'powerlink', u'environment'] [u'motorist', u'ask', u'slow', u'rain', u'caus'] [u'applaud', u'tugun', u'bypass', u'rout'] [u'launch', u'petit', u'support', u'polic', u'commission'] [u'want', u'refuge', u'work', u'amnesti'] [u'museum', u'search', u'miss', u'sextant'] [u'music', u'industri', u'launch', u'action', u'download'] [u'chief', u'call', u'trade', u'scandal', u'fraud'] [u'bridg', u'yenda'] [u'injuri', u'blow', u'venus'] [u'soccer', u'boss', u'oneil', u'weigh', u'club', u'countri'] [u'monkey', u'busi', u'train', u'chimp'] [u'govt', u'reject', u'call', u'inquiri', u'welfar'] [u'minist', u'defend', u'sydney', u'super', u'council', u'merger'] [u'oppn', u'highlight', u'public', u'hous', u'woe'] [u'singapor', u'develop', u'joint', u'centr', u'darwin'] [u'top', u'accident', u'death', u'rate'] [u'enjoy', u'confront', u'free', u'nation'] [u'odd', u'beatti', u'favour', u'poll'] [u'olymp', u'triathlon', u'line', u'finalis'] [u'osullivan', u'hop', u'sick', u'symptom', u'go'] [u'palestinian', u'polic', u'chief', u'elud', u'assassin', u'bullet'] [u'parliament', u'protest', u'iran', u'end'] [u'pipelin', u'construct', u'head'] [u'tell', u'import', u'mine', u'explor'] [u'urg', u'tell', u'hand'] [u'polic', u'destroy', u'confisc', u'alcohol'] [u'polic', u'investig', u'deton', u'theft'] [u'polic', u'offic', u'name', u'inquiri'] [u'polic', u'reinstat', u'releas', u'royal'] [u'polish', u'kill', u'dive', u'accid'] [u'portland', u'lobbi', u'live', u'export', u'support'] [u'port', u'coal', u'load', u'plan', u'anger', u'oper'] [u'post', u'mortem', u'suspici', u'death'] [u'power', u'iraqi', u'cleric', u'surviv', u'assassin'] [u'pressur', u'mount', u'blair', u'iraq', u'claim'] [u'prosecutor', u'challeng', u'sept', u'acquitt'] [u'protest', u'pakistani', u'nuclear', u'scientist'] [u'public', u'urg', u'help', u'stop', u'iranian', u'deport'] [u'qanta', u'plane', u'return', u'servic', u'smoke'] [u'campaign', u'wind', u'labor', u'tip'] [u'elect', u'campaign', u'wind'] [u'elect', u'countdown', u'begin'] [u'rail', u'chief', u'highlight', u'lesson', u'leak'] [u'real', u'turn', u'heat', u'injuri', u'assail'] [u'refocus', u'kalli', u'make', u'merri'] [u'region', u'polic', u'hardlin', u'speed'] [u'research', u'fear', u'locust', u'plagu'] [u'rey', u'hope', u'wolv'] [u'rey', u'remain', u'upbeat', u'despit', u'unfortun', u'start'] [u'riverina', u'resid', u'warn', u'danger'] [u'riverina', u'protest', u'council', u'merger'] [u'rivkin', u'custodi', u'undergo', u'medic'] [u'rivkin', u'lawyer', u'drop', u'legal', u'challeng'] [u'rivkin', u'hop', u'avoid', u'jail'] [u'roddick', u'lead', u'austria'] [u'rugbi', u'oneil', u'tout', u'soccer', u'post'] [u'farmer', u'urg', u'latham', u'visit', u'region'] [u'govt', u'unmov', u'public', u'servant', u'offer'] [u'scud', u'experi', u'enqvist'] [u'seven', u'remain', u'hospit', u'crash'] [u'dead', u'moscow', u'subway', u'blast'] [u'sharon', u'face', u'polic', u'grill', u'briberi', u'claim'] [u'sheep', u'diseas', u'infect', u'flock'] [u'sheldon', u'mix', u'feel', u'leav', u'polit'] [u'south', u'africa', u'ngam', u'rule', u'tour', u'zealand'] [u'speed', u'blitz', u'net', u'motorist'] [u'student', u'return', u'hail', u'damag', u'high', u'school'] [u'sugar', u'region', u'sweet', u'beatti'] [u'sydney', u'council', u'shock', u'sack'] [u'sydney', u'rail', u'servic', u'track', u'test'] [u'record', u'half', u'year', u'result', u'plus'] [u'taiwan', u'report', u'outbreak', u'bird'] [u'tasmania', u'seek', u'team'] [u'vial', u'disappear', u'campus'] [u'teenag', u'plead', u'guilti', u'escap', u'detent'] [u'telstra', u'deni', u'claim', u'poor', u'mainten'] [u'chines', u'cockl', u'hunter', u'british', u'beach'] [u'test', u'umpir', u'venkat', u'retir'] [u'timor', u'court', u'jail', u'jakarta', u'militiaman'] [u'tour', u'challeng', u'pile', u'pressur', u'armstrong'] [u'trace', u'bird', u'pig'] [u'travel', u'busi', u'expert', u'head', u'north', u'coast'] [u'hospit', u'crash'] [u'union', u'attack', u'grow', u'phone', u'fault'] [u'union', u'critic', u'support', u'staff', u'work', u'issu'] [u'union', u'queri', u'singleton', u'expans'] [u'unit', u'fan', u'turn', u'tabl', u'magnier'] [u'consid', u'pay', u'place'] [u'product', u'growth', u'slow'] [u'vacant', u'hous', u'wait', u'list', u'increas', u'oppn'] [u'victorian', u'court', u'hear', u'slave', u'claim'] [u'vietnam', u'report', u'bird', u'death'] [u'wall', u'ralli', u'figur', u'announc'] [u'record', u'sheep', u'diseas', u'case'] [u'memori', u'open', u'ballarat'] [u'warrior', u'build', u'huge', u'lead', u'tiger', u'declar'] [u'warrior', u'build', u'lead', u'tiger', u'declar'] [u'warrior', u'inning', u'point'] [u'wnbl', u'final', u'seri'] [u'wnbl', u'semi', u'win', u'adelaid', u'dandenong'] [u'woman', u'face', u'slaveri', u'charg', u'appear', u'court'] [u'wood', u'farewel', u'polit', u'near', u'year'] [u'woodward', u'name', u'lion', u'coach', u'offici'] [u'world', u'bank', u'help', u'combat', u'pest', u'weed'] [u'world', u'heavyweight', u'champ', u'lewi', u'confirm', u'retir'] [u'young', u'mother', u'offer', u'lucrat', u'deal', u'return'] [u'youth', u'homeless', u'worsen', u'welfar', u'group'] [u'zaragoza', u'scrambl', u'late', u'draw', u'alav'] [u'worker', u'drown', u'coast'] [u'student', u'miss', u'offer'] [u'percent', u'briton', u'think', u'blair', u'poll'] [u'educ', u'famili', u'dept', u'chief', u'stand'] [u'afghanistan', u'forget', u'nato'] [u'afghan', u'tribal', u'leader', u'decid', u'warlord', u'fate'] [u'alic', u'claim', u'cheapest', u'groceri'] [u'aussi', u'basebal', u'track', u'athen'] [u'aussi', u'prim', u'seri', u'pont'] [u'australia', u'look', u'falter', u'philippoussi'] [u'australia', u'youngest', u'feder', u'magistr', u'appoint'] [u'australia', u'urg', u'crack', u'drug', u'compani'] [u'babi', u'recov', u'second', u'head', u'remov'] [u'beatti', u'claim', u'elect'] [u'beatti', u'claim', u'victori'] [u'beatti', u'hop', u'labor', u'success', u'contagi'] [u'beatti', u'look', u'retain', u'power'] [u'bell', u'shock', u'surfer', u'defeat'] [u'bird', u'death', u'toll', u'hit', u'infect', u'fear'] [u'bjorkman', u'stand', u'scud'] [u'drive', u'shoot'] [u'brigitt', u'accus', u'deni', u'attack', u'plan'] [u'bush', u'name', u'panel'] [u'cameroon', u'nigeria', u'renew', u'rivalri', u'african'] [u'cargo', u'ship', u'sink', u'miss'] [u'carrol', u'doubt', u'green', u'senat', u'seat'] [u'cave', u'paint', u'shed', u'light', u'south', u'africa'] [u'child', u'kill', u'isra', u'strike', u'gaza'] [u'china', u'confirm', u'bird', u'outbreak'] [u'clerk', u'sue', u'jackson', u'breast', u'stunt'] [u'court', u'endors', u'zimbabw', u'media', u'law'] [u'cunningham', u'thrill', u'retain', u'gladston'] [u'level', u'head', u'doubl'] [u'davenport', u'destroy', u'dokic', u'rubin', u'limp'] [u'death', u'highlight', u'crisi', u'accommod', u'problem', u'atsic'] [u'democrat', u'disappoint', u'keppel', u'show'] [u'diver', u'plane', u'crash'] [u'look', u'consolid', u'round'] [u'open', u'shoot', u'lead'] [u'estonia', u'martin', u'stay', u'sweden'] [u'feder', u'boost', u'swiss', u'russian', u'safin', u'down'] [u'blood', u'australia'] [u'remand', u'patagonian', u'toothfish', u'charg'] [u'flynn', u'refus', u'admit', u'defeat', u'lockyer'] [u'forestri', u'industri', u'tell', u'clean'] [u'minist', u'rise', u'lose', u'currumbin'] [u'polic', u'chief', u'speak', u'gang', u'report'] [u'shire', u'employe', u'guilti', u'corrupt'] [u'free', u'trade', u'deal', u'balanc'] [u'friendship', u'sustain', u'swimmer', u'histor'] [u'gephardt', u'back', u'kerri', u'race'] [u'german', u'chancellor', u'quit', u'parti', u'post'] [u'glass', u'pane', u'hit', u'galleri', u'worker'] [u'good', u'news', u'hawthorn', u'knee', u'injuri'] [u'gunmen', u'haitian', u'citi'] [u'hanoi', u'cull', u'eas', u'bird', u'crisi'] [u'hensbi', u'surg', u'content', u'california'] [u'hid', u'keep', u'option', u'open', u'growth', u'fell'] [u'hodg', u'stay', u'rooster', u'manag'] [u'hodg', u'return', u'rooster', u'manag'] [u'india', u'prepar', u'earli', u'elect'] [u'indonesia', u'suffer', u'major', u'earthquak'] [u'interview', u'weapon', u'expert', u'kelli', u'broadcast'] [u'iran', u'council', u'clear', u'candid'] [u'iranian', u'presid', u'protest', u'elect', u'ban'] [u'jewish', u'settler', u'protest', u'reloc', u'plan'] [u'katter', u'stir', u'emot', u'sugar', u'seat'] [u'kiwi', u'smash', u'kenyan', u'seven'] [u'kiwi', u'thump', u'fiji', u'seven', u'tabl', u'down'] [u'labor', u'reduc', u'major'] [u'labor', u'look', u'lose', u'seat'] [u'latham', u'promis', u'continu', u'public', u'forum'] [u'latham', u'reject', u'issu'] [u'leed', u'give', u'stay', u'execut'] [u'long', u'make', u'nation', u'histori', u'tableland'] [u'lewi', u'credenti', u'confirm', u'defeat', u'tyson'] [u'lewi', u'face', u'fight', u'court'] [u'liber', u'leader', u'confid', u'better', u'show'] [u'major', u'parti', u'disput', u'feder', u'impact', u'poll'] [u'mardi', u'gras', u'kick', u'sydney'] [u'charg', u'restaur', u'firebomb', u'attack'] [u'hold', u'custodi', u'cannabi', u'haul'] [u'missil', u'strike', u'injur', u'islam', u'jihad', u'member'] [u'molloy', u'retain', u'qlds', u'margin', u'seat'] [u'moment', u'lib', u'claim', u'surfer', u'paradis'] [u'poki', u'welcom', u'bank', u'donat', u'polici'] [u'consid', u'forc', u'merger'] [u'drought', u'affect', u'area', u'shrink'] [u'polic', u'seiz', u'massiv', u'cannabi', u'haul'] [u'parti', u'decid', u'feder', u'elect'] [u'taxi', u'driver', u'welcom', u'militari', u'stay'] [u'nucifora', u'upbeat', u'despit', u'brumbi', u'trial', u'loss'] [u'pair', u'rescu', u'boat', u'overturn'] [u'pakistan', u'promot', u'test', u'panel', u'reshuffl'] [u'pani', u'releas', u'hospit'] [u'pentagon', u'announc', u'assault', u'investig'] [u'philosph', u'ranieri', u'prepar', u'chelsea', u'chop'] [u'pizzonia', u'quickest', u'test'] [u'plane', u'crash', u'lake'] [u'polic', u'fear', u'kill', u'plane', u'crash'] [u'polic', u'identifi', u'plane', u'crash', u'victim'] [u'poll', u'show', u'labor', u'lose', u'seat'] [u'putin', u'blame', u'chechen', u'bomb'] [u'green', u'grow', u'voter', u'support'] [u'queensland', u'coalit', u'remain', u'strong', u'quinn'] [u'queensland', u'poll'] [u'queensland', u'head', u'poll'] [u'raikkonen', u'champion', u'hakkinen'] [u'ranieri', u'admit', u'line'] [u'reynold', u'surviv', u'townsvill', u'swing', u'lib'] [u'rivkin', u'stay', u'long', u'jail'] [u'roddick', u'smash', u'serv', u'record', u'lead'] [u'rowel', u'boost', u'margin', u'hinchinbrook'] [u'rudd', u'slam', u'howard', u'weapon', u'intellig'] [u'russia', u'underground', u'blast', u'probe', u'continu'] [u'scott', u'bet', u'good', u'feel', u'charter', u'tower'] [u'serena', u'mauresmo', u'pari', u'indoor'] [u'seven', u'protest', u'arrest', u'outsid', u'nato', u'meet'] [u'shabbir', u'head', u'australia', u'bowl', u'action'] [u'shiit', u'leader', u'deni', u'assassin'] [u'shine', u'head', u'second', u'term'] [u'skydiv', u'fall', u'format', u'world', u'record'] [u'slow', u'start', u'poll'] [u'solid', u'hobb', u'warrego'] [u'spirit', u'pierc', u'mar', u'rock'] [u'springborg', u'conced', u'defeat'] [u'springborg', u'hail', u'critic', u'mass', u'despit', u'defeat'] [u'africa', u'mark', u'year', u'apartheid'] [u'surgeri', u'babi', u'rare', u'defect'] [u'sweden', u'grab', u'davi', u'lead'] [u'swede', u'edg', u'thriller'] [u'sydney', u'resid', u'warn', u'water', u'usag'] [u'question', u'perth', u'restaur', u'attack'] [u'tiger', u'hang', u'beller', u'draw'] [u'tiger', u'outright'] [u'time', u'run', u'free', u'trade', u'talk'] [u'total'] [u'tugun', u'bypass', u'play', u'role', u'stuckey', u'oust', u'rise'] [u'turnbul', u'claim', u'sartor', u'threat'] [u'kill', u'flip'] [u'polic', u'investig', u'morecamb', u'drown'] [u'dismiss', u'bird', u'pig', u'report'] [u'dollar', u'tumbl', u'soft', u'job', u'data'] [u'sailor', u'face', u'assault', u'claim'] [u'vitali', u'klitschko', u'sadden', u'lewi', u'retir'] [u'vote', u'queensland'] [u'farmer', u'voic', u'concern', u'drought', u'polici'] [u'warrego', u'incumb', u'confid', u'increas', u'vote'] [u'youngest', u'player', u'select', u'curti'] [u'wilkinson', u'rule', u'nation'] [u'woman', u'chastiti', u'belt', u'set', u'airport', u'alarm'] [u'zimbabwean', u'student', u'fear', u'return'] [u'cop', u'brazil', u'finger', u'fine'] [u'investig', u'public', u'hous', u'issu'] [u'afghanistan', u'host', u'drug', u'confer'] [u'aftershock', u'rock', u'indonesian', u'island', u'death', u'toll'] [u'lose', u'seat'] [u'anzac', u'instal', u'lake', u'burley', u'griffin'] [u'asian', u'nation', u'agre', u'free', u'trade', u'deal'] [u'asio', u'catch', u'nap', u'brigitt', u'warn', u'labor'] [u'asio', u'brigitt', u'request', u'report'] [u'aussi', u'basebal', u'book', u'ticket', u'athen'] [u'aussi', u'lancast', u'claim', u'langkawi', u'stage'] [u'babi', u'girl', u'die', u'head', u'surgeri'] [u'bangladesh', u'throw', u'asian', u'doubt'] [u'beatti', u'coast', u'term'] [u'beatti', u'see', u'latham', u'boost', u'term'] [u'busi', u'undermin', u'women', u'worker', u'report'] [u'johnson', u'state', u'biggest', u'elector'] [u'blatter', u'see', u'brazil', u'stag', u'world'] [u'boldon', u'focus', u'athen'] [u'brack', u'reveal', u'hook', u'memori', u'trophi', u'detail'] [u'brazilian', u'real', u'spain'] [u'britain', u'labour', u'parti', u'sever', u'histor', u'union', u'link'] [u'bronz', u'super', u'mario', u'return'] [u'builder', u'accredit', u'see', u'posit', u'sign'] [u'burnett', u'chang', u'hand', u'stay'] [u'bushrang', u'start', u'chase', u'miller', u'lift', u'redback'] [u'caltex', u'apologis', u'abras', u'materi', u'releas'] [u'canberra', u'airport', u'extens', u'push', u'ahead'] [u'cardozo', u'keep', u'olymp', u'touch'] [u'carr', u'confid', u'minim', u'damag', u'council', u'stoush'] [u'announc', u'total', u'ban'] [u'davenport', u'storm', u'fourth', u'pacif', u'titl'] [u'diver', u'sonar', u'crash', u'victim', u'search'] [u'dump', u'decid', u'run'] [u'elli', u'hand', u'netbal', u'captainci'] [u'surviv', u'scott', u'challeng', u'claim', u'heineken'] [u'surviv', u'scott', u'challeng', u'heineken'] [u'emvagina', u'monologuesem', u'ban', u'china'] [u'fiji', u'singh', u'share', u'lead', u'round'] [u'treat', u'nightclub', u'drug', u'overdos'] [u'fear', u'forc', u'kill', u'chicken'] [u'call', u'exchang', u'rate', u'stabil'] [u'galleri', u'await', u'glass', u'accid', u'report'] [u'suppli', u'shortag'] [u'germani', u'reluct', u'agre', u'nato', u'role', u'iraq'] [u'ghan', u'clip', u'railway', u'cross'] [u'glori', u'open', u'buffer'] [u'grind', u'staff', u'disput', u'delay', u'qanta', u'flight'] [u'haitian', u'polic', u'rebel', u'citi'] [u'help', u'student', u'dont', u'hold', u'educ'] [u'hoolihan', u'win', u'jewel', u'crown'] [u'illeg', u'immigr', u'face', u'deport', u'sydney'] [u'impress', u'away', u'win', u'lecc', u'bologna'] [u'india', u'crush', u'aussi', u'rampag'] [u'india', u'crush', u'aussi', u'rampag'] [u'indonesian', u'troop', u'kill', u'rebel', u'aceh'] [u'iraqi', u'claim', u'dramatis', u'blix'] [u'islam', u'jihad', u'vow', u'gaza', u'strike', u'reveng'] [u'japanes', u'soldier', u'arriv', u'iraq'] [u'juvenil', u'detaine', u'treat'] [u'keppel', u'seat', u'chang', u'poll'] [u'kerri', u'take', u'washington', u'michigan'] [u'environment', u'test', u'global', u'communiti'] [u'latham', u'consid', u'chang', u'benefit'] [u'latham', u'refus', u'specul', u'tax'] [u'leed', u'rescu', u'talk', u'ugandan', u'tycoon', u'report'] [u'liber', u'bass', u'candid'] [u'loeb', u'good', u'sweden'] [u'mackay', u'seat', u'draw', u'largest', u'swing'] [u'major', u'aftershock', u'rattl', u'indonesian', u'town'] [u'mar', u'rover', u'drill', u'rock'] [u'return', u'western'] [u'nat', u'strong', u'count'] [u'evid', u'human', u'bird', u'strain'] [u'norwich', u'open', u'point', u'lead', u'forest', u'sack', u'manag'] [u'tighten', u'secur', u'law'] [u'pae', u'fightback', u'secur', u'india', u'victori'] [u'palestinian', u'milit', u'shoot', u'dead', u'isra', u'gaza'] [u'pentagon', u'chang', u'rule', u'guantanamo', u'lawyer'] [u'petrov', u'inspir', u'celtic', u'heart'] [u'plane', u'ditch', u'north', u'coast'] [u'polic', u'arrest', u'drug', u'overdos'] [u'polic', u'expect', u'difficult', u'plane', u'crash', u'salvag'] [u'polic', u'remov', u'satir', u'howard', u'statu'] [u'polic', u'search', u'miss', u'suspect', u'drug', u'dealer'] [u'polic', u'target', u'speed', u'truck'] [u'redback', u'bat', u'line', u'fail'] [u'red', u'huxley', u'break', u'trial', u'loss'] [u'rivkin', u'releas', u'sydney', u'jail'] [u'robber', u'stay', u'away', u'jigsaw', u'puzzl', u'hous'] [u'rise', u'govt', u'casualti', u'gold', u'coast'] [u'rucker', u'croc', u'bite'] [u'russian', u'elect', u'candid', u'go', u'miss'] [u'saudi', u'contract', u'diseas'] [u'scud', u'shatter', u'aussi', u'crash', u'davi'] [u'secreci', u'surround', u'rusedski', u'drug', u'hear'] [u'shiit', u'mass', u'grave', u'investig', u'iraq'] [u'spain', u'davi', u'troubl'] [u'lankan', u'parliament', u'dissolv'] [u'status', u'maintain', u'north', u'seat'] [u'symond', u'hayden', u'power', u'record', u'total'] [u'real', u'estat', u'agent', u'charg', u'ban', u'fee'] [u'time', u'royal', u'melbourn', u'teeth'] [u'trade', u'talk', u'overtim'] [u'tunisia', u'seneg', u'lower', u'tone'] [u'turkish', u'surviv', u'day', u'collaps'] [u'sunshin', u'coast', u'seat', u'wire'] [u'polic', u'launch', u'raid', u'drown'] [u'garden', u'send', u'messag', u'montgomeri'] [u'instal', u'computeris', u'pattern', u'maker'] [u'union', u'slam', u'insult', u'offer'] [u'unit', u'receiv', u'ruud', u'awaken'] [u'team', u'arriv', u'iraq', u'annan'] [u'team', u'land', u'iraq'] [u'democrat', u'state'] [u'sailor', u'charg', u'rape', u'darwin'] [u'polic', u'fear', u'miss', u'girl'] [u'vieira', u'stay', u'arsenal'] [u'expedit', u'search'] [u'waqar', u'latif', u'leav', u'pakistan', u'train', u'squad'] [u'acoss', u'want', u'babi', u'bonus', u'scrap'] [u'busi', u'educ', u'manslaught'] [u'doctor', u'boost', u'bega', u'hospit'] [u'afghanistan', u'plea', u'opium'] [u'boss', u'urg', u'retain', u'local', u'sport', u'content'] [u'agforc', u'promis', u'landhold', u'backlash', u'tree'] [u'alert', u'sound', u'small', u'plane', u'fli', u'indian'] [u'alic', u'council', u'consid', u'public', u'toilet', u'need'] [u'perform', u'strong', u'gold', u'coast'] [u'wont', u'conced', u'charter', u'tower', u'burdekin'] [u'alston', u'senat', u'stint', u'end'] [u'anonym', u'letter', u'help', u'reveal', u'fraud', u'court'] [u'anti', u'aristid', u'revolt', u'spread', u'haiti'] [u'aquat', u'centr', u'revamp', u'make', u'splash'] [u'aussi', u'hold', u'game', u'edg'] [u'aussi', u'hold', u'edg', u'india'] [u'australian', u'tourist', u'stab', u'cairo'] [u'australia', u'strike', u'free', u'trade', u'deal'] [u'ax', u'england', u'squad'] [u'bali', u'bomber', u'ghoni', u'jail', u'life'] [u'band', u'remot', u'head', u'major', u'festiv'] [u'beatti', u'blame', u'canberra', u'lose', u'sugar', u'seat'] [u'beatti', u'look', u'cabinet'] [u'bell', u'exit', u'polit', u'weekend', u'loss'] [u'bermagui', u'look', u'rural', u'transact', u'centr'] [u'bigger', u'fleet', u'expect', u'sydney', u'hobart', u'rule'] [u'bird', u'mortal', u'rate', u'doubl', u'doctor'] [u'blair', u'offer', u'meet', u'weapon', u'expert', u'widow', u'report'] [u'blix', u'hit', u'intellig'] [u'bomb', u'kill', u'soldier', u'iraq'] [u'breaker', u'skipper', u'cameron', u'cop', u'strike', u'fine'] [u'brigitt', u'reveal', u'bomb', u'plan'] [u'bush', u'church', u'close', u'year'] [u'bushrang', u'chase', u'inning', u'point'] [u'busi', u'chamber', u'look', u'free', u'trade', u'deal', u'long'] [u'foster', u'parent', u'plan'] [u'cannonbal', u'strike', u'home', u'real'] [u'carr', u'rail', u'delay'] [u'china', u'confirm', u'bird', u'outbreak'] [u'chines', u'acrobat', u'defect', u'canada'] [u'claimant', u'bennett', u'estat', u'receiv', u'setback'] [u'cleari', u'rock', u'bushrang'] [u'condit', u'improv', u'drought'] [u'confer', u'probe', u'way', u'safeguard', u'biodivers'] [u'congo', u'presid', u'confid', u'peac'] [u'costello', u'watch', u'latham', u'spend', u'promis'] [u'council', u'merger', u'protest', u'seek', u'differ', u'region'] [u'crash', u'end', u'cipo', u'sprint', u'hop'] [u'croc', u'look', u'consolid', u'win', u'way'] [u'cunningham', u'focus', u'famili', u'health'] [u'darwin', u'weather', u'tip', u'continu'] [u'shooter', u'diamond'] [u'diamond', u'throw', u'olymp', u'lifelin'] [u'ding', u'dong', u'contest', u'histor', u'bell'] [u'disput', u'see', u'forestri', u'worker', u'tell', u'lift', u'ban'] [u'diver', u'begin', u'plane', u'crash', u'recoveri'] [u'doctor', u'continu', u'receiv', u'medicar', u'rebat'] [u'driver', u'die', u'tri', u'catch', u'hors'] [u'drought', u'wan', u'grip', u'near', u'half'] [u'condit', u'seek', u'fight', u'locust'] [u'eftpo', u'spend', u'figur', u'moder', u'growth'] [u'elliott', u'power', u'vic', u'home', u'final'] [u'euthanasia', u'advoc', u'call', u'latham', u'continu'] [u'everton', u'investig', u'alleg', u'abus', u'unit'] [u'explos', u'injur', u'ukrain'] [u'farmer', u'group', u'happi', u'free', u'trade', u'deal'] [u'farm', u'group', u'oppos', u'push', u'minimum', u'wage', u'boost'] [u'feder', u'committe', u'scrutinis', u'age', u'care'] [u'fewer', u'life', u'land'] [u'film', u'industri', u'await', u'fine', u'print', u'trade', u'deal'] [u'author', u'upset', u'ignor', u'warn'] [u'firefight', u'throw', u'resourc', u'blaze'] [u'firefight', u'contain', u'gippsland', u'blaze'] [u'defenc', u'chief', u'appeal', u'sedit', u'charg'] [u'forum', u'consid', u'school', u'leav'] [u'foster', u'chief', u'call', u'shout'] [u'await', u'sentenc', u'kalgoorli', u'gang', u'rape'] [u'charg', u'cannabi', u'haul'] [u'free', u'trade', u'deal', u'see', u'boost', u'region'] [u'freight', u'industri', u'rep', u'gather', u'darwin', u'confer'] [u'galleri', u'order', u'probe', u'shatter', u'glass', u'incid'] [u'govt', u'fund', u'extra', u'age', u'care', u'place', u'tasmania'] [u'govt', u'give', u'age', u'care', u'boost'] [u'grammi', u'jackson', u'shadow'] [u'grapegrow', u'angri', u'plant', u'incent'] [u'grapegrow', u'await', u'better', u'price', u'offer'] [u'greater', u'murray', u'health', u'servic', u'face', u'financi', u'woe'] [u'group', u'call', u'independ', u'inquiri', u'unsw'] [u'haddin', u'groom', u'gilli', u'hohn'] [u'haddin', u'kasper', u'lanka'] [u'haddin', u'kasprowicz', u'lanka'] [u'harbi', u'william', u'diamond'] [u'hart', u'forest', u'ditch', u'manag'] [u'hasselbaink', u'keep', u'chelsea', u'titl', u'track'] [u'hockeyroo', u'beat', u'brit', u'bronz'] [u'hodg', u'say', u'sorri', u'disappear'] [u'hospit', u'worker', u'consid', u'industri', u'unrest'] [u'hundr', u'goat', u'highway', u'truck', u'crash'] [u'india', u'launch', u'sea'] [u'indian', u'board', u'secur', u'team', u'head', u'pakistan'] [u'inquest', u'probe', u'case', u'miss', u'indigen'] [u'isra', u'court', u'hear', u'secur', u'barrier', u'challeng'] [u'israel', u'chang', u'barrier', u'path'] [u'israel', u'shorten', u'west', u'bank', u'barrier', u'report'] [u'itali', u'ban', u'car'] [u'jackson', u'oscar', u'path', u'award'] [u'jail', u'medic', u'decid', u'rivkin', u'stay'] [u'johnni', u'cash', u'wife', u'posthum', u'grammi'] [u'johnson', u'credit', u'seat', u'past', u'perform'] [u'kerri', u'keep', u'heat', u'bush', u'main'] [u'kewel', u'pledg', u'allegi', u'socceroo'] [u'kiwi', u'rugbi', u'exodus', u'continu'] [u'knuth', u'upbeat', u'charter', u'tower', u'chanc'] [u'kyli', u'score', u'grammi'] [u'labor', u'block', u'trade', u'deal'] [u'labor', u'blame', u'ambul', u'levi', u'support'] [u'lib', u'endors', u'southern', u'candid'] [u'lightn', u'spark', u'fire', u'victoria', u'bushland'] [u'local', u'govt', u'meet', u'daylesford'] [u'lomu', u'need', u'transplant', u'avoid', u'wheelchair'] [u'mackay', u'leagu', u'coach', u'squad'] [u'major', u'stock', u'lift'] [u'chang', u'plea', u'guilti', u'murder', u'trial'] [u'man', u'attack', u'elder', u'woman', u'attract', u'jail', u'term'] [u'seek', u'compens', u'murder', u'charg', u'drop'] [u'market', u'await', u'reserv', u'statement'] [u'mcgradi', u'romp', u'home'] [u'miss', u'sampl', u'close', u'campus'] [u'sydney', u'train', u'cancel', u'ahead'] [u'morocco', u'beat', u'algeria', u'amid', u'crowd', u'chao'] [u'mous', u'onaut', u'mar', u'mission'] [u'murrurundi', u'pair', u'case', u'council', u'merger'] [u'nadal', u'cap', u'spain', u'comeback', u'czech'] [u'nasa', u'engin', u'disput', u'decis', u'hubbl'] [u'nation', u'galleri', u'director', u'step'] [u'nat', u'lose', u'central', u'seat'] [u'nat', u'messeng', u'win', u'bundaberg'] [u'nat', u'shore', u'support', u'warrego'] [u'newspap', u'recoveri'] [u'back', u'free', u'trade', u'deal'] [u'nigeria', u'dethron', u'cameroon'] [u'govt', u'urg', u'creat', u'man', u'shelf', u'marin', u'park'] [u'nat', u'discuss', u'parti', u'elect', u'show'] [u'nation', u'rosa', u'long', u'boost', u'support', u'base'] [u'oppn', u'rais', u'free', u'trade', u'broadcast', u'concern'] [u'opposit', u'plan', u'limit', u'judg', u'super', u'benefit'] [u'pathan', u'rap', u'martyn', u'send'] [u'perth', u'school', u'defend', u'cage', u'child'] [u'plan', u'afoot', u'boost', u'cultur', u'tourism', u'experi'] [u'defend', u'imperfect', u'trade', u'deal'] [u'sell', u'free', u'trade', u'deal'] [u'polic', u'appeal', u'help', u'unsolv', u'murder', u'case'] [u'polic', u'happi', u'alcohol', u'restrict', u'impact'] [u'policeman', u'tell', u'drug', u'probe', u'mat'] [u'polic', u'probe', u'continu', u'drug', u'seiz'] [u'polic', u'releas', u'name', u'plane', u'crash', u'victim'] [u'polic', u'sieg', u'griffith', u'violenc'] [u'polic', u'drown', u'victim'] [u'princ', u'charl', u'visit', u'troop', u'basra'] [u'probe', u'begin', u'derwent', u'river', u'accid'] [u'protea', u'look', u'forward', u'kiwi', u'pitch'] [u'public', u'health', u'complaint', u'handl'] [u'public', u'urg', u'avoid', u'algal', u'bloom'] [u'boat', u'make', u'wave', u'water', u'race'] [u'serial', u'killer', u'appeal', u'murder', u'convict'] [u'quri', u'plan', u'sharon', u'meet', u'month'] [u'rail', u'group', u'probe', u'ghan', u'incid'] [u'ranger', u'face', u'celtic', u'kilmarnock'] [u'hint', u'rat', u'rise'] [u'record', u'opium', u'output', u'forecast', u'afghanistan'] [u'remot', u'communiti', u'better', u'water'] [u'rock', u'lobster', u'number', u'review'] [u'roddick', u'agassi', u'head', u'jose', u'field'] [u'roma', u'rampag', u'leav', u'juve', u'trail', u'milan'] [u'russia', u'shock', u'davi', u'exit', u'franc', u'spain'] [u'sack', u'mayor', u'meet', u'minist'] [u'oppn', u'highlight', u'aquacultur', u'regul'] [u'sartor', u'refus', u'retract', u'brogden', u'slur'] [u'secur', u'guard', u'fin', u'imperson', u'polic'] [u'shack', u'owner', u'convers', u'scheme', u'cost'] [u'sharon', u'treat', u'bladder', u'stone'] [u'shop', u'centr', u'develop', u'continu'] [u'singh', u'coast', u'pebbl', u'beach', u'victori'] [u'edward', u'braddon', u'memori', u'offici', u'open'] [u'site', u'select', u'process', u'continu', u'toxic', u'dump'] [u'vouch', u'rivkin', u'poor', u'health'] [u'south', u'aust', u'farmer', u'welcom', u'free', u'trade', u'deal'] [u'spill', u'clean', u'continu', u'milford', u'sound'] [u'stage', u'warn', u'comeback'] [u'star', u'chines', u'lifter', u'lose', u'medal', u'dope', u'result'] [u'strong', u'entri', u'ballarat', u'gift'] [u'sugar', u'blast', u'free', u'trade', u'deal'] [u'sydney', u'peak', u'hour', u'train', u'cancel'] [u'sydney', u'train', u'delay', u'continu'] [u'sydney', u'warn', u'threat'] [u'farm', u'group', u'welcom', u'small', u'gain', u'trade'] [u'tasmanian', u'await', u'sentenc', u'sydney', u'rape', u'murder'] [u'telstra', u'deni', u'senat', u'broadband', u'claim'] [u'kill', u'baghdad', u'bomb'] [u'tight', u'secur', u'keep', u'hillari', u'qeii'] [u'trade', u'agreement', u'good', u'deal', u'anderson'] [u'tribut', u'flow', u'promis', u'launceston', u'cyclist'] [u'turkish', u'rescu', u'rubbl'] [u'turkish', u'woman', u'rescu', u'week', u'build'] [u'horror', u'road', u'crash'] [u'sunshin', u'coast', u'seat', u'hang', u'balanc'] [u'week', u'allot', u'murder', u'trial'] [u'unenvi', u'drink', u'drive', u'honour', u'tweed', u'byron'] [u'union', u'map', u'geospati', u'centr', u'site'] [u'plan', u'boost', u'tropic', u'scienc', u'research'] [u'team', u'meet', u'iraq', u'council'] [u'sailor', u'leav', u'darwin'] [u'dairi', u'industri', u'await', u'free', u'trade', u'detail'] [u'governor', u'term', u'extend', u'year'] [u'face', u'adelaid', u'court', u'drug', u'charg'] [u'vic', u'bat', u'warn', u'comeback', u'match'] [u'victoria', u'tighten', u'secur', u'industri', u'regul'] [u'vietnam', u'add', u'bird', u'toll'] [u'farmer', u'offer', u'mix', u'reaction', u'trade', u'deal'] [u'wife', u'killer', u'appeal', u'convict'] [u'worker', u'club', u'consid', u'amidst', u'uncertain', u'futur'] [u'zoellick', u'say', u'congress', u'pass', u'trade', u'pact'] [u'govt', u'back', u'power', u'decid', u'rehab'] [u'act', u'atsic', u'boss', u'local', u'govern'] [u'allow', u'adopt'] [u'christma', u'sale', u'help', u'bolster', u'profit'] [u'safeti', u'investig', u'probe', u'bribi', u'island', u'crash'] [u'alic', u'spring', u'footbal', u'club', u'futur', u'doubt'] [u'ord', u'inch', u'quiet'] [u'eye', u'sugar', u'seat'] [u'qaeda', u'plot', u'iraq', u'civil'] [u'amalgam', u'threat', u'disrupt', u'council', u'elect'] [u'asian', u'bird', u'offer', u'trade', u'boost'] [u'asian', u'prioriti', u'wrong', u'bird'] [u'asylum', u'seeker', u'face', u'expuls', u'netherland'] [u'dead', u'haiti', u'rebellion'] [u'aussi', u'sullivan', u'claim', u'langkawi', u'fourth', u'stage'] [u'australia', u'reap', u'golden', u'wheat', u'harvest'] [u'backbench', u'fear', u'sugar', u'backlash'] [u'batti', u'tell', u'leed', u'career'] [u'beef', u'processor', u'express', u'disappoint'] [u'billiton', u'fin', u'crane', u'driver', u'death'] [u'bichel', u'court', u'worcestershir'] [u'easi', u'miss', u'fourth'] [u'bird', u'boat', u'conflict', u'lead'] [u'blair', u'plan', u'landmark', u'visit', u'libya'] [u'blair', u'prepar', u'meet', u'libyan', u'foreign', u'minist'] [u'blaze', u'rip', u'rubicon', u'state', u'forest'] [u'blood', u'parasit', u'caus', u'mysteri', u'anim', u'death'] [u'bodi', u'recov', u'lake', u'eildon'] [u'bomb', u'hoaxer', u'send', u'jail'] [u'boral', u'profit', u'hous', u'market', u'tip', u'soften'] [u'bosnian', u'serb', u'probe', u'crime', u'link'] [u'brazil', u'prepar', u'carniv', u'condom', u'campaign'] [u'burk', u'rule', u'waratah', u'trial', u'match'] [u'busi', u'survey', u'highlight', u'manag', u'retir', u'work'] [u'tasmania', u'crime', u'scheme'] [u'campaign', u'highlight', u'internet', u'scam'] [u'bomb', u'kill', u'near', u'baghdad'] [u'chariti', u'cash', u'reform'] [u'chopper', u'crash', u'put', u'hospit'] [u'cityrail', u'examin', u'legal', u'option', u'overtim'] [u'council', u'dismiss', u'possibl', u'embattl', u'shire'] [u'countri', u'women', u'good', u'onlin'] [u'court', u'decid', u'request', u'suspend', u'atsic'] [u'real', u'target', u'place', u'final', u'loom'] [u'cycl', u'boss', u'shadow', u'squad'] [u'davi', u'relish', u'challeng', u'men', u'event'] [u'davi', u'snap', u'shark', u'critic'] [u'democrat', u'senat', u'fight'] [u'demon', u'sack', u'elli'] [u'depart', u'deni', u'council', u'turmoil'] [u'diana', u'ross', u'jail', u'time', u'drink', u'drive'] [u'disast', u'storytel', u'help', u'risk', u'manag', u'studi'] [u'drought', u'relief', u'chang', u'expect'] [u'drown', u'victim', u'releas'] [u'election', u'begin', u'greec'] [u'endocrinologist', u'leav', u'promot'] [u'exec', u'expect', u'strong', u'month'] [u'fatal', u'increas', u'natur', u'resourc', u'sector'] [u'dead', u'bomb', u'target', u'iraqi', u'polic'] [u'figur', u'agribusi', u'improv', u'drought'] [u'threaten', u'roseworthi', u'colleg'] [u'fishermen', u'kingfish', u'escap'] [u'food', u'korea', u'dri'] [u'forest', u'appoint', u'kinnear'] [u'fourth', u'person', u'charg', u'perth', u'firebomb'] [u'tip', u'bring', u'modest', u'gain', u'horticultur'] [u'gambil', u'oust', u'ferreira', u'jose'] [u'ganguli', u'want', u'safeti', u'assur', u'pakistan', u'tour'] [u'pipelin', u'owner', u'wash', u'hand', u'sale', u'woe'] [u'global', u'warm', u'threaten', u'lobster', u'farm', u'research'] [u'govern', u'urg', u'indigen', u'problem'] [u'govt', u'reject', u'claim', u'withhold', u'detail'] [u'grafton', u'compani', u'fin', u'environment', u'breach'] [u'grayson', u'start', u'half', u'england'] [u'greec', u'test', u'olymp', u'secur'] [u'grower', u'accept', u'increas', u'grape', u'price'] [u'haiti', u'rebellion', u'intensifi', u'polic'] [u'kill', u'video', u'star'] [u'health', u'servic', u'defend', u'cool', u'purchas'] [u'heart', u'play', u'rugbi', u'murrayfield'] [u'high', u'court', u'examin', u'girl', u'case', u'citizenship'] [u'high', u'court', u'hear', u'case', u'babi', u'citizenship'] [u'high', u'temperatur', u'threaten', u'clare', u'valley', u'vintag'] [u'hobart', u'convent', u'consid', u'life', u'mar'] [u'increas', u'water', u'alloc', u'england'] [u'india', u'replac', u'south', u'africa', u'cricket', u'choker'] [u'iranian', u'plane', u'crash'] [u'iraq', u'blast', u'kill', u'soldier'] [u'irish', u'govt', u'seek', u'respons', u'loot', u'nazi', u'claim'] [u'isra', u'barrier', u'hear', u'underway'] [u'isra', u'court', u'mull', u'barrier', u'rule'] [u'italian', u'seed', u'work', u'hard', u'pari'] [u'kalgoorli', u'hospit', u'avert', u'industri', u'action'] [u'kazaa', u'owner', u'attack', u'piraci', u'case'] [u'kerri', u'aim', u'southern', u'knockout'] [u'labor', u'gear', u'preselect', u'fight'] [u'labor', u'label', u'anti', u'american', u'trade'] [u'latham', u'give', u'poll', u'cautious', u'welcom'] [u'latham', u'super', u'scheme', u'cheap', u'popul'] [u'latham', u'unveil', u'super', u'plan'] [u'group', u'examin', u'secreci', u'issu', u'case'] [u'leak', u'memo', u'claim', u'health', u'servic', u'woe'] [u'lomu', u'woo'] [u'die', u'centuri', u'mishap'] [u'face', u'committ', u'hear', u'attempt', u'murder'] [u'manhunt', u'sydney', u'home', u'shoot'] [u'jail', u'treasuri', u'theft'] [u'mcgrath', u'return', u'delay'] [u'medic', u'insur', u'resolv'] [u'charg', u'haul'] [u'injur', u'bribi', u'chopper', u'crash'] [u'merson', u'leav', u'battl', u'addict'] [u'milan', u'goalkeep', u'dida', u'confid', u'comeback'] [u'indigen', u'protest'] [u'minist', u'defend', u'famili', u'servic', u'action'] [u'aftershock', u'quak', u'indonesian', u'district'] [u'delay', u'sydney', u'train'] [u'knee', u'surgeri', u'kiwi', u'astl'] [u'sydney', u'train', u'cancel'] [u'moscow', u'mourn', u'train', u'blast', u'victim'] [u'bed', u'eas', u'mental', u'health', u'crise'] [u'doom', u'worm', u'target', u'microsoft'] [u'rule', u'save', u'champion', u'trophi', u'rain'] [u'injuri', u'delay', u'hit', u'mcgrath', u'lanka', u'chanc'] [u'fine', u'bureau', u'owe', u'local', u'council', u'million'] [u'petrol', u'station', u'bowser', u'come', u'scrutini'] [u'look', u'secur', u'feder', u'seat'] [u'say', u'independ', u'speaker', u'model', u'canberra'] [u'ocean', u'need', u'urgent', u'attent', u'environment', u'group'] [u'spot', u'fin', u'begin', u'infring'] [u'opal', u'nation', u'challeng'] [u'opposit', u'call', u'brigalow', u'belt', u'report', u'releas'] [u'opposit', u'look', u'freedom', u'inform', u'law'] [u'pakistan', u'tell', u'plug', u'nuclear', u'secret', u'leak'] [u'panel', u'hear', u'need', u'potenti', u'drought', u'rethink'] [u'pantano', u'move', u'fast', u'lane', u'jordan', u'drive'] [u'payrol', u'pressur', u'water', u'manag', u'resourc'] [u'perth', u'school', u'doesnt', u'regret', u'cage', u'student'] [u'warn', u'canegrow', u'cooper'] [u'polic', u'offer', u'warn', u'imperson'] [u'polic', u'probe', u'mother', u'babi', u'death'] [u'polic', u'probe', u'region', u'drug'] [u'polic', u'raid', u'uncov', u'amphetamin', u'haul'] [u'poor', u'weather', u'hamper', u'german', u'warship', u'recoveri'] [u'potenti', u'cyclon', u'expect', u'head'] [u'powel', u'want', u'pakistan', u'probe', u'secret', u'nuclear'] [u'power', u'station', u'address', u'south', u'west', u'demand'] [u'power', u'surg', u'clear', u'south'] [u'premiership', u'star', u'african', u'contend'] [u'princ', u'charl', u'tour', u'quak', u'iran'] [u'protest', u'logger', u'loggerhead', u'forest', u'work'] [u'public', u'comment', u'seek', u'coomera', u'river', u'health'] [u'rain', u'delay', u'warn', u'comeback'] [u'rain', u'hit'] [u'rain', u'hit', u'redback', u'chase'] [u'rain', u'wash', u'warn', u'comeback'] [u'rann', u'ask', u'parent', u'check', u'youth', u'card'] [u'redback', u'domin'] [u'tape', u'tie', u'fish', u'farmer', u'report', u'say'] [u'report', u'season', u'open', u'mix'] [u'research', u'examin', u'altern', u'ovarian', u'cancer'] [u'rivkin', u'send', u'long'] [u'rubicon', u'burn', u'stop', u'bushfir'] [u'rural', u'confid', u'return', u'survey', u'say'] [u'rusedski', u'quiet', u'slip', u'away', u'dope', u'hear'] [u'russian', u'presidenti', u'candid', u'vanish'] [u'coach', u'pressur', u'perform'] [u'sar', u'fear', u'grip', u'hong', u'kong', u'hospit'] [u'welcom', u'queensland', u'rain'] [u'scene', u'warn', u'return'] [u'scope', u'australian', u'involv', u'mar'] [u'scullion', u'clear', u'busi', u'interest'] [u'search', u'continu', u'miss', u'woman'] [u'search', u'continu', u'plane', u'wreckag'] [u'search', u'find', u'miss', u'angler'] [u'search', u'intensifi', u'miss', u'angler'] [u'sheepmeat', u'industri', u'look', u'free', u'trade', u'boost'] [u'shooter', u'mark', u'farewel', u'olymp', u'dream'] [u'singh', u'uncomfort', u'tiger', u'comparison'] [u'snake', u'handler', u'recov', u'taipan', u'bite'] [u'seat', u'undecid', u'count', u'resum'] [u'south', u'africa', u'vote', u'april'] [u'state', u'plantat', u'sell'] [u'stewart', u'call', u'england', u'zimbabw', u'tour'] [u'street', u'seal', u'polic', u'shoot'] [u'struggl', u'demon', u'sack', u'elli'] [u'submiss', u'lodg', u'calm', u'review', u'ningaloo'] [u'suspect', u'drug', u'cordon'] [u'sweden', u'confid', u'upset'] [u'sydney', u'rail', u'bodi', u'play', u'train', u'cut'] [u'tafe', u'staff', u'strike', u'student'] [u'terror', u'fear', u'spark', u'mail', u'room', u'secur', u'talk'] [u'thailand', u'impos', u'curfew', u'fight', u'youth', u'crime'] [u'pakistan', u'scientist', u'face', u'scrutini'] [u'train', u'delay', u'continu', u'anger', u'commut'] [u'tram', u'idea', u'consider'] [u'trio', u'face', u'charg', u'drug', u'crop'] [u'tropic', u'rain', u'miss', u'central', u'queensland'] [u'tszyu', u'hand', u'defenc', u'deadlin'] [u'tucker', u'want', u'cannabi', u'debat'] [u'tuna', u'firm', u'take', u'approach', u'free', u'trade'] [u'tyson', u'look', u'fight'] [u'polic', u'arrest', u'seven', u'chines', u'worker', u'death'] [u'umpir', u'recruit', u'stall', u'shortag'] [u'call', u'drug', u'relat', u'corrupt'] [u'univers', u'announc', u'chines', u'partnership'] [u'fund', u'tiger', u'census'] [u'time', u'wall'] [u'arrest', u'number', u'iraq', u'want', u'list', u'report'] [u'sugar', u'industri', u'welcom', u'sweet', u'trade', u'deal'] [u'victim', u'mistak', u'crossbow'] [u'voyag', u'survivor', u'mark', u'year'] [u'join', u'internet', u'scammer', u'hunt'] [u'wambo', u'pin', u'hop', u'tourist', u'rout'] [u'weather', u'bureau', u'continu', u'monitor', u'cyclon'] [u'weather', u'bureau', u'issu', u'cyclon', u'watch'] [u'weir', u'hop', u'fourth', u'time', u'lucki', u'oscar'] [u'wesfarm', u'post', u'record', u'month', u'profit'] [u'tie', u'men', u'event'] [u'wine', u'woe', u'temper', u'foster', u'result'] [u'woman', u'happi', u'murder', u'suicid'] [u'wool', u'industri', u'benefit', u'trade', u'deal'] [u'work', u'can', u'week'] [u'worker', u'die', u'gold', u'coast', u'convent', u'centr', u'fall'] [u'urg', u'break', u'trade', u'talk', u'deadlock'] [u'young', u'farmer', u'grind'] [u'job', u'swing', u'million', u'briquett', u'factori', u'loan'] [u'iraqi', u'dead', u'baghdad', u'bomb', u'blast'] [u'dead', u'baghdad', u'blast'] [u'facelift', u'histor', u'tathra', u'wharf'] [u'assembl', u'pass', u'reform', u'law'] [u'lib', u'cast', u'doubt', u'valu', u'heritag', u'home'] [u'adelaid', u'heart', u'machin', u'save', u'live'] [u'agassi', u'advanc', u'spadea', u'spoil', u'haass', u'return'] [u'cyclist', u'drug', u'charg'] [u'ord', u'rid', u'healthi', u'profit', u'report'] [u'want', u'dollar', u'figur', u'trade', u'deal', u'benefit'] [u'amec', u'applaud', u'explor', u'fund', u'boost'] [u'arsenal', u'ahead', u'leed'] [u'distanc', u'second', u'divis', u'propos'] [u'asio', u'slam', u'handl', u'brigitt', u'case'] [u'foreman', u'hop', u'return', u'ring'] [u'dead', u'isra', u'raid', u'gaza'] [u'aussi', u'dive', u'athen', u'prepar'] [u'aust', u'post', u'worker', u'strike', u'entitl'] [u'australian', u'dollar', u'hit', u'high'] [u'baghdad', u'suicid', u'bomb', u'kill', u'hospit'] [u'bank', u'investig', u'parmalat', u'probe'] [u'barcaldin', u'choos', u'host', u'rugbi', u'leagu', u'match'] [u'beachley', u'honour', u'sport', u'feder'] [u'beatti', u'ministri'] [u'berlin', u'film', u'festiv', u'honour', u'argentin', u'director'] [u'billiton', u'fin', u'prevent', u'death'] [u'billiton', u'upbeat', u'coal', u'price'] [u'birdsvill', u'flood', u'despit', u'rain'] [u'blair', u'meet', u'khaddafi', u'relat', u'thaw'] [u'blue', u'green', u'alga', u'level', u'drop', u'popular', u'swim'] [u'bomb', u'hoax', u'lead', u'jail'] [u'breakdown', u'sydney', u'train', u'woe'] [u'britain', u'probe', u'iraqi', u'mistreat'] [u'break', u'pip', u'mystifi', u'water'] [u'build', u'evacu', u'baghdad', u'sniffer'] [u'bushrang', u'redback', u'clash', u'abandon'] [u'bush', u'vietnam', u'militari', u'record', u'fail', u'satisfi'] [u'businessman', u'contest', u'braddon', u'lib'] [u'caravan', u'park', u'close', u'despit', u'feasibl', u'studi'] [u'carnarvon', u'bushwalk', u'bodi'] [u'warn', u'dump', u'closur', u'polit', u'ground'] [u'prais', u'quick', u'work', u'follow', u'suspici'] [u'check', u'detail', u'warn', u'elector', u'offic'] [u'china', u'ban', u'poultri', u'import'] [u'church', u'ponder', u'wise', u'men', u'gender'] [u'flag', u'greater', u'legal', u'protect', u'polic'] [u'coalit', u'encourag', u'iraq', u'contract'] [u'communiti', u'ask', u'graffiti', u'prevent', u'idea'] [u'communiti', u'group', u'help', u'rescu', u'sink', u'barg'] [u'confer', u'herald', u'grassroot', u'return', u'nation'] [u'consum', u'confid', u'remain', u'steadi'] [u'content', u'seiz', u'contain', u'analys'] [u'coron', u'urg', u'public', u'pool', u'safeti', u'review'] [u'costello', u'talk', u'trade', u'deal', u'benefit'] [u'councillor', u'disput', u'recent', u'circular'] [u'council', u'want', u'meet', u'troubl', u'health', u'servic'] [u'court', u'deni', u'defenc', u'chief', u'immun'] [u'court', u'overturn', u'peregian', u'develop', u'approv'] [u'crossbow', u'court', u'tell', u'accus', u'want', u'harm'] [u'cyclon', u'fritz', u'bring', u'damag'] [u'cyclon', u'fritz', u'cross', u'northern', u'coast'] [u'cyclon', u'fritz', u'edg', u'closer', u'north'] [u'cyclon', u'fritz', u'like', u'intensifi'] [u'dairi', u'compani', u'job'] [u'death', u'prompt', u'construct', u'worker', u'walkout'] [u'democrat', u'labor', u'parti', u'fight', u'surviv'] [u'democrat', u'kerri', u'score', u'southern', u'sweep'] [u'drought', u'caus', u'salin', u'drop'] [u'educ', u'minist', u'rais', u'school', u'leav'] [u'eildon', u'plane', u'wreckag', u'recoveri', u'begin'] [u'falconio', u'murder', u'committ'] [u'farrer', u'disagre', u'illeg', u'immigr', u'amnesti'] [u'fatal', u'inquest', u'fail', u'culprit'] [u'fear', u'countrylink', u'line'] [u'feder', u'confid', u'sugar', u'grower', u'surviv'] [u'fifa', u'scrap', u'offsid', u'guidelin', u'allardyc'] [u'fifa', u'propos', u'chang', u'friend', u'match', u'half', u'time'] [u'finnish', u'millionair', u'record', u'speed', u'fine'] [u'union', u'demand', u'fund', u'lismor', u'station'] [u'solomon', u'opposit', u'leader', u'join', u'govern'] [u'free', u'rang', u'chook', u'farm', u'flap', u'bird'] [u'french', u'lover', u'despit', u'death'] [u'french', u'headscarf', u'class'] [u'french', u'prison', u'give', u'birth', u'handcuff'] [u'fritz', u'dump', u'rain', u'cairn', u'weipa'] [u'galleri', u'unpack', u'coff', u'harbour', u'exhibit'] [u'glen', u'inn', u'councillor', u'resign'] [u'gold', u'coast', u'tip', u'minist'] [u'govern', u'afford', u'promis', u'polic', u'oppn'] [u'govern', u'medicar'] [u'govt', u'order', u'hospit', u'protocol', u'chang'] [u'govt', u'pledg', u'sugar', u'support', u'amid', u'trade', u'deal', u'anger'] [u'grace', u'doubt', u'vital', u'clash'] [u'green', u'light', u'bicentenari', u'cattl', u'drive'] [u'greenpeac', u'want', u'tyre', u'fuel', u'propos', u'reject'] [u'green', u'vote', u'trade', u'agreement'] [u'home', u'loan', u'push', u'profit'] [u'hong', u'kong', u'china', u'hold', u'democraci', u'talk'] [u'hong', u'kong', u'patient', u'test', u'negat', u'bird', u'sar'] [u'hospit', u'defend', u'emerg', u'decis'] [u'weather', u'alert', u'scientist', u'reef', u'bleach'] [u'independ', u'applaud', u'opposit', u'super', u'reform', u'plan'] [u'internet', u'probe', u'highlight', u'scammer'] [u'investig', u'continu', u'latest', u'sydney', u'shoot'] [u'investig', u'continu', u'build', u'site', u'death'] [u'chief', u'warn', u'athlet', u'drug', u'test'] [u'iranian', u'march', u'anniversari', u'revolut'] [u'iran', u'guardian', u'council', u'bar', u'elect', u'candid'] [u'ireland', u'odriscol', u'rule', u'franc', u'clash'] [u'isra', u'troop', u'kill', u'palestinian', u'gaza'] [u'kerri', u'press', u'clark', u'primari'] [u'kewel', u'viduka', u'name', u'socceroo', u'squad'] [u'land', u'clear', u'polici', u'help', u'sale', u'central'] [u'latham', u'urg', u'consid', u'north', u'coast', u'educ'] [u'liber', u'promis', u'bushfir', u'manag', u'chang'] [u'live', u'export', u'lobbi', u'port', u'open'] [u'market', u'swim', u'fish', u'strong', u'dollar'] [u'mar', u'rover', u'set', u'distanc', u'record', u'metr'] [u'martyn', u'join', u'macgil', u'nott'] [u'matilda', u'prepar', u'australia'] [u'michell', u'provid', u'muscl', u'flame'] [u'microsoft', u'warn', u'critic', u'flaw', u'window'] [u'minist', u'defend', u'hospit', u'infect', u'rate'] [u'minist', u'discuss', u'retir', u'reform'] [u'minist', u'satisfi', u'council', u'departur'] [u'miss', u'russian', u'candid', u'return'] [u'miss', u'russian', u'politician', u'turn', u'aliv'] [u'miss', u'woman'] [u'deni', u'countrylink', u'servic', u'ax'] [u'molloy', u'sore', u'miss', u'cabinet'] [u'council', u'amalgam', u'like'] [u'say', u'super', u'make'] [u'seek', u'penalti', u'fake'] [u'mysteri', u'object', u'baffl', u'space', u'station', u'crew'] [u'natur', u'resourc', u'committe', u'elect', u'chairman'] [u'consid', u'introduc', u'confer'] [u'minist', u'welcom', u'beatti', u'fold'] [u'northern', u'offic', u'mission', u'australia'] [u'springbok', u'coach', u'name', u'friday'] [u'sight', u'log', u'stand'] [u'nois', u'monitor', u'continu', u'airport'] [u'govt', u'offer', u'free', u'train', u'travel'] [u'nswrl', u'take', u'step', u'reduc', u'workload'] [u'ocker', u'hunk', u'want', u'dose', u'realiti'] [u'opec', u'slash', u'output'] [u'opposit', u'attack', u'local', u'council', u'merger'] [u'pakistan', u'assur', u'india', u'foolproof', u'secur'] [u'pantano', u'test', u'jordan', u'deal'] [u'pastor', u'firm', u'record', u'loss'] [u'philippin', u'poll', u'campaign', u'kick'] [u'pilot', u'group', u'want', u'airspac', u'scheme', u'probe'] [u'pittman', u'miss', u'olymp', u'trial'] [u'plane', u'bodi', u'recov', u'lake', u'eildon'] [u'put', u'bite', u'state', u'dental', u'plan'] [u'polic', u'hunt', u'tot', u'bandit'] [u'polic', u'investig', u'incid'] [u'polic', u'warn', u'fine', u'leav', u'unlock'] [u'polic', u'warn', u'stock', u'theft'] [u'pork', u'industri', u'uneasi', u'free', u'trade', u'deal'] [u'pork', u'produc', u'group', u'review'] [u'probe', u'launch', u'melbourn', u'rail', u'death'] [u'public', u'meet', u'discuss', u'emerg', u'dept', u'futur'] [u'quak', u'shake', u'isra', u'build'] [u'queiroz', u'prais', u'henri', u'nistelrooy'] [u'raaf', u'forc', u'land', u'investig', u'begin'] [u'rail', u'union', u'meet', u'sydney', u'train', u'crisi'] [u'rain', u'steal', u'warn', u'thunder'] [u'rain', u'forc', u'burn', u'cancel'] [u'research', u'angl', u'better', u'reef', u'manag'] [u'research', u'tackl', u'tamar', u'river', u'sediment', u'problem'] [u'resid', u'group', u'submit', u'develop', u'propos'] [u'resid', u'unhappi', u'salvat', u'armi', u'decis'] [u'resort', u'plan', u'scale'] [u'ricciuto', u'trial', u'match', u'comeback'] [u'ricciuto', u'trial', u'match', u'come'] [u'rogg', u'say', u'secur', u'dampen', u'olymp', u'mood'] [u'rumsfeld', u'draw', u'blank', u'blair', u'minut', u'iraq', u'claim'] [u'rusedski', u'play', u'await', u'drug', u'verdict'] [u'rusti', u'ivanisev', u'stumbl', u'milan'] [u'safeti', u'bureau', u'releas', u'report', u'drama'] [u'salvo', u'sell', u'age', u'care', u'centr'] [u'premier', u'attack', u'sport', u'plan'] [u'senat', u'call', u'nauru', u'detent', u'centr', u'closur'] [u'senat', u'support', u'seek', u'medicar'] [u'singh', u'target', u'wood', u'record'] [u'sleazi', u'white', u'hous', u'grab'] [u'unhappi', u'cabinet', u'snub'] [u'south', u'african', u'throw', u'lion'] [u'receiv', u'assess', u'buyer', u'compani'] [u'lankan', u'minist', u'dismiss'] [u'stanthorp', u'mourn', u'mayor', u'death'] [u'date', u'lleyton', u'aussi'] [u'strong', u'growth', u'boost', u'resourc', u'share'] [u'studi', u'look', u'cop', u'skill', u'student'] [u'suicid', u'bomb', u'kill', u'dozen'] [u'swimmer', u'drive', u'shark', u'water'] [u'sydney', u'station', u'staff', u'walk'] [u'teach', u'guid', u'launch', u'lesson'] [u'terror', u'rule', u'iranian', u'plane', u'crash'] [u'theatr', u'redevelop', u'plan', u'discuss'] [u'palestinian', u'kill', u'gaza', u'firefight', u'report'] [u'torana', u'paint', u'snare', u'prize'] [u'train', u'delay', u'continu', u'sydney'] [u'troubl', u'health', u'servic', u'meet', u'local'] [u'truck', u'smash', u'power', u'failur', u'shut', u'harbour', u'tunnel'] [u'present', u'apologis', u'back', u'weapon', u'claim'] [u'year', u'council', u'restructur'] [u'ugandan', u'leed', u'delay'] [u'kill', u'ethnic', u'clash', u'ethiopia'] [u'celebr', u'year', u'beatlemania'] [u'market', u'await', u'greenspan', u'address'] [u'record', u'second', u'avian', u'case'] [u'renew', u'libya', u'diplomat', u'presenc'] [u'report', u'go', u'miss', u'near', u'chechnya'] [u'tell', u'citizen', u'leav', u'haiti'] [u'vacanc', u'rat', u'remain', u'tight'] [u'vanston', u'defend', u'manus', u'island', u'camp'] [u'viacom', u'split', u'blockbust', u'video', u'chain'] [u'polic', u'charg', u'murder'] [u'opposit', u'promis', u'albani', u'hospit', u'upgrad'] [u'warn', u'final', u'roll'] [u'warn', u'snare', u'comeback'] [u'warn', u'snare', u'come'] [u'word', u'erupt', u'health', u'safeti'] [u'water', u'manag', u'upgrad', u'break', u'hill'] [u'white', u'hous', u'releas', u'bush', u'militari', u'document'] [u'wildcard', u'golovin', u'outrun', u'smashnova', u'pistolesi'] [u'resourc', u'increas', u'year', u'profit'] [u'woman', u'fin', u'quarantin', u'violat'] [u'woodsid', u'worker', u'brace', u'cyclon'] [u'youth', u'servic', u'offer', u'bushfir', u'lifelin'] [u'youth', u'want', u'scari', u'crossbow', u'court', u'tell'] [u'leav', u'player', u'west', u'sydney', u'clash'] [u'abbott', u'reject', u'babi', u'clone', u'claim'] [u'academ', u'call', u'water', u'releas', u'prevent', u'silt'] [u'firm', u'warn', u'eftpo', u'fraud'] [u'agenc', u'give', u'beagl'] [u'agreement', u'put', u'rail', u'servic', u'track'] [u'franc', u'merger'] [u'analyst', u'blame', u'rise', u'aussi', u'dollar', u'fall'] [u'anger', u'air', u'local', u'govt', u'sack'] [u'appeal', u'rais', u'fund', u'local', u'famili'] [u'armi', u'chopper', u'crash'] [u'chairman', u'resign'] [u'australian', u'offici', u'post'] [u'baghdad', u'bomb', u'kill', u'soldier'] [u'bank', u'resourc', u'lift', u'ord'] [u'beatti', u'term', u'cabinet', u'swear'] [u'beatti', u'minist'] [u'bendigo', u'cost', u'motel', u'ahead'] [u'blue', u'outclass', u'wayward', u'waratah'] [u'bomb', u'kill', u'troop', u'baghdad'] [u'border', u'hint', u'warn', u'ticket', u'lanka'] [u'boro', u'upset', u'unit', u'chelsea', u'close'] [u'brogden', u'back', u'latham', u'super', u'plan'] [u'break', u'hill', u'water', u'studi', u'launch'] [u'bskyb', u'profit', u'soar'] [u'bulloo', u'grass', u'grow', u'record', u'flood'] [u'bumper', u'month', u'sapphir', u'coast', u'tourism'] [u'bush', u'vow', u'prolifer', u'fight'] [u'busi', u'usual', u'despit', u'council', u'dismiss'] [u'busi', u'leader', u'push', u'free', u'trade', u'deal'] [u'busi', u'time', u'ahead', u'gold', u'coast', u'cabinet', u'member'] [u'minist', u'polic', u'file'] [u'cane', u'toad', u'post', u'help', u'resid'] [u'crush', u'kill'] [u'carr', u'hop', u'deal', u'train', u'crisi'] [u'carr', u'rule', u'ministeri', u'review'] [u'celtic', u'dismiss', u'dunfermlin'] [u'children', u'commit', u'self', u'harm', u'detent', u'centr'] [u'chines', u'citi', u'ban', u'motorcycl'] [u'websit', u'notic', u'seek', u'iraq', u'inform'] [u'clark', u'quit', u'presidenti', u'race'] [u'close', u'race', u'tip', u'border', u'medal'] [u'cole', u'myer', u'boost', u'sale'] [u'convoy', u'target', u'western', u'iraq'] [u'cook', u'sizzl', u'mediterranean', u'tour'] [u'coron', u'criticis', u'polic', u'murder', u'suicid'] [u'costa', u'meet', u'rail', u'union'] [u'cost', u'forc', u'salvat', u'armi', u'sell', u'nurs', u'home'] [u'council', u'amalgam', u'hear'] [u'council', u'dump', u'uniform', u'plan'] [u'council', u'employe', u'seek', u'better', u'deal'] [u'councillor', u'challeng', u'rockhampton', u'mayor'] [u'councillor', u'quit', u'administr', u'appoint'] [u'councillor', u'support', u'airlin', u'rockhampton'] [u'councillor', u'resign'] [u'council', u'review', u'decis', u'avoid', u'court', u'battl'] [u'council', u'seek', u'fund', u'plan', u'studi'] [u'council', u'seek', u'action', u'grave', u'threat'] [u'council', u'want', u'vote', u'count', u'local'] [u'council', u'warn', u'resid', u'follow', u'dengu', u'fever'] [u'courtney', u'love', u'skip', u'california', u'crimin', u'case'] [u'crew', u'bail', u'toothfish', u'charg'] [u'crew', u'charg', u'toothfish', u'poach'] [u'cricket', u'star', u'gather', u'allan', u'border', u'medal'] [u'cyclon', u'fritz', u'continu'] [u'cyclon', u'fritz', u'fizzl', u'gulf'] [u'dairyfarm', u'urg', u'employ', u'survey'] [u'date', u'darci', u'abus', u'trial'] [u'davidson', u'trumbl', u'join', u'australian', u'cricket', u'elit'] [u'democrat', u'abbott', u'medicar', u'prescript'] [u'disney', u'studi', u'supris', u'takeov'] [u'diver', u'continu', u'search', u'plane', u'crash', u'victim'] [u'divers', u'crime', u'prevent', u'fund'] [u'drink', u'drive', u'convict', u'accus', u'danger'] [u'dubbo', u'student', u'butt', u'break', u'exercis'] [u'earth', u'tremor'] [u'surviv', u'armi', u'chopper', u'crash'] [u'electr', u'storm', u'caus', u'power', u'pole'] [u'ethanol', u'excis', u'extens', u'support', u'opposit'] [u'explos', u'go', u'insid', u'india'] [u'explos', u'chines', u'coalmin', u'kill'] [u'chief', u'say', u'cost', u'drop'] [u'fatal', u'accid', u'investig', u'continu'] [u'fear', u'air', u'rail', u'good', u'damag'] [u'feder', u'call', u'conserv', u'parti'] [u'govt', u'cautious', u'iraq', u'weapon', u'probe'] [u'fior', u'lead', u'lazio', u'charg'] [u'fish', u'haven', u'studi', u'northern', u'river'] [u'forecast', u'job', u'growth'] [u'forestri', u'group', u'attack', u'protest'] [u'french', u'internet', u'firm', u'profit', u'jump'] [u'fritz', u'strengthen', u'near', u'island'] [u'fund', u'lack', u'wont', u'stop', u'nurs', u'home', u'develop'] [u'debat', u'church', u'england', u'agenda'] [u'german', u'archaeologist', u'throw', u'light', u'pyramid', u'origin'] [u'river', u'clean', u'track', u'urg', u'mayor'] [u'govern', u'deni', u'polic', u'station', u'budget', u'problem'] [u'governor', u'pressur', u'sydney', u'council', u'merger'] [u'govt', u'staff', u'shortag', u'local'] [u'govt'] [u'grazier', u'hold', u'restock', u'recent', u'rain'] [u'green', u'light', u'marina', u'develop'] [u'greenspan', u'upbeat', u'economi'] [u'green', u'unimpress', u'clear', u'fell', u'report'] [u'gulf', u'town', u'cyclon', u'watch'] [u'hama', u'vow', u'reveng', u'gaza', u'raid'] [u'health', u'minist', u'expand', u'stillbirth', u'inquiri'] [u'hockeyroo', u'sink', u'south', u'africa'] [u'hollywood', u'studio', u'plan', u'toon', u'stock', u'exchang', u'list'] [u'hope', u'sydney', u'firm', u'help', u'lower', u'power', u'price'] [u'hope', u'talk', u'help', u'avoid', u'rail', u'strike'] [u'head'] [u'howard', u'adopt', u'latham', u'super', u'scheme'] [u'hungri', u'mcewen', u'eye', u'tour', u'reveng'] [u'hunter', u'valley', u'train', u'return', u'servic'] [u'icpa', u'welcom', u'bligh', u'continu'] [u'imran', u'wasim', u'offer', u'talk', u'ahead', u'indian'] [u'indonesian', u'court', u'overturn', u'parliament', u'chief'] [u'intrud', u'interrupt', u'question', u'time'] [u'investig', u'black', u'hawk', u'crash', u'continu'] [u'investig', u'probe', u'black', u'hawk', u'crash'] [u'iraq', u'blast', u'kill'] [u'iraq', u'blast', u'link', u'terror', u'letter'] [u'israel', u'say', u'attend', u'court', u'hear'] [u'italian', u'town', u'battl', u'mysteri', u'fire'] [u'javelin', u'thrower', u'gatsioudi', u'carri', u'olymp', u'torch'] [u'jobless', u'rate', u'inch'] [u'jordan', u'wait', u'pantano', u'deal'] [u'judg', u'reject', u'bail', u'chang', u'murder', u'accus'] [u'dog', u'roam', u'plead', u'properti', u'owner'] [u'kongorong', u'explor', u'begin'] [u'labor', u'promis', u'save', u'screensound'] [u'latham', u'order', u'report'] [u'mackay', u'put', u'famili'] [u'madam', u'tussaud', u'honour', u'wilkinson'] [u'magistr', u'question', u'mental', u'health', u'facil'] [u'malaysian', u'minist', u'arrest', u'corrupt', u'crackdown'] [u'guilti', u'manslaught', u'stab'] [u'jail', u'hide', u'bali', u'bomber'] [u'face', u'retrial', u'grievous', u'bodili', u'harm'] [u'stand', u'trial', u'mother', u'murder'] [u'mayor', u'boundari', u'chang', u'consider'] [u'mcgradi', u'say', u'mine', u'benefit', u'role'] [u'mediat', u'program', u'expand', u'region'] [u'medicar', u'negoti', u'continu'] [u'medicar', u'wrangl', u'resum'] [u'millwal', u'end', u'telford'] [u'bed', u'gippsland', u'age', u'care', u'facil'] [u'morocco', u'tunisia', u'meet', u'african', u'final'] [u'hail', u'free', u'trade', u'deal'] [u'say', u'murray', u'chang', u'wont', u'leav', u'riverland'] [u'want', u'council', u'address', u'lack', u'street', u'light'] [u'nation', u'claim', u'cover', u'toxic', u'dump', u'select'] [u'council', u'amalgam', u'announc'] [u'england', u'initi', u'target', u'heart', u'lung'] [u'mosquito', u'control', u'prove', u'effect'] [u'news', u'corp', u'profit', u'climb', u'million'] [u'rail', u'disput', u'talk', u'roll'] [u'govt', u'atsic', u'time', u'lobbi', u'youth'] [u'workshop', u'stress', u'import', u'land', u'recoveri'] [u'flag', u'burner', u'say', u'regret'] [u'ohern', u'take', u'point', u'lead', u'second', u'round'] [u'opposit', u'consid', u'high', u'cut'] [u'orang', u'alert', u'high', u'densiti', u'hous'] [u'peopl', u'urg', u'wari', u'good', u'true'] [u'phelp', u'come', u'whisker', u'freestyl', u'world'] [u'pittsworth', u'stop', u'caravan', u'tourist'] [u'flag', u'analysi', u'trade', u'deal', u'benefit'] [u'resist', u'probe', u'pressur'] [u'polic', u'combat', u'plan', u'auction', u'onlin'] [u'polic', u'probe', u'hook', u'file'] [u'pont', u'name', u'cricket', u'year'] [u'poultri', u'safe', u'bird', u'govern', u'say'] [u'premier', u'move', u'allay', u'concern', u'coral', u'plan'] [u'privaci', u'watchdog', u'highlight', u'websit', u'flaw'] [u'project', u'pool', u'resourc', u'desert', u'research'] [u'qanta', u'staff', u'order', u'work'] [u'woman', u'die', u'dengu', u'fever'] [u'quarantin', u'offici', u'seiz', u'quail', u'egg'] [u'red', u'stun', u'crusad'] [u'resid', u'welcom', u'feedlot', u'restrict'] [u'reynold', u'readi', u'portfolio'] [u'roo', u'say', u'lion', u'good', u'chanc', u'fourth', u'titl'] [u'lib', u'want', u'land', u'probe'] [u'school', u'cours', u'prove', u'popular'] [u'schooli', u'boost', u'southern', u'down', u'tourism'] [u'score', u'dead', u'ethiopia', u'ethnic', u'fight'] [u'scrappi', u'dementieva', u'scrap'] [u'search', u'miss', u'angler'] [u'secur', u'fear', u'grind', u'flight'] [u'senat', u'call', u'action', u'christma', u'island'] [u'serbia', u'deni', u'harbour', u'karadz'] [u'shire', u'lobbi', u'fund', u'improv', u'inlet'] [u'shire', u'unhappi', u'propos', u'monkey', u'advisori'] [u'nation', u'rival', u'hop', u'woodward', u'humbl'] [u'soccer', u'team', u'failur', u'deal', u'blow', u'pride'] [u'south', u'korean', u'claim', u'human', u'clone', u'breakthrough'] [u'worker', u'continu', u'strike', u'threat'] [u'studi', u'weigh', u'obes', u'concern'] [u'sugar', u'call', u'support'] [u'suicid', u'exhibit', u'surpris', u'artist'] [u'summat', u'crossbow', u'court', u'case'] [u'sydney', u'posti', u'strike', u'restructur'] [u'sydney', u'rail', u'crisi', u'talk'] [u'sydney', u'shoot', u'accus', u'deni', u'bail'] [u'sydney', u'train', u'delay', u'continu'] [u'experi', u'harsher', u'domest', u'violenc', u'crisi'] [u'tattersal', u'criticis', u'school', u'fundrais'] [u'settlement', u'help', u'fizz', u'coca', u'cola'] [u'telstra', u'ring', u'profit'] [u'telstra', u'sale', u'survey', u'resid'] [u'real', u'reach', u'final'] [u'simpson', u'head', u'screen'] [u'time', u'run', u'voter'] [u'toowoomba', u'appoint', u'labor', u'caucus', u'chairman'] [u'tourism', u'bureau', u'welcom', u'wine', u'ministri'] [u'trio', u'court', u'charg'] [u'tuna', u'trader', u'cash', u'free', u'trade', u'deal', u'vail'] [u'union', u'deliv', u'attack', u'aust', u'post', u'restructur', u'plan'] [u'union', u'highlight', u'child', u'protect', u'worker', u'woe'] [u'union', u'push', u'compens', u'shuttl', u'loss'] [u'union', u'concern', u'briquett', u'factori', u'closur'] [u'union', u'demand', u'wollongong', u'emerg', u'unit'] [u'union', u'warn', u'qanta'] [u'team', u'meet', u'lead', u'shia', u'cleric'] [u'consid', u'australia', u'weapon', u'dump'] [u'open', u'iraq', u'contract', u'countri'] [u'senat', u'tear', u'shred', u'superbowl', u'broadcast'] [u'varley', u'win', u'contract', u'lockhe', u'martin'] [u'verkerk', u'strong', u'sanguinetti'] [u'victorian', u'public', u'holiday'] [u'virgin', u'fli', u'branson', u'ballina'] [u'vote', u'defer', u'council', u'merger'] [u'govt', u'consid', u'coral', u'plan'] [u'wall', u'greenspan', u'assess'] [u'warn', u'relax', u'select', u'chanc'] [u'warn', u'relax', u'tour', u'select'] [u'watchdog', u'back', u'call', u'tougher', u'nuclear', u'curb'] [u'rule', u'person', u'person', u'bird', u'case'] [u'wildcat', u'captain', u'rest', u'injuri', u'game'] [u'wildcat', u'claw', u'croc'] [u'woman', u'jail', u'british', u'schoolgirl', u'murder'] [u'woman', u'bodi', u'take', u'perth', u'post', u'mortem'] [u'workcov', u'ask', u'look', u'school', u'build'] [u'probe', u'adelaid', u'radio', u'host'] [u'govt', u'know', u'child', u'safeti', u'report', u'woe'] [u'action', u'immin', u'angri', u'prison', u'offic'] [u'review', u'polli', u'super'] [u'afghan', u'asylum', u'seeker', u'hop', u'case'] [u'agassi', u'roddick', u'advanc', u'jose', u'quarter'] [u'agenc', u'sign', u'domest', u'violenc', u'protocol'] [u'alburi', u'fear', u'forc', u'merger'] [u'alburi', u'wodonga', u'annual', u'busi', u'survey', u'begin'] [u'andren', u'surpris', u'super', u'announc'] [u'antarct', u'divis', u'defend', u'russian', u'ship'] [u'anxious', u'citi', u'wait', u'anelka'] [u'arafat', u'wife', u'say', u'hide', u'french', u'account'] [u'aussi', u'dollar', u'test', u'threshold'] [u'australia', u'award', u'environment', u'boobi', u'prize'] [u'australia', u'lead', u'rescu', u'mission', u'japanes'] [u'baddeley', u'pace', u'diego'] [u'beef', u'produc', u'optimist', u'despit', u'mix', u'forecast'] [u'bendigo', u'employ', u'project', u'receiv', u'fund'] [u'bettini', u'claim', u'second', u'stage', u'tour'] [u'black', u'hawk', u'crash', u'probe', u'continu'] [u'blackston', u'woman', u'guilti', u'manslaught'] [u'bomb', u'joke', u'land', u'australian', u'travel', u'court'] [u'boulder', u'die', u'accid'] [u'british', u'scienc', u'watchdog', u'welcom', u'clone', u'advanc'] [u'brook', u'fire', u'adelaid'] [u'bulk', u'bill', u'rat', u'continu', u'drop'] [u'bush', u'fill', u'final', u'place', u'iraq', u'panel'] [u'cabbi', u'protest', u'sydney', u'airport', u'levi'] [u'call', u'investig', u'continu'] [u'canada', u'consid', u'decriminalis', u'marijuana'] [u'carr', u'defend', u'rail', u'deal'] [u'carr', u'pledg', u'copi', u'super', u'plan'] [u'celtic', u'england', u'watch'] [u'gear', u'high', u'threat'] [u'chamber', u'coach', u'charg', u'scandal'] [u'china', u'block', u'vagina', u'monologu'] [u'china', u'ugli', u'win', u'ultim', u'makeov'] [u'church', u'leader', u'form', u'anti', u'satan', u'task', u'forc'] [u'clark', u'face', u'rape', u'suit'] [u'clijster', u'pierc', u'pari', u'quarter'] [u'coach', u'urg', u'croc', u'stand'] [u'collin', u'class', u'submarin', u'visit', u'beauti', u'point'] [u'council', u'determin', u'establish', u'water', u'treatment'] [u'court', u'clear', u'indonesian', u'speaker'] [u'court', u'consid', u'request', u'accus', u'undergo'] [u'court', u'sentenc', u'naturopath'] [u'croc', u'urg', u'stand', u'focus'] [u'cyclon', u'fritz', u'caus', u'gale', u'wind'] [u'defenc', u'forc', u'upgrad', u'harpoon', u'missil'] [u'delay', u'expect', u'despit', u'rail', u'deal'] [u'dippenaar', u'steer', u'south', u'africa'] [u'dollar', u'hit', u'near', u'seven', u'year', u'high'] [u'downer', u'tell', u'gallipoli'] [u'timor', u'welcom', u'start', u'field', u'product'] [u'extrem', u'condit', u'alert'] [u'father', u'face', u'sentenc', u'kill', u'children'] [u'feder', u'minist', u'visit', u'highway', u'black', u'spot'] [u'crew', u'alert', u'temperatur', u'soar'] [u'fear', u'snowi', u'mountain'] [u'ravag', u'furnitur', u'warehous'] [u'flood', u'continu', u'isol', u'resid'] [u'flood', u'continu', u'isol', u'remot', u'town'] [u'chechen', u'leader', u'injur', u'bomb', u'blast', u'report'] [u'charg', u'scandal'] [u'french', u'trigger', u'montoya', u'say', u'head'] [u'french', u'network', u'news', u'blunder'] [u'fritz', u'expect', u'bring', u'flood'] [u'fruit', u'coop', u'claim', u'hostil', u'takeov', u'undervalu'] [u'fume', u'spark', u'airport', u'area', u'evacu'] [u'generat', u'chang', u'gold', u'coast', u'holiday', u'maker'] [u'giant', u'panda', u'receiv', u'hero', u'welcom', u'china'] [u'gladston', u'airlin', u'passeng', u'number', u'hold', u'steadi'] [u'gold', u'coast', u'rent', u'rise', u'market', u'slow'] [u'govt', u'check', u'gallipoli', u'claim'] [u'govt', u'work', u'catchment', u'manag'] [u'grain', u'grower', u'associ', u'appoint', u'victorian'] [u'grant', u'open', u'struggl', u'volunt', u'group'] [u'green', u'issu', u'clearfel', u'altern'] [u'gulf', u'town', u'weather', u'cyclon'] [u'hackett', u'return', u'pool', u'ill'] [u'high', u'court', u'uphold', u'unlaw', u'sentenc'] [u'high', u'temperatur', u'fuel', u'teacher', u'action'] [u'hockeyroo', u'claim', u'seri', u'lead'] [u'hoddl', u'want', u'southampton', u'return'] [u'hostil', u'peopl', u'bear', u'smoke', u'studi'] [u'hous', u'financ', u'figur', u'fall'] [u'howard', u'happi', u'sensibl', u'growth', u'log'] [u'hundr', u'hurt', u'nigerian', u'leak'] [u'hunt', u'aussi', u'bush', u'bloke'] [u'indigen', u'land', u'claim', u'cultur', u'centr'] [u'indonesia', u'allow', u'aceh', u'elect', u'observ'] [u'inquest', u'begin', u'tourist', u'death'] [u'interst', u'hunt', u'perth', u'shoot'] [u'iran', u'warn', u'nuclear', u'blueprint'] [u'isra', u'soldier', u'charg', u'briton', u'shoot', u'death'] [u'israel', u'boycott', u'barrier', u'hear'] [u'israel', u'boycott', u'world', u'court', u'hear', u'barrier'] [u'jade', u'ivanisev', u'bow', u'milan'] [u'judg', u'reject', u'slash', u'legal', u'super'] [u'judg', u'decid', u'clark', u'rape', u'suit'] [u'barbi', u'split'] [u'korean', u'sport', u'czar', u'face', u'briberi', u'charg'] [u'kyogl', u'starter', u'good', u'behaviour', u'bond'] [u'labor', u'hope', u'retain', u'north', u'seat'] [u'latham', u'deni', u'split'] [u'eye', u'bafta', u'road', u'oscar'] [u'focus', u'bull', u'final', u'match'] [u'locust', u'outbreak', u'fear', u'gunnedah'] [u'maher', u'lead', u'gabba', u'rout', u'warrior'] [u'arrest', u'centrelink', u'stoush'] [u'assault', u'outsid', u'nightclub'] [u'manchest', u'sharehold', u'jockey', u'posit'] [u'front', u'court', u'parliament', u'jump'] [u'jail', u'murder', u'kid'] [u'jail', u'internet'] [u'lose', u'appeal', u'jail', u'sentenc'] [u'miss', u'ferguson'] [u'market', u'eye', u'leed', u'fifth', u'deadlin', u'loom'] [u'mawson', u'base', u'celebr', u'birthday'] [u'merchant', u'ship', u'close', u'strand', u'japanes', u'sailor'] [u'microsoft', u'window', u'code', u'leak', u'internet'] [u'milan', u'fire', u'embarrass'] [u'miss', u'wing', u'plane', u'crash'] [u'hasti', u'sugar', u'rescu', u'packag'] [u'murray', u'valley', u'trail', u'project', u'continu', u'despit'] [u'mysteri', u'diseas', u'corowa'] [u'indigen', u'offic', u'recruit'] [u'nightclub', u'owner', u'warn', u'assault'] [u'deliber', u'hospit'] [u'iraqi', u'elect', u'expect', u'rule', u'end'] [u'norway', u'find', u'mild', u'bird', u'strain', u'wild', u'duck'] [u'support', u'road', u'option'] [u'elector', u'roll', u'close', u'monday'] [u'justic', u'minist', u'prais', u'communiti', u'servic'] [u'brake', u'driver', u'overtim'] [u'move', u'super', u'chang'] [u'ohern', u'slip', u'second', u'davi', u'go'] [u'opera', u'ballet', u'compani', u'reject', u'merger', u'plan'] [u'pair', u'charg', u'knock', u'motorbik'] [u'palestinian', u'shoot', u'dead'] [u'penford', u'australia', u'downsiz', u'tamworth', u'plant'] [u'peter', u'lead', u'matilda'] [u'pig', u'roll'] [u'pittong', u'resid', u'concern', u'dump', u'site', u'talk'] [u'defend', u'super', u'backflip'] [u'visit', u'tasmania', u'north'] [u'polic', u'arrest', u'hotel', u'attack'] [u'polic', u'condemn', u'death'] [u'polic', u'hope', u'bust', u'plastic', u'surgeri'] [u'polic', u'sydney', u'shoot', u'arrest'] [u'polic', u'search', u'miss', u'yarram', u'woman'] [u'polic', u'urg', u'trucki', u'reject', u'drug'] [u'pont', u'back', u'warn', u'test', u'return'] [u'pont', u'cap', u'year', u'border', u'medal'] [u'pont', u'score', u'award'] [u'powel', u'rule', u'haiti', u'regim', u'chang'] [u'memori', u'attract', u'interst', u'tourist'] [u'profit', u'take', u'push', u'share'] [u'properti', u'owner', u'send', u'bill', u'error'] [u'protest', u'arrest', u'visit'] [u'public', u'bar', u'british', u'inquiri'] [u'rain', u'dampen', u'research'] [u'region', u'council', u'health', u'reform'] [u'rescu', u'group', u'check', u'rescu', u'vessel'] [u'resid', u'urg', u'grin', u'bear', u'grasshopp'] [u'resid', u'urg', u'vote', u'postal', u'referendum'] [u'resourc', u'stock', u'buoy', u'market'] [u'respond', u'virgin', u'blue', u'servic'] [u'rivkin', u'return', u'jail'] [u'push', u'super', u'chang'] [u'scientist', u'examin', u'possibl', u'resist'] [u'scientist', u'hail', u'clone', u'advanc'] [u'senat', u'consid', u'trade', u'deal', u'sugar', u'effect'] [u'seven', u'charg', u'cannabi', u'haul'] [u'sheedi', u'back', u'school', u'game'] [u'worker', u'kill', u'build', u'collaps'] [u'korea', u'approv', u'troop', u'iraq'] [u'snowi', u'defend', u'hope', u'weekend', u'protest'] [u'soldier', u'question', u'black', u'hawk', u'crash'] [u'speed', u'paint', u'stoush', u'vicroad', u'council'] [u'springborg', u'win', u'back', u'parti'] [u'stanwel', u'magnesium', u'plan', u'stay', u'backburn'] [u'state', u'urg', u'follow', u'suit', u'super'] [u'stem', u'cell', u'debat'] [u'steward', u'accept', u'reduct', u'impos', u'jockey'] [u'storm', u'lash', u'hunter', u'valley'] [u'strata', u'titl', u'report', u'hand', u'today'] [u'streak', u'promis', u'victori', u'bangladesh'] [u'strong', u'western', u'flight', u'servic'] [u'struggl', u'health', u'servic', u'offer', u'leav'] [u'oyster', u'fresh', u'luck'] [u'teacher', u'mistaken', u'space', u'cake'] [u'theme', u'park', u'seeker', u'hurt', u'africa'] [u'general', u'surviv', u'grenad', u'attack'] [u'town', u'move', u'elder'] [u'transport', u'problem', u'ancient', u'stone', u'obelisk', u'emerg'] [u'turkey', u'get', u'mix', u'human', u'right', u'report', u'card'] [u'dead', u'afghanistan', u'bomb', u'blast'] [u'back', u'iraq', u'poll', u'date'] [u'unemploy', u'figur', u'increas'] [u'union', u'critic', u'flight', u'cancel'] [u'militari', u'observ', u'kill', u'congo'] [u'upgrad', u'plan', u'histor', u'cinema'] [u'upgrad', u'plan', u'sport', u'grind', u'surfac'] [u'firm', u'buy', u'shale', u'compani'] [u'investig', u'iraq', u'mole', u'possibl'] [u'militari', u'polic', u'soldier', u'kill', u'iraq'] [u'seek', u'guantanamo', u'media'] [u'soldier', u'accus', u'aid', u'qaeda'] [u'spain', u'lose', u'booti', u'colombian', u'courtroom'] [u'close', u'consul', u'greec'] [u'valencia', u'real', u'win', u'home', u'record'] [u'valentin', u'rocki', u'council'] [u'polic', u'ethic', u'chief', u'quit'] [u'vow', u'follow', u'super', u'plan'] [u'vieri', u'culprit', u'juve', u'book', u'final', u'ticket'] [u'council', u'appoint', u'ombudsman'] [u'warn', u'bushrang'] [u'warn', u'comeback', u'gather', u'steam'] [u'warwick', u'brown', u'water'] [u'warn', u'rail', u'disrupt'] [u'webster', u'captur', u'clubhous', u'lead'] [u'whitlam', u'push', u'vote', u'valu'] [u'woodward', u'deni', u'south', u'africa', u'coach'] [u'woodward', u'interest', u'coach', u'springbok'] [u'worker', u'discuss', u'safeti', u'colleagu', u'death'] [u'zaragoza', u'book', u'final', u'date', u'real'] [u'zimbabw', u'inflat', u'skyrocket'] [u'miss', u'ship', u'sink', u'turkey'] [u'govt', u'predict', u'budget', u'surplus'] [u'african', u'state', u'volunt', u'scrutini', u'peer'] [u'agassi', u'roddick', u'urg', u'drug'] [u'age', u'care', u'budget', u'agenda', u'howard', u'say'] [u'aid', u'research', u'add', u'inventor', u'hall', u'fame'] [u'alleg', u'robber', u'custodi'] [u'call', u'urgent', u'boost', u'ail', u'bulk', u'bill'] [u'anaesthetist', u'shortag', u'hit', u'mum'] [u'arab', u'languag', u'network', u'aim', u'polish', u'imag'] [u'bank', u'back', u'stay', u'rat'] [u'beatti', u'back', u'magnesium', u'plant', u'develop'] [u'bird', u'studi', u'find', u'high', u'fatal', u'rate'] [u'blast', u'kill', u'chechen', u'leader'] [u'bloodi', u'sunday', u'inquiri', u'hear', u'final', u'evid'] [u'bok', u'cash', u'boot', u'camp', u'tape'] [u'brack', u'govt', u'blame', u'doctor', u'shortag'] [u'bradford', u'good', u'panther'] [u'breakthrough', u'deal', u'seal', u'cyprus', u'uniti', u'talk'] [u'british', u'alarm', u'crop', u'trial'] [u'british', u'soldier', u'kill', u'southern', u'iraq'] [u'brown', u'concern', u'telstra', u'place', u'trade', u'deal'] [u'bush', u'appear', u'tighten', u'daytona', u'secur'] [u'bush', u'releas', u'nation', u'guard', u'file'] [u'chang', u'plan', u'amend'] [u'castro', u'ridicul', u'gaff', u'prone', u'bush'] [u'centrelink', u'say', u'mistak', u'grossli', u'exagger'] [u'chamber', u'drug', u'hear', u'thursday', u'report'] [u'china', u'execut', u'kill', u'peopl'] [u'china', u'push', u'ahead', u'gorg'] [u'china', u'shoot', u'moon', u'shoestr'] [u'china', u'queen', u'camplin'] [u'chocol', u'obsess', u'lead', u'physic', u'discoveri'] [u'christian', u'market', u'gibson', u'passion'] [u'cook', u'hold', u'cipo', u'stage'] [u'critic', u'attack', u'stanc', u'guantanamo', u'detent'] [u'crocodil', u'hunter', u'score', u'tourism', u'honour'] [u'crow', u'good', u'form', u'trial', u'match'] [u'cyclist', u'critic', u'impal', u'accid'] [u'cyprus', u'edg', u'closer', u'reunif'] [u'davi', u'say', u'regret', u'port', u'stephen'] [u'disappoint', u'firman', u'look', u'america', u'germani'] [u'dragon', u'humbl', u'rabbitoh', u'retain', u'shield'] [u'dragon', u'prim', u'chariti', u'clash'] [u'dull', u'caravaggio', u'paint', u'royal', u'collect'] [u'england', u'star', u'owen', u'accus', u'builder', u'huge', u'fraud'] [u'english', u'german', u'dutch', u'euro', u'hooligan', u'threat'] [u'essendon', u'recruit', u'swan'] [u'expect', u'high', u'nation', u'underway'] [u'fijian', u'polic', u'poverti', u'line'] [u'filipino', u'attempt', u'kiss'] [u'flame', u'book', u'grand', u'final'] [u'flame', u'book', u'grand', u'final', u'appear'] [u'charg', u'dope', u'scandal', u'appear', u'court'] [u'goodby', u'slaughtervill', u'hello', u'veggievill'] [u'health', u'inquiri', u'prioriti', u'ncoss'] [u'heat', u'upset', u'rower', u'olymp', u'aspir'] [u'hick', u'lawyer', u'question', u'rumsfeld', u'guantanamo'] [u'howard', u'visit', u'liber', u'parti', u'faith', u'tasmania'] [u'indian', u'govern', u'okay', u'pakistan', u'tour'] [u'indian', u'troop', u'kill', u'suspect', u'rebel', u'kashmir'] [u'indonesia', u'free', u'seamen', u'take', u'arm', u'pirat'] [u'injur', u'nalbandian', u'miss', u'bueno', u'air'] [u'iran', u'readi', u'export', u'nuclear', u'fuel', u'foreign', u'minist'] [u'irish', u'lover', u'give', u'wed', u'cart', u'blanch'] [u'israel', u'reject', u'australian', u'livestock', u'shipment'] [u'itali', u'fold', u'self', u'belief', u'ella'] [u'frazier', u'arrest', u'assault', u'charg', u'report'] [u'judg', u'want', u'jackson', u'trial', u'year'] [u'kean', u'warn', u'unit', u'young', u'gun', u'start', u'fire'] [u'king', u'good', u'breaker'] [u'kingz', u'upset', u'south', u'win', u'glori', u'marconi'] [u'labor', u'see', u'case', u'iraq', u'inquiri', u'build'] [u'labor', u'strengthen', u'poll', u'posit'] [u'liber', u'candid', u'resign', u'drug', u'claim'] [u'lloyd', u'boot', u'bomber', u'practic'] [u'lone', u'sailor', u'pluck', u'remot', u'southern', u'ocean'] [u'maher', u'lead', u'gabba', u'rout', u'warrior'] [u'guilti', u'chequ', u'fraud'] [u'remand', u'charlevill', u'murder'] [u'medico', u'push', u'safe', u'messag', u'valentin'] [u'mercuri', u'rise', u'record', u'level', u'adelaid'] [u'nasa', u'need', u'better', u'shuttl', u'plan', u'auditor', u'say'] [u'newcastl', u'toughen', u'plagiar', u'polici'] [u'springbok', u'coach', u'white', u'avoid', u'error'] [u'confid', u'rail', u'teeth', u'problem', u'iron'] [u'seek', u'detail', u'militari', u'plan'] [u'launch', u'yolngu', u'cultur', u'cours'] [u'fossil', u'unlock', u'mysteri', u'rare', u'rock'] [u'phelp', u'snap', u'gold', u'florida'] [u'philippoussi', u'pull', u'rotterdam', u'tournament'] [u'face', u'pressur', u'super', u'scheme'] [u'attitud', u'offens', u'communiti'] [u'polic', u'concern', u'miss', u'bald', u'hill'] [u'pope', u'call', u'courtship', u'chastiti'] [u'real', u'valdano', u'fin', u'lose', u'cool'] [u'roddick', u'agassi', u'advanc', u'jose', u'semi', u'final'] [u'russian', u'politician', u'say', u'kidnap'] [u'safina', u'face', u'struggl', u'clijster', u'pari', u'semi'] [u'extrem', u'alert', u'temperatur', u'soar'] [u'schumach', u'warn', u'william', u'renault', u'threat'] [u'scientist', u'fight', u'chocol', u'lover', u'worst', u'nightmar'] [u'scientist', u'warn', u'coral', u'reef', u'threat'] [u'search', u'fail', u'miss', u'brisban'] [u'singh', u'miss'] [u'snowstorm', u'blitz', u'greec', u'turkey'] [u'nation', u'harbour', u'doubt', u'merger'] [u'spanish', u'guantanamo', u'prison', u'send', u'home', u'face'] [u'taiwan', u'presidenti', u'candid', u'face'] [u'texa', u'church', u'tri', u'gun', u'rose', u'valentin'] [u'person', u'charg', u'perth', u'newsag', u'shoot'] [u'tiger', u'crippl', u'victoria', u'final', u'hop'] [u'train', u'action', u'delay', u'expect'] [u'union', u'sit', u'tight', u'amid', u'hydro', u'restructur'] [u'union', u'warn', u'railway', u'strike', u'action'] [u'free', u'bloodi', u'iraq', u'jailbreak'] [u'firm', u'buy', u'compani'] [u'give', u'cross', u'saddam', u'visit'] [u'issu', u'warn', u'north', u'korea', u'nuclear', u'program'] [u'launch', u'arab', u'satellit', u'station'] [u'soldier', u'kill', u'injur', u'land'] [u'trade', u'deficit', u'hit', u'record', u'high'] [u'valentin', u'univers', u'love', u'celebr'] [u'charg', u'onlin', u'law'] [u'victoria', u'brace', u'scorcher'] [u'webster', u'extend', u'port', u'stephen', u'lead'] [u'dead', u'road', u'accid'] [u'kill', u'earthquak', u'rock', u'northern', u'pakistan'] [u'abbott', u'deni', u'hurt', u'super', u'backflip'] [u'abbott', u'lobbi', u'senat', u'support', u'medicar'] [u'account', u'brisban', u'airport', u'incid', u'differ'] [u'govt', u'mull', u'relax', u'plan', u'control'] [u'govt', u'land', u'decis'] [u'activist', u'plan', u'commit', u'ceremoni'] [u'activist', u'tight', u'woodchip', u'shipment', u'protest'] [u'arsenal', u'henri', u'rule', u'chelsea', u'match'] [u'aussi', u'johnson', u'japanes', u'cross', u'countri'] [u'aussi', u'shrug', u'lanka', u'secur', u'fear'] [u'women', u'kiwi', u'rise', u'bowl', u'seri'] [u'author', u'downplay', u'brisban', u'airport', u'incid'] [u'bichel', u'strike', u'earli', u'warrior', u'chase', u'bull'] [u'bird', u'toll', u'hit'] [u'birmingham', u'frustrat', u'sunderland'] [u'british', u'govt', u'consid', u'split', u'report'] [u'british', u'govt', u'step', u'scare', u'campaign', u'cigarett'] [u'brit', u'origin', u'beagl'] [u'bush', u'rais', u'spectr', u'ballist', u'missil', u'attack'] [u'celtic', u'edg', u'closer', u'titl', u'ranger', u'drop', u'point'] [u'china', u'shop', u'centr', u'kill'] [u'cityrail', u'deni', u'driver', u'leav', u'idl'] [u'clijster', u'pierc', u'pari', u'open', u'final'] [u'complac', u'fulham', u'lucki', u'surviv'] [u'consortium', u'land', u'railway', u'contract'] [u'coupl', u'charg', u'child', u'cruelti'] [u'crew', u'bring', u'adelaid', u'blaze', u'control'] [u'davi', u'storm', u'port', u'stephen'] [u'death', u'toll', u'rise', u'moscow', u'pool', u'tragedi'] [u'disendors', u'liber', u'candid', u'deni', u'drug', u'link'] [u'dupui', u'win', u'milan', u'indoor', u'final'] [u'eagl', u'lift', u'drought', u'plagu', u'dali', u'lead'] [u'earnhardt', u'take', u'pole', u'daytona'] [u'case', u'steal', u'window', u'code'] [u'fishermen', u'step', u'access', u'campaign'] [u'juda', u'priest', u'drummer', u'jail', u'attempt'] [u'tour', u'champ', u'pantani', u'dead'] [u'afghan', u'demin', u'kill', u'suspect', u'taliban'] [u'franc', u'win', u'nation', u'open'] [u'french', u'leader', u'monaco', u'crash', u'home', u'defeat'] [u'gaza', u'settler', u'begin', u'protest', u'march', u'jerusalem'] [u'want', u'wider', u'pool', u'honour', u'list'] [u'ghan', u'put', u'spotlight', u'katherin', u'train', u'station'] [u'gibson', u'deni', u'passion', u'film', u'anti', u'semit'] [u'govern', u'hit', u'school', u'fund', u'claim'] [u'greenpeac', u'activist', u'arrest', u'woodchip', u'protest'] [u'heatwav', u'blame', u'melbourn', u'blackout'] [u'hickss', u'lawyer', u'condemn', u'appeal', u'process'] [u'ierodiaconou', u'thwart', u'camplin', u'titl', u'charg'] [u'injur', u'venus', u'pull', u'antwerp', u'event'] [u'investig', u'dismiss', u'qanta', u'near', u'miss'] [u'iran', u'nuclear', u'fuel', u'sale'] [u'iraq', u'prison', u'raid', u'prompt', u'border', u'control', u'plea'] [u'iraq', u'step', u'border', u'control'] [u'isra', u'bad', u'injur', u'firework', u'aviv'] [u'japanes', u'deep', u'dive', u'submarin', u'target', u'activ'] [u'jordan', u'charg', u'attack', u'plot'] [u'kabir', u'spar', u'bangladesh', u'blush', u'tour', u'open'] [u'labor', u'back', u'educ', u'union', u'campaign', u'govt'] [u'late', u'wicket', u'doom', u'redback', u'chase'] [u'late', u'wicket', u'doom', u'redback', u'chase'] [u'lawyer', u'hour', u'bill', u'scrutini'] [u'lazio', u'beat', u'empoli', u'fourth', u'seri'] [u'local', u'council', u'back', u'plan', u'prison'] [u'log', u'protest', u'releas', u'jail'] [u'die', u'perth', u'beach'] [u'injur', u'coal', u'termin', u'accid'] [u'life', u'support', u'nightclub', u'brawl'] [u'marathon', u'kiss', u'take', u'italian', u'valentin', u'breath', u'away'] [u'matern', u'love', u'affect', u'brain', u'like', u'romanc', u'studi'] [u'stage', u'winner', u'cipo', u'tour', u'plea'] [u'melbourn', u'swelter', u'night'] [u'candid', u'pull', u'iran', u'elect'] [u'mother', u'blame', u'polic', u'son', u'death'] [u'north', u'east', u'catch', u'wind', u'storm'] [u'govern', u'accus', u'payrol', u'backflip'] [u'obituari', u'maverick', u'climber', u'pantani', u'admir', u'despit'] [u'opinion', u'poll', u'heavi', u'swing', u'govt'] [u'pakistan', u'name', u'businessman', u'nuclear', u'probe'] [u'parmalat', u'investig', u'probe', u'swiss', u'bank', u'account'] [u'perth', u'train', u'chao', u'continu'] [u'senior', u'minist', u'deserv', u'rise', u'democrat'] [u'power', u'failur', u'caus', u'sewag', u'spill', u'adelaid'] [u'power', u'return', u'victorian', u'home'] [u'power', u'stay', u'second', u'striker', u'slip'] [u'press', u'fuel', u'mark', u'waugh', u'specul'] [u'probe', u'order', u'death', u'tragic', u'genius', u'pantani'] [u'protea', u'head', u'world', u'domin', u'claim', u'coach'] [u'protest', u'stall', u'woodchip', u'shipment'] [u'roddick', u'face', u'fish', u'jose', u'final'] [u'slight', u'cooler', u'record', u'scorcher'] [u'celebr', u'year', u'cricket'] [u'senior', u'burma', u'democraci', u'leader', u'move', u'hous'] [u'smith', u'england', u'squad', u'portug', u'friend'] [u'snowstorm', u'grind', u'plan', u'greec'] [u'south', u'australia', u'brace', u'scorch', u'weather'] [u'sydney', u'triathlon', u'sensat', u'seear'] [u'tarantino', u'head', u'cann', u'film', u'festiv', u'juri'] [u'taxpay', u'fund', u'sugar', u'industri', u'relief'] [u'teen', u'impal', u'sydney', u'fenc'] [u'bilbao', u'hold', u'draw', u'basqu', u'derbi'] [u'unit', u'knock', u'citi'] [u'thailand', u'report', u'sixth', u'death', u'bird'] [u'theron', u'win', u'berlin', u'prize', u'monster'] [u'timmon', u'put', u'taipan', u'past', u'croc'] [u'tour', u'franc', u'champ', u'pantani', u'dead'] [u'trucki', u'rescu', u'trap', u'burn', u'vehicl'] [u'tunisia', u'clinch', u'african', u'nation', u'glori'] [u'kill', u'ultralight', u'crash'] [u'offer', u'releas', u'danish', u'guantanamo', u'detaine'] [u'south', u'korea', u'troop', u'reloc', u'talk', u'fail'] [u'vail', u'want', u'review', u'wake', u'super', u'cut'] [u'valentin', u'arous', u'bizarr', u'act', u'love'] [u'venus', u'chase', u'million', u'dollar', u'plus', u'racket', u'antwerp'] [u'communiti', u'group', u'invit', u'share', u'crime', u'asset'] [u'watchdog', u'seek', u'assur', u'media', u'safeti'] [u'welsh', u'renaiss', u'continu', u'scot'] [u'zimbabw', u'polic', u'shut', u'valentin', u'march'] [u'rail', u'servic', u'cancel', u'sydney'] [u'abattoir', u'happi', u'asylum', u'seeker', u'decis'] [u'defend', u'sport', u'coverag'] [u'seek', u'extra'] [u'abernethi', u'hous', u'plan'] [u'cabinet', u'meet', u'belconnen'] [u'govt', u'say', u'heater', u'subsidi', u'stuff'] [u'share', u'sampl'] [u'airport', u'revamp', u'plan', u'take'] [u'servic', u'resum', u'year', u'break'] [u'airservic', u'chang'] [u'anti', u'psychot', u'drug', u'help', u'stutter', u'expert'] [u'argentina', u'power', u'past', u'zealand', u'seven', u'final'] [u'wednesday', u'survivor', u'offer', u'time', u'remind'] [u'asio', u'boss', u'defend', u'handl', u'brigitt', u'case'] [u'dupui', u'final', u'winner'] [u'aurora', u'target', u'rural', u'job'] [u'author', u'question', u'heat', u'competit'] [u'author', u'warn', u'risk'] [u'banana', u'grower', u'demand', u'philippin', u'continu'] [u'bangladesh', u'charg', u'harar'] [u'bash', u'put', u'hospit'] [u'basslink', u'oppon', u'ralli', u'cabl'] [u'beatti', u'say', u'howard', u'abandon', u'sugar', u'industri'] [u'beatti', u'talk', u'sugar', u'industri', u'issu'] [u'beef', u'price', u'tip', u'stay', u'bullish'] [u'bendigo', u'bank', u'announc', u'profit', u'boost'] [u'cruis', u'ship', u'head', u'albani'] [u'blackout', u'water', u'loss', u'spark', u'resid', u'anger'] [u'blaze', u'engulf', u'condobolin', u'school'] [u'bluescop', u'make', u'invest'] [u'boy', u'death', u'prompt', u'redfern', u'riot'] [u'brogden', u'aim', u'deni', u'crimin', u'right', u'vote'] [u'break', u'knuckl', u'end', u'blewett', u'season'] [u'buff', u'strip', u'undi', u'ralli'] [u'carr', u'urg', u'calm', u'redfern', u'riot'] [u'central', u'west', u'storm', u'leav', u'trail', u'damag'] [u'charg', u'expect', u'brawl'] [u'china', u'accus', u'sell', u'nuke', u'design', u'pakistan'] [u'china', u'pump', u'moon', u'explor'] [u'clijster', u'whip', u'pierc', u'pari', u'titl'] [u'coordin', u'energi', u'market', u'urg', u'moomba', u'blast'] [u'council', u'back', u'hotel', u'convent', u'centr', u'plan'] [u'cours', u'urg', u'girl', u'scienc'] [u'court', u'hear', u'woman', u'lock', u'kid', u'degre'] [u'cowboy', u'come', u'trounc', u'comet'] [u'croc', u'coach', u'look', u'focus', u'weekend', u'loss'] [u'csiro', u'staff', u'concern', u'direct'] [u'prepar', u'influx', u'student'] [u'dali', u'snap', u'drought'] [u'partnership', u'catch'] [u'date', u'map', u'hamper', u'firefight', u'inquest', u'hear'] [u'deadlin', u'loom', u'comment', u'chang', u'film', u'bodi'] [u'dead', u'fire', u'chines', u'templ', u'store'] [u'diver', u'help', u'pest'] [u'water', u'concern'] [u'doomsday', u'cult', u'raid', u'leader', u'verdict', u'near'] [u'doubl', u'injuri', u'blow', u'eagl'] [u'earnhardt', u'join', u'daytona', u'winner'] [u'elder', u'ensur', u'calm', u'redfern'] [u'elit', u'york', u'file', u'bankruptci'] [u'elliott', u'hodg', u'centuri', u'bushrang', u'charg'] [u'england', u'crush', u'itali', u'nation'] [u'demand', u'roadwork', u'eros'] [u'investig', u'sewag', u'spill'] [u'eriksson', u'deni', u'england', u'quit', u'rumour'] [u'ethanol', u'fuel', u'council', u'trial'] [u'feder', u'top', u'seed', u'rotterdam'] [u'govt', u'rule', u'airport', u'land', u'bypass'] [u'nuke', u'wast', u'plan', u'riski', u'committe'] [u'polic', u'injur', u'redfern', u'riot'] [u'threat', u'remain', u'central', u'victoria'] [u'focus', u'win', u'final', u'say', u'croc', u'coach'] [u'foundat', u'form', u'busi', u'plan'] [u'fuel', u'truck', u'explos', u'kill', u'uganda', u'polic'] [u'gardin', u'injuri', u'blow', u'eagl'] [u'plant', u'work', u'start', u'juli'] [u'good', u'news', u'worker', u'ail', u'food', u'distribut'] [u'govt', u'accus', u'hoard', u'iraq', u'report'] [u'govt', u'accus', u'withhold', u'bulk', u'bill', u'figur'] [u'govt', u'backbench', u'issu', u'away'] [u'govt', u'satisfi', u'telstra', u'oversea', u'outsourc'] [u'govt', u'blame', u'place', u'shortag'] [u'grape', u'bless', u'barossa', u'valley'] [u'green', u'quiet', u'atsic', u'leader', u'attack'] [u'group', u'keen', u'residenti', u'colleg', u'plan'] [u'heat', u'put', u'break', u'hill', u'student', u'hospit'] [u'heat', u'take', u'toll', u'public', u'ambul', u'worker'] [u'hockeyroo', u'whitewash', u'south', u'africa'] [u'hollywood', u'honour', u'geek', u'oscar', u'ceremoni'] [u'hospit', u'staff', u'highlight', u'fund', u'woe'] [u'hubbl', u'telescop', u'catch', u'glimps', u'unknown'] [u'hundr', u'turn', u'aspir', u'countri', u'singer'] [u'india', u'pakistan', u'restart', u'kashmir', u'talk'] [u'industri', u'disput', u'hit', u'perth', u'train', u'servic'] [u'inquest', u'begin', u'indonesian', u'fisherman', u'death'] [u'iraq', u'intellig', u'inquiri', u'inevit', u'labor'] [u'iraqi', u'want', u'saddam', u'status'] [u'iraq', u'polic', u'captur', u'saddam', u'associ'] [u'jaksch', u'win', u'tour'] [u'jaksch', u'win', u'tour', u'cook', u'perform'] [u'jobless', u'rate', u'southern'] [u'job', u'head', u'oversea', u'telstra', u'outsourc'] [u'juve', u'titl', u'hunt'] [u'kewel', u'viduka', u'miss', u'venezuela', u'friend'] [u'kewel', u'viduka', u'miss', u'venezuela', u'friend'] [u'kimberley', u'snake', u'help', u'anti', u'venom', u'fight'] [u'kuwait', u'approv', u'probe', u'fuel', u'sale', u'armi'] [u'labor', u'attack', u'garden', u'cost'] [u'labor', u'question', u'neutral', u'inquiri'] [u'lack', u'evid', u'end', u'bali', u'child'] [u'latham', u'taunt', u'howard', u'super', u'sacrific'] [u'chang', u'trigger', u'buyback', u'centr'] [u'lismor', u'host', u'super', u'council', u'hear'] [u'live', u'export', u'resum', u'portland'] [u'liverpool', u'councillor', u'claim', u'deceit', u'oasi'] [u'look', u'forward', u'pakistan', u'say', u'ganguli'] [u'malaysian', u'teenag', u'enter', u'boot', u'camp'] [u'charg', u'polic', u'station', u'blaze'] [u'charg', u'rockhampton', u'stab'] [u'charg', u'murder', u'brawl'] [u'extradit', u'brisban', u'child', u'death'] [u'face', u'charg', u'fatal', u'accid'] [u'hospitalis', u'sydney', u'machet', u'attack'] [u'manilla', u'council', u'seek', u'merger', u'polici'] [u'court', u'attempt', u'speed', u'traffic'] [u'court', u'fatal', u'road', u'crash'] [u'martin', u'say', u'wait', u'pension'] [u'await', u'busi', u'plan', u'respons'] [u'minist', u'float', u'rise', u'super'] [u'minor', u'parti', u'polit', u'rise'] [u'mistak', u'lead', u'phone', u'book', u'scrap'] [u'moomba', u'output', u'rise'] [u'age', u'care', u'bed', u'northern'] [u'wait', u'welcom', u'super'] [u'wait', u'hear', u'health', u'servic', u'debt', u'plan'] [u'appoint', u'chairman'] [u'chairman', u'resign'] [u'blood', u'wheatbelt', u'develop', u'commiss'] [u'newcastl', u'mayor', u'resist', u'wast', u'plan'] [u'zealand', u'target', u'pollock', u'world', u'record', u'drop'] [u'korean', u'leader', u'threaten', u'birthday'] [u'north', u'west', u'melt', u'februari', u'record'] [u'govt', u'announc', u'project'] [u'opposit', u'say', u'neglect', u'riot'] [u'govt', u'back', u'home', u'buyer', u'grant', u'boost'] [u'govt', u'urg', u'scrap', u'payrol'] [u'lament', u'nation', u'tourism', u'award'] [u'senat', u'support', u'increas', u'militari', u'presenc'] [u'dead', u'hundr', u'evacu', u'sever', u'storm', u'hit'] [u'ongo', u'tension', u'help', u'fuel', u'riot', u'academ', u'say'] [u'onlin', u'bank', u'come', u'mornington'] [u'minor', u'chang', u'plan', u'festival'] [u'pakistan', u'india', u'begin', u'histor', u'talk'] [u'pantani', u'magistr', u'dismiss', u'suicid', u'talk'] [u'parliament', u'condemn', u'anti', u'semit', u'incid'] [u'parliament', u'hous', u'hire', u'extra', u'secur'] [u'payris', u'privat', u'nurs', u'put', u'pressur'] [u'pearl', u'compani', u'fin', u'diver', u'death'] [u'photograph', u'ban', u'parliament'] [u'pine', u'sale', u'plan', u'promt', u'govt', u'talk'] [u'plan', u'video', u'tackl', u'domest', u'violenc'] [u'deni', u'inact', u'famili', u'assist'] [u'polic', u'investig', u'home', u'invas'] [u'poor', u'children', u'depriv', u'basic', u'cancer', u'care'] [u'pregnant', u'women', u'tell', u'expect', u'interst', u'deliveri'] [u'pressley', u'penalti', u'earn', u'heart', u'point'] [u'probe', u'begin', u'north', u'industri', u'accid'] [u'probe', u'continu', u'stink', u'wast', u'pond'] [u'probe', u'launch', u'dalmeni', u'home', u'claim'] [u'probe', u'launch', u'alcoa', u'industri', u'unrest'] [u'properti', u'invest', u'slow'] [u'public', u'servant', u'trial', u'rape', u'ethic'] [u'push', u'rural', u'youth', u'job', u'boost'] [u'camel', u'industri', u'explor', u'middl', u'east', u'market'] [u'question', u'rais', u'andamooka', u'water', u'suppli'] [u'rain', u'bring', u'locust', u'threat'] [u'rain', u'close', u'goldfield', u'busi'] [u'real', u'scrape', u'gasp', u'draw', u'valencia'] [u'report', u'eas', u'council', u'tension'] [u'respit', u'care', u'centr', u'open', u'cooma'] [u'rey', u'doubl', u'send', u'arsenal'] [u'rider', u'lead', u'tribut', u'fall', u'genius', u'pantani'] [u'risdon', u'lock', u'end'] [u'roddick', u'outlast', u'fish', u'claim', u'jose', u'crown'] [u'rodeo', u'centr', u'plan', u'move', u'closer', u'realiti'] [u'roma', u'trial', u'region', u'youth', u'mentor', u'scheme'] [u'rumour', u'ahead', u'pantani', u'autopsi'] [u'russia', u'launch', u'pool', u'collaps', u'probe'] [u'sandler', u'barrymor', u'offic', u'date'] [u'sport', u'urg', u'reconsid', u'weather', u'polici'] [u'search', u'suspend', u'miss', u'diver'] [u'sewag', u'plant', u'death', u'spark', u'strike', u'medic', u'care'] [u'solicitor', u'accus', u'receiv', u'compo', u'work'] [u'sale', u'hail', u'posit'] [u'springborg', u'claim', u'strong', u'support', u'coalit'] [u'lankan', u'fight', u'australia'] [u'stone', u'fruit', u'stew', u'heatwav'] [u'storm', u'lash', u'north', u'east', u'victoria'] [u'storm', u'batter', u'gunnedah', u'armidal'] [u'student', u'price', u'univers', u'opposit'] [u'supplier', u'consid', u'dairi', u'firm', u'list'] [u'sydney', u'commut', u'chao', u'continu'] [u'sydney', u'train', u'chao', u'continu', u'week', u'railcorp'] [u'tafe', u'head', u'say', u'cours', u'complaint'] [u'govt', u'urg', u'rethink', u'water', u'polici'] [u'thorp', u'play', u'phelp', u'rivalri'] [u'timber', u'compani', u'seek', u'damag', u'greenpeac'] [u'iraqi', u'baath', u'parti', u'member', u'catch', u'report'] [u'tourism', u'honour', u'whitsunday', u'busi'] [u'torchlight', u'oper', u'generat', u'oppn', u'concern'] [u'tourism', u'award', u'cave', u'attract'] [u'tuvalu', u'prepar', u'disappear', u'king', u'tide'] [u'iraqi', u'kill', u'anti', u'attack'] [u'union', u'angri', u'jail', u'staff', u'level'] [u'kill', u'uganda', u'crash'] [u'commit', u'june', u'handov'] [u'soldier', u'kill', u'baghdad', u'bomb', u'blast'] [u'soldier', u'arrest', u'iraqi', u'town', u'mayor'] [u'victim', u'prison', u'parol'] [u'viduka', u'face', u'socceroo'] [u'vietnam', u'report', u'bird', u'case'] [u'opposit', u'air', u'broom', u'school', u'concern'] [u'warn', u'deni', u'know', u'alleg', u'match', u'fixer'] [u'warn', u'face', u'controversi'] [u'warrior', u'sight', u'inning', u'upset'] [u'waugh', u'bow', u'grace'] [u'weather', u'bureau', u'fail', u'heat', u'riverland'] [u'weir', u'trump', u'ring', u'director', u'bafta'] [u'wheat', u'board', u'releas', u'winter', u'price'] [u'wildcat', u'hold', u'court', u'alic', u'spring'] [u'woman', u'drown', u'rushworth'] [u'woman', u'gang', u'bash', u'rob', u'alburi'] [u'wonderland', u'close'] [u'work', u'begin', u'water', u'pipelin'] [u'abbott', u'defend', u'privat', u'health', u'insur', u'rebat'] [u'fire', u'chief', u'drop', u'inquiri', u'bombshel'] [u'oppn', u'refer', u'adopt', u'law'] [u'adelaid', u'christian', u'leader', u'movi', u'preview'] [u'age', u'care', u'centr', u'resid', u'walk', u'condit'] [u'alcohol', u'inhal', u'doctor', u'worri'] [u'ancient', u'tree', u'hous', u'develop'] [u'anderson', u'defend', u'airspac', u'chang'] [u'anger', u'iraq', u'weapon', u'report', u'leak'] [u'french', u'govern', u'figur', u'convict'] [u'armi', u'apologis', u'soldier', u'east', u'timor', u'inquiri'] [u'asic', u'suspend', u'rivkin', u'medic', u'ground'] [u'athlet', u'legend', u'shirley', u'strickland', u'die'] [u'aussi', u'chase', u'run', u'lanka'] [u'australian', u'cycl', u'play', u'dope', u'code', u'concern'] [u'aziz', u'spearhead', u'bangladesh', u'victori'] [u'backbench', u'revolt', u'veteran', u'benefit'] [u'ballot', u'paper', u'post', u'despit', u'delay'] [u'basslink', u'protest', u'meet', u'union', u'cabl'] [u'bathhous', u'plan', u'drawn', u'object'] [u'beatti', u'claim', u'breakthrough', u'sugar', u'talk'] [u'beer', u'run', u'flood', u'birdsvill'] [u'reserv', u'surat', u'basin'] [u'bird', u'return', u'thailand'] [u'bluescop', u'steel', u'eye', u'firm'] [u'bolger', u'stay', u'natslib', u'merger', u'debat'] [u'boost', u'south', u'west', u'level'] [u'boundari', u'commiss', u'hear', u'merger', u'evid'] [u'brack', u'order', u'juvenil', u'justic', u'probe'] [u'britain', u'warn', u'saudi', u'terror', u'attack'] [u'bunburi', u'femal', u'harbour', u'master'] [u'busi', u'bash', u'latham', u'stanc'] [u'businessman', u'plead', u'guilti', u'drug', u'charg'] [u'resourc', u'protect', u'great', u'ocean'] [u'cattl', u'buffalo', u'herd', u'free'] [u'childcar', u'centr', u'lock', u'babi', u'insid'] [u'china', u'trade', u'mission', u'seek', u'olymp', u'contract'] [u'chines', u'internet', u'writer', u'charg', u'subvers'] [u'club', u'blame', u'poki', u'curb', u'develop'] [u'consid', u'beatti', u'elect', u'bypass'] [u'communiti', u'foundat', u'rais', u'fund'] [u'confer', u'attack', u'greenhous', u'problem'] [u'cooma', u'facelift'] [u'council', u'offer', u'youth', u'traineeship'] [u'council', u'play', u'convent', u'centr', u'delay'] [u'council', u'worri', u'rail', u'plan'] [u'custom', u'offic', u'intercept', u'glove', u'letter'] [u'dairi', u'firm', u'sharehold', u'list'] [u'dallaglio', u'doubt', u'scotland', u'clash'] [u'burst', u'fear', u'allay'] [u'burst', u'fear', u'prompt', u'evacu', u'town'] [u'dept', u'plan', u'review', u'fish', u'boat'] [u'disney', u'reject', u'comcast', u'takeov'] [u'donnelli', u'waratah', u'burk', u'injuri'] [u'doubt', u'cast', u'farm', u'buyout', u'plan', u'sugar', u'industri'] [u'doubt', u'rais', u'plan', u'stop', u'prison', u'vote'] [u'drop', u'centr', u'hop', u'reopen', u'soon'] [u'dyson', u'neck', u'knock', u'red', u'recal', u'heenan'] [u'environ', u'dept', u'get', u'whiff', u'wast', u'plant', u'woe'] [u'ethanol', u'refineri', u'plan', u'gather', u'pace'] [u'mobil', u'exec', u'take', u'woodsid'] [u'famili', u'homeless', u'fall', u'patterson'] [u'famili', u'sue', u'shock', u'father', u'death'] [u'farmer', u'salvo', u'silo'] [u'fear', u'diver', u'take', u'shark'] [u'feral', u'pig', u'threaten', u'cattl', u'council'] [u'damag', u'queanbeyan', u'club'] [u'firefight', u'quick', u'respond', u'kebab', u'shop', u'blaze'] [u'femal', u'indigen', u'minist', u'start'] [u'flood', u'bring', u'volunt'] [u'flood', u'toll', u'hotel', u'rail', u'line'] [u'forecast', u'tip', u'cooler', u'month', u'ahead'] [u'forum', u'hear', u'global', u'impact', u'tourism'] [u'grab', u'wnbl', u'coach', u'gong'] [u'franc', u'mull', u'peac', u'forc', u'haiti'] [u'freeman', u'reliev', u'limelight'] [u'free', u'trade', u'deal', u'good', u'region', u'report'] [u'fruit', u'picker', u'aplenti', u'need', u'goulburn', u'valley'] [u'funer', u'farewel', u'plane', u'crash', u'victim'] [u'futur', u'age', u'care', u'industri', u'question'] [u'gaze', u'rychart', u'tucker', u'free', u'agent', u'list'] [u'gladston', u'council', u'reject', u'land', u'offer'] [u'gold', u'deposit', u'better', u'think'] [u'govt', u'deni', u'leak', u'iraq', u'report'] [u'greec', u'olympian', u'arm', u'escort'] [u'green', u'light', u'plant'] [u'green', u'see', u'corner'] [u'green', u'contest', u'wagga', u'council', u'poll'] [u'group', u'stake', u'spot', u'nativ', u'titl', u'claim'] [u'group', u'meet', u'marina', u'pollut'] [u'group', u'tackl', u'mangrov', u'dieback'] [u'halliburton', u'suspend', u'iraq', u'food'] [u'hansen', u'appoint', u'black', u'assist'] [u'heat', u'take', u'toll', u'england', u'resid'] [u'hobart', u'investig'] [u'hous', u'price', u'tip', u'stabilis'] [u'howard', u'accept', u'famili', u'payment', u'problem'] [u'howard', u'hit', u'chang'] [u'howard', u'seek', u'uniti', u'super', u'split'] [u'hunter', u'win', u'sydney'] [u'hutchison', u'lead', u'higher'] [u'hutchison', u'share', u'leap', u'strong', u'sale'] [u'inquest', u'launch', u'griffith', u'shoot', u'death'] [u'iron', u'project', u'promis', u'port', u'hedland', u'boost'] [u'japan', u'probe', u'second', u'report', u'bird', u'case'] [u'jimmi', u'littl', u'undergo', u'kidney', u'transplant'] [u'landhold', u'plead', u'guilti', u'clear', u'charg'] [u'larkham', u'half', u'blue', u'clash'] [u'launceston', u'near', u'miss', u'forc', u'safeti', u'chang'] [u'lead', u'bull', u'fightback'] [u'lawyer', u'meet', u'wine', u'grower', u'disput'] [u'leaki', u'tanker', u'ban', u'sydney'] [u'leed', u'appeal', u'australia', u'viduka'] [u'lib', u'reject', u'nat', u'merger', u'idea'] [u'liverpool', u'councillor', u'admit', u'standard', u'breach'] [u'long', u'run', u'bush', u'blaze', u'near'] [u'mail', u'put', u'blue'] [u'charg', u'sydney', u'sieg'] [u'fear', u'tribal', u'curs', u'court', u'stop', u'payback'] [u'market', u'quiet', u'presid'] [u'matilda', u'coach', u'challeng', u'soccer', u'star'] [u'mayor', u'upbeat', u'despit', u'meet', u'minist'] [u'meet', u'aim', u'hospit', u'rescu', u'plan', u'stalem'] [u'million', u'spend', u'port', u'hedland', u'revamp'] [u'minist', u'invit', u'input', u'zone', u'legisl'] [u'mitez', u'get', u'govt', u'fund', u'pledg'] [u'moor', u'skipper', u'socceroo'] [u'muggi', u'weather', u'predict', u'perth'] [u'time', u'gympi', u'gold', u'offer'] [u'motorcyclist', u'face', u'speed', u'charg'] [u'murali', u'hop', u'race', u'warn', u'wicket', u'mark'] [u'mysteri', u'light', u'see'] [u'share', u'chairman'] [u'nation', u'plan', u'seek', u'wild', u'woe'] [u'nat', u'menkin', u'oust', u'burdekin'] [u'nebo', u'mayor'] [u'charter', u'tower', u'drive', u'push', u'fund'] [u'korea', u'mark', u'leader', u'birthday'] [u'plan', u'raze', u'riot', u'area'] [u'consid', u'hair', u'rais', u'boozer'] [u'court', u'refus', u'tribal', u'punish'] [u'onesteel', u'profit', u'slide'] [u'opera', u'rock', u'motorhead', u'hallow', u'stage'] [u'organis', u'consid', u'cancel', u'troubl', u'softbal'] [u'world', u'huge', u'diamond'] [u'pair', u'court', u'accus', u'jail', u'rape'] [u'pantani', u'death', u'unclear', u'autopsi'] [u'parent', u'guilti', u'aid', u'escape'] [u'parmalat', u'founder', u'daughter', u'arrest'] [u'passport', u'face', u'recognit'] [u'patterson', u'curs', u'reveal', u'health', u'benefit'] [u'plant', u'breakdown', u'caus', u'water', u'problem'] [u'minist', u'rape', u'investig'] [u'polic', u'complet', u'solomon', u'murder', u'inquiri'] [u'polic', u'investig', u'wagga', u'hors', u'bestial'] [u'policeman', u'disarm', u'redfern', u'stand'] [u'policeman', u'recov', u'redfern', u'knock'] [u'polic', u'ultralight', u'crash', u'victim'] [u'polic', u'probe', u'home', u'invas', u'attack'] [u'polic', u'probe', u'violent', u'home', u'invas'] [u'polic', u'seek', u'adelaid', u'food', u'store', u'bandit'] [u'polic', u'hunt', u'clue', u'miss', u'woman'] [u'pont', u'lead', u'aussi', u'warm'] [u'pont', u'restat', u'sledg', u'crackdown'] [u'possibl', u'wonderland', u'buyer', u'preserv', u'theme'] [u'presid', u'urg', u'iranian', u'vote'] [u'promis', u'roberston', u'snap', u'croc', u'spot'] [u'public', u'ask', u'slash', u'water'] [u'public', u'warn', u'council', u'water', u'fin'] [u'nat', u'assert', u'domin', u'coalit', u'talk'] [u'polic', u'seek', u'help', u'pitt', u'murder'] [u'record', u'harvest', u'predict'] [u'record', u'number', u'region', u'sizzl'] [u'recruit', u'drive', u'elit', u'women', u'cyclist'] [u'red', u'recal', u'heenan'] [u'region', u'play', u'role', u'anim', u'diseas', u'fight'] [u'regul', u'admit', u'breach', u'airspac', u'chang'] [u'report', u'urg', u'wast', u'dump', u'plan', u'abandon'] [u'research', u'consid', u'rural', u'road', u'accid'] [u'resid', u'swelter', u'record', u'break', u'heat'] [u'resid', u'protest', u'council', u'merger', u'plan'] [u'road', u'safeti', u'drive', u'nrma', u'blue', u'mountain', u'studi'] [u'ruddock', u'play', u'claim'] [u'ryder', u'hero', u'monti', u'warn', u'rooki'] [u'famili', u'push', u'poison', u'settlement'] [u'salon', u'want', u'client', u'hair'] [u'schalken', u'oust', u'ivanisev', u'indoor', u'event'] [u'scotland', u'wale', u'demand', u'poetic', u'represent', u'report'] [u'search', u'call', u'miss', u'diver'] [u'shirley', u'strickland', u'hunti', u'die', u'age'] [u'smith', u'anchor', u'protea', u'fightback'] [u'spanish', u'robberi', u'suspect', u'make'] [u'green', u'light'] [u'spirit', u'break', u'mar', u'distanc', u'record'] [u'lanka', u'aussi', u'challeng'] [u'staff', u'boost', u'troubl', u'sydney', u'hospit'] [u'stosur', u'bow', u'memphi'] [u'strong', u'dollar', u'influenc', u'rat', u'decis'] [u'student', u'spar', u'injuri', u'lose', u'wheel'] [u'survey', u'highlight', u'demand', u'doctor', u'servic'] [u'survey', u'show', u'busi', u'condit', u'dive'] [u'swan', u'want', u'extra', u'beat', u'sydney', u'heat'] [u'sydney', u'face', u'afternoon', u'train', u'delay'] [u'taliban', u'command', u'vow', u'fight'] [u'tamar', u'silt', u'problem', u'affect', u'tourism'] [u'taroom', u'resid', u'powerless', u'combat', u'heat'] [u'hous', u'price', u'rise', u'lead', u'australia'] [u'public', u'servant', u'prepar', u'strike'] [u'teacher', u'highlight', u'school', u'fund', u'inequ'] [u'teen', u'plead', u'guilti', u'chines', u'takeaway', u'bomb'] [u'telstra', u'consid', u'fairfax', u'takeov'] [u'territori', u'miss', u'defenc', u'opportun'] [u'territori', u'open', u'riot'] [u'kill', u'haiti', u'rebel', u'seiz', u'town'] [u'tiananmen', u'protest', u'leader', u'return', u'work'] [u'fleme', u'help', u'black', u'cap', u'level', u'seri'] [u'trial', u'consid', u'lucern', u'irrig', u'chang'] [u'tribun', u'urg', u'footbal', u'club', u'girl', u'decid'] [u'campus', u'cast', u'doubt', u'student', u'number'] [u'union', u'deliv', u'ultimatum', u'claim'] [u'scientist', u'claim', u'stem', u'cell', u'breakthrough'] [u'soldier', u'kill', u'bomb', u'blast'] [u'say', u'juvenil', u'justic', u'probe', u'come', u'late'] [u'wallabi', u'conserv', u'program', u'win', u'award'] [u'warn', u'bang'] [u'water', u'storag', u'heat', u'rise'] [u'wildcat', u'readi', u'repel', u'bullet'] [u'wisden', u'apologis', u'langer', u'gaff'] [u'woman', u'charg', u'defraud', u'perth', u'chariti'] [u'wondai', u'hous', u'block', u'snap'] [u'wonderland', u'busi', u'park'] [u'wool', u'market', u'worri', u'rise', u'dollar'] [u'work', u'continu', u'miner', u'sand', u'plan'] [u'work', u'finish', u'stanwel', u'park', u'school', u'revamp'] [u'goal', u'spree', u'rebound', u'indian', u'club'] [u'unmov', u'salari'] [u'airport', u'inform', u'session'] [u'road', u'lead', u'dinosaur', u'trail'] [u'anderson', u'accus', u'lay', u'bypass', u'trap'] [u'anglicar', u'challeng', u'govt', u'live'] [u'delay', u'statement', u'viduka', u'chipperfield'] [u'associ', u'boost', u'indigen', u'job'] [u'athlet', u'legend', u'shirley', u'strickland', u'die'] [u'author', u'inspect', u'leaki', u'tanker'] [u'bank', u'deal', u'eas', u'financi', u'strain', u'hockeyroo'] [u'baxter', u'detaine', u'drug', u'monitor'] [u'beatti', u'attack', u'anderson', u'tugun', u'bypass', u'fund'] [u'question', u'mayor', u'sydney', u'visit'] [u'bluescop', u'invest', u'china'] [u'clear', u'crossbow', u'attempt', u'murder'] [u'british', u'polic', u'strangl', u'woman', u'stuff'] [u'brogden', u'reveal', u'detail', u'babi', u'death'] [u'break', u'hill', u'firm', u'win', u'headfram', u'tender'] [u'break', u'hill', u'get', u'indigen', u'age', u'care', u'centr'] [u'brother', u'jail', u'molotov', u'cocktail', u'blaze'] [u'bull', u'lead', u'south', u'african', u'super', u'charg'] [u'bushrang', u'build', u'lead', u'tiger', u'declar'] [u'probe', u'wharf', u'project'] [u'campes', u'rat', u'wale', u'nation', u'chanc'] [u'canegrow', u'shoot', u'better', u'feder', u'sugar', u'deal'] [u'carpentaria', u'swimmer', u'give', u'jellyfish', u'warn'] [u'carr', u'shrug', u'caucus', u'critic'] [u'cat', u'dog', u'menu'] [u'accus', u'govt', u'port', u'promot', u'lazi'] [u'cofidi', u'sack', u'gaumont', u'admiss'] [u'congoles', u'musician', u'extradit', u'peopl', u'smuggl'] [u'conserv', u'parti', u'clash'] [u'coron', u'suspend', u'bowravill', u'inquest'] [u'corretja', u'back', u'boycott', u'rusedski', u'guilti'] [u'council', u'approv', u'bathhous', u'revamp'] [u'council', u'back', u'communiti'] [u'council', u'conced', u'wast', u'agreement'] [u'council', u'lay', u'tuna', u'farm', u'develop'] [u'councillor', u'back', u'growth', u'forc', u'merger'] [u'councillor', u'wollongong', u'lord', u'mayoralti'] [u'council', u'await', u'news', u'super', u'council', u'plan'] [u'council', u'year', u'test', u'merger', u'altern'] [u'council', u'boost', u'septic', u'tank', u'manag'] [u'creditor', u'decid', u'fate', u'fail', u'invest'] [u'croc', u'unsur', u'injur', u'reidi'] [u'crow', u'aim', u'finish'] [u'czech', u'student', u'return', u'testifi', u'rape'] [u'dalrympl', u'mayor', u'make', u'blood'] [u'darwin', u'prepar', u'bomb', u'commemor'] [u'defenc', u'offici', u'take', u'blame', u'iraq', u'leak'] [u'defenc', u'reject', u'train', u'area', u'communiti'] [u'democrat', u'report', u'damag', u'nuclear', u'dump', u'case'] [u'doctor', u'call', u'action', u'psychiatr', u'patient'] [u'dollar', u'break', u'cent', u'mark'] [u'dollar', u'edg', u'closer', u'cent', u'mark'] [u'doubt', u'cast', u'man', u'airport', u'weather', u'station'] [u'dragon', u'drop', u'thompson'] [u'drag', u'race', u'idea', u'green', u'light'] [u'children', u'injur', u'sydney', u'crash'] [u'employ', u'reject', u'actu', u'minimum', u'wage'] [u'eriksson', u'issu', u'owen', u'alert'] [u'fatal', u'crash', u'spark', u'plea', u'public', u'help'] [u'govt', u'reef', u'zone'] [u'feedlink', u'face', u'financi', u'woe'] [u'fingal', u'valley', u'doctor', u'repriev'] [u'firefight', u'warn', u'suburban', u'threat'] [u'flood', u'brace', u'rain'] [u'footbal', u'leagu', u'happi', u'girl', u'play'] [u'futur', u'mayor', u'poll', u'small', u'margin'] [u'gallop', u'address', u'albani', u'dental', u'wait', u'list'] [u'firm', u'power', u'generat', u'plant'] [u'girl', u'feel', u'effect', u'dehydr'] [u'gladston', u'councillor', u'shed', u'light', u'street', u'problem'] [u'goldfield', u'polic', u'illeg', u'drag', u'race', u'fear'] [u'govt', u'defend', u'age', u'care', u'accommod', u'delay'] [u'govt', u'improv', u'offer', u'union'] [u'govt', u'play', u'redfern', u'violenc'] [u'govt', u'pledg', u'environ', u'pacif'] [u'govt', u'review', u'vet', u'packag'] [u'govt', u'weigh', u'aid', u'fight'] [u'grain', u'merger', u'unlik', u'lead', u'deregul', u'saff'] [u'gulf', u'swimmer', u'warn', u'jellyfish', u'danger'] [u'heat', u'creat', u'fruit', u'harvest', u'job'] [u'henman', u'surviv', u'rumbl', u'robredo'] [u'high', u'hop', u'sheep', u'industri', u'turnaround'] [u'high', u'speed', u'rail', u'link', u'save', u'green', u'zone'] [u'hill', u'give', u'approv', u'bushmast', u'project'] [u'hill', u'reject', u'adfa', u'gang', u'rape', u'claim'] [u'hobart', u'face', u'sentenc', u'fatal', u'crash'] [u'howard', u'defend', u'veteran', u'benefit', u'rethink'] [u'howard', u'deni', u'govt', u'leak', u'intellig', u'report'] [u'index', u'point', u'strong', u'growth'] [u'indigen', u'candid', u'win', u'place', u'labor', u'senat'] [u'indigen', u'protest', u'complain', u'camp', u'shoot'] [u'inquiri', u'hear', u'liverpool', u'mayor', u'act'] [u'inquiri', u'reject', u'nuclear', u'wast', u'transport', u'plan'] [u'iran', u'train', u'blast', u'kill'] [u'italian', u'press', u'claim', u'pantani', u'die', u'cocain'] [u'japanes', u'economi', u'stun', u'observ', u'growth', u'spurt'] [u'kay', u'compani', u'liquid'] [u'keat', u'lay', u'vision', u'sydney', u'metropoli'] [u'kerri', u'edg', u'edward', u'latest', u'vote'] [u'kerri', u'track', u'wisconsin'] [u'labor', u'slam', u'immigr', u'check'] [u'labor', u'unlik', u'support', u'nurs', u'home'] [u'landhold', u'urg', u'help', u'rabbit', u'number'] [u'latham', u'aim', u'protect', u'forest', u'industri', u'job'] [u'latham', u'back', u'act', u'right', u'adopt', u'law'] [u'latham', u'reject', u'wacko', u'jacko', u'comparison'] [u'limit', u'south', u'east', u'forestri'] [u'lion', u'lash', u'salari', u'grumbler'] [u'lockyer', u'switch', u'bronco', u'ring', u'chang'] [u'locust', u'invad', u'western'] [u'locust', u'plagu', u'western'] [u'mackay', u'busi', u'confid', u'tip', u'wane'] [u'magistr', u'feel', u'blackmail', u'mental', u'health'] [u'mail', u'deliv', u'redback', u'crumbl'] [u'die', u'nightclub', u'bash', u'injuri'] [u'die', u'crash', u'near', u'bendigo'] [u'hospit', u'explos'] [u'court', u'homemad'] [u'marina', u'villag', u'prefer', u'bidder', u'name'] [u'market', u'hit', u'month', u'high'] [u'matilda', u'hop', u'match', u'gun'] [u'mcgrath', u'track', u'monday', u'comeback'] [u'melbourn', u'plead', u'guilti', u'gun', u'charg'] [u'miner', u'hall', u'fame', u'wont', u'close', u'door'] [u'minist', u'consid', u'plea', u'medic', u'retriev', u'unit'] [u'minist', u'widen', u'prevent', u'review'] [u'mitsubishi', u'say', u'adelaid', u'manufactur'] [u'moruya', u'hospit', u'meningococc'] [u'fail', u'boost', u'taroom', u'power', u'reliabl'] [u'urg', u'ghan', u'chang'] [u'gambier', u'consid', u'rat', u'chang'] [u'nake', u'bok', u'boot', u'camp', u'breakfast', u'can'] [u'nat', u'tamworth', u'polic', u'boost', u'pledg'] [u'newcastl', u'chancellor', u'call', u'quit'] [u'internet', u'worm', u'wriggl'] [u'site', u'fuel', u'fast', u'food', u'outlet', u'whyalla'] [u'nice', u'scoop', u'award'] [u'time', u'give', u'phone', u'servic', u'return'] [u'rule', u'allow', u'tradit', u'punish'] [u'onesteel', u'upbeat', u'despit', u'profit', u'slump'] [u'opposit', u'ask', u'govt', u'mothbal'] [u'paedophil', u'dolli', u'dunn', u'skip', u'appeal', u'hear'] [u'pakistan', u'feel', u'need', u'speed', u'ahead', u'india', u'seri'] [u'pakistan', u'india', u'agre', u'kashmir', u'talk'] [u'pakistan', u'india', u'sight', u'lower', u'threat'] [u'pakistan', u'train', u'crash', u'injur'] [u'pantani', u'climb', u'easi', u'descend', u'hard'] [u'perth', u'woman', u'acquit', u'murder'] [u'tell', u'nose', u'affair'] [u'polic', u'investig', u'shepparton', u'blaze'] [u'polic', u'liaison', u'offic', u'face', u'court', u'assault'] [u'polic', u'search', u'miss', u'rockhampton', u'teen'] [u'polic', u'seek', u'miss', u'tourist'] [u'pottharst', u'set', u'olymp', u'beach', u'volleybal', u'plan'] [u'power', u'woe', u'unlik', u'repeat'] [u'pratt', u'indian', u'second', u'round'] [u'public', u'crime', u'fight'] [u'public', u'urg', u'plan', u'farm', u'zone'] [u'unlik', u'nino', u'return', u'soon'] [u'rail', u'mainten', u'union', u'industri', u'action'] [u'rain', u'bring', u'good', u'western'] [u'rain', u'help', u'victoria', u'boost', u'winter', u'grain', u'crop'] [u'top', u'menu', u'bird', u'bite', u'asia'] [u'repco', u'roar', u'profit', u'return'] [u'resid', u'eas', u'water', u'restrict'] [u'resort', u'owner', u'shed', u'busi'] [u'rise', u'dollar', u'hit', u'line'] [u'roll', u'power', u'cut', u'like'] [u'rspca', u'urg', u'human', u'crab', u'kill'] [u'court', u'reject', u'school', u'offend', u'appeal'] [u'saudi', u'arabia', u'play', u'terror', u'warn'] [u'school', u'vehicl', u'crash'] [u'scientist', u'better', u'weather', u'predict'] [u'search', u'continu', u'miss', u'canadian', u'tourist'] [u'senat', u'cast', u'doubt', u'forest', u'salin', u'link'] [u'shirley', u'strickland', u'hunti', u'die', u'age'] [u'sixteen', u'roof', u'tear', u'wild', u'western', u'storm'] [u'slave', u'trial', u'juri', u'tell', u'acquit', u'assault'] [u'soccer', u'bodi', u'deni', u'give', u'viduka', u'leav'] [u'soccer', u'bodi', u'action', u'show'] [u'soccer', u'fan', u'wont', u'leav', u'result', u'pitch'] [u'southcorp', u'profit', u'despit', u'difficult', u'condit'] [u'southern', u'record', u'ross', u'river', u'virus', u'case'] [u'stallion', u'clinch', u'final', u'berth'] [u'steel', u'maker', u'post', u'news', u'plant', u'upgrad'] [u'steel', u'tube', u'port', u'revamp'] [u'strickland', u'hunti', u'inspir', u'sport', u'mum'] [u'student', u'hop', u'renew', u'visa'] [u'sugar', u'rep', u'meet', u'howard'] [u'suicid', u'bomber', u'kill', u'iraq'] [u'swim', u'stadium', u'setback', u'athen', u'game'] [u'sydney', u'rail', u'woe', u'impact', u'tamworth', u'more', u'servic'] [u'sydney', u'train', u'week'] [u'sydney', u'water', u'chief', u'step'] [u'takeov', u'battl', u'stag', u'wall'] [u'govt', u'mull', u'public', u'servant', u'wage', u'offer'] [u'task', u'forc', u'free', u'trade', u'advic'] [u'union', u'unconcern', u'delay', u'negoti'] [u'teen', u'court', u'assault', u'charg'] [u'telstra', u'deni', u'plan', u'fairfax'] [u'telstra', u'tell', u'fairfax', u'plan'] [u'thelma', u'louis', u'copycat', u'face', u'court'] [u'thousand', u'expect', u'final', u'respect', u'pantani'] [u'iraqi', u'civilian', u'kill', u'mortar'] [u'tonga', u'mourn', u'death', u'royal'] [u'tourism', u'group', u'back', u'wind', u'farm', u'opposit'] [u'tour', u'oper', u'urg', u'port', u'macquari'] [u'tribut', u'flow', u'shirley', u'strickland'] [u'tribut', u'flow', u'shirley', u'strickland', u'hunti'] [u'outsid', u'court'] [u'uncertain', u'futur', u'bermagui', u'cross'] [u'chancellor', u'reject', u'plagiar', u'retir'] [u'union', u'concern', u'nurs', u'shortag'] [u'union', u'member', u'cross', u'anti', u'basslink', u'protest'] [u'issu', u'eastern', u'europ', u'aid', u'warn'] [u'bishop', u'face', u'jail', u'accid'] [u'urg', u'polit', u'solut', u'haiti'] [u'valencia', u'fan', u'wont', u'leav', u'real', u'result', u'pitch'] [u'push', u'quick', u'handov', u'defenc', u'land'] [u'energi', u'crisi'] [u'forc', u'power'] [u'waratah', u'flight', u'forc', u'sydney'] [u'warn', u'prepar', u'battl', u'spin', u'king'] [u'warrior', u'rain', u'law', u'parad'] [u'warrnambool', u'council', u'get', u'basic'] [u'uncertain', u'power', u'restrict', u'impact'] [u'wheatbelt', u'resid', u'face', u'power', u'loss'] [u'woodsid', u'announc', u'profit'] [u'wood', u'withdraw', u'event'] [u'workingman', u'club', u'upbeat', u'meet'] [u'world', u'streaker', u'sentenc'] [u'strong', u'crowd', u'tip', u'alic', u'match'] [u'boost', u'water', u'save'] [u'investig', u'adelaid', u'radio', u'announc'] [u'abbott', u'talk', u'support'] [u'await', u'hangar', u'collaps', u'inquiri', u'fund'] [u'probe', u'mental', u'health', u'facil'] [u'traffic', u'control', u'chang', u'recommend'] [u'alinta', u'open', u'make', u'offer', u'sale', u'chang'] [u'almond', u'grower', u'trade', u'deal', u'concern'] [u'reveal', u'council', u'elect', u'team'] [u'fear', u'wait', u'list', u'hurt', u'privat'] [u'hop', u'child', u'abus'] [u'vow', u'child', u'abus', u'elect', u'issu'] [u'anger', u'hike', u'plan'] [u'annan', u'back', u'longer', u'stay', u'east', u'timor', u'peacekeep'] [u'anti', u'log', u'protest', u'blockad', u'weld', u'valley'] [u'armstrong', u'shock', u'mysteri', u'pantani', u'death'] [u'armi', u'boot', u'soldier', u'drug'] [u'armi', u'step', u'random', u'drug', u'test'] [u'armi', u'base', u'tank'] [u'activ', u'viduka'] [u'asia', u'endeavour', u'contain', u'bird'] [u'aspirin', u'help', u'prevent', u'cancer', u'studi'] [u'flat', u'profit', u'report', u'continu'] [u'attempt', u'continu', u'bring', u'control'] [u'audit', u'consid', u'marina', u'pollut'] [u'aussi', u'dollar', u'rise', u'weak', u'greenback'] [u'australia', u'lead', u'venezuela'] [u'australia', u'lead', u'venezuela', u'half', u'time'] [u'australian', u'soccer', u'activ', u'viduka'] [u'austrian', u'train', u'defend', u'acquit'] [u'author', u'probe', u'grave', u'concern'] [u'beachley'] [u'billiton', u'report', u'best', u'post', u'merger', u'profit'] [u'black', u'hole', u'tear', u'star', u'apart'] [u'blast', u'fear', u'hamper', u'iran', u'train', u'rescu'] [u'bluescop', u'fin', u'pollut', u'port', u'kembla'] [u'board', u'hous', u'condit', u'plan', u'approv'] [u'bomb', u'blast', u'injur', u'india'] [u'brilliant', u'clijster', u'sparkl', u'diamond', u'game'] [u'brindal', u'say', u'forestri', u'decis', u'rerun'] [u'brisban', u'compani', u'predict', u'glitter', u'futur'] [u'brisban', u'traffic', u'tunnel', u'plan', u'underway'] [u'brogden', u'call', u'carr', u'resign', u'babi', u'death'] [u'bushwalk', u'critic', u'hurt', u'cliff', u'fall'] [u'cabl', u'mishap', u'cut', u'phone', u'line'] [u'central', u'brace', u'heatwav'] [u'chamber', u'ask', u'explain', u'posit', u'test'] [u'clijster', u'announc', u'love', u'match'] [u'correct', u'worker', u'escal', u'disput'] [u'council', u'consid', u'julia', u'creek', u'industri', u'estat'] [u'council', u'await', u'abattoir', u'debt', u'decis'] [u'council', u'take', u'fight', u'mozzi'] [u'court', u'hear', u'defend', u'proud', u'slave'] [u'court', u'tell', u'long', u'jail', u'term', u'need', u'boat', u'owner'] [u'crew', u'keep', u'iran', u'train', u'blast', u'site'] [u'criddl', u'reject', u'govt', u'competit', u'polici', u'stanc'] [u'czech', u'tourist', u'rape', u'trial', u'continu'] [u'darwin', u'rememb', u'japanes', u'bomb'] [u'hoya', u'eye', u'middleweight', u'crown'] [u'detail', u'trade', u'plan', u'east', u'asia', u'releas'] [u'devic', u'test', u'helicopt', u'escap', u'skill'] [u'dial', u'drink', u'driver', u'line', u'plan'] [u'boom', u'prompt', u'lead', u'paint', u'warn'] [u'dollar', u'slip', u'cent'] [u'dolli', u'creator', u'defend', u'human', u'clone', u'research'] [u'doyl', u'slam', u'transport', u'shake'] [u'continu', u'monitor', u'torbreck', u'blaze'] [u'earli', u'warn', u'go', u'canberra', u'threat'] [u'elliott', u'lose', u'bankruptci', u'appeal'] [u'england', u'portug', u'share', u'spoil'] [u'esper', u'hop', u'boost', u'skill', u'worker', u'rank'] [u'announc', u'partial', u'ceasefir'] [u'etsa', u'seek', u'public', u'back', u'kangaroo'] [u'fairfax', u'amcor', u'lend', u'leas', u'announc', u'profit'] [u'fairfax', u'say', u'telstra', u'takeov', u'imaginari'] [u'farina', u'posit', u'caraca', u'draw'] [u'farmer', u'consid', u'legal', u'action', u'tenterden', u'blaze'] [u'farmer', u'fear', u'rat', u'rise'] [u'farmer', u'fight', u'toxic', u'wast', u'plan', u'govt'] [u'farm', u'group', u'back', u'eagl', u'attack', u'research'] [u'farm', u'group', u'question', u'blackout', u'notif', u'scheme'] [u'fear', u'air', u'plan', u'alcohol', u'trial'] [u'fear', u'region', u'senior', u'forget', u'taxi', u'scheme'] [u'fear', u'takeov', u'derail', u'hunter', u'job'] [u'govt', u'defend', u'close', u'weather', u'bureau'] [u'govt', u'end', u'drug', u'alcohol', u'servic', u'fund'] [u'ferrari', u'badoer', u'unscath', u'imola', u'crash'] [u'fifa', u'investig', u'viduka'] [u'control', u'surpris', u'bushfir', u'death'] [u'flight', u'centr', u'announc', u'profit'] [u'franc', u'hunt', u'philippin', u'freighter', u'dead'] [u'freight', u'cost', u'lift', u'yulara', u'supermarket', u'price'] [u'friend', u'wrap', u'champion', u'host', u'draw', u'euro'] [u'text', u'pantani', u'note'] [u'gallop', u'tackl', u'power', u'crisi'] [u'gather', u'tell', u'famili', u'immun', u'child'] [u'geraldton', u'await', u'cruis', u'ship', u'arriv'] [u'gold', u'make', u'comeback', u'invest', u'option'] [u'gough', u'give', u'tour', u'chanc'] [u'govt', u'defend', u'iraq', u'weapon', u'leak', u'sourc'] [u'govt', u'launch', u'illeg', u'immigr', u'hotlin'] [u'govt', u'urg', u'releas', u'fine', u'print'] [u'group', u'form', u'consid', u'sheep', u'diseas', u'effort'] [u'hadden', u'address', u'ballarat', u'polic', u'number'] [u'haitian', u'rebel', u'pois', u'gain'] [u'health', u'expert', u'rule', u'earlier'] [u'heat', u'measur', u'invok', u'canberra', u'match'] [u'hewitt', u'cruis', u'rotterdam', u'second', u'round'] [u'court'] [u'weather', u'boost', u'tamworth', u'water'] [u'howard', u'say', u'domest', u'violenc'] [u'ijaz', u'call', u'pakistan', u'india', u'match'] [u'india', u'pakistan', u'unveil', u'roadmap', u'peac'] [u'industri', u'action', u'avert', u'power', u'station'] [u'isra', u'nuclear', u'free'] [u'jackson', u'win', u'award'] [u'japan', u'prepar', u'releas', u'flavel', u'black'] [u'jone', u'regret', u'associ', u'coach'] [u'judg', u'speak', u'good', u'charact', u'crossbow', u'case'] [u'june', u'council', u'find', u'medic', u'centr', u'site'] [u'labor', u'blast', u'week', u'claim'] [u'lake', u'user', u'warn', u'blue', u'green', u'alga'] [u'gasp', u'goal', u'rob', u'socceroo', u'victori'] [u'latham', u'attack', u'parent', u'young', u'rioter'] [u'latham', u'champion', u'stay', u'home', u'dad'] [u'latham', u'promis', u'media', u'divers'] [u'launceston', u'acquit', u'rape', u'charg'] [u'leader', u'deni', u'domin', u'plan'] [u'lectur', u'riski', u'intellig', u'offici'] [u'leed', u'battl', u'viduka'] [u'lehmann', u'make', u'test', u'case', u'battl', u'redback'] [u'leski', u'grandmoth', u'suspect', u'domaszewicz'] [u'malaysia', u'lodg', u'complaint', u'bush'] [u'accus', u'rap', u'student', u'face', u'committ'] [u'grant', u'bail', u'aircraft', u'threat', u'charg'] [u'hold', u'plane', u'threat'] [u'jail', u'hunter', u'stand'] [u'court', u'fals', u'belief', u'charg'] [u'martin', u'make', u'roddick', u'work', u'advanc'] [u'mayor', u'candid', u'highlight', u'poll', u'import'] [u'mayor', u'upbeat', u'possibl', u'refshaug', u'meet'] [u'mcgradi', u'wont', u'comment'] [u'gibson', u'father', u'say', u'holocaust', u'exagger'] [u'merger', u'council', u'lose', u'coastal', u'land'] [u'minist', u'highlight', u'region', u'wealth', u'creation'] [u'murder', u'appeal', u'hear', u'robber', u'mean', u'harm'] [u'nasa', u'rover', u'deep', u'mar'] [u'nation', u'award', u'recognis', u'werri', u'beach', u'effort'] [u'nat', u'lament', u'lose', u'produc', u'opportun'] [u'sale', u'januari'] [u'newcastl', u'polic', u'forens', u'upgrad'] [u'newmont', u'mine', u'relinquish', u'bronzew'] [u'technolog', u'make', u'scent', u'internet'] [u'major', u'worri', u'wood'] [u'govt', u'tighten', u'coastal', u'protect', u'polici'] [u'parliament', u'hear', u'plea', u'tamworth', u'polic'] [u'tafe', u'teacher', u'announc', u'strike'] [u'govt', u'monitor', u'financi', u'troubl', u'council'] [u'grower', u'govt', u'tell'] [u'bus', u'north', u'west'] [u'painter', u'grab', u'south', u'australian', u'open', u'lead'] [u'paint', u'save', u'slade', u'hous', u'blaze'] [u'paper', u'compani', u'say', u'loss', u'inevit'] [u'pentagon', u'offic', u'face', u'probe', u'iraq', u'claim'] [u'pilot', u'kill', u'highland', u'plane', u'crash'] [u'condemn', u'islam', u'leader', u'alleg', u'jihad'] [u'latham', u'tour', u'gippsland'] [u'polic', u'claim', u'ecstasi', u'haul', u'disrupt', u'drug', u'ring'] [u'polic', u'happi', u'drink', u'driver', u'hotlin'] [u'policeman', u'admit', u'buy', u'drug', u'inform'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'probe', u'launceston', u'shoot'] [u'polic', u'puzzl', u'miss', u'canadian', u'tourist'] [u'polic', u'crack', u'south', u'hedland', u'theft'] [u'polish', u'board', u'floor', u'briton', u'report'] [u'port', u'macquari', u'hospit', u'offer', u'lifelin'] [u'power', u'crisi', u'claim', u'second', u'scalp'] [u'power', u'breez', u'inland', u'mayor'] [u'produc', u'angri', u'green', u'light', u'import'] [u'profit', u'long', u'ail', u'leagu', u'club'] [u'prosecut', u'continu', u'case', u'slave', u'trial'] [u'public', u'servant', u'consid', u'offer'] [u'public', u'urg', u'vietnam', u'memori'] [u'qanta', u'fli', u'black'] [u'govt', u'urg', u'probe', u'dengu', u'fever', u'respons'] [u'cross', u'warn', u'barrier'] [u'redfern', u'rememb', u'thoma', u'hickey'] [u'redfern', u'resid', u'gather', u'hickey', u'memori'] [u'redfern', u'hold', u'hickey', u'memori'] [u'red', u'break', u'super', u'drought'] [u'reinstat', u'drug', u'posit', u'soldier', u'sign'] [u'rescuer', u'clear', u'work', u'train', u'wreck'] [u'resid', u'urg', u'curb', u'water'] [u'rural', u'press', u'outlin', u'harri', u'futur', u'profit', u'climb'] [u'governor', u'tour', u'wattl', u'rang'] [u'oppn', u'forc', u'crown', u'leas', u'amend'] [u'scone', u'woman', u'get', u'gong', u'nsws', u'rural', u'woman'] [u'shell', u'prosecut', u'geelong', u'spill'] [u'smoker', u'start', u'china', u'shop', u'centr', u'blaze'] [u'socceroo', u'confid', u'despit', u'miss', u'star'] [u'socceroo', u'lead', u'venezuela'] [u'socceroo', u'miss', u'gasp', u'goal'] [u'soldier', u'interven', u'villag', u'riot'] [u'lanka', u'final', u'squad', u'seri'] [u'lanka', u'plan', u'slow', u'tortur', u'aussi', u'batsmen'] [u'studi', u'find', u'adelaid', u'best', u'place', u'busi'] [u'sugar', u'resist', u'bail', u'price'] [u'supermodel', u'final', u'privaci', u'appeal'] [u'suspect', u'tanker', u'allow', u'dock', u'sydney'] [u'sydney', u'face', u'train', u'cut'] [u'sydney', u'ferri', u'accid', u'probe'] [u'tabcorp', u'announc', u'profit', u'despit', u'smoke', u'ban'] [u'taiwan', u'presid', u'promis', u'independ'] [u'tare', u'mayor', u'candid', u'back', u'merger'] [u'team', u'side', u'season', u'clash'] [u'tear', u'farewel', u'cycl', u'champ', u'pantani'] [u'teenag', u'arrest', u'shoot', u'incid'] [u'thousand', u'expect', u'visit', u'bega'] [u'tonga', u'settl', u'miss', u'million', u'lawsuit', u'king'] [u'toowoomba', u'council', u'drive', u'park', u'push'] [u'troop', u'insurg', u'exchang', u'baghdad', u'prison'] [u'iran', u'paper', u'shut', u'report', u'khamenei', u'letter'] [u'toxic', u'pollut', u'ahead'] [u'underfund', u'caus', u'hospit', u'wait', u'list', u'growth'] [u'compani', u'profit', u'fund', u'bungl', u'labor'] [u'split', u'like', u'widen'] [u'soldier', u'charg', u'aid', u'qaeda'] [u'climb', u'strickland', u'get', u'state', u'send'] [u'govt', u'put', u'dental', u'treatment'] [u'govt', u'sack', u'western', u'power', u'chairman'] [u'wall', u'slip', u'quiet', u'trade'] [u'warn', u'stake', u'test', u'claim', u'tiger', u'crumbl'] [u'watchdog', u'know', u'trade', u'risk'] [u'strickland', u'state', u'send'] [u'weather', u'bureau', u'highlight', u'heatwav', u'sever'] [u'weekend', u'tip', u'scorcher'] [u'whitsunday', u'search', u'find', u'miss', u'man', u'bodi'] [u'woman', u'charg', u'redfern', u'riot'] [u'work', u'resum', u'sewag', u'treatment', u'plant'] [u'wrong', u'form', u'invalid', u'marriag'] [u'keep', u'anim', u'cool', u'heatwav'] [u'cattl', u'southern', u'heatwav'] [u'aborigin', u'protest', u'end', u'canberra'] [u'age', u'inquiri', u'head', u'break', u'hill'] [u'airlin', u'say', u'traffic', u'law', u'slow'] [u'allenbi', u'touch', u'leader'] [u'appl', u'grower', u'condemn', u'import', u'plan'] [u'appl', u'grower', u'fear', u'import', u'diseas', u'threat'] [u'arrest', u'fraud', u'scam'] [u'arsenal', u'wont', u'slip', u'kean'] [u'probe', u'kefus', u'palsi', u'treatment'] [u'aunt', u'refus', u'bail', u'riot', u'charg'] [u'aussi', u'trio', u'earn', u'olymp', u'dive', u'spot'] [u'author', u'fear', u'dengu', u'outbreak', u'cairn'] [u'baisya', u'rafiqu', u'lift', u'bangladesh'] [u'banana', u'industri', u'unbend', u'import'] [u'bank', u'face', u'safeti', u'law'] [u'bevan', u'lanka', u'clash'] [u'crowd', u'like', u'rodeo'] [u'biota', u'share', u'bolster', u'bird', u'windfal'] [u'bomber', u'docker', u'darwin', u'richmond'] [u'bomb', u'scare', u'ground', u'moroccan', u'flight'] [u'borja', u'bid', u'beckham', u'boot', u'real'] [u'bottl', u'plant', u'help', u'amcor', u'profit'] [u'brain', u'scan', u'placebo', u'effect', u'head'] [u'brisban', u'die', u'polic', u'scuffl'] [u'buck', u'bull', u'contest', u'head', u'rockhampton'] [u'hit', u'hobart', u'schoolgirl'] [u'busi', u'ethic', u'index', u'australian', u'compani'] [u'canada', u'compens', u'chemic', u'warfar', u'test', u'vet'] [u'cane', u'farmer', u'consid', u'altern', u'crop'] [u'crash', u'kill', u'south', u'hobart'] [u'celtic', u'verg', u'rewrit', u'record', u'book'] [u'chamber', u'discov', u'fate', u'week'] [u'clark', u'sack', u'immigr', u'minist'] [u'compani', u'busi', u'ethic', u'scrutini'] [u'council', u'consid', u'shire', u'secur', u'guard', u'boost'] [u'council', u'traffic', u'rethink'] [u'council', u'take', u'hold', u'belmont', u'hospit', u'plan'] [u'council', u'consid', u'fill', u'vacanc'] [u'court', u'award', u'lose'] [u'court', u'find', u'prison', u'guilti', u'rap', u'fellow'] [u'court', u'hear', u'slave', u'master', u'proud'] [u'consid', u'student', u'rise'] [u'crack', u'tanker', u'enter', u'sydney', u'harbour'] [u'crew', u'melbourn', u'paint', u'spill'] [u'crocodil'] [u'croc', u'face', u'match', u'giant'] [u'croc', u'look', u'home', u'giant'] [u'csiro', u'discov', u'potenti', u'bird', u'treatment'] [u'dali', u'river', u'resid', u'flood'] [u'chelsea', u'pursuit', u'gunner'] [u'defenc', u'wind', u'case', u'alleg', u'slaveri', u'trial'] [u'deniliquin', u'council', u'candid', u'slow', u'nomin'] [u'denmark', u'ratepay', u'decid', u'councillor'] [u'dodemaid', u'waca'] [u'dollar', u'euro', u'slip', u'high'] [u'doubt', u'rais', u'port', u'consult', u'period'] [u'dreamworld', u'welcom', u'babi', u'croc'] [u'eastern', u'state', u'sweat'] [u'elliott', u'miss', u'payment', u'deadlin'] [u'make', u'anti', u'semit', u'stand'] [u'eurobodalla', u'move', u'closer', u'realiti'] [u'europ', u'launch', u'comet', u'lander'] [u'farmer', u'face', u'land', u'clear', u'sentenc'] [u'feder', u'polic', u'target', u'paedophil', u'bali'] [u'govt', u'accus', u'attempt', u'censor', u'chief'] [u'ferri', u'crash', u'sydney'] [u'fifa', u'collis', u'cours', u'world', u'club', u'plan'] [u'fina', u'say', u'aquat', u'roof', u'readi', u'game'] [u'firefight', u'clean', u'chemic', u'drum', u'spill'] [u'firefight', u'watch', u'scrubland'] [u'firefight', u'high', u'alert', u'threat'] [u'firm', u'crime', u'prevent', u'scheme', u'workshop'] [u'fletcher', u'want', u'council', u'free', u'polit', u'faction'] [u'flood', u'cut', u'capit'] [u'enron', u'chief', u'front', u'court'] [u'palm', u'council', u'chair', u'stand'] [u'kill', u'indian', u'airforc', u'plough'] [u'french', u'veteran', u'robin', u'break', u'cycl', u'omerta'] [u'fring', u'festiv', u'kick', u'adelaid'] [u'govt', u'author', u'defend', u'appl', u'report'] [u'govt', u'mull', u'assist', u'produc', u'import'] [u'govt', u'kimberley', u'condit'] [u'grain', u'grower', u'earli', u'mous', u'plagu', u'warn'] [u'groom', u'edg', u'clear', u'adelaid'] [u'group', u'urg', u'commonwealth', u'bypass', u'impass'] [u'grower', u'fear', u'import', u'industri', u'threat'] [u'guantanamo', u'releas', u'label', u'polit', u'stunt'] [u'gunningbar', u'weir', u'revamp'] [u'guyra', u'council', u'hous', u'land', u'avail'] [u'haitian', u'rebel', u'cede', u'aristid', u'vow', u'fight'] [u'hama', u'deni', u'gaza', u'control', u'plan'] [u'heart', u'complaint', u'forc', u'jakovich', u'eagl'] [u'heat', u'delay', u'junior', u'lifesav', u'titl'] [u'heat', u'kill', u'quirindi', u'cattl'] [u'henin', u'withdraw', u'diamond', u'game'] [u'hewitt', u'feder', u'battl', u'rotterdam', u'quarter'] [u'highway', u'bypass', u'option'] [u'target', u'spinner', u'suspect', u'action'] [u'indigen', u'concern', u'delay', u'clean', u'plan'] [u'inquest', u'tell', u'need', u'chang', u'legisl'] [u'inquiri', u'hear', u'policeman', u'steal', u'drug', u'pocket'] [u'iran', u'deni', u'nuclear', u'activ', u'militari', u'base'] [u'iran', u'presid', u'order', u'train', u'probe'] [u'iran', u'reform', u'lose', u'poll'] [u'iraqi', u'shiit', u'offici', u'agre', u'brief', u'poll', u'delay'] [u'israel', u'abandon', u'road', u'sharon'] [u'kean', u'hint', u'return', u'irish', u'squad'] [u'kerri', u'get', u'union', u'back'] [u'knee', u'injuri', u'knock', u'grace'] [u'krige', u'hit', u'choic', u'springbok', u'coach'] [u'labor', u'pressur', u'board'] [u'latham', u'back', u'retrospect', u'terror', u'law'] [u'latham', u'flag', u'terror', u'review', u'bring'] [u'latham', u'plan', u'tour', u'region', u'victoria'] [u'latham', u'tour', u'margin', u'seat'] [u'latham', u'vow', u'steal', u'generat', u'apolog'] [u'leed', u'court', u'viduka'] [u'lose', u'artist', u'boyd', u'properti'] [u'arrest', u'melbourn', u'british', u'murder'] [u'fin', u'illeg', u'abattoir'] [u'critic', u'condit', u'geelong', u'shoot'] [u'jail', u'attack', u'woman'] [u'kill', u'ralli', u'tasmania'] [u'releas', u'bail', u'wake', u'assault'] [u'market', u'finish', u'week', u'note'] [u'mass', u'anim', u'death', u'spark', u'trench'] [u'matilda', u'match', u'postpon', u'heat', u'warn'] [u'upbeat', u'hunter', u'construct', u'industri'] [u'medicar', u'talk', u'remain', u'deadlock'] [u'meet', u'hear', u'dairi', u'woe'] [u'melbourn', u'arrest', u'murder', u'probe'] [u'wed', u'magazin'] [u'milan', u'miss', u'maldini', u'factor', u'derbi', u'clash'] [u'moya', u'extend', u'unbeaten', u'bueno', u'air'] [u'fight', u'ravensthorp', u'infrastructur', u'fund'] [u'nasa', u'plan', u'shuttl', u'rescu', u'mission'] [u'nauru', u'strike', u'econom', u'deal', u'china'] [u'manganes', u'plan'] [u'nigeria', u'deport', u'economist', u'correspond'] [u'nightmar', u'start', u'red'] [u'iraq', u'poll', u'handov'] [u'progress', u'train', u'driver', u'shortag', u'inquiri', u'tell'] [u'govt', u'outlin', u'west', u'dapto', u'develop', u'plan'] [u'minist', u'surviv', u'deport', u'scandal'] [u'olymp', u'movement', u'say', u'strickland', u'award', u'fit'] [u'opportun', u'probe', u'mysteri', u'mar', u'soil'] [u'ozzi', u'osbourn', u'fear'] [u'pair', u'mean', u'harm', u'dead', u'year'] [u'pakistan', u'nuclear', u'scientist', u'send', u'uranium', u'libya'] [u'parmalat', u'mislead', u'market', u'year', u'italian'] [u'perth', u'judg', u'jail', u'drunken', u'pilot'] [u'petit', u'amnesti', u'circul'] [u'photo', u'exhibit', u'strip', u'bare', u'older', u'bodi', u'percept'] [u'pilot', u'welcom', u'airspac', u'turn'] [u'piranha', u'fall', u'fish', u'boat'] [u'manus', u'island', u'detent', u'deal'] [u'polic', u'drink', u'driver', u'plan'] [u'polic', u'free', u'german', u'bondag', u'penguin'] [u'polic', u'investig', u'adelaid', u'shoot'] [u'polic', u'alcohol', u'law'] [u'polic', u'probe', u'wagga', u'unit', u'blaze'] [u'polic', u'releas', u'man', u'imag', u'murder', u'case'] [u'poll', u'open', u'disput', u'iranian', u'elect'] [u'port', u'inquiri', u'take', u'local', u'submiss'] [u'post', u'mortem', u'hold', u'tourist', u'bodi'] [u'powercor', u'probe', u'blackout', u'caus'] [u'power', u'disput', u'leav', u'melbourn', u'busi'] [u'power', u'stay', u'second', u'olymp'] [u'power', u'union', u'want', u'minist', u'sack'] [u'pratt', u'india', u'semi', u'final'] [u'public', u'servant', u'front', u'court', u'charg'] [u'public', u'consult', u'cultur', u'precinct', u'plan'] [u'public', u'warn', u'avoid', u'want', u'shoot'] [u'hop', u'hold', u'tugun', u'bypass', u'talk'] [u'quinn', u'highlight', u'southern', u'blackout', u'concern'] [u'redback', u'fall', u'short', u'miracl', u'victori'] [u'redfern', u'teen', u'death', u'prompt', u'canberra', u'protest'] [u'region', u'member', u'join', u'disput', u'ralli'] [u'renam', u'train', u'irwin', u'loco'] [u'resid', u'warn', u'warburton', u'blaze'] [u'resid', u'warn', u'dengu', u'fever', u'threat'] [u'riverina', u'includ'] [u'roddick', u'power', u'past', u'chaunac', u'quarter', u'final'] [u'francisco', u'seek', u'marriag'] [u'sear', u'heat', u'spark', u'health', u'warn'] [u'sheedi', u'surpris', u'honour'] [u'shiit', u'group', u'reject', u'elect', u'delay'] [u'ship', u'builder', u'announc', u'solid', u'profit'] [u'guantanamo', u'detaine', u'return', u'home'] [u'sport', u'facil', u'earmark', u'western', u'sydney'] [u'georg', u'rioter', u'suspend', u'sentenc'] [u'stray', u'piec', u'meat', u'land', u'chef', u'fryer'] [u'strickland', u'award', u'state', u'funer'] [u'studi', u'link', u'schizophrenia', u'gluten', u'allergi'] [u'styri', u'pollock', u'despair', u'kiwi', u'edg', u'home'] [u'sydney', u'train', u'normal', u'monday'] [u'symond', u'seccomb', u'join', u'warn', u'lanka', u'parti'] [u'symond', u'seccomb', u'join', u'warn', u'lanka', u'squad'] [u'symond', u'spree', u'lift', u'australia'] [u'stand', u'drink', u'drive'] [u'oppn', u'want', u'north', u'east', u'road'] [u'quarantin', u'question', u'salmon', u'case'] [u'tension', u'overflow', u'sydney', u'rape', u'trial'] [u'thiev', u'fleec', u'victim'] [u'deni', u'bail', u'drug', u'haul'] [u'tight', u'deadlin', u'push', u'cyprus', u'peac', u'talk'] [u'time', u'run', u'altern', u'toxic', u'dump', u'sit'] [u'tobacco', u'threaten', u'corner', u'store'] [u'tobacco', u'grower', u'fear', u'communiti', u'breakdown'] [u'tonga', u'mourn', u'king', u'palac'] [u'tourism', u'ventur', u'offer', u'indigen', u'hope'] [u'tourist', u'appeal', u'rule', u'dive', u'injuri', u'case'] [u'townsvill', u'soldier', u'fail', u'drug', u'test'] [u'transport', u'open', u'overtak', u'lane'] [u'tweed', u'voter', u'ward', u'vote'] [u'palestinian', u'milit', u'arrest', u'near', u'bethlehem'] [u'thai', u'cat', u'bird'] [u'staff', u'hope', u'heat', u'issu'] [u'staff', u'plan', u'strike'] [u'vail', u'push', u'trade', u'talk'] [u'victorian', u'crew', u'fight', u'fire', u'scorch'] [u'vineyard', u'visitor', u'inject', u'hunter', u'economi'] [u'energi', u'minist', u'refus', u'resign'] [u'govt', u'offer', u'region', u'essenti', u'servic', u'boost'] [u'look', u'lure', u'african', u'dentist', u'region'] [u'walwa', u'rais', u'fund', u'health', u'servic', u'plan'] [u'webber', u'pace', u'spain'] [u'westpac', u'frequent', u'flyer', u'program', u'wing', u'clip'] [u'wind', u'farm', u'plan', u'moot', u'pittong'] [u'wind', u'turbin', u'decis', u'unanim'] [u'wodonga', u'face', u'murder', u'trial'] [u'woman', u'charg', u'redfern', u'riot'] [u'woman', u'face', u'court', u'riot'] [u'work', u'track', u'gippsland', u'rail', u'revamp'] [u'wrist', u'injuri', u'keep', u'furyk', u'match', u'play', u'event'] [u'aborigin', u'academ', u'brand', u'minist', u'racist'] [u'heroin', u'drought'] [u'sweat'] [u'campaign', u'aim', u'lure', u'child', u'protect', u'worker'] [u'deni', u'keep', u'anthrax', u'vaccin', u'effect', u'secret'] [u'advoc', u'call', u'better', u'train', u'staff', u'mental'] [u'anderson', u'back', u'airspac', u'fine', u'tune'] [u'annan', u'arriv', u'japan'] [u'mull', u'hike'] [u'anti', u'log', u'slogan', u'spray', u'costal', u'walk'] [u'aussi', u'women', u'chase', u'fourth', u'match'] [u'australia', u'oppos', u'extens', u'timor', u'mission'] [u'aust', u'win', u'gold', u'world', u'debat', u'comp'] [u'ban', u'educ', u'onlin'] [u'bekel', u'storm', u'indoor', u'world', u'record'] [u'biggest', u'cruis', u'ship', u'dock', u'darwin'] [u'bodi', u'mangrov', u'swamp'] [u'bracket', u'creep', u'figur', u'prove', u'govt', u'slug', u'famili'] [u'british', u'doctor', u'prescrib', u'maggot'] [u'brumbi', u'blue'] [u'bush', u'want', u'gibson', u'passion', u'movi'] [u'abort', u'council', u'merger', u'poll'] [u'chang', u'migrat', u'zone', u'curb', u'illeg'] [u'chelsea', u'duff', u'crespo', u'cudicini'] [u'chief', u'overpow', u'hurrican'] [u'china', u'hire', u'coach', u'olymp', u'basketbal', u'squad'] [u'church', u'condemn', u'israel', u'barrier'] [u'clijster', u'eas', u'diamond', u'game', u'semi'] [u'conserv', u'lead', u'iran', u'elect'] [u'count', u'iran'] [u'crew', u'battl', u'blaze', u'southern', u'tasmania'] [u'cyprus', u'divid', u'reunion', u'talk'] [u'dali', u'continu', u'rich', u'vein', u'form'] [u'defend', u'champ', u'weir', u'take', u'share', u'lead'] [u'demon', u'beat', u'kangaroo', u'season', u'match'] [u'demon', u'turn', u'heat', u'kangaroo'] [u'doctor', u'urg', u'donor'] [u'driver', u'bust', u'watch', u'porn', u'wheel'] [u'eagl', u'thrash', u'collingwood', u'cat', u'beat', u'port'] [u'earli', u'result', u'indic', u'iran', u'conserv', u'sweep'] [u'eastern', u'state', u'heat'] [u'expat', u'flee', u'haiti'] [u'extinct', u'rat', u'focus', u'confer'] [u'fate', u'nuclear', u'whistleblow', u'unknown'] [u'contain', u'adelaid', u'hill'] [u'trap', u'flood', u'coal', u'china'] [u'freak', u'tide', u'leav', u'south', u'pacif', u'tuvalu'] [u'garrido', u'pip', u'ogradi', u'armstrong', u'trail'] [u'gold', u'coast', u'heatwav', u'hit', u'record', u'degre'] [u'govt', u'deni', u'slug', u'famili', u'unfair'] [u'govt', u'mislead', u'troop', u'anthrax', u'vaccin'] [u'govt', u'push', u'terror', u'law'] [u'greenspan', u'see', u'growth', u'ahead'] [u'gunn', u'throw', u'money', u'footbal', u'stadium'] [u'henman', u'end', u'feder', u'win', u'streak', u'face', u'hewitt'] [u'hewitt', u'down', u'schuettler', u'reach', u'rotterdam', u'semi'] [u'histor', u'portuges', u'shipwreck'] [u'hogg', u'spin', u'lanka'] [u'hospit', u'begin', u'anti', u'cancer', u'drug', u'trial'] [u'howard', u'defend', u'sydney', u'park', u'redevelop', u'plan'] [u'immigr', u'dept', u'call', u'tip'] [u'iran', u'vote', u'elect', u'like', u'favour', u'hardlin'] [u'iraq', u'elect', u'date', u'uncertain'] [u'israel', u'troop', u'wound', u'friend'] [u'japan', u'terror', u'attack', u'alert'] [u'jone', u'upbeat', u'rare', u'defeat'] [u'king', u'maintain', u'lead', u'bullet', u'beat', u'hawk', u'melbourn'] [u'labor', u'defend', u'pine', u'visit'] [u'latvia', u'pick', u'europ', u'green'] [u'libya', u'plutonium', u'iaea'] [u'remand', u'custodi', u'road', u'incid'] [u'minist', u'take', u'shoot', u'labor', u'agenda'] [u'monkey', u'steal', u'adelaid'] [u'mugab', u'float', u'retir', u'date'] [u'mugab', u'hint', u'retir', u'year'] [u'near', u'kill', u'indonesian', u'dengu', u'outbreak'] [u'govt', u'review', u'power', u'health', u'complaint', u'bodi'] [u'win', u'women', u'dayer'] [u'offici', u'probe', u'ralli', u'death'] [u'offici', u'probe', u'ralli', u'fatal'] [u'philippin', u'peac', u'talk', u'hold', u'april'] [u'polic', u'investig', u'fatal', u'accid'] [u'polic', u'prais', u'footi', u'support', u'behaviour'] [u'polic', u'report', u'coron', u'girl', u'death'] [u'pont', u'warn', u'lanka', u'pitch'] [u'pont', u'warn', u'lanka', u'pitch'] [u'power', u'disput', u'black', u'melbourn', u'factori'] [u'press', u'watchdog', u'critic', u'nigeria', u'deport'] [u'printwork', u'strike', u'keep', u'street'] [u'qanta', u'reject', u'busi', u'class', u'booz', u'fear'] [u'qanta', u'steward', u'fear', u'flight', u'booz'] [u'swelter', u'summer', u'heatwav'] [u'ranger', u'beat', u'flame', u'wnbl', u'final'] [u'result', u'point', u'conserv', u'iran'] [u'retail', u'recal', u'babi', u'jacket', u'amid', u'choke', u'fear'] [u'name', u'free', u'carniv', u'king'] [u'road', u'rage', u'incid', u'end', u'shoot'] [u'robber', u'stay', u'away', u'jigsaw', u'puzzl', u'hous'] [u'russia', u'say', u'iraq', u'elect', u'imposs'] [u'open', u'field', u'pack', u'tight'] [u'schwarzenegg', u'order', u'action', u'stop', u'marriag'] [u'seven', u'miss', u'ship', u'collis', u'east', u'china'] [u'spark', u'power', u'crisi'] [u'steal', u'monkey'] [u'stormer', u'hold', u'victori', u'cat'] [u'street', u'parti', u'launch', u'adelaid', u'fring'] [u'sydney', u'cliff', u'fall', u'kill'] [u'sydney', u'train', u'return', u'normal'] [u'target', u'recal', u'babi', u'size', u'jacket'] [u'band', u'hope', u'royal', u'date'] [u'tasmanian', u'premier', u'play', u'health'] [u'hospitalis', u'boat', u'accid'] [u'injur', u'tourist', u'rollov', u'fraser'] [u'union', u'stick', u'melbourn', u'blackout'] [u'expect', u'lift', u'libya', u'travel'] [u'marriag', u'debat', u'rag'] [u'scrap', u'iraq', u'caucus', u'plan'] [u'soldier', u'wound', u'leav', u'iraq'] [u'violent', u'protest', u'haiti'] [u'waratah', u'exorcis', u'demon', u'crusad'] [u'warn', u'look', u'forward', u'macgil', u'pair'] [u'set', u'solid', u'target'] [u'play', u'bird'] [u'wild', u'wind', u'whip', u'zealand'] [u'give', u'bushrang', u'sniff', u'final'] [u'women', u'feel', u'pain'] [u'woodward', u'wari', u'scot', u'lose'] [u'defend', u'govt', u'handl', u'heroin', u'overdos', u'rise'] [u'adelaid', u'monkey'] [u'announc', u'sydney', u'elect', u'candid'] [u'lobbi', u'organ', u'donat', u'boost'] [u'armstrong', u'win', u'way', u'tour'] [u'arsenal', u'beat', u'chelsea', u'grip', u'titl'] [u'dead', u'plung', u'ravin'] [u'australia', u'win', u'world', u'debat', u'championship'] [u'baxter', u'detaine', u'display', u'fring', u'festiv'] [u'belgian', u'mission', u'visit', u'guantanamo', u'detaine'] [u'serv', u'johansson', u'reach', u'final'] [u'blair', u'seek', u'elect'] [u'blue', u'smash', u'hapless', u'tiger'] [u'bollywood', u'sweep', u'india', u'oscar'] [u'brisban', u'sweat', u'record', u'heatwav'] [u'britain', u'revamp'] [u'british', u'pilot', u'kill', u'chopper', u'crash'] [u'bronco', u'storm', u'trial', u'match'] [u'bull', u'host', u'final'] [u'bulli', u'polic', u'academi', u'offic', u'remov'] [u'blast', u'hit', u'jerusalem', u'barrier', u'remov', u'begin'] [u'crash', u'kill', u'dublin'] [u'california', u'fight'] [u'carr', u'redfern', u'polic'] [u'china', u'aim', u'peopl', u'space'] [u'chopper', u'crash', u'afghanistan', u'dead'] [u'civilian', u'helicopt', u'crash', u'southern', u'afghanistan'] [u'clark', u'rout', u'lankan', u'lower', u'order'] [u'conserv', u'lead', u'iran', u'poll', u'count'] [u'crew', u'battl', u'blaze', u'bushland', u'reserv'] [u'cypriot', u'sens', u'deja', u'peac', u'date'] [u'darwin', u'chart', u'ambon', u'yacht', u'race'] [u'deadlock', u'haiti', u'peac', u'plan'] [u'democrat', u'wait', u'medicar', u'answer'] [u'diplomat', u'team', u'arriv', u'haiti'] [u'earthquak', u'shake', u'indonesian', u'capit'] [u'egypt', u'worri', u'propos', u'share', u'nile'] [u'england', u'grind', u'past', u'scot', u'franc', u'beat', u'itali'] [u'explos', u'hit', u'jerusalem'] [u'flash', u'flood', u'forc', u'road', u'closur'] [u'foundat', u'establish', u'inspir', u'donor'] [u'fowler', u'end', u'citi', u'lose', u'wolv'] [u'french', u'condemn', u'jerusalem', u'attack'] [u'fring', u'benefit', u'homeless'] [u'german', u'watchdog', u'recommend', u'shut', u'nuclear'] [u'glori', u'spirit', u'point'] [u'green', u'group', u'vow', u'pumphous', u'fight'] [u'green', u'launch', u'europ', u'wide', u'parti'] [u'haitian', u'journalist', u'critic', u'condit'] [u'haiti', u'peac', u'talk', u'stall'] [u'hewitt', u'continu', u'domin', u'henman'] [u'hewitt', u'eas', u'past', u'henman'] [u'hook', u'foundat', u'urg', u'organ', u'donat'] [u'howard', u'prais', u'latham', u'contend'] [u'india', u'avoid', u'karachi', u'peshawar', u'test'] [u'indonesia', u'propos', u'south', u'east', u'asian', u'peacekeep'] [u'investig', u'continu', u'plane', u'crash', u'site'] [u'iranian', u'leader', u'prais', u'poll', u'result'] [u'israel', u'remov', u'fenc'] [u'israel', u'barrier'] [u'japan', u'confirm', u'case'] [u'japan', u'report', u'suspect', u'case'] [u'jerusalem', u'blast', u'kill', u'seven'] [u'journal', u'admit', u'vaccin', u'report', u'error'] [u'journalist', u'moyer', u'leav'] [u'kefu', u'await', u'dope', u'decis'] [u'labor', u'retreat', u'retrospect', u'anti', u'terror', u'law'] [u'labor', u'wont', u'male', u'teacher', u'scholarship'] [u'lion', u'claw', u'hawk', u'blue', u'sink', u'swan'] [u'lord', u'ring', u'win', u'director', u'award'] [u'luna', u'park', u'site', u'continu', u'disput'] [u'drown', u'gold', u'coast'] [u'kill', u'boat', u'accid'] [u'kill', u'ultralight', u'plane', u'crash'] [u'stab', u'evict', u'gatecrash'] [u'surviv', u'cliff', u'fall'] [u'mayor', u'push', u'benefit', u'jail'] [u'melbourn', u'festiv', u'score', u'ticket', u'wrap', u'canada'] [u'milan', u'stuff', u'champion', u'sink', u'inter'] [u'japanes', u'troop', u'arriv', u'iraq'] [u'mystic', u'river', u'get', u'prize', u'french', u'film', u'award'] [u'network', u'want', u'alcohol', u'earlier'] [u'relief', u'heatwav'] [u'untouch', u'probe'] [u'consid', u'increas', u'water', u'restrict'] [u'polic', u'deni', u'redfern', u'plan'] [u'opposit', u'say', u'govt', u'treat', u'tourism'] [u'ozzi', u'osbourn', u'return', u'road'] [u'passeng', u'train', u'derail', u'denmark', u'injuri'] [u'say', u'school', u'condit', u'classroom'] [u'perren', u'lead', u'bull', u'charg', u'macgil', u'hammer'] [u'pilot', u'kill', u'afghanistan', u'crash'] [u'rule', u'date', u'terror'] [u'polic', u'investig', u'bodi', u'scrubland'] [u'polic', u'probe', u'molotov', u'cocktail', u'attack'] [u'power', u'strike', u'threaten', u'grand', u'prix'] [u'power', u'union', u'warn', u'delay'] [u'pratt', u'claim', u'indian', u'open', u'titl'] [u'program', u'help', u'indigen', u'student', u'place'] [u'qanta', u'give', u'merger'] [u'qanta', u'offer', u'payris'] [u'queensland', u'host', u'final'] [u'ranatunga', u'hit', u'warn', u'eat', u'jibe'] [u'cross', u'quiet', u'saddam', u'visit'] [u'cross', u'issu', u'saddam', u'report', u'card'] [u'cross', u'visit', u'saddam', u'hussein'] [u'cross', u'visit', u'saddam', u'hussein', u'custodi'] [u'report', u'claim', u'lade', u'corner'] [u'ruddock', u'speed', u'asio', u'recruit', u'drive'] [u'saint', u'crow', u'adelaid'] [u'scienc', u'fund', u'bodi', u'band'] [u'search', u'continu', u'miss'] [u'brace', u'scorcher'] [u'shark', u'edg', u'bull', u'despit', u'scoreless', u'second', u'half'] [u'lanka', u'second'] [u'strong', u'earthquak', u'hit', u'indonesia', u'sumatra', u'island'] [u'suspect', u'rebel', u'massacr', u'civilian', u'uganda'] [u'taipan', u'tighten', u'play', u'posit'] [u'put', u'meet'] [u'tasmania', u'wait', u'news', u'bacon'] [u'teen', u'hospit', u'polic', u'guard'] [u'thai', u'editor', u'remov', u'caus', u'protest'] [u'injur', u'airborn', u'crash'] [u'thunderstorm', u'bring', u'relief'] [u'union', u'warn', u'industri', u'action', u'delay', u'grand'] [u'order', u'essenti', u'diplomat', u'personnel'] [u'presid', u'mourn', u'death'] [u'power', u'return', u'disput', u'go'] [u'threaten', u'union', u'return', u'work'] [u'wahid', u'nomin', u'indonesia'] [u'walter', u'surg', u'open'] [u'polic', u'search', u'miss', u'woman', u'child'] [u'ankl', u'secur', u'tag', u'releas'] [u'weapon', u'seiz', u'pakistan', u'afghan', u'border'] [u'weir', u'seiz', u'shoot', u'lead'] [u'western', u'power', u'appoint', u'head'] [u'whistl', u'bird', u'home', u'help', u'laurel'] [u'wild', u'weather', u'creat', u'havoc'] [u'wolv', u'deni', u'striker', u'final', u'berth', u'clincher'] [u'wwii', u'white', u'mous', u'award', u'honour'] [u'voter', u'face', u'fin'] [u'kill', u'colombian', u'skirmish'] [u'aborigin', u'dealer', u'win', u'defam', u'payout'] [u'accus', u'redfern', u'rioter', u'releas', u'bail'] [u'adelaid', u'pilot', u'kill', u'afghan', u'attack'] [u'releas', u'iraq', u'report', u'card'] [u'alic', u'spring', u'atsic', u'council', u'seek', u'imag', u'chang'] [u'upgrad', u'profit', u'forecast'] [u'wooli', u'fail', u'lift', u'market'] [u'anim', u'group', u'urg', u'measur', u'stop', u'heat', u'stress'] [u'athlet', u'lack', u'competit'] [u'aussi', u'lose', u'grind', u'greenback', u'find', u'feet'] [u'australia', u'china', u'free', u'trade', u'talk', u'march'] [u'australian', u'guilti', u'assault'] [u'call', u'overhaul', u'drought', u'assist'] [u'bacon', u'resign', u'premier'] [u'bandit', u'south', u'east', u'chemist'] [u'bank', u'chief', u'say', u'oasi', u'develop', u'sound'] [u'beatti', u'eye', u'person', u'secur', u'boost'] [u'bennett', u'name', u'australia', u'coach'] [u'bennett', u'take', u'charg', u'kangaroo'] [u'bennett', u'tip', u'coach'] [u'bennett', u'tip'] [u'billiard', u'champ', u'politician', u'die', u'age'] [u'blaze', u'trigger', u'stop', u'orang', u'shoot', u'contest'] [u'blue', u'green', u'alga', u'close', u'irrig'] [u'bomber', u'strike', u'ahead', u'isra', u'barrier', u'hear'] [u'bomb', u'hit', u'iraq', u'polic', u'station'] [u'bowler', u'look', u'recontest', u'eyr'] [u'brack', u'call', u'help', u'power', u'disput'] [u'bridg', u'enthusiast', u'converg', u'gold', u'coast'] [u'british', u'school', u'give', u'power', u'carri', u'random'] [u'break', u'hill', u'honour', u'search', u'effort'] [u'bulldog', u'player', u'question', u'alleg', u'assault'] [u'burswood', u'profit', u'high', u'roller'] [u'busi', u'group', u'oppos', u'airport', u'develop'] [u'butcher', u'carv', u'spot', u'council'] [u'calder', u'highway', u'feder', u'fund'] [u'campbel', u'cast', u'doubt', u'region', u'develop'] [u'canberra', u'author', u'defend', u'airport', u'busi'] [u'cancer', u'forc', u'bacon'] [u'carr', u'back', u'polic', u'ahead', u'meet'] [u'carr', u'say', u'critic', u'govt', u'unsurpris'] [u'cassano', u'trick', u'keep', u'roma', u'hunt'] [u'celtic', u'british', u'record'] [u'announc', u'public', u'float', u'moranbah'] [u'chill', u'beef', u'export', u'stall'] [u'clijster', u'savour', u'home'] [u'club', u'reach', u'stage', u'champ', u'leagu'] [u'communiti', u'back', u'bega'] [u'confus', u'regrowth', u'definit'] [u'conserv', u'iran', u'elect'] [u'coria', u'end', u'moya', u'bueno', u'air'] [u'costello', u'push', u'lift', u'bracket'] [u'council', u'look', u'highway', u'bypass', u'resolut'] [u'council', u'want', u'apolog', u'paper', u'pregnanc', u'claim'] [u'court', u'hear', u'israel', u'barrier', u'test'] [u'cowboy', u'look', u'lift', u'man', u'draw'] [u'crow', u'coach', u'puzzl', u'season', u'loss'] [u'cruis', u'ship', u'boost', u'albani', u'tourism'] [u'dark', u'nose', u'lion', u'fair', u'game', u'research'] [u'deadlin', u'loom', u'council', u'poll', u'nomin'] [u'dental', u'shortag', u'put', u'bite', u'riverland'] [u'dfat', u'check', u'pilot', u'kill', u'afghanistan'] [u'disabl', u'group', u'question', u'hunter', u'fund'] [u'doctor', u'deregist', u'patient', u'perjuri'] [u'doctor', u'shortag', u'leav', u'victorian', u'centr'] [u'doubt', u'futur', u'tarpeena', u'footbal', u'club'] [u'downer', u'want', u'action', u'wmds'] [u'earthquak', u'shake', u'northern', u'pakistan'] [u'east', u'timor', u'urg', u'japan', u'continu'] [u'elliott', u'launch', u'convict', u'overturn'] [u'expert', u'meningococc', u'case', u'link'] [u'fatal', u'dive', u'spark', u'rock', u'pool', u'safeti', u'rethink'] [u'father', u'mourn', u'pilot', u'kill', u'afghanistan'] [u'fear', u'victoria', u'safe', u'toxic', u'dump'] [u'govt', u'urg', u'plan', u'citi', u'futur'] [u'ferrari', u'lover', u'face', u'fraud', u'charg'] [u'finger', u'point', u'boost', u'school', u'scienc'] [u'chief', u'face', u'question', u'canberra', u'inquest'] [u'firm', u'consid', u'wind', u'farm', u'avoid', u'toxic', u'dump', u'debat'] [u'book', u'bangladeshi', u'tribal', u'languag', u'hit'] [u'french', u'work', u'holiday', u'visa', u'issu'] [u'flood', u'clean', u'continu', u'roadhous'] [u'fund', u'senior', u'week', u'activ'] [u'ganguli', u'look', u'forward', u'pakistan', u'tour'] [u'germani', u'turkish'] [u'giant', u'kill', u'croc', u'play', u'dream', u'aliv'] [u'gladston', u'mayor', u'welcom', u'rail', u'project'] [u'good', u'thing', u'predict', u'hunter', u'coal', u'mine'] [u'govt', u'seek', u'public', u'comment', u'concession', u'leas'] [u'govt', u'stay', u'power', u'disput'] [u'green', u'want', u'wetland', u'mine', u'stop'] [u'grower', u'core', u'fear', u'appl', u'import', u'plan'] [u'haiti', u'rebel', u'capit'] [u'haiti', u'rebel', u'second', u'citi'] [u'heat', u'debat', u'expect', u'food', u'confer'] [u'hewitt', u'claim', u'rotterdam', u'crown'] [u'hill', u'announc', u'aust', u'troop', u'chang', u'iraq'] [u'hope', u'wind', u'farm', u'plan', u'boost', u'geraldton', u'coffer'] [u'hop', u'fade', u'chines', u'miner'] [u'howard', u'follow', u'latham', u'footstep'] [u'howard', u'latham', u'continu', u'australian', u'tour'] [u'howard', u'wrap', u'gippsland'] [u'hume', u'shire', u'mayor', u'join', u'anti', u'merger', u'push'] [u'hundr', u'evacu', u'nightclub', u'blaze'] [u'hunt', u'miss'] [u'india', u'kaif', u'pakistan', u'seri'] [u'indonesian', u'claim', u'rebel', u'kill', u'aceh'] [u'iranian', u'refuge', u'releas', u'work'] [u'ireland', u'wale'] [u'irish', u'mockeri', u'welsh', u'renaiss'] [u'islam', u'confer', u'denounc', u'iraq', u'invas'] [u'israel', u'destroy', u'suicid', u'bomber', u'home'] [u'japanes', u'militari', u'helicopt', u'collid'] [u'japanes', u'experi', u'north', u'coffe'] [u'japan', u'launch', u'militari', u'chopper', u'crash', u'probe'] [u'japan', u'funer', u'busi', u'breath', u'life'] [u'jerri', u'springer', u'opera', u'scoop', u'theatr', u'award'] [u'kerri', u'challeng', u'bush', u'debat'] [u'lake', u'water', u'reach', u'pooncari'] [u'landi', u'win', u'tour', u'algarv', u'armstrong', u'slip'] [u'latham', u'back', u'pine', u'agreement'] [u'latham', u'whirlwind', u'tour'] [u'leak', u'report', u'warn', u'climat', u'chang', u'bring'] [u'libya', u'want', u'uranium', u'plant', u'diplomat'] [u'liverpool', u'boss', u'houllier', u'face', u'surviv', u'battl'] [u'lose', u'translat', u'get', u'writer', u'award'] [u'loxton', u'waikeri', u'make', u'councillor', u'quit', u'decis'] [u'rescu', u'walk', u'safeti'] [u'martin', u'hop', u'recontest', u'kimberley'] [u'mcgrath', u'snare', u'return'] [u'meekatharra', u'join', u'anti', u'crime', u'partnership'] [u'meet', u'put', u'brake', u'main', u'street', u'event'] [u'meet', u'hous', u'estat', u'spotlight'] [u'melbourn', u'share', u'profit', u'report'] [u'milosev', u'trial', u'judg', u'resign', u'health', u'reason'] [u'miner', u'upbeat', u'nickel', u'sulphid'] [u'mint', u'releas', u'commemor', u'eureka', u'coin'] [u'miss', u'hike'] [u'monaco', u'princ', u'rainier', u'hospitalis'] [u'moomba', u'plant', u'meet', u'suppli', u'demand'] [u'cash', u'centrelink', u'trust', u'fight'] [u'question', u'magistr', u'decis', u'case'] [u'send', u'support', u'bacon'] [u'take', u'anti', u'poster'] [u'want', u'minist', u'tugun', u'bypass', u'meet'] [u'nader', u'presid'] [u'nat', u'hunt', u'high', u'profil', u'mcmillan', u'candid'] [u'near', u'kill', u'ugandan', u'rebel', u'raid'] [u'licenc', u'offer', u'sydney', u'brisban'] [u'power', u'chief', u'dismiss', u'critic'] [u'evid', u'profil', u'tourist', u'detent'] [u'wit', u'prison', u'bash'] [u'pair', u'leav', u'road'] [u'perform', u'art', u'industri', u'show', u'war'] [u'permiss', u'deni', u'jail', u'father', u'attend'] [u'defend', u'australian', u'polic', u'deploy'] [u'minist', u'defend', u'malaysian', u'log', u'firm'] [u'welcom', u'latham', u'visit'] [u'polic', u'begin', u'talk', u'redfern'] [u'polic', u'conduct', u'highway', u'drug', u'blitz'] [u'polic', u'continu', u'ralli', u'death', u'investig'] [u'polic', u'identifi', u'kuranda', u'bodi'] [u'polic', u'probe', u'beer', u'bottl', u'attack'] [u'polic', u'probe', u'death'] [u'polic', u'probe', u'hous', u'firebomb', u'attack'] [u'poll', u'rude', u'shock', u'carr', u'govern'] [u'portsmouth', u'quarter'] [u'process', u'plant', u'delay', u'onion', u'crop', u'doubt'] [u'govt', u'say', u'tugun', u'bypass', u'environment', u'necess'] [u'govt', u'seek', u'fraser', u'indigen', u'partnership'] [u'rail', u'link', u'expect', u'reviv', u'southern', u'region'] [u'ralf', u'stake', u'william'] [u'rampant', u'eagl', u'battl', u'injuri', u'ahead', u'demon'] [u'rampant', u'eagl', u'battl', u'injuri', u'demon'] [u'record', u'fall', u'north', u'west', u'swelter'] [u'redfern', u'polic', u'inquiri'] [u'reef', u'risk', u'climat', u'chang', u'report'] [u'reef', u'author', u'welcom', u'penalti', u'illeg', u'fish'] [u'resid', u'shine', u'pearl', u'farm', u'plan'] [u'resid', u'urg', u'boil', u'drink', u'water'] [u'restrospect', u'terror', u'plausibl', u'lawyer', u'say'] [u'reynold', u'urg', u'apologis', u'indigen', u'comment'] [u'creditor', u'happi', u'legal', u'action'] [u'blast', u'carniv', u'beat'] [u'road', u'condit', u'contribut', u'fatal'] [u'roebourn', u'shire', u'seek', u'burrup', u'villag', u'rate', u'rise'] [u'rumsfeld', u'visit', u'baghdad'] [u'opposit', u'warn', u'fake', u'licenc', u'websit'] [u'sculptor', u'win', u'limeston', u'coast', u'award'] [u'search', u'find', u'miss', u'skier', u'safe'] [u'storm', u'black', u'thousand', u'home'] [u'sheep', u'woe', u'threaten', u'diseas', u'free', u'status'] [u'shire', u'tender', u'swim', u'centr', u'design'] [u'slave', u'trial', u'draw'] [u'southern', u'melt', u'heatwav'] [u'spici', u'portrait', u'sell', u'onlin'] [u'spur', u'villa', u'throw', u'away', u'lead'] [u'lanka', u'clinch', u'thriller'] [u'lankan', u'pinch', u'thriller'] [u'survey', u'find', u'firm', u'offer', u'pay', u'matern', u'leav'] [u'sweden', u'rise', u'star', u'johansson', u'record', u'maiden'] [u'sydney', u'ferri', u'snap', u'strike'] [u'sydney', u'ferri', u'worker', u'stage', u'strike'] [u'tabcorp', u'agreement', u'clear', u'takeov'] [u'tabcorp', u'ant'] [u'team', u'prim', u'closest', u'season', u'year'] [u'teen', u'court', u'senior', u'bash'] [u'terri', u'plead', u'abramovich', u'spare', u'ranieri'] [u'theatr', u'hold', u'revamp', u'celebr'] [u'money', u'win', u'tropfest'] [u'thunderstorm', u'sweep', u'south', u'east'] [u'time', u'run', u'local', u'govt', u'poll', u'nomin'] [u'touch', u'footbal', u'player', u'converg', u'kalgoorli'] [u'trio', u'find', u'man', u'bodi', u'murrumbidge'] [u'horror', u'road', u'crash'] [u'uganda', u'rebel', u'attack', u'dozen', u'raid'] [u'advisori', u'board', u'back', u'bundoora', u'integr'] [u'union', u'agre', u'lift', u'factori', u'work', u'plan'] [u'union', u'call', u'perman', u'polic', u'riot', u'squad'] [u'union', u'play', u'threat', u'aust'] [u'licenc', u'buyback', u'cut', u'otway', u'log'] [u'victorian', u'power', u'disput', u'intensifi'] [u'hong', u'kong', u'firm', u'sign', u'iron', u'agreement'] [u'watt', u'overlook', u'award'] [u'weir', u'defend', u'titl', u'applebi'] [u'wilkinson', u'pain', u'free', u'zone'] [u'woman', u'child', u'dead', u'bushland', u'grave'] [u'woman', u'get', u'suspend', u'jail', u'term', u'lock', u'kid'] [u'woolworth', u'announc', u'profit'] [u'world', u'await', u'crop', u'safeti', u'debat', u'rag'] [u'world', u'court', u'consid', u'west', u'bank', u'barrier'] [u'wwii', u'militari', u'medal', u'sell', u'record'] [u'young', u'indian', u'suscept', u'osteoporosi', u'report'] [u'zaragoza', u'releg', u'zone'] [u'zimbabw', u'mugab', u'chest', u'pain'] [u'pois', u'crush', u'banger'] [u'dead', u'miss', u'chines'] [u'plead', u'poor', u'public', u'sector', u'talk'] [u'afghan', u'presid', u'send', u'pilot', u'famili', u'condol'] [u'airport', u'bodi', u'reject', u'fee', u'report'] [u'criticis', u'swinburn', u'hike', u'plan'] [u'support', u'join', u'parti', u'council', u'ticket'] [u'qaeda', u'attack', u'franc', u'veil'] [u'anti', u'cancer', u'drug', u'trial', u'begin'] [u'applebi', u'break'] [u'aristocrat', u'announc', u'million', u'loss'] [u'asian', u'student', u'flood', u'pill', u'report'] [u'straight'] [u'athlet', u'australia', u'say', u'track', u'star'] [u'dead', u'morocco', u'earthquak'] [u'crack', u'haven'] [u'aussi', u'break', u'world', u'balloon', u'record'] [u'aussi', u'gear', u'match', u'play', u'challeng'] [u'author', u'trial', u'chang', u'phone', u'servic'] [u'avalon', u'tip', u'jetstar', u'base'] [u'bacon', u'back', u'deputi'] [u'bank', u'rais', u'capit'] [u'beef', u'expo', u'chairman', u'hors', u'event'] [u'benefit', u'tuna', u'farm', u'plan', u'consult'] [u'bird', u'spread'] [u'bjorkman', u'flyer', u'marseill'] [u'black', u'cap', u'recal', u'harri', u'face', u'protea'] [u'bonfield', u'recontest', u'mayor', u'spot'] [u'boost', u'plan', u'offshor', u'fisheri', u'patrol'] [u'britain', u'see', u'drop', u'polit', u'asylum', u'claim'] [u'break', u'hill', u'host', u'age', u'care', u'probe'] [u'bulldog', u'accus', u'give', u'statement', u'polic'] [u'bush', u'enter', u'elect', u'campaign'] [u'bushfir', u'inquest', u'centr', u'inform'] [u'businessman', u'elect', u'shadforth', u'councillor'] [u'inject', u'famili', u'payment'] [u'nation', u'highway', u'plan'] [u'region', u'traine', u'doctor', u'subsidi'] [u'shelter', u'boost', u'homeless'] [u'waikeri', u'loxton', u'zone'] [u'mouthwash', u'indigen'] [u'boost', u'communiti', u'care', u'option', u'elder'] [u'carr', u'repledg', u'inject', u'hospit'] [u'charg', u'expect', u'west', u'wodonga', u'sieg'] [u'chines', u'shoplift', u'catch', u'pant'] [u'clark', u'announc', u'maori', u'polici', u'review'] [u'coast', u'properti', u'price', u'taper', u'rise'] [u'cooler', u'weather', u'spell', u'relief', u'grape', u'grower'] [u'cop', u'leak', u'prompt', u'polic', u'warn'] [u'cosgrov', u'defend', u'anthrax', u'jab'] [u'council', u'administr', u'hear', u'communiti', u'concern'] [u'council', u'back', u'heritag', u'estat', u'develop', u'plan'] [u'council', u'give', u'foreshor', u'revamp'] [u'council', u'put', u'condit', u'theiss', u'oper'] [u'council', u'urg', u'cash', u'elect', u'time'] [u'council', u'unlik', u'elector', u'chang'] [u'court', u'hear', u'caus', u'board', u'hous'] [u'court', u'search', u'origin', u'find', u'nemo'] [u'crimin', u'probe', u'target', u'halliburton', u'iraq', u'deal'] [u'defenc', u'radar', u'network', u'upgrad'] [u'democrat', u'urg', u'differ', u'way', u'address', u'doctor'] [u'disgrac', u'minist', u'get', u'year'] [u'downer', u'want', u'clariti', u'latham', u'tie'] [u'educ', u'chief', u'say', u'wilder', u'scheme', u'wont', u'stop'] [u'renew', u'zimbabw', u'sanction'] [u'indonesian', u'presid', u'post'] [u'extra', u'doctor', u'kalgoorli', u'hospit', u'possibl'] [u'farmer', u'rais', u'hand', u'mayor', u'spot'] [u'farmer', u'warn', u'trial'] [u'firi', u'rescu', u'flood', u'creek'] [u'fisher', u'fin', u'plunder', u'reef', u'green', u'zone'] [u'oversea', u'student', u'plead', u'guilti', u'kill'] [u'flood', u'affect', u'bedouri', u'food', u'drop'] [u'flood', u'threat', u'eas'] [u'foreign', u'doctor', u'see', u'temporari'] [u'emerg', u'chief', u'get', u'tough', u'grill'] [u'dead', u'rock', u'concert', u'stamped', u'indonesia'] [u'francou', u'frustrat', u'knee', u'injuri'] [u'francou', u'vent', u'frustrat', u'knee', u'injuri'] [u'freight', u'train', u'derail', u'newcastl'] [u'fund', u'seek', u'pipelin', u'farm', u'help'] [u'gilchrist', u'fin', u'dissent', u'symond', u'clear'] [u'gilchrist', u'fin', u'symond', u'clear'] [u'gilchrist', u'symond', u'face', u'dissent', u'charg'] [u'girl', u'hospit', u'light', u'strike'] [u'trade', u'talk', u'start', u'line', u'clear', u'draw'] [u'gold', u'coast', u'team', u'await'] [u'govt', u'order', u'report', u'teen', u'death'] [u'govt', u'plan', u'tougher', u'penalti', u'teen'] [u'govt', u'reject', u'famili', u'cash', u'shortfal'] [u'govt', u'review', u'csiro', u'climat', u'chang', u'report'] [u'green', u'group', u'urg', u'protest', u'otway', u'timber'] [u'greenspan', u'talk', u'household', u'financ'] [u'haiti', u'deadlin', u'extend'] [u'haiti', u'rebel', u'sight', u'capit'] [u'hartley', u'debut', u'bull'] [u'hawk', u'legend', u'quit', u'club', u'board'] [u'heavi', u'rain', u'busi', u'north', u'coast'] [u'hewitt', u'best'] [u'hope', u'wine', u'allianc', u'boost', u'sale'] [u'howard', u'vow', u'govt', u'honour', u'freeway', u'pledg'] [u'hume', u'mayor', u'air', u'merger', u'concern'] [u'hunter', u'health', u'reject', u'hospit', u'resourc', u'share'] [u'independ', u'zimbabw', u'newspap', u'sack', u'worker'] [u'india', u'probe', u'space', u'centr'] [u'indonesian', u'compani', u'say', u'telstra', u'share'] [u'iraqi', u'reconstruct', u'follow', u'past', u'experi'] [u'iron', u'agreement', u'boost', u'geraldton', u'job'] [u'japanes', u'porn', u'model', u'take', u'airport'] [u'japanes', u'student', u'deport', u'prank', u'death'] [u'juri', u'start', u'deliber', u'slave', u'case'] [u'kefu', u'clear', u'take', u'ban', u'drug'] [u'klim', u'comeback', u'trail'] [u'koop', u'face', u'fit', u'race'] [u'labor', u'leader', u'hit', u'defenc'] [u'latham', u'pledg', u'indigen', u'inequ'] [u'latham', u'walk'] [u'lennon', u'begin', u'duti', u'act', u'premier'] [u'lennon', u'tightlip', u'choic', u'deputi', u'premier'] [u'life', u'insur', u'report', u'profit'] [u'arrest', u'tripl', u'murder', u'japan'] [u'arrest', u'woman', u'babi', u'death'] [u'face', u'court', u'search'] [u'hospit', u'flood', u'river', u'ordeal'] [u'face', u'sentenc', u'road', u'death'] [u'face', u'trial', u'bracelet', u'theft'] [u'unit', u'face', u'schole'] [u'market', u'drift', u'lack', u'econom', u'news'] [u'mayor', u'candid', u'want', u'debt', u'action'] [u'mine', u'giant', u'give', u'ahead', u'oper'] [u'molik', u'set', u'venus', u'clash'] [u'moomba', u'normal', u'april'] [u'highlight', u'carnarvon', u'mobil', u'phone', u'woe'] [u'want', u'school', u'upgrad'] [u'mysteri', u'surround', u'stab', u'death'] [u'narrabri', u'introduc', u'water', u'restrict'] [u'nat', u'question', u'catchment', u'author', u'appoint'] [u'unveil', u'final', u'platform'] [u'great', u'britain', u'coach', u'timer'] [u'hous', u'lot', u'eas', u'land', u'shortag'] [u'zealand', u'south', u'africa', u'dayer', u'wash'] [u'iraq', u'pull', u'date', u'troop', u'cosgrov'] [u'smoke', u'zone', u'dont', u'work', u'studi'] [u'retain', u'final'] [u'consid', u'jail', u'sell'] [u'govt', u'plan', u'reduc', u'polic', u'number'] [u'govt', u'deni', u'town', u'gangster', u'paradis'] [u'korea', u'talk', u'day', u'offici'] [u'nuclear', u'watchdog', u'libyan', u'energi', u'program'] [u'australian', u'meat', u'strand', u'malaysian', u'port'] [u'review', u'maori', u'fund'] [u'opposit', u'concern', u'children', u'make'] [u'opposit', u'council', u'caravan', u'park', u'rezon'] [u'pakistan', u'launch', u'fresh', u'anti', u'qaeda', u'offens'] [u'parent', u'tell', u'kick', u'bottl', u'habit'] [u'plan', u'underway', u'redfern', u'polic', u'station'] [u'join', u'solomon', u'intervent', u'forc'] [u'polic', u'prais', u'hickey', u'mourner'] [u'poll', u'perform', u'fail', u'excit', u'latham'] [u'port', u'kembla', u'accid', u'spark', u'ambul', u'review'] [u'premium', u'public', u'liabil', u'eas'] [u'prison', u'offic', u'meet', u'stall', u'manag'] [u'produc', u'say', u'japanes', u'beef', u'market', u'flatten'] [u'progress', u'long', u'run', u'coal', u'disput'] [u'properti', u'price', u'rise', u'unlik', u'repeat'] [u'public', u'ask', u'report', u'water', u'cheat'] [u'public', u'featur', u'local', u'beach'] [u'public', u'servant', u'ralli', u'demand'] [u'public', u'urg', u'avoid', u'mozzi', u'contact'] [u'public', u'urg', u'comment', u'health', u'report'] [u'quit', u'line', u'call', u'bacon', u'news'] [u'rain', u'creat', u'gold', u'coast', u'chao'] [u'rain', u'wreak', u'havoc', u'gold', u'coast'] [u'ralf', u'turn', u'william', u'quit', u'threat'] [u'reborn', u'napster', u'claim', u'million', u'legal', u'download'] [u'redfern', u'rememb', u'thoma', u'hickey'] [u'reformist', u'quit', u'iranian', u'parliament'] [u'report', u'slam', u'recreat', u'griev', u'trend'] [u'resid', u'cray', u'concern'] [u'resid', u'support', u'famili', u'crime'] [u'right', u'group', u'bar', u'guantanamo', u'trial'] [u'roadblock', u'consid', u'fruit', u'fight'] [u'rylston', u'shire', u'improv', u'financ'] [u'santo', u'profit', u'unfaz', u'blast'] [u'public', u'servant', u'threaten', u'strike', u'disput'] [u'sawmil', u'move', u'ahead', u'revamp'] [u'scientist', u'mull', u'fish', u'welfar', u'polici'] [u'seal', u'dolphin', u'wash', u'mexican', u'beach'] [u'sixer', u'sharp', u'prepar', u'crunch', u'match'] [u'kill', u'indian', u'space', u'base'] [u'slow', u'respons', u'council', u'elect', u'nomin'] [u'spacewalk', u'leav', u'space', u'station'] [u'state', u'pressur', u'public', u'sector'] [u'storm', u'wreak', u'havoc', u'electr', u'network'] [u'sugar', u'rep', u'push', u'deal'] [u'support', u'doom', u'lighthous', u'platform'] [u'survey', u'examin', u'tennant', u'creek', u'mozzi', u'type'] [u'sydney', u'lord', u'mayor', u'contest', u'heat'] [u'tackl', u'cost', u'socceroo'] [u'tafe', u'teacher', u'protest', u'rise'] [u'taiwan', u'report', u'bird', u'outbreak', u'farm'] [u'takeov', u'battl', u'drain', u'lehmann'] [u'talk', u'fail', u'power', u'disput'] [u'tear', u'break', u'rock', u'brawl'] [u'technic', u'glitch', u'ground', u'skywest', u'plane'] [u'teenag', u'jail', u'caus', u'train', u'death'] [u'telstra', u'open', u'centr', u'perth'] [u'thuringowa', u'council', u'get', u'nation', u'plan', u'award'] [u'time', u'run', u'waterfront'] [u'trade', u'agreement', u'wont', u'affect', u'region', u'scheme'] [u'transport', u'compani', u'predict', u'record', u'earn'] [u'treatment', u'reduc', u'child', u'allergi', u'develop'] [u'trucki', u'die', u'highway', u'crash'] [u'truss', u'defend', u'drought'] [u'ugandan', u'massacr', u'investig'] [u'limit', u'right', u'citizen'] [u'hint', u'iraqi', u'elect'] [u'union', u'threaten', u'action', u'includ'] [u'union', u'help', u'basslink', u'protest', u'hear'] [u'unit', u'miss', u'beck', u'ruud', u'admit'] [u'unit', u'turn', u'kean', u'hold', u'porto'] [u'cours', u'creat', u'strong'] [u'audienc', u'gibson', u'passion'] [u'cancel', u'billion', u'attack', u'helicopt', u'contract'] [u'demand', u'fall', u'aust', u'chill', u'beef'] [u'deploy', u'marin', u'haiti'] [u'sailor', u'face', u'court', u'rape', u'charg'] [u'trade', u'deal', u'cut', u'howard', u'busi', u'support'] [u'teacher', u'warn', u'talk', u'fail'] [u'wagga', u'rape', u'spark', u'polic', u'warn'] [u'inquiri', u'examin', u'power', u'crisi'] [u'walgett', u'prepar', u'hickey', u'funer'] [u'warrior', u'move', u'bull', u'clash'] [u'water', u'recycl', u'plant', u'card', u'goulburn'] [u'wenger', u'want', u'lead', u'arsenal', u'home'] [u'wildcat', u'pirat', u'sword'] [u'wine', u'associaton', u'upbeat', u'grape', u'harvest', u'qualiti'] [u'wine', u'maker', u'free', u'european', u'name'] [u'worker', u'ralli', u'outsid', u'telstra', u'offshor', u'job'] [u'worker', u'reject', u'chemic', u'report', u'meet'] [u'zimbabw', u'price', u'spin', u'bangladesh'] [u'abbott', u'tour', u'central', u'australia'] [u'accc', u'investig', u'telstra', u'broadband', u'price', u'drop'] [u'accus', u'polit', u'law'] [u'act', u'chief', u'jail'] [u'unveil', u'tourism', u'strategi'] [u'adelaid', u'like', u'host', u'wallabi', u'pacif'] [u'adelaid', u'host', u'pacif', u'island', u'clash'] [u'adhd', u'research', u'carri', u'adelaid'] [u'consid', u'chang', u'video', u'report'] [u'agforc', u'support', u'wheat', u'singl', u'desk'] [u'airport', u'defend', u'charg'] [u'alic', u'spring', u'face', u'pancreat', u'health', u'woe'] [u'say', u'liston', u'import', u'fight'] [u'allstar', u'match', u'remain', u'darwin'] [u'qaeda', u'tape', u'warn', u'condemn', u'franc'] [u'arsenal', u'track', u'champion', u'leagu', u'quarter'] [u'report', u'record', u'profit'] [u'asylum', u'claim', u'drop', u'britain'] [u'aussi', u'test', u'challeng', u'lehmann'] [u'aussi', u'women', u'kiwi'] [u'austoft', u'redund', u'loom'] [u'australia', u'cave', u'pressur', u'joint', u'fighter'] [u'australia', u'chase', u'lanka'] [u'australia', u'drug', u'treatment', u'jail'] [u'babi', u'death', u'inquest', u'hear', u'evid'] [u'bacon', u'expect', u'begin', u'cancer', u'treatment', u'week'] [u'bacon', u'retir', u'benefit', u'young', u'backbench'] [u'benefit', u'flow', u'water', u'boost'] [u'black', u'cap', u'victori', u'put', u'heat', u'shiver', u'protea'] [u'blast', u'philippin', u'polic', u'armouri'] [u'boomer', u'opal', u'meet', u'china', u'athen', u'warm'] [u'bournemouth', u'hayter', u'set', u'record', u'quickest'] [u'boyn', u'knife', u'incid', u'trigger', u'polic', u'manhunt'] [u'brisban', u'secur', u'world', u'rematch'] [u'brisban', u'host', u'rugbi', u'rematch'] [u'busi', u'group', u'back', u'move', u'curb', u'public'] [u'busselton', u'policeman', u'charg', u'assault', u'teen'] [u'bypass', u'meet', u'offer', u'littl', u'hope', u'rout'] [u'cabinet', u'warn', u'possibl', u'pension', u'revolt'] [u'fund', u'offer', u'train'] [u'senat', u'inquiri', u'banana', u'decis'] [u'carpent', u'make', u'south', u'west', u'school', u'pledg'] [u'central', u'victoria', u'feel', u'teacher', u'strike'] [u'charg', u'drop', u'british', u'intel', u'leak'] [u'child', u'worker', u'consid', u'strike'] [u'clarenc', u'council', u'elect', u'delay', u'oppn'] [u'cloud', u'seed', u'trial', u'aim', u'boost', u'snow', u'coverag'] [u'commerc', u'bodi', u'seek', u'elector', u'enrol', u'extens'] [u'committe', u'hear', u'littl', u'inform', u'hold'] [u'communiti', u'learn', u'centr', u'move', u'closer', u'realiti'] [u'confid', u'drop', u'hit', u'dollar'] [u'connor', u'back', u'athen', u'qualifi', u'standard'] [u'coordin', u'moot', u'youth', u'club'] [u'costello', u'reveal', u'plan', u'australian', u'work'] [u'council', u'fear', u'build', u'wast', u'contamin'] [u'council', u'hop', u'hear', u'busi', u'drought', u'woe'] [u'council', u'pass', u'wollondilli', u'shire', u'hous', u'plan'] [u'council', u'say', u'dun', u'creek', u'tourism', u'plan'] [u'council', u'probe', u'swim', u'centr', u'time'] [u'council', u'want', u'explos', u'scuttl', u'ship'] [u'court', u'hear', u'inmat', u'plan', u'paedophil', u'kill'] [u'critic', u'renew', u'assault', u'propos', u'hec', u'chang'] [u'crow', u'forward', u'steven', u'rest', u'injur', u'knee'] [u'cunningham', u'announc', u'apprenticeship'] [u'deadlin', u'loom', u'council', u'poll', u'nomin'] [u'dollar', u'coal', u'suppli', u'help', u'bring', u'xstrata', u'profit'] [u'dolli', u'dunn', u'appeal', u'stall'] [u'dont', u'judg', u'bulldog', u'chief'] [u'dont', u'judg', u'dog', u'chief'] [u'doubt', u'cast', u'pipelin', u'fund'] [u'appeal', u'inadequ', u'street', u'race', u'sentenc'] [u'dravid', u'dismiss', u'secur', u'fear'] [u'driver', u'alert', u'speed'] [u'emerg', u'chief', u'deni', u'play', u'canberra'] [u'eminem', u'sue', u'appl', u'lose'] [u'england', u'cautious', u'optimist', u'vaughan'] [u'mexico', u'suspend', u'import', u'poultri'] [u'euroa', u'sieg', u'end', u'peac'] [u'export', u'puzzl', u'meat', u'shipment', u'sit'] [u'farmer', u'group', u'urg', u'earli', u'locust', u'intervent'] [u'farmer', u'list', u'demand', u'agricultur', u'summit'] [u'fear', u'air', u'child', u'care', u'oversuppli'] [u'sale', u'london', u'park', u'space'] [u'forum', u'debat', u'propos', u'radioact', u'dump'] [u'fraser', u'campground', u'go', u'green'] [u'freightlink', u'delay', u'adelaid', u'darwin'] [u'fulham', u'clash'] [u'fund', u'meekatharra', u'tourism', u'discoveri', u'trail'] [u'fund', u'seek', u'road', u'transport', u'museum'] [u'german', u'social', u'worker', u'steal', u'homeless'] [u'blast', u'execut', u'lack', u'leadership'] [u'girl', u'stabl', u'lightn', u'strike'] [u'good', u'rain', u'drench', u'western'] [u'govt', u'plan', u'doubl', u'employe', u'share', u'ownership'] [u'govt', u'urg', u'boost', u'remot', u'health', u'fund'] [u'govt', u'urg', u'increas', u'fund', u'region'] [u'govt', u'warn', u'bali', u'report'] [u'govt', u'warn', u'block', u'power', u'reform'] [u'green', u'target', u'townsvill', u'council', u'poll'] [u'grower', u'fight', u'banana', u'import'] [u'hagan', u'look', u'spot', u'knight'] [u'haitian', u'presid', u'warn', u'exodus'] [u'heavi', u'rain', u'drench', u'hunter', u'valley'] [u'henin', u'hardenn', u'readi', u'william', u'challeng'] [u'hepat', u'drug', u'fight', u'sar'] [u'dismiss', u'lawsuit', u'polit'] [u'hous', u'price', u'rise', u'southern'] [u'howard', u'talk', u'achiev', u'elect', u'loom'] [u'independ', u'rais', u'hand', u'june', u'council', u'poll'] [u'indigen', u'centr', u'open', u'townsvill'] [u'indigen', u'leader', u'welcom', u'torr', u'strait', u'land'] [u'indonesia', u'say', u'hambali', u'answer', u'question'] [u'inquiri', u'probe', u'hardi', u'asbesto', u'compo', u'fund'] [u'insur', u'group', u'promina', u'deliv', u'maiden', u'profit'] [u'insur', u'doubl', u'profit'] [u'ireland', u'lock', u'ocallaghan', u'miss', u'england', u'clash'] [u'isra', u'troop', u'palestinian', u'clash', u'ramallah'] [u'israel', u'vow', u'continu', u'build', u'west', u'bank', u'barrier'] [u'jayden', u'leski', u'injur', u'disappear'] [u'jetstar', u'plan', u'see', u'good', u'south', u'west', u'victoria'] [u'job', u'upgrad', u'pine'] [u'juri', u'alleg', u'slaveri', u'trial', u'deliber'] [u'juvenil', u'bail', u'facil', u'draw', u'board'] [u'kemp', u'announc', u'south', u'coast', u'green', u'project'] [u'kerr', u'deni', u'plan', u'switch', u'state', u'polit'] [u'kerri', u'win', u'utah', u'idaho'] [u'kingsley', u'keen', u'midfield', u'vacanc'] [u'knight', u'target', u'spot'] [u'labor', u'play', u'specul'] [u'labor', u'vow', u'mend', u'tie', u'state'] [u'latham', u'arriv', u'port', u'moresbi'] [u'latham', u'grill', u'student'] [u'latham', u'unsur', u'euthanasia', u'posit'] [u'lawyer', u'criticis', u'inquest', u'murder', u'toddler'] [u'rest', u'lanka'] [u'leav', u'seek', u'recruit', u'kerr', u'state', u'polit'] [u'leski', u'probe', u'hear', u'domaszewicz', u'lie', u'polic'] [u'lib', u'wakefield', u'candid'] [u'lib', u'promis', u'sewag', u'outfal'] [u'lib', u'team', u'look', u'alburi', u'poll'] [u'linfox', u'urg', u'reduc', u'grand', u'prix', u'circuit'] [u'lockerbi', u'compens', u'peac', u'libyan'] [u'locust', u'pose', u'threat', u'farmer'] [u'magistr', u'keep', u'court', u'open', u'undercov', u'drug'] [u'charg', u'redfern', u'riot'] [u'face', u'court', u'assault', u'charg'] [u'face', u'murder', u'trial', u'bulli', u'death'] [u'market', u'stop', u'lose', u'streak'] [u'maroochi', u'shire', u'deputi', u'back', u'playford', u'comment'] [u'mayn', u'group', u'detail', u'healthi', u'profit'] [u'media', u'warn', u'releas', u'inform'] [u'medic', u'studi', u'consid', u'asthma', u'impact'] [u'merger', u'unlik', u'affect', u'wind', u'farm', u'blade', u'factori'] [u'miss', u'girl', u'sydney'] [u'council', u'elect', u'nomin', u'roll'] [u'want', u'power', u'woe', u'fix'] [u'murrayland', u'face', u'hurdl', u'job', u'growth'] [u'nerimbera', u'town', u'water', u'flow', u'april'] [u'crisi', u'nauru', u'confid', u'vote'] [u'mydoom', u'outbreak', u'spread', u'delet', u'file'] [u'talk', u'resolv', u'north', u'korea', u'crisi'] [u'korea', u'nuclear', u'talk'] [u'sight', u'denmark', u'hospit', u'site', u'debat'] [u'northern', u'major', u'flood', u'threat', u'subsid'] [u'north', u'sydney', u'crow', u'nest', u'blackout', u'end'] [u'govt', u'merg', u'north', u'coast', u'council'] [u'govt', u'lack', u'debat'] [u'govt', u'urg', u'boost', u'bendemer', u'teach', u'staff'] [u'deni', u'mayor', u'tilt', u'money'] [u'upper', u'hous', u'censur', u'costa'] [u'offici', u'anger', u'warrior', u'talk'] [u'ombudsman', u'urg', u'clear', u'dirti', u'water', u'concern'] [u'oppn', u'call', u'energi', u'infrastructur', u'upgrad'] [u'pakistan', u'reject', u'australian', u'wheat'] [u'paradorn', u'exit', u'marseill', u'open'] [u'perth', u'airport', u'owner', u'defend', u'increas', u'cost'] [u'plastic', u'drop'] [u'plea', u'help', u'eas', u'rain'] [u'polic', u'hunt', u'attempt', u'child', u'abduct'] [u'polic', u'issu', u'descript', u'miss', u'girl'] [u'polic', u'plea', u'alcohol', u'restrict', u'support'] [u'polic', u'seek', u'miss', u'kimberley'] [u'polic', u'tell', u'attack', u'hickey', u'funer'] [u'polic', u'review', u'secur', u'shoot', u'incid'] [u'poppi', u'grower', u'sign', u'memorandum', u'farmer', u'group'] [u'port', u'corp', u'sign', u'multi', u'purpos', u'berth', u'agreement'] [u'port', u'hedland', u'bali', u'flight', u'agenda'] [u'pratt', u'dokic', u'slump', u'dubai', u'defeat'] [u'privatis', u'rule', u'jail'] [u'properti', u'invest', u'warn', u'overst', u'credit'] [u'protest', u'voic', u'opposit', u'wast', u'dump'] [u'qanta', u'quiet', u'avalon', u'base', u'specul'] [u'angler', u'hook', u'rare', u'shark'] [u'question', u'rais', u'aquacultur', u'draft', u'polici'] [u'fee', u'meet', u'resum', u'student', u'protest'] [u'opt', u'increas'] [u'ralf', u'pip', u'michael', u'imola', u'test'] [u'rebellion', u'roll', u'forward', u'haiti'] [u'region', u'member', u'join', u'strike'] [u'rescuer', u'search', u'morocco', u'rubbl'] [u'resid', u'road', u'plan'] [u'riverina', u'tafe', u'teacher', u'strike'] [u'rugbi', u'fever', u'fail', u'save', u'seven', u'line'] [u'rush', u'nomin', u'expect', u'local', u'govt', u'poll'] [u'lead', u'wag', u'growth'] [u'sauvag', u'uncertain', u'paralymp', u'particip'] [u'scholar', u'fault', u'gibson', u'passion'] [u'scientist', u'say', u'brown', u'cloud', u'spread', u'asia'] [u'shire', u'worri', u'declar', u'anim', u'plant', u'control'] [u'korea', u'float', u'regular', u'nuclear', u'talk'] [u'strong', u'econom', u'growth', u'help', u'tasmanian'] [u'studi', u'predict', u'dentist', u'shortag'] [u'coast', u'await', u'qanta', u'jetstar', u'plan'] [u'super', u'plan', u'unveil', u'want'] [u'suspect', u'charg', u'hick'] [u'tafe', u'teacher', u'strike', u'rise'] [u'taliban', u'qaeda', u'fighter', u'target', u'pakistan'] [u'tamworth', u'council', u'hold', u'meet'] [u'tension', u'build', u'haiti', u'opposit', u'reject'] [u'tension', u'rise', u'taiwan', u'head', u'elect'] [u'thailand', u'see', u'free', u'trade', u'deal', u'australia'] [u'seek', u'mayor', u'spot'] [u'time', u'run', u'council', u'poll', u'nomin'] [u'toothfish', u'challeng', u'highlight', u'poach', u'threat'] [u'town', u'planner', u'shortag', u'blame', u'stress', u'inquiri'] [u'transplant', u'surgeon', u'urg', u'australian', u'donat'] [u'truck', u'crash', u'caus', u'mayhem', u'turkey'] [u'suspend', u'legal', u'action', u'kalgoorli'] [u'ugandan', u'presid', u'apologis', u'massacr'] [u'univers', u'western', u'sydney', u'staff', u'protest'] [u'keep', u'libya', u'travel', u'restrict'] [u'govt', u'urg', u'reconsid', u'plan', u'toxic', u'dump'] [u'victoria', u'benefit', u'budget', u'airlin'] [u'video', u'highlight', u'townsvill', u'street', u'fight'] [u'virgin', u'challeng', u'jetstar'] [u'murchison', u'yield', u'gold', u'provinc'] [u'water', u'restrict', u'remain', u'central', u'highland'] [u'water', u'restrict', u'remain', u'despit', u'downpour'] [u'west', u'bank', u'barrier', u'hinder', u'peac', u'court', u'tell'] [u'winchelsea', u'consid', u'surf', u'coast', u'shire', u'split'] [u'wing', u'clip', u'kempsey', u'sydney', u'link'] [u'wood', u'readi', u'match', u'play', u'defenc'] [u'work', u'begin', u'lake', u'cowal', u'gold'] [u'xstrata', u'coal', u'underlin', u'miner', u'sector'] [u'kill', u'russian', u'blast'] [u'rescu', u'plan', u'target', u'sugar'] [u'outlin', u'term', u'radio', u'inquiri'] [u'abbott', u'say', u'health', u'servic', u'territori'] [u'agricultur', u'group', u'commit', u'trade', u'talk'] [u'price', u'littl', u'direct', u'impact'] [u'albani', u'shed', u'light', u'youth', u'educ', u'plan'] [u'aluminium', u'smelter', u'worker', u'succumb', u'injuri'] [u'appl', u'pit', u'beatl', u'label', u'maker'] [u'arab', u'brother', u'creat', u'controversi', u'bahrain'] [u'archbishop', u'urg', u'church', u'deal', u'marriag'] [u'aristid', u'draw', u'conclus', u'chao'] [u'arm', u'gang', u'attack', u'small', u'nigerian', u'town'] [u'give', u'club', u'time', u'stake', u'futur'] [u'asbesto', u'liabil', u'fund', u'review'] [u'atsic', u'demand', u'polic', u'apolog', u'dancer'] [u'aussi', u'exit', u'dubai', u'open'] [u'aussi', u'match', u'best'] [u'barcaldin', u'secur', u'paramed', u'servic'] [u'basebal', u'dodger', u'rooki', u'cricket'] [u'field', u'candid', u'stand', u'break', u'hill'] [u'field', u'candid', u'stand', u'council'] [u'blair', u'say', u'spi', u'claim', u'deepli', u'irrespons'] [u'board', u'hous', u'resid', u'save', u'court'] [u'boon', u'speak', u'child', u'abus'] [u'brack', u'absent', u'toxic', u'dump', u'ralli'] [u'break', u'hill', u'put', u'councillor', u'fund'] [u'bulk', u'bill', u'plan', u'reflect', u'polici', u'gillard'] [u'burk', u'leav', u'shark', u'clash'] [u'burketown', u'flood'] [u'bush', u'tell', u'haitian', u'stay'] [u'busi', u'spend', u'climb'] [u'go', u'indigen', u'inning'] [u'communiti', u'nurs', u'home'] [u'canberra', u'eas', u'water', u'restrict'] [u'canberra', u'miss', u'cheap', u'flight'] [u'candid', u'put', u'townsvill', u'need', u'polit'] [u'candid', u'announc', u'local', u'govt', u'elect'] [u'carr', u'defend', u'liquor', u'industri', u'deregul'] [u'case', u'whistl', u'blow', u'translat', u'drop'] [u'china', u'see', u'consensus', u'korea', u'talk'] [u'commiss', u'consid', u'shop', u'centr', u'plan'] [u'contrast', u'council', u'candid', u'number', u'north'] [u'council', u'back', u'apart', u'park', u'joint', u'ventur'] [u'council', u'work', u'pipelin', u'fund'] [u'court', u'hear', u'appeal', u'gold', u'nativ', u'titl'] [u'cwealth', u'down', u'jetstar', u'raaf', u'base', u'plan'] [u'cyclon', u'lash', u'outer', u'vanuatu'] [u'deadlin', u'loom', u'fenc', u'help'] [u'death', u'highlight', u'firefight', u'danger', u'minist'] [u'defenc', u'admit', u'problem', u'health', u'record'] [u'defenc', u'forc', u'urg', u'improv', u'health', u'servic'] [u'diseas', u'claim', u'halt', u'wheat', u'shipment'] [u'solv', u'year', u'sexual', u'assault', u'case'] [u'doctor', u'perform', u'domino', u'transplant'] [u'attack', u'put', u'toddler', u'hospit'] [u'driver', u'front', u'court', u'fatal', u'crash'] [u'earthquak', u'survivor', u'protest', u'lack'] [u'effort', u'rescu', u'trap', u'lungfish'] [u'elector', u'roll', u'glitch', u'leav', u'deputi', u'mayor'] [u'employ', u'minist', u'sell', u'superannu', u'plan'] [u'urg', u'action', u'plastic', u'bag'] [u'europ', u'comet', u'mission', u'delay'] [u'fake', u'diamond', u'prove', u'harder', u'real', u'thing'] [u'fear', u'jetstar', u'arriv', u'qanta', u'flight'] [u'fear', u'snowi', u'cloud', u'plan', u'silver', u'line'] [u'govt', u'urg', u'inject', u'bendigo', u'health', u'fund'] [u'ferrero', u'crash', u'carraz', u'blitz'] [u'cricket', u'boon', u'speak', u'child'] [u'prison', u'guard', u'accus', u'traffic'] [u'swim', u'coach', u'sue', u'network'] [u'forum', u'debat', u'nuclear', u'wast', u'issu'] [u'franc', u'propos', u'civilian', u'forc', u'haiti'] [u'fund', u'help', u'shorten', u'surgeri', u'wait', u'list'] [u'industri', u'outlin', u'plan', u'futur'] [u'gold', u'coast', u'look', u'forward', u'jetstar', u'boost'] [u'gold', u'promis', u'region', u'benefit'] [u'govt', u'attack', u'potenti', u'sydney', u'water', u'cut'] [u'grainco', u'help', u'graincorp', u'profit'] [u'green', u'accus', u'martin', u'stifl', u'smaller', u'parti'] [u'green', u'deni', u'vandalis', u'tasmanian', u'log', u'equip'] [u'greenspan', u'warn', u'pressur', u'retir', u'babi'] [u'group', u'go', u'indigen', u'inning'] [u'gunn', u'chipper', u'grow', u'profit'] [u'haiti', u'capit', u'brace', u'rebel'] [u'hawker', u'welcom', u'super', u'chang'] [u'hickss', u'father', u'unsurpris', u'indefinit', u'custodi'] [u'hockey', u'tour', u'sunshin', u'coast'] [u'hop', u'high', u'nation', u'child', u'leukaemia', u'studi'] [u'hors', u'owner', u'penalis', u'anim', u'cruelti'] [u'howard', u'warn', u'union', u'domin', u'labor'] [u'humanitarian', u'group', u'urg', u'haiti', u'intervent'] [u'hunt', u'miss', u'plane', u'continu', u'year'] [u'industri', u'action', u'hit', u'sydney', u'opera', u'hous'] [u'mount', u'local', u'govt', u'poll'] [u'hear', u'esso', u'mainten', u'worker', u'disput'] [u'jail', u'industri', u'talk', u'prove', u'posit'] [u'jetstar', u'virgin', u'fight', u'fare'] [u'judg', u'murder', u'trial'] [u'corp', u'appoint', u'director'] [u'kiwi', u'arriv', u'adelaid', u'netbal', u'trial'] [u'kpmg', u'admit', u'breach'] [u'labor', u'hit', u'super', u'packag'] [u'latham', u'look', u'strengthen', u'tie'] [u'latham', u'prais', u'resili'] [u'legal', u'chang', u'seek', u'improv', u'organ', u'donat'] [u'leppa', u'attack', u'mcguir', u'salari', u'jib'] [u'leppa', u'hit', u'mcguir', u'salari', u'jib'] [u'leski', u'return', u'inquest'] [u'leski', u'walk', u'inquest'] [u'libya', u'accept', u'respons', u'bomb', u'foreign'] [u'lion', u'blow', u'brown', u'go', u'knife'] [u'luca', u'urg', u'polit', u'tugun'] [u'maher', u'confid', u'final'] [u'die', u'blue', u'mountain', u'truck', u'accid'] [u'jail', u'store', u'marriott', u'hotel', u'explos'] [u'juventus', u'lose', u'away', u'leg'] [u'mcgrath', u'loom', u'blue'] [u'mcgrath', u'put', u'hand', u'blue', u'select'] [u'fin', u'remov', u'bull', u'testicl'] [u'microsoft', u'tokyo', u'offic', u'raid'] [u'million', u'spend', u'hunter', u'black', u'spot'] [u'mismanag', u'claim', u'spark', u'land', u'council', u'fund'] [u'miss', u'tourist', u'requir', u'search'] [u'mix', u'respons', u'clarenc', u'valley', u'super', u'council'] [u'delay', u'hospit', u'site', u'develop'] [u'doctor', u'need', u'rape', u'examin', u'train'] [u'mundin', u'offer', u'fight', u'green'] [u'museum', u'look', u'queen', u'visit'] [u'face', u'probe'] [u'nat', u'choos', u'capricornia', u'candid'] [u'nat', u'want', u'toxic', u'dump', u'plan', u'rethink'] [u'bring', u'star', u'match'] [u'nightclub', u'oppos', u'earli', u'lockout'] [u'challeng', u'nambucca', u'mayor'] [u'perman', u'anthrax', u'problem'] [u'north', u'urg', u'cash', u'jetstar', u'benefit'] [u'taker', u'kempsey', u'rout'] [u'train', u'doctor', u'avail', u'examin', u'rape', u'victim'] [u'nat', u'leader', u'defend', u'cloud', u'seed', u'trial'] [u'opposit', u'block', u'liquor', u'deregul'] [u'administr', u'honour', u'prestigi', u'award'] [u'korea', u'offer', u'energi'] [u'polic', u'search', u'driver'] [u'warn', u'dengu', u'fever', u'risk'] [u'dead', u'hobart', u'apart'] [u'onesteel', u'meet', u'worker', u'industri', u'concern'] [u'pakistan', u'challeng', u'australia', u'ganguli'] [u'parramatta', u'power', u'play', u'off'] [u'passion', u'sweep', u'cinema'] [u'profit', u'share'] [u'petition', u'want', u'green', u'light', u'signal'] [u'plan', u'underway', u'fostervill', u'gold', u'mine'] [u'urg', u'equal', u'treatment', u'wake', u'riot'] [u'welcom', u'budget', u'airlin'] [u'polic', u'charg', u'book', u'thief'] [u'polic', u'plan', u'random', u'weapon', u'search', u'melbourn'] [u'polic', u'search', u'continu', u'child', u'attack'] [u'politician', u'hear', u'save', u'lighthous'] [u'possum', u'pose', u'threat', u'cockatoo'] [u'power', u'drain', u'threaten', u'mar', u'rover', u'lifespan'] [u'palestinian', u'argu', u'west', u'bank', u'barrier', u'obstacl'] [u'prosecutor', u'close', u'milosev', u'case'] [u'public', u'includ', u'bushfir', u'warn', u'inquiri'] [u'public', u'servant', u'better', u'privat', u'sector'] [u'push', u'young', u'blood', u'resourc', u'industri'] [u'banana', u'grower', u'fight', u'filipino', u'import'] [u'rabbitoh', u'extend', u'minichiello', u'contract'] [u'razorback', u'croc', u'season'] [u'rebel', u'captur', u'northern', u'haiti', u'island'] [u'resid', u'urg', u'boil', u'drink', u'water'] [u'river', u'salin', u'tip', u'rise'] [u'roadhous', u'flood', u'prove', u'cost'] [u'rockhampton', u'welcom', u'airlin'] [u'ruddock', u'play', u'bali', u'report'] [u'rumsfeld', u'afghanistan'] [u'saint', u'hudghton', u'escap', u'shoulder', u'reconstruct'] [u'second', u'test', u'pose', u'doubl', u'troubl', u'zimbabw'] [u'shabbir', u'pakistan', u'recal'] [u'ship', u'captain', u'face', u'charg', u'fuel', u'spill'] [u'year', u'kung', u'fighter', u'nab', u'robber'] [u'smith', u'steer', u'sunderland', u'quarter'] [u'sotico', u'purchas', u'talk', u'fail'] [u'staff', u'crisi', u'prompt', u'child', u'protect', u'staff'] [u'korean', u'plan', u'talk', u'tabl'] [u'storm', u'rain', u'break', u'central', u'heat'] [u'student', u'union', u'vow', u'fight', u'rise', u'fee'] [u'studi', u'hop', u'discov', u'caus', u'childhood'] [u'sunbeam', u'food', u'plan', u'anga', u'park', u'takeov'] [u'sunday', u'takeaway', u'float', u'alcohol', u'report'] [u'super', u'plan', u'face', u'realiti', u'costello'] [u'support', u'boost', u'hospit', u'doctor', u'number'] [u'swagman', u'get', u'proper', u'funer', u'year'] [u'swim', u'coach', u'sue', u'network'] [u'sydney', u'hotel', u'raid', u'fraud', u'investig'] [u'symond', u'push', u'test', u'place'] [u'symond', u'push', u'test', u'place'] [u'talk', u'focus', u'manag', u'bass', u'strait', u'scallop', u'fisheri'] [u'tasrail', u'need', u'massiv', u'capit', u'inject'] [u'tate', u'face', u'season', u'sidelin'] [u'tate', u'face', u'season', u'torment'] [u'teacher', u'aid', u'secur', u'scholarship'] [u'teacher', u'disput', u'remain', u'unresolv'] [u'tesk', u'lead', u'master', u'round'] [u'think', u'tank', u'work', u'uni', u'relat', u'aborigin'] [u'thousand', u'powerless', u'wide', u'blackout'] [u'tiatto', u'aim', u'injuri', u'free'] [u'shiit', u'cleric', u'agre', u'delay', u'iraq', u'poll'] [u'tourism', u'bodi', u'await', u'jetstar', u'rout', u'detail'] [u'tourism', u'bodi', u'welcom', u'virgin', u'jetstar', u'price', u'cut'] [u'tourism', u'council', u'upbeat', u'jetstar'] [u'tourism', u'group', u'upbeat', u'jetstar', u'move'] [u'tourist', u'die', u'pool', u'mishap'] [u'triathlet', u'quick', u'defenc', u'titl'] [u'truck', u'crash', u'blast', u'fear', u'spark', u'safeti', u'move'] [u'truss', u'demand', u'account', u'pork', u'subsidi'] [u'tuqiri', u'rule', u'leagu', u'return'] [u'tweed', u'share', u'green', u'fund'] [u'bushwalk', u'rescu', u'die'] [u'palestinian', u'gunmen', u'isra', u'kill', u'clash'] [u'call', u'crisi', u'meet', u'haiti'] [u'union', u'air', u'hous', u'plan', u'concern'] [u'univers', u'better', u'law', u'minist', u'say'] [u'upbeat', u'assess', u'buoy', u'dollar'] [u'hold', u'acquit', u'guantanamo', u'inmat'] [u'releas', u'danish', u'nation', u'guantanamo'] [u'govt', u'offer', u'busi', u'assur', u'amidst'] [u'govt', u'urg', u'hear', u'farm', u'zone', u'fear'] [u'video', u'link', u'common', u'court'] [u'educ', u'depart', u'sue', u'boy', u'cage'] [u'govt', u'wont', u'region', u'develop', u'bodi'] [u'word', u'erupt', u'highway', u'fund'] [u'warrior', u'claim', u'underdog', u'status', u'final'] [u'water', u'agreement', u'closer', u'realiti'] [u'websit', u'strain', u'fare', u'rush'] [u'westralia', u'supplier', u'deni', u'blame'] [u'wetland', u'blaze', u'pose', u'risk', u'firefight'] [u'wine', u'invest', u'fund', u'satisfi', u'half', u'year'] [u'woman', u'beg', u'magistr', u'stay', u'jail'] [u'wooli', u'supplier', u'consid', u'industri', u'estat'] [u'work', u'begin', u'perth', u'mandurah', u'railway'] [u'aborigin', u'women', u'defi', u'polic', u'danc', u'topless'] [u'activist', u'claim', u'victori', u'food'] [u'liber', u'seek', u'male', u'teacher'] [u'adelaid', u'festiv', u'kick', u'aborigin', u'welcom'] [u'adelaid', u'polic', u'bolster', u'riverland', u'forc'] [u'allan', u'hensbi', u'touch', u'tucson'] [u'altern', u'rout', u'travel', u'road'] [u'apolog', u'topless', u'danc', u'disput'] [u'assault', u'case', u'rise', u'tasmania'] [u'associ', u'happi', u'late', u'releas', u'grape'] [u'athen', u'readi'] [u'aussi', u'women', u'complet', u'rout'] [u'bar', u'button', u'shed', u'nice', u'imag'] [u'berridal', u'golf', u'cours', u'benefit', u'water'] [u'bike', u'protest', u'littl', u'disrupt', u'traffic'] [u'biki', u'warn', u'behav'] [u'billion', u'invest', u'project', u'earmark'] [u'blix', u'butler', u'bug'] [u'blix', u'phone', u'tap', u'sourc'] [u'borrow', u'bonanza', u'continu'] [u'brogden', u'griffith', u'street'] [u'brumbi', u'anticip', u'open', u'clash', u'nucifora'] [u'brumbi', u'caucau', u'lift', u'blue'] [u'bulldog', u'coach', u'get', u'player'] [u'bull', u'determin', u'send', u'winner'] [u'bushwalk', u'death', u'spark', u'inquiri'] [u'elect', u'possibl', u'rann'] [u'electr', u'review', u'includ', u'region'] [u'campaign', u'focus', u'candid', u'charact'] [u'cattl', u'shortfal', u'stop', u'sale'] [u'centrelink', u'swoop', u'foreign', u'harvest', u'worker'] [u'channel', u'defend', u'defam', u'alleg'] [u'chines', u'crazi'] [u'coast', u'tourism', u'group', u'head', u'look', u'boost'] [u'commonwealth', u'request', u'media', u'high', u'court'] [u'communiti', u'urg', u'nomin', u'tidi', u'town', u'award'] [u'compani', u'confid', u'merger', u'wont', u'jeopardis', u'wind'] [u'compani', u'rule', u'electr', u'price', u'chang'] [u'conrad', u'black', u'lose', u'court', u'battl'] [u'contamin', u'concern', u'lead', u'water', u'boil'] [u'coron', u'urg', u'better', u'educ', u'road'] [u'council', u'disappoint', u'lack', u'respons', u'land'] [u'council', u'lament', u'lack', u'nomin', u'elect'] [u'council', u'surpris', u'hous', u'condit', u'report'] [u'council', u'seek', u'toxic', u'dump', u'sit'] [u'council', u'hart', u'heirloom', u'piano'] [u'council', u'ahead', u'mount', u'panorama'] [u'council', u'want', u'rail', u'servic', u'includ', u'portland'] [u'countri', u'town', u'benefit', u'armi', u'train', u'exercis'] [u'court', u'rule', u'accus', u'arm', u'robber'] [u'bull', u'indian', u'wed'] [u'cray', u'fishermen', u'berat', u'break', u'code', u'conduct'] [u'croc', u'feel', u'despond'] [u'cyclist', u'warn', u'test', u'black', u'list'] [u'delay', u'pagoda', u'develop'] [u'dept', u'distanc', u'respons'] [u'dinosaur', u'provid', u'tourism', u'boon'] [u'disciplinari', u'action', u'take', u'pilot'] [u'downer', u'sadden', u'news', u'miss', u'macedonian'] [u'driver', u'want', u'action', u'backmark'] [u'eat', u'cat', u'dog', u'ban'] [u'enhanc', u'game', u'facil', u'boost', u'entertain'] [u'european', u'set', u'world', u'travel', u'record'] [u'foreign', u'secretari', u'doubt', u'chief', u'claim'] [u'famili', u'court', u'simplifi', u'child', u'custodi', u'case'] [u'farmer', u'march', u'banana', u'import', u'chang'] [u'faulti', u'equip', u'interrupt', u'spacewalk'] [u'fear', u'amalgam', u'leav', u'resid'] [u'feedlot', u'case', u'adjourn'] [u'fernando', u'give', u'chanc', u'prove', u'fit'] [u'mayor', u'retir', u'council'] [u'forum', u'look', u'way', u'chang', u'legal', u'access'] [u'friend', u'killer', u'reciev', u'year', u'jail', u'sentenc'] [u'gate', u'list', u'world', u'richest', u'hit'] [u'team', u'test'] [u'global', u'economi', u'road', u'recoveri'] [u'govt', u'embark', u'mine', u'impact', u'consult'] [u'govt', u'host', u'drought', u'roundtabl'] [u'green', u'push', u'eleph', u'exhibit'] [u'haiti', u'rebel', u'surround', u'capit'] [u'hayden', u'face', u'lanka'] [u'health', u'insur', u'price', u'rise', u'outstrip', u'inflat'] [u'hickey', u'aunt', u'bail', u'riot', u'charg'] [u'highway', u'accid', u'prompt', u'debat', u'road'] [u'highway', u'black', u'spot', u'soon', u'wipe'] [u'hodg', u'win', u'channel', u'defam', u'case'] [u'hodg', u'win', u'defam', u'case'] [u'hospit', u'plan', u'critic', u'head', u'work', u'parti'] [u'hous', u'need', u'urgent', u'communiti', u'report'] [u'hundr', u'trap', u'blaze', u'boat', u'manila'] [u'hundr', u'unaccount', u'manila'] [u'hunter', u'resid', u'warn', u'deal', u'local'] [u'hydro', u'electr', u'power', u'scheme', u'tender', u'call'] [u'indian', u'kashmir', u'chief', u'escap', u'grenad', u'attack'] [u'indigen', u'remain', u'form', u'lagoon', u'walkway'] [u'indigen', u'snapshot', u'show', u'young', u'popul'] [u'insecticid', u'spill', u'clear'] [u'investig', u'continu', u'onlin', u'paedophil', u'ring'] [u'island', u'asbesto', u'remov', u'delay'] [u'israel', u'palestinian', u'clash', u'erupt', u'jerusalem'] [u'japan', u'boost', u'militari', u'tie'] [u'kelli', u'explain', u'effluent', u'scheme', u'fund', u'dilemma'] [u'kimberley', u'land', u'council', u'run', u'nativ', u'titl'] [u'kiss', u'target', u'univers', u'pool', u'discrimin'] [u'klitschko', u'go', u'sander', u'lewi', u'titl'] [u'knee', u'injuri', u'put', u'hayden', u'doubt'] [u'land', u'grab', u'fuel', u'council', u'surplus'] [u'larg', u'swell', u'spark', u'beach', u'warn'] [u'latham', u'support', u'sugar', u'industri', u'restructur'] [u'latham', u'meet', u'sugar', u'banana', u'grower'] [u'latham', u'woo', u'hinkler', u'voter'] [u'leav', u'bulldog', u'case', u'polic'] [u'leav', u'bulldog', u'case', u'polic'] [u'leed', u'takeov', u'consortium', u'pull'] [u'lend', u'data', u'renew', u'rate', u'rise', u'specul'] [u'libya', u'destroy', u'bomb'] [u'local', u'govt', u'elect', u'draw', u'good', u'respons'] [u'macedonia', u'mourn', u'presid'] [u'macedonian', u'presid', u'crash', u'plane'] [u'macedonian', u'presid', u'bodi', u'crash', u'site'] [u'charg', u'salt', u'nightclub', u'stab'] [u'refus', u'bail', u'alleg', u'attack'] [u'remand', u'bail', u'alleg', u'bash'] [u'serv', u'month', u'jail', u'social'] [u'mayor', u'team', u'face', u'elect', u'challeng'] [u'mccafferti', u'welcom', u'jetstar', u'takeoff'] [u'media', u'delay', u'peopl', u'smuggl', u'trial'] [u'medicar', u'fraud', u'charg', u'doctor', u'dismiss'] [u'minist', u'want', u'sector'] [u'monarchist', u'alarm', u'ditch', u'royal', u'arm'] [u'test', u'contamin', u'wheat', u'shipment'] [u'moroccan', u'angri', u'earthquak', u'respons'] [u'mundin', u'reject', u'green', u'bout'] [u'mundin', u'say', u'green', u'bout'] [u'narrogin', u'shire', u'resid', u'merger', u'feel', u'clear'] [u'nato', u'help', u'olymp', u'secur'] [u'cull', u'kangaroo', u'koala'] [u'cancer', u'drug', u'win', u'approv'] [u'lead', u'druitt', u'murder', u'inquiri'] [u'mingo', u'bridg', u'propos', u'win', u'plaudit'] [u'news', u'corp', u'pull', u'market', u'higher'] [u'zealand', u'women', u'post'] [u'ningaloo', u'shire', u'reject'] [u'explan', u'need', u'water', u'sack'] [u'plea', u'requir', u'westralia', u'case', u'adjourn'] [u'north', u'korea', u'talk', u'extend'] [u'consid', u'team', u'competit'] [u'nuclear', u'activ', u'ban', u'geraldton'] [u'olyroo', u'play', u'greec', u'olymp', u'warm'] [u'opposit', u'blast', u'cut', u'school', u'budget'] [u'outlook', u'mix', u'busi', u'forum', u'tell'] [u'paint', u'worth', u'steal', u'studio'] [u'pakistan', u'nuclear', u'technolog', u'arm', u'fair', u'report'] [u'passeng', u'tell', u'ferri', u'nightmar'] [u'perfect', u'diaz', u'grab', u'halfway', u'lead'] [u'perth', u'hold', u'state', u'funer', u'olymp', u'great'] [u'outlin', u'danger', u'busi'] [u'polic', u'columbin', u'shooter'] [u'polic', u'investig', u'heist'] [u'pollock', u'masterpiec', u'return', u'nation', u'galleri'] [u'pont', u'play', u'somerset'] [u'port', u'augusta', u'vandal', u'rais', u'hackl'] [u'port', u'decis', u'expect', u'short'] [u'princ', u'highway', u'remain', u'close'] [u'protest', u'palestinian', u'clash', u'isra', u'soldier'] [u'public', u'urg', u'health', u'countri'] [u'govt', u'seek', u'feder', u'help', u'tugun', u'bypass'] [u'question', u'rais', u'theft'] [u'rain', u'wash', u'zim', u'banger', u'test'] [u'rain', u'wash', u'match', u'play', u'second', u'round'] [u'report', u'blame', u'helicopt', u'accid', u'pilot'] [u'rescuer', u'pluck', u'survivor', u'burn', u'ferri'] [u'resid', u'organis', u'petit', u'town', u'futur'] [u'resid', u'urg', u'switch', u'cleaner', u'heat', u'method'] [u'welcom', u'coron', u'find', u'way', u'improv'] [u'rise', u'euro', u'prompt', u'rat', u'push'] [u'river', u'cross', u'remain', u'open', u'despit', u'drown'] [u'roma', u'parma', u'suffer', u'shock', u'uefa', u'defeat', u'liverpool'] [u'salvag', u'tree', u'caus', u'damag', u'report'] [u'sarin', u'attack', u'cult', u'guru', u'sentenc', u'death'] [u'school', u'breakfast', u'program', u'expand'] [u'second', u'delay', u'comet', u'chase', u'mission'] [u'serena', u'withdraw', u'qatar', u'open'] [u'shin', u'scan', u'delay', u'departur', u'england', u'jone'] [u'shirley', u'strickland', u'hunti', u'rememb'] [u'shirvo', u'pittman', u'compet'] [u'shooter', u'cassel', u'drop', u'legal', u'challeng'] [u'smith', u'say', u'pressur', u'black', u'cap'] [u'snake', u'bite', u'prompt', u'properti', u'warn'] [u'space', u'station', u'crew', u'begin', u'spacewalk'] [u'strickland', u'funer', u'hold', u'today'] [u'strike', u'affect', u'public', u'say', u'power', u'compani'] [u'studi', u'reveal', u'alarm', u'obes', u'trend', u'young', u'women'] [u'stuppl', u'snatch', u'ladi', u'master', u'lead'] [u'suncorp', u'record', u'profit', u'jump'] [u'surfer', u'safe', u'sweep'] [u'sydney', u'employ', u'studi', u'prompt', u'discuss'] [u'sydney', u'water', u'chief', u'sack'] [u'taliban', u'defeat', u'say', u'afghan', u'leader'] [u'appl', u'industri', u'fight', u'import'] [u'beat', u'indigen', u'cricket'] [u'land', u'owner', u'tackl', u'weed', u'threat'] [u'teenag', u'face', u'trial', u'shoot'] [u'tenni', u'chief', u'drug'] [u'world', u'school', u'shock', u'nation'] [u'tibetan', u'nun', u'record', u'detent', u'end'] [u'tindal', u'get', u'england', u'recal'] [u'town', u'brace', u'popul', u'explos'] [u'town', u'close', u'establish'] [u'traffic', u'disrupt', u'expect', u'melbourn', u'cyclist'] [u'trial', u'suspect', u'jemaah', u'islamiyah', u'member'] [u'true', u'dont', u'like', u'beckham', u'china'] [u'news', u'offer', u'viewer', u'nake', u'truth'] [u'dinosaur', u'speci', u'antarctica'] [u'tyson', u'agre', u'plea', u'deal', u'assault', u'charg'] [u'agenc', u'attack', u'nigeria', u'polio', u'vaccin'] [u'open', u'centr'] [u'eas', u'sanction', u'ban', u'libya'] [u'expect', u'benefit', u'intern', u'exposur'] [u'urg', u'haitian', u'presid', u'consid', u'futur'] [u'valentin', u'doubt', u'red'] [u'venus', u'humbl', u'dubai', u'quarter'] [u'govt', u'hold', u'urgent', u'talk', u'prevent'] [u'power', u'disput', u'wont', u'affect', u'consum', u'union'] [u'premier', u'defend', u'union', u'stanc'] [u'villag', u'roadshow', u'lose', u'appeal', u'share'] [u'govt', u'compens', u'agricultur', u'worker'] [u'wander', u'crocodil', u'catch', u'trap'] [u'western', u'power', u'probe', u'demand', u'failur'] [u'worksaf', u'target', u'region', u'area', u'statewid'] [u'young', u'urg', u'consid', u'job', u'land'] [u'zimbabw', u'opposit', u'leader', u'await', u'treason', u'rule'] [u'zoo', u'best', u'spend', u'eleph', u'sanctuari'] [u'bodi', u'recov', u'indian', u'crash'] [u'year', u'work', u'culmin', u'art', u'centr', u'open'] [u'academ', u'lobbi', u'hec', u'rise'] [u'replant', u'pin', u'despit', u'water', u'suppli', u'fear'] [u'adelaid', u'festiv', u'draw', u'night', u'queue'] [u'aqsa', u'brigad', u'claim', u'west', u'bank', u'settler', u'kill'] [u'anti', u'chavez', u'protest', u'disrupt', u'poverti', u'summit'] [u'anti', u'chavez', u'protest', u'kill', u'venezuela', u'ralli'] [u'aristid', u'exclud', u'haitian', u'power', u'share'] [u'aristid', u'isol', u'mull', u'militari', u'option'] [u'aristid', u'vow', u'stay', u'offic'] [u'athlet', u'scratch', u'minist', u'tell'] [u'atsic', u'pursu', u'topless', u'danc', u'complaint'] [u'balloon', u'obsess', u'inflat', u'pilot', u'trophi', u'cabinet'] [u'bangladeshi', u'writer', u'unconsci', u'hospit'] [u'battl', u'wentworth', u'come', u'head'] [u'blade', u'thunderstick'] [u'blair', u'minist', u'debunk', u'spi', u'claim'] [u'blix', u'back', u'spi', u'claim'] [u'bomber', u'blitz', u'see', u'lion'] [u'cancer', u'regist', u'make', u'earli', u'save'] [u'career', u'advic', u'guidelin', u'eas', u'push'] [u'carr', u'stand', u'sydney', u'water', u'reform'] [u'cathol', u'priest', u'abus', u'youth', u'studi'] [u'cat', u'face', u'demon', u'preseason', u'semi'] [u'central', u'desert', u'galleri', u'continu', u'namitjira', u'legaci'] [u'child', u'porn', u'dentist', u'free', u'practis'] [u'christ', u'statu', u'saviour', u'nude', u'australian'] [u'clement', u'seed', u'marseill'] [u'democrat', u'seek', u'alcopop', u'control'] [u'demon', u'preseason', u'semi'] [u'dockland', u'film', u'studio'] [u'dope', u'accus', u'bond', u'innoc'] [u'kill', u'pakistan', u'troop'] [u'emerg', u'team', u'test', u'counter', u'terror', u'plan'] [u'encourag', u'econom', u'data', u'fail', u'market'] [u'etern', u'flame', u'burn', u'bright', u'year'] [u'euro', u'fan', u'test', u'drunken'] [u'impos', u'break', u'sanction'] [u'explos', u'kill', u'bolivian', u'anti', u'drug', u'prosecutor'] [u'fashion', u'boss', u'wait', u'breathless', u'oscar', u'fame'] [u'firefight', u'mull', u'terror', u'exercis', u'boycott'] [u'fisheri', u'pursu', u'illeg', u'abalon', u'buyer'] [u'fresh', u'fight', u'rais', u'nigerian', u'death', u'toll'] [u'furi', u'mount', u'landmin', u'turn'] [u'marriag', u'battl', u'reach', u'york'] [u'govt', u'defend', u'cathol', u'school', u'fund', u'boost'] [u'green', u'condemn', u'downer', u'silenc', u'spi'] [u'green', u'demand', u'environ', u'report'] [u'haitian', u'capit', u'turmoil', u'rebel', u'near'] [u'haiti', u'presid', u'rule', u'resign'] [u'hawk', u'wildcat'] [u'health', u'cover', u'squeez', u'famili', u'budget', u'abbott'] [u'highway', u'reopen', u'chemic', u'spill'] [u'import', u'bug', u'suck', u'life', u'bellyach', u'bush'] [u'iraq', u'olymp', u'suspens', u'lift'] [u'israel', u'vow', u'complet', u'west', u'bank', u'barrier'] [u'java', u'offici', u'fear', u'dengu', u'strain'] [u'jerom', u'young', u'sue', u'olymp', u'committe'] [u'johnson', u'book', u'ticket', u'athen', u'olymp'] [u'judg', u'dismiss', u'stewart', u'secur', u'fraud', u'charg'] [u'kasprowicz', u'fire', u'australia', u'seri'] [u'kewel', u'cope', u'abus', u'leed', u'return'] [u'leaney', u'match', u'play', u'quarter'] [u'macedonian', u'death', u'tragedi', u'crisi'] [u'mckenzi', u'demand', u'consist', u'waratah'] [u'mclaren', u'confid', u'strong', u'start'] [u'melbourn', u'lose', u'hand', u'brawl'] [u'face', u'drug', u'charg', u'sydney', u'raid'] [u'urg', u'stab'] [u'minist', u'back', u'health', u'report'] [u'minist', u'eas', u'indemn', u'insur', u'burden'] [u'monti', u'menac', u'coast'] [u'moroccan', u'govt', u'deni', u'earthquak', u'slow'] [u'muralitharan', u'chandana', u'leav', u'aussi', u'spin'] [u'museum', u'light', u'sydney', u'night'] [u'nato', u'plan', u'afghan', u'secur', u'zone'] [u'newcastl', u'docker', u'strike', u'coal', u'conspiraci'] [u'nipper', u'safe', u'program', u'eas', u'paedophilia', u'fear'] [u'flight', u'survey', u'vanuatu', u'cyclon', u'damag'] [u'palestinian', u'suspect', u'hebron', u'ambush'] [u'perth', u'polic', u'condemn', u'partygo', u'behaviour'] [u'philippin', u'ferri', u'rescu', u'oper', u'resum'] [u'point', u'point', u'camera', u'target', u'speed'] [u'polic', u'target', u'fink', u'motorcycl', u'gang'] [u'polic', u'interview', u'steal', u'cezann', u'owner'] [u'poor', u'brisban', u'poll', u'fail', u'faze', u'liber'] [u'properti', u'council', u'back', u'urban', u'plan', u'chang'] [u'public', u'alert', u'polic', u'stab', u'victim'] [u'public', u'support', u'inspir', u'commission', u'rank'] [u'rain', u'wash', u'south', u'africa', u'dayer'] [u'rover', u'scale', u'mar', u'explor'] [u'senior', u'share', u'lead', u'tight', u'championship'] [u'seven', u'book', u'olymp', u'place'] [u'shampoo', u'thiev', u'clean', u'getaway'] [u'shirvo', u'withdraw', u'olymp', u'trial'] [u'slocum', u'vault', u'tucson', u'lead'] [u'soccer', u'probe', u'step', u'polic', u'state', u'berlusconi'] [u'sorenstam', u'fire', u'master', u'lead'] [u'spanish', u'supercomput', u'medic', u'climat'] [u'spend', u'drop', u'reign', u'econom', u'growth'] [u'stop', u'brother', u'bahrain', u'protest'] [u'stop', u'start', u'red', u'beat', u'chief'] [u'strike', u'forc', u'continu', u'bulldog', u'assault', u'inquiri'] [u'stuppl', u'take', u'lead', u'round'] [u'suicid', u'bomber', u'fail', u'harm', u'isra', u'troop'] [u'suppli', u'concern', u'drive', u'price'] [u'sydney', u'polic', u'mysteri', u'shoot', u'site'] [u'sydney', u'shoot', u'victim', u'puzzl', u'polic'] [u'talk', u'fail', u'resolv', u'north', u'korea', u'nuclear', u'disput'] [u'cut', u'boost', u'work', u'appeal', u'swan'] [u'bird', u'fall', u'short', u'victori'] [u'terror', u'suspect', u'face', u'extend', u'detent'] [u'trade', u'deleg', u'target', u'brunei'] [u'train', u'collid', u'bengal', u'marriag', u'process'] [u'turnbul', u'win', u'wentworth', u'preselect'] [u'anti', u'chavez', u'protest'] [u'approv', u'ivori', u'coast', u'peacekeep', u'forc'] [u'ask', u'spi', u'explan'] [u'union', u'brand', u'opposit', u'educ', u'polici', u'irrelev'] [u'court', u'clear', u'daili', u'telegraph', u'auction'] [u'court', u'refus', u'halt', u'wed'] [u'deni', u'iran', u'report', u'laden', u'captur'] [u'germani', u'patch', u'differ'] [u'germani', u'swap', u'differ', u'dollar', u'concern'] [u'abandon', u'power', u'competit', u'plan'] [u'waratah', u'good', u'shark'] [u'wild', u'condit', u'close', u'sydney', u'beach'] [u'wit', u'aid', u'polic', u'murder', u'inquiri'] [u'woman', u'escap', u'gold', u'coast', u'abduct', u'attempt'] [u'wood', u'mickelson', u'eas', u'match', u'play', u'round'] [u'report', u'highlight', u'custodi', u'order'] [u'accommod', u'crisi', u'meet', u'pleas', u'student'] [u'recaptur', u'escap', u'paedophil'] [u'african', u'union', u'deleg', u'dismiss', u'singl', u'armi'] [u'welcom', u'turnbul', u'preselect'] [u'anti', u'movement', u'bush', u'blair', u'iraq'] [u'aristid', u'leav', u'violenc', u'tear', u'haiti'] [u'aristid', u'urg', u'calm', u'gang', u'rampag', u'haiti'] [u'armstrong', u'face', u'lose', u'tour'] [u'arsenal', u'clear', u'fulham', u'hold', u'unit'] [u'restor', u'hit', u'cezann', u'sceptic'] [u'athlet', u'coach', u'frustrat', u'attitud'] [u'australia', u'cyclon', u'ravag', u'vanuatu'] [u'baddeley', u'eye', u'tucson'] [u'bald', u'head', u'promot', u'taiwan', u'referendum'] [u'bennif', u'sweep', u'razzi'] [u'berlusconi', u'upset', u'italian', u'plastic', u'surgeon'] [u'lade', u'arrest', u'claim', u'fals', u'pentagon'] [u'bodi', u'nepean', u'river'] [u'british', u'armi', u'fear', u'iraq', u'illeg', u'minist'] [u'british', u'govt', u'ask', u'probe', u'iraq', u'civilian', u'death'] [u'bulldog', u'troubl', u'asid', u'trial'] [u'bullet', u'sink', u'king', u'gasp', u'pointer'] [u'bull', u'beat', u'hurrican', u'open', u'super', u'account'] [u'bull', u'favourit', u'final'] [u'bull', u'favourit', u'final'] [u'bush', u'revamp', u'clone', u'panel', u'conserv'] [u'bush', u'tout', u'faith', u'base', u'drug', u'treatment'] [u'camplin', u'win', u'world', u'titl'] [u'canadian', u'tourist', u'dead'] [u'cathol', u'school', u'fund', u'target', u'need', u'union'] [u'cathol', u'school', u'negoti', u'fund', u'boost'] [u'china', u'gag', u'chatroom', u'user'] [u'choir', u'get', u'long', u'await', u'festiv'] [u'coin', u'meter', u'day', u'number'] [u'cole', u'win', u'championship'] [u'constitut', u'deadlin', u'loom', u'split', u'iraq', u'council'] [u'democrat', u'want', u'quarantin', u'inquiri'] [u'downer', u'slam', u'provoc', u'islam', u'leader'] [u'earthquak', u'rattl', u'south', u'west'] [u'elder', u'bushwalk'] [u'elect', u'monitor', u'welcom', u'aceh'] [u'estonian', u'soldier', u'die', u'baghdad', u'shoot'] [u'fear', u'hold', u'elder', u'bushwalk'] [u'festiv', u'claim', u'world', u'longest', u'sausag'] [u'festiv', u'competit', u'boost', u'ticket', u'sale'] [u'filipino', u'search', u'team', u'enter', u'burn', u'ferri'] [u'firi', u'battl', u'perth', u'hill', u'blaze'] [u'flood', u'close', u'highway'] [u'fund', u'boost', u'health', u'welcom'] [u'glori', u'snatch', u'draw'] [u'govt', u'kick', u'high', u'school', u'cannabi', u'educ'] [u'govt', u'open', u'iraqi', u'inquiri'] [u'hand', u'sever', u'brawl', u'reattach'] [u'henin', u'hardenn', u'grab', u'titl', u'year'] [u'hill', u'downer', u'split', u'second', u'inquiri'] [u'histor', u'airfield', u'gain', u'nation', u'trust', u'protect'] [u'histori', u'repeat', u'bradford', u'break'] [u'howard', u'rule', u'quick', u'promot', u'turnbul'] [u'hurdl', u'champ', u'tell', u'improv', u'time'] [u'india', u'resolv', u'issu', u'pakistan'] [u'india', u'set', u'elect', u'date'] [u'internet'] [u'iranian', u'defenc', u'minist', u'threaten', u'israel', u'case'] [u'iraqi', u'leader', u'miss', u'constitut', u'deadlin'] [u'iraq', u'win', u'debt', u'reduct', u'principl'] [u'isra', u'step', u'gaza', u'strip', u'missil', u'attack'] [u'italian', u'town', u'set', u'pamper', u'law'] [u'john', u'knight'] [u'kiwi', u'seri', u'africa', u'thriller'] [u'klim', u'play', u'olymp', u'select', u'chanc'] [u'leaney', u'wood', u'face', u'match', u'play'] [u'lib', u'resid', u'lobbi', u'tugun', u'bypass'] [u'lose', u'translat', u'find', u'fan', u'indi', u'award'] [u'malaysian', u'polic', u'quell', u'demonstr'] [u'die', u'dive', u'accid'] [u'manus', u'island', u'captiv', u'prefer', u'nauru'] [u'markov', u'hooker', u'soar', u'olymp', u'team'] [u'melbourn', u'water', u'restrict', u'extend'] [u'mental', u'health', u'patient', u'hous', u'expand'] [u'million', u'pay', u'inform', u'finger', u'saddam'] [u'bird', u'confirm', u'japan'] [u'music', u'great', u'scrutini'] [u'water', u'treatment', u'plan', u'track'] [u'arrest', u'marriott', u'bomb', u'investig', u'report'] [u'ireland', u'peac', u'process', u'crisi', u'sinn', u'fein'] [u'korean', u'nuclear', u'talk', u'resum'] [u'polic', u'continu', u'probe', u'multi', u'million'] [u'hold', u'earli', u'parti', u'oscar', u'contend'] [u'parmalat', u'retain', u'profit', u'foreign', u'oper'] [u'poet', u'snare', u'literatur', u'plaudit'] [u'porn', u'defenc', u'dept', u'comput'] [u'activ', u'polic', u'crime', u'drop'] [u'probe', u'launch', u'stadium', u'brawl'] [u'public', u'dupe', u'darwin', u'harbour', u'pipelin', u'plan'] [u'push', u'tougher', u'kill', u'pesticid'] [u'floodwat', u'dampen', u'lake', u'eyr'] [u'govt', u'hail', u'crime', u'statist'] [u'raaf', u'prepar', u'vanuatu', u'mission'] [u'rain', u'wreck', u'zim', u'banger', u'test'] [u'roof', u'roof', u'game', u'rogu'] [u'row', u'squad', u'name', u'olymp', u'tour'] [u'royal', u'wed', u'tour', u'fundrais', u'track'] [u'rwanda', u'post', u'genocid', u'privat', u'radio'] [u'kilometr', u'zone', u'road', u'fatal'] [u'saint', u'march', u'preseason', u'semi'] [u'school', u'fund', u'chang', u'church', u'valu'] [u'search', u'screensound', u'director', u'begin'] [u'second', u'half', u'storm', u'flatten', u'highland'] [u'sever', u'hand', u'brawl', u'motiv', u'unknown'] [u'sexual', u'right', u'stop', u'aid', u'confer', u'tell'] [u'simul', u'test', u'diseas', u'conting'] [u'soderl', u'power', u'past', u'clement', u'marseill', u'final'] [u'sorenstam', u'sizzl', u'master'] [u'sorenstam', u'beat'] [u'south', u'africa', u'toss', u'bowl'] [u'lanka', u'score', u'consol'] [u'sudan', u'jazeera', u'trial', u'open', u'defenc', u'lawyer'] [u'sydney', u'hospit', u'death', u'claim', u'disput'] [u'taiwan', u'protest', u'chines', u'missil'] [u'palestinian', u'kill', u'isra', u'missil', u'strike'] [u'tourist', u'fear', u'drown', u'north'] [u'chemic', u'tanker', u'disast'] [u'kill', u'injur', u'turkish', u'mosqu', u'collaps'] [u'union', u'pan', u'univers', u'indigen', u'support', u'chang'] [u'blame', u'aristid', u'haiti', u'crisi'] [u'mull', u'kpmg', u'crimin', u'charg'] [u'vail', u'deni', u'nat', u'banana', u'split'] [u'venezuelan', u'presid', u'warn', u'foe', u'clash'] [u'veteran', u'recal', u'kookaburra', u'squad'] [u'coast', u'brace', u'cyclon', u'monti'] [u'polic', u'cannabi', u'crop'] [u'warn', u'reunit', u'test', u'team'] [u'warrior', u'fight', u'bull'] [u'warrior', u'pull', u'miracl', u'final'] [u'warrior', u'pull', u'miracl', u'final'] [u'speed', u'hoon', u'law'] [u'weather', u'bureau', u'cyclon', u'alert'] [u'whistleblow', u'nurs', u'credibl'] [u'wildcat', u'slip', u'cost', u'home', u'court', u'advantag'] [u'admiss', u'libyan', u'preserv', u'khaddafi'] [u'wood', u'defend', u'match', u'play', u'crown', u'love'] [u'lift', u'victorian', u'food', u'campaign'] [u'detail', u'discrep', u'rat', u'aborigin'] [u'academ', u'strike', u'plan', u'enterpris', u'agreement'] [u'act', u'health', u'servic', u'chief', u'resign'] [u'judg', u'hear', u'norfolk', u'murder', u'case'] [u'opposit', u'push', u'right', u'amend'] [u'centuri', u'boro', u'major', u'trophi'] [u'agassi', u'pull', u'scottsdal', u'classic'] [u'age', u'care', u'gather', u'unhappi', u'minist', u'respons'] [u'ord', u'year', u'high'] [u'ancelotti', u'delight', u'milan', u'lazio'] [u'aristid', u'arriv', u'africa'] [u'aristid', u'seek', u'refug', u'marin', u'haiti'] [u'theft', u'victim', u'frustrat', u'polic'] [u'asian', u'choos', u'dietari', u'habit', u'chang'] [u'aspir', u'palm', u'chairman', u'highlight', u'self', u'rule', u'need'] [u'athlet', u'name', u'athen'] [u'kill', u'port', u'princ'] [u'aussi', u'short', u'triumph', u'oscar'] [u'aussi', u'welcom', u'warn', u'warm'] [u'aust', u'china', u'iron', u'deal'] [u'australian', u'arriv', u'cyclon', u'ravag', u'vanuatu'] [u'australian', u'run', u'oscar', u'glori'] [u'bacon', u'touch', u'anti', u'smoke', u'messag', u'respons'] [u'billiton', u'share', u'jump', u'china', u'deal'] [u'task', u'ahead', u'gold', u'coast', u'team'] [u'blair', u'face', u'fresh', u'iraq', u'claim', u'legal', u'advic'] [u'bogey', u'cost', u'baddeley', u'dear'] [u'brawl', u'prompt', u'polic', u'crackdown', u'weapon'] [u'bumper', u'januari', u'boonah', u'tourism'] [u'bureau', u'say', u'averag', u'summer'] [u'bushfir', u'inquiri', u'put', u'emerg', u'chief'] [u'bushfir', u'inquiri', u'wit', u'urg', u'rememb'] [u'bush', u'order', u'marin', u'haiti'] [u'busi', u'warn', u'underag', u'smoke', u'crackdown'] [u'cahil', u'clear', u'play', u'socceroo'] [u'continu', u'kangaroo', u'koala', u'cull'] [u'chardonnay', u'grape', u'price', u'rise'] [u'continu', u'local', u'govt', u'voic', u'determin'] [u'mayor', u'candid', u'disclos', u'turnbul'] [u'meet', u'tourism', u'plan'] [u'toxic', u'dump', u'near', u'school'] [u'campaign', u'forc', u'council', u'merger', u'roll'] [u'canberra', u'road', u'work', u'claim', u'tree'] [u'candid', u'gear', u'local', u'govt', u'poll'] [u'caribbean', u'nation', u'deplor', u'aristid', u'remov'] [u'carr', u'defend', u'hospit', u'chief', u'sack'] [u'carr', u'vow', u'untangl', u'sydney', u'rail'] [u'celtic', u'close', u'scottish', u'titl', u'ranger'] [u'centrebet', u'cheer', u'oscar', u'favourit'] [u'china', u'attack', u'human', u'right', u'record'] [u'announc', u'northern', u'suburb', u'candid'] [u'concern', u'mount', u'china', u'econom', u'stabil'] [u'confus', u'farm', u'zone', u'legisl'] [u'contract', u'see', u'biscuit', u'maker', u'oversea'] [u'cook', u'undergo', u'ankl', u'surgeri'] [u'cough', u'cold', u'kit', u'stem', u'antibiot', u'studi'] [u'councillor', u'flag', u'quick', u'cours', u'action', u'golf'] [u'council', u'develop', u'land', u'sale', u'report'] [u'council', u'welcom', u'strip', u'club', u'knockback'] [u'croc', u'sink', u'pirat', u'season', u'closer'] [u'cyclon', u'evan', u'head'] [u'cyclon', u'evan', u'hit', u'groot', u'eylandt'] [u'cyclon', u'help', u'break', u'year', u'rain', u'record'] [u'danger', u'offend', u'test', u'high', u'court'] [u'diver', u'come', u'hand', u'predatori', u'starfish'] [u'test', u'follow', u'bulldog', u'interview', u'polic'] [u'dog', u'sicken', u'assault', u'public'] [u'drought', u'contribut', u'shoplift', u'polic'] [u'eclect', u'confer', u'ponder', u'bliss'] [u'educ', u'campaign', u'target', u'young', u'cannabi', u'user'] [u'fear', u'deal', u'impact'] [u'escap', u'paedophil', u'remand', u'custodi'] [u'escap', u'paedophil', u'court'] [u'sanction', u'target', u'break'] [u'hinchinbrook', u'mayor', u'contest'] [u'export', u'surg', u'boost', u'australia', u'trade', u'balanc'] [u'depend', u'tobacco', u'money', u'eccleston'] [u'factbox', u'haiti'] [u'farmer', u'expect', u'cope', u'salti', u'water'] [u'feder', u'savour', u'round', u'rematch', u'safin'] [u'govt', u'urg', u'boost', u'princ', u'highway', u'fund'] [u'festiv', u'launch', u'onlin', u'perform', u'index'] [u'fifa', u'set', u'world', u'club', u'championship', u'return'] [u'fiji', u'coach', u'say', u'caucau', u'commit', u'pacif'] [u'filipino', u'militari', u'reject', u'ferri', u'bomb', u'claim'] [u'threat', u'continu'] [u'time', u'correspond', u'die', u'bali'] [u'franc', u'send', u'troop', u'haiti'] [u'freeman', u'keep', u'faith', u'aussi', u'athlet'] [u'gibson', u'passion', u'ascend', u'offic'] [u'golden', u'circl', u'tip', u'prick', u'time', u'pineappl'] [u'govt', u'like', u'probe'] [u'griffith', u'univers', u'mull', u'rise'] [u'hawk', u'threaten', u'boycott', u'region', u'match'] [u'highway', u'remain'] [u'home', u'closur', u'wont', u'split', u'elder', u'coupl', u'govt'] [u'hope', u'assault', u'examin'] [u'hospit', u'figur', u'lib', u'mismanag', u'govt'] [u'household', u'takeov', u'boost', u'hsbc', u'profit'] [u'hrbati', u'strong', u'form', u'dash', u'swede', u'teen', u'hop'] [u'hundr', u'drunken', u'youth', u'riot', u'underag'] [u'readi', u'test', u'cricket', u'symond'] [u'swimmer', u'plung', u'world', u'championship'] [u'injur', u'kumbl', u'agarkar', u'pakistan', u'dayer'] [u'interst', u'water', u'share', u'agenda'] [u'iraq', u'council', u'edg', u'interim', u'constitut'] [u'iraq', u'leader', u'agre', u'interim', u'constitut'] [u'iraq', u'report', u'suggest', u'review', u'agenc'] [u'irish', u'backpack', u'bail', u'rape', u'charg'] [u'islam', u'jihad', u'warn', u'israel', u'black', u'day'] [u'israel', u'confid', u'barrier', u'stay', u'lift'] [u'isra', u'court', u'order', u'halt', u'barrier', u'work'] [u'isra', u'offic', u'neglig', u'west', u'bank', u'death'] [u'jackson', u'lord', u'best', u'director'] [u'jackson', u'lord', u'oscar'] [u'jail', u'teacher', u'stop', u'work'] [u'jam', u'packer', u'join', u'qanta', u'board'] [u'japan', u'hold', u'firm', u'north', u'korea', u'talk'] [u'jetstar', u'plan', u'tasmania'] [u'kennedi', u'launch', u'action', u'curb', u'asic', u'probe'] [u'knight', u'spirit', u'farewel'] [u'labor', u'formalis', u'leadership', u'chang'] [u'landhold', u'reject', u'brack', u'toxic', u'dump', u'meet'] [u'latest', u'snapshot', u'show', u'littl', u'chang', u'agricultur'] [u'lawyer', u'blast', u'monster', u'label', u'belgian', u'child'] [u'livestock', u'produc', u'urg', u'regist', u'food'] [u'log', u'threaten', u'nation', u'park', u'list'] [u'maher', u'rule', u'clash'] [u'die', u'road', u'crash'] [u'face', u'court', u'terrorist', u'statement'] [u'injur', u'car', u'overturn'] [u'manufactur', u'activ'] [u'alex'] [u'marin', u'arriv', u'haiti', u'aristid', u'flee'] [u'maroochydor', u'stab', u'spark', u'polic', u'manhunt'] [u'militari', u'chief', u'defend', u'care', u'defenc', u'personnel'] [u'militari', u'chief', u'senat', u'committe', u'hear'] [u'miner', u'welcom', u'sack', u'worker'] [u'monti', u'batter', u'coast'] [u'monti', u'downgrad', u'pack', u'punch'] [u'industri', u'unrest', u'loom', u'teacher'] [u'polic', u'boost', u'riverland', u'station'] [u'echo', u'banana', u'import', u'concern'] [u'want', u'worker', u'accommod', u'boost'] [u'nato', u'admit', u'eastern', u'bloc', u'nation', u'april'] [u'camera', u'snapshot', u'highway', u'speed'] [u'newcastl', u'liverpool', u'play', u'draw'] [u'australian', u'know', u'haiti'] [u'convict', u'record', u'file', u'case'] [u'zimbabw', u'elect', u'situat', u'chang'] [u'chief', u'horrifi', u'group', u'comment'] [u'shire', u'irrig', u'campaign'] [u'govt', u'focus', u'indigen', u'palliat', u'care'] [u'issu', u'coastal', u'cyclon', u'alert'] [u'northern', u'cyclon', u'watch'] [u'nurs', u'secur', u'cancer', u'fund', u'bursari'] [u'oasi', u'inquiri', u'wind'] [u'onslow', u'await', u'cyclon', u'monti'] [u'organis', u'crime', u'think', u'drug'] [u'pacif', u'brand', u'float', u'rais'] [u'pakistan', u'deni', u'lade', u'search', u'quid'] [u'panama', u'offer', u'refug', u'aristid'] [u'panther', u'warrior'] [u'petit', u'urg', u'western', u'option', u'tugun', u'bypass'] [u'philippin', u'deport', u'alleg', u'separatist'] [u'pittman', u'anlezark', u'honour'] [u'play', u'highlight', u'hickss', u'detent'] [u'plenti', u'potenti', u'promot', u'break', u'hill'] [u'air', u'concern', u'plan', u'solomon', u'worker'] [u'approv', u'iraq', u'inquiri'] [u'polic', u'probe', u'sleep', u'bodi'] [u'polic', u'rescu', u'famili', u'karratha', u'flood'] [u'polic', u'seek', u'knife', u'wield', u'abductor'] [u'polic', u'pedestrian', u'victim'] [u'prawn', u'fisher', u'readi', u'season'] [u'pressur', u'launceston', u'airport', u'radar'] [u'probe', u'find', u'plane', u'overload', u'fatal', u'crash'] [u'properti', u'buyer', u'warn', u'watch', u'bait'] [u'close', u'cooper', u'deal', u'chelsea'] [u'putin', u'name', u'unknown'] [u'coalit', u'talk', u'break'] [u'lib', u'probe', u'branch', u'stack', u'claim', u'amid'] [u'race', u'club', u'shake', u'road', u'seal', u'critic'] [u'radiolog', u'clinic', u'get', u'scanner'] [u'ranatunga', u'say', u'warn', u'light'] [u'real', u'stretch', u'lead', u'valencia', u'slip'] [u'region', u'airlin', u'unit', u'stay', u'viabl'] [u'resourc', u'giant', u'reborn', u'float'] [u'rottnest', u'plan', u'kucera'] [u'salt', u'stab', u'accus', u'bail'] [u'saudi', u'author', u'investig', u'wed'] [u'school', u'hop', u'multi', u'purpos', u'hall', u'fund'] [u'scrap', u'metal', u'thiev', u'steal', u'histor', u'locomot'] [u'shoot', u'tie', u'round'] [u'spanish', u'polic', u'stop', u'explos', u'lade'] [u'staff', u'lose', u'job', u'wemen', u'close'] [u'stamp', u'duti', u'complic', u'yang', u'sale'] [u'star', u'tread', u'oscar', u'carpet'] [u'stat', u'confirm', u'riverina', u'summer'] [u'student', u'ralli', u'outsid', u'griffith', u'fee', u'meet'] [u'studi', u'reveal', u'hospit', u'infect', u'long', u'term', u'impact'] [u'sugar', u'grower', u'sign', u'regul', u'chang'] [u'survivor', u'renew', u'marshal'] [u'teach', u'strike', u'threat', u'fail', u'brack'] [u'teen', u'charg', u'redfern', u'riot'] [u'telstra', u'appoint', u'chief', u'iron', u'cdma', u'problem'] [u'thousand', u'come', u'begonia', u'festiv'] [u'thrupp', u'choos', u'athen', u'paralymp'] [u'thunderbird', u'defend', u'knee', u'injuri'] [u'tribun', u'consid', u'steal', u'wag', u'repar'] [u'truck', u'driver', u'electrocut', u'braidwood'] [u'trucker', u'propos', u'speed', u'control'] [u'turnbul', u'downplay', u'republican', u'stanc'] [u'melioidosi', u'townsvill'] [u'kill', u'truck', u'rollov'] [u'approv', u'haiti', u'forc'] [u'back', u'rise', u'student', u'fee'] [u'pois', u'approv', u'haiti', u'forc'] [u'screen', u'passeng', u'foreign', u'airport'] [u'vail', u'releas', u'free', u'trade', u'deal'] [u'venezuela', u'chavez', u'threaten', u'suppli'] [u'launch', u'hour', u'anti', u'terror', u'unit'] [u'victorian', u'teacher', u'threaten', u'week', u'strike'] [u'brace', u'cyclon', u'monti'] [u'compani', u'buy', u'gold'] [u'warrior', u'celebr', u'success'] [u'watkin', u'upbeat', u'polic', u'lawsuit', u'protect'] [u'waugh', u'brother', u'hop', u'exit', u'high', u'note'] [u'waugh', u'reject', u'blue', u'coach', u'role'] [u'weather', u'protest', u'hamper', u'histor', u'cattl'] [u'whelan', u'doesnt', u'want', u'rail', u'servic', u'compromis'] [u'william', u'replac', u'driver'] [u'wit', u'seek', u'fatal', u'highway', u'crash'] [u'wolv', u'season', u'knight'] [u'woman', u'child', u'trap', u'karratha', u'flood'] [u'woman', u'hospit', u'stab'] [u'wood', u'take', u'match', u'play', u'final'] [u'young', u'driver', u'urg', u'obey', u'speed', u'limit'] [u'miss', u'philippin', u'ferri'] [u'profit', u'tandou'] [u'act', u'author', u'test', u'human', u'right'] [u'agassi', u'henman', u'serv', u'supplement', u'task', u'forc'] [u'demand', u'inquiri', u'head'] [u'american', u'airlin', u'fin', u'passeng', u'profil'] [u'arab', u'brother', u'suspend'] [u'arafat', u'advis', u'shoot', u'dead', u'gaza', u'wit'] [u'astronom', u'discov', u'distant', u'galaxi'] [u'aurora', u'grant', u'licenc', u'retail'] [u'aussi', u'domin', u'warm', u'trio', u'centuri'] [u'australian', u'economi', u'expand', u'survey'] [u'australia', u'send', u'ambassador', u'north', u'korea'] [u'backbench', u'revolt', u'veteran'] [u'bacon', u'cancer', u'treatment', u'spark', u'equip', u'debat'] [u'banker', u'warn', u'growth', u'slowdown'] [u'barclay', u'withdraw', u'offer', u'holling', u'newspap'] [u'basketbal', u'coach', u'jail', u'offenc'] [u'beatti', u'highlight', u'need', u'sugar', u'industri'] [u'belgian', u'polic', u'face', u'dutroux', u'drive'] [u'boati', u'urg', u'shipshap', u'rule'] [u'bodi', u'river', u'week', u'polic'] [u'bomb', u'kill', u'soldier', u'baghdad'] [u'british', u'conserv', u'withdraw', u'support'] [u'busi', u'festiv', u'chang'] [u'carr', u'urg', u'meet', u'minist', u'council', u'princ'] [u'chief', u'minist', u'hit', u'citizenship', u'ceremoni'] [u'civil', u'liberti', u'council', u'criticis', u'polic', u'drug'] [u'clear', u'case', u'seek', u'nightclub', u'curfew'] [u'cobar', u'mayor', u'angri', u'shoot', u'lawsuit'] [u'cole', u'quit', u'chelsea'] [u'committe', u'consid', u'fish', u'farm', u'debat'] [u'convict', u'conman', u'tri', u'stop', u'report', u'british'] [u'convict', u'paedophil', u'front', u'court'] [u'council', u'committe', u'consid', u'hous', u'subdivis'] [u'council', u'defend', u'close', u'meet'] [u'council', u'green', u'light', u'tourist', u'tram', u'plan'] [u'council', u'seek', u'slice', u'iron', u'deal'] [u'council', u'staff', u'apart', u'plan'] [u'cricket', u'australia', u'make', u'zimbabw', u'tour', u'check'] [u'croc', u'threat', u'close', u'kakadu', u'swim', u'hole'] [u'cyclon', u'help', u'break', u'drought'] [u'cyclon', u'monti', u'head', u'inland'] [u'cyclon', u'monti', u'slam', u'north', u'west'] [u'cyclon', u'set', u'rainfal', u'record', u'gulf'] [u'darl', u'river', u'water', u'reach', u'home'] [u'deakin', u'staff', u'consid', u'protest', u'hec', u'increas'] [u'decis', u'unlik', u'quell', u'merger', u'debat'] [u'develop', u'accus', u'ignor', u'elder'] [u'diamond', u'fate', u'hang', u'balanc'] [u'disput', u'resolut', u'sweeten', u'relat', u'winemak'] [u'doctor', u'stop', u'work', u'servic', u'disput'] [u'dog', u'player', u'lose', u'contract'] [u'doubt', u'rais', u'dinosaur', u'extinct', u'theori'] [u'doubt', u'rais', u'forest', u'plantat'] [u'eagl', u'kerr', u'miss', u'season', u'open'] [u'economist', u'specul', u'rat', u'decis'] [u'emerg', u'chief', u'admit', u'ignor', u'canberra'] [u'europ', u'launch', u'comet', u'mission'] [u'lismor', u'timor', u'post'] [u'feder', u'fund', u'boost', u'indigen', u'health', u'clinic'] [u'govt', u'take', u'alburi', u'wodonga', u'land', u'bank'] [u'festiv', u'lift', u'profil', u'local', u'artist'] [u'home', u'charg', u'hook', u'death'] [u'fire', u'home', u'dark'] [u'fisheri', u'enter', u'south', u'west', u'disput'] [u'fisheri', u'look', u'lure', u'stronger', u'export'] [u'charg', u'child', u'porn'] [u'floodwat', u'bring', u'life', u'outback'] [u'footbal', u'victoria', u'decid', u'fate', u'girl'] [u'black', u'flavel', u'play', u'japan'] [u'haiti', u'presid', u'accus', u'abduct'] [u'franc', u'seek', u'extend', u'pacif', u'power'] [u'get', u'ahead', u'vilif', u'case'] [u'gaze', u'hit', u'final', u'format'] [u'germani', u'jordan', u'urg', u'greater', u'role', u'attack'] [u'golden', u'circl', u'vow', u'widespread', u'cut'] [u'govt', u'deni', u'sex', u'iraq', u'intellig'] [u'govt', u'promis', u'surpris', u'fine', u'print'] [u'govt', u'reveal', u'veteran', u'packag'] [u'govt', u'say', u'hospit', u'base', u'servic', u'stay'] [u'griffith', u'univers', u'announc', u'increas'] [u'growth', u'predict', u'australia', u'commod', u'export'] [u'head', u'say', u'ferrari', u'simpli', u'best'] [u'high', u'court', u'challeng', u'tough', u'begin'] [u'hobart', u'offic', u'build', u'sell'] [u'home', u'invad', u'inflict', u'attack'] [u'hop', u'worker', u'return', u'coal', u'ship', u'backlog'] [u'hotel', u'dump', u'bet', u'cost'] [u'human', u'error', u'blame', u'trawler', u'tanker', u'crash'] [u'indefinit', u'detent', u'danger', u'say', u'high', u'court'] [u'inmat', u'face', u'murder', u'trial'] [u'iraq', u'interim', u'constitut', u'hail', u'pioneer', u'text'] [u'jail', u'teacher', u'stop', u'work', u'woe'] [u'keen', u'expect', u'mile', u'hous'] [u'kerri', u'eye', u'super', u'tuesday', u'knockout'] [u'kiefer', u'templeton', u'second', u'round'] [u'labor', u'keen', u'scrutinis', u'trade', u'deal', u'fine', u'print'] [u'landhold', u'urg', u'remain', u'readi'] [u'nation', u'park', u'poni', u'leav'] [u'launceston', u'teen', u'flee', u'burn', u'hous'] [u'lawyer', u'continu', u'document', u'evid', u'argument'] [u'liber', u'nation', u'odd', u'coalit'] [u'light', u'shed', u'copper', u'coast', u'airstrip'] [u'liverpool', u'celtic', u'uefa'] [u'local', u'govt', u'reform', u'meet', u'draw', u'small', u'crowd'] [u'arrest', u'break', u'hill', u'want', u'murder'] [u'arrest', u'pilbara', u'theft'] [u'court', u'maroochydor', u'shoot'] [u'mcgradi', u'pleas', u'zinifex', u'job', u'pledg'] [u'medicar', u'safeti', u'pass', u'week', u'lee', u'say'] [u'meet', u'consid', u'pine', u'plantat', u'impact'] [u'meet', u'drive', u'home', u'road', u'safeti', u'issu'] [u'minist', u'ask', u'resolv', u'health', u'servic', u'woe'] [u'minist', u'prepar', u'chain', u'relic'] [u'minist', u'consid', u'detent', u'centr', u'camera'] [u'minist', u'consid', u'drug', u'oper', u'impact'] [u'offenc', u'charg', u'lay'] [u'question', u'famili', u'chang'] [u'narnia', u'chronicl', u'sign', u'film', u'treatment'] [u'nasa', u'signific', u'mar', u'announc'] [u'nevill', u'refus', u'conced', u'titl'] [u'charg', u'lay', u'volker'] [u'economi', u'read', u'market', u'gain'] [u'damag', u'report', u'gulf', u'cyclon'] [u'nrma', u'put', u'wage', u'propos', u'offic'] [u'nurs', u'threaten', u'industri', u'action'] [u'selector', u'choos', u'papp', u'test', u'team'] [u'oscar', u'glori', u'surpris', u'krumpet', u'creator'] [u'pair', u'appeal', u'rape', u'convict'] [u'pair', u'charg', u'cannabi', u'crop'] [u'pakistan', u'condemn', u'terror', u'attack', u'iraqi', u'shrine'] [u'papp', u'steer', u'black', u'cap', u'victori'] [u'parent', u'warn', u'stomach'] [u'announc', u'sugar', u'support', u'packag'] [u'polic', u'give', u'power', u'search', u'cafe', u'drug'] [u'polic', u'investig', u'home', u'hook', u'accus'] [u'polic', u'investig', u'loganlea', u'smash'] [u'polic', u'drown', u'victim'] [u'pont', u'katich', u'lehmann', u'score', u'centuri', u'warm'] [u'pope', u'honour', u'australian', u'human', u'right', u'worker'] [u'post', u'timber', u'clear', u'continu'] [u'public', u'urg', u'avoid', u'alag', u'bloom'] [u'putin', u'pick', u'virtual', u'unknown', u'russian'] [u'indigen', u'cricket', u'win', u'alic'] [u'race', u'return', u'haunt', u'zealand', u'polit'] [u'rail', u'cross', u'crash', u'investig'] [u'rain', u'eas', u'move'] [u'record', u'number', u'local', u'elect'] [u'reef', u'show', u'sign', u'coral', u'bleach'] [u'resort', u'consid', u'ban', u'bulldog'] [u'rieff', u'build', u'undergo', u'heritag', u'review'] [u'riverland', u'cathol', u'school', u'see', u'fund'] [u'roadwork', u'progress', u'death', u'toll', u'rise'] [u'robben', u'choos', u'chelsea', u'unit'] [u'rural', u'group', u'draft', u'tree', u'clear', u'legisl'] [u'rural', u'women', u'boost', u'groom', u'skill'] [u'russia', u'promis', u'treat', u'guantanamo', u'prison'] [u'compani', u'hope', u'defenc', u'forc', u'contract'] [u'draft', u'criticis', u'limit'] [u'safeti', u'boost', u'launceston', u'airport', u'radar'] [u'school', u'receiv', u'upgrad'] [u'schu', u'hungri', u'success'] [u'score', u'kill', u'blast', u'iraq'] [u'scud', u'misfir', u'dubai', u'open'] [u'senat', u'investig', u'import', u'propos'] [u'sewerag', u'plant', u'bear', u'brunt', u'wave'] [u'shiit', u'attack', u'pakistan'] [u'shiit', u'dead', u'pakistan', u'attack'] [u'resort', u'close', u'sell'] [u'soldier', u'demand', u'anthrax', u'vaccin', u'inquiri'] [u'africa', u'pakistan', u'complaint', u'list'] [u'stock', u'market', u'brisk', u'despit', u'rate', u'uncertainti'] [u'strong', u'dollar', u'cut', u'econom', u'growth', u'forecast'] [u'surfer', u'converg', u'snapper', u'rock', u'season', u'open'] [u'surfer', u'hope', u'wave', u'success', u'gold', u'coast'] [u'tasmanian', u'govt', u'get', u'look', u'cabinet'] [u'tasmanian', u'angri', u'qanta', u'servic'] [u'tathra', u'oyster', u'prove', u'purler', u'judg'] [u'teacher', u'jail', u'protest', u'lack'] [u'technic', u'issu', u'delay', u'releas', u'draft'] [u'tenterfield', u'water', u'restrict', u'remain'] [u'testud', u'track', u'qatar'] [u'stage', u'servic', u'take'] [u'face', u'perth', u'court', u'peopl', u'smuggl', u'charg'] [u'offic', u'detain', u'anti', u'govern'] [u'releas', u'bail', u'child', u'porn', u'charg'] [u'wound', u'nepales', u'bomb'] [u'tiger', u'dump', u'kremerskothen', u'crucial', u'clash'] [u'time', u'need', u'drought', u'recoveri'] [u'trade', u'deficit', u'take', u'gloss', u'growth', u'figur'] [u'transport', u'wag', u'blame', u'retail', u'food', u'price'] [u'arrest', u'redfern', u'riot'] [u'defend', u'bendigo', u'campus', u'bundoora', u'integr'] [u'union', u'say', u'teacher', u'forc', u'strike', u'better'] [u'dismiss', u'coup', u'claim', u'rebel', u'enter', u'haitian'] [u'plan', u'creat', u'haitian', u'council', u'earli'] [u'take', u'swipe', u'burma', u'drug'] [u'vaughan', u'plunder', u'jamaica', u'attack'] [u'venezuelan', u'recal', u'rule', u'postpon'] [u'veteran', u'welcom', u'benefit', u'boost'] [u'govt', u'face', u'industri', u'action'] [u'govt', u'urg', u'suppli', u'region'] [u'drench', u'weaken', u'cyclon', u'monti'] [u'escap', u'worst', u'monti'] [u'polic', u'corrupt', u'signific', u'inquiri'] [u'waugh', u'secur', u'world'] [u'welsh', u'butterfli', u'record', u'fall'] [u'wenger', u'warn', u'complac'] [u'wollongong', u'test', u'polic', u'lawsuit', u'legisl'] [u'woodward', u'ring', u'chang', u'ireland', u'clash'] [u'work', u'aplenti', u'involv', u'wetland', u'boundari', u'chang'] [u'shouldnt', u'dictat', u'term', u'player', u'capriati'] [u'zimbabw', u'claim', u'seri', u'second', u'test', u'end'] [u'catchment', u'author'] [u'abbott', u'rail', u'infrastructur', u'debat'] [u'pass', u'human', u'right', u'law', u'despit', u'opposit'] [u'game', u'help', u'boost', u'aussi', u'rule'] [u'agforc', u'minist', u'continu', u'tree', u'clear', u'talk'] [u'warn', u'unfilt', u'water', u'risk'] [u'ord', u'steadi', u'wake', u'rate', u'hold'] [u'council', u'team', u'unveil', u'lake', u'illawarra', u'plan'] [u'anim', u'welfar', u'group', u'protest', u'ralli'] [u'woman', u'hurt', u'paraglid', u'crash'] [u'anti', u'terror', u'law', u'draconian', u'feder', u'court', u'judg'] [u'argentin', u'cordon', u'fail', u'dope', u'test'] [u'arthur', u'advanc', u'arizona'] [u'assault', u'claim', u'hang', u'season', u'launch'] [u'dead', u'pakistan', u'shoot', u'offici'] [u'kill', u'nepal', u'violenc'] [u'atsic', u'chief', u'clark', u'face', u'rape', u'claim'] [u'attack', u'kill', u'iraqi', u'shiit', u'mourn', u'dead'] [u'attack', u'shiit', u'kill', u'iraq'] [u'aussi', u'riot', u'warn', u'return'] [u'aust', u'accus', u'steal', u'timor', u'right'] [u'australia', u'commit', u'terror', u'downer', u'say'] [u'australia', u'pursu', u'singl', u'econom', u'market'] [u'australia', u'reward', u'white', u'mous', u'year'] [u'australia', u'urg', u'cancel', u'zimbabw', u'tour'] [u'aviat', u'industri', u'shoot', u'parachut', u'plan'] [u'bacon', u'recov', u'cancer', u'surgeri'] [u'banana', u'industri', u'import'] [u'barclay', u'brother', u'consid', u'buy', u'daili', u'telegraph'] [u'bat', u'resign', u'chelsea', u'chairman'] [u'beachley', u'begin', u'hunt', u'seventh', u'world', u'titl'] [u'beachley', u'start', u'world', u'titl', u'campaign', u'gold'] [u'beatti', u'renew', u'govt', u'forc', u'tugun'] [u'beauti', u'plumag', u'shame', u'languag'] [u'beef', u'price', u'tip', u'fall', u'financi', u'year'] [u'blackmail', u'threaten', u'bomb', u'campaign', u'french'] [u'blue', u'bull', u'game', u'vital', u'game', u'plan'] [u'bodi', u'near', u'wetland', u'tourist', u'centr'] [u'bomb', u'attack', u'threaten', u'french', u'railway'] [u'bracken', u'bow', u'intern', u'rugbi'] [u'brack', u'clarifi', u'farm', u'zone', u'subdivis'] [u'brack', u'meet', u'landhold', u'toxic', u'dump', u'concern'] [u'bulldog', u'board', u'defer', u'penalti', u'decis'] [u'bulldog', u'board', u'defer', u'player', u'penalti', u'decis'] [u'bush', u'ignor', u'latest', u'attack', u'terror'] [u'butcher', u'injur', u'windi', u'warm'] [u'strong', u'leadership', u'troubl', u'health'] [u'cane', u'group', u'question', u'sugar', u'support'] [u'canegrow', u'chief', u'head', u'canberra', u'industri'] [u'sale', u'time', u'februari', u'high'] [u'chariti', u'reconsid', u'bulldog', u'partnership'] [u'cheney', u'stay', u'bush', u'elect', u'ticket'] [u'child', u'swim', u'recal'] [u'comment', u'posit', u'waterfront', u'plan'] [u'communiti', u'centr', u'help', u'boost', u'local', u'skill'] [u'confus', u'bushfir', u'warn', u'inquest', u'tell'] [u'cook', u'send', u'final', u'letter', u'america', u'age'] [u'costello', u'age', u'workforc', u'plan', u'target'] [u'council', u'forego', u'wharf', u'develop', u'probe'] [u'council', u'ponder', u'water', u'save', u'subsidi'] [u'court', u'ask', u'investig', u'british'] [u'court', u'hear', u'defenc', u'belgium', u'alleg', u'child'] [u'court', u'probe', u'fail', u'deport'] [u'crash', u'pilot', u'prais', u'miss', u'school'] [u'defenc', u'silent', u'palmer', u'claim'] [u'democrat', u'seek', u'region', u'health', u'board', u'chang'] [u'democrat', u'seek', u'overturn', u'euthanasia'] [u'sampl', u'offend', u'committe'] [u'dog', u'board', u'meet', u'decid', u'player', u'fate'] [u'draw', u'leav', u'bromwich', u'short', u'norwich'] [u'drink', u'factor', u'crash', u'tractor'] [u'elliott', u'replac', u'maher', u'glamorgan'] [u'timor', u'deni', u'briberi', u'accus'] [u'euro', u'plung', u'dollar', u'skyrocket'] [u'evan', u'shire', u'seek', u'help', u'insur'] [u'diplomat', u'child', u'trial', u'begin', u'bali'] [u'expert', u'spot', u'odditi', u'steal', u'cezann', u'paint'] [u'hunter', u'say', u'bush', u'come', u'clean'] [u'feder', u'govt', u'accus', u'short', u'chang'] [u'feder', u'win', u'open', u'rematch'] [u'fighter', u'jet', u'collid', u'turkey'] [u'kill', u'kashmir', u'attack'] [u'flood', u'expect', u'eas'] [u'floodwat', u'trap', u'resid', u'roof'] [u'fmit', u'consid', u'withdraw', u'chariti', u'support'] [u'dictat', u'consid', u'haitian', u'homecom'] [u'command', u'clear', u'sandlin', u'crisi'] [u'worldcom', u'chief', u'face', u'fraud', u'conspiraci'] [u'foster', u'chief', u'step'] [u'fruit', u'grower', u'happi', u'appl', u'import', u'probe'] [u'giant', u'toast', u'beer'] [u'girl', u'rule', u'footbal'] [u'girl', u'think', u'dead', u'year', u'later'] [u'godzilla', u'gear', u'anniversari', u'monster', u'mash'] [u'goomal', u'enjoy', u'communiti', u'bank', u'success'] [u'govt', u'accus', u'elect', u'pork', u'barrel'] [u'govt', u'announc', u'athlet', u'australia', u'review'] [u'govt', u'announc', u'review', u'athlet', u'australia'] [u'govt', u'rule', u'sell', u'defenc', u'golf', u'cours'] [u'govt', u'threaten', u'leagu', u'fund'] [u'govt', u'stay', u'clear', u'adelaid', u'hospit', u'worker'] [u'govt', u'urg', u'citizen', u'fight', u'fund'] [u'greater', u'sampl', u'recommend'] [u'haitian', u'rebel', u'threaten', u'arrest'] [u'haiti', u'rebel', u'claim', u'militari', u'post'] [u'harvey', u'bushrang'] [u'heart', u'consid', u'home', u'leagu', u'game', u'melbourn'] [u'henderson', u'brumbi', u'red', u'unchang'] [u'hick', u'habib', u'face', u'terror', u'train', u'charg', u'ruddock'] [u'home', u'invad', u'stab', u'paradis'] [u'home', u'isol', u'monti', u'drench'] [u'howard', u'win', u'vermont', u'primari', u'despit', u'run'] [u'illeg', u'fishermen', u'land', u'bigger', u'catch'] [u'immigr', u'dept', u'meet', u'afghani', u'refuge'] [u'independ', u'review', u'look', u'mental', u'health'] [u'index', u'show', u'servic', u'sector', u'slow'] [u'rat', u'unchang'] [u'super', u'tuesday', u'democrat', u'kerri'] [u'jail', u'teacher', u'angri', u'rise', u'refus'] [u'jetstar', u'aim', u'combat', u'tasmanian', u'resist'] [u'karbala', u'blast', u'care', u'plan', u'coalit'] [u'kennedi', u'deni', u'stall', u'offset', u'alpin', u'probe'] [u'kerri', u'wrap', u'nomin', u'edward', u'quit'] [u'king', u'wont', u'quit', u'earli', u'despit', u'lose', u'preselect'] [u'korean', u'chef', u'tast', u'food', u'wine'] [u'lake', u'dredg', u'uncov', u'rubbish', u'danger'] [u'land', u'council', u'want', u'nativ', u'titl', u'fund', u'review'] [u'latham', u'honeymoon', u'say', u'anderson'] [u'latham', u'top', u'approv', u'rat'] [u'rout', u'lankan'] [u'liverpool', u'manag', u'receiv', u'death', u'threat'] [u'mackay', u'want', u'restor'] [u'malaysian', u'call', u'snap', u'elect'] [u'jail', u'road', u'rage', u'stab'] [u'court', u'fake'] [u'mar', u'drench', u'water'] [u'matilda', u'begin', u'quest', u'athen'] [u'media', u'joke', u'bushfir', u'inquest', u'tell'] [u'medic', u'school', u'plan', u'moot', u'help', u'address', u'doctor'] [u'mental', u'health', u'defenc', u'trial', u'chang'] [u'middl', u'east', u'market', u'pose', u'challeng', u'export'] [u'minist', u'defend', u'prison', u'releas', u'record'] [u'minist', u'turn', u'gold', u'project'] [u'minist', u'urg', u'stop', u'lobster', u'decim'] [u'minist', u'welcom', u'town', u'plan', u'progress'] [u'molik', u'pratt', u'crash', u'qatar'] [u'monti', u'expect', u'drench', u'kalgoorli', u'boulder'] [u'murder', u'victim', u'mother', u'slam', u'reduct', u'killer'] [u'nat', u'morgan', u'vass', u'candid'] [u'nepal', u'attack', u'leav', u'dead', u'polic'] [u'nepali', u'rebel', u'kill', u'troop', u'attack'] [u'communiti', u'health', u'nurs', u'provid', u'announc'] [u'law', u'eas', u'transfer', u'compani', u'ownership'] [u'zealand', u'ban', u'islam', u'group', u'individu'] [u'quick', u'child', u'protect', u'worker', u'concern'] [u'north', u'librari', u'link', u'nation', u'librari'] [u'north', u'queensland', u'cyclon', u'watch'] [u'defend', u'campaign'] [u'launch', u'acknowledg', u'bulldog', u'drama'] [u'govt', u'expect', u'allay', u'jail', u'concern'] [u'govt', u'spend', u'million', u'upgrad', u'school'] [u'bodi', u'spark', u'murder', u'investig'] [u'govt', u'urg', u'address', u'alic', u'doctor', u'issu'] [u'nurs', u'union', u'put', u'industri', u'action', u'hold'] [u'nurs', u'school', u'experi', u'quota', u'shortfal'] [u'seek', u'south', u'pacif', u'leader', u'summit'] [u'kill', u'protest', u'venezuela', u'vote', u'rule'] [u'opium', u'product', u'fuel', u'spread'] [u'owner', u'alleg', u'steal', u'cezann', u'price'] [u'pair', u'face', u'court', u'marijuana', u'cash'] [u'parmalat', u'say', u'australian', u'secur'] [u'payment', u'relief', u'norman', u'grower'] [u'label', u'tuckey', u'veteran', u'comment', u'unaccept'] [u'polic', u'charg', u'teen', u'wagga', u'brawl'] [u'policeman', u'fight', u'indec', u'assault', u'jail', u'sentenc'] [u'polic', u'quiz', u'bulldog', u'assault', u'alleg'] [u'power', u'chang', u'afoot', u'bremer'] [u'price', u'wool', u'tip', u'drop', u'year'] [u'psychologist', u'appear', u'court', u'child', u'charg'] [u'public', u'urg', u'awar', u'threat'] [u'public', u'urg', u'help', u'snuff', u'firebug', u'blaze'] [u'queensland', u'sheep', u'produc', u'golden', u'fleec'] [u'raikkonen', u'fear', u'mclaren', u'readi'] [u'rail', u'crash', u'prompt', u'safeti'] [u'rail', u'network', u'document', u'miss', u'vital', u'inform'] [u'rant', u'rain', u'upset', u'roddick', u'round'] [u'centr', u'prepar', u'clash'] [u'report', u'unabl', u'caus', u'acid', u'contain', u'split'] [u'research', u'claim', u'breakthrough', u'cancer', u'treatment'] [u'resid', u'ask', u'council', u'issu'] [u'rockhampton', u'council', u'green', u'light', u'librari', u'site'] [u'ronaldo', u'sign', u'real', u'deal'] [u'rugbi', u'rain', u'boost', u'econom', u'growth'] [u'russian', u'opposit', u'candid', u'decri', u'media', u'bias'] [u'school', u'crash', u'sydney', u'hospitalis'] [u'schwarzenegg', u'claim', u'huge', u'victori', u'fiscal', u'plan'] [u'scientist', u'await', u'bird', u'coloni', u'lake', u'eyr'] [u'shake', u'derail', u'region', u'rail', u'job'] [u'shire', u'lobbi', u'portland', u'live', u'export'] [u'sign', u'iraq', u'constitut', u'delay', u'attack'] [u'sorri', u'german', u'thief', u'offer', u'anti', u'shoplift', u'tip'] [u'south', u'coast', u'seek', u'rail', u'line', u'answer'] [u'springborg', u'hope', u'reviv', u'coalit'] [u'state', u'fight', u'extra', u'revenu'] [u'student', u'union', u'uni', u'come', u'clean'] [u'studi', u'show', u'drink', u'improv', u'health'] [u'sydney', u'artist', u'win', u'lemprier', u'award'] [u'sydney', u'crash', u'victim', u'releas', u'hospit'] [u'tafe', u'staff', u'consid', u'protest', u'cut'] [u'taipan', u'host', u'wildcat', u'final', u'open'] [u'govt', u'accus', u'mislead', u'public'] [u'spain', u'team', u'wind', u'farm'] [u'telstra', u'head', u'deflect', u'talk', u'board', u'split'] [u'thuringowa', u'council', u'releas', u'roadwork', u'plan'] [u'tourism', u'oper', u'reject', u'swim', u'hole'] [u'tour', u'oper', u'offer', u'compens', u'fall'] [u'trade', u'hall', u'promis', u'mater', u'picket', u'line'] [u'tuckey', u'stand', u'veteran', u'affair', u'question'] [u'boxer', u'mage', u'bash'] [u'union', u'urg', u'public', u'rail', u'worker'] [u'help', u'offset', u'like', u'rise'] [u'wont', u'rule', u'independ', u'bendigo', u'campus'] [u'say', u'aristid', u'resign'] [u'voter', u'gear', u'super', u'tuesday'] [u'victorian', u'teacher', u'prepar', u'march', u'parliament'] [u'victorian', u'teacher', u'strike', u'close', u'school'] [u'violenc', u'erupt', u'shiit', u'celebr', u'pakistan'] [u'waff', u'outgo', u'presid', u'highlight', u'need', u'local'] [u'hop', u'restor', u'confid', u'polic'] [u'polic', u'blast', u'crimin', u'behaviour'] [u'spend', u'threaten', u'cut', u'costello'] [u'warwick', u'prepar', u'campdraft'] [u'water', u'restrict', u'south', u'east', u'water'] [u'webber', u'steer', u'clear', u'drive', u'rumour'] [u'west', u'bank', u'barrier', u'protest', u'die'] [u'westpac', u'deni', u'iraq', u'link'] [u'wollongong', u'council', u'back', u'apart', u'plan'] [u'woman', u'die', u'highway', u'crash'] [u'worksaf', u'help', u'weed', u'spray', u'compo', u'claim'] [u'work', u'underway', u'librari', u'galleri'] [u'accc', u'examin', u'telstra', u'broadband', u'charg'] [u'accc', u'warn', u'telstra', u'uncompetit', u'behaviour'] [u'adelaid', u'darwin', u'train', u'prove', u'use', u'armi'] [u'peopl', u'arrest', u'melbourn', u'drug', u'bust'] [u'alonso', u'schumach', u'shoe', u'ferrari'] [u'urg', u'parti', u'agre', u'medicar', u'packag'] [u'squander', u'sharehold', u'money'] [u'anderson', u'puzzl', u'state', u'tugun', u'bypass', u'call'] [u'apec', u'back', u'propos', u'outlaw', u'export'] [u'asparagus', u'industri', u'threaten', u'aussi', u'dollar'] [u'athen', u'readi', u'game', u'report'] [u'australia', u'consid', u'immigr', u'fingerprint', u'check'] [u'award', u'go', u'high', u'tech', u'sale', u'dairi'] [u'award', u'honour', u'polic', u'effort'] [u'bali', u'bomb', u'conspir', u'get', u'year', u'jail'] [u'better', u'time', u'ahead'] [u'crowd', u'farewel', u'volunt', u'firefight'] [u'blue', u'whale', u'see', u'south', u'west', u'coast'] [u'boro', u'bring', u'earth', u'bump'] [u'boundari', u'bodi', u'hear', u'demand'] [u'builder', u'concern', u'legisl'] [u'bulldog', u'promis', u'punish', u'player'] [u'bulldog', u'saga', u'turn', u'polit'] [u'bush', u'attack', u'democrat', u'oppon', u'fenc', u'sit'] [u'safeti', u'educ'] [u'wide', u'mental', u'health', u'review'] [u'region', u'health', u'board', u'reject'] [u'cane', u'farmer', u'regist', u'incom', u'support'] [u'central', u'face', u'child', u'charg'] [u'child', u'rapist', u'claim', u'girl', u'keep', u'dungeon'] [u'civil', u'libertarian', u'human', u'right'] [u'club', u'forc', u'defend', u'fundrais', u'activ'] [u'collingwood', u'gile', u'boost', u'test', u'case'] [u'collingwood', u'fan', u'greet', u'player'] [u'comment', u'cast', u'doubt', u'mitsubishi', u'australian'] [u'corrupt', u'alleg', u'rais', u'ship', u'purchas'] [u'council', u'candid', u'highlight', u'age', u'care', u'need'] [u'council', u'reliev', u'jail', u'plan', u'move', u'forward'] [u'council', u'worker', u'reject', u'offer', u'union'] [u'court', u'hear', u'tuna', u'boat', u'death', u'detail'] [u'cricket', u'australia', u'give', u'green', u'light', u'zimbabw'] [u'crick', u'probe', u'near', u'commission'] [u'custom', u'offici', u'interview', u'ashmor', u'reef', u'arriv'] [u'cyclon', u'town', u'consid', u'evacu'] [u'daughter', u'hop', u'replac', u'upper', u'hous', u'stalwart'] [u'davi', u'kuld', u'share', u'open', u'lead'] [u'deadlin', u'give', u'resort', u'comment'] [u'deadlin', u'matern', u'servic', u'plan'] [u'defenc', u'expert', u'predict', u'budget', u'blow'] [u'deport', u'court', u'case', u'continu', u'adelaid'] [u'disney', u'remov', u'board', u'chairman'] [u'dollar', u'dip', u'month'] [u'doubt', u'rais', u'banana', u'import'] [u'downer', u'iraq', u'comment', u'anger', u'forc'] [u'oval', u'delay', u'footbal', u'game'] [u'edinburgh', u'tattoo', u'visit', u'sydney'] [u'educ', u'minist', u'defend', u'hike'] [u'edward', u'end', u'white', u'hous'] [u'kill', u'indonesian', u'incid'] [u'play', u'talk', u'head', u'head', u'tiger'] [u'epic', u'prefer', u'pipelin', u'bidder'] [u'extradit', u'seek', u'adelaid', u'murder'] [u'farmer', u'toxic', u'dump', u'protest', u'parliament'] [u'farmer', u'wast', u'dump', u'protest', u'parliament', u'hous'] [u'govt', u'draw', u'fail', u'sawmil'] [u'ferguson', u'turn', u'friend', u'help'] [u'firefight', u'contain', u'blaze', u'despit', u'high'] [u'bush', u'focus', u'steadi', u'leadership'] [u'fisher', u'ask', u'help', u'boost', u'lobster', u'price'] [u'fisher', u'help', u'seek', u'pink', u'snapper'] [u'forecast', u'monitor', u'second'] [u'offici', u'face', u'child', u'prostitut'] [u'discus', u'champ', u'sentenc', u'steroid', u'import'] [u'finnish', u'trial', u'leak'] [u'head', u'lead', u'intellig', u'agenc', u'inquiri'] [u'worldcom', u'chief', u'plead', u'guilti', u'fraud'] [u'forrest', u'put', u'hand', u'recontest', u'malle'] [u'foxtel', u'accus', u'discriminatori', u'price', u'structur'] [u'attack', u'shiit', u'foil', u'say'] [u'glue', u'fume', u'caus', u'medic', u'concern', u'aboard', u'plane'] [u'govern', u'boost', u'defenc', u'forc', u'superannu'] [u'govt', u'advis', u'accus', u'break', u'grog', u'rule'] [u'govt', u'dismiss', u'free', u'trade', u'concern'] [u'govt', u'releas', u'trade', u'agreement'] [u'grafton', u'jail', u'teacher', u'consid', u'join', u'strike'] [u'grain', u'compani', u'merger', u'fall'] [u'great', u'lake', u'adopt', u'safeti', u'scheme'] [u'green', u'criticis', u'latest', u'shark', u'research'] [u'grower', u'consid', u'generat', u'plant', u'trial'] [u'gunmen', u'open', u'iraqi', u'polic', u'station'] [u'haitian', u'declar', u'state', u'emerg'] [u'haiti', u'violenc', u'continu', u'inquiri', u'seek'] [u'henin', u'hardenn', u'capriati'] [u'high', u'hop', u'newcastl'] [u'hope', u'busi', u'chamber', u'turnaround'] [u'hous', u'market', u'continu', u'slow'] [u'hous', u'shortag', u'caus', u'financi', u'hardship'] [u'hrbati', u'injuri', u'put', u'paradorn', u'dubai'] [u'human', u'error', u'caus', u'sharm', u'sheikh', u'crash', u'report'] [u'icpa', u'highlight', u'tertiari', u'educ', u'access', u'woe'] [u'indigen', u'crisi', u'ignor', u'forum', u'tell'] [u'indigen', u'leader', u'urg', u'racism', u'report'] [u'industri', u'estat', u'spark', u'truck', u'concern'] [u'inquest', u'tell', u'chief', u'sens', u'urgenc'] [u'iraqi', u'polic', u'arrest', u'karbala', u'blast'] [u'israel', u'defend', u'strike', u'self', u'defenc'] [u'isra', u'tank', u'enter', u'rafah', u'amidst', u'heavi', u'shoot'] [u'japan', u'mobilis', u'armi', u'fight', u'bird'] [u'jazz', u'queen', u'norah', u'jone', u'rule', u'chart'] [u'latham', u'decid', u'euthanasia', u'stanc'] [u'symond', u'impress', u'selector'] [u'local', u'flood', u'forc', u'highway', u'closur'] [u'macedonian', u'presid', u'remain', u'fli', u'home'] [u'magpi', u'cole', u'happi', u'home'] [u'magpi', u'arriv', u'alic', u'spring'] [u'magpi', u'receiv', u'warm', u'welcom'] [u'malaysia', u'elect', u'date', u'announc', u'loom'] [u'charg', u'omagh', u'bomb'] [u'charg', u'drink', u'drive', u'time'] [u'face', u'court', u'interrupt', u'parliament'] [u'fail', u'kidnap', u'murder'] [u'investig', u'link', u'high', u'profil', u'murder'] [u'stand', u'trial', u'child', u'prostitut', u'charg'] [u'market', u'unperturb', u'move'] [u'matilda', u'olymp', u'qualifi'] [u'miner', u'defend', u'williamstown', u'oper'] [u'miner', u'search', u'kimberley', u'base', u'metal'] [u'mine', u'town', u'decid', u'evacu'] [u'minist', u'aim', u'fairer', u'age', u'care'] [u'minist', u'consid', u'health', u'servic', u'board', u'sack'] [u'mix', u'fortun', u'state', u'final', u'berth'] [u'mix', u'reaction', u'premier', u'apolog', u'alcohol'] [u'coal', u'rail', u'link', u'talk', u'track'] [u'woe', u'predict', u'dairi', u'industri'] [u'motiv', u'philippin', u'banana', u'decis'] [u'await', u'detail', u'happi', u'valley', u'alcohol', u'plan'] [u'lead', u'bulldog', u'assault', u'probe'] [u'york', u'juri', u'deliber', u'martha', u'stewart', u'fate'] [u'cold', u'feet', u'rock', u'power', u'plan'] [u'resourc', u'handl', u'blaze', u'inquiri'] [u'player', u'remind'] [u'govt', u'ask', u'help', u'rescu', u'group'] [u'premier', u'label', u'irrat'] [u'consid', u'environ', u'protect', u'agenc'] [u'observatori', u'get', u'protect'] [u'oust', u'haitian', u'presid', u'warn', u'respect'] [u'pakistan', u'deni', u'nuclear', u'help', u'offer', u'nigeria'] [u'pentagon', u'criticis', u'prison', u'releas', u'review'] [u'philippin', u'presidenti', u'candid', u'rule', u'elig'] [u'pilbara', u'shire', u'hope', u'fund', u'boost'] [u'plan', u'focus', u'boost', u'natur', u'resourc'] [u'plan', u'land', u'clear', u'law', u'spark', u'feder', u'fund'] [u'defend', u'flight', u'minist'] [u'refus', u'interven', u'grant', u'commiss'] [u'polic', u'examin', u'bodi', u'dump', u'river'] [u'polic', u'examin', u'evid', u'doubl', u'murder'] [u'polic', u'follow', u'lead', u'bulldog', u'investig'] [u'polic', u'minist', u'critic', u'bail', u'releas', u'teen'] [u'polic', u'seiz', u'fake', u'credit', u'card', u'raid'] [u'poor', u'clinic', u'guidelin', u'stillbirth', u'report'] [u'public', u'comment', u'guantanamo', u'militari', u'board'] [u'public', u'chanc', u'meet', u'council', u'candid'] [u'purport', u'qaeda', u'letter', u'deni', u'role', u'iraq'] [u'govt', u'advis', u'lose', u'alcohol', u'incid'] [u'queensland', u'compani', u'buy', u'alpin', u'resort'] [u'racist', u'email', u'circul', u'polic'] [u'rail', u'union', u'attack', u'govt', u'campaign'] [u'raper', u'comment', u'land', u'lockyer', u'strife'] [u'region', u'victoria', u'urg', u'remain', u'vigil'] [u'report', u'find', u'girl', u'soldier', u'slave'] [u'report', u'throw', u'spotlight', u'genet', u'patent'] [u'rescu', u'chopper', u'head', u'cruis', u'ship'] [u'retail', u'urg', u'spot', u'fake', u'note'] [u'reuter', u'name', u'fitzgerald', u'chairman'] [u'royal', u'commiss', u'report', u'highlight', u'polic'] [u'royalti', u'payment', u'hotel', u'brawl', u'polic', u'believ'] [u'runner', u'speak', u'athlet', u'australia'] [u'premier', u'unveil', u'cabinet', u'reshuffl'] [u'schumach', u'readi', u'challeng'] [u'senat', u'review', u'centenari', u'hous', u'rental', u'agreement'] [u'sept', u'convict', u'free', u'appeal'] [u'sibl', u'rival', u'schumach', u'championship'] [u'joh', u'famili', u'prepar', u'worst'] [u'resort', u'owner', u'agre', u'sale'] [u'spadea', u'oust', u'arthur', u'roddick'] [u'speedster', u'get', u'safeti', u'messag'] [u'sportswear', u'compani', u'dress'] [u'state', u'final', u'berth', u'bushrang'] [u'student', u'blast', u'flinder', u'increas'] [u'studi', u'confirm', u'obes', u'health', u'warn'] [u'studi', u'suggest', u'remot', u'council', u'share', u'ceo'] [u'support', u'australian', u'seafood', u'nation', u'market'] [u'surrog', u'mother', u'give', u'birth', u'grandkid'] [u'taipan', u'wildcat', u'season'] [u'teacher', u'boost', u'help', u'class', u'size'] [u'teacher', u'union', u'threaten', u'industri', u'woe'] [u'telstra', u'sale', u'govt', u'agenda'] [u'hope', u'battl', u'liber', u'preselect'] [u'terror', u'law', u'council'] [u'theatr', u'hop', u'tour', u'base', u'play'] [u'thiev', u'ransack', u'northern', u'tableland', u'home'] [u'thousand', u'mourn', u'shiit', u'bomb', u'victim'] [u'dead', u'isra', u'airstrik', u'near', u'gaza', u'citi'] [u'tibetan', u'monk', u'arriv', u'tasmania'] [u'tiger', u'call', u'crack', u'heckler'] [u'time', u'face', u'music', u'kazaa', u'oper', u'tell'] [u'treasur', u'sidestep', u'leadership', u'challeng', u'question'] [u'tweed', u'mayor', u'unhappi', u'paint', u'payment'] [u'spanish', u'club', u'sail', u'uefa', u'round'] [u'form', u'child', u'safeti', u'cours'] [u'union', u'rep', u'meet', u'coal', u'ship', u'delay'] [u'unsecur', u'creditor', u'unlik', u'recov', u'fund'] [u'dollar', u'continu', u'strengthen'] [u'increas', u'iraq', u'border', u'secur'] [u'govt', u'push', u'children', u'koori', u'court'] [u'mine', u'town', u'discuss', u'evacu', u'flood'] [u'waterfal', u'inquiri', u'examin', u'manag', u'practic'] [u'wildcard', u'oust', u'fan', u'gold', u'coast', u'tour', u'event'] [u'wild', u'weather', u'expect', u'lash', u'south', u'east'] [u'wit', u'give', u'evid', u'murder', u'trial'] [u'wood', u'skip', u'wentworth', u'world', u'match', u'play'] [u'woomera', u'space', u'industri', u'futur', u'doubt'] [u'profit', u'portman'] [u'accc', u'ask', u'help', u'take', u'tobacco', u'compani'] [u'accc', u'litig', u'budget', u'blow'] [u'accus', u'leicest', u'player', u'protest', u'innoc'] [u'govt', u'urg', u'remov', u'stamp', u'duti'] [u'administr', u'appoint', u'rock', u'trust'] [u'traffic', u'control', u'incid', u'report', u'cairn'] [u'albani', u'prepar', u'cruis', u'ship', u'influx'] [u'alic', u'gear', u'return'] [u'qaeda', u'suspect', u'captur', u'yemen', u'secur', u'sweep'] [u'amish', u'realiti', u'can', u'protest'] [u'head', u'admit', u'squander', u'sharehold', u'money'] [u'anderson', u'maintain', u'tugun', u'bypass', u'stanc'] [u'angri', u'ratepay', u'level', u'gatton', u'council', u'complaint'] [u'appoint', u'boost', u'industri', u'profil'] [u'asylum', u'seeker', u'claim', u'spend', u'day', u'reef'] [u'asylum', u'seeker', u'lose', u'conscious', u'hunger'] [u'dead', u'pacif', u'highway', u'smash'] [u'austeel', u'chief', u'upbeat', u'steel'] [u'australian', u'charg', u'crime', u'cambodia'] [u'ballarat', u'record', u'fewer', u'assault', u'curfew'] [u'belyando', u'shire', u'cultur', u'centr', u'open', u'door'] [u'long', u'weekend', u'ahead', u'mildura'] [u'biki', u'club', u'move', u'gunnedah', u'polic'] [u'blue', u'struggl'] [u'brazilian', u'bandit', u'catch', u'foot'] [u'brazilian', u'pele', u'list', u'greatest', u'player'] [u'breast', u'cancer', u'diagnosi', u'labor'] [u'british', u'guantanamo', u'detaine', u'return', u'home'] [u'broadcast', u'disput', u'impact', u'club', u'pub'] [u'brumbi', u'lose', u'larkham', u'shark', u'encount'] [u'brumbi', u'player', u'charg', u'cabbi', u'robberi'] [u'bull', u'restrict', u'blue', u'bushrang', u'struggl'] [u'driver', u'demand', u'fair', u'complaint', u'investig'] [u'bush', u'condemn', u'sept', u'elect'] [u'busi', u'want', u'jetstar', u'servic'] [u'busi', u'time', u'storm'] [u'trap', u'semi', u'pacif', u'smash'] [u'chief', u'stun', u'blue', u'gasp', u'winner'] [u'chines', u'parliament', u'expect', u'pass', u'constitut'] [u'chines', u'releas', u'polit', u'activist', u'jail'] [u'clean', u'continu', u'fatal', u'accid', u'site'] [u'clear', u'pong', u'crew', u'member'] [u'plan', u'fowl', u'play'] [u'convict', u'terrorist', u'set', u'record', u'straight'] [u'council', u'speak', u'ambul', u'servic'] [u'council', u'relax', u'water', u'restrict'] [u'court', u'concern', u'drive', u'doctor', u'examin', u'reluct'] [u'crow', u'keen', u'experi'] [u'crusad', u'turn', u'thorn'] [u'davi', u'open', u'break', u'sydney'] [u'disgrac', u'director', u'lose', u'court', u'challeng'] [u'doctor', u'chanc', u'meet', u'abbott'] [u'downer', u'defend', u'iraq', u'inquiri', u'appoint'] [u'dozen', u'hospitalis', u'chemic', u'scare'] [u'dredg', u'break', u'earli', u'dubai'] [u'edenhop', u'saddl', u'race', u'meet'] [u'masri', u'refus', u'test'] [u'explos', u'rock', u'baghdad', u'council', u'prepar'] [u'eyebrow', u'rais', u'ferri', u'price'] [u'fake', u'medic', u'univers', u'advertis'] [u'famili', u'reflect', u'joh', u'achiev'] [u'fare', u'free', u'rail', u'passeng'] [u'feder', u'cruis', u'dubai', u'quarter'] [u'govt', u'urg', u'boost', u'western'] [u'ferrari', u'flex', u'muscl'] [u'ferrari', u'set', u'practic', u'pace'] [u'film', u'commiss', u'push', u'ahead', u'archiv', u'merger'] [u'firefight', u'control', u'grass'] [u'food', u'produc', u'reject'] [u'forestri', u'worker', u'stop', u'work'] [u'solomon', u'airlift', u'australia'] [u'fragil', u'coalit', u'talk', u'close', u'collaps'] [u'froggi', u'founder', u'face', u'jail'] [u'steam', u'ahead', u'hunter', u'tourism', u'plan'] [u'govt', u'consid', u'cane', u'toad', u'fenc'] [u'govt', u'soft', u'poverti', u'acoss'] [u'govt', u'extend', u'satellit', u'phone', u'subsidi', u'scheme'] [u'govt', u'urg', u'develop', u'incent', u'women', u'worker'] [u'greec', u'rule', u'foreign', u'secur', u'game'] [u'green', u'boost', u'team', u'wollongong', u'council'] [u'health', u'servic', u'improv', u'avoid', u'dissolut'] [u'health', u'servic', u'undergo', u'manag', u'chang'] [u'help', u'seek', u'miss', u'armidal'] [u'henin', u'hardenn', u'capriati', u'power', u'qatar', u'semi'] [u'howard', u'reject', u'leadership', u'specul'] [u'hubbl', u'imag', u'say', u'echo', u'gogh', u'paint'] [u'immigr', u'raid', u'find', u'illeg', u'worker'] [u'indigen', u'communiti', u'record', u'high', u'rate'] [u'indigen', u'leader', u'urg', u'parliament', u'alcohol'] [u'industri', u'prais', u'hemp', u'major', u'boost'] [u'insur', u'compani', u'defend', u'strong', u'profit'] [u'intellig', u'chief', u'question', u'iraq', u'weapon'] [u'mount', u'race', u'club', u'meet'] [u'inter', u'play', u'benfica', u'celtic', u'draw', u'barca', u'uefa'] [u'investig', u'continu', u'school'] [u'labor', u'accus', u'betray', u'christma', u'island'] [u'leaki', u'pipe', u'expos', u'sourc', u'rare', u'wetland'] [u'injuri', u'mar', u'aussi', u'victori'] [u'liber', u'dismiss', u'leadership', u'specul'] [u'libya', u'begin', u'weapon', u'stockpil', u'destruct'] [u'live', u'marriag', u'benefici', u'church'] [u'lockyer', u'escap', u'sanction'] [u'lonhro', u'prepar', u'flemington', u'farewel'] [u'expect', u'bring', u'heavi', u'rain', u'darl', u'down'] [u'magpi', u'port', u'blood', u'youngster'] [u'malaysia', u'set', u'elect', u'date'] [u'arrest', u'drug', u'bust', u'dealer'] [u'face', u'adelaid', u'murder', u'charg'] [u'court', u'blaze', u'near', u'caravan', u'park'] [u'mayor', u'lobbi', u'princ', u'highway', u'fund'] [u'mcewen', u'take', u'agricultur', u'portfolio'] [u'meet', u'eas', u'refuge', u'deport', u'concern'] [u'melbourn', u'oscar', u'winner', u'arriv', u'home'] [u'melbourn', u'storm', u'chief', u'stand', u'player'] [u'merger', u'see', u'council', u'candid', u'face', u'coff', u'challeng'] [u'minist', u'know', u'wine', u'sack', u'advis', u'say'] [u'montoya', u'hungri', u'world', u'championship'] [u'cane', u'farmer', u'accept', u'incom', u'support', u'offer'] [u'protest', u'promis', u'toxic', u'dump', u'plan'] [u'want', u'shadow', u'minist', u'rebuk', u'comment'] [u'murder', u'prompt', u'tighten', u'worker'] [u'music', u'piraci', u'devast', u'industri', u'confer'] [u'chief', u'vow', u'restor', u'bank', u'reput'] [u'nat', u'inspect', u'polic', u'facil'] [u'nauru', u'face', u'challeng', u'time', u'downer', u'say'] [u'nauru', u'receiv', u'million', u'australian'] [u'chief', u'announc', u'palm', u'council'] [u'gambl', u'minist', u'criticis', u'conflict'] [u'sexual', u'assault', u'claim', u'strike'] [u'sexual', u'assault', u'claim', u'strike'] [u'northern', u'port', u'consid', u'singl', u'board'] [u'examin', u'lockyer', u'raper', u'comment'] [u'play', u'wait', u'game', u'alleg'] [u'premier', u'move', u'shop'] [u'rugbi', u'face', u'test', u'time'] [u'opposit', u'leader', u'kill', u'venezuelan', u'govt'] [u'oust', u'haitian', u'presid', u'vow', u'return'] [u'fish', u'close', u'burketown', u'river'] [u'oxfam', u'focus', u'slave', u'labour', u'lead'] [u'partnership', u'address', u'nulsen', u'woe'] [u'petrol', u'sniff', u'close', u'school'] [u'philippin', u'mayor', u'shoot', u'dead', u'elect'] [u'pledg', u'address', u'sugar', u'concern'] [u'hear', u'cane', u'farmer', u'trade', u'deal', u'concern'] [u'polic', u'fear', u'latest', u'blaze', u'work', u'broule', u'firebug'] [u'polic', u'fear', u'fatal', u'accid'] [u'polic', u'cyclist', u'victim'] [u'polic', u'number', u'boost', u'geraldton'] [u'polic', u'oper', u'lead', u'burglari', u'arrest'] [u'polic', u'crack', u'gold', u'theft'] [u'pressur', u'build', u'home', u'hero', u'webber'] [u'probe', u'launch', u'yellowi', u'blaze'] [u'prosser', u'talk', u'free', u'trade', u'deal', u'benefit'] [u'protea', u'mckenzi', u'smack', u'centuri', u'tour', u'match'] [u'qanta', u'flight', u'boost', u'central', u'aust', u'visitor'] [u'govt', u'highlight', u'clear', u'legisl', u'regrowth'] [u'rain', u'wreak', u'havoc', u'templeton', u'classic'] [u'record', u'snowfal', u'blanket', u'south', u'korea'] [u'rescu', u'effort', u'begin', u'arctic', u'base', u'sink'] [u'research', u'fossil', u'human'] [u'riverland', u'teen', u'acquit', u'father', u'kill'] [u'roma', u'council', u'clear', u'financi', u'woe'] [u'russia', u'approv', u'putin', u'choic'] [u'santo', u'probe', u'alleg', u'cyclon', u'protocol', u'breach'] [u'saqlain', u'afridi', u'recal', u'seri'] [u'school', u'communiti', u'devast'] [u'senat', u'question', u'pet', u'flight', u'plan'] [u'seven', u'face', u'trial', u'pong', u'heroin', u'haul'] [u'attack', u'claim', u'rock', u'english', u'soccer'] [u'shire', u'grain', u'cart', u'worri'] [u'charg', u'drug', u'traffic'] [u'smith', u'slide', u'late', u'hold', u'edg'] [u'smoke', u'rais', u'risk', u'relat', u'blind', u'studi'] [u'settler', u'order', u'leav', u'west', u'bank'] [u'southampton', u'sturrock', u'boss'] [u'south', u'east', u'blaze', u'claim', u'stock', u'fenc'] [u'sporad', u'violenc', u'continu', u'iraq'] [u'lanka', u'put', u'faith', u'spinner'] [u'steadi', u'european', u'rat', u'trim', u'dollar'] [u'storm', u'chief', u'stand', u'player'] [u'storm', u'batter', u'south', u'east', u'queensland'] [u'stranger', u'incid', u'spark', u'parent', u'remind'] [u'sudan', u'rebel', u'need', u'clinch', u'peac', u'deal', u'powel'] [u'support', u'concern', u'threat', u'raceway'] [u'teen', u'charg', u'multipl', u'busi', u'break'] [u'thousand', u'search', u'french', u'railway', u'bomb'] [u'join', u'tropic', u'diseas', u'allianc'] [u'tour', u'oper', u'hope', u'reef', u'relief'] [u'trot', u'track', u'unlik', u'shift'] [u'union', u'hold', u'stop', u'work', u'meet', u'shipbuild'] [u'compani', u'confid', u'rocket', u'project', u'proceed'] [u'gain', u'unfair', u'tin', u'fruit', u'advantag'] [u'reject', u'push', u'haiti', u'kidnap', u'inquiri'] [u'venezuelan', u'ambassador', u'resign'] [u'venic', u'film', u'festiv', u'get', u'director'] [u'govt', u'stand', u'easter', u'sunday', u'trade'] [u'violenc', u'avert', u'sydney', u'stand'] [u'want', u'virtual', u'vicar', u'virtual', u'church'] [u'week', u'end', u'high', u'note', u'australian', u'stock'] [u'wellington', u'jail', u'stay', u'public', u'hand'] [u'western', u'power', u'sign', u'year', u'deal'] [u'wild', u'weather', u'north', u'coast'] [u'wilki', u'run', u'green', u'seat'] [u'wiluna', u'power', u'station'] [u'womadelaid', u'music', u'festiv', u'open'] [u'wood', u'close', u'birdi', u'brace', u'dubai'] [u'workcov', u'close', u'construct', u'site', u'worker'] [u'zimbabw', u'condemn', u'wider', u'sanction'] [u'account', u'stamp', u'duti', u'overhaul'] [u'speaker', u'suspend', u'labor', u'caucus'] [u'adult', u'cruis', u'ship', u'dock', u'fremantl'] [u'qaeda', u'develop', u'hijack', u'weapon', u'expert'] [u'ankl', u'sore', u'forc', u'miss', u'train'] [u'armstrong', u'want', u'dope', u'chief'] [u'dead', u'gaza', u'strip', u'violenc'] [u'attack', u'injur', u'british', u'soldier', u'iraq'] [u'balloon', u'fiesta', u'brighten', u'canberra', u'sky'] [u'beatti', u'promis', u'wine', u'inquiri', u'cooper'] [u'birmingham', u'determin', u'blow', u'euro', u'chanc'] [u'blair', u'say', u'worldwid', u'terror', u'threat', u'real'] [u'blair', u'want', u'emptiv', u'militari', u'strike'] [u'bomb', u'near', u'baghdad', u'hotel'] [u'bomb', u'squad', u'abuzz', u'vibrat'] [u'dead', u'flood', u'creek'] [u'bright', u'quick', u'race'] [u'bulldog', u'manag', u'emerg', u'polic', u'interview'] [u'bushfir', u'close', u'highway'] [u'busi', u'improv', u'secur'] [u'delay', u'council', u'elect'] [u'canada', u'take', u'arm', u'pilot', u'object', u'apec'] [u'carr', u'health', u'reform', u'plan', u'vindic', u'opposit'] [u'cash', u'strap', u'media', u'magnat', u'black', u'sell', u'holling'] [u'cat', u'preseason', u'grand', u'final'] [u'central', u'africa', u'move', u'silenc', u'aristid'] [u'chavez', u'tell', u'venezuela'] [u'china', u'boost', u'militari', u'spend'] [u'china', u'check', u'rampant', u'growth'] [u'citylink', u'offer', u'driver', u'refund'] [u'cofidi', u'embroil', u'dope', u'scandal'] [u'court', u'rule', u'cojoin', u'twin', u'death', u'misadventur'] [u'court', u'seek', u'forc', u'phone', u'record'] [u'cross', u'breed', u'mosquito', u'spread', u'west', u'nile', u'studi'] [u'davi', u'lead', u'tesk', u'pois', u'women', u'open'] [u'dever', u'complet', u'half', u'uniqu', u'doubl'] [u'disput', u'delay', u'sign', u'iraq', u'interim'] [u'york', u'time', u'report', u'list', u'fabric'] [u'feder', u'march', u'dubai', u'semi'] [u'fergi', u'settl', u'stud', u'fee', u'disput'] [u'ferrari', u'seal', u'place'] [u'flood', u'warn', u'issu', u'northern'] [u'floodwat', u'drench', u'north'] [u'geelong', u'edg', u'melbourn', u'season', u'final'] [u'germani', u'launch', u'nationwid', u'easter', u'bunni', u'count'] [u'gibson', u'sue', u'pirat', u'passion'] [u'glacier', u'melt', u'indic', u'global', u'warm', u'chang'] [u'commerci', u'crop', u'delay', u'urg', u'committe'] [u'green', u'world', u'heritag', u'fund', u'boost'] [u'gungahlin', u'council', u'call', u'light', u'rail'] [u'haiti', u'humanitarian', u'crisi', u'avert'] [u'heavi', u'snow', u'strand', u'thousand', u'korean', u'motorist'] [u'henin', u'hardenn', u'stun', u'myskina', u'cruis'] [u'howard', u'brace', u'tough', u'canegrow', u'meet'] [u'howard', u'hear', u'canegrow', u'heartach'] [u'india', u'israel', u'sign', u'earli', u'warn', u'radar', u'deal'] [u'iraqi', u'seek', u'salvag', u'constitut', u'deal'] [u'israel', u'sharon', u'popular', u'fall', u'survey'] [u'jaguar', u'make', u'giant', u'stride', u'webber'] [u'joint', u'tourism', u'ventur', u'kakadu'] [u'kean', u'escap', u'match', u'porto', u'card'] [u'larrakia', u'employ', u'initi', u'underway'] [u'late', u'late', u'see', u'brumbi', u'past', u'shark'] [u'late', u'earn', u'bull', u'draw', u'highland'] [u'leader', u'respect', u'macedonian', u'presid'] [u'long', u'bear', u'fruit', u'roddick'] [u'kill', u'hous'] [u'surviv', u'shark', u'attack', u'coast'] [u'unit', u'suffer', u'injuri', u'misfortun'] [u'martha', u'stewart', u'guilti', u'conspiraci'] [u'matilda', u'athen'] [u'mcginley', u'wood', u'stay', u'touch'] [u'migrat', u'zone', u'excis', u'xenophob', u'refuge', u'group'] [u'montoya', u'close', u'schu', u'quickest'] [u'motorcyclist', u'kill', u'polic', u'chase'] [u'mret', u'expans', u'vesta', u'growth'] [u'muse', u'rabbit', u'proof', u'fenc', u'rememb'] [u'injur', u'verandah', u'collaps'] [u'zag', u'wellington', u'bike', u'rule'] [u'pay', u'tribut', u'lead', u'women'] [u'price', u'hit', u'post', u'iraq', u'high'] [u'opposit', u'call', u'wine', u'probe'] [u'pacif', u'forum', u'consid', u'french', u'polynesian', u'status'] [u'pakistan', u'beat', u'windi', u'lift', u'youth', u'world'] [u'palestinian', u'shoot', u'dead', u'west', u'bank', u'report'] [u'parri', u'hunt', u'miami'] [u'patterson', u'challeng', u'swan', u'famili', u'polici'] [u'penthous', u'fold', u'circul', u'fail', u'excit'] [u'pig', u'taipan'] [u'pittman', u'make', u'hurdl', u'return'] [u'polic', u'await', u'post', u'firework', u'troubl'] [u'polic', u'await', u'psych', u'report', u'road', u'disput', u'kill'] [u'polic', u'probe', u'bomb', u'adelaid', u'home'] [u'polic', u'quiz', u'bulldog', u'manag'] [u'polic', u'quiz', u'bulldog', u'manag'] [u'pride', u'line'] [u'rail', u'worker', u'strike', u'medic', u'test'] [u'rain', u'parad', u'deter', u'mardi', u'gras'] [u'rain', u'wreck', u'beller'] [u'ranger', u'star', u'trophi', u'abi'] [u'face', u'flatley', u'save'] [u'rise', u'dam', u'silver', u'line', u'cloud'] [u'roadwork', u'unearth', u'inca', u'mummi'] [u'roddick', u'roll', u'arizona', u'quarter'] [u'roger', u'clear', u'injuri'] [u'roger', u'injuri', u'sour', u'waratah'] [u'roma', u'look', u'dent', u'inter'] [u'ronaldo', u'zidan', u'real', u'trebl'] [u'russian', u'arctic', u'scientist', u'await', u'rescu'] [u'saint', u'march', u'preseason', u'final'] [u'saint', u'cat', u'showdown'] [u'school', u'encourag', u'step', u'market'] [u'search', u'underway', u'plane', u'miss', u'north', u'west'] [u'second', u'nasa', u'rover', u'find', u'sign', u'water', u'mar'] [u'seven', u'kill', u'hurt', u'avalanch', u'eastern'] [u'singapor', u'preserv', u'changi', u'prison', u'wall'] [u'dead', u'qaeda', u'suspect', u'blow', u'cover'] [u'southern', u'clean', u'wild', u'storm'] [u'spencer', u'break', u'give', u'auckland', u'blue'] [u'sugar', u'industri', u'warn', u'howard'] [u'sugar', u'industri', u'wrestl', u'howard', u'bitter', u'pill'] [u'sink', u'scientist', u'rescu', u'arctic', u'circl'] [u'suspect', u'escap', u'daylight', u'robberi', u'japan'] [u'talk', u'iraqi', u'constitut', u'resum'] [u'forestri', u'poach', u'farmland', u'report'] [u'tendulkar', u'wait', u'stick', u'pakistan'] [u'thousand', u'aristid', u'support', u'pour', u'haiti'] [u'dead', u'injur', u'multi', u'vehicl', u'collis'] [u'leicest', u'player', u'send', u'spanish', u'jail'] [u'tiger', u'beat'] [u'tiger', u'elimin'] [u'toddler', u'kill', u'polic', u'guard', u'hospit'] [u'transport', u'minist', u'take', u'road'] [u'union', u'seek', u'wonderland', u'casual', u'payout'] [u'unit', u'reveng'] [u'unit', u'plan', u'increas', u'stadium', u'capac'] [u'unwash', u'year', u'smelli', u'kenyan', u'get', u'scrubdown'] [u'admit', u'shoot', u'dead', u'civilian', u'iraq'] [u'afghan', u'forc', u'kill', u'milit', u'captur'] [u'armi', u'cancel', u'iraq', u'armi', u'contract'] [u'stock', u'flat', u'light', u'job', u'data'] [u'vietnam', u'leader', u'visit', u'communist', u'alli', u'cuba'] [u'polic', u'urg', u'calm', u'toddler', u'kill', u'road'] [u'warn', u'murali', u'prepar', u'spin', u'duel'] [u'warwickshir', u'streak', u'pretori'] [u'target', u'jarrah', u'dieback'] [u'water', u'canberra', u'sprinkler', u'restrict'] [u'woman', u'dead', u'river'] [u'worksaf', u'investig', u'tractor', u'death'] [u'zimbabw', u'label', u'tortur', u'film', u'unfound', u'rubbish'] [u'victim', u'fear', u'sidelin'] [u'watch', u'rise', u'water'] [u'smoke', u'irish', u'govt', u'target', u'booz'] [u'airlin', u'baulk', u'anti', u'terror', u'cost'] [u'back', u'costello'] [u'amaz', u'victori', u'seal', u'bull', u'final', u'place'] [u'amaz', u'victori', u'seal', u'bull', u'place', u'final'] [u'anastacia', u'steal', u'german', u'music', u'award'] [u'arctic', u'research', u'return', u'russia', u'hero'] [u'aristid', u'maintain', u'kidnap', u'haiti'] [u'armi', u'duti', u'leav', u'lover', u'limp'] [u'theft', u'probe', u'scale'] [u'ashmor', u'asylum', u'seeker', u'return', u'indonesia'] [u'australian', u'iraq', u'crime', u'inquiri'] [u'australia', u'help', u'build', u'saddam', u'crime', u'case'] [u'banana', u'import', u'review', u'grower', u'input'] [u'beatti', u'pledg', u'support', u'wine', u'probe'] [u'bequest', u'afford', u'church', u'artwork'] [u'birmingham', u'fli', u'high', u'bolton'] [u'blair', u'dismiss', u'conman', u'claim'] [u'blast', u'rock', u'moscow', u'apart', u'block', u'polic'] [u'bodi', u'ultra', u'light', u'crash', u'site'] [u'boom', u'ecotour', u'stress', u'anim', u'death'] [u'kill', u'water', u'tank', u'crush'] [u'bright', u'doubl', u'skaif', u'hit', u'troubl'] [u'britain', u'launch', u'probe', u'iraqi', u'firefight'] [u'britain', u'expand', u'elit', u'forc', u'report'] [u'bush', u'reject', u'campaign', u'critic', u'sept'] [u'bush', u'say', u'reject', u'econom', u'unilater'] [u'calm', u'toddler', u'death'] [u'fund', u'boost', u'age', u'care'] [u'canberra', u'girl', u'domin', u'play', u'field'] [u'central', u'pair', u'hold', u'south', u'africa'] [u'childbirth', u'right', u'women', u'agenda'] [u'china', u'deni', u'presenc', u'north', u'korean', u'refuge'] [u'china', u'foster', u'femal', u'taikonaut'] [u'clark', u'stand', u'asid', u'wine', u'inquiri'] [u'committe', u'find', u'bangladesh', u'danger'] [u'costello', u'tip', u'labor', u'rise'] [u'council', u'seek', u'answer', u'sydney', u'islam', u'leader'] [u'crew', u'battl', u'fire', u'melbourn', u'school'] [u'davi', u'take', u'shoot', u'break', u'extend'] [u'energex', u'review', u'emerg', u'procedur'] [u'england', u'warm', u'windi', u'style'] [u'factori', u'damag', u'storm', u'whip', u'bundaberg'] [u'famili', u'payment', u'debt', u'relief', u'underway'] [u'feder', u'warn', u'govt', u'lift', u'game'] [u'feder', u'meet', u'lopez', u'dubai', u'final'] [u'ferrari', u'pair', u'lead', u'pack'] [u'flood', u'water', u'continu', u'threaten', u'north'] [u'food', u'water', u'fli', u'flood', u'ravag', u'town'] [u'foreign', u'troop', u'brace', u'protest', u'haiti'] [u'french', u'presid', u'condemn', u'arson', u'attack', u'mosqu'] [u'gaza', u'raid', u'follow', u'fail', u'border', u'attack'] [u'golden', u'lebedeva', u'celebr', u'coach', u'scowl'] [u'govt', u'probe', u'africa', u'grave', u'vandal'] [u'govt', u'work', u'credit', u'plan', u'narrow', u'labor'] [u'greec', u'gear', u'nation', u'elect'] [u'greek', u'poll'] [u'guantanamo', u'briton', u'polic', u'protect'] [u'gunner', u'unit', u'book', u'semi', u'slot'] [u'health', u'cut', u'surpris', u'carr', u'abbott'] [u'howard', u'health', u'fund', u'serial', u'burglar', u'carr'] [u'hurrican', u'blow', u'stormer', u'cours'] [u'iraq', u'shiit', u'strike', u'constitut', u'deal', u'cleric'] [u'ireland', u'england', u'twickenham'] [u'israel', u'hit', u'gaza', u'refuge', u'camp', u'dead'] [u'italian', u'hold', u'hide', u'protest', u'nazi', u'crimin'] [u'kiefer', u'reach', u'scottsdal', u'final'] [u'labor', u'talk', u'homeland', u'secur', u'dept'] [u'landcar', u'assist', u'sustain', u'busi', u'plan'] [u'latham', u'tight', u'lip', u'polici'] [u'leed', u'releas', u'morri'] [u'leicest', u'push', u'player', u'releas'] [u'libya', u'clear', u'tool'] [u'malaysia', u'hold', u'indonesian', u'islamist', u'milit'] [u'arrest', u'isra', u'grenad', u'attack'] [u'hospit', u'fenc', u'pal', u'attack'] [u'kill', u'collis'] [u'marconi', u'south', u'finish', u'scoreless'] [u'mauresmo', u'pull', u'indian', u'well'] [u'work', u'women', u'inequ'] [u'moscow', u'blast', u'blame', u'leak'] [u'myskina', u'ralli', u'defend', u'qatar', u'titl'] [u'boss', u'trade', u'scandal', u'leeson'] [u'nation', u'trust', u'take', u'tourist', u'street', u'shame'] [u'nedv', u'seal', u'juve', u'comeback'] [u'hospit', u'prescript', u'trial'] [u'drought', u'area', u'rise', u'despit', u'scatter', u'rainfal'] [u'indigen', u'prison', u'popul', u'regular'] [u'nurs', u'attack', u'spark', u'hospit', u'secur', u'review'] [u'nurs', u'critic', u'condit', u'hospit', u'patient'] [u'omeara', u'mcginley', u'deadlock', u'dubai'] [u'kill', u'southern', u'russia', u'blast', u'polic'] [u'ongaro', u'inspir', u'itali', u'scot'] [u'ozjet', u'challeng', u'discount', u'airlin'] [u'parri', u'charg', u'lead', u'miami'] [u'plane', u'wreck', u'north', u'west'] [u'come', u'clean', u'leadership', u'plan'] [u'polic', u'academi', u'renov', u'reveal'] [u'polic', u'injur', u'street', u'brawl', u'adelaid'] [u'pont', u'readi', u'post', u'waugh'] [u'pope', u'appoint', u'head', u'timor', u'cathol', u'church'] [u'author', u'resum', u'search', u'miss', u'plane'] [u'coalit', u'talk', u'break'] [u'minist', u'gather', u'yeppoon', u'amid', u'wine'] [u'radio', u'nation', u'ax', u'rumour', u'alarm', u'brown'] [u'rail', u'worker', u'strike', u'despit', u'rule'] [u'rain', u'aid', u'perth', u'firefight'] [u'rain', u'fail', u'dampen', u'sydney', u'mardi', u'gras', u'parad'] [u'real', u'lead', u'ronaldo', u'injur'] [u'record', u'number', u'clean', u'australia'] [u'record', u'number', u'expect', u'clean'] [u'crescent', u'boss', u'kill', u'afghanistan'] [u'cross', u'deliv', u'saddam', u'letter', u'daughter'] [u'reward', u'humpti', u'shoot', u'inform'] [u'royal', u'exhibit', u'build', u'tip', u'heritag'] [u'rspca', u'investig', u'home', u'pigeon', u'slaughter'] [u'sack', u'media', u'advisor', u'say', u'beatti', u'twist', u'truth'] [u'salt', u'probe', u'deep', u'space'] [u'school', u'appl', u'drive', u'target', u'childhood', u'obes'] [u'senat', u'welcom', u'banana', u'import', u'probe'] [u'shepparton', u'assault', u'leav', u'woman', u'hospit'] [u'shiit', u'leader', u'discuss', u'iraqi', u'constitut', u'impass'] [u'siev', u'asylum', u'seeker', u'memori', u'plan', u'canberra'] [u'kill', u'botch', u'suicid', u'bomb', u'attack', u'gaza'] [u'social', u'worker', u'northbridg', u'curfew'] [u'spadea', u'stun', u'roddick', u'reach', u'scottsdal', u'final'] [u'spam', u'take', u'filipino', u'palat', u'storm'] [u'stanhop', u'review', u'extradit', u'procedur'] [u'start', u'finish', u'michael', u'schumach'] [u'start', u'finish', u'michael', u'schumach'] [u'suspect', u'asylum', u'seeker', u'await', u'detent', u'centr'] [u'sydney', u'elect', u'campaign', u'heat'] [u'taiwan', u'premier', u'flag', u'retir', u'plan'] [u'tall', u'spi', u'face', u'chop'] [u'ten', u'thousand', u'march', u'venezuelan'] [u'thousand', u'remain', u'black', u'south', u'east'] [u'tight', u'secur', u'indonesian', u'presid', u'visit', u'aceh'] [u'explor', u'bush', u'tucker', u'project'] [u'truanci', u'target', u'employ'] [u'turk', u'demonstr', u'public', u'sector', u'reform'] [u'charg', u'attempt', u'murder'] [u'dead', u'miss', u'water', u'taxi', u'capsiz'] [u'hospit', u'tripl', u'stab', u'brisban'] [u'union', u'stand', u'firm', u'rail', u'strike'] [u'rocker', u'crosbi', u'arrest', u'drug', u'possess'] [u'rocker', u'crosbi', u'face', u'drug', u'charg'] [u'threaten', u'sanction', u'syria', u'offici'] [u'vanston', u'deni', u'coast', u'surveil', u'failur'] [u'yemeni', u'journalist', u'arrest'] [u'youth', u'charg', u'attempt', u'murder'] [u'aborigin', u'health', u'issu', u'microscop'] [u'adelaid', u'posit', u'second'] [u'side', u'prais', u'alic', u'venu'] [u'age', u'care', u'provid', u'immedi', u'sector'] [u'albani', u'face', u'extradit', u'claim'] [u'black', u'play', u'pacif', u'island'] [u'call', u'ethic', u'debat'] [u'ambo', u'award', u'water', u'rescu'] [u'aristid', u'seek', u'haiti', u'resist'] [u'ashmor', u'arriv', u'bind', u'christma', u'island'] [u'kill', u'haiti', u'ralli', u'shoot'] [u'attack', u'prompt', u'increas', u'mental', u'health'] [u'aussi', u'struggl', u'gall'] [u'aust', u'pakistan', u'odd', u'wheat', u'shipment'] [u'australia', u'delay', u'name', u'test', u'team'] [u'australian', u'wheat', u'diseas', u'free', u'export'] [u'author', u'contain', u'leak'] [u'averag', u'outlook', u'grain', u'farmer'] [u'award', u'recognis', u'brave', u'effort'] [u'banana', u'diseas', u'risk', u'concern', u'expert'] [u'bank', u'resourc', u'lift', u'market'] [u'barcelona', u'hold', u'claim', u'seventh', u'straight'] [u'beatti', u'resist', u'call', u'stand', u'minist'] [u'swarm', u'rescu', u'earn', u'braveri', u'award'] [u'berri', u'stay', u'labor', u'parti', u'despit', u'month', u'long'] [u'billiton', u'contract', u'offer', u'pacif', u'nation', u'boost'] [u'blair', u'deni', u'conman', u'influenc', u'claim'] [u'die', u'wudinna', u'farm', u'tragedi'] [u'bullet', u'knock', u'tiger'] [u'bush', u'blair', u'know', u'hype', u'case', u'blix'] [u'bushfir', u'trigger', u'blackout'] [u'bush', u'septemb', u'stay'] [u'resourc', u'boost', u'tackl', u'stock', u'theft'] [u'carr', u'accus', u'divers', u'tactic'] [u'celtic', u'doubl', u'hop', u'aliv'] [u'chang', u'program', u'secret', u'folk', u'festiv', u'success'] [u'chemic', u'clean', u'near', u'pike', u'river'] [u'chemic', u'reaction', u'caus', u'moomba', u'blast'] [u'citrus', u'grower', u'highlight', u'trade', u'deal', u'access', u'issu'] [u'commiss', u'back', u'indigen', u'tradit', u'govern'] [u'committe', u'boost', u'sport', u'facil', u'campaign'] [u'communiti', u'clean', u'claypan'] [u'comput', u'environment', u'impact', u'expos'] [u'conserv', u'parti', u'return', u'power', u'greec'] [u'conserv', u'claim', u'victori', u'greek', u'elect'] [u'councillor', u'dive', u'pool', u'redevelop', u'debat'] [u'councillor', u'question', u'illeg', u'brothel', u'probe'] [u'council', u'consid', u'fletcher', u'jone', u'build', u'report'] [u'counter', u'terror', u'unit', u'face', u'biggest'] [u'court', u'fin', u'child', u'porn', u'possess'] [u'court', u'hear', u'pastor', u'shred', u'abus', u'evid'] [u'crowd', u'record', u'tumbl', u'newcastl'] [u'crow', u'test', u'rais', u'japan', u'bird', u'fear'] [u'davi', u'run', u'away', u'aust', u'open'] [u'death', u'spark', u'older', u'farmer', u'care'] [u'defenc', u'forc', u'test', u'amphibi', u'oper'] [u'diseas', u'exercis', u'test', u'anim', u'health', u'offici'] [u'disput', u'affect', u'countrylink', u'servic'] [u'driver', u'interview', u'ambul', u'accid'] [u'drought', u'area', u'rise'] [u'drought', u'condit', u'loom'] [u'drown', u'tragedi', u'north', u'coast'] [u'drug', u'price', u'certain', u'rise'] [u'earli', u'warn', u'help', u'region', u'endur', u'storm'] [u'charg', u'riot', u'aborigin', u'communiti'] [u'consid', u'gorgon', u'plan', u'submiss'] [u'timor', u'welcom', u'foreign', u'polic', u'plan'] [u'evan', u'finish', u'tour', u'murcia'] [u'expert', u'back', u'pork', u'quarantin', u'concern'] [u'extradit', u'procedur', u'review'] [u'feder', u'damag', u'solomon'] [u'feder', u'retain', u'dubai', u'titl'] [u'fevola', u'involv', u'casino', u'incid'] [u'finland', u'strengthen', u'industri'] [u'firm', u'plan', u'kangaroo', u'sawmil'] [u'firm', u'warn', u'impend', u'blackout'] [u'test', u'pitch', u'bone'] [u'food', u'compani', u'chipper', u'impend', u'deliveri'] [u'court', u'yarloop', u'hous', u'attack'] [u'franc', u'grand', u'slam', u'favourit'] [u'funer', u'hold', u'victim', u'isra', u'attack'] [u'govt', u'agre', u'develop', u'moratorium'] [u'govt', u'rule', u'compens'] [u'govt', u'spend', u'forc', u'open', u'mind', u'labor'] [u'govt', u'urg', u'decid', u'age', u'care', u'fund'] [u'greec', u'go', u'poll'] [u'greek', u'socialist', u'conced', u'elect', u'loss'] [u'guantanamo', u'briton', u'danger', u'releas'] [u'harbour', u'part', u'close', u'salvag', u'work'] [u'health', u'profession', u'parti', u'drug'] [u'help', u'burn', u'mate', u'earn', u'braveri', u'award'] [u'infect', u'soar', u'asian', u'women'] [u'hope', u'weather', u'god', u'smile', u'begonia', u'festiv'] [u'howard', u'object', u'adopt', u'plan'] [u'hybrid', u'car', u'acceler', u'europ'] [u'imam', u'terror', u'speech', u'explan', u'satisfi', u'peer'] [u'immun', u'talk', u'imped', u'bougainvill', u'oper'] [u'go', u'howard', u'say'] [u'indict', u'croatian', u'general', u'surrend'] [u'indonesia', u'kiss', u'public', u'affect', u'goodby'] [u'investig', u'clear', u'hccc', u'backlog'] [u'iran', u'say', u'nuke', u'dossier', u'mean', u'complet'] [u'iraq', u'council', u'sign', u'interim', u'constitut'] [u'ban', u'rail', u'strike'] [u'israel', u'continu', u'gaza', u'raid'] [u'japan', u'resum', u'rocket', u'launch', u'earli'] [u'fuel', u'ship'] [u'possibl', u'council', u'elect', u'issu'] [u'johnston', u'secur', u'lib', u'kimberley', u'preselect'] [u'keelti', u'urg', u'action', u'terror', u'caus'] [u'labor', u'ask', u'liber', u'reveal', u'success', u'plan'] [u'labor', u'spell', u'tax', u'costello'] [u'leicest', u'player', u'hope', u'releas', u'jail'] [u'liber', u'admit', u'coalit', u'tatter'] [u'liber', u'rebuk', u'leadership', u'rumour'] [u'libyan', u'dine', u'camel'] [u'local', u'join', u'nation', u'clean'] [u'lonhro', u'charg', u'home', u'flemington'] [u'madagascar', u'cyclon', u'leav', u'homeless'] [u'maher', u'confid', u'play', u'final'] [u'kill', u'glider', u'accid'] [u'plead', u'guilti', u'manslaught'] [u'recognis', u'brave', u'effort'] [u'court', u'polic', u'stand'] [u'want', u'israel', u'grenad', u'attack', u'arrest'] [u'marsh', u'back', u'bushrang', u'final'] [u'mayor', u'candid', u'moot', u'homeless', u'summit'] [u'meet', u'resolv', u'broadcast', u'right'] [u'milan', u'march', u'roma', u'stay', u'tail'] [u'minist', u'urg', u'focus', u'health', u'servic', u'fund'] [u'expens', u'see', u'necessarili', u'better'] [u'motorcyclist', u'die', u'highway', u'crash'] [u'extend', u'globe'] [u'muralitharan', u'bag', u'australia', u'slump'] [u'muralitharan', u'bag', u'australia', u'slump'] [u'muscat', u'miss', u'cost', u'millwal'] [u'muslim', u'leader', u'say', u'quot', u'take', u'context'] [u'mutola', u'rewrit', u'indoor', u'histori', u'book'] [u'law', u'allow', u'hick', u'habib', u'serv', u'time'] [u'zealand', u'send', u'afghanistan'] [u'charg', u'lay', u'fals', u'alarm'] [u'charg', u'mysteri', u'substanc'] [u'earli', u'end', u'rail', u'strike'] [u'liber', u'expect', u'opposit', u'frontbench'] [u'celebr', u'intern', u'women'] [u'hospit', u'watchdog', u'chang', u'announc'] [u'oppn', u'cast', u'doubt', u'hospit'] [u'broadcast', u'apologis', u'anti', u'outburst'] [u'omeara', u'break', u'titl', u'drought', u'dubai'] [u'pair', u'bird', u'scandal', u'dead'] [u'pambula', u'footbal', u'die', u'weekend', u'match'] [u'parri', u'persist', u'pay', u'welcom', u'victori'] [u'parri', u'triumph', u'eagl', u'play'] [u'pasminco', u'creditor', u'await', u'payment'] [u'pickett', u'escap', u'tribun', u'appear'] [u'pipelin', u'answer', u'gold', u'coast', u'water', u'need'] [u'bluff', u'adopt'] [u'shut', u'reconcili', u'debat'] [u'polic', u'charg', u'plater', u'drink', u'drive'] [u'polic', u'close', u'hotel', u'weekend', u'assault'] [u'polic', u'drug', u'unit', u'seek', u'rave', u'meet'] [u'polic', u'hunt', u'labrador', u'arm', u'bandit'] [u'polic', u'investig', u'suspici', u'school'] [u'policeman', u'plead', u'guilti', u'custodi', u'assault'] [u'polic', u'young', u'drown', u'victim'] [u'polic', u'probe', u'gear', u'theft'] [u'polic', u'probe', u'longreach', u'footbal', u'assault', u'claim'] [u'polic', u'probe', u'origin', u'racist', u'email'] [u'polic', u'probe', u'paringa', u'weapon', u'theft'] [u'polic', u'scale', u'theft', u'probe'] [u'polic', u'urg', u'worker', u'murder', u'inquiri'] [u'post', u'natal', u'depress', u'survey', u'shock'] [u'public', u'comment', u'seek', u'cotton', u'plant'] [u'public', u'thank', u'safeti', u'effort'] [u'push', u'continu', u'wollongong', u'medic', u'retriev'] [u'rail', u'strike', u'resolut', u'carr'] [u'ralph', u'announc', u'alarm', u'green'] [u'reconcili', u'govt', u'agenda'] [u'region', u'hop', u'cruis', u'tourism', u'boost'] [u'resid', u'view', u'causeway'] [u'ricegrow', u'consid', u'east', u'market'] [u'road', u'crash', u'leav', u'woman', u'hospit'] [u'rocket', u'fire', u'headquart', u'baghdad'] [u'roger', u'face', u'fit', u'race'] [u'rural', u'women', u'celebr', u'resili'] [u'sack', u'media', u'advis', u'hit', u'premier', u'trip'] [u'festiv', u'declar', u'success'] [u'safeti', u'move', u'senior', u'home'] [u'sar', u'hero', u'question', u'tiananmen', u'letter'] [u'schumach', u'say', u'barrichello', u'biggest', u'threat'] [u'second', u'hand', u'notif', u'anger', u'joh', u'famili'] [u'member', u'honour', u'braveri'] [u'shiit', u'leader', u'sign', u'interim', u'iraq', u'constitut'] [u'shin', u'bone', u'prove', u'fisherman', u'friend', u'shark', u'attack'] [u'spadea', u'claim', u'career', u'titl'] [u'spanish', u'journalist', u'kill', u'haiti', u'ralli'] [u'staff', u'treat', u'brisban', u'post', u'offic', u'scare'] [u'strike', u'disrupt', u'rail', u'servic'] [u'sugar', u'industri', u'want', u'dollar', u'sweeten'] [u'sunderland', u'semi'] [u'suprem', u'court', u'hear', u'child', u'snatch', u'case'] [u'surfer', u'charg', u'underworld', u'murder'] [u'sword', u'ban', u'crackdown', u'gang', u'violenc'] [u'govt', u'accus', u'hypocrisi', u'heritag', u'fund'] [u'teen', u'burn', u'caravan', u'blaze'] [u'telstra', u'takeov', u'fail', u'analyst'] [u'treat', u'drug', u'overdos', u'melbourn', u'rave'] [u'dead', u'aristid', u'support', u'protest'] [u'union', u'push', u'ahead', u'forestri', u'claim'] [u'union', u'counsel', u'post', u'worker', u'anthrax', u'scare'] [u'govt', u'region', u'tourism', u'websit'] [u'premier', u'encourag', u'trade', u'middl', u'east', u'tour'] [u'virgin', u'question', u'viabil', u'challeng'] [u'wagin', u'get', u'young', u'farmer', u'honour'] [u'govt', u'consid', u'work', u'hour', u'report'] [u'wanganeen', u'keen', u'crow'] [u'polic', u'arrest', u'cannabi', u'haul'] [u'webber', u'frustrat', u'aust', u'failur'] [u'wit', u'seek', u'townsvill', u'crash'] [u'women', u'group', u'welcom', u'industri', u'review'] [u'wrangl', u'continu', u'sugar', u'industri', u'woe'] [u'yemeni', u'journalist', u'trial', u'fals', u'inform'] [u'young', u'penguin', u'starv', u'earli', u'breed', u'season'] [u'abbott', u'meet', u'senat', u'medicar'] [u'govt', u'trade', u'blow'] [u'refus', u'male', u'teacher', u'plan'] [u'focus', u'polici', u'address', u'doctor', u'woe'] [u'anim', u'protect', u'group', u'launch', u'global', u'anti'] [u'aristid', u'leav', u'haiti', u'say'] [u'aristid', u'franc', u'kidnap'] [u'atsic', u'leader', u'back', u'maximum', u'penalti', u'wine'] [u'audienc', u'passion', u'gibson', u'passion'] [u'audit', u'reveal', u'greenhous', u'target', u'shortfal'] [u'aussi', u'netbal', u'sink', u'south', u'africa'] [u'aust', u'nomin', u'analyst'] [u'backyard', u'rubbish', u'attract', u'fin'] [u'bank', u'push', u'ord', u'record', u'high'] [u'barnett', u'plan', u'privatis', u'western', u'power'] [u'bartel', u'clear', u'preseason', u'final'] [u'bashir', u'sentenc', u'disappoint', u'downer'] [u'bashir', u'jail', u'term', u'halv'] [u'beagl', u'chief', u'doubt', u'bright', u'spot', u'mar', u'hunt'] [u'beatti', u'announc', u'crime', u'prevent', u'group'] [u'boati', u'wave', u'review', u'consult'] [u'bodi', u'miss', u'actor', u'spald', u'gray', u'identifi'] [u'brain', u'differ', u'see', u'sheep'] [u'braveri', u'award', u'winner'] [u'breakaway', u'tamil', u'tiger', u'reject', u'amnesti', u'offer'] [u'british', u'famili', u'push', u'releas', u'guantanamo'] [u'british', u'polic', u'play', u'digit'] [u'bulldog', u'secret', u'player', u'payment', u'court', u'hear'] [u'bull', u'leav', u'final', u'option', u'open'] [u'bull', u'leav', u'option', u'open', u'final'] [u'bushfir', u'spark', u'riverland', u'blackout'] [u'busi', u'cautious', u'consum', u'spend', u'slow'] [u'cairn', u'pollock', u'head', u'elit', u'club'] [u'california', u'offer', u'student', u'vote'] [u'greater', u'educ', u'fund', u'equiti'] [u'region', u'freight', u'rout', u'boost'] [u'boost', u'fund', u'age', u'care', u'feder'] [u'candid', u'council', u'insight'] [u'capriati', u'pull', u'indian', u'well'] [u'carter', u'holt', u'harvey', u'worker', u'await', u'boost'] [u'chief', u'prop', u'suspend', u'spencer', u'tackl'] [u'china', u'arrest', u'underground', u'bishop'] [u'china', u'press', u'lift', u'arm', u'embargo'] [u'citi', u'countri', u'split', u'rebat', u'unfair'] [u'claim', u'youth', u'program', u'ignor', u'countri', u'area'] [u'classic', u'car', u'tour', u'tasmania'] [u'competitor', u'test', u'endur', u'break', u'hill'] [u'glitch', u'close'] [u'concern', u'park', u'handov', u'public', u'access'] [u'conrad', u'black', u'oust', u'telegraph', u'group'] [u'council', u'staff', u'resid', u'abus'] [u'council', u'look', u'build', u'surveyor'] [u'council', u'urg', u'fight', u'power', u'station'] [u'courtney', u'love', u'face', u'misdemeanor', u'charg'] [u'decid', u'rais', u'fee'] [u'deadlin', u'comment', u'indigen', u'land'] [u'dead', u'penguin', u'valuabl', u'research'] [u'detox', u'centr', u'propon', u'reject', u'claim'] [u'dilshan', u'centuri', u'put', u'lanka', u'control'] [u'drug', u'traffick', u'receiv', u'life', u'sentenc'] [u'eal', u'mentor', u'olymp', u'basketbal'] [u'economist', u'predict', u'signific', u'rate', u'rise'] [u'timor', u'deni', u'briberi', u'alleg'] [u'exercis', u'treat', u'chest', u'pain', u'free', u'studi'] [u'expect', u'mum', u'babi', u'mozart'] [u'facelift', u'plan', u'road', u'entranc', u'wollongong'] [u'fall', u'domest', u'wine', u'sale', u'unsurpris'] [u'femal', u'politician', u'provid', u'reason', u'rhyme'] [u'firebomb', u'racial', u'motiv', u'court', u'tell'] [u'restrict', u'remain'] [u'brit', u'leav', u'guantanamo', u'hour'] [u'footbal', u'club', u'enjoy', u'rock', u'concert', u'profit'] [u'fund', u'industri', u'estat'] [u'gaze', u'name', u'star', u'combat'] [u'highlight', u'australia', u'role', u'south', u'east', u'asia'] [u'govt', u'deni', u'ignor', u'rural', u'aborigin', u'need'] [u'green', u'reject', u'migrat', u'amend'] [u'grenad', u'attack', u'suspect', u'terrorist'] [u'grower', u'applaud', u'senat', u'inquiri', u'appl', u'import'] [u'hickss', u'lawyer', u'welcom', u'prison', u'decis'] [u'high', u'fli', u'arsenal', u'euro', u'test'] [u'hollywood', u'golden', u'star', u'franc', u'die', u'age'] [u'holyfield', u'set', u'high'] [u'hospit', u'say', u'servic', u'spark', u'deficit'] [u'hunt', u'youngest', u'bronco'] [u'import', u'ban', u'strand', u'australia', u'bind', u'stud'] [u'impound', u'plane', u'take', u'south', u'africa'] [u'industri', u'recommend', u'render', u'plant'] [u'industri', u'welcom', u'plan', u'boost', u'satellit', u'phone'] [u'inquiri', u'probe', u'draft', u'rural', u'land', u'plan'] [u'iraq', u'constitut', u'mileston', u'downer'] [u'order', u'halt', u'sack'] [u'isra', u'await', u'extradit', u'hear'] [u'surg', u'month', u'high'] [u'bulldog', u'urg', u'come', u'forward'] [u'knowl', u'council', u'hold', u'water', u'talk'] [u'labor', u'call', u'better', u'protect', u'super', u'nestegg'] [u'lawyer', u'sue', u'hanson', u'case', u'fee'] [u'legal', u'action', u'possibl', u'homemak', u'centr', u'snub'] [u'leicest', u'manag', u'stay', u'trio', u'remain', u'prison'] [u'libya', u'respons', u'west', u'africa', u'war'] [u'turnout', u'wast', u'precinct', u'forum'] [u'lpga', u'player', u'championship', u'cancel'] [u'madagascar', u'call', u'cyclon', u'ravag', u'north'] [u'hospit', u'coledal', u'crash'] [u'jail', u'shop', u'centr', u'crash'] [u'plead', u'guilti', u'daughter', u'crime'] [u'court', u'shepparton', u'assault'] [u'mater', u'wait', u'tender', u'invit'] [u'mayor', u'welcom', u'rocki', u'parliament'] [u'mayor', u'worri', u'sugar', u'deal', u'polit'] [u'mcgradi', u'welcom', u'northern', u'allianc'] [u'meatwork', u'undergo', u'revamp'] [u'michelangelo', u'david', u'weak', u'ankl', u'need', u'scan'] [u'mildura', u'sharehold', u'await', u'clarif'] [u'group', u'ponder', u'bowler', u'have', u'develop'] [u'minist', u'applaud', u'druitt', u'school', u'result'] [u'miss', u'angler', u'prompt', u'rock', u'fish', u'warn'] [u'jockey', u'need', u'patrick', u'race', u'meet'] [u'life', u'leav', u'current', u'toxic', u'wast', u'dump', u'nat'] [u'peopl', u'face', u'court', u'bash'] [u'moteli', u'cash', u'long', u'weekend'] [u'question', u'elig', u'criteria', u'patient'] [u'want', u'royal', u'commiss', u'iraq'] [u'murali', u'happi', u'aussi', u'attack'] [u'museum', u'appeal', u'televis', u'memorabilia'] [u'nat', u'question', u'govt', u'youth', u'scheme'] [u'neram', u'director', u'move'] [u'director', u'appoint', u'actcoss'] [u'fund', u'expand', u'broadcast'] [u'kill', u'wound', u'venezuelan', u'protest'] [u'cricket', u'boss', u'criticis', u'katich', u'omiss'] [u'rail', u'worker', u'return', u'work'] [u'prepar', u'east', u'timor', u'crisi'] [u'opal', u'coach', u'ponder', u'club', u'futur'] [u'opposit', u'block', u'construct', u'law', u'corbel'] [u'orford', u'career', u'remain', u'limbo'] [u'oyster', u'grower', u'highlight', u'siltat', u'worri'] [u'pakistan', u'test', u'nuclear', u'capabl', u'missil'] [u'palestinian', u'push', u'peac', u'british'] [u'parliament', u'cost', u'despit', u'cut', u'hid'] [u'pie', u'elect', u'woman', u'board'] [u'pilot', u'prais', u'avoid', u'tragedi'] [u'plantat', u'group', u'grow', u'record', u'sale', u'result'] [u'keep', u'newspol', u'perspect'] [u'polic', u'action', u'prais', u'danc', u'parti', u'drug', u'incid'] [u'polic', u'bulldog', u'come', u'forward'] [u'polic', u'complet', u'brief', u'evid', u'model', u'death'] [u'polic', u'consid', u'fire', u'suspici'] [u'polic', u'hunt', u'teen', u'assault'] [u'policeman', u'await', u'drug', u'charg', u'rule'] [u'polic', u'probe', u'coffe', u'machin', u'theft'] [u'polic', u'probe', u'pedestrian', u'death', u'road', u'accid'] [u'poor', u'figur', u'dollar'] [u'popul', u'growth', u'predict', u'bring', u'bland', u'shire'] [u'postal', u'vote', u'begin', u'council', u'poll'] [u'power', u'author', u'deni', u'anti', u'competit', u'behaviour'] [u'prevent', u'death', u'renew', u'health', u'inquiri', u'call'] [u'probe', u'continu', u'fatal', u'glider', u'crash'] [u'public', u'get', u'chanc', u'join', u'airlin', u'advisori', u'board'] [u'investor', u'snap', u'gold', u'coast', u'apart'] [u'opposit', u'say', u'time', u'refocus'] [u'question', u'rais', u'lose', u'local', u'newspap'] [u'raider', u'mclinden', u'half'] [u'ralf', u'close', u'renault', u'deal', u'manag'] [u'receiv', u'appoint', u'troubl', u'golf', u'resort'] [u'redfern', u'polic', u'arrest', u'alleg', u'bagsnatch'] [u'red', u'throw', u'rooki', u'deep'] [u'rememb', u'tampa', u'latham', u'warn'] [u'research', u'bring', u'hope', u'post', u'cancer', u'fertil'] [u'resort', u'financi', u'woe', u'forc', u'cancel', u'lpga'] [u'restaur', u'injuri', u'put', u'dali', u'event'] [u'road', u'death', u'ignit', u'speed', u'camera', u'debat'] [u'rower', u'appeal', u'olymp', u'omiss'] [u'polic', u'suspect', u'arson', u'tree', u'hill'] [u'face', u'mimin', u'addit', u'health', u'risk'] [u'scientist', u'ponder', u'reef', u'pollut'] [u'senat', u'blast', u'failur', u'tackl', u'indigen'] [u'senat', u'examin', u'dental', u'cover', u'medicar', u'talk'] [u'senat', u'grand', u'prix', u'tobacco'] [u'abus', u'claim', u'close', u'juvenil', u'bail', u'facil'] [u'sexual', u'abus', u'claim', u'trigger', u'bail', u'review'] [u'simpson', u'get', u'shadow', u'road', u'transport', u'portfolio'] [u'joh', u'famili', u'fight', u'compens'] [u'korean', u'presid', u'face', u'impeach'] [u'sponsor', u'dump', u'dog'] [u'sponsor', u'dump', u'dog', u'polic', u'probe', u'continu'] [u'state', u'accc', u'join', u'high', u'court', u'challeng'] [u'strong', u'job', u'growth', u'trigger', u'wage', u'concern'] [u'student', u'lose', u'scholarship', u'mum', u'religion'] [u'student', u'meningococc', u'needl'] [u'studi', u'identifi', u'state', u'disadvantag', u'area'] [u'studi', u'help', u'preserv', u'kosciuszko', u'hut'] [u'studi', u'uncov', u'uniqu', u'qualiti', u'primat', u'brain'] [u'support', u'better', u'wheel', u'bike', u'safeti'] [u'support', u'goonellabah', u'hour', u'polic', u'station'] [u'survey', u'highlight', u'post', u'natal', u'depress', u'woe'] [u'survey', u'show', u'partial', u'busi', u'recoveri'] [u'tasmanian', u'export', u'capitalis', u'royal', u'wed'] [u'chang', u'inevit', u'labor'] [u'teacher', u'march', u'protest'] [u'teen', u'die', u'maryborough', u'road', u'crash'] [u'telstra', u'donat', u'favour', u'coalit'] [u'telstra', u'sale', u'destin', u'defeat'] [u'thompson', u'name', u'dragon', u'bench'] [u'thorp', u'drop'] [u'thousand', u'flee', u'flood'] [u'road', u'accid'] [u'miss', u'diver', u'safe'] [u'cleric', u'maintain', u'doubt', u'iraq', u'constitut'] [u'tourism', u'chief', u'air', u'budget', u'airlin', u'fear'] [u'tourism', u'oper', u'fight', u'kakadu', u'fall', u'closur'] [u'toyota', u'spotlight'] [u'travel', u'toad', u'rais', u'concern'] [u'trial', u'hear', u'dog', u'disagr', u'murder'] [u'trial', u'jazeera', u'journalist', u'postpon'] [u'charg', u'illeg', u'shellfish', u'catch'] [u'court', u'protest', u'visit'] [u'uefa', u'appeal', u'kean'] [u'relat', u'protest', u'guantanamo', u'jail'] [u'unauthoris', u'research', u'earn', u'doctor', u'stern', u'reprimand'] [u'chief', u'push', u'fund', u'boost'] [u'union', u'stage', u'strike'] [u'unit', u'block', u'arsenal', u'path', u'histori'] [u'defend', u'israel', u'militari', u'oper', u'gaza'] [u'iran', u'clash', u'open', u'nuclear', u'review'] [u'seek', u'haitian', u'prime', u'minist'] [u'send', u'acoust', u'weapon', u'iraq'] [u'vanston', u'appoint', u'auditor', u'indigen', u'bodi'] [u'viagra', u'safe', u'heart', u'diseas'] [u'govt', u'obstetrician', u'resign'] [u'public', u'servant', u'wage', u'rise'] [u'cabinet', u'assess', u'coral', u'plan'] [u'webck', u'life', u'member'] [u'william', u'hold', u'deadlin', u'talk', u'ralf'] [u'woman', u'death', u'blame', u'fail', u'health'] [u'women', u'bear', u'brunt', u'aid', u'epidem'] [u'worksaf', u'investig', u'pipe', u'explos'] [u'youth', u'charg', u'multipl', u'burglari'] [u'zimbabw', u'meet', u'agenda'] [u'achill', u'lauro', u'mastermind', u'die', u'custodi'] [u'actor', u'paul', u'winfield', u'dead'] [u'albani', u'gear', u'region', u'parliament'] [u'alinta', u'power', u'electr', u'sale'] [u'ord', u'paus', u'breath'] [u'welcom', u'part', u'medicar', u'deal'] [u'armi', u'chief', u'spell', u'benefit', u'tank'] [u'austeel', u'send', u'offshor'] [u'aust', u'nuclear', u'export', u'iran', u'misus', u'downer'] [u'australia', u'fight', u'lanka'] [u'award', u'featur', u'world', u'champ', u'pole', u'vaulter'] [u'beatti', u'hire', u'sack', u'media', u'advis'] [u'gun', u'fail', u'champion', u'leagu'] [u'blignaut', u'late', u'withdraw', u'zimbabw'] [u'blue', u'slap', u'fevola', u'match'] [u'bogus', u'iraqi', u'polic', u'kill', u'civilian', u'interpret'] [u'bouncer', u'accus', u'hook', u'case', u'face', u'separ'] [u'bowler', u'desir', u'develop', u'minist'] [u'britain', u'approv', u'farm', u'maiz', u'crop'] [u'bulldog', u'chairman', u'doubt', u'seventh', u'player', u'exist'] [u'bulldog', u'chief', u'lay'] [u'bulldog', u'chief', u'lay', u'polic', u'probe'] [u'bulldog', u'lose', u'sponsorship', u'deal'] [u'bulldog', u'uncertain', u'mysteri', u'seventh', u'player'] [u'burst', u'water', u'pipe', u'flood', u'queen', u'build'] [u'bushrang', u'season', u'style'] [u'bush', u'answer', u'sept', u'commiss', u'question'] [u'cairn', u'mayor', u'candid', u'race'] [u'public', u'pipelin', u'support'] [u'royal', u'commiss', u'alleg', u'polic'] [u'canegrow', u'ant', u'sugar', u'deal'] [u'carr', u'will', u'talk', u'hospit', u'hand'] [u'central', u'citi', u'backdrop', u'short', u'film'] [u'child', u'care', u'servic', u'get', u'high', u'mark'] [u'child', u'murder', u'releas', u'japan', u'prison'] [u'china', u'jail', u'editor', u'richest', u'paper', u'group'] [u'china', u'lift', u'foreign', u'film', u'invest'] [u'claim', u'hospit', u'takeov', u'plan', u'elect', u'stunt'] [u'committe', u'decid', u'food', u'crop'] [u'concern', u'gun', u'audit', u'distract', u'polic'] [u'consum', u'confid', u'slide'] [u'costello', u'urg', u'rule', u'leadership', u'challeng'] [u'council', u'attack', u'qanta', u'jetstar', u'decis'] [u'council', u'back', u'meet', u'push', u'polic'] [u'council', u'chief', u'urg', u'fiji', u'address', u'aid', u'threat'] [u'council', u'consid', u'east', u'point', u'project', u'chang'] [u'council', u'green', u'centr', u'discuss', u'land', u'develop'] [u'councillor', u'seek', u'freight', u'rail', u'revamp'] [u'council', u'discuss', u'feder', u'elect', u'issu'] [u'council', u'want', u'lighthous', u'platform', u'retain'] [u'crime', u'commiss', u'join', u'underworld', u'murder'] [u'crown', u'request', u'creat', u'secur', u'issu', u'high'] [u'cultur', u'divers', u'submiss', u'hear'] [u'dairi', u'farmer', u'continu', u'face', u'tough', u'time'] [u'dalrympl', u'set', u'sight', u'return'] [u'democrat', u'renew', u'call', u'hick', u'habib', u'releas'] [u'democrat', u'senat', u'push', u'stop', u'tobacco'] [u'deploy', u'australia', u'polic', u'hit', u'snag'] [u'doctor', u'hospit', u'hand', u'plan'] [u'doctor', u'divid', u'public', u'hospit', u'plan'] [u'doolan', u'tucson', u'defenc'] [u'doubt', u'cast', u'consum', u'tenanc', u'advic', u'servic'] [u'downer', u'downplay', u'leadership', u'talk', u'damag'] [u'driver', u'die', u'picton', u'crash'] [u'drop', u'caus', u'concern'] [u'drug', u'bust', u'uncov', u'marijuana', u'plant'] [u'polic', u'unattract', u'union'] [u'eden', u'higlight', u'social', u'disadvantag', u'studi'] [u'eel', u'wont', u'chanc', u'sledg', u'bulldog'] [u'elliott', u'hodg', u'domest', u'award'] [u'explos', u'kill', u'turkey'] [u'resist', u'temptat', u'shift', u'boom', u'semi'] [u'farmer', u'consid', u'spray', u'drift', u'problem'] [u'farmer', u'group', u'sue', u'govt', u'groundwat'] [u'fast', u'food', u'loom', u'main', u'health', u'threat'] [u'fear', u'illeg', u'turtl', u'destroy', u'nativ', u'wildlif'] [u'ferdinand', u'unit', u'loss', u'eriksson'] [u'bear', u'guilti', u'field'] [u'drug', u'squad', u'boss', u'stand', u'trial'] [u'forum', u'urg', u'healthi', u'debat'] [u'kill', u'injur', u'indonesian', u'riot'] [u'fring', u'dweller', u'forum', u'head', u'goldfield'] [u'gallop', u'reject', u'hospit', u'handov', u'plan'] [u'ganguli', u'promis', u'success', u'pakistan'] [u'gilchrist', u'admit', u'condit', u'tough'] [u'gold', u'coast', u'water', u'pipelin'] [u'goorjan', u'deni', u'bullet', u'bulli'] [u'govt', u'announc', u'tank', u'deal'] [u'govt', u'blame', u'region', u'polic', u'shortag'] [u'govt', u'face', u'resist', u'teacher', u'plan'] [u'govt', u'plan', u'tank'] [u'govt', u'seek', u'free', u'trade', u'deal', u'comment'] [u'grain', u'grower', u'upbeat', u'season'] [u'haiti', u'name'] [u'hewitt', u'seek', u'trick', u'california'] [u'hick', u'militari', u'lawyer', u'meet'] [u'high', u'court', u'deni', u'close', u'proceed', u'appeal'] [u'histor', u'hous', u'list', u'heritag', u'regist'] [u'hotel', u'trade', u'weekend', u'fight'] [u'household', u'react', u'rat', u'forecast'] [u'hubbl', u'provid', u'insight', u'univers'] [u'hubbl', u'show', u'ultra', u'deep', u'vision', u'cosmic', u'infanc'] [u'hurst', u'help', u'tugun', u'lifesav', u'champ', u'relay'] [u'husband', u'say', u'excus', u'wife', u'death'] [u'street', u'hawker', u'berlusconi'] [u'indonesia', u'commit', u'anti', u'terror', u'fight', u'despit'] [u'indonesian', u'troop', u'sink', u'thai', u'fish', u'boat'] [u'indonesia', u'help', u'process', u'ashmor', u'arriv'] [u'iran', u'threaten', u'nuclear', u'watchdog'] [u'isra', u'palestinian', u'meet'] [u'ladi', u'sing', u'london', u'opera'] [u'cut', u'health', u'servic'] [u'job', u'see', u'crucial', u'address', u'social', u'woe'] [u'judg', u'send', u'white', u'strip', u'frontman', u'anger', u'class'] [u'kalli', u'hit', u'protea', u'prosper'] [u'kerri', u'sweep', u'southern', u'state', u'democrat'] [u'knife', u'bandit', u'suspend', u'jail', u'term'] [u'knight', u'kennedi', u'parson', u'join', u'panther', u'clash'] [u'knight', u'kennedi', u'parson'] [u'knuth', u'draw', u'experi', u'disabl'] [u'kuerten', u'opt', u'davi'] [u'labor', u'pledg', u'action', u'poverti'] [u'labor', u'say', u'tank', u'thank', u'govt', u'upgrad', u'plan'] [u'lawyer', u'tell', u'beatti', u'respect'] [u'leagu', u'need', u'central', u'coast', u'team'] [u'send', u'home', u'kasprowicz', u'struggl'] [u'lee', u'reject', u'male', u'teacher', u'scholarship', u'plan'] [u'leicest', u'player', u'remain', u'jail', u'pend', u'court'] [u'leicest', u'trio', u'face', u'court', u'week'] [u'lift', u'beef', u'boost', u'australian'] [u'local', u'support', u'detox', u'centr'] [u'locust', u'outbreak', u'prompt', u'farmer', u'warn'] [u'male', u'teacher', u'plan', u'offens', u'women', u'union', u'say'] [u'mall', u'woe', u'spark', u'restrict', u'metho', u'sale'] [u'accus', u'polic', u'stand', u'get', u'bail'] [u'land', u'fine', u'hand'] [u'court', u'sign', u'theft'] [u'martin', u'say', u'ghan', u'complaint', u'teeth', u'problem'] [u'mater', u'begin', u'revamp'] [u'matern', u'servic', u'stay', u'belmont', u'hospit'] [u'mayor', u'cast', u'doubt', u'needi', u'town', u'studi'] [u'mayor', u'unhappi', u'barmedman', u'top', u'needi', u'town'] [u'mayor', u'unhappi', u'delay', u'council', u'wharf', u'stanc'] [u'medicar', u'deal', u'get', u'green', u'light'] [u'meet', u'focus', u'hospit', u'age', u'care', u'crisi'] [u'mental', u'health', u'nurs', u'strike'] [u'minist', u'defend', u'action', u'stop', u'indigen'] [u'minist', u'reject', u'nuclear', u'wast', u'transport', u'claim'] [u'rain', u'need', u'grain', u'crop'] [u'confid', u'live', u'export', u'trade', u'support'] [u'refus', u'bend', u'banana', u'import'] [u'propos', u'public', u'hospit', u'grab'] [u'nemeth', u'strike', u'sink', u'spur'] [u'greek', u'cabinet', u'swear'] [u'hope', u'morgan', u'john', u'servic'] [u'need', u'chang', u'discrimin', u'law', u'gallop'] [u'noosa', u'sand', u'pump', u'begin'] [u'need', u'central', u'coast', u'team'] [u'govt', u'buy', u'rise', u'opposit'] [u'govt', u'consid', u'fairer', u'patient', u'travel', u'support'] [u'minist', u'say', u'snowbal', u'hospit', u'hand'] [u'scientist', u'develop', u'miniatur', u'heartbeat', u'monitor'] [u'opposit', u'stanc', u'missil', u'defenc', u'bizarr'] [u'passion', u'take', u'kyli', u'rear', u'heart', u'mind'] [u'play', u'hospit', u'takeov', u'talk'] [u'polic', u'charg', u'redfern', u'riot'] [u'polic', u'look', u'suspect', u'involv', u'ramraid'] [u'polic', u'probe', u'drink', u'spike', u'assault', u'claim'] [u'polic', u'seiz', u'car', u'organis', u'crime', u'crackdown'] [u'polic', u'interview', u'children', u'grass', u'fire'] [u'polic', u'warn', u'fraud', u'scam', u'internet', u'auction', u'site'] [u'power', u'plan', u'detail', u'wind'] [u'produc', u'stock', u'scheme', u'concern'] [u'promis', u'open', u'probe', u'rural', u'zone', u'blueprint'] [u'psychologist', u'plead', u'guilti', u'child', u'assault'] [u'public', u'urg', u'tennant', u'creek', u'dengu', u'hotlin'] [u'quarter', u'export', u'earn', u'rise', u'abar'] [u'radcliff', u'world', u'cross', u'countri'] [u'razorback', u'sign', u'skipper'] [u'renegad', u'rebel', u'say', u'tiger', u'want'] [u'reward', u'offer', u'help', u'solv', u'underworld', u'murder'] [u'robinson', u'stake', u'olymp', u'claim'] [u'rural', u'press', u'review', u'tasmania', u'communiti'] [u'rusedski', u'clear', u'dope', u'offenc', u'report'] [u'saint', u'rooki', u'chanc', u'cat', u'challeng'] [u'sale', u'slump', u'stop', u'singl', u'chart', u'portug'] [u'public', u'servant', u'stage', u'hour', u'strike'] [u'serbia', u'major', u'crime', u'trial', u'open'] [u'abus', u'claim', u'wont', u'affect', u'bail', u'centr'] [u'shirvo', u'upbeat', u'olymp', u'chanc'] [u'shock', u'fergi', u'rue', u'unit', u'luck'] [u'siouxsi', u'banshe', u'die', u'age'] [u'postal', u'worker', u'job', u'notic', u'walkout'] [u'sorenstam', u'set', u'sight', u'sorenslam'] [u'south', u'africa', u'urg', u'increas', u'pressur', u'zimbabw'] [u'springbock', u'lock', u'clear', u'racism'] [u'storm', u'farmer', u'disast', u'relief'] [u'studi', u'examin', u'effect', u'bush', u'camp'] [u'suicid', u'bomb', u'blast', u'kill', u'istanbul', u'report'] [u'tariff', u'cut', u'aussi', u'beef', u'japan'] [u'govt', u'accus', u'sit', u'environment', u'booti'] [u'govt', u'lukewarm', u'public', u'hospit', u'propos'] [u'task', u'forc', u'chief', u'upbeat', u'emerg', u'commiss'] [u'telemovi', u'focus', u'alic', u'spring'] [u'famili', u'court', u'lawyer'] [u'tougher', u'safeti', u'law', u'backpack', u'hostel'] [u'townsvill', u'hospit', u'join', u'wait', u'list', u'campaign'] [u'promis', u'legal', u'access', u'guantanamo'] [u'terror', u'suspect', u'arrest', u'arriv', u'home'] [u'announc', u'indigen', u'student', u'scholarship'] [u'union', u'seek', u'wage', u'rise', u'battler'] [u'assassin', u'abba', u'palestinian', u'group'] [u'extrem', u'disappoint', u'bashir', u'prison', u'term'] [u'mortar', u'kill', u'civilian', u'blast', u'shake', u'baghdad'] [u'push', u'australian', u'free', u'trade', u'deal'] [u'consid', u'brisban', u'campus'] [u'senat', u'panel', u'move', u'curb', u'radio', u'indec'] [u'stock', u'fall'] [u'swimmer', u'confid', u'athen', u'secur'] [u'trade', u'chief', u'say', u'india', u'china', u'open', u'market'] [u'urg', u'australia', u'agre', u'fair', u'timor', u'deal'] [u'women', u'aggress', u'heart', u'treatment', u'studi'] [u'vandal', u'smash', u'cultur', u'precinct', u'window'] [u'sant', u'rock', u'day'] [u'warn', u'live', u'export'] [u'govt', u'slam', u'hospit', u'hand', u'plan'] [u'reject', u'medicar', u'packag'] [u'virgin', u'airlin', u'safe', u'despit', u'record', u'keep', u'issu'] [u'virgin', u'deni', u'airlin', u'mainten', u'practic', u'unsaf'] [u'mine', u'compani', u'join', u'london', u'exchang', u'market'] [u'plan', u'test', u'lower', u'high', u'school'] [u'wast', u'plant', u'get', u'evapor', u'pond', u'snub'] [u'west', u'indi', u'lose', u'smith', u'england', u'seri', u'open'] [u'woman', u'disappoint', u'oxygen', u'treatment', u'fund'] [u'woman', u'withdraw', u'money', u'murder', u'polic'] [u'women', u'enter', u'olymp', u'ring', u'beij'] [u'women', u'group', u'slam', u'dumb', u'male', u'teacher', u'plan'] [u'zimbabw', u'boycott', u'draw', u'massiv', u'fine'] [u'zimbabw', u'journalist', u'accus', u'join', u'plot'] [u'zimbabw', u'probe', u'mercenari', u'plane', u'continu'] [u'million', u'live', u'poverti', u'senat', u'report'] [u'activ', u'plan', u'reliev', u'bore', u'youth'] [u'adelaid', u'driver', u'plan', u'strike'] [u'airlin', u'chang', u'flight', u'time'] [u'alleg', u'sydney', u'shooter', u'refus', u'bail'] [u'alleg', u'toothfish', u'poacher', u'free', u'bail'] [u'anderson', u'put', u'bypass', u'issu', u'state', u'govt'] [u'atsic', u'challeng', u'govt', u'indigen', u'bodi'] [u'attack', u'underlin', u'threat', u'terror', u'blair'] [u'australian', u'beef', u'stringi', u'trade', u'head'] [u'australia', u'take', u'lead', u'final'] [u'autopsi', u'confirm', u'abba', u'die', u'natur', u'caus'] [u'babi', u'die', u'north', u'west', u'road', u'crash'] [u'banger', u'break', u'victori', u'drought'] [u'bashir', u'face', u'terror', u'trial', u'indonesian'] [u'basqu', u'separatist', u'parti', u'deni', u'respons'] [u'bat', u'sue', u'chelsea', u'breach', u'contract'] [u'benefit', u'flow', u'water', u'save', u'campaign'] [u'bulk', u'bill', u'boost', u'expect', u'medicar'] [u'borroloola', u'merchant', u'highway', u'restrict', u'push'] [u'brazil', u'davi', u'team', u'fall', u'apart', u'captain'] [u'british', u'guantanamo', u'inmat', u'walk', u'free'] [u'broule', u'arsonist', u'strike'] [u'busi', u'prove', u'cheap', u'australia'] [u'age', u'care', u'land', u'releas'] [u'camplin', u'cap', u'season', u'gold'] [u'canberra', u'galleri', u'staff', u'threaten', u'industri', u'action'] [u'cane', u'toad', u'darwin'] [u'carr', u'attack', u'fail', u'newcastl', u'steel'] [u'chamber', u'wont', u'return', u'track', u'agent'] [u'chang', u'allow', u'long', u'term', u'council', u'plan'] [u'china', u'bring', u'homemad', u'nuclear', u'power', u'plant', u'onlin'] [u'claim', u'group', u'footbal', u'cultur'] [u'cole', u'myer', u'record', u'profit'] [u'cole', u'myer', u'share', u'surg', u'record', u'profit'] [u'communiti', u'focus', u'youth', u'unemploy'] [u'consum', u'council', u'welcom', u'medicar', u'legisl'] [u'costello', u'fuel', u'leadership', u'debat'] [u'council', u'rethink', u'roundabout'] [u'court', u'find', u'brisban', u'pastor', u'guilti', u'abus'] [u'court', u'greenlight', u'pine', u'creek', u'landfil'] [u'czech', u'benesova', u'advanc', u'second', u'round', u'indian'] [u'danoz', u'pest', u'control', u'claim', u'mislead', u'accc'] [u'darwin', u'amphitheatr', u'extens'] [u'doberman', u'dope', u'claim', u'hit'] [u'doctor', u'associ', u'back', u'hospit', u'plan'] [u'doctor', u'group', u'welcom', u'medicar', u'deal'] [u'doctor', u'nurs', u'criticis', u'medicar', u'deal'] [u'doctor', u'stop', u'work', u'chaotic', u'servic'] [u'doubt', u'cast', u'council', u'elect'] [u'driver', u'rev', u'season'] [u'drug', u'price', u'rise', u'trade', u'deal'] [u'economist', u'predict', u'employ', u'growth'] [u'edwardian', u'exhibit', u'open', u'canberra'] [u'email', u'provid', u'spam'] [u'employ', u'figur', u'turn', u'heat', u'aussi', u'dollar'] [u'environ', u'centr', u'support', u'sydney', u'wast', u'water'] [u'extra', u'fund', u'avail', u'hostel'] [u'farmer', u'sue', u'govt', u'face', u'tough', u'fight'] [u'govt', u'state', u'school', u'fund'] [u'butcher', u'hand', u'england', u'test', u'boost'] [u'palestinian', u'shoot', u'dead', u'west', u'bank'] [u'forget', u'citi', u'lie', u'beneath', u'edinburgh', u'street'] [u'design', u'replac', u'ford', u'gucci'] [u'fuel', u'reduct', u'burn', u'plan', u'central'] [u'fund', u'rais', u'send', u'soccer', u'team', u'oversea'] [u'galleri', u'staff', u'strike', u'stall', u'negoti'] [u'georg', u'michael', u'post', u'song', u'onlin', u'free'] [u'goal', u'milic', u'play', u'pain'] [u'govt', u'seek', u'foster', u'care', u'servic', u'comment'] [u'govt', u'unveil', u'canberra', u'plan'] [u'greek', u'promis', u'athen', u'readi', u'game'] [u'green', u'group', u'form', u'natur', u'resourc', u'plan'] [u'gunner', u'champion', u'leagu', u'quarter'] [u'hanson', u'upset', u'blood', u'donat'] [u'hayden', u'ralli', u'australia', u'unbeaten', u'centuri'] [u'helicopt', u'search', u'north', u'pole'] [u'hepburn', u'mayor', u'seek', u'term'] [u'hewitt', u'reliev', u'rusedski'] [u'hickss', u'lawyer', u'meet', u'famili', u'friend'] [u'high', u'court', u'rule', u'panel', u'copyright', u'disput'] [u'high', u'hop', u'central', u'midland', u'strategi'] [u'high', u'hop', u'eden', u'despit', u'report'] [u'hitchhik', u'monkey', u'hang', u'ride'] [u'hobart', u'escap', u'convict', u'imperson'] [u'hous', u'afford'] [u'howard', u'goward', u'odd', u'male', u'teacher', u'plan'] [u'human', u'remain', u'contamin', u'canadian', u'pork'] [u'icpa', u'oppos', u'sale', u'telstra'] [u'india', u'arriv', u'pakistan', u'year', u'hiatus'] [u'indian', u'tell', u'cricket', u'heart'] [u'indonesia', u'arrest', u'alleg', u'peopl', u'smuggler'] [u'iran', u'accus', u'bulli'] [u'iran', u'urg', u'restart', u'nuclear', u'weapon', u'program'] [u'iraq', u'bring', u'dead', u'journalist', u'report'] [u'iraq', u'intellig', u'inquir'] [u'isra', u'troop', u'arrest', u'palestinian'] [u'jobless', u'rate', u'climb'] [u'kalgoorli', u'boulder', u'recognis', u'indigen', u'custodian'] [u'labor', u'urg', u'coalit', u'revolt', u'telstra'] [u'latham', u'seek', u'independ', u'speaker'] [u'lennon', u'smoke', u'free', u'bacon', u'quit'] [u'lib', u'nat', u'urg', u'fight', u'portfolio'] [u'libya', u'approv', u'snap', u'nuke', u'inspect'] [u'lismor', u'shop', u'centr', u'facelift'] [u'maher', u'confid', u'ahead', u'final'] [u'major', u'parti', u'accus', u'give'] [u'male', u'teacher', u'scholarship', u'send', u'wrong', u'messag'] [u'acquit', u'polic', u'assault', u'await', u'burglari'] [u'torch', u'impeach', u'block'] [u'martyn', u'lehmann', u'build', u'gall', u'lead'] [u'mayor', u'elect', u'focus', u'medium', u'term', u'plan'] [u'mayor', u'take', u'issu', u'needi', u'town', u'report'] [u'medicar', u'overhaul', u'pass', u'feder', u'parliament'] [u'minist', u'amend', u'rural', u'farm', u'zone', u'plan'] [u'minist', u'hear', u'mildura', u'campus'] [u'deliv', u'rail', u'servic', u'petit'] [u'want', u'polic', u'highway', u'patrol'] [u'need', u'excus', u'background', u'nois', u'avail'] [u'netbal', u'secur', u'seri', u'africa'] [u'financi', u'servic', u'regim', u'begin'] [u'greek', u'govt', u'vow', u'complet', u'olymp'] [u'nickel', u'reserv', u'sell', u'chines', u'firm'] [u'nicol', u'kidman', u'team', u'swing'] [u'govt', u'hunter', u'despit', u'austeel', u'pull'] [u'premier', u'defend', u'drink'] [u'studi', u'find', u'improv', u'cancer', u'treatment'] [u'orford', u'clear', u'blood', u'clot', u'fear'] [u'kill', u'madrid', u'rush', u'hour', u'blast'] [u'pain', u'lee', u'constant', u'companion'] [u'pair', u'charg', u'worker', u'murder'] [u'pakistan', u'accus', u'ignor', u'taliban', u'activ'] [u'palestinian', u'guerrilla', u'cell', u'break', u'israel'] [u'papp', u'lead', u'kiwi', u'repli'] [u'parri', u'busi', u'play', u'triumph'] [u'advisori', u'council', u'reject', u'turtl', u'accus'] [u'unveil', u'school', u'fund', u'boost'] [u'weigh', u'pakistan', u'wheat', u'disput'] [u'polic', u'happi', u'drug', u'phone', u'result'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'seiz', u'ecstasi', u'pill', u'worth'] [u'polic', u'support', u'stock', u'scheme'] [u'prison', u'attack', u'prompt', u'call', u'inquiri'] [u'review', u'health', u'servic', u'appoint'] [u'hard', u'medicar', u'reform', u'democrat'] [u'unmov', u'tugun', u'bypass', u'claim'] [u'rainforest', u'absorb', u'carbon', u'dioxid', u'studi'] [u'ralli', u'highlight', u'tafe', u'cut', u'dissatisfact'] [u'rebel', u'abstain', u'telstra', u'vote'] [u'report', u'find', u'problem', u'melbourn'] [u'research', u'closer', u'restor', u'femal', u'fertil'] [u'resid', u'ralli', u'rail', u'plan'] [u'reward', u'offer', u'tripl', u'slay'] [u'rural', u'doctor', u'group', u'see', u'medicar', u'deal', u'bush'] [u'rusedski', u'clear', u'dope', u'offenc'] [u'safeti', u'plan', u'call', u'redfern', u'renew'] [u'secur', u'guard', u'outnumb', u'fan', u'india', u'tour'] [u'senat', u'committe', u'releas', u'poverti', u'report'] [u'commission', u'criticis', u'male', u'teacher', u'plan'] [u'sharon', u'order', u'west', u'bank', u'barrier'] [u'shire', u'put', u'green', u'wast', u'good'] [u'sierra', u'leon', u'punish', u'crimin'] [u'korean', u'fighter', u'jet', u'collid', u'yellow'] [u'korean', u'leader', u'face', u'impeach'] [u'spain', u'suspend', u'elect', u'campaign', u'blast'] [u'state', u'union', u'reject', u'howard', u'school', u'packag'] [u'stock', u'market', u'close'] [u'super', u'industri', u'notic', u'improv', u'disclosur'] [u'switzerland', u'consid', u'curb', u'obes'] [u'tait', u'receiv', u'lanka'] [u'tait', u'shock', u'lanka'] [u'coastal', u'detox', u'centr', u'reopen'] [u'govt', u'urg', u'address', u'hous', u'shortag'] [u'oppn', u'seek', u'mental', u'health', u'probe'] [u'polic', u'deliv', u'west', u'coast', u'warn'] [u'teen', u'acquit', u'skate', u'park', u'charg'] [u'teenag', u'charg', u'concret', u'throw', u'incid'] [u'teenag', u'push', u'releas', u'child', u'detaine'] [u'telstra', u'sale', u'head', u'senat'] [u'tobacco', u'compani', u'releas', u'health', u'awar', u'scheme'] [u'iraqi', u'civilian', u'employe', u'shoot', u'dead'] [u'prais', u'libya', u'allow', u'nuclear', u'inspect'] [u'militari', u'clear', u'blame', u'afghan', u'strike'] [u'say', u'dead', u'afghan', u'raid', u'legitim'] [u'share', u'fall', u'record', u'trade', u'deficit'] [u'soldier', u'die', u'wound', u'bomb', u'attack'] [u'trade', u'hit', u'record', u'billion'] [u'vendi', u'unsur', u'contest', u'mayor', u'spot'] [u'mental', u'health', u'worker', u'reject', u'offer'] [u'continu', u'region', u'electr', u'subsidi'] [u'govt', u'put', u'pool', u'project'] [u'warn', u'say', u'pressur', u'lanka'] [u'washington', u'sniper', u'jail', u'life'] [u'wider', u'bulk', u'bill', u'certainti', u'abbott'] [u'winemak', u'market', u'push'] [u'work', u'shape', u'plaza', u'revamp'] [u'zimbabw', u'talk', u'death', u'penalti', u'mercenari'] [u'confirm', u'dead', u'madagascar', u'storm'] [u'academ', u'urg', u'caution', u'male', u'teacher', u'drive'] [u'accc', u'examin', u'telstra', u'broadband', u'respons'] [u'agassi', u'share', u'drug', u'fear'] [u'alic', u'race', u'challeng', u'cyclist'] [u'qaeda', u'claim', u'madrid', u'blast'] [u'anderson', u'talk', u'truck', u'industri'] [u'anti', u'terror', u'protest', u'mark', u'mourn', u'spain'] [u'aquacultur', u'scheme', u'use', u'salti', u'groundwat'] [u'aristid', u'visit', u'jamaica', u'week'] [u'arnberg', u'vic', u'roll'] [u'arson', u'think', u'rail', u'blaze'] [u'atsic', u'commission', u'critic', u'clark', u'legal', u'fund'] [u'atsic', u'commission', u'criticis', u'fund', u'arrrang'] [u'aurora', u'return', u'home', u'antarct'] [u'austeel', u'invest', u'wast', u'carr'] [u'australia', u'maintain', u'immun', u'stanc'] [u'australian', u'resolut', u'iranian', u'nuclear', u'program'] [u'australian', u'tell', u'madrid', u'horror'] [u'aust', u'women', u'thai', u'jail', u'transfer'] [u'bail', u'access', u'law', u'tighten'] [u'banana', u'grower', u'feder', u'fold'] [u'beatti', u'point', u'blame', u'author', u'wine'] [u'beef', u'produc', u'reject', u'critic'] [u'drink', u'parliament', u'inexcus', u'say'] [u'berridal', u'jail', u'callous', u'child', u'assault'] [u'black', u'open', u'rwanda', u'genocid', u'probe'] [u'blair', u'ahern', u'step', u'pace', u'ireland'] [u'bode', u'latest', u'pull', u'crow'] [u'brown', u'say', u'right', u'refus', u'immun', u'aust'] [u'bulldog', u'lose', u'school', u'event', u'wake', u'sexual'] [u'bull', u'send', u'bushrang'] [u'bushrang', u'charg', u'lunch'] [u'bushrang', u'steadi', u'start'] [u'bushrang', u'readi', u'bull', u'charg'] [u'greater', u'water', u'secur'] [u'address', u'riverina', u'poverti', u'woe'] [u'calm', u'float', u'safeti', u'devic'] [u'canada', u'pass', u'human', u'clone'] [u'cancer', u'council', u'claim', u'support', u'smoke'] [u'vehicl', u'suggest', u'sydney'] [u'centurion', u'smith', u'lead', u'west', u'indi', u'recoveri'] [u'chelsea', u'pois', u'beckham', u'report'] [u'chickenpox', u'put', u'ferrero', u'indian', u'well'] [u'china', u'block', u'chines', u'version', u'western', u'media'] [u'chines', u'acrobat', u'walk', u'fine', u'line', u'record'] [u'clark', u'defend', u'atsic', u'decis', u'pick', u'legal'] [u'clark', u'seek', u'appeal', u'rape', u'case'] [u'clark', u'win', u'right', u'appeal', u'rape', u'case'] [u'cloth', u'maker', u'outlin', u'trade', u'deal', u'woe'] [u'communiti', u'give', u'bash', u'victim', u'appeal'] [u'convict', u'front', u'court', u'fraud'] [u'copper', u'zinc', u'search', u'yilgarn'] [u'council', u'pass', u'develop', u'payment', u'plan'] [u'council', u'urg', u'rethink', u'tourism', u'contract'] [u'cowboy', u'confid', u'overcom', u'eagl'] [u'cowboy', u'look', u'season', u'open'] [u'cowper', u'lean', u'telstra', u'sale'] [u'driver', u'fin', u'school', u'zone'] [u'seuss', u'star', u'hollywood', u'walk', u'fame'] [u'guantanamo', u'inmat', u'denounc', u'captor'] [u'farmer', u'hear', u'push', u'crop'] [u'fear', u'legal', u'outsourc', u'hurt', u'rural', u'indigen'] [u'feder', u'fund', u'laverton', u'crisi', u'centr'] [u'feder', u'scheme', u'help', u'road', u'link'] [u'fergi', u'fit', u'pacemak'] [u'hitch', u'power', u'chang'] [u'finnish', u'granni', u'rock', u'health', u'studi'] [u'abattoir', u'worker', u'win', u'accid'] [u'nation', u'minist', u'air', u'doubt', u'parti'] [u'forum', u'focus', u'long', u'term', u'jobless', u'rate'] [u'face', u'drink', u'drive', u'charg'] [u'fund', u'seek', u'sport', u'revamp'] [u'germani', u'roesch', u'advanc', u'meet', u'clijster'] [u'ger', u'rebuild', u'mcleish', u'wield'] [u'access', u'import', u'grain', u'farmer', u'analyst'] [u'gold', u'coast', u'immun', u'poverti'] [u'good', u'ugli', u'brain', u'behold'] [u'govt', u'oppn', u'express', u'sympathi', u'spain', u'blast', u'victim'] [u'govt', u'school', u'fund', u'packag'] [u'govt', u'gutless', u'sack', u'clark'] [u'greec', u'stick', u'controversi', u'olymp', u'roof'] [u'grigorieva', u'book', u'adelaid', u'interclub', u'date'] [u'group', u'want', u'poverti', u'report', u'recommend'] [u'gun', u'explos', u'adelaid', u'childcar', u'centr'] [u'half', u'melbourn', u'waterway', u'sick', u'report'] [u'halliburton', u'pentagon', u'auditor'] [u'hawker', u'see', u'problem', u'region', u'telstra'] [u'head', u'roll', u'trade', u'scandal'] [u'hear', u'implant', u'maker', u'compani'] [u'hensbi', u'florida', u'event'] [u'hickss', u'lawyer', u'dismiss', u'pentagon', u'critic'] [u'high', u'court', u'reject', u'lappa', u'appeal', u'applic'] [u'hockey', u'player', u'ban', u'attack'] [u'hop', u'hospit', u'rescu', u'deal', u'wait', u'list'] [u'hous', u'afford', u'rise', u'region'] [u'howard', u'condemn', u'unforgiv', u'bomb'] [u'howard', u'pledg', u'testifi', u'iraq', u'inquiri'] [u'howard', u'practic', u'reconcili', u'failur'] [u'ilparpa', u'cross', u'microscop'] [u'imperi', u'elliott', u'put', u'vic', u'charg'] [u'india', u'suffer', u'loss', u'tour', u'open'] [u'indonesia', u'say', u'bashir', u'terrorist'] [u'industri', u'divis', u'help', u'rescu', u'deal', u'talk'] [u'inmat', u'guilti', u'prison', u'murder'] [u'israel', u'say', u'wont', u'raze', u'gaza', u'settlement'] [u'katter', u'stand', u'firm', u'telstra', u'sale', u'opposit'] [u'kelli', u'stand', u'telstra', u'sale', u'support'] [u'keyboard', u'phone', u'dirtier', u'toilet'] [u'knight', u'beat', u'panther', u'season', u'open'] [u'knight', u'predict', u'tough', u'panther', u'clash'] [u'land', u'shortag', u'slow', u'strong', u'hous', u'sector'] [u'lehmann', u'battl', u'emot', u'notch', u'centuri'] [u'lehmann', u'battl', u'emot', u'notch', u'centuri'] [u'leicest', u'focus', u'releg', u'woe'] [u'leicest', u'trio', u'grant', u'bail'] [u'lengthi', u'process', u'determin', u'wast', u'dump', u'sit'] [u'liddi', u'know', u'wine', u'report'] [u'liverpool', u'face', u'exit', u'newcastl', u'goal', u'crazi'] [u'madrid', u'blast', u'victim', u'countri'] [u'madrid', u'bomb', u'blast', u'rattl', u'world', u'market'] [u'arrest', u'chase'] [u'front', u'court', u'rebirth', u'raid'] [u'face', u'court', u'inner', u'sydney', u'murder'] [u'court', u'polic', u'chase'] [u'master', u'milan', u'look', u'pile', u'miseri', u'juve'] [u'matthew', u'stay', u'polic', u'chief'] [u'mayor', u'want', u'state', u'help', u'address', u'street', u'woe'] [u'mccullum', u'oram', u'inspir', u'kiwi', u'fight'] [u'mcewen', u'pull', u'pari', u'nice'] [u'meatwork', u'boost', u'casino', u'job'] [u'meet', u'generat', u'healthi', u'debat'] [u'merger', u'poll', u'vote', u'roll'] [u'middl', u'earth', u'plan', u'oscar', u'celebr'] [u'minist', u'applaud', u'teen', u'jail', u'term', u'assault'] [u'minist', u'seek', u'apolog', u'highway', u'patrol', u'comment'] [u'public', u'consult', u'seek', u'crop'] [u'back', u'health', u'servic', u'shake'] [u'say', u'highway', u'safeti', u'move'] [u'murder', u'probe', u'launch', u'taxi', u'driver', u'death'] [u'murder', u'prompt', u'call', u'improv', u'taxi', u'driver', u'safeti'] [u'museum', u'look', u'dino', u'tourism'] [u'board', u'escap', u'chop', u'rebuild', u'begin'] [u'gene', u'link', u'cancer'] [u'guidelin', u'boost', u'privat', u'school', u'admin'] [u'home', u'loan', u'applic', u'drop'] [u'detail', u'doctor', u'replac', u'cost'] [u'season', u'open', u'put', u'focus', u'footi'] [u'nrma', u'drive', u'campaign', u'highway', u'fund'] [u'olymp', u'organis', u'lose', u'offici'] [u'outsid', u'ruddock', u'wale', u'coach'] [u'panther', u'trail', u'knight', u'break'] [u'peak', u'hill', u'labour', u'deliv', u'babi'] [u'perilya', u'track', u'boost', u'product'] [u'perth', u'teen', u'jail', u'chines', u'restaur', u'attack'] [u'petroleum', u'compani', u'spend', u'explor'] [u'pig', u'chew', u'hawk', u'semi'] [u'question', u'atsic', u'futur'] [u'hunt', u'giant', u'mysteri', u'creatur'] [u'polic', u'probe', u'chinatown', u'bodi'] [u'polic', u'probe', u'highway', u'doubl', u'fatal'] [u'polic', u'probe', u'solomon', u'onlin', u'scam'] [u'polic', u'seek', u'taxi', u'murder'] [u'polic', u'seek', u'public', u'help', u'stop', u'drink', u'spike'] [u'pool', u'complex', u'address', u'nois', u'issu'] [u'predict', u'bigger', u'navel', u'crop'] [u'price', u'pace', u'qatar'] [u'proud', u'warn', u'revel', u'fairytal', u'comeback'] [u'lead', u'growth', u'figur'] [u'premier', u'accus', u'play', u'crass', u'polit'] [u'rail', u'worker', u'angri', u'vote', u'booz'] [u'rat', u'plan', u'spark', u'landown', u'concern'] [u'cross', u'defend', u'hanson', u'blood', u'donat', u'refus'] [u'red', u'seek', u'reveng', u'crusad', u'loss'] [u'red', u'trio', u'pass', u'fit', u'test'] [u'region', u'group', u'seek', u'govt', u'chang', u'boost'] [u'remot', u'teacher', u'incent'] [u'rescu', u'oper', u'underway', u'arafura'] [u'resid', u'dust', u'action', u'delay'] [u'restrict', u'area', u'like', u'duck', u'shooter'] [u'ridgeway', u'say', u'reconcili', u'complet', u'disast'] [u'rijkaard', u'prais', u'resili', u'barca'] [u'earli', u'water', u'restrict', u'manag'] [u'robot', u'repair', u'hubbl', u'telescop', u'nasa'] [u'roger', u'rule', u'stormer', u'clash'] [u'erupt', u'head', u'river'] [u'rusedski', u'readi', u'assign', u'blame'] [u'govt', u'back', u'dump', u'support', u'board', u'appoint'] [u'salvag', u'oper', u'spark', u'harbour', u'restrict'] [u'francisco', u'wed', u'halt', u'court'] [u'school', u'cancel', u'jambore', u'wake', u'bulldog', u'scandal'] [u'schultz', u'defend', u'telstra', u'sale', u'opposit'] [u'scientist', u'push', u'tiger', u'ecotour'] [u'secur', u'requir', u'brake', u'servic'] [u'senat', u'daughter', u'quiz', u'guantanamo', u'link'] [u'serbia', u'rememb', u'slay', u'djindjic'] [u'shark', u'edg', u'highland', u'thriller'] [u'sharon', u'popular', u'reach', u'time', u'poll'] [u'go', u'despit', u'madrid', u'bomb'] [u'korean', u'presid', u'apologis', u'impeach'] [u'korean', u'presid', u'impeach', u'peopl', u'protest'] [u'smith', u'brink', u'maiden', u'test', u'west'] [u'south', u'korea', u'vote', u'impeach', u'presid'] [u'spain', u'halt', u'silent', u'salut', u'victim'] [u'spain', u'pursu', u'lead', u'dead', u'blast'] [u'state', u'dishonest', u'school', u'fund'] [u'storm', u'director', u'quit', u'consult', u'role'] [u'streisand', u'screen', u'meet'] [u'sydney', u'hospit', u'inquiri', u'hear', u'corrupt'] [u'popul', u'grow', u'figur'] [u'teen', u'extradit', u'doubl', u'murder'] [u'terror', u'attack', u'stop', u'spanish', u'footbal'] [u'elliott', u'vic', u'cruis'] [u'tragic', u'health', u'bungl', u'lead', u'hospit', u'chang'] [u'dead', u'haiti', u'protest'] [u'soldier', u'kill', u'west', u'baghdad'] [u'union', u'air', u'fear', u'super', u'entitl'] [u'union', u'blast', u'opposit', u'delay', u'tactic'] [u'union', u'threaten', u'protest', u'delay', u'propos'] [u'unstabl', u'atsic', u'suit', u'govt', u'agenda', u'jona'] [u'alli', u'push', u'condemn', u'iran', u'nuke', u'program'] [u'firm', u'gain', u'billion', u'dollar', u'iraqi', u'contract'] [u'missil', u'defenc', u'inadequ', u'pentagon'] [u'predict', u'gain', u'aust', u'trade', u'deal'] [u'senat', u'pass', u'trillion', u'budget'] [u'power', u'station', u'sell', u'billion'] [u'virgin', u'blue', u'ponder', u'extra', u'rockhampton', u'flight'] [u'warn', u'close', u'mileston', u'lankan', u'crumbl'] [u'warn', u'make', u'histori', u'lanka'] [u'warn', u'master', u'imposs'] [u'water', u'deadlin', u'loom', u'council'] [u'weather', u'right', u'hazard', u'reduct', u'burn'] [u'there', u'shop'] [u'wise', u'give', u'kativerata', u'start'] [u'wool', u'buyer', u'surpris', u'bargain', u'bale'] [u'work', u'begin', u'transport', u'interchang'] [u'worker', u'magazin', u'go', u'commerci'] [u'countri', u'fail', u'counter', u'terror', u'oblig'] [u'journalist', u'quill'] [u'adelaid', u'brace', u'assault'] [u'adelaid', u'festiv', u'celebr', u'offic', u'success'] [u'anti', u'discrimin', u'law', u'fail', u'gay', u'activist'] [u'argentina', u'compens', u'dirti', u'children'] [u'arsenal', u'face', u'chelsea', u'champion', u'leagu'] [u'ashmor', u'detaine', u'return', u'indonesia'] [u'peopl', u'kill', u'chines', u'blast'] [u'audit', u'show', u'threaten', u'speci', u'tenac'] [u'babi', u'emerg', u'deliv', u'countri', u'health', u'critic'] [u'baggaley', u'book', u'ticket', u'athen'] [u'bail', u'leicest', u'trio', u'england'] [u'bankruptci', u'plan', u'strip', u'penthous', u'founder', u'role'] [u'beatti', u'say', u'polic', u'union', u'blame', u'wine'] [u'berger', u'write', u'william', u'challeng'] [u'black', u'cap', u'hold', u'upper', u'hand'] [u'bomb', u'victim', u'overwhelm', u'madrid', u'hospit'] [u'buck', u'stop', u'board'] [u'bulldog', u'blitz', u'rock', u'eel'] [u'bull', u'frustrat', u'middl', u'order'] [u'bull', u'twin', u'breakthrough'] [u'bumper', u'crowd', u'forecast', u'season', u'final'] [u'bush', u'prais', u'women', u'speech'] [u'butcher', u'hussain', u'england'] [u'govt', u'review', u'oxygen', u'suppli', u'polici'] [u'calm', u'sea', u'save', u'shipwreck', u'indonesian'] [u'canberra', u'ralli', u'rememb', u'madrid', u'victim'] [u'cancer', u'council', u'argu', u'stronger', u'smoke', u'ban'] [u'clijster', u'advanc', u'arthur', u'stosur'] [u'comeback', u'king', u'beat', u'bullet', u'game'] [u'court', u'dismiss', u'poacher', u'boat', u'appeal'] [u'court', u'reject', u'toothfish', u'vessel', u'seizur', u'appeal'] [u'davi', u'sacrific', u'worth', u'hewitt'] [u'demand', u'rise', u'inner', u'citi', u'live', u'canberra'] [u'dengu', u'fever', u'mosquito'] [u'diamond', u'face', u'striker', u'hockey', u'final'] [u'eagl', u'demon', u'blue', u'practic', u'match'] [u'eagl', u'hawk', u'practic', u'match'] [u'ebay', u'pull', u'women', u'sale'] [u'educ', u'minist', u'seek', u'fairer', u'fund'] [u'emerg', u'reach', u'cyclon', u'madagascar'] [u'deni', u'bomb', u'million', u'march'] [u'famili', u'rob', u'gunpoint', u'sydney', u'hotel'] [u'ferrari', u'domin', u'malaysia', u'barrichello'] [u'final', u'heartbreak', u'battl', u'striker'] [u'fortun', u'rule', u'rest', u'season'] [u'indian', u'soldier', u'islam', u'rebel', u'kill'] [u'hospit', u'bottl', u'explos'] [u'glori', u'coach', u'anticip', u'high', u'score', u'match'] [u'govt', u'rule', u'hamper', u'bali', u'flight'] [u'greec', u'request', u'nato', u'back', u'olymp', u'secur'] [u'grigorieva', u'fail', u'adelaid', u'qualifi'] [u'haitian', u'secur', u'chief', u'arrest', u'canada'] [u'haiti', u'fear', u'aristid', u'jamaica', u'visit'] [u'haiti', u'swear'] [u'happi', u'birthday'] [u'hodg', u'push'] [u'hotmail', u'user', u'log'] [u'hundr', u'teacher', u'march', u'better', u'deal'] [u'hurrican', u'blow', u'cat', u'away'] [u'impeach', u'confid', u'regain', u'offic'] [u'india', u'stop', u'pakistan', u'thriller'] [u'indonesian', u'troop', u'kill', u'papuan', u'separatist', u'leader'] [u'iran', u'blast', u'allow', u'nuclear', u'resolut'] [u'iran', u'postpon', u'nuclear', u'inspect'] [u'israel', u'tie', u'gaza', u'pullout', u'support'] [u'king', u'readi', u'hoop', u'bullet'] [u'late', u'man', u'charg', u'upset', u'cowboy'] [u'latham', u'lead', u'red', u'ballymor'] [u'latham', u'lead', u'red', u'stun'] [u'lawyer', u'attend', u'hick', u'inspir', u'fring'] [u'flirt', u'arizona'] [u'madrid', u'attack', u'analys', u'say', u'chief'] [u'major', u'oper', u'launch', u'trap', u'crime', u'suspect'] [u'die', u'vehicl', u'collis'] [u'kill', u'injur'] [u'megawati', u'accept', u'secur', u'minist', u'resign'] [u'melbourn', u'teenag', u'charg', u'taxi', u'murder'] [u'menchov', u'dedic', u'stage', u'madrid', u'victim'] [u'mercenari', u'expect', u'face', u'coup', u'charg'] [u'mice', u'sar', u'immun', u'possibl'] [u'million', u'march', u'bomb', u'mysteri', u'deepen'] [u'minist', u'question', u'school', u'save'] [u'monster', u'theron', u'stick', u'abus', u'charact'] [u'japanes', u'troop', u'leav', u'iraq'] [u'murder', u'charg', u'lay', u'mother', u'refus', u'caesarean'] [u'anti', u'terror', u'oper', u'begin', u'afghanistan'] [u'norman', u'disqualifi', u'florida'] [u'tell', u'commit', u'kakadu', u'advertis', u'fund'] [u'nuclear', u'dump', u'delay', u'troubl', u'howard'] [u'nuke', u'watchdog', u'approv', u'back', u'resolut', u'iran'] [u'nuke', u'watchdog', u'chief', u'like', u'meet', u'bush', u'week'] [u'odumb', u'face', u'match', u'fix', u'investig'] [u'pakistan', u'toss', u'india'] [u'pentagon', u'continu', u'award', u'iraq', u'contract'] [u'pettersson', u'open', u'shoot', u'lead', u'florida'] [u'philippin', u'tighten', u'secur', u'respons'] [u'philippin', u'vice', u'presid', u'side', u'opposit'] [u'polic', u'offic', u'charg', u'kidnap', u'sexual', u'assault'] [u'powel', u'deni', u'guantanamo', u'beat', u'claim'] [u'practic', u'win', u'lion', u'swan', u'crow'] [u'profit', u'question', u'abc', u'rat'] [u'protea', u'halt', u'slide', u'hamilton'] [u'punter', u'satisfi'] [u'safe', u'terror', u'say', u'premier'] [u'rawalpindi', u'express', u'rare', u'india'] [u'reactiv', u'approach', u'abus', u'harm', u'children'] [u'redfern', u'centr', u'bring', u'communiti'] [u'red', u'lead', u'blue', u'break'] [u'renew', u'energi', u'switch', u'barrier', u'growth'] [u'run', u'flow', u'bushrang', u'riot'] [u'saint', u'defend', u'hamil', u'ahead', u'decid'] [u'saint', u'thrill', u'pack', u'dockland'] [u'scotland', u'lamont'] [u'scot', u'play', u'australia', u'south', u'africa', u'japan'] [u'senat', u'investig', u'student', u'incom'] [u'grade', u'inquiri', u'lack', u'transpar'] [u'shark', u'backrow', u'winter', u'cite', u'danger', u'tackl'] [u'korea', u'discuss', u'impeach', u'militari'] [u'korean', u'reject', u'impeach', u'poll'] [u'soft', u'claw', u'cool', u'cat'] [u'spain', u'prepar', u'buri', u'dead', u'toll', u'hit'] [u'state', u'blame', u'school', u'fund', u'shortfal', u'nelson'] [u'storm', u'black', u'town'] [u'streak', u'rescu', u'zimbabw', u'seri'] [u'stuppl', u'grab', u'lead', u'arizona'] [u'thousand', u'gather', u'taiwan', u'opposit', u'ralli'] [u'thousand', u'march', u'protest', u'govt', u'forestri'] [u'tiger', u'lead', u'shark', u'break'] [u'tiger', u'upset', u'shark'] [u'lead', u'cannabi', u'haul'] [u'palestinian', u'kill', u'gaza', u'strip'] [u'soldier', u'kill', u'wound', u'northern'] [u'freez', u'asset', u'liberian', u'presid'] [u'boost', u'train', u'secur', u'madrid', u'bomb'] [u'current', u'account', u'deficit', u'hit', u'record', u'level'] [u'marin', u'kill', u'gunmen', u'haiti'] [u'prepar', u'afghanistan', u'mountain', u'storm'] [u'stock', u'recov', u'secur', u'fear', u'subsid'] [u'victori', u'surpris', u'tasmanian', u'year'] [u'videophon', u'translat', u'deaf', u'custom'] [u'walsh', u'back', u'warn'] [u'whitewash', u'prison', u'report', u'trigger', u'second', u'inquiri'] [u'wit', u'describ', u'madrid', u'train', u'bomber'] [u'woosnam', u'leader', u'qatar'] [u'zimbabw', u'execut', u'mercenari'] [u'kill', u'violent', u'syrian', u'protest'] [u'australian', u'honour', u'nation', u'live'] [u'bodi', u'california', u'home'] [u'abbott', u'defend', u'medicar', u'reform', u'campaign'] [u'adelaid', u'driver', u'stand', u'firm', u'plan', u'strike'] [u'qaeda', u'claim', u'madrid', u'attack'] [u'australia', u'mourn', u'spain', u'bomb', u'victim'] [u'australia', u'experi', u'terrorist', u'attack'] [u'author', u'deni', u'prison', u'riot', u'risdon', u'jail'] [u'beckham', u'dismiss', u'real', u'quit', u'rumour'] [u'black', u'cap', u'face', u'imposs', u'chase'] [u'bolivian', u'school', u'shout', u'wed'] [u'boy', u'girl', u'status'] [u'bronco', u'lead', u'warrior'] [u'bullet', u'fight', u'surviv', u'brisban'] [u'bull', u'chase'] [u'bush', u'defend', u'econom', u'polici'] [u'bushrang', u'cruis', u'bull', u'crumbl'] [u'bushrang', u'pass'] [u'extend', u'crop', u'moratorium'] [u'childcar', u'centr', u'receiv', u'urgent', u'repair', u'fund'] [u'china', u'enshrin', u'privat', u'properti'] [u'china', u'pass', u'budget', u'econom', u'plan'] [u'claim', u'govt', u'plan', u'nation', u'land'] [u'coalit', u'doubl', u'iraq', u'border', u'secur'] [u'communiti', u'turn', u'redfern', u'centr', u'open'] [u'controversi', u'tank', u'good', u'news'] [u'controversi', u'send', u'brumbi'] [u'costello', u'right', u'heir', u'howard', u'crown', u'abbott'] [u'counter', u'terror', u'bodi', u'review', u'transport', u'secur'] [u'star', u'netbal', u'sweep', u'south', u'africa'] [u'diamond', u'claim', u'hockey', u'final'] [u'doctor', u'fail', u'diagnos', u'fatal', u'meningococc', u'case'] [u'drop', u'springbok', u'south', u'african', u'tell'] [u'england', u'edg', u'ahead', u'roller', u'coaster', u'test'] [u'equatori', u'guinea', u'march', u'call', u'mercenari'] [u'prime', u'suspect', u'spanish', u'minist'] [u'repeat', u'denial', u'madrid', u'attack'] [u'ewamian', u'peopl', u'negoti', u'histor', u'farm', u'access'] [u'explos', u'prompt', u'cylind', u'warn'] [u'extra', u'fund', u'rural', u'specialist'] [u'boss', u'search', u'qualifi', u'chang'] [u'feather', u'injuri', u'blow', u'red'] [u'flood', u'close', u'highway'] [u'french', u'gunner', u'cours'] [u'georgia', u'edg', u'presid', u'refus', u'entri'] [u'goodwil', u'earn', u'neighbour', u'million'] [u'govt', u'plan', u'law', u'jail', u'internet', u'paedophil'] [u'guerrilla', u'attack', u'kill', u'soldier', u'baghdad'] [u'henin', u'hardenn', u'cruis', u'open', u'victori'] [u'hewitt', u'win', u'indian', u'well', u'open', u'scud'] [u'hick', u'play', u'impress', u'militari', u'lawyer'] [u'ignor', u'carr', u'claim', u'beatti', u'tell', u'grant', u'commiss'] [u'impeach', u'caus', u'south', u'korea', u'uncertainti'] [u'injuri', u'forc', u'clijster', u'indian', u'well'] [u'injuri', u'put', u'kirkland', u'action'] [u'give', u'greec', u'week', u'deadlin'] [u'iran', u'ban', u'nuclear', u'inspector'] [u'israel', u'thwart', u'kibbutz', u'attack'] [u'jacquelin', u'cruis', u'qatar', u'lead'] [u'kalli', u'near', u'bradman', u'record', u'protea', u'earn', u'draw'] [u'king', u'sweep', u'bullet', u'grand', u'final', u'berth'] [u'lord', u'danc', u'compos', u'carter', u'die'] [u'media', u'blame', u'iraq', u'misinform', u'butler'] [u'misinform', u'forest', u'ralli', u'turnout'] [u'briton', u'alleg', u'guantanamo', u'beat'] [u'moroccan', u'offici', u'follow', u'madrid', u'arrest'] [u'morocco', u'identifi', u'arrest', u'spain'] [u'murali', u'join', u'warn', u'wicket', u'club'] [u'murder', u'trial', u'nurs', u'reopen', u'euthanasia', u'debat'] [u'myer', u'vow', u'crackdown', u'haiti', u'tension', u'rise'] [u'student', u'drown', u'surf'] [u'korea', u'criticis', u'south', u'opposit', u'impeach'] [u'australian', u'troop', u'afghan', u'offens'] [u'attack', u'feder', u'fund', u'cut'] [u'kill', u'baghdad', u'shop', u'area', u'blast'] [u'bike', u'mayor', u'candid', u'tell', u'peski', u'courier'] [u'opposit', u'urg', u'oxygen', u'suppli', u'polici', u'review'] [u'overdos', u'prompt', u'rave', u'parti', u'crackdown'] [u'palestinian', u'hand', u'bodi', u'abba'] [u'pauls', u'brace', u'knock', u'waratah'] [u'pension', u'rise', u'combat', u'inflat'] [u'polic', u'arrest', u'duti', u'colleagu', u'street', u'fight'] [u'polic', u'defend', u'bail', u'offic', u'charg'] [u'poll', u'open', u'spanish', u'elect'] [u'pope', u'urg', u'europ', u'rememb', u'christian', u'root'] [u'power', u'fire', u'goal', u'thriller'] [u'prison', u'group', u'call', u'sack'] [u'putin', u'expect', u'landslid', u'poll', u'open'] [u'putin', u'easi'] [u'agent', u'predict', u'properti', u'price', u'rise'] [u'raider', u'good', u'dragon'] [u'real', u'hold', u'home', u'final', u'dress', u'rehears'] [u'robot', u'rover', u'help', u'care', u'age', u'popul'] [u'robot', u'pentagon', u'race'] [u'rooki', u'open', u'shoot', u'lead', u'florida'] [u'rooster', u'fight', u'rabbitoh'] [u'rooster', u'lead', u'rabbitoh', u'break'] [u'rule', u'parti', u'win', u'surpris', u'head', u'start', u'malaysian'] [u'sampdoria', u'resist', u'bologna', u'fightback'] [u'theme', u'park', u'open', u'south', u'china'] [u'spain', u'arrest', u'madrid', u'bomb'] [u'spanish', u'protest', u'govern', u'manipul'] [u'lanka', u'peac', u'hop', u'tiger', u'leadership'] [u'lanka', u'chang', u'pace', u'australia'] [u'stab', u'rais', u'taxi', u'safeti', u'concern'] [u'sting', u'oper', u'target', u'wasp'] [u'stuppl', u'hold', u'arizona', u'lead'] [u'contractor', u'threaten', u'foxtel', u'instal'] [u'superannu', u'scheme', u'extend'] [u'support', u'report', u'arctic', u'adventur', u'miss'] [u'sydney', u'spanish', u'communiti', u'mourn', u'bomb', u'victim'] [u'sydney', u'tell', u'expect', u'anti', u'terror', u'exercis'] [u'teacher', u'truanci', u'rise'] [u'teen', u'charg', u'redfern', u'riot'] [u'taliban', u'hold', u'afghan', u'offens'] [u'traumatis', u'spain', u'vote', u'madrid', u'attack'] [u'hospit', u'knife', u'attack'] [u'nab', u'peruvian', u'boat', u'seven', u'tonn', u'cocain'] [u'warrior', u'victim', u'bronco', u'snap', u'lose', u'streak'] [u'servic', u'mourn', u'madrid', u'victim'] [u'waugh', u'rafter', u'name', u'nation', u'treasur'] [u'woman', u'hospit', u'pack', u'attack'] [u'west', u'brom', u'level', u'leader', u'norwich'] [u'woman', u'die', u'parachut', u'jump'] [u'world', u'class', u'musician', u'teach', u'darwin'] [u'wright', u'domin', u'mosley', u'super', u'welterweight'] [u'wyness', u'strike', u'peg', u'ranger'] [u'tradit', u'stone'] [u'dead', u'isra', u'blast'] [u'abba', u'shouldnt', u'allow', u'west', u'bank', u'burial', u'isra'] [u'staff', u'order', u'work'] [u'staff', u'strike', u'hour'] [u'aborigin', u'activist', u'prais', u'welfar', u'debat'] [u'act', u'hospit', u'document'] [u'age', u'hous', u'spotlight'] [u'agforc', u'troubl', u'tree', u'clear', u'legisl'] [u'airlin', u'pass', u'bali', u'flight', u'custom', u'cost'] [u'alinta', u'duke', u'energi', u'asset'] [u'allenbi', u'fourth', u'florida'] [u'eye', u'zapatero', u'spain', u'reel'] [u'anger', u'attack', u'help', u'spain', u'socialist', u'power'] [u'anger', u'roundabout', u'safeti', u'fund', u'snub'] [u'anti', u'terror', u'meet', u'examin', u'secur'] [u'arrest', u'like', u'forster', u'riot'] [u'aussi', u'ponder', u'extra', u'quick', u'kandi', u'test'] [u'aussi', u'ponder', u'extra', u'quick', u'kandi', u'test'] [u'aust', u'polic', u'talk', u'continu'] [u'australian', u'pilot', u'shoot', u'dead'] [u'basic', u'error', u'cowboy'] [u'beatti', u'say', u'public', u'hear', u'necessari'] [u'upgrad', u'plan', u'margaret'] [u'bomb', u'near', u'athen', u'bank'] [u'break', u'scottish', u'club', u'defi', u'odd'] [u'brown', u'tell', u'note', u'spanish', u'elect'] [u'bull', u'face', u'mission', u'imposs'] [u'bull', u'lose', u'bichel'] [u'bull', u'struggl', u'maher', u'go', u'duck'] [u'bushrang', u'bat', u'berri', u'reject'] [u'bushrang', u'close', u'victori'] [u'bushrang', u'outright', u'victori'] [u'carmodi', u'back', u'council', u'merger', u'plan'] [u'carr', u'defend', u'campaign', u'feder', u'fund'] [u'cattl', u'drive', u'concern', u'west', u'coast'] [u'charg', u'alleg', u'gaza', u'bomber', u'drop'] [u'chines', u'astronaut', u'fail', u'spot', u'great', u'wall'] [u'chines', u'coupl', u'mistak', u'girl', u'year'] [u'citi', u'leav', u'utd', u'titl', u'hop', u'tatter'] [u'clay', u'fear', u'dump', u'impact', u'export'] [u'coast', u'dental', u'school', u'patient'] [u'cole', u'petrol', u'outlet', u'worri', u'small', u'food', u'store'] [u'command', u'defend', u'investig', u'polic', u'offic'] [u'commerci', u'develop', u'plan', u'northam'] [u'communic', u'agenda', u'deputi', u'visit'] [u'coron', u'critic', u'hospit', u'woman', u'death'] [u'council', u'appoint', u'project', u'develop', u'offic'] [u'council', u'consid', u'grand', u'green', u'plan'] [u'council', u'foreshadow', u'rat', u'rise'] [u'councillor', u'reject', u'local', u'govt', u'decid'] [u'council', u'say', u'quarri', u'plan'] [u'council', u'seek', u'upgrad', u'shoalwat', u'road'] [u'council', u'label', u'govt', u'arrog', u'merger'] [u'coup', u'suspect', u'face', u'lesser', u'zimbabw', u'charg', u'lawyer'] [u'cowboy', u'coach', u'frustrat', u'error', u'count'] [u'darwin', u'harbour', u'secur', u'examin'] [u'dizzi', u'spin', u'kandi', u'return'] [u'doctor', u'welcom', u'effort', u'boost', u'suppli'] [u'doyl', u'defend', u'council', u'labor', u'attack'] [u'dragon', u'coach', u'upbeat', u'despit', u'loss'] [u'drive', u'promot', u'rugbi', u'leagu'] [u'driver', u'die', u'shepparton', u'crash'] [u'drop', u'owen', u'joke', u'say', u'houllier'] [u'drought', u'barrier', u'fill', u'beef', u'quota'] [u'einstein', u'honour', u'anniversari', u'birth'] [u'embassi', u'move', u'australian', u'respons', u'bomb'] [u'emerg', u'train', u'door', u'design', u'inadequ'] [u'esper', u'properti', u'price', u'high'] [u'alic', u'rider', u'boost', u'cycl', u'challeng', u'lead'] [u'expat', u'demand', u'action', u'murder'] [u'eyr', u'peninsula', u'trail', u'highlight', u'wildlif'] [u'farmer', u'join', u'indigen', u'elder', u'dump', u'fight'] [u'farmer', u'urg', u'nuclear', u'wast', u'transport', u'opposit'] [u'fear', u'air', u'region', u'polic', u'pressur'] [u'feder', u'fund', u'intersect', u'black', u'spot'] [u'cricket', u'face', u'court', u'fraud', u'charg'] [u'foxtel', u'hit', u'digit', u'roll', u'hitch'] [u'frustrat', u'mount', u'work'] [u'germani', u'call', u'secur', u'reassess'] [u'girl', u'dead', u'injur', u'bushland'] [u'group', u'campaign', u'forest', u'log'] [u'group', u'seek', u'meet', u'feedlot', u'plan'] [u'haeggman', u'captur', u'qatar', u'master'] [u'haiti', u'aristid', u'quit', u'african', u'exil', u'jamaica'] [u'harmison', u'take', u'seven', u'england', u'crush', u'windi'] [u'hayden', u'return'] [u'high', u'demand', u'flower', u'export'] [u'honest', u'stan', u'stand', u'integr'] [u'hope', u'whyalla', u'plant', u'recycl', u'facil'] [u'howard', u'move', u'allay', u'terror', u'fear'] [u'howard', u'reject', u'land', u'claim'] [u'huge', u'engulf', u'histor', u'moscow', u'build'] [u'illawarra', u'health', u'consid', u'asset', u'sale'] [u'impress', u'milan', u'place', u'hand', u'scudetto'] [u'indonesia', u'vital', u'terror', u'fight'] [u'injur', u'teen', u'parent', u'thank', u'support'] [u'iran', u'promis', u'resumpt', u'nuclear', u'inspect'] [u'iraq', u'govern', u'council', u'divid', u'role'] [u'isra', u'helicopt', u'strike', u'gaza', u'target', u'wit'] [u'isra', u'minist', u'reject', u'talk', u'palestinian'] [u'jaksch', u'win', u'pari', u'nice', u'roger', u'eighth'] [u'jobseek', u'number', u'fall', u'southern'] [u'labor', u'accus', u'vicious', u'sydney', u'campaign'] [u'labor', u'pledg', u'excess', u'super', u'fee'] [u'latrob', u'valley', u'ambo', u'begin', u'industri', u'unrest'] [u'liber', u'launch', u'busi', u'polici', u'ahead', u'octob'] [u'local', u'doctor', u'feel', u'medicar', u'woe'] [u'mackay', u'sugar', u'get', u'hous', u'estat'] [u'accus', u'doctor', u'imperson', u'court'] [u'charg', u'pedestrian', u'death'] [u'die', u'highway', u'crash'] [u'face', u'charg', u'drug'] [u'court', u'cannabi', u'charg'] [u'court', u'truck', u'yard', u'camp', u'death'] [u'meet', u'review', u'mildura', u'speed', u'limit'] [u'gibson', u'passion', u'spot', u'time'] [u'mobil', u'phone', u'reason', u'plane'] [u'moor', u'demand', u'ambit', u'ranger'] [u'fund', u'flood', u'prone', u'home'] [u'harvest', u'worker', u'lose', u'welfar', u'payment'] [u'troubl', u'scruffi', u'bulldog'] [u'murali', u'battl', u'stomach', u'test'] [u'murali', u'battl', u'stomach', u'rain', u'soak', u'kandi'] [u'nat', u'urg', u'govt', u'rethink', u'hospit', u'fund'] [u'naturopath', u'suspend', u'sentenc', u'babi', u'death'] [u'navi', u'ship', u'paint', u'howard', u'bootlick', u'graffiti'] [u'label', u'highlight', u'energi', u'effici', u'product'] [u'monitor', u'bring', u'hope', u'heart'] [u'planet'] [u'tangara', u'safeti', u'fault', u'cityrail'] [u'nimmitabel', u'short', u'water'] [u'bangladeshi', u'student', u'aliv'] [u'glori', u'despotovski'] [u'region', u'boost', u'plan', u'anti', u'venom', u'stock'] [u'north', u'south', u'talk', u'cancel', u'korean'] [u'judiciari', u'charg', u'round'] [u'offici', u'confirm', u'victori', u'putin'] [u'opposit', u'super', u'polici', u'focus', u'tax'] [u'rate', u'fin', u'anger', u'ganguli'] [u'pair', u'court', u'cannabi', u'plant'] [u'pakistani', u'polic', u'defus', u'bomb'] [u'parachutist', u'kill', u'dive', u'accid'] [u'peckish', u'burglar', u'catch', u'snack'] [u'perth', u'choke', u'smoke', u'haze'] [u'pilot', u'blame', u'fatal', u'crash'] [u'unfaz', u'split', u'terror', u'risk'] [u'prime', u'minist', u'hit', u'australia'] [u'polic', u'arrest', u'alleg', u'bandit'] [u'polic', u'hunt', u'syring', u'threaten', u'bandit'] [u'polic', u'ruddock', u'clash', u'terror', u'target', u'claim'] [u'polic', u'step', u'search', u'miss', u'boy'] [u'polic', u'tackl', u'north', u'coast', u'drink', u'drive'] [u'polic', u'widen', u'search', u'miss', u'boy'] [u'portabl', u'ashtray', u'tri', u'gold', u'coast'] [u'poverti', u'issu', u'fall', u'radar'] [u'power', u'return', u'coastal', u'town'] [u'prais', u'cyclon', u'volunt', u'effort'] [u'prais', u'magnet', u'swim', u'legend'] [u'public', u'stop', u'zone'] [u'public', u'urg', u'help', u'woman', u'abductor'] [u'question', u'rais', u'network'] [u'real', u'slip', u'allow', u'valencia', u'close'] [u'record', u'sauvignon', u'blanc', u'crop', u'zealand', u'vine'] [u'report', u'see', u'broom', u'land', u'shortag'] [u'research', u'split', u'hair', u'offer', u'hope', u'bald', u'cure'] [u'resid', u'celebr', u'canberra'] [u'resid', u'council', u'merger'] [u'resid', u'welcom', u'tree', u'poison'] [u'resourc', u'share', u'provid', u'market', u'strength'] [u'rilli', u'destroy', u'wollongong'] [u'road', u'fund', u'boost', u'tip'] [u'roddick', u'set', u'round', u'match', u'safin'] [u'rooster', u'dear'] [u'rooster', u'wait', u'wing', u'test', u'result'] [u'ruddock', u'consort', u'terrorist', u'attack'] [u'ruddock', u'open', u'govt', u'contractor'] [u'russian', u'opposit', u'cri', u'foul', u'putin', u'victori'] [u'russia', u'putin', u'sweep', u'kremlin'] [u'russia', u'vote', u'turnout', u'exceed', u'crucial', u'percent'] [u'school', u'admin', u'staff', u'consid', u'strike'] [u'scientist', u'test', u'boundari', u'fertil'] [u'servic', u'disrupt', u'train', u'derail'] [u'alert', u'heavi', u'rain', u'northern'] [u'shire', u'associ', u'chief', u'reject', u'local', u'govt', u'report'] [u'zimbabw', u'mercenari', u'suspect', u'charg', u'lawyer'] [u'soccer', u'tasmania', u'deni', u'blame', u'fail', u'propos'] [u'socialist', u'claim', u'victori', u'spanish', u'elect'] [u'southern', u'school', u'benefit', u'feder', u'fund'] [u'south', u'korean', u'interim', u'leader', u'lay', u'prioriti'] [u'spain', u'tri', u'verifi', u'qaeda', u'bomb', u'claim'] [u'spanish', u'leader', u'plan', u'pull', u'troop', u'iraq'] [u'stay', u'elect', u'campaign', u'rumsfeld', u'bush'] [u'streak', u'lead', u'zimbabw', u'seri', u'victori'] [u'stuppl', u'sizzl', u'lpga'] [u'sydney', u'theatr', u'hail', u'fund', u'boost'] [u'team', u'fetch', u'aristid', u'land', u'central', u'africa'] [u'teen', u'accus', u'prostitut', u'murder', u'face', u'darwin'] [u'teen', u'court', u'murder', u'charg'] [u'telstra', u'deni', u'payphon', u'cutback', u'report'] [u'terror', u'attack', u'canberra', u'unlik', u'expert'] [u'thief', u'pull', u'giant', u'pumpkin', u'heist'] [u'thousand', u'protest', u'impeach'] [u'palestinian', u'milit', u'kill', u'isra'] [u'tight', u'result', u'tip', u'bomb', u'taint', u'spanish', u'poll'] [u'timber', u'worker', u'order', u'ralli', u'green'] [u'tini', u'turtl', u'return', u'home', u'coastal', u'marathon'] [u'seed', u'feder', u'advanc'] [u'tourist', u'help', u'solv', u'histor', u'crime'] [u'truss', u'tell', u'zoellick'] [u'nuclear', u'watchdog', u'want', u'speedi', u'return', u'iran'] [u'urgent', u'anti', u'terror', u'talk', u'underway'] [u'victori', u'putin', u'get', u'busi'] [u'victori', u'putin', u'pledg', u'econom', u'growth'] [u'vote', u'begin', u'local', u'govt', u'poll'] [u'polic', u'cannabi', u'crop', u'seizur', u'arrest'] [u'water', u'restrict', u'stay'] [u'water', u'restrict', u'possibl'] [u'wildlif', u'group', u'head', u'court', u'curb', u'kangaroo', u'cull'] [u'work', u'begin', u'soon', u'water', u'plant'] [u'yelarbon', u'medic', u'servic', u'end'] [u'guantanamo', u'prison', u'releas', u'australian'] [u'journalist', u'return', u'work', u'victoria'] [u'chief', u'doubt', u'iraq', u'link', u'terror', u'risk'] [u'afghan', u'alleg', u'guantanamo', u'mistreat'] [u'alleg', u'sheep', u'shipment', u'contamin', u'face', u'court'] [u'question', u'medicar', u'deal', u'effect'] [u'appl', u'sell', u'million', u'song', u'internet'] [u'aristid', u'attempt', u'destabilis', u'haiti'] [u'aristid', u'caribbean'] [u'galleri', u'tribut', u'hoppi', u'hopgood'] [u'aussi', u'fight', u'murali', u'hit'] [u'aust', u'challeng', u'spain', u'iraq', u'pull'] [u'australian', u'doctor', u'trial', u'frequent', u'chemo'] [u'australia', u'play', u'netherland'] [u'award', u'go', u'loxton', u'paper'] [u'bangladesh', u'stop', u'acid', u'attack'] [u'bank', u'manag', u'theft', u'sentenc', u'stand'] [u'bank', u'help', u'buoy', u'flat', u'share', u'market'] [u'bash', u'accus', u'expect', u'seek', u'bail'] [u'berri', u'retir', u'high'] [u'blaze', u'pose', u'daylesford', u'threat'] [u'blue', u'green', u'alga', u'near', u'bendigo'] [u'look', u'coal', u'export'] [u'hospit', u'incid'] [u'branson', u'shift', u'aviat', u'focus'] [u'brazil', u'reveal', u'amazon', u'action', u'plan'] [u'brisban', u'council', u'clear', u'flood', u'report'] [u'bushrang', u'edg', u'closer', u'victori'] [u'bushrang', u'earli', u'breakthrough'] [u'bushrang', u'obliter', u'bull'] [u'bushrang', u'obliter', u'bull', u'titl'] [u'reject', u'reduc', u'quota'] [u'chamber', u'say', u'cole', u'fuel', u'hard', u'time'] [u'china', u'end', u'bird', u'quarantin'] [u'claustrophob', u'wit', u'forc', u'outdoor', u'hear'] [u'communiti', u'fear', u'aerial', u'spray', u'plan'] [u'communiti', u'get', u'servic'] [u'confer', u'hear', u'techniqu', u'treat'] [u'logger', u'clash'] [u'contain', u'block', u'sydney', u'harbour', u'tunnel'] [u'cooper', u'face', u'charg'] [u'council', u'return', u'wodonga', u'mayor'] [u'council', u'sack', u'damn', u'report'] [u'croc', u'releas', u'kelli', u'player', u'shake'] [u'crouch', u'name', u'nbls', u'best'] [u'crow', u'fine', u'burn', u'breath', u'test'] [u'cyclist', u'pedal', u'alic', u'bike', u'challeng'] [u'dairi', u'farmer', u'plan', u'deregul', u'protest'] [u'dairi', u'farmer', u'protest', u'industri', u'woe'] [u'dairi', u'farmer', u'seek', u'feder'] [u'focus', u'women', u'issu'] [u'dead', u'soldier', u'famili', u'join', u'anti', u'protest'] [u'downer', u'unfaz', u'elect', u'challeng'] [u'dozen', u'fear', u'dead', u'russian', u'explos'] [u'driver', u'urg', u'care', u'roadwork'] [u'duck', u'shoot', u'like', u'spark', u'debat'] [u'eriksson', u'hop', u'ferdinand', u'reduc'] [u'esper', u'hospit', u'join', u'nation', u'health', u'studi'] [u'order', u'microsoft', u'split', u'media', u'player'] [u'extend', u'hotel', u'trade', u'hour', u'look', u'unlik'] [u'congression', u'aid', u'deni', u'give', u'iraq', u'secret'] [u'fairytal', u'film', u'right', u'sell'] [u'fall', u'blackal', u'popul', u'surpris'] [u'feder', u'fund', u'communiti', u'centr'] [u'fierc', u'explos', u'shake', u'russian', u'apart', u'build'] [u'film', u'follow', u'hick', u'guantanamo'] [u'fine', u'skipper', u'tweed', u'river', u'accid'] [u'tanker', u'prove', u'cost', u'council'] [u'meet', u'clarenc', u'valley', u'council'] [u'liberian', u'presid', u'sue', u'court'] [u'policeman', u'plead', u'guilti', u'drug'] [u'freak', u'mishap', u'land', u'hospit'] [u'ganguli', u'doubt', u'second', u'dayer'] [u'explos', u'kill', u'russian'] [u'gladston', u'deal', u'strike'] [u'crop', u'trial', u'decis', u'loom'] [u'guilti', u'plea', u'enter', u'truck', u'compani'] [u'harangu', u'boss', u'inappropri', u'latham'] [u'health', u'expert', u'warn', u'measl', u'threat'] [u'health', u'servic', u'chief', u'hold', u'talk'] [u'health', u'servic', u'defend', u'equip', u'sell'] [u'health', u'servic', u'upset', u'hospit', u'claim'] [u'heart', u'throb', u'heath', u'ledger', u'casanova'] [u'help', u'plea', u'help', u'rescuer', u'miss', u'dinghi'] [u'hepburn', u'mayor', u'know', u'tonight'] [u'hervey', u'popul', u'grow', u'fast'] [u'hewitt', u'molik', u'arthur'] [u'hill', u'call', u'tender', u'defenc'] [u'hill', u'hang', u'footi', u'boot'] [u'howard', u'sceptic', u'latham', u'super', u'plan'] [u'readi', u'athen', u'say', u'hockeyroo', u'hudson'] [u'indigen', u'gather', u'darl', u'river', u'worri'] [u'indonesia', u'jail', u'suspect'] [u'injuri', u'forc', u'hill', u'retir'] [u'inmat', u'inquiri', u'prison'] [u'inquiri', u'probe', u'hardi', u'asbesto', u'compens'] [u'invest', u'properti', u'financ', u'drop'] [u'iran', u'agre', u'nuclear', u'inspector', u'return', u'elbaradei'] [u'iraq', u'survey', u'find', u'life', u'improv'] [u'isra', u'parliament', u'narrowli', u'back', u'sharon', u'pull'] [u'jail', u'escap', u'fail', u'appeal'] [u'jail', u'excurs', u'deter', u'youth', u'crime'] [u'japanes', u'enceph', u'cape', u'york'] [u'japan', u'stand', u'iraq', u'deploy'] [u'joan', u'london', u'fiction', u'prize'] [u'jobseek', u'number', u'fall', u'england'] [u'jobseek', u'number', u'fall', u'south', u'east'] [u'jongewaard', u'retain', u'lead', u'despit', u'crash'] [u'kirsten', u'retir', u'tour'] [u'koala', u'issu', u'hurt', u'kangaroo'] [u'koperberg', u'question', u'claim', u'inquest'] [u'koperberg', u'canberra', u'fire', u'inquest'] [u'labor', u'take', u'cautious', u'approach', u'land', u'clear'] [u'legisl', u'delay', u'council', u'elect'] [u'lobbi', u'group', u'urg', u'seek', u'young', u'farmer'] [u'locust', u'plagu', u'wreak', u'havoc', u'dubbo', u'crop'] [u'magistr', u'award', u'defam', u'case'] [u'face', u'court', u'cigarett', u'shipment'] [u'hospit', u'shoot', u'incid'] [u'jail', u'slay'] [u'face', u'charg', u'polic', u'ram'] [u'martha', u'stewart', u'resign', u'compani', u'board'] [u'back', u'council', u'amidst', u'bias', u'claim'] [u'mayor', u'hop', u'surviv'] [u'mayor', u'reflect', u'chang', u'face', u'clare'] [u'north', u'coast', u'maintain', u'strong', u'popul', u'growth'] [u'miner', u'look', u'product', u'capac', u'boost'] [u'miner', u'upbeat', u'indigen', u'land', u'agreement'] [u'minist', u'shed', u'light', u'thargomindah', u'solar', u'effort'] [u'explor', u'west'] [u'independ', u'heritag', u'council', u'review'] [u'motor', u'group', u'call', u'incent'] [u'moura', u'control'] [u'surpris', u'rail', u'freight', u'complaint'] [u'head', u'save', u'lake', u'mokoan', u'push'] [u'muralitharan', u'prolif', u'controversi'] [u'museum', u'return', u'remain', u'aborigin', u'communiti'] [u'nat', u'attack', u'parliament', u'prepar'] [u'neil', u'young', u'tour', u'power', u'veget'] [u'command', u'centr', u'simpler', u'structur'] [u'band', u'channel'] [u'need', u'reduc', u'quota', u'game', u'harvest'] [u'nortel', u'financ', u'chief', u'suspend', u'amid', u'probe'] [u'northern', u'tourist', u'attract', u'secur', u'fund'] [u'govt', u'criticis', u'time', u'council', u'sack'] [u'lack', u'rail', u'disast', u'plan', u'inquiri', u'hear'] [u'politician', u'trade', u'marriag', u'insult'] [u'older', u'car', u'target', u'theft', u'jump'] [u'ombudsman', u'move', u'forc', u'parliament', u'sit'] [u'opposit', u'admit', u'super', u'blooper'] [u'opposit', u'flag', u'fund', u'swap', u'hospit', u'wait'] [u'orford', u'clear', u'knight', u'clash'] [u'pakistan', u'launch', u'qaeda', u'hunt'] [u'pakistan', u'rack', u'total', u'india'] [u'panel', u'say', u'wood', u'chip', u'plan'] [u'panel', u'urg', u'stronger', u'hospit', u'link'] [u'pcmcs', u'recommend'] [u'pirat', u'foreshadow', u'player', u'cut'] [u'polic', u'charg', u'injur', u'girl', u'murder'] [u'polic', u'chief', u'fear', u'terrorist', u'attack'] [u'polic', u'detain', u'pharmaci', u'incid'] [u'polic', u'identifi', u'spain', u'blast', u'suspect'] [u'polic', u'interview', u'suspici', u'death'] [u'polic', u'probe', u'pottsvill', u'attack'] [u'polic', u'miss', u'youth'] [u'poll', u'show', u'poor', u'support', u'costello', u'leadership'] [u'pool', u'get', u'extend', u'open', u'hour'] [u'properti', u'plateau', u'pleas', u'costello'] [u'public', u'critic', u'damag', u'athlet', u'chief'] [u'public', u'road', u'safeti', u'advic'] [u'push', u'base', u'research', u'posit'] [u'see', u'good', u'cole', u'fuel', u'outlet'] [u'rail', u'accid', u'blame', u'privatis'] [u'railcorp', u'head', u'defend', u'seal', u'train'] [u'rail', u'protest', u'gather', u'target', u'mayor'] [u'rain', u'flood', u'outback', u'highway'] [u'rat', u'agenc', u'watch', u'duke', u'energi'] [u'razorback', u'hawk', u'grand', u'final'] [u'red', u'waratah', u'clash', u'move', u'lang', u'park'] [u'reef', u'author', u'seek', u'tourism', u'director'] [u'renault', u'put', u'ferrari', u'notic'] [u'renov', u'groceri', u'buy', u'public', u'fund'] [u'resid', u'argu', u'phone', u'tower'] [u'resid', u'council', u'vote', u'remind'] [u'retir', u'budget', u'week'] [u'rooster', u'receiv', u'wing', u'boost'] [u'rwandan', u'presid', u'accus', u'franc', u'genocid', u'role'] [u'appoint', u'bodi', u'overse', u'pitland'] [u'saint', u'guerra', u'cop', u'week'] [u'saint', u'pair', u'centr', u'alleg'] [u'satellit', u'technolog', u'help', u'farmer'] [u'defend', u'approach', u'rape', u'claim'] [u'senat', u'push', u'regular', u'antarct', u'servic'] [u'alleg', u'club'] [u'shark', u'gallen', u'judiciari'] [u'sharon', u'plan', u'port', u'attack', u'respons'] [u'shenzhou', u'space', u'mission', u'end'] [u'ship', u'cut', u'disappoint', u'cattl', u'export'] [u'shire', u'undergo', u'drought', u'review'] [u'parent', u'afraid', u'critic', u'request'] [u'spain', u'retreat', u'blame', u'attack'] [u'spanish', u'govt', u'pay', u'price', u'bomb'] [u'staff', u'shortag', u'close', u'vote', u'booth'] [u'strike', u'forc', u'investig', u'girl', u'death'] [u'student', u'take', u'hospit', u'crash'] [u'tasmanian', u'logger', u'latham', u'support'] [u'tasmanian', u'opposit', u'push', u'pulp'] [u'terror', u'fear', u'domin', u'global', u'market'] [u'terror', u'comment', u'take', u'context', u'keelti'] [u'thousand', u'flock', u'greek', u'festiv'] [u'tighter', u'secur', u'mean', u'higher', u'cost', u'taxpay'] [u'timber', u'ralli', u'plan', u'latham', u'head', u'tasmania'] [u'tindal', u'return', u'wale', u'game'] [u'qaeda', u'milit', u'kill', u'saudi', u'arabia'] [u'qaeda', u'milit', u'kill', u'saudi', u'shootout'] [u'tough', u'love'] [u'traffic', u'blitz', u'move', u'southern', u'cross'] [u'truck', u'roll', u'log', u'industri', u'ralli'] [u'court', u'tobacco', u'steal', u'ring'] [u'probe', u'white', u'powder', u'send', u'saudi', u'embassi'] [u'union', u'accus', u'spain', u'state', u'news', u'agenc'] [u'billionair', u'restor', u'francisco', u'newspap'] [u'okay', u'greek', u'request', u'nato', u'olymp', u'protect'] [u'govt', u'clarifi', u'plan', u'law'] [u'vic', u'verg', u'crush'] [u'port', u'target', u'tighter', u'secur'] [u'warship', u'graffiti', u'trigger', u'secur', u'review'] [u'water', u'storag', u'benefit', u'littl', u'rain'] [u'drug', u'say', u'cyclist', u'gaumont'] [u'wide', u'council', u'push', u'cane', u'farmer', u'support'] [u'windi', u'apologis', u'poor', u'perform'] [u'women', u'rais', u'voic', u'violenc'] [u'wood', u'worri', u'high', u'school'] [u'zimbabw', u'charg', u'alleg', u'mercenari'] [u'detain', u'immigr', u'raid'] [u'activist', u'duck', u'shoot', u'anger'] [u'urg', u'pass', u'rape', u'claim', u'detail'] [u'ambul', u'plan', u'mersey', u'hospit', u'cutback'] [u'anti', u'terror', u'effort', u'receiv', u'budget', u'boost'] [u'anti', u'terror', u'oper', u'leav', u'dead', u'pakistan'] [u'aristocrat', u'chief', u'assur', u'payout'] [u'attempt', u'murder', u'trial', u'begin', u'bundaberg'] [u'australia', u'consid', u'spaceport'] [u'australian', u'tourist', u'kill', u'vietnam', u'landslid'] [u'author', u'chief', u'look', u'bipartisan', u'reef', u'support'] [u'ayr', u'dislik', u'critic', u'carey'] [u'virgin', u'blue', u'land', u'pilot', u'error'] [u'bark', u'save', u'woman', u'hous', u'blaze'] [u'bashir', u'dictat', u'downer'] [u'bellami', u'sign', u'messag'] [u'bremer', u'promis', u'saddam', u'kurd'] [u'broom', u'studi', u'show', u'airspac', u'reform', u'danger'] [u'burnett', u'council', u'staff', u'consid', u'hour', u'strike'] [u'bush', u'appeal', u'fail', u'sway', u'spain'] [u'bush', u'ask', u'alli', u'troop', u'iraq'] [u'cabl', u'coupl', u'hang', u'realiti'] [u'feder', u'age', u'care', u'fund'] [u'uniqu', u'noosa', u'public', u'transport'] [u'camel', u'industri', u'urg', u'diversif'] [u'candid', u'urg', u'consid', u'council', u'financ'] [u'chela', u'continu', u'win'] [u'citi', u'plan', u'approv', u'chang'] [u'civilian', u'death', u'toll', u'mount', u'iraq'] [u'civil', u'libertarian', u'welcom', u'push', u'singl', u'libel'] [u'clijster', u'fit', u'wrist', u'brace'] [u'want', u'wine', u'scandal', u'note'] [u'cobar', u'help', u'boost', u'profit'] [u'collett', u'glenelg', u'mayor'] [u'collin', u'replac', u'edward', u'windi', u'squad'] [u'commod', u'bank', u'push', u'market', u'higher'] [u'complaint', u'flow', u'water', u'cheat'] [u'buy', u'sunbeam', u'food', u'share'] [u'costello', u'distanc', u'govt', u'abbott', u'abort'] [u'council', u'meet', u'local', u'govt', u'amend'] [u'council', u'high', u'waterfront', u'tower'] [u'council', u'parent', u'consid', u'childcar', u'centr', u'closur'] [u'council', u'question', u'salin', u'zone', u'law'] [u'council', u'urg', u'greenhous', u'push'] [u'council', u'bypass', u'option', u'decis'] [u'council', u'welcom', u'move', u'nationalis', u'defam'] [u'countdown', u'world', u'track', u'cycl', u'champ', u'begin'] [u'counter', u'terror', u'exercis', u'test', u'state'] [u'credit', u'card', u'scam', u'use', u'hospit'] [u'cricket', u'beachley', u'world', u'honour'] [u'dairi', u'farmer', u'demand', u'milk', u'price', u'law'] [u'dairyfarm', u'welcom', u'parmalat', u'restructur'] [u'dechi', u'post', u'career', u'victori'] [u'deputi', u'coron', u'find', u'boat', u'death', u'accident'] [u'doubt', u'cast', u'pristin', u'tugun', u'bypass', u'land'] [u'eel', u'hope', u'lyon', u'chang', u'heart'] [u'england', u'grayson', u'fit', u'scare'] [u'error', u'spark', u'rethink', u'banana', u'import'] [u'europ', u'call', u'coordin', u'secur', u'plan'] [u'rule', u'microsoft', u'anti', u'trust', u'case'] [u'expert', u'consid', u'locust', u'control', u'method'] [u'farmer', u'death', u'spark', u'safeti', u'warn'] [u'toe', u'fifa', u'line', u'suspens', u'drug'] [u'feder', u'reach', u'indian', u'well', u'quarter'] [u'ferrari', u'look', u'appli', u'blowtorch', u'malaysia'] [u'crew', u'consid', u'marcollat', u'respons'] [u'firefight', u'board', u'hous', u'blaze'] [u'flight', u'firm', u'win', u'navi', u'train', u'contract'] [u'foxtel', u'subcontractor', u'continu', u'strike'] [u'heart', u'convict', u'letter', u'display'] [u'fund', u'youth', u'hous', u'scheme'] [u'fund', u'address', u'dead', u'intersect'] [u'gilchrist', u'martyn', u'control'] [u'help', u'plant', u'adapt', u'global', u'warm', u'expert'] [u'govt', u'expect', u'adopt', u'review', u'recommend'] [u'govt', u'releas', u'draft', u'nation', u'defam'] [u'green', u'underestim', u'sullivan'] [u'harbi', u'william', u'begin', u'sojourn'] [u'health', u'dept', u'consid', u'hospit', u'site'] [u'health', u'servic', u'consid', u'budget', u'woe'] [u'higher', u'demand', u'put', u'pressur', u'foster', u'care', u'group'] [u'histori', u'beckon', u'black', u'cap', u'host', u'protea'] [u'hitler', u'return', u'heart', u'berlin'] [u'home', u'owner', u'warn', u'unlicens', u'builder'] [u'hondura', u'iraq', u'troop', u'commit'] [u'hook', u'inspir', u'vic', u'triumph'] [u'hospit', u'cut', u'remain', u'moment'] [u'howard', u'defend', u'live', u'sheep', u'trade', u'despit', u'rspca', u'link'] [u'indigen', u'group', u'welcom', u'land', u'intervent'] [u'injuri', u'forc', u'ross', u'retir'] [u'injuri', u'affect', u'race', u'leader', u'jongewaard'] [u'inquest', u'tell', u'receiv', u'request'] [u'interpol', u'internet', u'roll', u'near', u'complet'] [u'investig', u'moura', u'begin'] [u'iranian', u'festiv', u'kill', u'injur'] [u'iron', u'pull', u'beachley', u'showdown'] [u'italian', u'polic', u'break', u'church', u'instal', u'priest'] [u'jamaica', u'refus', u'recognis', u'haitian', u'govt'] [u'jam', u'hardi', u'boss', u'stand', u'asbesto', u'compo', u'fund'] [u'kasper', u'defend', u'kandi', u'pitch'] [u'kerri', u'seal', u'democrat', u'formal', u'nomin'] [u'labor', u'ask', u'abbott', u'abort', u'solut'] [u'lack', u'awar', u'caus', u'moorabbin', u'crash', u'atsb'] [u'lack', u'fund', u'hamper', u'digit'] [u'lagoon', u'dri', u'time', u'year'] [u'latham', u'aim', u'forestri', u'balanc'] [u'latham', u'play', u'super', u'blooper'] [u'legionnair', u'death', u'caus', u'alarm'] [u'lend', u'plung', u'take', u'context'] [u'lib', u'team', u'hear', u'sport', u'precinct', u'plan'] [u'licens', u'driller', u'need', u'water', u'bore'] [u'live', u'export', u'concern', u'ship', u'servic'] [u'locum', u'reliev', u'south', u'east', u'doctor'] [u'lose', u'conan', u'doyl', u'paper', u'london'] [u'magn', u'return', u'franc', u'scotland'] [u'accus', u'sheep', u'sabotag', u'deni', u'help'] [u'await', u'sentenc', u'manslaught'] [u'manjimup', u'upset', u'wilder', u'centr', u'locat'] [u'martin', u'applaud', u'council', u'takeov'] [u'massiv', u'secur', u'drill', u'stag', u'athen'] [u'meet', u'focus', u'port', u'macquari', u'draft', u'plan'] [u'millwal', u'semi', u'final'] [u'miltonbrook', u'win', u'hous', u'develop', u'case'] [u'get', u'leas', u'life'] [u'minist', u'heap', u'prais', u'keelti'] [u'minist', u'underlin', u'tour', u'oper'] [u'miss', u'north', u'pole', u'adventur', u'probabl', u'dead'] [u'help', u'urg', u'rural', u'student'] [u'dairi', u'industri', u'surpris', u'govt'] [u'murder', u'accus', u'upset', u'think'] [u'boy', u'prove', u'nsls', u'drawcard'] [u'defenc', u'track'] [u'zealand', u'haven', u'terrorist', u'foreign'] [u'nickel', u'miner', u'inject', u'life', u'kambalda', u'economi'] [u'find', u'health', u'servic', u'appoint'] [u'green', u'light', u'naracoort', u'traffic', u'signal'] [u'chief', u'complet', u'evid'] [u'govt', u'clear', u'snowi', u'cloud', u'seed', u'trial'] [u'polic', u'take', u'riot', u'critic', u'serious'] [u'group', u'confid', u'darwin', u'casino', u'purchas'] [u'offic', u'tackl', u'teach', u'complaint', u'backlog'] [u'price', u'break', u'post', u'iraq', u'high'] [u'sale', u'resolv', u'pakistan', u'wheat', u'stalem'] [u'opposit', u'criticis', u'plan'] [u'outgo', u'farm', u'chief', u'reflect', u'achiev'] [u'pakistan', u'edg', u'india', u'despit', u'tendulkar'] [u'parent', u'blind', u'children', u'weight', u'issu'] [u'parliament', u'hear', u'limeston', u'boost'] [u'parmalat', u'load', u'parma', u'restructur'] [u'perilya', u'score', u'worker', u'compo'] [u'pipelin', u'owner', u'give', u'extens', u'repay', u'debt'] [u'promis', u'intellig', u'boost'] [u'polic', u'arrest', u'univers', u'fraud', u'probe'] [u'polic', u'captur', u'ohio', u'sniper', u'suspect'] [u'polic', u'deepen', u'probe', u'girl', u'death'] [u'polic', u'hunt', u'assault', u'report'] [u'polic', u'offic', u'bail', u'cigarett', u'theft', u'case'] [u'polo', u'fall', u'put', u'packer', u'hospit'] [u'pope', u'discuss', u'refuge', u'issu', u'hobart'] [u'powel', u'prais', u'effort', u'rout', u'taliban'] [u'power', u'hope', u'give', u'grind', u'glori'] [u'premier', u'look', u'redfern', u'riot', u'critic'] [u'probe', u'launch', u'wool', u'machin', u'mishap'] [u'prosecutor', u'charg', u'nazi', u'murder'] [u'protest', u'delay', u'flinder', u'fee', u'meet'] [u'public', u'urg', u'smogbust'] [u'pupil', u'number', u'checkmat', u'german', u'school'] [u'qualifi', u'format', u'unchang', u'malaysia'] [u'quayl', u'get', u'mayor', u'spot'] [u'raider', u'fin', u'slow', u'convers'] [u'rare', u'plant', u'construct', u'site'] [u'red', u'turn', u'leed', u'plug', u'half'] [u'resid', u'plan', u'curb', u'bargara', u'vandal'] [u'ross', u'quit', u'rugbi', u'leagu'] [u'rspca', u'end', u'futur', u'patronag', u'export', u'sheep'] [u'ruddock', u'outlin', u'illeg', u'combat'] [u'rusedki', u'consid', u'legal', u'action'] [u'russia', u'blast', u'toll', u'continu', u'rise'] [u'rylston', u'administr', u'reflect', u'ahead'] [u'saint', u'band', u'season', u'launch'] [u'saint', u'draw', u'strength', u'alleg'] [u'saint', u'stand', u'player', u'probe'] [u'scandal', u'parmalat', u'outlin', u'rescu', u'plan'] [u'school', u'group', u'request', u'educ'] [u'senat', u'upbeat', u'highway', u'fund', u'prospect'] [u'serena', u'miami', u'comeback'] [u'probe', u'hang', u'saint'] [u'ship', u'shortag', u'affect', u'live', u'beef', u'export'] [u'kill', u'gaza', u'violenc'] [u'snow', u'storm', u'hit', u'york', u'day', u'start'] [u'south', u'east', u'celebr', u'senior', u'achiev'] [u'south', u'korea', u'alert', u'possibl', u'attack'] [u'specialist', u'welcom', u'govt', u'region', u'support'] [u'studi', u'urg', u'gulf', u'recreat', u'fish'] [u'super', u'blooper', u'haunt', u'labor'] [u'superior', u'infrastructur', u'counter', u'terror'] [u'swim', u'coach', u'happi', u'athen', u'facil'] [u'task', u'forc', u'seek', u'coastal', u'feder', u'fund', u'scheme'] [u'lib', u'blame', u'poor', u'poll', u'backbench'] [u'terror', u'risk', u'link', u'iraq', u'asio', u'chief'] [u'timber', u'chief', u'believ', u'latham', u'fair', u'dinkum', u'job'] [u'toddler', u'hospit', u'water', u'burn'] [u'truck', u'compani', u'fin', u'breach'] [u'truss', u'deni', u'trade', u'deal', u'involv', u'quarantin', u'chang'] [u'umer', u'recal', u'pakistan', u'squad'] [u'launch', u'scheme', u'escap'] [u'unknown', u'muslim', u'group', u'threaten', u'franc'] [u'turn', u'focus', u'iraq', u'insurg'] [u'vendi', u'reject', u'vacat', u'mayor', u'spot'] [u'veteran', u'shoot', u'outsid', u'mandela', u'home'] [u'back', u'voluntari', u'anthrax', u'scheme'] [u'winemak', u'doubl', u'export'] [u'viduka', u'refus', u'abandon', u'hope'] [u'volunt', u'push', u'bushfir', u'prevent'] [u'farmer', u'attack', u'nation', u'competit', u'polici'] [u'wall', u'street', u'recov', u'rat', u'decis'] [u'waterbird', u'breed', u'thousand'] [u'water', u'board', u'direct', u'puzzl', u'mayor'] [u'water', u'contamin', u'fear', u'spark', u'cattl'] [u'waterfal', u'rescuer', u'ignor', u'polic', u'instruct'] [u'water', u'restrict', u'possibl', u'bega', u'valley'] [u'wayward', u'koala', u'elud', u'polic'] [u'western', u'power', u'issu', u'heatwav', u'warn'] [u'wollongong', u'council', u'sign', u'detaine', u'deal'] [u'woman', u'die', u'roll'] [u'wood', u'drive', u'hill'] [u'worker', u'meet', u'hospit', u'cut'] [u'workshop', u'discuss', u'food', u'profit'] [u'work', u'underway', u'age', u'care', u'centr'] [u'york', u'tangl', u'souness', u'train', u'pitch'] [u'abort', u'elect', u'agenda', u'abbott'] [u'accc', u'see', u'problem', u'supermarket', u'chemist'] [u'accc', u'warn', u'media', u'infomerci'] [u'right', u'hinder', u'anti', u'terror', u'law'] [u'aflnt', u'coach', u'wait', u'sidelin'] [u'colleg', u'start', u'push', u'oversea', u'student'] [u'choos', u'kalgoorli', u'candid'] [u'criticis', u'hospit', u'doctor', u'sack'] [u'anderson', u'listen', u'cane', u'grower', u'concern'] [u'aristid', u'vow', u'silenc', u'jamaica'] [u'atsic', u'chief', u'gibbon', u'resign', u'dual', u'role'] [u'aust', u'intellig', u'rare', u'help', u'qanta'] [u'aust', u'market', u'dip', u'record', u'high'] [u'australia', u'aim', u'bashir', u'jail'] [u'author', u'prais', u'guilti', u'verdict', u'perth'] [u'bacon', u'offici', u'resign', u'premier'] [u'baghdad', u'bomb', u'kill'] [u'baghdad', u'bomb', u'attack', u'kill'] [u'bakk', u'blow', u'battl', u'leed'] [u'basra', u'bomb', u'anniversari', u'loom'] [u'baxter', u'detaine', u'stag', u'protest', u'compound', u'roof'] [u'beatti', u'cut', u'meal', u'break', u'famili', u'friend'] [u'council', u'chang', u'elect', u'loom'] [u'shake', u'plan', u'noroc'] [u'blind', u'date', u'bluetooth', u'futur', u'romanc'] [u'break', u'hill', u'water', u'qualiti', u'improv'] [u'brown', u'label', u'latham', u'wait'] [u'bulldog', u'sack', u'footbal', u'manag', u'fine', u'player'] [u'burn', u'plastic', u'flow', u'hume', u'highway'] [u'bushfir', u'control', u'effort', u'continu'] [u'byron', u'woman', u'murder', u'leav', u'indian', u'airport'] [u'cabinet', u'minist', u'tick', u'clock', u'shut'] [u'canobola', u'polic', u'chief', u'reject', u'audit', u'claim'] [u'caution', u'urg', u'lawmak', u'mull', u'doubl', u'jeopardi'] [u'celtic', u'closer', u'titl'] [u'cheer', u'boo', u'greet', u'saint', u'season', u'launch'] [u'china', u'reject', u'chip', u'protest'] [u'china', u'target', u'weblog', u'censorship'] [u'coach', u'watch', u'thorp', u'olymp', u'rival'] [u'coach', u'watch', u'thorp', u'olymp', u'rival'] [u'say', u'ferdinand', u'appropri'] [u'coff', u'prepar', u'visit'] [u'combo', u'therapi', u'tackl', u'drug', u'resist', u'cancer'] [u'compani', u'reject', u'oppn', u'wind', u'blade', u'claim'] [u'complet', u'deadlin', u'tight', u'olymp', u'stadium'] [u'cook', u'play', u'milan', u'remo', u'hop'] [u'coron', u'call', u'high', u'speed', u'polic', u'pursuit'] [u'council', u'candid', u'discuss', u'urban', u'develop'] [u'councillor', u'tell', u'tweed', u'byron', u'merger', u'unlik'] [u'council', u'reject', u'bull', u'request'] [u'demetriou', u'plead', u'calm', u'latest', u'claim'] [u'democrat', u'intens', u'pork', u'farm', u'inhuman'] [u'democrat', u'want', u'crop', u'delay'] [u'dion', u'speak', u'plan', u'industri', u'shake'] [u'dollar', u'drop', u'help', u'live', u'export', u'trade'] [u'dracula', u'park', u'lure', u'fan', u'romania'] [u'drought', u'dri', u'snowi', u'river', u'flow'] [u'drug', u'alcohol', u'contribut', u'plane', u'crash'] [u'educ', u'consid', u'tackl', u'poverti'] [u'egyptian', u'cop', u'jail', u'switcheroo'] [u'highlight', u'wast', u'storag', u'requir'] [u'etern', u'flame', u'snuff'] [u'mayor', u'ponder', u'polit', u'return'] [u'expect', u'mum', u'kid', u'warn', u'eat', u'fish'] [u'team', u'look', u'fight', u'malaysia'] [u'famili', u'question', u'land', u'initi'] [u'farmer', u'canegrow', u'anger'] [u'govt', u'question', u'tree', u'clear', u'consult'] [u'ferguson', u'work', u'princ', u'highway', u'fund', u'plan'] [u'kill', u'maldiv', u'ferri', u'sink'] [u'fior', u'strike', u'twice', u'pile', u'miseri', u'juve'] [u'author', u'wari', u'media', u'inquest', u'tell'] [u'firm', u'urg', u'boost', u'indigen', u'job'] [u'case', u'rare', u'diseas', u'report'] [u'player', u'help', u'children', u'enjoy', u'sport'] [u'foxtel', u'subcontractor', u'disput', u'intensifi'] [u'foxtel', u'work', u'resolv', u'subcontractor', u'disput'] [u'come', u'scrutini', u'pharmacist'] [u'fund', u'shortfal', u'affect', u'health', u'worker'] [u'giffen', u'brumbi'] [u'gilchrist', u'put', u'posit', u'spin', u'pont', u'injuri'] [u'girl', u'win', u'settlement', u'magpi', u'attack'] [u'govt', u'consid', u'drug', u'alcohol', u'test', u'pilot'] [u'govt', u'play', u'terror', u'threat'] [u'govt', u'tape', u'stall', u'move', u'tipperari', u'anim'] [u'govt', u'backdat', u'medicar', u'safeti'] [u'question', u'hour', u'chang'] [u'group', u'maintain', u'opposit', u'industri', u'estat'] [u'group', u'share', u'credit', u'fewer', u'chemic', u'complaint'] [u'grower', u'flag', u'doubt', u'import', u'rule'] [u'hawk', u'rock', u'injuri'] [u'health', u'author', u'issu', u'warn', u'virus'] [u'help', u'seek', u'solv', u'dugong', u'death'] [u'henin', u'hardenn', u'skip', u'miami', u'event'] [u'home', u'build', u'surg', u'unlik', u'rat'] [u'home', u'loan', u'afford', u'near', u'year', u'report'] [u'hospit', u'urg', u'face', u'fact', u'emerg', u'dept'] [u'hous', u'industri', u'growth', u'surg'] [u'howard', u'desper', u'labor', u'say'] [u'howard', u'deni', u'polit', u'interfer', u'keelti'] [u'howard', u'stand', u'firm', u'oppos', u'marriag'] [u'howard', u'stand', u'firm', u'radioact', u'dump', u'site'] [u'human', u'remain', u'central', u'australia'] [u'icpa', u'look', u'boost', u'remot', u'teacher', u'number'] [u'drug', u'cheat'] [u'indigen', u'support', u'tip', u'river', u'meet'] [u'jackson', u'improp', u'kid'] [u'italian', u'minist', u'break', u'rank', u'iraq'] [u'jana', u'wendt', u'portrait', u'win', u'packer', u'prize'] [u'journalist', u'give', u'evid', u'canberra', u'bushfir'] [u'judg', u'apologis', u'assault', u'charg'] [u'keelti', u'say', u'integr', u'intact'] [u'kelli', u'wont', u'rule', u'council', u'merger'] [u'kosovo', u'clash', u'leav', u'dead'] [u'kosovo', u'slide', u'violenc'] [u'koutoufid', u'carlton'] [u'labor', u'want', u'clarif', u'clinic', u'number'] [u'latham', u'vow', u'timber', u'job', u'safe'] [u'launceston', u'showcas', u'histor', u'document'] [u'forc', u'singapor', u'pace', u'fowler', u'share', u'clubhous'] [u'leicest', u'trio', u'adam', u'plan'] [u'local', u'firm', u'build', u'council', u'admin', u'centr'] [u'long', u'term', u'treatment', u'osteoporosi', u'effect'] [u'arrest', u'india', u'murder', u'australian'] [u'manila', u'restaur', u'serv', u'spam'] [u'market', u'prais', u'consum', u'price'] [u'martyn', u'bring', u'centuri', u'rain', u'fall', u'kandi'] [u'martyn', u'notch', u'centuri', u'pont', u'dismiss'] [u'martyn', u'reach', u'centuri', u'rain', u'delay'] [u'martyn', u'stump', u'form', u'revers'] [u'meet', u'sow', u'seed', u'trial'] [u'minist', u'air', u'protest', u'nativ', u'titl', u'concern'] [u'minist', u'clarifi', u'council', u'elect'] [u'minist', u'defend', u'chopper', u'locust'] [u'minist', u'hop', u'feder', u'road', u'fund'] [u'fund', u'broom', u'centr'] [u'post', u'natal', u'depress', u'educ', u'need', u'coron'] [u'air', u'tree', u'clear', u'compo', u'concern'] [u'defend', u'ban', u'disabl', u'exhibit'] [u'support', u'safari', u'crocodil', u'hunt'] [u'nasa', u'hear', u'word', u'speak'] [u'nasa', u'test', u'superson', u'drone'] [u'nato', u'send', u'troop', u'quell', u'kosovo', u'violenc'] [u'nat', u'visit', u'great', u'southern', u'shop'] [u'arrest', u'madrid', u'suspect', u'await', u'hear'] [u'council', u'execut'] [u'job', u'program', u'aim', u'help', u'indigen', u'youth'] [u'softwar', u'seek', u'chatroom', u'paedophil'] [u'council', u'elect', u'delay', u'kelli'] [u'resolut', u'steel', u'disput'] [u'plan', u'tougher', u'paedophil', u'law'] [u'woman', u'murder', u'india'] [u'nurs', u'home', u'bed', u'plan'] [u'nurs', u'post', u'rais', u'fee'] [u'celebr', u'parad', u'ring'] [u'offici', u'admit', u'deadlin', u'tight', u'finish', u'olymp'] [u'ombudsman', u'investig', u'shoalhaven', u'mayor', u'deputi'] [u'owen', u'boot', u'red', u'track'] [u'palm', u'council', u'financi', u'control'] [u'perth', u'hospit', u'dismiss', u'neglig', u'doctor'] [u'pig', u'lose', u'final', u'fight', u'mcgregor'] [u'pilot', u'come', u'cancer', u'patient'] [u'pilot', u'feder', u'support', u'safeti', u'report'] [u'downplay', u'abbott', u'stanc', u'abort'] [u'end', u'tour', u'environ', u'announc'] [u'wont', u'interven', u'bakhtiyari', u'case'] [u'polic', u'charg', u'pilot', u'murder'] [u'polic', u'beach', u'crash', u'victim'] [u'polic', u'probe', u'rape', u'claim', u'longreach'] [u'polic', u'pursuit', u'continu', u'despit', u'coron'] [u'polic', u'push', u'wider', u'anti', u'terrorist', u'power'] [u'polic', u'raid', u'net', u'near', u'cannabi', u'plant'] [u'polic', u'crack', u'drive', u'offenc'] [u'polit', u'interfer', u'weaken', u'latham'] [u'port', u'user', u'group', u'clarifi', u'harbour', u'develop'] [u'powerlin', u'fight', u'head', u'court'] [u'public', u'warn', u'power', u'woe'] [u'quri', u'urg', u'gaza', u'pull'] [u'raider', u'challeng', u'fine'] [u'receiv', u'consid', u'sale', u'option'] [u'reef', u'committe', u'plan', u'meet'] [u'regul', u'spot', u'train', u'exit', u'glitch'] [u'richmond', u'hop', u'ironman', u'upset'] [u'riverland', u'face', u'saltier', u'water'] [u'kelli', u'child', u'charg', u'drop'] [u'roddick', u'eas', u'past', u'escud', u'henman', u'down', u'arthur'] [u'feast', u'south', u'africa'] [u'rusedski', u'get', u'davi'] [u'govt', u'econom', u'effort'] [u'saint', u'focus', u'footi', u'probe', u'continu'] [u'student', u'repriev', u'increas'] [u'sauvag', u'shelv', u'retir', u'plan'] [u'school', u'back', u'polic', u'probe', u'abus'] [u'senior', u'miss', u'concession', u'transport', u'govt'] [u'sever', u'storm', u'northern'] [u'share', u'market', u'slip', u'record', u'high'] [u'shop', u'owner', u'welcom', u'guilti', u'plea', u'shoot'] [u'pull', u'plug', u'sydney', u'race', u'coverag'] [u'soccer', u'associ', u'approv', u'power', u'grind', u'giveaway'] [u'stanthorp', u'mayor', u'stand'] [u'suicid', u'bomber', u'baghdad', u'blast'] [u'talli', u'bronco', u'mileston'] [u'govt', u'conced', u'easi', u'answer', u'specialist'] [u'tasmanian', u'popul', u'hit', u'record', u'level'] [u'tenterfield', u'cannabi', u'add', u'drug', u'haul'] [u'terror', u'truce', u'spain', u'australia'] [u'thousand', u'oppos', u'park', u'meter', u'plan'] [u'kill', u'attack', u'near', u'iraqi', u'station'] [u'tick', u'clock', u'creat', u'mayhem'] [u'martyn', u'dazzl', u'australia', u'seiz', u'control'] [u'townsvill', u'teen', u'prepar', u'english', u'channel'] [u'transport', u'author', u'discuss', u'secur', u'issu'] [u'truck', u'crash', u'close', u'causeway', u'lane'] [u'charg', u'abolon', u'poach'] [u'sieg', u'ganguli', u'look', u'deliv', u'pakistan'] [u'union', u'accept', u'govt', u'plan', u'worker', u'comp'] [u'watchdog', u'agre', u'chang', u'nuclear', u'rule'] [u'name', u'pakistan', u'major', u'alli'] [u'surg', u'year', u'high'] [u'enter', u'iraq', u'wheat', u'market'] [u'soldier', u'kill', u'iraq', u'strike'] [u'vow', u'finish', u'iraq'] [u'vast', u'reserv', u'freez', u'water', u'mar', u'pole', u'studi'] [u'vendi', u'secur', u'mayor', u'spot'] [u'vibrat', u'pedal', u'save', u'petrol'] [u'govt', u'urg', u'releas', u'crop', u'report'] [u'violenc', u'major', u'factor', u'famili', u'case', u'court'] [u'firm', u'east', u'trade', u'tour'] [u'wander', u'koala', u'elud', u'author'] [u'warrior', u'latu', u'clear', u'face', u'dragon'] [u'watchdog', u'warn', u'telstra', u'broadband', u'fin'] [u'woman', u'give', u'birth', u'set', u'ident', u'twin'] [u'woman', u'injur', u'arthur', u'seat', u'chairlift'] [u'worker', u'hope', u'tide', u'turn', u'beach', u'pipelin'] [u'wrong', u'number', u'lead', u'woman', u'arrest'] [u'yeppoon', u'chang', u'trend'] [u'zaragoza', u'edg', u'real', u'thriller'] [u'zigoura', u'get', u'back', u'malle'] [u'zimbabw', u'mercenari', u'murder', u'conspiraci', u'charg'] [u'accc', u'put', u'telstra', u'notic'] [u'account', u'prepar', u'money', u'spend'] [u'countri', u'brink'] [u'adelaid', u'terminello', u'doubt', u'south', u'crunch'] [u'club', u'stand', u'accus', u'player'] [u'sponsor', u'withdraw', u'support'] [u'compani', u'outlin', u'reason', u'properti', u'sell'] [u'agforc', u'consid', u'legal', u'action', u'tree', u'clear'] [u'alleg', u'libyan', u'terrorist', u'releas', u'british'] [u'qaeda', u'claim', u'baghdad', u'hotel', u'bomb'] [u'qaeda', u'link', u'group', u'statement', u'fair', u'credibl'] [u'aristid', u'reunit', u'daughter'] [u'asic', u'accus', u'exceed', u'power', u'kennedi', u'raid'] [u'asteroid', u'closest', u'know', u'pass', u'earth'] [u'dead', u'maldiv', u'ferri', u'disast'] [u'australia', u'look', u'victori', u'target'] [u'australian', u'dollar', u'surg', u'cent'] [u'australian', u'stock', u'finish', u'week', u'slight'] [u'australian', u'join', u'global', u'anti', u'ralli'] [u'australia', u'good', u'england', u'test'] [u'author', u'launch', u'search', u'wildlif', u'park'] [u'autumn', u'carniv', u'face', u'black'] [u'ballarat', u'make', u'high', u'tech', u'appoint'] [u'beatti', u'unbow', u'tree', u'clear', u'legisl'] [u'bike', u'challeng', u'near'] [u'bilbao', u'madrid', u'defeat', u'queiroz'] [u'blast', u'echo', u'baghdad', u'powel', u'visit'] [u'bolton', u'count', u'okocha', u'cast', u'spell', u'gunner'] [u'britain', u'threaten', u'olymp', u'secur'] [u'brogden', u'reaffirm', u'princ', u'highway', u'support'] [u'busi', u'bodi', u'call', u'popul', u'boost'] [u'cairn', u'drench', u'low', u'loiter', u'coast'] [u'canberra', u'hous', u'afford', u'level'] [u'cane', u'toad', u'close', u'darwin'] [u'care', u'indian', u'marri', u'grandmoth'] [u'casa', u'begin', u'pilot', u'alcohol', u'drug', u'test', u'review'] [u'cathol', u'school', u'offer', u'male', u'femal', u'scholarship'] [u'chariti', u'criticis', u'workplac', u'agreement'] [u'childcar', u'centr', u'blitz', u'plan'] [u'cloud', u'hang', u'rural', u'counsellor', u'fund'] [u'coalit', u'will', u'downer'] [u'coal', u'miner', u'look', u'boost', u'export'] [u'communiti', u'station', u'oper', u'challeng', u'licenc'] [u'concern', u'air', u'tourism', u'promot'] [u'council', u'defend', u'road', u'condit'] [u'council', u'maintain', u'push', u'better', u'mobil', u'phone'] [u'council', u'merger', u'draw', u'countri', u'labor'] [u'council', u'tri', u'allay', u'plan', u'chang', u'concern'] [u'council', u'worker', u'push', u'casual'] [u'counter', u'terror', u'exercis', u'posit'] [u'countri', u'sound', u'school', u'curriculum'] [u'court', u'make', u'record', u'medic', u'neglig', u'payout'] [u'courtney', u'love', u'arrest', u'assault', u'charg'] [u'crash', u'truck', u'block', u'newel', u'highway'] [u'cyclon', u'expect', u'low'] [u'celebr', u'cultur', u'harmoni'] [u'derail', u'spark', u'rail', u'line'] [u'despotovski', u'loss', u'hurt', u'glori', u'power'] [u'detent', u'centr', u'deni', u'undu', u'forc'] [u'doctor', u'shock', u'run', u'hospit'] [u'fight', u'concern', u'spark', u'rspca', u'raid'] [u'donald', u'trump', u'seek', u'copyright', u'your', u'fire'] [u'doubt', u'cast', u'bulk', u'bill', u'plan'] [u'drought', u'tighten', u'grip', u'district'] [u'focus', u'polic', u'staff', u'woe'] [u'ebay', u'face', u'court', u'bogus'] [u'farmer', u'battl', u'fight', u'rabbit', u'plagu'] [u'farmer', u'hope', u'gain', u'aust', u'china', u'trade', u'deal'] [u'north', u'cyclon', u'watch'] [u'feder', u'agassi', u'indian', u'well', u'showdown'] [u'govt', u'put', u'pressur', u'highway', u'bypass'] [u'govt', u'urg', u'ravensthorp', u'fund'] [u'ferdinand', u'septemb', u'appeal', u'fail'] [u'financi', u'receiv', u'regular', u'check'] [u'firefight', u'water', u'bomb', u'forest', u'blaze'] [u'fish', u'vessel', u'crew', u'face', u'trial', u'octob'] [u'council', u'execut', u'sue', u'sack'] [u'form', u'revers', u'stump', u'martyn'] [u'futur', u'grain', u'export', u'pakistan', u'uncertain'] [u'leak', u'spark', u'high', u'school', u'evacu'] [u'gasnier', u'consid', u'quit', u'dragon', u'chief'] [u'reserv', u'sustain'] [u'girl', u'warn', u'play', u'rain', u'shoe'] [u'govt', u'announc', u'child', u'protect', u'research', u'chair'] [u'govt', u'defend', u'industri', u'reform'] [u'govt', u'plan', u'process'] [u'govt', u'blame', u'atsic', u'head', u'quit', u'clark'] [u'govt', u'urg', u'histor', u'monetari', u'document'] [u'green', u'group', u'applaud', u'goulburn', u'river', u'probe'] [u'hame', u'razzaq', u'pakistan', u'home'] [u'head', u'knock', u'flatten', u'red', u'skipper', u'flatley'] [u'health', u'chief', u'air', u'regret', u'famili', u'grief'] [u'health', u'aim', u'rural', u'women'] [u'health', u'servic', u'director', u'reject', u'matern', u'claim'] [u'hib', u'aim', u'final', u'heartbreak'] [u'hope', u'realism', u'iraq'] [u'hope', u'fade', u'overboard'] [u'hous', u'corpor', u'get', u'traine', u'fund'] [u'qaeda', u'use', u'internet'] [u'howard', u'meet', u'keelti'] [u'hugh', u'protest', u'innoc', u'bulldog', u'sack'] [u'hume', u'weir', u'wall', u'get', u'revamp'] [u'hundr', u'miss', u'indonesian', u'ferri', u'sink'] [u'hunter', u'jobless', u'rate', u'rise'] [u'import', u'regul', u'call', u'banana', u'quarantin', u'review'] [u'indigen', u'land', u'agreement', u'reach'] [u'indonesia', u'doubt', u'downer', u'figur'] [u'inspector', u'need', u'comprehens', u'mandat', u'north', u'korea'] [u'inspir', u'jayasuriya', u'give', u'lanka', u'hope'] [u'iraq', u'year'] [u'ironwoman', u'hop', u'flat', u'surf', u'championship'] [u'jayawarden', u'fall', u'lanka', u'fight'] [u'crash', u'kill', u'kiwi', u'olympian'] [u'kennedi', u'front', u'court', u'asic', u'action'] [u'lankan', u'sight', u'victori', u'kandi'] [u'latham', u'advoc', u'time', u'job', u'footbal'] [u'latham', u'critic', u'govt', u'freeway', u'backflip'] [u'latham', u'plan', u'disclosur', u'cultur'] [u'latrob', u'council', u'exec', u'take', u'ballarat'] [u'releg', u'fowler', u'second', u'singapor'] [u'livestock', u'identifi', u'scheme', u'confus', u'agforc'] [u'local', u'look', u'good', u'cycl', u'tour'] [u'loxton', u'popul', u'swell', u'barnesi', u'chariti'] [u'madrid', u'bomb', u'suspect', u'remand'] [u'madrid', u'toll', u'hit'] [u'charg', u'australian', u'woman', u'murder', u'india'] [u'charg', u'salt', u'nightclub', u'murder'] [u'court', u'email', u'scam'] [u'mar', u'rover', u'readi', u'cruis'] [u'maverick', u'showcas', u'import'] [u'mbeki', u'shrug', u'death', u'threat'] [u'mcmahon', u'boost', u'australia', u'netbal', u'open'] [u'medic', u'record', u'tamper', u'alleg', u'air'] [u'membership', u'alleg', u'disrupt', u'select'] [u'monkey', u'hunter', u'risk', u'virus'] [u'arrest', u'forster', u'unrest'] [u'pride', u'stake', u'rome', u'rival', u'squar'] [u'maiden', u'speech', u'focus', u'job', u'health'] [u'speech', u'focus', u'unit', u'develop'] [u'munro', u'upbeat', u'ironwoman', u'chanc'] [u'muslim', u'leader', u'warn', u'aust', u'attack'] [u'nato', u'deploy', u'troop', u'kosovo'] [u'nato', u'troop', u'raid', u'albanian', u'apart'] [u'busi', u'chamber', u'speak', u'voic'] [u'sale', u'rise'] [u'manag', u'offic', u'appoint'] [u'make', u'dental'] [u'make', u'maiden', u'speech'] [u'elect', u'compo', u'candid', u'council'] [u'releas', u'crop', u'report'] [u'northern', u'mop', u'sever', u'storm'] [u'govt', u'give', u'council', u'green', u'plan'] [u'govt', u'push', u'austeel', u'answer'] [u'nurs', u'polic', u'ambul', u'worker', u'mull'] [u'obrien', u'keep', u'livingston', u'doubl', u'dream', u'aliv'] [u'price', u'eas', u'year', u'high'] [u'origin', u'hooker', u'smith', u'commit', u'storm'] [u'pakistan', u'armi', u'battl', u'encircl', u'milit'] [u'pakistani', u'cricket', u'drop', u'case', u'akhtar'] [u'pakistani', u'drop', u'akhtar', u'case', u'help', u'india', u'tour'] [u'pakistan', u'launch', u'strike', u'corner', u'milit'] [u'pakistan', u'surround', u'qaeda', u'figur'] [u'pakistan', u'prepar', u'qaeda', u'hideout', u'assault'] [u'palestinian', u'leader', u'grind', u'amid', u'isra'] [u'panel', u'overse', u'rail', u'complaint'] [u'panther', u'raider', u'second', u'half', u'blitz'] [u'panther', u'romp', u'home', u'canberra'] [u'parachut', u'pack', u'proper', u'fatal', u'jump'] [u'park', u'space', u'dri', u'toowoomba'] [u'photo', u'project', u'bring', u'pioneer', u'onlin'] [u'open', u'indefinit', u'detent', u'push'] [u'poland', u'feel', u'mislead', u'iraqi', u'wmds'] [u'polic', u'detail', u'crime', u'fight'] [u'polic', u'launch', u'probe', u'chairlift', u'accid'] [u'polish', u'presid', u'misquot', u'iraq'] [u'poor', u'work', u'practic', u'blame', u'man', u'death'] [u'port', u'stand', u'accus', u'player'] [u'power', u'util', u'readi', u'perth', u'heatwav'] [u'prepar', u'duck', u'shoot', u'clash'] [u'profession', u'footi', u'player', u'need', u'balanc'] [u'protest', u'highlight', u'river'] [u'public', u'drink', u'plan'] [u'public', u'council', u'sign', u'plan'] [u'polic', u'help', u'probe', u'human', u'bone'] [u'raider', u'lead', u'panther', u'break'] [u'raikkonen', u'offer', u'hope', u'ferrari', u'meltdown'] [u'region', u'busi', u'skill', u'boost'] [u'resid', u'roll', u'skate', u'park', u'concern'] [u'reward', u'boost', u'norfolk', u'murder', u'case'] [u'richard', u'armitag', u'iraq', u'futur'] [u'roebourn', u'get', u'sport', u'revamp'] [u'roo', u'draw', u'distinct', u'assault'] [u'roo', u'draw', u'distinct', u'claim'] [u'sack', u'aim', u'appeas', u'dog', u'sponsor'] [u'saddam', u'think', u'outsmart', u'interrog'] [u'govt', u'urg', u'white', u'industri', u'plan'] [u'saiki', u'shoot', u'sorenstam'] [u'search', u'overboard', u'ferri'] [u'secur', u'scare', u'shake', u'world', u'market'] [u'sewerag', u'scheme', u'construct', u'begin'] [u'shark', u'blow', u'hurrican'] [u'short', u'stint', u'mayor'] [u'shoot', u'presid', u'return', u'taiwan', u'hust'] [u'skipper', u'barrett', u'injuri', u'blow', u'dragon'] [u'korea', u'cancel', u'plan', u'send', u'troop', u'northern'] [u'south', u'east', u'help', u'fli', u'doctor', u'campaign'] [u'spain', u'legalis', u'marriag'] [u'specialist', u'help', u'reinvigor', u'derbi'] [u'africa', u'beef', u'socceroo', u'friend'] [u'strong', u'growth', u'coalb', u'methan', u'predict'] [u'studi', u'support', u'mass', u'extinct', u'theori'] [u'studi', u'link', u'clearfel', u'biodivers', u'loss'] [u'studi', u'rule', u'iron', u'seed', u'fight', u'warm'] [u'styri', u'martin', u'zealand', u'control'] [u'super', u'size', u'director', u'cook', u'realiti', u'deal'] [u'surf', u'club', u'secur', u'renov', u'fund'] [u'swaziland', u'lead', u'global', u'aid', u'rate'] [u'sweep', u'overhaul', u'hospit', u'health', u'care'] [u'taiwan', u'presid', u'shoot', u'campaign', u'trail'] [u'taliban', u'doubt', u'zawahri', u'corner'] [u'tasmanian', u'dane', u'produc', u'royal', u'beer'] [u'tiger', u'lurk', u'australian', u'hill'] [u'traffic', u'accid', u'kill', u'finland'] [u'soldier', u'milit', u'afghan', u'clash'] [u'union', u'want', u'fletcher', u'jone', u'boost'] [u'staff', u'evacu', u'kosovo'] [u'face', u'tough', u'exit', u'iraq'] [u'hospit', u'claim', u'record', u'organ', u'transplant'] [u'look', u'doubl', u'reward', u'lade'] [u'soldier', u'kill', u'afghanistan', u'clash'] [u'troop', u'kill', u'iraqi', u'arabiya', u'employe', u'colleagu'] [u'firm', u'challeng', u'union', u'right', u'entri', u'court'] [u'govt', u'fund', u'highway', u'work'] [u'webber', u'punch', u'weight', u'jaguar'] [u'weed', u'fund', u'run'] [u'west', u'indi', u'rebound', u'second', u'test', u'say', u'lara'] [u'whan', u'question', u'highway', u'stanc'] [u'wineri', u'look', u'export', u'opportun'] [u'woman', u'die', u'summerland', u'crash'] [u'wood', u'look', u'forward', u'tast', u'armi', u'train'] [u'zimbabw', u'mercenari', u'prison', u'offici'] [u'year', u'die', u'bird', u'vietnam'] [u'troop', u'reinforc', u'nato', u'kosovo'] [u'dolphin', u'dead', u'water'] [u'south', u'korean', u'ralli', u'impeach'] [u'actor', u'plead', u'guilti', u'obscen', u'case'] [u'qaeda', u'claim', u'iraq', u'hotel', u'blast', u'report'] [u'ambros', u'claim', u'race', u'adelaid'] [u'annan', u'announc', u'broad', u'probe', u'iraq'] [u'annan', u'warn', u'climat', u'chang', u'risk'] [u'anti', u'protest', u'plan'] [u'applebi', u'hunt', u'orlando'] [u'asthma', u'pregnanc', u'link', u'femal', u'foetus'] [u'australian', u'face', u'death', u'penalti', u'singapor', u'court'] [u'australian', u'hand', u'death', u'penalti', u'singapor'] [u'australia', u'prepar', u'pacif', u'troop', u'solomon', u'tour'] [u'barkley', u'england', u'grayson', u'rule'] [u'beatl', u'boss', u'add', u'sonic', u'treasuri'] [u'belgrad', u'consid', u'partit', u'kosovo', u'violenc'] [u'cut', u'mustard', u'franc'] [u'blast', u'echo', u'baghdad', u'hour', u'powel', u'visit'] [u'british', u'politician', u'win', u'iraq', u'libel', u'damag'] [u'british', u'rush', u'afghanistan'] [u'bronco', u'lose', u'berrigan', u'meyer', u'eel', u'clash'] [u'bulldog', u'trail', u'shark', u'break'] [u'bureau', u'monitor', u'coast'] [u'cairn', u'pound', u'boundari', u'black', u'cap', u'control'] [u'cayless', u'injuri', u'mar', u'rooster'] [u'chariti', u'seek', u'babi', u'boomer', u'inherit'] [u'child', u'care', u'centr', u'death', u'sid', u'coron'] [u'chines', u'media', u'break', u'silenc', u'taiwan', u'shoot'] [u'clemenc', u'australian', u'face', u'death', u'penalti'] [u'commonwealth', u'urg', u'sensit', u'travel', u'warn'] [u'communiti', u'hail', u'licenc', u'repriev'] [u'crisi', u'claim', u'popul', u'increas', u'selfish'] [u'davenport', u'reach', u'indian', u'well', u'final'] [u'dem', u'lobbi', u'retain', u'textbook', u'subsidi'] [u'dragon', u'auckland'] [u'dragon', u'upset', u'warrior'] [u'drug', u'guid', u'school'] [u'regener', u'seri'] [u'dutch', u'queen', u'mother', u'dead', u'age'] [u'emerg', u'servic', u'rise', u'disput', u'intensifi'] [u'hold', u'emerg', u'secur', u'talk'] [u'minist', u'reject', u'creat', u'european'] [u'famili', u'court', u'rule', u'revamp'] [u'north', u'batten'] [u'ferdinand', u'slam'] [u'fiji', u'caucau', u'angri', u'report', u'quit'] [u'isra', u'soldier', u'injur', u'hama', u'attack'] [u'nab', u'europ', u'largest', u'drug', u'haul'] [u'fowler', u'drop', u'singapor'] [u'gallop', u'reject', u'vote', u'rig', u'alleg'] [u'german', u'museum', u'bust', u'hitler', u'statu'] [u'golden', u'goal', u'penalti', u'sink', u'south'] [u'govt', u'hijack', u'male', u'teacher', u'agenda', u'union'] [u'govt', u'laud', u'australian', u'ralli', u'peac'] [u'govt', u'plan', u'law', u'curb', u'credit', u'card', u'skim'] [u'govt', u'plan', u'widen', u'drug', u'charg', u'penalti'] [u'govt', u'pledg', u'memori', u'restor', u'fund'] [u'greek', u'insist', u'olymp', u'track', u'despit'] [u'grigorieva', u'fail', u'latest', u'athen', u'qualif'] [u'guantanamo', u'chaplain', u'case', u'collaps'] [u'harmison', u'repeat', u'jamaica', u'heroic'] [u'heavi', u'rain', u'isol', u'north'] [u'henman', u'upset', u'roddick', u'reach', u'indian', u'well', u'semi'] [u'highland', u'beat', u'spirit', u'cat'] [u'immigr', u'raid', u'malaysian'] [u'india', u'britain', u'sign', u'trainer', u'contract'] [u'indigen', u'legal', u'tender', u'shambl'] [u'intern', u'recruit', u'eas', u'dentist'] [u'jesus', u'battl', u'zombi', u'offic'] [u'judg', u'void', u'pardon', u'argentina', u'militari'] [u'lane', u'hanrahan', u'tie', u'round', u'lead'] [u'lankan', u'confid', u'unlik', u'victori'] [u'late', u'tonga', u'sink', u'shark'] [u'leap', u'springbok', u'stun', u'waratah'] [u'leed', u'save', u'financi', u'collaps'] [u'lennon', u'readi', u'rein', u'premier'] [u'lien', u'take', u'earli', u'lead', u'taiwan', u'poll'] [u'london', u'clock', u'anti', u'protest'] [u'mauger', u'get', u'crusad', u'track'] [u'microsoft', u'founder', u'donat', u'million'] [u'microsoft', u'drop', u'xbox', u'price', u'counter', u'soni'] [u'miss', u'pregnant', u'woman', u'concern', u'polic'] [u'mobil', u'phone', u'lead', u'bushwalk', u'rescu'] [u'multin', u'forc', u'enter', u'cradl', u'haiti', u'revolt'] [u'nigerian', u'vaccin', u'stoush', u'head', u'court'] [u'confirm', u'qaeda', u'visit', u'darwin'] [u'pressur', u'say', u'tillakaratn'] [u'record', u'qaeda', u'visit', u'ruddock'] [u'north', u'queensland', u'cyclon', u'warn', u'cancel'] [u'sight'] [u'oloughlin', u'confirm', u'accus'] [u'year', u'bush', u'urg', u'alli', u'unit'] [u'pakistan', u'armi', u'pound', u'encircl', u'milit'] [u'pakistani', u'forc', u'arrest', u'qaeda', u'suspect'] [u'pakistan', u'renew', u'assault', u'qaeda', u'fighter'] [u'pakistan', u'retain', u'squad', u'remain', u'dayer'] [u'pakistan', u'militari', u'tie', u'disappoint', u'india'] [u'pantani', u'die', u'cocain', u'overdos', u'report'] [u'polic', u'locat', u'miss', u'pregnant', u'woman'] [u'policeman', u'charg', u'offenc'] [u'polic', u'probe', u'london', u'link', u'madrid', u'bomb'] [u'powel', u'regret', u'iraqi', u'journalist', u'death'] [u'power', u'compani', u'brace', u'heatwav'] [u'power', u'secur', u'grand', u'final', u'berth'] [u'presid', u'reassur', u'taiwan', u'shoot'] [u'protest', u'gather', u'peac', u'ralli', u'sydney'] [u'radio', u'upgrad', u'delay', u'disappoint', u'opposit'] [u'rare', u'coin', u'sell', u'mint'] [u'rescuer', u'miss', u'bushwalk'] [u'rooster', u'brookval'] [u'rover', u'confirm', u'presenc', u'water', u'mar'] [u'erupt', u'releas', u'abort', u'record'] [u'rumsfeld', u'prose', u'make', u'sweet', u'music'] [u'russian', u'court', u'keep', u'boss', u'khodorkovski', u'jail'] [u'schu', u'malaysia'] [u'scot', u'swing', u'underperform', u'backlin'] [u'search', u'wacol', u'escape', u'continu'] [u'search', u'overboard', u'bass', u'strait'] [u'search', u'lose', u'bushwalk'] [u'somali', u'leader', u'threaten', u'peac', u'talk', u'walkout'] [u'sorenstam', u'storm', u'arizona', u'lead'] [u'spain', u'bomb', u'suspect', u'accus', u'murder'] [u'sudan', u'humanitarian', u'crisi', u'catastroph'] [u'taiwan', u'post', u'reward', u'chen', u'shoot', u'lead'] [u'tasmanian', u'hoteli', u'expect', u'bumper', u'march'] [u'thousand', u'march', u'anti', u'protest'] [u'uefa', u'reject', u'wale', u'appeal', u'russian', u'dope', u'case'] [u'fund', u'aim', u'decker', u'boot'] [u'straw', u'blame', u'lack', u'global', u'action'] [u'unit', u'shock', u'ferdinand', u'verdict', u'fergi'] [u'unit', u'problem', u'centr', u'power', u'london'] [u'unit', u'head', u'state'] [u'urg', u'russia', u'save', u'climat', u'plan'] [u'afghan', u'troop', u'repel', u'qaeda', u'attack'] [u'daili', u'expos', u'foreign', u'correspond'] [u'doctor', u'share', u'cancer', u'treatment'] [u'stock', u'secur', u'worri', u'weigh'] [u'hide', u'iraq', u'powel'] [u'violenc', u'spiral', u'belgrad', u'consid'] [u'virgin', u'pull', u'pout', u'airport', u'urin'] [u'vote', u'rig', u'claim', u'suspend', u'preselect'] [u'warm', u'weather', u'fail', u'disrupt', u'power', u'suppli'] [u'warn', u'lead', u'australia', u'victori', u'lanka'] [u'warn', u'spearhead', u'australia'] [u'warn', u'target', u'walsh', u'record', u'colombo', u'test'] [u'webber', u'malaysian'] [u'wound', u'presid', u'vote', u'taiwan', u'elect'] [u'yemen', u'recaptur', u'cole', u'bomb', u'suspect'] [u'owner', u'charg', u'permit', u'breach'] [u'gather', u'adelaid', u'anti', u'protest'] [u'afghan', u'kill', u'million', u'welcom', u'spring'] [u'accid', u'prone', u'ferri', u'sink'] [u'actor', u'want', u'play', u'dead'] [u'afghan', u'polic', u'uncov', u'bomb', u'factori'] [u'hour', u'bill', u'plan', u'fail', u'impress', u'doctor'] [u'qaeda', u'number', u'visit', u'believ', u'downer'] [u'ambros', u'claim', u'clipsal', u'glori', u'ford'] [u'annan', u'request', u'food', u'inquiri', u'cooper'] [u'arafat', u'say', u'gibson', u'passion', u'anti', u'semit'] [u'arrest', u'serv', u'warn', u'paedophil', u'keelti'] [u'aussi', u'wrap', u'netbal', u'seri'] [u'australia', u'celebr', u'multicultur', u'harmoni'] [u'australian', u'consid', u'appeal', u'death', u'penalti'] [u'australian', u'face', u'thai', u'child', u'traffic', u'charg'] [u'bacon', u'pave', u'premier'] [u'baghdad', u'rocket', u'attack', u'kill'] [u'beatti', u'defend', u'state', u'rail', u'secur'] [u'black', u'cap', u'foil', u'kalli', u'bradman', u'record'] [u'bomb', u'fear', u'prompt', u'maritim', u'secur', u'review'] [u'critic', u'fall', u'ferri', u'wheel'] [u'breast', u'cancer', u'treatment', u'vari', u'wide', u'studi'] [u'britain', u'unabl', u'cope', u'major', u'attack', u'report'] [u'british', u'ban', u'sign', u'languag', u'report'] [u'briton', u'harrison', u'clinch', u'profession', u'titl'] [u'brumbi', u'weather', u'storm'] [u'carr', u'slump', u'latest', u'poll'] [u'china', u'arrest', u'editor', u'reformist', u'paper', u'crackdown'] [u'china', u'ignor', u'taiwan', u'poll'] [u'china', u'keep', u'close', u'taiwan'] [u'downer', u'lobbi', u'singapor', u'clemenc'] [u'dream', u'debut', u'rooki', u'carmont', u'knight', u'tame'] [u'eel', u'bounc', u'bronco'] [u'emot', u'holm', u'claim', u'ironman', u'titl'] [u'emot', u'holm', u'win', u'ironman', u'titl'] [u'employe', u'uneasi', u'free', u'trade', u'deal', u'survey'] [u'england', u'unconvinc', u'despit', u'woodward', u'optim'] [u'readi', u'talk', u'peac'] [u'north', u'clean', u'delug'] [u'feder', u'conquer', u'agassi', u'titan', u'struggl'] [u'filipino', u'bake', u'guin', u'record', u'attempt'] [u'firebomb', u'restaur', u'reopen'] [u'foxtel', u'subcontractor', u'disput', u'continu'] [u'galleri', u'industri', u'action'] [u'gambl', u'leav', u'babi', u'lock'] [u'ganguli', u'comment', u'creat', u'blood', u'miandad'] [u'genocid', u'fear', u'sudan', u'conflict', u'rag'] [u'global', u'protest', u'mark', u'iraq', u'anniversari'] [u'godzilla', u'stomp', u'sydney'] [u'govt', u'discredit', u'iraq', u'claim', u'lawrenc'] [u'govt', u'plan', u'graffiti', u'vandal', u'law'] [u'green', u'sullivan', u'perth'] [u'gunner', u'equal', u'record', u'chelsea', u'unit'] [u'hama', u'leader', u'kill', u'gaza', u'raid'] [u'harmoni', u'celebr', u'kick'] [u'harrison', u'clinch', u'profession', u'titl'] [u'health', u'campaign', u'offer', u'children', u'easter', u'amnesti'] [u'henman', u'upset', u'roddick', u'reach', u'indian', u'well', u'semi'] [u'hospit', u'win', u'festiv', u'hall', u'memori', u'sell'] [u'hussain', u'butcher', u'hold', u'firm'] [u'illeg', u'fishermen', u'face', u'faster', u'boat', u'home'] [u'india', u'pakistan', u'captain', u'feel', u'heat'] [u'inter', u'cultur', u'celebr', u'harmoni'] [u'iraqi', u'fear', u'day', u'come'] [u'iraq', u'up', u'terror', u'threat', u'ambassador'] [u'ireland', u'beat', u'itali', u'windswept', u'dublin'] [u'isra', u'west', u'bank', u'barrier', u'protest'] [u'jaguar', u'boss', u'prais', u'webber', u'fantast', u'perform'] [u'jail', u'tour', u'need', u'school', u'curriculum'] [u'johnson', u'win', u'cross', u'countri', u'gold'] [u'ankl', u'surgeri'] [u'lennon', u'continu', u'bacon', u'vision'] [u'lung', u'donor', u'shortag', u'prompt', u'plea', u'smoker'] [u'malaysian', u'head', u'poll'] [u'malaysian', u'vote', u'test', u'badawi'] [u'hospit', u'stab', u'attack', u'perth'] [u'kill', u'accid', u'walk'] [u'martin', u'strike', u'earli', u'protea', u'chase', u'huge', u'total'] [u'martin', u'strike', u'rock', u'protea', u'kalli', u'fail'] [u'miss', u'disabl', u'teen', u'sight'] [u'mobil', u'phone', u'jam', u'jail'] [u'monti', u'end', u'barren', u'victori', u'singapor'] [u'board', u'member', u'labor'] [u'haitian', u'leader', u'fail', u'secur', u'rebel', u'arm'] [u'northbridg', u'clash', u'gang', u'relat'] [u'norwich', u'slip', u'promot', u'race'] [u'sign', u'qaeda', u'number', u'pakistan'] [u'readi', u'harmoni', u'festiv'] [u'ogradi', u'milan', u'remo'] [u'pacif', u'nation', u'warn', u'aid', u'threat'] [u'pakistan', u'interrog', u'qaeda', u'suspect'] [u'palestinian', u'milit', u'apolog', u'arab', u'shoot'] [u'peac', u'activist', u'protest', u'outsid', u'parliament'] [u'penrith', u'trio', u'suspend', u'assault', u'charg'] [u'peter', u'kick', u'south', u'golden', u'point', u'glori'] [u'pilot', u'wrong', u'plane', u'crash', u'report', u'scientist'] [u'polic', u'overboard', u'ferri'] [u'poor', u'turnout', u'render', u'taiwan', u'referendum', u'invalid'] [u'poor', u'venezuelan', u'catch', u'flamingo', u'food'] [u'port', u'facil', u'major', u'secur', u'overhaul'] [u'power', u'secur', u'grand', u'final', u'berth'] [u'power', u'undecid', u'grand', u'final', u'venu'] [u'qatar', u'seek', u'advantag'] [u'foster', u'care', u'overhaul'] [u'raid', u'prove', u'visa', u'overstay', u'catch'] [u'ranger', u'return', u'form', u'thrash', u'dunde'] [u'real', u'slump', u'defeat', u'bilbao'] [u'record', u'number', u'contest', u'local', u'elect'] [u'recount', u'seek', u'taiwan', u'elect', u'presid'] [u'road', u'reopen', u'kosovo', u'return', u'calm'] [u'schumach', u'win', u'malaysia', u'webber', u'spin'] [u'scrutin', u'talli', u'abdullah', u'win', u'margin'] [u'chang', u'dream', u'clog', u'region', u'coastlin'] [u'seneg', u'presid', u'win', u'right', u'award'] [u'shark', u'scar', u'swelter', u'perth', u'resid', u'beach'] [u'siames', u'twin', u'separ', u'broadcast'] [u'sizzl', u'applebi', u'hit', u'lead', u'florida'] [u'skii', u'accid', u'leav', u'hospit'] [u'small', u'wineri', u'cut'] [u'sorenstam', u'stretch', u'arizona', u'lead'] [u'south', u'edg', u'west'] [u'spain', u'demand', u'radic', u'chang', u'iraq', u'strategi'] [u'storm', u'knight', u'lock', u'half', u'time'] [u'swedish', u'prosecutor', u'wrap', u'aceh', u'interview'] [u'taiwan', u'elect', u'controversi', u'escal'] [u'ten', u'thousand', u'oppos', u'iraq'] [u'thousand', u'displac', u'kosovo', u'violenc'] [u'thousand', u'march', u'york', u'iraq', u'anniversari'] [u'palestinian', u'shoot', u'dead', u'southern', u'gaza'] [u'tomasson', u'doubl', u'send', u'milan', u'clear'] [u'dead', u'separ', u'road', u'accid'] [u'peopl', u'kill', u'injur', u'smash'] [u'share', u'reward', u'sniper', u'off'] [u'armi', u'charg', u'soldier', u'cruelti', u'iraq'] [u'armi', u'queri', u'journalist', u'death', u'iraq'] [u'attack', u'pakistan', u'afghan', u'civilian', u'report'] [u'regul', u'look', u'anaemia', u'drug', u'cancer', u'risk'] [u'vike', u'sign', u'aussi', u'punter', u'bennett'] [u'oppn', u'slam', u'drug', u'law'] [u'wenger', u'promis', u'assault', u'chelsea'] [u'william', u'fear', u'malaysia', u'firework'] [u'women', u'council', u'loss', u'confound', u'mayor'] [u'worldwid', u'protest', u'iraq', u'pullout'] [u'yemen', u'captur', u'cole', u'bomb', u'suspect'] [u'zimbabw', u'file', u'charg', u'suspect'] [u'media', u'offic', u'recount', u'poor', u'communic'] [u'match', u'provid', u'fodder', u'play'] [u'albani', u'boost', u'japan', u'relationship'] [u'alic', u'spring', u'develop', u'plan', u'welcom'] [u'hurt', u'vote', u'rig', u'claim', u'gallop'] [u'qaeda', u'deputi', u'seek', u'support', u'zealand'] [u'qaeda', u'pakistani', u'militari', u'engag', u'fierc', u'clash'] [u'anderson', u'approv', u'sydney', u'airport', u'chang'] [u'anti', u'terror', u'drill', u'test', u'australian', u'agenc'] [u'applebi', u'surrend', u'hill', u'campbel'] [u'arafat', u'declar', u'day', u'mourn'] [u'archaeologist', u'unearth', u'ancient', u'bamboo', u'relic'] [u'drop', u'heavyweight', u'lose', u'grind'] [u'australia', u'biggest', u'counter', u'terror', u'exercis'] [u'baghdad', u'bear', u'design', u'win', u'architectur', u'prize'] [u'beatti', u'come', u'clean', u'govt', u'accid'] [u'beatti', u'ponder', u'north', u'maritim', u'secur', u'boost'] [u'beef', u'produc', u'urg', u'monitor', u'market'] [u'field', u'independ', u'run', u'council'] [u'turnout', u'northern', u'cycl', u'tour'] [u'black', u'cap', u'sweep', u'south', u'africa', u'asid'] [u'black', u'sue', u'holling', u'legal', u'cost'] [u'blast', u'hear', u'near', u'gaza', u'cross'] [u'bodi', u'sydney', u'inner', u'west'] [u'bowen', u'tip', u'return', u'canberra', u'showdown'] [u'die', u'southern', u'crash'] [u'bushfir', u'inquest', u'wit', u'warn', u'tell', u'truth'] [u'cabinet', u'learn', u'detail', u'famili', u'tribun'] [u'campbel', u'reel', u'applebi', u'hill'] [u'cannabi', u'phone', u'hail', u'success'] [u'cathol', u'choir', u'condemn', u'faust', u'scene'] [u'children', u'draw', u'dead', u'suicid', u'attack'] [u'child', u'safeti', u'reform', u'cost'] [u'chines', u'doctor', u'aim', u'pull', u'fast'] [u'chopper', u'join', u'search', u'miss'] [u'chief', u'play', u'olymp', u'terror', u'threat'] [u'cloud', u'seed', u'propos', u'lead', u'pollut', u'concern'] [u'coff', u'council', u'seek', u'rat', u'chang'] [u'communiti', u'urg', u'help', u'stop', u'drug', u'make'] [u'complaint', u'lay', u'mareeba'] [u'copper', u'price', u'explor', u'push'] [u'correct', u'servic', u'want', u'terrorist', u'transfer', u'power'] [u'cotton', u'fund', u'run', u'short'] [u'council', u'clean', u'drench'] [u'council', u'affect', u'servic'] [u'credit', u'card', u'inquiri', u'consid'] [u'croc', u'coach', u'reject', u'split', u'comp', u'plan'] [u'crowd', u'flock', u'bombala'] [u'cyclon', u'appear', u'north', u'coast'] [u'cyclon', u'gain', u'intens', u'coast'] [u'cyclon', u'grace', u'head', u'south', u'east'] [u'mourn', u'declar', u'kosovo'] [u'decis', u'communiti', u'station', u'delay'] [u'democrat', u'encourag', u'abus', u'hotlin'] [u'dinki', u'piano', u'play', u'trivial', u'pursuit'] [u'downer', u'call', u'calm', u'middl', u'east'] [u'downer', u'clemenc', u'condemn', u'australian'] [u'doyl', u'clarifi', u'reason', u'bendigo', u'trip'] [u'dravid', u'kaif', u'carri', u'india', u'victori'] [u'east', u'timor', u'threaten', u'deal'] [u'environ', u'rat', u'high', u'public'] [u'guidelin', u'remain', u'toxic', u'dump'] [u'intellig', u'chief', u'plan', u'counter', u'terror'] [u'famili', u'fear', u'grow', u'miss', u'teen'] [u'feder', u'continu', u'win', u'streak'] [u'ferdinand', u'drop', u'appeal', u'report'] [u'ferrari', u'tactic', u'frustrat', u'montoya'] [u'ferrari', u'leav', u'rival', u'spin'] [u'fifth', u'place', u'finish', u'aussi', u'cross', u'countri', u'team'] [u'investig', u'examin', u'gut', u'hous'] [u'restrict', u'eas', u'north', u'west'] [u'fisheri', u'depart', u'make', u'record', u'abalon', u'haul'] [u'flood', u'prevent', u'measur', u'loom'] [u'advis', u'say', u'bush', u'terribl', u'fight'] [u'foxtel', u'disput', u'end'] [u'franc', u'right', u'leav', u'gain', u'region', u'poll'] [u'french', u'soldier', u'kill', u'haiti', u'accid'] [u'governor', u'swear', u'cabinet'] [u'govt', u'happi', u'lift', u'pork', u'subsidi'] [u'green', u'seek', u'keelti', u'inquiri'] [u'enthusiast', u'sentenc', u'jail', u'appeal'] [u'hama', u'leader', u'bodi', u'carri', u'gaza'] [u'hamass', u'spiritu', u'leader', u'kill'] [u'hama', u'vow', u'reveng', u'leader', u'death'] [u'henin', u'hardenn', u'crush', u'davenport'] [u'herbal', u'trial', u'begin'] [u'highway', u'reopen', u'chemic', u'spill'] [u'hope', u'build', u'work', u'boost', u'cunnamulla'] [u'hospit', u'announc', u'matern', u'servic', u'chang'] [u'hospit', u'boost', u'theatr', u'equip'] [u'howard', u'remain', u'tight', u'lip', u'keelti', u'talk'] [u'hull', u'back', u'nation', u'healthcar', u'scheme'] [u'icpa', u'upbeat', u'school', u'bypass', u'plan'] [u'iraqi', u'cleric', u'warn', u'constitut'] [u'iraqi', u'journalist', u'protest', u'kill'] [u'iraq', u'terror', u'threat', u'presid'] [u'ironman', u'champ', u'pay', u'tribut', u'father'] [u'jarrah', u'honey', u'fight', u'infect'] [u'joint', u'oper', u'nab', u'illeg', u'tobacco'] [u'kangaroo', u'school', u'share', u'manag'] [u'keelti', u'forese', u'terror'] [u'keith', u'lose', u'easter', u'driver', u'reviv'] [u'kellerberrin', u'die', u'road', u'crash'] [u'labor', u'support', u'smaller', u'wage', u'claim'] [u'landhold', u'consid', u'toxic', u'dump', u'site', u'snub'] [u'larsson', u'target', u'twice', u'runaway', u'leader'] [u'latham', u'target', u'govt', u'keelti', u'issu'] [u'leader', u'react', u'hama', u'founder', u'kill'] [u'littl', u'impact', u'expect', u'cyclon', u'grace'] [u'locust', u'leav', u'dubbo', u'head', u'bourk'] [u'charg', u'albani', u'crime'] [u'stand', u'trial', u'kill', u'children'] [u'manufactur', u'growth', u'slow', u'survey'] [u'march', u'confer', u'provid', u'tourism', u'bonanza'] [u'mcewen', u'focus', u'dairi', u'industri', u'woe'] [u'mclaren', u'year'] [u'meet', u'seek', u'address', u'council', u'casual', u'number'] [u'guilti', u'cannabi', u'crop'] [u'miner', u'compani', u'kick', u'pilot', u'plant'] [u'minist', u'kill', u'tank', u'battl', u'rage', u'afghan', u'citi'] [u'minist', u'decid', u'asbesto', u'death', u'probe'] [u'minist', u'help', u'develop', u'richmond', u'aquacultur'] [u'monash', u'increas', u'fee'] [u'monti', u'win', u'singapor', u'ohern', u'tie'] [u'staff', u'help', u'boost', u'south', u'west', u'manag'] [u'fatal', u'accid', u'motorcyclist', u'fault', u'report'] [u'motorcyclist', u'die', u'alpin', u'crash'] [u'back', u'maritim', u'secur', u'review'] [u'monitor', u'plan', u'rail', u'servic'] [u'muslim', u'cleric', u'visit', u'promot', u'harmoni'] [u'muslim', u'group', u'plan', u'bomb', u'defend', u'islam'] [u'mysteri', u'death', u'prompt', u'public', u'help'] [u'net', u'sponsor', u'final', u'seri'] [u'negoti', u'promot', u'free', u'trade', u'deal'] [u'nepales', u'armi', u'say', u'troop', u'kill', u'hundr', u'rebel'] [u'cabinet', u'swear'] [u'resolut', u'esso', u'disput'] [u'warn', u'offici', u'shape', u'ship'] [u'welcom', u'mortim', u'resign'] [u'govt', u'urg', u'elect', u'bill'] [u'look', u'combat', u'katherin', u'crime', u'rate'] [u'muslim', u'group', u'say', u'receiv', u'suspici', u'call'] [u'take', u'terror', u'exercis'] [u'hand', u'england', u'foot'] [u'opposit', u'urg', u'chang', u'child', u'death', u'report'] [u'pair', u'charg', u'home', u'invas'] [u'pakistan', u'suspend', u'qaeda', u'offens'] [u'palestinian', u'author', u'condemn', u'yassin', u'kill'] [u'palestinian', u'kill', u'ralli', u'doctor'] [u'time', u'dentist', u'servic', u'chinchilla'] [u'peac', u'start', u'duck', u'hunt', u'season'] [u'perth', u'swelter', u'record', u'break', u'march', u'heat'] [u'pitland', u'coordin', u'commit', u'month'] [u'plucki', u'japanes', u'hors', u'preserv', u'lose', u'streak'] [u'polic', u'hunt', u'arm', u'bandit'] [u'polic', u'moran', u'kill'] [u'polic', u'probe', u'alburi', u'jack'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'probe', u'vandal', u'attack'] [u'polic', u'seek', u'public', u'help', u'murder', u'case'] [u'pooch', u'soak', u'luxuri', u'treatment'] [u'portland', u'port', u'secur', u'plan'] [u'portsmouth', u'gain', u'vital', u'south', u'coast', u'derbi'] [u'port', u'vulner', u'marin', u'author', u'say'] [u'primus', u'expect', u'play'] [u'properti', u'rise', u'hurt', u'home', u'buyer'] [u'public', u'support', u'seek', u'septic', u'tank', u'plan'] [u'push', u'agn', u'water', u'pool'] [u'question', u'rais', u'forest', u'log'] [u'question', u'remain', u'gaswork', u'contamin'] [u'rail', u'author', u'hold', u'anti', u'terror', u'talk'] [u'ralli', u'hear', u'kempsey', u'hospit', u'fear'] [u'rocket', u'attack', u'mark', u'iraq', u'occup', u'anniversari'] [u'rock', u'format', u'provid', u'miner'] [u'ruddock', u'quiet', u'brigitt', u'terror', u'cell'] [u'safeti', u'polici', u'cover', u'emerg', u'inquiri'] [u'govt', u'back', u'decis', u'drop', u'rape', u'case'] [u'govt', u'back', u'decis', u'drop', u'rape', u'case'] [u'oppn', u'highlight', u'salt', u'water', u'concern'] [u'scientist', u'cousin', u'sar'] [u'scud', u'fire', u'fit', u'advis'] [u'sear', u'sign', u'shark'] [u'senat', u'reject', u'unfair', u'dismiss'] [u'senat', u'blast', u'lack', u'consult', u'child'] [u'senior', u'jail', u'embezzl'] [u'serena', u'rise', u'rank', u'return', u'near'] [u'ship', u'group', u'express', u'secur', u'doubt'] [u'sigma', u'post', u'better', u'expect', u'profit'] [u'soccer', u'boss', u'keen', u'avoid', u'cod'] [u'sorenstam', u'open', u'lpga', u'season', u'style'] [u'south', u'korea', u'confirm', u'bird', u'case'] [u'speed', u'leav', u'road', u'safeti', u'author', u'perplex'] [u'sport', u'group', u'stop', u'elect', u'involv'] [u'lanka', u'play', u'pride'] [u'student', u'protest', u'propos', u'monash', u'jump'] [u'studi', u'consid', u'alcohol', u'harm', u'reduct'] [u'summit', u'aviat', u'safeti', u'issu'] [u'sunscreen', u'develop', u'fruit', u'crop'] [u'sword', u'wield', u'bandit', u'boy'] [u'taiwan', u'court', u'appoint', u'judg', u'rule', u'vote'] [u'taiwan', u'poll', u'assassin', u'attempt', u'question'] [u'tasmania', u'say', u'peta', u'inform', u'log'] [u'prison', u'cruelti', u'case'] [u'charg', u'northbridg', u'brawl'] [u'wound', u'attack', u'near', u'aviv'] [u'tiger', u'play', u'worst', u'finish', u'year'] [u'tiger', u'protest', u'offici', u'blunder'] [u'tiger', u'want', u'point', u'share', u'offici', u'blunder'] [u'fall', u'scandal', u'fallout', u'widen'] [u'israel', u'cabinet', u'oppos', u'assassin'] [u'kill', u'baghdad', u'explos'] [u'palestinian', u'kill', u'gaza', u'militari', u'sourc'] [u'urg', u'cooper', u'terror', u'fight'] [u'understand', u'end', u'terror', u'muslim', u'cleric'] [u'student', u'wait', u'longer', u'accommod'] [u'updat', u'port', u'secur', u'plan', u'oper', u'soon'] [u'charg', u'iraqi', u'prison', u'assault'] [u'valencia', u'close', u'real'] [u'govt', u'stand', u'firm', u'fast', u'rail', u'project'] [u'kindergarten', u'upgrad'] [u'violenc', u'forc', u'abandon', u'rome', u'derbi'] [u'virgin', u'blue', u'enter', u'freight', u'market'] [u'voss', u'like', u'starter', u'lynch', u'doubt'] [u'cannabi', u'effect', u'decriminalis'] [u'project', u'highlight', u'world', u'stage'] [u'mart', u'auto', u'largest', u'compani'] [u'oppn', u'target', u'region', u'issu', u'histor'] [u'warn', u'chase', u'doubl', u'world', u'record'] [u'senat', u'stand', u'union', u'vote', u'rig', u'claim'] [u'product', u'food', u'crop'] [u'weather', u'warn', u'issu', u'coast'] [u'need', u'improv', u'beat', u'england', u'say', u'laport'] [u'weve', u'work', u'webber'] [u'wit', u'naval', u'disast', u'award', u'compens'] [u'woolford', u'face', u'high', u'tackl', u'charg'] [u'world', u'face', u'challeng', u'terrorist', u'downer', u'say'] [u'abbott', u'latham', u'head', u'head', u'parliament'] [u'expos', u'port', u'secur', u'failur', u'darwin'] [u'firefight', u'shake', u'possibl'] [u'aerial', u'survey', u'gaug', u'locust', u'threat'] [u'back', u'saint', u'miln', u'montagna', u'select'] [u'apologis', u'biki', u'quip'] [u'age', u'care', u'nurs', u'campaign', u'better', u'fund'] [u'age', u'care', u'worker', u'highlight', u'discrep'] [u'alarm', u'bell', u'ring', u'dingo', u'futur'] [u'albanian', u'orchestr', u'kosovo', u'violenc', u'nato'] [u'applebi', u'florida', u'near', u'miss'] [u'arthur', u'play', u'burni', u'tenni', u'challeng'] [u'close'] [u'aussi', u'wool', u'high', u'demand', u'russia'] [u'swim', u'coach', u'happi', u'open', u'athen', u'pool'] [u'australian', u'netbal', u'remain', u'undef', u'tour'] [u'rooney', u'face', u'match'] [u'bail', u'club', u'link', u'rome', u'derbi', u'riot'] [u'announc', u'nickel', u'project'] [u'sea', u'spare', u'sunshin', u'coast', u'beach'] [u'bird', u'play', u'havoc', u'break', u'hill', u'power'] [u'birth', u'centr', u'decis', u'spark', u'obstetrician', u'job'] [u'blair', u'visit', u'libya', u'thursday', u'report'] [u'bodi', u'wash', u'beach'] [u'bomb', u'explod', u'thailand', u'south'] [u'brother', u'speak', u'mortim', u'resign'] [u'brumbi', u'loos', u'truth', u'dockland', u'studio'] [u'age', u'care', u'worker', u'boost'] [u'council', u'split', u'ward'] [u'canberra', u'fire', u'inquest', u'hear', u'emerg', u'remov'] [u'cattalini', u'ponder', u'itali'] [u'chelsea', u'hose', u'manag', u'specul'] [u'china', u'end', u'right', u'talk'] [u'climat', u'chang', u'greater', u'threat', u'terror'] [u'coal', u'train', u'disput'] [u'communiti', u'feel', u'impact', u'miss', u'teen'] [u'compet', u'teacher', u'deserv', u'bonus', u'opposit'] [u'confer', u'debat', u'distanc', u'educ', u'issu'] [u'council', u'approv', u'youth', u'centr'] [u'council', u'candid', u'urg', u'stay', u'real'] [u'councillor', u'reject', u'senior', u'centr', u'decis'] [u'council', u'ponder', u'rezon', u'plan'] [u'counter', u'terror', u'exercis', u'continu'] [u'court', u'refus', u'moran', u'kill'] [u'crouton', u'land', u'brain', u'surgeon', u'soup'] [u'cyclon', u'bring', u'surf', u'north', u'coast'] [u'cyclon', u'whip', u'gold', u'coast', u'wave'] [u'darwin', u'mayor', u'call', u'help', u'halt', u'tourism', u'drop'] [u'date', u'pacif', u'island', u'forum'] [u'davey', u'lead', u'rooki', u'charg', u'demon'] [u'david', u'jone', u'announc', u'huge', u'profit', u'boost'] [u'detent', u'centr', u'manag', u'spotlight'] [u'diagnosi', u'injur', u'bronco', u'tate'] [u'diplomat', u'defend', u'refer', u'alleg', u'child'] [u'oppos', u'centrepoint', u'plan'] [u'dog', u'balanc', u'right', u'gallop'] [u'doubt', u'cast', u'health', u'centr', u'auxiliari'] [u'doubt', u'council', u'execut', u'posit'] [u'downer', u'urg', u'iraq', u'deadlin'] [u'downer', u'welcom', u'malaysian', u'elect', u'result'] [u'doyl', u'talk', u'bendigo', u'issu'] [u'driver', u'bare', u'undi', u'fli', u'doctor'] [u'elect', u'appoint', u'hama', u'leader'] [u'elvi', u'link', u'scottish', u'villag', u'shake'] [u'england', u'close', u'caribbean', u'victori'] [u'england', u'recal', u'grayson', u'pari', u'showdown'] [u'england', u'jone', u'play', u'sarwan', u'spat'] [u'entri', u'seek', u'naidoc', u'award'] [u'guidelin', u'fuel', u'petrol', u'station', u'concern'] [u'minist', u'pledg', u'anti', u'terror', u'cooper'] [u'propos', u'million', u'microsoft', u'fine', u'report'] [u'farmer', u'group', u'odd', u'child', u'work', u'legisl'] [u'govt', u'urg', u'fund', u'burdekin', u'work'] [u'fina', u'anger', u'athen', u'pool', u'roof', u'fiasco'] [u'manag', u'plan', u'underway'] [u'fisher', u'claim', u'reef', u'research'] [u'flower', u'carniv', u'boost', u'visitor', u'number'] [u'premier', u'rupert', u'hamer', u'die'] [u'arrest', u'madrid', u'blast'] [u'free', u'trade', u'negoti', u'central'] [u'fruit', u'fighter', u'nest', u'grow'] [u'fund', u'urg', u'cancer', u'treatment', u'fund'] [u'gallop', u'promis', u'probe', u'vote', u'fraud', u'claim'] [u'gather', u'focus', u'grain', u'rail', u'line'] [u'fight'] [u'gold', u'medallist', u'elliott', u'name', u'athlet', u'review'] [u'reject', u'prison', u'cruelti', u'claim'] [u'govt', u'accus', u'tri', u'nurs'] [u'govt', u'condemn', u'labor', u'unfair', u'dismiss'] [u'govt', u'deni', u'knowledg', u'rwandan', u'suspect'] [u'govt', u'guarante', u'second', u'seat'] [u'govt', u'increas', u'refuge', u'number'] [u'green', u'wast', u'power', u'energi', u'plant'] [u'group', u'develop', u'interest', u'theatr'] [u'hadid', u'smash', u'architectur', u'glass', u'ceil'] [u'heatwav', u'turn', u'green', u'space', u'brown'] [u'hemp', u'grower', u'send', u'cannabi', u'educ', u'politician'] [u'hill', u'clarifi', u'comment', u'iraqi', u'weapon'] [u'hill', u'say', u'keelti', u'inquiri', u'wast', u'time'] [u'howard', u'faze', u'latest', u'opinion', u'poll'] [u'hundr', u'homeless', u'flood'] [u'hydro', u'eye', u'indian', u'water', u'project'] [u'clear', u'billion', u'argentina'] [u'indigen', u'peopl', u'access', u'right', u'north'] [u'isra', u'forc', u'block', u'road'] [u'isra', u'forc', u'seal', u'gaza', u'strip'] [u'israel', u'say', u'arafat'] [u'jackson', u'accus', u'testifi'] [u'jail', u'term', u'prescrib', u'fake', u'doctor'] [u'janet', u'jackson', u'receiv', u'soul', u'train', u'award'] [u'pose', u'credibl', u'threat', u'say', u'terror', u'expert'] [u'fear', u'lose', u'credibl'] [u'keelti', u'didnt', u'tender', u'resign', u'howard'] [u'kennett', u'call', u'nation', u'health', u'audit'] [u'kennett', u'end', u'polit', u'comeback', u'rumour'] [u'labor', u'democrat', u'reject', u'keelti', u'inquiri'] [u'labor', u'push', u'second', u'sydney', u'airport', u'plan'] [u'latham', u'offer', u'iraq', u'troop', u'pull', u'poll', u'observ'] [u'lithgow', u'lion', u'hunter', u'claim', u'evid'] [u'littl', u'cyclon', u'damag', u'heron'] [u'madonna', u'get', u'groov', u'tour'] [u'guilti', u'murder', u'retrial'] [u'jail', u'busi', u'blaze'] [u'question', u'melbourn', u'shoot'] [u'court', u'theft', u'drive', u'charg'] [u'mass', u'anim', u'death', u'spark', u'crackdown'] [u'massiv', u'crowd', u'mourn', u'hama', u'leader'] [u'mayor', u'reject', u'civic', u'centr', u'claim'] [u'mayor', u'rule', u'merger'] [u'microsoft', u'call', u'propos', u'fine', u'unjustifi'] [u'west', u'avoid', u'horror', u'season'] [u'miner', u'offer', u'traffic', u'assur'] [u'worker', u'rise'] [u'minist', u'defend', u'hospit', u'condit'] [u'minist', u'pledg', u'address', u'coast', u'transport'] [u'mix', u'reaction', u'boycott', u'threat'] [u'monash', u'campus', u'damag', u'protest'] [u'monsanto', u'doubt', u'spread'] [u'moodi', u'cut', u'rat', u'bowi', u'bond'] [u'loan', u'go', u'farmer'] [u'mourn', u'condemn', u'follow', u'hama', u'leader', u'death'] [u'dismiss', u'cloud', u'seed', u'concern'] [u'muppet', u'launch', u'middl', u'east', u'peac', u'mission'] [u'nasa', u'find', u'dead', u'fault', u'shuttl', u'tail'] [u'nat', u'hope', u'toxic', u'wast', u'dump', u'rethink'] [u'navi', u'chief', u'take', u'behaviour'] [u'law', u'curb', u'club', u'hop'] [u'report', u'track', u'traffic'] [u'watchdog', u'name'] [u'nigeria', u'offer', u'aristid', u'temporari', u'stay'] [u'nightclub', u'troubl', u'nois', u'secur'] [u'guarante', u'water', u'entitl'] [u'nomin', u'flow', u'race', u'club', u'meet'] [u'nato', u'troop', u'greek', u'soil', u'game', u'minist'] [u'quick', u'nowra', u'traffic', u'woe'] [u'govt', u'pledg', u'convent', u'centr', u'plan'] [u'govt', u'commit', u'reduc', u'surgeri', u'wait'] [u'oppn', u'want', u'drop', u'airport', u'studi'] [u'olymp', u'memorabilia', u'steal', u'perkin', u'home'] [u'free', u'madrid', u'bomb', u'hold'] [u'oppn', u'seek', u'mersey', u'hospit', u'assur'] [u'organis', u'consid', u'surfest', u'woe'] [u'parliament', u'picnic', u'latham', u'tell'] [u'pathologist', u'agre', u'sid', u'definit'] [u'peponi', u'real', u'dog', u'boss', u'folk'] [u'peter', u'mortim', u'consid', u'bulldog', u'post'] [u'phillpot', u'secur', u'mayor', u'spot'] [u'farmer', u'welcom', u'subsidi', u'decis'] [u'plane', u'bellyland', u'darwin', u'airport'] [u'plan', u'focus', u'byron', u'shire', u'futur'] [u'plantat', u'firm', u'boost', u'green', u'triangl', u'stake'] [u'polic', u'seek', u'plane', u'mishap', u'detail'] [u'polic', u'seek', u'sheet', u'detail', u'murder', u'probe'] [u'polic', u'stage', u'traffic', u'blitz'] [u'poll', u'spell', u'doubl', u'troubl', u'howard'] [u'pont', u'shrug', u'head', u'knock'] [u'possibl', u'link', u'antidepress', u'suicid'] [u'power', u'backtrack', u'grand', u'final', u'venu', u'decis'] [u'power', u'compani', u'urg', u'restraint', u'mercuri', u'rise'] [u'public', u'smoke', u'debat', u'continu'] [u'govt', u'urg', u'settl', u'wineg', u'affair'] [u'red', u'unlik', u'risk', u'flatley', u'canberra'] [u'religi', u'leader', u'speak', u'yassin', u'kill'] [u'russian', u'nuclear', u'ship', u'explod'] [u'rwanda', u'claim', u'genocid', u'suspect', u'australia'] [u'govt', u'urg', u'address', u'river', u'levi', u'concern'] [u'salin', u'drop', u'denmark', u'river'] [u'shatter', u'roger', u'month'] [u'shire', u'sign', u'indigen', u'agreement'] [u'await', u'decis', u'compo', u'lawyer'] [u'solid', u'justifi', u'shoot', u'cameraman', u'armi'] [u'spain', u'recov', u'loot', u'artefact'] [u'spanish', u'pull', u'grave', u'mistak'] [u'squabbl', u'delay', u'taiwan', u'recount'] [u'stage', u'taiwan', u'recount'] [u'stem', u'cell', u'abl', u'mend', u'break', u'heart'] [u'storm', u'seek', u'detail', u'fresh', u'claim'] [u'suburban', u'vineyard', u'turn'] [u'support', u'walhollow', u'join', u'liverpool', u'plain'] [u'survey', u'find', u'skeptic', u'poki', u'plan'] [u'sydney', u'hospit', u'close', u'ward', u'easter'] [u'taiwanes', u'polic', u'chase', u'lead', u'shoot'] [u'forestri', u'practic', u'come', u'scrutini'] [u'minist', u'outrag', u'boycott'] [u'telstra', u'struggl', u'expect', u'senat'] [u'thirteen', u'soldier', u'hurt', u'basra', u'blast'] [u'tillakaratn', u'determin', u'test'] [u'time', u'run', u'wast', u'treatment', u'submiss'] [u'seed', u'produc', u'william', u'florida', u'final'] [u'travel', u'warn', u'israel', u'issu'] [u'tunnel', u'discov', u'scene', u'pakistan', u'fight'] [u'turkish', u'famili', u'dead', u'germani'] [u'deni', u'involv', u'vote', u'rig'] [u'membership', u'figur', u'question'] [u'union', u'want', u'enterpris', u'talk', u'delay'] [u'talk', u'medic', u'school', u'plan'] [u'urg', u'pacif', u'nation', u'follow', u'fiji', u'aid'] [u'upgrad', u'plan', u'townsvill', u'port', u'secur'] [u'add', u'ansar', u'islam', u'terror', u'list'] [u'crackdown', u'hit', u'onlin', u'ident', u'scammer'] [u'deni', u'involv', u'hama', u'death'] [u'destroy', u'missil', u'defenc', u'japan'] [u'move', u'reassur', u'india', u'pakistan', u'allianc'] [u'criticis', u'china', u'human', u'right', u'record'] [u'warn', u'japan', u'prepar', u'attack'] [u'skin', u'cancer', u'risk', u'higher', u'think', u'studi'] [u'viduka', u'strike', u'help', u'leed'] [u'vieri', u'younger', u'socceroo', u'career'] [u'benefit', u'cane', u'toad', u'survey'] [u'warn', u'record', u'affect', u'team', u'pont'] [u'weather', u'bureau', u'warn', u'william', u'river', u'flood'] [u'wetland', u'insect', u'weather', u'drought'] [u'white', u'hous', u'hit', u'bush', u'terror', u'claim'] [u'warn', u'outbreak'] [u'woman', u'die', u'hous'] [u'woolford', u'cowboy', u'clash', u'hornbi', u'nutley', u'clear'] [u'wool', u'industri', u'hop', u'reforg', u'russian', u'link'] [u'workcov', u'probe', u'ride', u'accid'] [u'yambulla', u'log', u'protest', u'continu'] [u'yassin', u'death', u'spook', u'financi', u'market'] [u'boost', u'north', u'nickel', u'refineri'] [u'contract', u'award', u'drainag', u'work'] [u'aborigin', u'communiti', u'appli', u'rural', u'transact'] [u'aborigin', u'breach', u'bail', u'tradit'] [u'accident', u'explos', u'kill', u'afghan', u'soldier', u'wound'] [u'aceh', u'medic', u'kill', u'home', u'burn', u'report'] [u'adelaid', u'darwin', u'rail', u'link', u'unlik', u'terrorist', u'target'] [u'adelaid', u'speed', u'limit', u'cut', u'stay'] [u'aerial', u'survey', u'monitor', u'asbesto', u'threat'] [u'airport', u'chief', u'quiet', u'secur', u'scare'] [u'airspac', u'gain', u'support', u'director'] [u'milit', u'leader', u'mark', u'death', u'israel'] [u'ord', u'slide', u'continu'] [u'anchor', u'away', u'crane', u'barg'] [u'asbesto', u'compens', u'claim', u'peak'] [u'asbesto', u'research', u'fund', u'award', u'grant'] [u'aussi', u'princess', u'give', u'danish', u'passport'] [u'aust', u'press', u'philippin', u'stronger', u'defenc', u'tie'] [u'australian', u'economi', u'danger', u'overheat'] [u'australia', u'oppos', u'vote', u'condemn', u'yassin'] [u'bahrain', u'test', u'advantag', u'william'] [u'beatti', u'continu', u'east', u'mission', u'despit'] [u'bega', u'rais', u'polic', u'worri'] [u'bendigo', u'tip', u'continu', u'good', u'growth'] [u'shark', u'northern', u'beach'] [u'bird', u'closer', u'australian', u'shore'] [u'blaze', u'set', u'korean', u'cattl', u'fee', u'trade'] [u'brabham', u'tip', u'webber', u'great'] [u'bremer', u'move', u'allay', u'fear', u'iraq', u'interim'] [u'briton', u'break', u'balloon', u'altitud', u'record'] [u'byrn', u'council'] [u'desalin', u'research', u'centr'] [u'work', u'incent', u'nurs'] [u'royal', u'commiss', u'redfern', u'death'] [u'transport', u'invest', u'decis'] [u'centrelink', u'plan', u'high', u'tech', u'welfar', u'cheat', u'hunt'] [u'chemic', u'scare', u'shut', u'airport', u'freight', u'termin'] [u'china', u'withdraw', u'boomer', u'seri'] [u'claim', u'boost', u'patient', u'wait'] [u'clark', u'pledg', u'meet', u'peopl'] [u'coffin', u'spark', u'melbourn', u'airport', u'secur', u'alert'] [u'compo', u'seek', u'coal', u'ill'] [u'concern', u'rais', u'alcohol', u'fine', u'impact'] [u'condit', u'telstra', u'sale', u'unmet', u'anderson'] [u'contamin', u'wheat', u'shipment', u'sell'] [u'controversi', u'project', u'face', u'hurdl'] [u'costello', u'blast', u'promis', u'break', u'toll'] [u'council', u'back', u'wharf', u'probe'] [u'council', u'tackl', u'insur', u'woe'] [u'court', u'reject', u'invalid', u'taiwan', u'poll'] [u'croc', u'vanderjagt', u'rooki', u'award'] [u'crow', u'port', u'storm', u'deni', u'knowledg', u'rape'] [u'shire', u'win', u'cultur', u'heritag', u'award'] [u'cyclist', u'pedal', u'research'] [u'cyclon', u'whip', u'broom', u'wind'] [u'defenc', u'need', u'businesslik', u'approach'] [u'demetriou', u'investig', u'assault', u'claim'] [u'democrat', u'stamp', u'duti', u'propos'] [u'denmark', u'river', u'salt', u'level', u'fall'] [u'dog', u'refus', u'cocain', u'test', u'player'] [u'dover', u'host', u'major', u'film', u'shoot'] [u'month', u'ahead', u'western', u'victoria'] [u'earli', u'start', u'cotton', u'pick'] [u'emerg', u'dept', u'open', u'long', u'wait'] [u'england', u'complet', u'seven', u'wicket'] [u'miner', u'join', u'legal', u'action', u'poor', u'health'] [u'express', u'candid', u'urg', u'sign', u'vandal'] [u'famili', u'group', u'push', u'french', u'film'] [u'farmer', u'oppos', u'push', u'crop'] [u'farmer', u'urg', u'boost', u'farm', u'milk', u'storag'] [u'farmer', u'want', u'rail', u'line', u'fund'] [u'feder', u'agassi', u'join', u'serena', u'spotlight'] [u'financi', u'boost', u'seek', u'home', u'school'] [u'coal', u'miner', u'join', u'world', u'biggest', u'class'] [u'free', u'travel', u'cityrail', u'passeng'] [u'french', u'navi', u'find', u'fijian', u'adrift'] [u'fresh', u'hitch', u'delay', u'taiwan', u'ballot', u'recount'] [u'fruit', u'grower', u'unhappi', u'act', u'immigr', u'polic'] [u'gang', u'silenc', u'frustrat', u'polic'] [u'gatto', u'appear', u'court', u'gangland', u'murder'] [u'genom', u'centr', u'develop', u'drought', u'resist', u'crop'] [u'govt', u'buy', u'bypass', u'home', u'despit', u'rout', u'confus'] [u'govt', u'fear', u'super', u'chang', u'retir'] [u'govt', u'crack', u'sham', u'bankruptci'] [u'govt', u'pledg', u'pacif', u'refuge', u'program'] [u'govt', u'reissu', u'israel', u'indonesia', u'travel', u'warn'] [u'govt', u'unsecur', u'pacif', u'flight'] [u'grace', u'send', u'call', u'card', u'coast', u'beach'] [u'green', u'group', u'seek', u'council', u'candid', u'view'] [u'green', u'want', u'sydney', u'airport', u'rethink'] [u'gunmen', u'kill', u'iraqi', u'polic', u'chief'] [u'gunn', u'director', u'call', u'stronger', u'export', u'focus'] [u'health', u'meet', u'focus', u'restructur', u'worri'] [u'hillari', u'clinton', u'back', u'kerri', u'white', u'hous'] [u'hope', u'local', u'firm', u'benefit', u'nickel'] [u'immigr', u'crackdown', u'starv', u'farmer', u'labour'] [u'industri', u'lead', u'blackout'] [u'inquest', u'hear', u'night', u'crew', u'dilemma'] [u'inventor', u'win', u'award', u'missil', u'decoy'] [u'iraqi', u'right', u'abus', u'widespread', u'survey'] [u'isra', u'tank', u'roll', u'palestinian', u'refuge', u'camp'] [u'israel', u'shrug', u'hama', u'threat'] [u'israel', u'strike', u'lebanon'] [u'jackson', u'sue', u'onlin', u'memorabilia', u'sale'] [u'job', u'best', u'boy', u'hid'] [u'group', u'refloat'] [u'kennett', u'pay', u'tribut', u'liber', u'premier'] [u'king', u'favourit', u'decid', u'loom'] [u'king', u'lead', u'pig', u'half', u'time'] [u'king', u'game'] [u'lara', u'jone', u'fin', u'port', u'spain', u'behaviour'] [u'lederhosen', u'subsidi', u'ax', u'germani', u'tighten', u'belt'] [u'maintain', u'attack', u'job', u'moor'] [u'lehmann', u'pound'] [u'lose', u'fisherman', u'search', u'find', u'bodi'] [u'madrid', u'bomb', u'death', u'toll', u'revis'] [u'face', u'court', u'gang', u'shoot'] [u'front', u'court', u'attempt', u'murder', u'charg'] [u'custodi', u'home', u'invas'] [u'harass', u'victim', u'suffer', u'silenc'] [u'mayor', u'upbeat', u'sugar', u'meet'] [u'meet', u'fear', u'plan', u'flight'] [u'memori', u'madrid', u'victim', u'begin'] [u'methan', u'power', u'darwin', u'energi'] [u'microsoft', u'slap', u'record', u'fine'] [u'milit', u'strike', u'baghdad', u'sheraton', u'hotel'] [u'militari', u'exercis', u'simul', u'threat'] [u'mix', u'water', u'suppli', u'ongo'] [u'monti', u'python', u'life', u'brian', u'releas'] [u'accommod', u'tourism', u'boost'] [u'mozzi', u'fund', u'agenda', u'south', u'west'] [u'air', u'prison', u'escort', u'concern'] [u'avoid', u'censur', u'ball', u'furor'] [u'confid', u'freeway', u'fund'] [u'pledg', u'implement', u'apra', u'reform'] [u'promis', u'state', u'circl', u'consult'] [u'campaign', u'aim', u'lure', u'tourist', u'goldfield'] [u'court', u'readi', u'busi'] [u'govt', u'offic', u'open'] [u'hama', u'chief', u'vow', u'secur', u'israel'] [u'teacher', u'face', u'tough', u'test'] [u'nightclub', u'protest', u'restrict', u'trade', u'hour'] [u'stop', u'sept', u'attack', u'bush'] [u'powerless', u'bulldog', u'cocain', u'test'] [u'nurs', u'fund', u'woe', u'spark', u'health', u'concern'] [u'olyroo', u'look', u'star'] [u'opal', u'prioriti', u'stirl', u'quit', u'lightn'] [u'oppn', u'expect', u'call', u'keelti', u'talk', u'record'] [u'opportun', u'sit', u'martian', u'shore', u'nasa'] [u'pacif', u'backyard', u'open', u'terrorist', u'secur'] [u'pakistani', u'elder', u'seek', u'border', u'battl'] [u'pakistan', u'send', u'india', u'decid'] [u'liquid', u'mull', u'lawsuit'] [u'parent', u'order', u'burden', u'indigen', u'famili'] [u'parish', u'urg', u'help', u'greenhous', u'gas'] [u'parliament', u'approv', u'timor', u'deal'] [u'plaza', u'undergo', u'develop'] [u'attack', u'latham', u'pull', u'plan'] [u'minist', u'slam', u'bank', u'withhold', u'loan'] [u'polic', u'expect', u'gangland', u'kill'] [u'polic', u'gather', u'theft', u'investig'] [u'polic', u'hold', u'redfern', u'state', u'sieg', u'pilger', u'tell'] [u'polic', u'seek', u'martin', u'place', u'brawl', u'wit'] [u'poor', u'fund', u'mean', u'croc', u'fest', u'cancel'] [u'porto', u'good', u'lyon'] [u'port', u'search', u'answer', u'lloyd'] [u'port', u'secur', u'boost', u'cost', u'farmer'] [u'powel', u'defend', u'bush', u'sept'] [u'power', u'industri', u'seek', u'govt', u'back', u'greenhous'] [u'prais', u'shire', u'green', u'effort'] [u'protea', u'fear', u'histori', u'make', u'loss', u'zealand'] [u'protest', u'timber', u'compani', u'loggerhead'] [u'protest', u'blockad', u'sawmil', u'woodchip', u'issu'] [u'public', u'ask', u'highlight', u'icon'] [u'public', u'kalgoorli', u'plan'] [u'public', u'vote', u'fluorid', u'plan'] [u'quinn', u'pledg', u'rat', u'discount'] [u'quotabl', u'victorian', u'scientist', u'honour'] [u'rail', u'guard', u'lack', u'counter', u'terror', u'train', u'union'] [u'ralf', u'prepar', u'manag'] [u'ranger', u'trail', u'celtic', u'point'] [u'reef', u'rezon', u'need', u'fund'] [u'refuge', u'await', u'resid', u'answer'] [u'region', u'skill', u'program', u'launch'] [u'region', u'push', u'forward', u'tourism', u'market'] [u'regul', u'find', u'profit', u'king'] [u'renison', u'sell', u'reopen', u'plan'] [u'report', u'urg', u'librari', u'closur'] [u'riverland', u'success', u'stori'] [u'river', u'report', u'offer', u'hope', u'salin', u'battl'] [u'rocki', u'seek', u'earlier', u'jetstar', u'flight'] [u'roger', u'hop', u'return', u'ahead', u'schedul'] [u'rural', u'group', u'lobbi', u'revitalis', u'health', u'servic'] [u'scott', u'relinquish', u'chairman', u'role'] [u'sculli', u'happi', u'bridg', u'plan'] [u'seafood', u'industri', u'happi', u'nativ', u'titl', u'decis'] [u'search', u'continu', u'miss', u'tourist'] [u'senat', u'demand', u'govt', u'produc', u'keelti', u'document'] [u'shatter', u'roger', u'hop', u'return', u'ahead', u'schedul'] [u'shire', u'back', u'infrastructur', u'fund'] [u'shire', u'lose', u'drought', u'status'] [u'singapor', u'launch', u'high', u'tech', u'campaign', u'elimin'] [u'rupert', u'hamer', u'renaiss', u'premier'] [u'site', u'final', u'choos', u'landfil'] [u'tune', u'licenc', u'bid'] [u'korean', u'presid', u'refus', u'appear'] [u'state', u'funer', u'honour', u'rupert'] [u'statist', u'highlight', u'needi', u'communiti'] [u'mari', u'doctor', u'quit'] [u'studi', u'recommend', u'wider', u'research', u'cooper'] [u'stun', u'comeback', u'give', u'milan', u'victori'] [u'surgeri', u'rule', u'venuto', u'derbyshir', u'season'] [u'sweetman', u'lose', u'riverton', u'preselect'] [u'taiwan', u'agre', u'recount', u'deal'] [u'potato', u'farmer', u'attend', u'intern', u'forum'] [u'tate', u'get', u'clear', u'injuri', u'return'] [u'tax', u'time', u'wine', u'produc'] [u'technic', u'fault', u'leav', u'iraq', u'pipelin', u'ablaz'] [u'thailand', u'hand', u'drug', u'traffick', u'australia'] [u'think', u'control', u'experi', u'benefit', u'parkinson'] [u'tile', u'plant', u'bolster', u'hunter', u'job'] [u'option', u'broom', u'wastewat', u'plant'] [u'kosovo', u'policemen', u'kill', u'attack'] [u'brush', u'roofless', u'athen', u'pool', u'concern'] [u'embassi', u'suspend', u'oper'] [u'hail', u'level', u'meet', u'khaddafi'] [u'warn', u'nation', u'abroad'] [u'undecid', u'hec', u'increas'] [u'victorian', u'law', u'adequ', u'brack'] [u'treasur', u'promis', u'electr', u'price', u'hike'] [u'volunt', u'seek', u'desert', u'race'] [u'vote', u'chang', u'spark', u'longer', u'elect', u'count'] [u'wall', u'street', u'close', u'fourth', u'straight'] [u'mart', u'challeng', u'itun', u'music', u'download'] [u'wast', u'water', u'report', u'complet'] [u'water', u'issu', u'council', u'poll'] [u'west', u'indi', u'team', u'manag', u'skerritt', u'resign'] [u'william', u'katich', u'colombo', u'select'] [u'yacht', u'guid', u'safeti', u'struggl', u'sea'] [u'aborigin', u'elder', u'banish', u'stab'] [u'accus', u'saint', u'play', u'cat'] [u'child', u'death', u'team', u'improv', u'support', u'servic'] [u'govt', u'defend', u'mental', u'health', u'servic'] [u'increas', u'hec', u'fee'] [u'adelaid', u'court', u'jail', u'homicid', u'driver'] [u'afghan', u'presid', u'want', u'delay', u'elect'] [u'funni', u'thing', u'happen', u'melbourn'] [u'agreement', u'strike', u'tuna', u'farm', u'trial'] [u'albani', u'blast', u'polit', u'stunt'] [u'arrest', u'warrant', u'cancel', u'accus', u'priest'] [u'arsenal', u'away', u'goal', u'draw', u'chelsea'] [u'gain', u'grind', u'bank'] [u'atapattu', u'hit', u'lanka'] [u'atapattu', u'lead', u'lankan', u'fight'] [u'australia', u'commit', u'pacif'] [u'australia', u'oppos', u'israel', u'censur', u'yassin'] [u'ballarat', u'get', u'open', u'honour'] [u'ballina', u'council', u'reject', u'fluorid'] [u'beachley', u'battl', u'sex', u'make', u'wave'] [u'mouth', u'link', u'small', u'brain', u'research'] [u'toowoomba', u'loom'] [u'bipartisan', u'support', u'region', u'parliament', u'sit'] [u'blair', u'fli', u'libya', u'landmark', u'visit'] [u'blair', u'meet', u'libyan', u'leader'] [u'bomb', u'kill', u'soldier', u'iraq'] [u'britain', u'freez', u'asset', u'hama', u'leader'] [u'brit', u'nouveau', u'cuisin', u'deep', u'fri', u'chocol'] [u'bulldog', u'mason', u'deni', u'test', u'posit', u'cocain'] [u'busi', u'warn', u'accid', u'impact'] [u'highway', u'includ', u'transport', u'plan'] [u'indigen', u'land', u'agreement', u'respons'] [u'polit', u'contribut', u'clariti'] [u'canberra', u'sydney', u'train', u'track'] [u'cattl', u'produc', u'remind'] [u'chanc', u'seek', u'log', u'contract', u'legal', u'advic'] [u'chopper', u'join', u'search', u'miss'] [u'church', u'blaze', u'consid', u'suspici'] [u'citi', u'live', u'domin'] [u'clich', u'honest', u'drive'] [u'coast', u'beach', u'weather', u'wave'] [u'coffin', u'caus', u'hiccup', u'melbourn', u'airport'] [u'communiti', u'forum', u'discuss', u'mersey', u'hospit', u'woe'] [u'controversi', u'castro', u'doco', u'canada'] [u'cooma', u'get', u'youth', u'servic'] [u'council', u'air', u'bypass', u'fund', u'fear'] [u'council', u'angri', u'lifeguard', u'disput'] [u'council', u'hop', u'plan', u'power'] [u'council', u'tourism', u'decis', u'draw', u'anger'] [u'court', u'hear', u'evid', u'hotel', u'theft', u'trial'] [u'court', u'rule', u'kennedi', u'asic', u'case'] [u'court', u'tell', u'aba', u'sydney', u'licenc', u'decis'] [u'croc', u'sign'] [u'cyclon', u'batter', u'coast'] [u'cyclon', u'chang', u'cours'] [u'cyclon', u'cross', u'coast'] [u'date', u'hickey', u'inquest'] [u'delay', u'possibl', u'elect', u'result'] [u'democrat', u'seek', u'continu', u'reef', u'protect'] [u'diamond', u'miner', u'strike', u'indigen', u'deal'] [u'diesel', u'power', u'connect', u'rile', u'outback', u'user'] [u'disappoint', u'lack', u'indigen', u'jail', u'job'] [u'dog', u'hold', u'line', u'cocain', u'claim'] [u'domest', u'violenc', u'group', u'question', u'court', u'decis'] [u'drink', u'drive', u'campaign', u'highlight', u'danger', u'sign'] [u'durham', u'look', u'north', u'gibb', u'cover'] [u'emerg', u'confer', u'tri', u'avert', u'public'] [u'chang', u'qualifi', u'procedur'] [u'famili', u'uninjur', u'chlorin', u'bomb', u'blast'] [u'farina', u'unawar', u'socceroo', u'rift'] [u'farmer', u'claim', u'govt', u'betray', u'stanc'] [u'farmer', u'push', u'drought', u'assist', u'overhaul'] [u'feder', u'minist', u'discuss', u'croc', u'safari'] [u'detail', u'emerg', u'meet'] [u'charg', u'longreach', u'sexual', u'assault'] [u'flatley', u'rule', u'red'] [u'fli', u'doctor', u'concern', u'remain'] [u'forest', u'protest', u'spark', u'arrest'] [u'umpir', u'hand', u'video', u'role'] [u'forum', u'focus', u'drug', u'youth'] [u'ear', u'kitten', u'monster'] [u'frawley', u'dismiss', u'talk', u'upset'] [u'french', u'expert', u'defus', u'bomb', u'train', u'track'] [u'fruit', u'grower', u'campaign', u'refuge', u'worker'] [u'gaff', u'highlight', u'japan', u'pension', u'problem'] [u'gallop', u'urg', u'dog', u'come', u'clean', u'cocain', u'test'] [u'gallop', u'urg', u'dog', u'come', u'clean', u'mason', u'cocain'] [u'ganguli', u'celebr', u'histor', u'seri'] [u'ganguli', u'miss', u'pakistan', u'test'] [u'ganguli', u'undergo', u'scan', u'injuri'] [u'report', u'spark', u'council', u'concern'] [u'german', u'polic', u'raid', u'onlin', u'nazi', u'music', u'sharer'] [u'gold', u'coast', u'jail', u'fraud'] [u'govt', u'introduc', u'elector'] [u'govt', u'keep', u'heat', u'iraq', u'pullout'] [u'govt', u'mismanag', u'dairi', u'deregul', u'report'] [u'govt', u'say', u'reef', u'protect', u'scheme', u'month', u'away'] [u'govt', u'creat', u'construct', u'overs'] [u'greec', u'happi', u'olymp', u'secur', u'drill'] [u'group', u'withdraw', u'french', u'rail', u'bomb', u'threat'] [u'hama', u'leader', u'grind'] [u'hama', u'warn', u'sharon', u'target'] [u'health', u'servic', u'start', u'pay', u'debt'] [u'hope', u'council', u'promis', u'keep'] [u'hop', u'sale', u'benefit', u'west', u'coast', u'economi'] [u'howard', u'plan', u'free', u'trade', u'trip'] [u'hunter', u'record', u'chlamydia', u'case'] [u'hyperson', u'plane', u'shoot', u'mach'] [u'icac', u'hold', u'public', u'hear', u'fraud', u'claim'] [u'call', u'evid', u'match', u'fix', u'claim'] [u'idol', u'judg', u'deni', u'obscen', u'gestur'] [u'indonesia', u'plan', u'compulsori', u'militari', u'servic'] [u'iraqi', u'work', u'time', u'magazin', u'shoot', u'baghdad'] [u'iraq', u'continu', u'buy', u'australian', u'wheat'] [u'isi', u'shire', u'ponder', u'sugar', u'industri', u'valu'] [u'review', u'need', u'track', u'paedophil', u'report'] [u'israel', u'arrest', u'teen', u'wear', u'bomb', u'west', u'bank'] [u'italian', u'parliament', u'approv', u'controversi', u'media'] [u'ivanisev', u'advanc', u'miami'] [u'japan', u'arrest', u'chines', u'activist', u'disput', u'island'] [u'kewel', u'viduka', u'vieri', u'name', u'socceroo', u'squad'] [u'labor', u'govt', u'keelti', u'latham'] [u'labor', u'support', u'ban', u'risk', u'flight'] [u'lane', u'get', u'expect', u'sack'] [u'latham', u'flag', u'bank', u'regul'] [u'lehmann', u'crack'] [u'life', u'mar', u'come', u'earth'] [u'littl', u'hunter', u'respons', u'mine', u'compo', u'case'] [u'lord', u'mayor', u'promis', u'discount', u'rat', u'elect'] [u'fin', u'anim', u'cruelti'] [u'markov', u'name', u'nbls', u'rooki'] [u'mason', u'ponder', u'suit', u'cocain', u'claim'] [u'match', u'fix', u'claim', u'spanish', u'soccer'] [u'mayor', u'hope', u'want', u'elector', u'materi', u'chang'] [u'mayor', u'derail', u'monorail', u'plan'] [u'mayor', u'speak', u'fund', u'misus', u'claim'] [u'mcevoy', u'saddl', u'godolphin'] [u'mexico', u'seek', u'explan', u'caver'] [u'minist', u'clarifi', u'chain', u'clear'] [u'minist', u'offer', u'polic', u'station', u'assur'] [u'monash', u'student', u'wind', u'protest'] [u'fear', u'air', u'nurs', u'post'] [u'foreign', u'nation', u'detain', u'south', u'east'] [u'fund', u'avail', u'fight', u'locust'] [u'back', u'educ', u'polici', u'benefit'] [u'netbal', u'associ', u'resign'] [u'pill', u'help', u'diver', u'fend', u'bend'] [u'rugbi', u'turn', u'expert'] [u'lobbi', u'croc', u'safari'] [u'nurs', u'group', u'unhappi', u'meet', u'snub'] [u'execut', u'want', u'common', u'currenc', u'australia'] [u'obes', u'top', u'health', u'problem', u'children'] [u'olymp', u'flame', u'brighten', u'athen'] [u'oppn', u'question', u'hospit', u'ward', u'easter', u'closur'] [u'parol', u'appeal', u'reject', u'anti', u'abort', u'activist'] [u'australian', u'honey', u'take', u'canadian', u'shelv'] [u'payn', u'recov', u'sandown', u'fall'] [u'phar', u'lap', u'saddl', u'sell'] [u'polic', u'hunt', u'attempt', u'attack'] [u'polic', u'probe', u'abalon', u'farm', u'attack'] [u'polic', u'probe', u'suspect', u'drug', u'overdos'] [u'polic', u'probe', u'suspect', u'murder', u'seek', u'letter', u'writer'] [u'polic', u'quiz', u'boat', u'crew', u'dive', u'death'] [u'polic', u'target', u'road', u'safeti'] [u'power', u'plant', u'plan', u'spark', u'probe'] [u'precaut', u'take', u'chemic', u'spill'] [u'premier', u'accept', u'commonwealth', u'grant', u'deal'] [u'primus', u'name', u'port', u'squad'] [u'public', u'remind'] [u'govt', u'buy', u'home', u'lead', u'highway', u'bypass'] [u'rape', u'accus', u'face', u'bryant', u'courtroom'] [u'ratepay', u'ask', u'recycl', u'cost'] [u'hope', u'touch', u'athen', u'prepar'] [u'say', u'busi', u'cop', u'strong', u'dollar'] [u'real', u'monaco', u'retain', u'hope'] [u'region', u'health', u'get', u'fund', u'boost'] [u'report', u'cast', u'doubt', u'sugar', u'rescu'] [u'report', u'highlight', u'complaint'] [u'rice', u'sculptur', u'highlight', u'hunger', u'messag'] [u'rise', u'sea', u'point', u'melt', u'glacier', u'studi'] [u'speaker', u'blame', u'outburst', u'ill'] [u'scud', u'proclaim', u'comeback', u'king'] [u'secur', u'concern', u'leav', u'global', u'market', u'unstabl'] [u'senat', u'say', u'highway', u'fund', u'guarante'] [u'monitor', u'barwon', u'river', u'level'] [u'singer', u'jail', u'fail', u'child', u'support'] [u'slipway', u'safeti', u'audit', u'compressor'] [u'smite', u'name', u'springbok', u'captain'] [u'soya', u'power', u'airlin', u'offer', u'greener', u'futur', u'report'] [u'spain', u'resist', u'pressur', u'iraq', u'pull'] [u'sport', u'complex', u'committe', u'name'] [u'stage', u'spider'] [u'stanhop', u'say', u'human', u'right', u'justifi'] [u'strong', u'wind', u'bushfir', u'tasmania'] [u'student', u'protest', u'monash', u'offic'] [u'student', u'occupi', u'monash', u'build', u'protest'] [u'surgeri', u'put', u'furyk', u'sidelin'] [u'swell', u'expect', u'calm', u'gold', u'coast', u'beach'] [u'sydney', u'communiti', u'station', u'win', u'repriev'] [u'teen', u'charg', u'caravan', u'blaze'] [u'terror', u'prioriti', u'sept', u'bush'] [u'test', u'continu', u'identifi', u'skeleton'] [u'thailand', u'return', u'drug', u'traffick', u'australia'] [u'time', u'run', u'postal', u'vote'] [u'troop', u'stay', u'iraq', u'howard'] [u'turkish', u'charg', u'peopl', u'smuggl'] [u'charg', u'woodchip', u'protest'] [u'debut', u'swan', u'open', u'lion'] [u'debut', u'swan', u'open', u'lion'] [u'underworld', u'drug', u'squad', u'link', u'high', u'like'] [u'protest', u'rise', u'turn', u'ugli'] [u'increas', u'hec', u'fee'] [u'uranium', u'scare', u'forc', u'mine', u'plant', u'shutdown'] [u'uranium', u'water', u'miner', u'regul'] [u'ambassador', u'warn', u'troop', u'pullout'] [u'call', u'european', u'microsoft', u'rule', u'unfortun'] [u'propos', u'resolut'] [u'gradual', u'lift', u'econom', u'sanction', u'libya'] [u'blood', u'crisi', u'solv', u'short', u'term'] [u'bushfir', u'threaten', u'home'] [u'victorian', u'receiv', u'mix', u'respons'] [u'victoria', u'opt', u'year', u'moratorium'] [u'virgin', u'blue', u'add', u'extra', u'rockhampton', u'flight'] [u'virgin', u'blue', u'say', u'earlier', u'flight'] [u'labor', u'threaten', u'nation', u'fallout'] [u'warrant', u'issu', u'alleg', u'paedophil', u'miss', u'court'] [u'water', u'contamin', u'scare', u'prompt', u'suppli'] [u'union', u'criticis', u'build', u'industri', u'enforc'] [u'stop', u'sept', u'boss'] [u'welfar', u'worker', u'worri', u'doc', u'respons', u'delay'] [u'white', u'hous', u'hit', u'bush', u'anti', u'terror'] [u'world', u'largest', u'wave', u'chanc', u'surf'] [u'abalon', u'council', u'oppos', u'lower', u'annual'] [u'accus', u'turkish', u'peopl', u'smuggler', u'remain'] [u'brace', u'condit'] [u'agreement', u'wont', u'compromis', u'tuna', u'farm'] [u'briberi', u'claim', u'polic'] [u'qaeda', u'tape', u'urg', u'pakistan', u'coup'] [u'append', u'forc', u'pellegrino', u'glori', u'match'] [u'aussi', u'lose', u'hayden'] [u'aussi', u'slip', u'final', u'session'] [u'aussi', u'slip', u'session'] [u'australia', u'seal', u'iraqi', u'wheat', u'deal'] [u'australia', u'top', u'honest', u'compani', u'list'] [u'backlog', u'gladston', u'port'] [u'bahrain', u'want', u'postpon', u'report'] [u'bank', u'state', u'bicker'] [u'blair', u'hail', u'meet', u'libyan', u'leader'] [u'boat', u'accid', u'claim', u'life', u'gold', u'coast'] [u'boy', u'bodi', u'near', u'train', u'track'] [u'breath', u'test', u'charg', u'overshadow', u'rugbi', u'seven'] [u'brisban', u'mayor', u'candid', u'final', u'pitch'] [u'british', u'soldier', u'haul', u'flood', u'mexico', u'cave'] [u'builder', u'embroil', u'legal', u'battl', u'owen'] [u'buoyant', u'india', u'test', u'pakistan'] [u'burn', u'get', u'control'] [u'break', u'hill', u'freehold', u'block'] [u'call', u'proactiv', u'drought', u'approach'] [u'capit', u'coach', u'quit', u'oversea', u'post'] [u'chen', u'declar', u'winner', u'amid', u'violent', u'protest'] [u'chief', u'justic', u'bow', u'year'] [u'china', u'aim', u'immort', u'lunar', u'probe'] [u'chines', u'communiti', u'okay', u'high', u'school', u'test', u'plan'] [u'christ', u'movi', u'move', u'texan', u'murder', u'confess'] [u'circumcis', u'block', u'infect'] [u'civil', u'libertarian', u'concern', u'terror', u'plan'] [u'coal', u'miner', u'list', u'stock', u'exchang'] [u'complac', u'attitud', u'kill', u'yachtsman', u'coron'] [u'corrupt', u'commiss', u'need', u'brack'] [u'council', u'elect', u'loom'] [u'councillor', u'target', u'offens', u'cartoon'] [u'council', u'worker', u'order', u'work'] [u'court', u'accus', u'polic', u'brutal', u'lie'] [u'court', u'find', u'guilti', u'hotel', u'fund', u'theft'] [u'craigi', u'langmack', u'discuss', u'race', u'claim'] [u'cross', u'network', u'mobil', u'charg', u'high'] [u'cyclon', u'expect', u'turn'] [u'level', u'reach', u'point'] [u'democrat', u'tougher', u'construct', u'watchdog'] [u'democrat', u'want', u'greater', u'power', u'build'] [u'dog', u'guard', u'sledg'] [u'doubt', u'cast', u'shake', u'babi', u'syndrom'] [u'downer', u'defend', u'iraq', u'troop', u'number'] [u'draw', u'hit', u'blue', u'play', u'hop'] [u'condit', u'continu', u'southern'] [u'earth', u'pick', u'moon'] [u'leader', u'adopt', u'anti', u'terror', u'measur'] [u'prison', u'offic', u'child', u'charg'] [u'extra', u'nurs', u'need', u'hospit', u'plan', u'union', u'say'] [u'intrigu', u'bore', u'supremo'] [u'fairweath', u'head', u'australia', u'olymp', u'archeri', u'hop'] [u'farmer', u'group', u'back', u'drought', u'polici', u'reform'] [u'fear', u'rural', u'woe', u'boost', u'suicid', u'rate'] [u'govt', u'rethink', u'burnett', u'rule'] [u'govt', u'nickel', u'plan', u'stanc'] [u'govt', u'urg', u'boost', u'energi', u'target'] [u'fight', u'intensifi', u'lantana'] [u'crew', u'monitor', u'blaze'] [u'fish', u'hit', u'shark', u'number', u'studi'] [u'fit', u'guru', u'simmon', u'cite', u'slap', u'fighter'] [u'food', u'poison', u'parasit', u'evad', u'drug', u'studi'] [u'kill', u'wound', u'iraq', u'hospit'] [u'franc', u'detain', u'bomb', u'threat'] [u'fund', u'boost', u'indigen', u'crime', u'fight'] [u'fund', u'encourag', u'region', u'doctor', u'stay'] [u'german', u'famili', u'cop', u'ear'] [u'gladston', u'council', u'agre', u'land'] [u'global', u'trend', u'push', u'higher'] [u'govt', u'bungl', u'dairi', u'deregul', u'packag', u'report'] [u'govt', u'commit', u'money', u'quambi', u'jail'] [u'hackett', u'hop', u'lower'] [u'handbag', u'recoveri', u'cost', u'german', u'woman', u'licenc'] [u'health', u'fund', u'boost', u'medic', u'retriev', u'unit'] [u'health', u'lobbi', u'launch', u'nation', u'fund', u'campaign'] [u'hollywood', u'brace', u'reel', u'spider', u'man'] [u'howard', u'ignor', u'parliament', u'trip'] [u'howard', u'trip', u'symbol', u'downer'] [u'huegil', u'confid', u'athen', u'secur'] [u'illeg', u'sale', u'trigger', u'polic', u'warn'] [u'indi', u'dixon', u'hop', u'chang', u'direct'] [u'intern', u'chef', u'endors', u'burnett', u'produc'] [u'iraq', u'remark', u'caus', u'comment', u'washington'] [u'iraq', u'nation', u'soccer', u'team', u'tour', u'england'] [u'rule', u'small', u'busi', u'redund'] [u'iron', u'beachley'] [u'island', u'renam', u'aim', u'avoid', u'boo'] [u'israel', u'look', u'vote', u'resolut'] [u'ivori', u'coast', u'forc', u'hold', u'account', u'right'] [u'japan', u'forc', u'chines', u'wwii', u'labour'] [u'jone', u'extend', u'wallabi', u'contract'] [u'kelm', u'deni', u'dope', u'accus', u'team'] [u'labor', u'plan', u'need', u'base', u'school', u'fund'] [u'labor', u'unit', u'iraq', u'pullout', u'latham'] [u'langer', u'clear', u'disreput', u'charg'] [u'latham', u'troop', u'plan', u'risk', u'live', u'say'] [u'lib', u'unhappi', u'leader', u'council', u'tactic'] [u'longer', u'moratorium', u'allow', u'debat'] [u'lord', u'ring', u'boon', u'tourism'] [u'award', u'bail', u'gungahlin', u'protest'] [u'charg', u'perth', u'aiport', u'hoax'] [u'serv', u'doubl', u'time', u'court', u'tell'] [u'mayor', u'shake', u'wouldnt', u'surpris', u'academ'] [u'mayor', u'reject', u'parti', u'polit', u'claim'] [u'mccoy', u'deni', u'provision', u'pole', u'phillip', u'island'] [u'meet', u'consid', u'local', u'govt', u'issu'] [u'appear', u'court', u'ecstasi', u'haul'] [u'blaze', u'investig'] [u'oper', u'reveal', u'contamin', u'case'] [u'minist', u'promis', u'mersey', u'hospit', u'remain', u'open'] [u'minist', u'stand', u'firm', u'dairi', u'packag'] [u'minist', u'decid', u'salt', u'intercept', u'scheme'] [u'monash', u'rush', u'hike'] [u'injur', u'quak', u'china', u'inner'] [u'motorcyclist', u'die', u'karratha', u'crash'] [u'advoc', u'stronger', u'voic', u'constitu'] [u'angri', u'child', u'hospit', u'wait'] [u'attack', u'biotech', u'compani'] [u'welcom', u'surgeri', u'wait', u'list', u'improv'] [u'mysteri', u'surround', u'miss', u'prosecut', u'wit'] [u'want', u'sharehold', u'clear', u'deck'] [u'nativ', u'titl', u'claim', u'western', u'cape', u'york'] [u'equip', u'bolster', u'job'] [u'physic', u'chief', u'champion', u'scienc', u'career'] [u'need', u'resid', u'vote'] [u'govt', u'urg', u'help', u'anim', u'shelter'] [u'opposit', u'push', u'health', u'inquiri'] [u'polic', u'plan', u'extra', u'train'] [u'want', u'bigger', u'road', u'fund', u'slice'] [u'outback', u'visitor', u'enjoy', u'dinosaur', u'tourism'] [u'payback', u'bring', u'harmoni', u'communiti', u'lawyer'] [u'persson', u'atlevi', u'shin', u'madeira', u'island', u'gloom'] [u'pie', u'tiger', u'launch'] [u'announc', u'practic', u'nurs', u'fund', u'boost'] [u'polic', u'lockup', u'nomin', u'worst', u'dungeon'] [u'port', u'blood', u'rooki', u'open'] [u'portug', u'seek', u'nato', u'help', u'euro'] [u'power', u'confid', u'despit', u'injuri', u'concern'] [u'probe', u'launch', u'alleg', u'anim', u'smuggl', u'racket'] [u'warn', u'strike', u'claim'] [u'public', u'protest', u'fast', u'rail', u'plan', u'chang'] [u'push', u'beatti', u'govt', u'look', u'daylight', u'save'] [u'qanta', u'pledg', u'earli', u'flight'] [u'defend', u'charg', u'rap', u'year'] [u'quak', u'rock', u'eastern', u'turkey'] [u'race', u'break', u'record'] [u'rail', u'delay', u'nasdaq', u'open'] [u'ranger', u'contamin', u'scare', u'blame', u'cross', u'line'] [u'razorback', u'draw', u'level', u'king'] [u'urg', u'curb', u'sledg', u'dog', u'rooster', u'match'] [u'reid', u'reach', u'miami', u'second', u'round'] [u'review', u'find', u'drought', u'complex'] [u'richardson', u'lead', u'charg', u'tiger', u'claw', u'pie'] [u'ronaldo', u'bolster', u'real', u'sevilla'] [u'rooster', u'half', u'time'] [u'ruddi', u'take', u'archibald', u'gulpilil'] [u'saint', u'focus', u'footi'] [u'public', u'servant', u'prepar', u'mass', u'strike'] [u'scott', u'fire', u'tiger', u'bomb', u'fifth', u'major'] [u'second', u'leak', u'examin', u'ranger'] [u'senat', u'local', u'hang', u'oppos', u'telstra'] [u'strain', u'cast', u'doubt', u'kalli'] [u'simpl', u'life', u'saudi', u'man', u'longev'] [u'simpson', u'injuri', u'news', u'knight'] [u'sinclair', u'shin', u'black', u'cap'] [u'singapor', u'say', u'satir', u'censorship', u'funni'] [u'sleep', u'burglari', u'suspect', u'startl', u'victim'] [u'south', u'east', u'gear', u'council', u'poll'] [u'southern', u'gear', u'council', u'poll'] [u'state', u'agre', u'fund', u'review'] [u'state', u'territori', u'better', u'howard'] [u'steroid', u'increas', u'school', u'athlet'] [u'stile', u'lead', u'red', u'brumbi', u'battl'] [u'strong', u'cowboy', u'outfit', u'raider'] [u'studi', u'discount', u'abort', u'breast', u'cancer', u'link'] [u'studi', u'find', u'moral', u'iraq', u'troop'] [u'survey', u'show', u'boundari', u'chang', u'support'] [u'swim', u'coach', u'accus', u'agre'] [u'sydney', u'candid', u'launch', u'elect', u'sweep'] [u'sydney', u'ferri', u'intensifi'] [u'tafe', u'shake', u'aim', u'save', u'thousand'] [u'oppn', u'hous', u'plan', u'get', u'mix', u'reaction'] [u'teenag', u'fanclub', u'beckon', u'celtic', u'saviour', u'marshal'] [u'tenni', u'drug', u'free', u'say', u'agassi'] [u'terror', u'exercis', u'find', u'room', u'improv'] [u'spring', u'boost', u'corella', u'cull'] [u'tiger', u'claw', u'pie'] [u'tight', u'secur', u'place', u'bahrain'] [u'torch', u'relay', u'begin', u'rogg', u'prais', u'athen'] [u'tour', u'oper', u'goodby', u'reef'] [u'tradit', u'punish', u'wouldnt', u'work'] [u'trap', u'brit', u'mexico', u'nose', u'joint'] [u'palestinian', u'battl'] [u'unit', u'look', u'halt', u'arsenal', u'momentum'] [u'block', u'vote', u'yassin', u'assassin'] [u'lawmak', u'push', u'cabl', u'industri', u'choic'] [u'market', u'slowli', u'climb', u'slump'] [u'pakistan', u'bolster', u'troop', u'afghanistan'] [u'vanston', u'visit', u'south', u'east'] [u'focus', u'live', u'export', u'trade'] [u'appoint', u'ombudsman'] [u'govt', u'move', u'region', u'obstetr', u'servic'] [u'oppn', u'air', u'catchment', u'author', u'fear'] [u'violenc', u'mar', u'rooster', u'demolit', u'dog'] [u'volunt', u'firefight', u'charg', u'arson'] [u'water', u'firm', u'smell', u'pong', u'problem'] [u'webb', u'content', u'california'] [u'welfar', u'lobbyist', u'deliv', u'part', u'shoot', u'hous'] [u'welsh', u'criticis', u'roofless', u'olymp', u'pool'] [u'wind', u'whip', u'north', u'western'] [u'winemak', u'urg', u'follow', u'green', u'lead'] [u'wit', u'stay', u'silent', u'shoot'] [u'woman', u'doctor', u'report', u'today'] [u'world', u'watch', u'reef', u'fish'] [u'youth', u'repres', u'local', u'council'] [u'zapatero', u'urg', u'quick', u'troop', u'decis'] [u'flow', u'firm'] [u'back', u'revenu', u'formula'] [u'alp', u'iraq', u'plan', u'chao', u'downer'] [u'collaps', u'blame', u'elect', u'loss', u'close'] [u'battl', u'insurg', u'iraq'] [u'miss', u'indonesian', u'landslid'] [u'barnett', u'seek', u'answer', u'western', u'power', u'claim'] [u'beatti', u'scoff', u'daylight', u'save'] [u'beloki', u'return', u'criterium', u'intern'] [u'bhoy', u'hero', u'marshal', u'reward', u'year'] [u'bomb', u'explod', u'baghdad', u'street', u'wound'] [u'bowen', u'voter', u'incumb', u'mayor'] [u'bronco', u'beleagu', u'bulldog'] [u'bulldog', u'promis', u'life', u'ban', u'hooligan', u'fan'] [u'hospit', u'probe', u'focus', u'resourc'] [u'chief', u'stun', u'waratah'] [u'child', u'kill', u'injur', u'smash'] [u'examin', u'zawahiri', u'record'] [u'close', u'result', u'tip', u'local', u'govt', u'elect'] [u'seek', u'ranger', u'mine', u'closur'] [u'cooloola', u'shire', u'mayor', u'humbl', u'elect'] [u'count', u'indic', u'chang', u'mayor', u'brisban'] [u'cruis', u'cruz', u'quit'] [u'crusad', u'hold', u'highland'] [u'current', u'cabooltur', u'shire', u'mayor', u'lead', u'poll'] [u'cyclon', u'downgrad', u'threat', u'remain'] [u'docker', u'blue'] [u'soldier', u'execut', u'qaeda', u'oper'] [u'elect', u'result', u'reliev', u'warwick', u'mayor'] [u'maroochi', u'shire'] [u'stick', u'yassin', u'condemn', u'veto'] [u'exercis', u'firefight', u'equip', u'test'] [u'experiment', u'plane', u'smash', u'speed', u'record', u'nasa'] [u'govt', u'odd', u'redund', u'payment', u'decis'] [u'ferri', u'turn', u'melbourn', u'child', u'injur'] [u'hurrican', u'form', u'south', u'atlant'] [u'fish', u'stick', u'bang'] [u'flood', u'warn', u'cyclon', u'fade'] [u'bodyguard', u'reveal', u'saddam', u'spider', u'hole'] [u'formula', u'bore', u'say', u'schu'] [u'ganguli', u'miss', u'pakistan', u'test'] [u'gibson', u'reap', u'manna', u'break', u'hollywood'] [u'goondiwindi', u'mayor', u'secur', u'elect'] [u'grand', u'juri', u'decid', u'jackson', u'charg'] [u'green', u'prefer', u'decid', u'elect'] [u'hackett', u'prim', u'thorp', u'showdown'] [u'hackett', u'triumph', u'thorp', u'shock', u'exit'] [u'hawk', u'exorcis', u'demon'] [u'hawk', u'lead', u'demon', u'final', u'chang'] [u'hazard', u'wast', u'collect', u'underway'] [u'hewitt', u'breez', u'biscan'] [u'rapid', u'test', u'unreli'] [u'houllier', u'face', u'match', u'surviv', u'fight'] [u'howard', u'urg', u'uniti', u'terror'] [u'iranian', u'iraqi', u'demonstr', u'yassin', u'death'] [u'iran', u'inspect', u'begin', u'amid', u'nuclear', u'cover', u'claim'] [u'islam', u'british', u'lectur'] [u'isra', u'palestinian', u'trade', u'blame', u'raid', u'death'] [u'italian', u'strike', u'pension', u'economi'] [u'javelin', u'thrower', u'suspend', u'take', u'ban', u'drug'] [u'john', u'doubt', u'season'] [u'katherin', u'crime', u'level', u'fall'] [u'kelli', u'sutherland', u'share', u'lead', u'scott', u'trail', u'wood'] [u'kelm', u'bar', u'tour', u'franc', u'dope', u'claim'] [u'kerri', u'pledg', u'massiv', u'job', u'growth'] [u'kiwi', u'dixon', u'test', u'william'] [u'knight', u'mare', u'season', u'john'] [u'labor', u'prais', u'redund', u'payment', u'decis'] [u'landslid', u'eastern', u'indonesia', u'kill', u'miss'] [u'langer', u'clear', u'disreput', u'charg'] [u'latham', u'troop', u'return'] [u'collin', u'prefer'] [u'libya', u'invest', u'virgin', u'deal', u'locat', u'landmin'] [u'lomu', u'vow', u'return', u'rugbi', u'friend', u'offer'] [u'loud', u'explos', u'gunfir', u'hear', u'central', u'baghdad'] [u'hospit', u'stab'] [u'surviv', u'impal'] [u'face', u'trial', u'polic', u'assault'] [u'massiv', u'taipei', u'ralli', u'seek', u'poll', u'recount'] [u'media', u'blitz', u'help', u'clark', u'book', u'soar', u'success'] [u'merciless', u'milan', u'determin', u'foot'] [u'mexico', u'reject', u'british', u'explan', u'caver'] [u'million', u'vote', u'council', u'poll'] [u'contamin', u'spark', u'indigen', u'concern'] [u'mooney', u'win', u'fifth', u'townsvill', u'term'] [u'industri', u'unrest', u'possibl', u'disput'] [u'mother', u'die', u'vehicl', u'accid'] [u'wellington', u'art', u'festiv', u'draw', u'close'] [u'director', u'claim', u'harass', u'trade', u'scandal'] [u'newman', u'lead', u'hostil', u'brisban', u'council'] [u'zealand', u'share', u'rise', u'record', u'high'] [u'nightclub', u'campaign', u'defeat', u'baildon'] [u'troop', u'battl', u'rebel', u'iraq'] [u'korea', u'reject', u'propos', u'nuclear'] [u'noosa', u'mayor', u'retain', u'post'] [u'north', u'west', u'feel', u'cyclon', u'effect'] [u'moot', u'life', u'ban', u'spectat', u'brawl'] [u'threaten', u'life', u'ban', u'bulldog', u'brawl'] [u'talli', u'local', u'govern', u'ballot'] [u'olymp', u'shock', u'thorp', u'freestyl'] [u'oppn', u'entertain', u'plan'] [u'optimist', u'charter', u'tower', u'elect', u'beveridg'] [u'palestinian', u'kill', u'west', u'bank'] [u'parmalat', u'halv', u'oversea', u'workforc'] [u'pepper', u'track', u'california', u'titl', u'webb'] [u'pilbara', u'prepar', u'loom', u'cyclon'] [u'pilot', u'hospit', u'navi', u'crash'] [u'pine', u'river', u'shire', u'mayor', u'return', u'unoppos'] [u'pisasal', u'claim', u'ipswich', u'mayorship'] [u'polic', u'investig', u'bulldog', u'stadium', u'brawl'] [u'polic', u'investig', u'gold', u'coast', u'boat', u'death'] [u'polic', u'probe', u'citi', u'stab'] [u'polic', u'search', u'bushland', u'miss'] [u'polic', u'stage', u'footi', u'season', u'drink', u'drive', u'blitz'] [u'port', u'primus', u'bomber', u'mission'] [u'protea', u'close', u'total'] [u'count', u'local', u'govern', u'ballot'] [u'voter', u'head', u'poll'] [u'quad', u'bike', u'accid', u'claim', u'life'] [u'quinn', u'conced', u'brisban', u'elect'] [u'quinn', u'tip', u'close', u'elect', u'result'] [u'ranger', u'tripl', u'whammi', u'ahead', u'firm'] [u'red', u'drop', u'hungov', u'valentin'] [u'remov', u'spanish', u'troop', u'iraq', u'huge', u'error'] [u'rival', u'turn', u'partner', u'road', u'athen'] [u'road', u'studi', u'fail', u'address', u'environment', u'issu'] [u'ruddock', u'take', u'issu', u'claim'] [u'saint', u'key', u'cat', u'rematch'] [u'scott', u'chase', u'sutherland', u'florida'] [u'scott', u'trail', u'lead', u'florida'] [u'senat', u'want', u'servic', u'issu', u'address'] [u'serena', u'cruis', u'victori', u'henman', u'crash'] [u'serial', u'rapist', u'bar'] [u'shark', u'edg', u'eagl'] [u'slow', u'start', u'nigeria', u'local', u'elect'] [u'long', u'thank', u'run', u'bull', u'tell'] [u'south', u'africa', u'centuri', u'open', u'stand'] [u'spanish', u'elect', u'reject', u'anti', u'terror', u'claim'] [u'lanka', u'face', u'seri', u'whitewash'] [u'lankan', u'victori'] [u'lanka', u'victori'] [u'stirl', u'reject', u'claim'] [u'set', u'daylight', u'save'] [u'surpris', u'result', u'north', u'poll'] [u'sutherland', u'surpris', u'earli', u'leader', u'player'] [u'swimmer', u'thorp', u'shock'] [u'sydney', u'mayor', u'race', u'come', u'clover'] [u'taiwan', u'opposit', u'plan', u'protest', u'amid', u'china', u'furi'] [u'govt', u'stand', u'elect', u'delay', u'decis'] [u'govt', u'urg', u'boost', u'road', u'fund'] [u'task', u'forc', u'investig', u'stadium', u'brawl'] [u'teacher', u'pass', u'school', u'plan'] [u'thorp', u'shock'] [u'thousand', u'protest', u'hama', u'leader'] [u'plane', u'crash', u'south', u'east', u'franc'] [u'total', u'ban', u'place'] [u'train', u'rehab', u'social', u'activ', u'busi'] [u'trescothick', u'find', u'form', u'england', u'domin', u'tour'] [u'kill', u'mosul', u'rocket', u'attack'] [u'chief', u'rue', u'rwanda', u'genocid', u'respons'] [u'elect', u'team', u'arriv', u'baghdad'] [u'union', u'fear', u'vote', u'rig', u'claim', u'hurt', u'gallop'] [u'approv', u'quick', u'test'] [u'film', u'close', u'sydney', u'street'] [u'vice', u'presid', u'visit', u'japan', u'china', u'south', u'korea'] [u'halen', u'end', u'feud', u'singer'] [u'victoria', u'celebr', u'youth', u'week'] [u'violenc', u'claim', u'live', u'ahead', u'nigerian', u'poll'] [u'vitamin', u'mix', u'bless', u'diabet', u'women'] [u'health', u'report', u'ignor', u'popul', u'growth'] [u'alert', u'cyclon', u'move', u'east'] [u'hero', u'pigeon', u'honour'] [u'wilko', u'rule', u'australia', u'tour', u'report'] [u'woman', u'face', u'retrial', u'attempt', u'murder', u'charg'] [u'abbott', u'disagre', u'pope', u'secular', u'stanc'] [u'abbott', u'play', u'lib', u'brisban'] [u'abbott', u'push', u'anti', u'abort', u'debat'] [u'plan', u'specif', u'workplac', u'agreement'] [u'afghanistan', u'delay', u'landmark', u'elect'] [u'afghan', u'poll', u'septemb', u'karzai'] [u'lament', u'sydney', u'local', u'govt', u'outcom'] [u'anti', u'terror', u'law', u'tough', u'brown', u'say'] [u'apra', u'confid', u'chang'] [u'arab', u'delay', u'summit', u'democraci', u'reform', u'disput', u'blame'] [u'arab', u'summit', u'postpon', u'chief', u'warn', u'fallout'] [u'are', u'park', u'lead', u'south', u'korean', u'charg', u'california'] [u'aussi', u'kennedi', u'pull', u'clear', u'madeira'] [u'aussi', u'clean', u'sweep', u'lanka'] [u'aussi', u'edg', u'closer', u'victori'] [u'beatti', u'push', u'attract', u'game', u'athlet'] [u'quak', u'rock', u'eastern', u'turkey', u'death'] [u'birthday', u'hasselbaink', u'save', u'chelsea'] [u'blaze', u'women', u'prison'] [u'blaze', u'spark', u'apart', u'evacu'] [u'bomb', u'blast', u'injur', u'southern', u'thailand'] [u'bomb', u'blast', u'wound', u'civilian', u'iraq', u'town'] [u'brisban', u'face', u'prospect', u'hang', u'council'] [u'bronco', u'tame', u'tiger'] [u'brumbi', u'romp', u'record'] [u'bush', u'enemi', u'islam', u'hama', u'chief'] [u'busi', u'group', u'speak', u'anzac', u'trade'] [u'teen', u'musician', u'audit', u'youth'] [u'chang', u'law', u'granni', u'surrog', u'approv'] [u'care', u'centr', u'probe', u'spark', u'charg'] [u'firefight', u'help', u'extinguish', u'scrub', u'blaze'] [u'cook', u'nazon', u'win', u'stage'] [u'coup', u'attempt', u'congoles', u'capit'] [u'cyclon', u'fizzl'] [u'cyclon', u'hit', u'brazil', u'seven', u'fishermen', u'fear', u'dead'] [u'darci', u'lead', u'ireland', u'tripl', u'crown'] [u'dark', u'hamper', u'search', u'miss', u'autist'] [u'democrat', u'founder', u'parkinson'] [u'deportivo', u'snatch', u'gasp', u'sociedad'] [u'doctor', u'claim', u'cancer', u'food', u'link', u'china'] [u'doctor', u'win', u'young', u'achiev', u'award'] [u'draw', u'kick', u'raider', u'line'] [u'dyson', u'lanka', u'poor', u'show'] [u'eagl', u'triumph', u'high', u'score', u'affair'] [u'egypt', u'offer', u'host', u'arab', u'summit'] [u'elect', u'point', u'labor', u'resurg', u'councillor', u'say'] [u'eriksson', u'extend', u'england', u'contract'] [u'govt', u'comput', u'flag', u'communiti', u'group'] [u'filipino', u'conjoin', u'twin'] [u'councillor', u'oust', u'burdekin', u'mayor'] [u'ivorian', u'rebel', u'demand', u'presid', u'resign'] [u'charg', u'polic', u'break', u'rowdi', u'teen'] [u'kill', u'indonesian', u'landslid'] [u'freak', u'cyclon', u'loom', u'brazilian', u'coast'] [u'french', u'lawyer', u'saddam', u'case'] [u'french', u'voter', u'head', u'poll', u'region', u'elect'] [u'fright', u'feder', u'roddick', u'power'] [u'gladston', u'mayor', u'claim', u'convinc'] [u'glori', u'grand', u'final'] [u'spot', u'england'] [u'govt', u'deni', u'studio', u'financi', u'strife'] [u'govt', u'plan', u'welfar', u'payment', u'opposit'] [u'green', u'upset', u'vote'] [u'gunfir', u'hear', u'congoles', u'capit'] [u'head', u'nuclear', u'watchdog', u'visit', u'iran'] [u'heart', u'bring', u'european', u'footbal', u'home'] [u'hepat', u'taint', u'blood', u'releas', u'korean'] [u'howard', u'foreshadow', u'iraq', u'troop', u'return'] [u'howard', u'pledg', u'tax'] [u'hang', u'parliament', u'like', u'lankan', u'elect'] [u'india', u'agre', u'talk', u'kashmir', u'group'] [u'iraqi', u'polic', u'blame', u'gunfir', u'toddler', u'death'] [u'ireland', u'introduc', u'smoke'] [u'irish', u'rugbi', u'player', u'die', u'world'] [u'israel', u'face', u'resign', u'call'] [u'wouldnt', u'joke', u'iraq', u'howard'] [u'dean', u'dead'] [u'kemp', u'launch', u'exot', u'anim', u'amnesti'] [u'knight', u'mare', u'season', u'john'] [u'lion', u'lethal', u'saint', u'march'] [u'charg', u'consul', u'general', u'secur', u'breach'] [u'charg', u'morphetvill', u'stab'] [u'hospit', u'midnight', u'bash'] [u'remain', u'critic', u'condit', u'near', u'fatal'] [u'mccoy', u'cruis', u'superbik'] [u'medal', u'honour', u'artist'] [u'media', u'award', u'honour', u'journalist'] [u'merger', u'anger', u'elect', u'moor', u'mayor'] [u'michael', u'jackson', u'honour', u'humanitarian', u'work'] [u'milit', u'free', u'pakistani', u'hostag'] [u'minist', u'await', u'health', u'servic', u'financ', u'report'] [u'minist', u'want', u'underworld', u'code', u'silenc'] [u'iraq', u'violenc'] [u'mother', u'plead', u'help', u'miss', u'autist'] [u'mugab', u'wallet', u'get', u'boost'] [u'nasa', u'mission', u'set', u'world', u'speed', u'record'] [u'natoli', u'oust', u'gross', u'maroochi', u'elect'] [u'nepal', u'elect', u'hold'] [u'law', u'toughen', u'weapon', u'offenc', u'penalti'] [u'sydney', u'mayor', u'want', u'bitter'] [u'nigerian', u'shun', u'poll', u'vote', u'violenc'] [u'north', u'west', u'resid', u'shelter', u'cyclon'] [u'oppn', u'seek', u'independ', u'probe', u'byrn', u'death'] [u'artist', u'advantag', u'footbal', u'grand', u'final'] [u'offici', u'probe', u'suspici', u'women', u'prison'] [u'orient', u'nation', u'event'] [u'ottk', u'hang', u'box', u'glove'] [u'palestinian', u'die', u'west', u'bank', u'raid'] [u'panther', u'pummel', u'warrior'] [u'parri', u'sizzl', u'tiger', u'fight'] [u'perfect', u'langer'] [u'owner', u'chanc', u'copi', u'cat'] [u'push', u'ahead', u'anti', u'terror', u'plan'] [u'polic', u'break', u'taiwan', u'presidenti', u'protest'] [u'polic', u'taiwan', u'ballot', u'protest'] [u'polic', u'hunt', u'arm', u'bandit'] [u'polic', u'releas', u'franc', u'bomb', u'threat', u'suspect'] [u'polic', u'rescu', u'miss', u'children'] [u'polic', u'seek', u'wit', u'pedestrian', u'accid'] [u'polic', u'offer', u'lime', u'juic', u'spruce', u'imag'] [u'poll', u'open', u'georgia', u'rebelli', u'adjara', u'provinc'] [u'port', u'embarrass', u'bomber'] [u'press', u'watchdog', u'seek', u'probe', u'iraq', u'cameraman'] [u'privat', u'martin', u'grab', u'phillip', u'island', u'pole'] [u'probe', u'continu', u'uranium', u'water', u'woe'] [u'prosecutor', u'recommend', u'sharon', u'bribe', u'charg'] [u'reid', u'molik', u'florida', u'pratt', u'pull'] [u'roo', u'crush', u'crow'] [u'rule', u'scrutini', u'thorp', u'fall', u'continu'] [u'govt', u'replac', u'dilapid', u'bridg'] [u'scott', u'grab', u'lead', u'wood', u'make'] [u'search', u'continu', u'miss'] [u'season', u'john'] [u'sehwag', u'give', u'india', u'earli', u'advantag'] [u'sehwag', u'slam', u'unbeaten', u'india', u'take', u'control'] [u'sharehold', u'decid', u'board', u'member', u'fate'] [u'spanish', u'polic', u'raid', u'bomb', u'workshop'] [u'korean', u'ralli', u'impeach'] [u'storm', u'blow', u'dragon', u'away'] [u'stormer', u'bruis', u'bull', u'join', u'brumbi'] [u'strong', u'quak', u'shake', u'tibetan', u'region'] [u'styri', u'steadi', u'struggl', u'black', u'cap'] [u'sweet', u'reveng', u'french', u'slam', u'england'] [u'sydney', u'communiti', u'ralli', u'honour', u'hama', u'spiritu'] [u'teen', u'refus', u'bail', u'attempt', u'murder', u'charg'] [u'thorp', u'pool'] [u'thorp', u'bounc', u'disappoint'] [u'thorp', u'bounc', u'surpris'] [u'thuringowa', u'mayor', u'elect', u'slam', u'vote', u'card'] [u'trade', u'deal', u'spark', u'sugar', u'elector', u'protest', u'lgaq'] [u'children', u'miss', u'catamaran', u'accid'] [u'dead', u'collis'] [u'sven', u'hand', u'defo', u'euro', u'chanc'] [u'underwat', u'telecom', u'cabl', u'link', u'franc', u'singapor'] [u'univis', u'content', u'go', u'wireless'] [u'opinion', u'poll', u'give', u'kerri'] [u'victoria', u'alert'] [u'viduka', u'miss', u'deepen', u'gloom', u'leed'] [u'voter', u'shun', u'local', u'govern', u'poll'] [u'govt', u'say', u'opposit', u'inact', u'western'] [u'wale', u'thrash', u'itali', u'hansen', u'final', u'game'] [u'warship', u'scuttl', u'reef'] [u'windi', u'bring', u'ganga', u'edward', u'test'] [u'young', u'achiev', u'name'] [u'account', u'firm', u'plan', u'merger'] [u'actor', u'peter', u'ustinov', u'die', u'age'] [u'china', u'plane', u'skid', u'runway'] [u'albani', u'public', u'transport', u'overhaul'] [u'alburi', u'resid', u'wait', u'result'] [u'mayor', u'elect'] [u'qaeda', u'chief', u'kill', u'pakistani', u'oper'] [u'angri', u'protest', u'coalit', u'shut', u'iraqi'] [u'aniston', u'sign', u'gambit', u'remak'] [u'ararat', u'mayor', u'unlik', u'seek', u'elect'] [u'armidal', u'polic', u'behaviour'] [u'aussi', u'kennedi', u'blow', u'hanel', u'win', u'madeira'] [u'australian', u'coast', u'open', u'explor'] [u'australia', u'need', u'skill', u'migrant', u'remain', u'relev'] [u'author', u'suspect', u'arson', u'prison'] [u'autist', u'day', u'lose', u'bush'] [u'baiter', u'address', u'esper', u'wild', u'problem'] [u'ballarat', u'urg', u'freez', u'fee'] [u'bank', u'drag'] [u'barrier', u'reef', u'benefit', u'improv'] [u'baxter', u'kid', u'fit', u'local', u'school'] [u'beckham', u'bruis', u'sevilla', u'madrid', u'stay'] [u'bendigo', u'crash', u'victim', u'name'] [u'bollon', u'resid', u'water'] [u'brisban', u'councillor', u'squar', u'tunnel', u'fight'] [u'british', u'want', u'econom', u'sanction', u'israel'] [u'british', u'troop', u'clash', u'basra', u'protest'] [u'break', u'hill', u'mayor', u'vow', u'improv', u'citi', u'futur'] [u'break', u'hospit', u'promis', u'anger', u'wheatbelt', u'communiti'] [u'bronco', u'appeal', u'point', u'decis'] [u'build', u'compani', u'admit', u'guilt', u'site', u'death'] [u'review', u'nation', u'energi', u'polici'] [u'cambridg', u'power', u'controversi', u'oxford'] [u'campbel', u'jone', u'like', u'wingecarribe'] [u'carey', u'trio', u'report', u'round'] [u'carey', u'clear'] [u'celtic', u'inflict', u'ibrox', u'miseri', u'ranger'] [u'chan', u'gibb', u'face', u'high', u'tackl', u'charg'] [u'chang', u'climat', u'put', u'tropic', u'risk'] [u'china', u'urg', u'improv', u'trade', u'practic'] [u'chirac', u'poll', u'rout'] [u'church', u'solv', u'year', u'polit', u'mysteri'] [u'clear', u'path', u'save', u'murray', u'darl', u'water'] [u'clerk', u'catch', u'thief', u'steal', u'card'] [u'communiti', u'vow', u'hold', u'gallop', u'hospit'] [u'concern', u'rais', u'privat', u'patholog', u'clinic'] [u'daili', u'postal', u'vote', u'count', u'determin', u'mayor'] [u'dali', u'qualifi', u'augusta'] [u'death', u'candid', u'mean', u'return', u'poll'] [u'disgrac', u'announc', u'adelaid', u'airwav'] [u'doctor', u'fin', u'indec', u'assault'] [u'downer', u'urg', u'syria', u'follow', u'libya', u'lead'] [u'drink', u'drive', u'scarili', u'common'] [u'dead', u'elect', u'relat', u'violenc', u'turkey'] [u'elect', u'result', u'unclear'] [u'elector', u'backlash', u'expect', u'ravensthorp'] [u'emerg', u'servic', u'lobbi', u'fund', u'boost'] [u'ethanol', u'excis', u'free', u'period', u'extend'] [u'extra', u'fund', u'spend', u'need', u'therapist'] [u'farmer', u'upset', u'lack', u'consult'] [u'fewer', u'wed', u'bell', u'ring'] [u'fighter', u'jet', u'train', u'coast'] [u'restrict', u'forc', u'despit', u'rain'] [u'finalist', u'run', u'construct'] [u'fraud', u'prosecut', u'prompt', u'taxi', u'subsidi', u'scheme'] [u'fund', u'troubl', u'mental', u'health', u'provid'] [u'garner', u'say', u'shell', u'stick', u'alia'] [u'gippsland', u'fire', u'contain'] [u'gippsland', u'resid', u'urg', u'bewar', u'wasp'] [u'gold', u'coast', u'mayor', u'vow', u'freez', u'rat'] [u'gold', u'coast', u'nightclub', u'battl', u'lockdown'] [u'govt', u'disregard', u'redfern', u'warn', u'riot', u'claim'] [u'govt', u'hypocrit', u'troop', u'labor'] [u'govt', u'remain', u'tight', u'lip', u'clark', u'futur'] [u'govt', u'meander', u'project'] [u'govt', u'urg', u'examin', u'contamin', u'sit'] [u'govt', u'urg', u'review', u'propos', u'coff', u'harbour', u'bypass'] [u'govt', u'vow', u'push', u'road', u'extens'] [u'greec', u'turkey', u'meet', u'cyprus', u'divis'] [u'green', u'fall', u'short', u'south', u'coast'] [u'green', u'urg', u'greater', u'scrutini', u'anti', u'terror'] [u'green', u'seat', u'wagga', u'council'] [u'rise', u'labor', u'costello'] [u'gunner', u'record', u'unit', u'draw'] [u'gympi', u'criticis', u'bulli', u'claim'] [u'health', u'head', u'tell', u'inquiri', u'terrifi', u'media', u'focus'] [u'health', u'minist', u'confront', u'mersey', u'hospit', u'worker'] [u'hewitt', u'capriati', u'dump', u'serena', u'stutter'] [u'high', u'school', u'vocat', u'program', u'fund'] [u'hill', u'build', u'defenc', u'strategi', u'vietnam'] [u'hop', u'find', u'indonesia', u'landslid', u'victim', u'fade'] [u'howard', u'seek', u'motion', u'troop', u'pullout'] [u'hume', u'council', u'futur', u'decid', u'voter'] [u'india', u'pakistan', u'play', u'year'] [u'injur', u'policeman', u'life', u'support'] [u'investig', u'underway', u'plane', u'crash'] [u'iran', u'resum', u'work', u'nuclear', u'fuel', u'cycl', u'offici'] [u'iran', u'revis', u'quak', u'death', u'toll'] [u'iraqi', u'polic', u'chief', u'escap', u'assassin', u'attempt'] [u'iraq', u'pay', u'aussi', u'wheat'] [u'jackson', u'hand', u'opal', u'leadership', u'role'] [u'jetstar', u'offic', u'open', u'melbourn'] [u'john', u'face', u'anxious', u'wait', u'scan', u'result'] [u'english', u'suffer', u'seizur'] [u'kashmir', u'crash', u'leav', u'dead'] [u'kemp', u'back', u'campaign', u'plastic', u'bag'] [u'kimberley', u'town', u'face', u'tough', u'liquor', u'restrict'] [u'light', u'mean', u'night', u'event', u'renmark'] [u'london', u'terror', u'attack', u'inevit', u'brit', u'govt', u'say'] [u'long', u'camel', u'trek', u'begin', u'broom'] [u'long', u'wait', u'longreach', u'result'] [u'charg', u'armi', u'drug', u'raid'] [u'charg', u'man', u'murder'] [u'part', u'paralys', u'riot'] [u'martin', u'strike', u'protea', u'struggl'] [u'mayor', u'vow', u'serv', u'communiti'] [u'mayor', u'welcom', u'bakewel', u'bridg', u'upgrad'] [u'melbourn', u'tram', u'firm', u'sack', u'driver'] [u'melbourn', u'water', u'restrict', u'continu'] [u'methan', u'discoveri', u'signal', u'life', u'mar'] [u'mexico', u'caver', u'explor', u'armi', u'chief'] [u'mildura', u'southbank', u'public', u'exhibit'] [u'miss', u'children', u'reunit', u'parent'] [u'murali', u'bowl', u'say', u'gilchrist'] [u'murali', u'report', u'chuck', u'doosra'] [u'murray', u'darl', u'benefit', u'salt', u'intercept'] [u'nation', u'kick', u'region', u'parti', u'meet'] [u'nelson', u'refus', u'apologis', u'fake', u'letter'] [u'board', u'member', u'want', u'promot'] [u'maritim', u'secur', u'regim', u'track', u'confer'] [u'mayor', u'look', u'outback', u'council'] [u'mayor', u'target', u'sydney', u'overdevelop'] [u'pest', u'hit', u'tasmanian', u'lettuc', u'crop'] [u'tamworth', u'boundari', u'deni', u'vote', u'mayor'] [u'norri', u'fastest', u'butterfli', u'heat'] [u'north', u'west', u'mop', u'cyclon'] [u'pois', u'strip', u'bronco', u'point'] [u'ponder', u'bulldog', u'point', u'penalti'] [u'work', u'second', u'permiss'] [u'face', u'hike'] [u'justic', u'minist', u'rule', u'prison', u'bracelet'] [u'govt', u'want', u'power', u'revok', u'passport'] [u'territorian'] [u'onslow', u'home', u'violenc', u'prevent', u'program'] [u'pakistan', u'pound', u'sehwag', u'tendulkar'] [u'park', u'win', u'california', u'webb'] [u'rule', u'welfar', u'cut'] [u'polic', u'assist', u'fatal', u'crash'] [u'polic', u'investig', u'alcohol', u'breach', u'claim'] [u'pont', u'pay', u'tribut', u'lehmann', u'warn'] [u'pork', u'produc', u'put', u'membership'] [u'privat', u'guard', u'patrol', u'port', u'augusta'] [u'protea', u'chase', u'victori'] [u'pub', u'warn', u'overcharg', u'water'] [u'raaf', u'gear', u'major', u'train', u'exercis'] [u'radic', u'overhaul', u'propos'] [u'rain', u'littl', u'central', u'victoria'] [u'rain', u'forc', u'delay', u'test'] [u'record', u'attend', u'alic', u'spring', u'expo'] [u'redund', u'decis', u'blow', u'rural', u'area', u'saff'] [u'reef', u'manag', u'plan', u'target', u'problem'] [u'rescu', u'chopper', u'busi', u'weekend', u'accid'] [u'research', u'fear', u'koala', u'habitat', u'danger'] [u'research', u'probe', u'torr', u'strait', u'seagrass', u'dieback'] [u'resid', u'vote', u'councillor', u'abattoir'] [u'rice', u'urg', u'testifi', u'sept', u'inquiri'] [u'risqu', u'work', u'shirt', u'illeg'] [u'riverina', u'mayor', u'enjoy', u'popular', u'support'] [u'rossi', u'take', u'charg', u'test'] [u'rundl', u'keep', u'option', u'open', u'loos', u'mayor'] [u'scan', u'confirm', u'john', u'season'] [u'scoobi', u'battl', u'zombi', u'offic'] [u'scott', u'win', u'golf', u'fifth', u'major'] [u'dead', u'zone', u'threaten', u'planet'] [u'search', u'resum', u'miss', u'autist'] [u'sehwag', u'carv', u'pakistani', u'attack'] [u'senat', u'approv', u'timor', u'deal'] [u'sept', u'commiss', u'want', u'rice', u'testifi'] [u'shark', u'play', u'scott', u'victori'] [u'sharon', u'order', u'yield', u'paper'] [u'shoulder', u'injuri', u'sidelin', u'pickett'] [u'slater', u'win', u'surfest', u'perfect'] [u'socceroo', u'cahil', u'rare', u'long', u'wait'] [u'soldier', u'face', u'discharg', u'drug', u'probe'] [u'south', u'east', u'gear', u'tidi', u'town', u'competit'] [u'spanish', u'schoolboy', u'shock', u'feder'] [u'lankan', u'captain', u'quit', u'aussi', u'test', u'sweep'] [u'studi', u'reveal', u'tough', u'time', u'home', u'buyer'] [u'supersub', u'shevchenko', u'save', u'milan', u'blush'] [u'swim', u'boss', u'leav', u'olymp', u'door', u'open', u'thorp'] [u'swim', u'legend', u'perkin', u'slam', u'steven', u'step', u'call'] [u'swim', u'fan', u'urg', u'support', u'steven'] [u'sydney', u'rail', u'patronag', u'drop'] [u'talli', u'say', u'bronco', u'deserv', u'point'] [u'keep', u'fee', u'unchang'] [u'tender', u'scheme', u'threaten', u'aborigin', u'legal'] [u'terror', u'white', u'paper', u'late', u'rudd'] [u'thorp', u'athen', u'bind'] [u'thousand', u'rais', u'cancer'] [u'separ', u'inquiri', u'probe', u'contamin'] [u'tollway', u'cost', u'rise', u'billion'] [u'tough', u'road', u'ahead', u'mackay', u'mayor', u'council'] [u'toxic', u'alga', u'forc', u'peopl', u'away', u'blackwood', u'river'] [u'trio', u'report', u'round'] [u'tweed', u'resid', u'face', u'loos', u'blitz'] [u'dead', u'freak', u'storm', u'hit', u'southern', u'brazil'] [u'kill', u'uzbekistan', u'market', u'blast'] [u'clear', u'musharraf', u'nuclear', u'traffic'] [u'forens', u'team', u'join', u'taiwan', u'inquiri'] [u'hand', u'health', u'ministri', u'control', u'iraqi'] [u'soldier', u'kill', u'insurg', u'iraq'] [u'uzbekistan', u'blast', u'kill'] [u'govt', u'defend', u'freeway', u'cost', u'blow'] [u'polic', u'review', u'footbal', u'case'] [u'victorian', u'urg', u'volunt', u'help'] [u'virgin', u'go', u'airwav'] [u'vitamin', u'help', u'prevent', u'cancer', u'studi', u'find'] [u'voigt', u'outshin', u'armstrong', u'criterium'] [u'govt', u'commit', u'health', u'overhaul'] [u'govt', u'unveil', u'hospit', u'review'] [u'walter', u'propos', u'resolut', u'sack', u'board'] [u'warn', u'spin', u'thing'] [u'watchdog', u'begin', u'hear', u'alleg', u'polic'] [u'watson', u'ahead', u'shoalhaven'] [u'wetland', u'spray', u'curb', u'ross', u'river'] [u'weed', u'strangl', u'australian', u'agricultur'] [u'wide', u'school', u'receiv', u'special', u'mainten'] [u'wild', u'storm', u'prompt', u'examin', u'respons'] [u'warn', u'iraq', u'specul', u'inquiri'] [u'wollongong', u'mayoralti', u'go', u'prefer'] [u'work', u'begin', u'terror', u'white', u'paper'] [u'youth', u'week', u'kick', u'region'] [u'youth', u'week', u'rock', u'riverland'] [u'fail', u'allay', u'rann', u'sport', u'concern'] [u'activist', u'finish', u'uranium', u'protest', u'trek'] [u'actu', u'seek', u'pay', u'famili', u'leav', u'provis'] [u'adelaid', u'record', u'lowest', u'capit', u'rental', u'vacanc'] [u'control', u'blame', u'iraq', u'friend'] [u'investig', u'branch', u'stack', u'claim'] [u'qaeda', u'chief', u'kill', u'pakistan'] [u'annan', u'revis', u'cyprus', u'deal', u'talk', u'begin'] [u'approv', u'jump', u'beli', u'hous', u'slowdown', u'costello'] [u'arthur', u'down', u'guccion', u'canberra'] [u'athen', u'urg', u'hone', u'olymp', u'secur', u'plan'] [u'athen', u'velodrom', u'roof', u'success', u'warm', u'stadium'] [u'atsic', u'chang', u'underway', u'vanston'] [u'atsic', u'chief', u'urg', u'reform'] [u'australia', u'help', u'indonesia', u'unlock', u'bomb', u'maker', u'file'] [u'aust', u'snake', u'venom', u'cancer', u'promis'] [u'aust', u'team', u'supervis', u'indonesia', u'elect'] [u'banana', u'grower', u'slip', u'away'] [u'bank', u'profit', u'leap', u'asset', u'growth'] [u'bat', u'advantag', u'test', u'arena', u'say', u'studi'] [u'battl', u'wild', u'dog', u'blackal'] [u'legend', u'cook', u'dead'] [u'bewar', u'come', u'punctuat', u'vigilant'] [u'bomb', u'throw', u'embassi', u'malaysia'] [u'bosnian', u'serb', u'jail', u'wartim', u'atroc'] [u'bridg', u'display', u'compani', u'administr'] [u'britain', u'launch', u'organis', u'crime', u'agenc'] [u'britain', u'broadsheet', u'downsiz', u'reader'] [u'british', u'caver', u'leav', u'mexico', u'ambassador'] [u'british', u'compani', u'face', u'slaveri', u'suit'] [u'break', u'hill', u'receiv', u'fund', u'children', u'health'] [u'build', u'approv', u'surg', u'trade', u'deficit'] [u'bunburi', u'investig', u'develop', u'challeng'] [u'council', u'help', u'manag', u'indigen'] [u'expand', u'region', u'fund'] [u'indigen', u'health', u'servic', u'nation'] [u'camera', u'wont', u'improv', u'safeti', u'driver'] [u'carr', u'pledg', u'heart', u'attack', u'death'] [u'caucaunibuca', u'rub', u'season'] [u'china', u'await', u'birth', u'freez', u'babi'] [u'china', u'buy', u'recognit', u'taiwan'] [u'chirac', u'direct', u'raffarin', u'form', u'govern'] [u'christma', u'troop', u'deadlin', u'iraq', u'flexibl', u'labor'] [u'citi', u'hall', u'deadlock', u'newman', u'shun', u'talk'] [u'commission', u'urg', u'attitud', u'chang', u'women'] [u'communiti', u'support', u'goldfield', u'juvenil'] [u'confid', u'agricultur', u'economi', u'survey'] [u'confid', u'wenger', u'rest', u'star', u'semi'] [u'consum', u'group', u'doctor', u'welcom', u'public', u'health'] [u'cooper', u'look', u'barrel'] [u'coron', u'criticis', u'echuca', u'health', u'clinic'] [u'council', u'push', u'zone', u'mount', u'gambier', u'farm'] [u'council', u'urg', u'fluorid', u'poll', u'result'] [u'court', u'hear', u'woman', u'attempt', u'murder'] [u'court', u'uphold', u'test', u'neglig', u'rule'] [u'cyprus', u'peac', u'talk', u'green', u'light'] [u'danih', u'urg', u'fan', u'stick', u'demon'] [u'danish', u'polic', u'arrest', u'child', u'porn'] [u'demon', u'ward', u'cop', u'week'] [u'diamond', u'miner', u'share', u'fail', u'sparkl'] [u'downer', u'gear', u'afghan', u'talk', u'berlin'] [u'dubbo', u'council', u'declar', u'weed'] [u'dutch', u'return', u'home', u'finish', u'jail', u'time'] [u'ethanol', u'industri', u'hail', u'chang', u'expect', u'tough', u'time'] [u'ethanol', u'produc', u'extens', u'excis', u'free'] [u'explos', u'shake', u'uzbek', u'capit'] [u'fallon', u'name', u'opal', u'captain'] [u'farmer', u'urg', u'check', u'grain', u'silo', u'flaw'] [u'fear', u'age', u'care', u'home', u'fee', u'doubl'] [u'feder', u'cut', u'budget', u'recal', u'necessari', u'carr'] [u'fee', u'rise', u'univers'] [u'file', u'share', u'sale', u'studi'] [u'charg', u'drug', u'haul'] [u'forest', u'board', u'crack', u'manfern', u'trade'] [u'player', u'guilti', u'indec', u'assault'] [u'brisban', u'lord', u'mayor', u'help', u'gold', u'coast', u'grow'] [u'financi', u'advis', u'plead', u'guilti', u'super'] [u'freight', u'australia', u'sell'] [u'french', u'jordanian', u'lawyer', u'jostl', u'repres', u'saddam'] [u'geelong', u'scarlett', u'charg', u'strike'] [u'govt', u'accus', u'scale', u'albani', u'colleg'] [u'govt', u'ask', u'clean', u'mildura', u'eyesor'] [u'govt', u'rezon', u'area', u'industri', u'estat'] [u'govt', u'leav', u'hec', u'decis', u'univers'] [u'govt', u'urg', u'violenc', u'hospit'] [u'govt', u'urg', u'establish', u'kimberley', u'bail', u'program'] [u'govt', u'withhold', u'keelti', u'clarif', u'document'] [u'grafton', u'businessman', u'kill', u'motorcycl', u'crash'] [u'grape', u'harvest', u'underway', u'despit', u'tough', u'year'] [u'grazier', u'encourag', u'donat', u'dinosaur', u'skeleton'] [u'green', u'fare', u'southern', u'highland', u'elect'] [u'highway', u'near', u'macksvill', u'block'] [u'honey', u'produc', u'chemic', u'claim', u'suit'] [u'hospit', u'workshop', u'young', u'peopl', u'industri'] [u'hospit', u'pharmacist', u'second', u'guess', u'prescript'] [u'howard', u'claw', u'poll', u'lead'] [u'hundr', u'attend', u'memori', u'underworld', u'figur'] [u'hundr', u'attend', u'mildura', u'art', u'festiv'] [u'hunter', u'policeman', u'face', u'charg', u'case'] [u'injuri', u'red', u'welcom', u'flatley'] [u'investig', u'continu', u'wilcannia', u'riot'] [u'irish', u'return', u'home', u'player', u'death'] [u'judg', u'dismiss', u'blue', u'ribbon', u'appeal'] [u'kaufusi', u'come', u'suspend', u'chan'] [u'kempsey', u'gloucest', u'reveal', u'council'] [u'kennedi', u'take', u'knight', u'captainci'] [u'labor', u'committe', u'dismiss', u'vote', u'rig', u'alleg'] [u'labor', u'chao', u'iraq', u'split', u'downer'] [u'langmack', u'craigi', u'resolv', u'differ'] [u'lang', u'sign', u'panther'] [u'latham', u'scrap', u'incap', u'atsic'] [u'leader', u'debat', u'iraq', u'pullout'] [u'lehmann', u'tough', u'tour'] [u'lettuc', u'pest', u'forc', u'export'] [u'livestock', u'trade', u'continu', u'year', u'round'] [u'london', u'raid', u'terrorist', u'suspect'] [u'lowland', u'gorilla', u'number', u'dramat', u'declin'] [u'price', u'fish', u'port', u'futur', u'jeopardi'] [u'magic', u'million', u'eye', u'tasmanian', u'expans'] [u'jail', u'murder', u'woman', u'year'] [u'remain', u'custodi', u'murder'] [u'martin', u'back', u'latham', u'atsic', u'direct'] [u'lament', u'departur', u'gympi', u'gold'] [u'megawati', u'urg', u'support', u'vote'] [u'mexico', u'wont', u'charg', u'cave', u'explor'] [u'milit', u'execut', u'pakistani', u'hostag'] [u'peopl', u'need', u'heathcot', u'communiti', u'bank'] [u'mother', u'tiananmen', u'squar', u'victim', u'arrest'] [u'murali', u'upset', u'chuck'] [u'murder', u'woman', u'famili', u'hear', u'challeng', u'killer'] [u'nation', u'tour', u'victoria', u'countri', u'feedback'] [u'ausbulk', u'chairman', u'look', u'futur'] [u'exempt', u'armi', u'drug', u'test'] [u'sign', u'terror', u'embassi', u'attack'] [u'notori', u'mountain', u'claim', u'victim', u'summer'] [u'govt', u'give', u'troubl', u'health', u'provid', u'lifelin'] [u'target', u'employ', u'email', u'snoop'] [u'ban', u'cosmet', u'tail', u'dock'] [u'opposit', u'condemn', u'mini', u'budget', u'decis'] [u'packer', u'sign', u'lion', u'chapman'] [u'pakistan', u'clarifi', u'qaeda', u'chief', u'kill'] [u'panel', u'support', u'propos', u'shepparton', u'hous'] [u'parent', u'push', u'better', u'help', u'deaf', u'children'] [u'pal', u'scandal', u'blow', u'child', u'protect'] [u'philippin', u'foil', u'major', u'terrorist', u'attack', u'presid'] [u'turn', u'africa', u'help', u'crisi'] [u'polic', u'charg', u'boy', u'attempt', u'sexual'] [u'polic', u'intercept', u'record', u'drug', u'shipment'] [u'polic', u'quiz', u'bulldog'] [u'polic', u'search', u'cooma', u'thiev'] [u'polic', u'seek', u'spirit', u'assault', u'wit'] [u'port', u'boss', u'announc', u'quit'] [u'port', u'curti', u'turn'] [u'pottharst', u'face', u'shatter', u'olymp', u'dream'] [u'project', u'manag', u'optimist', u'cunningham', u'rail'] [u'properti', u'market', u'collaps', u'predict', u'inflat'] [u'propos', u'belmont', u'midwiferi', u'servic', u'review'] [u'public', u'view', u'want', u'culcairn', u'shire', u'restructur'] [u'qatar', u'trial', u'robot', u'substitut', u'child', u'camel'] [u'quarantin', u'tighten', u'wake', u'insect', u'pest'] [u'radic', u'islam', u'group', u'deni', u'uzbek', u'bomb'] [u'railway', u'fruit', u'grower', u'access', u'asia'] [u'ranger', u'shut', u'indefinit'] [u'ranger', u'worker', u'wari', u'radiat', u'test', u'union'] [u'record', u'level', u'mice', u'winter', u'crop'] [u'region', u'report', u'call', u'farm'] [u'reid', u'report', u'fail', u'indigen', u'australian'] [u'renew', u'energi', u'park', u'ararat'] [u'report', u'card', u'show', u'increas', u'assault'] [u'resid', u'urg', u'contribut', u'marina', u'develop'] [u'retir', u'mayor', u'return', u'follow', u'candid', u'death'] [u'richmond', u'shire', u'reject', u'telstra', u'sale'] [u'rise', u'demand', u'prompt', u'boost', u'tafe', u'fund'] [u'riverina', u'council', u'consid', u'cockatoo', u'cull'] [u'riverina', u'resid', u'urg', u'bewar', u'bogus'] [u'rohd', u'stonewal', u'umpir', u'confess', u'eagl'] [u'impeach', u'hear', u'postpon'] [u'rope', u'barrier', u'highway', u'collis'] [u'russia', u'want', u'extend', u'man', u'mission'] [u'sailor', u'flatley', u'red'] [u'scott', u'move', u'career', u'high', u'world'] [u'scott', u'readi', u'follow', u'footstep', u'idol', u'norman'] [u'secreci', u'cloak', u'jackson', u'grand', u'juri'] [u'senat', u'threaten', u'govt', u'bill', u'keelti', u'deadlin'] [u'serena', u'commit', u'athen'] [u'show', u'cancel', u'english', u'collaps'] [u'smith', u'see', u'protea', u'seri'] [u'snowtown', u'killer', u'refus', u'appeal', u'sentenc'] [u'soorley', u'deni', u'advisori', u'role', u'person', u'interest'] [u'spanish', u'student', u'parti', u'poll', u'mark'] [u'state', u'govt', u'commit', u'futur', u'central'] [u'stem', u'cell', u'abl', u'deliv', u'cancer', u'kill', u'protein'] [u'african', u'dentist', u'practic'] [u'struggl', u'sugar', u'get', u'govt', u'lifelin'] [u'student', u'hail', u'hec', u'fee', u'freez'] [u'sudanes', u'asylum', u'seeker', u'lose', u'releas', u'case'] [u'swede', u'offer', u'davi', u'depth'] [u'tafe', u'teacher', u'lobbi', u'feder', u'fund'] [u'tamil', u'death', u'spark', u'faction', u'fight', u'fear'] [u'teen', u'appear', u'court', u'woman', u'murder'] [u'telstra', u'doubl', u'dissolut', u'trigger'] [u'space', u'tourist', u'suit', u'orbit'] [u'thoma', u'sizzl', u'butterfli', u'heat'] [u'thorp', u'hackett', u'swim'] [u'thorp', u'qualifi', u'fastest', u'freestyl'] [u'thorp', u'race', u'heat'] [u'charg', u'madrid', u'blast'] [u'slow', u'languag', u'develop', u'studi'] [u'townsvill', u'woman', u'escap', u'abduct', u'attempt'] [u'traffic', u'worri', u'lead', u'council', u'studi'] [u'troop', u'debat', u'point', u'score', u'iraqi', u'migrant'] [u'troop', u'withdraw', u'debat', u'prematur', u'migrant', u'group'] [u'turf', u'club', u'urg', u'better', u'upkeep', u'gippsland', u'race'] [u'kill', u'uzbek', u'sieg', u'offici'] [u'british', u'troop', u'iraqi', u'hurt', u'basra', u'clash'] [u'uefa', u'backflip', u'clear', u'kean', u'play'] [u'terror', u'suspect', u'hold', u'raid'] [u'staff', u'protest', u'poor'] [u'union', u'warn', u'near', u'half', u'workforc', u'loss'] [u'market', u'rise', u'upbeat', u'trade'] [u'push', u'elector', u'reform', u'hong', u'kong'] [u'ralli', u'boost', u'australian', u'market'] [u'soldier', u'kill', u'iraqi', u'journalist', u'offici'] [u'honour', u'premier', u'state', u'funer'] [u'honour', u'premier'] [u'video', u'evid', u'help', u'bronco', u'fight', u'sanction'] [u'vietnam', u'declar', u'prematur', u'bird'] [u'virgin', u'blue', u'passeng', u'gold', u'coastperth', u'record'] [u'voter', u'confus', u'blame', u'huge', u'ballot', u'paper'] [u'water', u'corp', u'face', u'prosecut', u'sewag', u'spill'] [u'white', u'page', u'omiss', u'hinder', u'lifelin'] [u'wollongong', u'councillor', u'like', u'retain', u'mayor'] [u'woman', u'jail', u'worker', u'compens', u'fraud'] [u'world', u'wine', u'minist', u'tour', u'southern'] [u'commend', u'australia', u'anti', u'whale', u'stanc'] [u'zimbabw', u'rule', u'parti', u'win', u'elect', u'offici'] [u'doctor', u'refer', u'complaint', u'commiss'] [u'pacif', u'highway', u'black', u'spot'] [u'mobil', u'bridg', u'tank'] [u'pledg', u'support', u'polic', u'investig'] [u'agassi', u'crush', u'serena', u'reach', u'semi'] [u'shed', u'light', u'yang', u'power', u'plan'] [u'spin', u'announc', u'loss'] [u'steadi', u'investor', u'await', u'news'] [u'aust', u'chase', u'trade', u'deal'] [u'australian', u'instrument', u'rock', u'smithsonian'] [u'australian', u'kill', u'mountain', u'climb', u'fall'] [u'australia', u'see', u'china', u'loom', u'trade', u'giant'] [u'author', u'recommend', u'payphon', u'price', u'rise'] [u'babi', u'payment', u'littl', u'late'] [u'lettuc', u'export', u'extend'] [u'barbitur', u'help', u'slow', u'colon', u'cancer', u'progress'] [u'bomber', u'hop', u'personnel', u'boost'] [u'bomb', u'kill', u'soldier', u'iraq'] [u'brack', u'tell', u'clear', u'toll', u'issu'] [u'build', u'industri', u'warn', u'fall'] [u'bulldog', u'head', u'west'] [u'bulldog', u'profil', u'orang'] [u'bushfir', u'victim', u'group', u'criticis', u'delay', u'inquest'] [u'busi', u'canvass', u'mall', u'troubl'] [u'butler', u'polit', u'speech', u'caus', u'controversi'] [u'cahil', u'delight', u'socceroo', u'debut'] [u'refuge', u'boost', u'region', u'job'] [u'call', u'improv', u'north', u'east', u'road'] [u'bomb', u'explod', u'iraq'] [u'chamber', u'happi', u'estat', u'rezon'] [u'charg', u'expect', u'communiti', u'fight'] [u'china', u'introduc', u'visa', u'regul'] [u'claim', u'differ', u'alcohol', u'restrict', u'strategi'] [u'cloud', u'seed', u'trial', u'inevit'] [u'coalit', u'soldier', u'kill', u'west', u'baghdad', u'offici'] [u'comment', u'seek', u'aust', u'china', u'free', u'trade', u'deal'] [u'concern', u'popul', u'rise'] [u'consum', u'spend', u'slow'] [u'council', u'administr', u'highlight', u'undemocrat'] [u'council', u'candid', u'celebr', u'earli'] [u'council', u'threaten', u'action', u'vote'] [u'council', u'ground', u'lagoon', u'plane', u'plan'] [u'creditor', u'mull', u'legal', u'action', u'mine'] [u'crespo', u'give', u'argentina', u'narrow', u'ecuador'] [u'creswick', u'net', u'broadband', u'servic'] [u'cricket', u'chief', u'dismiss', u'murali', u'conspiraci', u'claim'] [u'democrat', u'want', u'hous', u'answer'] [u'demon', u'ponder', u'ward', u'suspens', u'appeal'] [u'detect', u'investig', u'drug', u'leak', u'alleg'] [u'docker', u'farmer', u'charg', u'assault'] [u'doctor', u'group', u'reject', u'health', u'servic', u'offer'] [u'dog', u'orang', u'trip', u'hit', u'pothol'] [u'dutch', u'dog', u'design', u'dunni'] [u'report', u'slam', u'berlusconi', u'media', u'domin'] [u'warn', u'nuclear', u'plant'] [u'everton', u'ferguson', u'escap', u'racism', u'charg'] [u'explos', u'rock', u'texan', u'refineri'] [u'fire', u'desert', u'debut'] [u'farina', u'talk', u'turkey', u'narrow'] [u'dead', u'canari', u'island', u'helicopt', u'crash'] [u'soldier', u'kill', u'iraqi', u'blast'] [u'food', u'grower', u'urg', u'environment', u'friend'] [u'foreshor', u'author', u'attack', u'develop'] [u'freight', u'aust', u'sale', u'reignit', u'rail'] [u'fund', u'improv', u'water', u'qualiti'] [u'gilli', u'take', u'honour'] [u'glori', u'hassel', u'decid'] [u'gough', u'harmison', u'call', u'duti'] [u'govt', u'fund', u'seek', u'live', u'export', u'feedlot', u'upgrad'] [u'govt', u'launch', u'plan', u'boost', u'popul'] [u'govt', u'obstruct', u'cash', u'visa', u'inquiri', u'labor'] [u'govt', u'push', u'anti', u'terror', u'amend'] [u'govt', u'releas', u'explor', u'area'] [u'govt', u'look', u'ethanol', u'percentag', u'mandat'] [u'green', u'support', u'scientif', u'concern', u'road'] [u'hard', u'time', u'forc', u'bses', u'cut'] [u'heart', u'clear', u'murrayfield'] [u'hope', u'rail', u'standardis'] [u'howard', u'hint', u'abolish', u'atsic'] [u'howard', u'latham', u'trade', u'dishonesti', u'claim'] [u'howard', u'maintain', u'latham', u'brief', u'iraq'] [u'howard', u'reject', u'latham', u'brief', u'claim'] [u'indigen', u'leader', u'highlight', u'nepot'] [u'injur', u'ganguli', u'home'] [u'iraqi', u'drag', u'bodi', u'street', u'attack'] [u'israel', u'dismantl', u'jewish', u'outpost'] [u'israel', u'restrict', u'stop', u'gaza', u'food'] [u'jackson', u'sibl', u'name', u'foolish', u'american'] [u'jone', u'song', u'breast', u'stroke', u'heat'] [u'judg', u'confirm', u'falconio', u'murder', u'trial'] [u'kellogg', u'cereal', u'gambl', u'scandal'] [u'talk', u'open', u'afghanistan'] [u'klim', u'fight', u'fit', u'sydney', u'pool'] [u'kyoto', u'farmer', u'face', u'crimin', u'charg', u'bird'] [u'labor', u'promis', u'babi', u'payment'] [u'latham', u'howard', u'iraq'] [u'latham', u'seek', u'apolog', u'howard', u'iraq'] [u'centr', u'want', u'credit', u'regul', u'extend'] [u'leader', u'iraq', u'brief'] [u'injuri', u'setback', u'augusta', u'say', u'tiger'] [u'lenton', u'knock', u'world', u'mark'] [u'lewi', u'moran', u'slay', u'gangland', u'shoot'] [u'live', u'export', u'hail', u'plan', u'industri', u'chang'] [u'lucki', u'escap', u'pilot', u'run'] [u'magistr', u'believ', u'need', u'koori', u'court', u'model'] [u'maher', u'confirm', u'capit', u'post'] [u'mala', u'return', u'uluru'] [u'arrest', u'canadian', u'anti', u'terror', u'raid'] [u'die', u'road', u'crash'] [u'attempt', u'murder', u'charg', u'assault'] [u'shoot', u'dead', u'melbourn', u'club'] [u'offload', u'barthez'] [u'manzano', u'back', u'dope', u'accus'] [u'mayor', u'candid', u'neck', u'neck'] [u'mayor', u'focus', u'region', u'roadwork'] [u'mayor', u'lament', u'lose', u'kangara', u'job'] [u'mayor', u'meet', u'hospit', u'servic'] [u'mccartney', u'serenad', u'resort', u'diner'] [u'meatwork', u'fin', u'tallow', u'spill'] [u'medic', u'student', u'region', u'exposur'] [u'meet', u'call', u'discuss', u'northern', u'health', u'crisi'] [u'melbourn', u'train', u'secur', u'scrutinis'] [u'worker', u'meet', u'offer'] [u'worker', u'uranium', u'scare'] [u'mitsubishi', u'deni', u'closur', u'rumour'] [u'mitsubishi', u'mull', u'australian', u'pullout', u'report'] [u'cannabi', u'southern'] [u'say', u'highway', u'black', u'spot', u'ignor'] [u'morgan', u'mayor', u'race', u'continu'] [u'murali', u'head', u'australia', u'bowl'] [u'coal', u'job', u'off'] [u'nickel', u'project', u'spark', u'polic', u'boost'] [u'miss', u'fierc', u'storm', u'brazil'] [u'appeal', u'demon', u'ward', u'suspens'] [u'noriega', u'bow'] [u'norri', u'pleas', u'athen', u'qualif'] [u'north', u'west', u'host', u'summit'] [u'chief', u'meet', u'bulldog', u'point', u'penalti'] [u'target', u'player', u'attitud', u'women'] [u'support', u'warn', u'poor', u'behaviour'] [u'lib', u'seek', u'royal', u'commiss', u'hospit', u'death'] [u'politician', u'push', u'outlaw', u'petrol', u'sniff'] [u'nuclear', u'watchdog', u'chief', u'visit', u'iran'] [u'job', u'worri', u'consum'] [u'price', u'jump', u'ahead', u'output'] [u'councillor', u'bega', u'shire'] [u'oppn', u'say', u'review', u'proof', u'plan', u'plantat', u'sale'] [u'opposit', u'call', u'state', u'govt', u'cancel', u'japan', u'trip'] [u'packer', u'score', u'court', u'victori'] [u'pakistan', u'govt', u'know', u'nuke', u'trade', u'offici'] [u'pakistan', u'reel', u'follow'] [u'pakistan', u'struggl', u'avoid', u'follow', u'india'] [u'palestinian', u'push', u'peac'] [u'parksid', u'garden', u'report', u'rais', u'concern'] [u'parti', u'back', u'sharon', u'propos', u'poll', u'member'] [u'peponi', u'deni', u'quit', u'rumour'] [u'peter', u'ustinov', u'funer', u'geneva', u'saturday'] [u'petit', u'seek', u'improv', u'mental', u'health', u'facil'] [u'lover', u'pick', u'doggi', u'doppelgang'] [u'polic', u'await', u'report', u'possibl', u'drink', u'spike', u'death'] [u'polic', u'expect', u'arrest', u'philippin', u'drug'] [u'polic', u'charg', u'weekend', u'riot'] [u'polic', u'drug', u'charg', u'eyr', u'peninsula', u'raid'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'probe', u'sydney', u'drive', u'shoot'] [u'polic', u'question', u'singh', u'murder', u'suspect'] [u'polic', u'worri', u'substanc', u'abus', u'increas'] [u'star', u'anastacia', u'recal', u'breast', u'cancer', u'shock'] [u'port', u'face', u'legal', u'action', u'closur'] [u'protest', u'student', u'think'] [u'push', u'council', u'rise'] [u'rail', u'action', u'group', u'speak', u'plan', u'cut'] [u'railway', u'line', u'agreement', u'move', u'closer', u'realiti'] [u'razorback', u'boost', u'dwight', u'clearanc'] [u'recount', u'close', u'rockhampton', u'result'] [u'region', u'chairman', u'back', u'atsic', u'chang'] [u'republican', u'push', u'referendum'] [u'resid', u'upset', u'crematorium', u'plan'] [u'rhoad', u'claim', u'mayor', u'victori'] [u'robinson', u'back', u'opposit', u'plan', u'scrap', u'atsic'] [u'rome', u'derbi', u'replay'] [u'rooster', u'bulldog', u'damag'] [u'parliament', u'monitor', u'content'] [u'scrap', u'atsic', u'welcom', u'latham', u'plan', u'wont', u'work'] [u'serena', u'crush', u'crayba', u'reach', u'semi', u'final'] [u'socceroo', u'hold', u'africa'] [u'socceroo', u'hold', u'victori', u'africa'] [u'soorley', u'highlight', u'need', u'growth', u'manag'] [u'space', u'station', u'techniqu', u'expand', u'ultrasound'] [u'spain', u'say', u'bomb', u'probe', u'focus', u'moroccan', u'group'] [u'stab', u'put', u'hospit'] [u'strike', u'threaten', u'olymp', u'prepar'] [u'student', u'clash', u'polic', u'hec', u'protest'] [u'studi', u'rais', u'alarm', u'vasectomi', u'revers'] [u'suicid', u'bomber', u'target', u'bolivian', u'congress'] [u'support', u'scrap', u'atsic'] [u'survey', u'examin', u'locust', u'movement'] [u'tah', u'lose', u'waugh', u'blue', u'clash'] [u'taiwanes', u'intellig', u'chief', u'resign'] [u'break', u'welcom', u'ethanol', u'refineri', u'plan'] [u'tear', u'kirsten', u'bow', u'high', u'note'] [u'telstra', u'cut', u'wholesal', u'broadband', u'price'] [u'thirti', u'detain', u'uzbek', u'terror', u'attack', u'report'] [u'thorp', u'fastest', u'final', u'hanson', u'back'] [u'british', u'soldier', u'wound', u'iraq', u'blast'] [u'blow', u'bolivian'] [u'ticket', u'sale', u'darwin', u'test', u'match'] [u'japanes', u'court', u'reject', u'compo', u'claim'] [u'tour', u'oper', u'vote', u'market', u'leader'] [u'train', u'safeti', u'start', u'despit', u'concern'] [u'troop', u'deploy', u'lanka', u'vote', u'kill'] [u'trucki', u'bridg', u'blockad', u'end'] [u'viewer', u'spend', u'minut', u'couch'] [u'arrest', u'ship', u'contain', u'theft'] [u'charg', u'sydney', u'protest'] [u'muslim', u'urg', u'fight', u'terror'] [u'union', u'drop', u'wage', u'claim', u'teacher'] [u'union', u'welcom', u'telstra', u'sale', u'failur'] [u'picket', u'caus', u'traffic', u'woe'] [u'stock', u'finish'] [u'host', u'matilda', u'olymp', u'warm'] [u'weapon', u'hunt', u'shift', u'focus', u'intent', u'iraq'] [u'vanston', u'attack', u'commission', u'support', u'atsic'] [u'oppn', u'seek', u'mental', u'health', u'answer'] [u'deni', u'branch', u'stack', u'alleg'] [u'waratah', u'lose', u'waugh', u'blue', u'clash'] [u'memori', u'get', u'closer', u'fund', u'target'] [u'termin', u'uranium', u'project'] [u'white', u'hous', u'offer', u'rice', u'public', u'testimoni', u'sept'] [u'woman', u'award', u'compens', u'tram', u'fall'] [u'increas', u'greenhous', u'emiss', u'level'] [u'afghan', u'ambassador', u'plead', u'assist'] [u'move', u'address', u'sexual', u'assault', u'concern'] [u'airlin', u'sue', u'warn', u'alcohol'] [u'alga', u'outbreak', u'detect', u'westburi'] [u'criticis', u'plan', u'public', u'servic', u'cut'] [u'ararat', u'mayor', u'consid', u'prioriti'] [u'kick', u'quarter', u'style'] [u'atapattu', u'appoint', u'lanka', u'test', u'captain'] [u'atsic', u'abolit', u'answer', u'councillor'] [u'aussi', u'sailor', u'strand', u'coast'] [u'australian', u'appoint', u'iraq', u'oper', u'staff'] [u'australian', u'prospect', u'look', u'good', u'survey'] [u'australian', u'secur', u'british', u'open', u'start'] [u'australia', u'place', u'grow', u'older'] [u'aust', u'warn', u'terror', u'attack', u'ship'] [u'relax', u'membership', u'rule'] [u'bahrain', u'put', u'fizzi', u'booz'] [u'barcoo', u'mayor', u'look', u'forward', u'term'] [u'bash', u'victim', u'thank', u'communiti', u'support'] [u'impass', u'continu'] [u'benefit', u'see', u'grain', u'facil', u'boost'] [u'blueprint', u'develop', u'recreat', u'complex'] [u'bomber', u'hope', u'strong', u'season'] [u'boycott', u'hit', u'vanston', u'aborigin', u'legal', u'tender'] [u'brazilian', u'orang', u'freshen', u'berri', u'juic'] [u'brennan', u'lose', u'mayor', u'spot'] [u'brisban', u'pair', u'convict', u'sexual', u'assault'] [u'british', u'minist', u'resign', u'immigr', u'furor'] [u'british', u'muslim', u'group', u'condemn', u'terror'] [u'butler', u'tell', u'stay', u'polit'] [u'tourist', u'beach', u'safeti', u'push'] [u'canberra', u'cold', u'monday', u'night', u'footi'] [u'cane', u'toad', u'proof', u'fenc', u'look', u'unlik'] [u'castl', u'king', u'defenc'] [u'china', u'anger', u'taiwan', u'radar', u'deal'] [u'code', u'conduct', u'moot', u'councillor'] [u'commerci', u'price', u'pirsa'] [u'confus', u'mount', u'amidst', u'bypass', u'wrangl'] [u'contractor', u'secur', u'cost', u'iraq', u'bring', u'call'] [u'boost', u'milk', u'price'] [u'council', u'agre', u'road', u'safeti', u'sign'] [u'councillor', u'issu', u'soorley', u'plan'] [u'council', u'order', u'compo', u'tree', u'death'] [u'council', u'upset', u'recycl', u'plan', u'bin'] [u'court', u'order', u'william', u'polic', u'statement'] [u'crowd', u'rail', u'hospit', u'fund'] [u'crow', u'ring', u'chang', u'lion', u'clash'] [u'cyprus', u'referendum', u'uphil', u'struggl', u'envoy'] [u'dad', u'urg', u'spend', u'time', u'famili'] [u'dalbi', u'get', u'youth', u'counsel', u'centr'] [u'delay', u'lighthous', u'platform', u'demolit'] [u'dementieva', u'dump', u'venus', u'biscayn'] [u'dfat', u'issu', u'gallipoli', u'travel', u'warn'] [u'disney', u'western', u'cartoon', u'hand', u'draw', u'breed'] [u'tell', u'rat', u'tale'] [u'docker', u'farmer', u'front', u'court', u'assault', u'charg'] [u'donor', u'nation', u'pledg', u'billion', u'afghanistan'] [u'doubt', u'cast', u'wheatbelt', u'polic', u'station'] [u'doubt', u'cast', u'marin', u'park', u'plan'] [u'dozen', u'arrest', u'europ', u'counter', u'terror', u'sweep'] [u'receiv', u'evid', u'bulldog', u'assault', u'charg'] [u'dravid', u'target', u'seri'] [u'dump', u'bodi', u'search', u'underway'] [u'educ', u'fund', u'end'] [u'effort', u'rais', u'region', u'abus', u'awar'] [u'taboo', u'subject', u'schumach', u'brother'] [u'boss', u'quit', u'ferdinand'] [u'farmer', u'cautious', u'fertilis', u'plan'] [u'farmer', u'face', u'check', u'fertilis'] [u'farmer', u'face', u'extend'] [u'farmer', u'face', u'swan'] [u'fear', u'air', u'locust'] [u'feder', u'govt', u'move', u'exclud', u'workplac'] [u'final', u'sydney', u'citi', u'council', u'spot', u'decid'] [u'flatley', u'super', u'centuri'] [u'flower', u'captain', u'sussex'] [u'forget', u'spam', u'lookout', u'spim'] [u'boyfriend', u'question', u'singh', u'murder', u'case'] [u'charg', u'drug', u'raid'] [u'death', u'squad', u'member', u'larg', u'philippin'] [u'fruit', u'firm', u'consid', u'takeov', u'protect'] [u'prison', u'fingleton'] [u'godfath', u'soul', u'entertain', u'melbourn'] [u'googl', u'australia', u'quiet', u'webmail', u'plan'] [u'gould', u'fail', u'qualifi', u'quest'] [u'govt', u'consid', u'appeal', u'court', u'work'] [u'govt', u'urg', u'rule', u'plantat', u'sale'] [u'govt', u'want', u'voter'] [u'discov', u'illeg', u'fish', u'boat'] [u'grape', u'region', u'get', u'pest', u'treatment', u'facil'] [u'group', u'appoint', u'indigen', u'youth', u'worker'] [u'hamster', u'inkl', u'printer', u'danger'] [u'health', u'dept', u'start', u'investig', u'child', u'abus', u'claim'] [u'hill', u'announc', u'defenc', u'artilleri', u'upgrad'] [u'hill', u'applaud', u'iraq', u'militari', u'appoint'] [u'home', u'hurt', u'eriksson'] [u'hope', u'polic', u'appoint', u'narembeen', u'crime'] [u'howard', u'latham', u'intellig', u'disput', u'intensifi'] [u'illeg', u'fish', u'crew', u'fin'] [u'independ', u'chair', u'urg', u'talk'] [u'index', u'show', u'increas', u'manufactur', u'activ'] [u'india', u'claim', u'histor', u'test'] [u'india', u'downplay', u'musharraf', u'threat', u'quit', u'talk'] [u'injur', u'brumbi', u'give', u'time'] [u'interst', u'link', u'possibl', u'gangland', u'kill'] [u'inzamam', u'blame', u'pakistan', u'bowler', u'test', u'debacl'] [u'iraqi', u'protest', u'shiit', u'paper', u'closur'] [u'japanes', u'economi', u'show', u'sign', u'improv'] [u'vacanc', u'fall'] [u'judg', u'unimpress', u'miss', u'meninga'] [u'juri', u'deliber', u'attempt', u'murder', u'trial'] [u'karadz', u'slip', u'nato'] [u'kill', u'civilian', u'soldier', u'wont', u'unpunish'] [u'kitten', u'ablaz', u'alic', u'spring'] [u'krige', u'disciplinari', u'hear', u'postpon'] [u'labor', u'liber', u'councillor', u'decid'] [u'labor', u'deni', u'babi', u'care', u'payment', u'shortfal', u'claim'] [u'land', u'rezon', u'retail', u'develop'] [u'lara', u'refus', u'fight'] [u'latham', u'attack', u'verbal', u'defenc', u'offici'] [u'leader', u'maintain', u'rage', u'iraq', u'debat'] [u'lenton', u'henri', u'athen'] [u'local', u'swimmer', u'reach', u'olymp', u'trial', u'semi', u'final'] [u'lone', u'strike', u'sweden', u'past', u'england'] [u'mackay', u'swimmer', u'secur', u'athen', u'spot'] [u'maitland', u'council', u'take', u'shape'] [u'charg', u'crowd', u'uproar'] [u'convict', u'polic', u'offic', u'murder'] [u'manzano', u'join', u'italian', u'team', u'follow', u'dope'] [u'martha', u'stewart', u'lawyer', u'seek', u'trial'] [u'mayor', u'want', u'council', u'worker', u'secur'] [u'meet', u'back', u'communiti', u'bank', u'studi'] [u'mental', u'health', u'worker', u'vote', u'industri', u'unrest'] [u'north', u'coast', u'mayor', u'know'] [u'worker', u'want', u'secur'] [u'minist', u'stand', u'properti', u'valuat', u'charg'] [u'miss', u'india', u'relinquish', u'crown'] [u'montgomeri', u'say', u'sorri', u'cancer', u'sledg'] [u'fund', u'improv', u'telstra', u'servic'] [u'sponsor', u'seek', u'camel'] [u'strike', u'game', u'greek', u'tragedi'] [u'mother', u'tell', u'soccer', u'goal', u'post', u'danger'] [u'murali', u'touch', u'perth'] [u'board', u'meet', u'amid', u'legal', u'wrangl'] [u'face'] [u'clone', u'law', u'expect', u'pass', u'legisl'] [u'face', u'join', u'riverina', u'council'] [u'govt', u'form', u'franc'] [u'law', u'protect', u'council', u'staff', u'follow'] [u'mayor', u'look', u'ahead'] [u'merg', u'council'] [u'noad', u'name'] [u'deadlin', u'perth', u'water', u'suppli'] [u'plan', u'super', u'council'] [u'govt', u'extend', u'amnesti'] [u'reject', u'trial', u'propos'] [u'assur', u'lower', u'hous', u'seat'] [u'nurs', u'strike', u'compromis'] [u'nurs', u'case', u'boost'] [u'oust', u'haitian', u'presid', u'launch', u'abduct', u'suit'] [u'pakistan', u'moin', u'fin', u'dissent'] [u'parti', u'exchang', u'support', u'mum'] [u'patchi', u'rainfal', u'south', u'west'] [u'payphon', u'oper', u'disappoint', u'price'] [u'actor', u'deni', u'paedophil', u'claim'] [u'perth', u'student', u'kiss', u'affect', u'goodby'] [u'pirat', u'cullen', u'upbeat', u'coach', u'relationship'] [u'plot', u'kill', u'pakistani', u'foil'] [u'play', u'reckless', u'polit', u'iraq', u'latham'] [u'forc', u'elect'] [u'polic', u'consid', u'hous', u'blaze', u'suspici'] [u'polic', u'follow', u'dog', u'orang', u'question'] [u'polic', u'investig', u'budget', u'propos', u'leak'] [u'polic', u'number', u'boost', u'region'] [u'polic', u'alert', u'alleg', u'teen', u'rape'] [u'polic', u'search', u'redfern', u'rioter'] [u'port', u'dust', u'emiss', u'scrutini'] [u'presidenti', u'visit', u'inquiri', u'farc', u'brown'] [u'prison', u'bash', u'death', u'sydney', u'jail'] [u'produc', u'face', u'wild', u'woe'] [u'public', u'face', u'tougher', u'water', u'restrict'] [u'public', u'servant', u'strike'] [u'abuzz', u'firebal', u'yarn'] [u'firebal', u'probabl', u'meteor', u'astronom'] [u'radiat', u'therapist', u'shortag', u'rat', u'union'] [u'rail', u'servic', u'track'] [u'rail', u'worker', u'dismiss', u'drink'] [u'rampag', u'kill', u'farmer'] [u'report', u'question', u'park', u'plan'] [u'retail', u'happi', u'latest', u'growth', u'statist'] [u'robertson', u'secur', u'mayor', u'spot'] [u'roof', u'compani', u'director', u'charg'] [u'rugbi', u'world', u'warm', u'global', u'season'] [u'abalon', u'firm', u'bag', u'china', u'export', u'deal'] [u'shire', u'approv', u'world', u'heritag', u'centr', u'design'] [u'shire', u'face', u'water', u'restrict'] [u'simpson', u'star', u'strike', u'report'] [u'skill', u'migrant', u'face', u'tougher', u'immigr', u'rule'] [u'smith', u'tell', u'leed', u'stay', u'stick'] [u'sniper', u'target', u'shopper', u'smell'] [u'southern', u'enjoy', u'timber', u'boom'] [u'stage', u'wood', u'resurrect', u'major', u'form'] [u'support', u'air', u'alcohol', u'zone'] [u'support', u'librari', u'loan', u'plan'] [u'tap', u'chase', u'underworld', u'murder'] [u'terrorist', u'cell', u'manila', u'polic'] [u'thiev', u'money', u'more'] [u'threat', u'real', u'despit', u'bushfir', u'season'] [u'talk', u'tough'] [u'tourist', u'urg', u'area', u'fruit', u'free'] [u'truck', u'compani', u'blast', u'endang', u'driver'] [u'turk', u'arrest', u'philippin', u'alleg', u'link'] [u'unchang', u'england', u'seri'] [u'union', u'hit', u'telstra', u'market', u'tactic'] [u'student', u'state', u'case', u'fee', u'rise'] [u'seek', u'salvag', u'kosovo', u'peac'] [u'cyprus', u'plan', u'referendum'] [u'ambassador', u'goldfield', u'visit'] [u'contract', u'mean', u'bigger', u'boost'] [u'dollar', u'fall', u'greenspan', u'heart', u'rumour'] [u'battl'] [u'alter', u'assist', u'gangland', u'investig'] [u'parti', u'unit', u'abc', u'sport', u'wrap'] [u'educ', u'criticis', u'slow', u'reaction'] [u'weather', u'record', u'break', u'perth'] [u'wineri', u'shut', u'amidst', u'money', u'owe', u'claim'] [u'zimbabw', u'cricket', u'chief', u'book', u'lord', u'meet'] [u'argentin', u'protest', u'crime', u'surg'] [u'adelaid', u'darwin', u'freight', u'target'] [u'adelaid', u'lover', u'record', u'sentenc', u'murder'] [u'airport', u'go', u'mammal', u'research'] [u'qaeda', u'plan', u'memo', u'target', u'australian', u'report'] [u'analyst', u'doubt', u'potenc', u'fertilis', u'clampdown'] [u'arab', u'gulf', u'state', u'ban', u'gibson', u'film'] [u'argentinean', u'protest', u'crime', u'surg'] [u'attack', u'best', u'form', u'defenc', u'milan'] [u'aussi', u'muscat', u'aim', u'doubl'] [u'aussi', u'market', u'soft', u'pacif', u'brand', u'debut'] [u'aust', u'yachtsmen', u'rescu', u'coast'] [u'tast', u'bronco', u'blame', u'bikini', u'blunder'] [u'bahrain', u'circuit', u'win', u'thumb', u'main'] [u'bali', u'bomber', u'act', u'osama', u'fatwa', u'say', u'milit'] [u'banana', u'wrest', u'confess', u'alleg', u'soap', u'thiev'] [u'appoint', u'maverick', u'chief'] [u'beatti', u'counsel', u'brisban', u'councillor'] [u'bishop', u'stand', u'questionnair'] [u'bomber', u'lose', u'johnson'] [u'bomb', u'spanish', u'railway', u'line'] [u'brazil', u'dream', u'trio', u'fail', u'shine', u'paraguay'] [u'build', u'put', u'olymp', u'champ', u'test'] [u'cahil', u'aim', u'amaz', u'week'] [u'foreign', u'teacher', u'gap'] [u'celtic', u'brink', u'glori', u'kennedi', u'cast', u'long'] [u'chaperon', u'attend', u'latham', u'brief'] [u'chief', u'hold', u'highland'] [u'china', u'order', u'pollut', u'control'] [u'civil', u'right', u'group', u'hit', u'propos', u'chang'] [u'accus', u'racism', u'harbour', u'stoush'] [u'coach', u'fear', u'ail', u'hackett'] [u'comment', u'seek', u'cape', u'rang', u'nation', u'park', u'plan'] [u'communiti', u'vision', u'statement'] [u'concert', u'aim', u'rais', u'banana', u'sugar', u'industri', u'fund'] [u'coron', u'recommend', u'wheelchair', u'rail', u'cross', u'chang'] [u'council', u'consid', u'brothel', u'applic'] [u'councillor', u'prepar', u'work', u'ahead'] [u'council', u'seek', u'great', u'ocean'] [u'council', u'campaign', u'bush', u'race'] [u'council', u'unhappi', u'damag', u'decis'] [u'court', u'consid', u'atsic', u'chief', u'clark', u'case'] [u'court', u'reject', u'asic', u'appeal', u'nrma', u'head'] [u'crew', u'surviv', u'chopper', u'nosed'] [u'crow', u'hope', u'bounc', u'lion'] [u'semi', u'top', u'amaz', u'week', u'socceroo', u'cahil'] [u'dee', u'lead', u'tiger', u'half', u'time'] [u'defenc', u'expert', u'question', u'aust', u'allianc'] [u'democrat', u'highlight', u'south', u'east', u'phone', u'fault'] [u'demon', u'tiger', u'upset'] [u'demon', u'tame', u'tiger'] [u'develop', u'corp', u'help', u'kangara', u'worker'] [u'domest', u'violenc', u'stat', u'caus', u'alarm'] [u'doubt', u'rais', u'chrome', u'law'] [u'dougla', u'surfer', u'councillor'] [u'exhibit', u'showcas', u'break', u'hill', u'natur'] [u'expert', u'probe', u'inner', u'citi', u'croc', u'sight'] [u'famili', u'court', u'chief', u'hang', u'rob'] [u'fast', u'rail', u'work', u'caus', u'disrupt'] [u'govt', u'attack', u'invest', u'aust', u'plan'] [u'fein', u'princ', u'face', u'cowboy', u'tiger', u'clash'] [u'ferrari', u'bahrain', u'practic'] [u'fila', u'fin', u'trade', u'practic', u'breach'] [u'fish', u'tale', u'leg', u'studi'] [u'wicket', u'flintoff', u'put', u'england'] [u'flatley', u'latest', u'blow', u'red'] [u'focus', u'livestock', u'transport'] [u'forestri', u'loss', u'minimis', u'report'] [u'onetel', u'director', u'high', u'court'] [u'teacher', u'charg', u'offenc'] [u'fraudster', u'grandmoth', u'scam', u'lawyer'] [u'french', u'polic', u'arrest', u'senior', u'suspect'] [u'fund', u'boost', u'expect', u'benefit', u'obes'] [u'gibbon', u'put', u'case', u'calder', u'highway', u'fund'] [u'goulburn', u'river', u'fish', u'kill', u'investig'] [u'greec', u'seal', u'border', u'ahead', u'game'] [u'grower', u'happi', u'eas', u'water', u'restrict'] [u'grumpi', u'surviv', u'wild', u'ride'] [u'gunner', u'lose', u'cole', u'gilberto', u'cygan', u'injuri'] [u'hambali', u'relat', u'link', u'explos', u'theft'] [u'health', u'disput', u'risk', u'clinic', u'school'] [u'health', u'servic', u'technolog', u'upgrad'] [u'heart', u'attack', u'kill', u'head', u'sikh'] [u'hill', u'forg', u'ahead', u'gallipoli', u'trip'] [u'home', u'age', u'homeless', u'open', u'adelaid'] [u'hope', u'plan', u'abat', u'wild', u'woe'] [u'hospit', u'share', u'equip', u'fund'] [u'hundr', u'govt', u'laptop', u'miss'] [u'indigen', u'leader', u'predict', u'race', u'base', u'elect'] [u'indonesian', u'polic', u'quiz', u'bashir'] [u'ingal', u'set', u'practic', u'pace'] [u'intern', u'profil', u'peak', u'race'] [u'irish', u'sack', u'smoke', u'work'] [u'johnson', u'extend', u'rugbi', u'career', u'report'] [u'dont', u'mention', u'car', u'clint'] [u'kangaroo', u'cull', u'resort', u'develop'] [u'karak', u'cocki', u'mascot', u'melbourn', u'game'] [u'karak', u'cocki', u'unveil', u'game', u'mascot'] [u'katich', u'win', u'waugh', u'award'] [u'labor', u'defend', u'spend', u'cut'] [u'latham', u'accus', u'downer', u'verbal', u'world', u'leader'] [u'latham', u'back', u'australia', u'common', u'market'] [u'latrob', u'valley', u'briquett', u'return'] [u'group', u'seek', u'polic', u'corrupt', u'probe'] [u'lawri', u'open', u'shoot', u'lead', u'portugues', u'open'] [u'leagu', u'boss', u'kangaroo', u'squad'] [u'lean', u'secur', u'morgan', u'mayor', u'spot'] [u'legal', u'action', u'launch', u'ethanol', u'plant'] [u'lenton', u'book', u'athen', u'olymp', u'ticket'] [u'liverpool', u'look', u'home', u'comfort'] [u'local', u'govt', u'group', u'offend', u'premier', u'remark'] [u'longford', u'bass', u'strait', u'worker', u'lock'] [u'long', u'wait', u'end', u'youth', u'centr'] [u'lie', u'jockey', u'bookmak', u'disqualifi'] [u'malle', u'burn', u'program', u'start'] [u'jail', u'supermarket', u'arm', u'robberi'] [u'court', u'attempt', u'murder', u'charg'] [u'court', u'stab'] [u'marriag', u'mooloolaba', u'road', u'triathlon', u'glori'] [u'mat', u'fein', u'princ', u'face', u'cowboy'] [u'question', u'backyard', u'bomb'] [u'mental', u'health', u'worker', u'work', u'ban'] [u'mental', u'health', u'worker', u'industri', u'action'] [u'milic', u'name', u'nsls', u'best'] [u'minist', u'urg', u'communiti', u'petrol', u'sniff'] [u'monto', u'miner', u'produc', u'clock'] [u'claim', u'hospit', u'staff', u'shake', u'loom'] [u'critic', u'health'] [u'highlight', u'pacif', u'highway', u'fund', u'import'] [u'stromlo', u'laser', u'rang', u'facil', u'reopen'] [u'appoint', u'panel', u'overse', u'meet'] [u'nasa', u'find', u'sign', u'martian', u'water'] [u'nat', u'confer', u'venu'] [u'airspac', u'chang'] [u'bulldog', u'boss', u'warn', u'hooligan'] [u'face', u'caloundra', u'council'] [u'protect', u'unborn', u'babi'] [u'women', u'suffrag', u'memori', u'plan', u'unveil'] [u'northam', u'polic', u'deni', u'presenc'] [u'continu', u'push', u'internet', u'bet'] [u'govt', u'say', u'canola', u'trial'] [u'govt', u'wont', u'foot', u'dredg'] [u'armi', u'boss', u'take', u'drug', u'test'] [u'say', u'feder', u'road', u'fund', u'insuffici'] [u'nurs', u'train', u'plan', u'mildura'] [u'troop', u'leav', u'iraq', u'christma'] [u'offici', u'need', u'minder', u'latham', u'brief', u'hill'] [u'optus', u'propos', u'region', u'servic', u'shake'] [u'orang', u'forum', u'grill', u'bulldog', u'player'] [u'pakistan', u'veteran', u'spinner', u'saqlain', u'second'] [u'panther', u'rout', u'rooster'] [u'patrick', u'guilti', u'unsaf', u'work', u'practic'] [u'peacekeep', u'return', u'solomon', u'tour'] [u'pie', u'bank', u'rocca', u'roll', u'bulldog'] [u'weigh', u'governor', u'debat'] [u'polic', u'issu', u'motorcycl', u'crown', u'land', u'warn'] [u'polic', u'probe', u'leonora', u'shoot'] [u'polic', u'releas', u'caus', u'sydney', u'woman', u'death'] [u'polic', u'seek', u'wollongong', u'raid'] [u'polic', u'seek', u'inform', u'melbourn', u'shoot'] [u'polic', u'withdraw', u'charg', u'father'] [u'poll', u'open', u'lanka'] [u'pope', u'seek', u'aborigin', u'welfar', u'updat'] [u'powel', u'visit', u'haiti', u'follow', u'aristid', u'departur'] [u'probe', u'hear', u'polic', u'inform', u'inform', u'polic'] [u'probe', u'launch', u'asbesto', u'concern'] [u'public', u'ask', u'age', u'care', u'protest'] [u'public', u'warn', u'dengu', u'fever', u'risk'] [u'raaf', u'jet', u'hear', u'albani'] [u'rain', u'fail', u'dampen', u'rossi', u'spirit'] [u'ralli', u'protest', u'singl', u'rail', u'track', u'plan'] [u'real', u'estat', u'compani', u'fraud', u'probe'] [u'real', u'estat', u'firm', u'investig'] [u'real', u'princ', u'look', u'albacet', u'pauper'] [u'reason', u'give', u'cancel', u'music', u'centr'] [u'record', u'fall', u'sydney', u'hackett', u'lead', u'field'] [u'region', u'airlin', u'announc', u'allianc'] [u'regist', u'club', u'welcom', u'rebat'] [u'report', u'highlight', u'rescu', u'chopper', u'cost', u'concern'] [u'report', u'consid', u'timber', u'industri', u'impact'] [u'resourc', u'tip', u'bolster', u'farm'] [u'rice', u'face', u'sept', u'inquiri', u'week'] [u'rock', u'roll', u'gopher', u'race', u'remot', u'town'] [u'roma', u'appeal', u'backfir', u'increas'] [u'unawar', u'gallipoli', u'trip', u'cancel'] [u'safeti', u'investig', u'king', u'wharf'] [u'govt', u'attack', u'pitjantjatjara', u'death'] [u'sarroff', u'back', u'council', u'car', u'crackdown'] [u'scott', u'shadow', u'georgia', u'leader', u'round'] [u'second', u'applic', u'night', u'greyhound', u'meet'] [u'senat', u'reopen', u'heiner', u'shred', u'affair'] [u'sept', u'famili', u'award', u'billion'] [u'serena', u'florida', u'final', u'roddick', u'semi'] [u'shack', u'owner', u'form', u'tenur', u'committe'] [u'sharon', u'threaten', u'assassin', u'arafat'] [u'sheedi', u'shock', u'cancer', u'sledg'] [u'site', u'rethink', u'compost', u'facil'] [u'smack', u'earn', u'sydney', u'woman', u'crimin', u'convict'] [u'spain', u'intercept', u'letter', u'bomb'] [u'spanish', u'judg', u'free', u'bomber', u'suspect'] [u'lankan', u'vote', u'elect'] [u'stern', u'shock', u'listen', u'april', u'fool', u'hoax'] [u'student', u'return', u'longreach', u'high'] [u'studi', u'reveal', u'internet', u'vie', u'viewer'] [u'suicid', u'bomber', u'kill', u'northern', u'iraq'] [u'survey', u'uncov', u'rare', u'sydney', u'speci'] [u'tafe', u'rise', u'turn', u'student', u'away'] [u'taiwan', u'court', u'set', u'day', u'resolv', u'recount'] [u'angler', u'keen', u'lake', u'crescent', u'open'] [u'tasmanian', u'forestri', u'report', u'releas'] [u'teen', u'front', u'court', u'wilcannia', u'attack'] [u'thoma', u'claim', u'record'] [u'thousand', u'flock', u'farm', u'fair'] [u'iraqi', u'polic', u'kill', u'baquba'] [u'rail', u'worker', u'sack', u'alcohol', u'test'] [u'tourist', u'rescu', u'coast', u'surf'] [u'track', u'flight', u'delay'] [u'troop', u'solomon', u'tour'] [u'truce', u'call', u'vote', u'rig', u'furor'] [u'truck', u'safeti', u'check', u'ring', u'alarm', u'bell'] [u'turkish', u'terror', u'arrest', u'coincid', u'gallipoli'] [u'underworld', u'pay', u'tribut', u'slay', u'crime', u'figur'] [u'halt', u'gaza', u'food'] [u'upper', u'hous', u'brand', u'liar', u'parliamentari'] [u'uralla', u'explor', u'econom', u'potenti'] [u'dollar', u'steadi', u'overnight', u'roller', u'coaster'] [u'surg', u'labour', u'market'] [u'reject', u'push', u'polic', u'inquiri'] [u'viduka', u'sidestep', u'roma'] [u'voter', u'popular', u'elect', u'mayor'] [u'wesser', u'lead', u'panther', u'rout', u'rooster'] [u'west', u'ignor', u'anniversari', u'rwandan', u'genocid'] [u'detaine', u'releas', u'guantanamo'] [u'age', u'care', u'staff', u'pressur', u'survey'] [u'ambros', u'claim', u'creek', u'pole'] [u'anzac', u'trade', u'reaction'] [u'arafat', u'dismiss', u'sharon', u'threat', u'assassin'] [u'award', u'recognis', u'drug', u'abus', u'campaign'] [u'ban', u'marriag', u'mistak', u'clinton'] [u'beatti', u'keep', u'polit', u'fertilis', u'debat'] [u'bodi', u'gorg', u'nation', u'park'] [u'bomb', u'explod', u'capit'] [u'brisban', u'trio', u'expect', u'play'] [u'britain', u'condemn', u'assassin', u'sharon', u'threat'] [u'burma', u'free', u'hous', u'arrest'] [u'button', u'set', u'bahrain', u'practic', u'pace'] [u'bomb', u'explod', u'near', u'convoy', u'near', u'baghdad'] [u'carr', u'budget', u'deficit'] [u'cell', u'ahead', u'katherin', u'footbal', u'carniv'] [u'coalit', u'gain', u'grind', u'opposit', u'poll'] [u'cold', u'call', u'telco', u'concern', u'regul'] [u'confer', u'empow', u'casual', u'worker'] [u'coria', u'rescu', u'match', u'point', u'reach', u'final'] [u'council', u'leadership', u'hospit'] [u'coup', u'fear', u'prompt', u'nigerian', u'ban', u'foreign', u'news'] [u'cross', u'australia', u'swim', u'rev'] [u'crusad', u'close', u'brumbi'] [u'danc', u'hero', u'golden', u'gallop'] [u'danc', u'hero', u'make', u'golden', u'gallop'] [u'dodemaid', u'offer', u'england', u'ash', u'hope'] [u'doubl', u'lead', u'drive', u'charg', u'acquitt'] [u'drill', u'reveal', u'volcano', u'insid', u'fuji'] [u'drug', u'author', u'critic', u'vodka', u'flavour'] [u'blair', u'minist', u'give', u'plumb', u'australian'] [u'fake', u'doctor', u'sweden', u'prais', u'bedsid', u'manner'] [u'issu', u'train', u'terror', u'warn'] [u'ferrari', u'lead', u'bahrain', u'nightmar', u'mclaren'] [u'firefight', u'rush', u'trap', u'groom'] [u'earthquak', u'rattl', u'capit'] [u'marin', u'jail', u'abduct', u'british'] [u'gawler', u'school', u'offer', u'counsel', u'teacher'] [u'gibson', u'introduc', u'digit', u'guitar'] [u'gold', u'price', u'give', u'industri', u'boost'] [u'goodby', u'wimpzilla', u'hello', u'ultra', u'compact', u'dwarf'] [u'govt', u'announc', u'fund', u'boost', u'mine', u'explor'] [u'goyder', u'hill', u'debat', u'elect', u'issu'] [u'groom', u'free', u'melbourn', u'lift'] [u'hackett', u'expect', u'shrug', u'ill'] [u'hackett', u'retain', u'crown'] [u'health', u'servic', u'target', u'aborigin', u'famili', u'violenc'] [u'horror', u'round', u'send', u'scott', u'crash', u'georgia'] [u'hostel', u'homeless', u'take', u'fundrais'] [u'hostil', u'brisban', u'council', u'workabl'] [u'hous', u'schoolgirl', u'kill', u'demolish'] [u'howard', u'overrul', u'redund', u'right'] [u'hundr', u'mourn', u'vietnames', u'whale', u'funer'] [u'hurrican', u'surviv', u'red', u'scare'] [u'independ', u'seek', u'anti', u'hoon', u'law'] [u'india', u'call', u'paceman', u'nehra'] [u'investig', u'bag', u'welfar', u'cheat'] [u'iraqi', u'pair', u'head', u'athen'] [u'isra', u'polic', u'raid', u'aqsa', u'mosqu'] [u'italian', u'polic', u'detain', u'suspect', u'milit'] [u'itali', u'pension', u'march', u'reform'] [u'opposit', u'disturb', u'member'] [u'judg', u'declar', u'mistrial', u'tyco', u'case'] [u'klim', u'miss', u'chanc', u'individu', u'olymp'] [u'labor', u'warn', u'spend', u'elect', u'bribe'] [u'lion', u'blitz', u'keep', u'crow'] [u'madrid', u'bomber', u'train', u'plot'] [u'magpi', u'dog', u'thriller'] [u'marsh', u'sadden', u'streak', u'resign'] [u'mcginti', u'urg', u'morn', u'pill', u'discret'] [u'megawati', u'authoris', u'partial', u'elect', u'delay'] [u'afraid', u'seek', u'famili', u'friend', u'workplac'] [u'mick', u'wrap', u'return', u'rocca'] [u'microsoft', u'make', u'peac'] [u'migrant', u'plan', u'help', u'rural', u'busi', u'expert'] [u'minchin', u'vanston', u'lead', u'liber', u'senat', u'ticket'] [u'mourner', u'tribut', u'multi', u'talent', u'ustinov'] [u'muslim', u'leader', u'condemn', u'fallujah', u'mutil'] [u'nation', u'begin', u'elect', u'post', u'mortem'] [u'navratilova', u'singl', u'comeback'] [u'navratilova', u'singl', u'comeback'] [u'bomb', u'madrid', u'attack'] [u'consid', u'samurai', u'sword'] [u'watchdog', u'concern', u'compani'] [u'plan', u'buyer', u'develop'] [u'ogradi', u'battl', u'break', u'ahead', u'flander', u'tour'] [u'osbourn', u'send', u'kelli', u'drug', u'rehab'] [u'palestinian', u'kill', u'isra', u'west', u'bank', u'settlement'] [u'paperwork', u'distress', u'nurs'] [u'phelp', u'beat', u'meet'] [u'philippin', u'rebel', u'agre', u'releas', u'prison'] [u'scrutinis', u'policeman', u'ferrari', u'record'] [u'pilbara', u'search', u'continu', u'miss', u'rescuer'] [u'pixi', u'offer', u'instant', u'live', u'gratif'] [u'overturn', u'small', u'busi', u'redund', u'rule'] [u'polic', u'chief', u'civilian', u'kill', u'baghdad', u'violenc'] [u'polic', u'lock', u'drug'] [u'data', u'give', u'solid', u'powel'] [u'price', u'trail', u'jimenez', u'portug'] [u'proud', u'troop', u'finish', u'solomon', u'deploy'] [u'raider', u'strong', u'eel'] [u'rail', u'link', u'track', u'defenc', u'contract'] [u'record', u'campaign', u'fund', u'rais', u'white', u'hous', u'bid'] [u'redund', u'payout', u'worker', u'right', u'union'] [u'rob', u'tendulkar', u'doubl', u'mistak', u'ganguli'] [u'roddick', u'crush', u'spadea', u'set', u'coria', u'final'] [u'rwanda', u'kill', u'werent', u'genocid', u'studi'] [u'saint', u'march', u'port', u'clip', u'eagl'] [u'scandia', u'sail', u'victori', u'mooloolaba'] [u'scientist', u'late', u'road', u'chang'] [u'secur', u'tight', u'donaldson', u'royal', u'danish', u'wed'] [u'semen', u'studi', u'bull'] [u'shell', u'investig', u'refineri', u'blaze'] [u'snowi', u'walk', u'asiat', u'bear'] [u'sorenstam', u'lead', u'event'] [u'south', u'clobber', u'undisciplin', u'shark'] [u'spain', u'deploy', u'armi', u'bomb', u'rail', u'track'] [u'spain', u'regret', u'push', u'blame', u'bomb'] [u'lanka', u'await', u'tight', u'poll', u'result'] [u'lankan', u'voter', u'send', u'mix', u'signal'] [u'lanka', u'vote', u'result', u'delay'] [u'strong', u'dollar', u'hit', u'demand', u'australian', u'wool'] [u'sudan', u'ethnic', u'cleans', u'continu', u'uncheck'] [u'support', u'water', u'trust', u'inquiri', u'flow'] [u'surgeon', u'warn', u'rush', u'comeback', u'john'] [u'syria', u'jail', u'human', u'right', u'activist'] [u'taibu', u'youngest', u'test', u'skipper'] [u'taiwan', u'opposit', u'protest', u'elect', u'defeat'] [u'tasmanian', u'mull', u'growth', u'altern'] [u'teen', u'kill', u'strike', u'train'] [u'thoma', u'weigh', u'olymp', u'option'] [u'thorp', u'centuri', u'leav', u'test', u'balanc'] [u'tokyo', u'reach', u'argentina', u'meter', u'run'] [u'townsvill', u'soldier', u'solomon'] [u'trucki', u'load', u'elect', u'issu'] [u'turkey', u'slam', u'australia', u'terror', u'alert'] [u'rais', u'fee'] [u'arrest', u'farc', u'arm', u'negoti'] [u'fingerprint', u'deterr', u'travel'] [u'fingerprint', u'plan', u'sensibl', u'precaut', u'carr'] [u'militari', u'videotap', u'fallujah', u'kill'] [u'slap', u'sanction', u'iranian', u'nuclear', u'supplier'] [u'soldier', u'marin', u'kill', u'iraq', u'attack'] [u'fingerprint', u'australian', u'visitor'] [u'violat', u'human', u'right', u'guantanamo', u'spanish'] [u'warn', u'israel', u'dont', u'kill', u'arafat'] [u'vampir', u'bat', u'kill', u'peopl', u'brazil'] [u'nistelrooy', u'henri', u'omit', u'line'] [u'nistelrooy', u'doubt'] [u'victori', u'india', u'second', u'australia', u'chappel'] [u'voss', u'star', u'lion', u'victori'] [u'west', u'cowboy'] [u'windi', u'lose', u'smith', u'thumb', u'injuri'] [u'wine', u'win', u'hindmarsh', u'select'] [u'cricket', u'crisi', u'streak', u'quit'] [u'abandon', u'prove', u'govt', u'famili', u'payment', u'plan'] [u'abbott', u'access', u'children', u'medic', u'record'] [u'move', u'prevent', u'electron', u'bulli'] [u'airport', u'powder', u'illicit', u'drug'] [u'amberleigh', u'hous', u'captur', u'grand', u'nation'] [u'arson', u'suspect', u'fire', u'raaf', u'base'] [u'aussi', u'georgia', u'content'] [u'babi', u'injur', u'brisban', u'crash'] [u'beachsid', u'town', u'win', u'nation', u'tidi', u'trophi'] [u'blue', u'overcom', u'slow', u'start', u'cat'] [u'bomb', u'destroy', u'shia', u'mosqu', u'iraq', u'wit'] [u'bond', u'medic', u'student', u'begin', u'univers'] [u'botham', u'tip', u'vaughan', u'english', u'renaiss'] [u'bronco', u'overrun', u'underman', u'storm'] [u'burmes', u'minist', u'back', u'away', u'releas'] [u'preserv', u'histor', u'tree'] [u'canadian', u'lotteri', u'winner', u'flee', u'wive'] [u'canadian', u'seal', u'hunt', u'ignit', u'battl'] [u'carr', u'hoard', u'claim', u'desper', u'brogden'] [u'charg', u'lay', u'melbourn', u'train', u'death'] [u'child', u'protect', u'advoc', u'seek', u'senat', u'post'] [u'coalit', u'troop', u'shiit', u'protestor', u'iraq'] [u'dalla', u'riva', u'queri', u'polic', u'cut'] [u'diplomat', u'immun', u'free', u'congo', u'suspect'] [u'doyl', u'back', u'increas', u'polic', u'anti', u'corrupt', u'power'] [u'dragon', u'belt', u'lacklustr', u'knight'] [u'elect', u'inquiri', u'focus'] [u'postpon', u'head', u'decis'] [u'farm', u'gate', u'caus', u'highway', u'accid'] [u'policemen', u'kill', u'karachi', u'shoot'] [u'forestri', u'report', u'split', u'timber', u'worker', u'miller'] [u'fresh', u'poll', u'rule', u'lanka', u'despit', u'rig'] [u'german', u'train', u'crash', u'avert', u'metal', u'slab', u'track'] [u'glori', u'embrac', u'underdog', u'status'] [u'trial', u'spark', u'liabil', u'confus'] [u'golden', u'goal', u'earn', u'perth', u'glori'] [u'govt', u'ignor', u'afghan', u'counter', u'terror', u'request'] [u'govt', u'stanc', u'aust', u'troop', u'iraq', u'tripe'] [u'greek', u'cypriot', u'ralli', u'reunif', u'plan'] [u'gunner', u'confid', u'champion', u'leagu', u'rebound'] [u'hama', u'claim', u'fatal', u'settlement', u'attack'] [u'hoggard', u'fire', u'england', u'seri'] [u'howard', u'foreshadow', u'famili', u'polici', u'overhaul'] [u'hurrican', u'catarina', u'kill'] [u'injur', u'moin', u'miss', u'second', u'test'] [u'inquiri', u'hold', u'adelaid', u'sieg', u'shoot'] [u'insurg', u'kill', u'marin', u'separ', u'attack'] [u'iran', u'deni', u'report', u'nuke', u'materi'] [u'iran', u'iraq', u'discuss', u'border', u'secur', u'wake'] [u'iraqi', u'cleric', u'support', u'shoot', u'soldier'] [u'jordanian', u'syrian', u'minist', u'discuss', u'reschedul'] [u'king', u'play', u'off', u'decid'] [u'late', u'doubl', u'preserv', u'celtic', u'home'] [u'long', u'time', u'poll', u'howard'] [u'madrid', u'bomb', u'mastermind', u'corner', u'blow', u'self'] [u'charg', u'attempt', u'murder', u'sieg'] [u'impal', u'treasuri', u'casino', u'fenc'] [u'injur', u'rid', u'motorbik', u'cliff'] [u'kill', u'ultra', u'light', u'plane', u'crash'] [u'serious', u'hurt', u'accid', u'goldmin'] [u'martin', u'scuffl', u'paparazzi'] [u'michael', u'schumach', u'win', u'bahrain', u'grand', u'prix'] [u'mooloolaba', u'navig', u'sail', u'renown'] [u'mugab', u'say', u'opposit', u'readi', u'burial', u'report'] [u'nepales', u'continu', u'democraci', u'protest'] [u'newcastl', u'inject', u'life', u'champion', u'challeng'] [u'korean', u'defector', u'arriv', u'south'] [u'market', u'canola'] [u'reason', u'pilbara', u'bodi', u'miss', u'rescuer'] [u'giant', u'panda'] [u'mental', u'health', u'servic', u'inadequ', u'council'] [u'opposit', u'lobbi', u'secur', u'boost', u'train'] [u'opposit', u'parti', u'stop', u'govt', u'plan', u'child'] [u'pakistan', u'desper', u'level', u'india', u'seri'] [u'palestinian', u'plan', u'isra', u'pullback', u'coordin'] [u'passion', u'stir', u'blame', u'jesus', u'death'] [u'philip', u'morri', u'threaten', u'quit', u'swiss'] [u'philippin', u'mayor', u'kill', u'latest', u'poll', u'relat'] [u'polic', u'investig', u'year', u'cannabi', u'user'] [u'polic', u'shoot', u'adelaid', u'disturb'] [u'powel', u'admiss', u'expos', u'lie', u'rudd'] [u'powel', u'admiss', u'pressur', u'blair'] [u'pratt', u'urg', u'action', u'drink', u'spike'] [u'prayer', u'servic', u'honour', u'rescu', u'volunt'] [u'putin', u'chirac', u'affirm', u'anti', u'terror', u'commit'] [u'rann', u'seek', u'respons', u'public', u'servic'] [u'realiti', u'want', u'british', u'famili', u'head'] [u'reopen', u'senna', u'case', u'disappoint', u'william'] [u'rescuer', u'death', u'shock', u'pilbara', u'resid'] [u'rick', u'kelli', u'win', u'raini', u'eastern', u'creek'] [u'roberto', u'carlo', u'doubl', u'keep', u'real', u'nose'] [u'rock', u'fish', u'survey', u'improv', u'safeti'] [u'rokocoko', u'lead', u'blue', u'past', u'waratah'] [u'roo', u'good', u'hawk'] [u'schumach', u'snatch', u'bahrain', u'pole'] [u'senat', u'reopen', u'probe', u'alleg', u'document'] [u'senior', u'polic', u'offic', u'suspend', u'claim'] [u'serena', u'complet', u'comeback', u'style'] [u'shark', u'claw', u'sink', u'cat'] [u'singapor', u'throw', u'union', u'activist'] [u'slovak', u'autocrat', u'win', u'presidenti', u'round'] [u'smack', u'law', u'adequ', u'beatti'] [u'soap', u'mobil', u'go', u'tini'] [u'sophist', u'kirup', u'speed'] [u'sorenstam', u'seek', u'second', u'consecut'] [u'spain', u'hail', u'arrest', u'say', u'explos'] [u'steven', u'leav', u'door', u'open', u'thorp'] [u'streak', u'comment', u'resign'] [u'sudanes', u'claim', u'terror', u'plot', u'expos'] [u'supplier', u'rule', u'lift', u'water', u'restrict'] [u'suspect', u'polic', u'kill', u'madrid', u'explos'] [u'releas', u'eye', u'ahead', u'convent', u'despit'] [u'swan', u'docker'] [u'taiwan', u'minist', u'offer', u'resign', u'protest'] [u'taiwan', u'protest', u'injur', u'anti', u'chen', u'ralli'] [u'sweeten', u'budget', u'say'] [u'teen', u'injur', u'rid', u'motorbik', u'cliff'] [u'teeth', u'cell', u'grow', u'bodi', u'part'] [u'kill', u'coalit', u'troop', u'clash'] [u'thousand', u'march', u'welfar', u'reform', u'europ'] [u'thousand', u'march', u'govt', u'chang', u'polici'] [u'kill', u'dozen', u'wound', u'shiit', u'coalit'] [u'portug'] [u'trade', u'deal', u'damag', u'pacif', u'economi'] [u'train', u'resourc', u'fighter', u'chronic'] [u'polic', u'give', u'extra', u'time', u'quiz', u'terror'] [u'union', u'impos', u'work', u'ban', u'shell', u'inquiri'] [u'union', u'fight', u'howard', u'contemptu', u'redund'] [u'unit', u'end', u'arsenal', u'reign'] [u'tank', u'crush', u'iraqi', u'protest', u'polic'] [u'vatskali', u'appoint', u'communiti', u'member'] [u'govt', u'defend', u'handl', u'underworld'] [u'liber', u'vote', u'upper', u'hous', u'abolit'] [u'warrior', u'beat', u'eagl', u'break', u'duck'] [u'warrior', u'edg', u'ahead', u'man'] [u'woman', u'escap', u'hous', u'northern', u'tasmania'] [u'youth', u'week', u'end', u'parliament'] [u'zimbabwean', u'deni', u'woodbridg'] [u'kill', u'china', u'crash'] [u'report', u'vet', u'delay', u'releas'] [u'abalon', u'industri', u'concern', u'high', u'aussi', u'dollar'] [u'look', u'outback', u'pioneer'] [u'aborigin', u'educ', u'fund', u'boost', u'announc'] [u'accus', u'killer', u'blame', u'parent'] [u'consid', u'carp', u'crackdown'] [u'ainsworth', u'retir', u'polit'] [u'alan', u'jone', u'clear', u'telstra', u'deal'] [u'alcohol', u'restrict', u'transform', u'aborigin', u'communiti'] [u'alleg', u'peopl', u'smuggler', u'face', u'brisban', u'court'] [u'smile', u'luna', u'park', u'open'] [u'air', u'illeg', u'fish', u'fear'] [u'anim', u'cruelti', u'charg', u'anderson', u'withdraw'] [u'schumach', u'bahrain'] [u'anticip', u'boost', u'golkar', u'indonesian'] [u'anzac', u'public', u'holiday', u'caus', u'employ', u'confus'] [u'arson', u'blame', u'factori', u'blaze'] [u'artist', u'bring', u'cunnamulla', u'fella', u'life'] [u'aussi', u'bell', u'beach', u'wildcard'] [u'aust', u'pacif', u'bulli'] [u'australian'] [u'australia', u'cahil', u'take', u'millwal', u'final'] [u'bahrain', u'rais', u'circuit'] [u'beat', u'lara', u'pledg', u'fight'] [u'beckham', u'dismiss', u'report', u'affair'] [u'bird', u'charg', u'knee', u'incid'] [u'bird', u'water', u'knee', u'incid'] [u'blaze', u'shut', u'esso', u'plant'] [u'blood', u'clot', u'sidelin', u'sailor'] [u'bodi', u'investig', u'health', u'precinct', u'plan'] [u'bomb', u'ingredi', u'pull', u'shelv'] [u'broom', u'shire', u'plan', u'process', u'delay'] [u'builder', u'child', u'death', u'mysteri'] [u'build', u'start', u'communiti', u'recreat', u'centr'] [u'bulldog', u'embroil', u'drug', u'transact', u'alleg'] [u'bulldog', u'embroil', u'drug', u'claim'] [u'burn', u'program', u'start', u'short'] [u'bushfir', u'coron', u'reject', u'cost', u'claim'] [u'busi', u'tell', u'factor', u'terror'] [u'butcher', u'snag', u'sausag', u'titl'] [u'cairn', u'quit', u'test', u'cricket'] [u'go', u'young', u'coast', u'guard', u'volunt'] [u'caribbean', u'conquer', u'vaughan', u'eye', u'ash'] [u'centrelink', u'offic', u'recognis', u'indigen'] [u'chariti', u'urg', u'govt', u'address', u'poverti', u'woe'] [u'charter', u'tower', u'win', u'spirit', u'australia', u'tidi'] [u'children', u'benefit', u'fish', u'clinic'] [u'child', u'alleg', u'level', u'polic'] [u'pleas', u'internet', u'paedophilia', u'sting'] [u'construct', u'start', u'public', u'hous', u'project'] [u'council', u'deni', u'input', u'mouth', u'open'] [u'councillor', u'urg', u'control'] [u'council', u'futur', u'remain', u'uncertain'] [u'council', u'urg', u'fund', u'boost', u'mental', u'health'] [u'court', u'consid', u'safeti'] [u'court', u'hear', u'peopl', u'smuggl', u'case'] [u'cowboy', u'continu', u'disastr', u'start', u'season'] [u'secur', u'increas', u'stake', u'sugar', u'refin'] [u'cycl', u'club', u'refurbish', u'track', u'offici', u'open'] [u'depart', u'admit', u'passport', u'mistak'] [u'dept', u'urg', u'help', u'implement', u'live', u'export'] [u'dept', u'want', u'test', u'yarragade', u'aquif'] [u'deputi', u'discuss', u'water', u'initi'] [u'doctor', u'criticis', u'refus', u'smoker', u'treatment'] [u'elect', u'offici', u'kill', u'papua'] [u'investig', u'suspect', u'bird', u'poison'] [u'esso', u'product', u'resum', u'longford'] [u'eurobodalla', u'council', u'posit', u'decid'] [u'fallout', u'abattoir', u'closur', u'impact'] [u'feder', u'underworld', u'task', u'forc'] [u'hike', u'blockad', u'stop', u'senat', u'meet'] [u'flander', u'ordeal', u'take', u'toll', u'aussi'] [u'forster', u'victori', u'ironman', u'mccormack'] [u'children', u'hous', u'blaze'] [u'franc', u'arrest', u'terror', u'raid'] [u'franc', u'detain', u'terror', u'suspect', u'sweep'] [u'french', u'polic', u'uncov', u'arm', u'factori'] [u'fund', u'boost', u'local', u'servic'] [u'futur', u'ethanol', u'blend', u'petrol', u'trial'] [u'suppli', u'secur', u'amid', u'industri', u'woe', u'esso'] [u'govt', u'welcom', u'tree', u'clear', u'fine'] [u'govt', u'deni', u'ignor', u'afghan', u'troop'] [u'govt', u'releas', u'labor', u'school', u'fund', u'list'] [u'govt', u'urg', u'decid', u'rescu', u'helicopt', u'fund'] [u'govt', u'urg', u'reveal', u'develop', u'board', u'plan'] [u'grain', u'compani', u'resum', u'merger', u'talk'] [u'greek', u'author', u'swoop', u'suspect', u'illeg'] [u'group', u'welcom', u'blue', u'hole', u'draft', u'manag', u'plan'] [u'hamstr', u'clear', u'oloughlin'] [u'handov', u'date', u'question', u'iraq', u'violenc', u'continu'] [u'health', u'minist', u'play', u'vaccin', u'overrul'] [u'heater', u'blame', u'tragedi'] [u'histor', u'elect', u'begin', u'indonesia'] [u'holling', u'sell', u'share', u'debt'] [u'hop', u'mullewa', u'offici', u'solv', u'social', u'problem'] [u'ikea', u'founder', u'jump', u'gate', u'world', u'richest'] [u'india', u'bat', u'second', u'test'] [u'indian', u'lose', u'earli', u'wicket'] [u'industri', u'disagre', u'ammonium', u'nitrat'] [u'injur', u'coria', u'hand', u'roddick', u'florida', u'titl'] [u'show', u'carp', u'export'] [u'inter', u'doubl', u'juventus', u'boost', u'milan'] [u'investig', u'begin', u'accid'] [u'iraq', u'administr', u'outlaw', u'muslim', u'cleric'] [u'jiminez', u'win', u'portug', u'price', u'second'] [u'rise'] [u'keat', u'clear', u'injuri'] [u'keat', u'oloughlin', u'clear', u'injuri'] [u'kemp', u'tour'] [u'kemp', u'assess', u'crocodil', u'safari', u'plan'] [u'keystrok', u'tracker', u'target', u'internet', u'bank'] [u'lloyd', u'charg', u'video', u'review'] [u'lloyd', u'tribun', u'strike', u'charg'] [u'local', u'junior', u'lifesav', u'win', u'award'] [u'long', u'wait', u'plane', u'crash', u'search'] [u'madrid', u'mastermind', u'kill', u'blast'] [u'charg', u'assault', u'teenag'] [u'mandella', u'urg', u'strong', u'voter', u'turnout'] [u'help', u'polic', u'inquiri', u'drug'] [u'court', u'rail', u'death'] [u'face', u'court', u'stab', u'incid'] [u'maryborough', u'futur', u'agenda', u'govt', u'meet'] [u'mayor', u'happi', u'fresh', u'council', u'approach'] [u'mclaren', u'pair', u'dismay', u'doubl', u'failur'] [u'media', u'resourc', u'help', u'market', u'reach', u'record', u'high'] [u'melbourn', u'vote', u'increas', u'hec', u'fee'] [u'mental', u'health', u'worker', u'begin', u'industri', u'action'] [u'mine', u'citi', u'recognis', u'tidi', u'town', u'award'] [u'minist', u'cite', u'famili', u'reason', u'retir'] [u'minist', u'polic', u'chief', u'resign', u'taiwanes'] [u'money', u'give', u'river', u'clean'] [u'moor', u'confirm', u'sydney', u'mayor'] [u'blast', u'rorriss', u'workplac', u'death', u'comment'] [u'nation', u'leader', u'queri', u'health', u'complaint'] [u'face', u'lismor', u'council'] [u'grain', u'author', u'explain', u'local'] [u'hamstr', u'worri', u'oloughlin'] [u'newman', u'hinchliff', u'continu', u'council', u'talk'] [u'region', u'drought', u'coordin', u'appoint'] [u'wheat', u'virus'] [u'nib', u'hospit', u'deem', u'eas', u'surgic', u'load'] [u'nirvana', u'fan', u'honour', u'cobain', u'memori'] [u'norfolk', u'australian', u'scheme'] [u'noxious', u'walpol', u'expans'] [u'govt', u'odd', u'teacher', u'compo', u'decis'] [u'withdraw', u'pharmaci', u'deregul', u'legisl'] [u'seafood', u'council', u'support', u'custom', u'polici'] [u'concern', u'fund', u'claim', u'campus'] [u'opposit', u'leader', u'vow', u'victorian'] [u'owen', u'doubl', u'inch', u'liverpool', u'closer', u'europ'] [u'packag', u'announc', u'struggl', u'forestri', u'industri'] [u'pakistan', u'call', u'curb', u'match', u'fix', u'claim'] [u'pakistan', u'offer', u'host', u'nuclear', u'talk'] [u'passov', u'holiday', u'trigger', u'isra', u'terror', u'fear'] [u'peerless', u'voss', u'set', u'round', u'alight'] [u'pettigrew', u'home', u'port'] [u'polic', u'consid', u'murder', u'charg', u'riot', u'death'] [u'polic', u'investig', u'player', u'alleg', u'involv'] [u'polic', u'lament', u'drive', u'offenc'] [u'polic', u'probe', u'brisban', u'nurseri', u'death'] [u'polic', u'probe', u'fenc', u'impal'] [u'polit', u'wrangl', u'tugun', u'bypass', u'continu'] [u'posit', u'forecast', u'job'] [u'premier', u'flag', u'leaner', u'bureaucraci'] [u'probe', u'continu', u'perth', u'church', u'blaze'] [u'protest', u'continu', u'log', u'coup'] [u'public', u'input', u'seek', u'river', u'cross', u'display'] [u'rail', u'death', u'spark', u'secur', u'boost'] [u'ralf', u'look', u'glimmer', u'hope', u'william'] [u'ranger', u'trail', u'celtic', u'point'] [u'rat', u'pose', u'issu', u'school', u'redevelop'] [u'red', u'injuri', u'wait'] [u'red', u'injuri', u'wait', u'ahead', u'stormer', u'clash'] [u'relay', u'life', u'rais', u'thousand', u'cancer', u'research'] [u'roo', u'hit', u'pessimist', u'pundit', u'harvey'] [u'erupt', u'illeg', u'fish', u'polici'] [u'rwanda', u'attack', u'global', u'inact', u'genocid'] [u'saddam', u'enemi', u'lead', u'iraqi', u'defenc'] [u'sadr', u'follow', u'seiz', u'basra', u'governor', u'offic'] [u'school', u'keen', u'steal', u'generat', u'lesson'] [u'scientist', u'consid', u'environment', u'protect'] [u'seven', u'charg', u'dope', u'bust'] [u'seven', u'soldier', u'kill', u'baghdad'] [u'seven', u'wound', u'iraq', u'suicid', u'blast'] [u'shire', u'deputi', u'presid', u'win', u'liber', u'endors'] [u'sorenstam', u'defend', u'titl', u'career', u'victori'] [u'lanka', u'hang', u'parliament'] [u'stand', u'room', u'atop'] [u'stand', u'continu', u'iraq'] [u'statist', u'reveal', u'youth', u'canberra'] [u'summer', u'weather', u'trend', u'worri', u'expert'] [u'switch', u'normal', u'gene', u'link', u'cancer'] [u'governor', u'claim', u'remov', u'campaign'] [u'town', u'win', u'nation', u'recognit'] [u'teen', u'hospit', u'polic', u'pursuit'] [u'teen', u'treat', u'stab', u'wound'] [u'telstra', u'talk', u'firm'] [u'tenni', u'coach', u'stand', u'trial', u'charg'] [u'toddler', u'drown', u'irrig', u'channel'] [u'lay'] [u'town', u'devast', u'children'] [u'tribut', u'women', u'suffrag', u'bore'] [u'troop', u'clash', u'iraqi', u'protest'] [u'truck', u'driver', u'kill', u'earli', u'morn', u'accid'] [u'turbul', u'shake', u'passeng', u'seat'] [u'charg', u'drop', u'anim', u'cruelti', u'case'] [u'defend', u'hike'] [u'submit', u'campus', u'develop', u'applic'] [u'uranium', u'worker', u'tell', u'fear'] [u'salesman', u'quip', u'backfir'] [u'forc', u'seal', u'fallujah', u'violenc', u'escal'] [u'senat', u'talk', u'iraq', u'civil', u'risk'] [u'troop', u'block', u'road', u'fallujah'] [u'valencia', u'pressur', u'real'] [u'farmer', u'protest', u'ban'] [u'crack', u'pollut', u'busi'] [u'wagga', u'council', u'elect', u'result', u'finalis'] [u'nat', u'lib', u'argu', u'agreement'] [u'sceptic', u'feder', u'forestri', u'fund', u'offer'] [u'weather', u'ambul', u'demand'] [u'wooli', u'pharmaci', u'face', u'stiff', u'opposit'] [u'wooli', u'question', u'pharmaci', u'protect'] [u'work', u'parti', u'combat', u'anti', u'social', u'behaviour'] [u'work', u'safeti', u'pay', u'council'] [u'workshop', u'moot', u'festiv', u'float'] [u'youth', u'charg', u'murder', u'wilcannia', u'brawl'] [u'yuvraj', u'strike', u'maiden', u'heroic'] [u'zinifex', u'list'] [u'iraqi', u'kill', u'italian', u'troop', u'clash'] [u'aborigin', u'land', u'council', u'leader', u'resign'] [u'action', u'group', u'back', u'water', u'claim'] [u'carniv', u'biggest'] [u'age', u'care', u'crisi', u'provid'] [u'age', u'care', u'worker', u'protest', u'govern'] [u'agforc', u'concern', u'wheat', u'virus', u'discoveri'] [u'worker', u'attempt', u'mass', u'evacu', u'flood'] [u'alleg', u'crime', u'figur', u'withdraw', u'travel', u'applic'] [u'ambassador', u'present', u'credenti', u'north', u'korea'] [u'anderson', u'escap', u'charg', u'anim', u'cruelti'] [u'arm', u'hold', u'credit', u'union'] [u'arrest', u'french', u'spanish', u'polic', u'raid'] [u'asylum', u'seeker', u'tell', u'court', u'sink', u'horror'] [u'audit', u'hold', u'indigen', u'film'] [u'aussi', u'market', u'edg', u'higher'] [u'aussi', u'money', u'charg'] [u'australian', u'open', u'tenni', u'week'] [u'australia', u'push', u'trade', u'interest', u'asean', u'talk'] [u'author', u'foil', u'bomb', u'plot'] [u'ballina', u'mayor', u'know', u'tonight'] [u'bandit', u'take'] [u'beckham', u'flee', u'alpin', u'hideaway'] [u'beckham', u'alp', u'amid', u'affair', u'furor'] [u'bendigo', u'easter', u'festiv', u'begin'] [u'bevan', u'bichel', u'dump', u'look', u'futur'] [u'blue', u'green', u'alga', u'present', u'river'] [u'bomber', u'lloyd', u'suspend', u'week'] [u'bosnian', u'offici', u'face', u'ethnic', u'cleans', u'charg'] [u'broom', u'stand', u'plan', u'method'] [u'bush', u'firefight', u'analys'] [u'bushfir', u'inquest', u'focus', u'time', u'warn'] [u'bush', u'vow', u'continu', u'iraqi', u'move', u'democraci'] [u'busi', u'urg', u'servic', u'fight'] [u'butler', u'denial', u'absolut', u'correct', u'latham'] [u'releas', u'document', u'death', u'iraqi'] [u'rescu', u'helicopt', u'port', u'macquari'] [u'call', u'tougher', u'law', u'workplac', u'health'] [u'call', u'go', u'indigen', u'literaci', u'boost'] [u'calm', u'sea', u'wipe', u'bell', u'beach'] [u'campaign', u'oppos', u'live', u'export'] [u'cane', u'farmer', u'elect', u'spark', u'good', u'voter', u'turnout'] [u'carlton', u'pair', u'drug', u'probe'] [u'propos', u'hobart', u'subdivis'] [u'chief', u'minist', u'clarifi', u'comment', u'inquest'] [u'citrus', u'industri', u'unhappi', u'ammonium', u'nitrat'] [u'citi', u'centr', u'undergo', u'plan', u'rethink'] [u'claim', u'water', u'plan', u'threaten', u'feedlot'] [u'clinton', u'strike', u'cheap', u'aid', u'drug', u'deal'] [u'close', u'race', u'duaringa', u'mayor'] [u'coalit', u'plan', u'iraqi', u'cleric', u'arrest'] [u'comeback', u'hurt', u'william', u'rank'] [u'communiti', u'bank', u'offici', u'open', u'today'] [u'communiti', u'ralli', u'famili', u'fatal'] [u'compani', u'face', u'public', u'lauderdal', u'develop'] [u'conman', u'foster', u'make', u'blair', u'claim'] [u'contract', u'hand', u'elliott', u'eye', u'test', u'place'] [u'court', u'hear', u'indonesian', u'offici', u'involv'] [u'credit', u'union', u'appoint', u'manag'] [u'cricket', u'australia', u'dump', u'bevan', u'bichel'] [u'action', u'stress', u'age', u'care', u'crisi'] [u'death', u'toll', u'rise', u'iraq', u'clash'] [u'derbi', u'doncast', u'handicap', u'favourit', u'draw', u'wide'] [u'diana', u'ross', u'escap', u'jail', u'time'] [u'doctor', u'air', u'hospit', u'concern'] [u'doubt', u'cast', u'fertilis', u'decis'] [u'earli', u'figur', u'suggest', u'vote', u'slump', u'sukarnoputri'] [u'earli', u'plea', u'leav', u'bird', u'face', u'music'] [u'effect', u'softwood', u'plantat', u'local', u'area'] [u'elect', u'wrangl', u'go', u'court'] [u'embattl', u'park', u'close', u'owner', u'look', u'sell'] [u'emerg', u'respons', u'time', u'talwood'] [u'energi', u'park', u'happen', u'say', u'ararat', u'council'] [u'environ', u'busi', u'leader', u'meet', u'adelaid'] [u'falun', u'gong', u'complaint', u'go'] [u'farmer', u'concern', u'fertilis', u'compani', u'decis'] [u'farmer', u'meet', u'miner', u'sand', u'plan'] [u'firefight', u'form', u'code', u'conduct'] [u'firm', u'promis', u'refund', u'fertilis', u'recal'] [u'flash', u'flood', u'caus', u'havoc', u'mexico'] [u'fli', u'instructor', u'jail', u'ultralight', u'stunt'] [u'caus', u'sydney', u'bind', u'plan', u'divert'] [u'coron', u'lament', u'highway', u'inact'] [u'celebr'] [u'sheep', u'shearer', u'unfaz', u'royal', u'law'] [u'soldier', u'kill', u'iraq', u'clash'] [u'fund', u'address', u'recept', u'woe'] [u'gangland', u'target', u'want', u'leav', u'countri'] [u'govt', u'defend', u'rail', u'safeti', u'measur'] [u'govt', u'gambl', u'group', u'welcom', u'tatt'] [u'govt', u'urg', u'chang', u'age', u'care', u'fund'] [u'govt', u'urg', u'consid', u'light', u'rail'] [u'green', u'concern', u'forestri', u'appoint'] [u'heavi', u'caus', u'problem', u'sydney'] [u'higher', u'tax', u'expect', u'mini', u'budget'] [u'histor', u'literari', u'letter', u'hammer'] [u'hope', u'doctor', u'eas', u'pressur'] [u'howard', u'confid', u'pacif', u'cooper'] [u'howard', u'seiz', u'evan', u'comment'] [u'inquest', u'begin', u'teen', u'death'] [u'inquest', u'open', u'fatal', u'hous'] [u'inquiri', u'hear', u'inform', u'need'] [u'iraqi', u'immigr', u'face', u'tough', u'time', u'find', u'work'] [u'italian', u'troop', u'mehdi', u'armi', u'exchang'] [u'jordan', u'sentenc', u'death', u'diplomat'] [u'kemp', u'welcom', u'salin', u'plan'] [u'king', u'bounc', u'titl'] [u'king', u'come', u'titl'] [u'kooragang', u'boost', u'ammonium', u'nitrat', u'product'] [u'labor', u'promis', u'clear', u'child', u'care', u'backlog'] [u'landhold', u'urg', u'prevent', u'weed', u'outbreak'] [u'late', u'winner', u'keep', u'leed', u'aliv'] [u'time', u'top', u'pulitz', u'prize', u'pool'] [u'love', u'trial', u'drug', u'vandal', u'charg'] [u'tech', u'determin', u'councillor'] [u'luca', u'believ', u'tugun', u'bypass', u'ahead'] [u'luck', u'rule', u'truck', u'crush'] [u'maguir', u'claim', u'mini', u'budget', u'news'] [u'boast', u'murder', u'plan', u'court', u'tell'] [u'mat', u'make', u'tick'] [u'matthew', u'happi', u'short', u'break', u'pie', u'clash'] [u'mayor', u'upbeat', u'rat', u'review', u'support'] [u'mayor', u'upbeat', u'water', u'meet'] [u'megawati', u'vote', u'halv', u'studi'] [u'jail', u'kalgoorli', u'gang', u'rape'] [u'million', u'earmark', u'upgrad', u'danger', u'highway'] [u'research', u'call', u'murray', u'river', u'irrig'] [u'troop', u'iraq', u'govt', u'agenda'] [u'motorcyclist', u'pastor', u'make', u'nois', u'fine'] [u'move', u'apprentic', u'colleg', u'fee'] [u'movi', u'present', u'switch'] [u'outlin', u'board', u'renew', u'plan'] [u'nat', u'leader', u'tour', u'potenti', u'wast', u'dump', u'site'] [u'helmet', u'final', u'test', u'phase'] [u'live', u'treasur', u'announc'] [u'plane', u'boost', u'fli', u'doctor', u'effort'] [u'news', u'corp', u'announc'] [u'news', u'corp', u'brief', u'replac', u'adelaid'] [u'studi', u'show', u'peopl', u'need', u'exercis'] [u'tourist', u'ventur', u'mushroom', u'oberon'] [u'chang', u'water', u'restrict'] [u'conclus', u'iraqi', u'weapon', u'search'] [u'plan', u'iraq', u'troop', u'downer'] [u'rethink', u'like', u'ambul', u'station', u'site'] [u'foursom', u'ponder', u'earli', u'plea'] [u'face', u'major', u'drought', u'warn'] [u'deliv', u'deficit', u'mini', u'budget'] [u'govt', u'accus', u'land', u'clear', u'hypocrisi'] [u'offici', u'suspect', u'sixth', u'victim', u'madrid', u'suicid'] [u'nation', u'senat', u'launch', u'challeng', u'banana'] [u'oppon', u'want', u'brake', u'council', u'back', u'truck'] [u'pacif', u'forum', u'back', u'greater', u'role', u'secretari'] [u'pacif', u'island', u'special', u'summit', u'underway'] [u'pacif', u'leader', u'urg', u'address', u'declin', u'region'] [u'set', u'sight', u'gippsland'] [u'urg', u'reject', u'murray', u'report'] [u'point', u'nepean', u'marin', u'centr', u'announc'] [u'polic', u'appeal', u'belconnen', u'stab', u'wit'] [u'polic', u'crackdown', u'road', u'offenc', u'easter'] [u'polic', u'delay', u'attempt', u'seiz', u'moran', u'asset'] [u'polic', u'escort', u'drunken', u'groom', u'wed'] [u'polic', u'offic', u'admit', u'give', u'ecstasi', u'tablet'] [u'polic', u'prepar', u'easter', u'road', u'campaign'] [u'polic', u'warn', u'busi', u'chequ', u'scam'] [u'polic', u'motorcycl', u'crash', u'victim'] [u'politician', u'warn', u'criminalis', u'petrol'] [u'poll', u'confirm', u'labor', u'wrong', u'iraq'] [u'prison', u'worker', u'push', u'staff'] [u'probe', u'want', u'veteran', u'health', u'fund'] [u'project', u'aim', u'indigen', u'forest', u'job'] [u'public', u'ask', u'help', u'solv', u'arson', u'attack'] [u'public', u'servant', u'hold', u'revis', u'offer'] [u'public', u'support', u'call', u'jetstar', u'servic'] [u'qanta', u'announc', u'price', u'asian', u'airlin'] [u'qanta', u'paper', u'ticket', u'charg', u'outrag'] [u'qanta', u'charg', u'paper', u'ticket'] [u'quick', u'think', u'save', u'croc', u'attack', u'victim'] [u'rain', u'continu', u'caus', u'problem'] [u'rainfal', u'help', u'landhold'] [u'ranger', u'reopen'] [u'rann', u'spend', u'bridg', u'ven'] [u'ratepay', u'reject', u'council', u'domin', u'claim'] [u'refuge', u'protest', u'expect', u'sydney'] [u'report', u'suggest', u'blackout', u'recur'] [u'retir', u'trust', u'rail', u'age', u'care', u'fund'] [u'rey', u'ljungberg', u'boost', u'arsenal'] [u'riverland', u'slam', u'decis', u'delay', u'water', u'releas'] [u'road', u'group', u'launch', u'media', u'blitz', u'lead'] [u'ross', u'river', u'fever', u'take', u'grip', u'england'] [u'russian', u'guilti', u'spi'] [u'russian', u'politician', u'surviv', u'assassin'] [u'govt', u'unlik', u'adopt', u'murray', u'recommend'] [u'sale', u'outlook', u'month', u'survey'] [u'salin', u'action', u'plan', u'announc'] [u'santo', u'product', u'capac'] [u'schiavon', u'tumbl', u'amelia', u'island', u'event'] [u'schultz', u'back', u'feder', u'school', u'fund'] [u'seafood', u'industri', u'unhappi', u'illeg', u'fish'] [u'search', u'begin', u'miss', u'boati'] [u'seven', u'court', u'drug', u'charg'] [u'shaki', u'start', u'lankan'] [u'sharon', u'plan', u'total', u'gaza', u'pullout'] [u'singapor', u'airlin', u'open', u'fli', u'school'] [u'skill', u'lack', u'mean', u'product', u'gain', u'academ'] [u'sotico', u'stay', u'own'] [u'spain', u'increas', u'secur', u'despit', u'arrest'] [u'spain', u'step', u'secur', u'amid', u'terror', u'fear'] [u'lanka', u'swear'] [u'african', u'teenag', u'lose', u'shark', u'attack'] [u'sydney', u'murder', u'trial', u'hear', u'lie', u'alibi'] [u'tamil', u'tiger', u'threaten'] [u'govt', u'defend', u'school', u'statement'] [u'teen', u'court', u'wilcannia', u'murder', u'charg'] [u'thorp', u'back', u'qualif', u'fast', u'track'] [u'tokyo', u'get', u'astro'] [u'children', u'studi', u'find'] [u'toxic', u'leak', u'caus', u'skyscrap', u'evacu'] [u'train', u'firm', u'fin', u'million', u'london', u'crash'] [u'troop', u'recognis', u'solomon', u'mission'] [u'tugun', u'elect', u'issu'] [u'underworld', u'figur', u'want', u'bail', u'chang'] [u'hike', u'great', u'say', u'brack'] [u'union', u'criticis', u'forest', u'industri'] [u'dollar', u'climb', u'sign', u'job', u'recoveri'] [u'recognis', u'australian', u'soldier'] [u'warn', u'pakistan', u'continu', u'taliban', u'hunt'] [u'vecci', u'fear', u'redund', u'rule'] [u'govt', u'urg', u'lift', u'school'] [u'video', u'evid', u'trawl', u'yield', u'wrestl', u'charg'] [u'villawood', u'visitor', u'facil', u'upgrad'] [u'vote', u'rig', u'claim', u'worth', u'report', u'minist'] [u'properti', u'industri', u'call', u'chang', u'properti'] [u'water', u'merger', u'talk', u'delay', u'white', u'paper', u'nat'] [u'waugh', u'rafter', u'landi', u'live', u'treasur'] [u'western', u'prepar', u'easter', u'tourism'] [u'william', u'tip', u'judici', u'post'] [u'winemak', u'urg', u'shift', u'focus', u'local', u'market'] [u'report', u'mix', u'year', u'roxbi', u'down'] [u'youth', u'converg', u'quilpi', u'festiv'] [u'zarqawi', u'claim', u'respons', u'iraq', u'attack'] [u'abba', u'rule', u'reunion', u'price'] [u'aberdeen', u'resid', u'seek', u'probe', u'odour'] [u'accus', u'highway', u'fund'] [u'accus', u'fraudster', u'grant', u'judg', u'trial'] [u'decad', u'rwanda', u'commemor', u'genocid'] [u'afghan', u'polic', u'raid', u'heroin', u'lab', u'seiz', u'ton', u'opium'] [u'blue', u'need', u'proof', u'sack', u'drug', u'probe'] [u'agricultur', u'group', u'sheep', u'diseas'] [u'alic', u'spring', u'cross', u'countri', u'youth'] [u'ardmona', u'exec', u'rise'] [u'augusta', u'nation', u'hole', u'hole'] [u'augusta', u'provid', u'master', u'test'] [u'aust', u'dollar', u'gain'] [u'australia', u'appoint', u'ambassador', u'timor'] [u'australia', u'seek', u'extradit', u'alleg', u'peopl'] [u'beatti', u'accus', u'grandstand', u'tugun'] [u'bendigo', u'bundoora', u'share', u'fifth', u'faculti'] [u'bird', u'get', u'week', u'knee'] [u'black', u'mountain', u'school', u'seek', u'hold', u'teacher'] [u'bleak', u'outlook', u'age', u'care'] [u'blue', u'pair', u'catch', u'drug', u'scandal'] [u'collin', u'appoint', u'anangu', u'coordin'] [u'bodi', u'imag', u'inquiri', u'aim', u'help', u'young', u'peopl'] [u'bonlac', u'shed', u'cobden', u'job'] [u'boulder', u'crumbl', u'salin', u'land', u'care', u'group'] [u'hospit', u'highway', u'accid'] [u'bridg', u'chelsea', u'slay', u'gunner', u'jinx'] [u'broadband', u'deal', u'improv', u'access', u'region'] [u'break', u'hill', u'seek', u'better', u'servic'] [u'brumbi', u'coach', u'dump'] [u'brumbi', u'dump', u'nucifora'] [u'buffon', u'sign', u'deal', u'juve'] [u'disput', u'industri', u'relat'] [u'cancer', u'suffer', u'win', u'insur', u'discrimin', u'case'] [u'caravan', u'park', u'closur', u'caus', u'easter', u'headach'] [u'carlton', u'sack', u'angwin', u'keep', u'norman'] [u'casino', u'murwillumbah', u'rail', u'servic'] [u'central', u'highland', u'dri'] [u'cinema', u'propos', u'inveresk', u'agenda'] [u'citrus', u'grower', u'seek', u'help', u'fight', u'fruit'] [u'clark', u'convict', u'appeal', u'reject'] [u'cloud', u'grind', u'british', u'militari', u'chopper'] [u'coal', u'industri', u'surpris', u'royalti'] [u'coast', u'qualifi', u'feder', u'tourism', u'grant'] [u'coffin', u'poni', u'auction'] [u'commerci', u'fisher', u'protect'] [u'concern', u'lack', u'woman', u'eurobodalla', u'council'] [u'consum', u'confid', u'make', u'comeback'] [u'convict', u'russian', u'jail', u'year'] [u'cooma', u'compani', u'warn', u'illeg', u'worker'] [u'coron', u'investig', u'petrol', u'sniff', u'death'] [u'council', u'revok', u'contract', u'admin', u'centr'] [u'council', u'shake', u'prove', u'boon', u'year'] [u'countri', u'road', u'suffer', u'mini', u'budget', u'say'] [u'court', u'consid', u'royal', u'discrimin', u'case'] [u'crown', u'land', u'leas', u'arrang', u'chang'] [u'cyclist', u'mear', u'olymp'] [u'depart', u'merger', u'prompt', u'warn', u'job'] [u'diplomat', u'injur', u'burmes', u'embassi', u'attack'] [u'doubl', u'whammi', u'mini', u'budget', u'say', u'stoner'] [u'duaringa', u'mayor', u'swear', u'today'] [u'elliot', u'lose', u'convict', u'appeal'] [u'bank', u'experi', u'overcom', u'augusta'] [u'sight', u'parkvill', u'piggeri'] [u'essendon', u'appeal', u'lloyd', u'suspens'] [u'everton', u'accept', u'ferguson'] [u'expert', u'peril', u'arrest', u'plan'] [u'extra', u'traffic', u'expect', u'countri', u'road', u'easter'] [u'farmer', u'warn', u'complac'] [u'feder', u'govern', u'target', u'pacif', u'highway'] [u'feder', u'slam', u'state', u'rat'] [u'feder', u'offic', u'testifi', u'peopl', u'smuggl', u'case'] [u'flanagan', u'weir', u'master', u'pair', u'announc'] [u'black', u'jone', u'appoint', u'samoa', u'coach'] [u'foster', u'carer', u'want', u'wide'] [u'injur', u'school', u'photo', u'scaffold', u'collaps'] [u'fund', u'announc', u'grape', u'grower'] [u'ganguli', u'rejoin', u'india'] [u'quick', u'man', u'tell', u'hopoat'] [u'time', u'challeng', u'armstrong', u'ullrich'] [u'gold', u'coast', u'council', u'committe', u'undergo', u'shake'] [u'gold', u'mine', u'firm', u'optimist', u'discoveri'] [u'govt', u'revis', u'free', u'sport', u'list'] [u'govt', u'seek', u'advic', u'news', u'corp'] [u'greenpeac', u'wrap', u'styx', u'valley', u'protest'] [u'gulf', u'council', u'choos', u'mayor', u'lucki'] [u'gunnedah', u'mayor', u'seek', u'term'] [u'hagan', u'make', u'chang', u'warrior', u'match'] [u'hanson', u'embark', u'speak', u'tour'] [u'health', u'servic', u'seek', u'minimis', u'impact', u'save'] [u'hewitt', u'make', u'stawel', u'histori'] [u'high', u'hop', u'starcraft', u'derbi'] [u'hous', u'boom', u'prompt', u'council', u'assist'] [u'hous', u'slug', u'unnecessari', u'say'] [u'hunter', u'salin', u'scheme', u'extend'] [u'hunt', u'cape', u'york', u'croc'] [u'hurst', u'set', u'sight', u'melbourn'] [u'hussey', u'cricket', u'boss', u'bevan'] [u'illawarra', u'busi', u'chamber', u'happi', u'budget'] [u'indigen', u'artist', u'promot', u'reconcili', u'mural'] [u'inquest', u'open', u'boat', u'death'] [u'rat', u'steadi'] [u'iran', u'agre', u'nuclear', u'inspect', u'timet'] [u'iran', u'begin', u'construct', u'work', u'heavi', u'water'] [u'adopt', u'world', u'anti', u'dope', u'agenc', u'code'] [u'ironman', u'hurst', u'target', u'melbourn', u'olymp'] [u'itali', u'host', u'black', u'novemb'] [u'sack', u'angwin'] [u'japanes', u'shrine', u'visit'] [u'hit', u'jackpot'] [u'kimberley', u'farmer', u'consid', u'centralis', u'pack', u'shed'] [u'landcar', u'chang', u'caus', u'concern', u'wheatbelt'] [u'latham', u'ask', u'west'] [u'latham', u'attack', u'howard', u'foreign', u'polici'] [u'lion', u'confid', u'sponsorship', u'law'] [u'locust', u'threat', u'subsid'] [u'arrest', u'drug', u'bust'] [u'fin', u'sell', u'jarrah', u'log'] [u'man', u'death', u'renew', u'call', u'perman', u'doctor'] [u'sentenc', u'stab', u'wife'] [u'walk', u'free', u'rule', u'trial'] [u'mareeba', u'anim', u'park', u'anim'] [u'mcewen', u'davi'] [u'melbourn', u'driver', u'lock'] [u'meninde', u'health', u'project', u'move', u'ahead'] [u'mexican', u'woman', u'perform', u'caesarean'] [u'mildura', u'channel', u'project', u'ahead'] [u'mini', u'budget', u'caus', u'concern', u'region'] [u'mini', u'budget', u'provid', u'extra', u'rail', u'fund'] [u'molik', u'move', u'florida'] [u'monaco', u'stun', u'real', u'madrid', u'reach', u'semi', u'final'] [u'assist', u'need', u'iraq', u'democrat'] [u'shire', u'drought', u'list'] [u'talk', u'bundi', u'hospit'] [u'uranium', u'worker', u'report', u'ill'] [u'mum', u'rejoic', u'chocol', u'crave', u'good', u'babi'] [u'music', u'sale', u'plung', u'fourth', u'year', u'run'] [u'appoint', u'auditor'] [u'navratilova', u'lose', u'singl', u'comeback'] [u'locust', u'outbreak', u'possibl'] [u'marin', u'stinger'] [u'news', u'corp', u'news', u'push', u'market', u'higher'] [u'strategi', u'combat', u'homeless'] [u'nhill', u'hospit', u'revamp', u'begin'] [u'nimmitabel', u'frustrat', u'water', u'restrict'] [u'ningaloo', u'marin', u'park', u'extent', u'applaud'] [u'norri', u'head', u'mount', u'alexand', u'council'] [u'northern', u'territori', u'showcas', u'tourism', u'award'] [u'seek', u'privat', u'fund', u'carriag'] [u'move', u'clarifi', u'seab', u'ownership'] [u'oneil', u'warn', u'celt', u'villarr', u'real', u'deal'] [u'oper', u'confid', u'uranium', u'open'] [u'pakistan', u'resolv', u'fight', u'terror'] [u'patch', u'like', u'reclaim', u'crow', u'nest', u'mayoralti'] [u'patel', u'fin', u'dissent'] [u'pathan', u'lead', u'indian', u'fightback'] [u'petch', u'seek', u'opportun'] [u'petrol', u'help', u'crime', u'arnhem', u'land'] [u'petrol', u'price', u'hike', u'expect', u'easter'] [u'piranha', u'loos', u'berlin', u'pet', u'pool'] [u'player', u'charg', u'wrestl'] [u'player', u'fin', u'wrestl'] [u'announc', u'famili', u'packag'] [u'polic', u'investig', u'fatal', u'accid'] [u'polic', u'issu', u'easter', u'road', u'messag'] [u'polic', u'quiet', u'gangland', u'claim'] [u'polic', u'seek', u'assault'] [u'polic', u'seek', u'miss', u'rocki', u'girl'] [u'polic', u'examin', u'vote', u'rig', u'claim'] [u'polic', u'warn', u'motorist', u'break', u'easter'] [u'politician', u'push', u'murray', u'flow'] [u'price', u'fix', u'land', u'compani', u'fine'] [u'primari', u'industri', u'merger', u'mean', u'loss', u'say'] [u'produc', u'fear', u'diseas', u'outbreak', u'west'] [u'raider', u'fin', u'goal', u'kick', u'time', u'limit', u'breach'] [u'rail', u'servic', u'disrupt', u'upgrad'] [u'real', u'estat', u'welcom', u'stamp', u'duti', u'chang'] [u'count', u'tweed', u'shire'] [u'cross', u'defend', u'hepat', u'test', u'polici'] [u'renmark', u'polic', u'heel', u'arsonist'] [u'research', u'close', u'jellyfish', u'anti', u'venom'] [u'research', u'solv', u'year', u'mysteri'] [u'road', u'tragedi', u'rememb', u'servic'] [u'rocket', u'readi', u'space', u'race'] [u'rower', u'athen', u'appeal'] [u'sanctuari', u'anim', u'face', u'uncertain', u'futur'] [u'seachang', u'stress', u'servic', u'infrastructur', u'studi'] [u'sentenc', u'reduc', u'woman', u'hitman'] [u'septemb', u'accus', u'free', u'pend', u'retrial'] [u'call', u'divert'] [u'sheep', u'saleyard', u'ahead', u'northam'] [u'shiit', u'cleric', u'move', u'sacr', u'shrine'] [u'shoalhaven', u'council', u'decid'] [u'simpson', u'recount', u'request', u'success'] [u'soccer', u'player', u'jail', u'assault'] [u'south', u'east', u'tourism', u'get', u'book', u'fund'] [u'southern', u'cross', u'undecid', u'increas', u'debat'] [u'stoner', u'say', u'tree', u'sacr'] [u'streak', u'ongo', u'talk', u'zimbabw', u'offici'] [u'studi', u'back', u'benefit', u'regular', u'ejacul'] [u'super', u'ax', u'govt', u'revis', u'free', u'sport'] [u'survey', u'help', u'sustain', u'prawn', u'fisheri'] [u'sydney', u'solicitor', u'shoot', u'baffl', u'polic'] [u'tank', u'brim', u'water', u'plan', u'longreach'] [u'tara', u'chinchilla', u'drought', u'list'] [u'parliament', u'acknowledg', u'tradit', u'owner'] [u'telstra', u'optus', u'face', u'internet'] [u'telstra', u'group'] [u'thailand', u'threaten', u'iraqi', u'deploy'] [u'thai', u'polic', u'arrest', u'alleg', u'peopl', u'smuggler'] [u'thai', u'star', u'paradorn', u'report', u'draft'] [u'appear', u'court', u'wilcannia', u'death'] [u'kill', u'mexico', u'flash', u'flood'] [u'townsvill', u'wait', u'list', u'get', u'whittl'] [u'tuna', u'fishermen', u'industri', u'rescu', u'packag'] [u'dead', u'warwick', u'crash'] [u'union', u'breakthrough', u'forestri', u'negoti'] [u'label', u'sadr', u'follow', u'gangster'] [u'look', u'report', u'fallujah', u'mosqu', u'attack'] [u'marin', u'kill', u'ramadi', u'attack'] [u'resolv', u'unshak', u'iraq'] [u'vow', u'destroy', u'mehdi', u'armi'] [u'govt', u'defend', u'fund', u'region', u'librari'] [u'polic', u'head', u'defend', u'holiday'] [u'vote', u'rig', u'alleg', u'continu'] [u'crime', u'prosecutor', u'call', u'help', u'arrest'] [u'warn', u'issu', u'feed', u'fraser', u'dingo'] [u'seek', u'protect', u'doctor', u'frivol', u'claim'] [u'whitsunday', u'hop', u'bumper', u'easter'] [u'wit', u'deni', u'knowledg', u'polic', u'import', u'heroin'] [u'woman', u'die', u'head', u'collis'] [u'woman', u'die', u'newcastl', u'crash'] [u'woman', u'escap', u'hous'] [u'woman', u'grant', u'bail', u'belconnen', u'stab'] [u'woman', u'injur', u'attack'] [u'woman', u'reach', u'halfway', u'point', u'marathon', u'chariti'] [u'work', u'begin', u'blackal', u'age', u'care', u'facil'] [u'world', u'fail', u'rwanda', u'annan', u'say'] [u'youth', u'front', u'court', u'bomb', u'plot'] [u'accc', u'uncov', u'price', u'fix', u'weight', u'loss', u'firm'] [u'account', u'admit', u'transfer'] [u'accus', u'falconio', u'murder', u'admit', u'hospit'] [u'opposit', u'propos', u'posit', u'discrimin'] [u'buy', u'vic', u'biggest', u'electr', u'generat'] [u'alga', u'warn', u'lake', u'mulwala'] [u'anderson', u'announc', u'fund', u'famili'] [u'anti', u'corrupt', u'move', u'say', u'mildura'] [u'appeal', u'driver', u'care'] [u'appeal', u'overturn', u'lloyd', u'suspens'] [u'appeal', u'train', u'spot', u'tenni'] [u'archer', u'gather', u'championship', u'charlevill'] [u'asian', u'presid', u'move', u'gold', u'teeth'] [u'astronom', u'track', u'milki', u'star'] [u'athen', u'olymp', u'secur', u'schedul'] [u'atom', u'laser', u'assembl', u'canberra'] [u'atsic', u'challeng', u'govt', u'high', u'court'] [u'australian', u'share', u'close', u'lower', u'ahead', u'easter'] [u'australia', u'second', u'seed', u'world'] [u'author', u'snare', u'alleg', u'bird', u'smuggler'] [u'bacteri', u'infect', u'neonat', u'nurseri'] [u'bankruptci', u'hang', u'sandon', u'point', u'oppon'] [u'beach', u'patrol', u'boost', u'easter'] [u'bomber', u'launch', u'lloyd', u'appeal'] [u'bond', u'astl', u'black', u'cap'] [u'bream', u'fingerl', u'releas', u'gippsland', u'lake'] [u'brisban', u'soccer', u'player', u'jail', u'assault'] [u'british', u'jail', u'steal', u'clean', u'return'] [u'bronco', u'fight', u'point', u'penalti'] [u'bronco', u'fight', u'point', u'penalti'] [u'brown', u'water', u'blame', u'pipelin', u'deposit'] [u'disput', u'head'] [u'cahil', u'go', u'hero', u'zero', u'millwal'] [u'commission', u'investig', u'hospit'] [u'camper', u'warn', u'practic', u'safeti'] [u'canegrow', u'send', u'emot', u'video'] [u'central', u'australian', u'woman', u'win', u'year'] [u'chechen', u'woman', u'jail', u'attempt', u'bomb', u'attack'] [u'childer', u'hostel', u'open'] [u'clark', u'seek', u'salari'] [u'clark', u'tell', u'govt'] [u'climatologist', u'forecast', u'possibl', u'return', u'nino'] [u'coff', u'work', u'scheme', u'remain', u'schedul', u'govt'] [u'competit', u'tight', u'best'] [u'compo', u'payout', u'forc', u'council', u'polici', u'chang'] [u'concern', u'time', u'frame', u'spam', u'implement'] [u'countri', u'rail', u'servic', u'fail', u'say', u'opposit'] [u'court', u'clear', u'doctor', u'babi', u'brain', u'damag'] [u'crock', u'cook', u'hell', u'north'] [u'croc', u'crawford', u'free', u'list'] [u'croc', u'lose', u'crawford'] [u'crow', u'nest', u'result', u'challeng'] [u'defeat', u'qaeda', u'prioriti', u'bush', u'rice'] [u'democrat', u'fear', u'iranian', u'deporte', u'safeti'] [u'dentist', u'renew', u'soft', u'drink', u'warn'] [u'depor', u'say', u'possibl', u'shock'] [u'depor', u'shock', u'milan', u'champ', u'leagu', u'semi'] [u'disabl', u'group', u'herald', u'insur', u'rule'] [u'domin', u'ferrari', u'better', u'warn', u'brawn'] [u'dysfunct', u'famili', u'makeov', u'chariti'] [u'economist', u'creation', u'boost'] [u'esso', u'staff', u'return', u'work'] [u'explor', u'expand', u'north', u'west'] [u'fallujah', u'remain', u'flashpoint', u'iraq', u'unrest'] [u'fear', u'pole', u'revers', u'take', u'year', u'studi'] [u'festiv', u'expect', u'turnout'] [u'fight', u'save', u'qanta', u'servic', u'take'] [u'damag', u'wangaratta', u'home'] [u'destroy', u'nambour', u'home'] [u'fish', u'limit', u'enforc', u'easter'] [u'fitzgerald', u'inquiri', u'whistleblow', u'die'] [u'fourteen', u'kill', u'brazil', u'drug', u'violenc'] [u'french', u'minist', u'call', u'rwandan', u'accus'] [u'galleri', u'showcas', u'wide', u'talent'] [u'geraldton', u'oper', u'seek', u'daili', u'flight', u'perth'] [u'gibbon', u'join', u'fight', u'import'] [u'gibson', u'film', u'good', u'easter', u'say', u'bishop'] [u'govt', u'admit', u'defici', u'esper', u'lock'] [u'govt', u'block', u'sale', u'port', u'macquari', u'hospit'] [u'govt', u'offer', u'burn', u'fenc', u'grant', u'string', u'attach'] [u'govt', u'seek', u'boost', u'doctor', u'number', u'bush'] [u'govt', u'help', u'control', u'farmer'] [u'grain', u'silo', u'face', u'closur'] [u'greek', u'turkish', u'cypriot', u'urg', u'reject', u'peac', u'plan'] [u'green', u'senat', u'head', u'iraq', u'ahead', u'handov'] [u'gregan', u'bench', u'player', u'reject', u'role', u'nucifora'] [u'harrington', u'pit', u'luck', u'irish', u'master', u'jinx'] [u'health', u'job', u'safe', u'despit', u'budget', u'overrun'] [u'hird', u'face', u'umpir', u'outburst'] [u'holiday', u'book', u'strong', u'coast'] [u'hop', u'continu', u'power', u'suppli'] [u'hors', u'mogul', u'sangster', u'die'] [u'hospit', u'chief', u'reject', u'claim'] [u'hostag', u'crisi', u'unfold', u'iraq'] [u'howard', u'welcom', u'jobless', u'figur'] [u'hummingbird', u'sticki', u'beak', u'bend'] [u'readi', u'youngest', u'test', u'skipper', u'say', u'taibu'] [u'inquest', u'child', u'death', u'start', u'hobart'] [u'iraqi', u'cleric', u'condemn', u'handl', u'shiit'] [u'iraq', u'verg', u'civil', u'blix'] [u'iraq', u'cost', u'liber', u'presid'] [u'iraq', u'interior', u'minist', u'resign'] [u'iraq', u'violenc', u'spook', u'investor'] [u'irrig', u'issu', u'delay', u'chees', u'fruit', u'drink'] [u'japanes', u'wont', u'seek', u'term'] [u'jewelleri', u'put', u'twinkl'] [u'kerri', u'mear', u'miss', u'game'] [u'land', u'council', u'elect', u'delay'] [u'landhold', u'urg', u'watch', u'locust', u'hatch'] [u'landmin', u'kill', u'polic', u'india'] [u'latham', u'warn', u'get', u'bog', u'iraq'] [u'lion', u'pie', u'grand', u'final', u'match'] [u'lismor', u'benefit', u'famili', u'packag'] [u'local', u'worker', u'employ', u'detent'] [u'lynch', u'star', u'lion', u'pummel', u'pie'] [u'magnific', u'seven', u'chase', u'green', u'jacket'] [u'charg', u'attempt', u'milkbar', u'holdup'] [u'free', u'jail', u'amid', u'claim', u'polic'] [u'jail', u'life', u'vicious', u'murder'] [u'martin', u'aim', u'fertilis', u'balanc'] [u'master', u'shift', u'start', u'hole', u'play', u'format'] [u'mayor', u'seek', u'attract', u'busi', u'barcaldin'] [u'media', u'mogul', u'star', u'hollywood', u'sidewalk'] [u'minist', u'stand', u'hospit', u'woman', u'dead'] [u'mix', u'reaction', u'power', u'ombudsman'] [u'molik', u'continu', u'florida', u'march'] [u'montoya', u'dont', u'regret', u'sign', u'struggl'] [u'mozzi', u'sprayer', u'hop', u'fine', u'weather'] [u'nepal', u'maoist', u'kill', u'policemen', u'abduct', u'raid'] [u'council', u'offic', u'need', u'say', u'mcclure'] [u'dive', u'wreck', u'delay'] [u'law', u'weed', u'crimin', u'bouncer'] [u'leader', u'elect', u'riverina', u'council'] [u'nielsen', u'name', u'nbls'] [u'opposit', u'say', u'countrylink', u'slow', u'driver'] [u'vice', u'chancellor', u'quit', u'disput'] [u'govt', u'promis', u'road', u'spend', u'budget', u'boost'] [u'mine', u'compani', u'notic', u'water'] [u'opposit', u'welcom', u'fraser', u'comment', u'iraq'] [u'optus', u'telstra', u'reach', u'agreement', u'campaign'] [u'grower', u'warn', u'salin'] [u'pagan', u'play', u'impact', u'angwin', u'ax'] [u'pakistan', u'level', u'test', u'seri'] [u'pakistan', u'prepar', u'fresh', u'taliban', u'assault'] [u'pakistan', u'push', u'seri', u'level'] [u'palestinian', u'hurt', u'west', u'bank', u'barrier', u'protest'] [u'founder', u'face', u'legal', u'action'] [u'parent', u'launch', u'legal', u'action', u'fatal', u'longford'] [u'perman', u'doctor', u'norseman', u'unlik'] [u'peta', u'use', u'murder', u'case', u'anti', u'meat'] [u'petrol', u'hike', u'tip', u'easter'] [u'player', u'reject', u'role', u'nucifora', u'sack'] [u'childcar', u'plan', u'attempt', u'counter', u'latham'] [u'hit', u'vietnam', u'comparison'] [u'polic', u'appeal', u'help', u'find', u'miss', u'fertilis'] [u'polic', u'appeal', u'help', u'doubl', u'murder', u'case'] [u'polic', u'detain', u'singh', u'murder', u'suspect'] [u'polic', u'estim', u'cannabi', u'haul', u'million'] [u'polic', u'investig', u'adelaid', u'shoot'] [u'polic', u'investig', u'juvenil', u'prison', u'claim'] [u'polic', u'stop', u'car', u'prevent', u'accid'] [u'polic', u'wont', u'rule', u'terrorist', u'link', u'miss'] [u'politician', u'impress', u'regener', u'gum'] [u'pont', u'name', u'world', u'lead', u'cricket'] [u'porto', u'eas', u'semi', u'final'] [u'probe', u'kurri', u'kurri', u'rezon', u'caus', u'concern'] [u'punter', u'spend', u'patrick', u'meet'] [u'rail', u'link', u'save', u'communiti', u'action', u'lobbyist'] [u'rain', u'fail', u'eas', u'eurobodalla', u'water', u'restrict'] [u'rat', u'decis', u'good', u'news', u'produc'] [u'record', u'cannabi', u'haul', u'polic'] [u'region', u'rail', u'servic', u'threat', u'green'] [u'resid', u'voic', u'concern', u'green', u'wast'] [u'rhino', u'cruelti', u'hear', u'continu'] [u'rice', u'testimoni', u'broadcast', u'live'] [u'robert', u'minist', u'odd', u'hospit', u'comment'] [u'rough', u'sea', u'caus', u'emerg', u'rescu'] [u'roundabout', u'firm', u'best', u'option', u'ballarat', u'black'] [u'rumsfeld', u'deni', u'iraq', u'control'] [u'fertilis', u'shortag', u'avert'] [u'school', u'photo', u'accid', u'describ', u'unpreced'] [u'scott', u'name', u'european', u'tour', u'player', u'month'] [u'shark', u'lash', u'bird', u'suspens'] [u'shiit', u'fighter', u'spoil', u'caus', u'downer'] [u'skandia', u'look', u'brisban', u'gladston', u'record'] [u'smith', u'front', u'court', u'assault', u'charg'] [u'smithton', u'plan', u'servic', u'child', u'victim'] [u'socceroo', u'skipper', u'moor', u'rest', u'season'] [u'speed', u'camera', u'forc', u'south', u'easter'] [u'lanka', u'uncap', u'player', u'zimbabw'] [u'stephen', u'seek', u'lower', u'hous'] [u'takeov', u'battl', u'heat'] [u'tamworth', u'eas', u'water', u'restrict'] [u'task', u'forc', u'consid', u'improv', u'treatment'] [u'teacher', u'worri', u'educ', u'cut'] [u'tension', u'emerg', u'mackay', u'council'] [u'terrorist', u'tri', u'drive', u'japanes', u'troop'] [u'thai', u'tenni', u'paradorn', u'escap', u'nation', u'servic'] [u'tourism', u'oper', u'seek', u'replic', u'easter', u'appeal'] [u'tourist', u'expect', u'flock', u'easter', u'festiv'] [u'chief', u'reveal', u'anti', u'genocid', u'measur'] [u'union', u'warn', u'olymp', u'rush', u'put', u'live', u'risk'] [u'unit', u'group', u'aim', u'rail', u'contract'] [u'annoy', u'releas', u'sept', u'suspect'] [u'call', u'shiit', u'cleric', u'turn'] [u'claim', u'iraq', u'insurg', u'kill', u'bodi'] [u'defend', u'mosqu', u'attack'] [u'general', u'say', u'quick', u'upris'] [u'give', u'licenc', u'commerci', u'space', u'flight'] [u'troop', u'battl', u'rebel', u'iraq'] [u'senat', u'split', u'iraq'] [u'warn', u'muslim', u'mosqu', u'launch'] [u'victoria', u'back', u'watchdog', u'power'] [u'forestri', u'fund', u'criteria'] [u'walgett', u'polic', u'probe', u'cattl', u'theft'] [u'opposit', u'warn', u'bypass', u'rout', u'sale'] [u'parliament', u'torch', u'flag', u'burn'] [u'resourc', u'sector', u'worth', u'report'] [u'bounc', u'premier', u'leagu', u'titl', u'say'] [u'wild', u'thing', u'pictur', u'calm', u'augusta'] [u'woman', u'die', u'emerg', u'room', u'toilet'] [u'xstrata', u'slam', u'govt', u'coal', u'royalti'] [u'yahoo', u'sale', u'profit', u'soar'] [u'zimbabw', u'player', u'crisi', u'meet'] [u'urg', u'state', u'join', u'network'] [u'algerian', u'leader', u'elect', u'landslid'] [u'qaeda', u'threat', u'spain', u'tap'] [u'angler', u'hook', u'fish', u'prize'] [u'arafat', u'seek', u'releas', u'palestinian', u'hold', u'iraq'] [u'arsenal', u'saint', u'keeper', u'niemi'] [u'kill', u'lanka', u'battl'] [u'blast', u'hear', u'baghdad', u'sign', u'bomb'] [u'bomb', u'attack', u'plan', u'rome', u'report'] [u'breed', u'bilbi', u'readi', u'releas'] [u'british', u'hostag', u'free', u'iraq'] [u'british', u'polic', u'charg', u'bomb', u'plot', u'suspect'] [u'british', u'politician', u'want', u'parliament', u'recal'] [u'bronco', u'gain', u'half', u'time', u'advantag'] [u'bronco', u'lose', u'kelli', u'good', u'friday', u'clash'] [u'bronco', u'roll', u'rooster'] [u'bronco', u'good', u'rooster'] [u'brumbi', u'half', u'bonus', u'point'] [u'brumbi', u'thump', u'highland'] [u'compani', u'driver'] [u'celtic', u'hold', u'marseill', u'edg', u'inter'] [u'cheekbon', u'fractur', u'sidelin', u'wakelin'] [u'church', u'seek', u'reignit', u'easter', u'passion'] [u'warn', u'franc', u'bomb', u'threat'] [u'warn', u'pari', u'rail', u'threat', u'polic'] [u'clear', u'channel', u'dump', u'howard', u'stern'] [u'communiti', u'group', u'say', u'develop', u'pose', u'health', u'risk'] [u'confus', u'ceasefir', u'fallujah'] [u'cop', u'want', u'dead', u'say', u'underworld', u'figur'] [u'death', u'toll', u'mexican', u'flood'] [u'debra', u'mess', u'give', u'birth'] [u'democrat', u'church', u'urg', u'vanston', u'deport'] [u'democrat', u'slam', u'secret', u'deport'] [u'dimarco', u'sink', u'rare', u'master'] [u'dive', u'trial', u'decid', u'olymp', u'select'] [u'downer', u'back', u'japanes', u'hostag', u'respons'] [u'easter', u'holiday', u'caus', u'traffic', u'congest'] [u'elder', u'woman', u'dead', u'home'] [u'england', u'look', u'histor', u'clean', u'sweep'] [u'car', u'forc', u'slow'] [u'factori', u'caus', u'damag'] [u'heartach', u'injur', u'muscat'] [u'scupper', u'rear', u'wing', u'plan'] [u'fierc', u'battl', u'rage', u'iraq', u'amid', u'hostag', u'drama'] [u'cypriot', u'tomb'] [u'forestri', u'debat', u'prompt', u'japanes', u'action'] [u'gaza', u'withdraw', u'allow', u'palestinian', u'poll'] [u'gold', u'remain', u'elus', u'elder', u'prospector'] [u'govt', u'drop', u'convent', u'centr', u'plan'] [u'govt', u'releas', u'medicar', u'plus', u'figur'] [u'govt', u'say', u'dole', u'claim'] [u'green', u'senat', u'look', u'earli', u'iraq', u'elect'] [u'heavi', u'fight', u'continu', u'najaf'] [u'highland', u'rag', u'snub'] [u'human', u'skelet', u'remain'] [u'iraqi', u'relief', u'column', u'run', u'coalit', u'blockad'] [u'israel', u'charg', u'jazeera', u'correspond'] [u'japanes', u'ralli', u'call', u'troop', u'withdraw'] [u'joyc', u'plea', u'publish', u'sell', u'auction'] [u'judah', u'see', u'spink', u'road', u'tszyu'] [u'kidnap', u'increas', u'pressur', u'japanes'] [u'latham', u'signal', u'extra', u'fund'] [u'latham', u'support', u'stamp', u'duti', u'overhaul'] [u'lawnmow', u'blame', u'bonni', u'doon'] [u'lawyer', u'receiv', u'death', u'threat'] [u'lawyer', u'offer', u'support', u'colleagu', u'receiv'] [u'critic', u'injur', u'fight'] [u'dead', u'hawaii', u'shark', u'attack'] [u'hold', u'elder', u'woman', u'death'] [u'kill', u'farmhous', u'sieg'] [u'medic', u'evacu', u'flight', u'dispatch', u'antarct'] [u'melbourn', u'water', u'reserv', u'drop'] [u'milan', u'european', u'failur', u'plant', u'seed', u'self', u'doubt'] [u'miss', u'angler'] [u'moment', u'reckon', u'beckham', u'real'] [u'mourner', u'unit', u'prayer', u'gather'] [u'nasa', u'extend', u'mar', u'robot', u'mission'] [u'nettl', u'cancel', u'trip', u'iraq'] [u'drug', u'approach', u'fight', u'dead', u'heart', u'rhythm'] [u'iraqi', u'interior', u'minist', u'secur', u'chief', u'name'] [u'virus', u'put', u'murray', u'popul', u'risk'] [u'silver', u'bullet', u'avert', u'sept', u'attack', u'rice'] [u'opposit', u'wad', u'iraq', u'troop', u'debat'] [u'injur', u'bulgarian', u'attack'] [u'pakistan', u'skipper', u'hit', u'critic'] [u'brother', u'fail', u'boar', u'audienc'] [u'polic', u'investig', u'hardwar', u'store', u'robberi'] [u'polic', u'distress', u'beacon', u'prank'] [u'polic', u'search', u'bushland', u'evid', u'bone'] [u'polic', u'search', u'miss', u'fish', u'parti'] [u'polic', u'uncov', u'backyard', u'cannabi', u'crop'] [u'properti', u'group', u'claim', u'easter', u'trade', u'law', u'unfair'] [u'rain', u'interrupt', u'davenport', u'molik', u'match'] [u'ranieri', u'plot', u'arsenal', u'downfal'] [u'razzaq', u'moin', u'miss', u'decid', u'test'] [u'rebel', u'faction', u'fight', u'break', u'lanka'] [u'releas', u'hostag', u'japan', u'demand'] [u'resid', u'start', u'flee', u'fallujah', u'wit'] [u'rice', u'testimoni', u'anger', u'sept', u'victim', u'famili'] [u'rome', u'church', u'open', u'centuri', u'rubbl'] [u'rise', u'bloom', u'tiger', u'wilt', u'augusta'] [u'rise', u'set', u'master', u'pace'] [u'speed', u'camera', u'worri', u'polic'] [u'scott', u'close', u'miss', u'master'] [u'sept', u'team', u'seek', u'classifi', u'memo'] [u'shiit', u'radic', u'kill', u'british', u'soldier', u'polic'] [u'spencer', u'spark', u'blue', u'stamped', u'bull'] [u'lankan', u'rebel', u'faction', u'clash'] [u'state', u'miss', u'fertilis', u'sale', u'deadlin'] [u'streak', u'zimbabw', u'cricket', u'bodi'] [u'sydney', u'builder', u'refus', u'bail', u'follow', u'cannabi', u'haul'] [u'terror', u'expert', u'welcom', u'restrict'] [u'thailand', u'reconsid', u'troop', u'deploy', u'iraq'] [u'kill', u'fijian', u'storm'] [u'toddler', u'fall', u'window'] [u'toil', u'tiger', u'shot', u'pace'] [u'british', u'cyclist', u'implic', u'dope', u'scandal'] [u'toronto', u'congress', u'squar', u'crow', u'fight'] [u'town', u'pay', u'tribut', u'olymp', u'hero'] [u'tractor', u'buff', u'plough', u'forward', u'world', u'record'] [u'kill', u'road', u'easter', u'holiday', u'begin'] [u'loud', u'explos', u'rock', u'central', u'baghdad'] [u'deni', u'report', u'soldier', u'kill', u'iraq'] [u'student', u'welcom', u'vice', u'chancellor', u'resign'] [u'alli', u'mount', u'pressur', u'leav', u'iraq'] [u'armi', u'recaptur'] [u'forc', u'retak', u'shiit', u'town', u'iraq'] [u'halt', u'offens', u'oper', u'fallujah'] [u'evacu', u'ail', u'antarct', u'worker'] [u'video', u'warn', u'spain', u'withdraw', u'iraq', u'afghanistan'] [u'anti', u'hoon', u'law', u'pass', u'lower', u'hous'] [u'green', u'urg', u'govt', u'feder', u'labor', u'kyoto'] [u'warlord', u'forc', u'overrun', u'northern', u'afghan', u'citi'] [u'watson', u'play', u'despit', u'death', u'long', u'time', u'caddi'] [u'wenger', u'ralli', u'gunner', u'week', u'setback'] [u'wildlif', u'sanctuari', u'owner', u'want', u'exot', u'anim'] [u'woman', u'go', u'extrem', u'measur'] [u'confirm', u'streak', u'sack'] [u'stubbi', u'lose', u'beer', u'blaze'] [u'footag', u'show', u'iraqi', u'guerrilla', u'hostag'] [u'accur', u'roo', u'half', u'time', u'lead'] [u'author', u'issu', u'dead', u'mushroom', u'warn'] [u'carniv', u'kick', u'alic'] [u'jazeera', u'team', u'target'] [u'work', u'play'] [u'anim', u'right', u'group', u'target', u'diva', u'beyonc'] [u'answer', u'seek', u'privat', u'armi', u'iraq'] [u'appeal', u'rais', u'royal', u'children', u'hospit'] [u'aussi', u'struggl', u'pari', u'roubaix', u'start', u'line'] [u'beer', u'spill', u'clean', u'begin', u'truck'] [u'band', u'arriv'] [u'blast', u'rattl', u'baghdad', u'wit'] [u'bomb', u'explod', u'thailand', u'travel', u'warn'] [u'british', u'secur', u'guard', u'shoot', u'dead', u'iraq'] [u'bush', u'expect', u'releas', u'terrorist', u'memo'] [u'cheney', u'japan', u'hostag', u'crisi', u'unfold'] [u'cheney', u'urg', u'alli', u'stay', u'iraq'] [u'civilian', u'flee', u'violenc', u'lanka'] [u'clash', u'continu', u'fallujah'] [u'cleric', u'tell', u'bush', u'iraq', u'face'] [u'cowboy', u'break', u'lose', u'streak'] [u'davenport', u'power', u'semi', u'final'] [u'dutch', u'protest', u'expuls', u'refuge'] [u'duyfken', u'replica', u'swan', u'river', u'voyag'] [u'easter', u'beachgoer', u'warn', u'swim'] [u'easter', u'road', u'toll', u'rise'] [u'easter', u'road', u'toll', u'rise'] [u'embattl', u'cofidi', u'pull', u'pari', u'roubaix'] [u'extra', u'bus', u'need', u'handl', u'sydney', u'derbi'] [u'famili', u'packag', u'wont', u'boost', u'minist'] [u'go', u'hunger', u'strike'] [u'fergi', u'ask', u'eriksson', u'pick', u'brown'] [u'figur', u'reveal', u'china', u'economi', u'gallop', u'ahead'] [u'firefight', u'keep', u'busi', u'adelaid'] [u'goldman', u'sach', u'economist', u'jail'] [u'french', u'seiz', u'prehistor', u'artefact'] [u'goanna', u'jerk', u'replac', u'cane', u'toad', u'race'] [u'goodwin', u'fear', u'zimbabw', u'futur'] [u'govt', u'block', u'judg', u'rise'] [u'govt', u'urg', u'review', u'math', u'teach', u'method'] [u'henri', u'trick', u'give', u'arsenal', u'record'] [u'hill', u'reveal', u'explos', u'ammo', u'steal', u'defenc'] [u'howard', u'stand', u'firm', u'iraq'] [u'human', u'right', u'activist', u'say', u'situat', u'iraq'] [u'human', u'right', u'group', u'atroc', u'rife', u'chechnya'] [u'hundr', u'march', u'refuge', u'protest'] [u'indonesian', u'presid', u'hold', u'slim', u'lead', u'vote', u'count'] [u'injuri', u'plagu', u'pakistan', u'lose', u'decid'] [u'intern', u'observ', u'prais', u'algerian', u'vote'] [u'iraq', u'death', u'toll', u'hit', u'bush', u'poll'] [u'iraq', u'turmoil', u'anniversari', u'saddam', u'fall'] [u'italian', u'arriv', u'iraq'] [u'japan', u'make', u'littl', u'progress', u'win', u'hostag'] [u'japan', u'meat', u'processor', u'aust', u'beef', u'boost'] [u'japan', u'work', u'hostag', u'releas'] [u'jet', u'intercept', u'plane', u'near', u'bush', u'ranch'] [u'john', u'hospitalis', u'blood', u'clot'] [u'jone', u'england', u'test', u'debut'] [u'knight', u'come', u'life', u'warrior'] [u'latham', u'warn', u'team', u'lift', u'game'] [u'societi', u'want', u'rise', u'judg'] [u'magnific', u'seven', u'reduc'] [u'injur', u'sand', u'toboggan'] [u'master', u'pair'] [u'mcgee', u'make', u'olymp', u'intent', u'clear'] [u'melbourn', u'lead', u'sydney', u'freight', u'export'] [u'milit', u'escap', u'philippin', u'jail'] [u'mix', u'result', u'aussi', u'rise', u'retain', u'lead'] [u'mortar', u'round', u'land', u'near', u'baghdad', u'hotel'] [u'mushtaq', u'strive', u'test', u'recal'] [u'korea', u'brink', u'nuclear'] [u'plan', u'oversea', u'adopt', u'increas'] [u'road', u'toll', u'rise'] [u'nucifora', u'take', u'brumbi', u'board'] [u'premier', u'strummer', u'documentari'] [u'oppn', u'call', u'reduc', u'petrol', u'price'] [u'palmer', u'say', u'goodby', u'augusta'] [u'petrova', u'surpris', u'serena'] [u'plane', u'land', u'antarctica', u'airlift', u'sick'] [u'polic', u'appeal', u'help', u'search', u'miss'] [u'polic', u'counsel', u'sieg', u'end', u'shoot'] [u'polic', u'expect', u'wrap', u'bush', u'grave', u'examin'] [u'polic', u'identifi', u'dead', u'bash', u'victim'] [u'polic', u'identifi', u'human', u'remain'] [u'polic', u'investig', u'fatal', u'bash'] [u'polic', u'probe', u'alic', u'spring', u'saddl', u'theft'] [u'polic', u'seek', u'miss', u'teen'] [u'polic', u'seek', u'rescu', u'chopper', u'thiev'] [u'polic', u'seek', u'miss', u'peopl'] [u'post', u'mortem', u'examin', u'carri'] [u'protest', u'elect', u'result', u'stag', u'taiwan'] [u'nerv', u'shatter', u'brisban', u'gladston', u'record'] [u'crescent', u'director', u'dead', u'iraq'] [u'cross', u'make', u'blood', u'appeal'] [u'red', u'super', u'season', u'tatter'] [u'retract', u'syring', u'take', u'award'] [u'revitalis', u'gunner', u'brink', u'titl'] [u'riot', u'polic', u'prepar', u'kirribilli', u'refuge', u'protest'] [u'road', u'safeti', u'have', u'posit', u'impact', u'expert'] [u'road', u'quiet', u'speed', u'fin', u'polic'] [u'roo', u'prevail', u'thriller'] [u'rise', u'retain', u'lead', u'wood', u'recov'] [u'russian', u'explos', u'kill', u'dozen'] [u'russia', u'urg', u'halt'] [u'move', u'hold', u'drama'] [u'second', u'iraq', u'interim', u'minist', u'resign', u'coalit'] [u'secur', u'tight', u'pope', u'presid', u'easter', u'event'] [u'kill', u'russian', u'blast'] [u'skandia', u'complet', u'grand', u'slam', u'gladston'] [u'spain', u'belarus', u'charg', u'davi', u'quarter'] [u'spam', u'come', u'effect'] [u'starcraft', u'win', u'derbi'] [u'sticki', u'situat', u'anger', u'ballroom', u'dancer'] [u'swan', u'edg', u'cat'] [u'swan', u'hold', u'cat', u'bomber', u'beat', u'eagl'] [u'lib', u'easter', u'sunday', u'trade', u'restrict'] [u'teenag', u'charg', u'manslaught'] [u'teen', u'court', u'manslaught', u'charg'] [u'thiev', u'chariti', u'chopper'] [u'thirti', u'foreign', u'take', u'hostag', u'report'] [u'thousand', u'expect', u'flock', u'easter', u'race'] [u'thousand', u'fin', u'speed', u'crackdown'] [u'thousand', u'flee', u'lanka', u'fight'] [u'goal', u'everton', u'eas', u'releg', u'fear'] [u'toddler', u'hospit', u'accid'] [u'toyota', u'deni', u'schumach', u'sign'] [u'dead', u'lankan', u'flee', u'violenc'] [u'german', u'miss', u'iraq', u'report'] [u'soldier', u'civilian', u'miss', u'iraq'] [u'union', u'offici', u'say', u'sexi', u'job', u'treat', u'unfair'] [u'court', u'jail', u'jihad', u'plan'] [u'occup', u'iraq', u'sink', u'deeper', u'turmoil'] [u'militari', u'seek', u'fallujah', u'ceasefir'] [u'pick', u'iraqi', u'leader', u'blast', u'fallujah', u'offens'] [u'tourist', u'rob', u'adelaid'] [u'unawar', u'american', u'kidnap', u'iraq'] [u'town', u'plastic', u'bag'] [u'white', u'hous', u'releas', u'sept', u'terrorist', u'memo'] [u'youth', u'hold', u'anti', u'protest', u'melbourn'] [u'dead', u'explos', u'siberian'] [u'prevent', u'say', u'commiss'] [u'govt', u'urg', u'slash', u'stamp', u'duti'] [u'adelaid', u'stab', u'victim', u'hospitalis'] [u'marshal', u'leav', u'airport', u'toilet'] [u'jazeera', u'deni', u'japanes', u'report'] [u'barcelona', u'overpow', u'valladolid'] [u'bat', u'claim', u'gold'] [u'battl', u'pompey', u'gain', u'precious', u'point'] [u'belarus', u'davi', u'semi', u'franc', u'gain', u'edg'] [u'peac', u'underway', u'clash', u'continu', u'iraq'] [u'congreg', u'expect', u'celebr', u'easter'] [u'blast', u'kill', u'trap', u'russian'] [u'bolton', u'slow', u'villa', u'push', u'europ'] [u'brewster', u'deni', u'caley', u'final', u'chanc'] [u'brewster', u'down', u'klitscho', u'seal', u'titl'] [u'british', u'home', u'sell', u'world', u'record', u'price'] [u'british', u'terror', u'suspect', u'appear', u'court'] [u'bulldog', u'cling', u'eagl', u'home'] [u'bush', u'warn', u'qaeda', u'plan'] [u'caldwel', u'boost', u'leed', u'blackburn', u'falter'] [u'cash', u'flinder', u'museum'] [u'cat', u'match', u'lose', u'streak'] [u'christian', u'shoot', u'indonesian', u'church'] [u'clash', u'erupt', u'baghdad', u'offer', u'fallujah', u'truce'] [u'cowboy', u'break', u'lose', u'streak'] [u'defenc', u'advis', u'fire', u'refus', u'write'] [u'demand', u'childcar', u'lower', u'expect', u'minist'] [u'democrat', u'want', u'iraqi', u'refuge', u'releas'] [u'docker', u'strong', u'crow'] [u'domain', u'tree', u'save', u'specialist'] [u'dragon', u'beat', u'tiger', u'win'] [u'dragon', u'good', u'west', u'tiger'] [u'driver', u'kill', u'speedway', u'crash'] [u'dutch', u'worker', u'free', u'russia'] [u'easter', u'holiday', u'road', u'toll', u'stand'] [u'easter', u'road', u'toll', u'increas'] [u'chief', u'say', u'zimbabw', u'tour', u'report'] [u'kill', u'somalia', u'market'] [u'elder', u'coupl', u'hospitalis', u'accid'] [u'elder', u'woman', u'frighten', u'burglar'] [u'england', u'tour', u'zimbabw', u'chairman'] [u'eski', u'save', u'drown'] [u'villag', u'chief', u'kill', u'thailand'] [u'explos', u'spook', u'darwin', u'resid'] [u'fallujah', u'quiet', u'ceasefir', u'deadlin', u'pass'] [u'final', u'pair'] [u'firecrack', u'land', u'hospit'] [u'destroy', u'heritag', u'build'] [u'engulf', u'sawmil'] [u'gallipoli', u'hypocrit', u'say', u'opposit'] [u'leak', u'blast', u'demolish', u'mexican', u'restaur'] [u'right', u'campaign', u'welcom', u'transform'] [u'benefit', u'rusedski', u'return', u'winner'] [u'hill', u'defend', u'gallipoli', u'travel', u'militari'] [u'hird', u'hop', u'fair', u'hear'] [u'iraqi', u'kidnapp', u'threaten', u'kill', u'hostag'] [u'janet', u'jackson', u'bar', u'breast'] [u'japanes', u'hostag', u'face', u'death', u'deadlin'] [u'japanes', u'hostag', u'safe', u'iraq', u'report'] [u'japanes', u'hostag', u'releas', u'govt'] [u'kath', u'dress', u'london'] [u'kidnap', u'japanes', u'iraq', u'free'] [u'lara', u'lead', u'windi', u'fight'] [u'late', u'despair', u'wolv', u'citi', u'snatch', u'surviv'] [u'lazaridi', u'season'] [u'light', u'aircraft', u'make', u'emerg', u'land', u'near', u'alburi'] [u'machu', u'picchu', u'mudslid', u'trap', u'aussi', u'tourist'] [u'appear', u'court', u'heroin', u'lolli'] [u'charg', u'bash', u'murder'] [u'hospitalis', u'cliff', u'fall'] [u'marin', u'wound', u'fallujah', u'clash'] [u'mauresmo', u'stun', u'henin', u'hardenn'] [u'media', u'frenzi', u'grow', u'beckham', u'affair', u'claim'] [u'mickelson', u'dimarco', u'lead', u'rise', u'wilt'] [u'mickelson', u'grab', u'master', u'lead'] [u'mickelson', u'readi', u'major'] [u'mudslid', u'perus', u'machu', u'picchu', u'strand', u'tourist'] [u'music', u'fenc', u'attract', u'tourist', u'attent'] [u'muslim', u'leader', u'want', u'australian', u'troop', u'iraq'] [u'netherland', u'doubl', u'trail', u'spain'] [u'govt', u'order', u'icac', u'review'] [u'kill', u'injur', u'pakistani', u'bomb'] [u'panther', u'surviv', u'storm', u'surg'] [u'pilgrim', u'gather', u'easter', u'sunday', u'mass'] [u'pirlo', u'penalti', u'calm', u'milan', u'jangl', u'nerv'] [u'polic', u'defend', u'number', u'kirribilli', u'protest'] [u'polic', u'miss', u'glenorchi'] [u'polic', u'investig', u'fatal', u'tulli'] [u'polic', u'investig', u'possibl', u'atherton', u'murder'] [u'polic', u'investig', u'tent', u'embassi'] [u'polic', u'presenc', u'kirribilli', u'ralli'] [u'polic', u'question', u'atherton', u'murder'] [u'polic', u'riot', u'gear', u'requir', u'unruli', u'parti'] [u'pope', u'call', u'mankind', u'oppos', u'terror'] [u'port', u'lose', u'primus', u'smash', u'hawthorn'] [u'prison', u'recaptur', u'philippin', u'jailbreak'] [u'ranieri', u'conced', u'titl', u'arsenal'] [u'region', u'airlin', u'form', u'allianc'] [u'rescuer', u'work', u'save', u'trap', u'miner'] [u'resid', u'urg', u'stay', u'water', u'croc'] [u'ruddock', u'flag', u'email', u'tap', u'law'] [u'saha', u'winner', u'unit', u'snap', u'chelsea', u'heel'] [u'school', u'leav', u'damag'] [u'select', u'worri', u'grip', u'india', u'pakistan', u'ahead'] [u'seven', u'injur', u'head', u'collis'] [u'bomb', u'intercept', u'suspect', u'arrest'] [u'soni', u'option', u'film', u'right', u'clark', u'bestsel'] [u'starv', u'shark', u'meal', u'crusad'] [u'storm', u'lash', u'bangladesh', u'kill'] [u'stray', u'isra', u'gunfir', u'kill', u'palestinian', u'girl'] [u'sugar', u'town', u'shock', u'fatal'] [u'supersub', u'john', u'leav', u'fox', u'flounder'] [u'support', u'coalit', u'grow', u'poll'] [u'taxi', u'driver', u'refus', u'bail', u'attempt', u'murder', u'charg'] [u'text', u'white', u'hous', u'memo', u'qaeda'] [u'north', u'hous'] [u'canoeist', u'strand', u'lake', u'eyr'] [u'unexplod', u'ammo', u'make', u'hard', u'firefight'] [u'fallujah', u'rebel', u'agre', u'ceas'] [u'boost', u'children', u'hospit', u'fund'] [u'seek', u'spill', u'sourc'] [u'real', u'estat', u'ethic', u'guidelin', u'review'] [u'wayward', u'demon', u'beat', u'hapless', u'dog'] [u'join', u'norwich', u'divis'] [u'white', u'hous', u'releas', u'memo'] [u'withdraw', u'fallujah', u'talk', u'iraqi'] [u'woman', u'fatal', u'train'] [u'hostag', u'free', u'say', u'govern', u'council', u'member'] [u'kill', u'northern', u'indian', u'stamped'] [u'inquiri', u'question', u'intellig', u'agenc'] [u'abattoir', u'growth', u'meet', u'demand'] [u'academ', u'warn', u'china'] [u'ail', u'wood', u'head', u'armi', u'barrack', u'eas'] [u'aircraft', u'standbi', u'case', u'japanes', u'hostag'] [u'jazeera', u'say', u'asian', u'truck', u'driver', u'abduct'] [u'question', u'agenc', u'skill', u'assumpt'] [u'determin', u'claim', u'stack'] [u'form', u'inquiri', u'member', u'stack'] [u'arsenal', u'preserv', u'unbeaten', u'newcastl'] [u'aussi', u'cyclist', u'manchest', u'track', u'triumph'] [u'aussi', u'veteran', u'sunderland', u'enjoy', u'team', u'pari'] [u'australian', u'rescu', u'mudslid', u'peru'] [u'australia', u'high', u'hop', u'olymp', u'dive', u'success'] [u'babi', u'boomer', u'urg', u'help', u'communiti', u'group'] [u'backstedt', u'beat', u'favourit', u'pari', u'roubaix'] [u'beckham', u'real', u'madrid', u'plung', u'depth'] [u'beij', u'sydney', u'univers', u'align', u'medic'] [u'blast', u'hear', u'near', u'headquart', u'baghdad'] [u'bless', u'south', u'coast', u'fish', u'fleet'] [u'boati', u'warn', u'rescu', u'float'] [u'bog', u'canoeist', u'trudg', u'closer', u'rendezv'] [u'bomb', u'workshop', u'iraqi', u'town', u'fallujah'] [u'book', u'deal', u'off', u'underworld', u'wife', u'sign'] [u'boss', u'steer', u'favourit', u'home', u'doncast'] [u'bush', u'dismiss', u'signific', u'secur', u'memo'] [u'busi', u'week', u'ahead', u'tribun'] [u'indigen', u'rock', u'carv'] [u'canada', u'begin', u'seal', u'hunt'] [u'canberra', u'shoot', u'melbourn', u'church', u'function'] [u'captor', u'threaten', u'execut', u'japanes', u'hostag'] [u'captur', u'briton', u'releas', u'iraq'] [u'carr', u'commit', u'icac'] [u'cheney', u'begin', u'asia', u'visit'] [u'china', u'announc', u'secur', u'boost', u'game'] [u'china', u'confirm', u'seven', u'citizen', u'kidnap', u'iraq'] [u'church', u'experi', u'easter', u'rush'] [u'coalit', u'leaflet', u'tell', u'kerbala', u'fight'] [u'confer', u'chew', u'dental', u'woe'] [u'confus', u'continu', u'fate', u'japanes', u'hostag'] [u'confus', u'surround', u'iraq', u'hostag', u'situat'] [u'council', u'plan', u'patrol', u'wake', u'parti', u'riot'] [u'cranki', u'reptil', u'recov', u'creek'] [u'crash', u'put', u'motorcyclist', u'hospit'] [u'danehil', u'progeni', u'add', u'yearl', u'sale'] [u'davenport', u'down', u'mauresmo', u'captur', u'amelia', u'island'] [u'democrat', u'urg', u'govt', u'follow', u'hous', u'lead'] [u'dole', u'team', u'blue', u'young', u'socceroo'] [u'dramat', u'putt', u'see', u'mickelson', u'claim', u'master'] [u'driver', u'remind', u'road', u'trauma', u'impact'] [u'driver', u'warn', u'continu', u'easter', u'road', u'blitz'] [u'easter', u'fire', u'hold', u'western'] [u'easter', u'keep', u'rescu', u'chopper', u'crew', u'busi'] [u'easter', u'road', u'toll', u'climb'] [u'east', u'lanka', u'calm', u'rebel', u'clash'] [u'eel', u'easter', u'bunni', u'south'] [u'admit', u'best', u'shoot', u'master'] [u'urg', u'arm'] [u'ethic', u'boost', u'real', u'estat', u'industri'] [u'fallujah', u'ceasefir', u'extend'] [u'fallujah', u'ceas', u'hold'] [u'fallujah', u'truce', u'falter'] [u'farmer', u'plough', u'tractor', u'record'] [u'charg', u'teen', u'bash'] [u'gift', u'winner', u'go'] [u'golkar', u'parti', u'retain', u'lead', u'indonesian', u'poll'] [u'govt', u'accus', u'lie', u'saddam', u'threat'] [u'govt', u'grant', u'major', u'fund', u'bioscienc'] [u'green', u'attack', u'region', u'rail', u'cut', u'track'] [u'grower', u'concern', u'banana', u'campaign'] [u'gulf', u'boat', u'mishap', u'claim', u'life'] [u'hanson', u'await', u'crucial', u'rule', u'vote'] [u'high', u'polic', u'presenc', u'help', u'road', u'toll'] [u'hird', u'apologis', u'disgrac', u'comment'] [u'indonesian', u'fish', u'boat', u'coast'] [u'injuri', u'news', u'good', u'archer'] [u'inter', u'strike', u'late', u'perugia'] [u'investig', u'begin', u'bathurst', u'claim'] [u'jail', u'term', u'uphold', u'timor', u'governor'] [u'japanes', u'diplomat', u'plan', u'visit', u'iraq'] [u'jetskier', u'dead', u'port', u'fairi'] [u'agenc', u'attack', u'discrimin'] [u'knee', u'reconstruct', u'primus'] [u'labor', u'relationship', u'remain', u'intact', u'rudd'] [u'lara', u'eye', u'hayden', u'world', u'record', u'antigua'] [u'latest', u'injuri', u'blow', u'primus', u'william'] [u'lib', u'action', u'petrol', u'price'] [u'lynch', u'defend', u'strike', u'charg', u'person'] [u'charg', u'knife', u'alleg'] [u'charg', u'nimbin', u'theft'] [u'critic', u'condit', u'struggl'] [u'matthew', u'join', u'critic', u'eddi', u'umpir', u'comment'] [u'mayor', u'moot', u'govt', u'bypass', u'campaign'] [u'melbourn', u'die', u'hospit', u'cliff', u'fall'] [u'releas', u'bail', u'follow', u'charg'] [u'mickelson', u'claim', u'master', u'glori'] [u'microsoft', u'face', u'south', u'korean', u'anti', u'trust', u'suit'] [u'millar', u'stand', u'cofidi', u'pull', u'dope'] [u'million', u'dollar', u'light', u'spark', u'race', u'scene'] [u'minist', u'defend', u'hous', u'delay'] [u'polic', u'station', u'instal', u'camera'] [u'suggest', u'school', u'unit', u'deter', u'vandal'] [u'murder', u'solicitor', u'wife', u'make', u'public', u'appeal'] [u'nation', u'easter', u'road', u'toll', u'rise', u'seven'] [u'progress', u'japanes', u'hostag', u'drama'] [u'govt', u'sink', u'sail', u'club', u'plan'] [u'palestinian', u'kill', u'attack', u'settlement'] [u'orana', u'set', u'peak', u'record'] [u'pakistan', u'opposit', u'leader', u'give', u'year'] [u'parent', u'await', u'educ', u'review'] [u'passion', u'rise', u'forget', u'alamo'] [u'pioneer', u'weather', u'opposit', u'lightn'] [u'polic', u'charg', u'pair', u'drink', u'drive', u'campaign'] [u'polic', u'curb', u'troubl', u'door'] [u'polic', u'investig', u'fatal', u'deliber'] [u'polic', u'probe', u'adamstown', u'rail', u'death'] [u'polic', u'probe', u'onslow', u'hous', u'blaze'] [u'polic', u'probe', u'speedway', u'crash'] [u'polic', u'pursu', u'famili', u'link', u'yarravill', u'shoot'] [u'polic', u'renew', u'help', u'long', u'miss'] [u'polic', u'road', u'crackdown', u'remain'] [u'polic', u'search', u'find', u'trace', u'report', u'asylum'] [u'polic', u'road', u'crash', u'victim'] [u'pope', u'urg', u'world', u'leader', u'work', u'harder', u'peac'] [u'presid', u'pray', u'casualti', u'iraq'] [u'princip', u'pledg', u'earli', u'start', u'rebuild', u'torch'] [u'prison', u'group', u'blast', u'scale'] [u'democraci', u'protest', u'hold'] [u'protest', u'gold'] [u'public', u'ask', u'boost', u'blood', u'bank', u'suppli'] [u'govt', u'urg', u'ramp', u'boat', u'facil'] [u'quak', u'jolt', u'northern', u'japan'] [u'rescu', u'call', u'lake', u'eyr', u'canoeist'] [u'rescuer', u'lose', u'hope', u'trap', u'russian', u'miner'] [u'restructur', u'end', u'telco', u'monopoli'] [u'retail', u'oppos', u'lib', u'trade', u'stanc'] [u'roddick', u'power', u'davi', u'semi'] [u'sack', u'advis', u'claim', u'investig'] [u'saint', u'class', u'tiger'] [u'lib', u'want', u'wine', u'relax'] [u'oppn', u'maintain', u'child', u'abus', u'royal'] [u'seven', u'chines', u'citizen', u'kidnap', u'iraq', u'state'] [u'sharon', u'head', u'gaza', u'pullout', u'talk'] [u'soldier', u'kill', u'iraq', u'attack'] [u'korean', u'parti', u'chief', u'quit', u'elect'] [u'spain', u'franc', u'davi', u'semi', u'showdown'] [u'spain', u'arrest', u'madrid', u'attack'] [u'special', u'tree', u'walk'] [u'stewart', u'take', u'bombala', u'mayor'] [u'strand', u'tourist', u'evacu', u'inca', u'ruin'] [u'struggl', u'actress', u'sell', u'sitcom', u'script'] [u'sutton', u'doubl', u'propel', u'celtic', u'trebl'] [u'sydney', u'blaze', u'control'] [u'sydney', u'peke', u'uni', u'team', u'health', u'program'] [u'taliban', u'claim', u'district', u'seiz', u'chief', u'kill'] [u'talk', u'continu', u'shiit', u'peac', u'deal'] [u'biosecur', u'review', u'announc'] [u'govt', u'cyber', u'stalk'] [u'teen', u'caution', u'incid'] [u'thai', u'rais', u'die', u'welfar', u'centr'] [u'thiev', u'steal', u'cold', u'blood', u'cranki', u'pant'] [u'timor', u'deal', u'threat'] [u'triumph', u'disbelief', u'mickelson', u'claim', u'master'] [u'truce', u'deal', u'prevent', u'coalit', u'troop', u'enter', u'najaf'] [u'trucki', u'hurt', u'highway', u'crash'] [u'tweed', u'host', u'shadow', u'cabinet'] [u'kill', u'wound', u'baquba', u'bomb'] [u'typhoon', u'sudal', u'sever', u'damag', u'micronesian', u'atol'] [u'underworld', u'figur', u'wife', u'meet', u'celebr', u'agent'] [u'drop', u'leaflet', u'afghan', u'border'] [u'reject', u'aussi', u'firefight'] [u'polic', u'fatal', u'free', u'easter', u'drive'] [u'victoria', u'review', u'fundrais', u'law'] [u'hospit', u'expans', u'announc'] [u'wale', u'air', u'elect', u'worri'] [u'weird', u'yankov', u'parent', u'dead'] [u'writer', u'studio', u'ramp', u'contract', u'talk', u'hollywood'] [u'filipino', u'prison', u'escap', u'elud', u'author'] [u'abduct', u'continu', u'plan', u'attack', u'rebel'] [u'aborigin', u'request', u'fund', u'legal'] [u'absurd', u'unfaith', u'posh', u'say', u'beckham'] [u'acid', u'drum', u'leak', u'truck'] [u'farmer', u'drought', u'assist'] [u'clear', u'eddi'] [u'staff', u'face', u'restructur', u'woe'] [u'aldi', u'agre', u'shape', u'supermarket'] [u'alga', u'fish', u'kill'] [u'alic', u'turf', u'club', u'saddl', u'carniv'] [u'anim', u'libber', u'appli', u'court', u'case', u'adjourn'] [u'arab', u'media', u'misrepres', u'tactic'] [u'seat', u'republ', u'push'] [u'arson', u'suspect', u'morialta', u'fire'] [u'australia', u'track', u'despit', u'greenhous', u'rise'] [u'author', u'search', u'miss', u'czech', u'journalist'] [u'babi', u'black', u'conquer', u'world'] [u'beatti', u'fume', u'howard', u'tugun', u'bypass'] [u'beatti', u'quiet', u'wineg', u'investig'] [u'beckham', u'refer', u'infidel', u'claim', u'lawyer'] [u'bed', u'shortag', u'delay', u'emerg', u'admiss'] [u'crowd', u'harbour', u'festiv'] [u'bigland', u'crawford', u'white', u'brown', u'suspend'] [u'blockad', u'stag', u'protest', u'veget'] [u'bombala', u'hospit', u'plan', u'underway'] [u'branch', u'stack', u'eject', u'gallop'] [u'breakaway', u'tiger', u'fight'] [u'breakwat', u'fund', u'track'] [u'bush', u'predict', u'revamp'] [u'busi', u'urg', u'help', u'indigen', u'educ'] [u'aust', u'doctor', u'bush'] [u'reptil', u'thiev', u'punish'] [u'call', u'amend', u'train', u'time', u'victoria'] [u'capsicum', u'spray', u'blame', u'suspect', u'collaps'] [u'launch', u'explor'] [u'chopper', u'call', u'rescu', u'injur', u'canyon'] [u'civil', u'liberti', u'group', u'seek', u'capsicum', u'spray', u'review'] [u'cleric', u'deal', u'stave', u'najaf', u'raid'] [u'coach', u'word', u'baker', u'report'] [u'confer', u'focus', u'visual', u'neglect'] [u'confid', u'rise', u'export', u'strengthen'] [u'cook', u'paper', u'drug', u'alleg'] [u'council', u'consid', u'joint', u'wast', u'contract'] [u'council', u'panel', u'vote', u'powerlin', u'plan'] [u'council', u'work', u'communiti', u'futur', u'lake'] [u'skiier', u'junior', u'titl'] [u'crisi', u'coal', u'transport', u'spark', u'discuss'] [u'cruis', u'rais', u'million', u'detox', u'rescu', u'worker'] [u'cruis', u'albani', u'cancel'] [u'custom', u'bail', u'stricken', u'fish', u'boat'] [u'darwin', u'await', u'fish', u'boat'] [u'darwin', u'ralli', u'decri', u'timor', u'deal'] [u'defend', u'champion', u'davydenko', u'lose', u'lisbon'] [u'democrat', u'urg', u'greater', u'water', u'recycl'] [u'develop', u'fund', u'help', u'boost', u'region', u'govt'] [u'diamond', u'trail', u'rival', u'egyptian', u'shoot'] [u'diplomat', u'confirm', u'chines', u'hostag', u'releas'] [u'discrimin', u'discourag', u'older', u'worker', u'cherri'] [u'save', u'garag', u'blaze', u'glori'] [u'donald', u'trump', u'apprentic', u'season', u'earn'] [u'downer', u'play', u'rsls', u'iraq', u'request'] [u'downer', u'say', u'pngs', u'peopl', u'support', u'polic'] [u'downturn', u'loom', u'hous', u'figur', u'fall'] [u'drink', u'driver', u'frustrat', u'polic'] [u'driver', u'discov', u'sydney', u'shoot', u'victim'] [u'drought', u'worsen'] [u'easter', u'road', u'toll', u'half', u'previous', u'year'] [u'kill', u'renew', u'chechen', u'violenc'] [u'russian', u'worker', u'releas', u'iraq'] [u'industri', u'go', u'dog'] [u'export', u'formalis', u'china', u'fruit', u'sale'] [u'fair', u'drive', u'transport', u'ombudsman'] [u'fallujah', u'truce', u'extend', u'allow', u'continu', u'talk'] [u'farm', u'blaze', u'spark', u'damag'] [u'father', u'face', u'drug', u'charg'] [u'fear', u'spread', u'goldfield', u'esper'] [u'restrict', u'lift', u'region'] [u'italian', u'hold', u'hostag', u'iraq', u'jazeera'] [u'ganguli', u'open', u'final', u'pakistan', u'test'] [u'explos', u'injur', u'penguin'] [u'gaza', u'pullout', u'replac', u'road', u'bush'] [u'german', u'organis', u'withdraw', u'foreign', u'help'] [u'gospel', u'music', u'gather', u'stretch', u'amphitheatr'] [u'govern', u'council', u'call', u'iraq', u'wide', u'ceas'] [u'gutwein', u'call', u'educ', u'fund', u'boost'] [u'hall', u'fame', u'rememb', u'pioneer', u'women'] [u'hayden', u'prais', u'lara'] [u'hold', u'hostag'] [u'hid', u'call', u'trade'] [u'higher', u'rat', u'survey', u'glitch'] [u'high', u'incom', u'break', u'cost', u'poor', u'australian', u'acoss'] [u'bomb', u'plot', u'foil', u'isra', u'secur', u'servic'] [u'hospit', u'top', u'niue', u'christma', u'wish', u'list'] [u'howard', u'deni', u'break', u'disadvantag', u'poor'] [u'hungari', u'foil', u'attack', u'isra', u'presid'] [u'illeg', u'fish', u'boat', u'return', u'indonesia'] [u'india', u'farmer', u'anticip', u'normal', u'rain'] [u'indonesia', u'voic', u'concern', u'iraq', u'bloodsh'] [u'injur', u'clijster', u'miss', u'french', u'open'] [u'inquiri', u'investig', u'banana', u'import', u'intimid'] [u'intern', u'inquiri', u'rais', u'land', u'council', u'concern'] [u'iraqi', u'guard', u'kill', u'russian', u'kidnap'] [u'judg', u'warn', u'killer', u'appeal', u'time', u'limit'] [u'kiddi', u'speed', u'prescript', u'jump', u'surpris'] [u'kowanyama', u'leader', u'face', u'alcohol', u'charg'] [u'labor', u'announc', u'health', u'care', u'boost'] [u'labor', u'confid', u'preselect', u'scandal', u'wont'] [u'labor', u'revamp', u'trade', u'practic'] [u'lake', u'eyr', u'canoeist', u'face', u'fin'] [u'lara', u'congratul', u'hayden', u'record', u'knock'] [u'lara', u'eclips', u'hayden', u'record'] [u'lara', u'eclips', u'hayden', u'record'] [u'lara', u'shin', u'flaw', u'brillianc'] [u'latham', u'undermin', u'allianc'] [u'launceston', u'featur', u'australian', u'survey'] [u'literaci', u'fund', u'tackl', u'poverti', u'windal'] [u'buy', u'lucki', u'phone', u'number', u'million'] [u'plead', u'guilti', u'give', u'toddler', u'cannabi'] [u'shoot', u'near', u'payn'] [u'court', u'home', u'invas', u'claim'] [u'woman', u'plead', u'guilti', u'fraud', u'charg'] [u'mapoon', u'launch', u'minut', u'alcohol', u'restrict'] [u'march', u'season', u'begin', u'peac'] [u'market', u'dip', u'news', u'corp', u'investor', u'worri'] [u'martinez', u'notch', u'career', u'singl', u'victori'] [u'master', u'flop', u'pile', u'pressur', u'tiger'] [u'mayor', u'promis', u'rail', u'cross', u'battl'] [u'meet', u'focus', u'rlpbs'] [u'memori', u'loss', u'delay', u'fraud', u'trial'] [u'mersey', u'specialist', u'threaten', u'strike'] [u'mexico', u'suspend', u'polic', u'forc', u'amid', u'drug', u'claim'] [u'motorcyclist', u'die', u'highway', u'crash'] [u'murder', u'victim', u'shoot', u'flee'] [u'murphi', u'bubbl'] [u'napthin', u'say', u'easter', u'trade', u'law', u'confus'] [u'nation', u'parti', u'call', u'freez', u'wind', u'farm'] [u'news', u'corp', u'dual', u'list', u'upset', u'investor'] [u'action', u'take', u'militari', u'engin', u'death'] [u'opposit', u'push', u'rescu', u'helicopt', u'south'] [u'outgun', u'australia', u'chanc', u'goolagong'] [u'pakistani', u'expert', u'north', u'korean', u'nuclear', u'weapon'] [u'pakistan', u'troubl', u'india'] [u'park', u'spokesman', u'rule', u'need', u'law'] [u'decis', u'outrag', u'judg'] [u'peter', u'mortim', u'step', u'bulldog', u'board'] [u'downplay', u'iraq', u'travel', u'warn'] [u'stress', u'import', u'allianc'] [u'urg', u'intellig', u'failur'] [u'polic', u'applaud', u'good', u'bevaviour', u'road'] [u'polic', u'applaud', u'western', u'motorist'] [u'polic', u'fair', u'happi', u'easter', u'driver'] [u'polic', u'happi', u'driver', u'effort'] [u'polic', u'lament', u'speed', u'offenc'] [u'polic', u'monitor', u'lake', u'eyr', u'adventur'] [u'polic', u'pleas', u'driver', u'effort'] [u'polic', u'prais', u'motorist', u'come', u'earli'] [u'polic', u'presenc', u'prevent', u'major', u'road', u'incid'] [u'polic', u'probe', u'vandal', u'attack'] [u'polic', u'seiz', u'unit', u'car', u'brisban', u'drug', u'bust'] [u'polic', u'unhappi', u'easter', u'driver'] [u'polic', u'unhappi', u'stupid', u'driver'] [u'polic', u'urg', u'motorist', u'slow', u'toll', u'rise'] [u'powerboat', u'club', u'hop', u'host', u'intern', u'event'] [u'power', u'face', u'life', u'primus'] [u'primus', u'set', u'sight', u'return'] [u'privaci', u'concern', u'gmail', u'inbox'] [u'air', u'merger', u'concern'] [u'qualiti', u'wine', u'stay', u'bottl'] [u'queensland', u'clear', u'rock', u'energi', u'research'] [u'queensland', u'holder', u'take', u'west', u'indi', u'coach'] [u'race', u'council', u'blame', u'region', u'downturn'] [u'ralli', u'target', u'mersey', u'hospit', u'servic', u'staff'] [u'review', u'consid', u'beef', u'meat', u'promot'] [u'richmond', u'coach', u'reject', u'thomass', u'apolog'] [u'drug', u'war', u'spark', u'slum', u'barrier'] [u'riyadh', u'shoot', u'kill', u'milit', u'policeman'] [u'rosedal', u'celebr', u'beach', u'spirit', u'award'] [u'russia', u'confirm', u'hostag', u'seiz'] [u'russia', u'consid', u'evacu', u'personnel'] [u'russia', u'revis', u'hostag', u'toll', u'chines', u'prison'] [u'sadr', u'aid', u'detain', u'troop'] [u'francisco', u'sell', u'newlyw', u'list'] [u'scientist', u'deni', u'ranger', u'drink', u'water'] [u'scientist', u'dive', u'deep', u'predict', u'climat', u'chang'] [u'secreci', u'surround', u'visit'] [u'share', u'valu', u'underpin', u'aust', u'allianc'] [u'shark', u'fine', u'bird', u'knee'] [u'shark', u'fine', u'bird', u'knee'] [u'sharon', u'seek', u'back', u'gaza', u'pullout'] [u'sharon', u'vow', u'main', u'settlement'] [u'sheep', u'contamin', u'case', u'adjourn'] [u'shire', u'want', u'drought', u'declar'] [u'smaller', u'rise', u'consid', u'judg'] [u'southern', u'titanium', u'learn', u'past', u'mistak'] [u'spain', u'arrest', u'bomb', u'suspect'] [u'speed', u'driver', u'alarm', u'polic'] [u'starcraft', u'shine', u'race'] [u'state', u'govern', u'neglect', u'outback', u'communiti'] [u'state', u'govt', u'criticis', u'easter', u'trade'] [u'steven', u'close', u'decis'] [u'strand', u'kayak', u'rescu', u'media'] [u'strong', u'demand', u'easter', u'accommod'] [u'success', u'easter', u'victoria'] [u'surgeri', u'alleg', u'intrud', u'guard', u'attack'] [u'taxi', u'driver', u'fin', u'guid', u'refus'] [u'telstra', u'commiss', u'solar', u'power', u'tower'] [u'thailand', u'malaysia', u'step', u'terror', u'fight'] [u'thoma', u'back', u'baker', u'report', u'claim'] [u'czech', u'journalist', u'miss', u'iraq'] [u'crusher', u'waqar', u'call'] [u'tour', u'oper', u'welcom', u'easter', u'visitor'] [u'tradit', u'owner', u'patienc', u'ranger'] [u'transport', u'ombudsman', u'appoint', u'victoria'] [u'tribun', u'clear', u'lynch', u'suspend', u'white'] [u'trio', u'high', u'tackl', u'charg'] [u'troublesom', u'adventur', u'spark', u'guidelin'] [u'arrest', u'hahndorf', u'gang', u'brawl'] [u'miss', u'russia', u'toll', u'hit'] [u'umpir', u'pile', u'pressur', u'eddi', u'commentari', u'jibe'] [u'request', u'safe', u'passag', u'iraq', u'worker'] [u'step', u'congo', u'massacr', u'investig'] [u'upbeat', u'investor', u'await', u'profit', u'report'] [u'alleg', u'sudan', u'ceas', u'breach'] [u'egypt', u'renew', u'middl', u'east', u'peac', u'pledg'] [u'soldier', u'wound', u'baghdad', u'bomb'] [u'vaccin', u'fund', u'refus', u'live', u'risk'] [u'vanston', u'hear', u'clark'] [u'villa', u'crush', u'chelsea', u'hop', u'leav', u'gunner'] [u'green', u'founder', u'stand', u'south', u'west', u'seat'] [u'wood', u'shortag', u'crippl', u'furnitur', u'maker'] [u'work', u'track', u'revamp', u'rail', u'station'] [u'idol', u'head', u'tamworth'] [u'yacht', u'race', u'continu', u'airli', u'beach'] [u'year', u'jail', u'killer', u'famili', u'friend'] [u'million', u'colt', u'set', u'market', u'record'] [u'commiss', u'criticis', u'cultur'] [u'action', u'urg', u'mental', u'health', u'nurs', u'safeti'] [u'rethink', u'medic', u'indemn', u'fund'] [u'adelaid', u'hill', u'arsonist', u'larg'] [u'adventur', u'sorri', u'polic'] [u'doubt', u'agenc', u'independ'] [u'ambush', u'american', u'iraq', u'grave', u'report'] [u'annan', u'doubt', u'major', u'return', u'iraq'] [u'studi', u'track', u'welfar', u'cycl'] [u'autopsi', u'confirm', u'striker', u'die', u'natur', u'caus'] [u'baker', u'johnson', u'clash', u'take', u'twist'] [u'doco', u'polic', u'cell', u'death', u'footag'] [u'beatti', u'ask', u'interven', u'qanta', u'cut'] [u'bega', u'valley', u'mayor', u'elect'] [u'bendigo', u'take', u'plan', u'residenti', u'growth'] [u'surat', u'basin'] [u'billi', u'crystal', u'love', u'poem', u'hit', u'bookstor'] [u'blair', u'clinton', u'head', u'milosev', u'wit', u'list'] [u'die', u'pushbik', u'accid'] [u'brack', u'unveil', u'econom', u'vision'] [u'brazilian', u'set', u'alight', u'meet'] [u'brazil', u'militari', u'call', u'help', u'stop', u'drug'] [u'brindal', u'angri', u'shadow', u'cabinet', u'shuffl'] [u'bronco', u'strip', u'competit', u'point'] [u'bush', u'popular', u'sink'] [u'bush', u'vow', u'stay', u'cours', u'iraq'] [u'busi', u'tribun', u'hand', u'suspens'] [u'calder', u'highway', u'fatal', u'fuel', u'communiti', u'anger'] [u'cane', u'farmer', u'urg', u'consid', u'cotton'] [u'cane', u'toad', u'research', u'list'] [u'cape', u'york', u'alcohol', u'limit', u'begin', u'amid', u'legal', u'threat'] [u'cheney', u'urg', u'china', u'resolv', u'north', u'korea', u'crise'] [u'child', u'care', u'centr', u'fail', u'standard'] [u'christian', u'radio', u'look', u'global', u'broadcast'] [u'climat', u'right', u'research', u'centr'] [u'coal', u'strike', u'monument', u'heritag', u'regist'] [u'commonwealth', u'chip', u'bath', u'hous', u'renov'] [u'communiti', u'meet', u'toxic', u'wast', u'dump'] [u'compani', u'complet', u'asset', u'purchas'] [u'concern', u'approv', u'controversi', u'tweed'] [u'confus', u'local', u'elect'] [u'construct', u'start', u'wall', u'upgrad'] [u'control', u'report', u'space', u'confus'] [u'council', u'draft', u'strategi', u'rat'] [u'council', u'want', u'return', u'plan', u'author'] [u'court', u'approv', u'chang', u'girl', u'rais'] [u'court', u'hear', u'man', u'distress', u'famili', u'murder'] [u'court', u'rule', u'clear', u'sand'] [u'current', u'transport', u'tropic', u'speci'] [u'decis', u'pend', u'vote', u'valid'] [u'despit', u'flood', u'grazier', u'cautious', u'ahead'] [u'diamond', u'step', u'closer', u'olymp'] [u'disney', u'lose', u'magic', u'touch'] [u'divis', u'flow', u'murray', u'delay'] [u'doctor', u'herald', u'adhd', u'drug'] [u'drought', u'condit', u'worsen'] [u'drown', u'inquest', u'focus', u'bath', u'seat'] [u'drug', u'test', u'prison', u'offic'] [u'earthquak', u'rock', u'western', u'turkey'] [u'east', u'timor', u'protest', u'unfair', u'boundari'] [u'appli', u'despit', u'declar', u'drought'] [u'elect', u'inquiri', u'plan', u'underway'] [u'emerald', u'unemploy', u'half'] [u'fallujah', u'death', u'toll', u'mount', u'despit', u'ceas'] [u'fallujah', u'truce', u'extend'] [u'famili', u'dept', u'fail', u'disabl', u'ombudsman'] [u'feder', u'grant', u'restor', u'astronom', u'hous'] [u'ferret', u'investig', u'go'] [u'fight', u'go', u'domain', u'famous'] [u'firefight', u'decontamin', u'mail', u'worker'] [u'fisher', u'appeal', u'govern', u'high', u'court'] [u'flintoff', u'english', u'open', u'rise', u'challeng'] [u'flood', u'cross', u'countri', u'camel', u'trek', u'hold'] [u'fli', u'ceo', u'send', u'compani', u'cost', u'high', u'studi'] [u'chief', u'defend', u'counter', u'terror', u'effort'] [u'founder', u'fish', u'boat', u'limbo'] [u'kill', u'iraq', u'mortar', u'attack'] [u'frauenfeld', u'unsur', u'mayor', u'vote'] [u'freak', u'weather', u'make', u'bushfir', u'unpredict'] [u'french', u'cross', u'suspend', u'oper', u'iraq'] [u'french', u'report', u'hold', u'hostag', u'iraq'] [u'funer', u'hold', u'scotchtown', u'victim'] [u'gippsland', u'fire', u'threaten', u'home', u'properti'] [u'googl', u'say', u'anti', u'semit', u'site', u'stay'] [u'govt', u'adopt', u'minimum', u'secur', u'prison', u'recommend'] [u'govt', u'consid', u'limit', u'politician', u'rise'] [u'govt', u'report', u'reject', u'intellig', u'bias'] [u'graf', u'leav', u'head', u'phoenix', u'mercuri'] [u'granni', u'win', u'pretti', u'penni'] [u'grim', u'outlook', u'balranald'] [u'grocer', u'latham', u'trade', u'practic', u'plan'] [u'hawk', u'contest', u'crawford', u'suspens'] [u'hear', u'begin', u'coat', u'arm', u'theft'] [u'henin', u'pull', u'charleston', u'william', u'sister'] [u'hird', u'make', u'submiss', u'disgrac', u'comment'] [u'hird', u'make', u'submiss', u'disgrac', u'comment'] [u'hitchhik', u'die', u'bass', u'highway'] [u'home', u'loan', u'approv', u'high'] [u'hostag', u'fear', u'strain', u'coalit'] [u'howard', u'retain', u'confid', u'agenc'] [u'iaea', u'chief', u'renew', u'iraq', u'inspect'] [u'stay', u'zimbabwean', u'cricket', u'meltdown'] [u'imparja', u'negoti', u'alcohol', u'advertis'] [u'index', u'point', u'mild', u'econom', u'downturn'] [u'india', u'make', u'win', u'toss'] [u'indian', u'nuclear', u'boffin', u'split', u'banana', u'instead'] [u'indonesian', u'fish', u'boat', u'hold', u'captain', u'question'] [u'inquiri', u'evid', u'increas', u'concern', u'banana'] [u'inquiri', u'queri', u'land', u'council', u'fund', u'manag'] [u'investig', u'ferri', u'ground', u'begin'] [u'iran', u'send', u'offici', u'mediat', u'iraq'] [u'iraqi', u'attack', u'helicopt', u'rescu', u'troop'] [u'island', u'rais', u'fund', u'typhoon'] [u'jordan', u'thwart', u'huge', u'terrorist', u'attack'] [u'kean', u'avail', u'ireland'] [u'knight', u'line', u'unchang', u'ahead', u'home', u'game'] [u'knight', u'unchang', u'ahead', u'home', u'game'] [u'latham', u'isol', u'iraq', u'polici'] [u'local', u'govt', u'success', u'stori', u'leav', u'protest'] [u'loeb', u'happi', u'lead', u'pack', u'zealand', u'ralli'] [u'lung', u'cancer', u'biggest', u'killer', u'women', u'studi'] [u'lyon', u'decid', u'futur', u'week'] [u'macedonian', u'vote', u'presid'] [u'maleni', u'resid', u'protest', u'clear', u'supermarket'] [u'murder', u'shop', u'centr', u'park'] [u'plead', u'guilti', u'sickl', u'injuri'] [u'rob', u'daughter', u'kidney', u'transplant'] [u'secur', u'winner', u'unlik', u'sourc'] [u'market', u'close', u'lower', u'aussi', u'dollar', u'fall'] [u'mcdonald', u'franchis', u'fin', u'safeti', u'breach'] [u'melbourn', u'enjoy', u'record', u'night', u'temperatur'] [u'melbourn', u'shoot', u'shock', u'polic', u'neighbour'] [u'milit', u'kill', u'polic', u'saudi', u'shootout'] [u'minist', u'idea', u'depart', u'fail'] [u'mobil', u'phone', u'go', u'bang'] [u'moran', u'asset', u'seizur', u'hear', u'adjourn'] [u'hostag', u'hold', u'iraq', u'violenc', u'spread'] [u'youth', u'stay', u'region', u'area'] [u'mountain', u'bike', u'enthusiast', u'stanthorp'] [u'movi', u'industri', u'fight', u'internet', u'piraci'] [u'narrow', u'field', u'council', u'elect'] [u'nasa', u'launch', u'cultur', u'chang'] [u'newcastl', u'build', u'activ', u'quarter'] [u'england', u'remain', u'drought', u'free'] [u'softwar', u'extend', u'mar', u'rover', u'mission'] [u'call', u'rethink', u'drought', u'assist'] [u'union', u'worker', u'bargain'] [u'govt', u'consid', u'ranger', u'prosecut'] [u'look', u'boost', u'asian', u'trade'] [u'respond', u'fertilis', u'plan'] [u'opposit', u'leader', u'pledg', u'polit', u'advertis'] [u'pakistan', u'approv', u'militari', u'council'] [u'pakistani', u'opposit', u'leader', u'trial', u'concern'] [u'park', u'hand', u'underway'] [u'parliamentari', u'report', u'irrit', u'irrig'] [u'person', u'bankruptci', u'rise'] [u'push', u'increas', u'raini', u'fund'] [u'philippin', u'consid', u'iraq', u'withdraw'] [u'brother', u'websit', u'prove', u'bore'] [u'refus', u'draw', u'tugun', u'bypass'] [u'stand', u'firm', u'intellig', u'inquiri', u'call'] [u'visit', u'grafton'] [u'welcom', u'bush', u'iraq', u'stanc'] [u'polic', u'number', u'put', u'public', u'risk', u'union'] [u'polic', u'probe', u'jackson', u'claim'] [u'polic', u'probe', u'michael', u'jackson', u'molest', u'case'] [u'polic', u'renew', u'call', u'help', u'miss'] [u'polic', u'seek', u'arsonist'] [u'polic', u'arrest', u'attent', u'staff', u'campaign'] [u'pottharst', u'athen', u'dream', u'ruin'] [u'premier', u'appoint', u'examin', u'editor', u'chief', u'staff'] [u'premier', u'launch', u'galleri', u'fund'] [u'prison', u'flee', u'custodi', u'court', u'appear'] [u'properti', u'develop', u'threaten', u'buri', u'courier'] [u'psychologist', u'deregist', u'patient'] [u'rail', u'timet', u'remain', u'unchang'] [u'rat', u'increas', u'council', u'split', u'mayor'] [u'rebel', u'iraqi', u'cleric', u'choos', u'talk', u'envoy'] [u'record', u'price', u'pay', u'danehil', u'colt'] [u'recount', u'see', u'councillor', u'return'] [u'redevelop', u'choos', u'caravan', u'park'] [u'report', u'identifi', u'marin', u'conserv', u'area'] [u'retail', u'surg', u'upset', u'wall', u'street'] [u'review', u'recommend', u'scrap', u'culcairn', u'holbrook'] [u'road', u'clear', u'ashford', u'accid'] [u'roddick', u'cruis', u'past', u'carlsen', u'houston', u'clay'] [u'rooster', u'appeal', u'fine'] [u'russia', u'evacu', u'iraq'] [u'sadr', u'propos', u'peac', u'deal', u'envoy'] [u'electricti', u'market', u'confound', u'democrat'] [u'african', u'vote', u'apartheid', u'anniversari'] [u'sale', u'manag', u'jail', u'cigarett', u'theft'] [u'move', u'plastic', u'free', u'societi'] [u'sander', u'final', u'bout'] [u'schuettler', u'continu', u'lose', u'portug'] [u'scientist', u'face', u'shroud', u'turin', u'mysteri'] [u'scud', u'play', u'morocco'] [u'search', u'continu', u'prison', u'escape'] [u'seiz', u'asset', u'bolster', u'polic', u'budget'] [u'sheedi', u'call', u'calm', u'mclaren', u'saga'] [u'ship', u'queue', u'symptom', u'rail', u'problem'] [u'singl', u'girl', u'urg', u'west'] [u'slater', u'iron', u'quarter', u'bell'] [u'smoke', u'alarm', u'save', u'sunshin', u'famili'] [u'social', u'atlas', u'find', u'young', u'peopl', u'stay'] [u'south', u'africa', u'go', u'poll'] [u'south', u'east', u'drought'] [u'stanhop', u'defend', u'drought', u'relief'] [u'steep', u'fin', u'easter', u'speeder'] [u'suharto', u'parti', u'claim', u'elect', u'victori'] [u'sydney', u'bomb', u'maker', u'escap', u'jail', u'term'] [u'walnut', u'firm', u'announc', u'expans'] [u'taylor', u'successor', u'urg', u'surrend'] [u'teenag', u'charg', u'taxi', u'driver', u'mug'] [u'teen', u'strike', u'everton', u'leed', u'share', u'point'] [u'telstra', u'chairman', u'quit', u'board'] [u'torbay', u'back', u'govt', u'jail', u'neglig', u'parent'] [u'tourism', u'oper', u'urg', u'appli', u'grant'] [u'tourist', u'oper', u'voic', u'concern'] [u'transport', u'worker', u'place', u'month'] [u'trio', u'clear', u'strike', u'charg'] [u'tropic', u'speci', u'hitch', u'ride', u'coastal', u'current'] [u'truss', u'admit', u'drought', u'relief', u'weak'] [u'turkish', u'remand', u'face', u'peopl', u'smuggl'] [u'escap', u'hous'] [u'charg', u'offenc'] [u'unhappi', u'nurs', u'consid', u'offer'] [u'boost', u'timor', u'judici', u'amnesti'] [u'arrest', u'ricin', u'maker'] [u'blind', u'enemi', u'ashcroft'] [u'request', u'iran', u'help', u'curb', u'iraq', u'violenc'] [u'soldier', u'kill', u'forc', u'close', u'sadr'] [u'welcom', u'burma', u'opposit', u'leader', u'releas'] [u'vagana', u'contest', u'sever', u'high', u'tackl', u'charg'] [u'nistelrooy', u'say', u'stay'] [u'volunt', u'bear', u'brunt', u'weed', u'battl', u'inquiri', u'tell'] [u'health', u'nurs', u'assn', u'review', u'fund'] [u'wallabi', u'play', u'combin', u'pacif', u'team'] [u'water', u'suppli', u'problem', u'develop'] [u'woman', u'die', u'melbourn', u'shoot'] [u'zanzibar', u'outlaw', u'homosexu'] [u'abus', u'women', u'prone', u'smoke'] [u'health', u'worker', u'consid', u'industri', u'action'] [u'tell', u'state', u'sort', u'tugun', u'bypass'] [u'hold', u'lead', u'south', u'africa', u'count', u'continu'] [u'appeal', u'fail', u'save', u'histor', u'domain', u'fig'] [u'face', u'player', u'drain', u'miller'] [u'aussi', u'bell', u'beach', u'semi'] [u'australia', u'eras', u'nicaraguan', u'debt'] [u'author', u'watch', u'north', u'west', u'fire'] [u'babi', u'boomer', u'kidney', u'diseas', u'risk', u'rise'] [u'backbench', u'challeng', u'mchale', u'kenwick'] [u'ballarat', u'plead', u'deer', u'park', u'bypass'] [u'bash', u'put', u'hospit'] [u'beach', u'report', u'finish'] [u'beatti', u'await', u'impact', u'qanta'] [u'beckham', u'alleg', u'lover', u'speak'] [u'berri', u'squeez', u'import', u'orang', u'pack'] [u'blue', u'tier', u'log', u'begin'] [u'boycott', u'like', u'reconcili', u'ceremoni'] [u'brindal', u'consid', u'option', u'parti', u'meet'] [u'bronco', u'appeal', u'point', u'decis'] [u'burma', u'threaten', u'overshadow', u'asean', u'talk'] [u'burni', u'nurs', u'suspend', u'amid', u'drug', u'inquiri'] [u'burn', u'off', u'threaten', u'properti'] [u'bushfir', u'expert', u'need', u'inquiri', u'tell'] [u'buyer', u'spend', u'sydney', u'yearl', u'sale'] [u'women', u'contest', u'poll'] [u'govt', u'offer', u'region', u'relief'] [u'canadian', u'seal', u'hunter', u'race', u'quota'] [u'carr', u'suggest', u'valu', u'council', u'abolit'] [u'castella', u'resid', u'activ', u'plan'] [u'catch', u'releas', u'barramundi', u'fine'] [u'charg', u'guantanamo', u'chaplain', u'dismiss'] [u'chelsea', u'chief', u'ranieri', u'face', u'uncertainti'] [u'chetwynd', u'armidal', u'dumaresq', u'mayor'] [u'childer', u'survivor', u'hostel'] [u'china', u'expans', u'deep', u'global', u'impact'] [u'clare', u'sell', u'english', u'lesson', u'china'] [u'coff', u'hospit', u'celebr', u'graduat'] [u'concern', u'secur', u'anga', u'park'] [u'cosgrov', u'answer', u'intellig', u'complaint'] [u'cost', u'limit', u'adhd', u'drug'] [u'council', u'candid', u'seek', u'vote', u'probe'] [u'council', u'say', u'fluorid', u'water'] [u'council', u'want', u'compost', u'facil', u'answer'] [u'crash', u'victim', u'wait', u'day', u'dead', u'mother'] [u'crawford', u'suspens', u'overturn'] [u'custodi', u'escape'] [u'custom', u'arrang', u'fish', u'boat', u'repair'] [u'death', u'spark', u'communiti', u'support', u'boost'] [u'distanc', u'educ', u'fail', u'indigen', u'student', u'report'] [u'doc', u'probe', u'judg', u'critic'] [u'doctor', u'action', u'mersey', u'hospit', u'servic'] [u'dolphin', u'birth', u'surpris', u'marin', u'park', u'staff'] [u'want', u'longer', u'sentenc', u'babi', u'killer'] [u'dravid', u'crack', u'india', u'take', u'command'] [u'dravid', u'unbeaten', u'give', u'india', u'lead'] [u'drought', u'polici', u'depoliticis', u'labor'] [u'drought', u'prepar', u'lack'] [u'easter', u'offer', u'respit'] [u'editor', u'chief', u'resign'] [u'effect', u'counter', u'intellig', u'year', u'away'] [u'eldorado', u'gold', u'market'] [u'environ', u'group', u'boycott', u'mine', u'forum'] [u'europ', u'reject', u'lade', u'truce', u'tape'] [u'expert', u'worri', u'townsvill', u'dengu', u'status'] [u'extortionist', u'cost', u'centrebet', u'million'] [u'famili', u'seek', u'coroni', u'inquiri'] [u'farina', u'demand', u'commit', u'player'] [u'farmer', u'urg', u'avoid', u'crop', u'virus'] [u'father', u'daughter', u'accept', u'mayor', u'posit'] [u'figur', u'rescu', u'chopper', u'servic'] [u'financ', u'rain', u'love', u'parad'] [u'danger', u'high', u'despit', u'danger', u'season'] [u'destroy', u'famili', u'mansion'] [u'firefight', u'continu', u'battl', u'blaze'] [u'fire', u'toe'] [u'flatley', u'fail', u'shake', u'thumb', u'injuri'] [u'flue', u'heater', u'asthmat', u'studi'] [u'foreign', u'exodus', u'crippl', u'iraq', u'reconstruct'] [u'forest', u'proscrib', u'forc', u'protest', u'brown'] [u'forum', u'focus', u'alcohol', u'abus', u'fight'] [u'froggi', u'founder', u'jail', u'fraud', u'charg'] [u'fuel', u'didnt', u'caus', u'fatal', u'plane', u'crash', u'report'] [u'gene', u'profil', u'leukaemia', u'treatment'] [u'global', u'trend', u'boost', u'local', u'economi'] [u'govt', u'play', u'role', u'telstra', u'chairman', u'appoint'] [u'heavi', u'rain', u'caus', u'second', u'suva', u'flood'] [u'henin', u'hardenn', u'skip'] [u'heroin', u'shortag', u'cut', u'crime'] [u'hick', u'interrog', u'featur', u'broadcast'] [u'hird', u'face', u'music'] [u'hird', u'fin', u'umpir', u'slur'] [u'hospit', u'flood', u'food', u'poison', u'case'] [u'hospit', u'protest', u'target', u'govt', u'public'] [u'hous', u'market', u'continu', u'cool'] [u'howard', u'ax', u'atsic'] [u'imparja', u'stand', u'broadcast', u'time'] [u'indigen', u'leader', u'condemn', u'atsic', u'decis'] [u'iranian', u'diplomat', u'kill', u'iraq'] [u'islam', u'state', u'emerg', u'meet'] [u'itali', u'confirm', u'iraq', u'hostag', u'execut'] [u'itali', u'stand', u'fast', u'despit', u'hostag', u'death'] [u'ivanisev', u'accept', u'queen', u'wildcard'] [u'japanes', u'hostag', u'iraq', u'releas'] [u'japanes', u'hostag', u'releas', u'report'] [u'lag', u'molik', u'make', u'earli', u'exit'] [u'joint', u'station', u'usher', u'polic'] [u'kidnapp', u'kill', u'italian', u'hostag', u'jazeera'] [u'kookaburra', u'sink', u'south', u'africa'] [u'krogh', u'remov', u'race'] [u'laser', u'beam', u'bird', u'franc', u'runway'] [u'latham', u'dismiss', u'howard', u'polici', u'claim'] [u'latham', u'hear', u'pilbara', u'econom', u'valu'] [u'latrob', u'council', u'start', u'voluntari', u'registr'] [u'legisl', u'good', u'news', u'green', u'energi', u'plan'] [u'locust', u'build', u'farmer', u'watch'] [u'locust', u'report', u'prompt', u'autumn', u'survey'] [u'love', u'aim', u'defend', u'crown'] [u'lynch', u'like', u'miss', u'eagl', u'match'] [u'mandela', u'boost', u'africa', u'vote'] [u'die', u'highway', u'crash'] [u'mansfield', u'resign', u'good', u'telstra', u'latham'] [u'market', u'lose', u'grind', u'despit', u'strong', u'telstra', u'trade'] [u'mari', u'israel', u'place', u'good', u'behaviour', u'bond'] [u'mayor', u'experi', u'hang', u'balanc'] [u'mayor', u'question', u'late', u'drought'] [u'mediat', u'stave', u'sadr', u'assault'] [u'west', u'host', u'plan', u'save', u'threaten', u'plant'] [u'shire', u'work', u'growth'] [u'miss', u'girl', u'safe'] [u'accid', u'spark', u'urgent', u'highway'] [u'murali', u'clear', u'say', u'lanka', u'chief'] [u'director', u'hit', u'report'] [u'newcastl', u'hous', u'market', u'eas'] [u'newcastl', u'uefa', u'semi', u'celtic', u'crash'] [u'committe', u'rep', u'wetland', u'manag'] [u'mayor', u'wingecarribe', u'council'] [u'mayor', u'upbeat', u'eurobodalla', u'growth'] [u'move', u'stop', u'credit', u'card', u'fraud'] [u'strategi', u'aim', u'increas', u'export'] [u'studi', u'look', u'effect', u'exercis', u'arthriti'] [u'norway', u'counti', u'rule', u'smoke', u'basic', u'right'] [u'govt', u'urg', u'think', u'water', u'take'] [u'nuttal', u'admit', u'hospit', u'wait', u'list', u'woe'] [u'olymp', u'venu', u'trigger', u'concern', u'cassel'] [u'olymp', u'venu', u'trigger', u'shooter', u'concern'] [u'osama', u'captur', u'deadlin', u'difficult'] [u'overheat', u'warn', u'chines', u'economi', u'grow'] [u'palestinian', u'attack', u'bush', u'gaza', u'plan'] [u'palestinian', u'condemn', u'settlement', u'plan'] [u'palestinian', u'continu', u'struggl', u'say', u'arafat'] [u'parent', u'teacher', u'await', u'school', u'review'] [u'parkinson', u'win', u'bell'] [u'plan', u'gunnedah', u'airport', u'upgrad'] [u'address', u'local', u'issu', u'grafton'] [u'question', u'court', u'chang', u'decis'] [u'polic', u'game', u'fetch'] [u'polic', u'charg', u'teen', u'assault'] [u'polic', u'head', u'contract', u'extend', u'rise', u'consid'] [u'polic', u'offer', u'assur', u'detect'] [u'pratt', u'power', u'charleston', u'round'] [u'premier', u'monitor', u'mackay', u'servic', u'chang'] [u'promot', u'liber', u'parliamentarian'] [u'protest', u'dairi', u'farmer', u'want', u'price', u'water'] [u'legisl', u'rock', u'research'] [u'rail', u'overpass', u'talk', u'track'] [u'rapper', u'indict', u'lie', u'shootout'] [u'rate', u'rise', u'cap', u'tatiara', u'council'] [u'receptor', u'drug', u'rais', u'erect', u'effect'] [u'red', u'rest', u'injur', u'flanker'] [u'republ', u'campaign', u'focus', u'bush'] [u'return', u'moura', u'dentist', u'possibl'] [u'revamp', u'plan', u'skipton'] [u'rossi', u'aim', u'open', u'victori', u'yamaha'] [u'rower', u'forc', u'athen', u'campaign'] [u'russia', u'begin', u'iraq', u'evacu'] [u'saint', u'appeal', u'hamil', u'suspens'] [u'sedna', u'miss', u'moon', u'mystifi', u'astronom'] [u'share', u'respons', u'boost', u'indigen', u'wellb'] [u'shire', u'offer', u'reward', u'catch', u'arsonist'] [u'shire', u'want', u'workshop', u'discuss', u'yallingup', u'coast'] [u'shop', u'owner', u'face', u'trial', u'toddler', u'bull'] [u'south', u'korea', u'pois', u'elect', u'parliament'] [u'steal', u'victim', u'want', u'thiev', u'punish'] [u'korea', u'parti', u'head'] [u'stuart', u'petroleum', u'gush'] [u'sugar', u'packag', u'rescu', u'deal'] [u'suspect', u'lade', u'tape', u'offer', u'european', u'truce'] [u'suspend', u'atsic', u'chairman', u'plead', u'case'] [u'swim', u'australia', u'stay', u'race'] [u'sydney', u'arrest', u'terror', u'charg'] [u'taliban', u'loyalist', u'continu', u'afghan', u'attack'] [u'retail', u'welcom', u'propos', u'trade', u'reform'] [u'telstra', u'share', u'surg', u'mansfield', u'quit'] [u'telstra', u'consid', u'busi', u'compo', u'claim'] [u'thorp', u'chanc', u'remain', u'unclear'] [u'thorp', u'hand', u'ticket'] [u'tooth', u'ferri', u'price', u'britain', u'dentistri'] [u'travel'] [u'uechtritz', u'leav', u'channel'] [u'cautious', u'return', u'iraq'] [u'envoy', u'outlin', u'iraq', u'power', u'transfer', u'plan'] [u'union', u'air', u'alcohol', u'polic', u'fear'] [u'union', u'undemocrat'] [u'union', u'lament', u'north', u'coast', u'rail', u'cut'] [u'union', u'seek', u'sunbeam', u'job', u'assur'] [u'union', u'want', u'bundaberg', u'work', u'review'] [u'union', u'warn', u'sugar', u'closur', u'impact'] [u'parti', u'south', u'korean', u'elect'] [u'econom', u'growth', u'hit', u'australian', u'dollar'] [u'rate', u'specul', u'lead', u'market'] [u'soldier', u'kill', u'iraq', u'bomb', u'attack'] [u'west', u'bank', u'stanc', u'justifi', u'violenc', u'hama', u'say'] [u'vagana', u'cop', u'week'] [u'vail', u'talk', u'trade', u'deal', u'benefit'] [u'vaughan', u'hail', u'caribbean', u'triumph'] [u'vaughan', u'cap', u'england', u'seri', u'celebr'] [u'defend', u'control', u'burn', u'fire', u'rage'] [u'firefight', u'battl', u'blaze', u'state'] [u'victoria', u'swelter', u'near', u'record', u'temperatur'] [u'violinist', u'strike', u'wrong', u'chord', u'polic'] [u'volker', u'wont', u'face', u'charg'] [u'warn', u'hop', u'success', u'hampshir'] [u'vet', u'urg', u'know', u'entitl'] [u'water', u'concern', u'halt', u'maleni', u'land', u'clear'] [u'water', u'charg', u'chang', u'tip'] [u'weather', u'heat', u'south', u'west'] [u'whitak', u'doubt', u'waratah'] [u'winemak', u'hard', u'swallow'] [u'woman', u'children', u'highway', u'crash'] [u'woodsid', u'announc', u'fifth', u'train', u'plan'] [u'make', u'concess'] [u'zimbabw', u'player', u'issu', u'ultimatum'] [u'aborigin', u'leader', u'warn', u'scrap', u'atsic', u'folli'] [u'forc', u'replac', u'fleet'] [u'ord', u'lower', u'tumbl'] [u'alston', u'tout', u'telstra'] [u'amnesti', u'condemn', u'pngs', u'death', u'penalti'] [u'celebr', u'african', u'provinc', u'race', u'tight'] [u'sweep', u'african', u'poll'] [u'appeal', u'throw', u'go'] [u'arafat', u'warn', u'west', u'bank', u'land', u'annex'] [u'atsic', u'slap', u'local', u'communiti'] [u'atsic', u'commission', u'deni', u'invit'] [u'atsic', u'spokesman', u'concern', u'futur'] [u'atsi', u'offic', u'suspend', u'fraud', u'charg'] [u'aussi', u'tour', u'rooki', u'share', u'vega', u'lead'] [u'austoft', u'facil'] [u'australian', u'hostag', u'foolhardi', u'howard'] [u'australian', u'woman', u'foolhardi', u'stay', u'iraq', u'howard'] [u'barbara', u'walter', u'sign', u'lucrat', u'book', u'deal'] [u'beatti', u'see', u'atsic', u'fresh', u'start'] [u'beer', u'gout', u'link', u'studi', u'confirm'] [u'berlusconi', u'corrupt', u'trial', u'resum'] [u'birdi', u'blitz', u'send', u'colsaert', u'sevill', u'lead'] [u'blair', u'deni', u'conflict', u'iraq'] [u'blair', u'say', u'peac', u'roadmap', u'track'] [u'blast', u'past', u'thunderbolt'] [u'bloodstock', u'prospect', u'boom', u'yearl', u'sale'] [u'bomber', u'overpow', u'blue'] [u'british', u'leagu', u'chief', u'probe', u'bet', u'claim'] [u'buckley', u'injuri', u'blow', u'collingwood'] [u'buckley', u'injuri', u'blow', u'magpi'] [u'bull', u'red'] [u'driver', u'throat', u'hold'] [u'call', u'cigarett', u'style', u'restrict', u'alcohol'] [u'call', u'emerg', u'helicopt', u'servic', u'south'] [u'carr', u'urg', u'commonwealth', u'boost', u'medic', u'posit'] [u'cattl', u'deal', u'stamped', u'action'] [u'celtic', u'scottish', u'titl'] [u'chadban', u'return', u'great', u'lake', u'mayor'] [u'chines', u'miner', u'rescu', u'day', u'underground'] [u'claim', u'rule', u'breach', u'possibl', u'lobster', u'closur'] [u'click', u'dont', u'shear'] [u'back', u'middl', u'school', u'idea'] [u'coast', u'councillor', u'vent', u'elect', u'concern'] [u'coff', u'bypass', u'support', u'unhappi', u'interim'] [u'coff', u'host', u'nation', u'surf', u'lifesav', u'titl'] [u'concern', u'rais', u'possibl', u'bait'] [u'concern', u'lettuc', u'crop', u'lockyer', u'valley'] [u'congo', u'ferri', u'mishap', u'claim', u'live'] [u'cosmic', u'magnifi', u'glass', u'find', u'distant', u'planet'] [u'courtney', u'love', u'stand', u'trial', u'drug', u'case'] [u'crime', u'rate', u'murrumbidge', u'area'] [u'crisi', u'accommod', u'short', u'gympi'] [u'danish', u'businessman', u'fear', u'kidnap', u'iraq'] [u'decis', u'shop', u'hour', u'split'] [u'defenc', u'famili', u'stay', u'solid', u'support', u'serv'] [u'denmark', u'releas', u'iraq', u'intellig'] [u'dog', u'warrior'] [u'dog', u'down', u'warrior'] [u'downer', u'dismiss', u'lade', u'truce', u'offer'] [u'downer', u'discuss', u'nauru', u'financi'] [u'drink', u'spike', u'warn', u'gold', u'coast'] [u'drought', u'proof', u'plant', u'highlight', u'open', u'garden'] [u'eddi', u'scoop', u'fug'] [u'elder', u'commit', u'trial', u'coat', u'arm', u'theft'] [u'electron', u'visa', u'expans', u'announc'] [u'embryo', u'research', u'begin'] [u'emerg', u'servic', u'memori', u'cape', u'hillsborough'] [u'engin', u'invent', u'solubl', u'heart', u'stent'] [u'england', u'seamer', u'award', u'summer', u'contract'] [u'export', u'drive', u'boost', u'south', u'west'] [u'farmer', u'check', u'fertilis', u'sale'] [u'fatal', u'accid', u'investig', u'begin'] [u'fear', u'spread', u'locust', u'wing'] [u'feder', u'face', u'preselect', u'battl'] [u'feder', u'polic', u'earn', u'govt', u'prais', u'terrorist'] [u'govt', u'urg', u'boost', u'child', u'care', u'effort'] [u'feedlot', u'futur', u'abattoir', u'concern'] [u'figur', u'crime', u'reduct', u'break', u'hill'] [u'fiji', u'storm', u'leav', u'death', u'destruct'] [u'risk', u'remain', u'despit', u'reduct', u'polici'] [u'fire', u'bring', u'control'] [u'fishermen', u'join', u'polit', u'circl'] [u'flood', u'stem'] [u'forest', u'vigil', u'continu', u'log'] [u'japanes', u'hostag', u'wish', u'remain', u'iraq'] [u'face', u'trial', u'child', u'charg'] [u'teacher', u'plead', u'guilti', u'molest', u'student'] [u'forum', u'seek', u'input', u'futur', u'region', u'communiti'] [u'fourth', u'place', u'save', u'liverpool', u'say', u'houllier'] [u'freddi', u'urg', u'selector', u'room', u'barrett'] [u'benefit', u'report', u'delay'] [u'gang', u'rapist', u'dead', u'cell'] [u'german', u'polic', u'search', u'littl', u'ladi', u'bank'] [u'girl', u'tell', u'nightmar', u'crossbow', u'attack'] [u'good', u'season', u'ahead', u'mudge', u'vine'] [u'govt', u'move', u'sell', u'atsic', u'decis'] [u'greec', u'endors', u'cyprus', u'reunif', u'plan'] [u'green', u'lament', u'silenc', u'falun', u'gong', u'protest'] [u'group', u'call', u'polic', u'pursuit', u'halt'] [u'heal', u'garden', u'open', u'flinder'] [u'health', u'underspend', u'affect', u'region', u'communiti'] [u'high', u'prais', u'retir', u'famili', u'court', u'chief'] [u'hotel', u'group', u'applaud', u'nation', u'bouncer', u'code'] [u'india', u'claim', u'histor', u'pakistan', u'seri'] [u'indigen', u'leader', u'attack', u'atsic', u'abolit'] [u'indigen', u'leader', u'odd', u'atsic', u'plan'] [u'indigen', u'offend', u'accommod', u'worri', u'benalla'] [u'indonesia', u'build', u'case', u'cleric'] [u'inquest', u'delay', u'allow', u'communiti', u'griev'] [u'inquest', u'tell', u'time', u'warn'] [u'investig', u'dead', u'wheel'] [u'iraq', u'contamin', u'materi', u'disappear'] [u'ireland', u'claim', u'intern', u'rule', u'seri'] [u'isol', u'fear', u'abolit', u'atsic'] [u'job', u'doubt', u'atsic', u'decis'] [u'kemp', u'bag', u'green', u'claim'] [u'land', u'concern', u'delay', u'move', u'privat', u'school'] [u'latham', u'pledg', u'broom', u'coastguard'] [u'latrob', u'hold', u'vigil', u'hospit', u'campaign'] [u'lawyer', u'doesnt', u'fear', u'claim', u'flurri'] [u'lawyer', u'argu', u'leski', u'inquiri'] [u'leaflet', u'warn', u'loom', u'baghdad', u'attack'] [u'leed', u'eas', u'releg', u'fear', u'arsenal'] [u'legal', u'servic', u'fear', u'atsic', u'ax', u'start', u'cut'] [u'leski', u'inquest', u'stall'] [u'local', u'industri', u'govt', u'boost'] [u'strengthen'] [u'maleni', u'tree', u'feel', u'cost'] [u'charg', u'doubl', u'troubl'] [u'jail', u'church', u'fraud'] [u'court', u'charg'] [u'stand', u'trial', u'coat', u'arm', u'theft'] [u'unit', u'open', u'queiroz', u'comeback'] [u'mayoralti', u'lotteri', u'west'] [u'mbeki', u'pledg', u'disappoint', u'south', u'african'] [u'meet', u'discuss', u'public', u'drunken'] [u'mentor', u'program', u'help', u'find', u'job'] [u'menzi', u'director', u'accept', u'interst', u'posit'] [u'mexican', u'firework', u'blast', u'kill', u'seven'] [u'mix', u'result', u'crime', u'stat'] [u'monaro', u'council', u'poll', u'ahead', u'june'] [u'mosqu', u'fallujah'] [u'mother', u'claim', u'resign', u'answer', u'famili', u'care'] [u'motorcyclist', u'die', u'involv'] [u'confid', u'strong', u'sugar', u'packag'] [u'murder', u'toddler', u'scar', u'protest'] [u'predict', u'profit', u'downturn'] [u'punish', u'profit', u'announc', u'backlash'] [u'narrow', u'escap', u'australian', u'hostag', u'iraq'] [u'nation', u'push', u'wheatbelt', u'polic', u'fund'] [u'right', u'step', u'wiluna', u'shire'] [u'reg', u'ensur', u'clean', u'water', u'port'] [u'report', u'back', u'claim'] [u'bail', u'alleg', u'yarravill', u'shooter'] [u'deal', u'steven', u'announc', u'manag'] [u'traffic', u'blue', u'byron', u'music', u'festiv'] [u'opposit', u'say', u'fund'] [u'organis', u'crime', u'link', u'fish', u'industri'] [u'origin', u'drummer', u'beatl', u'festiv'] [u'pakistan', u'face', u'defeat', u'decis', u'test'] [u'pampl', u'share', u'second', u'south', u'carolina'] [u'parti', u'mark', u'cultur', u'celebr'] [u'penalti', u'like', u'polic', u'offic', u'asleep'] [u'plan', u'delay', u'theophan', u'face'] [u'polic', u'blitz', u'school', u'holiday', u'return'] [u'polic', u'confid', u'alcohol', u'enforc'] [u'polic', u'think', u'link', u'stab'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'number', u'despit', u'recruit', u'review'] [u'polic', u'question', u'suspect', u'chadston', u'murder'] [u'polic', u'charg', u'chadston', u'slay'] [u'polic', u'job', u'announc', u'docker', u'river'] [u'poverti', u'worsen', u'brazil', u'studi', u'say'] [u'pratt', u'charleston', u'serena', u'injuri', u'scare'] [u'protest', u'expect', u'remov', u'atsic'] [u'public', u'servant', u'boost'] [u'public', u'warn', u'drink', u'spike', u'rise'] [u'push', u'ecotour', u'train', u'tafe'] [u'upbeat', u'end', u'tugun', u'bypass', u'woe'] [u'queensland', u'derbi', u'possibl', u'origin', u'select', u'trial'] [u'rail', u'servic', u'put', u'newel', u'odd', u'parti'] [u'rail', u'shutdown', u'caus', u'delay', u'melbourn', u'commut'] [u'reduct', u'librari', u'servic', u'like', u'sthn'] [u'refere', u'spotlight', u'milan', u'face', u'tuscan', u'test'] [u'releas', u'italian', u'hostag', u'remain', u'difficult'] [u'rock', u'real', u'face', u'derbi', u'ordeal'] [u'rural', u'communiti', u'bank', u'lender'] [u'russian', u'ballerina', u'weigh', u'lose', u'damag', u'case'] [u'safin', u'shake', u'dizzi', u'spell', u'defeat', u'ascion'] [u'salari', u'bonus', u'viacom', u'exec'] [u'school', u'look', u'classroom', u'fund'] [u'schwarzenegg', u'appoint', u'eastwood', u'devito', u'film'] [u'scone', u'report', u'huge', u'increas', u'weapon', u'offenc'] [u'search', u'underway', u'adelaid', u'woman', u'abduct'] [u'secur', u'concern', u'privat', u'prison', u'dismiss'] [u'serial', u'offend', u'get', u'year', u'jail', u'term'] [u'slush', u'fund', u'alleg', u'gold', u'coast', u'council'] [u'smyth', u'demand', u'jail', u'explan'] [u'snowdon', u'attack', u'atsic', u'plan'] [u'solberg', u'lead', u'ralli', u'gronholm', u'roll'] [u'southern', u'health', u'review', u'revenu', u'strategi'] [u'spanish', u'parliament', u'approv', u'zapatero'] [u'spore', u'growth', u'delay', u'wheat', u'shipment', u'test'] [u'state', u'agre', u'nation', u'action', u'cane', u'toad'] [u'statist', u'crime', u'rise', u'tamworth'] [u'stormer', u'blitz', u'blue'] [u'string', u'pull', u'return', u'violin', u'owner'] [u'studi', u'find', u'sunset', u'help', u'guid', u'migrat', u'bird'] [u'studi', u'probe', u'genet', u'discrimin'] [u'support', u'atsic', u'scrap'] [u'swan', u'lose', u'davi', u'oloughlin'] [u'sydney', u'acid', u'spill', u'spark', u'emerg', u'respons'] [u'sydney', u'launceston', u'pollut', u'signific', u'studi'] [u'telstra', u'quiet', u'rental', u'price', u'rise'] [u'terror', u'threat', u'spark', u'citizen', u'flee'] [u'thousand', u'flee', u'suva', u'flood'] [u'road', u'accid'] [u'kill', u'philippin', u'candid', u'ambush'] [u'tourist', u'bring', u'financi', u'windfal', u'denmark'] [u'townsvill', u'music', u'centr', u'lobbi', u'return'] [u'trucki', u'die'] [u'love', u'teen', u'charg', u'kill', u'plan'] [u'market', u'boost', u'food', u'week', u'turn'] [u'union', u'concern', u'bluescop', u'breakdown'] [u'parti', u'claim', u'histor', u'south', u'korea', u'elect'] [u'clear', u'iraq', u'plan'] [u'extend', u'iraq', u'troop', u'deploy'] [u'order', u'staff', u'leav', u'saudi', u'arabia'] [u'preoccupi', u'like', u'rate', u'rise'] [u'welcom', u'european', u'reject', u'lade', u'truce'] [u'vanston', u'say', u'atsic', u'scrap', u'wont', u'affect', u'job'] [u'nation', u'confer', u'give', u'forum', u'drought'] [u'violenc', u'prompt', u'rethink', u'liquor', u'licens'] [u'violet', u'town', u'weir', u'destruct'] [u'wafl', u'give', u'approv', u'mclean', u'oval', u'clash'] [u'water', u'park', u'jeopardi'] [u'weather', u'aid', u'firefight', u'battl', u'gippsland', u'blaze'] [u'weighti', u'woe', u'see', u'mcdonald', u'boost', u'offer'] [u'winton', u'properti', u'pass'] [u'worcest', u'deni', u'larkham'] [u'world', u'champion', u'astarloa', u'leav', u'embattl'] [u'zimbabw', u'cricket', u'crisi', u'wont', u'stop', u'aussi', u'tour'] [u'zimbabw', u'squad', u'rip', u'apart', u'player', u'boycott'] [u'million', u'add', u'spice', u'lonhro', u'farewel'] [u'million', u'add', u'spice', u'lonhro', u'farewel'] [u'abduct', u'adelaid', u'woman', u'miss'] [u'airlin', u'turn', u'white', u'liner', u'mexican', u'road'] [u'akhtar', u'deni', u'rift', u'captain'] [u'chines', u'worker', u'hold', u'briefli', u'iraq'] [u'argentin', u'monasterio', u'lead', u'ballestero', u'close'] [u'djibouti', u'flood'] [u'joke', u'blast', u'mcenro'] [u'babi', u'boom', u'hit', u'monarto'] [u'bairnsdal', u'die', u'smash'] [u'berlusconi', u'corrupt', u'trial'] [u'britain', u'agre', u'east', u'plan'] [u'bronco', u'buck', u'cowboy'] [u'bulk', u'carrier', u'adrift', u'coast'] [u'bush', u'back', u'role', u'iraq', u'handov'] [u'bush', u'blair', u'stand', u'iraq', u'deadlin'] [u'bush', u'plan', u'iraq', u'decemb', u'book'] [u'cameroon', u'dock', u'world', u'point'] [u'captain', u'warn', u'overshadow', u'veteran', u'team', u'mate'] [u'captur', u'soldier', u'parad', u'arab'] [u'chief', u'surviv', u'dramat', u'climax', u'sink', u'shark'] [u'chief', u'surviv', u'late', u'charg', u'sink', u'shark'] [u'china', u'blast', u'forc', u'mass', u'evacu'] [u'clash', u'near', u'holi', u'iraq', u'citi', u'rebel', u'cleric', u'defiant'] [u'colombian', u'navi', u'drug', u'scandal'] [u'contend', u'line', u'season'] [u'corrobore', u'highlight', u'indigen', u'cultur'] [u'court', u'postpon', u'courtney', u'love', u'trial'] [u'curti', u'lead', u'south', u'carolina'] [u'dead', u'china', u'leak', u'spark', u'huge', u'evacu'] [u'demon', u'turn', u'power'] [u'eagl', u'edg', u'lion'] [u'embryo', u'research', u'licenc', u'spawn', u'attack'] [u'expert', u'focus', u'test', u'visual', u'disord'] [u'fake', u'milk', u'powder', u'kill', u'dozen', u'chines', u'babi'] [u'favour', u'condit', u'firefight'] [u'fear', u'soldier', u'hold', u'hostag', u'iraq'] [u'ferguson', u'hit', u'schole', u'hear'] [u'lord', u'mayor', u'hit', u'council', u'bulli', u'tactic'] [u'goal', u'henri', u'fire', u'gunner', u'rout', u'leed'] [u'isra', u'wound', u'suicid', u'bomb', u'report'] [u'hostag', u'free', u'iraq'] [u'fund', u'allow', u'greater', u'kidney', u'stone', u'research'] [u'gang', u'rapist', u'hang', u'prison'] [u'german', u'bank', u'chief', u'quit', u'hotel', u'scandal'] [u'german', u'publish', u'daili', u'telegraph'] [u'govt', u'tidi', u'school', u'clean', u'contract'] [u'govt', u'urg', u'boost', u'lobster', u'protect'] [u'grand', u'arme', u'spoil', u'lonhro', u'parti'] [u'guard', u'kill', u'baghdad', u'mortar', u'attack'] [u'hand', u'hold', u'coupl', u'deem', u'raunchi'] [u'case', u'put', u'porn', u'industri', u'hold'] [u'hope', u'dog', u'rude', u'cooki'] [u'indian', u'actress', u'poll', u'campaign', u'kill', u'crash'] [u'iraq', u'clash', u'leav', u'dead'] [u'iraq', u'world', u'hop', u'danger', u'stang', u'go', u'home'] [u'iraq', u'spark', u'east'] [u'italian', u'minist', u'defend', u'handl', u'hostag', u'death'] [u'kerr', u'lead', u'vega'] [u'kookaburra', u'crush', u'malaysia'] [u'kuwaiti', u'arrest', u'tri', u'hijack', u'qatar'] [u'labor', u'predict', u'intellig', u'revel'] [u'elv', u'fire', u'santa'] [u'charg', u'attempt', u'murder', u'girlfriend'] [u'die', u'polic', u'pursuit'] [u'court', u'mother', u'slay'] [u'maykb', u'diva', u'complet', u'doubl'] [u'mbeki', u'celebr', u'african', u'poll'] [u'mediat', u'halt', u'najaf', u'sadr', u'spokesman'] [u'miami', u'host', u'video', u'award'] [u'miller', u'lash', u'red', u'ballymor', u'fiasco'] [u'minist', u'upbeat', u'correct', u'review', u'back'] [u'time', u'power', u'submiss'] [u'nauru', u'face', u'financi', u'debt'] [u'navi', u'crew', u'join', u'freedom', u'entri', u'ceremoni'] [u'nomine', u'choos', u'lucrat', u'german', u'film', u'prize'] [u'environ', u'job'] [u'arrest', u'israel'] [u'opposit', u'parti', u'reopen', u'burma'] [u'palestinian', u'milit', u'kill', u'explos'] [u'palestinian', u'campaign', u'prison', u'releas'] [u'peac', u'road', u'say'] [u'player', u'zimbabw', u'union'] [u'anti', u'corrupt', u'campaign', u'lose', u'cancer', u'battl'] [u'polic', u'chase', u'end', u'arrest'] [u'polic', u'miss', u'woman'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'probe', u'shoot'] [u'polic', u'question', u'cabooltur', u'shoot'] [u'protest', u'street', u'burma'] [u'quak', u'indonesia', u'bali', u'bengkulu', u'island'] [u'radcliff', u'olymp', u'track'] [u'rebel', u'shiit', u'cleric', u'wont', u'disband', u'armi'] [u'rossi', u'claim', u'provision', u'pole', u'phakisa'] [u'safin', u'beat', u'robredo', u'reach', u'estoril', u'semi'] [u'saint', u'unbeaten', u'cat', u'break'] [u'saudi', u'secur', u'forc', u'defus', u'bomb'] [u'scientist', u'head', u'japan', u'accept', u'scienc', u'prize'] [u'second', u'home', u'raid', u'kidnap', u'probe'] [u'shark', u'roll', u'raider'] [u'skipper', u'savag', u'shoaib', u'test', u'loss'] [u'solberg', u'increas', u'lead', u'zealand', u'ralli'] [u'solberg', u'take', u'grip', u'ralli'] [u'spain', u'arrest', u'bomb', u'suspect'] [u'helen', u'launch', u'inquiri', u'alleg', u'bet'] [u'storm', u'rout', u'rabbitoh'] [u'studi', u'air', u'perth', u'pollut', u'woe'] [u'tenant', u'face', u'loom', u'rent', u'rise'] [u'texa', u'judg', u'pooh', u'pooh', u'pest', u'owner'] [u'hospitalis', u'smash'] [u'tiger', u'cat', u'showdown'] [u'timefram', u'loom', u'plastic', u'phase'] [u'tourism', u'council', u'await', u'hong', u'kong'] [u'highway', u'crash'] [u'japanes', u'hostag', u'releas', u'iraq'] [u'union', u'fear', u'atsic', u'loss'] [u'student', u'outrag', u'rise'] [u'iraqi', u'cleric', u'talk', u'ceas'] [u'stress', u'import', u'aust', u'troop', u'iraq'] [u'venus', u'charleston', u'semi', u'final'] [u'waratah', u'drought'] [u'waratah', u'win', u'drought'] [u'whitak', u'clear', u'play', u'waratah'] [u'windi', u'boost', u'lawson', u'clear', u'play'] [u'woman', u'hospitalis', u'shoot', u'incid'] [u'aborigin', u'committe', u'fight', u'retain', u'servic'] [u'afghan', u'station', u'ban', u'femal', u'singer'] [u'strike', u'kill', u'hama', u'leader'] [u'road', u'baghdad', u'close'] [u'promis', u'higher', u'educ', u'roll'] [u'amaz', u'rossi', u'grab', u'pole', u'south', u'african'] [u'asylum', u'seeker', u'drown', u'canari', u'island'] [u'bash', u'put', u'prison', u'guard', u'hospit'] [u'birdlif', u'flock', u'venic', u'lagoon'] [u'bodi', u'diamond', u'miner', u'amazon'] [u'bosnian', u'serb', u'polic', u'launch', u'push', u'crime'] [u'buckley', u'pie', u'disarray', u'loss', u'docker'] [u'burn', u'leav', u'smoki', u'haze'] [u'caravan', u'group', u'upset', u'park', u'claim'] [u'carter', u'snatch', u'victori', u'crusad'] [u'cattl', u'amok', u'highway', u'smash'] [u'chelsea', u'footbal', u'club', u'owner', u'name', u'britain', u'richest'] [u'chelsea', u'tycoon', u'abramovich', u'name', u'britain', u'richest'] [u'chick', u'add', u'eagl', u'casualti', u'list'] [u'cleric', u'backer', u'predict', u'najaf', u'attack'] [u'collin', u'want', u'remot', u'educ', u'guarante'] [u'confer', u'discuss', u'rare', u'diseas'] [u'defenc', u'dept', u'accus', u'inquiri', u'interfer'] [u'defenc', u'dept', u'inquiri', u'email'] [u'democrat', u'choos', u'lee', u'replac', u'senat', u'ticket'] [u'despotovski', u'name', u'glori'] [u'dockland', u'return', u'melbourn', u'citi', u'council'] [u'dog', u'break', u'hawk'] [u'dog', u'nose'] [u'downer', u'welcom', u'bashir', u'probe'] [u'dragon', u'blister', u'attack', u'burn', u'panther'] [u'dutch', u'doctor', u'admit', u'patient', u'survey'] [u'eel', u'escap', u'eagl', u'clutch'] [u'welcom', u'isra', u'withdraw', u'plan'] [u'mourn', u'senna', u'death', u'race', u'spirit'] [u'famili', u'plead', u'help', u'miss'] [u'ferrero', u'crash', u'valencia'] [u'gasparov', u'win', u'slovakia', u'presidenti', u'poll'] [u'georgia', u'polli', u'face', u'drug', u'test'] [u'gonzalez', u'lead', u'sevill', u'ballestero', u'fade'] [u'good', u'lead', u'sydney', u'victori', u'roo'] [u'govt', u'reject', u'haqu', u'famili', u'polit', u'scapegoat'] [u'hama', u'leader', u'kill', u'blow', u'east', u'peac', u'downer'] [u'hama', u'promis', u'reveng', u'follow', u'assassin'] [u'hama', u'vow', u'reveng', u'leader', u'assassin'] [u'heavyweight', u'result', u'leav', u'king', u'hold', u'card'] [u'highway', u'crash', u'leav', u'dead'] [u'home', u'buyer', u'petrov', u'hous'] [u'hous', u'cost', u'toll', u'pet'] [u'hunt', u'continu', u'driver', u'policeman'] [u'indian', u'team', u'return', u'riotous', u'delhi', u'welcom'] [u'iraqi', u'govern', u'council', u'critic', u'troop'] [u'iraqi', u'govt', u'necessari', u'christma', u'troop', u'deadlin'] [u'iraq', u'tens', u'amid', u'najaf', u'fallujah', u'stand', u'off'] [u'jackson', u'head', u'africa'] [u'japan', u'welcom', u'iraq', u'kidnap', u'victim'] [u'journeyman', u'purdi', u'build', u'shoot', u'lead', u'hilton'] [u'kaka', u'keep', u'milan', u'cours', u'titl'] [u'kerr', u'triumph', u'marathon', u'lpga', u'play'] [u'kerri', u'call', u'nato', u'coalit', u'role'] [u'kookaburra', u'laugh', u'nation', u'triumph'] [u'lockyer', u'eighth', u'jone', u'kiwi'] [u'lose', u'valentino', u'film', u'unearth'] [u'die', u'hunter', u'hous', u'blaze'] [u'drown', u'rough', u'surf'] [u'medico', u'sway', u'drug', u'freebi', u'studi', u'find'] [u'melbourn', u'gear', u'logi'] [u'charg', u'plumpton', u'murder'] [u'miss', u'father', u'daughter', u'safe'] [u'window', u'cosmos', u'open', u'chile'] [u'love', u'lose', u'hewitt', u'win', u'clijster', u'exhibit'] [u'opposit', u'want', u'mersey', u'hospit', u'report'] [u'oversea', u'effort', u'like', u'boost', u'incat', u'job'] [u'polic', u'hunt', u'continu', u'ipswich', u'shooter'] [u'polic', u'search', u'miss', u'father', u'daughter'] [u'polic', u'seek', u'child', u'attack'] [u'polic', u'hunt', u'second', u'abduct'] [u'polic', u'look', u'miss', u'woman'] [u'predat', u'circl', u'ail', u'mark', u'spencer', u'report'] [u'privat', u'commando', u'shoot', u'iraq', u'fire'] [u'properti', u'develop', u'hurt', u'freak', u'boat', u'accid'] [u'govt', u'toughen', u'anti', u'terror', u'law'] [u'ranger', u'celtic', u'celebr', u'hold'] [u'real', u'track', u'madrid', u'derbi'] [u'rescu', u'effort', u'underway', u'strand', u'ship'] [u'roddick', u'haa', u'reach', u'houston', u'clay', u'court', u'final'] [u'roddick', u'set', u'sight', u'take', u'ferrero', u'crown'] [u'rooster', u'conquer', u'knight'] [u'rove', u'take', u'gold'] [u'rugbi', u'boss', u'safeti', u'player'] [u'safin', u'face', u'chela', u'lisbon', u'final'] [u'sciacca', u'secur', u'bonner', u'preselect'] [u'sharon', u'stand', u'assassin', u'polici'] [u'solberg', u'win', u'ralli', u'zealand'] [u'lankan', u'unhappi', u'test', u'refere', u'perform'] [u'stone', u'rock', u'unit', u'chelsea', u'stutter'] [u'student', u'famili', u'reject', u'terror', u'charg'] [u'studi', u'find', u'senior', u'have'] [u'swan', u'look', u'home', u'grind', u'advantag', u'canberra'] [u'teen', u'driver', u'charg', u'fatal', u'crash'] [u'thousand', u'tribut', u'rantissi'] [u'polic', u'kosovo', u'shootout'] [u'polic', u'kill', u'kosovo', u'battl'] [u'tucker', u'air', u'gungahlin', u'drive', u'cost', u'concern'] [u'rescu', u'reef', u'accid'] [u'envoy', u'predict', u'releas', u'burma'] [u'unsuspect', u'rip', u'lifesav', u'busi'] [u'deni', u'back', u'rantissi', u'assassin'] [u'grave', u'concern', u'east', u'stabil'] [u'sailor', u'fli', u'perth', u'hospit'] [u'soldier', u'die', u'injur', u'iraq', u'bomb'] [u'venus', u'face', u'martinez', u'final', u'injuri'] [u'warm', u'climat', u'disrupt', u'alaskan', u'nativ', u'live'] [u'warn', u'put', u'durham', u'spin'] [u'youth', u'drink', u'rat', u'rise', u'victoria'] [u'zapatero', u'swear', u'spanish'] [u'rebel', u'hand', u'week', u'deadlin'] [u'boost', u'townsvill', u'health'] [u'investig', u'pirat', u'porn', u'broadcast'] [u'telstra', u'jone', u'sponsorship', u'stori'] [u'accus', u'murder', u'risk', u'self', u'harm', u'court', u'tell'] [u'promis', u'casual', u'perman', u'employ'] [u'alvin', u'purpl', u'creator', u'die'] [u'anger', u'govt', u'refus', u'fund', u'infrastructur'] [u'anti', u'log', u'protest', u'arrest'] [u'anti', u'terror', u'raid', u'hold', u'manchest'] [u'argentin', u'gonzalez', u'triumph', u'sevill'] [u'aussi', u'hann', u'water', u'snooker', u'blue'] [u'aussi', u'hope', u'play', u'strength', u'zimbabw'] [u'australian', u'team', u'help', u'break', u'nauru'] [u'bacteria', u'scare', u'forc', u'neonat', u'unit', u'closur'] [u'beatti', u'claim', u'activist', u'unfair'] [u'bennett', u'underestim', u'kiwi'] [u'black', u'player', u'join', u'zimbabw', u'rebel', u'report'] [u'blair', u'pois', u'polici', u'turn'] [u'bounti', u'descend', u'face', u'trial', u'charg'] [u'bowler', u'reject', u'infli', u'practic'] [u'british', u'leagu', u'chief', u'seek', u'public', u'help', u'bet'] [u'brother', u'face', u'court', u'plumpton', u'murder'] [u'bumper', u'number', u'poni', u'club', u'camp'] [u'bush', u'launch', u'peacekeep', u'initi', u'report'] [u'intellig', u'servic', u'overhaul'] [u'cambodia', u'drop', u'child', u'charg', u'australian'] [u'canegrow', u'chairman', u'doubt', u'ethanol', u'potenti'] [u'channel', u'criticis', u'alcohol'] [u'chela', u'churn', u'past', u'safin', u'estoril', u'titl'] [u'cheney', u'mental', u'derang', u'north', u'korea'] [u'cink', u'complet', u'record', u'comeback'] [u'climat', u'forecast', u'worri', u'return', u'nino'] [u'coal', u'town', u'websit', u'assist', u'communiti'] [u'collin', u'question', u'releas', u'critic', u'report'] [u'communiti', u'show', u'support', u'famili', u'centr'] [u'cosgrov', u'defend', u'offer', u'wit', u'support'] [u'costello', u'attend', u'meet'] [u'council', u'consid', u'powerlin'] [u'court', u'tell', u'alleg', u'traffick', u'flee'] [u'crime', u'spree', u'weekend'] [u'democrat', u'school', u'manag', u'review'] [u'dept', u'reject', u'bodyguard', u'alleg'] [u'develop', u'propos', u'go', u'council'] [u'director', u'face', u'uncertain', u'futur'] [u'driver', u'urg', u'appli', u'school', u'speed', u'limit'] [u'drought', u'put', u'anglican', u'parish', u'futur', u'line'] [u'dunstal', u'join', u'hawk', u'board'] [u'econom', u'statement', u'target', u'port', u'develop'] [u'environ', u'loop', u'power', u'upgrad'] [u'escap'] [u'timor', u'boundari', u'talk', u'resum'] [u'timor', u'continu', u'fair', u'boundari', u'demand'] [u'timor', u'offer', u'australia', u'deal', u'seab', u'talk'] [u'expert', u'warn', u'dengu', u'risk'] [u'policeman', u'plea', u'guilti', u'drug', u'charg'] [u'famili', u'place', u'miss', u'person', u'daniel'] [u'farmer', u'remind', u'crime', u'prevent'] [u'fear', u'boundari', u'talk', u'drag', u'year'] [u'fear', u'tender', u'disadvantag', u'indigen'] [u'govt', u'urg', u'mersey', u'hospit', u'problem'] [u'fiji', u'found', u'pass', u'away'] [u'financ', u'expert', u'help', u'nauru', u'crisi'] [u'swim', u'safeti', u'boat', u'sink'] [u'french', u'kick', u'surpris', u'semi', u'final'] [u'public', u'hear', u'begin', u'today'] [u'fund', u'worri', u'nation', u'park', u'worker'] [u'fund', u'invit', u'communiti', u'group', u'wake'] [u'girl', u'bash', u'church', u'yard'] [u'gold', u'week', u'go', u'nation'] [u'govt', u'hope', u'burrup', u'ammonia', u'project', u'proceed'] [u'greenpeac', u'protest', u'target', u'cargo', u'ship'] [u'grower', u'urg', u'plant', u'peanut', u'varieti'] [u'haa', u'stun', u'roddick'] [u'hama', u'vow', u'volcano', u'reveng'] [u'histor', u'queensland', u'sale'] [u'hope', u'educ', u'power', u'station', u'decis'] [u'hope', u'futur', u'eden', u'town', u'centr'] [u'hospit', u'group', u'suggest', u'pool', u'age', u'care', u'fund'] [u'hundr', u'arrest', u'nepal', u'protest'] [u'warn', u'world', u'rate', u'hike'] [u'indigen', u'author', u'address', u'homeless'] [u'indigen', u'hous', u'case', u'continu'] [u'ingram', u'back', u'moratorium'] [u'inquest', u'hear', u'bendora', u'blaze', u'grossli', u'underestim'] [u'inquest', u'east', u'coast', u'tourist', u'death', u'resum'] [u'inquiri', u'hear', u'argument'] [u'internet', u'law', u'concern', u'euthanasia', u'advoc'] [u'inzamam', u'stay', u'pakistan', u'captain'] [u'jacket', u'hold', u'year', u'murder', u'clue'] [u'jone', u'turn', u'test', u'spot'] [u'kid', u'radio', u'offer', u'avenu', u'towamba', u'student'] [u'jong', u'head', u'china', u'talk'] [u'kiwi', u'forc', u'chang'] [u'kiwi', u'danger', u'bennett'] [u'lagoon', u'light', u'stay'] [u'lara', u'inning', u'cost', u'windi', u'pont'] [u'leagu', u'leader', u'canterburi', u'test', u'doghous'] [u'livermor', u'win', u'capricornia', u'preselect'] [u'long', u'disappoint', u'east', u'challeng'] [u'lucki', u'escap', u'occup', u'airborn'] [u'face', u'court', u'motorbik', u'death'] [u'manufactur', u'bendigo'] [u'maradona', u'fight', u'life', u'heart', u'failur'] [u'maradona', u'intens', u'care', u'amid', u'overdos', u'report'] [u'maradona', u'wayward', u'genius'] [u'marina', u'enter', u'final', u'plan', u'stage'] [u'matthew', u'back', u'frawley'] [u'mcgradi', u'hop', u'export', u'benefit', u'oversea', u'trip'] [u'mcinerney', u'elect', u'sydney', u'council', u'deputi', u'mayor'] [u'medic', u'student', u'interview'] [u'mooney', u'urg', u'govt', u'help', u'drunken'] [u'morcomb', u'famili', u'featur'] [u'mugab', u'vow', u'rejoin', u'cwealth'] [u'murray', u'like', u'cowboy', u'prospect'] [u'director', u'threaten', u'resign'] [u'share', u'price', u'continu', u'fall'] [u'nation', u'worri', u'pipe', u'fund'] [u'nation', u'trust', u'hop', u'restructur', u'secur'] [u'nat', u'want', u'answer', u'scarc', u'male', u'teacher', u'poser'] [u'research', u'lead', u'better', u'bladder', u'cancer'] [u'news', u'corp', u'help', u'market', u'higher'] [u'nickel', u'find', u'lifelin', u'kambalda'] [u'nineteen', u'car'] [u'korean', u'leader', u'make', u'surpris', u'chines', u'visit'] [u'regret', u'hunt', u'kiwi', u'test', u'knock'] [u'timelin', u'troop', u'return', u'cosgrov'] [u'buy', u'local', u'design', u'heart', u'monitor'] [u'review', u'passport'] [u'open', u'beachley', u'fiji'] [u'opposit', u'highlight', u'year', u'wait', u'age'] [u'page', u'seek', u'agenda', u'councillor'] [u'pakistan', u'cricket', u'chief', u'lash', u'player', u'india'] [u'palestinian', u'kill', u'barrier', u'protest', u'hospit'] [u'park', u'face', u'major', u'tourism', u'increas'] [u'petrov', u'seal', u'scottish', u'premier', u'leagu', u'titl'] [u'phillip', u'win', u'herbert', u'preselect'] [u'pipelin', u'receivership', u'wont', u'harm', u'suppli', u'govt'] [u'commit', u'region', u'victorian', u'compani'] [u'polic', u'commission', u'pressur', u'minist', u'sack'] [u'polic', u'seek', u'wit', u'sexual', u'assault'] [u'polic', u'seiz', u'drug', u'haul'] [u'popstar', u'manag', u'seek', u'damag'] [u'powel', u'sidelin', u'plan', u'book', u'claim'] [u'pratt', u'pull'] [u'wonder', u'nation', u'park', u'cut'] [u'public', u'meet', u'discuss', u'council', u'boundari', u'chang'] [u'rail', u'link', u'updat', u'forc', u'coach', u'altern'] [u'read', u'heroic', u'help', u'england', u'victori'] [u'rebellin', u'edg', u'boogerd', u'claim', u'amstel', u'gold'] [u'regen', u'festiv', u'go', u'annual'] [u'report', u'show', u'support', u'altern', u'sentenc'] [u'reveng', u'fantasi', u'fuel', u'offic'] [u'robertson', u'face', u'strike', u'charg'] [u'robson', u'hero', u'magpi', u'fli', u'villa'] [u'roddick', u'withdraw', u'mont', u'carlo', u'master'] [u'rossi', u'hail', u'mileston', u'stoner'] [u'welcom', u'anzac', u'memori', u'restor'] [u'russia', u'launch', u'space', u'station', u'astronaut'] [u'back', u'featur', u'film'] [u'sadr', u'halt', u'attack', u'spanish', u'troop'] [u'saint', u'real', u'deal', u'matthew'] [u'saint', u'real', u'deal', u'say', u'matthew'] [u'saint', u'surpris', u'leader', u'round'] [u'search', u'woman', u'continu'] [u'seaworld', u'advis', u'sick', u'polar', u'bear'] [u'abus', u'fine', u'confus', u'teacher'] [u'industri', u'regul', u'criticis'] [u'snub', u'kimmorley', u'chanc', u'mccarthi'] [u'spain', u'give', u'day', u'notic', u'iraq'] [u'spain', u'pull', u'troop', u'iraq', u'day'] [u'speed', u'polic', u'face', u'sack'] [u'srebrenica', u'massacr', u'convict', u'reduc'] [u'sydney', u'airport', u'blackout', u'temporarili', u'fix'] [u'sydney', u'airport', u'main', u'runway', u'black'] [u'talk', u'discuss', u'naurus', u'futur'] [u'tare', u'council', u'gain', u'extra', u'fund', u'develop'] [u'teacher', u'order', u'report', u'suspect', u'abus'] [u'tenant', u'black', u'list', u'breach', u'privaci', u'law'] [u'arrest', u'anti', u'terror', u'raid'] [u'test', u'help', u'half', u'sight', u'suffer'] [u'offic', u'celebr', u'bafta', u'trick'] [u'thousand', u'pseudoephedrin', u'tablet', u'seiz'] [u'time', u'publish', u'influenti', u'peopl', u'list'] [u'totti', u'missil', u'keep', u'roma', u'titl', u'hop', u'aliv'] [u'trial', u'alleg', u'drug', u'maker'] [u'troop', u'eighth', u'london', u'marathon'] [u'turnov', u'council', u'execut', u'prompt', u'strategi'] [u'tweed', u'host', u'shadow', u'cabinet'] [u'unsaf', u'condit', u'gold', u'coast', u'beach'] [u'call', u'iraq', u'syria', u'border', u'plug'] [u'soldier', u'kill', u'border', u'clash'] [u'sprint', u'champ', u'renew', u'rivalri'] [u'reduc', u'forc', u'outsid', u'najaf'] [u'student', u'fee'] [u'valencia', u'gasp', u'draw'] [u'vanston', u'defend', u'indigen', u'legal', u'tender'] [u'venus', u'captur', u'crown', u'month'] [u'violenc', u'continu', u'gaza', u'settlement'] [u'virus', u'floor', u'henin', u'hardenn'] [u'websit', u'lead', u'cheap', u'petrol'] [u'wiki', u'miss', u'anzac', u'test'] [u'wilkinson', u'struggl', u'australia', u'tour'] [u'wine', u'industri', u'call'] [u'woman', u'charg', u'attempt', u'murder'] [u'aborigin', u'group', u'point', u'bone', u'howard'] [u'children', u'learn', u'safeti'] [u'launch', u'internet', u'research', u'program'] [u'probe', u'crawford', u'tribun'] [u'agforc', u'push', u'landclear', u'chang'] [u'agreement', u'reach', u'stanwel', u'power', u'station'] [u'alcan', u'hop', u'studi', u'save', u'bauxit', u'leas'] [u'anderson', u'deni', u'jone', u'rift'] [u'extens', u'hinder', u'construct', u'ethanol'] [u'appeal', u'lodg', u'pork', u'import'] [u'arafat', u'reject', u'gaza', u'pullout', u'plan'] [u'arthur', u'join', u'hewitt', u'mont', u'carlo'] [u'asio', u'report', u'spark', u'call', u'intellig'] [u'australia', u'fund', u'philippin', u'counter', u'terror', u'project'] [u'australian', u'peacekeep', u'abduct', u'solomon'] [u'australian', u'take', u'mcdonald', u'rein'] [u'australia', u'vow', u'stand', u'nauru'] [u'author', u'probe', u'electr', u'injuri'] [u'bash', u'girl', u'remain', u'critic'] [u'beachley', u'scrap', u'fiji'] [u'beckham', u'lover', u'net', u'million', u'claim'] [u'beef', u'council', u'expect', u'continu'] [u'bennett', u'prais', u'bronco', u'hunt'] [u'blair', u'confirm', u'referendum'] [u'blue', u'mountain', u'backdrop', u'action', u'film'] [u'brogden', u'criticis', u'spend', u'displac', u'public'] [u'bush', u'name', u'negropont', u'iraq', u'ambassador'] [u'busi', u'analysi', u'show', u'solid', u'economi'] [u'busi', u'group', u'applaud', u'econom', u'statement'] [u'scientist', u'entrepreneur'] [u'call', u'construct', u'industri', u'protect'] [u'canberra', u'back', u'wiki', u'contest', u'high', u'tackl'] [u'canberra', u'hospit', u'studi', u'cut', u'infect'] [u'thief', u'give', u'year', u'abandon', u'child'] [u'castro', u'blast', u'guantanamo', u'concentr', u'camp'] [u'chief', u'minist', u'testifi', u'bushfir', u'inquest'] [u'chief', u'minist', u'stand', u'bushfir'] [u'china', u'prepar', u'tiananmen', u'anniversari'] [u'call', u'gold', u'finger', u'print', u'catch', u'thiev'] [u'collin', u'question', u'intellig', u'failur'] [u'commonwealth', u'reject', u'town', u'updat', u'propos'] [u'concern', u'outbreak', u'rubber', u'vine'] [u'confer', u'discuss', u'coastlin', u'manag'] [u'confus', u'school', u'speed', u'zone', u'spark', u'complaint'] [u'confus', u'possibl', u'cdep', u'demis'] [u'court', u'tell', u'polic', u'link', u'gangland', u'shoot'] [u'cultur', u'precinct', u'decid'] [u'denmark', u'declassifi', u'iraq', u'intellig', u'report'] [u'diamond', u'athen', u'game'] [u'jacket', u'help', u'cafasso', u'case'] [u'dont', u'terror', u'bush', u'tell', u'spanish'] [u'draft', u'report', u'jone', u'breach', u'cod'] [u'drinker', u'bowl', u'club', u'outlet'] [u'ecologist', u'call', u'kangaroo', u'koala', u'cull'] [u'ecuador', u'vote', u'guinea'] [u'educ', u'confer', u'put', u'reform'] [u'timor', u'say', u'boundari', u'matter', u'life', u'death'] [u'euthanasia', u'group', u'anger', u'communic'] [u'bardot', u'member', u'defend', u'sack', u'manag'] [u'expert', u'espous', u'benefit', u'communiti', u'pool'] [u'falconio', u'court', u'room', u'fit', u'media'] [u'feder', u'committe', u'take', u'feral', u'bait'] [u'fin', u'impos', u'failur', u'report', u'smallpox'] [u'educ', u'prioriti', u'young', u'children'] [u'deputi', u'chairmen', u'grant', u'bail'] [u'servic', u'resum', u'mersey', u'hospit'] [u'gallop', u'criticis', u'irrespons', u'famili'] [u'gardin', u'season', u'surgeri', u'loom'] [u'genet', u'erad', u'cane', u'toad'] [u'gibbon', u'claim', u'ignor', u'bendigo'] [u'girl', u'confront', u'accus', u'rap', u'child'] [u'govt', u'primari', u'vote', u'prefer', u'newspol'] [u'govt', u'take', u'construct', u'compani', u'court'] [u'govt', u'pressur', u'reveal', u'sugar', u'reform'] [u'greenhous', u'effect', u'caus', u'major', u'flood', u'tide'] [u'green', u'campaign', u'rail', u'servic'] [u'shop', u'open', u'gundi', u'decad'] [u'hampshir', u'get', u'warn', u'win', u'start'] [u'help', u'seek', u'youth', u'homless', u'program'] [u'hill', u'play', u'spain', u'troop', u'decis'] [u'hockeyroo', u'continu', u'athen', u'build', u'china'] [u'home', u'base', u'essenti', u'battl', u'schizophrenia', u'studi'] [u'homeless', u'charg', u'sexual', u'assault'] [u'hondura', u'withdraw', u'iraq', u'troop'] [u'howard', u'play', u'intellig', u'critic'] [u'independ', u'councillor', u'elect', u'council', u'deputi'] [u'india', u'begin', u'vote', u'marathon'] [u'india', u'readi', u'massiv', u'elect'] [u'indonesian', u'prosecutor', u'want', u'year', u'aust', u'child'] [u'industri', u'free', u'trade', u'agreement'] [u'inept', u'find', u'affect', u'plea', u'bargain', u'lawyer'] [u'john', u'lennon', u'sketch', u'sale'] [u'jumbo', u'make', u'emerg', u'land', u'adelaid'] [u'kemp', u'foreshadow', u'dump', u'intervent'] [u'kemp', u'prais', u'marina', u'pollut', u'initi'] [u'kevin', u'spacey', u'con', u'london'] [u'kidnap', u'threat', u'australian', u'troop'] [u'latham', u'vow', u'republ', u'referendum'] [u'lewi', u'kangaroo'] [u'lockyer', u'happi', u'number'] [u'main', u'road', u'singapor', u'collaps'] [u'charg', u'drug', u'seizur'] [u'mandarin', u'harvest', u'begin'] [u'testifi', u'attempt', u'murder', u'case'] [u'play', u'suicid', u'attack', u'claim'] [u'maradona', u'condit', u'improv', u'say', u'doctor'] [u'marathon', u'chariti', u'walker', u'rest', u'tennant', u'creek'] [u'master', u'champion', u'mickelson', u'challeng'] [u'mayn', u'maintain', u'wholesal', u'busi'] [u'mcdonald', u'die'] [u'migrat', u'law', u'split', u'iraqi', u'famili'] [u'minist', u'call', u'localis', u'workforc'] [u'mother', u'hop', u'program', u'help', u'morcomb', u'hunt'] [u'mother', u'vow', u'continu', u'judici', u'fight', u'plea'] [u'murali', u'report', u'dump', u'zimbabw', u'lanka'] [u'murali', u'allow', u'bowl', u'doosra', u'report'] [u'continu', u'slide', u'market', u'inch', u'higher'] [u'nab', u'boardroom', u'battl', u'heat'] [u'nasa', u'reject', u'russian', u'propos'] [u'nat', u'push', u'polic', u'station', u'upgrad'] [u'equip', u'help', u'marin', u'scientist'] [u'boost', u'paraburdoo'] [u'terror', u'group', u'outlaw', u'ruddock'] [u'hope', u'mean', u'pressur', u'say', u'thompson'] [u'opposit', u'renew', u'hccc', u'review', u'call'] [u'oppn', u'claim', u'support', u'petrol', u'sniff', u'law'] [u'nuclear', u'whistleblow', u'order', u'stay', u'israel'] [u'nurs', u'threaten', u'work', u'ban', u'work'] [u'train', u'collis', u'leav', u'injur'] [u'ogradi', u'call', u'unit', u'scandal'] [u'olymp', u'gold', u'win', u'cyclist', u'aitken', u'retir'] [u'opposit', u'worri', u'troop', u'safeti', u'iraq'] [u'order', u'allow', u'clear', u'land', u'reveget'] [u'packer', u'refus', u'apprentic', u'role'] [u'peacekeep', u'kidnap', u'rap', u'solomon'] [u'play', u'victori', u'see', u'cink', u'stock', u'rise'] [u'visit', u'colac'] [u'send', u'condol', u'fiji'] [u'polic', u'info', u'bulldog', u'rooster', u'brawler'] [u'polic', u'probe', u'solomon', u'abduct'] [u'polic', u'seek', u'bulldog', u'match', u'violenc', u'leader'] [u'port', u'arthur', u'convict', u'site', u'refer'] [u'powerlin', u'plan', u'caus', u'controversi'] [u'premier', u'visit', u'troubl', u'anangu', u'pitjanjatjara'] [u'prodi', u'back', u'spanish', u'decis', u'quit', u'iraq'] [u'consid', u'job', u'action'] [u'parliament', u'play', u'music', u'miss', u'teen'] [u'pass', u'terror'] [u'rainbow', u'warrior', u'dock', u'newcastl'] [u'ranger', u'miner', u'withhold', u'contamin', u'data'] [u'ranieri', u'warn', u'chelsea', u'respect', u'monaco'] [u'report', u'find', u'steril'] [u'resid', u'need', u'convinc', u'dispos', u'scheme'] [u'rise', u'star', u'name', u'boomer', u'squad'] [u'ruddock', u'hold', u'council', u'respons', u'airport'] [u'ruthless', u'coria', u'trampl', u'enqvist'] [u'sadr', u'urg', u'follow', u'stop', u'attack', u'spanish'] [u'schole', u'ban', u'game'] [u'scientist', u'claim', u'dementia', u'discoveri'] [u'devic', u'benefit', u'diseas', u'research'] [u'senat', u'committe', u'hear', u'evid', u'water'] [u'shell', u'financi', u'manag', u'quit'] [u'sixer', u'address', u'intern', u'tension'] [u'spanish', u'court', u'charg', u'qaeda', u'link'] [u'lankan', u'boss', u'confid', u'murali', u'doosra', u'report'] [u'steve', u'kefu', u'stay'] [u'steven', u'robertson', u'suspend', u'bell', u'clear'] [u'steal', u'fund', u'hand', u'indonesia'] [u'stoner', u'back', u'western', u'tugun', u'bypass', u'rout'] [u'studi', u'focus', u'overweight'] [u'studi', u'show', u'million', u'nativ', u'anim', u'die'] [u'sudanes', u'flee', u'home', u'fear', u'violent', u'attack'] [u'swedish', u'polic', u'arrest', u'terror', u'suspect'] [u'sydney', u'charg', u'murder'] [u'survey', u'commerci', u'boat', u'communic'] [u'tension', u'eas', u'iraq'] [u'test', u'famili', u'affair', u'kangaroo', u'pair'] [u'thailand', u'set', u'condit', u'withdraw', u'iraq'] [u'timor', u'negoti', u'win', u'environ', u'award'] [u'tooth', u'latest', u'tech', u'craze'] [u'tough', u'task', u'get', u'tougher'] [u'treasur', u'noncommit', u'tax', u'ahead', u'budget'] [u'twin', u'convinc', u'aitken', u'retir'] [u'charg', u'adelaid', u'woman', u'kidnap'] [u'polic', u'foil', u'trafford', u'suicid', u'bomb', u'plot'] [u'call', u'emerg', u'meet', u'rantissi', u'kill'] [u'union', u'say', u'port', u'secur', u'scratch'] [u'unsw', u'open', u'singapor', u'campus'] [u'court', u'hear', u'hick', u'habib', u'case'] [u'investor', u'wari', u'ahead', u'proft', u'report'] [u'report', u'find', u'asio', u'ignor', u'bali', u'threat'] [u'target', u'weapon', u'supplier', u'fallujah', u'deal'] [u'eas', u'fallujah', u'blockad'] [u'lift', u'libyan', u'econom', u'sanction'] [u'vail', u'head', u'china', u'trade', u'talk'] [u'vanston', u'review', u'imparja', u'fund', u'booz'] [u'ambul', u'servic', u'defend', u'respons', u'time'] [u'govt', u'play', u'ambul', u'servic', u'figur'] [u'urg', u'citrus', u'grower'] [u'nurs', u'strike', u'ahead'] [u'victorian', u'health', u'union', u'consid', u'strike', u'action'] [u'violenc', u'mar', u'indian', u'elect'] [u'warrior', u'releas', u'lauitiiti'] [u'water', u'suppli', u'continu', u'fall'] [u'woman', u'take', u'legal', u'action', u'scissor'] [u'woolworth', u'announc', u'quarter', u'sale', u'increas'] [u'aborigin', u'group', u'invit', u'mugab'] [u'abrolho', u'island', u'fisher', u'meet', u'leas'] [u'legisl', u'fake'] [u'chief', u'reject', u'asio', u'split', u'claim'] [u'accid', u'kill', u'germani'] [u'nauru', u'continu', u'despit', u'countri', u'woe'] [u'alga', u'outbreak', u'prompt', u'health', u'warn'] [u'say', u'better', u'fund', u'eas', u'pressur'] [u'want', u'indigen', u'health', u'elect', u'agenda'] [u'warn', u'state', u'mental', u'health', u'crisi'] [u'american', u'tenni', u'reshap', u'open'] [u'arrest', u'warrant', u'issu', u'argentin'] [u'aussi', u'blain', u'fail', u'lift', u'barbi'] [u'aust', u'holiday', u'offici', u'link', u'iraq'] [u'australia', u'assist', u'fiji', u'flood', u'clean'] [u'author', u'warn', u'public', u'mosquito', u'diseas'] [u'bash', u'put', u'pair', u'hospit'] [u'bendigo', u'look', u'forward', u'visit'] [u'blast', u'kill', u'saudi', u'arabia'] [u'bowman', u'make', u'norton', u'cowboy', u'skipper'] [u'brack', u'urg', u'invest', u'social', u'infrastructur'] [u'break', u'foot', u'stop', u'futur', u'tenni', u'track'] [u'brumbi', u'upbeat', u'econom', u'statement', u'respons'] [u'build', u'demolish', u'expel', u'squatter'] [u'burma', u'secretari', u'deni', u'leader', u'releas'] [u'busi', u'group', u'welcom', u'econom', u'statement'] [u'butler', u'toe', u'polit', u'line'] [u'byron', u'charg', u'drug', u'haul'] [u'cairn', u'unfaz', u'weather', u'warn'] [u'bed', u'ahead', u'season'] [u'slower', u'speed', u'retail', u'street'] [u'cameroon', u'appeal', u'point', u'deduct'] [u'crash', u'put', u'teen', u'hospit'] [u'carr', u'call', u'howard', u'fertilis'] [u'charg', u'lay', u'hangar', u'collaps'] [u'child', u'rapist', u'tell', u'hell'] [u'children', u'surviv', u'dead', u'crash'] [u'close', u'wagga', u'mayor', u'elect', u'like'] [u'communiti', u'tip', u'feel', u'cdep', u'fund', u'loss'] [u'welcom', u'liber', u'land', u'clear'] [u'convent', u'centr', u'wont', u'mean', u'higher', u'tax', u'brack'] [u'council', u'say', u'histor', u'hall', u'stay', u'open'] [u'tafe', u'sign', u'agreement'] [u'cross', u'signal', u'jail', u'mobil', u'phone', u'jam'] [u'death', u'spark', u'nation', u'park', u'danger', u'warn'] [u'defier', u'starcraft', u'featur'] [u'democrat', u'want', u'indigen', u'sit', u'recognis'] [u'deplet', u'magpi', u'hop', u'uefa'] [u'dept', u'appeal', u'sack', u'teacher', u'payout'] [u'doctor', u'seek', u'mersey', u'servic', u'injunct'] [u'dominican', u'republ', u'withdraw', u'troop', u'iraq'] [u'downer', u'surpris', u'wiranto', u'nomin'] [u'drug', u'decis', u'confus', u'pittman', u'coach', u'say'] [u'dunfermlin', u'scottish', u'final'] [u'elder', u'action', u'drug', u'land'] [u'environ', u'indigen', u'life', u'expect', u'concern'] [u'farmer', u'urg', u'subsidi', u'struggl', u'farmer'] [u'fear', u'air', u'bigger', u'border', u'busi', u'divid'] [u'feder', u'fund', u'issu', u'agenda'] [u'fertilis', u'underway', u'howard'] [u'palestinian', u'kill', u'gaza', u'strip'] [u'footbal', u'husband', u'face', u'murder', u'trial'] [u'head', u'win', u'preselect'] [u'defenc', u'site', u'rememb'] [u'general', u'stand', u'candid'] [u'wife', u'speak', u'marriag', u'break'] [u'gold', u'miner', u'show', u'finger', u'print', u'plan'] [u'govt', u'urg', u'eas', u'region', u'airfar', u'cost'] [u'govt', u'hail', u'buyback', u'success'] [u'govt', u'uncov', u'terror', u'link'] [u'gretley', u'prosecut', u'draw'] [u'group', u'monitor', u'locust', u'threat'] [u'guin', u'book', u'record', u'founder', u'die'] [u'hackett', u'want', u'thorp', u'face', u'coach', u'say'] [u'hama', u'deni', u'anarchi'] [u'hewitt', u'arthur', u'ferrero', u'mont', u'carlo'] [u'hockeyroo', u'humbl', u'china'] [u'hospit', u'chief', u'reflect', u'walkout'] [u'howard', u'hint', u'octob', u'poll'] [u'howard', u'restat', u'confid', u'secur', u'agenc'] [u'idol', u'singer', u'thank', u'condobolin'] [u'inquest', u'hear', u'policeman', u'felt', u'safe', u'chase'] [u'inquest', u'tell', u'resourc', u'contain', u'blaze'] [u'intellig', u'whistleblow', u'invit', u'appear'] [u'rate', u'jitter', u'market'] [u'talk', u'athen', u'prepar'] [u'iraq', u'leav', u'keelti', u'consid', u'futur'] [u'isra', u'nuclear', u'whistleblow', u'releas'] [u'isra', u'troop', u'kill', u'gaza', u'raid'] [u'labor', u'consid', u'smart', u'medicar', u'card'] [u'landhold', u'plan', u'bite', u'wild', u'dog'] [u'late', u'monaco', u'goal', u'stun', u'chelsea'] [u'latham', u'accus', u'steal', u'speech'] [u'latham', u'howard', u'odd', u'anzac', u'sport'] [u'latham', u'outlin', u'labor', u'cut', u'budget'] [u'lawyer', u'readi', u'live', u'export', u'protest'] [u'leagu', u'club', u'upbeat', u'financi', u'woe'] [u'legal', u'action', u'threaten', u'tree'] [u'lettuc', u'grower', u'pest', u'control', u'green', u'light'] [u'lion', u'fin', u'breach', u'player', u'rule'] [u'local', u'derbi', u'determin', u'spain', u'uefa', u'finalist'] [u'longley', u'quit', u'wildcat'] [u'luca', u'reject', u'newel', u'highway', u'comment'] [u'macgil', u'back', u'zimbabw', u'boycott'] [u'magistr', u'hear', u'road', u'rage', u'murder', u'evid'] [u'malthous', u'support', u'penalti', u'cheap', u'injuri'] [u'acquit', u'blackmail', u'sue', u'nightclub'] [u'charg', u'attempt', u'murder'] [u'cow', u'opposit', u'lightn', u'fast', u'goal'] [u'die', u'bomaderri', u'crash'] [u'front', u'court', u'arson', u'charg'] [u'surviv', u'embank', u'plung'] [u'court', u'babi', u'bash'] [u'maradona', u'long', u'hospit', u'stay'] [u'martin', u'woo', u'ship', u'compani'] [u'mayor', u'await', u'calder', u'fund', u'pledg'] [u'mental', u'health', u'nurs', u'join', u'strike'] [u'mine', u'giant', u'concern', u'plan', u'leas'] [u'mooney', u'question', u'taxi'] [u'japanes', u'tourist', u'head'] [u'mortar', u'kill', u'iraqi', u'prison', u'near', u'baghdad'] [u'mother', u'criticis', u'liquor', u'rule', u'militari', u'inquiri'] [u'mother', u'wont', u'goodby', u'singh', u'anniversari'] [u'put', u'water', u'project', u'onus', u'local', u'govt'] [u'murali', u'face', u'persist', u'doosra'] [u'murder', u'accus', u'plan', u'guilti', u'plea'] [u'nasa', u'launch', u'satellit', u'test', u'einstein', u'theori'] [u'natur', u'resourc', u'monitor', u'illeg', u'land', u'clear'] [u'netbal', u'chief', u'call', u'hero', u'recognis'] [u'nevill', u'stop', u'score', u'close'] [u'atlas', u'australia', u'ocean'] [u'marin', u'discoveri', u'excit', u'biologist'] [u'mayor', u'port', u'stephen'] [u'taskforc', u'combat', u'diseas', u'outbreak'] [u'vaccin', u'depress', u'chicken'] [u'insurg', u'kill', u'fallujah'] [u'korean', u'leader', u'secret', u'trip', u'china'] [u'lofti', u'goal', u'porto', u'say', u'coach'] [u'northern', u'council', u'elect', u'deputi', u'mayor'] [u'near', u'french', u'coloni', u'say', u'govt'] [u'object', u'erupt', u'lismor', u'brothel', u'plan'] [u'leg', u'swimmer', u'continu', u'athen', u'quest'] [u'oppn', u'question', u'mersey', u'hospit', u'contract', u'detail'] [u'optus', u'seek', u'chang'] [u'pakistan', u'build', u'collaps', u'kill', u'seven'] [u'parent', u'meningococc', u'assur'] [u'plan', u'extend', u'suppli', u'merbein'] [u'plan', u'address', u'cooma', u'radiolog', u'servic'] [u'playgroup', u'fund', u'increas'] [u'defend', u'timelin'] [u'offer', u'guarante', u'mitsubishi', u'job'] [u'prefer', u'junior', u'sport', u'anzac'] [u'polic', u'doubt', u'solomon', u'peacekeep', u'rape', u'claim'] [u'polic', u'road', u'crash', u'victim'] [u'port', u'injuri', u'woe'] [u'powel', u'attempt', u'shore', u'coalit', u'support'] [u'premier', u'mull', u'confisc', u'deterr'] [u'prodig', u'kean', u'ireland', u'squad'] [u'produc', u'littl', u'trade', u'deal'] [u'properti', u'undergo', u'drought', u'assess'] [u'prost', u'recal', u'side', u'senna'] [u'pub', u'lockout', u'decis', u'loom'] [u'govt', u'aurukun', u'bauxit', u'leas'] [u'red', u'injuri', u'curs', u'strike', u'sharp'] [u'briberi', u'probe', u'wont', u'jeopardis', u'euro'] [u'retir', u'villag', u'plan', u'track'] [u'review', u'finetun', u'koala', u'manag', u'program'] [u'ruddock', u'deni', u'gallipoli', u'travel', u'irrespons'] [u'ruddock', u'disput', u'inevit', u'terror', u'attack'] [u'russian', u'rocket', u'dock', u'space', u'station'] [u'saddam', u'trial', u'judg', u'select'] [u'score', u'kill', u'basra', u'blast'] [u'secur', u'scare'] [u'secur', u'scare', u'prompt', u'airport', u'closur'] [u'share', u'market', u'brace', u'greenspan', u'comment'] [u'shelter', u'workshop', u'fund', u'boost'] [u'small', u'surf', u'forc', u'postpon', u'fiji', u'tour', u'event'] [u'south', u'join', u'fray', u'sign', u'lauitiiti'] [u'lanka', u'beat', u'zimbabw', u'rain', u'affect'] [u'statist', u'spark', u'central', u'hous', u'blaze', u'warn'] [u'stirl', u'call', u'educ', u'reform', u'trial'] [u'streak', u'tell', u'forget', u'zimbabw', u'captainci'] [u'student', u'head', u'europ', u'anzac'] [u'sudan', u'approv', u'right', u'abus', u'investig'] [u'support', u'gather', u'vanunus', u'releas'] [u'switkowski', u'reject', u'resign', u'rumour'] [u'talk', u'continu', u'nurs', u'work'] [u'talk', u'deal', u'hold'] [u'plan', u'uniqu', u'gift', u'royal', u'marriag'] [u'snub', u'land', u'industri', u'estat'] [u'telstra', u'announc', u'revenu', u'lift'] [u'knoll', u'retain', u'open', u'space'] [u'tree', u'clear', u'law', u'okay', u'robertson'] [u'union', u'call', u'discrimin', u'databas'] [u'student', u'protest', u'educ'] [u'upgrad', u'propos', u'falconio', u'murder', u'courtroom'] [u'today', u'editor', u'quit', u'fake', u'stori'] [u'rate', u'specul', u'send', u'local', u'market'] [u'marin', u'kill', u'fallujah'] [u'suprem', u'court', u'hear', u'hick', u'habib', u'case'] [u'troop', u'trade', u'iraqi', u'fallujah', u'report'] [u'wont', u'bend', u'fallujah', u'milit', u'rumsfeld'] [u'nurs', u'begin', u'industri', u'action'] [u'viral', u'caus', u'rule', u'tassi', u'devil', u'diseas'] [u'wait', u'elect', u'surgeri', u'continu', u'grow'] [u'wiki', u'rub', u'anzac', u'test'] [u'wild', u'dog', u'prove', u'cost'] [u'fertilis', u'pleas', u'outlook'] [u'women', u'group', u'question', u'lockyer', u'appoint'] [u'zimbabw', u'select', u'polici', u'abhorr', u'downer', u'say'] [u'abbott', u'defend', u'fund'] [u'rule', u'supermarket', u'chemist'] [u'albani', u'anzac', u'servic', u'give', u'icon', u'status'] [u'play', u'leak', u'branch', u'stack', u'report'] [u'select', u'young', u'candid', u'wide'] [u'say', u'central', u'health', u'servic', u'shrink'] [u'concern', u'electrolux', u'loss'] [u'anim', u'liberationist', u'plan', u'port', u'protest'] [u'annan', u'announc', u'investig', u'panel'] [u'china', u'steel', u'deal', u'sign'] [u'arafat', u'abandon', u'palestinian', u'milit'] [u'share', u'suspend'] [u'introduc', u'trade'] [u'australian', u'arrest', u'nepal', u'democraci', u'protest'] [u'australian', u'protest', u'releas', u'nepal'] [u'australia', u'thailand', u'sign', u'free', u'trade', u'deal'] [u'austrian', u'scam', u'mail', u'return', u'sender'] [u'bacteria', u'fear', u'isol', u'babi'] [u'barman', u'guilti', u'nightclub', u'death'] [u'bashir', u'reject', u'terror', u'accus'] [u'basra', u'buri', u'dead', u'fallujah', u'clash', u'continu'] [u'beekeep', u'sting', u'higher', u'board', u'fee'] [u'enjoy', u'record', u'commod', u'product'] [u'blaze', u'take', u'hold', u'famili', u'youth', u'servic'] [u'bodi', u'gippsland', u'coast'] [u'brack', u'appoint', u'close', u'friend'] [u'british', u'troop', u'fight', u'like'] [u'bryant', u'rape', u'case', u'defenc', u'suffer', u'setback'] [u'burn', u'near'] [u'bush', u'cheney', u'talk', u'sept', u'commiss'] [u'busi', u'burial'] [u'free', u'trade', u'submiss'] [u'speedier', u'banana', u'import', u'risk', u'assess'] [u'canberra', u'airport', u'secur', u'adequ'] [u'cano', u'championship', u'test', u'olymp', u'venu'] [u'crash', u'survivor', u'leav', u'hospit', u'soon'] [u'channel', u'ten', u'canadian', u'owner', u'report', u'mutant', u'loss'] [u'christian', u'challeng', u'blasphem', u'channel'] [u'coach', u'upbeat', u'hurst', u'commonwealth', u'game', u'chanc'] [u'communiti', u'bank', u'prospectus', u'today'] [u'compani', u'liquid', u'wont', u'stop', u'workcov', u'charg'] [u'complaint', u'spark', u'probe', u'local', u'govt', u'poll'] [u'corpor', u'jealousi', u'undermin', u'mitsubishi'] [u'cost', u'constraint', u'hamper', u'defenc', u'legal', u'servic'] [u'council', u'award', u'admin', u'centr', u'contract'] [u'council', u'drive', u'ahead', u'roadwork'] [u'council', u'worker', u'reject', u'wage', u'offer'] [u'coupl', u'hop', u'happi', u'homecom'] [u'court', u'case', u'see', u'council', u'will', u'tree'] [u'millston', u'bunburi', u'airport'] [u'curs', u'joke', u'indigen', u'leader'] [u'defenc', u'advis', u'lodg', u'unfair', u'dismiss', u'claim'] [u'democrat', u'licenc', u'revenu', u'help'] [u'demonstr', u'greet', u'nauru', u'presid', u'return'] [u'dentist', u'shortag', u'begin', u'bite', u'roma', u'chinchilla'] [u'buy', u'brisban', u'radio', u'licenc'] [u'dubious', u'honour', u'pebbl', u'beach'] [u'earli', u'kakadu', u'burn', u'underway'] [u'ebay', u'doubl', u'profit'] [u'electrolux', u'job'] [u'masri', u'orford', u'price', u'slow', u'kick'] [u'environ', u'chief', u'prais', u'gungahlin', u'studi'] [u'ethanol', u'debat', u'heat', u'north'] [u'exot', u'anim', u'stay', u'time'] [u'expert', u'consid', u'evid', u'polic', u'pursuit'] [u'boss', u'issu', u'warn', u'british', u'futur'] [u'famili', u'terroris', u'home', u'invas'] [u'farmer', u'group', u'offer', u'cultur', u'heritag'] [u'fierc', u'fight', u'threaten', u'fallujah', u'ceas'] [u'fiji', u'tour', u'event', u'postpon'] [u'firm', u'fin', u'forklift', u'death'] [u'fisher', u'poor', u'scallop', u'catch'] [u'flabbi', u'feyenoord', u'fan', u'jersey', u'protest'] [u'flatley', u'final', u'red'] [u'halt', u'sydney', u'ferri', u'servic'] [u'forecast', u'good', u'fruitgrow'] [u'director', u'withhold', u'document'] [u'insurg', u'kill', u'northern', u'iraq'] [u'free', u'vanunu', u'urg', u'nuclear', u'inspect'] [u'fund', u'address', u'youth', u'crime'] [u'furi', u'greet', u'preselect', u'loss'] [u'gaza', u'fight', u'kill', u'palestinian', u'sourc'] [u'gaza', u'plan', u'prompt', u'islam', u'emerg', u'meet'] [u'girl', u'drive', u'charg', u'custodi'] [u'glori', u'releas', u'mori'] [u'goal', u'rule', u'public', u'safeti', u'rule'] [u'govt', u'seek', u'return', u'work', u'order', u'nurs'] [u'grape', u'board', u'oppos', u'fertilis'] [u'greenspan', u'rule', u'quick', u'rat', u'rise'] [u'group', u'tell', u'threat', u'north', u'west', u'health', u'servic'] [u'hanson', u'speak', u'tour', u'hold'] [u'harri', u'fight', u'retain', u'presid'] [u'health', u'servic', u'clarifi', u'ambul', u'decis'] [u'hill', u'test', u'fli', u'armi', u'helicopt'] [u'hockeyroo', u'level', u'seri', u'china'] [u'hospit', u'feel', u'industri', u'unrest'] [u'hurst', u'target', u'commonwealth', u'game'] [u'play', u'role', u'break', u'zimbabwean', u'impass'] [u'challeng', u'africa', u'elect', u'result'] [u'warn', u'australian', u'hous', u'bubbl', u'burst'] [u'indian', u'arm', u'smuggler', u'roll'] [u'indigen', u'deal', u'releas', u'hous', u'land'] [u'industri', u'area'] [u'inquest', u'hear', u'murder', u'scene', u'creation'] [u'inquest', u'italian', u'tourist', u'death', u'hear', u'evid'] [u'inquest', u'tell', u'overgrow', u'trail'] [u'jackson', u'indict', u'child', u'charg', u'publicist'] [u'job', u'health', u'servic', u'cut', u'debt'] [u'juri', u'hear', u'close', u'remark', u'tamara', u'smith'] [u'kangaroo', u'readi', u'unexpect'] [u'kewel', u'aim', u'punish'] [u'kidnap', u'dane', u'dead', u'iraq'] [u'kiwi', u'say', u'wiki'] [u'knight', u'free', u'agent'] [u'kookaburra', u'meet', u'olymp', u'champ'] [u'labor', u'howard', u'trade', u'plagiar', u'insult'] [u'labor', u'leader', u'restat', u'murray', u'river', u'commit'] [u'labor', u'medicar', u'plan', u'smart', u'abbott'] [u'late', u'spi', u'famili', u'back', u'intel', u'inquiri', u'call'] [u'latham', u'deni', u'plagiar', u'charg'] [u'lion', u'face', u'fin'] [u'longer', u'tour', u'sunraysia', u'possibl'] [u'macgil', u'add', u'limit', u'list'] [u'malaysia', u'end', u'australian', u'asean', u'veto'] [u'jail', u'cold', u'blood', u'assassin'] [u'shoot', u'seaford', u'sieg'] [u'face', u'drug', u'charg', u'byron', u'raid'] [u'court', u'head', u'butt', u'bodyguard'] [u'maradona', u'stabl', u'intens', u'care'] [u'market', u'flat', u'despit', u'westfield', u'merger'] [u'market', u'wari', u'greenspan', u'speech'] [u'mcgrath', u'back', u'macgil', u'commit', u'tour'] [u'mental', u'health', u'worker', u'plan', u'work', u'ban'] [u'militari', u'farewel', u'long', u'serv', u'sailor'] [u'moral', u'concern', u'macgil', u'zimbabw', u'tour'] [u'live', u'export', u'protest', u'plan'] [u'progress', u'chines', u'pagoda', u'plan'] [u'staff', u'boost', u'health', u'servic'] [u'mother', u'lose', u'seaman', u'face', u'senat', u'probe'] [u'mount', u'sand', u'pose', u'rescu', u'threat'] [u'air', u'doubt', u'claim'] [u'tweed', u'mayor', u'commit', u'tugun', u'bypass'] [u'wagga', u'mayor', u'upbeat', u'council', u'uniti'] [u'charg', u'wineg', u'affair'] [u'polit', u'land', u'sale', u'opposit'] [u'call', u'cheaper', u'school', u'internet', u'access'] [u'share', u'crime'] [u'reaffirm', u'iraq', u'commit', u'despit', u'basra', u'attack'] [u'older', u'driver', u'target', u'road', u'safeti', u'campaign'] [u'phone', u'life', u'product'] [u'onetel', u'boss', u'challeng', u'evid', u'rule'] [u'organis', u'predict', u'huge', u'barra', u'bash'] [u'pair', u'sentenc', u'rape', u'outrag'] [u'panel', u'urg', u'tasmania', u'health', u'servic', u'overhaul'] [u'perilya', u'look', u'forward', u'stronger', u'result'] [u'border', u'crosser', u'stay'] [u'polglas', u'tweed', u'mayor'] [u'polic', u'consid', u'shelv', u'claremont', u'kill', u'case'] [u'polic', u'arrest', u'special', u'oper'] [u'polic', u'bushland', u'victim'] [u'polic', u'probe', u'rock', u'bodi'] [u'polic', u'releas', u'sydney', u'runway', u'intrud'] [u'polic', u'search', u'home', u'claremont', u'kill', u'suspect'] [u'pong', u'accus', u'deni', u'bail'] [u'portland', u'protest', u'fail', u'halt', u'export', u'ship'] [u'porto', u'deportivo', u'battl', u'goalless', u'draw'] [u'public', u'encourag', u'visit', u'display'] [u'rail', u'group', u'want', u'independ', u'studi'] [u'rampant', u'rhino', u'get', u'amor'] [u'rare', u'beetl'] [u'research', u'focus', u'miner', u'fatigu'] [u'resili', u'hewitt', u'hang', u'tough', u'monaco'] [u'review', u'consid', u'tail', u'plan'] [u'riyadh', u'sucid', u'blast', u'kill', u'wound'] [u'roma', u'titl', u'chanc', u'slip', u'away'] [u'rossi', u'walk', u'schus', u'shoe'] [u'russia', u'veto', u'cyprus', u'resolut'] [u'ryder', u'olli', u'mind'] [u'saudi', u'milit', u'claim', u'riyadh', u'bomb'] [u'scientist', u'nurtur', u'fatherless', u'mous'] [u'second', u'face', u'terror', u'charg'] [u'senat', u'claim', u'tasmanian', u'forest', u'industri', u'woodchip'] [u'sheep', u'export', u'protest', u'arrest'] [u'shire', u'form', u'chinatown', u'develop', u'agreement'] [u'socceroo', u'share', u'skill', u'remot', u'area', u'children'] [u'soni', u'fine', u'tune', u'deal', u'report'] [u'south', u'east', u'prepar', u'anzac'] [u'spencer', u'undergo', u'test', u'heavi', u'hit'] [u'student', u'gather', u'anzac', u'memori'] [u'studi', u'foreshadow', u'retir', u'incom', u'train', u'wreck'] [u'suicid', u'bomber', u'basra', u'blast'] [u'swiss', u'pair', u'releas', u'iraq'] [u'sydney', u'airport', u'intrud', u'face', u'trespass', u'charg'] [u'sydney', u'growth', u'plan', u'unveil'] [u'tassi', u'teacher', u'award', u'outstand', u'scienc'] [u'teacher', u'plan', u'industri', u'unrest'] [u'telco', u'tell', u'improv', u'bill', u'polici'] [u'tennant', u'creek', u'get', u'centrelink', u'servic', u'centr'] [u'terror', u'group', u'threaten', u'australia'] [u'thorp', u'steven', u'compet', u'meet'] [u'tiger', u'swing', u'thing'] [u'tiger', u'crow', u'prepar', u'mini', u'final'] [u'townsvill', u'plaqu', u'honour', u'wwii'] [u'tree', u'clear', u'legisl', u'creat', u'uncertainti'] [u'forc', u'involv', u'basra', u'blast', u'cleric'] [u'increas', u'iraq', u'troop', u'blair'] [u'ullrich', u'pull', u'lieg'] [u'forens', u'student', u'graduat'] [u'union', u'seek', u'myrtleford', u'invest'] [u'student', u'scienc', u'challeng'] [u'dollar', u'determin', u'tinto', u'earn'] [u'broadcast', u'pictur', u'die', u'princess', u'diana'] [u'victori', u'hockeyroo', u'kookaburra'] [u'waratah', u'thaiday', u'wing'] [u'warm', u'recept', u'cool', u'hous', u'market'] [u'westfield', u'merger', u'creat', u'global', u'retail', u'giant'] [u'westralia', u'victim', u'famili', u'slam', u'navi', u'justic'] [u'wineri', u'call', u'exempt'] [u'woman', u'charg', u'attempt', u'murder', u'get', u'bail'] [u'woodward', u'want', u'doubl'] [u'workcov', u'drop', u'high', u'rise', u'builder'] [u'worker', u'hail', u'ticor', u'specul'] [u'world', u'bask', u'springtim', u'econom', u'recoveri'] [u'worri', u'conceiv', u'patient', u'tell'] [u'zimbabw', u'trounc', u'wicket'] [u'pipelin', u'project', u'track'] [u'million', u'african', u'risk', u'malaria'] [u'academ', u'fear', u'solomon', u'futur'] [u'academ', u'transcrib', u'long', u'song'] [u'milan', u'close', u'seri', u'titl'] [u'forc', u'purchas', u'cwealth', u'land'] [u'probe', u'hamil', u'appeal'] [u'alinta', u'credit', u'rat', u'recov'] [u'jazeera', u'win', u'webbi', u'nomin'] [u'lose', u'mitsubishi'] [u'play', u'uefa', u'semi', u'goalless'] [u'fire', u'darl', u'opera', u'staff', u'warn', u'languag'] [u'custom', u'return'] [u'annan', u'reject', u'food', u'critic'] [u'arsenal', u'close', u'titl'] [u'attack', u'sentenc', u'shock', u'stab', u'victim'] [u'australia', u'target', u'disput'] [u'bacteria', u'link', u'babi', u'death'] [u'bangkok', u'leav', u'thousand', u'homeless'] [u'beachley', u'down', u'rooki'] [u'bell', u'broadcast', u'shakespear'] [u'bigger', u'wine', u'grape', u'harvest', u'loom'] [u'bolton', u'headhunt', u'rivaldo'] [u'brack', u'reject', u'kemp', u'wast', u'dump', u'threat'] [u'bronco', u'pageant', u'continu', u'draw'] [u'brothel', u'anzac', u'sale', u'inappropri'] [u'bush', u'eas', u'libya', u'sanction'] [u'cafasso', u'inquest', u'expect', u'wind'] [u'cafasso', u'inquest', u'fail', u'killer'] [u'cairn', u'ralli', u'protest', u'atsic', u'demis'] [u'anzac', u'event', u'rememb', u'iraq', u'troop'] [u'children', u'meningococc', u'shoot'] [u'drought'] [u'caltex', u'bulli', u'memo', u'breach', u'polici'] [u'cane', u'farmer', u'anticip', u'sweet', u'rescu', u'deal'] [u'crash', u'survivor', u'leav', u'hospit'] [u'carr', u'prais', u'polic', u'work', u'terror', u'suspect'] [u'celtic', u'look', u'mend', u'break', u'heart'] [u'chemic', u'firm', u'welcom', u'jobless', u'worker'] [u'chief', u'sink', u'stormer'] [u'children', u'court', u'reconsid', u'compens', u'claim'] [u'china', u'confirm', u'north', u'korea', u'train', u'crash'] [u'chock', u'away', u'jetstar'] [u'circus', u'settl', u'lawsuit'] [u'claremont', u'forens', u'test', u'continu'] [u'clearer', u'definit', u'bulli', u'need', u'expert'] [u'urg', u'money'] [u'club', u'unhappi', u'fish', u'kill', u'probe'] [u'competit', u'polici', u'review', u'begin'] [u'construct', u'firm', u'seek', u'highway', u'project', u'compo'] [u'council', u'like', u'yield', u'subdivis'] [u'crime', u'wave', u'mind', u'studi'] [u'cyclist', u'begin', u'nullarbor', u'trial'] [u'daimlerchrysl', u'abandon', u'mitsubishi', u'bailout'] [u'dead', u'saudi', u'milit', u'want', u'list'] [u'democrat', u'releas', u'health', u'wish', u'list'] [u'dentur', u'mishap', u'leav', u'pension', u'speechless'] [u'diamond', u'win', u'olymp', u'spot'] [u'doctor', u'hospit', u'closur', u'report'] [u'doctor', u'group', u'fear', u'feder', u'fund'] [u'doctor', u'testifi', u'road', u'rage', u'murder', u'trial'] [u'dog', u'reveal', u'twist', u'assault', u'case'] [u'donor', u'organis', u'welcom', u'registri', u'plan'] [u'dragon', u'lose', u'barrett'] [u'earli', u'bird', u'pampl', u'captur', u'houston', u'lead'] [u'educ', u'consid', u'rape', u'tape', u'plan'] [u'fairweath', u'reach', u'fifth', u'olymp'] [u'fallujah', u'sieg', u'civilian', u'death', u'toll', u'iraqi'] [u'threaten', u'akhtar'] [u'feedlot', u'propos', u'moura'] [u'propos', u'sweep', u'chang', u'rule'] [u'fight', u'continu', u'despit', u'fallujah', u'ceas'] [u'fizzi', u'drink', u'eas', u'obes', u'problem'] [u'frawley', u'say', u'earli', u'goal', u'vital'] [u'fresh', u'flow', u'boost', u'water', u'qualiti'] [u'fund', u'shortfal', u'close', u'youth', u'centr'] [u'fund', u'push', u'outback', u'tourism'] [u'good', u'news', u'explor'] [u'govt', u'miner', u'promot'] [u'govt', u'urg', u'british', u'lead', u'iraq'] [u'green', u'believ', u'clear', u'understand'] [u'green', u'decri', u'radiat', u'therapi', u'wait', u'list'] [u'shearer', u'fleec', u'rogu', u'sheep'] [u'hackett', u'hop', u'race', u'thorp'] [u'heritag', u'council', u'overstep', u'mark', u'cotteslo'] [u'hewitt', u'final', u'run', u'steam', u'mont', u'carlo'] [u'hewitt', u'pin', u'french', u'open', u'hop', u'european', u'tour'] [u'high', u'school', u'reunion', u'lead', u'special', u'book'] [u'hmas', u'melbourn', u'return', u'gulf', u'servic'] [u'hotel', u'group', u'reject', u'alcohol'] [u'humili', u'ranieri', u'face', u'wave', u'specul'] [u'icac', u'futur', u'assur', u'ahead', u'review'] [u'indigen', u'advoc', u'seek', u'legal', u'plan', u'boycott'] [u'indigen', u'crime', u'link', u'substanc', u'abus'] [u'indonesian', u'polic', u'seek', u'interrog', u'bashir'] [u'industri', u'unrest', u'take', u'toll', u'hospit'] [u'intern', u'space', u'station', u'gyro'] [u'iran', u'pledg', u'continu', u'nuclear', u'cooper'] [u'iraq', u'danger', u'offic'] [u'iraqi', u'cleric', u'warn', u'suicid', u'bomber'] [u'talk', u'resum', u'nurs', u'crisi', u'worsen'] [u'israel', u'kill', u'fatah', u'member', u'west', u'bank'] [u'jetstar', u'airport', u'redevelop', u'track'] [u'judg', u'call', u'repeal', u'cross', u'examin', u'law'] [u'kangaroo', u'outclass', u'kiwi'] [u'kelley', u'scandal', u'forc', u'second', u'editor'] [u'kiwi', u'come', u'play', u'anderson'] [u'kumaratunga', u'lose', u'control', u'lanka', u'parliament'] [u'lake', u'bonney', u'wind', u'farm', u'work', u'underway'] [u'land', u'council', u'ratifi', u'mine', u'leas', u'agreement'] [u'landslid', u'kill', u'indonesian', u'villag'] [u'gasp', u'goal', u'earn', u'kookaburra', u'draw', u'india'] [u'lawyer', u'push', u'nauru', u'asylum', u'hear'] [u'lion', u'fine', u'rise'] [u'liverpool', u'keep', u'faith', u'kewel'] [u'lobster', u'fisher', u'cautious', u'longer', u'season'] [u'luca', u'wont', u'dredg', u'currumbin', u'creek'] [u'face', u'drive', u'charg', u'crash'] [u'maradona', u'critic', u'list'] [u'mate', u'brack', u'deputi', u'chief', u'staff'] [u'matthew', u'blast', u'fine'] [u'mayor', u'want', u'surfer'] [u'mcgrath', u'concern', u'zimbabw', u'cricket'] [u'memori', u'honour', u'crash', u'victim'] [u'mexico', u'captur', u'alleg', u'drug', u'kingpin'] [u'mildura', u'reject', u'park', u'meter', u'plan'] [u'militari', u'coffin', u'photo', u'cost', u'contractor'] [u'minist', u'apologis', u'harbour', u'ban'] [u'minist', u'question', u'health', u'centralis', u'plan'] [u'minist', u'reject', u'educ', u'fund', u'deal'] [u'miss', u'german', u'believ', u'dead', u'iraq'] [u'monk', u'pressur', u'seat', u'lankan'] [u'moran', u'associ', u'win', u'crime', u'proceed', u'case'] [u'mother', u'son', u'sentenc', u'death', u'murder'] [u'flag', u'taxi', u'scheme', u'concern'] [u'moot', u'deer', u'manag', u'scheme'] [u'question', u'skimpi', u'crackdown'] [u'want', u'probe', u'hospit', u'amput'] [u'mulanovich', u'rid', u'high', u'fiji', u'victori'] [u'murder', u'victim', u'mother', u'demand', u'death', u'penalti'] [u'introduc', u'internet', u'bank', u'charg'] [u'narrabri', u'council', u'start', u'budget', u'work'] [u'nat', u'riverland', u'forum', u'foreshadow', u'parti', u'chang'] [u'sale', u'declin'] [u'newcastl', u'murder', u'trial', u'abort'] [u'charg'] [u'korea', u'blast', u'toll', u'hit'] [u'korea', u'quiet', u'train', u'crash', u'report'] [u'korea', u'silent', u'disast', u'relief', u'offer'] [u'resolut', u'council', u'wage', u'disput'] [u'tighten', u'child', u'abus', u'definit'] [u'welcom', u'medic', u'worker', u'plan'] [u'welcom', u'asean', u'trade', u'talk'] [u'olymp', u'champ', u'see', u'indigen', u'health', u'woe'] [u'packag', u'offer', u'cancer', u'patient', u'inform'] [u'pair', u'face', u'court', u'drug', u'charg'] [u'parl', u'food', u'upbeat', u'futur'] [u'pierc', u'name', u'chairman'] [u'player', u'cash', u'strap', u'dee'] [u'court', u'reserv', u'decis', u'vote'] [u'politician', u'head', u'court'] [u'policeman', u'charg', u'sexual', u'assault'] [u'posit', u'outlook', u'mine', u'explor'] [u'posit', u'profit', u'report', u'lift', u'stock'] [u'premier', u'announc', u'north', u'west', u'health', u'fund'] [u'promina', u'celebr', u'list', u'success'] [u'protest', u'demand', u'atsic', u'remain'] [u'protestor', u'stand', u'trial', u'sheep', u'contamin'] [u'public', u'angri', u'darwin', u'wharf', u'develop', u'plan'] [u'public', u'beach', u'pipe', u'work'] [u'public', u'urg', u'report', u'illeg', u'tree', u'clear'] [u'rail', u'servic', u'get', u'track'] [u'real', u'barca', u'derbi', u'match'] [u'refin', u'food', u'link', u'diabet', u'increas'] [u'resid', u'lake', u'worri'] [u'resid', u'ralli', u'save', u'countrylink', u'travel', u'centr'] [u'ricciuto', u'prais', u'breakthrough', u'crow'] [u'riyadh', u'bomb', u'outrag', u'saudi'] [u'upbeat', u'anzac', u'crowd'] [u'salvo', u'doorknock', u'appeal'] [u'sar', u'resurfac', u'china'] [u'saudi', u'forc', u'kill', u'suspect', u'milit'] [u'schumach', u'fli', u'imola'] [u'schumach', u'pay', u'tribut', u'senna'] [u'scotland', u'yard', u'olymp', u'secur'] [u'sept', u'case', u'proceed', u'qaeda', u'wit'] [u'shooter', u'blast', u'olymp', u'venu'] [u'shortag', u'make', u'shearer', u'late'] [u'ride', u'oper', u'fin', u'boy', u'injuri'] [u'smart', u'drop', u'bock', u'debut'] [u'snowfal', u'local', u'surpris'] [u'snowtown', u'killer', u'give', u'latitud', u'appeal'] [u'soccer', u'associ', u'outlin', u'process'] [u'spaniard', u'get', u'chief'] [u'spanish', u'open', u'walk', u'park'] [u'stab', u'victim', u'question', u'attack', u'jail', u'sentenc'] [u'stock', u'tip', u'bring', u'crowd'] [u'strike', u'disrupt', u'elect', u'surgeri'] [u'sugar', u'rescu', u'packag', u'sweeter', u'expect'] [u'suggest', u'orchestr', u'behaviour', u'bach'] [u'power', u'mobil', u'phone', u'base'] [u'support', u'road', u'safeti', u'initi'] [u'tafe', u'upbeat', u'educ', u'effort'] [u'tanker', u'accid', u'halt', u'burn', u'inquest', u'tell'] [u'tasmanian', u'nurs', u'reject', u'wage', u'offer'] [u'teacher', u'stop', u'work', u'mean', u'earli', u'mark', u'student'] [u'teenag', u'charg', u'redfern', u'riot'] [u'teen', u'front', u'court', u'assault'] [u'terror', u'threat', u'requir', u'investig', u'rudd'] [u'thiess', u'slap', u'fine'] [u'tongan', u'airlin', u'cancel', u'intern', u'flight'] [u'toothfish', u'haul', u'net', u'million'] [u'trade', u'halt', u'ahead', u'announc'] [u'treati', u'aim', u'break', u'immun', u'stand'] [u'credibl', u'forc', u'iraq', u'blair'] [u'begin', u'darfur', u'attack', u'investig'] [u'unitab', u'tabcorp', u'sign', u'bid', u'deal'] [u'smooth', u'child', u'soldier'] [u'backflip', u'saddam', u'parti', u'includ'] [u'approv', u'doomsday'] [u'vandal', u'target', u'park', u'facil'] [u'vintag', u'train', u'track', u'echuca'] [u'walk', u'stick', u'win', u'design', u'award'] [u'waratah', u'prepar', u'grudg', u'match'] [u'warmer', u'weather', u'slow', u'fish', u'kill'] [u'water', u'develop', u'ban', u'protect', u'cooper', u'catchment'] [u'weekend', u'talk', u'schedul', u'nurs', u'strike'] [u'westfield', u'merger', u'buoy', u'australian', u'market'] [u'westfield', u'share', u'surg', u'merger', u'news'] [u'white', u'powder', u'spark', u'alert', u'own', u'firm'] [u'wit', u'seek', u'famili', u'servic', u'blaze'] [u'wood', u'leav', u'olymp', u'water', u'polo', u'squad'] [u'work', u'start', u'soon', u'waterfront', u'revamp'] [u'wrong', u'medic', u'kill', u'elder', u'woman', u'coron'] [u'yarn', u'aplenti', u'camoow'] [u'zidan', u'europ', u'best', u'decad'] [u'zimbabw', u'rebel', u'consid', u'peac', u'plan'] [u'worker', u'assess', u'north', u'korea', u'blast', u'site'] [u'back', u'nation', u'health', u'bodi', u'plan'] [u'armstrong', u'postal', u'pull', u'plug', u'cycl'] [u'asia', u'pacif', u'nurs', u'meet', u'discuss', u'sar', u'strategi'] [u'australia', u'face', u'beat', u'retreat', u'moscow'] [u'bar', u'button', u'stand', u'ferrari'] [u'bomb', u'threat', u'forc', u'ferri', u'greec'] [u'burk', u'boot', u'prove', u'brumbi', u'bane', u'red'] [u'burk', u'boot', u'sink', u'brumbi'] [u'button', u'claim', u'maiden', u'pole', u'itali'] [u'canadian', u'dalai', u'lama', u'hold', u'talk'] [u'carlton', u'keep', u'eagl', u'goalless', u'half'] [u'carlton', u'good', u'eagl', u'lion', u'demon'] [u'carmak', u'abandon', u'talk', u'futur'] [u'chelsea', u'desailli', u'ban', u'match'] [u'china', u'give', u'north', u'korea', u'million'] [u'china', u'say', u'suspect', u'sar', u'patient', u'improv'] [u'clijster', u'return', u'action', u'duti'] [u'cocain', u'seiz', u'sydney', u'airport'] [u'court', u'order', u'mental', u'test', u'alleg'] [u'cowboy', u'sing', u'storm', u'match'] [u'crusad', u'beat', u'bull', u'second', u'spot'] [u'cyprus', u'vote', u'unif', u'plan'] [u'daimlerchrysl', u'retain', u'mitsubishi', u'stake'] [u'danish', u'minist', u'quit', u'iraq', u'report'] [u'delug', u'hit', u'eastern', u'victoria'] [u'democrat', u'want', u'atsic', u'rethink'] [u'feel', u'eat', u'golf', u'ball'] [u'drink', u'water', u'detail', u'flow', u'studi'] [u'dutch', u'artist', u'shoot'] [u'earli', u'start', u'tasmanian', u'season'] [u'fault', u'caus', u'north', u'shore', u'blackout'] [u'flatley', u'final', u'reach', u'red', u'mileston'] [u'floodwat', u'threaten', u'princ', u'highway'] [u'nation', u'applaud', u'donor', u'move'] [u'foul', u'play', u'suspect', u'perth', u'hous'] [u'palestinian', u'kill', u'west', u'bank', u'raid'] [u'franc', u'put', u'coal', u'mine'] [u'french', u'aid', u'quit', u'prostitut', u'scandal'] [u'govt', u'upbeat', u'hour', u'clinic'] [u'suspect', u'remand', u'custodi'] [u'hoon', u'admit', u'mistak', u'weapon', u'expert'] [u'hope', u'breakthrough', u'health', u'disput'] [u'hundr', u'protest', u'atsic', u'scrap'] [u'indonesia', u'landslid', u'kill'] [u'island', u'fear', u'atsic', u'ax', u'impact'] [u'jackson', u'ask', u'media', u'leav'] [u'jone', u'quicken', u'comeback', u'pace'] [u'lara', u'play', u'england'] [u'latham', u'urg', u'forestri'] [u'lead', u'aussi', u'counti', u'charg'] [u'libya', u'remov', u'terror', u'list'] [u'long', u'wait', u'nativ', u'titl', u'claimant'] [u'kill', u'perth', u'motorbik', u'crash'] [u'man', u'throat', u'hahndorf', u'brawl'] [u'court', u'charg'] [u'maradona', u'respir', u'intens', u'care'] [u'mitsubishi', u'aust', u'chief', u'criticis', u'daimlerchrysl'] [u'netflix', u'deliv', u'film'] [u'netherland', u'aim', u'stub', u'cannabi', u'tourism'] [u'star', u'kill', u'afghanistan'] [u'nigerian', u'labour', u'group', u'attack', u'foreign', u'news'] [u'korea', u'admit', u'train', u'blast', u'welcom', u'help', u'offer'] [u'northern', u'territori', u'scout', u'embrac', u'anzac'] [u'norway', u'resum', u'lanka', u'mediat', u'role'] [u'govt', u'warn', u'upcom', u'water', u'restrict'] [u'extradit', u'home', u'invas'] [u'palaszczuk', u'dark', u'sugar', u'deal'] [u'pampl', u'crash', u'texa'] [u'park', u'lead', u'halfway', u'stage', u'olazab', u'crash'] [u'pedestrian', u'die', u'melbourn'] [u'pentagon', u'lament', u'iraq', u'coffin', u'photo'] [u'polic', u'chief', u'wont', u'apologis', u'differ'] [u'polic', u'track', u'detect', u'train', u'drug'] [u'polici', u'eas', u'baath', u'parti', u'member'] [u'pope', u'photo', u'snap', u'french', u'prize'] [u'question', u'mark', u'ronaldo', u'ahead', u'barca', u'clash'] [u'real', u'estat', u'group', u'fear', u'kay', u'holiday', u'perman'] [u'roo', u'trampl', u'saint', u'march'] [u'fear', u'lower', u'anzac', u'attend'] [u'safin', u'mont', u'carlo', u'semi', u'final'] [u'saint', u'continu', u'unbeaten'] [u'search', u'countri', u'music', u'best'] [u'seven', u'soldier', u'kill', u'iraq'] [u'shark', u'extra', u'time', u'thriller'] [u'south', u'africa', u'offici', u'elect', u'mbeki'] [u'south', u'korea', u'offer', u'north', u'korea'] [u'space', u'station', u'failur', u'consid'] [u'strike', u'wont', u'affect', u'electr', u'suppli', u'western'] [u'studi', u'find', u'sign', u'life', u'ancient', u'lava'] [u'support', u'region', u'liquor', u'manag', u'plan'] [u'survey', u'point', u'loom', u'skill', u'shortag'] [u'sydney', u'refus', u'bail', u'charg'] [u'govt', u'communiti', u'hospit'] [u'time', u'right', u'view', u'planet'] [u'time', u'warner', u'eye', u'possibl'] [u'tribal', u'leader', u'broker', u'deal', u'pakistani', u'armi'] [u'turkey', u'pledg', u'anzac', u'secur', u'boost'] [u'twin', u'tower', u'add', u'spice', u'super', u'grudg', u'match'] [u'polic', u'tighten', u'trafford', u'secur'] [u'ullrich', u'struggl', u'form', u'tour', u'approach'] [u'offer', u'north', u'korea', u'train', u'tragedi'] [u'caution', u'sharon', u'arafat', u'threat'] [u'lift', u'libya', u'trade', u'sanction'] [u'marin', u'kill', u'iraq'] [u'oilmen', u'kill', u'nigeria', u'ambush'] [u'warn', u'israel', u'arafat', u'harm'] [u'vanston', u'confirm', u'atsic', u'demis'] [u'brace', u'rise', u'river'] [u'victoria', u'bolster', u'heritag', u'protect'] [u'violent', u'home', u'assault', u'investig', u'continu'] [u'vote', u'cyprus', u'reunif', u'plan'] [u'waratah', u'ahead', u'half', u'time'] [u'water', u'woe', u'spark', u'harsher', u'restrict'] [u'white', u'anim', u'sight', u'spark'] [u'woman', u'charg', u'shoot', u'death'] [u'woman', u'charg', u'sydney', u'murder'] [u'woman', u'question', u'shoot', u'death'] [u'worker', u'evacu', u'sugar', u'silo', u'explos'] [u'world', u'champion', u'astarloa', u'releas', u'cofidi'] [u'zimbabw', u'minist', u'arrest', u'corrupt', u'polic'] [u'adelaid', u'marcher', u'commemor', u'anzac', u'spirit'] [u'adelaid', u'mitsubishi', u'worker', u'govt'] [u'adelaid', u'rememb', u'anzac', u'dawn', u'servic'] [u'alic', u'spring', u'resid', u'respect', u'anzac'] [u'ahead', u'poll', u'think', u'coalit'] [u'anim', u'honour', u'central', u'memori'] [u'caus', u'heater'] [u'anzac', u'march', u'begin', u'darwin'] [u'anzac', u'march', u'sydney'] [u'arafat', u'defiant', u'face', u'threat'] [u'aussi', u'moscow', u'despit', u'molik', u'upset'] [u'australia', u'sar', u'alert'] [u'beatti', u'want', u'anzac', u'holiday', u'unchang'] [u'berger', u'honour', u'fall', u'friend'] [u'blast', u'deal', u'blow', u'north', u'korea', u'economi'] [u'bomb', u'damag', u'militari', u'vehicl'] [u'bomber', u'half', u'time', u'anzac', u'lead'] [u'bomber', u'anzac', u'clash'] [u'britain', u'launch', u'pilot', u'card', u'scheme'] [u'bronco', u'overpow', u'panther'] [u'burk', u'boot', u'sink', u'brumbi'] [u'canberra', u'commemor', u'anzac'] [u'cat', u'crumbl', u'complet', u'south', u'african', u'miseri'] [u'china', u'announc', u'sar', u'case'] [u'china', u'probe', u'suspect', u'sar', u'case'] [u'china', u'send', u'ail', u'north', u'korea'] [u'clijster', u'make', u'win', u'return'] [u'report', u'marri', u'jordanian', u'princ'] [u'coria', u'schuettler', u'mont', u'carlo', u'showdown'] [u'costello', u'push', u'washington'] [u'crowd', u'line', u'street', u'melbourn', u'parad'] [u'crowd', u'line', u'street', u'anzac', u'march', u'hobart'] [u'cyprus', u'vote', u'failur', u'criticis', u'annan'] [u'dawn', u'servic', u'mark', u'anzac'] [u'democrat', u'weigh', u'anzac', u'holiday', u'debat'] [u'deportivo', u'stay', u'fourth', u'draw', u'malaga'] [u'docker', u'cat'] [u'embattl', u'jone', u'anchor', u'team', u'relay', u'victori'] [u'ferrari', u'vow', u'fight', u'imola'] [u'final', u'action', u'kookaburra', u'hockeyroo'] [u'kill', u'pirat', u'attack', u'nigeria', u'south'] [u'children', u'shoot', u'dead', u'iraq', u'wit'] [u'attend', u'canberra', u'anzac', u'servic'] [u'gough', u'target', u'world'] [u'greek', u'cypriot', u'vote', u'cyprus', u'divid'] [u'grow', u'drug', u'problem', u'affect', u'modern', u'soldier'] [u'hill', u'defend', u'gallipoli', u'secur', u'warn'] [u'hockeyroo', u'china', u'seri'] [u'hundr', u'gather', u'darwin', u'commemor', u'anzac'] [u'receiv', u'murali', u'report'] [u'drug', u'say', u'sprint', u'star', u'collin'] [u'kean', u'declar', u'ireland', u'return'] [u'kookaburra', u'crush', u'malaysia'] [u'latham', u'comment', u'note', u'washington', u'costello'] [u'latham', u'want', u'troop', u'home', u'xmas'] [u'lawson', u'gravesit', u'restor'] [u'lead', u'nurs', u'confid', u'contain', u'sar'] [u'face', u'court', u'musician', u'assault'] [u'maradona', u'stabl', u'face', u'slow', u'recoveri', u'doctor'] [u'matthew', u'cool', u'extra', u'umpir', u'call'] [u'mersey', u'hospit', u'oper', u'fire', u'part', u'shoot'] [u'mexico', u'document', u'leak', u'overshadow', u'meet'] [u'mice', u'plagu', u'hit', u'part'] [u'miss', u'document', u'prompt', u'call', u'minist'] [u'montgomeri', u'bounc', u'green', u'pull'] [u'murphi', u'strike', u'kill', u'titl', u'hop'] [u'agreement', u'reach', u'fallujah'] [u'korea', u'blast', u'toll', u'cross'] [u'korea', u'remain', u'tight', u'lip', u'train', u'disast'] [u'behaviour', u'teacher'] [u'observ', u'report', u'great', u'damag', u'north', u'korea'] [u'ogilvi', u'trail', u'rain', u'soak', u'houston', u'open'] [u'olonga', u'call', u'zimbabw', u'boycott'] [u'park', u'lead', u'singl', u'shoot'] [u'parramatta', u'river', u'cove', u'honour', u'fairmil', u'veteran'] [u'philippin', u'arrest', u'alleg', u'oper'] [u'commemor', u'anzac', u'iraq'] [u'polic', u'continu', u'search', u'miss', u'teen'] [u'polic', u'question', u'attempt', u'abduct'] [u'port', u'power', u'dog'] [u'protest', u'demand', u'globalis', u'justic'] [u'rain', u'wash', u'trinidad', u'dayer'] [u'rave', u'review', u'comic', u'hero'] [u'real', u'madrid', u'ronaldo', u'miss', u'barca', u'showdown'] [u'record', u'crowd', u'expect', u'anzac', u'march'] [u'red', u'edg', u'shark', u'dismal', u'score', u'match'] [u'rockhampton', u'charg', u'teen', u'murder'] [u'ronaldo', u'prepar', u'follow', u'beckham'] [u'rooster', u'edg', u'dragon'] [u'rwandan', u'troop', u'pursuit', u'congo', u'rebel'] [u'schu', u'continu', u'formula', u'domin'] [u'schumach', u'home', u'town', u'coal', u'report'] [u'scottish', u'teen', u'steal', u'skull', u'puppet'] [u'secur', u'tight', u'gallipoli', u'servic'] [u'seven', u'iraqi', u'citi', u'receiv', u'rebuild', u'fund'] [u'royal', u'commiss', u'wast', u'time', u'counter'] [u'lanka', u'claim', u'seri', u'zimbabw', u'hit'] [u'stage', u'anzac', u'showdown'] [u'stricker', u'loweri', u'johnson', u'lead', u'field'] [u'suicid', u'speedboat', u'attack', u'basra'] [u'hous', u'claim', u'toddler', u'life'] [u'teenag', u'kill', u'accid'] [u'teen', u'stab', u'death', u'melbourn'] [u'ten', u'thousand', u'line', u'brisban', u'street'] [u'terror', u'fear', u'expect', u'crowd'] [u'terrorist', u'suspect', u'return', u'australia'] [u'thailand', u'hellfir', u'pass', u'host', u'anzac', u'servic'] [u'thistl', u'condemn', u'scottish', u'wooden', u'spoon'] [u'thousand', u'attend', u'anzac', u'parad'] [u'thousand', u'gather', u'melbourn', u'shrine'] [u'thousand', u'gather', u'memori', u'canberra'] [u'thousand', u'gather', u'world', u'biggest', u'anzac'] [u'thousand', u'gather', u'dawn', u'servic'] [u'thousand', u'gather', u'albani', u'rememb', u'anzac', u'troop'] [u'thousand', u'pack', u'anzac', u'squar', u'brisban'] [u'dead', u'brisban', u'murder', u'suicid'] [u'teen', u'accid'] [u'tiger', u'ensur', u'eagl', u'stay'] [u'dead', u'score', u'wound', u'indonesia', u'clash'] [u'coalit', u'fighter', u'kill', u'basra', u'suicid'] [u'iraqi', u'envoy', u'defend', u'critic', u'israel'] [u'use', u'atom', u'technolog', u'fight', u'malaria', u'mosquito'] [u'high', u'unlik', u'troop', u'downer'] [u'vandal', u'graffiti', u'brisban', u'shrine', u'remembr'] [u'get', u'fund', u'boost'] [u'nurs', u'talk', u'break'] [u'vitali', u'klitschko', u'win', u'heavyweight', u'crown'] [u'crack', u'cheat'] [u'wartim', u'paint', u'display'] [u'student', u'lead', u'anzac', u'prayer', u'london'] [u'wilder', u'societi', u'condemn', u'forestri', u'burn'] [u'wwii', u'veteran', u'join', u'perth', u'march', u'time'] [u'zimbabw', u'forc', u'select', u'second', u'string'] [u'opposit', u'unleash', u'return', u'polici'] [u'advoc', u'say', u'mental', u'health', u'strain'] [u'expans', u'stabilis', u'power', u'price'] [u'alcohol', u'concern', u'say', u'publican'] [u'alleg', u'abductor', u'appear', u'gold', u'coast', u'court'] [u'defend', u'youth', u'prescript'] [u'ammonium', u'nitrat', u'control', u'debat'] [u'anzac', u'draw', u'crowd'] [u'anzac', u'holiday', u'keep', u'market', u'quiet'] [u'armstrong', u'win', u'tour', u'georgia'] [u'arsenal', u'seal', u'titl', u'glori'] [u'aussi', u'troop', u'stay', u'iraq', u'ruxton'] [u'australian', u'lawyer', u'bar', u'nauru'] [u'australian', u'urg', u'kid'] [u'australia', u'prepar', u'sar', u'outbreak'] [u'bacon', u'ask', u'releas', u'break', u'oday', u'phone', u'record'] [u'baghdad', u'convoy', u'attack', u'destroy', u'humve'] [u'bairnsdal', u'get', u'rail', u'servic', u'reinstat'] [u'barca', u'blow', u'hole', u'real', u'madrid', u'titl', u'hop'] [u'beatti', u'anticip', u'sugar', u'reform', u'packag'] [u'beatti', u'defend', u'alcohol', u'law'] [u'crowd', u'honour', u'anzac', u'tradit'] [u'blaze', u'take', u'hold', u'evan', u'head', u'flat'] [u'board', u'end', u'port', u'chief', u'contract'] [u'boat', u'group', u'oppos', u'compulsori', u'train', u'plan'] [u'brogan', u'clear', u'bone', u'damag'] [u'bulgarian', u'presid', u'attack'] [u'doctor', u'releas', u'mersey'] [u'protect', u'aborigin', u'rock', u'carv'] [u'chalabi', u'fight', u'surviv', u'iraq', u'govern'] [u'chan', u'spread', u'goodwil'] [u'children', u'rememb', u'anzac', u'tradit'] [u'china', u'rule', u'democraci', u'hong', u'kong'] [u'cold', u'weather', u'doesnt', u'deter', u'anzac', u'crowd'] [u'communiti', u'rememb', u'slay', u'singh', u'sibl'] [u'conjoin', u'twin', u'separ', u'bangladesh'] [u'cop', u'warn', u'fan', u'frawley', u'incid'] [u'coria', u'take', u'mont', u'carlo', u'titl'] [u'council', u'settl', u'differ'] [u'council', u'call', u'volunt', u'firefight'] [u'council', u'offer', u'build', u'inspector', u'expertis'] [u'court', u'fin', u'wombat', u'killer'] [u'cricket', u'australia', u'play', u'boycott'] [u'crittercam', u'expos', u'shark', u'privat', u'live'] [u'csiro', u'invent', u'captur', u'barrier', u'reef'] [u'darwin', u'crematorium', u'temporarili', u'close'] [u'defeat', u'send', u'viduka', u'leed', u'edg', u'drop'] [u'democrat', u'echo', u'anzac', u'holiday', u'concern'] [u'denzel', u'washington', u'set', u'offic'] [u'develop', u'promis', u'break', u'world', u'bank'] [u'dog', u'rabbit', u'scrapathon'] [u'dog', u'rabbit', u'scrappi', u'match'] [u'doubl', u'despair', u'australian', u'qatar', u'master'] [u'drink', u'drive', u'lectur', u'puke', u'aisl'] [u'drug', u'recoveri', u'centr', u'await', u'news', u'futur'] [u'duf', u'oper', u'target', u'saleyard'] [u'earli', u'snow', u'fall', u'high', u'countri'] [u'earth', u'monitor', u'establish'] [u'blockad', u'blue', u'mountain', u'film'] [u'este', u'lauder', u'die', u'age'] [u'fallujah', u'truce', u'weaken', u'rebel'] [u'farmer', u'seek', u'injunct', u'sheep', u'fee', u'case'] [u'farm', u'wast', u'guidelin', u'caus', u'worri'] [u'film', u'shoot', u'threat', u'blue', u'mountain'] [u'firefight', u'control', u'petrol', u'station', u'blaze'] [u'food', u'fair', u'showcas', u'produc'] [u'ambassador', u'doubt', u'iraq', u'focus'] [u'franc', u'belgium', u'cruis'] [u'frenchman', u'cevaer', u'hole', u'eagl', u'spanish', u'open'] [u'fund', u'address', u'road', u'danger'] [u'generat', u'light', u'work', u'maintain', u'hospit'] [u'govt', u'crack', u'inmat', u'fraud'] [u'graviti', u'measur', u'lead', u'astronom', u'distant', u'planet'] [u'gunnedah', u'council', u'start', u'budget', u'plan'] [u'headscarf', u'refere', u'face', u'disciplinari', u'action'] [u'henri', u'name', u'english', u'player', u'player', u'year'] [u'higher', u'price', u'flow', u'rise', u'water'] [u'histor', u'plane', u'project', u'take'] [u'hospit', u'claim', u'nurs', u'strike', u'endang', u'patient'] [u'hous', u'blaze', u'caus', u'unknown'] [u'howard', u'flag', u'extra', u'troop', u'iraq'] [u'hundr', u'thousand', u'march', u'abort'] [u'fortun', u'port', u'smile', u'lade'] [u'indonesia', u'rush', u'reinforc', u'ambon'] [u'inquest', u'open', u'woman', u'death'] [u'investig', u'fatal', u'hous', u'begin'] [u'iraq', u'adopt', u'nation', u'flag'] [u'israel', u'urg', u'drop', u'palestinian', u'press'] [u'jackson', u'legal', u'team', u'beat'] [u'japan', u'bill', u'releas', u'hostag', u'iraq', u'rescu'] [u'jone', u'montgomeri', u'trade', u'endors', u'steroid'] [u'karzai', u'assassin', u'attempt', u'foil'] [u'kyrgyzstan', u'landslid', u'kill'] [u'lauitiiti', u'leav', u'warrior'] [u'reform', u'offer', u'protect', u'crime'] [u'lawyer', u'handl', u'nauru', u'appeal'] [u'lighter', u'blame', u'gagebrook'] [u'lion', u'improv', u'beat', u'saint', u'matthew'] [u'longer', u'danger', u'period', u'possibl'] [u'maluku', u'violenc', u'kill', u'injur'] [u'charg', u'abduct'] [u'charg', u'count', u'sexual', u'assault'] [u'free', u'wreck'] [u'mango', u'grower', u'effort', u'reward'] [u'jail', u'shoot', u'claim', u'fail'] [u'remand', u'custodi', u'numer', u'drive'] [u'remand', u'custodi', u'musician', u'mutil'] [u'face', u'court', u'multipl', u'drive', u'offenc'] [u'maradona', u'take', u'respir'] [u'matthew', u'ponder', u'dockland', u'secur', u'rethink'] [u'milan', u'frustrat', u'roma', u'titl', u'showdown'] [u'mine', u'accid', u'inquest', u'begin'] [u'minist', u'pressur', u'highway', u'fund'] [u'miss', u'inform', u'hamper', u'drug', u'hear'] [u'mitsubishi', u'boss', u'fall', u'sword'] [u'youth', u'involv', u'anzac', u'servic'] [u'upbeat', u'defenc', u'map', u'centr'] [u'director', u'share', u'respons', u'walter'] [u'narrabri', u'council', u'back', u'support'] [u'nato', u'deleg', u'begin', u'afghanistan', u'visit'] [u'nat', u'fear', u'rail', u'station', u'closur'] [u'nat', u'head', u'mildura', u'gather'] [u'evid', u'clear', u'bulldog', u'peponi'] [u'lawyer', u'delay', u'nauru', u'detent', u'case'] [u'look', u'promis', u'field', u'day'] [u'korea', u'reject', u'south', u'overland', u'offer'] [u'polic', u'charg', u'drink', u'drive'] [u'nurs', u'industri', u'woe', u'toll', u'hospit'] [u'nurs', u'deni', u'work', u'ban', u'endang', u'patient'] [u'offici', u'open', u'oliv', u'estat'] [u'ogilvi', u'trail', u'rain', u'forc', u'extra'] [u'onlin', u'ann', u'frank', u'memori', u'public'] [u'origin', u'energi', u'win', u'contract'] [u'owner', u'bank', u'miss', u'paint', u'return'] [u'pacif', u'island', u'volcano', u'start', u'erupt'] [u'pair', u'refus', u'bail', u'robberi', u'charg'] [u'paraglid', u'crash', u'land', u'hospit'] [u'park', u'honour', u'anzac', u'tradit'] [u'passeng', u'die', u'wilton', u'crash'] [u'pharmacist', u'challeng', u'supermarket', u'propos'] [u'phoenix', u'win', u'start'] [u'plastic', u'gain', u'support'] [u'iraq', u'visit', u'draw', u'mix', u'reaction'] [u'polic', u'board', u'greenpeac', u'ship'] [u'polic', u'drive', u'home', u'road', u'safeti', u'messag'] [u'polic', u'inform', u'demand', u'court', u'appear'] [u'polic', u'investig', u'assault'] [u'polic', u'charg', u'drug', u'crackdown'] [u'polic', u'murder', u'charg', u'wilcannia'] [u'polic', u'search', u'miss'] [u'polic', u'uncov', u'cannabi', u'plantat'] [u'polic', u'urg', u'long', u'weekend', u'road', u'safeti'] [u'polish', u'teenag', u'conquer', u'north', u'pole'] [u'protest', u'erupt', u'visit', u'britain'] [u'ranger', u'target', u'green', u'rememb', u'chernobyl'] [u'rebellin', u'seal', u'uniqu', u'trebl', u'lieg', u'bastogn'] [u'refere', u'disciplin', u'headscarf'] [u'relat', u'keep', u'dark', u'north', u'korea', u'disast'] [u'renew', u'call', u'total', u'smoke'] [u'riverina', u'get', u'anzac'] [u'riverland', u'rememb', u'anzac'] [u'road', u'plan', u'seal', u'tourism', u'boost'] [u'royal', u'nation', u'park', u'turn'] [u'chief', u'confid', u'anzac', u'futur'] [u'hearten', u'anzac', u'servic', u'number'] [u'govt', u'pressur', u'tax'] [u'saint', u'rid', u'high'] [u'samoa', u'ban', u'scuba', u'dive', u'fishermen'] [u'polic', u'warn', u'motorist', u'drive', u'safe'] [u'threaten', u'mitsubishi', u'exit', u'cost'] [u'secur', u'step', u'shrine'] [u'serratia', u'outbreak', u'test', u'hospit', u'transfer', u'rule'] [u'south', u'east', u'enjoy', u'drench'] [u'spit', u'fan', u'face', u'ban'] [u'steven', u'open', u'door', u'thorp'] [u'steven', u'stand', u'asid', u'open', u'door', u'thorp'] [u'storm', u'lose', u'robinson', u'knee', u'oper'] [u'strauss', u'airfield', u'onlin'] [u'strong', u'support', u'bendigo', u'anzac', u'servic'] [u'student', u'storm', u'univers', u'meet', u'protest'] [u'sudan', u'free', u'jazeera', u'correspond'] [u'sudan', u'peac', u'deal', u'expect', u'day'] [u'summon', u'flaw', u'hamper', u'bashir', u'interrog'] [u'sutton', u'pearson', u'earn', u'celtic', u'award', u'doubl'] [u'sweet', u'mannequin', u'kidnap', u'baffl', u'polic'] [u'symbol', u'iraq', u'commit', u'worri'] [u'talk', u'consid', u'lake', u'condah', u'mission', u'heritag'] [u'make', u'discoveri'] [u'terrorist', u'threaten', u'asian', u'airlin'] [u'terror', u'suspect', u'free', u'charg'] [u'thailand', u'deport', u'australian', u'face', u'charg'] [u'thiev', u'steal', u'sydney', u'boy', u'hear'] [u'intern', u'trinidad', u'abandon'] [u'thorp', u'steven', u'situat', u'prompt', u'rule', u'rethink'] [u'thousand', u'flee', u'insecur', u'uganda'] [u'thousand', u'flock', u'idol', u'concert'] [u'thousand', u'honour', u'anzac', u'spirit'] [u'tiger', u'ralli', u'round', u'embattl', u'frawley'] [u'tonga', u'plung', u'financi', u'crisi'] [u'truss', u'visit', u'unlik', u'saudi', u'export'] [u'arrest', u'citi', u'stab'] [u'consid', u'iraq', u'troop', u'boost', u'report'] [u'union', u'applaud', u'behaviour', u'teacher'] [u'extend', u'fallujah', u'disarma', u'deadlin', u'report'] [u'push', u'mini', u'nuke', u'research'] [u'radio', u'station', u'fin', u'castro', u'prank'] [u'soldier', u'insurg', u'kill', u'fallujah'] [u'troop', u'clash', u'fallujah', u'guerrilla'] [u'govt', u'guarante', u'teach', u'posit'] [u'govt', u'repair', u'countri', u'footi', u'field'] [u'nurs', u'talk', u'continu'] [u'violenc', u'mar', u'india', u'round', u'poll'] [u'memori', u'play', u'greater', u'anzac', u'role'] [u'water', u'scheme', u'save', u'farmer'] [u'consid', u'hec', u'hike'] [u'weapon', u'inspector', u'hurt', u'iraq', u'blast'] [u'western', u'victoria', u'rememb', u'anzac'] [u'confid', u'chines', u'sar', u'case', u'control'] [u'wineri', u'say', u'tast', u'charg', u'palat'] [u'woman', u'die', u'highway', u'crash'] [u'woman', u'face', u'court', u'harbour', u'escape'] [u'mistak', u'mistak', u'brain'] [u'youth', u'bolster', u'anzac'] [u'insurg', u'dead', u'najaf', u'fight'] [u'quarantin', u'china', u'sar', u'death'] [u'chief', u'resign'] [u'head', u'defend', u'role', u'cash', u'comment'] [u'motorist', u'warn', u'care', u'school', u'zone'] [u'oppn', u'float', u'tuggeranong', u'homestead', u'plan'] [u'advertis', u'campaign', u'launch', u'miss', u'teen'] [u'trainer', u'send', u'iraq', u'govt'] [u'age', u'care', u'boost', u'carnarvon'] [u'qaeda', u'brand', u'howard', u'wick'] [u'american', u'cheer', u'steven', u'withdraw'] [u'profit', u'surg', u'percent'] [u'arrest', u'warrant', u'fish', u'store', u'theft'] [u'lover', u'beckham'] [u'aussi', u'connor', u'quit', u'northampton', u'japan'] [u'australian', u'light', u'compani', u'hop', u'expand'] [u'australia', u'pledg', u'north', u'korea'] [u'baggio', u'hop', u'fairytal', u'intern', u'farewel'] [u'beatti', u'want', u'probe', u'colleg', u'alleg'] [u'beatti', u'welcom', u'coag', u'meet'] [u'berrigan', u'move', u'half', u'maroon', u'origin'] [u'crowd', u'honour', u'anzac', u'tradit'] [u'crowd', u'protest', u'rail', u'cut'] [u'bird', u'race', u'highlight', u'albatross', u'plight'] [u'brazil', u'claim', u'cotton', u'subsidi'] [u'break', u'hill', u'host', u'tidi', u'town', u'launch'] [u'bronco', u'look', u'real', u'deal'] [u'broom', u'say', u'hous', u'plan'] [u'bullock', u'slipway', u'facil'] [u'fund', u'help', u'region', u'student'] [u'govt', u'boost', u'rail'] [u'cane', u'grower', u'confid', u'govt', u'sugar', u'packag'] [u'cate', u'blanchett', u'give', u'birth', u'babi'] [u'chelsea', u'appeal', u'skipper'] [u'chemist', u'plead', u'guilti', u'drug', u'charg'] [u'chinchilla', u'lament', u'drought', u'snub'] [u'clarenc', u'valley', u'super', u'council', u'meet'] [u'close', u'mitsubishi', u'cost', u'billion', u'union'] [u'commemor', u'ceremoni', u'mark', u'disast', u'anniversari'] [u'communiti', u'cabinet', u'hear', u'childcar', u'shortag'] [u'coron', u'tell', u'confus', u'vital', u'drug'] [u'costa', u'fall', u'hurdl', u'barcelona', u'open'] [u'councillor', u'vote', u'hospit', u'site'] [u'council', u'plan', u'rail', u'ralli'] [u'council', u'reject', u'road', u'crash', u'liabil'] [u'court', u'delay', u'polic', u'corrupt', u'case'] [u'court', u'reject'] [u'crew', u'safeti', u'drive', u'bushfir', u'respons'] [u'crikey', u'home', u'tiger', u'cub'] [u'deegan', u'contest', u'downer', u'seat'] [u'democrat', u'upbeat', u'sugar', u'demand'] [u'dental', u'boost', u'central'] [u'develop', u'board', u'want', u'fund', u'boost'] [u'digest', u'problem', u'suharto', u'admiss'] [u'docker', u'play', u'derbi', u'favourit'] [u'doctor', u'heart', u'diseas', u'warn', u'obes'] [u'drug', u'extend', u'life', u'lung', u'cancer', u'patient'] [u'earli', u'power', u'wind'] [u'eddi', u'hit', u'olymp', u'park'] [u'arrest', u'film', u'protest'] [u'eleph', u'see', u'red', u'safari', u'scare'] [u'extra', u'fruit', u'tip', u'bolster', u'bulk', u'wine', u'export'] [u'fear', u'air', u'isisford', u'store', u'closur'] [u'fear', u'anim', u'park', u'buyer', u'pull'] [u'ferrari', u'boss', u'eye', u'button'] [u'firefight', u'tackl', u'shed', u'blaze'] [u'flinder', u'rang', u'polic', u'level', u'question'] [u'diplomat', u'blast', u'blair', u'polici', u'support'] [u'foxtel', u'worker', u'strike', u'condit'] [u'french', u'water', u'featur', u'get', u'makeov'] [u'fund', u'anzac', u'park'] [u'girl', u'theft', u'charg', u'stay', u'hostel'] [u'goldfield', u'driver', u'urg', u'care'] [u'good', u'sign', u'immin', u'lake', u'creek', u'open'] [u'govt', u'mull', u'marriag', u'restrict'] [u'govt', u'offer', u'serratia', u'assur'] [u'govt', u'renew', u'famili', u'servic', u'fund'] [u'group', u'welcom', u'water', u'develop', u'ban'] [u'guard', u'resign', u'rail', u'secur', u'breach'] [u'hackett', u'coach', u'happi', u'steven', u'decis'] [u'health', u'industri', u'woe', u'impact', u'region'] [u'hear', u'begin', u'offic', u'charg', u'wadey'] [u'hec', u'increas', u'deter', u'rural', u'student'] [u'hobart', u'closer', u'antarct', u'gateway'] [u'honeysuckl', u'site', u'clean', u'begin'] [u'hope', u'second', u'retir', u'villag'] [u'hope', u'yarram', u'grind', u'share', u'footi', u'fund'] [u'hospit', u'cop', u'nurs', u'work', u'ban'] [u'hospit', u'handov', u'timet', u'concern', u'union'] [u'hous', u'caus', u'unknown'] [u'howard', u'put', u'australia', u'risk', u'hawk'] [u'howel', u'leafa', u'face', u'strike', u'charg'] [u'hunt', u'continu', u'child', u'attack'] [u'indian', u'cricket', u'chief', u'rule', u'gulf', u'game'] [u'india', u'phase', u'elect', u'continu'] [u'indigen', u'committe', u'critic', u'vanston', u'meet'] [u'insur', u'scheme', u'chariti', u'profit', u'group'] [u'intrud', u'prompt', u'rail', u'yard', u'secur', u'review'] [u'irishmen', u'clear', u'train', u'colombian', u'rebel'] [u'isra', u'soldier', u'kill', u'west', u'bank', u'milit'] [u'itali', u'stand', u'firm', u'hostag', u'demand'] [u'japanes', u'style', u'rest', u'hous'] [u'jordanian', u'air', u'milit', u'confess'] [u'journalist', u'charg', u'publish', u'secret', u'iraq'] [u'juri', u'find', u'stand', u'trial'] [u'katherin', u'centr', u'tackl', u'alcohol', u'abus'] [u'kidman', u'dazzl', u'diplomat'] [u'killarney', u'revamp', u'open'] [u'kiwi', u'bowler', u'dump', u'kookaburra', u'england', u'tour'] [u'krige', u'ban', u'headbutt', u'super'] [u'latham', u'meet', u'offici'] [u'lauitiiti', u'rule', u'rabbitoh'] [u'lennon', u'blame', u'liber', u'mersey', u'woe'] [u'libyan', u'leader', u'visit', u'belgium'] [u'littl', u'cancel', u'lib', u'fundrais'] [u'malle', u'fuel', u'reduct', u'burn', u'continu'] [u'arrest', u'spanish', u'bomb'] [u'hospit', u'cowra', u'incid'] [u'kill', u'bike', u'accid'] [u'face', u'murder', u'committ', u'hear'] [u'court', u'teen', u'death'] [u'market', u'trade', u'slow', u'overnight'] [u'maroon', u'pick', u'berrigan', u'half'] [u'mbeki', u'rememb', u'repuls', u'apartheid'] [u'meet', u'aim', u'overcom', u'hump', u'camel', u'export'] [u'meet', u'consid', u'banana', u'land', u'rehabilit'] [u'meet', u'consid', u'miner', u'sand', u'impact'] [u'milla', u'jovovich', u'sue', u'disput', u'film'] [u'accid', u'inquiri', u'tell', u'safeti'] [u'mine', u'area', u'check', u'arsenic'] [u'miss', u'master', u'star', u'face', u'cash'] [u'mitsubishi', u'specul', u'weigh', u'sale', u'staff'] [u'action', u'need', u'wineg', u'ethicist'] [u'movi', u'websit', u'stir', u'clone', u'controversi'] [u'miner', u'moon'] [u'water', u'price', u'flow', u'custom'] [u'bulldog', u'face', u'charg'] [u'evid', u'forens', u'corrupt', u'claim'] [u'schedul', u'hong', u'kong', u'democraci', u'downer'] [u'opposit', u'slam', u'govt', u'drug', u'program'] [u'play', u'host', u'diplomat'] [u'nurs', u'disput', u'enter', u'second', u'week'] [u'nurs', u'walk', u'staff', u'level'] [u'nurs', u'union', u'meet', u'govt'] [u'nurs', u'work', u'ban', u'close', u'hospit', u'bed'] [u'oliv', u'processor', u'plant', u'tonn'] [u'opposit', u'critic', u'decis', u'rais', u'hec'] [u'orica', u'strike', u'deal', u'bronson', u'jacob'] [u'overhaul', u'school', u'curriculum', u'step', u'closer'] [u'packer', u'launch', u'perth', u'casino'] [u'perth', u'hold', u'hockey', u'program'] [u'pie', u'prepar', u'compromis', u'olymp', u'park'] [u'player', u'interview', u'saint', u'probe'] [u'ask', u'host', u'mitsubishi', u'roundtabl'] [u'receiv', u'anniversari', u'invit'] [u'consid', u'australian', u'compromis'] [u'choos'] [u'polic', u'drive', u'home', u'road', u'safeti', u'messag', u'young'] [u'polic', u'examin', u'assess', u'bulldog', u'case'] [u'polic', u'happi', u'driver', u'near', u'school'] [u'polic', u'happi', u'holiday', u'driver'] [u'polic', u'happi', u'long', u'weekend', u'driver'] [u'polic', u'interview', u'saint', u'pair'] [u'polic', u'long', u'weekend', u'drink', u'drive', u'charg'] [u'polic', u'charg', u'injur', u'teen', u'driver'] [u'polic', u'rule', u'bone', u'miss', u'link'] [u'polic', u'probe', u'weekend', u'assault'] [u'polic', u'reviv', u'bashir', u'interrog', u'plan'] [u'polic', u'search', u'involv', u'home', u'invas'] [u'polic', u'seiz', u'nation', u'park', u'cannabi'] [u'press', u'group', u'appeal', u'journalist', u'death', u'sentenc'] [u'profit', u'take', u'limit', u'market', u'rise'] [u'prostitut', u'deni', u'murder', u'accus', u'alibi'] [u'prostitut', u'deni', u'see', u'accus', u'night'] [u'protest', u'call', u'atsic', u'retent'] [u'public', u'servant', u'seek', u'wage', u'offer', u'vote'] [u'public', u'urg', u'watch', u'croc'] [u'report', u'author', u'criticis', u'govt', u'health', u'rescu'] [u'resid', u'long', u'wait', u'power'] [u'resid', u'want', u'boundari', u'chang'] [u'retir', u'look', u'bleak', u'small', u'busi', u'owner'] [u'rivaldo', u'close', u'bolton'] [u'rodd', u'look', u'forward', u'regiment', u'ride'] [u'rubi', u'consid', u'upper', u'hunter'] [u'extend', u'sick', u'leav'] [u'saint', u'face', u'wait', u'polic', u'probe', u'continu'] [u'sawmil', u'talk', u'continu', u'south', u'west'] [u'search', u'crabber', u'resum'] [u'second', u'profit', u'warn', u'hit', u'cochlear', u'share'] [u'shafston', u'colleg', u'ban', u'presid'] [u'shafston', u'intern', u'colleg', u'head', u'quit'] [u'shire', u'consid', u'industri', u'estat', u'plan'] [u'singapor', u'power', u'buy', u'australia'] [u'sniper', u'kill', u'polic', u'ambon', u'violenc', u'continu'] [u'south', u'african', u'celebr', u'apartheid'] [u'springborg', u'welcom', u'custodi', u'review'] [u'storm', u'prop', u'chan', u'charg'] [u'student', u'seek', u'rural', u'practic', u'scheme'] [u'suharto', u'excel', u'health'] [u'survey', u'highlight', u'smoker', u'support'] [u'sustain', u'land', u'water', u'centr', u'open'] [u'symbol', u'deploy', u'claim', u'insult'] [u'talk', u'trash', u'bin', u'berlin', u'tidi'] [u'talk', u'address', u'crisi', u'level', u'domest', u'violenc'] [u'targa', u'tasmania', u'driver', u'hop', u'weather'] [u'thorp', u'expect', u'announc'] [u'thorp', u'fire', u'olymp'] [u'tillakaratn', u'ax', u'zimbabw', u'test', u'seri'] [u'total', u'eclips', u'australian', u'see'] [u'tour', u'franc', u'boss', u'meet', u'london', u'mayor'] [u'tragedi', u'prompt', u'custodi', u'procedur', u'review'] [u'trial', u'alleg', u'bali', u'bomber', u'begin'] [u'trucki', u'consid', u'bill'] [u'underworld', u'figur', u'avoid', u'court', u'appear'] [u'union', u'fear', u'electrolux', u'cut'] [u'launch', u'north', u'korea', u'appeal'] [u'patient', u'pray', u'good', u'health'] [u'studi', u'find', u'summer', u'bring', u'lower', u'cholesterol'] [u'limit', u'iraqi', u'sovereignti', u'powel'] [u'vail', u'make', u'progress', u'china'] [u'polic', u'corrupt', u'claim', u'taint', u'test'] [u'vijay', u'singh', u'rain', u'houston', u'titl'] [u'farmer', u'lobbi', u'kyoto', u'protocol'] [u'walker', u'win', u'rise', u'star'] [u'walter', u'demand', u'draft', u'loss', u'report', u'releas'] [u'student', u'meet', u'british'] [u'water', u'polo', u'make', u'splash', u'champ'] [u'water', u'sewerag', u'cost'] [u'univers', u'approv', u'increas'] [u'wick', u'howard', u'shrug', u'qaeda', u'slur'] [u'wilkinson', u'target', u'novemb', u'comeback'] [u'woman', u'die', u'pilbara', u'road', u'crash'] [u'woman', u'face', u'jail', u'drug', u'charg'] [u'wonderland', u'worker', u'work'] [u'illawarra', u'health'] [u'sugar', u'rescu', u'packag', u'predict'] [u'dead', u'thailand', u'clash'] [u'chairman', u'defend', u'jone', u'letter'] [u'aborigin', u'leader', u'say', u'mile', u'communiti'] [u'account', u'jail', u'dupe', u'friend'] [u'actu', u'readi', u'step', u'nurs', u'disput'] [u'actu', u'shock', u'daili', u'work', u'relat', u'death', u'toll'] [u'releas', u'financi', u'report'] [u'anderson', u'tour', u'south', u'east'] [u'arm', u'cach', u'explos', u'syrian', u'raid'] [u'armstrong', u'hint', u'retir', u'sponsor', u'pull'] [u'athen', u'olymp', u'plung', u'deeper'] [u'atsic', u'council', u'attend', u'sydney', u'confer'] [u'australian', u'camera', u'captur', u'univers'] [u'australian', u'ralli', u'recip', u'ail', u'polar', u'bear'] [u'bank', u'miner', u'weigh', u'market'] [u'bed', u'close', u'nurs', u'maintain', u'disput'] [u'bet', u'rule', u'restart', u'cane', u'toad', u'race'] [u'blatter', u'declar', u'win'] [u'charg', u'stab', u'grant', u'bail'] [u'boy', u'buddi', u'labor', u'educ', u'plan'] [u'britain', u'releas', u'terror', u'suspect'] [u'brogden', u'seek', u'power', u'plant', u'assur'] [u'break', u'thumb', u'rule', u'lion', u'mcgrath'] [u'bronco', u'loss', u'meyer'] [u'bulldog', u'coach', u'folk', u'know', u'player'] [u'bulldog', u'fine'] [u'busi', u'good', u'tassi', u'hotel'] [u'butler', u'attend', u'royal', u'wed'] [u'north', u'west', u'superintend'] [u'speed', u'limit', u'tamar', u'river'] [u'caltex', u'wooli', u'extend', u'joint', u'petrol', u'ventur'] [u'fee', u'subsidis', u'concess'] [u'park', u'hoon', u'frustrat', u'resid'] [u'centr', u'face', u'child', u'supervis', u'charg'] [u'chelsea', u'line', u'mourinho', u'ronaldo', u'beckham'] [u'children', u'divorc', u'wors', u'studi'] [u'china', u'report', u'sar', u'case'] [u'china', u'seek', u'calm', u'sar', u'fear'] [u'china', u'trade', u'talk', u'fast', u'track'] [u'class', u'action', u'shale', u'project'] [u'colleg', u'rigor', u'investig', u'bligh'] [u'compani', u'reject', u'hous', u'develop', u'concern'] [u'cool', u'temp', u'predict', u'western'] [u'coron', u'say', u'mine', u'death', u'tragic', u'accid'] [u'coron', u'urg', u'supervis', u'bath', u'children'] [u'costello', u'welcom', u'inflat', u'rise'] [u'council', u'air', u'water', u'contamin', u'concern'] [u'council', u'consid', u'panorama', u'financi', u'fuel'] [u'council', u'dive', u'pool', u'fund'] [u'council', u'fight', u'brack', u'backdown'] [u'council', u'vote', u'foreshor', u'develop'] [u'council', u'welcom', u'beach', u'cigarett'] [u'dampier', u'bunburi', u'pipelin', u'go', u'receivership'] [u'dead', u'babi', u'mother', u'dial'] [u'demetriou', u'flag', u'dope', u'test', u'rethink'] [u'dental', u'ray', u'link', u'birth', u'weight', u'babi'] [u'disast', u'relief', u'fund', u'storm', u'victim'] [u'disney', u'remak', u'swiss', u'famili', u'robinson'] [u'doc', u'steroid', u'hand', u'justic', u'dept'] [u'doctor', u'region', u'scheme'] [u'doubt', u'cast', u'insur', u'scheme'] [u'downer', u'attend', u'mara', u'funer'] [u'earli', u'plea', u'round', u'charg', u'foursom'] [u'ecstasi', u'grow', u'problem', u'mildura', u'region'] [u'educ', u'health', u'petrol', u'price', u'expect'] [u'electrolux', u'urg', u'freez', u'worri'] [u'elliott', u'lose', u'latest', u'court'] [u'farm', u'come', u'attack'] [u'timor', u'condemn', u'australia', u'theft', u'border'] [u'evid', u'bulldog', u'assault', u'strong'] [u'fake', u'milk', u'kill', u'chines', u'babi'] [u'farmer', u'lose', u'sleep', u'dam'] [u'fear', u'tourist', u'help', u'illeg', u'abalon', u'trade'] [u'feder', u'fund', u'revamp', u'classic', u'theatr'] [u'feder', u'govt', u'want', u'region', u'phone', u'servic'] [u'fevola', u'gestur', u'draw', u'fine'] [u'fighter', u'escort', u'canada'] [u'figur', u'highlight', u'illawarra', u'growth'] [u'damag', u'perth', u'factori'] [u'flint', u'claim', u'boost', u'rat', u'jone'] [u'forestri', u'practic', u'tasmania', u'recognis'] [u'frawley', u'say', u'wont', u'sack'] [u'fund', u'boost', u'southern', u'health', u'servic'] [u'gaddafi', u'urg', u'world', u'follow', u'peac', u'exampl'] [u'gag', u'claus', u'hous', u'estat', u'contract'] [u'german', u'court', u'throw', u'laughabl', u'lawsuit'] [u'glori', u'boss', u'talk', u'tough', u'debt', u'threat'] [u'trial', u'scale'] [u'govt', u'defend', u'surgeri', u'wait', u'list'] [u'grower', u'hop', u'sweet', u'sugar', u'deal'] [u'hall', u'berri', u'divorc', u'husband'] [u'hannay', u'move', u'closer', u'origin', u'ambit'] [u'hartz', u'moutain', u'search', u'intensifi'] [u'health', u'expert', u'face', u'dengu', u'resist'] [u'health', u'group', u'look', u'fund', u'boost'] [u'hill', u'visit', u'examin', u'iraq', u'handov', u'provis'] [u'homesick', u'watson', u'abandon', u'tassi', u'queensland'] [u'hospit', u'age', u'care', u'unit', u'close'] [u'hospit', u'feel', u'nurs', u'protest'] [u'hotel', u'group', u'oppos', u'smoke', u'propos'] [u'icpa', u'unhappi', u'bigger', u'allow', u'snub'] [u'indonesian', u'polic', u'begin', u'question', u'bashir'] [u'inquest', u'hear', u'bushfir', u'warn', u'urgent'] [u'inquest', u'death', u'psychiatr', u'patient', u'begin'] [u'investig', u'probe', u'fatal', u'accid'] [u'insur', u'olymp', u'cancel'] [u'iraqi', u'interim', u'govern', u'possibl', u'envoy'] [u'island', u'prepar', u'volcan', u'erupt'] [u'israel', u'confirm', u'iaea', u'visit'] [u'isra', u'troop', u'foil', u'suicid', u'bomb'] [u'japanes', u'knicker', u'nicker', u'nick'] [u'katherin', u'mayor', u'call', u'water', u'divers', u'program'] [u'klitschko', u'weigh', u'option', u'heavyweight', u'champ'] [u'kuerten', u'scrap', u'past', u'johansson', u'spain'] [u'exit', u'brooklyn', u'author', u'hubert', u'selbi', u'die'] [u'latham', u'focus', u'gippsland', u'seat'] [u'latham', u'surpris', u'poll', u'result'] [u'latham', u'promis', u'pakenham', u'bypass', u'fund'] [u'lion', u'launch', u'fine', u'appeal'] [u'lion', u'launch', u'fin', u'appeal'] [u'lulu', u'hop', u'braveri', u'award'] [u'charg', u'unit', u'blaze'] [u'maradona', u'thank', u'fan', u'support'] [u'maryborough', u'continu', u'detent', u'centr', u'push'] [u'mauresmo', u'put', u'cloth', u'disput'] [u'mcdonald', u'report', u'profit', u'jump'] [u'mcgee', u'notch', u'prologu', u'victori'] [u'mcgradi', u'meet', u'aldoga', u'partner'] [u'milton', u'welcom', u'communiti', u'bank'] [u'minist', u'press', u'calder', u'fund'] [u'mitsubishi', u'australian', u'problem'] [u'back', u'call', u'boundari', u'chang'] [u'servic', u'west', u'gascoyn'] [u'child', u'protect', u'worker', u'appoint'] [u'embassi', u'receiv', u'iraq', u'threat'] [u'more', u'region', u'natur', u'disast', u'fund'] [u'jackson', u'play', u'fit', u'fear'] [u'copi', u'rogu', u'trade', u'report'] [u'nauru', u'dismiss', u'australian', u'lawyer'] [u'negropont', u'expect', u'takeov', u'post', u'iraq'] [u'execut', u'clarenc', u'council'] [u'nicklaus', u'player', u'renew', u'presid', u'rivalri'] [u'niue', u'seek', u'cyclon'] [u'korea', u'media', u'stun', u'press', u'freedom', u'group'] [u'noad', u'plea', u'lenienc', u'board', u'meet'] [u'probe', u'saint', u'claim', u'demetriou'] [u'board', u'consid', u'sanction', u'dog'] [u'consid', u'limit', u'govt', u'websit'] [u'worksaf', u'take', u'mediat', u'alleg', u'serious'] [u'nurs', u'seek', u'govt', u'talk'] [u'nurs', u'unhappi', u'work', u'hour', u'plan'] [u'hermit', u'sheep', u'get', u'haircut'] [u'oppn', u'question', u'fast', u'rail', u'timet'] [u'pakistan', u'scale', u'armi'] [u'park', u'council', u'prefer', u'hospit', u'site'] [u'peac', u'roadmap', u'dead', u'isra'] [u'perth', u'surgeon', u'disput', u'inquest', u'evid'] [u'philippin', u'proof', u'suspect'] [u'deni', u'intellig', u'cover'] [u'deni', u'take', u'joness', u'instruct', u'flint'] [u'polic', u'hunt', u'bank', u'bandit'] [u'polic', u'investig', u'fatal'] [u'polic', u'test', u'morecomb', u'investig'] [u'post', u'taliban', u'afghanistan', u'resum', u'execut'] [u'power', u'monopoli', u'breach', u'competit', u'law'] [u'power', u'restor', u'sydney', u'south', u'west'] [u'protest', u'fail', u'stop', u'shipment'] [u'public', u'local', u'govt', u'represent'] [u'qanta', u'mackay', u'flight', u'unlik', u'chang'] [u'subcontractor', u'foxtel', u'strike', u'hold'] [u'student', u'mobil', u'photographi'] [u'rain', u'threaten', u'ruin', u'seri'] [u'random', u'drug', u'test', u'catch', u'offend', u'armi'] [u'richard', u'fastest', u'targa', u'tasmania'] [u'richmond', u'spitter', u'hunt', u'head', u'north'] [u'rise', u'river', u'close', u'bruce', u'highway'] [u'road', u'safeti', u'oper', u'result', u'concern', u'polic'] [u'brew', u'council', u'motion'] [u'rubbish', u'clog', u'coastlin'] [u'arriv', u'melbourn', u'sydney', u'airport'] [u'saddam', u'get', u'birthday', u'visit', u'cross'] [u'nation', u'consid', u'feder'] [u'sand', u'bypass', u'cost', u'luca'] [u'santo', u'sale', u'moomba', u'explos'] [u'schuettler', u'return', u'form', u'continu'] [u'search', u'resum', u'miss'] [u'shooter', u'go', u'bang'] [u'soldier', u'face', u'armi', u'discharg', u'drug'] [u'spain', u'seek', u'exit', u'iraq'] [u'spider', u'seek', u'bridg', u'jumper'] [u'spitz', u'claim', u'pull', u'athen', u'game'] [u'lanka', u'continu', u'whitewash', u'demoralis'] [u'station', u'owner', u'rail', u'compo', u'offer', u'unfair'] [u'john', u'contract', u'boost', u'ambul', u'number'] [u'strong', u'economi', u'fail', u'benefit', u'youth'] [u'student', u'protest', u'iraq', u'flag'] [u'studi', u'rule', u'south', u'coast', u'rail', u'tunnel'] [u'support', u'fail', u'block', u'bashir', u'interview'] [u'support', u'gather', u'polic', u'question', u'bashir'] [u'suva', u'stand', u'funer', u'begin'] [u'sydney', u'polic', u'investig', u'inner', u'citi', u'murder'] [u'takeov', u'boost', u'burswood', u'share'] [u'takeov', u'continu', u'mildura'] [u'talk', u'focus', u'harbour', u'secur'] [u'sentenc', u'court', u'babi', u'batteri'] [u'teen', u'charg', u'attempt', u'murder', u'refus', u'bail'] [u'telstra', u'optus', u'fight', u'broadband', u'instal'] [u'thai', u'mosqu', u'shoot', u'end', u'violenc'] [u'tourism', u'council', u'welcom', u'increas', u'airlin'] [u'tourist', u'spend'] [u'tourist', u'tram', u'celebr', u'birthday'] [u'transport', u'help', u'seek', u'truscott', u'base', u'tribut'] [u'trapattoni', u'leav', u'euro', u'door', u'open', u'baggio'] [u'announc', u'return', u'ring'] [u'ugli', u'eadi', u'track', u'sydney'] [u'union', u'agreement', u'pave', u'abattoir', u'reopen'] [u'union', u'urg', u'account', u'english'] [u'free', u'trade', u'deal', u'pass', u'major', u'hurdl'] [u'reluct', u'start', u'fallujah', u'offens'] [u'russia', u'plan', u'destroy', u'chemic'] [u'stand', u'cotton', u'subsidi'] [u'target', u'jazeera', u'coverag', u'iraq'] [u'venter', u'join', u'krige', u'sidelin', u'head', u'butt'] [u'vienna', u'council', u'pooh', u'pooh', u'messi', u'hors'] [u'voter', u'urg', u'elect'] [u'widow', u'win', u'hospit', u'neglig', u'case'] [u'wilson', u'inlet', u'get', u'navig', u'boost'] [u'wine', u'link', u'lower', u'ovarian', u'cancer', u'rate'] [u'wit', u'verifi', u'jone', u'comment', u'law', u'say'] [u'wollongong', u'council', u'moot', u'rate', u'rise'] [u'woodlawn', u'site', u'green'] [u'wool', u'industri', u'high', u'hop', u'trade', u'agreement'] [u'worker', u'worri', u'mitsubishi', u'futur'] [u'world', u'market', u'buoy', u'confid', u'increas'] [u'challeng', u'affect', u'ban'] [u'zimbabw', u'talk', u'breakdown', u'aust', u'tour'] [u'court', u'stiff', u'return'] [u'flow', u'river', u'clean'] [u'abbott', u'question', u'foreign', u'train', u'doctor'] [u'ail', u'crawford', u'chanc', u'face', u'tiger'] [u'airspac', u'regul', u'chang', u'stay'] [u'alleg', u'toothfish', u'pirat', u'plead', u'guilti'] [u'allow', u'uniqu', u'murali', u'bowl', u'doosra', u'expert'] [u'commit', u'mentor', u'young', u'australian'] [u'amex', u'promot', u'australian', u'tourism'] [u'anderson', u'upbeat', u'water', u'reform'] [u'annan', u'warn', u'raid', u'make', u'iraq', u'stand', u'wors'] [u'appl', u'notch', u'music', u'download'] [u'argentina', u'winner', u'morocco'] [u'armi', u'fail', u'dead', u'son', u'mother', u'tell', u'inquiri'] [u'arrest', u'dont', u'deter', u'lake', u'cowal', u'protest'] [u'aussi', u'push', u'suspens', u'threat', u'report'] [u'aust', u'consid', u'send', u'militari', u'equip', u'iraqi'] [u'australian', u'labour', u'plan', u'spark', u'pacif'] [u'snatcher', u'face', u'manslaught', u'charg'] [u'bashir', u'releas', u'short', u'live'] [u'bevan'] [u'blaze', u'grip', u'texa', u'shop'] [u'bluescop', u'merger', u'boost', u'oversea', u'market', u'posit'] [u'breakthrough', u'zimbabw', u'cricket', u'race'] [u'bronco', u'begin', u'tuqiri', u'code', u'switch', u'talk'] [u'brown', u'remain', u'dragon', u'master'] [u'bryant', u'enter', u'plea', u'rape', u'charg', u'month'] [u'bulldog', u'saga', u'wont', u'stop', u'council', u'seek', u'game'] [u'bush', u'cheney', u'readi', u'sept', u'question'] [u'byron', u'seek', u'plan', u'power', u'chang'] [u'port', u'stephen', u'polic', u'boost'] [u'cancer', u'council', u'promot', u'regular', u'test'] [u'bomb', u'attack', u'kill', u'solid'] [u'park', u'accid', u'prove', u'cost'] [u'race', u'talk', u'like', u'drag'] [u'carr', u'back', u'appeal', u'film', u'shoot'] [u'celebr', u'childer', u'hostel', u'open'] [u'child', u'safeti', u'dept', u'launch', u'staff', u'drive'] [u'china', u'confirm', u'sar', u'case'] [u'china', u'iron', u'appetit', u'boost', u'north', u'west'] [u'china', u'warn', u'foreign', u'sar', u'risk'] [u'civilian', u'fallujah', u'fight', u'continu'] [u'clark', u'challeng', u'indigen'] [u'clark', u'challeng', u'suspens', u'despit', u'atsic', u'scrap'] [u'club', u'pub', u'smoke', u'inevit'] [u'colombian', u'school', u'accid', u'leav', u'dead'] [u'comcast', u'withdraw', u'disney'] [u'communiti', u'meet', u'back', u'retir', u'villag', u'plan'] [u'constructor', u'threaten', u'breakaway', u'championship'] [u'cosgrov', u'deni', u'collin', u'case', u'cover'] [u'cotton', u'compani', u'predict', u'profit', u'recoveri'] [u'council', u'adopt', u'rat', u'scheme'] [u'council', u'merger', u'resid', u'withhold', u'rat'] [u'council', u'put', u'extra', u'fund', u'public', u'asset'] [u'council', u'seek', u'feder', u'road', u'fund'] [u'council', u'welcom', u'pension', u'discount', u'help'] [u'countrylink', u'worker', u'strike', u'cut'] [u'court', u'halt', u'blue', u'mountain', u'film'] [u'court', u'revamp', u'near'] [u'darwin', u'undertak', u'park', u'review'] [u'deadlin', u'hospit', u'secur'] [u'death', u'toll', u'rise', u'iraq', u'violenc', u'continu'] [u'democrat', u'koala', u'cull'] [u'detect', u'treat', u'test', u'tube', u'diseas'] [u'doctor', u'ask', u'alter', u'medic', u'record', u'inquiri'] [u'want', u'inquiri', u'model', u'death'] [u'drench', u'hurt', u'pastur'] [u'drug', u'oper', u'continu', u'follow', u'raid'] [u'effort', u'begin', u'prevent', u'temporari', u'hospit', u'closur'] [u'embassi', u'guard', u'suspend', u'hitler', u'salut'] [u'english', u'administr', u'quit', u'zimbabw', u'tour'] [u'wife', u'england', u'captain', u'adam', u'arrest'] [u'fallujah', u'strike', u'continu', u'despit', u'ongo', u'talk'] [u'farmer', u'despit', u'sugar', u'packag'] [u'farmer', u'warn', u'push', u'crop', u'domest'] [u'fear', u'truck', u'plan', u'cost', u'region', u'victorian'] [u'feder', u'air', u'northern', u'rail', u'concern'] [u'ferguson', u'eye', u'gerrard', u'possibl', u'skipper'] [u'flood', u'keep', u'highway'] [u'longreach', u'rouseabout', u'priest'] [u'fund', u'boost', u'disabl', u'servic'] [u'game', u'organis', u'miss', u'stadium', u'roof', u'deadlin'] [u'german', u'shepherd', u'savag', u'attack', u'retain', u'guard'] [u'germani', u'hammer', u'night', u'upset'] [u'globalis', u'research', u'win', u'societi', u'award'] [u'govt', u'ask', u'help', u'shoot', u'victim'] [u'govt', u'fail', u'contact', u'nurs', u'wage', u'disput'] [u'govt', u'urg', u'build', u'popul'] [u'graffiti', u'plan', u'consult', u'wast', u'time'] [u'green', u'candid', u'contest', u'barker'] [u'green', u'claim', u'discharg', u'gunn', u'share'] [u'green', u'seek', u'film', u'licenc', u'review'] [u'green', u'urg', u'prioriti', u'water', u'conserv'] [u'group', u'call', u'hall', u'waterfront'] [u'group', u'critic', u'road', u'chang'] [u'group', u'push', u'invest', u'indigen'] [u'group', u'sink', u'replica', u'ship', u'attack'] [u'henin', u'hardenn', u'doubt', u'french', u'open'] [u'high', u'court', u'overturn', u'children', u'detent', u'decis'] [u'hop', u'dawson', u'callid', u'campus'] [u'howard', u'seek', u'advic', u'flint', u'letter'] [u'inspect', u'youth', u'game', u'novemb'] [u'job', u'timber', u'close'] [u'jone', u'hit', u'claim'] [u'justic', u'minist', u'inspect', u'grafton', u'jail'] [u'kelli', u'claim', u'kilo', u'time', u'trial', u'sydney'] [u'king', u'island', u'landown', u'compens'] [u'kyoto', u'benefit', u'outweigh', u'negat', u'impact', u'latham'] [u'landhold', u'urg', u'bait', u'dingo'] [u'latham', u'milk', u'vote', u'despit', u'deregul'] [u'lava', u'flow', u'mount', u'bagana'] [u'law', u'claim', u'flint', u'letter'] [u'lawyer', u'challeng', u'bush', u'author', u'detaine', u'case'] [u'liber', u'question', u'icac', u'appoint'] [u'lion', u'eager', u'challeng', u'crown'] [u'long', u'wait', u'wineri'] [u'mactier', u'eadi', u'lead', u'track', u'champ', u'qualifi'] [u'charg', u'haymarket', u'murder'] [u'face', u'court', u'haymarket', u'murder'] [u'map', u'spell', u'reef', u'protect', u'zone'] [u'maradona', u'friend', u'cuba', u'castro', u'guest'] [u'market', u'unsettl', u'aussi', u'dollar', u'tumbl'] [u'marsh', u'sing', u'prais', u'england', u'pacemen'] [u'mar', u'rover', u'start', u'research', u'complet'] [u'master', u'mickelson', u'aim', u'major'] [u'mayor', u'claim', u'good', u'councillor', u'relationship'] [u'mayor', u'seek', u'speed', u'limit', u'boost'] [u'mbeki', u'includ', u'women', u'cabinet'] [u'mcgee', u'hold', u'romandi', u'lead'] [u'media', u'slam', u'howard', u'fiji', u'funer'] [u'menstruat', u'increas', u'sport', u'injuri', u'risk', u'studi'] [u'militari', u'barrist', u'want', u'defenc', u'concern', u'air'] [u'mitsubishi', u'plan', u'bail', u'report'] [u'mix', u'respons', u'retir', u'villag', u'plan'] [u'moratorium', u'place', u'king', u'land', u'clear'] [u'mother', u'bond', u'babi', u'eat', u'ecstasi'] [u'moya', u'lead', u'clay', u'court', u'specialist', u'barcelona'] [u'nation', u'push', u'tourism', u'portfolio', u'futur'] [u'neanderth', u'slow', u'think', u'studi'] [u'charg', u'lay', u'suspect'] [u'wagga', u'hospit', u'time'] [u'korea', u'agre', u'fresh', u'nuclear', u'talk'] [u'govt', u'crack', u'home', u'build', u'sit'] [u'crack', u'prison', u'fake', u'claim'] [u'trafford', u'terror', u'suspect', u'free', u'charg'] [u'olyroo', u'tunisia'] [u'kill', u'injur', u'highway', u'crash'] [u'opal', u'miner', u'sign', u'indigen', u'land', u'agreement'] [u'order', u'begin', u'action', u'demand'] [u'pacif', u'island', u'seek', u'rule'] [u'parliament', u'urg', u'home', u'shoot'] [u'passiv', u'smoke', u'kill', u'hotel', u'worker', u'cancer'] [u'pois', u'announc', u'sugar', u'rescu', u'deal'] [u'turn', u'gladston', u'invit'] [u'unawar', u'fighter', u'jet', u'cost', u'blowout'] [u'seek', u'answer', u'pipelin', u'talk', u'loom'] [u'polic', u'probe', u'cattl', u'poison'] [u'poll', u'show', u'sharon', u'lose', u'support', u'gaza', u'plan'] [u'pope', u'infal', u'down', u'mexico'] [u'port', u'wait', u'injuri', u'news', u'ahead', u'magpi', u'clash'] [u'qanta', u'link', u'continu', u'servic'] [u'qanta', u'manag', u'hear', u'mackay', u'concern'] [u'qualifi', u'push', u'verkerk', u'munich'] [u'quarantin', u'wast', u'procedur', u'inadequ', u'opposit'] [u'quick', u'start', u'council', u'infight'] [u'racq', u'seek', u'newel', u'bypass', u'talk'] [u'rain', u'end', u'cotton', u'pick'] [u'risk', u'rise', u'hollywood', u'budget'] [u'roger', u'swan', u'debut'] [u'romania', u'crush', u'germani', u'euro', u'warm'] [u'rumsfeld', u'releas', u'controversi', u'mosqu', u'pictur'] [u'saint', u'tiger', u'clear', u'collus', u'claim'] [u'salari', u'problem', u'cost', u'club', u'thousand'] [u'launch', u'indigen', u'home', u'loan', u'scheme'] [u'school', u'mainten', u'budget', u'boost'] [u'schwab', u'happi', u'dockland', u'secur'] [u'second', u'flat', u'blaze', u'more'] [u'charg', u'iraqi', u'prison', u'abus'] [u'soorley', u'tell', u'darwin', u'mall'] [u'spain', u'discuss', u'iraq', u'resolut', u'berlin'] [u'specul', u'sailor', u'jump', u'ship'] [u'spray', u'restrict', u'combat', u'graffiti'] [u'star', u'forc', u'help', u'whyalla', u'sieg'] [u'strong', u'case', u'keep', u'terrorist', u'suspect', u'jail'] [u'student', u'stage', u'confer'] [u'sugar', u'industri', u'receiv', u'sweeten'] [u'support', u'cost', u'glen', u'inn', u'water'] [u'sydney', u'sewag', u'link', u'algal', u'bloom'] [u'wide', u'mistreat', u'iraqi', u'prison', u'report'] [u'tamworth', u'softbal', u'head', u'athen'] [u'teen', u'court', u'taxi', u'arm', u'robberi'] [u'telstra', u'call', u'charg'] [u'thai', u'troop', u'send', u'south', u'quell', u'unrest'] [u'time', u'warner', u'profit', u'exceed', u'forecast'] [u'tuqiri', u'tight', u'lip', u'code', u'switch', u'specul'] [u'fever', u'grip', u'iran'] [u'council', u'adopt', u'terrorist', u'arm'] [u'evacu', u'staff', u'ambon', u'fight', u'continu'] [u'union', u'boss', u'meet', u'mitsubishi', u'australia', u'manag'] [u'union', u'concern', u'labor', u'plan', u'undermin', u'femal'] [u'union', u'mitsubishi', u'meet', u'construct'] [u'expect', u'mandat', u'troop', u'iraq'] [u'forc', u'renew', u'strike', u'fallujah'] [u'forc', u'leav', u'fallujah'] [u'general', u'suspend', u'iraq', u'prison', u'abus'] [u'issu', u'travel', u'warn', u'israel'] [u'rate', u'fear', u'drag', u'share', u'dollar'] [u'rush', u'tank', u'iraq'] [u'vale', u'misdirect', u'letter', u'support', u'jone'] [u'vanston', u'sympathet', u'child', u'detaine'] [u'venus', u'find', u'form', u'poland'] [u'nurs', u'await', u'rule', u'work', u'ban'] [u'victoria', u'appoint', u'polic', u'ethic', u'head'] [u'violenc', u'threaten', u'grind', u'thai', u'travel', u'industri'] [u'visitor', u'centr', u'high', u'tourism', u'meet', u'agenda'] [u'team', u'instrument', u'credit', u'scam', u'verdict'] [u'wheat', u'grower', u'record', u'crop'] [u'widow', u'plead', u'calder', u'fund'] [u'windi', u'england', u'seri', u'washout'] [u'wind', u'chang', u'uncertainti', u'sweep'] [u'woman', u'die', u'snatch', u'incid'] [u'youth', u'move', u'adult', u'remand', u'centr'] [u'year', u'old', u'refus', u'bail', u'steal', u'charg'] [u'kick', u'start', u'public', u'transport', u'plan'] [u'goal', u'kick', u'race', u'wide', u'open'] [u'agassi', u'skip', u'clay', u'court', u'warm'] [u'agforc', u'welcom', u'lake', u'creek', u'plan'] [u'vow', u'protect', u'coastlin'] [u'qaeda', u'tape', u'threaten', u'deni', u'jordan', u'bomb', u'plot'] [u'annan', u'ask', u'arafat', u'gaza', u'withdraw', u'chanc'] [u'archer', u'lift', u'spirit', u'liverpool'] [u'attempt', u'murder', u'polic', u'offic'] [u'australia', u'welcom', u'mitsubishi', u'head'] [u'autopilot', u'take', u'captain', u'snooz'] [u'sunbeam', u'talk', u'continu'] [u'azing', u'sauer', u'lead', u'orlean'] [u'maker', u'find', u'profit', u'bag', u'bush'] [u'bank', u'routin', u'trade', u'govt'] [u'rais', u'expect'] [u'bashir', u'deni', u'terrorist', u'link'] [u'bashir', u'rearrest', u'support', u'riot'] [u'beatti', u'launch', u'laundri', u'escape', u'investig'] [u'beatti', u'push', u'labour', u'march'] [u'beckham', u'eye', u'return', u'england'] [u'beckham', u'renew', u'argentin', u'rivalri'] [u'bone', u'belong', u'local'] [u'critic', u'condit', u'har', u'race'] [u'defend', u'diesel', u'fuel'] [u'britain', u'strip', u'world', u'championship', u'relay', u'medal'] [u'british', u'polic', u'releas', u'terror', u'suspect'] [u'bruce', u'flood', u'proof', u'promis', u'sink'] [u'burmes', u'opposit', u'set', u'demand', u'nation'] [u'bush', u'cheney', u'answer', u'question'] [u'bush', u'cheney', u'face', u'inquiri'] [u'inform', u'display', u'form', u'transport'] [u'carer', u'welcom', u'backpack', u'childer'] [u'carr', u'suggest', u'overturn', u'film', u'decis'] [u'cassel', u'determin', u'fight', u'athen', u'spot'] [u'castrilli', u'concern', u'track', u'delay'] [u'chant', u'moot', u'staff', u'drug', u'train'] [u'chief', u'dramat'] [u'children', u'wont', u'automat', u'return', u'detent'] [u'china', u'confirm', u'sar', u'death'] [u'china', u'sign', u'north', u'west', u'shelf', u'deal'] [u'claim', u'energi', u'target', u'need', u'follow', u'packag'] [u'coach', u'ring', u'chang', u'ahead', u'round'] [u'communiti', u'servic', u'ticket', u'scalper'] [u'coron', u'tell', u'polic', u'discuss', u'warn'] [u'council', u'consid', u'deer', u'cull'] [u'council', u'know', u'origin', u'toxic', u'substanc'] [u'council', u'cold', u'shower', u'boyl'] [u'countrylink', u'review', u'anger', u'pension'] [u'court', u'dash', u'wahid', u'hop', u'presidenti', u'comeback'] [u'court', u'declar', u'snowi', u'mountain', u'shire', u'elect', u'void'] [u'court', u'tell', u'attack', u'show', u'remors'] [u'court', u'tell', u'cannib', u'claim', u'absurd'] [u'darwin', u'aim', u'tamworth', u'indigen', u'music'] [u'decis', u'snowi', u'elect', u'expect'] [u'develop', u'aim', u'altern', u'energi'] [u'diamond', u'face', u'fight', u'athen', u'spot'] [u'diamond', u'pledg', u'counter', u'appeal'] [u'england', u'tour', u'zimbabw'] [u'england', u'woodgat', u'euro'] [u'commend', u'film', u'backdown'] [u'europ', u'surviv', u'agenda'] [u'expans', u'fund', u'charl', u'darwin'] [u'fallujah', u'fight', u'continu', u'despit', u'deal'] [u'fiji', u'mourn', u'mara'] [u'filmmak', u'drop', u'blue', u'mountain', u'appeal'] [u'destroy', u'storag'] [u'flint', u'rule', u'investig'] [u'damag', u'lockyer', u'valley', u'crop'] [u'power', u'failur', u'hockey', u'seri'] [u'ford', u'smash', u'mcgee', u'junior', u'pursuit', u'world', u'record'] [u'question', u'alleg', u'heroin', u'syndic'] [u'offer', u'margin', u'econom', u'benefit'] [u'fund', u'estuari', u'improv'] [u'fossil', u'fling', u'fan', u'flock'] [u'golf', u'ball', u'injuri', u'damag', u'stand'] [u'googl', u'file', u'share', u'offer'] [u'govern', u'deni', u'gag', u'hospit', u'inquiri'] [u'govt', u'detain', u'children', u'despit', u'court', u'case'] [u'govt', u'expect', u'decis', u'nurs', u'disput'] [u'govt', u'environment', u'credenti', u'criticis'] [u'govt', u'urg', u'condemn', u'alleg', u'iraqi', u'prison', u'abus'] [u'govt', u'warn', u'perform', u'provid'] [u'grower', u'seek', u'support', u'appl', u'import', u'protest'] [u'high', u'court', u'hear', u'gill', u'case'] [u'hockeyroo', u'recov'] [u'hous', u'group', u'welcom', u'break', u'home'] [u'hous', u'loan', u'jump'] [u'howard', u'condemn', u'iraq', u'prison', u'alleg', u'treatment'] [u'howard', u'disput', u'intellig', u'concern'] [u'howard', u'find', u'synergi', u'newman'] [u'announc', u'share', u'buyback', u'detail'] [u'illawarra', u'seek', u'treatment', u'hunter'] [u'indonesian', u'general', u'jail', u'year'] [u'inquiri', u'seek', u'rail', u'line', u'closur'] [u'investor', u'switch', u'safe', u'stock'] [u'ipart', u'recommend', u'week', u'electr', u'rise'] [u'japan', u'award', u'tassi', u'fisheri', u'scientist'] [u'upstag', u'sorenstam', u'georgia'] [u'labor', u'say', u'trade', u'deal', u'benefit', u'sell'] [u'lack', u'univers', u'place', u'wast', u'talent'] [u'larsson', u'beef', u'sweden', u'attack', u'euro'] [u'latham', u'renew', u'call', u'inquiri'] [u'latham', u'tour', u'continu'] [u'leed', u'slap', u'price', u'smith'] [u'lippi', u'split', u'juventus'] [u'local', u'concern', u'yellabinna', u'mine'] [u'local', u'news', u'die'] [u'lung', u'cancer', u'patient', u'benefit', u'drug', u'studi'] [u'major', u'drug', u'confer', u'alic'] [u'maradona', u'leav', u'hospit', u'day', u'heart'] [u'mauresmo', u'battl', u'past', u'daniilidou', u'warsaw'] [u'mcgee', u'retain', u'lead', u'romandi', u'tour'] [u'mental', u'health', u'problem', u'longer', u'taboo', u'say'] [u'milan', u'touch', u'distanc', u'scudetto'] [u'mill', u'criticis', u'labor', u'intern'] [u'minist', u'plan', u'plea', u'mitsubishi', u'futur'] [u'minist', u'remain', u'silent', u'wineg', u'affair'] [u'misdirect', u'strengthen', u'inquiri'] [u'misiti', u'drop', u'swan', u'clash'] [u'mitsubishi', u'extraordinari', u'sharehold'] [u'fund', u'announc', u'tackl', u'drug', u'problem'] [u'mother', u'assault', u'leav', u'babi', u'epilepsi'] [u'mother', u'unhappi', u'vote', u'right'] [u'moya', u'barcelona', u'open'] [u'work', u'schooler', u'servic'] [u'murder', u'charg', u'husband'] [u'murray', u'hop', u'solid', u'attack'] [u'naracoort', u'traffic', u'microscop'] [u'face'] [u'gambl', u'rule', u'come', u'play'] [u'studi', u'ramp', u'benefit'] [u'untoward', u'jone', u'friendship', u'say'] [u'nrma', u'want', u'motorist', u'send', u'postcard'] [u'deni', u'gag', u'health', u'inquiri', u'wit'] [u'camel', u'industri'] [u'govt', u'accus', u'withhold', u'educ', u'centr'] [u'nurs', u'strike', u'escal'] [u'jail', u'euthanasia', u'campaign'] [u'olymp', u'kwon', u'team', u'choos'] [u'miss', u'placement', u'nelson'] [u'opposit', u'urg', u'inquiri', u'landfil'] [u'outback', u'muster', u'attract', u'drove', u'charact'] [u'oyster', u'judg', u'excel'] [u'packag', u'start', u'worri', u'suppli'] [u'panel', u'form', u'continu', u'deliveri', u'indigen'] [u'panther', u'hold', u'tiger'] [u'park', u'closur', u'protect', u'inhabit'] [u'pest', u'increas', u'ideal', u'condit'] [u'distanc', u'telstra', u'price', u'rise'] [u'welcom', u'high', u'court', u'detent', u'decis'] [u'polic', u'hop', u'catch', u'credit', u'card', u'fraudster'] [u'polic', u'issu', u'holiday', u'drive', u'warn'] [u'polic', u'promis', u'success', u'bashir', u'prosecut'] [u'polic', u'request', u'calm', u'bashir', u'arrest'] [u'pope', u'call', u'iraq', u'hostag', u'releas', u'thousand'] [u'popul', u'increas', u'pressur', u'hospit'] [u'porsch', u'jail', u'crime', u'spree'] [u'port', u'moresbi', u'resid', u'prepar', u'weekend', u'water'] [u'port', u'face', u'medium', u'terrorist', u'risk'] [u'posit', u'respons', u'sugar', u'packag'] [u'power', u'benefit', u'sugar', u'sweeten'] [u'primari', u'product', u'tip', u'rise'] [u'prison', u'boss', u'sue', u'fairfax', u'defam'] [u'qatar', u'jazeera', u'concern'] [u'interview', u'spit', u'incid'] [u'question', u'council', u'donat', u'generos'] [u'rain', u'herald', u'recoveri'] [u'ravensthorp', u'infrastructur', u'talk', u'continu'] [u'real', u'barca', u'lead', u'chase', u'nistelrooy'] [u'recidivist', u'driver', u'fin'] [u'record', u'loan', u'figur', u'renew', u'rate', u'specul'] [u'region', u'intellig', u'spot', u'say', u'howard'] [u'research', u'heart', u'stem', u'cell', u'beat'] [u'richmond', u'triumph', u'nail', u'biter'] [u'havret', u'lead', u'italian', u'open'] [u'santini', u'warn', u'french', u'english', u'fixat'] [u'schuettler', u'good', u'countryman', u'haa'] [u'scientist', u'believ', u'atlanti', u'cyprus'] [u'sculptur', u'featur', u'directori'] [u'seab', u'disput', u'lead', u'elect'] [u'search', u'miss', u'scale'] [u'secur', u'tight', u'jackson', u'return', u'court'] [u'sesam', u'street', u'head', u'afghanistan'] [u'sharehold', u'seek', u'director', u'remov'] [u'sister', u'stand', u'brother', u'unlaw', u'case'] [u'site', u'portugues', u'shipwreck', u'stay', u'secret'] [u'solicitor', u'jail', u'fraud', u'charg'] [u'spacecraft', u'leav', u'intern', u'space', u'station'] [u'space', u'station', u'trio', u'return', u'safe', u'earth'] [u'lanka', u'complet', u'whitewash', u'zimbabw'] [u'stock', u'price', u'slide', u'rat', u'specul'] [u'swift', u'good', u'thunderbird'] [u'nurs', u'sorri', u'plan', u'industri', u'action'] [u'taxi', u'robberi', u'imposs', u'prevent', u'bemros'] [u'teacher', u'hold', u'stop', u'work', u'meet', u'disput'] [u'teacher', u'urg', u'accept', u'rise'] [u'telstra', u'defend', u'price', u'increas'] [u'thai', u'extremist', u'warn', u'tourist', u'stay', u'away'] [u'thai', u'separatist', u'warn', u'foreign', u'stay', u'away'] [u'thorp', u'consid', u'zimbabw', u'boycott'] [u'charg', u'loui', u'vuitton', u'robberi'] [u'earli', u'discuss', u'mitsubishi', u'futur'] [u'toxic', u'substanc', u'near', u'school'] [u'tribun', u'boost', u'mayor', u'salari'] [u'tribun', u'overrul', u'discrimin', u'case'] [u'injur', u'explos'] [u'union', u'claim', u'understaf', u'help', u'jail', u'escap'] [u'warn', u'staff', u'thai', u'tourist', u'spot'] [u'consid', u'creat', u'peacekeep', u'forc'] [u'general', u'scrutini', u'iraqi', u'prison', u'case'] [u'hammer', u'thrower', u'drug'] [u'marin', u'withdraw', u'fallujah'] [u'station', u'boycott', u'troop', u'tribut'] [u'teacher', u'sign', u'deal'] [u'villeneuv', u'manag'] [u'welfar', u'group', u'consid', u'name', u'home', u'detent'] [u'western', u'power', u'fail', u'prevent', u'suppli', u'crisi'] [u'wheat', u'price', u'claim', u'worri', u'vail'] [u'window', u'fall', u'neglig', u'claim', u'dismiss'] [u'youth', u'trial', u'murder'] [u'zimbabw', u'guinea', u'discuss', u'return', u'mercenari'] [u'zimbabw', u'rebel', u'condit', u'return'] [u'zulu', u'parti', u'reject', u'seat', u'africa', u'cabinet'] [u'vietnames', u'boat', u'sink'] [u'kill', u'nepal', u'crash'] [u'kill', u'china', u'coal', u'blast'] [u'accid', u'spark', u'polic', u'warn'] [u'airlin', u'apologis', u'snooz', u'control', u'pilot'] [u'alic', u'consid', u'itiner', u'scheme'] [u'want', u'terror', u'list'] [u'april', u'bloodiest', u'month', u'iraq'] [u'arab', u'condemn', u'iraq', u'prison', u'photo'] [u'arsenal', u'play', u'dull', u'goalless', u'draw'] [u'auckland', u'shark', u'super', u'blue'] [u'australian', u'kill', u'saudi', u'attack'] [u'australia', u'respons', u'climat', u'chang', u'refuge'] [u'australia', u'roger', u'hit', u'derbyshir'] [u'penguin', u'build', u'bob', u'brand'] [u'beachgoer', u'urg', u'swim', u'winter', u'flag'] [u'blair', u'play', u'cool', u'dope', u'smoke', u'parti', u'report'] [u'bomber', u'enjoy', u'half', u'time', u'lead'] [u'bomber'] [u'bosnian', u'serb', u'reveal', u'srebrenica', u'grave'] [u'brazil', u'troop', u'tackl', u'shanti', u'town', u'unrest'] [u'brent', u'price', u'hit', u'year', u'plus', u'high'] [u'britian', u'probe', u'tortur', u'claim', u'iraq'] [u'brumbi', u'super', u'semi'] [u'bulldog', u'jump', u'roo', u'spirit', u'fightback'] [u'bush', u'acknowledg', u'tough', u'time', u'iraq'] [u'bush', u'blair', u'lament', u'abus', u'iraqi', u'prison'] [u'cancer', u'death', u'fear', u'spark', u'soil', u'test'] [u'chelsea', u'desailli', u'match'] [u'child', u'die', u'boat', u'collis'] [u'china', u'confirm', u'sar', u'case'] [u'club', u'disput', u'game', u'machin', u'charg'] [u'cofidi', u'announc', u'return', u'cycl'] [u'cooper', u'allow', u'fals', u'bill', u'crackdown'] [u'count', u'begin', u'tassi', u'upper', u'hous', u'seat'] [u'court', u'adjourn', u'mine', u'death', u'inquiri'] [u'courtney', u'love', u'plead', u'innoc', u'drug', u'charg', u'case'] [u'cowboy', u'surviv', u'eel', u'comeback'] [u'cowboy', u'withstand', u'eel', u'fightback'] [u'crusad', u'ensur', u'final', u'berth'] [u'daimlerchrysl', u'retain', u'stake', u'mitsubishi'] [u'dandenong', u'school', u'suspici'] [u'davydenko', u'end', u'schuettler', u'munich', u'hop'] [u'deadlin', u'construct'] [u'detent', u'order', u'spark', u'child', u'asylum', u'seeker', u'fear'] [u'docker', u'eagl', u'second'] [u'downer', u'welcom', u'expans'] [u'dragon', u'shark', u'break'] [u'drug', u'support', u'group', u'seek', u'famili', u'fund', u'boost'] [u'eadi', u'claim', u'sprint', u'crown'] [u'etoo', u'name', u'african', u'footbal', u'year'] [u'herald', u'expans'] [u'fallujah', u'give', u'iraqi', u'general', u'hero', u'welcom'] [u'fear', u'rule', u'chang', u'weaken', u'salmon', u'protect'] [u'figur', u'highlight'] [u'face', u'court', u'drug', u'import', u'charg'] [u'freightlink', u'track', u'meet', u'cargo', u'target'] [u'german', u'daili', u'welcom', u'state', u'nude', u'photo'] [u'googl', u'plan', u'foundat', u'target', u'global', u'ill'] [u'govt', u'say', u'near', u'million', u'nigerian'] [u'groom', u'china', u'master', u'lead'] [u'har', u'race', u'accid', u'investig'] [u'hockeyroo', u'hammer', u'india'] [u'homemad', u'landmin', u'kill', u'filipino', u'rebel'] [u'hornbi', u'bag', u'dragon', u'hammer', u'shark'] [u'hornbi', u'bag', u'dragon'] [u'hospit', u'bomb', u'hoax', u'disrupt', u'patient', u'care'] [u'housewif', u'partner', u'refus', u'bail', u'heroin', u'charg'] [u'hous', u'sophi', u'choic', u'asylum', u'seeker'] [u'howard', u'offer', u'sugar', u'pension', u'deal'] [u'inadequ', u'drug', u'research', u'leav', u'children', u'pain'] [u'independ', u'issu', u'underpin', u'caledonia', u'poll'] [u'intellig', u'cut', u'prompt', u'inquiri'] [u'jackson', u'plead', u'guilti', u'child', u'charg'] [u'japanes', u'favour', u'revis', u'pacifist', u'constitut'] [u'servic', u'touch', u'kununurra'] [u'kiwi', u'wrap', u'bond', u'cotton', u'wool'] [u'knight', u'surg', u'away', u'south'] [u'koppel', u'elev', u'fall', u'polit'] [u'labor', u'seek', u'flint', u'ministeri', u'scalp'] [u'larsson', u'sweden'] [u'lomu', u'lift', u'privat', u'life', u'violenc'] [u'long', u'stay', u'corps', u'fals', u'passport'] [u'maradona', u'leav', u'hospit', u'make', u'appear'] [u'marin', u'hand', u'fallujah', u'saddam', u'general'] [u'martin', u'track', u'elwick', u'seat'] [u'mauresmo', u'warsaw', u'venus', u'semi'] [u'mcgee', u'slip', u'romandi', u'stand'] [u'mediat', u'defus', u'wadey', u'standoff'] [u'medic', u'report', u'confirm', u'akhtar', u'injuri'] [u'mix', u'reaction', u'screen', u'dead'] [u'demand', u'italian', u'hostag', u'report'] [u'member', u'boost', u'trade', u'power'] [u'inquiri', u'need', u'milit', u'death', u'thailand'] [u'norway', u'envoy', u'bid', u'reviv', u'tamil', u'talk'] [u'meet', u'bypass'] [u'minist', u'resign', u'legisl'] [u'oppn', u'make', u'defenc', u'suppli', u'pledg'] [u'outback', u'gather', u'honour', u'william'] [u'pedal', u'power', u'back', u'bike', u'bus', u'plan'] [u'polic', u'address', u'forens', u'test', u'concern'] [u'polic', u'appeal', u'asian', u'communiti', u'murder', u'probe'] [u'polic', u'defend', u'action', u'sydney', u'street', u'protest'] [u'polic', u'sweet', u'solut', u'brawler'] [u'polic', u'halt', u'search', u'miss', u'bushwalk'] [u'polic', u'probe', u'jogger', u'death'] [u'polic', u'prosecutor', u'region', u'option'] [u'await', u'road', u'fund', u'boost'] [u'rain', u'mar', u'supercar', u'seri'] [u'rain', u'wash', u'play', u'orlean', u'classic'] [u'rann', u'seek', u'daimlerchrysl', u'assur'] [u'remot', u'school', u'win', u'film', u'award'] [u'reopen', u'bed', u'reliev', u'nurs', u'stress'] [u'report', u'lament', u'zimbabw', u'press', u'freedom', u'record'] [u'right', u'wing', u'colombian', u'paramilitari', u'strangl', u'report'] [u'rossi', u'smash', u'record', u'take', u'provision', u'pole'] [u'rust', u'sentenc', u'bouy', u'victim', u'support', u'group'] [u'ryle', u'long', u'await', u'return'] [u'saddam', u'soldier', u'patrol', u'fallujah'] [u'sadr', u'condemn', u'move', u'defus', u'fallujah'] [u'african', u'secur', u'worker', u'urg', u'snub', u'iraq', u'work'] [u'saint', u'lion', u'thriller'] [u'sceptic', u'fail', u'dampen', u'celebr'] [u'second', u'wash', u'milan', u'cours', u'get'] [u'serbia', u'ponder', u'case', u'miss', u'monkey'] [u'shave', u'polit', u'comeback', u'track'] [u'shave', u'vie', u'spot', u'liber', u'ticket'] [u'slowdown', u'melbourn', u'hous', u'market'] [u'snapshot', u'tasmanian', u'histori', u'collect', u'onlin'] [u'solar', u'school', u'teach', u'sustain', u'live'] [u'song', u'kane', u'share', u'lead', u'tesk'] [u'springborg', u'renew', u'conserv', u'parti', u'push'] [u'lucia', u'windi', u'england', u'clash'] [u'streak', u'rebel', u'zimbabw', u'team'] [u'strike', u'threaten', u'alitalia', u'bankruptci'] [u'swan', u'litmus', u'test', u'bomber', u'lloyd'] [u'tah', u'fight', u'final', u'place'] [u'tah', u'see', u'light', u'sydney'] [u'tasmanian', u'turn', u'earli', u'vote'] [u'poppi', u'farmer', u'struggl', u'current', u'climat'] [u'teach', u'offer', u'larg', u'unfair'] [u'kill', u'rome', u'hotel'] [u'tight', u'secur', u'dublin', u'enlarg'] [u'seed', u'tumbl', u'barcelona'] [u'trio', u'court', u'supermarket', u'arm', u'robberi'] [u'tunisia', u'extend', u'press', u'freedom', u'crackdown', u'report'] [u'back', u'haiti', u'peac', u'forc'] [u'union', u'target', u'govern', u'march'] [u'unit', u'kill', u'nistelrooy', u'kean', u'rumour'] [u'move', u'forward', u'syrian', u'sanction'] [u'seek', u'muslim', u'occupi', u'iraq'] [u'stock', u'fall', u'rate', u'fear'] [u'warn', u'nepali', u'terror', u'threat'] [u'vietnames', u'general', u'warn', u'doom', u'iraq'] [u'vietnames', u'offici', u'hold', u'littl', u'hope', u'miss'] [u'violenc', u'mar', u'effort', u'reclaim', u'street'] [u'voic', u'base'] [u'waratah', u'blow', u'otago'] [u'urg', u'tech', u'creativ'] [u'weather', u'heat', u'melbourn'] [u'western', u'kill', u'saudi', u'attack'] [u'white', u'hous', u'denounc', u'iraq', u'prison', u'abus'] [u'wit', u'seek', u'pedestrian', u'accid'] [u'worker', u'worldwid', u'stage', u'demonstr'] [u'aborigin', u'group', u'health', u'concern'] [u'agforc', u'seek', u'widen', u'howard', u'sugar', u'deal'] [u'alic', u'blackout', u'boost', u'power', u'inquiri', u'call'] [u'appal', u'tell', u'respect', u'geneva', u'convent'] [u'april', u'record', u'drop', u'internet'] [u'aussi', u'pair', u'share', u'china', u'master'] [u'australian', u'embrac', u'mobil', u'internet'] [u'australia', u'share', u'respons', u'iraqi', u'welfar'] [u'beckham', u'stay', u'madrid', u'report'] [u'bodi', u'search', u'fishermen'] [u'bodi', u'miss', u'german', u'secur', u'offic', u'discov'] [u'bright', u'domin', u'auckland'] [u'brush', u'fenc', u'fire', u'caus', u'havoc', u'adelaid'] [u'cabrera', u'set', u'pace', u'rain', u'delay', u'italian', u'open'] [u'cannon', u'hospitalis', u'night', u'club', u'attack'] [u'castro', u'vow', u'cuban', u'social', u'surviv', u'bush'] [u'cat', u'click', u'crow'] [u'childcar', u'union', u'seek', u'budget', u'commit'] [u'clan', u'member', u'club', u'disput', u'presid'] [u'corbel', u'issu', u'nurs', u'threat'] [u'costello', u'promis', u'fund', u'scientif', u'research'] [u'costello', u'promis', u'spend', u'tax'] [u'look', u'lure', u'member'] [u'demon', u'blue', u'long', u'break'] [u'demon', u'demolish', u'carlton'] [u'depor', u'deal', u'heavi', u'blow', u'real', u'titl', u'hop'] [u'disabl', u'fund', u'welcom', u'relief', u'carer'] [u'dissid', u'director', u'wont', u'seek', u'elect'] [u'owner', u'protest', u'inner', u'sydney'] [u'dog', u'lead', u'tabl', u'clash'] [u'dog', u'snatch', u'stay'] [u'elli', u'lead', u'rain', u'hit', u'orlean', u'classic'] [u'england', u'defenc', u'crisi', u'woodgat', u'rule'] [u'entir', u'famili'] [u'ervin', u'chigumbura', u'boost', u'zimbabw', u'streak'] [u'estat', u'chase', u'agent', u'warn', u'fin'] [u'timor', u'cooper', u'wiranto', u'elect'] [u'celebr', u'dublin'] [u'expo', u'nurs'] [u'feder', u'roddick', u'give', u'tough', u'draw', u'rome'] [u'govt', u'talk', u'action', u'child', u'protect'] [u'fellow', u'worker', u'kill', u'australian', u'saudi', u'attack'] [u'fittler', u'say', u'goodby'] [u'fittler', u'say', u'season'] [u'foreign', u'contractor', u'kill', u'bomb', u'attack'] [u'champion', u'gaudio', u'face', u'robredo', u'final'] [u'soldier', u'kill', u'attack'] [u'freak', u'snowfal', u'blanket', u'indian', u'kashmir'] [u'french', u'polic', u'detain', u'turkish', u'head', u'pari', u'mosqu'] [u'futur', u'high', u'school', u'open', u'debat'] [u'genet', u'sampl', u'pinpoint', u'caus', u'asthma'] [u'green', u'appeal', u'uniform', u'cannabi', u'law'] [u'gunmen', u'kill', u'settler', u'famili', u'gaza', u'vote'] [u'haeggman', u'surg', u'second', u'place', u'milan'] [u'hannay', u'clear', u'cayless'] [u'india', u'ban', u'public', u'smoke'] [u'indonesian', u'polic', u'clash', u'bashir', u'support'] [u'indonesia', u'recal', u'polic', u'chief', u'protest', u'raid'] [u'insur', u'blunder', u'ground', u'easyjet', u'flight'] [u'intel', u'fund', u'boost', u'terrorist', u'kill', u'australian'] [u'internet', u'busi', u'guilti', u'mislead'] [u'iraq', u'kidnapp', u'wont', u'harm', u'italian', u'hostag'] [u'irish', u'pay', u'ultim', u'price', u'expans'] [u'isra', u'troop', u'kill', u'palestinian', u'ahead', u'gaza'] [u'jagger', u'lennon', u'offspr', u'love'] [u'kangaroo', u'seek', u'sponsor', u'plastic'] [u'krige', u'ban', u'barbarian', u'tour'] [u'leicest', u'citi', u'beat', u'newcastl'] [u'likud', u'vote', u'gaza', u'pullout', u'plan'] [u'lie', u'media', u'deal', u'zimbabw'] [u'mcgee', u'romandi', u'content'] [u'meaning', u'effort', u'need', u'restart', u'talk'] [u'mear', u'claim', u'gold'] [u'meteor', u'light', u'perth'] [u'militari', u'intellig', u'encourag', u'iraqi', u'abus'] [u'miss', u'mother', u'urg', u'return', u'hospit'] [u'fund', u'target', u'black', u'spot'] [u'iraqi', u'alli', u'squeaki', u'clean', u'general'] [u'law', u'combat', u'abus', u'britain'] [u'worm', u'infect', u'million', u'comput', u'expert'] [u'north', u'approv', u'land', u'thank', u'south'] [u'norway', u'envoy', u'meet', u'lankan', u'presid', u'peac'] [u'opposit', u'leader', u'chang', u'allegi'] [u'vote', u'allegi'] [u'polic', u'give', u'power', u'reveal', u'paedophil', u'detail'] [u'polic', u'search', u'miss', u'crabber'] [u'nurs', u'monitor', u'work', u'ban'] [u'giant', u'evacu', u'staff', u'saudi', u'port'] [u'fisherman', u'dead', u'miss', u'dinghi', u'hit'] [u'pakistan', u'demand', u'compens', u'stag', u'kill'] [u'passeng', u'train', u'return', u'stratford', u'year'] [u'polic', u'prepar', u'retriev', u'sink', u'boat'] [u'polic', u'protestor', u'clash', u'parti'] [u'port', u'hedland', u'mine', u'accid', u'kill'] [u'port', u'surviv', u'magpi', u'scare'] [u'port', u'surviv', u'pie', u'scare'] [u'prefer', u'decid', u'apsley', u'victor'] [u'racq', u'find', u'tugun', u'bypass', u'talk', u'encourag'] [u'rain', u'help', u'rossi', u'claim', u'pole', u'stoner'] [u'ranger', u'warm', u'celtic', u'rout'] [u'birth', u'centr', u'suffer', u'lack', u'servic'] [u'red', u'basement', u'battl'] [u'retir', u'south', u'australian', u'benefit', u'pilot'] [u'rivaldo', u'impress', u'bolton'] [u'roddick', u'tenni', u'star', u'evacu', u'rome'] [u'saint', u'sneak', u'home', u'amid', u'kick', u'controversi'] [u'sarwan', u'smith', u'blast', u'windi', u'england'] [u'saudi', u'princ', u'vow', u'crush', u'islamist', u'extremist'] [u'scaffold', u'help', u'indigen', u'children', u'learn'] [u'search', u'continu', u'vietnam', u'ferri', u'toll', u'rise'] [u'search', u'fail', u'miss'] [u'search', u'uncov', u'dingi', u'belong', u'miss'] [u'offend', u'law', u'spark', u'vigilant', u'fear'] [u'sherwin', u'miss', u'citi', u'origin', u'select'] [u'song', u'sing', u'happi', u'birthday', u'georgia', u'tesk'] [u'steal', u'toxic', u'chemic', u'recov', u'hobart'] [u'stoner', u'let', u'victori', u'slip', u'spain'] [u'sydney', u'cityrail', u'grind', u'halt'] [u'sydney', u'train', u'servic', u'return', u'normal'] [u'sport', u'ground', u'test', u'posit'] [u'teach', u'condit', u'angst', u'domin', u'confer'] [u'tire', u'mandela', u'reduc', u'public', u'appear', u'paper'] [u'tower', u'net', u'hockeyroo', u'smash', u'india'] [u'tradit', u'alter', u'militari', u'particip'] [u'kill', u'strong', u'quak', u'jolt', u'taiwan'] [u'press', u'rage', u'alleg', u'iraqi', u'prison', u'abus'] [u'troop', u'cast', u'doubt', u'iraq', u'abus', u'photo'] [u'unbeaten', u'smarti', u'jone', u'captur', u'kentucki', u'derbi'] [u'fail', u'iraq', u'syrian', u'presid'] [u'hostag', u'escap', u'iraqi', u'captor'] [u'list', u'sadist', u'iraqi', u'prison', u'abus', u'report'] [u'vandal', u'attack', u'spark', u'busway', u'upgrad'] [u'venus', u'cruis', u'warsaw', u'final'] [u'verkerk', u'set', u'munich', u'final', u'davydenko'] [u'govt', u'accus', u'overspend'] [u'virus', u'strike', u'telstra', u'servic'] [u'walter', u'champion', u'chang'] [u'warrior', u'hold', u'storm'] [u'warrior', u'lead', u'storm', u'auckland'] [u'west', u'palac', u'stake', u'claim', u'play', u'off'] [u'zurich', u'parad', u'turn', u'violent'] [u'budget', u'surplus', u'mean', u'cut', u'access', u'econom'] [u'accc', u'speak', u'qanta', u'merger'] [u'milan', u'italian', u'leagu', u'titl'] [u'adelaid', u'polic', u'injur', u'stakeout'] [u'clean', u'region', u'litter', u'woe'] [u'adult', u'soon', u'grow', u'replac', u'teeth'] [u'afghan', u'blast', u'accid'] [u'afghanistan', u'tanker', u'blast', u'kill'] [u'alleg', u'mastermind', u'djindjic', u'kill'] [u'alstonvill', u'crash', u'claim', u'teen', u'life'] [u'seek', u'long', u'term', u'care', u'scheme'] [u'continu'] [u'attack', u'kill', u'soldier', u'iraq'] [u'auction', u'sale', u'point', u'hous', u'slow'] [u'australia', u'call', u'engag'] [u'australian', u'press', u'freedom', u'criticis'] [u'australian', u'soldier', u'leav', u'darwin', u'iraq'] [u'author', u'probe', u'port', u'hedland', u'industri', u'death'] [u'ballarat', u'host', u'forestri', u'gather'] [u'ballarat', u'soprano', u'hit', u'high', u'note', u'scholarship'] [u'barcaldin', u'get', u'labour'] [u'beatti', u'condemn', u'fund', u'halt', u'environment'] [u'bedsid', u'hear', u'woman', u'charg', u'offic', u'blaze'] [u'berlin', u'magic', u'talisman', u'mythic'] [u'blacklock', u'cross', u'citi', u'countri', u'clash'] [u'blaze', u'unlik', u'hurt', u'onesteel', u'oper'] [u'breast', u'feed', u'cut', u'infant', u'death', u'studi'] [u'break', u'hill', u'aim', u'cash', u'cultur', u'tourism'] [u'nation', u'zero', u'blood', u'alcohol', u'limit'] [u'camera', u'detect', u'fewer', u'south', u'west', u'speedster'] [u'cane', u'farmer', u'pois', u'accept', u'sweeten'] [u'maker', u'team', u'safeti', u'research'] [u'charg', u'lay', u'park', u'anim', u'escap'] [u'communiti', u'meet', u'fight', u'atsic', u'scrap'] [u'controversi', u'rofe', u'resign'] [u'costello', u'tax', u'middl', u'incom', u'earner', u'actu'] [u'council', u'adopt', u'clarenc', u'valley', u'flood', u'report'] [u'council', u'consid', u'skill', u'migrant', u'fund'] [u'council', u'urg', u'patienc', u'wage', u'negoti'] [u'crow', u'leav', u'soul', u'search', u'fifth', u'loss'] [u'cuban', u'ambassador', u'ask', u'leav', u'mexico', u'peru'] [u'consid', u'drop', u'tradit'] [u'davydenko', u'claim', u'munich', u'crown'] [u'drove', u'visitor', u'flock', u'outback', u'muster'] [u'dunfermlin', u'ruin', u'celtic', u'titl', u'parti'] [u'eagl', u'lynch', u'arrest', u'perth', u'chase'] [u'earli', u'snow', u'fall', u'prompt', u'tourist', u'influx'] [u'elli', u'retain', u'lead', u'weather', u'orlean'] [u'escap', u'hostag', u'head', u'germani', u'medic', u'check'] [u'dictat', u'lead', u'panama', u'poll'] [u'farmer', u'hope', u'drench'] [u'feder', u'minist', u'back', u'qlds', u'tugun', u'solut'] [u'govt', u'pull', u'fund', u'rainforest', u'reef', u'research'] [u'ferri', u'delay', u'damag', u'rough', u'sea'] [u'claim', u'histor', u'hospit'] [u'crew', u'pull', u'safeti', u'inquest', u'tell'] [u'investig', u'probe', u'onesteel', u'blaze'] [u'fijian', u'lay', u'rest'] [u'fittler', u'say', u'goodby'] [u'fittler', u'farewel', u'steal', u'limelight'] [u'flesh', u'eat', u'diseas', u'hit', u'canada'] [u'policeman', u'jail', u'theft'] [u'saddam', u'general', u'charg', u'myer'] [u'frustrat', u'mount', u'lack', u'diseas', u'vaccin'] [u'gather', u'consid', u'appl', u'import'] [u'germani', u'fine', u'apprentic', u'brothel'] [u'gibernau', u'win', u'home'] [u'goal', u'umpir', u'spotlight'] [u'govt', u'urg', u'upgrad', u'hous', u'indigen'] [u'govt', u'tri', u'lure', u'fisher', u'renew', u'offer'] [u'grain', u'grower', u'look', u'heaven', u'rain'] [u'hall', u'fame', u'honour', u'outback', u'women'] [u'hamilton', u'retain', u'tour', u'romandi', u'mcgee'] [u'harrison', u'levi', u'hear', u'tuesday'] [u'harrison', u'levi', u'hear', u'tomorrow'] [u'hepat', u'includ', u'revamp', u'school', u'vaccin'] [u'high', u'tech', u'facil', u'robertson'] [u'hope', u'award', u'boost', u'traine', u'number'] [u'hospit', u'cleaner', u'consid', u'escal', u'industri'] [u'hospit', u'emerg', u'dept', u'normal'] [u'hospit', u'surgeri', u'centr', u'upgrad'] [u'hous', u'market', u'boost', u'salari'] [u'hunt', u'warehous', u'bandit'] [u'indian', u'acquit', u'murder', u'deport'] [u'indian', u'rooki', u'hold', u'nerv', u'china', u'master'] [u'industri', u'campaign', u'target', u'jetstar', u'safeti'] [u'inmat', u'scheme', u'promis', u'communiti', u'benefit'] [u'iraqi', u'general', u'say', u'foreign', u'fighter', u'fallujah'] [u'packag', u'roll', u'canberra', u'school'] [u'solid', u'growth'] [u'katherin', u'tindal', u'rainfal', u'record'] [u'labor', u'urg', u'voter', u'fall', u'bribe'] [u'land', u'indigen', u'tourism'] [u'lara', u'lead', u'windi', u'second', u'straight'] [u'leagu', u'journalist', u'frilingo', u'die', u'sydney'] [u'libyan', u'leader', u'make', u'seri', u'debut'] [u'liverpool', u'crucial', u'point', u'euro', u'hunt'] [u'lynch', u'suspend', u'fin', u'drink', u'drive', u'charg'] [u'mandela', u'wife', u'die'] [u'map', u'centr', u'worker', u'consid', u'strike'] [u'mason', u'origin', u'payback', u'trail'] [u'matthew', u'repeat', u'ruck', u'rule', u'review'] [u'mcdowel', u'havret', u'lead', u'italian', u'open', u'go'] [u'meat', u'industri', u'disappoint', u'trade', u'deal'] [u'melbourn', u'polic', u'offic', u'clear', u'road', u'rage'] [u'million', u'infect', u'internet', u'worm', u'expert'] [u'cold', u'weather', u'store'] [u'iraqi', u'tortur', u'claim', u'come', u'editor'] [u'paramilitari', u'send', u'indonesia', u'troubl'] [u'motorcyclist', u'die', u'site', u'crash'] [u'upbeat', u'mildura', u'place'] [u'elect', u'board', u'member'] [u'nato', u'meet', u'ahead', u'despit', u'foil', u'bomb', u'plot'] [u'face', u'olymp', u'softbal', u'team'] [u'polish', u'reject', u'iraq', u'troop', u'withdraw'] [u'vision', u'shire', u'group'] [u'bail', u'stab', u'accus'] [u'excus', u'mick', u'pie', u'crash'] [u'resolut', u'mental', u'health', u'disput'] [u'author', u'defend', u'action', u'bushfir', u'inquest'] [u'govt', u'derail', u'millennium', u'train', u'purchas'] [u'waterfront', u'lesse', u'face', u'rent', u'slug'] [u'nurs', u'stand', u'alleg', u'patient', u'abus'] [u'ogilvi', u'fire', u'flawless', u'lead', u'orlean'] [u'kill', u'hurt', u'clash', u'near', u'najaf', u'wit'] [u'organis', u'final', u'touch', u'agfest', u'prepar'] [u'osullivan', u'bounc', u'lead', u'world', u'snooker', u'final'] [u'paddl', u'steamer', u'recreat', u'produc', u'ship', u'histori'] [u'pair', u'weekend', u'road', u'crash'] [u'perth', u'student', u'protest', u'reform'] [u'peru', u'brace', u'protest', u'mayor', u'lynch'] [u'philippin', u'militari', u'warn', u'possibl', u'violenc'] [u'philippin', u'rosal', u'claim', u'lpga', u'titl'] [u'pie', u'stand', u'firm', u'train', u'grind', u'stoush'] [u'plan', u'higher', u'phone', u'charg', u'ring', u'alarm', u'bell'] [u'visit', u'franc'] [u'poki', u'hike', u'cost', u'job', u'report'] [u'polic', u'crackdown', u'net', u'drug', u'haul'] [u'polic', u'maintain', u'search', u'sink', u'boat'] [u'polic', u'probe', u'dementia', u'patient', u'abus', u'claim'] [u'polic', u'target', u'cross', u'border', u'drug'] [u'polish', u'resign'] [u'polit', u'brew', u'hospit', u'bed'] [u'public', u'welcom', u'train', u'track'] [u'hail', u'interst', u'freight', u'link'] [u'lib', u'vote', u'uniti'] [u'union', u'celebr', u'membership', u'increas'] [u'rain', u'king', u'gibernau', u'win', u'spain'] [u'rann', u'appeal', u'children', u'save'] [u'ratu', u'mara', u'funer', u'near', u'final', u'stage'] [u'robredo', u'edg', u'gruell', u'barcelona', u'final'] [u'rough', u'ride', u'put', u'maroochi', u'mayor', u'hospit'] [u'saint', u'pair', u'video', u'charg'] [u'saint', u'underlin', u'premiership', u'credenti'] [u'saudi', u'attack', u'iraq', u'relat', u'ambassador'] [u'scholarship', u'target', u'declin', u'male', u'teacher'] [u'schwarzenegg', u'back', u'sharon', u'gaza', u'pull', u'plan'] [u'scientist', u'say', u'need', u'qualifi', u'technician'] [u'search', u'continu', u'miss', u'boati'] [u'separ', u'charg', u'earn', u'cayless', u'week'] [u'sharon', u'pledg', u'stay', u'despit', u'setback'] [u'sharon', u'parti', u'reject', u'gaza', u'plan'] [u'sharon', u'vow', u'gaza', u'retreat', u'despit', u'parti', u'vote'] [u'shrek', u'pull', u'wool', u'clark', u'eye'] [u'singapor', u'test', u'weapon', u'woomera'] [u'soup', u'kitchen', u'help', u'needi', u'resid'] [u'spanish', u'trio', u'fin', u'illeg', u'fish'] [u'spirit', u'tasmania', u'delay', u'rough', u'weather'] [u'lanka', u'pile', u'run', u'zimbabw'] [u'studi', u'focus', u'health', u'waterway'] [u'hire', u'expert', u'assess', u'takeov'] [u'talk', u'continu', u'bluescop', u'enterpris'] [u'maintain', u'econom', u'momentum', u'lennon'] [u'teacher', u'boost'] [u'teen', u'success', u'appeal', u'assault', u'sentenc'] [u'tehran', u'say', u'take', u'saddam', u'place', u'iraq'] [u'telco', u'question', u'higher', u'telstra', u'charg'] [u'telstra', u'blame', u'worm', u'internet', u'problem'] [u'terror', u'group', u'know', u'presenc', u'australia'] [u'thailand', u'bolster', u'troop', u'south'] [u'thailand', u'send', u'troop', u'troubl', u'south'] [u'chines', u'kill', u'pakistan', u'blast'] [u'toddler', u'rescu', u'hous', u'blaze'] [u'turkish', u'polic', u'foil', u'nato', u'summit', u'bomb', u'plot'] [u'forc', u'help', u'maintain', u'secur', u'iraq'] [u'union', u'group', u'highlight', u'labour', u'import'] [u'union', u'group', u'turn', u'drove', u'labour'] [u'warn', u'corrupt', u'employe', u'deal'] [u'armi', u'know', u'prison', u'abus', u'report'] [u'armi', u'reprimand', u'iraq', u'prison', u'abus'] [u'british', u'isra', u'olymp', u'athlet', u'hour'] [u'valencia', u'open', u'point', u'lead', u'spain'] [u'budget', u'expect', u'target', u'home', u'buyer'] [u'govt', u'call', u'boost', u'hospit', u'fund'] [u'victorian', u'nurs', u'union', u'back', u'propos'] [u'viduka', u'blow', u'leed'] [u'walker', u'cop', u'fine', u'booz', u'brisban', u'arrest'] [u'premier', u'ask', u'execut', u'interven'] [u'warn', u'fire', u'hampshir', u'elliott', u'lead', u'glamorgan'] [u'introduc', u'work', u'hour', u'code'] [u'surf', u'women', u'leav', u'media', u'wake'] [u'west', u'bank', u'explos', u'kill'] [u'wheatbelt', u'join', u'boy', u'educ', u'project'] [u'william', u'crush', u'kuznetsova', u'warsaw'] [u'work', u'condit', u'domin', u'remot', u'teacher', u'gather'] [u'yacht', u'damag', u'rock', u'mishap'] [u'yorta', u'yorta', u'celebr', u'sign', u'histor', u'agreement'] [u'zimbabw', u'cricket', u'offici', u'punch', u'white'] [u'develop', u'plan', u'bargara', u'esplanad'] [u'cut', u'project', u'budget', u'surplus'] [u'reject', u'male', u'teach', u'scholarship', u'plan'] [u'pay', u'tribut', u'footbal', u'women'] [u'agforc', u'confer', u'consid', u'trade', u'issu'] [u'alic', u'hospit', u'fund', u'boost'] [u'page', u'evid', u'file', u'british'] [u'anderson', u'highway', u'fund', u'agreement'] [u'annan', u'plan', u'timor', u'mission', u'extens'] [u'arab', u'neighbour', u'refus', u'send', u'troop', u'iraq'] [u'aristocrat', u'sharehold', u'reject', u'ducker', u'elect'] [u'armi', u'bolster', u'time', u'train'] [u'arthur', u'rome', u'spadea', u'shock', u'schuettler'] [u'audit', u'shed', u'light', u'citi', u'crime', u'reduct'] [u'australian', u'forc', u'chief', u'criticis', u'iraqi', u'prison'] [u'australian', u'journalist', u'honour', u'washington'] [u'australian', u'ignor', u'heart', u'diseas', u'warn', u'studi'] [u'bankstown', u'airport', u'empt', u'safeti', u'report'] [u'berlusconi', u'want', u'itali', u'media', u'blackout', u'hostag'] [u'crowd', u'enjoy', u'labour', u'barcaldin'] [u'gate', u'fin', u'merger', u'violat'] [u'biospher', u'undergo', u'chang'] [u'blood', u'see', u'alleg', u'murder', u'weapon', u'court', u'hear'] [u'blue', u'tier', u'protest', u'expect', u'arrest'] [u'box', u'australia', u'geal', u'athen', u'hop'] [u'broadband', u'boost', u'benefit', u'region'] [u'bronco', u'throw', u'appeal', u'lifelin'] [u'bulldog', u'johnson', u'strike', u'charg'] [u'bushfir', u'rage', u'southern', u'california'] [u'bush', u'push', u'speedi', u'iraq', u'abus', u'inquiri'] [u'busi', u'face', u'consum', u'affair', u'crackdown'] [u'busi', u'time', u'ahead', u'legisl', u'council', u'member'] [u'bypass', u'impass', u'breakthrough', u'welcom', u'news'] [u'budget', u'fund', u'shepparton', u'road'] [u'fluorid', u'combat', u'local', u'tooth', u'decay'] [u'stormwat', u'pollut', u'trap', u'protect', u'fish'] [u'go', u'bolster', u'blood', u'stock'] [u'carr', u'introduc', u'nation', u'park', u'film'] [u'cayless', u'accept', u'week'] [u'chechen', u'clash', u'kill', u'leader', u'secur', u'guard'] [u'chemo', u'patient', u'think', u'go', u'court'] [u'chief', u'justic', u'special', u'bond'] [u'child', u'asylum', u'seeker', u'case', u'return', u'court'] [u'china', u'confirm', u'sar', u'case'] [u'coach', u'hit', u'olymp', u'box', u'select'] [u'compani', u'predict', u'rich', u'cooper', u'basin', u'resourc'] [u'concern', u'mersey', u'hospit', u'close'] [u'condemn', u'ranieri', u'seek', u'final', u'repriev'] [u'controversi', u'artwork', u'remov', u'melbourn'] [u'costello', u'set', u'scene', u'famili', u'friend', u'budget'] [u'council', u'await', u'tram', u'decis'] [u'councillor', u'want', u'multi', u'purpos', u'centr', u'detail'] [u'council', u'present', u'heritag', u'award'] [u'consid', u'cut', u'royal', u'tie'] [u'danger', u'stifl', u'onesteel', u'blaze', u'probe'] [u'darwin', u'erad', u'feral', u'pigeon'] [u'deadlin', u'loom', u'escarp', u'plan', u'feedback'] [u'democrat', u'law', u'restrict', u'winegrow', u'hard'] [u'democrat', u'oppos', u'free', u'trade', u'deal'] [u'deportivo', u'fli', u'high', u'ahead', u'histor', u'porto', u'clash'] [u'doctor', u'warn', u'diabet', u'rise', u'indigen'] [u'doubt', u'cast', u'work', u'hour', u'plan'] [u'doubt', u'rais', u'intersect', u'upgrad'] [u'dough', u'lure', u'simpson', u'work'] [u'downer', u'want', u'maintain', u'east', u'timor', u'presenc'] [u'ask', u'review', u'surfer', u'bail', u'condit'] [u'drink', u'drive', u'jacob', u'wait', u'hawthorn', u'penalti'] [u'driver', u'die', u'tandarra', u'truck', u'crash'] [u'effort', u'control', u'grow', u'wild', u'woe'] [u'effort', u'save', u'rail', u'line', u'track'] [u'employ', u'accus', u'abus', u'casual'] [u'environ', u'dept', u'probe', u'south', u'east', u'blaze'] [u'evil', u'call', u'like', u'declar', u'annan'] [u'fear', u'air', u'reef', u'research', u'centr', u'fund'] [u'final', u'accus', u'snowtown', u'murder', u'go', u'trial'] [u'fish', u'strategi', u'go'] [u'iraqi', u'kill', u'najaf', u'clash'] [u'flight', u'attend', u'jail', u'drug', u'smuggl'] [u'diplomat', u'criticis', u'bush', u'east', u'polici'] [u'muslim', u'detaine', u'alleg', u'abus'] [u'star', u'wall', u'street', u'banker', u'guilti'] [u'forum', u'focus', u'indigen', u'famili', u'violenc'] [u'run'] [u'free', u'trade', u'deal', u'rais', u'profil', u'mine'] [u'fund', u'boost', u'expect', u'emerg', u'servic'] [u'gather', u'tell', u'fireblight', u'contain'] [u'govt', u'accus', u'plagiar', u'islam', u'jihad'] [u'govt', u'black', u'list', u'kurdish', u'group'] [u'govt', u'consid', u'polit', u'donat', u'chang'] [u'govt', u'criticis', u'dpps', u'departur'] [u'govt', u'punish', u'commerci', u'research'] [u'hackett', u'pass', u'word', u'wisdom'] [u'health', u'educ', u'winner', u'budget'] [u'heusk', u'deni', u'rape', u'alleg'] [u'high', u'court', u'hear', u'council', u'damag', u'case'] [u'hill', u'ambush'] [u'quit', u'chairman', u'director'] [u'increas', u'rebat', u'improv', u'bulk', u'bill', u'rate'] [u'india', u'seri', u'bigger', u'ash'] [u'industri', u'drama', u'continu', u'despit', u'nurs', u'deal'] [u'industri', u'feel', u'yorta', u'yorta', u'deal', u'impact'] [u'injur', u'mayor', u'spark', u'rodeo', u'safeti', u'warn'] [u'intern', u'olymp', u'boss', u'call', u'torch'] [u'israel', u'seal', u'arafat', u'routin', u'arrest'] [u'jackson', u'brief', u'seiz', u'evid'] [u'jail', u'cuban', u'journalist', u'award', u'press', u'freedom', u'prize'] [u'jewish', u'outcri', u'prompt', u'melbourn', u'artwork', u'review'] [u'johnson', u'chase', u'olymp', u'mark'] [u'kookaburra', u'name', u'europ', u'trip'] [u'kosmina', u'unsur', u'sign', u'mori'] [u'labor', u'ask', u'flint', u'fair'] [u'labor', u'criticis', u'budget', u'famili', u'plan'] [u'lack', u'rain', u'put', u'tourism', u'resort', u'plan', u'hold'] [u'larkham', u'remain', u'wallabi'] [u'launceston', u'nurs', u'strike', u'work', u'condit'] [u'lawyer', u'seek', u'time', u'prepar', u'bakhtiyari', u'case'] [u'lawyer', u'head'] [u'leed', u'releg', u'sale'] [u'leighton', u'plead', u'guilti', u'fatal', u'accid', u'charg'] [u'lennon', u'declin', u'green', u'assist', u'fund'] [u'lockyer', u'origin'] [u'lunar', u'eclips'] [u'lynch', u'suspend', u'fin', u'drink', u'drive', u'charg'] [u'malaysia', u'thailand', u'meet', u'secur', u'talk'] [u'accus', u'incest', u'court', u'case', u'adjourn'] [u'face', u'court', u'partner', u'assault'] [u'marriott', u'bomb', u'suspect', u'renounc', u'violenc'] [u'mayor', u'upset', u'waterfront', u'land', u'decis'] [u'mcdowel', u'win', u'italian', u'open', u'play'] [u'meet', u'hear', u'disabl', u'care', u'concern'] [u'menegazzo', u'famili', u'stanbrok', u'beef', u'empir'] [u'miner', u'sand', u'firm', u'closer', u'secur', u'financ'] [u'site', u'crash', u'treat', u'road', u'accid'] [u'mine', u'compani', u'fin', u'accid'] [u'monaco', u'summit', u'shape', u'formula', u'one', u'futur'] [u'monkey', u'farmer', u'battl', u'bamboo', u'territori'] [u'fund', u'seek', u'stamp', u'problem'] [u'reprimand', u'issu', u'iraq', u'prison', u'abus'] [u'passeng', u'accept', u'ferri', u'delay'] [u'highlight', u'student', u'number', u'worri'] [u'question', u'hair', u'salon', u'liquor', u'licens', u'rule'] [u'mundin', u'shrug', u'ankl', u'injuri'] [u'museum', u'ponder', u'whale', u'remain'] [u'nativ', u'titl', u'take', u'shine', u'opal', u'industri'] [u'nelson', u'stand', u'male', u'teacher', u'plan'] [u'coastal', u'patrol', u'work', u'soon'] [u'equip', u'help', u'boost', u'fight', u'terror'] [u'exclus', u'roll', u'royc', u'mark', u'centenari'] [u'local', u'govt', u'elect', u'cost', u'ratepay'] [u'rule', u'target', u'neighbour', u'hell'] [u'korea', u'denounc', u'qaeda', u'report'] [u'sight', u'supermarket', u'protest'] [u'polic', u'investig', u'fatal', u'rail', u'accid'] [u'nurs', u'work', u'ban', u'longer', u'effect', u'minist'] [u'obes', u'cost', u'billion', u'year', u'studi'] [u'kill', u'train', u'derail'] [u'pair', u'court', u'home', u'invas'] [u'pakistan', u'arrest', u'bomb', u'attack'] [u'peru', u'coca', u'grower', u'march', u'lima'] [u'petit', u'back', u'hospit', u'matern', u'servic'] [u'pharmaci', u'survey', u'scrap', u'inform', u'leak'] [u'philippin', u'shock', u'grisli', u'murder', u'foreign'] [u'picasso', u'tip', u'fetch', u'world', u'record', u'price'] [u'polic', u'accus', u'point', u'babi'] [u'polic', u'miss', u'woman'] [u'polic', u'happi', u'weekend', u'driver'] [u'polic', u'link', u'melbourn', u'underworld', u'kill'] [u'polic', u'look', u'public', u'clue', u'miss', u'hobart'] [u'polic', u'offic', u'hood', u'saga', u'resign'] [u'polic', u'probe', u'armidal', u'theft'] [u'polic', u'seek', u'teen', u'rape', u'clue'] [u'public', u'invit', u'statehood', u'committe'] [u'public', u'urg', u'help', u'miss', u'woman'] [u'qanta', u'summon', u'appear', u'bali', u'hear'] [u'raaf', u'plane', u'forc', u'return', u'base'] [u'rail', u'decis', u'wont', u'hurt', u'hunter', u'costa'] [u'ralli', u'snap', u'wall', u'street', u'slump'] [u'ronni', u'rocket', u'snooker', u'titl'] [u'rural', u'recoveri', u'expect', u'improv', u'balanc'] [u'saint', u'player', u'suspend', u'club', u'fin'] [u'saint', u'slap', u'fine'] [u'saudi', u'attack', u'push', u'year', u'high'] [u'school', u'rebuild', u'vandalis', u'wall'] [u'scienc', u'fund', u'decis', u'devast', u'academ'] [u'seab', u'disput', u'threaten', u'toppl', u'govt'] [u'seal', u'killer', u'face', u'fin'] [u'shire', u'air', u'coastal', u'author', u'concern'] [u'shire', u'seek', u'rail', u'line', u'reopen'] [u'shoalwat', u'tip', u'militari', u'role'] [u'singapor', u'plan', u'cricket', u'tournament', u'involv'] [u'skywest', u'consid', u'eastern', u'link'] [u'soni', u'buy', u'right', u'polanski', u'oliv'] [u'south', u'east', u'host', u'innov', u'gather'] [u'specul', u'air', u'meteor', u'crash', u'site'] [u'stamp', u'duti', u'chang', u'tip', u'help', u'home', u'buyer'] [u'stanhop', u'apologis', u'phone'] [u'georg', u'help', u'dive'] [u'georg', u'record', u'substanti', u'profit'] [u'student', u'union', u'defend', u'feder', u'elect', u'plan'] [u'support', u'mexican', u'lobster', u'accredit'] [u'surat', u'defi', u'rural', u'downturn'] [u'tax', u'part', u'blame', u'hous', u'slowdown'] [u'teen', u'send', u'train', u'centr', u'machet', u'attack'] [u'telstra', u'stand', u'higher', u'charg'] [u'test', u'failur', u'rais', u'beef', u'safeti', u'question'] [u'thaiday', u'fin', u'miss', u'waratah', u'train'] [u'canadian', u'kidnap', u'iraq'] [u'tribun'] [u'tiger', u'helicopt', u'time', u'budget', u'armi', u'say'] [u'tilba', u'host', u'sportsground', u'meet'] [u'earli', u'gaug', u'sasser', u'impact'] [u'torch', u'resolv'] [u'trade', u'deficit', u'blow', u'factor'] [u'train', u'builder', u'deni', u'millennium', u'price', u'rise'] [u'truss', u'keep', u'live', u'export', u'saudi', u'arabia'] [u'tuialii', u'butt', u'earn', u'week'] [u'turkish', u'court', u'charg', u'nato', u'bomb', u'plan', u'suspect'] [u'palestinian', u'kill', u'gaza', u'strip'] [u'polic', u'sack', u'alleg', u'insur', u'fraud'] [u'recruit', u'plane', u'spotter', u'terror', u'watch'] [u'investig', u'call', u'inquiri', u'fallujah'] [u'appoint', u'iraqi', u'general', u'fallujah'] [u'australia', u'sign', u'free', u'trade', u'deal', u'month'] [u'contractor', u'unawar', u'iraqi', u'prison', u'abus'] [u'govern', u'secret', u'report'] [u'priest', u'charg', u'nun', u'ritual', u'kill'] [u'budget', u'provid', u'health', u'educ', u'boost'] [u'govt', u'urg', u'boost', u'librari', u'fund'] [u'vijay', u'reign', u'singh', u'rain'] [u'wagga', u'polic', u'drug', u'law'] [u'monument', u'honour', u'dutch', u'indonesia', u'contribut'] [u'waterbird', u'number', u'freefal'] [u'build', u'kart', u'surviv', u'mitsubishi', u'boss'] [u'derbi', u'derbi'] [u'woman', u'charg', u'offic', u'blaze', u'remand', u'custodi'] [u'woman', u'say', u'wit', u'patient', u'mistreat'] [u'zimbabw', u'forc', u'draw', u'lanka'] [u'academ', u'test', u'schoolyard', u'bulli', u'link', u'racism'] [u'face', u'rape', u'drug', u'claim'] [u'franc', u'merg', u'creat', u'world', u'leader'] [u'littl', u'piec', u'home', u'wed', u'gift', u'mari'] [u'alleg', u'peopl', u'smuggler', u'remain', u'custodi'] [u'anungu', u'pitjantjatjara', u'elect', u'long', u'overdu'] [u'concern', u'athen', u'bomb', u'blast'] [u'arsenal', u'game', u'unbeaten', u'season'] [u'asbesto', u'class', u'action', u'consid', u'unlik'] [u'associ', u'aim', u'boost', u'prospect', u'appeal'] [u'atsic', u'commission', u'fear', u'test', u'case', u'fund', u'risk'] [u'olymp', u'plan', u'track', u'despit', u'athen'] [u'aussi', u'centr', u'nomin', u'draft'] [u'australia', u'consid', u'solomon', u'request'] [u'australia', u'draw', u'trip', u'thailand'] [u'australia', u'entitl', u'troop', u'pullout', u'debat', u'hill'] [u'australia', u'learn', u'drug', u'program'] [u'australian', u'appeal', u'singapor', u'death', u'penalti'] [u'australia', u'top', u'child', u'leukaemia', u'death', u'studi'] [u'campaign', u'train', u'contract', u'cancel'] [u'bali', u'warn', u'claim', u'need', u'clarif', u'keelti'] [u'bathurst', u'council', u'save', u'hour', u'race'] [u'seek', u'bougainvill', u'sell', u'cooper'] [u'beatti', u'play', u'boonah', u'nativ', u'titl'] [u'demand', u'lake', u'creek', u'job'] [u'biota', u'sue', u'drug', u'giant', u'lack', u'support'] [u'blast', u'affect', u'game', u'secur', u'greec'] [u'blaze', u'spark', u'earlier', u'galleri', u'open'] [u'boutiqu', u'tippl', u'benefit', u'break'] [u'british', u'govt', u'vow', u'investig', u'iraqi', u'abus'] [u'bronco', u'dismiss', u'casino', u'misconduct', u'report'] [u'budget', u'reaction', u'posit'] [u'bushfir', u'group', u'assess', u'rail', u'line', u'blaze', u'risk'] [u'cadbi', u'dismiss', u'independ', u'claim'] [u'campbelltown', u'patient', u'assault', u'minor', u'polic'] [u'capriati', u'cruis', u'german', u'open'] [u'carer', u'plead', u'guilti', u'steal', u'money'] [u'caretak', u'dwell', u'nonsens', u'green'] [u'carlton', u'confirm', u'drug', u'probe'] [u'carr', u'say', u'sorri', u'miss', u'wag', u'aborigin'] [u'cassel', u'outrag', u'appeal', u'snub'] [u'child', u'abus', u'concern', u'servic'] [u'child', u'protect', u'expert', u'say', u'face', u'crisi'] [u'china', u'earthquak', u'leav', u'thousand', u'homeless'] [u'clijster', u'play', u'french', u'open', u'hop'] [u'coalit', u'like', u'golkar', u'win', u'indonesian', u'vote'] [u'committe', u'recommend', u'penalti', u'drink', u'spike'] [u'coordin', u'boost', u'west', u'transport', u'option'] [u'corbel', u'cave', u'free', u'oxygen', u'demand'] [u'council', u'ask', u'speed', u'limit', u'review'] [u'council', u'say', u'manag', u'hous', u'worth', u'fix'] [u'council', u'worker', u'consid', u'drought', u'rise'] [u'court', u'allow', u'paedophil', u'right', u'drive', u'school', u'bus'] [u'court', u'rule', u'jail', u'term', u'chop', u'chop', u'sale'] [u'cuban', u'ambassador', u'quit', u'mexico'] [u'deputi', u'launch', u'industri', u'eidsvold'] [u'doubt', u'rais', u'paradis', u'fish', u'design'] [u'downer', u'heavi', u'timor', u'intellig', u'leak'] [u'drug', u'price', u'fear', u'domin', u'hear'] [u'bail', u'date', u'rape', u'drug', u'charg'] [u'egypt', u'deal', u'shore', u'wheat', u'export'] [u'electr', u'suppli', u'stabl', u'despit', u'boiler', u'shutdown'] [u'elliott', u'flame'] [u'england', u'test', u'stronger', u'squad', u'say'] [u'timor', u'deploy', u'finalis'] [u'evid', u'point', u'return', u'nino', u'weather'] [u'jockey', u'face', u'murder', u'charg'] [u'expert', u'recruit', u'cloud', u'seed', u'trial'] [u'explos', u'lay', u'port', u'georgia'] [u'team', u'agre', u'chang'] [u'father', u'facto', u'face', u'tortur', u'charg'] [u'ferrari', u'boss', u'todt', u'hand'] [u'babi', u'swim', u'star', u'susi'] [u'foreign', u'fighter', u'thailand', u'upris'] [u'forest', u'activist', u'hurt', u'communiti'] [u'mayor', u'concern', u'budget', u'talk'] [u'fourth', u'case', u'california', u'porn', u'industri'] [u'fund', u'rile', u'matur', u'employ', u'program'] [u'genet', u'test', u'produc', u'saviour', u'babi'] [u'govt', u'embarrass', u'follow', u'road', u'defeat'] [u'govt', u'unconvinc', u'driver', u'blue', u'card'] [u'green', u'help', u'princess', u'mari', u'pictur', u'home'] [u'group', u'oppos', u'town', u'water', u'fluorid', u'plan'] [u'guid', u'allow', u'beach', u'water', u'monitor'] [u'hawk', u'pair', u'fin', u'drink', u'drive'] [u'museum', u'releas', u'loss', u'detail'] [u'headscarf', u'controversi', u'refere', u'stand', u'asid'] [u'heart', u'diseas', u'australian', u'biggest', u'killer'] [u'hickey', u'back', u'coal', u'royalti', u'scheme'] [u'high', u'hop', u'eyr', u'peninsula', u'gold'] [u'hill', u'break', u'grind', u'tiger', u'lair'] [u'hospit', u'bed', u'reopen', u'nurs', u'accept', u'offer'] [u'hospit', u'settl', u'bungl', u'chemo', u'treatment'] [u'hospit', u'work', u'surgeri', u'backlog'] [u'hous', u'approv', u'fall'] [u'howard', u'confirm', u'qanta', u'approach', u'bali', u'warn'] [u'howard', u'disturb', u'athen', u'blast'] [u'howard', u'hop', u'sell', u'trade', u'deal', u'congress'] [u'howard', u'offer', u'pharmaci', u'regul', u'deal'] [u'iranian', u'attack', u'victim'] [u'iraqi', u'lodg', u'lawsuit', u'relat', u'death'] [u'iraqi', u'ralli', u'mistreat', u'prison'] [u'italian', u'televis', u'head', u'quit', u'anti', u'berlusconi'] [u'jacob', u'catch', u'drink', u'drive'] [u'japan', u'mull', u'afghanistan', u'deploy'] [u'japan', u'sit', u'demograph', u'time', u'bomb'] [u'judg', u'find', u'peopl', u'smuggl', u'sentenc', u'harsh'] [u'kangaroo', u'face', u'extinct', u'wildlif', u'group'] [u'keelti', u'unjust', u'criticis', u'bush', u'terror', u'chief'] [u'koperberg', u'offer', u'canberra', u'firestorm', u'predict'] [u'labor', u'broadcast', u'babi', u'care', u'plan'] [u'leed', u'boss', u'gray', u'keep', u'season', u'report'] [u'limit', u'support', u'hamper', u'phone', u'loyalti', u'scheme'] [u'lion', u'fine', u'appeal'] [u'local', u'govt', u'group', u'attack', u'councillor'] [u'lowest', u'pay', u'worker', u'record', u'rise'] [u'price', u'concern', u'lobster', u'council'] [u'face', u'court', u'indian', u'pacif', u'drug'] [u'plead', u'guilti', u'taxi', u'driver', u'stab', u'murder'] [u'maori', u'brave', u'foul', u'weather', u'protest', u'govern'] [u'marin', u'lift', u'fallujah', u'secur', u'cordon'] [u'maroochi', u'mayor', u'hospit'] [u'mask', u'reveal', u'earli', u'maya', u'civilis'] [u'mcleod', u'mileston', u'struggl', u'crow'] [u'milk', u'price', u'drop', u'concern', u'farmer'] [u'mitsubishi', u'delay', u'foley', u'meet'] [u'analysi', u'need', u'team', u'gallop'] [u'detail', u'seek', u'seal', u'death', u'probe'] [u'moruya', u'gather', u'discuss', u'centralis', u'hospit'] [u'mother', u'incorrect', u'advis', u'unborn', u'babi', u'die'] [u'mother', u'encourag', u'breastfe', u'prematur', u'babi'] [u'propos', u'kalgoorli', u'esper', u'train', u'trial'] [u'music', u'label', u'payout', u'unclaim', u'royalti'] [u'chairman', u'announc', u'retir'] [u'nation', u'forum', u'homeless', u'kick', u'today'] [u'nat', u'question', u'rail', u'closur'] [u'book', u'highlight', u'earli', u'attitud', u'aborigin'] [u'sale', u'continu', u'rise'] [u'director', u'chair', u'sharehold', u'meet'] [u'engin', u'earmark', u'region'] [u'money', u'fail', u'avert', u'teacher', u'strike'] [u'polic', u'recruit', u'help', u'eas', u'staff', u'crisi'] [u'rail', u'project', u'creat', u'job'] [u'korea', u'accept', u'disast'] [u'chang', u'iraq', u'troop', u'level', u'handov'] [u'confid', u'motion', u'threaten', u'govt'] [u'northern', u'hospit', u'fund', u'boost'] [u'norwich', u'crown', u'divis', u'champion'] [u'nowra', u'businessman', u'face', u'murder', u'trial'] [u'govern', u'portfolio', u'foreign', u'downer'] [u'nuclear', u'dump', u'claim', u'absurd', u'mcguaran'] [u'nurs', u'union', u'vote', u'strike', u'action'] [u'ogradi', u'cofidi', u'shake', u'drug', u'claim'] [u'optus', u'chief', u'call', u'time'] [u'owner', u'deni', u'disagr', u'stanbrok', u'sale'] [u'pacif', u'island', u'rule', u'expand', u'player'] [u'parapleg', u'win', u'payout', u'misdiagnosi'] [u'pastor', u'compani', u'upbeat', u'earn'] [u'philippin', u'elect', u'campaign', u'relat', u'peac'] [u'pipelin', u'solv', u'water', u'woe'] [u'player', u'stay', u'away', u'opal', u'olymp', u'train'] [u'inject', u'extra', u'agenc'] [u'say', u'flint', u'regret', u'jone', u'letter'] [u'polic', u'appeal', u'abduct', u'inform'] [u'polic', u'concern', u'miss', u'father'] [u'polic', u'deni', u'nemer', u'case', u'plea', u'bargain', u'chang'] [u'polic', u'interview', u'spit', u'incid'] [u'polic', u'investig', u'athen', u'blast'] [u'polic', u'seek', u'driver'] [u'polic', u'investig', u'budget', u'leak'] [u'port', u'augusta', u'polic', u'lament', u'staff', u'woe'] [u'port', u'kembla', u'copper', u'fin', u'worker', u'burn'] [u'porto', u'champion', u'leagu', u'final'] [u'prison', u'offic', u'tell', u'court', u'inmat', u'murder', u'boast'] [u'probe', u'launch', u'unauthoris', u'armi', u'exercis'] [u'public', u'face', u'water', u'price', u'slug'] [u'polic', u'interview', u'spit', u'incid'] [u'ranger', u'boss', u'mcleish', u'criticis', u'socceroo', u'skipper'] [u'region', u'victoria', u'get', u'budget', u'fund', u'brumbi'] [u'remot', u'area', u'hec', u'discount', u'caus', u'discont'] [u'rescu', u'chopper', u'fund', u'snub', u'creat', u'disappoint'] [u'research', u'find', u'way', u'bycatch'] [u'reserv', u'bank', u'leav', u'rat', u'hold'] [u'resourc', u'stock', u'extend', u'market', u'posit'] [u'review', u'polic', u'procedur', u'urg', u'boy'] [u'riverland', u'end', u'wait', u'polic'] [u'riverland', u'group', u'disabl', u'right', u'workshop'] [u'roddick', u'scud', u'rome', u'hewitt', u'brink'] [u'rodrigo', u'rato', u'name', u'chief'] [u'coupl', u'nation', u'forestri', u'award'] [u'school', u'share', u'revamp', u'fund'] [u'search', u'resum', u'miss'] [u'reflect', u'busi', u'storm', u'season'] [u'good', u'sew', u'bird'] [u'singh', u'close', u'world', u'number', u'wood'] [u'spirit', u'readi', u'sydney', u'return', u'journey'] [u'sugar', u'grower', u'seek', u'bioplast', u'busi'] [u'survey', u'find', u'fishi', u'seafood'] [u'taliban', u'claim', u'attack', u'troop', u'polic'] [u'taxi', u'compani', u'face', u'destin', u'fin'] [u'taylor', u'challeng', u'stephen', u'pilbara'] [u'teen', u'face', u'jail'] [u'terror', u'suspect', u'seek', u'jail', u'transfer'] [u'terrorist', u'suspect', u'face', u'death', u'threat', u'charg'] [u'timbercorp', u'sell', u'land', u'leas', u'deal'] [u'remain', u'quarantin', u'follow', u'bird', u'death'] [u'trip', u'show', u'invest', u'opportun'] [u'transport', u'group', u'air', u'concern', u'bill'] [u'treat', u'store', u'comet', u'lover'] [u'tree', u'clear', u'law', u'stymi', u'napranum', u'deal'] [u'aim', u'agenda', u'africa'] [u'shopper', u'drive', u'sweet', u'deal'] [u'ambassador', u'say', u'boost', u'industri'] [u'delay', u'releas', u'human', u'right', u'report'] [u'vickeri', u'rule', u'aust', u'tour'] [u'victorian', u'dairi', u'drive', u'rwanda'] [u'vietnames', u'cyber', u'dissid', u'jail', u'term', u'stand'] [u'virgin', u'consid', u'earli', u'morn', u'replac', u'flight'] [u'budget', u'leak', u'barnett'] [u'wadey', u'brawl', u'victim', u'quiet', u'court'] [u'wage', u'decis', u'cost', u'job', u'employ', u'group'] [u'govt', u'save', u'smoke', u'law'] [u'water', u'price', u'undergo', u'review'] [u'watson', u'confid', u'tiger', u'releas'] [u'waugh', u'oneil', u'freeman', u'carri', u'olymp', u'flame'] [u'west', u'coast', u'continu', u'rail', u'servic'] [u'wife', u'tell', u'polic', u'inquiri', u'stakeout'] [u'wildlif', u'centr', u'host', u'student', u'conserv'] [u'woman', u'jail', u'arson', u'attack', u'boyfriend', u'hous'] [u'wooli', u'petrol', u'station', u'tip', u'fuel', u'cheaper'] [u'workshop', u'target', u'child', u'sport', u'safeti'] [u'world', u'final', u'rematch', u'sell'] [u'zimbabw', u'cricket', u'peac', u'talk', u'break'] [u'zimbabw', u'tour', u'moral', u'wrong', u'alec', u'stewart'] [u'payout', u'help', u'fund', u'nickel', u'boost'] [u'order', u'independ', u'monitor', u'law'] [u'abduct', u'canadian', u'free', u'iraq'] [u'aborigin', u'fear', u'powerco', u'risk', u'heritag'] [u'accc', u'approv', u'price', u'rise', u'telstra'] [u'colleg', u'cours', u'unlik', u'resum', u'nat'] [u'agricultur', u'festiv', u'start', u'northern'] [u'albani', u'confid', u'budget', u'fund', u'boost'] [u'fear', u'terrorist', u'miss', u'crew'] [u'refer', u'telstra', u'price', u'hike', u'accc'] [u'anim', u'human', u'diseas', u'increas', u'expert', u'warn'] [u'appl', u'grower', u'import', u'fear'] [u'arrow', u'energi', u'signific'] [u'asic', u'retain', u'kennedi', u'hard', u'drive'] [u'babi', u'abandon', u'petrol', u'station'] [u'bank', u'england', u'rais', u'rat'] [u'barcaldin', u'school', u'generat', u'power', u'suppli'] [u'blind', u'adventur', u'claim', u'british', u'microlight', u'record'] [u'bodi', u'perth', u'school', u'ground'] [u'border', u'incurs', u'prompt', u'pakistan', u'govt', u'protest'] [u'britain', u'celebr', u'bannist', u'magic', u'mark'] [u'british', u'grill', u'editor', u'iraq', u'tortur'] [u'british', u'polic', u'australia', u'search', u'child'] [u'bronco', u'point', u'appeal', u'postpon'] [u'budget', u'talk', u'close', u'door'] [u'builder', u'group', u'look', u'stabl', u'rat'] [u'build', u'industri', u'expect', u'remain', u'buoyant'] [u'build', u'materi', u'test', u'terror', u'bomb'] [u'burni', u'builder', u'speak', u'admin', u'error'] [u'bush', u'promis', u'justic', u'abhorr', u'iraq', u'abus'] [u'safe', u'place', u'park', u'peopl'] [u'tugun', u'bypass', u'impact', u'statement', u'releas'] [u'bomb', u'target', u'baghdad', u'green', u'zone'] [u'carr', u'criticis', u'polic', u'bulldog', u'case', u'comment'] [u'clark', u'westwood', u'shape', u'british', u'master'] [u'clijster', u'admit', u'fear', u'play', u'athen', u'pull'] [u'cofidi', u'make', u'win', u'return'] [u'colli', u'urg', u'competit', u'power'] [u'collingwood', u'criticis', u'tribun', u'plan'] [u'compani', u'consid', u'stanbrok', u'properti', u'purchas'] [u'concern', u'rais', u'adolesc', u'steroid'] [u'confer', u'deleg', u'look', u'anti', u'substanc'] [u'connolli', u'warn', u'farmer', u'tone', u'antic'] [u'council', u'hop', u'wage'] [u'council', u'jimbour', u'amphitheatr'] [u'countri', u'perri'] [u'court', u'decid', u'retrial', u'gang', u'rapist'] [u'court', u'tell', u'bone', u'murder', u'accus'] [u'professor', u'award', u'human', u'movement', u'work'] [u'concern', u'audit', u'regul'] [u'davico', u'shatter', u'injuri', u'rule', u'appear'] [u'dealer', u'donat', u'collect', u'lifetim'] [u'deputi', u'hear', u'road', u'fund', u'wish', u'list'] [u'disney', u'block', u'michael', u'moor', u'doco'] [u'dissid', u'walter', u'resign', u'directorship'] [u'kidnap', u'wit', u'come', u'forward'] [u'drought', u'dri', u'kangaroo', u'meat', u'suppli'] [u'dubbo', u'assault', u'exam', u'nurs'] [u'eagl', u'lynch', u'lose', u'licenc'] [u'east', u'timor', u'expel', u'australian', u'activist'] [u'elder', u'woman', u'bash', u'home', u'invas'] [u'embattl', u'leader', u'leav', u'georgia', u'renegad', u'region'] [u'employ', u'group', u'question', u'wage', u'rise'] [u'extrem', u'concern', u'libyan', u'verdict'] [u'fairfax', u'chief', u'step'] [u'farmer', u'warn', u'dire', u'winter', u'ahead'] [u'fear', u'reef', u'fish', u'compo', u'rush'] [u'fear', u'wage', u'boost', u'hurt', u'farm', u'wine', u'industri'] [u'feder', u'fall', u'hewitt', u'fight', u'rome'] [u'govt', u'offer', u'mine', u'school', u'pledg'] [u'fight', u'flare', u'iraq'] [u'home', u'buyer', u'winner', u'budget'] [u'olympian', u'clark', u'declin', u'carri', u'torch'] [u'olympian', u'declin', u'torch', u'bearer', u'invit'] [u'geelong', u'mayor', u'push', u'bypass', u'campaign'] [u'georgia', u'clamp', u'provinc', u'protest'] [u'govt', u'aim', u'protect', u'gang', u'rape', u'victim'] [u'govt', u'derail', u'kalgoorli', u'esper', u'train', u'plan'] [u'govt', u'unveil', u'scienc', u'research', u'packag'] [u'greek', u'offici', u'shore', u'secur', u'support'] [u'green', u'group', u'angri', u'bioregion', u'report', u'snub'] [u'green', u'specul', u'hydro', u'loss'] [u'hefti', u'fine', u'equip', u'shark', u'pirat'] [u'high', u'enrol', u'prompt', u'tafe', u'upgrad'] [u'hill', u'expect', u'hero', u'welcom', u'troop'] [u'home', u'sack', u'worker', u'stay', u'open'] [u'huge', u'chicken', u'farm', u'get', u'despit', u'object'] [u'chief', u'launch', u'attack', u'blair'] [u'aliv', u'declar', u'dead', u'turkish', u'veteran'] [u'increas', u'cost', u'hurt', u'burrup', u'project'] [u'injuri', u'plagu', u'waratah', u'squad'] [u'inmat', u'tell', u'murder', u'accus', u'cannib', u'brag'] [u'investig', u'reveal', u'siphon', u'illeg'] [u'iraqi', u'famili', u'seek', u'compens', u'death'] [u'isra', u'warplan', u'missil', u'south', u'lebanon'] [u'jam', u'local', u'showdown'] [u'japanes', u'polic', u'raid', u'mitsubishi'] [u'judg', u'reject', u'martha', u'stewart', u'trial'] [u'juror', u'confus', u'disench'] [u'labor', u'support', u'arm', u'guard', u'athlet'] [u'landhold', u'warn', u'wild', u'woe'] [u'lawyer', u'crackdown', u'eas', u'migrat', u'case', u'load'] [u'leak', u'report', u'reignit', u'detent', u'centr', u'debat'] [u'leak', u'weight', u'detent', u'inquiri', u'call'] [u'leicest', u'citi', u'face', u'mele', u'charg'] [u'leonard', u'hang', u'boot'] [u'libya', u'execut', u'aid', u'spread', u'health', u'worker'] [u'licenc', u'delay', u'anger', u'communiti', u'broadcast'] [u'lifesav', u'club', u'concern', u'short', u'term', u'leas'] [u'lobster', u'price', u'extend', u'season'] [u'front', u'court', u'train', u'drug'] [u'maori', u'gather', u'seab', u'debat', u'begin'] [u'maradona', u'hospit'] [u'market', u'quiet', u'rat', u'decis'] [u'matern', u'support', u'group', u'welcom', u'midwiferi', u'servic'] [u'medic', u'journal', u'editor', u'question', u'necess'] [u'megawati', u'enlist', u'muslim', u'presidenti', u'run', u'mate'] [u'mental', u'health', u'cottag', u'face', u'uncertain', u'futur'] [u'minist', u'cast', u'doubt', u'saltwat', u'pipelin'] [u'minist', u'name', u'water', u'manag', u'author', u'member'] [u'monaco', u'champion', u'leagu', u'final'] [u'argu', u'hume', u'prison', u'site'] [u'mundin', u'lose', u'box', u'titl'] [u'mundin', u'lose', u'world', u'titl'] [u'nat', u'rais', u'doubt', u'kalbarri', u'power', u'cost'] [u'nat', u'want', u'budget', u'address', u'power', u'woe'] [u'photo', u'abus', u'iraqi', u'prison', u'report'] [u'news', u'corp', u'announc', u'profit'] [u'ngos', u'unit', u'crocodil', u'hunt'] [u'sight', u'mental', u'health', u'industri'] [u'norman', u'give', u'scott', u'caddi', u'bless'] [u'northern', u'consid', u'atsic', u'replac', u'plan'] [u'north', u'korea', u'tell', u'south', u'stop', u'exercis'] [u'nowra', u'plead', u'guilti', u'cabbi', u'murder'] [u'dismiss', u'casino', u'misconduct', u'claim'] [u'say', u'casino', u'misconduct', u'claim'] [u'oppn', u'highlight', u'grow', u'hospit', u'wait', u'list'] [u'pass', u'council', u'amalgam', u'job'] [u'vet', u'live', u'export', u'trade'] [u'nurs', u'tell', u'demand'] [u'nuttal', u'urg', u'mediat', u'mater', u'nurs', u'disput'] [u'opposit', u'criticis', u'high', u'brack'] [u'optus', u'help', u'singtel', u'tripl', u'profit'] [u'owingup', u'blaze', u'tip', u'heat'] [u'parent', u'award', u'overwhelm'] [u'patient', u'number', u'strain', u'mildura', u'hospit'] [u'peopl', u'approv', u'judg', u'archibald', u'pick'] [u'pharmacist', u'welcom', u'deregul', u'backdown'] [u'philippin', u'uncov', u'cell'] [u'picasso', u'paint', u'set', u'world', u'record', u'price'] [u'pilot', u'error', u'caus', u'crash', u'kill', u'macedonian'] [u'plane', u'passeng', u'highlight', u'miss', u'life', u'jacket'] [u'plan', u'put', u'focus', u'wildlif', u'park', u'conserv'] [u'player', u'pie', u'criticis', u'tribun', u'plan'] [u'hop', u'athen', u'guard', u'need'] [u'surpris', u'inclus', u'qaeda', u'list'] [u'policeman', u'deni', u'role', u'theft'] [u'polic', u'train', u'crash', u'victim'] [u'polic', u'search', u'miss', u'teenag'] [u'polic', u'wind', u'inconclus', u'fertilis', u'probe'] [u'poor', u'road', u'attract', u'adventur', u'tourist'] [u'privat', u'nurs', u'seek', u'futher', u'talk'] [u'product', u'begin', u'environment', u'friend'] [u'public', u'consult', u'refineri', u'expans'] [u'public', u'consid', u'propos'] [u'polic', u'defend', u'boy', u'imprison'] [u'rate', u'rise', u'includ', u'kiama', u'council', u'budget'] [u'resid', u'campaign', u'derbi', u'polic', u'boost'] [u'resid', u'protest', u'train', u'cut'] [u'resign', u'threat', u'ebb', u'seab', u'debat'] [u'retail', u'sale', u'regist', u'solid', u'growth'] [u'honour', u'local', u'firemen'] [u'ripper', u'put', u'famili', u'budget'] [u'riverina', u'council', u'fight', u'atsic', u'decis'] [u'robson', u'prepar', u'newcastl', u'massiv', u'task'] [u'rutherford', u'report', u'prompt', u'compens', u'law'] [u'schumach', u'wari', u'barcelona'] [u'scienc', u'fund', u'boost', u'australian', u'research', u'sale'] [u'scientist', u'fear', u'boost', u'diseas', u'risk'] [u'seafood', u'industri', u'want', u'generous', u'reef', u'packag'] [u'second', u'blast', u'rock', u'baghdad'] [u'shark', u'tuna', u'share', u'need', u'speed'] [u'sheep', u'diseas', u'monitor', u'go', u'high', u'tech'] [u'south', u'africa', u'crime', u'fight', u'gorilla', u'die'] [u'spain', u'free', u'accus', u'madrid', u'bomb'] [u'sport', u'complex', u'stakehold', u'meet'] [u'stanhop', u'surviv', u'confid', u'vote'] [u'subsidis', u'vaccin', u'urg', u'childhood', u'diseas'] [u'sugar', u'chief', u'predict', u'nich', u'market'] [u'swimmer', u'discuss', u'olymp', u'safeti', u'concern'] [u'sydney', u'brother', u'face', u'rape', u'trial'] [u'sydney', u'hospit', u'blunder', u'expos'] [u'talk', u'avert', u'sydney', u'strike'] [u'host', u'supercar'] [u'terror', u'chang', u'prosecut'] [u'terror', u'test', u'go', u'bang'] [u'thousand', u'turn', u'warrnambool', u'race'] [u'kill', u'afghan', u'violenc'] [u'tidi', u'town', u'judg', u'begin'] [u'tini', u'tuvalu', u'plan', u'parti', u'biggest', u'build'] [u'tour', u'oper', u'warn', u'market', u'scam'] [u'trade', u'deal', u'music', u'apra', u'ear'] [u'trescothick', u'steer', u'england', u'seri', u'draw'] [u'tripl', u'murder', u'releas', u'prison'] [u'troop', u'arrest', u'hama', u'leader', u'dawn', u'raid'] [u'name', u'agenc', u'boss'] [u'academ', u'await', u'enterpris', u'talk'] [u'program', u'face', u'uncertain', u'futur'] [u'staff', u'want', u'delay', u'fee', u'decis'] [u'nato', u'criticis', u'kosovo', u'prostitut'] [u'apologis', u'iraqi', u'prison', u'abus'] [u'engin', u'hold', u'hostag', u'iraq', u'report'] [u'guardsman', u'investig', u'nake', u'soldier', u'photo'] [u'soldier', u'kill', u'oper', u'sadr'] [u'verstappen', u'test', u'jordan'] [u'veteran', u'firefight', u'recount', u'canberra', u'drama'] [u'victorian', u'trauma', u'plan', u'cut', u'patient', u'death', u'rate'] [u'waff', u'angri', u'rat', u'freez'] [u'waff', u'welcom', u'egypt', u'grain', u'deal'] [u'wage', u'boost', u'help', u'remot', u'worker'] [u'water', u'polo', u'match', u'showdown', u'champion'] [u'westpac', u'announc', u'record', u'half', u'year', u'profit'] [u'westpac', u'leighton', u'share', u'profit', u'result'] [u'westpac', u'leighton', u'weigh', u'market'] [u'hop', u'tiger', u'caddi', u'bring', u'luck'] [u'wildlif', u'group', u'cook', u'honorari', u'titl', u'defiant'] [u'wladimir', u'klitschko', u'go', u'legal', u'offens'] [u'wood', u'tri', u'track', u'wachovia'] [u'writer', u'scribbl', u'kibbl'] [u'urg', u'ramsar', u'list', u'north', u'west', u'wetland'] [u'your', u'troubl', u'tell', u'miss', u'teen'] [u'zidan', u'worst', u'form', u'year'] [u'zimbabw', u'rebel', u'leav', u'test', u'squad'] [u'polic', u'face', u'bashir', u'protest', u'charg'] [u'begin', u'underground', u'broadcast'] [u'senat', u'back', u'graphic', u'cigarett', u'warn'] [u'age', u'care', u'industri', u'want', u'fee', u'doubl'] [u'airport', u'secur', u'review', u'knife', u'incid'] [u'ambul', u'staff', u'clear', u'toddler', u'death'] [u'america', u'bid', u'friend', u'farewel'] [u'analyst', u'doubt', u'benefit', u'deploy'] [u'applebi', u'trail', u'triplett', u'north', u'carolina'] [u'rule', u'lockyer'] [u'provid', u'incent', u'bid', u'team'] [u'aussi', u'lashko', u'make', u'fourth', u'olymp', u'team'] [u'aust', u'high', u'commiss', u'pakistan', u'reduc', u'servic'] [u'baddaginni', u'put', u'toxic', u'dump', u'concern', u'minist'] [u'bank', u'delay', u'branch', u'open'] [u'beadman', u'race'] [u'bendigo', u'hous', u'market', u'tip', u'remain', u'strong'] [u'pastor', u'compani', u'celebr', u'centenari'] [u'lade', u'offer', u'reward', u'assassin'] [u'bolton', u'wait', u'rivaldo'] [u'bomber', u'drop', u'veteran', u'mercuri'] [u'bomber', u'lead', u'long', u'break'] [u'bomber', u'retain', u'whitten'] [u'box', u'mayor', u'draw', u'line', u'bull', u'rid'] [u'breakthrough', u'skate', u'park', u'talk'] [u'british', u'distributor', u'back', u'moor', u'film'] [u'british', u'govt', u'appoint'] [u'budget', u'ignor', u'power', u'woe', u'nat'] [u'budget', u'leak', u'give', u'away', u'nurs', u'home', u'rise'] [u'budget', u'matern', u'plan', u'littl', u'late'] [u'budget', u'spark', u'mix', u'goldfield', u'reaction'] [u'bush', u'sorri', u'iraqi', u'prison', u'abus'] [u'button', u'content', u'victori'] [u'caloundra', u'join', u'team', u'rescu', u'challeng'] [u'cannon', u'name'] [u'cassel', u'lodg', u'appeal'] [u'cathol', u'school', u'teacher', u'ralli', u'work'] [u'celtic', u'histori', u'firm', u'rival'] [u'chang', u'chelsea', u'champion', u'leagu', u'defeat'] [u'child', u'pornograph', u'give', u'year', u'jail', u'term'] [u'classic', u'strike', u'right', u'note', u'itiner'] [u'clijster', u'pull', u'berlin'] [u'coolah', u'shire', u'vote', u'merger'] [u'coron', u'rule', u'leski', u'inquest', u'continu'] [u'council', u'protest', u'group', u'vote'] [u'council', u'highlight', u'million', u'dollar', u'save'] [u'council', u'feedback', u'draft', u'budget'] [u'countri', u'origin'] [u'cronj', u'plane', u'crash', u'part', u'human', u'error'] [u'crow', u'desper', u'port', u'streak'] [u'crusad', u'stun', u'explos', u'umaga'] [u'csiro', u'welcom', u'fund', u'deal'] [u'cwealth', u'urg', u'share', u'cost', u'upgrad', u'prison'] [u'deek', u'get', u'child', u'health', u'program', u'run'] [u'dissid', u'director', u'walk', u'away', u'payout'] [u'driver', u'liabl', u'boy', u'injuri'] [u'drought', u'persist', u'despit', u'predict'] [u'earli', u'hummingbird', u'fossil', u'germani'] [u'east', u'timor', u'polic', u'arrest', u'australian', u'journalist'] [u'energi', u'giant', u'strike', u'swap', u'deal'] [u'england', u'cricket', u'allow', u'player', u'boycott', u'zimbabw'] [u'esplanad', u'ceremoni', u'commemor', u'coral', u'battl'] [u'expert', u'predict', u'strong', u'hunter', u'growth'] [u'expert', u'want', u'gulf', u'bird', u'habitat', u'protect'] [u'rule', u'chang', u'timescal', u'optimist'] [u'facilit', u'seek', u'address', u'immigr', u'issu'] [u'father', u'year', u'jail', u'abus'] [u'assist', u'sumatra', u'bomb', u'investig'] [u'firefight', u'contain', u'wadbilliga', u'blaze'] [u'footbal', u'flasher', u'ban', u'year'] [u'policeman', u'await', u'sentenc', u'drug', u'charg'] [u'fraser', u'group', u'seek', u'environ', u'fund'] [u'fugit', u'return', u'jail', u'year'] [u'funer', u'hold', u'rockhampton', u'murder', u'victim'] [u'gallop', u'chastis', u'narrow', u'mind', u'busi'] [u'giro', u'ban', u'fail', u'blood', u'test'] [u'gold', u'coast', u'consid', u'buyer', u'market'] [u'goondiwindi', u'get', u'indoor', u'sport', u'centr'] [u'govern', u'begin', u'budget', u'sell'] [u'govt', u'accus', u'withhold', u'famili', u'packag'] [u'govt', u'aid', u'starvat', u'sudan', u'refuge'] [u'govt', u'face', u'battl', u'drug'] [u'grassroot', u'packag', u'fight', u'crime'] [u'greec', u'seeth', u'bomb', u'reaction'] [u'green', u'group', u'back', u'hous', u'plan', u'withdraw'] [u'green', u'group', u'prepar', u'east', u'court', u'battl'] [u'green', u'deal', u'forc', u'rail', u'closur'] [u'group', u'worri', u'grow', u'domest', u'violenc'] [u'gunn', u'stand', u'firm', u'environment', u'record'] [u'health', u'check', u'scheme', u'target', u'indigen', u'youth'] [u'hewitt', u'make', u'earli', u'rome', u'exit'] [u'hezbollah', u'isra', u'troop', u'trade'] [u'hill', u'warn', u'water', u'cut'] [u'howard', u'stay', u'tight', u'lip', u'budget', u'leak'] [u'hydrogen', u'power', u'silent', u'scooter'] [u'idea', u'seek', u'promot', u'outback', u'highway'] [u'ikin', u'surpris', u'comeback'] [u'indigen', u'alcohol', u'plan', u'fatal', u'flaw'] [u'indonesian', u'admit', u'sexual', u'abus'] [u'inter', u'owner', u'demand', u'fourth', u'place'] [u'interst', u'steward', u'rule', u'race', u'protest'] [u'iran', u'come', u'clean', u'atom', u'plan'] [u'iraq', u'prison', u'abus', u'widespread'] [u'isra', u'kill', u'firefight', u'near', u'lebanes', u'border'] [u'jone', u'deni', u'involv', u'dope'] [u'stock', u'debut', u'issu', u'price'] [u'karachi', u'mosqu', u'bomb', u'kill'] [u'kimmorley', u'chanc', u'stuart'] [u'koizumi', u'alli', u'quit', u'pension', u'scandal'] [u'labor', u'attack', u'budget', u'bribe'] [u'land', u'council', u'coordin', u'join', u'catchment', u'board'] [u'liber', u'parti', u'expel', u'punchbowl', u'brawler'] [u'lion', u'repriev'] [u'lobster', u'committe', u'discuss', u'effici', u'chang'] [u'local', u'council', u'seek', u'town', u'plan', u'chang'] [u'local', u'govt', u'group', u'welcom', u'rural', u'road', u'fund'] [u'love', u'chang', u'testosteron'] [u'lucindal', u'school', u'win', u'wine', u'award'] [u'jail', u'sadist', u'slaveri'] [u'walk', u'help', u'fall', u'yacht'] [u'maradona', u'respond', u'treatment', u'doctor'] [u'market', u'lower', u'despit', u'late', u'ralli'] [u'marseill', u'newcastl', u'uefa', u'dream'] [u'mar', u'scientist', u'excit', u'latest'] [u'mayor', u'unhappi', u'race', u'chief', u'nonstart'] [u'meet', u'aim', u'avert', u'driver', u'strike'] [u'mental', u'health', u'worker', u'step', u'industri', u'campaign'] [u'migrant', u'like', u'develop', u'schizophrenia'] [u'minist', u'defend', u'jail', u'plan', u'process'] [u'minist', u'quiet', u'juvenil', u'justic', u'fund'] [u'miss', u'teen', u'canberra'] [u'moora', u'welcom', u'hospit', u'fund'] [u'moseley', u'british', u'master', u'content'] [u'riverland', u'resid', u'oppos', u'telstra', u'sale', u'lee'] [u'motorist', u'litr'] [u'mottram', u'win', u'minut', u'mile'] [u'call', u'milk', u'boycott'] [u'lament', u'rail', u'loss'] [u'urg', u'dairi', u'collect', u'bargain'] [u'gambier', u'resid', u'carri', u'olymp', u'torch'] [u'cancel', u'sharehold', u'meet'] [u'share', u'boardroom', u'battl', u'end'] [u'natur', u'disast', u'affect', u'chines'] [u'nepal', u'quit', u'face', u'protest'] [u'commerci', u'develop', u'approv', u'gungahlin'] [u'dossier', u'back', u'iraq', u'abus', u'claim', u'report'] [u'nobl', u'name', u'coach'] [u'north', u'korea', u'agre', u'militari', u'talk'] [u'north', u'south', u'korea', u'hold', u'militari', u'talk'] [u'olymp', u'torch', u'relay', u'bypass', u'athlet'] [u'pacif', u'boss', u'tell', u'jone', u'read', u'rule', u'book'] [u'pakistani', u'landlord', u'allow', u'rape', u'women', u'payback'] [u'rise', u'offer', u'staff'] [u'photon', u'fund', u'cut', u'risk', u'busi', u'deal'] [u'photon', u'fund', u'cut', u'like', u'stand'] [u'picasso', u'remain', u'strong', u'sothebi', u'record'] [u'polic', u'chief', u'voic', u'respect', u'superintend'] [u'polic', u'confirm', u'saint', u'clear'] [u'polic', u'investig', u'second', u'home', u'invas'] [u'polic', u'reject', u'polit', u'critic', u'bulldog', u'rape'] [u'polic', u'seek', u'wit', u'attempt', u'abduct'] [u'polic', u'identifi', u'victim'] [u'popular', u'putin', u'begin', u'second', u'term'] [u'postal', u'worker', u'strike'] [u'prison', u'harass', u'claim', u'send', u'ombudsman'] [u'public', u'servant', u'recal', u'stanhop', u'call'] [u'punter', u'prepar', u'burrandowan', u'picnic', u'race'] [u'polic', u'charg', u'drug', u'oper'] [u'rabbitoh', u'secur', u'macdougal'] [u'race', u'chief', u'get', u'steeplechas', u'futur'] [u'race', u'council', u'request', u'integr', u'rule'] [u'race', u'industri', u'honour', u'legend', u'jockey'] [u'ralf', u'say', u'futur', u'secur'] [u'rate', u'cap', u'legisl', u'allow', u'variat'] [u'rat', u'tip', u'stay', u'flat', u'hous', u'slow'] [u'reclaim', u'water', u'scheme', u'eas', u'catchment', u'pressur'] [u'refuge', u'advoc', u'address', u'albani', u'meet'] [u'rental', u'support', u'scheme', u'expand'] [u'reserv', u'bank', u'say', u'home', u'market', u'cool'] [u'resourc', u'sector', u'tell', u'continu', u'labour', u'shortag'] [u'reward', u'offer', u'statu', u'vandal'] [u'rider', u'wheelchair', u'user', u'tell', u'hang'] [u'royal', u'take', u'band', u'derwent', u'denmark'] [u'sadist', u'crime', u'break', u'father', u'heart'] [u'saint', u'pair', u'clear', u'rape', u'alleg'] [u'santo', u'cut', u'job', u'profit', u'tip', u'climb'] [u'sar', u'drought', u'cut', u'australian', u'export'] [u'sar', u'spread', u'sweat'] [u'fail', u'meet', u'audit', u'requir'] [u'schumach', u'speed', u'record', u'beckon'] [u'schwab', u'warn', u'behaviour', u'wont', u'toler'] [u'scientist', u'explor', u'option', u'clean', u'antarctica'] [u'second', u'drug', u'haul', u'indian', u'pacif'] [u'shark', u'ward', u'gold', u'coast', u'canal', u'swimmer'] [u'skipper', u'face', u'charg', u'boat', u'death'] [u'south', u'african', u'charg', u'import', u'cocain'] [u'stanbrok', u'properti', u'sale', u'menegazzo', u'take'] [u'sunfish', u'member', u'support', u'reef', u'fish', u'compo', u'call'] [u'supermodel', u'win', u'controversi', u'privaci', u'case'] [u'swarm', u'asian', u'honey', u'be', u'thwart', u'cairn', u'port'] [u'sydney', u'polic', u'search', u'miss', u'sister'] [u'sydney', u'properti', u'sale', u'drop'] [u'taipan', u'molloy', u'coach', u'young', u'croc'] [u'tamil', u'tiger', u'renew', u'child', u'recruit', u'monitor'] [u'tasmania', u'afford', u'nurs', u'demand'] [u'teen', u'charg', u'park', u'robberi'] [u'teen', u'charg', u'schoolground', u'death'] [u'thousand', u'evacu', u'ukrain', u'explos'] [u'thai', u'replac', u'violent', u'south'] [u'tourist', u'attract', u'offer', u'view'] [u'transit', u'talk', u'appeas', u'driver'] [u'treasur', u'laud', u'bendigo', u'growth'] [u'tweed', u'fail', u'rail', u'closur', u'debat'] [u'ukrain', u'munit', u'explos', u'kill'] [u'union', u'worksaf', u'discuss', u'mediat', u'concern'] [u'unit', u'chelsea', u'scrap', u'arsenal', u'leftov'] [u'adjust', u'time', u'human', u'right', u'announc'] [u'ambassador', u'tour', u'exmouth', u'naval', u'base'] [u'beer', u'hop', u'ahead', u'award', u'night'] [u'market', u'iraq', u'news'] [u'secur', u'governor', u'offic', u'najaf', u'attack'] [u'valencia', u'edg', u'villarr', u'reach', u'uefa', u'final'] [u'valencia', u'verg', u'championship'] [u'vietnam', u'control', u'bird', u'outbreak'] [u'violenc', u'flair', u'thaksin', u'visit', u'south'] [u'budget', u'provid', u'north', u'west', u'health', u'boost'] [u'waff', u'unhappi', u'budget', u'alloc'] [u'water', u'author', u'restructur', u'bill', u'process'] [u'waugh', u'shoot', u'virginia'] [u'wild', u'bait', u'southern'] [u'wollongong', u'join', u'aeromed', u'review'] [u'woman', u'charg', u'glen', u'inn', u'arm', u'theft'] [u'woomera', u'test', u'provid', u'terror', u'bomb', u'clue'] [u'sadr', u'militia', u'kill', u'iraqi', u'holi', u'citi'] [u'algerian', u'polish', u'journalist', u'kill', u'iraq', u'drive'] [u'american', u'william', u'vault', u'williamsburg', u'lead'] [u'amnesti', u'demand', u'crime', u'inquiri'] [u'aim', u'reassur', u'athlet', u'secur'] [u'appl', u'deni', u'itun', u'onlin', u'price', u'rise'] [u'armi', u'charg', u'soldier', u'iraqi', u'abus'] [u'australia', u'sign', u'marshal', u'agreement'] [u'ban', u'doctor', u'appeal', u'decis'] [u'honda', u'domin', u'ferrari', u'final', u'spanish'] [u'blue', u'pie', u'final', u'quarter', u'charg'] [u'blue', u'season', u'high', u'note'] [u'blue', u'lead', u'highland'] [u'bradshaw', u'boot', u'lion'] [u'british', u'troop', u'iraq', u'abus', u'claim'] [u'brumbi', u'chief', u'book', u'replay'] [u'buckley', u'help', u'pie', u'quarter', u'lead'] [u'bush', u'accus', u'torpedo', u'mideast', u'peac', u'plan'] [u'bushfir', u'coron', u'reject', u'claim', u'blame', u'alloc'] [u'bush', u'say', u'palestinian', u'state', u'unlik'] [u'button', u'tip', u'schumach', u'fastest', u'titl'] [u'candid', u'select', u'agenda', u'meet'] [u'cannon', u'clear', u'red', u'clash'] [u'celtic', u'chase', u'rivaldo'] [u'chemic', u'exposur', u'put', u'children', u'risk'] [u'child', u'detent', u'breach', u'convent', u'human'] [u'chile', u'give', u'right', u'divorc'] [u'clijster', u'pull', u'french', u'open'] [u'cowboy', u'roll', u'warrior'] [u'cowboy', u'warrior', u'lock', u'townsvill'] [u'crow', u'cruis', u'victori', u'adelaid'] [u'crow', u'grab', u'lead', u'adelaid'] [u'crow', u'adelaid'] [u'death', u'toll', u'karachi', u'mosqu', u'blast', u'mount'] [u'democrat', u'urg', u'extra', u'inject', u'public', u'educ'] [u'director', u'find', u'movi', u'star', u'ebay'] [u'east', u'timor', u'accus', u'expel', u'australian'] [u'england', u'struggl', u'black', u'mitchel'] [u'famili', u'stage', u'breastfe', u'focus'] [u'father', u'injur', u'quad', u'bike', u'crash'] [u'fergi', u'say', u'nistelrooy', u'go'] [u'ferrari', u'gun', u'spanish', u'pole'] [u'finnish', u'prosecutor', u'rebuk', u'nail', u'bite', u'trial'] [u'destroy', u'home', u'south', u'east', u'melbourn'] [u'girl', u'aussi', u'rule', u'comp', u'kick'] [u'dead', u'huge', u'ukrain', u'arm', u'depot', u'blaze'] [u'flexibl', u'work', u'mother', u'examin', u'govt'] [u'palestinian', u'isra', u'kill', u'clash'] [u'freak', u'weather', u'lash', u'southern'] [u'gastro', u'cut', u'short', u'south', u'pacif', u'cruis'] [u'godfrey', u'retail', u'chain', u'owner', u'die'] [u'gold', u'coast', u'resid', u'warn', u'pretend', u'policeman'] [u'good', u'news', u'job', u'see', u'wall', u'street'] [u'gray', u'elegi', u'depart', u'viduka'] [u'harradin', u'anger', u'bias', u'research', u'fund'] [u'hookey', u'french', u'policeman', u'arrest', u'fishnet'] [u'houllier', u'confid', u'owen', u'stay'] [u'hurrican', u'hand', u'brumbi', u'home', u'semi', u'final'] [u'illeg', u'anim', u'hand', u'author', u'amnesti'] [u'indigen', u'peopl', u'protest', u'ax', u'atsic'] [u'iraq', u'econom', u'powerhous'] [u'jone', u'easi', u'winner', u'jamaica'] [u'karachi', u'mosqu', u'blast', u'kill', u'wound'] [u'kerri', u'threaten', u'trade', u'deal', u'zoellick'] [u'kimmorley', u'lead', u'shark', u'storm'] [u'knight', u'abraham', u'week'] [u'knive', u'indian', u'campaign', u'draw', u'close'] [u'leak', u'memo', u'reveal', u'rail', u'closur', u'nation'] [u'libya', u'slam', u'condemn', u'aid', u'case', u'death'] [u'lion', u'extend', u'lead', u'kangaroo'] [u'lion', u'lose', u'voss'] [u'lynch', u'injuri', u'mar', u'lion'] [u'charg', u'fantasi', u'drug', u'bust'] [u'man', u'bodi', u'fish', u'accid'] [u'maradona', u'sedat'] [u'mauresmo', u'set', u'capriati', u'clash'] [u'mcgee', u'favourit', u'giro', u'prologu'] [u'michelangelo', u'statu', u'time'] [u'moya', u'nalbandian', u'reach', u'rome', u'semi', u'final'] [u'murali', u'world'] [u'caledonian', u'elect', u'tip', u'deepen', u'divis'] [u'emerg', u'servic', u'site', u'decid'] [u'news', u'corp', u'unveil', u'channel'] [u'torchbear', u'nation', u'shame', u'say', u'nova', u'peri'] [u'hold', u'indigen', u'netbal', u'camp'] [u'rail', u'servic', u'win', u'major', u'construct', u'award'] [u'nurs', u'better', u'staff', u'patient', u'ratio'] [u'ohern', u'touch', u'british', u'master'] [u'price', u'hit'] [u'oppn', u'reject', u'qualiti', u'life', u'budget', u'pledg'] [u'pair', u'charg', u'shoot'] [u'pie', u'long', u'break'] [u'polish', u'soldier', u'kill', u'iraq'] [u'powderfing', u'rock', u'royal', u'danish', u'concert'] [u'premier', u'mitsubishi', u'rescu', u'mission', u'german'] [u'prison', u'abus', u'iraq', u'widespread', u'cross'] [u'putin', u'pledg', u'increas', u'live', u'standard'] [u'real', u'estat', u'market', u'slow', u'rapid'] [u'red', u'ahead', u'brisban'] [u'red', u'waratah', u'super', u'dream'] [u'road', u'toll', u'rise'] [u'rooster', u'hammer', u'tiger', u'fittler', u'reach', u'mileston'] [u'rooster', u'half', u'time', u'lead'] [u'rumsfeld', u'apolog', u'cross', u'say', u'iraq', u'abus', u'rife'] [u'rumsfeld', u'myer', u'defend', u'ask', u'press', u'delay'] [u'rumsfeld', u'resign', u'poll'] [u'sadr', u'militiamen', u'attack', u'british', u'forc', u'basra'] [u'saint', u'hold', u'docker', u'comeback'] [u'saint', u'control', u'half', u'time'] [u'saint', u'maintain', u'win', u'streak'] [u'saint', u'maintain', u'streak'] [u'saint', u'march', u'ahead', u'quarter', u'time'] [u'sasser', u'worm', u'suspect', u'arrest', u'germani'] [u'second', u'shipwreck', u'coast'] [u'shark', u'edg', u'storm'] [u'southern', u'clean', u'freak', u'hail', u'storm'] [u'lanka', u'build', u'lead'] [u'steve', u'martin', u'beyonc', u'recreat', u'pink', u'panther'] [u'swift', u'darter', u'secur', u'point'] [u'govt', u'reconsid', u'coastal', u'island', u'leas'] [u'govt', u'urg', u'drop', u'stamp', u'duti', u'home'] [u'task', u'forc', u'investig', u'har', u'race', u'accid'] [u'offici', u'meet', u'palestinian'] [u'moder', u'quak', u'rock', u'taiwan'] [u'ukrain', u'secret', u'polic', u'seiz', u'radioact', u'caesium'] [u'union', u'attack', u'beatti', u'back', u'trade', u'deal'] [u'australian', u'flight', u'soon', u'marshal'] [u'confid', u'greec', u'stage', u'safe', u'olymp'] [u'marin', u'kill', u'afghanistan'] [u'militari', u'disciplin', u'guantanamo', u'warden'] [u'morn', u'pill', u'sale', u'block'] [u'remain', u'pressur', u'iraq', u'abus', u'scandal'] [u'soldier', u'say', u'role', u'hell'] [u'wenger', u'say', u'gunner', u'destin', u'great'] [u'william', u'lead', u'cowboy', u'warrior'] [u'woman', u'spend', u'night', u'trap', u'accid'] [u'wood', u'surg', u'clear', u'north', u'carolina'] [u'zimbabw', u'rebel', u'agre', u'mediat'] [u'zoysa', u'take', u'zimbabw', u'stumbl'] [u'forest', u'defend', u'pine', u'tree', u'propos'] [u'govt', u'accus', u'bypass', u'nurs', u'union'] [u'akhtar', u'tell', u'spirit'] [u'alarm', u'caus', u'chao', u'sydney', u'shop', u'centr'] [u'barca', u'real', u'spanish', u'titl', u'slip'] [u'blair', u'vote', u'loser', u'poll'] [u'british', u'troop', u'basra', u'clash'] [u'broadhurst', u'grab', u'british', u'master', u'lead'] [u'bronco', u'charg', u'ahead', u'canberra'] [u'canadian', u'peac', u'activist', u'welcom', u'iraq'] [u'canberra', u'doctor', u'form', u'union'] [u'candid', u'approach', u'best', u'stop', u'children', u'fear'] [u'cat', u'score', u'seven', u'tri', u'lose'] [u'celtic', u'rival', u'ranger'] [u'chechen', u'leader', u'kill', u'stadium', u'blast'] [u'chechen', u'leader', u'general', u'injur', u'stadium'] [u'chelsea', u'secur', u'champ', u'leagu', u'spot'] [u'climat', u'chang', u'landscap', u'research'] [u'endors', u'minist', u'elect'] [u'communiti', u'fear', u'thai', u'girl', u'deport'] [u'cosgrov', u'shock', u'iraq', u'prison', u'abus'] [u'costello', u'stoke', u'leadership', u'talk', u'ahead', u'budget'] [u'costello', u'focus', u'budget', u'work', u'famili'] [u'death', u'fairi', u'penguin', u'prompt', u'larger'] [u'delay', u'forc', u'park', u'north', u'hire', u'boat', u'ferri'] [u'democrat', u'easi', u'passag', u'budget'] [u'demon', u'build', u'lead', u'eagl'] [u'demon', u'stay', u'second', u'down', u'eagl'] [u'deplet', u'knight', u'toppl', u'bulldog'] [u'farina', u'hope', u'viduka', u'friend'] [u'feder', u'project', u'tackl', u'mother', u'stereotyp'] [u'fund', u'target', u'weed', u'control', u'near', u'kakadu'] [u'arrest', u'itali', u'anti', u'terror', u'swoop'] [u'foreign', u'stone', u'death', u'afghan', u'capit'] [u'iraqi', u'right', u'minist', u'say', u'prison', u'abus'] [u'french', u'polic', u'foil', u'bomb', u'threat', u'synagogu'] [u'french', u'protest', u'lift', u'blockad', u'cann', u'film'] [u'fund', u'cut', u'threaten', u'tourism', u'council'] [u'geelong', u'domin', u'quarter', u'play'] [u'geelong', u'hammer', u'hawthorn'] [u'german', u'teen', u'confess', u'creat', u'sasser'] [u'case', u'cheney', u'defend', u'rumsfeld'] [u'host', u'dinner', u'danish', u'royal'] [u'girl', u'dead', u'hous'] [u'govt', u'lie', u'budget', u'tax', u'opposit'] [u'govt', u'urg', u'invest', u'public', u'school'] [u'green', u'rule', u'support', u'suspect', u'cut'] [u'injur', u'venus', u'doubt', u'berlin', u'final'] [u'injuri', u'wreak', u'havoc', u'rome', u'master'] [u'iraq', u'prison', u'abus', u'commit', u'bush'] [u'japan', u'verg', u'nuclear', u'wmds', u'north', u'korea'] [u'jazz', u'guitarist', u'barney', u'kessel', u'die'] [u'jerusalem', u'blast', u'injur', u'medic'] [u'knight', u'crush', u'unimpress', u'bulldog'] [u'knight', u'gallop', u'half', u'time', u'lead'] [u'lone', u'penalti', u'separ', u'man', u'dragon'] [u'arrest', u'polic', u'park', u'rampag'] [u'maxin', u'carr', u'namesak', u'fear', u'jail', u'releas'] [u'mcgee', u'pink', u'prologu'] [u'mcgee', u'send', u'anti', u'drug', u'messag'] [u'melbourn', u'host', u'largest', u'citizenship', u'ceremoni'] [u'mother', u'celebr', u'famili'] [u'moya', u'nalbandian', u'reach', u'rome', u'final'] [u'scandal', u'surpris', u'westpac', u'chief'] [u'law', u'protect', u'children', u'famili', u'suffer'] [u'notori', u'iraqi', u'prison', u'close', u'chief'] [u'polic', u'tell', u'million', u'cost'] [u'extend', u'hemp', u'product', u'trial'] [u'obes', u'child', u'youngest', u'type', u'diabet', u'case'] [u'ochoa', u'shoot', u'share', u'williamsburg', u'lead'] [u'offic', u'bad', u'injur', u'attack'] [u'ogilvi', u'lead', u'aussi', u'charg'] [u'kill', u'shiit', u'protest', u'pakistan', u'suicid', u'bomb'] [u'optus', u'boss', u'deni', u'possibl', u'telstra'] [u'oyster', u'farmer', u'work', u'environment', u'credenti'] [u'panther', u'open', u'comfort', u'lead'] [u'panther', u'thump', u'rabbitoh'] [u'pentagon', u'approv', u'guantanamo', u'interrog', u'report'] [u'phoenix', u'sink', u'firebird', u'bird', u'crush', u'kestrel'] [u'polic', u'investig', u'overnight', u'stab', u'brisban'] [u'qanta', u'accus', u'discrimin', u'plug'] [u'ranieri', u'agent', u'demand', u'chelsea', u'manag'] [u'resid', u'argu', u'glenelg', u'develop'] [u'richardson', u'lead', u'tiger', u'upset', u'swan'] [u'richardson', u'lead', u'tiger', u'fightback'] [u'schumach', u'snatch', u'spanish', u'pole'] [u'eagl', u'dragon'] [u'sharon', u'cancel', u'washington', u'trip'] [u'kill', u'baghdad', u'market', u'explos'] [u'stormer', u'sneak', u'super', u'semi'] [u'strand', u'windsurf', u'wait', u'rescu', u'parti'] [u'tasmanian', u'ralli', u'mental', u'health', u'inquiri'] [u'frawley', u'hand', u'victori', u'bronco'] [u'tiger', u'upset', u'swan'] [u'tuqiri', u'talk', u'bennett'] [u'troop', u'face', u'prison', u'abus', u'charg', u'report'] [u'alli', u'vent', u'anger', u'iraqi', u'prison', u'abus'] [u'doctor', u'success', u'remov', u'sick', u'gorilla', u'lung'] [u'look', u'reduc', u'iraqi', u'prison', u'popul'] [u'soldier', u'kill', u'northern', u'iraq'] [u'troop', u'arrest', u'sadr', u'aid'] [u'venus', u'william', u'pull', u'german', u'open', u'final'] [u'warn', u'possibl', u'postag', u'delay'] [u'westpac', u'rule', u'dramat', u'rise'] [u'windsurf', u'rescu', u'island'] [u'women', u'footbal', u'competit', u'plan'] [u'zimbabw', u'minist', u'heckl', u'mozambiqu', u'report'] [u'zimbabw', u'suspend', u'food', u'mission'] [u'aborigin', u'urg', u'input', u'hous', u'review'] [u'air', u'environ', u'fund', u'concern'] [u'chief', u'invit', u'clarifi', u'forget', u'phone', u'call'] [u'teacher', u'start', u'work', u'ban', u'disput'] [u'anwar', u'outburst', u'caus', u'appeal', u'upset'] [u'apra', u'defend', u'action', u'trade', u'scandal'] [u'arroyo', u'lead', u'philippin', u'poll', u'close'] [u'arsenal', u'game', u'away', u'unbeaten', u'season'] [u'asio', u'conduct', u'secur', u'audit'] [u'atsic', u'commission', u'hit', u'apathi'] [u'australian', u'soldier', u'fin', u'kitten', u'tortur'] [u'australian', u'snap', u'cheap', u'local', u'wine'] [u'australia', u'post', u'warn', u'delay', u'come', u'stop', u'work'] [u'blair', u'apologis', u'british', u'abus', u'prison'] [u'blue', u'boss', u'origin', u'squad'] [u'place', u'pie', u'eye', u'final'] [u'british', u'govt', u'pressur', u'reveal', u'prison', u'abus'] [u'budget', u'point'] [u'bumper', u'abalon', u'season', u'south', u'coast'] [u'bush', u'fund', u'angri', u'island', u'leas', u'decis'] [u'bush', u'head', u'pentagon', u'prison', u'abus', u'brief'] [u'busi', u'confid', u'slip', u'april'] [u'shipload', u'geraldton'] [u'camp', u'cannib', u'receiv', u'life'] [u'canegrow', u'concern', u'worker', u'exodus'] [u'chechen', u'rebel', u'deni', u'assassin', u'involv'] [u'chechnya', u'buri', u'slay', u'leader'] [u'childcar', u'industri', u'pessimist', u'ahead', u'budget'] [u'comedian', u'alan', u'king', u'die', u'york'] [u'complex', u'futur', u'rest', u'alley', u'sale', u'request'] [u'confer', u'focus', u'mine', u'sector'] [u'conserv', u'group', u'attack', u'solar', u'power', u'research'] [u'costello', u'downplay', u'leadership', u'talk'] [u'costello', u'refus', u'commit', u'futur', u'treasur'] [u'council', u'disappoint', u'shop', u'mall', u'reject'] [u'council', u'look', u'particip', u'water', u'project'] [u'council', u'urg', u'work', u'partnership', u'govt'] [u'council', u'decid', u'final', u'posit'] [u'doctor', u'hope', u'better', u'hospit', u'servic'] [u'doctor', u'repres', u'riverina', u'torch', u'relay'] [u'dozen', u'dead', u'fight', u'iraq'] [u'timores', u'presid', u'accus', u'australia', u'theft'] [u'timor', u'issu', u'wiranto', u'arrest', u'warrant'] [u'extra', u'childcar', u'place', u'industri', u'say'] [u'fear', u'price', u'hike', u'rais', u'airfar'] [u'feder', u'govt', u'urg', u'stronger', u'stand'] [u'feder', u'face', u'tough', u'start', u'hamburg'] [u'govt', u'accus', u'univers', u'bias'] [u'player', u'charg', u'blue', u'pie', u'barney'] [u'filipino', u'poll', u'choos', u'presid'] [u'folk', u'rue', u'repres', u'impact'] [u'foreign', u'injur', u'baghdad', u'hotel', u'blast'] [u'gilgandra', u'council', u'consult', u'resid'] [u'gonzal', u'give', u'evid', u'famili', u'murder', u'trial'] [u'govt', u'accus', u'mismanag', u'murray', u'river', u'fund'] [u'govt', u'criticis', u'airlin', u'safeti', u'fund'] [u'govt', u'start', u'remov', u'northern', u'rail', u'servic'] [u'govt', u'provid', u'fund', u'librari', u'leas', u'extens'] [u'govt', u'urg', u'fund', u'reopen', u'river', u'mouth'] [u'govt', u'wont', u'problem', u'match', u'highway', u'fund'] [u'grazier', u'welcom', u'vet', u'vote', u'live', u'anim', u'trade'] [u'green', u'group', u'tell', u'stori'] [u'green', u'prison', u'abus', u'inquiri'] [u'gunfir', u'greet', u'marin', u'convoy', u'fallujah'] [u'harrop', u'second', u'portug'] [u'hawk', u'star', u'barrel', u'schwab'] [u'heroic', u'paramed', u'maintain'] [u'hundr', u'ralli', u'atsic', u'abolish'] [u'ponder', u'expans'] [u'increas', u'fuel', u'price', u'impact', u'countri'] [u'industri', u'action', u'forecast', u'follow', u'environ'] [u'injur', u'prais', u'seek', u'help', u'follow'] [u'injur', u'venus', u'jump', u'eighth', u'french', u'open'] [u'instal', u'olymp', u'stadium', u'roof', u'begin'] [u'inter', u'close', u'champion', u'leagu', u'qualifi', u'round'] [u'intern', u'businesswomen', u'meet', u'sydney'] [u'intern', u'communiti', u'condemn', u'chechnya', u'bomb'] [u'italian', u'polic', u'dismantl', u'terrorist', u'cell'] [u'clinic', u'target', u'sperm', u'donor'] [u'japan', u'main', u'opposit', u'leader', u'resign'] [u'juvenil', u'question', u'boy', u'shoot'] [u'kanck', u'angri', u'ignor', u'oversea', u'koala', u'complaint'] [u'labor', u'say', u'budget', u'includ', u'fund'] [u'lane', u'win', u'british', u'master'] [u'leak', u'memo', u'branch', u'line', u'closur', u'wake'] [u'lee', u'arriv', u'committ', u'falconio', u'case'] [u'maleni', u'protest', u'fall', u'tree'] [u'charg', u'disput', u'neighbour'] [u'charg', u'laverton', u'stab'] [u'charg', u'mother', u'murder'] [u'stabl', u'shoot', u'incid'] [u'maradona', u'move', u'rehab', u'clinic'] [u'marathon', u'swimmer', u'highlight', u'pressur', u'lake'] [u'market', u'slump', u'aussi', u'dollar', u'tumbl'] [u'meet', u'discuss', u'soccer', u'team', u'futur'] [u'minist', u'agre', u'nation', u'terror', u'threat', u'approach'] [u'mitsubishi', u'meet', u'delay'] [u'modest', u'fleme', u'play', u'cricket', u'best'] [u'nurs', u'posit', u'hospit'] [u'tree', u'plant', u'need', u'reach', u'target'] [u'moya', u'crush', u'nalbandian', u'lift', u'rome', u'master'] [u'nanci', u'reagan', u'back', u'stem', u'cell', u'research'] [u'nation', u'indigen', u'polit', u'parti', u'launch'] [u'nat', u'criticis', u'ethanol', u'fuel', u'report'] [u'mother', u'contact', u'nurs', u'diagnos'] [u'schizophrenia', u'drug', u'add', u'benefit', u'scheme'] [u'strategi', u'identifi', u'feral', u'pig', u'prioriti'] [u'govt', u'urg', u'save', u'defenc', u'land'] [u'launch', u'council', u'investig', u'squad'] [u'power', u'grid', u'declar', u'safe', u'terror', u'attack'] [u'celebr', u'afghan', u'histori'] [u'nurs', u'remain', u'firm', u'rise', u'disput'] [u'nurs', u'strike', u'action', u'loom'] [u'nurs', u'warn', u'expect', u'chang', u'despit', u'budget'] [u'opposit', u'condemn', u'costello', u'leadership', u'tantrum'] [u'valley', u'muster', u'draw', u'thousand'] [u'dollar', u'tumbl', u'cent'] [u'secur', u'come', u'lpga'] [u'pathologist', u'disput', u'hotshot', u'death'] [u'petrol', u'price', u'increas'] [u'meat', u'panel', u'dismiss', u'import', u'appeal'] [u'pipelin', u'attack', u'halt', u'iraqi', u'export'] [u'pitt', u'say', u'start', u'wear', u'skirt', u'troy'] [u'plan', u'reveal', u'creat', u'water', u'wise', u'sydney', u'home'] [u'player', u'readi', u'will', u'zimbabw', u'tour'] [u'committe', u'examin', u'autonomi', u'propos'] [u'polic', u'appeal', u'victim', u'come', u'forward'] [u'polic', u'commission', u'awar', u'hous', u'concern'] [u'policeman', u'prais', u'rescu', u'effort'] [u'polic', u'probe', u'gangland', u'kill', u'lead'] [u'polic', u'rule', u'foul', u'play', u'fatal', u'hous'] [u'politician', u'learn', u'better', u'parent'] [u'princess', u'win', u'yacht', u'race', u'royal'] [u'prison', u'recaptur', u'year'] [u'probe', u'broom', u'boat', u'death', u'continu'] [u'protest', u'plan', u'stop', u'deport', u'thai', u'girl'] [u'public', u'comment', u'seek', u'disabl', u'servic'] [u'qanta', u'quiet', u'passeng', u'fuel', u'levi'] [u'teacher', u'hope', u'extra', u'budget', u'educ'] [u'rail', u'line', u'close', u'train', u'collid'] [u'rathbon', u'sign', u'brumbi'] [u'cross', u'tell', u'iraq', u'abus', u'process'] [u'rental', u'market', u'expect', u'remain', u'tight'] [u'research', u'wish', u'earthquak'] [u'resid', u'injur', u'unit'] [u'resid', u'face', u'possibl', u'tougher', u'water'] [u'rogerson', u'plead', u'guilti', u'fals', u'testimoni', u'charg'] [u'rugbi', u'player', u'take', u'hospit', u'suffer'] [u'rumsfeld', u'safer', u'grind', u'despit', u'resign', u'call'] [u'russia', u'reel', u'chechnya', u'assassin'] [u'saint', u'fli', u'gloom', u'gather', u'hawk', u'magpi'] [u'sampi', u'promis', u'tower', u'mark'] [u'schumach', u'make'] [u'scientist', u'nino', u'worsen'] [u'search', u'continu', u'miss', u'fisherman'] [u'sentenc', u'review', u'sell', u'porn', u'pic'] [u'seymour', u'latest', u'injuri', u'blow', u'bronco'] [u'sharon', u'develop', u'gaza', u'withdraw', u'plan'] [u'sindelar', u'break', u'year', u'tour', u'drought'] [u'skywest', u'resum', u'pilbara', u'servic'] [u'snow', u'franc', u'caus', u'power', u'cut', u'road', u'closur'] [u'southern', u'cross', u'offer', u'cours'] [u'sprint', u'king', u'petacchi', u'pip', u'mcewen', u'giro'] [u'steal', u'generat', u'orphanag', u'develop'] [u'sudanes', u'incurs', u'anger', u'neighbour', u'countri'] [u'taiwan', u'begin', u'vote', u'recount'] [u'local', u'council', u'condemn', u'govt', u'chang'] [u'teenag', u'seek', u'home', u'invas'] [u'thai', u'girl', u'grant', u'bridg', u'visa'] [u'thai', u'discuss', u'liverpool', u'specul'] [u'thousand', u'gather', u'union', u'secretari', u'front', u'court'] [u'jail', u'solicitor', u'murder'] [u'thunderbird'] [u'tiger', u'roll', u'campbel'] [u'softwar', u'develop', u'arrest', u'winni', u'file'] [u'town', u'face', u'bread', u'shortag'] [u'trade', u'halt', u'grain', u'compani', u'merg'] [u'treasur', u'defend', u'budget', u'advertis'] [u'tuqiri', u'look', u'bennett', u'advic'] [u'lawyer', u'choos', u'defend', u'saddam'] [u'defenc', u'minist', u'face', u'iraq', u'prison', u'abus'] [u'team', u'look', u'support', u'wast', u'project'] [u'unit', u'church', u'call', u'atsic', u'protest'] [u'upset', u'leav', u'rooster'] [u'athlet', u'tell', u'tone', u'olymp', u'celebr'] [u'detaine', u'father', u'question', u'interrog', u'tactic'] [u'magazin', u'releas', u'iraq', u'prison', u'abus', u'photo'] [u'protest', u'demand', u'extens'] [u'soldier', u'face', u'hear', u'baghdad'] [u'valencia', u'prove', u'spain', u'real', u'deal'] [u'video', u'review', u'snare'] [u'violenc', u'break', u'funer', u'pregnant'] [u'violenc', u'sweep', u'philippin', u'voter', u'head', u'poll'] [u'violinist', u'find', u'wrestl', u'fort'] [u'volunt', u'secret', u'long', u'life', u'studi'] [u'voss', u'doubt', u'duti', u'blue', u'matthew'] [u'vote', u'end', u'india', u'rule', u'coalit', u'struggl'] [u'walsh', u'back', u'murali', u'reach', u'wicket'] [u'west', u'ipswich', u'palac', u'secur', u'play', u'berth'] [u'wild', u'weather', u'caus', u'minor', u'damag', u'region'] [u'wooden', u'pipe', u'excit', u'irish', u'archaeologist'] [u'wool', u'expo', u'format', u'prove', u'win', u'formula'] [u'world', u'largest', u'democraci', u'head', u'poll'] [u'chief', u'welcom', u'budget', u'commit', u'region'] [u'adelaid', u'hill', u'blaze', u'prompt', u'warn'] [u'aerial', u'survey', u'aim', u'diamond'] [u'age', u'care', u'provid', u'anticip', u'favour', u'budget'] [u'alcohol', u'restrict', u'woorabinda', u'crime'] [u'alleg', u'fraud', u'forc', u'closur', u'communiti', u'centr'] [u'allig', u'wad', u'pool', u'insid', u'geelong', u'hous'] [u'pain', u'horizon', u'sugar', u'grower', u'forum'] [u'amnesti', u'accus', u'british', u'soldier', u'kill'] [u'anti', u'basslink', u'group', u'deliv', u'protest', u'letter'] [u'armi', u'act', u'alleg', u'student', u'attack'] [u'armi', u'volunt', u'want', u'say', u'rspca', u'chief'] [u'arroyo', u'look', u'retain', u'philippin', u'presid'] [u'attack', u'kill', u'dutch', u'soldier', u'russian', u'iraq'] [u'aussi', u'grass', u'regain', u'world', u'group'] [u'australian', u'incens', u'british', u'boomerang', u'claim'] [u'billion', u'asid', u'citigroup', u'corpor', u'fraud'] [u'board', u'announc', u'polit', u'retir'] [u'bouncer', u'face', u'hear', u'death', u'cricket', u'coach'] [u'british', u'court', u'women', u'better', u'driver'] [u'bryant', u'accus', u'show', u'court'] [u'budget', u'bonanza', u'prompt', u'talk', u'earli', u'elect'] [u'budget', u'boost', u'drought', u'farmer', u'wineri'] [u'budget', u'boost', u'commonwealth', u'game', u'money'] [u'budget', u'fund', u'extra', u'skill', u'migrat'] [u'budget', u'provid', u'fund', u'carer', u'cochlear', u'implant'] [u'budget', u'affirm', u'iraq', u'commit'] [u'budget', u'shoot', u'product', u'boost'] [u'bush', u'defend', u'rumsfeld', u'iraqi', u'abus'] [u'busi', u'communiti', u'hop', u'cut'] [u'busi', u'blame', u'consum', u'spend', u'slower'] [u'busi', u'welcom', u'budget', u'measur'] [u'calder', u'fund', u'decid', u'bendigo', u'elector'] [u'californian', u'radic', u'sentenc', u'bank', u'death'] [u'go', u'volunt', u'ambul', u'offic'] [u'candid', u'lobbi', u'budget', u'bypass', u'fund'] [u'care', u'allow', u'extend', u'thank', u'woman'] [u'champion', u'leagu', u'place', u'say', u'shearer'] [u'civil', u'libertarian', u'anger', u'sniffer', u'plan'] [u'clean', u'wiranto', u'brush', u'arrest', u'warrant'] [u'club', u'industri', u'ralli', u'poker', u'machin'] [u'commerci', u'fish', u'group', u'safer', u'boat'] [u'competit', u'spark', u'youth', u'farm'] [u'costello', u'budget', u'wast', u'opportun', u'crean'] [u'costello', u'hand', u'famili', u'friend', u'budget'] [u'council', u'consid', u'pipelin', u'water', u'suppli'] [u'council', u'happi', u'speed', u'prevent', u'program'] [u'council', u'wait', u'white', u'paper', u'hume'] [u'crow', u'dynamo', u'hird'] [u'dengu', u'fever', u'threat', u'despit', u'cooler', u'weather'] [u'dept', u'claim', u'grafton', u'loss', u'minimis'] [u'dept', u'concern', u'unlicens', u'tradesmen', u'number'] [u'detect', u'investig', u'essendon', u'doubl', u'murder'] [u'develop', u'watchdog', u'concern', u'coast', u'road'] [u'maul', u'child', u'gold', u'coast'] [u'drug', u'peddler', u'jail'] [u'drug', u'sniffer', u'dog', u'program', u'begin', u'month'] [u'dutch', u'soldier', u'die', u'iraq', u'grenad', u'attack'] [u'engin', u'compani', u'frustrat', u'delay', u'energi'] [u'timor', u'prosecutor', u'seek', u'wiranto', u'warrant', u'revis'] [u'expert', u'reject', u'need', u'bodi', u'armour', u'secur'] [u'extra', u'firefight', u'station', u'tennant', u'creek'] [u'famili', u'support', u'program', u'receiv', u'fund', u'boost'] [u'farmer', u'fear', u'merger', u'affect', u'grain', u'pool'] [u'farmer', u'budget', u'boost', u'competit'] [u'farmer', u'urg', u'budget', u'fund', u'rural', u'health'] [u'farmer', u'welcom', u'drop', u'australian', u'dollar'] [u'diplomat', u'jail', u'abus', u'charg'] [u'union', u'boss', u'admit', u'assault', u'vandal'] [u'week', u'holland', u'tribun', u'get', u'tough'] [u'fund', u'essenti', u'servic', u'cut'] [u'futur', u'cotton', u'industri', u'plan', u'hing'] [u'good', u'turnout', u'meet', u'swan', u'hill', u'women'] [u'govt', u'add', u'school', u'coffer'] [u'govt', u'add', u'research', u'fund'] [u'govt', u'begin', u'sell', u'famili', u'friend', u'budget'] [u'govt', u'know', u'prison', u'abus', u'claim', u'februari'] [u'govt', u'look', u'heritag', u'list', u'nomin'] [u'govt', u'merg', u'media', u'communic', u'watchdog'] [u'govt', u'concern', u'mitsubishi', u'meet', u'delay'] [u'govt', u'review', u'propos', u'flood', u'plain', u'dump', u'site'] [u'govt', u'shift', u'atsic', u'fund', u'communiti'] [u'govt', u'urg', u'boost', u'infrastructur', u'spend'] [u'worri', u'avail', u'date', u'rape', u'drug'] [u'greenpeac', u'continu', u'campaign', u'whale', u'sanctuari'] [u'health', u'budget', u'win', u'ama', u'prais'] [u'health', u'servic', u'hop', u'age', u'care', u'fund'] [u'health', u'servic', u'decid', u'redund'] [u'hick', u'habib', u'treat', u'human', u'say'] [u'honduran', u'troop', u'begin', u'iraq', u'pull'] [u'hoof', u'sport', u'hero', u'benefit', u'hyperbar'] [u'hop', u'cattl', u'drive', u'boost', u'indigen', u'youth'] [u'hospit', u'tell', u'patient', u'wash', u'reus', u'bandag'] [u'illawarra', u'famili', u'expect', u'benefit', u'budget'] [u'indigen', u'women', u'need', u'right', u'forum'] [u'inquest', u'hear', u'revis', u'bushfir', u'predict'] [u'italian', u'opposit', u'demand', u'iraq', u'troop', u'recal'] [u'italian', u'condemn', u'iraq', u'prison', u'abus'] [u'jackman', u'nomin', u'toni', u'award'] [u'jam', u'month', u'knee', u'injuri'] [u'jondaryan', u'shire', u'hous', u'sector', u'remain', u'strong'] [u'jordan', u'editor', u'remand', u'custodi', u'saudi'] [u'journalist', u'die', u'chechen', u'blast', u'buri'] [u'labor', u'call', u'govt', u'dismantl', u'rail', u'line'] [u'lamb', u'industri', u'hop', u'benefit', u'intern'] [u'minut', u'offer', u'avert', u'nurs', u'strike'] [u'legisl', u'formalis', u'forestri', u'manag'] [u'liber', u'leadership', u'specul', u'continu'] [u'light', u'plane', u'crash', u'western', u'queensland'] [u'lion', u'trainer', u'colour', u'chang', u'halt'] [u'local', u'kingfish', u'featur', u'royal', u'wed', u'menu'] [u'mahwir', u'report', u'suspect', u'bowl', u'action'] [u'malaysian', u'arrest', u'immigr', u'raid'] [u'maley', u'resign', u'return', u'practic'] [u'die', u'singl', u'vehicl', u'accid'] [u'guilti', u'bonfir', u'murder'] [u'jail', u'assault', u'taxidriv'] [u'sentenc', u'workmat', u'assault'] [u'shoot', u'perth', u'jewelleri', u'heist'] [u'marathon', u'pack', u'runner', u'athen'] [u'marist', u'priest', u'court', u'alleg', u'sexual'] [u'market', u'close', u'ahead', u'budget'] [u'matern', u'payment', u'rais', u'concern'] [u'mayor', u'welcom', u'council', u'bin', u'reform'] [u'mcgee', u'miss', u'stage', u'regain', u'lead'] [u'mcgrath', u'hope', u'zimbabwean', u'truce'] [u'mclaren', u'suffer', u'wait'] [u'media', u'monitor', u'polic', u'radio', u'sanction'] [u'militari', u'identifi', u'truck', u'british', u'iraq', u'prison'] [u'get', u'life', u'span', u'discoveri'] [u'water', u'contamin', u'report', u'delay'] [u'mine', u'compani', u'reveal', u'plan', u'tennant', u'creek', u'gold'] [u'minist', u'admit', u'radar', u'gun', u'calibr'] [u'molik', u'rome', u'master'] [u'monash', u'student', u'protest', u'hec', u'increas'] [u'monsanto', u'give', u'genet'] [u'intern', u'accolad', u'beachley'] [u'job', u'electrolux', u'downsiz'] [u'mother', u'awar', u'hero', u'son', u'injuri'] [u'near', u'drown', u'prompt', u'call', u'compulsori'] [u'blow', u'malaysia', u'anwar', u'appeal', u'hear'] [u'hous', u'subdivis', u'continu', u'build'] [u'indigen', u'polit', u'parti', u'contest', u'seat'] [u'law', u'victim', u'testimoni', u'easier'] [u'nomin', u'council', u'posit', u'slow', u'come'] [u'govt', u'begin', u'survey', u'border'] [u'hop', u'fund', u'juvenil', u'divers'] [u'oecd', u'give', u'costello'] [u'offici', u'celebr', u'olymp', u'stadium', u'roof', u'begin'] [u'cooker', u'prompt', u'school', u'emerg'] [u'opposit', u'criticis', u'chief', u'minist', u'leak'] [u'pacif', u'million', u'fund', u'boost'] [u'pacif', u'island', u'rugbi', u'team', u'solid', u'sponsorship'] [u'polic', u'search', u'involv', u'raid', u'robberi'] [u'polic', u'review', u'search', u'miss', u'fisherman'] [u'polic', u'unlik', u'charg', u'internet'] [u'pork', u'industri', u'lose', u'appeal', u'stop', u'import'] [u'port', u'corpor', u'continu', u'analys', u'terror', u'risk'] [u'prison', u'abus', u'photo', u'stag', u'militari'] [u'qanta', u'opt', u'fuel', u'surcharg'] [u'frustrat', u'highway', u'construct', u'delay'] [u'rail', u'line', u'futur', u'hing', u'freight', u'project'] [u'rann', u'begin', u'german', u'daimlerchrysl', u'talk'] [u'rate', u'rise', u'fear', u'strong', u'employ', u'prompt', u'equiti'] [u'recreat', u'abalon', u'season', u'close'] [u'cross', u'wit', u'prison', u'abus', u'report'] [u'redistribut', u'delay', u'frustrat', u'north', u'binalong'] [u'refuge', u'benefit', u'albani', u'meet'] [u'report', u'find', u'flinder', u'emerg', u'depart', u'unsaf'] [u'resid', u'urg', u'consid', u'chang', u'council'] [u'resourc', u'compani', u'doubl', u'explor', u'drill'] [u'reverend', u'nile', u'defend', u'senat', u'nomin'] [u'reverend', u'nile', u'tip', u'harradin', u'retir'] [u'road', u'name', u'honour', u'race', u'club', u'stalwart'] [u'rspca', u'applaud', u'cattl', u'transport', u'cruelti', u'verdict'] [u'safin', u'fire', u'philippoussi', u'falter', u'hamburg'] [u'grain', u'grower', u'anticip', u'higher', u'return'] [u'sailor', u'welcom', u'port', u'secur', u'plan'] [u'sar', u'vaccin', u'readi', u'year'] [u'scienc', u'packag', u'hurt', u'aborigin', u'health', u'indigen'] [u'secur', u'scare', u'forc', u'airport', u'evacu'] [u'senat', u'ask', u'condemn', u'iraq', u'prison', u'abus'] [u'senior', u'member', u'jail', u'weapon', u'charg'] [u'shale', u'plant', u'viabil', u'uncertain'] [u'shire', u'urg', u'incent', u'attract', u'experi'] [u'shoot', u'accid', u'bass', u'strait', u'injur'] [u'shortag', u'skill', u'tradespeopl', u'continu'] [u'silt', u'clean', u'begin', u'tamar', u'river'] [u'isra', u'soldier', u'kill', u'gaza', u'incurs'] [u'smyth', u'continu', u'motion', u'confid'] [u'south', u'african', u'experi', u'assist', u'aflca', u'manag'] [u'spain', u'refus', u'hand', u'iraqi', u'cleric'] [u'speed', u'pharmacist', u'get', u'month', u'jail'] [u'studi', u'link', u'testosteron', u'level', u'prostat', u'cancer'] [u'sugar', u'industri', u'tell', u'diversif', u'import'] [u'impostor', u'dupe', u'chines', u'patriot'] [u'support', u'consid', u'court', u'action', u'thai', u'girl'] [u'survey', u'point', u'continu', u'growth', u'busi'] [u'suspens', u'collin', u'super', u'semi', u'final', u'miss'] [u'sydney', u'gold', u'medallist', u'shaki', u'start', u'world'] [u'tahus', u'origin', u'hop', u'injuri'] [u'tamworth', u'region', u'council', u'act', u'general', u'manag'] [u'taskforc', u'examin', u'possibl', u'underworld', u'murder', u'link'] [u'tasmanian', u'parliament', u'danish', u'flag'] [u'nurs', u'postpon', u'strike', u'action'] [u'relief', u'go', u'manufactur'] [u'temporari', u'magistr', u'appoint', u'tasmania'] [u'thai', u'splash', u'liverpool', u'campaign'] [u'tiger', u'unlik', u'final', u'berth'] [u'tiger', u'pair', u'punish', u'nightclub', u'scuffl'] [u'host', u'militari', u'exercis'] [u'toyota', u'post', u'record', u'profit'] [u'travolta', u'head', u'west', u'qanta', u'museum', u'tour'] [u'tribun', u'deal', u'ban', u'fin'] [u'dead', u'costa', u'rica', u'flood'] [u'kill', u'gaza', u'incurs'] [u'court', u'okay', u'unlaw', u'iraqi', u'death', u'challeng'] [u'union', u'boss', u'jail', u'court', u'tell'] [u'union', u'confid', u'avoid', u'nurs', u'strike'] [u'promis', u'thorough', u'prison', u'abus', u'probe'] [u'senat', u'condemn', u'abus', u'iraqi', u'prison'] [u'senat', u'condemn', u'mistreat', u'iraqi', u'prison'] [u'vail', u'meet', u'counterpart'] [u'vanuatu'] [u'slash', u'councillor', u'posit'] [u'vice', u'chancellor', u'fail', u'negoti'] [u'judg', u'rise'] [u'viduka', u'turkey', u'match'] [u'wagga', u'resid', u'face', u'increas', u'rat', u'fee'] [u'govt', u'accus', u'stall', u'financi', u'disclosur'] [u'walker', u'play', u'lower', u'grade'] [u'polic', u'support', u'return', u'escap', u'prison'] [u'cemeteri', u'vandalis', u'gaza'] [u'warn', u'issu', u'zealand', u'kill', u'iraq'] [u'wild', u'dog', u'impact', u'sheep', u'number'] [u'wire', u'rope', u'barrier', u'improv', u'pacif', u'highway', u'safeti'] [u'work', u'underway', u'improv', u'intersect', u'safeti'] [u'young', u'volunt', u'hard', u'come'] [u'zimbabwean', u'rebel', u'cricket', u'chief'] [u'church', u'open', u'internet', u'faith'] [u'accus', u'soldier', u'speak', u'abus', u'charg'] [u'public', u'servic', u'wine', u'industri', u'provid'] [u'say', u'need', u'curfew'] [u'soul', u'search', u'cricket', u'head'] [u'agreement', u'reach', u'return', u'remain', u'isra'] [u'impos', u'fuel', u'surcharg', u'ticket'] [u'aussi', u'readi', u'crush', u'second', u'string', u'zimbabwean'] [u'australia', u'retain', u'rat', u'despit', u'elect'] [u'australia', u'popul', u'increas', u'divers', u'studi'] [u'bali', u'paedophil', u'hang', u'convict'] [u'bamboo', u'extinct', u'devast', u'speci'] [u'bangladesh', u'readi', u'plung'] [u'bateman', u'repres', u'rugbi', u'team'] [u'bathurst', u'thrill', u'budget', u'boost'] [u'baxter', u'main', u'detent', u'centr', u'port', u'hedland'] [u'behead', u'american', u'appal', u'downer'] [u'berrigan', u'name', u'half', u'bronco'] [u'biotechnolog', u'compani', u'close', u'canola', u'program'] [u'boral', u'takeov', u'attract', u'accc'] [u'bosnia', u'expert', u'mass', u'grave'] [u'brazil', u'expel', u'york', u'time', u'correspond'] [u'brumbi', u'host', u'record', u'crowd'] [u'brunswick', u'bodi', u'associ', u'underworld', u'hit'] [u'bryant', u'plead', u'guilti', u'rape', u'charg'] [u'budget', u'mix', u'result', u'indigen', u'peopl', u'atsic'] [u'budget', u'boost', u'road', u'southern'] [u'budget', u'cut', u'affect', u'epa', u'abil'] [u'budget', u'ignor', u'incom', u'earner', u'gallop'] [u'businessman', u'morgan', u'launch', u'rival', u'liverpool'] [u'canada', u'target', u'unwant', u'email'] [u'cane', u'farmer', u'urg', u'embrac', u'chang'] [u'carr', u'hit', u'elect', u'budget'] [u'caus', u'qanta', u'mishap', u'undetermin'] [u'china', u'celebr', u'birth', u'babi', u'freez'] [u'china', u'econom', u'transit', u'australia', u'futur'] [u'citi', u'tri', u'recoup', u'faulti', u'netbal', u'court', u'cost'] [u'coff', u'harbour', u'join', u'fight', u'save', u'rail', u'line'] [u'collingwood', u'appeal', u'imag', u'damag', u'kick'] [u'conrad', u'black', u'associ', u'reach', u'settlement'] [u'conserv', u'group', u'hop', u'wast', u'dump', u'appeal'] [u'cooper', u'breweri', u'benefit', u'danish', u'royal', u'wed'] [u'coron', u'deliv', u'find', u'sleep', u'apnoea', u'case'] [u'costello', u'rush', u'famili', u'payment', u'parliament'] [u'councillor', u'resign', u'prompt', u'elect'] [u'council', u'vote', u'fluorin', u'drink', u'water'] [u'counsel', u'servic', u'claim', u'locat', u'fuel'] [u'crude', u'break', u'barrier'] [u'daimlerchryls', u'commit', u'mitsubishi'] [u'dairi', u'farmer', u'threaten', u'coalit', u'poll', u'support'] [u'danih', u'say', u'struggl', u'club', u'need', u'cash', u'inject'] [u'dept', u'investig', u'aborigin', u'anim', u'trap', u'claim'] [u'desert', u'trek', u'mar', u'experi'] [u'devonport', u'triathlon', u'move', u'south'] [u'downer', u'hail', u'enorm', u'commit', u'pacif'] [u'dozen', u'kill', u'battl', u'sadr', u'militia'] [u'elder', u'cyclist', u'die', u'collis'] [u'evan', u'shire', u'resid', u'threaten', u'withhold', u'rat'] [u'farmer', u'group', u'welcom', u'compani', u'wheat', u'decis'] [u'firefight', u'anger', u'snub', u'canberra'] [u'firefight', u'tell', u'canberra', u'inquest', u'concern'] [u'firi', u'issu', u'smoke', u'alarm', u'warn', u'hous'] [u'fisher', u'helm', u'perth'] [u'filipino', u'kill', u'iraq', u'attack'] [u'kill', u'glasgow', u'factori', u'blast'] [u'fraser', u'suspend', u'attack', u'aquilina'] [u'french', u'guantanamo', u'detaine', u'return', u'home'] [u'girl', u'serious', u'injur', u'road', u'smash'] [u'glasgow', u'blast', u'toll', u'hit', u'seven'] [u'govt', u'alloc', u'fund', u'heat', u'swim', u'pool'] [u'govt', u'fund', u'pneumococc', u'vaccin'] [u'govt', u'ask', u'right', u'question', u'hick', u'lawyer'] [u'govt', u'urg', u'sale', u'promot', u'rail', u'network'] [u'govt', u'work', u'reduc', u'hospit', u'emerg', u'wait'] [u'greec', u'address', u'secur', u'concern', u'fear'] [u'greek', u'govt', u'criticis', u'australian', u'travel', u'warn'] [u'gregan', u'say', u'play'] [u'hewitt', u'down', u'bjorkman', u'hamburg'] [u'holi', u'general', u'link', u'iraq', u'prison', u'scandal'] [u'howard', u'deni', u'elect', u'immin'] [u'howard', u'plead', u'ignor', u'iraq', u'prison', u'abus'] [u'drop', u'match', u'fix', u'case', u'atapattu'] [u'indigen', u'children', u'urg', u'pursu', u'medic', u'career'] [u'investig', u'begin', u'armi', u'abus'] [u'say', u'athen', u'prepar', u'target'] [u'islam', u'websit', u'show', u'behead', u'american'] [u'isra', u'helicopt', u'kill', u'gaza', u'strike'] [u'isra', u'troop', u'search', u'bodi', u'dead', u'soldier'] [u'italian', u'club', u'search', u'amid', u'match', u'fix'] [u'return', u'australian', u'hand'] [u'japan', u'beef', u'look', u'continu'] [u'jewelleri', u'thiev', u'larg', u'perth'] [u'kalgoorli', u'host', u'nation', u'fring', u'dweller', u'forum'] [u'land', u'council', u'review', u'mismanag', u'alleg'] [u'leicest', u'assault', u'case', u'remain', u'open', u'lawyer'] [u'lend', u'figur', u'hous', u'market', u'cool'] [u'want', u'truck', u'driver', u'road', u'toll'] [u'liber', u'backbench', u'critic', u'budget'] [u'limit', u'soccer', u'season', u'ahead'] [u'mackay', u'top', u'state', u'tourism', u'growth'] [u'magpi', u'confirm', u'appeal', u'holland'] [u'jail', u'run', u'teenag'] [u'shoot', u'dead', u'perth'] [u'stab', u'sydney', u'brawl'] [u'unit', u'unveil', u'preseason', u'event'] [u'maroochi', u'mayor', u'consid', u'liabil', u'fall'] [u'master', u'plan', u'approv', u'brisban', u'airport'] [u'mayor', u'chang', u'view', u'forest', u'sale'] [u'medic', u'research', u'institut', u'receiv', u'budget', u'fund'] [u'mexico', u'forc', u'video', u'creat', u'stir'] [u'mill', u'seek', u'commit', u'member', u'quit'] [u'minist', u'confid', u'tugun', u'bypass', u'ahead'] [u'miss', u'plane', u'touch', u'taroom'] [u'mix', u'reaction', u'budget', u'central', u'victoria'] [u'farmer', u'chang', u'manag', u'practic', u'report'] [u'clash', u'budget', u'benefit'] [u'disagre', u'defenc', u'site', u'develop'] [u'welcom', u'budget', u'boost', u'nurs', u'home'] [u'welcom', u'budget', u'initi', u'famili'] [u'welcom', u'fund', u'upgrad', u'polic', u'station'] [u'murali', u'tell', u'bowl', u'doosra', u'ban'] [u'murder', u'suspect', u'accus', u'coercion'] [u'muslim', u'council', u'call', u'british', u'troop', u'withdraw'] [u'head', u'disappoint', u'half', u'year', u'profit'] [u'certainti', u'blue', u'squad', u'gould'] [u'norman', u'happi', u'tiger', u'close', u'record'] [u'north', u'coast', u'pleas', u'budget', u'outcom'] [u'seek', u'medicin', u'cannabi', u'trial'] [u'orchardist', u'frustrat', u'meet', u'discuss'] [u'outback', u'road', u'neglect', u'budget', u'govt'] [u'outrag', u'behead'] [u'pacif', u'island', u'team', u'replac', u'coach'] [u'pakistani', u'charg', u'forg', u'document'] [u'pakistani', u'guantanamo', u'detaine', u'releas'] [u'lament', u'budget', u'fund', u'farmer'] [u'pike', u'admit', u'health', u'pressur'] [u'anoint', u'costello', u'successor'] [u'consid', u'hec', u'deal', u'student'] [u'polic', u'charg', u'doubl', u'murder'] [u'pom', u'rattl', u'aussi', u'ash', u'claim', u'waugh'] [u'poor', u'financ', u'bandag', u'say'] [u'poor', u'leadership', u'iraq', u'prison', u'abus', u'scandal'] [u'poppi', u'price', u'drop'] [u'port', u'confid', u'despit', u'lengthi', u'injuri', u'list'] [u'post', u'mortem', u'carri', u'bodi'] [u'pottharst', u'appeal', u'olymp', u'chanc'] [u'psychiatr', u'nurs', u'disput', u'continu'] [u'public', u'servic', u'best', u'thing', u'canberra'] [u'polic', u'give', u'anti', u'terror', u'power'] [u'queensland', u'divid', u'feder', u'budget'] [u'racq', u'concern', u'petrol', u'price'] [u'radic', u'iraqi', u'cleric', u'offer', u'truce'] [u'rain', u'tip', u'bring', u'good', u'wheat', u'harvest'] [u'redevelop', u'showground', u'maintain', u'high', u'cost'] [u'region', u'highway', u'receiv', u'feder', u'fund'] [u'region', u'rail', u'restor', u'budget', u'track'] [u'rescuer', u'search', u'glasgow', u'rubbl', u'blast', u'survivor'] [u'research', u'warn', u'health', u'pressur'] [u'road', u'fund', u'erupt', u'wake', u'budget'] [u'rural', u'doctor', u'budget', u'mix', u'report'] [u'rural', u'group', u'endors', u'budget'] [u'russian', u'magnat', u'deni', u'bail', u'ahead', u'fraud'] [u'safe', u'hous', u'need', u'itiner', u'aborigin'] [u'govt', u'label', u'budget', u'disappoint'] [u'welcom', u'budget', u'wine', u'break'] [u'seed', u'prove', u'stick', u'point', u'debat'] [u'sharon', u'vow', u'palestinian', u'milit'] [u'simoni', u'take', u'lead', u'itali', u'mountain', u'claim'] [u'slow', u'serena', u'advanc', u'rome'] [u'small', u'busi', u'disappoint', u'budget'] [u'socceroo', u'understudi', u'give', u'chanc', u'shine'] [u'south', u'africa', u'morocco', u'compet', u'africa'] [u'south', u'east', u'famili', u'winner', u'budget'] [u'south', u'korea', u'delay', u'send', u'troop', u'iraq'] [u'spain', u'celebr', u'dali', u'centenari'] [u'staniforth', u'quit', u'waratah'] [u'steel', u'union', u'compani', u'disput', u'sick'] [u'steer', u'fault', u'prompt', u'mass', u'holden', u'recal'] [u'stem', u'cell', u'law', u'step', u'closer'] [u'suspect', u'quick', u'fail', u'bless'] [u'age', u'care', u'wine', u'industri', u'winner', u'budget'] [u'tasmanian', u'wineri', u'welcom', u'relief'] [u'kill', u'youth', u'riot', u'nigeria'] [u'tourism', u'leader', u'surpris', u'qanta', u'surcharg'] [u'tribun', u'suspend', u'green', u'clear', u'heffernan'] [u'appear', u'court', u'cannabi', u'cultiv'] [u'underworld', u'kill', u'suspect', u'order'] [u'unilater', u'sanction', u'unjust', u'unjustifi'] [u'union', u'say', u'student', u'miss', u'budget', u'spend'] [u'staff', u'hold', u'protest'] [u'militari', u'probe', u'claim', u'afghan', u'prison', u'abus'] [u'network', u'video', u'diari', u'iraqi', u'prison'] [u'place', u'sanction', u'syria', u'terror', u'support'] [u'propos', u'maritim', u'secur', u'cooper', u'asia'] [u'vail', u'applaud', u'thailand'] [u'vanuatu', u'opposit', u'appeal', u'parliament', u'dissolut'] [u'vanuatu', u'hold', u'snap', u'elect'] [u'wall', u'street', u'help', u'pump'] [u'western', u'wineri', u'pleas', u'budget', u'outcom'] [u'wine', u'price', u'expect', u'fall', u'follow', u'budget'] [u'wineri', u'toast', u'chang'] [u'woman', u'bodi', u'park'] [u'investig', u'underground', u'mine', u'opportun'] [u'actor', u'travolta', u'head', u'western'] [u'administr', u'appoint', u'local', u'land', u'council'] [u'albatross', u'flight', u'deck', u'trainer'] [u'black', u'collin', u'ban', u'high', u'tackl'] [u'steadi', u'job'] [u'reveal', u'vaccin', u'scheme'] [u'anti', u'freez', u'flounder', u'reveal', u'secret'] [u'apathi', u'blame', u'poor', u'council', u'merger', u'meet'] [u'arianespac', u'win', u'contract', u'launch', u'australian'] [u'armi', u'accus', u'fail', u'stop', u'recruit', u'abus'] [u'artist', u'launch', u'archibald', u'challeng'] [u'australia', u'draw', u'wale', u'world'] [u'australian', u'risk', u'prison', u'abus'] [u'ballarat', u'strateg', u'plan', u'go', u'draw'] [u'bank', u'resourc', u'stock', u'pull'] [u'bath', u'hous', u'redevelop', u'ahead'] [u'bega', u'council', u'seek', u'comment', u'draft', u'plan'] [u'berrigan', u'hamstr', u'scare'] [u'blair', u'reject', u'prison', u'abus', u'cover', u'alleg'] [u'blair', u'say', u'iraqi', u'abus', u'photo', u'certain', u'fake'] [u'blue', u'dismiss', u'kouta', u'injuri', u'rumour'] [u'boomer', u'reli', u'local', u'athen', u'campaign'] [u'brisban', u'psychologist', u'breach', u'ethic', u'guidelin'] [u'broom', u'busi', u'cotton', u'research'] [u'brown', u'accus', u'forestri', u'bracket', u'creep'] [u'budget', u'provid', u'windfal', u'care', u'centr'] [u'burk', u'outer', u'wallabi', u'train', u'squad'] [u'compani', u'develop', u'interact', u'timet'] [u'california', u'porn', u'industri', u'resum', u'product'] [u'riddoch', u'upgrad', u'state', u'budget'] [u'calypso', u'spin', u'twin', u'valentin', u'die', u'age'] [u'cane', u'toad', u'wipe', u'kakadu', u'quoll'] [u'cann', u'roll', u'carpet', u'dark', u'spanish', u'film'] [u'cherbourg', u'plead', u'money'] [u'china', u'jail', u'outspoken', u'journalist'] [u'china', u'jail', u'base', u'dissid'] [u'compani', u'releas', u'rail', u'overpass', u'plan'] [u'costello', u'introduc', u'legisl'] [u'council', u'urg', u'govt', u'fund', u'man', u'river', u'work'] [u'count', u'begin', u'indian', u'elect'] [u'cruis', u'ship', u'compani', u'set', u'sight', u'albani'] [u'bronco', u'point', u'appeal'] [u'death', u'toll', u'scottish', u'blast', u'rise'] [u'deleg', u'demand', u'princ', u'highway', u'upgrad'] [u'democrat', u'leader', u'fume', u'renmark', u'power'] [u'depart', u'declar', u'boulder', u'deodoris'] [u'diesel', u'runoff', u'worri', u'crew'] [u'expect', u'figur'] [u'downer', u'doubt', u'abus', u'guantanamo'] [u'drought', u'effect', u'world', u'psychologist'] [u'elder', u'victim', u'ident', u'elud', u'polic'] [u'electr', u'fault', u'suspect', u'million', u'dollar', u'blaze'] [u'elliot', u'offload', u'rice', u'properti'] [u'ethnic', u'sound', u'unit', u'eurovis'] [u'eurovis', u'kick', u'love', u'stori', u'stomp'] [u'agenc', u'prais', u'interst', u'guidelin'] [u'firefight', u'deni', u'tri', u'concern'] [u'fish', u'boat', u'apprehend', u'coast'] [u'fish', u'fund', u'disappoint', u'group'] [u'fishi', u'diet', u'produc', u'healthier', u'babi', u'studi'] [u'isra', u'soldier', u'kill', u'bomb', u'attack'] [u'teacher', u'charg', u'child', u'offenc'] [u'frost', u'sentenc', u'sever', u'barrist', u'say'] [u'fuel', u'sale', u'boost', u'turnov', u'cole', u'myer'] [u'ganguli', u'advoc', u'tier', u'test'] [u'generous', u'super', u'scheme', u'soon', u'andren'] [u'german', u'polic', u'question', u'sasser', u'worm', u'suspect'] [u'golden', u'outback', u'board', u'urg', u'region', u'cooper'] [u'gould', u'step', u'blue', u'captainci', u'decis'] [u'govern', u'offer', u'rent', u'land', u'hardwood'] [u'govt', u'accus', u'ignor', u'child', u'care', u'requir'] [u'govt', u'challeng', u'reveal', u'hickss', u'stori'] [u'govt', u'pledg', u'fund', u'deep', u'water', u'field'] [u'govt', u'stand', u'child', u'offend', u'program'] [u'govt', u'target', u'adult', u'imag', u'mobil', u'phone'] [u'govt', u'examin', u'hick', u'abus', u'claim'] [u'greec', u'worri', u'extremist', u'warn', u'olymp'] [u'greenough', u'prison', u'escape', u'recaptur'] [u'green', u'union', u'oppos', u'forest', u'privatis'] [u'grow', u'medicin', u'cannabi', u'local', u'brogden'] [u'gunfir', u'rip', u'night', u'iraq', u'footbal', u'team'] [u'harrington', u'say', u'olymp', u'golf', u'tournament'] [u'hart', u'doubt', u'clash', u'bomber'] [u'health', u'clinic', u'minimum', u'staff'] [u'heart', u'break', u'ibrox', u'hoodoo'] [u'hewitt', u'storm', u'germani'] [u'hizbollah', u'slam', u'behead', u'american', u'islam'] [u'rock', u'ventur', u'list'] [u'hous', u'market', u'steadi', u'despit', u'price', u'predict'] [u'hudghton', u'defend', u'feroci', u'saint'] [u'hunter', u'busi', u'seek', u'servic'] [u'icrc', u'report', u'guantanamo', u'hand'] [u'india', u'seek', u'assist', u'queensland', u'rail'] [u'investig', u'find', u'need', u'court'] [u'iraq', u'abus', u'photo', u'shock', u'senat'] [u'iraqi', u'cleric', u'hint', u'deal'] [u'iraq', u'militari', u'command', u'promot'] [u'iraq', u'prison', u'abus', u'photo', u'tame', u'contractor', u'say'] [u'israel', u'hit', u'second', u'armour', u'attack'] [u'kitten', u'tortur', u'soldier', u'sack', u'rspca'] [u'kosciuszko', u'park', u'plan', u'readi'] [u'kouta', u'prove', u'fit'] [u'labor', u'talk', u'august', u'elect', u'prospect'] [u'landown', u'tension', u'threaten'] [u'lara', u'dayer', u'bangladesh'] [u'latham', u'offer', u'wider', u'cut', u'youth', u'jobless', u'plan'] [u'latham', u'prepar', u'budget', u'respons'] [u'lennon', u'llewellyn', u'meet', u'nurs', u'union'] [u'lippi', u'leav', u'juve', u'hand', u'lazio'] [u'littl', u'patti', u'hold', u'evolutionari', u'secret'] [u'loftus', u'road', u'host', u'rugbi', u'leagu', u'nation'] [u'manag', u'posit', u'purchas', u'despit'] [u'arrest', u'fatal', u'shoot'] [u'marin', u'reseach', u'assess', u'solomon', u'island'] [u'mari', u'royal', u'wed', u'cost', u'dane'] [u'mayor', u'angri', u'block', u'cane', u'farm', u'develop'] [u'mayor', u'rail', u'closur', u'protest', u'parliament'] [u'mcgrath', u'past', u'peak', u'heali'] [u'melbourn', u'murder', u'suspect', u'danger'] [u'charg', u'more', u'drug', u'raid'] [u'meninga', u'appear', u'court'] [u'merciless', u'mauresmo', u'make', u'progress', u'rome'] [u'migrant', u'settlement', u'welcom'] [u'mine', u'bodi', u'disappoint', u'explor', u'fund'] [u'minist', u'deni', u'long', u'tenant', u'consum', u'advic', u'delay'] [u'minist', u'council', u'squad', u'spark', u'merger'] [u'minist', u'warn', u'fishermen', u'offer', u'negoti'] [u'monsanto', u'end', u'canola'] [u'monsanto', u'shut', u'riverina', u'program'] [u'moor', u'fahrenheit', u'releas'] [u'fund', u'region', u'partnership', u'scheme'] [u'injuri', u'port', u'ahead', u'kangaroo', u'clash'] [u'mortar', u'fire', u'near', u'italian', u'embassi', u'baghdad'] [u'mother', u'warn', u'sleep', u'babi'] [u'motorist', u'speed', u'despit', u'book', u'drop'] [u'call', u'nambour', u'hospit', u'improv'] [u'defend', u'communiti', u'polici'] [u'seek', u'altern', u'taker', u'feder', u'fund'] [u'urg', u'dairi', u'farmer', u'fight', u'better', u'price'] [u'murali', u'retir', u'world'] [u'nauru', u'threaten', u'protest', u'jail', u'term'] [u'newcastl', u'council', u'consid', u'free', u'train', u'travel'] [u'zealand', u'captain', u'fleme', u'doubt', u'test'] [u'justif', u'behead', u'bush'] [u'children', u'baxter', u'plead'] [u'role', u'flint', u'communic', u'watchdog'] [u'govt', u'launch', u'anti', u'smoke'] [u'teacher', u'condemn', u'govern', u'wage', u'case'] [u'introduc', u'onlin', u'map', u'program', u'mine'] [u'nuclear', u'watchdog', u'call', u'wast', u'dump', u'review'] [u'occi', u'escap', u'minut', u'victori'] [u'older', u'tourist', u'flock', u'outback'] [u'opera', u'hous', u'trespass', u'face', u'jail', u'term'] [u'opposit', u'dismiss', u'hec', u'volunt', u'plan'] [u'orang', u'polic', u'angri', u'upgrad', u'fund'] [u'paedophil', u'leav', u'letter', u'clear'] [u'palestinian', u'return', u'isra', u'soldier', u'remain'] [u'petacchi', u'triumph', u'mcewen', u'simoni', u'pink'] [u'pie', u'lose', u'holland', u'appeal'] [u'consid', u'bond', u'clear', u'debt'] [u'polic', u'confirm', u'dead', u'woman', u'ident'] [u'polic', u'defus', u'incendiari', u'devic', u'athen'] [u'polic', u'search', u'load', u'bomb'] [u'pont', u'talk', u'tough', u'aussi'] [u'postal', u'strike', u'like', u'canberra', u'week'] [u'postal', u'worker', u'strike'] [u'posti', u'strike'] [u'priddi', u'stay', u'panther'] [u'priest', u'ask', u'reliev', u'duti'] [u'princ', u'charl', u'return', u'greek', u'monasteri'] [u'princ', u'highway', u'dub', u'australia', u'danger'] [u'push', u'extend', u'dingo', u'fenc'] [u'queensland', u'warn', u'rabbit', u'fin'] [u'rail', u'group', u'criticis', u'cost', u'blow'] [u'rann', u'lobbi', u'poker', u'machin'] [u'region', u'airlin', u'adopt', u'fuel', u'surcharg'] [u'report', u'recommend', u'free', u'child', u'detaine'] [u'resign', u'shut', u'adelaid', u'matern', u'ward'] [u'roff', u'call'] [u'rspca', u'wait', u'hear', u'kitten', u'tortur'] [u'rule', u'indian', u'parti', u'suffer', u'shock', u'defeat'] [u'rumsfeld', u'make', u'surpris', u'visit', u'baghdad'] [u'rumsfeld', u'visit', u'ghraib', u'prison'] [u'rural', u'australian', u'miss', u'cut', u'democrat'] [u'saint', u'liverpool', u'europ'] [u'scientist', u'discov', u'epilepsi', u'suscept', u'gene'] [u'sculli', u'defend', u'fund', u'princ', u'highway'] [u'search', u'continu', u'glasgow', u'blast', u'survivor'] [u'senat', u'pass', u'budget', u'famili', u'payment'] [u'sikh', u'alleg', u'discrimin', u'adelaid', u'hotel'] [u'smart', u'card', u'pave', u'mother'] [u'smoke', u'class', u'action', u'go', u'court'] [u'soldier', u'tell', u'abus', u'iraq', u'camp', u'bucca'] [u'somar', u'favour', u'polit', u'allianc'] [u'springbok', u'coach', u'play', u'earli', u'mind', u'game'] [u'spi', u'famili', u'challeng', u'govt', u'suicid'] [u'staff', u'meet', u'detent', u'centr', u'closur'] [u'stanhop', u'accus', u'mislead', u'public'] [u'stanhop', u'confid', u'motion', u'chang'] [u'start', u'date', u'ballarat', u'ararat', u'rail'] [u'storm', u'ridicul', u'suggest', u'reloc'] [u'student', u'bitter', u'budget', u'exclus'] [u'supercar', u'chief', u'sign', u'year', u'bathurst', u'deal'] [u'sydney', u'murder', u'suspect', u'admit', u'coincid'] [u'tarantino', u'give', u'thumb', u'movi', u'pirat'] [u'relief', u'say', u'wine', u'maker'] [u'time', u'run', u'gill', u'deal'] [u'toowoomba', u'host', u'wine', u'skill', u'workshop'] [u'tourism', u'oper', u'want', u'fraser', u'great', u'walk'] [u'town', u'divid', u'shop', u'centr', u'propos'] [u'travolta', u'leav', u'longreach', u'resid', u'star', u'strike'] [u'trekker', u'begin', u'desert', u'cross'] [u'tugun', u'bypass', u'receiv', u'nat', u'support'] [u'palestinian', u'kill', u'gaza', u'strike'] [u'charg', u'latrob', u'arm', u'robberi'] [u'concern', u'school', u'budget', u'alloc'] [u'unlicens', u'builder', u'fine'] [u'unrest', u'continu', u'nigeria'] [u'firm', u'pois', u'invest', u'mitsubishi', u'report'] [u'forc', u'kill', u'suspect', u'taliban', u'afghan', u'offici'] [u'price', u'soar', u'record', u'close', u'high'] [u'set', u'prison', u'court', u'martial'] [u'venezuela', u'evict', u'militari'] [u'govt', u'accus', u'influenc', u'local', u'elect'] [u'virgin', u'implement', u'fuel', u'surcharg'] [u'proceed', u'potenti', u'landmark', u'case'] [u'wagga', u'observatori', u'project', u'seek', u'corpor', u'support'] [u'wall', u'steadi', u'despit', u'price', u'hike'] [u'wanganeen', u'line', u'mileston', u'game'] [u'women', u'dub', u'britain', u'hat', u'leav', u'prison'] [u'iraqi', u'militiamen', u'kill', u'najaf', u'sadr', u'spokesman'] [u'abalon', u'closur', u'come', u'forc'] [u'accident', u'poison', u'rise', u'mous', u'plagu', u'begin'] [u'chemist', u'face', u'competit'] [u'criticis', u'vaccin', u'delay'] [u'anderson', u'begin', u'budget', u'sell', u'tamworth'] [u'antibiot', u'direct', u'north', u'marin', u'research'] [u'australia', u'walker', u'stride', u'darwin'] [u'arsenal', u'rewrit', u'record', u'book'] [u'arson', u'rule', u'classroom', u'blaze'] [u'aussi', u'domin', u'rock', u'chart'] [u'aust', u'vet', u'award', u'franc', u'highest', u'decor'] [u'bangladesh', u'caribbean', u'tour', u'open'] [u'barra', u'farm', u'open', u'door', u'tourist'] [u'beatti', u'keep', u'document', u'secret'] [u'behead', u'websit', u'shut'] [u'blue', u'norman', u'troubl'] [u'bomber', u'continu', u'charg'] [u'border', u'warn', u'murali', u'doosra'] [u'brazilian', u'court', u'grant', u'time', u'journalist'] [u'breastfe', u'cut', u'cardiovascular', u'risk', u'studi'] [u'bremer', u'say', u'doesnt', u'stay', u'welcom'] [u'british', u'armi', u'pleas', u'govt', u'photo', u'comment'] [u'british', u'prison', u'escap', u'seek', u'tougher', u'jail'] [u'bronco', u'welcom', u'leader'] [u'budget', u'strip', u'atsic', u'power', u'earli', u'say'] [u'build', u'blitz', u'begin', u'north', u'west'] [u'bulk', u'bill', u'rate', u'rise'] [u'bunburi', u'score', u'boom', u'citi', u'studi'] [u'burmes', u'opposit', u'boycott', u'constitut', u'court'] [u'driver', u'consid', u'industri', u'action'] [u'busi', u'usual', u'trial', u'say', u'bayer'] [u'campbel', u'verg', u'arsenal', u'deal'] [u'theft', u'rise', u'despit', u'polic', u'warn'] [u'centr', u'want', u'uranium', u'report', u'public'] [u'cholesterol', u'drug', u'show', u'promis', u'fight'] [u'blame', u'zarqawi', u'behead'] [u'class', u'close', u'werribe', u'school'] [u'communiti', u'group', u'promot', u'albani', u'invest'] [u'communiti', u'leader', u'seek', u'talk', u'calder', u'fund'] [u'communiti', u'rais', u'issu', u'region', u'tour'] [u'compo', u'claim', u'follow', u'child', u'detent', u'group'] [u'concern', u'staff', u'hospit', u'closur'] [u'concern', u'remain', u'locust', u'riverland'] [u'confer', u'address', u'urban', u'mangrov', u'manag'] [u'congress', u'upset', u'indian', u'poll'] [u'cooma', u'servic', u'return'] [u'costa', u'meet', u'rail', u'worker', u'millennium', u'contract'] [u'costello', u'accus', u'latham', u'polici', u'pinch'] [u'costello', u'urg', u'brack', u'come', u'clean', u'windfal'] [u'council', u'seek', u'age', u'care', u'facil', u'woodgat'] [u'council', u'welcom', u'plan', u'abolish', u'power', u'connect'] [u'court', u'cut', u'predat', u'excess', u'jail', u'term'] [u'court', u'recommend', u'chang', u'mental', u'health'] [u'court', u'reject', u'welsh', u'euro', u'appeal'] [u'cricket', u'comment', u'sidhu', u'get', u'audienc'] [u'crow', u'ladham', u'bomber', u'game'] [u'crow', u'expect', u'rough', u'stuff', u'stenglein'] [u'crusad', u'marshal', u'make', u'miracul', u'recoveri'] [u'cryptic', u'cricket', u'comment', u'find', u'audienc'] [u'dalgeti', u'dress', u'women', u'endur'] [u'dane', u'count', u'royal', u'wed'] [u'dealer', u'turn', u'apart', u'drug', u'den', u'polic'] [u'doctor', u'certifi', u'posit', u'free'] [u'drug', u'court', u'rehab', u'success', u'welfar', u'agenc', u'say'] [u'east', u'germani', u'hop', u'gold', u'rush', u'nugget'] [u'elder', u'face', u'court', u'indec', u'propos'] [u'elector', u'roll', u'plan', u'favour', u'govt'] [u'elliott', u'sell', u'rice', u'hold', u'insolv', u'wake'] [u'eungella', u'park', u'access', u'restrict', u'winter'] [u'falconio', u'brother', u'arriv', u'murdoch', u'trial'] [u'fan', u'tahiti'] [u'farmer', u'bare', u'brunt', u'weed', u'cost'] [u'fast', u'train', u'servic', u'await', u'infrastructur', u'upgrad'] [u'father', u'fertil', u'femal', u'egg'] [u'afghan', u'grant', u'refuge', u'status'] [u'firefight', u'tell', u'tell', u'public'] [u'half', u'athen', u'olymp', u'stadium', u'roof', u'place'] [u'fishermen', u'face', u'illeg', u'net', u'fin'] [u'fli', u'doctor', u'celebr', u'year', u'servic'] [u'hospitalis', u'truck', u'smash'] [u'free', u'iraqi', u'prison', u'tell', u'abus'] [u'frustrat', u'murali', u'bowl', u'doosra'] [u'fuel', u'cost', u'forc', u'airfar', u'increas'] [u'fuel', u'cost', u'forc', u'riverina', u'airfar', u'increas'] [u'fugit', u'businessman', u'forc'] [u'gallop', u'dangl', u'carrot', u'tuqiri'] [u'german', u'part', u'maker', u'head', u'adelaid'] [u'gidley', u'give', u'knight', u'golden'] [u'govt', u'overhaul', u'bankruptci', u'law'] [u'govt', u'releas', u'speed', u'camera', u'report'] [u'govt', u'unconcern', u'nuclear', u'dump', u'delay'] [u'greek', u'terror', u'group', u'olymp', u'warn'] [u'green', u'want', u'detail', u'labor', u'forest', u'pledg'] [u'groom', u'norman', u'stay', u'shanghai', u'content'] [u'group', u'urg', u'builder', u'compli', u'law'] [u'guantanamo', u'detaine', u'contradict', u'abus', u'claim'] [u'hewitt', u'struggl', u'german', u'master'] [u'hill', u'announc', u'middl', u'east', u'chang', u'command'] [u'hotel', u'owner', u'offer', u'sikh', u'apologet', u'meet'] [u'howard', u'echo', u'rumsfeld', u'terror', u'fight', u'bodi', u'blow'] [u'howard', u'visit', u'elector'] [u'human', u'right', u'chief', u'stand', u'detent', u'report'] [u'quit', u'lord', u'year', u'dubai'] [u'inflat', u'continu', u'climb', u'china'] [u'interact', u'scienc', u'team', u'seek', u'remot', u'reaction'] [u'inter', u'desper', u'season', u'high', u'note'] [u'israel', u'give', u'green', u'light', u'gaza', u'demolit'] [u'italian', u'command', u'confirm', u'prison', u'abus', u'knowledg'] [u'italian', u'polic', u'seek', u'pantani', u'drug', u'pusher'] [u'kouta', u'gabba', u'clash'] [u'labor', u'confus'] [u'larsson', u'prepar', u'celtic', u'farewel'] [u'latham', u'dismiss', u'vanston', u'fetch', u'child'] [u'launceston', u'host', u'brain', u'injuri', u'confer'] [u'local', u'citizen', u'honour', u'landmark', u'name'] [u'local', u'decid', u'fate', u'detent', u'centr'] [u'lonard', u'share', u'round', u'lead', u'texa'] [u'lpga', u'veteran', u'scranton', u'lead', u'tennesse'] [u'malaysia', u'ban', u'terror', u'websit'] [u'malthous', u'disappoint', u'holland', u'action'] [u'face', u'extra', u'charg'] [u'jail', u'life', u'scyth', u'kill'] [u'jail', u'sydney', u'aiport', u'bomb', u'hoax'] [u'mari', u'donaldson', u'walk', u'aisl', u'practic'] [u'mass', u'smallpox', u'terror', u'vaccin', u'need', u'report'] [u'matern', u'payment', u'rais', u'teenag', u'pregnanc', u'fear'] [u'maxin', u'carr', u'releas', u'prison'] [u'mayor', u'urg', u'villawood', u'focus', u'despit', u'baxter', u'upgrad'] [u'mcewen', u'edg', u'sprint', u'simoni', u'lead', u'giro'] [u'medibank', u'mislead', u'court', u'find'] [u'medicar', u'plus', u'work', u'abbott', u'say'] [u'midwif', u'fatherhood', u'survey', u'yield', u'unexpect'] [u'investig', u'worker', u'lucki', u'escap'] [u'minist', u'insist', u'rail', u'closur', u'ahead'] [u'minist', u'question', u'local', u'elect', u'lobbi'] [u'modern', u'live', u'fray', u'gene', u'confer', u'hear'] [u'gambier', u'hospit', u'review', u'releas', u'lib'] [u'morgan', u'clean', u'begin'] [u'muslim', u'famili', u'murder', u'pakistan'] [u'navratilova', u'hand', u'french', u'open', u'wildcard'] [u'salari', u'hike'] [u'land', u'law', u'pass', u'upper', u'hous'] [u'gungahlin', u'protest', u'appeal', u'right'] [u'newman', u'promis', u'garbag', u'claim', u'review'] [u'korea', u'marino', u'establish', u'diplomat', u'tie'] [u'north', u'korea', u'crisi', u'talk', u'wholesom', u'note'] [u'probe', u'rooster', u'lockyer', u'approach'] [u'help', u'nyngan', u'cobar', u'water', u'purchas'] [u'price', u'surg', u'record', u'close', u'high'] [u'origin', u'blow', u'barrett', u'thompson'] [u'overfish', u'extinct', u'year'] [u'pakistan', u'shiit', u'famili', u'slay', u'home'] [u'parent', u'respons', u'child', u'crime', u'group'] [u'pentagon', u'conced', u'interrog', u'techniqu', u'illeg'] [u'pentagon', u'want', u'bigger', u'chest'] [u'petrol', u'top', u'litr', u'canberra'] [u'pfizer', u'pay', u'million', u'settl', u'fraud', u'case'] [u'philippin', u'arrest', u'alleg', u'terror', u'middleman'] [u'phoenix', u'swift', u'strong'] [u'pierc', u'creek', u'burn', u'continu'] [u'plantat', u'rais', u'hop', u'timber', u'industri'] [u'provinc', u'seek', u'tedi', u'fund'] [u'polic', u'appeal', u'kalgoorli', u'assault', u'wit'] [u'polic', u'condemn', u'highway', u'rock', u'attack'] [u'polic', u'drown', u'boy', u'bodi'] [u'polic', u'investig', u'alic', u'spring', u'murder'] [u'polic', u'mull', u'murder', u'charg', u'kid', u'death'] [u'polic', u'question', u'stab', u'death'] [u'polic', u'welcom', u'north', u'fund'] [u'poll', u'show', u'isra', u'support', u'gaza', u'pull'] [u'pollut', u'affect', u'unborn', u'children', u'studi'] [u'port', u'confid', u'wanganeen', u'play'] [u'posti', u'seek', u'limit', u'disrupt', u'countri'] [u'posti', u'strike', u'caus', u'mail', u'backlog', u'bundaberg'] [u'princess', u'bride', u'childhood', u'home', u'host', u'parti'] [u'produc', u'angri', u'power', u'station', u'water', u'suppli'] [u'queen', u'mari', u'accid', u'technic', u'problem'] [u'raaf', u'releas', u'fighter', u'plan'] [u'real', u'madrid', u'play', u'pride', u'amidst', u'prejudic'] [u'region', u'airlin', u'impos', u'fuel', u'surcharg'] [u'region', u'airlin', u'threaten', u'fuel', u'price', u'hike'] [u'reid', u'wheeler', u'play', u'french', u'open'] [u'report', u'reveal', u'mudge', u'abattoir', u'debt'] [u'republican', u'admit', u'there', u'mari'] [u'resolut', u'propos', u'extens', u'east', u'timor'] [u'review', u'fuel', u'price', u'differ'] [u'richardson', u'papp', u'zealand', u'control'] [u'rooster', u'slap', u'lockyer', u'report'] [u'salt', u'nightclub', u'lose', u'liquor', u'licenc'] [u'scrub', u'fire', u'deliber'] [u'seafood', u'industri', u'satisfi', u'compo', u'pledg'] [u'secur', u'concern', u'prompt', u'hospit', u'review'] [u'senat', u'committe', u'criticis', u'meat', u'decis'] [u'shark', u'shadow', u'shanghai', u'lead'] [u'smaller', u'cut', u'colon', u'surgeri', u'safer', u'studi'] [u'smoke', u'alarm', u'warn', u'renew', u'labrador'] [u'sonia', u'gandhi', u'work', u'seal', u'govern'] [u'south', u'africa', u'offer', u'haitian', u'leader', u'aristid'] [u'south', u'korean', u'presid', u'impeach', u'overturn'] [u'spur', u'snap', u'robinson', u'fail', u'land', u'milner'] [u'stanhop', u'consid', u'sue', u'bushfir', u'remark'] [u'stock', u'weaker', u'slump'] [u'student', u'threat', u'wireless', u'network'] [u'survey', u'target', u'western', u'locust', u'swarm'] [u'church', u'extend', u'abus', u'compens', u'scheme'] [u'cut', u'latham'] [u'tender', u'call', u'mat', u'cross'] [u'thai', u'buoy', u'liverpool', u'morgan', u'snub'] [u'thoma', u'confid', u'despit', u'ongo', u'shoulder', u'problem'] [u'tower', u'hill', u'project', u'excit', u'council'] [u'ray', u'replac', u'ray', u'wollongong'] [u'truck', u'driver', u'prais', u'miracl', u'accid', u'rescu'] [u'isra', u'solid', u'kill', u'rafah', u'hous'] [u'uneven', u'serena', u'lead', u'seed', u'rome', u'quarter'] [u'inflat', u'fear', u'depress', u'market'] [u'intensifi', u'sadr', u'militia'] [u'marin', u'kill', u'iraq'] [u'missil', u'shield', u'work', u'scientist', u'say'] [u'releas', u'ghraib', u'prison'] [u'treatment', u'poor', u'report'] [u'tank', u'engag', u'najaf', u'cemeteri', u'battl'] [u'vanuatu', u'head', u'earli', u'poll'] [u'dairi', u'farmer', u'look', u'brighter', u'year', u'ahead'] [u'speed', u'camera', u'fin'] [u'viduka', u'exit', u'leav', u'sour', u'tast', u'leed'] [u'villeneuv', u'attend', u'test', u'say', u'manag'] [u'voss', u'keat', u'lion'] [u'waff', u'optimist', u'land', u'clear', u'revis'] [u'meteor', u'crater', u'hint', u'mass', u'extinct'] [u'wine', u'grape', u'grower', u'struggl', u'despit', u'record', u'harvest'] [u'woodward', u'resign', u'wilko'] [u'world', u'bank', u'billion', u'corrupt', u'claim'] [u'join', u'actu', u'famili', u'test', u'case'] [u'doubt', u'sustain', u'bulk', u'level'] [u'anglican', u'focus', u'healthi', u'church'] [u'angri', u'famili', u'buri', u'behead', u'american'] [u'angri', u'houllier', u'defend', u'liverpool', u'record'] [u'atsic', u'abolit', u'disadvantag', u'indigen', u'citizen'] [u'attack', u'fear', u'caus', u'record', u'price'] [u'audit', u'reveal', u'black', u'hole', u'nasa', u'book'] [u'aussi', u'tour', u'help', u'cricket', u'team', u'manag'] [u'australia', u'claim', u'tripl', u'gold', u'sydney', u'track'] [u'australian', u'hold', u'visa', u'laps', u'complic', u'appeal'] [u'develop', u'valley', u'master', u'plan'] [u'blue', u'face', u'tough', u'gabba', u'pagan'] [u'bomber', u'assess', u'hird', u'injuri'] [u'brumbi', u'fight', u'underdog', u'chief'] [u'brumbi', u'face', u'crusad', u'decid'] [u'budget', u'commit', u'eas', u'polic', u'shortag', u'foley'] [u'burn', u'off', u'cast', u'haze', u'perth'] [u'champion', u'valencia', u'slip', u'defeat', u'villarr'] [u'christian', u'flee', u'kano', u'mob'] [u'church', u'join', u'push', u'releas', u'child', u'detaine'] [u'citi', u'dweller', u'tell', u'water'] [u'coalit', u'unlik', u'withdraw', u'request'] [u'crown', u'princ', u'frederik', u'wed', u'mari'] [u'crusad', u'super', u'final'] [u'fire', u'air', u'berg', u'behead', u'scream'] [u'dog', u'strong', u'injuri', u'dragon'] [u'doha', u'round', u'agreement', u'emerg'] [u'doyl', u'accus', u'brack', u'speed', u'camera', u'cover'] [u'eagl', u'send', u'jakovich', u'high'] [u'ebrahim', u'deliv', u'verdict', u'murali'] [u'edward', u'cagey', u'green', u'ludlow', u'concern'] [u'elder', u'predict', u'itiner', u'problem', u'worsen'] [u'firework', u'wed', u'celebr'] [u'flinder', u'rang', u'reveal', u'geolog', u'period'] [u'kill', u'attack', u'iraq', u'armi', u'recruit'] [u'futur', u'parti', u'win', u'caledonia', u'provinci'] [u'gibernau', u'set', u'pace', u'free', u'practic'] [u'govt', u'fail', u'pass', u'gungahlin', u'drive', u'appeal', u'law'] [u'govt', u'move', u'strip', u'prison', u'vote', u'right'] [u'govt', u'say', u'latham', u'ignor', u'veteran'] [u'govt', u'carri', u'hepat', u'immunis'] [u'hewitt', u'set', u'semi', u'final', u'meet', u'feder'] [u'hurst', u'ochoa', u'share', u'lead', u'rain', u'delay', u'lpga'] [u'india', u'congress', u'choos', u'gandhi'] [u'inform', u'seek', u'seal', u'death'] [u'injur', u'cipollini', u'retir', u'giro'] [u'islam', u'jihad', u'vow', u'reveng', u'gaza', u'raid'] [u'island', u'health', u'servic', u'adequ', u'campbel'] [u'isra', u'gunship', u'attack', u'islam', u'jihad', u'offic'] [u'isra', u'soldier', u'kill', u'gaza', u'strip', u'attack'] [u'jabiru', u'like', u'replac', u'mine', u'tourism'] [u'johnson', u'get', u'track'] [u'babi', u'coupl'] [u'nudg', u'england', u'selector'] [u'kosciuszko', u'plan', u'unabl', u'save', u'snowfal'] [u'legal', u'shield', u'school', u'church', u'case'] [u'lion', u'carlton'] [u'lula', u'forgiv', u'report', u'alcohol', u'slur'] [u'mandela', u'plead', u'south', u'african', u'world'] [u'man', u'rocket', u'ship', u'break', u'altitud', u'record'] [u'maradona', u'stay', u'clinic', u'say', u'judg'] [u'media', u'urg', u'reinstat', u'humbl'] [u'mirror', u'oust', u'editor', u'iraq', u'abus', u'hoax'] [u'mugab', u'say', u'quit', u'seek', u'successor'] [u'anti', u'corrupt', u'chief', u'predict', u'success'] [u'greek', u'extremist', u'group', u'claim', u'bomb', u'threaten'] [u'convent', u'boycott', u'disappoint', u'annan'] [u'confid', u'vote', u'leav', u'poland', u'limbo'] [u'norman', u'disqualifi', u'shanghai'] [u'dead', u'sydney', u'shoot'] [u'flight', u'deal', u'boost', u'tourism'] [u'opposit', u'seek', u'back', u'brothel'] [u'outsid', u'edward', u'provision', u'french', u'pole'] [u'palac', u'edg', u'sunderland', u'play'] [u'parliament', u'architect', u'mull', u'secur', u'fenc'] [u'patient', u'threaten', u'nurs', u'iron'] [u'petacchi', u'strike', u'giro', u'simoni', u'lead'] [u'pinochet', u'lawyer', u'say', u'leader', u'retrial'] [u'polic', u'care', u'fatal', u'accid'] [u'powel', u'doubt', u'iraq', u'govt', u'troop', u'leav'] [u'prosecut', u'fight', u'jackson', u'case'] [u'rat', u'worri', u'pull', u'nasdaq'] [u'refuge', u'campaign', u'call', u'zombi'] [u'rescuer', u'scour', u'amazon', u'plane', u'crash', u'survivor'] [u'rfds', u'anniversari', u'celebr', u'flight'] [u'richo', u'rise', u'toppl', u'bulldog'] [u'apologis', u'south', u'korea'] [u'rooster', u'good', u'shark'] [u'saint', u'condemn', u'pie', u'loss'] [u'scholarship', u'program', u'honour', u'veteran'] [u'senat', u'slow', u'meat', u'report', u'truss'] [u'serena', u'face', u'capriati', u'mauresmo'] [u'slow', u'start', u'tourism', u'season'] [u'sneer', u'cheer', u'eurovis', u'final', u'loom'] [u'hillsborough', u'victim', u'liverpool', u'squad'] [u'south', u'africa', u'win', u'battl', u'host', u'world'] [u'south', u'cowboy', u'share', u'point'] [u'stayer', u'line'] [u'studi', u'say', u'budget', u'support', u'incom', u'famili'] [u'tarantino', u'want', u'tackl', u'jam', u'bond'] [u'tasmanian', u'celebr', u'royal', u'wed'] [u'teamwork', u'import', u'safeti', u'busi', u'leader', u'tell'] [u'tear', u'flow', u'alic', u'court', u'find', u'guilti'] [u'tiger', u'grab', u'texa', u'lead'] [u'toxic', u'tide', u'spread', u'east', u'china'] [u'troubl', u'mitsubishi', u'rais', u'capit', u'billion'] [u'soldier', u'kill', u'attack', u'near', u'baghdad'] [u'soldier', u'stand', u'iraq', u'abus', u'claim'] [u'cut', u'east', u'timor', u'peacekeep'] [u'militari', u'fresh', u'prison', u'abus', u'alleg'] [u'name', u'player', u'olymp', u'roster'] [u'releas', u'hundr', u'ghraib', u'prison'] [u'suprem', u'court', u'refus', u'block', u'marriag'] [u'veteran', u'reserv', u'judgment', u'compo', u'scheme'] [u'victoria', u'prison', u'incub', u'hepat'] [u'wander', u'lioness', u'prompt', u'dubbo', u'review'] [u'zimbabw', u'rebel', u'give', u'day', u'return'] [u'cameramen', u'golden', u'tripod'] [u'aceh', u'rebel', u'free', u'detaine'] [u'defend', u'veteran', u'polici'] [u'archaeologist', u'discov', u'neanderth', u'man', u'tooth'] [u'arsenal', u'immort', u'place', u'histori'] [u'aust', u'allianc', u'fight', u'spam'] [u'babi', u'die', u'hous'] [u'hit', u'jone', u'make', u'zealand', u'suffer'] [u'brisban', u'host', u'global', u'traffic', u'control', u'meet'] [u'bronco', u'berrigan', u'season'] [u'bronco', u'hooker', u'berrigan', u'season'] [u'brown', u'label', u'democrat', u'slogan', u'aw'] [u'brumbi', u'wait', u'news', u'mortlock', u'injuri'] [u'budget', u'fail', u'public', u'latham'] [u'bulk', u'bill', u'clinic', u'offer', u'qualiti', u'servic'] [u'bulldog', u'player', u'hand', u'breach', u'notic', u'thurston'] [u'elect', u'test', u'mugab', u'strength'] [u'celebr', u'exempt', u'secur', u'check'] [u'celta', u'valladolid', u'brink', u'spanish'] [u'china', u'assur', u'asia', u'slowdown', u'manag'] [u'competit', u'worri', u'pharmacist'] [u'caus', u'fatal', u'accid'] [u'downer', u'request', u'hick', u'abus', u'evid'] [u'emerg', u'servic', u'tabl', u'legisl'] [u'england', u'faith', u'beat', u'windi'] [u'exhibit', u'hatch', u'graduat', u'career'] [u'falconio', u'murder', u'suspect', u'lawyer', u'call', u'fair'] [u'feder', u'crush', u'hewitt', u'reach', u'hamburg', u'final'] [u'rome', u'titl', u'await', u'mauresmo', u'capriati'] [u'sar', u'high', u'price', u'threaten', u'asian'] [u'kill', u'bloodi', u'weekend', u'road'] [u'forum', u'gulf', u'pollut', u'solut'] [u'garcia', u'take', u'stroke', u'lead', u'wood', u'slip', u'joint'] [u'geelong', u'halt', u'melbourn', u'juggernaut'] [u'gibernau', u'take', u'french', u'pole', u'record'] [u'govt', u'blame', u'petrol', u'price', u'hike'] [u'gut', u'mortlock', u'super', u'final'] [u'hawk', u'snap', u'lose', u'streak'] [u'hick', u'habib', u'report', u'mistreat', u'embassi'] [u'highland', u'brink', u'scottish', u'flight'] [u'high', u'visibl', u'raid', u'target', u'weapon', u'drug'] [u'hotlin', u'field', u'pitch', u'black', u'complaint'] [u'howard', u'say', u'retir', u'agenda'] [u'hundr', u'home', u'demolish', u'isra', u'armi'] [u'impact', u'boardroom', u'brawl', u'unknown'] [u'island', u'hop', u'pepper', u'economi'] [u'israel', u'court', u'lift', u'gaza', u'hous', u'demolit'] [u'isra', u'gunship', u'target', u'milit', u'offic'] [u'isra', u'peac', u'camp', u'ralli', u'gaza', u'pullout'] [u'isra', u'ralli', u'gaza', u'pullout'] [u'jimenez', u'snatch', u'victori', u'shanghai'] [u'kiwi', u'ulmer', u'star', u'sydney', u'track'] [u'labor', u'deni', u'confus'] [u'lampard', u'quit', u'chelsea', u'agent'] [u'latham', u'plan'] [u'coordin', u'hamper', u'whale', u'strand', u'research'] [u'lightn', u'strike', u'tasmanian', u'home'] [u'die', u'strike', u'polic'] [u'man', u'riot', u'hapless', u'warrior'] [u'face', u'court', u'airborn', u'activ'] [u'marsh', u'quit', u'zimbabw', u'coach'] [u'marvel', u'marvan', u'hit', u'doubl', u'lanka'] [u'media', u'brief', u'falconio', u'case'] [u'mexico', u'ochoa', u'edg', u'ahead', u'hurst'] [u'middl', u'east', u'conflict', u'domin'] [u'minist', u'confid', u'resolv', u'nurs', u'disput'] [u'mitsubishi', u'meet', u'demand', u'treasur'] [u'murali', u'hit', u'howard', u'chucker', u'comment'] [u'newspap', u'pledg', u'abus', u'hoax', u'profit', u'chariti'] [u'nigeria', u'detain', u'nobel', u'laureat', u'protest'] [u'mandat', u'gandhi', u'rule', u'hindu', u'leader'] [u'survivor', u'brazil', u'plane', u'crash'] [u'nurs', u'threaten', u'action', u'bed', u'plan'] [u'origin', u'focus', u'mind', u'round'] [u'paltrow', u'babi', u'truli', u'appl'] [u'polic', u'launch', u'drug', u'blitz', u'border'] [u'polic', u'rule', u'falconio', u'link', u'bone'] [u'polic', u'seek', u'inform', u'rescu'] [u'polic', u'appeal', u'kitten', u'abus', u'sentenc'] [u'poll', u'show', u'voter', u'want', u'blair', u'stand'] [u'pope', u'canonis', u'anti', u'abort', u'icon'] [u'powel', u'offer', u'abus', u'apolog'] [u'protest', u'cann', u'film', u'festiv'] [u'qimr', u'celebr', u'cancer', u'research', u'mileston'] [u'hous', u'slowdown', u'worri'] [u'railway', u'celebr', u'pull', u'port', u'elliot'] [u'hunt', u'exempt', u'secur', u'check', u'anderson'] [u'roger', u'sign', u'year', u'rugbi', u'deal'] [u'roo', u'massacr', u'port'] [u'royal', u'wed', u'prompt', u'call', u'close', u'denmark', u'tie'] [u'rumsfeld', u'approv', u'iraq', u'interrog', u'method', u'report'] [u'ruslana', u'danc', u'ukrain', u'eurovis'] [u'saint', u'pie'] [u'sale', u'strip', u'nudist', u'summer', u'camp'] [u'woo', u'skill', u'migrant'] [u'search', u'miss', u'resum'] [u'soldier', u'face', u'iraq', u'abus', u'charg', u'report'] [u'south', u'africa', u'win', u'battl', u'host', u'world'] [u'southgat', u'miss', u'euro', u'say', u'eriksson'] [u'special', u'opec', u'meet', u'boost', u'output'] [u'stage', u'second', u'mcgee', u'cunego', u'seiz', u'giro', u'lead'] [u'storm', u'rocket', u'sixth', u'spot'] [u'tall', u'ship', u'crash', u'tower', u'bridg'] [u'tarver', u'floor', u'jone', u'rematch'] [u'theatr', u'goer', u'injur', u'ceil', u'collaps'] [u'briton', u'alleg', u'guantanamo', u'abus'] [u'tiger', u'continu', u'raider', u'slump'] [u'treasur', u'defend', u'parti', u'donat', u'chang'] [u'typhoon', u'turn', u'england', u'ash'] [u'question', u'soldier', u'iraq', u'abus', u'claim'] [u'battl', u'sadr', u'support'] [u'govt', u'urg', u'commit', u'mental', u'health', u'plan'] [u'site', u'sell', u'worker', u'compens', u'reform'] [u'wenger', u'salut', u'histori', u'make', u'gunner'] [u'west', u'indi', u'scrambl', u'past', u'bangladesh'] [u'world', u'fever', u'sweep', u'south', u'africa'] [u'abattoir', u'sale', u'fail', u'eras', u'creditor', u'debt'] [u'aborigin', u'celebr', u'kosciuszko', u'manag', u'plan'] [u'abus', u'scandal', u'reason', u'iraq', u'pull', u'govt'] [u'level', u'continu', u'fall'] [u'see', u'demon', u'thompson', u'set', u'sight'] [u'albani', u'volunt', u'win', u'victim', u'crime', u'support'] [u'albatross', u'surpris', u'race', u'tactic'] [u'arm', u'hold', u'traumatis', u'takeaway', u'worker'] [u'aussi', u'yacht', u'world', u'titl'] [u'australia', u'appoint', u'diplomat', u'libya'] [u'baggio', u'bow'] [u'barnett', u'deni', u'foss', u'depart', u'term'] [u'bashir', u'sue', u'polic', u'order', u'arrest'] [u'baxter', u'children', u'program', u'win', u'approv'] [u'baxter', u'prepar', u'detaine', u'transfer'] [u'boost', u'roo', u'confid', u'say', u'laidley'] [u'blair', u'condemn', u'iraq', u'kill'] [u'bond', u'pull', u'english', u'test'] [u'bone', u'prompt', u'miss', u'person', u'review'] [u'british', u'bank', u'target', u'turkish', u'blast', u'ahead'] [u'british', u'arriv', u'turkey'] [u'bronco', u'point', u'decis', u'expect', u'today'] [u'budget', u'figur', u'sound', u'despit', u'fuel', u'hike'] [u'burma', u'constitut', u'talk', u'start'] [u'butcher', u'lose', u'accid'] [u'bomb', u'kill', u'iraqi', u'govern', u'council', u'head'] [u'cash', u'level', u'canberra'] [u'chariti', u'walker', u'leav', u'katherin', u'head'] [u'chechen', u'warlord', u'report', u'claim', u'dead', u'stadium'] [u'china', u'find', u'sanctuari', u'endang', u'tiger'] [u'china', u'issu', u'independ', u'warn', u'taiwan'] [u'chirac', u'dismay', u'iraq', u'blast'] [u'sourc', u'iraq', u'deliber', u'mislead'] [u'clinic', u'program', u'result', u'encourag'] [u'coalit', u'promis', u'properti', u'cut'] [u'coal', u'summit', u'boost', u'china', u'hop'] [u'communiti', u'air', u'concern', u'hospit', u'servic'] [u'coral', u'reef', u'damag', u'shock', u'research'] [u'council', u'seek', u'fish', u'ban'] [u'council', u'ahead', u'exhibit', u'centr'] [u'council', u'investig', u'hospit', u'transfer', u'delay'] [u'countri', u'driver', u'urg', u'belt'] [u'court', u'hear', u'falconio', u'girlfriend', u'hold'] [u'crow', u'desper', u'final', u'hop', u'aliv'] [u'dairi', u'confer', u'focus', u'drought'] [u'danger', u'drive', u'crackdown', u'hail', u'success'] [u'darwin', u'crocodil', u'sight', u'prompt', u'warn'] [u'dead', u'tourist', u'famili', u'return', u'inquest'] [u'defenc', u'brief', u'outlin', u'forc', u'base', u'upgrad'] [u'democrat', u'urg', u'bore', u'water', u'ban'] [u'disabl', u'group', u'examin', u'isol', u'solut'] [u'discuss', u'begin', u'fitzroy', u'river', u'upgrad'] [u'drunken', u'stripper', u'spark', u'probe', u'scottish', u'airport'] [u'eagl', u'kerr', u'tribun'] [u'energi', u'effici', u'build', u'win', u'environment', u'award'] [u'prepar', u'export', u'subsidi'] [u'expert', u'demand', u'nation', u'anti', u'smoke', u'law'] [u'falconio', u'hear', u'begin', u'darwin'] [u'falconio', u'brother', u'give', u'evid', u'darwin'] [u'falun', u'dafa', u'member', u'sydney', u'paper', u'defam'] [u'fergi', u'rat', u'gerrard', u'influenti', u'player'] [u'kill', u'dozen', u'wound', u'iraq', u'battl'] [u'fiji', u'cabinet', u'meet', u'militari', u'coup', u'claim'] [u'hondura', u'jail', u'kill'] [u'black', u'flavel', u'face', u'polic', u'probe'] [u'forum', u'push', u'develop', u'free', u'reserv'] [u'kill', u'isra', u'border', u'report'] [u'secur', u'curtain', u'come', u'athen'] [u'gandhi', u'path', u'prime', u'minist', u'clear'] [u'garcia', u'win', u'byron', u'nelson', u'championship', u'play'] [u'german', u'rule', u'sydney', u'track', u'australia'] [u'germani', u'chile', u'win', u'start', u'tenni', u'team'] [u'gold', u'coast', u'properti', u'price', u'hold', u'firm'] [u'goldfield', u'motorist', u'tell', u'belt'] [u'govt', u'fear', u'india', u'share'] [u'govt', u'wheat', u'subsidi', u'decis', u'criticis'] [u'govt', u'ship', u'levi'] [u'govt', u'urg', u'increas', u'polic', u'station', u'fund'] [u'greas', u'bandit', u'slick', u'getaway'] [u'group', u'air', u'concern', u'stall', u'antarct', u'servic'] [u'group', u'decri', u'wheat', u'subsidi', u'remov'] [u'gulf', u'bird', u'number', u'withstand', u'drought'] [u'gulf', u'council', u'expect', u'sign', u'plan'] [u'hall', u'creek', u'hospit', u'boost', u'kimberley', u'care'] [u'hardi', u'crush', u'vintag', u'record'] [u'health', u'chariti', u'action', u'obes'] [u'heavi', u'rain', u'station', u'owner'] [u'herculean', u'effort', u'restor', u'olymp', u'god'] [u'hindu', u'nationalist', u'boycott', u'polit', u'ceremoni'] [u'hornbi', u'bolt', u'blue', u'squad'] [u'hornbi', u'shock', u'origin', u'team', u'name'] [u'howard', u'surpris', u'soldier', u'iraq', u'role'] [u'human', u'remain', u'cattl', u'station', u'identifi'] [u'hume', u'council', u'anticip', u'final', u'meet'] [u'india', u'stock', u'plummet', u'amid', u'fear'] [u'inquest', u'tell', u'cooper', u'urban'] [u'inquiri', u'recommend', u'corpor', u'manslaught', u'law'] [u'insur', u'offer', u'hope', u'unlicens', u'builder'] [u'inter', u'fourth', u'modena', u'empoli'] [u'iraq', u'prison', u'abus', u'hit', u'bush', u'approv', u'rat'] [u'isra', u'chopper', u'arafat', u'fatah', u'offic'] [u'isra', u'forc', u'advanc', u'gaza', u'strip'] [u'jail', u'sentenc', u'canberra', u'drug', u'dealer'] [u'jone', u'prepar', u'launch', u'lawsuit', u'ban'] [u'kangaroo', u'island', u'tour', u'compani', u'urg', u'koala', u'cull'] [u'kerr', u'clear', u'strike', u'charg'] [u'attract', u'lure', u'second', u'australian', u'visit'] [u'labor', u'claim', u'budget', u'cut', u'save', u'buck'] [u'labor', u'wont', u'ditch', u'cut', u'latham'] [u'lamborghini', u'cop', u'anti', u'getaway'] [u'latham', u'confus'] [u'level', u'cross', u'upgrad', u'delay', u'anger', u'mother'] [u'liber', u'pursu', u'east', u'gippsland', u'elect'] [u'lightn', u'strike', u'leav', u'zone', u'wake'] [u'lindsay', u'park', u'school', u'reopen'] [u'lion', u'fine'] [u'liverpool', u'tip', u'announc', u'thailand', u'deal'] [u'load', u'limit', u'eas', u'road', u'wear', u'tear'] [u'local', u'appoint', u'art', u'council'] [u'lockyer', u'give', u'time', u'prove', u'fit', u'origin'] [u'lockyer', u'princ', u'bowman', u'name', u'maroon'] [u'longreach', u'thank', u'long', u'serv', u'mayor'] [u'charg', u'babi', u'tortur'] [u'dead', u'fish', u'lure', u'argument'] [u'man', u'council', u'ban', u'smoke', u'beach'] [u'manslaught', u'sentenc', u'increas', u'oppos'] [u'maritim', u'safeti', u'improv'] [u'mayor', u'dismiss', u'scarborough', u'high', u'rise', u'protest'] [u'mcewen', u'help', u'hand', u'cost', u'giro'] [u'meander', u'decis', u'bring', u'forward'] [u'meat', u'plant', u'fin', u'workplac', u'death'] [u'media', u'warn', u'buy', u'interview', u'falconio', u'case'] [u'mental', u'face', u'jail', u'airlin', u'secur'] [u'middleton', u'beach', u'lead', u'properti', u'price', u'rise'] [u'milit', u'group', u'take', u'russian', u'hostag', u'iraq'] [u'miner', u'foreshadow', u'graduat', u'shortag'] [u'mine', u'emerg', u'competit', u'draw', u'record', u'field'] [u'mine', u'deal', u'set', u'benchmark', u'indigen'] [u'mitsubishi', u'say', u'decis', u'australia'] [u'moor', u'tell', u'documentari', u'pressur'] [u'morley', u'face', u'lengthi'] [u'murali', u'comment', u'earn', u'ebrahim', u'test'] [u'murder', u'inform', u'refus', u'wit', u'protect'] [u'murray', u'bridg', u'contain'] [u'nation', u'park', u'deni', u'hors', u'bait', u'claim'] [u'nauru', u'detaine', u'refuge', u'status'] [u'nepali', u'sherpa', u'set', u'everest', u'climb', u'record'] [u'ballarat', u'dive', u'right'] [u'news', u'corp', u'miner', u'weigh', u'market'] [u'speci', u'fish', u'discov', u'seychell'] [u'toowoomba', u'get', u'busi'] [u'zealand', u'thrash', u'kent', u'final', u'warm', u'match'] [u'decis', u'merger', u'health', u'area', u'minist'] [u'accus', u'hors', u'bait'] [u'defend', u'school', u'repair', u'figur'] [u'nucifora', u'hold', u'name', u'brumbi', u'final'] [u'nurs', u'vote', u'industri', u'campaign'] [u'ochoa', u'claim', u'lpga', u'tour', u'victori'] [u'price', u'hit', u'time', u'high'] [u'flight', u'deal', u'boost', u'goldfield', u'tourism'] [u'opposit', u'promis', u'test', u'landfil', u'sit'] [u'origin', u'focus', u'mind', u'round'] [u'parent', u'disturb', u'abductor'] [u'passeng', u'mackay', u'airport', u'secur'] [u'pentagon', u'deni', u'secret', u'interrog', u'deal'] [u'petrol', u'push', u'inflat'] [u'stand', u'murali', u'chuck'] [u'polic', u'charg', u'unruli', u'behaviour', u'crackdown'] [u'polic', u'foil', u'million', u'pound', u'heist', u'heathrow'] [u'polic', u'foil', u'massiv', u'gold', u'robberi'] [u'polic', u'liaison', u'offic', u'target', u'domest', u'violenc'] [u'polic', u'number', u'blame', u'breath', u'test', u'declin'] [u'polic', u'offic', u'blame', u'redfern', u'riot', u'heroin'] [u'polic', u'search', u'alleg', u'robber'] [u'polic', u'search', u'wind'] [u'polici', u'unclear', u'gandhi', u'lead', u'india'] [u'popov', u'triumph', u'europ'] [u'port', u'star', u'miss', u'tiger', u'clash'] [u'prison', u'abus', u'sign', u'desper', u'intellig'] [u'properti', u'lend', u'suggest', u'rate', u'rise', u'analyst'] [u'protest', u'delay', u'murwillumbah', u'train', u'final'] [u'qanta', u'seal', u'deal'] [u'govern', u'propos', u'tough', u'anti', u'smoke', u'law'] [u'lobbi', u'wrong', u'govern', u'road', u'fund'] [u'racv', u'tip', u'petrol', u'price', u'rise'] [u'radio', u'hill', u'begin', u'underground', u'mine'] [u'rain', u'fail', u'reviv', u'pastur'] [u'real', u'self', u'destruct', u'lowli', u'murcia'] [u'reef', u'tragedi', u'film', u'anger', u'dive', u'industri'] [u'resid', u'urg', u'heater', u'pollut'] [u'rmit', u'hike', u'fee'] [u'roch', u'train', u'afghanistan', u'prosecutor'] [u'rural', u'counsellor', u'warn', u'budget', u'fund', u'inadequ'] [u'scientist', u'engin', u'fatti', u'acid', u'health', u'plant'] [u'scientist', u'prepar', u'scramjet', u'test', u'record'] [u'shadow', u'cabinet', u'meet', u'bunburi'] [u'simul', u'foot', u'mouth', u'exercis', u'begin'] [u'bobbi', u'stay', u'say', u'newcastl', u'chief'] [u'site', u'offic', u'begin', u'wollongong', u'road', u'project'] [u'black', u'player', u'coach', u'white', u'springbok', u'team'] [u'admit', u'help', u'celebr', u'chef', u'commit'] [u'spur', u'swoop', u'celtic', u'oneil'] [u'lanka', u'murali', u'doosra'] [u'stakehold', u'discuss', u'road', u'studi', u'progress'] [u'state', u'origin', u'squad', u'announc', u'today'] [u'sting', u'prompt', u'broom', u'jellyfish', u'warn'] [u'kilda', u'maintain', u'spot'] [u'substanc', u'abus', u'target', u'outback'] [u'sydney', u'council', u'consid', u'beach', u'smoke'] [u'taiwan', u'stock', u'tumbl'] [u'tale', u'migrat', u'win', u'literari', u'award'] [u'tarantino', u'rev', u'spaghetti', u'biker', u'flick'] [u'tasmania', u'serv', u'tourism', u'promot'] [u'cut', u'widen', u'social', u'divid', u'acoss'] [u'teacher', u'strike', u'disput'] [u'teacher', u'threaten', u'strike'] [u'tear', u'larsson', u'sign', u'style'] [u'teenag', u'charg', u'hous'] [u'teen', u'charg', u'recycl', u'yard', u'blaze'] [u'tharwa', u'resid', u'criticis', u'control', u'bushfir'] [u'palestinian', u'kill', u'isra', u'forc', u'near'] [u'timber', u'group', u'examin', u'clear', u'fell', u'ban', u'social'] [u'traffic', u'control', u'meet', u'intern'] [u'tree', u'replant', u'encourag', u'canberra', u'water'] [u'trial', u'begin', u'alleg', u'plot', u'isra'] [u'twin', u'doubl', u'ton', u'lanka', u'past'] [u'union', u'prais', u'polic', u'centr', u'plan'] [u'gay', u'prepar', u'amid', u'cheer', u'protest'] [u'redeploy', u'south', u'korea', u'troop', u'iraq', u'seoul'] [u'speed', u'drug', u'approv', u'process'] [u'vanston', u'rule', u'close', u'nauru', u'detent', u'centr'] [u'polic', u'examin', u'inform', u'murder'] [u'victoria', u'boost', u'fee'] [u'virgin', u'exceed', u'profit', u'expect'] [u'waratah', u'dump', u'burk'] [u'west', u'indi', u'beat', u'bangladesh', u'truncat'] [u'woman', u'fight', u'year', u'arrest', u'warrant'] [u'worker', u'lose', u'confid', u'child', u'protect'] [u'worker', u'threaten', u'work', u'ban', u'nurs', u'home'] [u'cut', u'hospit', u'stay', u'combat', u'shortag'] [u'get', u'environ', u'commission'] [u'advertis', u'child', u'abus', u'doctor'] [u'agassi', u'beat', u'rank', u'serb'] [u'say', u'burk', u'free', u'negoti', u'contract', u'releas'] [u'atapattu', u'laud', u'lankan', u'bowler'] [u'atsic', u'task', u'forc', u'address', u'famili', u'violenc'] [u'aust', u'track', u'plan', u'satellit'] [u'bank', u'resourc', u'fuel', u'market', u'bounc'] [u'beach', u'smoke', u'spark', u'debat'] [u'beach', u'smoke', u'target', u'pollut', u'health'] [u'beckham', u'defi', u'real', u'keown', u'testimoni'] [u'beer', u'brew', u'add', u'school', u'curriculum'] [u'head', u'abound', u'budgi', u'lock', u'beak'] [u'bomb', u'attack', u'kill', u'wound', u'algeria'] [u'britain', u'send', u'troop', u'iraq', u'report'] [u'break', u'hill', u'water', u'group', u'member', u'sack'] [u'brown', u'appeal', u'hear', u'tonight'] [u'brown', u'tribun'] [u'budget', u'provid', u'bounc', u'govt'] [u'budget', u'boost', u'vocat', u'train', u'fund'] [u'bulldog', u'hand', u'coff', u'fin', u'refus'] [u'bulldog', u'player', u'payment', u'fine'] [u'bulldog', u'pay', u'price', u'miss', u'goal', u'shot'] [u'bus', u'replac', u'train', u'kiama', u'bomaderri'] [u'bush', u'extend', u'burma', u'sanction', u'year'] [u'bushfir', u'inquest', u'hear', u'firefight', u'proud'] [u'calder', u'highway', u'blowout', u'cost', u'taxpay'] [u'call', u'polic', u'royal', u'commiss', u'demoralis'] [u'calm', u'clear', u'lizard', u'trap'] [u'cathedr', u'revamp', u'get', u'feder', u'fund'] [u'centr', u'look', u'station', u'access'] [u'charl', u'camilla', u'report'] [u'chechen', u'rebel', u'kill', u'russian', u'troop', u'ambush'] [u'children', u'face', u'court', u'joyrid'] [u'china', u'cancel', u'moon', u'plan', u'focus', u'space', u'station'] [u'china', u'contain', u'latest', u'sar', u'outbreak', u'say'] [u'club', u'feel', u'game', u'increas'] [u'coalit', u'firm', u'iraq', u'handov', u'date'] [u'concern', u'port', u'expans', u'affect', u'radar'] [u'confer', u'tackl', u'child', u'sexual', u'abus'] [u'consum', u'tip', u'feel', u'rise', u'fuel', u'cost'] [u'cook', u'land', u'site', u'consid', u'heritag', u'list'] [u'coron', u'examin', u'fraser', u'death'] [u'costello', u'want', u'rethink', u'zimbabwean', u'tour'] [u'council', u'wont', u'pursu', u'elect', u'interfer', u'claim'] [u'court', u'hear', u'case', u'accus', u'murder'] [u'cowboy', u'surpris', u'hannay', u'origin', u'snub'] [u'currenc', u'swing', u'iraq', u'violenc'] [u'danger', u'rail', u'cross', u'upgrad'] [u'death', u'custodi', u'investig', u'begin'] [u'deputi', u'follow', u'labor', u'leader', u'bundaberg'] [u'differ', u'life', u'signal', u'direct', u'tourism'] [u'downer', u'brussel', u'nato', u'talk'] [u'dun', u'readi', u'razzl', u'dazzl', u'island'] [u'eadi', u'dajka', u'head', u'track', u'cycl', u'squad'] [u'sight', u'cassel', u'appeal'] [u'england', u'leav', u'robinson', u'greenwood'] [u'england', u'turn', u'novic', u'shore', u'euro'] [u'esper', u'view', u'consid', u'school', u'leav'] [u'box', u'champ', u'bow', u'releas', u'prison'] [u'expert', u'play', u'cane', u'toad', u'threat'] [u'fairfax', u'ax', u'herald', u'job'] [u'famili', u'recov', u'tornado'] [u'farmer', u'sheep', u'export'] [u'farm', u'group', u'concern', u'woodland', u'declar'] [u'fifa', u'confirm', u'huge', u'cash', u'prize', u'revamp', u'club'] [u'kill', u'iraq', u'clash'] [u'fiji', u'armi', u'chief', u'investig', u'coup', u'claim'] [u'firm', u'name', u'manag', u'game', u'ceremoni'] [u'surviv', u'olymp'] [u'footbal', u'face', u'court', u'charg'] [u'french', u'rocker', u'appeal', u'jail', u'sentenc'] [u'fuel', u'distributor', u'disput', u'margin'] [u'fuel', u'excis', u'wont', u'reduc', u'anderson'] [u'fuel', u'price', u'hurt', u'compani', u'profit'] [u'gandhi', u'aim'] [u'gandhi', u'meet', u'presid', u'discuss', u'govt'] [u'german', u'film', u'polit', u'messag', u'set', u'cann', u'abuzz'] [u'golden', u'circl', u'plan', u'restructur'] [u'good', u'injuri', u'rais', u'fresh', u'ruck', u'question'] [u'govt', u'oppos', u'juvenil', u'detent', u'centr'] [u'govt', u'optimist', u'mitsubishi', u'futur'] [u'govt', u'reject', u'assembl', u'sit', u'debat', u'road'] [u'grain', u'farmer', u'exodus', u'rural', u'busi'] [u'grain', u'group', u'predict', u'fewer', u'farmer', u'futur'] [u'griffith', u'council', u'reject', u'fumig', u'chamber', u'plan'] [u'griffith', u'resid', u'like', u'rat', u'rise'] [u'gulf', u'council', u'band'] [u'harsh', u'penalti', u'breach', u'abalon'] [u'hayden', u'langer', u'zimbabw', u'tour', u'good', u'start'] [u'head', u'roll', u'govt', u'reshap'] [u'health', u'worker', u'train', u'cut', u'edg', u'equip'] [u'heskey', u'complet', u'birmingham', u'switch'] [u'hous', u'shortfal', u'hurt', u'busi', u'oppn'] [u'howard', u'rule', u'iraq', u'troop', u'increas'] [u'howard', u'seek', u'detail', u'sarin', u'explos'] [u'india', u'face', u'uncertainti', u'gandhi', u'struggl'] [u'indonesia', u'aceh', u'rebel', u'releas', u'hostag'] [u'indonesian', u'chief', u'free', u'snake', u'catch', u'rat'] [u'inquest', u'hear', u'communic', u'problem'] [u'insid', u'play', u'athen', u'whinger', u'claim'] [u'iraqi', u'captor', u'releas', u'russian', u'hostag'] [u'iraqi', u'journalist', u'threat', u'cover', u'report'] [u'israel', u'commit', u'crime', u'rafah', u'palestinian'] [u'japan', u'econom', u'reviv', u'continu'] [u'judg', u'deni', u'motion', u'review', u'wiranto', u'charg'] [u'keat', u'take'] [u'kerri', u'undecid', u'australia', u'free', u'trade', u'pact'] [u'labor', u'accus', u'govt', u'intimid'] [u'labor', u'call', u'scrap', u'pacif', u'solut'] [u'lee', u'face', u'alleg', u'attack'] [u'lee', u'tell', u'falconio', u'moment'] [u'lib', u'warn', u'vote', u'valu', u'risk', u'ahead'] [u'lion', u'nathan', u'profit', u'slump'] [u'liverpool', u'board', u'approv', u'thai', u'offici'] [u'liverpool', u'board', u'approv', u'thai', u'thaksin'] [u'liverpool', u'silent', u'thai'] [u'lobster', u'price', u'rise'] [u'local', u'oppos', u'wittenoom', u'closur'] [u'loud', u'explos', u'rumbl', u'baghdad'] [u'macquari', u'profit', u'near'] [u'maher', u'doubt', u'athen'] [u'charg', u'morecomb', u'abduct', u'extort', u'hoax'] [u'charg', u'murder', u'bodi'] [u'convict', u'million', u'googl', u'stock', u'fraud'] [u'fin', u'attack'] [u'hospitalis', u'trawler', u'blast'] [u'jail', u'rap', u'sister'] [u'remand', u'babi', u'assault', u'charg'] [u'face', u'babi', u'tortur', u'charg'] [u'face', u'bird', u'shoot', u'charg'] [u'face', u'court', u'machet', u'attack'] [u'face', u'trial', u'charg'] [u'stay', u'custodi', u'follow', u'babi', u'tortur'] [u'melbourn', u'council', u'consid', u'beach', u'smoke'] [u'melbourn', u'seminar', u'target', u'terrorist', u'attack', u'respons'] [u'face', u'court', u'money', u'charg'] [u'mental', u'health', u'report', u'call', u'fund', u'boost'] [u'mental', u'ill', u'group', u'criticis', u'assist'] [u'milan', u'snap', u'lazio', u'stam'] [u'miner', u'seek', u'fortun', u'metal', u'west', u'coast', u'site'] [u'minist', u'drive', u'home', u'road', u'fund', u'messag'] [u'minist', u'address', u'ghost', u'woe'] [u'minist', u'unveil', u'civic', u'west', u'develop', u'plan'] [u'minist', u'urg', u'discuss', u'toxic', u'wast', u'dump', u'fear'] [u'mini', u'tornado', u'caus', u'havoc', u'melbourn'] [u'mistak', u'grant', u'prison', u'earli', u'releas'] [u'mitsubishi', u'offer', u'assur'] [u'mix', u'reaction', u'budget'] [u'moor', u'fahrenheit', u'turn', u'heat', u'bush'] [u'morley', u'cop', u'plea', u'peek', u'week'] [u'clash', u'redfern', u'inquiri'] [u'support', u'end', u'exit'] [u'gambier', u'hospit', u'revamp'] [u'councillor', u'prepar', u'duti', u'offic'] [u'pilbara', u'campus', u'open'] [u'snowi', u'servic', u'propos'] [u'zealand', u'antarct', u'base', u'damag', u'winter', u'storm'] [u'nigeria', u'declar', u'state', u'emerg'] [u'chang', u'zimbabw', u'tour', u'sutherland'] [u'prize', u'pageant', u'winner'] [u'aid', u'council', u'disappoint', u'figur'] [u'govt', u'reject', u'highway', u'fund', u'claim'] [u'nurs', u'age', u'care', u'rise'] [u'teacher', u'industri'] [u'continu', u'darwin', u'crocodil', u'search'] [u'treasur', u'label', u'howard', u'turkey'] [u'price', u'turn', u'lower'] [u'olymp', u'green', u'light', u'transsexu', u'athlet'] [u'olymp', u'sport', u'safe'] [u'oppn', u'consid', u'relax', u'busi', u'migrat', u'law'] [u'outback', u'highway', u'backer', u'seek', u'fund'] [u'palac', u'shoot', u'reach', u'divis', u'play'] [u'pell', u'defend', u'cathol', u'school', u'right', u'discrimin'] [u'phoenix', u'swift', u'look', u'good', u'daylight'] [u'physician', u'label', u'media', u'major', u'health', u'concern'] [u'face', u'polit', u'crisi'] [u'polic', u'staff', u'shortag', u'concern'] [u'polic', u'chase', u'death', u'prompt', u'coroni', u'inquest'] [u'polic', u'crash', u'victim'] [u'polic', u'warn', u'fuel', u'thiev'] [u'poll', u'show', u'budget', u'didnt', u'satisfi', u'public', u'latham'] [u'pope', u'celebr', u'birthday'] [u'pratt', u'vienna'] [u'privat', u'school', u'expel', u'student'] [u'proud', u'howard', u'celebr', u'year', u'parliament'] [u'psychologist', u'ban', u'form', u'patient'] [u'quarantin', u'concern', u'chang', u'wheat', u'import'] [u'rail', u'union', u'hop', u'worker', u'deploy'] [u'redfern', u'inquiri', u'hear', u'effort', u'polic'] [u'redfern', u'inquiri', u'fieri', u'start'] [u'reef', u'delay', u'anger', u'commerci', u'fisher'] [u'hampstead', u'hand', u'origin', u'debut'] [u'releg', u'leicest', u'player'] [u'rise', u'prison', u'hepat', u'rat', u'prompt', u'review', u'call'] [u'riverland', u'avoid', u'doctor', u'shortag', u'woe'] [u'robot', u'scour', u'mar', u'crater', u'sign', u'water'] [u'roch', u'trial', u'hear', u'hat', u'muslim'] [u'roddick', u'goal', u'roland', u'garro'] [u'rodriguez', u'shock', u'petacchi', u'giro', u'stage', u'mcewen'] [u'rooster', u'clear', u'lockyer', u'approach', u'claim'] [u'royal', u'secur', u'review', u'scare'] [u'rspca', u'seek', u'stronger', u'desex', u'law'] [u'salim', u'buri', u'amid', u'battl', u'iraq'] [u'secur', u'fear', u'emerg', u'prepar', u'reloc'] [u'shock', u'scud', u'comeback', u'australia', u'hold'] [u'singapor', u'airlin', u'plan', u'fuel', u'surcharg'] [u'soccer', u'place', u'olymp', u'jeopardis', u'dope'] [u'soft', u'drink', u'rais', u'cancer', u'risk', u'studi', u'find'] [u'spald', u'power', u'surg', u'prove', u'cost'] [u'specialist', u'doctor', u'appoint', u'chopper', u'servic'] [u'student', u'die', u'agricultur', u'accid'] [u'student', u'counsel', u'teen', u'burn', u'school'] [u'support', u'warrnambool', u'plastic'] [u'suprem', u'court', u'hold', u'gold', u'coast', u'sit'] [u'surpris', u'surplus', u'budget'] [u'sydney', u'await', u'nigerian', u'scam', u'sentenc'] [u'syria', u'sanction', u'increas', u'tension', u'saudi', u'arabia'] [u'battl', u'takeov'] [u'trade', u'bore', u'jib'] [u'test', u'begin', u'desalin', u'plant'] [u'thailand', u'flag', u'iraq', u'troop', u'pull'] [u'thrupp', u'head', u'paralymp'] [u'tourism', u'whitsunday', u'target', u'america'] [u'truck', u'crash', u'investig', u'continu'] [u'tuna', u'boat', u'owner', u'fish', u'rescu', u'packag'] [u'kill', u'isra', u'refuge', u'camp', u'raid', u'report'] [u'charg', u'babi', u'assault'] [u'umpir', u'wire', u'sound', u'champion', u'trophi'] [u'run', u'short', u'soldier', u'equip', u'money'] [u'cross', u'boss', u'quit', u'amid', u'iraq', u'prison', u'scandal'] [u'releas', u'delay', u'human', u'right', u'report'] [u'use', u'prostitut', u'prosecut', u'greenpeac'] [u'vaughan', u'doubt', u'test'] [u'confid', u'hospit', u'cope', u'winter', u'demand'] [u'wait', u'begin', u'rule', u'babi', u'manslaught'] [u'walker', u'bind', u'brisban', u'brawl'] [u'waltz', u'matilda', u'centr', u'get', u'revamp'] [u'town', u'like', u'base', u'spread', u'word'] [u'zimbabw', u'tour', u'doubt', u'speed'] [u'zimbabw', u'tour', u'doubt', u'speed'] [u'cricket', u'season', u'announc'] [u'aborigin', u'meet', u'discuss', u'murray', u'darl', u'woe'] [u'academ', u'claim', u'push', u'medicin', u'cost', u'higher'] [u'accus', u'redfern', u'inquiri'] [u'aceh', u'martial', u'end'] [u'host', u'counter', u'terror', u'exercis'] [u'age', u'care', u'home', u'open', u'launceston'] [u'age', u'care', u'wage', u'case', u'continu'] [u'alpin', u'resort', u'plan', u'debat'] [u'american', u'sprinter', u'accept', u'year', u'newspap'] [u'anderson', u'talk', u'budget', u'benefit'] [u'arctic', u'temperatur', u'warm', u'rapid', u'polar', u'explor'] [u'aussi', u'return', u'home', u'zimbabw'] [u'aussi', u'warm', u'zimbabw'] [u'australia', u'zealand', u'launch', u'annual', u'tran'] [u'australia', u'call', u'lazaridi'] [u'australia', u'ignor', u'asia', u'favour'] [u'australian', u'train', u'iraqi', u'polic'] [u'aust', u'formalis', u'free', u'trade', u'plan'] [u'babi', u'die', u'follow', u'alleg', u'assault'] [u'bank', u'resourc', u'buoy', u'australian', u'market'] [u'beef', u'quota', u'negoti', u'harder'] [u'black', u'sabbath', u'reunit', u'ozzfest'] [u'blade', u'wallabi', u'assist'] [u'bodi', u'alongsid', u'newel', u'highway'] [u'bodi', u'melbourn', u'road'] [u'die', u'wall', u'collaps'] [u'brando', u'play', u'film'] [u'breed', u'program', u'insur', u'devil', u'extinct'] [u'british', u'soldier', u'arrest', u'fake', u'abus', u'photo'] [u'british', u'soldier', u'arrest', u'fake', u'photo'] [u'budget', u'provid', u'basic', u'door', u'cruis', u'ship'] [u'bumper', u'mullet', u'season', u'forecast'] [u'bushfir', u'inquest', u'hear', u'resid', u'stori'] [u'busi', u'chamber', u'seek', u'support', u'develop', u'port'] [u'canada', u'allow', u'prescript', u'free', u'morn'] [u'canberra', u'spread', u'nation', u'park'] [u'carr', u'offer', u'western', u'sydney'] [u'carr', u'unveil', u'plan', u'sydney'] [u'chief', u'justic', u'concern', u'judiciari'] [u'chuck', u'comment', u'spin'] [u'combin', u'crcs', u'idea', u'gain', u'support'] [u'comet', u'joint', u'appear'] [u'command', u'control', u'focus', u'terror', u'train'] [u'communiti', u'group', u'oppos', u'hospit', u'cutback'] [u'compani', u'profit', u'boost', u'stock'] [u'construct', u'group', u'talk', u'budget'] [u'construct', u'hotel', u'landmark', u'start', u'month'] [u'consum', u'confid', u'slight'] [u'costello', u'agre', u'call'] [u'costello', u'defend', u'oversea', u'trip'] [u'costello', u'kick', u'margin'] [u'council', u'come', u'school', u'follow', u'diseas'] [u'councillor', u'head', u'push', u'oppos', u'appl', u'import'] [u'council', u'monitor', u'man', u'beach', u'smoke', u'cost'] [u'council', u'examin', u'draft', u'heritag', u'schoolhous', u'studi'] [u'council', u'urg', u'chang', u'view', u'hospit'] [u'crew', u'prais', u'quick', u'action', u'trawler'] [u'dairi', u'farmer', u'angri', u'milk', u'price'] [u'downer', u'seek', u'nato', u'secur', u'boost'] [u'downer', u'visit', u'libya', u'renew', u'trade', u'tie'] [u'downer', u'welcom', u'export', u'subsidi', u'offer'] [u'east', u'timor', u'troop', u'stay', u'year'] [u'elder', u'woman', u'killer', u'lose', u'appeal'] [u'employ', u'reject', u'corpor', u'manslaught', u'law'] [u'ethicist', u'call', u'mules', u'sheep'] [u'timor', u'welcom', u'extens'] [u'european', u'patent', u'breast', u'ovarian', u'cancer', u'test'] [u'financ', u'minist', u'tip', u'indian'] [u'falconio', u'murder', u'hear', u'adjourn'] [u'farmer', u'push', u'self', u'relianc', u'focus'] [u'fight', u'continu', u'council', u'amalgam'] [u'damag', u'devonport', u'busi'] [u'fitter', u'armstrong', u'consid', u'retir'] [u'citi', u'run', u'olymp'] [u'fli', u'doctor', u'leav', u'rann', u'port', u'augusta'] [u'forklift', u'accid', u'investig', u'continu'] [u'boyfriend', u'charg', u'sydney', u'teen', u'murder'] [u'teacher', u'convict', u'child', u'porn', u'pic'] [u'arrest', u'behead'] [u'franc', u'honour', u'forman', u'tarantino'] [u'gandhi', u'stand', u'decis'] [u'geena', u'davi', u'give', u'birth', u'twin'] [u'germani', u'chile', u'meet', u'team', u'champ', u'final', u'spot'] [u'giant', u'tree', u'tasmania'] [u'food', u'safe', u'report'] [u'gonzal', u'juri', u'retir', u'begin', u'deliber'] [u'gould', u'give', u'flanneri', u'tick', u'approv'] [u'govt', u'overturn', u'wheat', u'subsidi', u'decis'] [u'govt', u'put', u'cairn', u'compani', u'notic'] [u'govt', u'rule', u'alic', u'spring', u'juvenil', u'detent'] [u'govt', u'slam', u'rais', u'pastor', u'leas', u'rent'] [u'govt', u'upbeat', u'driver', u'drug', u'test'] [u'govt', u'allow', u'salim', u'visit', u'baghdad'] [u'green', u'ban', u'park', u'lift'] [u'greenspan', u'stay', u'chief'] [u'group', u'launch', u'latest', u'marin', u'debri', u'campaign'] [u'hammer', u'face', u'palac', u'premier', u'leagu', u'place'] [u'hawkesburi', u'sydney', u'water'] [u'heal', u'attend', u'boomer', u'train', u'camp'] [u'hospit', u'death', u'investig'] [u'howard', u'margin', u'increas', u'iraq', u'commit'] [u'howard', u'spell', u'iraq', u'plan'] [u'infecti', u'diseas', u'common'] [u'iraqi', u'prison', u'abus', u'trial', u'start'] [u'iraqi', u'reuter', u'staff', u'claim', u'abus'] [u'iraq', u'harder', u'think', u'howard'] [u'isra', u'crowd', u'gaza'] [u'isra', u'sweep', u'gaza', u'camp'] [u'isra', u'troop', u'remain', u'rafah', u'despit', u'protest'] [u'israel', u'kill', u'palestinian', u'gaza', u'raid'] [u'itali', u'pass', u'emerg', u'health', u'care'] [u'japanes', u'tourist', u'visit', u'intern', u'space'] [u'japan', u'sega', u'sammi', u'merg'] [u'joyrid', u'incid', u'sadden', u'polic'] [u'juri', u'consid', u'verdict', u'tare', u'accus'] [u'kenya', u'detain', u'australian', u'terror', u'fear'] [u'kindi', u'teacher', u'strike'] [u'kindi', u'teacher', u'protest', u'melbourn', u'ralli'] [u'leed', u'reject', u'bid', u'smith'] [u'lee', u'resum', u'testimoni', u'falconio', u'case'] [u'leicest', u'citi', u'say', u'trio', u'rape', u'test', u'negat'] [u'lewandowski', u'dead', u'home'] [u'lockyer', u'origin'] [u'guilti', u'sexual', u'assault'] [u'critic', u'condit', u'explos'] [u'kill', u'road', u'crash'] [u'suffer', u'burn', u'caravan'] [u'mayor', u'welcom', u'campaign', u'cubbi', u'station'] [u'media', u'ban', u'redfern', u'inquiri'] [u'mental', u'health', u'plan', u'put', u'focus', u'communiti', u'support'] [u'milit', u'kill', u'nablus', u'clash'] [u'minist', u'manufactur', u'support'] [u'minist', u'look', u'tillegerri', u'polic', u'number'] [u'mitsubishi', u'worker', u'face', u'uncertainti'] [u'rain', u'forecast', u'western', u'victoria'] [u'welcom', u'export', u'market', u'fund', u'pork'] [u'murder', u'hitchhik', u'claim', u'challeng', u'inquest'] [u'nake', u'news', u'break', u'languag', u'barrier'] [u'netbal', u'crowd'] [u'network', u'establish', u'combat', u'ghost', u'net', u'problem'] [u'opposit', u'leader', u'appoint'] [u'plan', u'submit', u'riverland', u'fruit'] [u'research', u'centr', u'benefit', u'rural', u'patient'] [u'offend', u'treatment', u'near', u'complet'] [u'tourism', u'outlook', u'plan', u'kakadu'] [u'nowingi', u'name', u'toxic', u'dump'] [u'seek', u'drought', u'relief', u'chang'] [u'consid', u'prosecut', u'ranger', u'water'] [u'coupl', u'star', u'toni', u'randal', u'die'] [u'opposit', u'criticis', u'forens', u'centr', u'test'] [u'opposit', u'question', u'budget', u'fund', u'island'] [u'pair', u'charg', u'babi', u'harm'] [u'panel', u'find', u'link', u'vaccin', u'autism'] [u'patient', u'mount', u'gambier', u'hospit', u'risk', u'report'] [u'patrick', u'corp', u'boost', u'half', u'year', u'profit'] [u'petrol', u'price', u'hike', u'make', u'attract', u'racv'] [u'bull', u'owner', u'slip', u'registr', u'loophol'] [u'deni', u'influenc', u'literaci', u'plan'] [u'stand', u'oversea', u'trip'] [u'drop', u'constitut', u'chang', u'plan'] [u'review', u'post'] [u'polic', u'point', u'finger', u'jaguar'] [u'polic', u'probe', u'esper', u'robberi'] [u'politician', u'bristl', u'mental', u'health', u'slur'] [u'precious', u'cello', u'save', u'cabinet', u'fate'] [u'preschool', u'teacher', u'march', u'poor', u'condit'] [u'probe', u'say', u'rivalri', u'hamper', u'rescu'] [u'properti', u'council', u'back', u'civic', u'plan'] [u'protest', u'disappoint', u'toxic', u'wast', u'dump', u'meet'] [u'protest', u'hurl', u'petrol', u'bomb', u'embassi', u'iran'] [u'question', u'rais', u'crackdown', u'tenant'] [u'race', u'olymp', u'narrow'] [u'rain', u'fail', u'help', u'riverland', u'malle', u'farmer'] [u'rain', u'give', u'hope', u'western', u'grazier'] [u'ranger', u'water', u'contamin', u'report', u'send', u'lawyer'] [u'rare', u'finch', u'spot', u'south', u'west', u'properti'] [u'redfern', u'inquiri', u'hear', u'drug', u'problem'] [u'wine', u'oversuppli', u'bring', u'hangov'] [u'research', u'confirm', u'univers', u'expand', u'rapid'] [u'resid', u'urg', u'input', u'rat', u'propos'] [u'review', u'mental', u'health', u'unit', u'welcom'] [u'warn', u'danger', u'threat'] [u'second', u'group', u'claim', u'respons', u'salim', u'death'] [u'sexual', u'assault', u'victim', u'servic', u'threat'] [u'shoalhaven', u'popul', u'expand'] [u'smoke', u'protect', u'beach'] [u'sonia', u'gandhi', u'turn', u'post'] [u'southern', u'queensland', u'win', u'stockhors', u'event'] [u'speed', u'head', u'home', u'zimbabw', u'snub'] [u'lankan', u'threaten', u'legal', u'action'] [u'streaki', u'farmer', u'enjoy', u'downpour'] [u'sugar', u'price', u'hit', u'profit'] [u'support', u'plan', u'jail', u'supplier', u'glue'] [u'surgeon', u'letter', u'highlight', u'hospit', u'wait', u'list'] [u'swear', u'featur', u'prompt', u'beatti', u'apolog'] [u'sydney', u'olymp', u'target', u'terrorist', u'court', u'tell'] [u'task', u'forc', u'investig', u'shoot'] [u'oncologist', u'criticis', u'minist', u'wait'] [u'temporari', u'solut', u'nurs', u'home', u'disput'] [u'texa', u'execut', u'mental'] [u'thai', u'debut', u'cann', u'competit', u'bewild', u'critic'] [u'charg', u'iraq', u'abus', u'enter', u'plea'] [u'toowoomba', u'financi', u'institut', u'win', u'nation', u'award'] [u'trust', u'begin', u'coastal', u'safeti', u'campaign'] [u'dead', u'highway', u'crash'] [u'tyson', u'train', u'comeback', u'aussi', u'puncher'] [u'open', u'world', u'stem', u'cell', u'bank'] [u'parliament', u'suspend', u'object', u'hit', u'blair'] [u'underdon', u'henin', u'hardenn', u'confirm', u'starter'] [u'union', u'meet', u'fairfax', u'loss'] [u'union', u'worker', u'react', u'angrili', u'deputi', u'wage'] [u'uniqu', u'geolog', u'format', u'threat'] [u'confid', u'despit', u'star', u'stay', u'home'] [u'guard', u'confess', u'iraqi', u'abus'] [u'guard', u'jail', u'iraqi', u'abus'] [u'guard', u'plead', u'guilti', u'iraq', u'abus'] [u'sadr', u'loyalist', u'clash', u'near', u'karbala', u'shrine'] [u'vanston', u'visit', u'indigen', u'communiti'] [u'vcat', u'presid', u'visit', u'bendigo'] [u'wag', u'growth', u'slow', u'despit', u'predict'] [u'plan', u'beach', u'smoke'] [u'western', u'power', u'investig', u'power', u'surg'] [u'woman', u'die', u'overnight', u'accid'] [u'world', u'bank', u'chief', u'deni', u'corrupt', u'claim'] [u'aust', u'seri', u'lose', u'test', u'status'] [u'year', u'woman', u'die', u'everest', u'descent'] [u'job', u'mitsubishi', u'shutdown'] [u'adelaid', u'netbal', u'leagu', u'record'] [u'alcohol', u'concern', u'spark', u'communiti', u'polic'] [u'chief', u'work', u'faction', u'woe'] [u'applic', u'need', u'drag', u'race', u'quirindi'] [u'associ', u'warn', u'region', u'airlin', u'futur'] [u'atsic', u'rais', u'budget', u'doubt'] [u'aussi', u'taylor', u'share', u'lpga', u'lead'] [u'aussi', u'yachtsman', u'win', u'bronz', u'turkey'] [u'aust', u'move', u'outlaw', u'trade'] [u'australia', u'england', u'pressur', u'bring', u'doosra'] [u'australian', u'happier', u'ident'] [u'australia', u'reopen', u'libya', u'embassi'] [u'babi', u'steal'] [u'beckham', u'stay', u'madrid'] [u'billiton', u'blast', u'halt', u'product'] [u'blue', u'widen', u'gasnier', u'messag', u'probe'] [u'bomb', u'rock', u'istanbul', u'mcdonald', u'park'] [u'die', u'continu', u'rafah', u'unrest'] [u'brazil', u'aust', u'discuss', u'ethanol', u'technolog', u'share'] [u'british', u'envoy', u'injur', u'bangladesh', u'mosqu'] [u'brogden', u'demand', u'answer', u'miss', u'hospit'] [u'bronco', u'point'] [u'brown', u'push', u'habib', u'hick', u'visit'] [u'bullet', u'threat', u'wont', u'stop', u'corrupt', u'probe', u'polic'] [u'bush', u'tri', u'calm', u'nervous', u'republican'] [u'better', u'union', u'behaviour', u'industri'] [u'call', u'dalkeith', u'park', u'facil', u'respit'] [u'oust', u'zimbabw', u'maker'] [u'campaign', u'singl', u'educ', u'site', u'underway'] [u'camper', u'come', u'forward', u'nation', u'park', u'blaze'] [u'cater', u'compani', u'take', u'halliburton', u'iraq'] [u'cathol', u'educ', u'offic', u'lament', u'teacher'] [u'chile', u'defeat', u'germani', u'claim', u'place', u'world', u'team'] [u'clean', u'begin', u'effluent', u'pond'] [u'commiss', u'certifi', u'meatwork', u'employ', u'agreement'] [u'concern', u'job', u'mitsubishi', u'closur'] [u'confirm', u'second', u'voic', u'gasnier', u'phone', u'messag'] [u'council', u'make', u'caretak', u'mode', u'prepar'] [u'council', u'urg', u'join', u'boundari', u'chang', u'campaign'] [u'council', u'debat', u'altern', u'vote'] [u'court', u'hear', u'roch', u'tri', u'warn', u'embassi', u'asio'] [u'crow', u'deni', u'ayr', u'ultimatum'] [u'crude', u'price', u'fuel', u'petrol', u'price', u'rise'] [u'decis', u'loom', u'crop', u'condit'] [u'defenc', u'get', u'million', u'train', u'facil'] [u'dentist', u'shortag', u'reach', u'crisi', u'point'] [u'deputi', u'challeng', u'state', u'spend', u'rail'] [u'doyl', u'call', u'anti', u'corrupt', u'commiss'] [u'dragon', u'romp', u'eel'] [u'produc', u'welcom', u'propos', u'levi'] [u'elect', u'candid', u'leav', u'late'] [u'call', u'belli', u'putter'] [u'emerald', u'beach', u'resid', u'challeng', u'restaur'] [u'commission', u'worri', u'isra', u'gaza', u'oper'] [u'eurobodalla', u'elect', u'date'] [u'euro', u'stadium', u'cost', u'doubl', u'estim'] [u'evid', u'delay', u'falconio', u'case'] [u'priest', u'plead', u'guilti', u'charg'] [u'extens', u'fail', u'forestri', u'review'] [u'famili', u'miss', u'british', u'tourist', u'return'] [u'farmer', u'urg', u'submit', u'toxic', u'wast', u'dump', u'compo'] [u'feder', u'govern', u'launch', u'region', u'marin', u'plan'] [u'feder', u'aim', u'conquer', u'french', u'open', u'jinx'] [u'govt', u'predict', u'mitsubishi', u'loss'] [u'risk', u'prompt', u'bonfir'] [u'food', u'safeti', u'group', u'defend', u'introduct'] [u'priest', u'make', u'court', u'appear', u'assault'] [u'union', u'boss', u'fin', u'rampag'] [u'pick', u'kelsey', u'grammer', u'sketch', u'comedi'] [u'french', u'fee', u'strand', u'refuge'] [u'futur', u'region', u'airlin', u'servic'] [u'gasnier', u'scandal', u'prompt', u'bond', u'rethink'] [u'gerrard', u'say', u'liverpool', u'need', u'trio', u'sign'] [u'govt', u'criticis', u'patient', u'accommod'] [u'govt', u'provid', u'cheaper', u'cancer', u'treatment'] [u'govt', u'move', u'allay', u'toxic', u'wast', u'concern'] [u'govt', u'offer', u'mitsubishi', u'worker', u'packag'] [u'govt', u'investig', u'powerlin', u'mainten', u'law'] [u'govt', u'talk', u'consult', u'state', u'appl'] [u'group', u'form', u'oppos', u'northern', u'foreshor', u'groyn'] [u'health', u'confer', u'address', u'chronic', u'ill'] [u'health', u'worker', u'drive', u'recruit'] [u'hewitt', u'learn', u'love', u'clay'] [u'hop', u'crisi', u'accommod', u'centr', u'open', u'soon'] [u'hospit', u'benefit', u'health', u'spend'] [u'hotel', u'blaze', u'disrupt', u'patron', u'lunch'] [u'incat', u'upbeat', u'latest', u'fast', u'ferri'] [u'incom', u'indian', u'promis', u'stabil'] [u'indonesia', u'fish', u'crew', u'rescu', u'australian', u'coast'] [u'indonesia', u'probe', u'bashir', u'near'] [u'injur', u'surviv', u'roadsid', u'ordeal'] [u'intern', u'diamond', u'thiev', u'bust', u'shanghai'] [u'investig', u'start', u'latest', u'sight'] [u'iran', u'condemn', u'expel', u'report'] [u'iraqi', u'kill', u'militia', u'clash'] [u'irukandji', u'sting', u'prompt', u'renew', u'warn'] [u'isra', u'govt', u'welcom', u'barghouti', u'verdict'] [u'isra', u'troop', u'begin', u'partial', u'pull', u'rafah'] [u'itali', u'bolster', u'iraq', u'troop', u'commit'] [u'jellyfish', u'antivenen', u'carri', u'ambul'] [u'jetstar', u'exec', u'rule', u'earli', u'brisban', u'flight'] [u'judg', u'join', u'call', u'corrupt', u'commiss'] [u'juri', u'consid', u'tare', u'murder', u'verdict'] [u'kiwi', u'perk', u'grab', u'coloni', u'lead', u'senden'] [u'kyoto', u'mitsubishi', u'reviv', u'plan'] [u'largest', u'piec', u'babi', u'boomer'] [u'lawyer', u'say', u'plane', u'incid', u'mistak'] [u'train', u'surgeri'] [u'lee', u'media', u'deal', u'reach', u'stalem'] [u'lennon', u'talk', u'heart', u'gold', u'budget'] [u'local', u'aborigin', u'work', u'hunter', u'coal'] [u'local', u'concern', u'lead', u'real', u'estat', u'law'] [u'local', u'govt', u'issu', u'microscop', u'annual'] [u'local', u'market', u'stronger', u'price', u'dip'] [u'long', u'line', u'fish', u'claim', u'race', u'albatross'] [u'lukewarm', u'respons', u'propos', u'pupil', u'free'] [u'major', u'upgrad', u'plan', u'sanctuari', u'hospit'] [u'jail', u'sell', u'drug'] [u'map', u'centr', u'stay', u'bendigo'] [u'marin', u'paint', u'trial', u'exhibit'] [u'meet', u'target', u'hospit', u'workplac', u'violenc'] [u'meet', u'focus', u'emerg', u'depart', u'rage'] [u'memori', u'spec', u'develop', u'germani'] [u'meteor', u'face', u'tough', u'weekend', u'game', u'coach'] [u'mildura', u'council', u'fight', u'toxic', u'wast', u'site', u'decis'] [u'mill', u'smith', u'leed', u'face'] [u'minichiello', u'dump', u'fin'] [u'minichiello', u'dump', u'blue', u'squad'] [u'mine', u'invest', u'reach', u'seven', u'year', u'high'] [u'minist', u'buy', u'rail', u'line', u'closur', u'debat'] [u'minist', u'close', u'make', u'decis', u'abattoir', u'debt'] [u'minist', u'leav', u'dark', u'patient', u'death'] [u'minist', u'say', u'park', u'prefer', u'site'] [u'minist', u'visa', u'chang'] [u'mitsubishi', u'boss', u'confirm', u'lonsdal', u'closur'] [u'mitsubishi', u'japan', u'announc', u'restructur', u'plan'] [u'mix', u'review', u'spam'] [u'molik', u'vienna', u'semi'] [u'injuri', u'miseri', u'wanganeen'] [u'support', u'habib', u'abus', u'claim'] [u'nasa', u'loan', u'shuttl', u'columbia', u'piec', u'research'] [u'laser', u'cane', u'offer', u'vision', u'impair', u'wide'] [u'crimin', u'charg', u'lay', u'motorcycl', u'death'] [u'prison', u'abus', u'iraq'] [u'north', u'coast', u'name', u'locat', u'skill', u'migrant'] [u'deni', u'hospit', u'stretch'] [u'opec', u'pressur', u'boost', u'suppli'] [u'oper', u'vampir', u'expos', u'bloodi'] [u'oppn', u'seek', u'answer', u'patient', u'death'] [u'opposit', u'commit', u'blackspot', u'road', u'fund'] [u'optus', u'look', u'secur', u'uecomm'] [u'orang', u'council', u'urg', u'water', u'restrict', u'town'] [u'organis', u'urg', u'appli', u'risk', u'children'] [u'pair', u'charg', u'blair', u'flour', u'bomb', u'attack'] [u'palac', u'amus', u'riverina', u'king', u'documentari'] [u'pantani', u'mother', u'highlight', u'son', u'despair'] [u'passport', u'surrend', u'death'] [u'patient', u'richardson', u'put', u'zealand'] [u'picasso', u'paint', u'go', u'miss', u'pari', u'museum'] [u'pie', u'focus', u'build', u'confid'] [u'pie', u'snap', u'lose', u'streak'] [u'plan', u'underway', u'power', u'station', u'accommod'] [u'player', u'interview', u'gasnier', u'messag', u'probe'] [u'poach', u'threaten', u'white', u'rhino'] [u'polic', u'corrupt', u'link', u'underworld', u'slay'] [u'polic', u'identifi', u'roadsid', u'victim'] [u'pont', u'pessimist', u'zimbabw', u'breakthrough'] [u'posit', u'negat', u'flow', u'field'] [u'postpon', u'dalrympl', u'elect', u'ahead'] [u'pregnant', u'woman', u'misdiagnosi', u'lead', u'hospit'] [u'premier', u'criticis', u'forestri', u'profan'] [u'protest', u'closur', u'matern', u'servic'] [u'push', u'maintain', u'tropic', u'darwin'] [u'buy', u'singapor', u'zurich'] [u'rebuild', u'longreach', u'club', u'readi', u'open'] [u'region', u'council', u'elect', u'defer'] [u'region', u'unemploy', u'rate', u'drop'] [u'regul', u'marin', u'plan', u'undetermin'] [u'resid', u'doubt', u'immedi', u'start', u'railway'] [u'resid', u'remind', u'import', u'smoke', u'detector'] [u'reuter', u'slam', u'militari', u'death', u'cameraman'] [u'rilli', u'releas', u'razorback'] [u'samuel', u'bolster', u'real', u'defenc'] [u'santini', u'confid', u'franc', u'strike', u'forc', u'despit'] [u'saudi', u'secur', u'clash', u'claim', u'live'] [u'schu', u'webber', u'monaco'] [u'sella', u'dedic', u'giro', u'pantani'] [u'charg', u'drop', u'leicest', u'player'] [u'shrek', u'earn', u'record'] [u'sick', u'escape', u'jail', u'year', u'later'] [u'sothebi', u'sell', u'belong', u'johnni', u'cash'] [u'spanish', u'coach', u'saez', u'name', u'euro', u'squad'] [u'spanish', u'journalist', u'hold', u'sadr', u'link', u'rebel', u'group'] [u'surveil', u'plane', u'make', u'maiden', u'flight'] [u'survey', u'highlight', u'german', u'drive'] [u'swede', u'urg', u'pull', u'mercuri', u'mouth', u'dead'] [u'swift', u'thunderbird', u'kestrel', u'notch', u'win'] [u'tafe', u'releas', u'restructur', u'propos'] [u'taiwan', u'launch', u'second', u'satellit'] [u'talk', u'toilet', u'inventor', u'flush', u'success'] [u'tare', u'guilti', u'murder', u'wife'] [u'teenag', u'die', u'polic', u'pursuit'] [u'teenag', u'kill', u'motorcycl', u'accid'] [u'teen', u'jail', u'king', u'kidnap'] [u'thousand', u'unknow', u'meat', u'link'] [u'arrest', u'park', u'theft', u'tourist', u'sit'] [u'toothfish', u'boat', u'serv', u'train', u'vessel'] [u'tourist', u'accommod', u'tout', u'cabramurra'] [u'travel', u'visa', u'process', u'question'] [u'truck', u'compani', u'urg', u'pass', u'fuel', u'cost'] [u'truck', u'recal', u'latest', u'blow', u'mitsubishi'] [u'turkey', u'outclass', u'socceroo'] [u'injur', u'penola', u'crash'] [u'arrest', u'elder', u'coupl', u'bash'] [u'typhoon', u'loom', u'japan', u'coast'] [u'union', u'demand', u'answer', u'blast'] [u'unit', u'line', u'heinz', u'boost', u'defenc'] [u'upgrad', u'drive', u'growth'] [u'forc', u'start', u'ghraib', u'releas'] [u'govt', u'anonym', u'sperm', u'doner'] [u'pay', u'chalabi', u'parti', u'report', u'reveal'] [u'paper', u'publish', u'iraq', u'abus', u'photo'] [u'promis', u'investig', u'detaine', u'abus', u'claim'] [u'polic', u'corrupt', u'worst', u'judg', u'say'] [u'villa', u'sign', u'danish', u'defend', u'laursen'] [u'call', u'safeti', u'talk', u'billiton'] [u'wage', u'rise', u'extra', u'budget', u'fund', u'say'] [u'wall', u'stock', u'price', u'start', u'point'] [u'william', u'sister', u'pari', u'collis', u'cours'] [u'wilson', u'name', u'outsid', u'super', u'final'] [u'women', u'golf', u'unifi', u'rank'] [u'zimbabw', u'australia', u'meet', u'discuss', u'crisi'] [u'zimbabw', u'threat', u'cancel', u'test', u'seri'] [u'zimbabw', u'test', u'seri', u'cancel'] [u'truck', u'plung', u'northern', u'india', u'gorg'] [u'abducte', u'children', u'free', u'north', u'korea'] [u'criticis', u'food', u'freight', u'price', u'rise'] [u'advertis', u'emerg', u'manag'] [u'actress', u'helen', u'hunt', u'give', u'birth', u'daughter'] [u'aid', u'wound', u'iraq', u'suicid', u'bomb'] [u'challeng', u'govt', u'releas', u'guantanamo', u'detail'] [u'ambul', u'servic', u'adequ', u'staff'] [u'anglican', u'abus', u'report', u'public'] [u'giro', u'petacchi', u'mcewen'] [u'arab', u'leagu', u'summit', u'open', u'tuni'] [u'arab', u'summit', u'tackl', u'middl', u'east', u'crisi'] [u'asic', u'ban', u'pair', u'give', u'financi', u'advic'] [u'australia', u'stymi', u'zimbabw', u'player'] [u'appoint', u'director', u'general'] [u'belgium', u'maliss', u'beat', u'melzer', u'reach', u'poelten'] [u'belli', u'putter', u'safe', u'say'] [u'crowd', u'expect', u'flock', u'sheep'] [u'bomb', u'explod', u'belfast'] [u'britain', u'probe', u'iraqi', u'civilian', u'kill'] [u'brit', u'pigeon', u'mass', u'destruct', u'reveal'] [u'brown', u'push', u'list', u'devil', u'threaten'] [u'brumbi', u'favourit', u'crusad'] [u'brumbi', u'second', u'super', u'titl'] [u'busi', u'urg', u'worker', u'compens', u'plan'] [u'canadian', u'court', u'uphold', u'monsanto', u'patent'] [u'caucaunibuca', u'join', u'french', u'club', u'report'] [u'cejka', u'shrug', u'injuri', u'lead'] [u'celtic', u'aim', u'doubl', u'par'] [u'chechen', u'voter', u'poll', u'august'] [u'coalit', u'militia', u'withdraw', u'karbala'] [u'comb', u'get', u'laugh', u'raisin', u'doubter'] [u'demon', u'withstand', u'roo', u'fightback'] [u'disney', u'launch', u'digit', u'channel', u'britain'] [u'doubl', u'seal', u'world', u'team', u'final', u'berth'] [u'jone', u'nasdaq', u'close', u'higher'] [u'ekland', u'join', u'alter', u'theron', u'cann', u'carpet'] [u'england', u'strauss', u'elat', u'debut', u'test'] [u'espanyol', u'fight', u'releg', u'bird'] [u'fatal', u'blast', u'suspend', u'billiton', u'work'] [u'feder', u'face', u'tough', u'week', u'french', u'open'] [u'fifa', u'pardon', u'cameroon', u'lift', u'point', u'sanction'] [u'finn', u'releas', u'follow', u'album'] [u'fishermen', u'hold', u'talk', u'marin', u'protect', u'area'] [u'kill', u'baghdad', u'blast'] [u'franc', u'roll', u'australia', u'volleybal', u'champ'] [u'freo', u'humbl', u'underman', u'lion'] [u'futur', u'plant', u'doubt', u'fatal', u'blast'] [u'gallop', u'furi', u'blue', u'night', u'shame'] [u'geelong', u'essendon'] [u'good', u'thief', u'apologis', u'chariti', u'break'] [u'govt', u'ask', u'examin', u'guantanamo', u'abus', u'claim'] [u'govt', u'defend', u'adopt', u'cost'] [u'govt', u'pledg', u'homeless', u'fund'] [u'govt', u'tougher', u'firework', u'restrict'] [u'greenpeac', u'stag', u'nation', u'protest'] [u'height', u'roo', u'laidley'] [u'hospit', u'get', u'promis', u'secur', u'guard'] [u'india', u'swear', u'sikh'] [u'india', u'swear', u'sikh'] [u'ingal', u'take', u'race', u'darwin'] [u'iran', u'threaten', u'australia', u'sanction'] [u'israel', u'vow', u'continu', u'rafah', u'oper'] [u'late', u'tri', u'storm', u'eclips', u'raider'] [u'leadership', u'program', u'refin'] [u'leader', u'portrait', u'vanish', u'turkmen', u'street'] [u'leed', u'turn', u'galatasari', u'offer', u'viduka'] [u'leonard', u'lewi', u'lead', u'coloni'] [u'bulk', u'bill', u'hurt', u'hospit'] [u'serious', u'injur', u'baysid', u'attack'] [u'shoot', u'dead', u'polic'] [u'mediat', u'centr', u'receiv', u'extra', u'fund'] [u'mitsubishi'] [u'mitsubishi', u'employe', u'hunt', u'job'] [u'molik', u'vienna', u'final'] [u'morgan', u'half', u'lpga', u'titl'] [u'korea', u'expect', u'koizumi', u'visit'] [u'north', u'korea', u'japan', u'hold', u'landmark', u'talk'] [u'word', u'outcom', u'japan', u'north', u'korea', u'talk'] [u'criticis', u'increas', u'adopt', u'fee'] [u'plan', u'review', u'origin', u'fiasco'] [u'nude', u'roll', u'record'] [u'price', u'saudi', u'promis', u'suppli', u'boost'] [u'olymp', u'threat', u'soccer', u'lift', u'blatter', u'sign'] [u'ombudsman', u'target', u'council', u'complaint'] [u'origin', u'scandal', u'invok', u'bulldog', u'fine'] [u'panther', u'notch', u'gritti', u'cowboy'] [u'pension', u'happi', u'ticket', u'scheme'] [u'polic', u'alarm', u'rise', u'road', u'toll'] [u'polic', u'conduct', u'raid', u'gang', u'inquiri'] [u'polic', u'investig', u'werribe', u'school', u'blaze'] [u'poll', u'show', u'support', u'wan', u'iraq'] [u'port', u'smash', u'toothless', u'tiger'] [u'probe', u'airport', u'secur', u'breach', u'begin'] [u'lead', u'environ'] [u'raider', u'pair', u'clash', u'outsid', u'casino'] [u'raphael', u'sketch', u'london', u'cupboard'] [u'report', u'free', u'spain', u'complet', u'iraq', u'pullout'] [u'rescu', u'captain', u'face', u'illeg', u'fish', u'charg'] [u'royal', u'wed', u'fever', u'hit', u'spain'] [u'russia', u'ratifi', u'kyoto', u'treati'] [u'sack', u'rebel', u'take', u'case'] [u'schu', u'continu', u'form', u'monaco', u'practic'] [u'scientist', u'impati', u'slow', u'quak'] [u'scientist', u'studi', u'horticultur'] [u'second', u'mitsubishi', u'plant', u'safe'] [u'secur', u'breach', u'delay', u'brisban', u'flight'] [u'seven', u'year', u'chariti', u'adventur', u'end', u'hobart'] [u'spain', u'arrest', u'moroccan', u'train', u'bomb', u'probe'] [u'student', u'welcom', u'decis'] [u'studi', u'examin', u'drought', u'impact', u'farm'] [u'suicid', u'blast', u'checkpoint', u'injur'] [u'sydney', u'woman', u'maul', u'dog'] [u'test', u'player', u'head', u'home', u'zimbabw'] [u'thai', u'liverpool', u'bidder', u'morgan', u'withdraw'] [u'bangladesh', u'shrine', u'blast'] [u'tiger', u'bulldog'] [u'trulli', u'qualifi', u'fastest', u'monaco'] [u'worker', u'accid'] [u'charg', u'cleveland', u'bash'] [u'experi', u'gymnast', u'athen', u'provision'] [u'hold', u'contractor', u'behead'] [u'sit', u'consid', u'teach', u'hospit'] [u'ugandan', u'rebel', u'attack', u'kill', u'civilian'] [u'underdog', u'millwal', u'shock', u'cahil'] [u'union', u'question', u'mitsubishi', u'assist', u'packag'] [u'arrest', u'sadr', u'support', u'northern', u'iraq'] [u'disciplin', u'whistleblow', u'soldier'] [u'extend', u'custodi', u'death', u'investig'] [u'extend', u'almond', u'salmonella', u'warn'] [u'onlin', u'sale', u'climb'] [u'probe', u'chalabi', u'iran', u'link'] [u'soldier', u'die', u'iraq', u'bomb', u'attack'] [u'increas', u'diseas', u'research', u'fund'] [u'worri', u'mitsubishi', u'fallout'] [u'webber', u'face', u'nervous', u'wait', u'monaco'] [u'wed', u'bell', u'spain', u'royal'] [u'windi', u'squad', u'nation', u'seri'] [u'yass', u'arrest', u'bank', u'robberi'] [u'zimbabw', u'retain', u'squad', u'crush', u'lanka'] [u'fear', u'dead', u'bangladeshi', u'boat', u'sink'] [u'ventura', u'win', u'titl', u'appear'] [u'govt', u'address', u'walk', u'fame', u'singl', u'plaqu'] [u'anthoni', u'play', u'elect', u'specul'] [u'asbesto', u'concern', u'stop', u'construct', u'site', u'work'] [u'atsic', u'communiti', u'meet', u'help', u'plan', u'futur'] [u'australia', u'beat', u'world', u'team', u'final'] [u'aust', u'volleybal', u'algeria'] [u'autopsi', u'confirm', u'polic', u'kill'] [u'beagl', u'doom', u'start'] [u'beatti', u'prais', u'gold', u'coast', u'marina'] [u'beckham', u'stick', u'neck', u'tattoo'] [u'blue', u'turmoil', u'ahead', u'origin'] [u'brisban', u'crowd', u'flock', u'paniyiri', u'festiv'] [u'brumbi', u'star', u'samo', u'eye', u'fiji', u'pacif'] [u'bulldog', u'overpow', u'carlton'] [u'busi', u'sign', u'rail', u'contract'] [u'cancer', u'council', u'call', u'task', u'forc'] [u'cann', u'give', u'moor', u'anti', u'bush', u'platform'] [u'celtic', u'scottish'] [u'clown'] [u'colleagu', u'defend', u'draper', u'studi', u'tour'] [u'darwin', u'host', u'croc', u'confer'] [u'degener', u'win', u'daytim', u'emmi', u'talk'] [u'devonport', u'prompt', u'warn'] [u'doctor', u'alleg', u'threat', u'asbesto', u'concern'] [u'draper', u'repay', u'cost', u'oversea', u'trip'] [u'eagl', u'lift', u'steinhauer', u'share', u'lpga', u'lead'] [u'engin', u'advertis', u'aircraft', u'safeti', u'concern'] [u'fatal', u'shoot', u'trigger', u'stun'] [u'fellow', u'rooki', u'netbal', u'squad'] [u'ferri', u'capsiz', u'bangladesh', u'kill'] [u'kill', u'pari', u'airport', u'collaps'] [u'flotilla', u'hope', u'sail', u'nauru'] [u'franc', u'havret', u'take', u'shoot', u'lead'] [u'garbag', u'collector', u'clean', u'trash', u'addict'] [u'german', u'nation', u'shoot', u'dead', u'riyadh'] [u'germani', u'elect', u'presid'] [u'gould', u'quit', u'origin', u'coach'] [u'govt', u'see', u'south', u'aust', u'trade', u'deal', u'boost'] [u'govt', u'warn', u'indonesian', u'terror', u'threat'] [u'great', u'lake', u'plan', u'target', u'rainbow', u'trout', u'fisheri'] [u'green', u'run', u'scorch'] [u'greenpeac', u'delay', u'shipment'] [u'hewitt', u'learn', u'love', u'clay'] [u'honchar', u'beat', u'mcgee', u'giro', u'stage'] [u'independ', u'review', u'probe', u'pilbara', u'work', u'safeti'] [u'islam', u'group', u'say', u'baghdad', u'bomb', u'work'] [u'sharehold', u'want', u'dump', u'chief', u'exec', u'report'] [u'kashmir', u'attack', u'leav', u'soldier', u'dead'] [u'kashmir', u'blast', u'kill', u'peopl'] [u'kelli', u'domin', u'darwin'] [u'langer', u'question', u'seri'] [u'hospitalis', u'bike', u'accid'] [u'injur', u'water', u'wheel', u'accid'] [u'unit', u'silenc', u'brave', u'lion'] [u'mason', u'adhd', u'bulldog'] [u'mccullum', u'steadi', u'zealand'] [u'media', u'harm', u'famili', u'say', u'pope'] [u'melbourn', u'drug', u'overdos', u'spark', u'health', u'warn'] [u'minchin', u'talk', u'navi', u'contract'] [u'minist', u'condemn', u'teacher', u'strike', u'threat'] [u'molik', u'fall', u'final', u'hurdl', u'vienna'] [u'moor', u'win', u'cann', u'prize'] [u'motorway', u'plan', u'drive', u'protest'] [u'say', u'mine', u'review', u'examin', u'cultur', u'fear'] [u'nation', u'park', u'blaze', u'control'] [u'program', u'tackl', u'youth', u'homeless'] [u'indian', u'draw', u'pakistani', u'prais'] [u'iraqi', u'abus', u'detail', u'releas'] [u'night', u'violenc', u'follow', u'crusad', u'loss'] [u'norwegian', u'newspap', u'report', u'strike'] [u'consid', u'neighbour', u'water', u'restrict'] [u'tighten', u'bomb', u'law'] [u'korea', u'suspect', u'suppli', u'uranium', u'libya'] [u'nucifora', u'prais', u'brumbi', u'fli', u'start'] [u'opec', u'opt', u'immedi', u'boost', u'output'] [u'opec', u'talk', u'decis'] [u'miss', u'bangladesh', u'ferri', u'mishap'] [u'pakistan', u'hail', u'return', u'commonwealth'] [u'pakistan', u'rejoin', u'commonwealth', u'fold'] [u'palestinian', u'storm', u'convoy', u'isra', u'raid'] [u'parti', u'meet', u'power', u'disput'] [u'peru', u'block', u'british', u'journalist', u'leav'] [u'polic', u'question', u'restaur', u'blaze'] [u'raider', u'fine', u'pair', u'brawl'] [u'raider', u'meet', u'casino', u'fight'] [u'refuge', u'status', u'nauru', u'afghan', u'asylum', u'seeker'] [u'religion', u'unit', u'help', u'iraqi', u'children'] [u'report', u'fatal', u'blast', u'nablus'] [u'rise', u'petrol', u'revenu', u'fuel', u'boost', u'road'] [u'rumsfeld', u'ban', u'camera', u'phone', u'iraq', u'report'] [u'saint', u'juggernaut', u'roll', u'eagl'] [u'sar', u'vaccin', u'test', u'human'] [u'saudi', u'arabia', u'stand', u'firm', u'opec', u'propos'] [u'scientist', u'mull', u'crocodil', u'futur'] [u'shark', u'hold', u'surg', u'man'] [u'shave', u'optimist', u'futur', u'liber', u'parti'] [u'ship', u'carri', u'car', u'sink'] [u'sizzl', u'lift', u'campbel', u'share', u'lead'] [u'somali', u'warlord', u'step', u'peac'] [u'streak', u'worri', u'impact', u'aussi', u'tour'] [u'swan', u'beat', u'hawk', u'thriller'] [u'swan', u'control', u'hawk'] [u'defend', u'environ', u'fund'] [u'task', u'forc', u'begin', u'hunt', u'mitsubishi', u'replac'] [u'think', u'tank', u'warn', u'kyoto', u'sanction'] [u'indonesian', u'terror', u'suspect', u'acquit'] [u'command', u'present', u'abus'] [u'deni', u'raid', u'wed', u'parti'] [u'forc', u'militia', u'battl', u'kufa'] [u'forc', u'roll', u'karbala'] [u'vlandri', u'clinch', u'polten', u'titl'] [u'volcanologist', u'pink', u'dinosaur', u'remot', u'webcam'] [u'farmer', u'welcom', u'rain'] [u'warrior', u'battl', u'cellar', u'dweller'] [u'webber', u'hop', u'monaco', u'point'] [u'whisper', u'afoot', u'british', u'french', u'communic'] [u'back', u'plan', u'deal', u'weighti', u'problem'] [u'william', u'satisfi', u'port'] [u'woman', u'bash', u'townsvill', u'home', u'invas'] [u'miss', u'bangladesh', u'ferri', u'sink'] [u'administr', u'appoint', u'manag', u'prime', u'land'] [u'afghan', u'refuge', u'grant', u'perman', u'resid'] [u'airport', u'collaps', u'spark', u'homicid', u'investig'] [u'ord', u'lift', u'late', u'trade'] [u'expert', u'review', u'parliamentari', u'collect'] [u'australia', u'qualifi', u'paddler', u'athen'] [u'auto', u'long', u'line', u'fish', u'spotlight'] [u'bellingen', u'council', u'budget', u'surplus'] [u'bendigo', u'drug', u'crackdown', u'net', u'peopl'] [u'billiton', u'pilbara', u'oper', u'safeti'] [u'birthday', u'flesch', u'celebr', u'victori'] [u'boat', u'awash', u'success'] [u'bottl', u'throttl', u'rule', u'compani', u'regul'] [u'offic', u'ogr', u'shrek', u'smash', u'record'] [u'die', u'quad', u'bike', u'accid'] [u'brisban', u'ship', u'set', u'sail', u'nauru', u'flotilla'] [u'brother', u'appear', u'court', u'bash'] [u'burgoyn', u'report', u'repriev', u'koschitzk'] [u'crash', u'kill', u'tunisia'] [u'bus', u'replac', u'train', u'safeti', u'concern'] [u'bushfir', u'victim', u'tell', u'inquest', u'narrow', u'escap'] [u'bushfir', u'wit', u'tell', u'appal', u'leadership'] [u'call', u'polic', u'station', u'georg'] [u'call', u'burn', u'reduc', u'risk', u'fire'] [u'canberra', u'student', u'experi', u'rural', u'medic', u'life'] [u'can', u'domest', u'violenc', u'cost'] [u'chalabi', u'deni', u'pass', u'secret', u'iran'] [u'channel', u'launch', u'falconio', u'case', u'appeal'] [u'clash', u'forc', u'iraqi', u'militia', u'continu'] [u'colli', u'hous', u'shortag', u'concern', u'busi'] [u'commission', u'prais', u'namadgi', u'contain'] [u'communiti', u'urg', u'celebr', u'palliat', u'care'] [u'compani', u'sign', u'nativ', u'titl', u'agreement', u'toomey'] [u'crime', u'get', u'cost'] [u'game', u'classif', u'review'] [u'concern', u'rais', u'over', u'cost', u'aborigin', u'communiti'] [u'council', u'oppos', u'water', u'price', u'increas'] [u'crocodil', u'committe', u'debat', u'safari', u'propos'] [u'crocodil', u'prowl', u'water', u'cabl', u'beach'] [u'dali', u'river', u'refus'] [u'darci', u'plead', u'guilti', u'abus', u'alleg'] [u'democrat', u'guantanamo', u'medic', u'examin'] [u'denmark', u'wind', u'farm', u'closer', u'realiti'] [u'diamond', u'forev', u'jaguar'] [u'dirti', u'spark', u'flap'] [u'downer', u'question', u'mukhla', u'interview'] [u'dozen', u'kill', u'sudanes', u'raid', u'wit'] [u'drink', u'drive', u'decreas', u'carnival'] [u'dump', u'consid', u'cross', u'floor'] [u'bite', u'fitzroy', u'brawl'] [u'partner', u'travel', u'payment', u'independ'] [u'fairfax', u'share', u'jump', u'forecast', u'earn'] [u'farmbi', u'train', u'receiv', u'million', u'fund'] [u'ferrero', u'doubt', u'french', u'open'] [u'ferri', u'capsiz', u'bangladesh', u'hundr', u'fear', u'dead'] [u'fight', u'rag', u'troop', u'sadr'] [u'flood', u'trap', u'chines'] [u'aust', u'worker', u'leav', u'indonesian'] [u'free', u'kick', u'sink', u'socceroo'] [u'french', u'hospit', u'prolaps', u'disc'] [u'french', u'polynesia', u'head', u'poll'] [u'garag', u'giant', u'open', u'door', u'owner'] [u'govt', u'carv', u'hospit'] [u'govt', u'grant', u'furnitur', u'manufactur', u'damag'] [u'govt', u'play', u'moreton', u'health', u'concern'] [u'govt', u'seek', u'habib', u'psych', u'report'] [u'govt', u'sign', u'intern', u'environment', u'treati'] [u'govt', u'consid', u'rat', u'waiver', u'extens'] [u'govt', u'tighten', u'rule', u'draper', u'junket', u'outrag'] [u'grape', u'grower', u'rais', u'money', u'wine', u'colleg'] [u'green', u'introduc'] [u'green', u'challeng', u'riverina', u'elector'] [u'grow', u'injuri', u'list', u'test', u'lion'] [u'handl', u'beach', u'whale', u'focus', u'train'] [u'hast', u'council', u'consid', u'effect'] [u'henin', u'hardenn', u'gambl', u'french', u'open', u'crown'] [u'high', u'profil', u'team', u'defeat', u'polic', u'union'] [u'hollingworth', u'learn', u'abus', u'author'] [u'home', u'invas', u'victim', u'remain', u'stabl', u'condit'] [u'howard', u'deni', u'link', u'mitsubishi', u'closur'] [u'hydrotherapi', u'studi', u'begin', u'month'] [u'icebreak', u'blame', u'antarct', u'pollut'] [u'immelman', u'close', u'birdi', u'victori'] [u'impact', u'john', u'diseas', u'reduc', u'despit'] [u'indigen', u'youth', u'produc', u'respons', u'drink'] [u'investig', u'appoint', u'probe', u'blue', u'misbehaviour'] [u'iran', u'name', u'conserv', u'state', u'broadcast', u'boss'] [u'iraqi', u'scientist', u'die', u'base', u'report'] [u'iraq', u'wed', u'video', u'rais', u'question', u'denial'] [u'isra', u'forc', u'leav', u'rafah', u'neighbourhood'] [u'isra', u'militari', u'partial', u'lift', u'rafah', u'sieg'] [u'isra', u'minist', u'compar', u'rafah', u'holocaust'] [u'japan', u'north', u'korea', u'talk', u'offer', u'fresh', u'hope'] [u'job', u'lose', u'tafe', u'restructur', u'claim'] [u'judg', u'tell', u'expect', u'tough', u'decis'] [u'kabul', u'rocket', u'attack', u'claim', u'peacekeep', u'casualti'] [u'kiwi', u'close', u'finish', u'england'] [u'kookaburra', u'blow', u'goal', u'lead'] [u'labor', u'accus', u'govt', u'jone', u'flint', u'cover'] [u'labor', u'vote', u'rig', u'report', u'head', u'nation'] [u'landhold', u'warn', u'protect', u'pet', u'wild'] [u'spanish', u'troop', u'head', u'home', u'iraq'] [u'lawyer', u'argu', u'falconio', u'suppress', u'order', u'mistak'] [u'lawyer', u'warn', u'falconio', u'court', u'close'] [u'lend', u'leas', u'eye', u'deal'] [u'liquid', u'pursu', u'norman', u'win', u'grower'] [u'liverpool', u'plan', u'announc', u'houllier', u'talk'] [u'locat', u'farmer', u'market'] [u'long', u'jail', u'refurbish', u'open'] [u'lyon', u'trick', u'franc'] [u'mackay', u'port', u'dredg', u'scrap'] [u'magnesium', u'compani', u'scout', u'smelter'] [u'malawi', u'polic', u'warn', u'shot', u'poll', u'stand'] [u'charg', u'hijack'] [u'dead', u'motorcycl', u'smash'] [u'break', u'leg', u'leav', u'highway'] [u'maori', u'parti', u'founder', u'confid', u'support'] [u'medium', u'size', u'wineri', u'lose'] [u'migrant', u'dementia', u'patient', u'better'] [u'mine', u'disput', u'prompt', u'indonesian', u'travel', u'warn'] [u'minist', u'condemn', u'anti', u'forestri', u'ralli'] [u'minist', u'interven', u'woman', u'hospit'] [u'minist', u'say', u'amalgam', u'communiti', u'base'] [u'minist', u'address', u'skill', u'worker', u'shortag'] [u'mitsubishi', u'explain', u'loss', u'figur'] [u'payris', u'contrast', u'communiti', u'servic', u'wage'] [u'call', u'polic', u'princ', u'highway'] [u'say', u'offer', u'affect'] [u'mullewa', u'youth', u'precinct', u'open'] [u'form', u'insur', u'allianc'] [u'nation', u'execut', u'choos', u'labor', u'candid'] [u'nation', u'claim', u'govt', u'want', u'close', u'hospit'] [u'nation', u'govt', u'catch', u'reason'] [u'mind', u'adhd', u'mason', u'focus', u'maroon'] [u'crack', u'hear', u'stricken', u'pari', u'termin'] [u'exhibit', u'year', u'mine', u'expo'] [u'plan', u'control', u'popul', u'growth'] [u'buck', u'fuel', u'cost'] [u'norwegian', u'soldier', u'kill', u'kabul', u'attack'] [u'brother', u'face', u'court', u'bash'] [u'leagu', u'boss', u'cast', u'doubt', u'latest', u'assault'] [u'teacher', u'strike'] [u'back', u'propos', u'legalis', u'year'] [u'arrest', u'cairn', u'heroin', u'bust'] [u'court', u'drug', u'bust'] [u'parliament', u'celebr', u'year'] [u'review', u'swear', u'allegi', u'queen'] [u'field', u'drama', u'take', u'focus', u'footi'] [u'price', u'slide', u'opec', u'talk'] [u'outlook', u'mine', u'industri', u'look'] [u'overnight', u'rain', u'goulburn', u'valley'] [u'pakistan', u'slam', u'militari', u'incurs'] [u'peopl', u'unawar', u'resourc', u'say', u'council'] [u'petacchi', u'equal', u'giro', u'record', u'mcgee'] [u'warn', u'labor', u'travel', u'claim'] [u'plot', u'govern'] [u'polic', u'examin', u'drive', u'shoot', u'link'] [u'polic', u'investig', u'bodi', u'compactor'] [u'polic', u'braveri', u'award', u'redfern', u'riot'] [u'polic', u'probe', u'road', u'rage', u'link', u'noranda', u'accid'] [u'polic', u'contact', u'domest', u'violenc'] [u'polic', u'urg', u'decis', u'euthanasia', u'case'] [u'protest', u'ralli', u'atsic', u'abolish', u'plan'] [u'queenstown', u'hous', u'suspici'] [u'rail', u'transport', u'like', u'toxic', u'wast'] [u'rat', u'increas', u'inevit'] [u'real', u'slump', u'disastr', u'fourth'] [u'reconcili', u'week', u'kick', u'renmark'] [u'rich', u'countri', u'plead'] [u'roch', u'name', u'bashir', u'leader'] [u'rock', u'lobster', u'industri', u'cautious', u'welcom', u'marin'] [u'rooster', u'suspend', u'minichiello', u'wing'] [u'rspca', u'pursu', u'tougher', u'penalti', u'tortur'] [u'anglican', u'vote', u'women', u'bishop'] [u'announc', u'teacher', u'recruit', u'scheme'] [u'salvo', u'issu', u'fundrais', u'warn'] [u'scandal', u'canadian', u'call', u'general', u'elect'] [u'shadow', u'call', u'local', u'govern', u'report', u'author'] [u'sharon', u'pressur', u'disengag', u'plan'] [u'shepparton', u'protest', u'appl', u'import'] [u'shire', u'pay', u'tribut', u'local', u'icon'] [u'silent', u'wit', u'charg', u'contempt'] [u'socceroo', u'chang', u'turkey', u'return', u'match'] [u'sport', u'star', u'mentor', u'indigen', u'youth'] [u'state', u'cabinet', u'meet', u'geraldton'] [u'state', u'agre', u'tugun', u'bypass', u'rout'] [u'steinhauer', u'hold', u'nerv', u'year'] [u'streak', u'call', u'boycott', u'cricket', u'zimbabw'] [u'studi', u'expos', u'palliat', u'carer', u'high', u'stress'] [u'studi', u'examin', u'ineffici', u'pacif', u'transport'] [u'sudan', u'face', u'humanitarian', u'crisi'] [u'suspend', u'player', u'bounc', u'stuart', u'say'] [u'consid', u'holiday', u'cover', u'judg'] [u'taxi', u'compani', u'defend', u'decis', u'refus', u'voucher'] [u'telstra', u'boss', u'snub', u'biggest', u'sharehold', u'labor'] [u'telstra', u'expect', u'line', u'rental', u'windfal'] [u'todd', u'river', u'run'] [u'toppl', u'crane', u'remov', u'hous'] [u'trulli', u'break', u'shumach', u'monopoli', u'victori'] [u'trulli', u'win', u'monaco', u'grand', u'prix'] [u'turtl', u'popul', u'stabilis'] [u'tweed', u'seagul', u'player', u'condit'] [u'briton', u'kill', u'baghdad', u'blast'] [u'hume', u'highway', u'near', u'coolac'] [u'storm', u'player', u'face', u'judiciari'] [u'servicemen', u'kill', u'near', u'fallujah'] [u'soldier', u'kill', u'fallujah', u'ambush'] [u'iraq', u'document', u'leak', u'deliber', u'analyst'] [u'agenc', u'protest', u'isra', u'detent'] [u'allow', u'hick', u'famili', u'attend', u'trial'] [u'deni', u'command', u'know', u'iraq', u'abus'] [u'list', u'suspect', u'fallujah', u'lynch'] [u'paper', u'carri', u'doonesburi', u'cartoon', u'apolog'] [u'network', u'wont', u'bush', u'speech'] [u'venus', u'bank', u'injur', u'ankl'] [u'corrupt', u'fighter', u'tell', u'intimid'] [u'govt', u'plan', u'nurs', u'bulli', u'taskforc'] [u'hospitalis', u'bash'] [u'wangarratta', u'guilti', u'manslaught'] [u'west', u'coast', u'railway', u'receiv', u'safeti', u'certif'] [u'whale', u'expect', u'warrnambool', u'return'] [u'woman', u'injur', u'rugbi', u'match'] [u'work', u'wind', u'farm', u'start'] [u'dead', u'romania', u'truck', u'blast'] [u'rural', u'radio', u'accus', u'bias', u'media', u'watch'] [u'call', u'south', u'east', u'coast', u'protect'] [u'tribun', u'ban', u'burgoyn', u'thompson'] [u'african', u'nation', u'unit', u'peac'] [u'cargo', u'scanner', u'offer', u'breakthrough', u'custom'] [u'black', u'tana', u'umaga', u'captain'] [u'quiz', u'flint', u'jone', u'letter'] [u'restrain', u'good', u'poll', u'news'] [u'qaeda', u'want', u'wmds', u'think', u'tank', u'say'] [u'asio', u'take', u'blame', u'damag', u'water', u'leak'] [u'assembl', u'meet', u'gungahlin', u'drive'] [u'aussi', u'bloom', u'prestigi', u'flower'] [u'aussi', u'crash', u'french', u'open'] [u'australia', u'encourag', u'olymp', u'attack', u'athen'] [u'babi', u'bear', u'sperm', u'freez', u'year'] [u'ballina', u'woman', u'charg', u'attempt', u'murder'] [u'bangladesh', u'ferri', u'death', u'toll', u'rise'] [u'bank', u'lose', u'eftpo', u'hike'] [u'barley', u'farmer', u'urg', u'pressur', u'govt', u'drop'] [u'battl', u'ravag', u'bush', u'outlin', u'iraq', u'plan'] [u'bilo', u'supermarket', u'chain', u'fin', u'breach', u'food'] [u'brack', u'stand', u'firm', u'corrupt', u'commiss'] [u'britain', u'honour', u'tommi'] [u'british', u'adventur', u'set', u'everest', u'record'] [u'bush', u'popular', u'time'] [u'butler', u'make', u'music', u'award', u'histori'] [u'stamp', u'duti', u'refund', u'canberra'] [u'cathol', u'teacher', u'join', u'strike'] [u'cat', u'paus', u'night'] [u'challeng', u'meat', u'import'] [u'champion', u'mine', u'rescu', u'team', u'take', u'world'] [u'child', u'protect', u'group', u'welcom', u'committe'] [u'church', u'consid', u'weep', u'mari', u'statu', u'probe'] [u'cloth', u'drier', u'caus', u'damag'] [u'coke', u'announc', u'plan', u'carb', u'cola'] [u'compens', u'report', u'fishermen', u'present', u'govt'] [u'confer', u'focus', u'improv', u'firefight'] [u'cooper', u'charg', u'hear', u'octob'] [u'councillor', u'plan', u'fight', u'nowingi', u'toxic', u'wast', u'site'] [u'council', u'investig', u'rule'] [u'court', u'hear', u'qaeda', u'train', u'pay', u'roch'] [u'court', u'reject', u'attempt', u'broaden', u'murder'] [u'crick', u'support', u'seek', u'clarif', u'euthanasia'] [u'croc', u'expert', u'back', u'territori', u'safari'] [u'dalbi', u'showground', u'woe', u'solv'] [u'daylesford', u'miss', u'woman'] [u'death', u'inmat', u'say', u'lethal', u'inject', u'cruel'] [u'death', u'toll', u'caribbean', u'flood', u'increas'] [u'detain', u'australian', u'concern', u'iraq'] [u'detent', u'centr', u'detaine', u'transfer'] [u'develop', u'seek', u'legal', u'advic', u'road'] [u'diamond', u'hear', u'adjourn'] [u'diamond', u'top', u'rank', u'ahead', u'court', u'hear'] [u'diver', u'suffer', u'bend', u'rescu'] [u'test', u'delay', u'bait'] [u'downer', u'moot', u'tougher', u'oversea', u'trip', u'guidelin'] [u'doyl', u'upset', u'crime', u'commiss', u'claim'] [u'drive', u'behaviour', u'improv', u'sturt', u'highway'] [u'duffi', u'give', u'ireland', u'chanc', u'springbok'] [u'dump', u'houllier', u'warn', u'liverpool', u'quick'] [u'elect', u'upset', u'french', u'polynesia'] [u'ella', u'sack', u'leinster', u'coach'] [u'emerg', u'accomod', u'lack', u'north', u'coast'] [u'escarp', u'manag', u'plan', u'finalis'] [u'euthanasia', u'support', u'ralli', u'brisban'] [u'kill', u'daughter', u'theft'] [u'eyr', u'peninsula', u'servic', u'resum'] [u'falconio', u'hear', u'adjourn'] [u'farina', u'pick', u'posit', u'socceroo'] [u'farmer', u'welcom', u'best', u'rainfal', u'month'] [u'apologis', u'link', u'madrid', u'bomb'] [u'fear', u'rais', u'fast', u'arctic', u'thaw', u'report'] [u'feder', u'polic', u'chief', u'defend', u'media', u'statement'] [u'author', u'consid', u'disciplinari', u'action'] [u'crew', u'littl', u'help', u'stromlo'] [u'nyse', u'head', u'sue', u'retir', u'benefit'] [u'foseco', u'count', u'cost', u'mitsubishi', u'closur'] [u'tribun'] [u'fruit', u'grower', u'shop', u'shut', u'protest'] [u'fuel', u'reduct', u'burn', u'target', u'say', u'dept'] [u'deal', u'agenda', u'visit'] [u'gene', u'hold', u'cowlick', u'secret'] [u'german', u'audienc', u'savour', u'tasti', u'orchestra', u'perform'] [u'heighten', u'crisi', u'fear'] [u'golf', u'return', u'kabul', u'minus', u'grass', u'green'] [u'govt', u'appeal', u'sentenc'] [u'govt', u'commit', u'child', u'protect'] [u'govt', u'remain', u'commit', u'wimmera', u'malle', u'pipelin'] [u'govt', u'support', u'victim', u'peopl', u'traffic'] [u'govt', u'stall', u'anti', u'domest'] [u'govt', u'urg', u'decid', u'region', u'futur'] [u'grain', u'grower', u'busi', u'recent', u'rain'] [u'group', u'say', u'atsic', u'debat', u'cloud', u'indigen', u'issu'] [u'group', u'say', u'divers', u'need', u'karumba'] [u'grower', u'consid', u'campaign', u'target', u'appl', u'import'] [u'hashish', u'hitch', u'remand', u'custodi'] [u'health', u'minist', u'accus', u'inact'] [u'heater', u'program', u'cut', u'pollut', u'health', u'problem'] [u'high', u'petrol', u'price', u'fuel', u'shop'] [u'hmas', u'brisban', u'sink', u'sunshin', u'coast'] [u'houllier', u'reign', u'merseysid'] [u'hussain', u'consid', u'england', u'exit'] [u'hussain', u'go', u'zero', u'hero', u'england'] [u'india', u'seamer', u'zaheer', u'join', u'surrey'] [u'industri', u'disput', u'shark', u'slaughter', u'claim'] [u'inquiri', u'reveal', u'preschool', u'attend', u'figur', u'wrong'] [u'inquiri', u'tell', u'polic', u'problem', u'redfern', u'riot'] [u'investig', u'begin', u'crane', u'accid'] [u'investig', u'probe', u'baghdad', u'blast'] [u'iraq', u'backlash', u'negat', u'budget', u'bounc', u'poll'] [u'iraqi', u'minist', u'predict', u'swift', u'coalit', u'withdraw'] [u'isra', u'armi', u'take', u'paus', u'rafah'] [u'italian', u'magistr', u'strike', u'legal', u'reform'] [u'jellyfish', u'research', u'underfund', u'expert'] [u'jetstar', u'take', u'flight'] [u'kick', u'weaker', u'team', u'pont'] [u'labor', u'question', u'appoint'] [u'lend', u'leas', u'share', u'tumbl', u'merger', u'plan'] [u'librari', u'remain', u'open', u'despit', u'recommend'] [u'pay', u'worker', u'wage', u'rise'] [u'mackay', u'passeng', u'jetstar', u'thumb'] [u'charg', u'chase'] [u'charg', u'drug', u'haul'] [u'fin', u'prank'] [u'mayor', u'accus', u'favour', u'local', u'airlin'] [u'meli', u'macdougal', u'suspend', u'guilti', u'plea'] [u'minist', u'warn', u'strike', u'help', u'teacher'] [u'miss', u'zealand', u'iraq', u'custodi'] [u'blackout', u'rule'] [u'chang', u'plan', u'traffic', u'control'] [u'pakistan', u'heatwav'] [u'polic', u'patrol', u'bairnsdal', u'rail', u'line'] [u'mottram', u'underlin', u'athen', u'challeng'] [u'mourner', u'gather', u'dead', u'rafah', u'oper'] [u'call', u'barrier', u'reef', u'author'] [u'call', u'govt', u'explain', u'ambul', u'wait', u'time'] [u'behaviour', u'flight', u'boorish', u'bizarr'] [u'defend', u'draper', u'ahead', u'travel', u'entitl'] [u'murder', u'trial', u'tell', u'accus', u'seek', u'mental', u'health'] [u'mysteri', u'surround', u'melbourn', u'man', u'iraq', u'jail'] [u'nation', u'park', u'deni', u'respons', u'buoy', u'hold'] [u'nation', u'trust', u'leas', u'histor', u'properti'] [u'alleg', u'oversea', u'trip'] [u'broom', u'visitor', u'centr', u'cope', u'high'] [u'newcastl', u'market', u'step', u'closer'] [u'iraq', u'resolut', u'need', u'work'] [u'restrict', u'impos', u'flinder', u'nightclub'] [u'pressur', u'monitor', u'bias', u'chief', u'say'] [u'nowingi', u'facil', u'label', u'toxic'] [u'farmer', u'welcom', u'rain'] [u'liber', u'deni', u'misbehav', u'flight'] [u'teenag', u'charg', u'assault', u'central'] [u'hit', u'record', u'despit', u'saudi', u'pledg'] [u'price', u'concern', u'push', u'market'] [u'worri', u'claw', u'wall', u'gain'] [u'oppn', u'call', u'drink', u'spike', u'action'] [u'opposit', u'call', u'govt', u'finalis', u'west', u'coast'] [u'opposit', u'control', u'naurus', u'parliament'] [u'pari', u'court', u'jail', u'frenchman', u'link', u'madrid'] [u'parti', u'combin', u'forc', u'action', u'gungahlin', u'drive'] [u'passeng', u'number', u'ferri', u'expect'] [u'paterson', u'fire', u'aberdeen', u'boss', u'zriller', u'dump'] [u'pentagon', u'flag', u'tank', u'sale', u'australia'] [u'petacchi', u'set', u'record', u'pip', u'mcewen', u'stage'] [u'plastic', u'compani', u'bring', u'task', u'green'] [u'opt', u'tighter', u'travel', u'rule'] [u'treasur', u'warn', u'chang', u'govern'] [u'polic', u'appeal', u'help', u'teen', u'assault'] [u'polic', u'inform', u'farewel', u'melbourn'] [u'polic', u'need', u'immun', u'mission', u'keelti', u'say'] [u'polic', u'open', u'year', u'murder', u'case'] [u'pont', u'lead', u'australia'] [u'port', u'hedland', u'iron', u'plant', u'closur', u'specul'] [u'power', u'upgrad', u'reduc', u'blackout'] [u'produc', u'input', u'seek', u'endosulfan'] [u'prosecutor', u'oppos', u'reduc', u'jackson', u'bail'] [u'firm', u'buy', u'victorian', u'resort'] [u'rain', u'curs', u'bless', u'fink', u'desert', u'race'] [u'rain', u'fail', u'water', u'shortag'] [u'rann', u'chip', u'open', u'ceremoni'] [u'real', u'madrid', u'sack', u'coach', u'queiroz', u'season'] [u'record', u'industri', u'sue', u'music', u'swapper'] [u'replac', u'seek', u'command', u'iraq'] [u'resid', u'fight', u'save', u'bridg'] [u'revamp', u'david', u'go'] [u'riverina', u'cathol', u'school', u'strike'] [u'road', u'safeti', u'group', u'seek', u'fund', u'boost'] [u'russia', u'claim', u'kill', u'organis', u'chechen'] [u'back', u'feder', u'health', u'handov'] [u'samo', u'pick', u'wallabi', u'debut'] [u'search', u'miss', u'woman', u'resum'] [u'shark', u'manag', u'veto', u'fundrais'] [u'shiit', u'holiest', u'shrine', u'damag'] [u'silver', u'citi', u'highway', u'open', u'rain'] [u'small', u'busi', u'activ', u'slow', u'remain', u'strong'] [u'soni', u'cite', u'mgms', u'softwar', u'asset', u'possibl', u'deal'] [u'south', u'east', u'coast', u'receiv', u'need', u'rain'] [u'lanka', u'drop', u'plan', u'murali', u'doosra'] [u'stock', u'rout', u'network', u'review'] [u'student', u'endang', u'live', u'chocol', u'lizard'] [u'sink', u'trawler', u'salvag'] [u'survey', u'highlight', u'fall', u'busi', u'confid'] [u'takeov', u'boost', u'medco', u'energi', u'share'] [u'budget', u'prioriti', u'wrong', u'hid', u'say'] [u'teen', u'charg', u'pharmaci'] [u'texa', u'servic', u'wait', u'telstra'] [u'trulli', u'reviv', u'formula'] [u'tugun', u'resid', u'seek', u'apolog', u'beatti'] [u'turtl', u'tourism', u'worth', u'meat'] [u'isra', u'troop', u'wound', u'central', u'gaza', u'strip'] [u'uncertainti', u'lee', u'evid'] [u'call', u'referendum'] [u'union', u'expect', u'support', u'minimum', u'wage', u'rise'] [u'resolut', u'offer', u'iraqi', u'sovereignti'] [u'give', u'million', u'prop', u'haitian', u'ruler'] [u'hop', u'demolish', u'ghraib', u'jail'] [u'rail', u'scare', u'link', u'sleepi', u'worker', u'terror'] [u'soldier', u'kill', u'iraq', u'rocket', u'attack'] [u'govt', u'urg', u'protect', u'polic', u'corrupt'] [u'victorian', u'preschool', u'poor', u'fund'] [u'lib', u'struggl', u'poll'] [u'hand', u'special', u'entri', u'women', u'open'] [u'wildflow', u'bloom', u'recent', u'rain'] [u'windi', u'recal', u'lawson', u'bangladesh', u'test'] [u'woodward', u'name', u'young', u'squad', u'barbarian', u'game'] [u'abar', u'predict', u'better', u'outlook', u'export', u'earn'] [u'aborigin', u'land', u'council', u'reform'] [u'sayyaf', u'rebel', u'kill', u'philippin'] [u'accommod', u'medic', u'student'] [u'african', u'croc', u'expert', u'support', u'control', u'safari'] [u'servic', u'consid', u'plane', u'notif'] [u'servic', u'criticis', u'tamworth'] [u'amnesti', u'report', u'criticis', u'aust'] [u'appl', u'grower', u'want', u'biosecur', u'decis', u'revers'] [u'aspirin', u'breast', u'cancer', u'risk'] [u'aussi', u'fiji', u'surf'] [u'australia', u'keep', u'olymp', u'volleybal', u'hop', u'aliv'] [u'australian', u'michael', u'take', u'rein', u'william'] [u'australia', u'improv', u'pont'] [u'predict', u'wheat', u'bonanza'] [u'profit', u'help', u'boost', u'market'] [u'bank', u'warn', u'industri', u'reform', u'derail'] [u'bartlett', u'attack', u'media', u'travel', u'rort', u'campaign'] [u'basebal', u'leagu', u'card'] [u'bashir', u'call', u'aust', u'terror', u'attack'] [u'beckham', u'slam', u'press', u'absolut', u'disgrac'] [u'aim', u'overturn', u'redund', u'rule'] [u'blackwel', u'take', u'leed'] [u'bodi', u'south', u'perth'] [u'bond', u'miss', u'second', u'test'] [u'boomer', u'prepar', u'underway', u'southport'] [u'brazil', u'say', u'foreign', u'media', u'distort', u'amazon'] [u'breakwat', u'help', u'seagrass', u'beachport'] [u'britain', u'deni', u'rift', u'iraq', u'plan'] [u'british', u'silverston'] [u'budget', u'spend', u'cost'] [u'test', u'boost'] [u'camacho', u'name', u'real', u'coach'] [u'caribbean', u'flood', u'claim'] [u'smash', u'prompt', u'warn'] [u'charl', u'darwin', u'confirm', u'hike'] [u'charl', u'darwin', u'plan', u'increas'] [u'compani', u'plead', u'guilti', u'safeti', u'breach'] [u'concern', u'futur', u'south', u'coast', u'rail', u'servic'] [u'confus', u'samo', u'futur'] [u'coria', u'cruis', u'round', u'pari'] [u'council', u'express', u'skill', u'migrant'] [u'council', u'introduc', u'user', u'pay', u'water'] [u'council', u'look', u'increas', u'rat'] [u'council', u'introduc', u'mandatori', u'water', u'restrict'] [u'council', u'plan', u'address', u'land', u'shortag'] [u'council', u'report', u'stay', u'secret'] [u'crawford', u'support', u'thompson', u'depress', u'battl'] [u'cyclist', u'high', u'power', u'world'] [u'decis', u'magnesium', u'smelter', u'expect', u'soon'] [u'defenc', u'quiz', u'lee', u'falconio', u'case'] [u'depress', u'forc', u'thompson', u'hawk'] [u'diamond', u'get', u'olymp', u'green', u'light'] [u'director', u'confid', u'young', u'actor', u'complet'] [u'disciplin', u'knife', u'edg', u'champion', u'leagu', u'final'] [u'dixon', u'run', u'william', u'drive'] [u'test', u'open', u'murder', u'investig'] [u'doctor', u'investig', u'golden', u'staph'] [u'documentari', u'demystifi', u'jazeera', u'public'] [u'dragon', u'defend', u'record', u'gasnier', u'fine'] [u'driver', u'smash', u'melbourn', u'build'] [u'driver', u'urg', u'patient', u'corridor'] [u'drought', u'respit', u'help', u'boost', u'profit'] [u'economi', u'head', u'sharp', u'slowdown', u'survey'] [u'emerg', u'beacon', u'compulsori', u'fishermen'] [u'energi', u'compani', u'blame', u'bushfir'] [u'england', u'rooki', u'strauss', u'call', u'nasser', u'stay'] [u'euro', u'pacif', u'final', u'hurdl', u'pipelin'] [u'exhibit', u'boost', u'hill', u'tourism'] [u'policeman', u'bond', u'drug', u'charg'] [u'falconio', u'case', u'resum'] [u'fall', u'price', u'eas', u'wall', u'fear'] [u'farina', u'shrug', u'schwarzer', u'injuri', u'fear'] [u'farmer', u'govt', u'power', u'dividend'] [u'farmer', u'advantag', u'rain'] [u'father', u'call', u'review'] [u'govt', u'criticis', u'ship', u'sink', u'time'] [u'financi', u'advisor', u'jail', u'hobart'] [u'fight', u'jumbo', u'good', u'australia'] [u'fish', u'transport', u'green', u'zone', u'gbrmpa'] [u'atsic', u'chairman', u'die'] [u'minist', u'indonesian', u'hospit'] [u'appear', u'court', u'drug', u'charg'] [u'fund', u'inject', u'morcomb', u'campaign'] [u'gasnier', u'phone'] [u'govern', u'say', u'apolog'] [u'govt', u'attack', u'pullout', u'plan', u'blast'] [u'govt', u'deni', u'legal', u'brothel', u'failur'] [u'govt', u'issu', u'stamp', u'duti', u'relief', u'sugar', u'produc'] [u'govt', u'spend', u'art', u'bodi'] [u'govt', u'urg', u'protect', u'irrig', u'right'] [u'govt', u'urg', u'reconsid', u'petrol', u'excis'] [u'great', u'lake', u'economi', u'lag', u'say', u'research'] [u'gunn', u'consid', u'heritag', u'project'] [u'gusmao', u'meet', u'wiranto', u'timor', u'abus'] [u'hagan', u'hit', u'ahead', u'origin'] [u'hagan', u'hit', u'origin', u'slur'] [u'henderson', u'name', u'wallabi'] [u'heritag', u'hous', u'save'] [u'hewitt', u'plead', u'clay', u'court', u'young', u'gun'] [u'hobart', u'walk', u'free', u'euthanasia', u'case'] [u'holling', u'agre', u'help', u'conrad', u'black', u'legal'] [u'hopper', u'bring', u'haunt', u'solitud', u'london'] [u'hospit', u'age', u'care', u'centr', u'benefit', u'govt'] [u'indonesian', u'boat', u'catch', u'illeg', u'fish'] [u'indonesia', u'sever', u'tie', u'terror', u'research', u'group'] [u'industri', u'predict', u'beef', u'export', u'prospect', u'improv'] [u'injuri', u'forc', u'william', u'return', u'home'] [u'chief', u'say', u'athen', u'readi', u'game'] [u'iraq', u'sovereignti', u'issu', u'caus', u'split'] [u'irrig', u'wari', u'water', u'trade'] [u'japan', u'arrest', u'qaeda', u'probe'] [u'japanes', u'trade', u'surplus', u'rocket'] [u'joey', u'snub', u'code', u'switch', u'deal', u'hagan'] [u'knight', u'battl', u'injuri', u'crisi'] [u'knight', u'number', u'injuri'] [u'kookaburra', u'cruis', u'easi', u'victori'] [u'korea', u'begin', u'histor', u'militari', u'talk'] [u'langer', u'back', u'troubl', u'monti', u'ryder'] [u'lawyer', u'reveal', u'evid', u'jone', u'probe'] [u'leadership', u'debat', u'spark', u'lib', u'infight'] [u'leadership', u'specul', u'coalit', u'favour'] [u'lee', u'question', u'secret', u'relationship'] [u'lee', u'resum', u'testimoni', u'falconio', u'case'] [u'legal', u'team', u'concentr', u'kalgoorli'] [u'lennon', u'discuss', u'island', u'hand', u'back'] [u'livingston', u'councillor', u'vote', u'rise'] [u'love', u'gene', u'beat', u'poverti', u'studi', u'say'] [u'love', u'plead', u'guilti', u'drug', u'offenc'] [u'loxton', u'home', u'valu', u'jump'] [u'major', u'piec', u'lose', u'london'] [u'arrest', u'meat', u'cleaver', u'incid'] [u'charg', u'drug', u'assault', u'daughter'] [u'hospitalis', u'concret', u'pump', u'explos'] [u'improv', u'dead', u'jellyfish', u'sting'] [u'sentenc', u'photo', u'minor'] [u'wound', u'sydney', u'shoot'] [u'master', u'leav', u'derbi', u'challeng'] [u'materi', u'girl', u'reinvent', u'tour'] [u'medic', u'school', u'multi', u'million', u'dollar', u'revamp'] [u'court', u'appear', u'park', u'theft'] [u'vampir', u'death', u'brazil'] [u'mother', u'plead', u'guilti', u'infanticid'] [u'mother', u'say', u'releas', u'daughter', u'killer', u'parol'] [u'mould', u'problemat', u'threat'] [u'question', u'redfern', u'heroin', u'plan'] [u'go', u'free', u'drug', u'blame', u'attempt'] [u'servic', u'exmouth', u'broom'] [u'council', u'creat'] [u'research', u'gold', u'coast', u'hospit'] [u'time', u'send', u'money', u'posti', u'tell', u'brit', u'coupl'] [u'night', u'burn', u'off', u'caus', u'problem', u'servic'] [u'lose', u'falconio', u'suppress', u'appeal'] [u'plan', u'develop', u'block', u'livestock', u'shipment'] [u'olymp', u'terror', u'plan', u'shoot'] [u'dead', u'injur', u'karachi', u'bomb', u'blast'] [u'zimbabw', u'tour', u'chaotic', u'atapattu'] [u'owen', u'sicken', u'houllier', u'sack'] [u'parmalat', u'unveil', u'final', u'rescu', u'plan', u'report'] [u'parti', u'gungahlin', u'drive', u'legisl'] [u'plan', u'practic', u'execut', u'gould', u'recip', u'origin'] [u'plant', u'preserv', u'avenu'] [u'defend', u'upfront', u'payment', u'teen', u'mum'] [u'ramp', u'secur', u'parliamentari', u'sit'] [u'polic', u'arrest', u'perth', u'safe', u'robberi'] [u'polic', u'assist', u'request', u'remov', u'dog'] [u'polic', u'concern', u'miss', u'mother', u'child'] [u'polic', u'drug', u'raid', u'state'] [u'polic', u'number', u'frustrat', u'busi', u'owner'] [u'polic', u'seek', u'arm', u'robber'] [u'polic', u'suspect', u'truck', u'compani', u'drug', u'run'] [u'polic', u'union', u'oppos', u'legal', u'heroin', u'redfern'] [u'price', u'check', u'defenc', u'forc'] [u'prosper', u'meatwork', u'sale'] [u'prostitut', u'law'] [u'public', u'ask', u'check', u'winter', u'power'] [u'public', u'servant', u'consid', u'offer'] [u'public', u'servic', u'worker', u'rise'] [u'putin', u'pledg', u'boost', u'economi', u'reduc', u'poverti'] [u'qanta', u'chief', u'lash', u'govt', u'restrict'] [u'radiat', u'devic', u'seek', u'athen', u'bomb', u'threat'] [u'rain', u'welcom', u'relief', u'mayor'] [u'rain', u'eas', u'pressur', u'grazier'] [u'rain', u'forc', u'road', u'closur'] [u'rain', u'welcom', u'break', u'drought'] [u'ranieri', u'fate', u'unresolv'] [u'ravensthorp', u'seek', u'residenti', u'workforc'] [u'report', u'reveal', u'gambl', u'reform', u'need'] [u'residenti', u'construct', u'close', u'record', u'high'] [u'ask', u'consid', u'overpass'] [u'russian', u'kill', u'spark', u'firm', u'withdraw', u'iraq'] [u'school', u'build', u'replac', u'open'] [u'sculli', u'reject', u'tugun', u'bypass', u'claim'] [u'search', u'begin', u'miss', u'tourist', u'remot'] [u'shevchenko', u'sign', u'year', u'deal', u'milan'] [u'singl', u'voic', u'repres', u'aviat', u'industri'] [u'avoid', u'jail', u'assist', u'suicid'] [u'southern', u'afghanistan', u'bomb', u'kill', u'taliban'] [u'sport', u'academi', u'head', u'condemn', u'bond', u'payment'] [u'springborg', u'invit', u'tour', u'brothel'] [u'state', u'origin', u'end', u'candlelight', u'vigil'] [u'stoush', u'erupt', u'hospit', u'crisi'] [u'teacher', u'clear', u'charg'] [u'test', u'confirm', u'sarin', u'iraq', u'artilleri', u'shell'] [u'thailand', u'uncov', u'bird', u'outbreak'] [u'thai', u'visit', u'aust', u'trade', u'deal', u'sign'] [u'thai', u'secur', u'seat', u'liverpool', u'board'] [u'think', u'tank', u'warn', u'continu', u'qaeda', u'threat'] [u'tiger', u'quit', u'post'] [u'timmin', u'field', u'goal', u'get', u'home'] [u'town', u'cri', u'foul', u'water'] [u'toxic', u'wast', u'site', u'heat'] [u'tree', u'pose', u'potenti', u'safeti', u'risk', u'council'] [u'tribun', u'uphold', u'deport', u'appeal'] [u'parliament', u'limit', u'access', u'secur', u'scare'] [u'unanim', u'support', u'teacher', u'strike'] [u'chief', u'support', u'iraq', u'resolut'] [u'commission', u'slam', u'isra', u'human', u'right'] [u'defer', u'troop', u'immun', u'vote'] [u'welcom', u'build', u'grant'] [u'launch', u'food', u'safeti', u'internet', u'portal'] [u'raid', u'kill', u'taliban', u'offici'] [u'arrest', u'sadr', u'aid'] [u'canadian', u'troop', u'join', u'flood', u'search'] [u'conduct', u'subcrit', u'nuclear', u'test'] [u'deni', u'iraq', u'shrine', u'attack'] [u'forc', u'outsid', u'control', u'sovereign', u'iraq', u'powel'] [u'move', u'nuclear', u'materi'] [u'govt', u'question', u'council', u'dump', u'opposit'] [u'victorian', u'favour', u'poker', u'machin', u'reduct'] [u'virgin', u'begin', u'daili', u'flight', u'sydney'] [u'camel', u'meat', u'push', u'export'] [u'wagerup', u'resid', u'voic', u'concern', u'refineri'] [u'wast', u'water', u'consid', u'lake'] [u'woman', u'face', u'court', u'attempt', u'murder', u'charg'] [u'work', u'begin', u'recycl', u'plant'] [u'worker', u'injur', u'carseldin'] [u'yuryevich', u'call', u'treasur', u'incent'] [u'zinifex', u'upgrad', u'zinc', u'smelter'] [u'teacher', u'strike'] [u'airport', u'oper', u'say', u'opposit', u'rule'] [u'qaeda', u'plot', u'foil', u'south', u'africa'] [u'amnesti', u'see', u'lack', u'progress', u'reconcili'] [u'anti', u'depress', u'fear', u'rais', u'court', u'rule'] [u'review', u'golden', u'point', u'rule'] [u'athlet', u'warn', u'growth', u'hormon', u'test'] [u'atsic', u'ax', u'legisl', u'go', u'parliament'] [u'aussi', u'doubl', u'hop', u'aliv'] [u'australia', u'flat', u'start', u'cycl', u'world', u'champ'] [u'australian', u'hold', u'iraq', u'good', u'health'] [u'australia', u'biggest', u'wind', u'farm', u'run'] [u'australia', u'shift', u'focus', u'south', u'pacif'] [u'aust', u'welcom', u'greek', u'olymp', u'secur', u'effort'] [u'bali', u'bomb', u'prosecutor', u'shoot', u'dead'] [u'ballestero', u'play'] [u'banana', u'grower', u'view', u'supermarket'] [u'bendigo', u'council', u'add', u'voic', u'rise', u'cost', u'outcri'] [u'billboard', u'face', u'music', u'editor', u'leav'] [u'book', u'help', u'emerg', u'art', u'project'] [u'britain', u'bolster', u'iraq', u'troop', u'number'] [u'broom', u'outlin', u'reason', u'space', u'concern'] [u'budget', u'expect', u'offer', u'home', u'buyer', u'relief'] [u'build', u'industri', u'employ', u'down'] [u'burswood', u'sharehold', u'urg', u'reject'] [u'bush', u'administr', u'block', u'assist', u'suicid'] [u'busi', u'invest', u'nosed'] [u'develop', u'maintain', u'estat', u'recreat'] [u'canberra', u'airport', u'seek', u'intern', u'flight'] [u'canberra', u'resid', u'tell', u'anger', u'bushfir'] [u'canegrow', u'welcom', u'stamp', u'duti', u'relief'] [u'caribbean', u'flood', u'toll', u'near'] [u'carr', u'hold', u'brigalow', u'decis'] [u'charl', u'diana', u'escap', u'pact', u'report'] [u'chemic', u'spill', u'caus', u'shop', u'centr', u'evacu'] [u'china', u'sign', u'start', u'trade', u'pact'] [u'claim', u'polic', u'databas', u'breach'] [u'coastal', u'weed', u'spray', u'hinder', u'nation', u'park'] [u'concern', u'parti', u'inspect', u'jeopardis'] [u'confer', u'tell', u'australian', u'immun'] [u'coron', u'critic', u'fatal', u'polic', u'chase'] [u'cosmos', u'shape', u'like', u'eiffel', u'tower', u'scientist'] [u'council', u'push', u'measur', u'slow', u'truck'] [u'council', u'chang', u'concern', u'spotlight'] [u'court', u'hear', u'effort', u'save', u'sydney', u'tree'] [u'crow', u'chang'] [u'csiro', u'warn', u'citi', u'water', u'problem'] [u'darci', u'guilti', u'charg'] [u'death', u'toll', u'caribbean', u'flood', u'climb'] [u'decis', u'reserv', u'bondi', u'damag', u'case'] [u'delay', u'domest', u'violenc', u'campaign', u'readi', u'launch'] [u'democrat', u'lament', u'atsic', u'chief', u'death'] [u'deputi', u'mayor', u'welcom', u'idea', u'insur', u'levi'] [u'develop', u'plead', u'guilti', u'fraud'] [u'defend', u'decis', u'volker', u'case'] [u'draft', u'food', u'safeti', u'standard', u'seafood', u'produc'] [u'drive', u'singh', u'eye', u'tiger', u'titl'] [u'driver', u'shortag', u'forc', u'train', u'timet', u'chang'] [u'england', u'hussain', u'time'] [u'malcolm', u'award', u'medal'] [u'environ', u'network', u'unhappi', u'otway', u'propos'] [u'expert', u'say', u'hobart', u'waterfront', u'world', u'class'] [u'extremist', u'suspect', u'twin', u'bomb', u'attack'] [u'falconio', u'case', u'hear', u'lee', u'second', u'lover'] [u'famili', u'worri', u'iraqi', u'prison'] [u'figur', u'budget', u'forecast', u'cloud'] [u'fish', u'blitz', u'promis', u'manag', u'scheme'] [u'fli', u'kiwi', u'ulmer', u'smash', u'world', u'record'] [u'england', u'captain', u'hussain', u'bow'] [u'lawyer', u'jail', u'sexual', u'assault'] [u'mayor', u'slam', u'local', u'govt', u'reform'] [u'parliamentarian', u'hospitalis', u'indonesia'] [u'drug', u'squad', u'head', u'work'] [u'fortun', u'teller', u'tell', u'perus', u'fujimori', u'flee'] [u'fresh', u'prison', u'abus', u'charg', u'troop'] [u'futur', u'phillip', u'oval', u'secur'] [u'govt', u'fund', u'help', u'shepparton', u'welcom', u'migrant'] [u'govt', u'press', u'senat', u'pass', u'atsic', u'chang'] [u'govt', u'outlaw', u'marriag'] [u'govt', u'spend', u'pacif', u'highway'] [u'govt', u'urg', u'bolster', u'child', u'protect', u'effort'] [u'gower', u'origin'] [u'green', u'unimpress', u'govt', u'energi', u'packag'] [u'hair', u'dead', u'giveaway', u'scientist'] [u'hauritz', u'stay', u'queensland'] [u'hewitt', u'capriati', u'restor', u'order', u'french', u'open'] [u'high', u'court', u'rule', u'split', u'home', u'loan'] [u'high', u'court', u'hear', u'bondi', u'appeal', u'case'] [u'young', u'stellar', u'win', u'cosmic', u'heavyweight', u'titl'] [u'indigen', u'region', u'group', u'urg', u'lobbi', u'govt'] [u'indonesia', u'attack', u'critic'] [u'israel', u'arrest', u'vanunu', u'report'] [u'john', u'pledg', u'futur', u'leagu'] [u'judg', u'comment', u'assist', u'suicid'] [u'juri', u'consid', u'darci', u'verdict'] [u'karachi', u'bomb', u'blast', u'kill', u'injur'] [u'kean', u'justifi', u'decis', u'walk', u'ireland'] [u'kerri', u'target', u'bush', u'terrorist', u'warn'] [u'kerri', u'formal', u'accept', u'presidenti', u'nomin'] [u'kiwi', u'hop', u'bond', u'rule', u'second', u'test'] [u'labor', u'call', u'pont', u'forum', u'probe'] [u'labor', u'quiz', u'govt', u'iraqi', u'abus', u'claim'] [u'lawyer', u'warn', u'ocean', u'harvest', u'danger'] [u'lee', u'fli', u'falconio', u'testimoni'] [u'lee', u'return', u'wit'] [u'lib', u'reject', u'prior', u'prison', u'abus', u'knowledg'] [u'liverpool', u'confirm', u'ciss', u'arriv', u'auxerr'] [u'liverpool', u'line', u'valencia', u'coach', u'benitez'] [u'local', u'govt', u'minist', u'stand', u'merriwa', u'decis'] [u'charg', u'robberi', u'kidnap', u'attempt'] [u'charg', u'shoot', u'truck', u'driver'] [u'jail', u'attempt', u'murder', u'polic', u'inform'] [u'market', u'climb', u'investor', u'welcom', u'takeov'] [u'maroon', u'sore', u'golden', u'point', u'loss'] [u'mayor', u'undecid', u'greater', u'hume', u'nomin'] [u'mcewen', u'say', u'hand', u'tie', u'barley', u'market'] [u'mcgee', u'threaten', u'abandon', u'giro', u'sanction'] [u'charg', u'sydney', u'petrol', u'station', u'shoot'] [u'mine', u'minist', u'call', u'industri', u'makeov'] [u'minist', u'wharf', u'announc', u'appeal'] [u'mix', u'respons', u'indigen', u'fund'] [u'ghraib', u'abus', u'photo', u'reveal'] [u'mourinho', u'sign', u'style', u'porto', u'lift'] [u'launch', u'cabl', u'network'] [u'muslim', u'cleric', u'face', u'death', u'penalti'] [u'finalis', u'deal'] [u'nail', u'fire', u'hous'] [u'nation', u'bushfir', u'warn', u'moot'] [u'nation', u'park', u'plan', u'burn', u'off', u'seabird'] [u'nat', u'question', u'council', u'chang', u'heart', u'dump', u'site'] [u'naval', u'construct', u'program', u'announc'] [u'almond', u'farm', u'cost', u'million'] [u'chief', u'secur', u'plus', u'salari', u'deal'] [u'water', u'restrict', u'forc', u'wash', u'closur'] [u'ireland', u'judg', u'say', u'real', u'ban', u'group'] [u'pledg', u'budget', u'child', u'poverti'] [u'price', u'fall', u'despit', u'tight', u'reserv', u'report'] [u'oklahoma', u'bomb', u'conspir', u'convict', u'murder'] [u'iraqi', u'kill', u'wound', u'bomb', u'blast', u'south'] [u'pacif', u'nation', u'criticis', u'amnesti', u'report'] [u'paint', u'can', u'sniff'] [u'pair', u'refus', u'bail', u'sydney', u'shoot', u'case'] [u'palestinian', u'shoot', u'rafah'] [u'penalti', u'give', u'polic', u'offic', u'corrupt', u'case'] [u'pie', u'welcom', u'senior', u'trio'] [u'plan', u'forward', u'nation', u'water', u'grid'] [u'deni', u'prior', u'knowledg', u'iraq', u'abus'] [u'elect', u'governor', u'general'] [u'govt', u'head', u'vote', u'confid'] [u'opposit', u'leader', u'recognis', u'parliament'] [u'polic', u'consid', u'roadsid', u'bodi', u'suspici'] [u'polic', u'investig', u'possibl', u'gangland', u'execut'] [u'polic', u'investig', u'punchbowl', u'shoot'] [u'polic', u'murder', u'investig', u'attack', u'trial'] [u'polic', u'probe', u'fatal', u'bash'] [u'polic', u'silent', u'wit', u'protect', u'breach', u'claim'] [u'pont', u'chalk', u'dayer'] [u'poppi', u'grower', u'face', u'tough', u'time'] [u'port', u'hedland', u'council', u'expect', u'shortfal'] [u'pratt', u'fall', u'roddick', u'henin', u'hardenn', u'crash', u'pari'] [u'princ', u'highway', u'investig', u'death'] [u'properti', u'crime', u'rate', u'fall'] [u'protest', u'demolit', u'contractor', u'face', u'investig'] [u'qanta', u'meet', u'union', u'job', u'plan'] [u'nat', u'want', u'volker', u'charg', u'pursu'] [u'question', u'rais', u'geneva', u'convent', u'protect'] [u'ralli', u'highlight', u'concern', u'legal'] [u'reconcili', u'aust', u'urg', u'releas', u'fund'] [u'reconcili', u'stall', u'say', u'dean'] [u'refuge', u'avoid', u'taliban', u'recruit'] [u'richmond', u'deni', u'target', u'pagan'] [u'rilli', u'harvey', u'remain', u'free', u'agent', u'list'] [u'road', u'summit', u'hear', u'wagga', u'wagga', u'fatal'] [u'roch', u'deni', u'plot', u'bomb', u'embassi'] [u'roch', u'tell', u'court', u'asio', u'inact'] [u'ruck', u'crisi', u'forc', u'rethink', u'lion'] [u'ruddock', u'move', u'polic', u'access', u'email'] [u'russian', u'pair', u'advanc', u'round'] [u'sadr', u'agre', u'truce', u'offici'] [u'safeti', u'issu', u'road', u'summit'] [u'pass', u'poki', u'freez'] [u'predict', u'budget', u'surplus'] [u'schwarzer', u'hop', u'clash'] [u'scientist', u'decod', u'chimp', u'chromosom'] [u'scientist', u'sweat', u'hippo', u'sunscreen', u'downsid'] [u'scientist', u'wake', u'histamin', u'find'] [u'sentenc', u'bolster', u'euthanasia', u'support', u'hop'] [u'sharon', u'prepar', u'gaza', u'debat'] [u'smith', u'complet', u'switch'] [u'state', u'confer', u'debat', u'councillor', u'wag'] [u'korea', u'accus', u'cyber', u'terror'] [u'student', u'accus', u'terrorist', u'grant', u'bail'] [u'studi', u'dent', u'reliabl', u'prostat', u'cancer', u'test'] [u'sudan', u'foe', u'sign', u'deal', u'end', u'civil'] [u'survey', u'find', u'porsch', u'owner', u'fool'] [u'swimmer', u'question', u'dpps', u'stanc', u'volker', u'case'] [u'swimmer', u'question', u'dpps', u'volker', u'stanc'] [u'accept', u'offer', u'tabcorp'] [u'tamworth', u'council', u'elect', u'reschedul', u'sept'] [u'taylor', u'sue', u'gogh', u'amid', u'nazi'] [u'teacher', u'walk'] [u'teacher', u'strike', u'govt', u'go'] [u'team', u'mat', u'murali', u'boycott', u'threat'] [u'tension', u'surfac', u'nation', u'trust'] [u'terri', u'warn', u'roberto', u'carlo'] [u'there', u'punch'] [u'thompson', u'return', u'hawk'] [u'thompson', u'return', u'hawk'] [u'face', u'court', u'follow', u'interst', u'drug', u'raid'] [u'tighter', u'water', u'restrict', u'livingston', u'shire'] [u'tribut', u'pay', u'atsic', u'chair'] [u'troubl', u'land', u'council', u'appoint', u'administr'] [u'turkish', u'state', u'launch', u'kurdish', u'languag'] [u'expos', u'mercuri', u'shop', u'centr'] [u'investig', u'congo', u'peacekeep', u'abus', u'claim'] [u'union', u'anger', u'respons', u'carer', u'abus'] [u'union', u'part', u'happi', u'train', u'assur'] [u'union', u'anger', u'qanta', u'offshor', u'job', u'plan'] [u'arrest', u'sadr', u'aid'] [u'confid', u'najaf', u'deal'] [u'name', u'seven', u'qaeda', u'alert'] [u'warn', u'loom', u'qaeda', u'attack'] [u'vandal', u'leav', u'koondrook', u'resid', u'water'] [u'nistelrooy', u'pledg', u'futur', u'unit'] [u'vet', u'offer', u'south', u'korea', u'visit'] [u'vizard', u'stand', u'galleri', u'posit'] [u'wale', u'thump', u'barbarian'] [u'wall', u'wari', u'secur', u'fear'] [u'warrnambool', u'dairi', u'factori'] [u'webb', u'great', u'player', u'say', u'golf', u'chief'] [u'weekend', u'train', u'servic'] [u'whale', u'watch', u'fascin', u'good', u'news'] [u'winemak', u'set', u'record', u'crush'] [u'woman', u'charg', u'coupl', u'murder'] [u'work', u'dole', u'communiti', u'servic', u'say', u'acoss'] [u'aborigin', u'drive', u'school', u'target', u'unemploy'] [u'aborigin', u'leader', u'turn', u'sculptur'] [u'administr', u'recommend', u'scrap', u'gympi', u'gold'] [u'alic', u'spring', u'festiv', u'receiv', u'feder', u'fund'] [u'work', u'nation', u'health', u'strategi'] [u'anaesthesia', u'monitor', u'hail', u'breakthrough'] [u'anim', u'group', u'angri', u'crocodil', u'safari'] [u'anim', u'welfar', u'group', u'take', u'croc', u'hunt', u'plan'] [u'offic', u'charg', u'corrupt'] [u'anti', u'boot', u'exhibit', u'show', u'scale', u'death'] [u'aphrodit', u'bird', u'race', u'win'] [u'aplin', u'concern', u'councillor', u'select'] [u'armidal', u'upgrad'] [u'armi', u'reservist', u'barricad', u'madagascan', u'parliament'] [u'asio', u'chief', u'slam', u'bali', u'slur'] [u'finish', u'slight', u'stronger'] [u'atsic', u'leader', u'disappoint', u'bill', u'time'] [u'australia', u'assur', u'medal', u'cycl', u'championship'] [u'bailey', u'stay', u'shark'] [u'bakhtiyari', u'children', u'detent', u'unlaw', u'court', u'tell'] [u'basslink', u'cabl', u'boat', u'set'] [u'bendigo', u'water', u'shortag', u'concern', u'politician'] [u'biomass', u'fuel', u'answer', u'dwindl', u'studi'] [u'blue', u'player', u'clear', u'harass'] [u'bomber', u'knock', u'docker'] [u'bomber', u'seek', u'redempt', u'dockland'] [u'bonner', u'thank', u'work', u'indigen', u'issu'] [u'boy', u'rap', u'church', u'offici', u'barrist', u'say'] [u'british', u'minist', u'face', u'court', u'australian'] [u'british', u'report', u'releas', u'jerusalem', u'jail'] [u'briton', u'davidson', u'upstag', u'schumach'] [u'break', u'hill', u'popul', u'declin'] [u'builder', u'group', u'predict', u'slower', u'market'] [u'calder', u'fund', u'anger', u'bendigo', u'driver', u'gibbon'] [u'cane', u'farmer', u'assist', u'declin'] [u'cannabi', u'grow', u'town', u'main', u'street'] [u'cathol', u'teacher', u'march', u'sydney'] [u'cathol', u'teacher', u'strike', u'disrupt', u'north', u'coast'] [u'check', u'wood', u'heater', u'urg', u'council'] [u'citigroup', u'pay', u'million', u'settl', u'consum', u'probe'] [u'clive', u'fear', u'wilko', u'american', u'dream'] [u'cloncurri', u'doctor', u'shortag', u'need', u'urgent', u'attent'] [u'cont', u'leav', u'juventus', u'kapo', u'arriv'] [u'coughlan', u'stay', u'tigerland'] [u'council', u'reject', u'build', u'poison', u'concern'] [u'council', u'meet', u'chang', u'help', u'public'] [u'court', u'rule', u'adler', u'right', u'appeal'] [u'clean', u'yield', u'car'] [u'darwin', u'hop', u'bandwagon'] [u'defenc', u'know', u'iraq', u'prison', u'claim', u'year'] [u'doomsday', u'cult', u'figur', u'sentenc', u'death'] [u'drug', u'courier', u'sentenc', u'jail', u'cocain', u'import'] [u'dutch', u'date', u'australia', u'india', u'pakistan'] [u'take', u'round', u'lead', u'wentworth'] [u'entir', u'villag', u'submerg', u'haiti'] [u'falconio', u'hear', u'view', u'video', u'scene'] [u'farina', u'settl', u'squad'] [u'farmer', u'deserv', u'better', u'forecast'] [u'farmer', u'unhappi', u'murray', u'revitalis', u'plan'] [u'receiv', u'tip', u'terror', u'suspect'] [u'feder', u'fund', u'target', u'indigen', u'migrant', u'famili'] [u'fiji', u'meet', u'aim', u'combat', u'aid', u'pacif'] [u'captain', u'challeng', u'charg', u'threat'] [u'caus', u'extens', u'damag', u'sydney', u'juic'] [u'french', u'polynesian', u'leader', u'face', u'pressur', u'quit'] [u'marriag', u'intend', u'offend', u'howard'] [u'geologist', u'highlight', u'explor', u'boom'] [u'giant', u'mushroom', u'baffl', u'expert'] [u'gippsland', u'council', u'vote', u'formal', u'elect'] [u'goulburn', u'consid', u'develop', u'support'] [u'govt', u'plan', u'scrap', u'atsic', u'reveng', u'robinson'] [u'govt', u'widen', u'read', u'voucher', u'avail'] [u'greek', u'festiv', u'auction', u'olymp', u'memorabilia'] [u'greek', u'minist', u'say', u'olymp', u'mistak', u'report'] [u'group', u'wadey', u'pipelin', u'infrastructur'] [u'group', u'continu', u'lobbi', u'despit', u'budget'] [u'gun', u'wind', u'farm', u'generat', u'job'] [u'hardi', u'reap', u'record', u'vintag'] [u'health', u'group', u'disappoint', u'countri', u'hospit'] [u'howard', u'call', u'hick', u'habib', u'tri', u'soon'] [u'howard', u'concern', u'iraq', u'poll'] [u'howard', u'reassur', u'farmer', u'wont', u'banana'] [u'howard', u'stay', u'term', u'parti', u'will'] [u'hussain', u'rue', u'ash', u'defeat'] [u'indonesian', u'charg', u'illeg', u'fish'] [u'inquiri', u'urg', u'port', u'botani', u'expans'] [u'integr', u'energi', u'announc', u'upgrad'] [u'investig', u'call', u'prison', u'assault'] [u'iraqi', u'candid', u'pull', u'race'] [u'iraq', u'govern', u'council', u'choos'] [u'italian', u'candid', u'decapit', u'pompeii', u'mysteri'] [u'japanes', u'paper', u'compani', u'refus', u'growth', u'woodchip'] [u'junior', u'warrior', u'jail', u'tri', u'kill', u'unborn'] [u'kean', u'ireland', u'germani', u'crush'] [u'khodorkovski', u'hear', u'adjourn', u'yuko', u'share', u'slump'] [u'kyneton', u'assault', u'victim', u'condit', u'worsen'] [u'manus', u'island', u'detent', u'centr', u'occup'] [u'life', u'saver', u'welcom', u'anniversari', u'grant'] [u'mactier', u'win', u'silver', u'melbourn'] [u'malaysia', u'arrest', u'nuclear', u'part', u'businessman'] [u'arrest', u'student', u'death'] [u'charg', u'murder', u'singaporean', u'student'] [u'jail', u'year', u'publican', u'murder'] [u'kill', u'hunter', u'valley', u'mine', u'accid'] [u'sue', u'claim', u'atkin', u'diet', u'caus', u'heart', u'diseas'] [u'mcguir', u'lead', u'bronco', u'victori'] [u'mersey', u'hospit', u'takeov', u'track'] [u'miner', u'hospit', u'collieri', u'accid'] [u'minist', u'wont', u'comment', u'deer', u'park', u'bypass', u'fund'] [u'more', u'councillor', u'urg', u'indigen', u'peopl', u'vote'] [u'gloom', u'australia', u'track', u'cycl', u'team'] [u'prison', u'releas', u'ghraib'] [u'wit', u'appear', u'falconio', u'case'] [u'criticis', u'pacif', u'fund'] [u'oppos', u'hospit', u'plan'] [u'struggl', u'hospit', u'committe', u'appoint'] [u'murchison', u'telescop', u'fund', u'fall'] [u'musharraf', u'say', u'militari', u'involv', u'assassin'] [u'newcastl', u'cathol', u'school', u'open', u'despit', u'strike'] [u'newcastl', u'port', u'lead', u'secur', u'upgrad'] [u'scanner', u'benefit', u'lismor', u'patient'] [u'diplomat', u'honolulu'] [u'guid', u'help', u'trace', u'indigen', u'famili', u'histori'] [u'newman', u'killer', u'lose', u'appeal'] [u'program', u'aim', u'develop', u'boy', u'confid'] [u'brew', u'second', u'sydney', u'airport', u'option'] [u'newspap', u'guilti', u'contempt', u'snowtown', u'photo'] [u'releas', u'environ', u'report', u'waterfront', u'plan'] [u'nucifora', u'win', u'coach', u'award'] [u'offici', u'shoot', u'dog', u'attack', u'owner'] [u'price', u'slide', u'dollar', u'strengthen'] [u'price', u'slip'] [u'olymp', u'basebal', u'hope', u'test', u'posit', u'steroid'] [u'olymp', u'contract', u'cancel', u'secur'] [u'olymp', u'shooter', u'lick'] [u'american', u'prison', u'data'] [u'nation', u'lose'] [u'opposit', u'want', u'child', u'care', u'benefit', u'review'] [u'orchestra', u'review', u'financi', u'stabil'] [u'outsid', u'henman', u'llodra'] [u'pacif', u'lead', u'world', u'obes', u'rat'] [u'parliament', u'intrud', u'receiv', u'suspend', u'sentenc'] [u'scoff', u'southern', u'highland', u'airport', u'idea'] [u'cooper', u'scheme', u'benefit', u'countri', u'aust'] [u'memori', u'honour', u'australian', u'pilot'] [u'polic', u'launch', u'dandalup', u'bodi', u'investig'] [u'polit', u'heavyweight', u'visit', u'ballarat'] [u'poll', u'show', u'draper', u'lose', u'seat'] [u'port', u'hedland', u'dialysi', u'unit', u'expand'] [u'postcard', u'bandit', u'solitari', u'confin'] [u'princ', u'road', u'upgrad'] [u'properti', u'purchas', u'continu', u'stanbrok', u'sale'] [u'protect', u'wit', u'say', u'felt', u'safe'] [u'protest', u'polic', u'clash', u'embassi', u'tehran'] [u'qanta', u'deni', u'pressur', u'govt', u'bali', u'warn'] [u'appl', u'grower', u'express', u'import', u'concern'] [u'compani', u'sign', u'mildura', u'marina', u'deal'] [u'odd', u'post', u'budget', u'surplus', u'treasur', u'say'] [u'popul', u'hit'] [u'quadrapleg', u'sue', u'local', u'council', u'neglig'] [u'radiograph', u'strike'] [u'rail', u'line', u'inquiri', u'head', u'urg', u'public', u'comment'] [u'reef', u'research', u'target', u'water', u'qualiti'] [u'refuge', u'advoc', u'face', u'child', u'porn', u'charg'] [u'region', u'atsic', u'council', u'prepar', u'servic'] [u'relief', u'oper', u'begin', u'flood', u'ravag', u'caribbean'] [u'relief', u'team', u'scrambl', u'caribbean', u'storm', u'toll', u'grow'] [u'roch', u'face', u'year', u'jail', u'bomb', u'plot'] [u'samo', u'declar', u'allegi', u'australia'] [u'polic', u'drug', u'bust'] [u'treasur', u'deni', u'hoard', u'cash'] [u'saudi', u'suspect', u'sept', u'tie', u'arrest'] [u'schwarzer', u'world', u'qualifi'] [u'secur', u'guard', u'abduct', u'robberi'] [u'selector', u'graveney', u'lead', u'hussain', u'tribut'] [u'serial', u'killer', u'milat', u'refus', u'right', u'appeal'] [u'shift', u'cost', u'hurt', u'local', u'council', u'mayor'] [u'small', u'turnout', u'forc', u'farm', u'bodi', u'postpon'] [u'smoke', u'affect', u'entir', u'bodi'] [u'south', u'african', u'court', u'reserv', u'judgment'] [u'space', u'telescop', u'glimps', u'birth', u'star', u'nasa'] [u'boss', u'say', u'bali', u'intellig', u'limit'] [u'steven', u'return', u'boost', u'crow'] [u'kilda', u'polic', u'power', u'fine', u'tourist'] [u'student', u'research', u'continu', u'despit', u'fund', u'pull'] [u'surrey', u'keeper', u'batti', u'equal', u'world', u'record'] [u'survey', u'reveal', u'inland', u'fishermen', u'spend'] [u'swab', u'test', u'falconio', u'case'] [u'sydney', u'level', u'year'] [u'sydney', u'woman', u'admit', u'kill', u'parent', u'court', u'tell'] [u'tafe', u'releas', u'intern', u'review', u'plan'] [u'tamil', u'tiger', u'lanka', u'fail', u'reach', u'peac'] [u'growth', u'rest', u'countri'] [u'taylor', u'stake', u'earli', u'jude', u'classic', u'lead'] [u'tbird', u'kestrel', u'swift', u'win'] [u'teacher', u'union', u'welcom', u'strike', u'action'] [u'team', u'pursuit', u'give', u'australia', u'cheer'] [u'teenag', u'court', u'assault', u'homeless'] [u'tiger', u'sign', u'coughlan'] [u'tongan', u'call', u'step'] [u'travel', u'advisori', u'issu'] [u'troop', u'clash', u'iraqi', u'militia', u'despit', u'truce'] [u'tumbarumba', u'mayor', u'pleas', u'merger', u'outcom'] [u'decept'] [u'japanes', u'journalist', u'kill', u'iraq'] [u'charg', u'cannabi', u'seizur', u'refus', u'bail'] [u'releas', u'bail', u'extradit'] [u'face', u'court', u'action', u'guantanamo', u'detaine'] [u'alli', u'accus', u'iraq', u'abus'] [u'armi', u'run', u'bullet'] [u'firm', u'invest', u'explor'] [u'iraq', u'command', u'urg', u'australia', u'stay'] [u'polic', u'shock', u'children', u'brutal', u'kill'] [u'sadr', u'truce', u'najaf'] [u'add', u'list', u'tobacco', u'ill'] [u'want', u'open', u'end', u'iraq', u'commit'] [u'will', u'discuss', u'death', u'penalti', u'hamza', u'case'] [u'valdano', u'resign', u'real', u'sport', u'director'] [u'vanston', u'admit', u'atsic', u'dismantl', u'long', u'process'] [u'veteran', u'tonkov', u'claim', u'giro', u'stage', u'mcgee'] [u'address', u'region', u'skill', u'shortag'] [u'vocalist', u'warm', u'bush', u'idol'] [u'volleybal', u'track', u'athen', u'place'] [u'coalit', u'target', u'region', u'woe'] [u'wallabi', u'hope', u'line', u'scotland'] [u'databas', u'lead', u'state', u'number'] [u'target', u'dialysi', u'fund'] [u'west', u'coast', u'regret', u'train', u'safeti', u'disrupt'] [u'woman', u'accus', u'give', u'fals', u'evid'] [u'woman', u'lose', u'appeal', u'neglig', u'case'] [u'woman', u'face', u'court', u'sydney', u'doubl', u'murder'] [u'worker', u'escap', u'unhurt', u'gaza', u'attack'] [u'work', u'dole', u'project', u'benefit', u'illawarra', u'region'] [u'world', u'wide', u'spell', u'world', u'wide', u'crime'] [u'wynyard', u'smithton', u'road', u'wrangl', u'continu'] [u'young', u'male', u'write', u'virus', u'expert'] [u'move', u'clarifi', u'prison', u'abus', u'knowledg'] [u'alaska', u'quak', u'affect', u'yellowston', u'geyser', u'studi'] [u'want', u'brack', u'focus', u'worker'] [u'demand', u'govt', u'solv', u'medic', u'staff', u'shortag'] [u'warn', u'govt', u'vaccin', u'backlash'] [u'aristid', u'pois', u'africa', u'exil'] [u'asio', u'ignor', u'roch', u'phone', u'warn', u'ruddock'] [u'kill', u'saudi', u'attack', u'secur', u'sourc'] [u'australian', u'face', u'terror', u'charg', u'lebanon'] [u'australian', u'soldier', u'injur', u'iraq', u'crash'] [u'australia', u'stun', u'china', u'volleybal'] [u'australia', u'team', u'pursuit', u'titl'] [u'bartlett', u'take', u'shoot', u'duck', u'hunt', u'season'] [u'bashar', u'centuri', u'lift', u'bangladesh'] [u'beatti', u'tackl', u'child', u'abus'] [u'berg', u'interview', u'moor', u'film'] [u'blair', u'desir', u'elect'] [u'bresciano', u'strike', u'give', u'australia', u'victori'] [u'budget', u'wont', u'eas', u'hospit', u'wait', u'time', u'brown'] [u'builder', u'seek', u'feder', u'help', u'train'] [u'burma', u'report', u'dead', u'cyclon', u'say', u'dead'] [u'burni', u'manag', u'head', u'peak', u'bodi'] [u'bush', u'putin', u'negoti', u'iraq', u'resolut'] [u'button', u'send', u'practic', u'warn', u'schu'] [u'car', u'impound', u'shoot', u'probe'] [u'chile', u'withdraw', u'pinochet', u'legal', u'immun'] [u'colombian', u'rebel', u'mark', u'anniversari'] [u'condom', u'cancer', u'risk', u'expos'] [u'conserv', u'iranian', u'parliament', u'speaker'] [u'constitut', u'recognis', u'victoria', u'aborigin'] [u'cool', u'weather', u'delay', u'wine', u'crop'] [u'crawford', u'hawk', u'demolish'] [u'crazi', u'bingo', u'session', u'bond', u'portug', u'player'] [u'crow', u'start', u'strong', u'hawk'] [u'cunego', u'steal', u'simoni', u'limelight', u'mcgee', u'sit'] [u'curtin', u'univers', u'freez', u'hec', u'fee'] [u'cyclist', u'continu', u'pursuit', u'domin'] [u'deforest', u'blame', u'haiti', u'flood'] [u'disabl', u'youth', u'forc', u'age', u'care', u'home', u'network'] [u'dual', u'murder', u'accus', u'remain', u'custodi'] [u'eagl', u'swoop', u'fade', u'tiger'] [u'earthquak', u'hit', u'northern', u'iran'] [u'editor', u'kill', u'spark', u'press', u'freedom', u'fear'] [u'elector', u'commiss', u'tip', u'close', u'poll'] [u'estil', u'edg', u'past', u'sorenstam', u'lpga', u'lead'] [u'famili', u'minist', u'admit', u'staff', u'woe'] [u'famili', u'worker', u'domin', u'confer'] [u'state', u'govt', u'rage', u'road'] [u'fighter', u'part', u'contract', u'boost', u'brisban', u'firm'] [u'destroy', u'sydney', u'plastic', u'factori'] [u'firefight', u'levi', u'drive', u'peopl', u'insur'] [u'foreign', u'attack', u'saudi', u'sector'] [u'flatley', u'injuri', u'spoil', u'red'] [u'flood', u'survivor', u'caribbean', u'nightmar'] [u'conscious', u'indonesian', u'overdos'] [u'frawley', u'talk', u'tiger', u'chanc'] [u'gastroenter', u'outbreak', u'strain', u'hospit'] [u'geneticist', u'back', u'embryo', u'test', u'law', u'propos'] [u'gillespi', u'clark', u'australia', u'seri'] [u'govt', u'attack', u'duck', u'hunt', u'season'] [u'habib', u'lawyer', u'seek', u'guantanamo', u'abus', u'video'] [u'holocaust', u'fear', u'vanunu', u'blow', u'whistl'] [u'hope', u'float', u'spirit', u'tasmania'] [u'hospit', u'violenc', u'measur', u'inadequ'] [u'hostag', u'take', u'qaeda', u'claim', u'saudi', u'attack'] [u'huxley', u'stay', u'red'] [u'iaaf', u'young', u'dope', u'case'] [u'iran', u'steel', u'high', u'quak', u'toll'] [u'iran', u'quak', u'toll', u'mount'] [u'isra', u'soldier', u'kill', u'palestinian', u'gunmen', u'report'] [u'jackson', u'septemb', u'trial'] [u'jail', u'sentenc', u'seek', u'thiev'] [u'japan', u'plan', u'talk', u'north', u'korea', u'report'] [u'kookuburra', u'hold', u'germani'] [u'kuerten', u'oust', u'feder', u'serena', u'capriati'] [u'kurdish', u'separatist', u'ceasefir', u'turkey'] [u'labor', u'seek', u'broad', u'port', u'expans', u'inquiri'] [u'libyan', u'nuclear', u'program', u'link', u'pakistan', u'iran'] [u'literaci', u'voucher', u'inappropri'] [u'magpi', u'roll', u'down', u'kangaroo'] [u'kill', u'sit', u'princ'] [u'mine', u'accid', u'injuri', u'kill'] [u'mine', u'law', u'rock', u'power', u'underground'] [u'miramax', u'founder', u'distribut', u'fahrenheit'] [u'mix', u'econom', u'news', u'weigh'] [u'rain', u'expect'] [u'nevill', u'anxious', u'lose', u'time'] [u'iraqi', u'work', u'govt', u'team'] [u'nightlin', u'second', u'troop', u'honour', u'roll'] [u'incent', u'doctor', u'medicar', u'plus'] [u'pakistan', u'test', u'fire', u'nuclear', u'capabl', u'missil'] [u'palestinian', u'gunmen', u'kill', u'isra', u'soldier'] [u'pie', u'face', u'crunch', u'match', u'roo'] [u'pressur', u'spell', u'prison', u'abus'] [u'detent', u'centr', u'wast', u'tax'] [u'polic', u'investig', u'suspici', u'decept'] [u'polic', u'target', u'student', u'drunken', u'fight'] [u'profil', u'iyad', u'allawi'] [u'protest', u'disrupt', u'mexico', u'summit'] [u'nation', u'choos', u'joyc', u'head', u'senat', u'ticket'] [u'raider', u'centr', u'combin', u'crush', u'man'] [u'raikkonen', u'ahead', u'open'] [u'rain', u'boost', u'crop', u'cattl', u'hop'] [u'shield', u'appeal', u'donat', u'encourag', u'salvo'] [u'rise', u'bloom', u'hang'] [u'ruddock', u'answer', u'roch', u'call', u'claim'] [u'safin', u'final', u'coria', u'storm'] [u'sandakan', u'death', u'march', u'rememb'] [u'school', u'impos', u'exam', u'mark', u'student'] [u'schumach', u'take', u'pole', u'home', u'soil'] [u'seven', u'dead', u'sweep', u'tanker'] [u'shark', u'blitz', u'clean', u'south'] [u'sharon', u'postpon', u'gaza', u'pullout', u'vote'] [u'shiit', u'march', u'support', u'sistani'] [u'shock', u'anger', u'roma', u'capello', u'walk'] [u'shooter', u'defend', u'duck', u'hunt'] [u'shoot', u'investig', u'close', u'adelaid', u'street'] [u'korea', u'regist', u'strongest', u'quak', u'year'] [u'socceroo', u'tell', u'step'] [u'specialist', u'urg', u'countri', u'practic'] [u'storm', u'break', u'duck', u'newcastl'] [u'strong', u'head', u'orchestra', u'review'] [u'swan', u'triumph', u'lacklustr', u'clash'] [u'team', u'boss', u'agre', u'qualifi', u'format'] [u'terror', u'suspect', u'want', u'sydney', u'shoot'] [u'thanksgiv', u'restor', u'christian', u'valu'] [u'thousand', u'attend', u'eclect', u'merrepen', u'festiv'] [u'titl', u'defenc', u'spark', u'tom'] [u'turkish', u'kurd', u'warn', u'investor', u'tourist'] [u'interven', u'congo', u'fight'] [u'concern', u'libyan', u'nuclear', u'program'] [u'consul', u'examin', u'polic', u'harass', u'claim'] [u'endors', u'prime', u'minist', u'allawi'] [u'militia', u'fight', u'erupt', u'iraq', u'citi', u'kufa'] [u'vacanc', u'prompt', u'radiograph', u'strike', u'threat'] [u'venezuela', u'check', u'chavez', u'petit', u'signatur'] [u'viduka', u'spanish', u'hold'] [u'wireless', u'network', u'open', u'hacker'] [u'agenc', u'warn', u'caribbean', u'flood', u'crisi'] [u'qaeda', u'attack', u'kill', u'saudi'] [u'american', u'indebt', u'soldier', u'bush'] [u'antarct', u'link', u'caus', u'tasmanian', u'celebr'] [u'brisban', u'softwar', u'group', u'win', u'chile', u'contract'] [u'canberra', u'plan', u'battl', u'bulg'] [u'chip', u'factori', u'target', u'export', u'market'] [u'coach', u'okay', u'french', u'euro', u'prepar'] [u'communiti', u'centr', u'tackl', u'redfern', u'woe'] [u'companion', u'card', u'eas', u'strain', u'disabl', u'commut'] [u'cunego', u'verg', u'giro', u'triumph'] [u'dead', u'man', u'ident', u'puzzl', u'polic'] [u'dfat', u'visit', u'alleg', u'australian', u'terrorist'] [u'drag', u'sit', u'undergo', u'nois', u'test'] [u'earthquak', u'add', u'flood', u'hispaniola', u'woe'] [u'emerg', u'industri', u'lack', u'invest', u'support'] [u'estil', u'maintain', u'edg', u'sorenstam'] [u'timor', u'presid', u'criticis', u'wiranto', u'meet'] [u'europ', u'gun', u'pois', u'showdown'] [u'food', u'standard', u'forc', u'littl', u'seafood', u'industri', u'chang'] [u'foreign', u'hostag', u'kill', u'saudi', u'rescu'] [u'showcas', u'altern', u'chang'] [u'manag', u'resign', u'amid', u'irish', u'bank', u'scandal'] [u'soldier', u'kill', u'afghanistan'] [u'gallop', u'unhappi', u'polic', u'harass', u'alleg'] [u'school', u'govt', u'urg', u'teacher'] [u'gillespi', u'clark', u'australia', u'seri'] [u'govt', u'dous', u'cold', u'water', u'bushfir', u'memori'] [u'clinic', u'pressur', u'hospit'] [u'group', u'hope', u'vine', u'leaf', u'rust', u'erad'] [u'guantanamo', u'abus', u'inquiri', u'seek', u'howard'] [u'helicopt', u'attack', u'kill', u'palestinian'] [u'hewitt', u'kuerten', u'oust', u'feder'] [u'hick', u'face', u'august', u'trial'] [u'histor', u'qualif', u'volleybal'] [u'howard', u'request', u'cross', u'abus', u'report'] [u'ill', u'alert', u'custom', u'alleg', u'drug', u'smuggler'] [u'indict', u'ignor', u'wiranto', u'hail', u'friend', u'gusmao'] [u'iran', u'urg', u'nuclear', u'watchdog', u'stay', u'imparti'] [u'iraqi', u'wrangl', u'presid', u'succeed', u'saddam'] [u'italian', u'artist', u'luciano', u'minguzzi', u'die'] [u'iraq', u'cabinet', u'post', u'agre', u'chalabi'] [u'labor', u'leav', u'door', u'open', u'adopt'] [u'detaine', u'leav', u'manus', u'island'] [u'lion', u'win', u'way'] [u'magazin', u'groom', u'husband'] [u'mail', u'updat', u'elector', u'roll'] [u'mear', u'take', u'gold', u'world', u'champ', u'wrap'] [u'mental', u'health', u'debat', u'deter', u'peopl', u'need'] [u'music', u'stop', u'portug', u'paus', u'peac'] [u'najaf', u'fight', u'continu', u'despit', u'truce'] [u'newspap', u'editor', u'surviv', u'assassin', u'attempt'] [u'garden', u'varieti', u'shed', u'british', u'display'] [u'injuri', u'bomb', u'damag', u'greek', u'court'] [u'govt', u'angri', u'alleg', u'terrorist', u'give', u'bail'] [u'urg', u'nurs', u'reconnect'] [u'oppn', u'crack', u'corpor', u'greed'] [u'pagan', u'say', u'pressur'] [u'pakistan', u'hold', u'parliamentari', u'hear', u'cricket'] [u'palac', u'promot', u'premier', u'leagu'] [u'panther', u'heart', u'edg', u'bulldog'] [u'bush', u'discuss', u'prison', u'abus', u'claim'] [u'polic', u'arrest', u'danc', u'parti', u'raid'] [u'polic', u'link', u'gypsi', u'joker', u'wallaroo', u'shoot'] [u'polic', u'seek', u'help', u'foil', u'puppi', u'thief'] [u'polic', u'surround', u'chalabi', u'offic'] [u'polic', u'wind', u'search', u'miss', u'fisherman'] [u'port', u'claw', u'cat'] [u'prefer', u'decid', u'council'] [u'princ', u'william', u'contempl', u'career', u'arm', u'forc'] [u'rafiqu', u'plunder', u'maiden', u'bangladesh'] [u'rampant', u'rooster', u'easi', u'warrior'] [u'releas', u'call', u'mark', u'detent', u'anniversari'] [u'rooster', u'demolish', u'woeful', u'warrior'] [u'ruddock', u'concern', u'shoot', u'accus', u'lebanon'] [u'rumsfeld', u'say', u'terror', u'earli', u'stag'] [u'sadr', u'implement', u'najaf', u'truce'] [u'saudi', u'attack', u'pressur', u'price'] [u'saudi', u'cell', u'slaughter', u'italian', u'swede', u'websit'] [u'saudi', u'commando', u'raid', u'hostag', u'compound'] [u'saudi', u'forc', u'milit'] [u'saudi', u'forc', u'free', u'hostag'] [u'saudi', u'forc', u'pois', u'storm', u'hostag', u'taker'] [u'schumach', u'lead', u'ferrari', u'nuerburgr'] [u'scientist', u'breed', u'poison', u'blowfish'] [u'search', u'miss', u'fisherman'] [u'servic', u'station', u'welcom', u'labor', u'petrol', u'plan'] [u'sharon', u'postpon', u'vote', u'gaza', u'plan'] [u'shooter', u'defend', u'duck', u'hunt', u'season'] [u'springborg', u'call', u'action', u'main', u'road'] [u'kilda', u'romp', u'home', u'blue'] [u'strong', u'head', u'orchestra', u'review'] [u'taliban', u'milita', u'step', u'insurg'] [u'taliban', u'support', u'shoot', u'dead', u'karachi'] [u'tasmania', u'win', u'dirti', u'ashtray'] [u'tassi', u'research', u'explor', u'unseen', u'floor'] [u'offic', u'play', u'underworld', u'kill'] [u'thousand', u'respect', u'fiat', u'agnelli'] [u'tiger', u'extend', u'eel', u'slump'] [u'tom', u'seven', u'clear', u'jude', u'classic'] [u'charg', u'bodi', u'discoveri'] [u'charg', u'gypsi', u'joker', u'shoot'] [u'troop', u'seek', u'secur', u'east', u'congo'] [u'vaughan', u'england', u'return'] [u'wasp', u'edg', u'bath', u'complet', u'dream', u'doubl'] [u'watkin', u'tabl', u'extraordinari', u'paedophil', u'track'] [u'act', u'posit', u'smoke', u'scoreboard', u'improv'] [u'all', u'ord', u'climb'] [u'qaeda', u'vow', u'cleans', u'arabian', u'peninsula'] [u'altern', u'rail', u'arrang', u'continu'] [u'arab', u'state', u'condemn', u'saudi', u'attack'] [u'arafat', u'claim', u'palestinian', u'foil', u'reveng'] [u'aussi', u'defend', u'zimbabw', u'seri'] [u'australian', u'agenc', u'consid', u'south', u'pacif', u'project'] [u'australian', u'gear', u'tahiti', u'clash'] [u'australian', u'offic', u'visit', u'ghraib'] [u'australian', u'open', u'receiv', u'financi', u'inject'] [u'australian', u'scientist', u'help', u'rare', u'bird', u'rescu'] [u'australian', u'urg', u'leav', u'saudi', u'arabia'] [u'australia', u'refus', u'hong', u'kong', u'extradit', u'request'] [u'aust', u'resid', u'saudi', u'terror', u'dead'] [u'baghdad', u'gunmen', u'kill', u'hostag'] [u'ballist', u'evid', u'hear', u'murdoch', u'committ'] [u'bangladesh', u'produc', u'highest', u'test', u'total', u'windi'] [u'bendigo', u'hous', u'price', u'rise'] [u'brazilian', u'come', u'friend'] [u'britain', u'consid', u'radic', u'anti', u'terror', u'move'] [u'broom', u'airport', u'casa', u'odd', u'reform'] [u'burma', u'mark', u'year', u'detent'] [u'bushfir', u'inquiri', u'hear', u'concern', u'respons'] [u'busi', u'group', u'back', u'summer', u'seven', u'trade'] [u'butt', u'state', u'case', u'england', u'role', u'franc'] [u'brake', u'speed', u'trucki'] [u'accid', u'victim', u'night'] [u'casaveen', u'knitwear', u'win', u'wool', u'industri', u'servic', u'award'] [u'cheney', u'coordin', u'halliburton', u'iraq', u'contract', u'report'] [u'claim', u'polic', u'taunt', u'american', u'student', u'disturb'] [u'compani', u'fin', u'build', u'site', u'death'] [u'demand', u'major', u'chang', u'govt'] [u'convict', u'bali', u'bomber', u'testifi', u'final', u'suspect'] [u'coria', u'henman', u'french', u'open', u'quarter', u'final'] [u'coron', u'hear', u'begin', u'child', u'care', u'worker'] [u'cosgrov', u'confirm', u'traffic', u'accid', u'injur', u'troop'] [u'council', u'administr', u'share', u'wisdom'] [u'council', u'take', u'issu', u'govt', u'financi', u'woe'] [u'council', u'sink', u'teeth', u'fluorid', u'debat'] [u'crawford', u'target', u'round', u'return'] [u'dairi', u'farmer', u'upbeat', u'milk', u'price'] [u'damn', u'anglican', u'abus', u'report', u'reveal'] [u'dane', u'spurn', u'chanc', u'draw', u'estonia'] [u'democrat', u'seek', u'cigarett', u'vend', u'machin'] [u'deputi', u'open', u'maryborough', u'confer'] [u'deputi', u'urg', u'region', u'peopl', u'trade'] [u'detail', u'william', u'case', u'clear', u'releas'] [u'detaine', u'father', u'sceptic', u'terror', u'trial', u'time'] [u'drought', u'continu', u'flow'] [u'time', u'western', u'victoria'] [u'girlfriend', u'say', u'murdoch', u'shave', u'hair'] [u'exot', u'turtl', u'net', u'reptil', u'amnesti'] [u'falconio', u'case', u'hear', u'hollow', u'near', u'highway'] [u'farmer', u'push', u'compo', u'wheat', u'debt'] [u'fatal', u'helicopt', u'crash', u'probe', u'begin'] [u'fine', u'construct', u'compani', u'welcom'] [u'brigad', u'warn', u'prepar'] [u'servic', u'want', u'public', u'listen', u'warn'] [u'austrian', u'tour', u'boat', u'accid'] [u'flatley', u'miss', u'nation'] [u'forestri', u'seek', u'giant', u'tree', u'detail'] [u'shire', u'job', u'consid', u'safe'] [u'forum', u'allow', u'drought', u'feedback'] [u'found', u'singapor', u'leader'] [u'kill', u'injur', u'baghdad', u'blast'] [u'refus', u'bail', u'drug', u'conspiraci', u'charg'] [u'fresh', u'clash', u'break', u'congo'] [u'gastroenter', u'outbreak', u'hit', u'hospit'] [u'gerrard', u'owen', u'help', u'determin', u'liverpool', u'coach'] [u'govt', u'defend', u'time', u'take', u'decid', u'bushfir'] [u'govt', u'dismiss', u'labor', u'petrol', u'price', u'plan'] [u'govt', u'fund', u'mass', u'power', u'station', u'research'] [u'govt', u'crack', u'builder'] [u'govt', u'tighten', u'cigarett', u'sale', u'restrict'] [u'demand', u'nation', u'anti', u'smoke', u'law'] [u'seek', u'nation', u'smoke', u'law'] [u'green', u'candid', u'reject', u'marriag', u'plan'] [u'green', u'hope', u'council', u'posit'] [u'group', u'air', u'toxic', u'wast', u'transport', u'fear'] [u'group', u'outlin', u'campaign', u'wast', u'facil'] [u'group', u'say', u'seafood', u'plan', u'boost', u'consum'] [u'gulf', u'vincent', u'vital', u'breed', u'grind'] [u'hawk', u'suffer', u'unlucki', u'break'] [u'health', u'group', u'detail', u'smoke', u'impact'] [u'henjak', u'call', u'wallabi'] [u'hickss', u'lawyer', u'renew', u'plea', u'australian', u'trial'] [u'hill', u'stop', u'offic', u'appear', u'iraqi', u'abus'] [u'hinkler', u'oppos', u'pharmaci', u'deregul'] [u'home', u'lend', u'drive', u'privat', u'sector', u'growth'] [u'hospit', u'urg', u'tighten', u'secur'] [u'illawarra', u'hous', u'market', u'soft', u'land', u'report'] [u'indonesia', u'get', u'wise', u'rodent', u'problem'] [u'indonesian', u'polic', u'fear', u'attack', u'elect', u'lead'] [u'inform', u'campaign', u'target', u'parent'] [u'inquest', u'name', u'person', u'murder'] [u'iraq', u'presidenti', u'decis', u'delay'] [u'isra', u'cabinet', u'hit', u'stalem', u'pullout'] [u'istanbul', u'bomb', u'suspect', u'face', u'court'] [u'job', u'tafe', u'shake'] [u'journalist', u'paint', u'bleak', u'pictur', u'media', u'ahead'] [u'zimbabw', u'involv', u'test', u'game', u'pont'] [u'kookaburra', u'lose', u'german', u'seri', u'level'] [u'labor', u'oppos', u'coupl', u'adopt'] [u'labor', u'urg', u'action', u'pacif', u'upgrad'] [u'landhold', u'feel', u'drought', u'effect'] [u'landhold', u'urg', u'park', u'precaut'] [u'chang', u'freez', u'istanbul', u'trial'] [u'leonard', u'lead', u'barbarian', u'rout', u'look', u'england'] [u'let', u'sort'] [u'licuria', u'glass', u'video', u'report'] [u'live', u'murray', u'pois', u'elect', u'issu'] [u'long', u'wait', u'near', u'buninyong', u'sport', u'precinct'] [u'lower', u'deficit', u'remain', u'uncomfort', u'high'] [u'die', u'backyard', u'mishap'] [u'die', u'highway', u'crash'] [u'manus', u'island', u'refuge', u'arriv', u'melbourn'] [u'matthew', u'conced', u'lion', u'finish', u'second'] [u'matthew', u'conced', u'lion', u'fight', u'second'] [u'mayor', u'gather', u'discuss', u'water', u'conserv'] [u'mcgee', u'move', u'gear', u'giro', u'eighth', u'place'] [u'mcgrath', u'want', u'ball'] [u'mcmillan', u'add', u'kiwi', u'injuri', u'woe'] [u'meet', u'consid', u'wild', u'woe'] [u'melbourn', u'life', u'await', u'manus', u'island', u'detaine'] [u'memori', u'commemor', u'vietnam', u'veteran'] [u'ministeri', u'staffer', u'oversea', u'trip', u'question'] [u'fund', u'seek', u'reduc', u'road', u'toll'] [u'pleas', u'princ', u'highway', u'safeti', u'audit'] [u'want', u'monorail', u'scheme', u'explor'] [u'murder', u'abduct', u'rise'] [u'citizen', u'toowoomba', u'home'] [u'librari', u'kimberley', u'histori'] [u'pantani', u'cunego', u'crown', u'giro', u'champion'] [u'scam', u'prompt', u'internet', u'bank', u'warn'] [u'school', u'open', u'eurobodalla'] [u'zealand', u'fishermen', u'stop', u'greenpeac', u'protest'] [u'extradit', u'accus', u'corrupt'] [u'hous', u'market', u'collaps', u'sight', u'report'] [u'record', u'roch', u'ruddock'] [u'norfolk', u'murder', u'inquest', u'begin'] [u'north', u'korean', u'link', u'pong', u'face', u'deport'] [u'crack', u'grappl', u'tackl'] [u'angri', u'health', u'budget', u'cut'] [u'criticis', u'terror', u'suspect', u'court', u'delay'] [u'test', u'respons', u'terrorist', u'attack'] [u'obeid', u'deni', u'opposit', u'lebanon', u'trip', u'claim'] [u'obeid', u'head', u'home', u'lebanon'] [u'market', u'nervous', u'saudi', u'unrest'] [u'onetel', u'case', u'hold', u'hear', u'england'] [u'soldier', u'kill', u'wound', u'south', u'baghdad'] [u'oppn', u'decri', u'obeid', u'lebanon', u'trip'] [u'overland', u'track', u'visitor', u'number', u'limit'] [u'oxley', u'highway', u'revamp', u'start'] [u'pair', u'coast', u'road', u'crash'] [u'pastur', u'catch', u'best', u'rainfal', u'forecast'] [u'perman', u'camper', u'order', u'leav'] [u'plane', u'fall'] [u'plan', u'afoot', u'port', u'piri', u'power', u'station'] [u'say', u'roch', u'mistak', u'regrett'] [u'parliament', u'oust', u'speaker', u'confid', u'vote'] [u'polic', u'fear', u'safeti', u'miss', u'woman'] [u'polic', u'inform', u'dead', u'walk'] [u'polic', u'investig', u'shoot', u'murder'] [u'polic', u'minist', u'fear', u'safeti', u'amid', u'shoot'] [u'polic', u'number', u'review'] [u'polic', u'probe', u'more', u'break'] [u'polic', u'probe', u'wollongong', u'unit', u'blaze'] [u'polic', u'speak', u'lebanes', u'author', u'terror'] [u'polic', u'wit', u'stand', u'falconio', u'case'] [u'polit', u'hamper', u'council', u'fund'] [u'pressur', u'murali', u'announc', u'tour', u'intent'] [u'produc', u'fin', u'fals', u'vendor', u'declar'] [u'land', u'protect', u'futur', u'develop'] [u'rain', u'set', u'record'] [u'figur', u'credit', u'boom'] [u'real', u'presid', u'confid', u'keep', u'roberto', u'carlo'] [u'region', u'work', u'inspir', u'governor'] [u'regul', u'continu', u'region', u'servic'] [u'report', u'recommend', u'stronger', u'tie', u'indonesia'] [u'research', u'highlight', u'theft', u'threat'] [u'retract', u'syring', u'distribut'] [u'saddam', u'display', u'white', u'hous'] [u'saint', u'forward', u'drink', u'drive', u'charg'] [u'saint', u'forward', u'drink', u'drive', u'charg'] [u'saudi', u'hostag', u'drama', u'spark', u'manhunt'] [u'scheme', u'look', u'dairi', u'job'] [u'schwab', u'give', u'blunt', u'assess', u'hawk'] [u'search', u'continu', u'miss', u'esper'] [u'sharon', u'threaten', u'sack', u'delay', u'gaza', u'vote'] [u'shock', u'wentworth', u'outsid', u'drummond'] [u'chidren', u'injur', u'sydney', u'crash'] [u'socceroo', u'face', u'chang', u'tahiti', u'clash'] [u'socceroo', u'mismatch', u'tahiti'] [u'sorenstam', u'win', u'corn', u'classic'] [u'sourc', u'tri', u'warn', u'roch'] [u'south', u'east', u'share', u'black', u'spot', u'fund'] [u'sport', u'group', u'seek', u'bendigo', u'poki'] [u'statu', u'plan', u'caus', u'indigen'] [u'strong', u'fish', u'number', u'morgan'] [u'support', u'portland', u'wind', u'farm', u'blade'] [u'sydney', u'ranger', u'protest', u'park', u'ticket', u'quota'] [u'tasmania', u'tourism', u'chief', u'defend', u'ferri'] [u'teacher', u'share', u'excel', u'award'] [u'tender', u'seek', u'break', u'hill', u'block'] [u'gunmen', u'escap', u'saudi', u'hostag', u'drama'] [u'tom', u'retain', u'jude', u'classic', u'stroke'] [u'tour', u'group', u'forc', u'abandon', u'trip', u'face', u'arrest'] [u'trust', u'chairwoman', u'hop', u'hous', u'compromis'] [u'trust', u'want', u'ental', u'hous', u'leas', u'restor'] [u'tuna', u'farm', u'approv', u'abrolho', u'island'] [u'charg', u'babi', u'murder'] [u'jail', u'heroin', u'import'] [u'soldier', u'kufa', u'clash'] [u'union', u'protest', u'foreign', u'worker', u'abus'] [u'condemn', u'saudi', u'effort', u'terror'] [u'releas', u'palestinian', u'diplomat', u'ghraib'] [u'venezuela', u'elect', u'bodi', u'rule', u'chavez'] [u'databas', u'track', u'offend', u'movement'] [u'polic', u'chief', u'defend', u'wit', u'protect', u'program'] [u'polic', u'watch', u'casino', u'money', u'launder'] [u'war', u'terror', u'impact', u'tourism', u'line'] [u'water', u'restrict'] [u'webber', u'defiant', u'schus', u'accus'] [u'welfar', u'review', u'uncov', u'million', u'cheat'] [u'wild', u'dog', u'blame', u'sheep', u'death'] [u'wind', u'farm', u'work', u'get', u'closer'] [u'woman', u'die', u'road', u'crash'] [u'woman', u'leav', u'children', u'overnight'] [u'young', u'magpi', u'lose', u'licenc', u'speed'] [u'star', u'feet', u'grind', u'game'] [u'traffic', u'control', u'remain', u'iraq'] [u'alderman', u'defend', u'sport', u'complex', u'motion'] [u'alleg', u'drug', u'dealer', u'say', u'leak', u'report'] [u'qaeda', u'win', u'terror', u'analyst'] [u'anglican', u'archbishop', u'wont', u'resign', u'despit', u'damn'] [u'angri', u'shiit', u'mourn', u'kill', u'pakistan', u'blast'] [u'anti', u'chemic', u'spark', u'arctic', u'fear'] [u'appl', u'pear', u'grower', u'highlight', u'fireblight', u'threat'] [u'archbishop', u'irrelev', u'church', u'reform'] [u'arroyo', u'warn', u'plotter', u'presidenti', u'vote', u'count'] [u'aussi', u'terror', u'suspect', u'face', u'lebanon', u'court'] [u'australia', u'review', u'travel', u'advic'] [u'author', u'play', u'reef', u'loss'] [u'banana', u'power', u'appeal', u'grower'] [u'bank', u'boss', u'regret', u'surf', u'porn'] [u'say', u'confid', u'hewitt'] [u'bekel', u'break', u'world', u'metr', u'record'] [u'explos', u'probe', u'month'] [u'board', u'meet', u'decid', u'langmack', u'fate'] [u'bomb', u'kill', u'karachi', u'mosqu'] [u'brack', u'ask', u'leak', u'polic', u'report', u'info'] [u'brack', u'greet', u'passeng', u'avalon', u'airport', u'open'] [u'brazil', u'ronaldinho', u'miss', u'argentina', u'qualifi'] [u'briton', u'injur', u'annual', u'chees', u'chase'] [u'broadbeach', u'convent', u'centr', u'open'] [u'brogden', u'eject', u'chamber'] [u'govt', u'fund', u'whitsunday'] [u'career', u'roll', u'high', u'black', u'elli'] [u'catallini', u'consid', u'european', u'offer'] [u'cathol', u'school', u'teacher', u'action', u'claim'] [u'cattl', u'feedlot', u'abattoir', u'draw', u'board'] [u'caus', u'factori', u'blaze', u'investig'] [u'monitor', u'polic', u'investig'] [u'central', u'aust', u'transport', u'pioneer', u'die', u'age'] [u'chariti', u'needi', u'illawarra', u'children'] [u'chelsea', u'dump', u'ranieri'] [u'cherbourg', u'shelter'] [u'choos', u'prettiest', u'megawati', u'tell', u'voter'] [u'clanci', u'come', u'screen', u'drove'] [u'clean', u'energi', u'need', u'fund'] [u'coalit', u'compet', u'underdog'] [u'compani', u'plead', u'guilti', u'feedlot', u'breach'] [u'compani', u'hop', u'chilean', u'nut', u'product'] [u'concern', u'air', u'crash', u'inquest', u'delay'] [u'convict', u'murder', u'refus', u'court'] [u'council', u'choos', u'iraqi', u'presid'] [u'council', u'appeal', u'plane', u'nois', u'decis'] [u'council', u'seek', u'fund', u'boost', u'manag', u'chang'] [u'council', u'urg', u'tackl', u'wild', u'problem'] [u'court', u'hear', u'evid', u'husband', u'murder', u'trial'] [u'crazi', u'problem', u'spread'] [u'crown', u'seek', u'explan', u'money', u'launder'] [u'dairi', u'farmer', u'seek', u'wooli', u'help'] [u'danger', u'drive', u'penalti', u'strengthen'] [u'dead', u'blast', u'iraq', u'presid', u'name'] [u'devil', u'breed', u'program', u'celebr', u'success'] [u'draft', u'tamworth', u'budget'] [u'draper', u'suggest', u'health', u'servic', u'allianc'] [u'drought', u'dollar', u'hurt', u'dairi', u'farmer'] [u'drought', u'take', u'toll', u'wagga'] [u'friend', u'build', u'join', u'adelaid', u'skylin'] [u'gippsland', u'push', u'tourism', u'attract'] [u'elder', u'coupl', u'trial', u'cannabi', u'possess'] [u'energex', u'defend', u'safeti', u'transform'] [u'expert', u'predict', u'better', u'winter', u'rainfal'] [u'export', u'drag', u'growth'] [u'falconio', u'hear', u'tell', u'vehicl', u'probe'] [u'fall', u'fertil', u'lead', u'coupl', u'long', u'donat'] [u'farina', u'prais', u'player', u'commit'] [u'farmer', u'consid', u'appeal', u'miner', u'sand'] [u'farmer', u'group', u'cast', u'doubt', u'water', u'plan'] [u'farmer', u'watch', u'mice'] [u'farmer', u'optimist', u'world', u'trade', u'talk', u'progress'] [u'farmer', u'feel', u'drought', u'impact'] [u'fitzgerald', u'examin', u'polic', u'report', u'leak'] [u'fluorid', u'debat', u'bring', u'mix', u'respons'] [u'forest', u'close', u'home', u'bushfir', u'inquest', u'tell'] [u'forklift', u'access', u'ghan', u'safe'] [u'liberian', u'presid', u'stand', u'trial'] [u'fruit', u'grower', u'spearhead', u'campaign', u'import'] [u'fund', u'seek', u'railway', u'hall', u'revamp'] [u'danger', u'face', u'flood', u'victim', u'warn', u'cross'] [u'germani', u'need', u'world', u'drive', u'euro', u'kahn'] [u'gillespi', u'talk', u'worth', u'zimbabw', u'seri'] [u'gold', u'coast', u'victim', u'saudi', u'attack', u'consid'] [u'govt', u'board', u'wast', u'money'] [u'govt', u'clarifi', u'wast', u'transport', u'risk'] [u'govt', u'support', u'wider', u'role', u'governor'] [u'govt', u'urg', u'blade', u'contract'] [u'govt', u'urg', u'support', u'unfair', u'dismiss', u'chang'] [u'grain', u'grower', u'unlik', u'regain', u'iraq', u'debt'] [u'green', u'race', u'meter', u'second'] [u'group', u'say', u'brothel', u'plan'] [u'heal', u'hand', u'boomer', u'captainci'] [u'health', u'servic', u'talk', u'babi', u'transfer'] [u'helmut', u'newton', u'buri', u'berlin'] [u'hewitt', u'grind', u'pari'] [u'hewitt', u'french', u'quarter'] [u'high', u'hop', u'north', u'east', u'sugar', u'beet', u'trial'] [u'high', u'petrol', u'cost', u'unlik', u'fuel', u'tourism', u'slump'] [u'howard', u'surg', u'poll', u'posit'] [u'hussain', u'blast', u'zimbabw'] [u'indigen', u'doctor', u'urg', u'leadership', u'role'] [u'indigen', u'tourism', u'group', u'vie', u'award'] [u'indonesian', u'presidenti', u'campaign', u'begin'] [u'industri', u'properti', u'tip', u'provid', u'better'] [u'input', u'seek', u'region', u'tourism', u'plan'] [u'inquest', u'fail', u'shed', u'light', u'canberra', u'murder'] [u'rat', u'tip', u'remain', u'hold'] [u'adopt', u'wada', u'code'] [u'mislead', u'abus', u'howard'] [u'jaguar', u'hit', u'cash', u'drive'] [u'japanes', u'schoolgirl', u'stab', u'classmat'] [u'jone', u'montgomeri', u'presum', u'innoc', u'chief'] [u'kempsey', u'jail', u'begin', u'staff', u'train'] [u'kerang', u'polic', u'clean', u'crime'] [u'king', u'women', u'embarrass', u'boob', u'plan'] [u'kookaburra', u'song', u'germani'] [u'kyoto', u'decis', u'impact', u'farmer'] [u'labor', u'demand', u'inquiri', u'atsic', u'dismantl'] [u'labor', u'decis', u'marriag'] [u'labor', u'sceptic', u'newspol', u'result'] [u'labor', u'stoush', u'brew', u'deputi', u'posit'] [u'lee', u'hypnotis', u'falconio', u'probe'] [u'leonard', u'issu', u'anzac', u'warn'] [u'local', u'govt', u'concern', u'plan', u'mine'] [u'local', u'govt', u'group', u'discuss', u'mechan', u'worker'] [u'lockyer', u'name', u'bench'] [u'mackay', u'fear', u'rise', u'fuel', u'price'] [u'charg', u'morcomb', u'extort', u'attempt'] [u'discov', u'bedroom'] [u'plead', u'guilti', u'mobil', u'phone', u'murder'] [u'sell', u'marijuana', u'wed'] [u'market', u'slowli', u'amid', u'price', u'specul'] [u'mayor', u'reject', u'junket', u'claim'] [u'meat', u'shortag', u'affect', u'wild', u'bait'] [u'meatwork', u'consid', u'vital', u'pipelin'] [u'face', u'court', u'cannabi', u'haul'] [u'worker', u'speed', u'fear'] [u'hurdl', u'nurs', u'home', u'plan'] [u'indonesian', u'face', u'illeg', u'fish', u'charg'] [u'teacher', u'industri', u'unrest', u'like'] [u'reject', u'highway', u'fund', u'inact', u'claim'] [u'suspend', u'pink', u'ladi', u'parliament'] [u'multipl', u'attack', u'suspect', u'canberra', u'murder'] [u'murdoch', u'life', u'detail', u'committ', u'hear'] [u'iraqi', u'presid', u'call', u'sovereignti'] [u'zealand', u'upgrad', u'travel', u'warn'] [u'sight', u'water', u'restrict'] [u'norfolk', u'murder', u'inquest', u'name', u'person'] [u'room', u'crybabi', u'portug', u'squad', u'warn'] [u'norway', u'ban', u'smoke', u'bar'] [u'nrma', u'back', u'highway', u'fund', u'pledg'] [u'fight', u'viral', u'stomach'] [u'opposit', u'move', u'censur', u'travel'] [u'seek', u'injunct', u'water', u'share'] [u'kidney', u'transplant', u'unit', u'viabl'] [u'export', u'fear', u'diseas', u'appl'] [u'occi', u'move', u'fiji'] [u'offic', u'quiz', u'leess', u'statement'] [u'surg', u'saudi', u'hostag', u'drama'] [u'oneil', u'admonish', u'attack'] [u'opec', u'boost', u'product', u'minist'] [u'oppn', u'demand', u'know', u'fast', u'rail', u'cost'] [u'opposit', u'hit', u'govt', u'budget', u'repli', u'speech'] [u'organis', u'admit', u'olymp', u'race', u'time'] [u'pagan', u'back', u'struggl', u'whitnal'] [u'pair', u'charg', u'babi', u'murder', u'refus', u'bail'] [u'abandon', u'senat', u'reform'] [u'back', u'soldier', u'ghraib', u'evid'] [u'head', u'unit', u'state'] [u'polic', u'hunt', u'newcastl', u'theft'] [u'polic', u'offici', u'kill', u'bomb', u'attack'] [u'polic', u'probe', u'port', u'moresbi', u'hotel', u'hold'] [u'polic', u'unit', u'investig', u'child', u'abus', u'claim'] [u'powerlin', u'corridor', u'detail', u'finalis'] [u'pressur', u'obeid', u'return', u'lebanon', u'trip'] [u'probe', u'melbourn', u'rail', u'death'] [u'problem', u'identifi', u'year', u'canberra', u'fire'] [u'public', u'urg', u'rail', u'cross', u'push'] [u'qanta', u'urg', u'rememb', u'oblig'] [u'queanbeyan', u'factori', u'destroy', u'blaze'] [u'railway', u'runaway', u'leav', u'track', u'manag', u'scratch'] [u'ranieri', u'want', u'stay', u'england', u'agent'] [u'research', u'dispel', u'jellyfish', u'myth'] [u'resid', u'plead', u'guilti', u'riot', u'charg'] [u'retail', u'sale', u'stall', u'busi', u'confid', u'high'] [u'review', u'help', u'improv', u'relev', u'orchestra'] [u'richmond', u'richo', u'cop', u'fine', u'wrestl'] [u'richo', u'cop', u'fine', u'wrestl'] [u'rise', u'petrol', u'price', u'fuel', u'tourism', u'fear'] [u'roch', u'await', u'sentenc'] [u'roch', u'jail', u'year'] [u'rocki', u'hotel', u'welcom', u'smoker'] [u'salmon', u'produc', u'sue', u'rival'] [u'premier', u'name', u'chaplain', u'accus', u'abus'] [u'sarwan', u'rock', u'bangladesh', u'late', u'wicket'] [u'second', u'australian', u'offic', u'visit', u'ghraib'] [u'seven', u'injur', u'philippin', u'bomb'] [u'sexual', u'cost', u'chilean', u'woman', u'children'] [u'shanghai', u'polic', u'hunt', u'steal', u'radioact'] [u'shire', u'lose', u'confer', u'vote', u'right'] [u'shoot', u'charg', u'terror', u'judg', u'say'] [u'silverdom', u'sale', u'unlik'] [u'smoke', u'slur', u'warrant', u'minist', u'say'] [u'southcorp', u'star', u'quiet', u'market'] [u'south', u'west', u'involv', u'alcohol', u'drug', u'studi'] [u'sponsor', u'threaten', u'drop', u'pie', u'speed'] [u'stab', u'spark', u'fear', u'doc', u'worker'] [u'steal', u'bike', u'recov', u'death', u'probe'] [u'sugar', u'industri', u'hope', u'surg', u'help', u'sale'] [u'survey', u'highlight', u'dubbo', u'crime', u'statist'] [u'sydney', u'council', u'continu', u'fight', u'save', u'tree'] [u'talk', u'begin', u'land', u'hand', u'plan'] [u'tassal', u'target', u'achiev', u'profit'] [u'teenag', u'sensat', u'shoot', u'boomer', u'squad'] [u'terrorist', u'win', u'malaysian', u'warn'] [u'timber', u'shortag', u'dri', u'work'] [u'tornado', u'storm', u'kill', u'seven', u'midwest'] [u'tourist', u'head', u'south', u'holiday'] [u'townsvill', u'budget', u'focus', u'green', u'issu'] [u'tribun', u'face', u'busi', u'night'] [u'ullrich', u'second', u'tour', u'germani', u'open'] [u'umaga', u'say', u'black', u'work'] [u'probe', u'iraqi', u'assault', u'theft'] [u'vaughan', u'second', u'test'] [u'vettori', u'shin', u'kiwi', u'complet', u'tour'] [u'polic', u'investig', u'corrupt', u'claim'] [u'polic', u'apologis', u'student'] [u'water', u'restrict', u'tighten'] [u'waugh', u'go', u'murali'] [u'weaker', u'demand', u'caus', u'manufactur', u'slowdown'] [u'weather', u'play', u'role', u'miss', u'search'] [u'wheatbelt', u'farmer', u'enjoy', u'rain'] [u'wild', u'woe', u'spark', u'resourc'] [u'wit', u'suggest', u'saudi', u'deal', u'allow', u'gunmen', u'escap'] [u'wit', u'fatal', u'shoot', u'urg', u'come', u'forward'] [u'wollongong', u'council', u'reject', u'lagoon', u'damag', u'claim'] [u'woman', u'steal', u'work'] [u'women', u'intimid', u'chamber'] [u'worri', u'air', u'shire', u'associ'] [u'accc', u'investig', u'termit', u'barrier', u'complaint'] [u'alic', u'intens', u'care', u'unit', u'crisi'] [u'american', u'footbal', u'star', u'kill', u'friend'] [u'american', u'footbal', u'star', u'tillman', u'kill', u'friend'] [u'american', u'surviv', u'saudi', u'attack'] [u'ankl', u'injuri', u'hit', u'beckham', u'euro', u'prepar'] [u'hit', u'time', u'high'] [u'aussi', u'davi', u'miss', u'stage', u'ullrich', u'hold', u'second'] [u'aussi', u'girl', u'crown', u'miss', u'univers'] [u'australian', u'terror', u'case', u'delay', u'lebanon'] [u'australia', u'join', u'french', u'forc', u'joint', u'exercis'] [u'australia', u'play', u'test', u'india'] [u'babi', u'death', u'prompt', u'counsel', u'offer'] [u'babi', u'suffer', u'systemat', u'abus', u'court', u'tell'] [u'bairnsdal', u'myer', u'close', u'door'] [u'bank', u'plan'] [u'best', u'person', u'judg', u'appoint', u'opposit'] [u'goat', u'meat', u'export', u'plan', u'afoot', u'abattoir'] [u'blackout', u'adelaid'] [u'blair', u'hail', u'iraqi', u'cabinet'] [u'blaze', u'prove', u'cost', u'council'] [u'boy', u'charg', u'theft'] [u'brack', u'admit', u'wider', u'fitzgerald', u'investig'] [u'cabinet', u'consid', u'roadsid', u'drug', u'test'] [u'cahil', u'lead', u'fiji', u'rout'] [u'cahil', u'lead', u'socceroo', u'rout', u'fiji'] [u'caley', u'fail', u'scottish', u'premier', u'leagu'] [u'altern', u'way', u'water', u'crisi'] [u'govt', u'maintain', u'pine', u'plantat', u'control'] [u'call', u'investig', u'mainten', u'machin'] [u'call', u'pork', u'industri', u'stop', u'oppos', u'import'] [u'cane', u'farmer', u'fail', u'meet', u'sugar', u'packag', u'criteria'] [u'carey', u'tell', u'crow', u'critic'] [u'chamber', u'reject', u'plan', u'mine', u'chang'] [u'church', u'admit', u'failur', u'paedophil', u'scandal'] [u'church', u'group', u'requir', u'report', u'abus'] [u'coast', u'enjoy', u'rain', u'inland'] [u'coff', u'endur', u'bypass', u'reject'] [u'colleg', u'seek', u'help', u'stop', u'attack'] [u'communiti', u'welcom', u'roch', u'sentenc'] [u'compo', u'come', u'fish', u'closur', u'boswel'] [u'concern', u'air', u'mine', u'review', u'delay'] [u'conserv', u'group', u'hail', u'iceland', u'whale', u'decis'] [u'corangamit', u'shire', u'hous', u'price', u'rise'] [u'coria', u'henman', u'french', u'open', u'semi'] [u'council', u'applaud', u'develop'] [u'council', u'consid', u'voucher'] [u'council', u'like', u'hunter', u'tourism', u'plan'] [u'council', u'push', u'close', u'rail', u'relat'] [u'council', u'reject', u'sandon', u'claim'] [u'council', u'urg', u'desalin', u'trial'] [u'court', u'set', u'free', u'son', u'kill'] [u'creditor', u'meet', u'consid', u'gympi', u'gold', u'futur'] [u'daewoo', u'price', u'tip', u'fall', u'australian'] [u'darwin', u'receiv', u'record', u'break', u'rain'] [u'debat', u'continu', u'river', u'mouth', u'open'] [u'decis', u'immin', u'bakhtiyari'] [u'defenc', u'sum', u'murder', u'trial'] [u'demetriou', u'say', u'extra', u'camera', u'option'] [u'dfat', u'know', u'iraq', u'prison', u'claim'] [u'domest', u'violenc', u'survivor', u'speak'] [u'doubt', u'cast', u'pitjantjatjara'] [u'driver', u'warn', u'avoid', u'dirt', u'road', u'heavi', u'rain'] [u'time', u'break', u'hill'] [u'dutch', u'beat', u'faro', u'fail', u'impress'] [u'econom', u'growth', u'slow', u'rat', u'steadi'] [u'eden', u'wharf', u'log', u'china', u'export'] [u'elder', u'deni', u'have', u'proceed', u'drug', u'sale'] [u'email', u'reviv', u'call', u'probe', u'halliburton', u'cheney'] [u'emerg', u'communic', u'get', u'upgrad'] [u'eriksson', u'blame', u'fatigu', u'lacklustr', u'perform'] [u'exot', u'reptil', u'seiz', u'raid'] [u'falconio', u'hear', u'tell', u'home', u'handcuff'] [u'farina', u'ring', u'chang', u'fiji', u'clash'] [u'farm', u'group', u'seek', u'higher', u'milk', u'price'] [u'fitzgerald', u'appoint', u'critic'] [u'kill', u'hurt', u'baghdad', u'blast'] [u'franc', u'alert', u'anniversari'] [u'fund', u'flow', u'crop', u'research'] [u'gallant', u'bangladesh', u'earn', u'deserv', u'draw'] [u'gaudio', u'roll', u'hewitt', u'reach', u'french', u'open', u'semi'] [u'geraldton', u'fuel', u'price', u'reach', u'near', u'record'] [u'gippsland', u'footi', u'club', u'face', u'shake'] [u'gold', u'coast', u'unfaz', u'land', u'protect', u'plan'] [u'govt', u'dismiss', u'iraq', u'prison'] [u'govt', u'spend', u'iraq', u'grain', u'facil'] [u'govt', u'spend', u'promot', u'medicar'] [u'grain', u'grower', u'await', u'rainfal', u'outcom'] [u'grand', u'prix', u'doctor', u'clear', u'unprofession', u'conduct'] [u'grey', u'lead', u'young', u'waratah', u'scotland'] [u'gunmen', u'trick', u'deal', u'saudi', u'advis'] [u'hall', u'clear', u'strike'] [u'health', u'servic', u'see', u'stomach', u'troubl'] [u'hewitt', u'prepar', u'quarter', u'final'] [u'high', u'wind', u'forc', u'athen', u'roof', u'delay'] [u'hill', u'play', u'water', u'conserv', u'impact'] [u'hop', u'fade', u'miss', u'fisher'] [u'hotel', u'join', u'forc', u'address', u'violenc'] [u'hous', u'project', u'plan', u'gatton'] [u'howard', u'respons', u'mislead', u'iraq', u'advic', u'labor'] [u'hundr', u'cannabi', u'plant', u'seiz', u'raid'] [u'iemma', u'put', u'condit', u'hospit', u'visit'] [u'illeg', u'reptil', u'seiz', u'factori', u'raid'] [u'indigen', u'report', u'recommend', u'radic', u'overhaul'] [u'indonesia', u'expel', u'terror', u'expert'] [u'inmat', u'discov', u'prison', u'plan'] [u'inquest', u'hear', u'bushfir', u'respons', u'plan', u'prepar'] [u'rat', u'leav', u'unchang'] [u'invstig', u'recommend', u'hospit', u'staff'] [u'iraqi', u'unimpress', u'govern'] [u'irish', u'rooki', u'win', u'blue', u'berth'] [u'irrig', u'rais', u'doubt', u'merger', u'plan', u'support'] [u'isra', u'armi', u'launch', u'raid', u'gaza', u'camp'] [u'isra', u'troop', u'shoot', u'dead', u'palestinian', u'gunmen'] [u'japan', u'derail', u'england', u'euro', u'prepar'] [u'japanes', u'girl', u'admit', u'murder', u'intent'] [u'japanes', u'put', u'focus', u'parent'] [u'jordan', u'quest', u'save', u'dead'] [u'julia', u'robert', u'expect', u'twin'] [u'june', u'hop', u'award', u'help', u'case', u'independ'] [u'khazaal', u'know', u'asio'] [u'king', u'kahn', u'trafford', u'target', u'report'] [u'kiwi', u'wait', u'injur', u'pair'] [u'societi', u'unhappi', u'suspect', u'name', u'coroni'] [u'lawyer', u'say', u'year', u'charg', u'unfair'] [u'leak', u'report', u'genuin', u'polic', u'reveal'] [u'leichhardt', u'trace', u'explor', u'journey'] [u'doblo', u'creditor', u'meet'] [u'lib', u'labor', u'criticis', u'roch', u'sentenc'] [u'local', u'govt', u'group', u'see', u'eas', u'council', u'merger'] [u'lockyer', u'hop', u'return', u'shark', u'clash'] [u'long', u'wait', u'school', u'sale', u'end'] [u'critic', u'hurt', u'cotton', u'plant', u'accid'] [u'face', u'court', u'petrol', u'station', u'shoot'] [u'nail', u'remov', u'neck'] [u'court', u'gunfir'] [u'mayor', u'candid', u'question', u'vote', u'count'] [u'mechan', u'join', u'worker', u'shortag', u'list'] [u'meet', u'clarifi', u'rate', u'rise', u'plan'] [u'speed', u'limit', u'disput', u'head'] [u'minist', u'reveal', u'detail', u'pipelin'] [u'miss', u'file', u'worri', u'anti', u'corrupt', u'group'] [u'mitsui', u'invest', u'ethanol', u'plant'] [u'moor', u'anti', u'bush', u'film', u'debut'] [u'mourinho', u'name', u'chelsea', u'manag'] [u'mourinho', u'chelsea', u'ranieri', u'eye', u'valencia'] [u'contest', u'dali', u'elector'] [u'murder', u'accus', u'tell', u'court', u'rememb'] [u'murdoch', u'associ', u'expect', u'evid'] [u'murdoch', u'speak', u'get', u'bodi'] [u'nat', u'question', u'interst', u'contract'] [u'nepal', u'king', u'appoint', u'fire'] [u'newspap', u'adopt', u'compact', u'edit'] [u'fuel', u'price', u'respit', u'sight'] [u'norfolk', u'island', u'inquest', u'reveal', u'victim', u'injuri'] [u'norfolk', u'murder', u'inquest', u'conclus', u'expect'] [u'command', u'deni', u'critic', u'emerg'] [u'give', u'drug', u'treatment', u'jail', u'ahead'] [u'sign', u'read', u'scheme'] [u'teacher', u'consid', u'strike'] [u'nurs', u'claim', u'pressur', u'compromis', u'patient', u'care'] [u'polic', u'continu', u'search', u'miss', u'tourist'] [u'obeid', u'defend', u'time', u'lebanon'] [u'rat', u'help', u'australian', u'market', u'surg'] [u'oppn', u'air', u'forest', u'fear'] [u'panther', u'boss', u'hop', u'rabbitoh'] [u'parent', u'want', u'flexibl', u'budget', u'money'] [u'park', u'scrap', u'say', u'group'] [u'parri', u'earn', u'open', u'exempt'] [u'piston', u'laker', u'titl'] [u'plan', u'boral', u'upgrad', u'promis', u'job', u'boost'] [u'player', u'revolt', u'forc', u'langmack', u'sack'] [u'welcom', u'interim', u'iraqi', u'govern'] [u'cabinet', u'discuss', u'australian', u'polic', u'deal'] [u'polic', u'offic', u'want', u'bail', u'condit', u'chang'] [u'polic', u'search', u'vandal'] [u'polic', u'appeal', u'tortur', u'sentenc'] [u'polic', u'wont', u'toler', u'hoon'] [u'port', u'form', u'ship', u'berth', u'plan'] [u'post', u'mortem', u'cyclist'] [u'prais', u'extend', u'cray', u'season'] [u'egg', u'threaten', u'industri'] [u'raikkonen', u'encourag', u'mclaren'] [u'reibey', u'famili', u'speak', u'ental', u'hous'] [u'reserv', u'bank', u'predict', u'strong', u'global', u'growth'] [u'retail', u'pleas', u'consist', u'spend'] [u'richmond', u'request', u'second', u'opinion', u'financ'] [u'roch', u'lawyer', u'consid', u'terror', u'sentenc', u'appeal'] [u'rower', u'edward', u'set', u'sight', u'athen', u'gold'] [u'scientist', u'job', u'threat'] [u'scientist', u'press', u'allow', u'stem', u'cell', u'research'] [u'scientist', u'recognis', u'frog', u'discoveri'] [u'search', u'call', u'miss', u'walk'] [u'search', u'miss', u'postpon'] [u'second', u'charg', u'court', u'wit', u'kill'] [u'secur', u'boost', u'plan', u'airport'] [u'sewag', u'leak', u'prompt', u'construct', u'worker', u'protest'] [u'slower', u'econom', u'growth', u'tip'] [u'southcorp', u'vintag', u'increas'] [u'state', u'school', u'teacher', u'strike'] [u'studi', u'show', u'mental', u'ill', u'treat'] [u'studi', u'focus', u'water', u'suppli', u'woe'] [u'support', u'show', u'renmark', u'develop', u'plan'] [u'surg', u'price', u'push', u'market', u'higher'] [u'survey', u'show', u'injuri', u'declin'] [u'sydney', u'court', u'grant', u'terror', u'suspect', u'bail'] [u'sydney', u'charg', u'incit', u'terror'] [u'tamil', u'strike', u'journalist', u'slay'] [u'polic', u'face', u'sack', u'cheat', u'scandal'] [u'teacher', u'condemn', u'strike', u'action'] [u'temporari', u'dig', u'ambul'] [u'tender', u'seek', u'second', u'dysart', u'motel'] [u'thailand', u'liverpool', u'plan', u'track', u'offici'] [u'charg', u'petrol', u'station', u'murder'] [u'thorn', u'dump', u'black'] [u'treasur', u'warn', u'effect', u'high', u'price'] [u'trial', u'pest', u'plant', u'export'] [u'tribun', u'decid', u'council', u'rise'] [u'road', u'crash'] [u'saudi', u'arabia', u'open', u'tap'] [u'union', u'will', u'swap', u'better', u'super'] [u'rais', u'question', u'iran', u'nuclear', u'plan'] [u'take', u'haiti', u'peacekeep'] [u'doubl', u'iraq', u'afghanistan', u'misconduct', u'case', u'list'] [u'accus', u'plan', u'apart', u'block', u'attack'] [u'offer', u'resolut', u'iraq'] [u'valencia', u'benitez', u'swap', u'orang', u'red'] [u'vaughan', u'ponder', u'perman', u'order'] [u'vcat', u'clear', u'doctor', u'unprofession', u'conduct'] [u'victim', u'undecid', u'sue', u'cathol', u'church'] [u'victoria', u'push', u'super', u'inclus'] [u'wast', u'regist', u'propos', u'wide', u'busi'] [u'water', u'restrict', u'eurobodalla'] [u'want', u'stay', u'number', u'woodward'] [u'william', u'sister', u'send', u'pack', u'pari'] [u'wine', u'group', u'disgruntl', u'unclear', u'clean', u'skin'] [u'delay', u'sanction', u'rule'] [u'seek', u'ararat', u'energi', u'park'] [u'criticis', u'play', u'school', u'stori', u'time'] [u'aborigin', u'burial', u'tree', u'halt', u'cowra', u'develop'] [u'achiev', u'mabo', u'celebr'] [u'milan', u'humili', u'china'] [u'govt', u'target', u'bushfir', u'communic', u'failur'] [u'offici', u'reject', u'respons', u'critic'] [u'secur', u'emerg', u'servic', u'fund'] [u'adventur', u'target', u'complet', u'solo', u'desert', u'trek'] [u'agronomist', u'hope', u'rain', u'season'] [u'qaeda', u'claim', u'attack', u'militari', u'saudi'] [u'ambul', u'union', u'consid', u'industri', u'unrest'] [u'amnesti', u'seek', u'nation', u'domest', u'violenc', u'strategi'] [u'anderson', u'quit', u'warrior'] [u'anti', u'terror', u'bail', u'law', u'pass', u'parliament'] [u'archbishop', u'say', u'senior', u'church', u'figur'] [u'atsic', u'commission', u'welcom', u'senat', u'inquiri'] [u'aussi', u'wipe', u'surf', u'championship'] [u'australia', u'face', u'fight', u'maintain', u'iraq', u'wheat'] [u'australia', u'respons', u'iraq', u'prison', u'downer'] [u'babi', u'hospit', u'bleach', u'accid'] [u'bakhtiyari', u'children', u'remain', u'detent'] [u'bayer', u'pull', u'canola', u'trial'] [u'beatti', u'prais', u'mackay', u'china', u'export', u'deal'] [u'bewar', u'work', u'home', u'scam', u'asic', u'say'] [u'crowd', u'protest', u'toxic', u'wast', u'dump', u'plan'] [u'blaze', u'destroy', u'unit'] [u'blignaut', u'sign', u'tasmania'] [u'blue', u'coach', u'rule'] [u'bodi', u'spark', u'polic', u'help'] [u'booksel', u'hope', u'clinton', u'book', u'help', u'line'] [u'boro', u'swoop', u'viduka'] [u'britain', u'traffic', u'oper'] [u'british', u'research', u'warn', u'race', u'riot'] [u'burn', u'victim', u'save', u'revolutionari', u'treatment'] [u'chief', u'unhappi', u'driver', u'strike'] [u'bush', u'liken', u'terror', u'wwii'] [u'bush', u'hire', u'lawyer', u'probe', u'leak'] [u'busi', u'warn', u'rise', u'truck', u'transport', u'cost'] [u'byron', u'council', u'boost'] [u'boundari', u'chang', u'rethink'] [u'camel', u'trek', u'hump', u'bump', u'hamper', u'trip'] [u'cattl', u'drive', u'herd', u'tourist', u'birdsvill'] [u'challeng', u'lure', u'richardson', u'rabbitoh'] [u'chamber', u'upbeat', u'gold', u'coast', u'futur'] [u'ask', u'probe', u'decis', u'volker'] [u'coach', u'back', u'england', u'hous', u'pain', u'threshold'] [u'confer', u'tackl', u'urban', u'infrastructur', u'woe'] [u'coron', u'deliv', u'open', u'find', u'norfolk', u'murder'] [u'coron', u'urg', u'chang', u'accid', u'search', u'procedur'] [u'council', u'budget', u'includ', u'rate', u'rise'] [u'council', u'promis', u'reduc', u'budget', u'deficit'] [u'council', u'protest', u'health', u'merger', u'plan'] [u'council', u'want', u'nation', u'park', u'revenu'] [u'crawford', u'say', u'season'] [u'dairi', u'farmer', u'urg', u'opportun'] [u'date', u'privat', u'space', u'flight'] [u'deal', u'strike', u'valuer', u'disput'] [u'defenc', u'commiss', u'earli', u'warn', u'aircraft'] [u'defenc', u'dept', u'investig', u'prison', u'abus'] [u'democrat', u'lobbi', u'senat', u'reject'] [u'destroy', u'villag', u'build'] [u'domest', u'violenc', u'tackl', u'pacif'] [u'downer', u'visit', u'focus', u'program'] [u'appeal', u'terror', u'suspect', u'bail'] [u'congo', u'town', u'fall', u'renegad', u'troop'] [u'drink', u'driver', u'visit', u'die', u'brother'] [u'drop', u'charg', u'polit', u'influenc'] [u'drug', u'fulham'] [u'ecuador', u'send', u'colombia', u'qualifi', u'defeat'] [u'egyptian', u'turk', u'hold', u'hostag', u'iraq', u'footag'] [u'ental', u'hous', u'woe', u'continu'] [u'environment', u'concern', u'blame', u'popul', u'growth'] [u'expect', u'corrupt', u'revel'] [u'expert', u'predict', u'terrorist', u'dirti', u'bomb'] [u'falconio', u'murder', u'hear', u'adjourn', u'august'] [u'famili', u'want', u'mabo', u'public', u'holiday'] [u'farmer', u'welcom', u'west', u'rain'] [u'fewer', u'cattl', u'duf', u'report', u'lucindal'] [u'figur', u'point', u'declin', u'servic', u'sector'] [u'figur', u'predict', u'soft', u'land', u'hous', u'price'] [u'finetun', u'underway', u'lachlan'] [u'lighter', u'hold', u'respons'] [u'fish', u'kill', u'clean', u'prove', u'cost'] [u'worker', u'kill', u'afghanistan', u'ambush'] [u'fli', u'doctor', u'open', u'longreach', u'base'] [u'foursom', u'face', u'court', u'follow', u'drug', u'raid'] [u'freeman', u'proud', u'torchbear'] [u'fruit', u'grower', u'protest', u'appl', u'import'] [u'german', u'outmuscl', u'swiss', u'combat', u'euro', u'warm'] [u'gladston', u'port', u'get', u'boost'] [u'glaxosmithklin', u'sue', u'anti', u'depress'] [u'govt', u'accus', u'gag', u'road', u'safeti', u'taskforc'] [u'govt', u'ahead', u'schedul', u'drop', u'poison'] [u'govt', u'announc', u'child', u'care'] [u'govt', u'defend', u'propos', u'elector', u'roll', u'chang'] [u'govt', u'move', u'parol', u'period', u'convict'] [u'govt', u'unabl', u'iraq', u'detaine', u'agreement'] [u'green', u'endors', u'candid', u'wide'] [u'grey', u'nomad', u'outback', u'work', u'experi'] [u'grower', u'wine', u'grape', u'price', u'hard', u'swallow'] [u'growth', u'slowdown', u'hit', u'dollar'] [u'heathrow', u'flight', u'sever', u'disrupt'] [u'hewitt', u'switch', u'focus', u'grass'] [u'hick', u'habib', u'abus', u'aust', u'offici'] [u'high', u'hop', u'miner', u'explor', u'near', u'zeehan'] [u'hill', u'unabl', u'provid', u'iraq', u'prison', u'protocol'] [u'hobgood', u'near', u'perfect', u'surf', u'championship'] [u'hobgood', u'near', u'perfect', u'surf', u'championship'] [u'hospit', u'target', u'medic', u'overdos'] [u'howard', u'lobbi', u'schwarzenegg'] [u'huge', u'blast', u'rock', u'base', u'kirkuk', u'wit'] [u'improv', u'insur', u'cover', u'public', u'hospit'] [u'india', u'cricket', u'admit', u'tri', u'bribe', u'selector'] [u'indonesian', u'boat', u'master', u'jail', u'illeg', u'fish'] [u'indonesian', u'expuls', u'terror', u'expert', u'outrag'] [u'inquest', u'start', u'firefight', u'death'] [u'ireland', u'silenc', u'regga', u'boyz'] [u'jone', u'win', u'gold', u'mont', u'carlo', u'meet'] [u'korean', u'charg', u'heroin', u'drug', u'bust'] [u'labor', u'lodg', u'bias', u'complaint'] [u'larg', u'jump', u'outlet', u'sell', u'firework'] [u'live', u'export', u'cost', u'taxpay', u'activist'] [u'mackay', u'kill', u'hit', u'tree'] [u'macquari', u'unveil', u'plan', u'radio', u'station'] [u'malaysian', u'call', u'singl', u'asian', u'currenc'] [u'manag', u'appoint', u'bathurst', u'council'] [u'mango', u'grower', u'struggl', u'profit'] [u'market', u'weather', u'high', u'price'] [u'mayor', u'highlight', u'hide', u'amalgam', u'cost'] [u'mccartney', u'admit', u'take', u'heroin', u'cocain'] [u'mcevoy', u'seek', u'maiden', u'european', u'classic'] [u'mcmillan', u'injuri', u'latest', u'blow', u'black', u'cap'] [u'meet', u'discuss', u'kosciuszko', u'plan'] [u'meet', u'fli', u'doctor', u'concern'] [u'megawati', u'face', u'massiv', u'defeat', u'poll'] [u'michael', u'jackson', u'clear', u'child', u'abus'] [u'mine', u'delay', u'creat', u'amec', u'concern'] [u'minist', u'critic', u'bail', u'terror', u'suspect'] [u'miss', u'phone', u'home'] [u'mitsubishi', u'admit', u'cover', u'defect'] [u'time', u'gympi', u'gold', u'rescu'] [u'moroney', u'move', u'appeal', u'khazal', u'bail', u'decis'] [u'mortgag', u'struggl', u'repay', u'report'] [u'claim', u'autism', u'abus'] [u'tell', u'macquari', u'marsh', u'plight'] [u'murder', u'releas', u'prison'] [u'murdoch', u'proceed', u'ahead', u'schedul'] [u'nalbandian', u'oust', u'kuerten', u'hewitt', u'demolish'] [u'nasa', u'consid', u'shuttl', u'plan', u'hubbl'] [u'nation', u'strategi', u'need', u'aborigin', u'child'] [u'nat', u'seek', u'water', u'work', u'parti'] [u'drug', u'colon', u'cancer', u'surgeri', u'surviv', u'rate'] [u'law', u'stop', u'bail', u'terror', u'suspect'] [u'nixon', u'ban', u'alleg', u'drug', u'traffick', u'crown'] [u'place', u'zimbabw', u'team', u'south', u'africa'] [u'plan', u'euthanis', u'sick', u'polar', u'bear'] [u'approv', u'australia', u'drug', u'treatment', u'jail'] [u'obeid', u'absenc', u'spark', u'parliamentari', u'attend'] [u'obeid', u'defend', u'censur'] [u'obeid', u'surviv', u'censur', u'motion'] [u'drop'] [u'olymp', u'flame', u'leav', u'greec', u'bind', u'sydney'] [u'olymp', u'torch', u'touch', u'sydney'] [u'opec', u'agre', u'increas', u'output'] [u'opec', u'expect', u'increas', u'product'] [u'open', u'find', u'expect', u'norfolk', u'murder', u'inquest'] [u'oppn', u'call', u'child', u'support', u'fund'] [u'opposit', u'accus', u'smear', u'defenc', u'forc'] [u'pacif', u'island', u'urg', u'australia', u'greenhous'] [u'parliament', u'hear', u'wagga', u'surgeri', u'woe'] [u'plan', u'target', u'indigen', u'domest', u'violenc'] [u'player', u'assoc', u'time', u'agre'] [u'bush', u'break', u'breakfast'] [u'meet', u'bush', u'abus', u'alleg'] [u'unconvinc', u'iraq', u'troop', u'withdraw', u'deadlin'] [u'disput', u'legal', u'immun', u'australian', u'worker'] [u'polic', u'investig', u'racist', u'graffiti'] [u'polic', u'charg', u'strike', u'forc', u'swoop'] [u'polic', u'raid', u'uncov', u'illeg', u'firearm'] [u'polic', u'probe', u'attempt', u'abduct'] [u'polic', u'tell', u'driver', u'repons'] [u'portug', u'scolari', u'mull', u'mourinho'] [u'potter', u'smash', u'british', u'offic', u'record'] [u'pressur', u'mount', u'inquiri', u'abus', u'claim'] [u'public', u'input', u'seek', u'rail', u'timet'] [u'push', u'rodeo', u'cours', u'region', u'school'] [u'qanta', u'urg', u'lower', u'kalgoorli', u'price'] [u'rain', u'boost', u'grain', u'crop', u'plant'] [u'ranieri', u'valencia'] [u'rebel', u'kill', u'algeria'] [u'resign', u'delay', u'elect', u'surgeri'] [u'rfds', u'stay', u'away', u'communiti', u'meet'] [u'ronaldo', u'penalti', u'trick', u'sink', u'argentina'] [u'ruddock', u'flag', u'nation', u'bail', u'law', u'terror'] [u'russia', u'sell', u'iraq', u'resolut'] [u'consid', u'sexual', u'abus', u'inquiri'] [u'samoa', u'look', u'disciplin', u'claim', u'scottish'] [u'scheme', u'tackl', u'wild', u'woe'] [u'scientist', u'prepar', u'harvest', u'truffl', u'crop'] [u'scot', u'lose', u'streak', u'countri'] [u'search', u'orthopaed', u'surgeon'] [u'share', u'market', u'dip', u'yesterday', u'high'] [u'shire', u'rule', u'worker', u'camp'] [u'south', u'korea', u'olymp', u'offici', u'jail'] [u'specul', u'rife', u'aldi', u'toowoomba', u'store'] [u'speed', u'player', u'jeopardis', u'pie', u'sponsorship'] [u'station', u'owner', u'face', u'attempt', u'murder', u'charg'] [u'strike', u'rail', u'worker', u'expect', u'track'] [u'studi', u'consid', u'indigen', u'settlement'] [u'summit', u'capit', u'citi', u'sustain', u'strategi'] [u'sydney', u'level', u'histor'] [u'govt', u'seek', u'recognit', u'macquari', u'wetland'] [u'tasmania', u'sign', u'zimbabw', u'rounder', u'blignaut'] [u'teacher', u'work', u'industri', u'unrest'] [u'terror', u'suspect', u'victim', u'polit', u'thuggeri'] [u'injur', u'timor', u'chopper', u'crash'] [u'time', u'run', u'rail', u'closur', u'submiss'] [u'triathlet', u'face', u'uphil', u'battl', u'olymp', u'medal'] [u'troop', u'timor', u'mission'] [u'turkey', u'fail', u'protect', u'women', u'report'] [u'career', u'beckham', u'alleg', u'lover', u'stall'] [u'surgic', u'gown', u'fetishist', u'ban', u'hospit'] [u'denounc', u'expuls', u'indonesian', u'analyst'] [u'militari', u'secur', u'extra', u'billion', u'iraq'] [u'move', u'tone', u'prison', u'abus', u'report'] [u'vail', u'outlin', u'case', u'wheat', u'grower', u'compo'] [u'vaughan', u'drop', u'number'] [u'vehicl', u'sale', u'high', u'despit', u'fuel', u'cost'] [u'ombudsman', u'grant', u'power', u'combat'] [u'parliament', u'pass', u'forest', u'unchang'] [u'polic', u'corrupt', u'report', u'tabl', u'parliament'] [u'politician', u'bust', u'booz'] [u'victorian', u'die', u'hospit'] [u'polic', u'anti', u'corrupt', u'power', u'fund'] [u'water', u'restrict', u'remain'] [u'woman', u'acquit', u'boyfriend', u'murder'] [u'woman', u'charg', u'govt', u'offic', u'blaze', u'get', u'bail'] [u'woman', u'get', u'harass', u'payout'] [u'wood', u'singh', u'head', u'star', u'stud', u'field', u'memori'] [u'wood', u'singh', u'head', u'star', u'stud', u'memori', u'field'] [u'zimbabw', u'cricket', u'futur', u'remain', u'unclear'] [u'power', u'station', u'includ', u'coal', u'plan'] [u'aborigin', u'kid', u'closur', u'ceremoni'] [u'hamza', u'face', u'extradit', u'hear'] [u'govt', u'criticis', u'resettl', u'report'] [u'govt', u'urg', u'follow', u'bail', u'chang'] [u'aerial', u'survey', u'highlight', u'illeg', u'land', u'clear'] [u'agreement', u'close', u'program'] [u'ail', u'alaska', u'killer', u'whale', u'protect'] [u'airport', u'master', u'plan', u'promis', u'job', u'aplenti'] [u'akhtar', u'miss', u'asia', u'pakistan', u'plan'] [u'alga', u'increas', u'heat', u'toler', u'coral'] [u'white', u'thrash', u'tahiti'] [u'anger', u'govt', u'respons', u'energi', u'plant'] [u'angri', u'crowd', u'confront', u'minist', u'toxic', u'wast'] [u'kookaburra'] [u'anti', u'demo', u'congo', u'dead', u'capit'] [u'appeal', u'schedul', u'terror', u'suspect', u'grant', u'bail'] [u'archbishop', u'deni', u'approv', u'royal', u'wed'] [u'archbishop', u'deni', u'receiv', u'abus', u'warn'] [u'asia', u'pacif', u'trade', u'chief', u'push', u'agenda'] [u'atsic', u'council', u'chairman', u'welcom', u'inquiri'] [u'auction', u'sell', u'william', u'item'] [u'aussi', u'davi', u'second', u'tour', u'germani'] [u'australian', u'pullout', u'disastr', u'bush'] [u'australian', u'sailor', u'injur', u'solomon', u'mishap'] [u'australian', u'domin', u'mont', u'carlo', u'pool'] [u'member', u'happi', u'corridor', u'contract'] [u'babi', u'eager', u'enter', u'world'] [u'bakhtiari', u'children', u'live', u'mother'] [u'banana', u'disput', u'threaten', u'aust', u'dairi', u'export'] [u'beck', u'back', u'club', u'england', u'euro', u'triumph'] [u'bendigo', u'buddhist', u'templ', u'work', u'begin'] [u'bevan', u'play', u'tiger'] [u'fight', u'mine', u'royalti', u'impos', u'peru'] [u'blind', u'injur', u'robberi'] [u'brack', u'defend', u'oversea', u'trip', u'despit', u'corrupt'] [u'brereton', u'quit', u'polit'] [u'bronco', u'undecid', u'play', u'lockyer'] [u'build', u'approv', u'unexpect', u'rise'] [u'bush', u'accus', u'meddl', u'aust', u'polit'] [u'bush', u'arriv', u'itali'] [u'bush', u'begin', u'europ', u'trip', u'vatican', u'visit'] [u'campaign', u'aim', u'farm', u'death'] [u'capit', u'citi', u'hous', u'price', u'continu', u'rise'] [u'casa', u'step', u'airlin', u'inspect'] [u'central', u'tourism', u'leader', u'quit'] [u'cessna', u'crash', u'victim', u'lucki', u'aliv'] [u'chelsea', u'veron', u'join', u'inter', u'year', u'loan'] [u'china', u'boycott', u'talk', u'taiwan'] [u'china', u'alert', u'tiananmen', u'squar', u'anniversari'] [u'church', u'chariti', u'rider', u'bare', u'nude', u'cyclist'] [u'chief', u'tenet', u'quit'] [u'head', u'push', u'bush'] [u'claim', u'abus', u'disabl', u'investig'] [u'clinton', u'releas', u'memoir'] [u'coach', u'tip', u'harrop', u'olymp', u'glori'] [u'compani', u'charg', u'death', u'worker'] [u'councillor', u'quit', u'chair', u'committe'] [u'council', u'reject', u'ratepay', u'attack'] [u'council', u'urg', u'irrig', u'plan'] [u'council', u'offer', u'loan'] [u'crow', u'blue', u'physic'] [u'crunch', u'time', u'kiwi', u'soccer', u'dream'] [u'crunch', u'time', u'kiwi', u'world', u'dream'] [u'custom', u'seiz', u'huge', u'drug', u'shipment'] [u'cyclon', u'traci', u'name', u'heritag', u'icon'] [u'spillway', u'plan', u'realiti'] [u'decis', u'westralia', u'servic', u'prais'] [u'defenc', u'minist', u'discuss', u'arm', u'control', u'asia'] [u'deputi', u'coff', u'visit'] [u'develop', u'freez', u'anger', u'daintre', u'land'] [u'doblo', u'creditor', u'meet'] [u'doc', u'manag', u'urg', u'improv', u'secur'] [u'draft', u'budget', u'deliv', u'rate', u'rise'] [u'econom', u'growth', u'target', u'macfarlan', u'say'] [u'elder', u'coupl', u'convict', u'cannabi', u'charg'] [u'curti', u'memori', u'pace'] [u'timor', u'open', u'compromis'] [u'explos', u'victim', u'condit', u'improv'] [u'falconio', u'disappear', u'affect', u'tourism'] [u'farmer', u'warn', u'locust', u'outbreak'] [u'fear', u'program', u'damag', u'australia', u'tie'] [u'fear', u'violenc', u'french', u'polynesia', u'presidenti'] [u'fear', u'shearer', u'number', u'declin'] [u'firefight', u'inquest', u'expect', u'today'] [u'fisherman', u'say', u'shark', u'popul', u'risk'] [u'flood', u'threaten', u'disast', u'area', u'fiji'] [u'health', u'servic', u'chairman', u'slam', u'merger', u'plan'] [u'leader', u'green', u'stand', u'senat'] [u'injur', u'plane', u'crash'] [u'frawley', u'play', u'coach', u'specul'] [u'frawley', u'unworri', u'coach', u'specul'] [u'fuel', u'price', u'jump', u'bendigo'] [u'gastro', u'outbreak', u'caus', u'surgeri', u'disrupt'] [u'gladston', u'port', u'author', u'welcom', u'merger'] [u'govt', u'move', u'boost', u'rail', u'freight'] [u'govt', u'urg', u'children', u'detent', u'centr'] [u'group', u'upset', u'rfds', u'meet', u'snub'] [u'propos', u'solv', u'crime', u'crisi'] [u'gun', u'ammunit', u'seiz', u'polic', u'raid'] [u'hawk', u'look', u'break', u'drought', u'bomber'] [u'health', u'servic', u'reject', u'surgeri', u'cancel', u'claim'] [u'hickss', u'father', u'sceptic', u'investig'] [u'houdini', u'exhibit', u'rile', u'magician'] [u'industri', u'action', u'break', u'power', u'disput'] [u'inquest', u'consid', u'fatal', u'crash', u'rescu', u'mishap'] [u'intern', u'club', u'hamilton'] [u'iraq', u'demand', u'foreign', u'forc'] [u'japanes', u'exchang', u'scheme', u'get', u'fund', u'boost'] [u'japanes', u'minist', u'spark', u'kill', u'comment'] [u'jockey', u'want', u'clear', u'year', u'charg'] [u'juri', u'find', u'guilti', u'murder'] [u'kidman', u'need', u'pad', u'produc', u'role'] [u'knight', u'free', u'kennedi', u'transfer', u'talk'] [u'korea', u'agre', u'packag', u'releas', u'border', u'tension'] [u'labor', u'green', u'criticis', u'prison', u'abus', u'probe'] [u'land', u'clear', u'plan'] [u'land', u'right', u'report', u'rubbish', u'aborigin'] [u'launceston', u'coupl', u'look', u'forward', u'torch', u'relay'] [u'laywer', u'attempt', u'stop', u'leski', u'inquest'] [u'lion', u'welcom', u'suspend'] [u'literaci', u'numeraci', u'boost', u'plan', u'riverland'] [u'lyon', u'allow', u'play'] [u'magpi', u'confid', u'mood', u'ahead', u'eagl', u'clash'] [u'arrest', u'canberra', u'casino', u'stab'] [u'rescu', u'boat', u'sink', u'gold', u'coast'] [u'court', u'marijuana', u'haul'] [u'market', u'flat', u'investor', u'wait', u'data'] [u'massacr', u'anniversari', u'pass', u'incid'] [u'mayor', u'reject', u'travel', u'meet'] [u'mexico', u'seek', u'probe', u'offici', u'women', u'murder'] [u'monti', u'banish', u'bogey', u'stake', u'welsh', u'open', u'claim'] [u'moor', u'releas', u'trailer'] [u'mother', u'warn', u'hospit', u'staffer', u'whoop'] [u'moth', u'export', u'zealand', u'combat', u'weed'] [u'critic', u'polic', u'resourc'] [u'reliev', u'elect', u'fight', u'exist'] [u'press', u'ahead', u'sewerag', u'scheme'] [u'upbeat', u'goulburn', u'valley', u'child', u'care', u'place'] [u'want', u'feder', u'payment', u'releas'] [u'want', u'hospit', u'report', u'public'] [u'want', u'indigen', u'job', u'scheme', u'expand'] [u'murder', u'jail', u'indefinit'] [u'myskina', u'dementieva', u'russian', u'final'] [u'nation', u'park', u'camper', u'urg', u'book', u'onlin'] [u'nation', u'blast', u'region', u'public', u'stunt'] [u'nation', u'trust', u'get', u'interst', u'help', u'stay', u'afloat'] [u'airlin', u'darwin'] [u'virus', u'target', u'bank', u'account', u'credit', u'card'] [u'zealand', u'hold', u'firm', u'sagger', u'strike'] [u'threat', u'pose', u'instal', u'asbesto', u'inquiri', u'tell'] [u'baffl', u'smoke', u'implement'] [u'defend', u'speedi', u'anti', u'terror', u'law'] [u'introduc', u'mandatori', u'liquor', u'accord'] [u'lower', u'spook', u'wall', u'street'] [u'oliv', u'harvest', u'near'] [u'olymp', u'cauldron', u'alight', u'sydney'] [u'olymp', u'flame', u'arriv', u'sydney'] [u'olymp', u'torch', u'relay', u'begin', u'australian', u'journey'] [u'pair', u'arrest', u'chase'] [u'pakistan', u'test', u'fire', u'second', u'ballist', u'missil'] [u'panel', u'decid', u'coff', u'fluorid'] [u'pursu', u'burswood', u'takeov'] [u'peponi', u'pledg', u'peac', u'stand'] [u'pie', u'lead', u'eagl', u'excit', u'clash'] [u'harvey', u'warm', u'australian', u'date'] [u'encourag', u'repons'] [u'polic', u'raid', u'uncov', u'gun'] [u'polic', u'accid', u'victim'] [u'pope', u'appeal', u'return', u'iraq', u'sovereignti'] [u'power', u'look', u'forward', u'lion', u'match'] [u'premier', u'hop', u'confer', u'dispel', u'ethanol', u'myth'] [u'princess', u'diana', u'mother', u'die'] [u'public', u'nolan', u'galleri'] [u'give', u'grey', u'water', u'green', u'light'] [u'govt', u'dismiss', u'anti', u'gambl', u'campaign'] [u'allow', u'grey', u'water'] [u'queiroz', u'confirm', u'return', u'trafford'] [u'cross', u'apologis', u'taint', u'blood', u'transfus'] [u'mitchel', u'skipper', u'youngster'] [u'region', u'area', u'expect', u'benefit', u'cheaper'] [u'region', u'hous', u'price', u'climb'] [u'region', u'veggi', u'grower'] [u'rehab', u'clinic', u'build', u'golf', u'cours', u'maradona'] [u'report', u'urg', u'council', u'merger', u'talk'] [u'reserv', u'bank', u'predict', u'hous', u'cool', u'phase'] [u'resid', u'flee', u'fight', u'erupt', u'iraq', u'holi', u'citi'] [u'resid', u'council', u'rat', u'structur'] [u'resid', u'tell', u'inquest', u'fight', u'fire', u'unaid'] [u'resid', u'view', u'seek', u'improv', u'town', u'futur'] [u'rossi', u'look', u'home'] [u'emerg', u'author', u'phone'] [u'ruddock', u'question', u'phone', u'tap'] [u'rumsfeld', u'regret', u'tenet', u'resign'] [u'rumsfeld', u'review', u'guantanamo', u'interrog'] [u'rural', u'issu', u'affect', u'farmer', u'confid'] [u'russian', u'market', u'explos', u'kill'] [u'sadr', u'loyalist', u'start', u'najaf', u'withdraw'] [u'govt', u'urg', u'boost', u'hospit', u'fund'] [u'santini', u'tottenham', u'manag'] [u'public', u'nurs', u'accept', u'offer'] [u'speaker', u'govt'] [u'saudi', u'terror', u'fear', u'overst', u'analyst'] [u'school', u'princip', u'youth', u'worker', u'finalist', u'state'] [u'seagul', u'half', u'tell', u'leagu', u'career'] [u'secur', u'laps', u'chief', u'georg', u'tenet'] [u'shark', u'receiv', u'treatment', u'raaf', u'airlift'] [u'sharon', u'sack', u'minist', u'settlement', u'vote', u'near'] [u'socceroo', u'goali', u'join'] [u'sorri', u'rot', u'hirst'] [u'spell', u'contest', u'lose', u'word'] [u'stab', u'accident', u'say', u'prosecut'] [u'steal', u'crime'] [u'green', u'endors', u'miln', u'senat'] [u'polic', u'boss', u'target', u'unfit', u'offic'] [u'teen', u'jail', u'crossbow', u'shoot'] [u'tenet', u'tenaci'] [u'tenterfield', u'includ', u'growth', u'strategi'] [u'think', u'tank', u'deni', u'influenc', u'donat'] [u'tini', u'fossil', u'complex', u'life', u'evolv', u'earli'] [u'tonga', u'star', u'bulldog', u'rout', u'rooster'] [u'train', u'passeng', u'court', u'drug'] [u'tuqiri', u'announc', u'delay', u'week'] [u'tuqiri', u'code', u'swap', u'deadlin', u'approach'] [u'marin', u'imprison', u'abus', u'iraqi', u'inmat'] [u'troop', u'wound', u'sadr', u'citi', u'ambush'] [u'venezuela', u'chavez', u'face', u'recal', u'vote'] [u'victoria', u'polic', u'ask', u'formul', u'bulli', u'polici'] [u'introduc', u'medic', u'indemn', u'chang'] [u'water', u'author', u'merger', u'expect', u'secur'] [u'weed', u'control', u'measur', u'underway', u'cooloola', u'shire'] [u'what', u'quack'] [u'william', u'clear', u'zimbabw', u'scare'] [u'women', u'children', u'kill', u'iraqi', u'citi', u'kufa'] [u'woodward', u'lament', u'lack', u'prepar', u'black'] [u'young', u'children', u'leav', u'homeless', u'tourist', u'strip'] [u'suspect', u'taliban', u'kill', u'afghanistan', u'report'] [u'survivor', u'award', u'record', u'damag'] [u'adelaid', u'archbishop', u'stay'] [u'chang', u'england', u'eriksson', u'scrap', u'diamond'] [u'prais', u'brereton', u'contribut'] [u'anstey', u'miss', u'athen'] [u'anti', u'bush', u'protest', u'ban', u'pari'] [u'arrest', u'fatal', u'gang', u'fight'] [u'aussi', u'davi', u'win', u'tour', u'germani', u'fifth', u'stage'] [u'australia', u'home', u'plucki', u'vanuatu'] [u'australian', u'veteran', u'receiv', u'legion', u'honour'] [u'babi', u'steal', u'mother', u'womb'] [u'baghdad', u'attack', u'cast', u'shadow', u'najaf', u'truce'] [u'bangladesh', u'tail', u'wag', u'jamaica'] [u'barrett', u'lead', u'bunch', u'leaderboard', u'illinoi'] [u'bevan', u'expect', u'guid', u'tasmanian', u'youngster'] [u'biologist', u'win', u'premier', u'award', u'autism', u'research'] [u'blast', u'rip', u'russian', u'depot'] [u'blue', u'fight', u'crow'] [u'blue', u'steal', u'adelaid'] [u'bomber', u'cruis', u'hawk'] [u'bomber', u'slaughter', u'hawk', u'fieri', u'encount'] [u'brack', u'chase', u'invest', u'confer'] [u'brack', u'offer', u'support', u'embattl', u'polic', u'minist'] [u'brisban', u'lead', u'port'] [u'brumbi', u'fisher', u'coach'] [u'bush', u'aim', u'rapproch', u'pari', u'talk'] [u'bush', u'confid', u'iraq', u'resolut'] [u'bush', u'treat', u'australia', u'like', u'state', u'fraser'] [u'director', u'victim', u'albanian', u'jinx'] [u'contractor', u'kill', u'road', u'baghdad', u'airport'] [u'coria', u'set', u'argentin', u'final'] [u'cowboy', u'grab', u'import', u'road'] [u'dali', u'decid', u'skip', u'open', u'qualifi'] [u'darwin', u'project', u'target', u'greenhous', u'gas'] [u'stir', u'memori', u'forget', u'armi'] [u'veteran', u'return', u'normandi'] [u'death', u'soldier', u'push', u'toll'] [u'debus', u'welcom', u'whale', u'watch', u'season'] [u'downer', u'hail', u'packag'] [u'endeavour', u'staff', u'consid', u'escal', u'campaign'] [u'feder', u'author', u'bust', u'credit', u'card', u'racket'] [u'frawley', u'inject', u'pace', u'tiger', u'line'] [u'french', u'govern', u'move', u'wed'] [u'french', u'teen', u'mix', u'doubl', u'final'] [u'game', u'roof', u'final', u'slide', u'place'] [u'gaudio', u'gallop', u'french', u'open', u'final'] [u'gibernau', u'grab', u'provision', u'pole', u'itali'] [u'green', u'senat', u'put', u'focus', u'harradin'] [u'hawk', u'gain', u'respect', u'schwab'] [u'hill', u'pledg', u'australian', u'help', u'secur'] [u'hong', u'kong', u'host', u'tiananmen', u'anniversari', u'vigil'] [u'howard', u'award', u'liberti', u'medallion'] [u'howard', u'depart', u'defend', u'bush'] [u'howard', u'end', u'visit', u'iraq', u'commit'] [u'hundr', u'expect', u'william', u'auction'] [u'intel', u'job', u'data', u'lower', u'boost', u'stock'] [u'rate', u'stay', u'win', u'builder', u'approv'] [u'intern', u'databas', u'track', u'steal', u'lose'] [u'iraqi', u'call', u'insurg'] [u'iraqi', u'polic', u'captur', u'zarqawi', u'aid'] [u'iraqi', u'polic', u'patrol', u'najaf', u'truce', u'take', u'hold'] [u'itali', u'neri', u'porto', u'coach', u'report'] [u'khan', u'break', u'cours', u'record', u'wale', u'open'] [u'knight', u'lead', u'eel'] [u'korea', u'open', u'cross', u'border', u'road'] [u'labor', u'launch', u'water', u'polici'] [u'minut', u'give', u'point', u'eel'] [u'leader', u'gather', u'anniversari'] [u'lion', u'turn', u'power'] [u'lion', u'turn', u'power', u'gabba', u'clash'] [u'lockyer', u'return', u'give', u'boost'] [u'loom', u'hick', u'charg', u'surpris', u'father', u'say'] [u'macquari', u'clean', u'world', u'environ'] [u'major', u'isra', u'support', u'gaza', u'pullout'] [u'remand', u'child', u'rape', u'charg'] [u'man', u'condit', u'stabl', u'cessna', u'crash'] [u'unit', u'confirm', u'queiroz', u'return'] [u'medhurst', u'score', u'tbird', u'roll', u'phoenix'] [u'merri', u'rule', u'athen', u'game'] [u'mexico', u'nab', u'suspect', u'tijuana', u'drug', u'cartel', u'chief'] [u'worker', u'free', u'machineri'] [u'minist', u'defend', u'extradit'] [u'murali', u'confid', u'doosra', u'clear'] [u'murali', u'select', u'tour', u'doubt', u'linger'] [u'newli', u'arrest', u'wife', u'beat', u'probe'] [u'research', u'station', u'concern', u'agforc'] [u'renew', u'meningococc', u'warn'] [u'studi', u'region', u'alcohol', u'problem'] [u'finalis', u'local', u'council', u'elect', u'result'] [u'charg', u'second', u'test', u'fleme'] [u'price', u'slide', u'tension', u'eas'] [u'olymp', u'torch', u'arriv'] [u'olymp', u'torch', u'leav', u'australia'] [u'peel', u'deviat', u'construct', u'worri'] [u'perth', u'casino', u'stoush', u'heat'] [u'philippin', u'stand', u'firm', u'face', u'terror', u'threat'] [u'pilot', u'hospitalis', u'plane', u'crash'] [u'pilot', u'recov', u'hospit'] [u'packag', u'progress', u'downer'] [u'polic', u'continu', u'hunt', u'road', u'rage', u'incid'] [u'polic', u'investig', u'teen', u'murder'] [u'polic', u'workcov', u'investig', u'airport', u'accid'] [u'portico', u'call', u'council', u'resign'] [u'sign', u'histor', u'land', u'agreement'] [u'queensland', u'host', u'ethanol', u'road'] [u'rampant', u'roo', u'outclass', u'tiger'] [u'william', u'saddl', u'secur', u'dollar'] [u'rocca', u'injur', u'magpi'] [u'rooney', u'shrug', u'pressur'] [u'rise', u'spurn', u'outright', u'lead', u'memori'] [u'row', u'team', u'australia', u'largest'] [u'rumsfeld', u'promis', u'speedi', u'prison', u'review'] [u'rumsfeld', u'tell', u'asia', u'expect', u'terror', u'strike'] [u'scotland', u'thrash', u'samoa'] [u'secur', u'tight', u'franc', u'ceremoni'] [u'shiit', u'elder', u'broker', u'fragil', u'ceasefir', u'iraq'] [u'singapor', u'warn', u'ship', u'attack', u'plan'] [u'stanhop', u'concern', u'hyster', u'terror'] [u'steal', u'children', u'return', u'heal', u'ceremoni'] [u'storm', u'hold', u'tame', u'tiger'] [u'taliban', u'tell', u'osama', u'report'] [u'accus', u'race', u'hijack'] [u'post', u'pulp', u'guidelin', u'internet'] [u'tiger', u'ahead', u'roo'] [u'union', u'consult', u'mine', u'death', u'inquiri'] [u'report', u'highlight', u'risk', u'marin', u'life'] [u'say', u'forc', u'violat', u'iraqi', u'right'] [u'britain', u'offer', u'iraq', u'resolut'] [u'navi', u'plan', u'forc', u'rich', u'west'] [u'hick', u'habib', u'charg'] [u'walter', u'fart', u'film', u'debut'] [u'disast', u'respons', u'readi'] [u'zimbabw', u'rebel', u'abandon', u'struggl'] [u'investig', u'superannu', u'fraud'] [u'alic', u'student', u'snatch', u'nation', u'film', u'award'] [u'apec', u'minist', u'hope', u'restart', u'trade', u'talk'] [u'arson', u'suspect', u'perth', u'church'] [u'aust', u'sign', u'biotechnolog', u'allianc'] [u'australian', u'leader', u'tribut', u'reagan'] [u'australian', u'honour', u'heroic'] [u'bangladesh', u'conced', u'advantag', u'lara', u'sarwan'] [u'barghouti', u'hand', u'life', u'term'] [u'beatti', u'back', u'biotech', u'allianc'] [u'beatti', u'defend', u'gatton', u'research', u'station'] [u'beckham', u'face', u'franc', u'eriksson'] [u'belgian', u'pari', u'doubl', u'crown', u'debut'] [u'blunder', u'help', u'ecuador', u'world', u'qualifi'] [u'book', u'program', u'focus', u'communiti', u'life'] [u'bronco', u'lead', u'shark', u'half', u'time'] [u'burma', u'criticis', u'fail', u'stop', u'forc', u'labour'] [u'bush', u'chirac', u'discuss', u'iraq', u'ahead'] [u'bush', u'rememb', u'reagan', u'ceremoni'] [u'businessman', u'bulldoz', u'level', u'colorado', u'build'] [u'casey', u'take', u'shoot', u'lead', u'wale'] [u'cat', u'bite', u'dog'] [u'cipollini', u'ride', u'tour', u'franc'] [u'unimpress', u'petrol', u'sniff', u'plan'] [u'competit', u'watchdog', u'disagr'] [u'croatia', u'edg', u'denmark', u'copenhagen'] [u'crowd', u'line', u'street', u'homag', u'reagan'] [u'veteran', u'tell', u'scale', u'invas'] [u'demon', u'strong', u'tire', u'docker'] [u'drought', u'take', u'tighter', u'grip'] [u'dutch', u'boo', u'irish', u'revers'] [u'grab', u'memori', u'lead', u'wood', u'lurk'] [u'fallujah', u'clash', u'threaten', u'truce'] [u'fittler', u'put', u'hand', u'origin', u'return'] [u'fittler', u'play', u'state', u'origin'] [u'forest', u'confid', u'gain', u'pulp', u'support'] [u'olymp', u'champion', u'joyner', u'return'] [u'franc', u'honour', u'aust', u'wwii', u'veteran'] [u'geelong', u'demolish', u'histor', u'chimney'] [u'germani', u'join', u'commemor'] [u'gibernau', u'bid', u'tripl', u'treat', u'clinch', u'pole'] [u'gorbachev', u'pay', u'respect', u'reagan'] [u'govt', u'reveal', u'transport', u'plan'] [u'govt', u'unveil', u'domest', u'violenc', u'campaign'] [u'group', u'prais', u'labor', u'plan'] [u'half', u'franc', u'feel', u'moral', u'debt'] [u'hick', u'trial', u'step', u'closer'] [u'howard', u'join', u'celebr'] [u'inspir', u'sweden', u'outclass', u'poland'] [u'interim', u'rebuild', u'iraq', u'militari'] [u'iraq', u'bomb', u'kill', u'injur'] [u'iraq', u'domin', u'howard', u'blair', u'meet'] [u'jennif', u'lopez', u'wed', u'marc', u'anthoni', u'report'] [u'kookaburra', u'easi', u'victor', u'great', u'britain'] [u'kookaburra', u'strong', u'great', u'britain'] [u'labor', u'brush', u'bush', u'critic'] [u'labor', u'pressur', u'releas', u'plan'] [u'latham', u'back', u'garrett', u'possibl', u'labor'] [u'lawyer', u'warn', u'film', u'maker', u'ignor', u'indigen'] [u'leader', u'salut', u'memori', u'fighter'] [u'lebanon', u'trip', u'interview', u'terror', u'suspect', u'stall'] [u'mainland', u'protest', u'oppos', u'woodchip'] [u'malaysia', u'reject', u'troop', u'asia'] [u'mancebo', u'win', u'tour', u'germani', u'sixth', u'stage'] [u'man', u'continu', u'upset'] [u'martian', u'rover', u'face', u'riski', u'crater', u'test'] [u'melbourn', u'protest', u'stage', u'log', u'demonstr'] [u'mourinho', u'lay', u'chelsea', u'star'] [u'myskina', u'claim', u'french', u'crown'] [u'promot', u'countri', u'prospect'] [u'regul', u'privat', u'eye'] [u'oriol', u'open', u'account'] [u'parachut', u'drop', u'begin', u'tribut', u'hero'] [u'parent', u'criticis', u'plan', u'teacher', u'strike'] [u'chastis', u'foolish', u'play', u'school', u'segment'] [u'polic', u'test', u'stab', u'death', u'clue'] [u'portug', u'eas', u'lithuania'] [u'prison', u'free', u'infam', u'ghraib', u'jail'] [u'public', u'hous', u'tenant', u'face', u'uncertain', u'futur'] [u'health', u'research', u'win', u'boost'] [u'rann', u'use', u'biotechnolog', u'confer', u'sell'] [u'reagan', u'help', u'save', u'world'] [u'reagan', u'japan', u'best', u'friend', u'nakason'] [u'rebel', u'general', u'announc', u'bukavu', u'withdraw'] [u'region', u'benefit', u'mobil', u'learn'] [u'audit', u'station', u'upgrad'] [u'roddick', u'agassi', u'relish', u'return', u'grass'] [u'ronald', u'reagan', u'errol', u'flynn', u'movi'] [u'rooney', u'lead', u'england', u'crush'] [u'russian', u'myskina', u'break', u'mould'] [u'safeti', u'bureau', u'interview', u'pilot', u'laguna', u'crash'] [u'eagl', u'fight', u'hard', u'premier'] [u'shark', u'hit', u'green', u'claim'] [u'smarti', u'jone', u'deni', u'tripl', u'crown'] [u'spain', u'stroll', u'andorra'] [u'specul', u'continu', u'elect', u'date'] [u'staff', u'shortag', u'jeopardis', u'public', u'opposit'] [u'steal', u'children', u'come', u'home', u'year'] [u'studi', u'show', u'gene', u'cancer', u'therapi', u'effect'] [u'studi', u'paint', u'portrait', u'stalk', u'impact'] [u'swan', u'saint', u'half', u'time'] [u'swan', u'prepar', u'risk', u'roo'] [u'swan', u'upset', u'saint', u'master', u'display'] [u'tahiti', u'score', u'vanuatu'] [u'tate', u'injur', u'shark', u'overrun', u'bronco'] [u'thatcher', u'pay', u'tribut', u'american', u'hero', u'reagan'] [u'make', u'claim', u'church', u'scandal'] [u'thousand', u'protest', u'gaza', u'withdraw'] [u'timelin', u'reagan', u'year'] [u'trescothick', u'boost', u'england'] [u'rescu', u'fish', u'boat', u'sink'] [u'iraq', u'resolut'] [u'declar', u'sadr', u'defeat'] [u'veteran', u'join', u'princ', u'charl', u'pegasus', u'bridg'] [u'veteran', u'retrac', u'rout', u'normandi'] [u'govt', u'boost', u'fund', u'asylum', u'seeker'] [u'share', u'road', u'fund'] [u'warrior', u'coach', u'dream', u'start'] [u'watch', u'venuss', u'travel', u'onlin', u'doctor', u'warn'] [u'webb', u'top', u'leaderboard', u'illinoi'] [u'world', u'farewel', u'cold', u'warrior', u'reagan'] [u'abus', u'alleg', u'prompt', u'call', u'disabl'] [u'accc', u'move', u'stop', u'adelaid', u'brighton', u'takeov'] [u'extend', u'good', u'gestur', u'timores'] [u'highway', u'overhaul', u'auslink', u'plan'] [u'aldoga', u'site', u'work', u'start', u'month'] [u'allianc', u'stand', u'creation', u'plan'] [u'alli', u'didnt', u'vain', u'schroeder'] [u'ord', u'close', u'record', u'high'] [u'ord', u'hit', u'high'] [u'member', u'block', u'garrett'] [u'place', u'garrett', u'say', u'green', u'leader'] [u'ambul', u'industri', u'unrest', u'remain'] [u'angelucci', u'earn', u'venezuela', u'point', u'peru'] [u'argentina', u'goalless', u'draw', u'paraguay'] [u'arson', u'suspect', u'heritag', u'list', u'build'] [u'astronom', u'prepar', u'rare', u'transit', u'venus'] [u'aust', u'host', u'militari', u'train'] [u'aust', u'push', u'expand', u'marin', u'protect'] [u'australia', u'alli', u'revamp', u'defenc', u'pact'] [u'australia', u'solomon', u'world', u'chanc'] [u'bashir', u'take', u'polic', u'court', u'arrest'] [u'bear', u'draw', u'young', u'gun'] [u'blackout', u'leav', u'king', u'dark'] [u'blaze', u'caus', u'trawler', u'damag'] [u'blaze', u'damag', u'mall', u'shop'] [u'take', u'best', u'actor', u'toni'] [u'brazil', u'ethanol', u'deal', u'lose', u'feder', u'govt'] [u'bundaberg', u'port', u'secur', u'plan', u'track'] [u'burma', u'free', u'member', u'kyi', u'parti'] [u'inland', u'road', u'forget'] [u'campes', u'back', u'minnow', u'host', u'world'] [u'capsicum', u'spray', u'scare', u'prompt', u'casino', u'evacu'] [u'crash', u'victim', u'search', u'frustrat', u'rescu', u'crew'] [u'dump', u'river', u'theft'] [u'cattl', u'properti', u'giant', u'natur', u'refug'] [u'coach', u'connolli', u'destabilis', u'docker'] [u'cold', u'weather', u'come', u'gippsland'] [u'council', u'form', u'safeti', u'committe'] [u'council', u'encourag', u'grey', u'water'] [u'council', u'upbeat', u'energi', u'park', u'fund'] [u'court', u'hear', u'fraudul', u'scheme', u'involv', u'insid'] [u'court', u'hear', u'secur', u'guard', u'casino'] [u'critic', u'injur', u'remain', u'unidentifi'] [u'crocker', u'doubt', u'origin'] [u'crow', u'back', u'ayr'] [u'damag', u'train', u'undergo', u'repair'] [u'demand', u'grow', u'central', u'aust'] [u'diseas', u'drug', u'microscop', u'medic'] [u'dissid', u'general', u'leav', u'east', u'congo', u'town'] [u'doc', u'act', u'child', u'abus', u'report', u'survey'] [u'doctor', u'trial', u'diabet', u'vaccin'] [u'doubt', u'rais', u'liquor', u'accord'] [u'dozen', u'wound', u'papuan', u'tribal', u'battl'] [u'drink', u'water', u'normal', u'mayor'] [u'drought', u'slow', u'fish', u'hatcheri', u'plan'] [u'dump', u'protest', u'claim', u'solid', u'messag', u'govt'] [u'earli', u'season', u'loom'] [u'east', u'timor', u'accus', u'take', u'compani', u'bribe'] [u'ecstasi', u'seiz', u'special', u'mark', u'bag'] [u'captur', u'memori', u'crown'] [u'embattl', u'broadcast', u'watchdog', u'chief', u'resign'] [u'timor', u'welcom', u'revenu', u'plan'] [u'explos', u'mosqu', u'iraqi', u'holi', u'citi'] [u'farm', u'group', u'welcom', u'rainwat', u'plan', u'backdown'] [u'feder', u'fund', u'tackl', u'rural', u'declin'] [u'feder', u'govt', u'urg', u'boost', u'bruce', u'highway'] [u'feldspar', u'custom'] [u'festiv', u'celebr', u'rock', u'roll'] [u'film', u'organis', u'fund', u'boost'] [u'charg', u'lay', u'bomber', u'hawk', u'brawl'] [u'fittler', u'origin', u'return'] [u'fittler', u'make', u'origin', u'return', u'blue'] [u'fittler', u'readi', u'chang', u'past'] [u'footi', u'player', u'form', u'outback'] [u'govt', u'advis', u'head', u'sunday', u'paper'] [u'hotel', u'hous', u'communiti', u'technolog', u'centr'] [u'labor', u'offici', u'accus', u'child'] [u'forum', u'focus', u'address', u'antisoci', u'antic'] [u'fund', u'boost', u'biotechnolog', u'ventur'] [u'fund', u'busi', u'centr'] [u'garrett', u'preselect', u'break', u'parti', u'rule'] [u'gastroenter', u'forc', u'matern', u'ward', u'closur'] [u'gaza', u'withdraw', u'plan', u'threaten', u'right', u'parti'] [u'geal', u'turn', u'miss', u'athen'] [u'germani', u'stun', u'hungari', u'dutch', u'slump', u'ireland'] [u'gibbon', u'unhappi', u'calder', u'fund', u'pledg'] [u'glove', u'church', u'test'] [u'govt', u'pump', u'road', u'rail'] [u'govt', u'releas', u'bypass', u'fund', u'detail'] [u'grey', u'water', u'plan', u'widespread', u'support'] [u'heaven', u'help', u'pacif', u'rugbi', u'play', u'bad', u'coach'] [u'hero', u'gaudio', u'clinch', u'french', u'titl'] [u'hill', u'prove', u'point', u'south'] [u'hodg', u'ax', u'maroon', u'squad'] [u'humbl', u'breaker', u'trounc', u'north'] [u'ilfracomb', u'motel', u'work', u'start', u'soon'] [u'industri', u'unrest', u'wont', u'stop', u'doorknock', u'appeal'] [u'investig', u'begin', u'shop'] [u'iraqi', u'govern', u'strike', u'deal', u'disband', u'militia'] [u'irrig', u'face', u'water', u'alloc'] [u'laneway', u'acdc'] [u'jobless', u'work', u'disabl', u'facil'] [u'johnson', u'confid', u'run', u'athen'] [u'jone', u'lenton', u'franc'] [u'khan', u'win', u'wale', u'open', u'maiden', u'tour'] [u'killer', u'want', u'sentenc', u'reduc'] [u'kiwi', u'collaps', u'leav', u'england'] [u'kookaburra', u'pakistan'] [u'latham', u'join', u'play', u'school', u'critic'] [u'leess', u'compens', u'time'] [u'liber', u'parti', u'releas', u'nativ', u'grass', u'industri', u'plan'] [u'lifelin', u'launch', u'domest', u'violenc', u'hotlin'] [u'live', u'murray', u'studi', u'help', u'flow', u'delay'] [u'lose', u'boy'] [u'mahathir', u'criticis', u'iraq', u'conflict'] [u'bash', u'home', u'theft'] [u'charg', u'casino', u'stab', u'hold', u'custodi'] [u'shoot', u'drug', u'sting'] [u'get', u'suspend', u'sentenc', u'shoot', u'intrud'] [u'mayo', u'win', u'dauphin', u'liber', u'prologu', u'roger', u'fifth'] [u'media', u'escap', u'contempt', u'charg', u'falconio', u'case'] [u'melbourn', u'team', u'trial', u'melanoma', u'vaccin'] [u'millionair', u'sue', u'current', u'affair', u'stori'] [u'minist', u'angri', u'inquiri', u'critic'] [u'miss', u'teen', u'safe'] [u'mix', u'result', u'kennedi', u'asic', u'court', u'action'] [u'hack', u'toddler', u'father', u'death'] [u'charg', u'expect', u'brawl'] [u'claim', u'abus', u'anglican', u'youth', u'worker'] [u'award', u'light', u'heart', u'look', u'hollywood'] [u'murali', u'threaten', u'suit', u'degrad', u'chuck'] [u'museum', u'hunt', u'piec', u'tasmania', u'histori'] [u'navi', u'ship', u'join', u'pacif', u'exercis'] [u'public', u'hospit', u'bed', u'hing', u'staff'] [u'newspap', u'fall', u'second', u'month'] [u'bid', u'custom', u'hous'] [u'north', u'west', u'road', u'target', u'fund'] [u'specialist', u'seek', u'increas'] [u'spell', u'super', u'centr', u'plan'] [u'highway', u'auslink', u'overhaul'] [u'urg', u'generous', u'offer', u'field'] [u'coach', u'take', u'blame', u'shock', u'world', u'exit'] [u'onesteel', u'begin', u'blast', u'furnac', u'work'] [u'outback', u'cattl', u'drive', u'intern', u'spotlight'] [u'outsid', u'gaudio', u'clinch', u'french', u'open'] [u'palestinian', u'milit', u'retali'] [u'parent', u'talk', u'teacher', u'staff'] [u'parent', u'urg', u'look', u'meningococc', u'sign'] [u'pentagon', u'find', u'bush', u'bind', u'tortur', u'law'] [u'petroleum', u'confer', u'focus', u'timor'] [u'phone', u'servic', u'hundr', u'home'] [u'piston', u'stun', u'laker', u'final'] [u'planet', u'push', u'phase', u'growth'] [u'pay', u'tribut', u'heroic'] [u'polic', u'oper', u'target', u'trucki'] [u'polic', u'search', u'miss', u'boy', u'outback'] [u'polic', u'seek', u'inform', u'gambl', u'scam'] [u'polic', u'union', u'welcom', u'tougher', u'screen'] [u'princ', u'highway', u'fund', u'disgrac'] [u'probe', u'continu', u'whitsunday', u'plane', u'crash'] [u'queensland', u'year', u'honour', u'achiev'] [u'racq', u'disappoint', u'road', u'fund'] [u'redfern', u'inquiri', u'hear', u'child', u'abus', u'ignor'] [u'report', u'superbug', u'doubt'] [u'resid', u'evacu', u'volcano', u'erupt'] [u'resort', u'look', u'heaven', u'snowfal'] [u'rossi', u'hail', u'greatest', u'rain', u'home', u'grand'] [u'urg', u'adopt', u'council', u'highway', u'option'] [u'rural', u'health', u'spotlight'] [u'santini', u'prais', u'french', u'resolv'] [u'sarwan', u'hit', u'career', u'best'] [u'saudi', u'milit', u'kill', u'british', u'cameraman'] [u'sharon', u'compromis', u'gaza', u'pullout'] [u'sharon', u'face', u'moment', u'truth', u'gaza', u'plan'] [u'spenc', u'overturn', u'southport', u'station', u'decis'] [u'spray', u'target', u'beach', u'bush'] [u'state', u'target', u'campaign', u'safer', u'window'] [u'steal', u'generat', u'case'] [u'sturt', u'highway', u'improv', u'auslink', u'plan'] [u'superbrat', u'inspir', u'french', u'open', u'titl', u'miracl', u'say'] [u'super', u'safe', u'fund', u'chief', u'vow'] [u'survey', u'highlight', u'poor', u'wetland', u'health'] [u'tafe', u'union', u'disput', u'deepen'] [u'talk', u'consid', u'indigen', u'issu', u'post', u'atsic'] [u'tasmanian', u'tradespeopl', u'urg', u'come', u'home'] [u'receiv', u'road', u'fund'] [u'tourism', u'group', u'unhappi', u'fund'] [u'town', u'shift', u'tonn'] [u'children', u'hous'] [u'union', u'question', u'probe'] [u'peacekeep', u'kill', u'congo', u'ambush'] [u'secur', u'council', u'debat', u'revis', u'iraq', u'resolut'] [u'britain', u'offer', u'iraq', u'draft'] [u'label', u'isra', u'pullout', u'vote', u'courag'] [u'plan', u'state', u'funer', u'reagan'] [u'plan', u'troop', u'south', u'korea'] [u'wiss', u'surviv', u'freez', u'gippsland', u'swim'] [u'polic', u'offic', u'bail', u'drug', u'charg'] [u'vintag', u'cabinet', u'document', u'surfac'] [u'water', u'restrict', u'review', u'seek'] [u'webb', u'captur', u'lpga', u'tour', u'victori'] [u'whale', u'return', u'water', u'warrnambool'] [u'wheelchair', u'bind', u'palestinian', u'kill'] [u'william', u'head', u'coff', u'confer'] [u'winter', u'grain', u'crop', u'outlook', u'look', u'bleak'] [u'woman', u'children', u'escap', u'hous'] [u'woman', u'clarifi', u'surgeri', u'cancel', u'claim'] [u'woman', u'die', u'perth', u'crash'] [u'woman', u'court', u'babi', u'death'] [u'woman', u'kill', u'injur', u'collis'] [u'world', u'pay', u'tribut', u'hero'] [u'young', u'boomer', u'retain', u'reduc', u'squad'] [u'charg', u'weekend', u'brawl'] [u'govt', u'secur', u'public', u'servant', u'deal'] [u'trial', u'send', u'timet', u'mobil'] [u'charg', u'brawl'] [u'rank', u'file', u'condemn', u'garrett', u'plan'] [u'ambul', u'worker', u'strike', u'rise'] [u'anderson', u'hit', u'critic', u'road', u'plan'] [u'anthoni', u'champion', u'northern', u'rail', u'link'] [u'architect', u'compos', u'winner', u'prestigi'] [u'arson', u'fear', u'south', u'coast'] [u'hit', u'high'] [u'august', u'start', u'tip', u'darwin', u'diesel', u'plant'] [u'auslink', u'road', u'fund', u'alloc'] [u'australia', u'murder', u'rate', u'declin'] [u'awar', u'complaint', u'rise', u'brough'] [u'bakhtiyari', u'children', u'reunit', u'mother'] [u'bank', u'robber', u'return', u'crime', u'scene', u'repay', u'cash'] [u'basebal'] [u'chief', u'upset', u'fund'] [u'blue', u'ribbon', u'meat', u'disput', u'move', u'court'] [u'boral', u'proceed', u'adelaid', u'brighton'] [u'save', u'get', u'surgeri', u'tip', u'phone'] [u'breakthrough', u'terror', u'fight'] [u'budget', u'transfer', u'duti'] [u'build', u'shutdown', u'suspicion', u'asbesto'] [u'bush', u'interfer', u'say'] [u'bypass', u'option', u'consid', u'gympi'] [u'calder', u'duplic', u'longer'] [u'cane', u'ethanol', u'viabl', u'say', u'compani'] [u'canoer', u'award', u'help', u'rival'] [u'catchment', u'author', u'air', u'wast', u'plan', u'fear'] [u'cattl', u'drive', u'beef', u'oversea'] [u'cattl', u'polio', u'fear', u'threaten', u'industri'] [u'catt', u'return', u'england', u'line'] [u'caution', u'urg', u'weekend', u'bonfir'] [u'chelsea', u'agre', u'settlement', u'ranieri'] [u'citi', u'sleep', u'want', u'rest'] [u'coag', u'close', u'agreement', u'nation', u'water'] [u'communiti', u'urg', u'help', u'combat', u'indigen', u'abus'] [u'contractor', u'plead', u'guilti', u'mine', u'accid'] [u'council', u'consid', u'botan', u'garden', u'fenc'] [u'council', u'consid', u'rspca'] [u'council', u'look', u'rate', u'rise'] [u'council', u'plan', u'busi', u'rat', u'rise'] [u'council', u'consid', u'altern', u'disput', u'resolut'] [u'council', u'decid', u'fruit', u'fumig', u'plan'] [u'council', u'launch', u'growth', u'strategi'] [u'coupl', u'face', u'sentenc', u'arm', u'robberi'] [u'court', u'hear', u'woman', u'order', u'kill'] [u'crocker', u'rub', u'origin'] [u'cycl', u'termin', u'beat', u'ogradi', u'dauphin'] [u'date', u'yuko', u'tycoon', u'fraud', u'trial'] [u'deer', u'park', u'bypass', u'fund', u'label', u'inadequ'] [u'deputi', u'highway', u'fund'] [u'detent', u'centr', u'manag', u'compani', u'sell'] [u'doubt', u'authent', u'saudi', u'arabia', u'terror'] [u'drought', u'fear', u'grip', u'eyr', u'peninsula'] [u'earli', u'day', u'troop', u'withdraw', u'plan', u'south', u'korea', u'say'] [u'eastern', u'capit', u'council', u'readi', u'chang'] [u'elder', u'coupl', u'avoid', u'jail', u'cannabi'] [u'move', u'number'] [u'emerg', u'servic', u'fund', u'alloc', u'region'] [u'emerg', u'servic', u'practic', u'respons'] [u'emir', u'promulg', u'qatar', u'constitut'] [u'england', u'terri', u'fit', u'cloud'] [u'timor', u'pleas', u'boundari', u'comment'] [u'timor', u'urg', u'reconsid', u'timor', u'regim'] [u'farm', u'bit', u'life', u'technolog'] [u'farmer', u'urg', u'concern', u'derail', u'water'] [u'feder', u'road', u'scheme'] [u'govt', u'offer', u'negoti', u'calder', u'fund', u'time'] [u'fleme', u'say', u'harmison', u'england', u'success'] [u'flint', u'resign', u'surpris'] [u'forecast', u'tip', u'smaller', u'grain', u'harvest'] [u'aristocrat', u'boss', u'lose', u'damag'] [u'forum', u'focus', u'youth', u'rail', u'death'] [u'foster', u'review', u'write', u'wine', u'assest'] [u'fragil', u'north', u'korean', u'economi', u'grow'] [u'fund', u'busi', u'centr', u'close'] [u'fund', u'seek', u'surf', u'club', u'project'] [u'garrett', u'damag', u'relationship', u'downer'] [u'germani', u'spain', u'resolut', u'iraq'] [u'gerrard', u'scotland', u'test'] [u'attend', u'reagan', u'funer'] [u'gold', u'coast', u'communiti', u'forum'] [u'govt', u'admit', u'prison', u'plan', u'theft', u'embarrass'] [u'govt', u'provid', u'palestinian', u'refuge', u'camp'] [u'govt', u'releas', u'booklet', u'iraq', u'handov'] [u'great', u'northern', u'highway', u'receiv', u'fund'] [u'green', u'montgomeri', u'showdown'] [u'hall', u'berri', u'get', u'restrain', u'order', u'stalker'] [u'harri', u'potter', u'film', u'classif', u'downgrad'] [u'henman', u'glad', u'grass'] [u'henri', u'take', u'knife', u'black', u'pack'] [u'hezbollah', u'israel', u'exchang'] [u'high', u'hop', u'bypass', u'fund'] [u'hous', u'retail', u'slowdown', u'confid'] [u'hunter', u'health', u'idea'] [u'illawarra', u'identifi', u'polic', u'spot'] [u'immun', u'therapi', u'stop', u'diabet', u'mous', u'studi'] [u'industri', u'action', u'disrupt', u'ferri', u'servic'] [u'insur', u'industri', u'aim', u'lift', u'standard'] [u'iraq', u'weapon', u'dispos', u'accid', u'kill'] [u'order', u'strike', u'construct', u'worker'] [u'irrig', u'face', u'restrict'] [u'israel', u'attack', u'abandon', u'base', u'lebanon'] [u'italian', u'polic', u'arrest', u'madrid', u'bomb', u'mastermind'] [u'jockey', u'escap', u'fine', u'racist', u'comment'] [u'justic', u'dept', u'memo', u'offer', u'basi', u'tortur', u'report'] [u'kemp', u'reject', u'call', u'control', u'kakadu'] [u'kimberley', u'pilbara', u'nation', u'park', u'receiv'] [u'kimmorley', u'welcom', u'fittler', u'return'] [u'labor', u'slam', u'downer', u'prison', u'abus'] [u'labor', u'stalwart', u'attack', u'garrett', u'plan'] [u'lack', u'hous', u'vacanc', u'affect', u'albani', u'polic'] [u'lake', u'entranc', u'forum', u'expect', u'lure', u'fisher'] [u'latham', u'welcom', u'flint', u'resign'] [u'launceston', u'pollut', u'exceed', u'safe', u'level'] [u'lebanon', u'lodg', u'protest', u'isra', u'raid'] [u'level', u'water', u'restrict', u'possibl', u'coff'] [u'lloyd', u'say', u'excus', u'mele'] [u'local', u'govt', u'group', u'back', u'auslink', u'scheme'] [u'luca', u'claim', u'state', u'short', u'chang', u'auslink', u'fund'] [u'luca', u'reject', u'bypass', u'polit', u'claim'] [u'magnesium', u'intern', u'announc', u'site', u'tomorrow'] [u'bulli', u'girlfriend', u'million', u'dollar'] [u'charg', u'casino', u'secur', u'scare'] [u'die', u'injuri', u'flee', u'polic', u'raid'] [u'stand', u'trial', u'theft', u'million', u'bank'] [u'mayor', u'pleas', u'bridg', u'fund'] [u'mayor', u'upset', u'tamar', u'highway', u'miss', u'fund'] [u'mayor', u'welcom', u'bark', u'highway', u'fund'] [u'meet', u'discuss', u'bypass', u'flood', u'concern'] [u'meet', u'offer', u'littl', u'support', u'methadon', u'clinic'] [u'microsoft', u'appeal', u'anti', u'trust', u'sanction'] [u'militari', u'sexual', u'harass', u'complaint', u'doubl'] [u'industri', u'look', u'indigen', u'reconcili'] [u'owner', u'fin', u'worker', u'death'] [u'minist', u'investig', u'offend', u'prison'] [u'minist', u'promis', u'action', u'neglig'] [u'minist', u'talk', u'midwiv', u'plan'] [u'minist', u'tout', u'harbour', u'bridg', u'illawarra'] [u'miss', u'year', u'month'] [u'modifi', u'reef', u'pontoon', u'get', u'ahead'] [u'monk', u'beat', u'lankan', u'brawl'] [u'mooney', u'attack', u'feder', u'road', u'scheme'] [u'polic', u'need', u'redfern', u'inquiri', u'tell'] [u'rain', u'tip', u'perth'] [u'talk', u'manag', u'hous'] [u'mother', u'remain', u'hospit', u'hous'] [u'narrogin', u'town', u'hall', u'place', u'heritag', u'list'] [u'nation', u'studi', u'leukaemia', u'begin'] [u'inducte', u'hall', u'fame'] [u'potter', u'film', u'strong', u'teen', u'say'] [u'love', u'lose', u'red', u'send', u'valentin', u'south'] [u'chief', u'criticis', u'player', u'associ'] [u'tanker', u'block', u'princ', u'highway'] [u'parker', u'realis', u'boyhood', u'dream'] [u'partnership', u'hop', u'fight', u'poverti'] [u'perth', u'coupl', u'free', u'drug', u'convict'] [u'pilot', u'breach', u'safeti', u'law', u'say', u'casa'] [u'plan', u'aim', u'address', u'bowen', u'water', u'woe'] [u'plan', u'afoot', u'river', u'tourism', u'trail'] [u'polic', u'investig', u'caus', u'rutherglen'] [u'polic', u'investig', u'walkerston', u'fatal'] [u'polic', u'probe', u'hospit', u'drug', u'theft'] [u'polic', u'seek', u'help', u'identifi', u'injur'] [u'polit', u'blame', u'auslink', u'princ', u'highway'] [u'power', u'compani', u'seek', u'suppli'] [u'premier', u'concern', u'garrett', u'possibl'] [u'skin', u'cancer', u'vaccin', u'biotechnolog'] [u'rail', u'standardis', u'fund', u'start'] [u'random', u'test', u'uncov', u'drug', u'user'] [u'rare', u'hors', u'virus', u'queensland'] [u'redfern', u'probe', u'continu', u'oppn', u'say'] [u'chief', u'play', u'privatis', u'concern'] [u'richmond', u'water'] [u'rise', u'damp', u'prove', u'problem', u'asthma', u'suffer'] [u'road', u'crash', u'relat', u'urg', u'govt', u'nightmar'] [u'road', u'fund', u'announc', u'get', u'mix', u'recept'] [u'road', u'fund', u'expect', u'boost', u'hunter', u'job'] [u'road', u'scheme', u'benefit', u'england', u'highway'] [u'nomin', u'south', u'korean'] [u'consid', u'test', u'polic'] [u'teen', u'sign', u'portsmouth'] [u'scot', u'lose', u'test', u'warm'] [u'senat', u'report', u'recommend', u'legal', u'fund', u'review'] [u'seuseu', u'cop', u'seven', u'match'] [u'share', u'market', u'finish', u'flat'] [u'shire', u'presid', u'fear', u'marina', u'meet', u'witch', u'hunt'] [u'sing', u'name', u'second', u'origin'] [u'solomon', u'welcom', u'home', u'soccer', u'hero'] [u'solomon', u'welcom', u'soccer', u'hero'] [u'south', u'east', u'clinic', u'senat', u'hold', u'meet'] [u'south', u'hedland', u'communiti', u'care', u'centr', u'open'] [u'springbok', u'rooki', u'irish', u'favourit'] [u'stabl', u'price', u'drive', u'market', u'higher'] [u'stoner', u'attack', u'busi', u'centr', u'closur'] [u'stosur', u'second', u'round', u'wimbledon', u'warm'] [u'strawberri', u'grower', u'hold', u'meet'] [u'streak', u'call', u'zimbabw'] [u'suspect', u'offend', u'deport', u'thailand'] [u'tahu', u'wari', u'hagan', u'influenc'] [u'tampa', u'win', u'stanley'] [u'settler'] [u'taxpay', u'benefit', u'drug', u'court'] [u'teacher', u'rise', u'decis', u'immin'] [u'teacher', u'threaten', u'stop', u'work', u'meet'] [u'telstra', u'reject', u'loss', u'fear'] [u'dead', u'iraq', u'bomb', u'attack'] [u'thailand', u'crack', u'black', u'market', u'piranha', u'trade'] [u'thousand', u'flee', u'rumbl', u'indonesian', u'volcano'] [u'thunderbird', u'sparkl', u'phoenix', u'fumbl'] [u'world', u'leader', u'gather', u'summit', u'tight'] [u'town', u'tell', u'water', u'prove', u'cost'] [u'transport', u'group', u'critic', u'sturt', u'highway', u'fund'] [u'transport', u'group', u'lament', u'feder', u'fund'] [u'troubl', u'orang', u'lose', u'appeal'] [u'kill', u'second', u'indonesian', u'volcano', u'erupt'] [u'union', u'renew', u'call', u'polic', u'violenc', u'squad'] [u'secur', u'council', u'verg', u'iraq', u'deal'] [u'dope', u'agenc', u'expect', u'finish', u'probe', u'soon'] [u'troop', u'free', u'hostag'] [u'venus', u'event', u'spark', u'astronom'] [u'chief', u'commission', u'face', u'scapegoat', u'claim'] [u'govt', u'want', u'pakenham', u'bypass', u'fund', u'secur'] [u'prosecutor', u'drop', u'corrupt', u'case', u'sourc'] [u'govt', u'attack', u'opposit', u'deputi', u'allow'] [u'polic', u'hunt', u'killer'] [u'warrior', u'sign', u'cowboy', u'util'] [u'shoot'] [u'waterfront', u'home', u'threaten', u'export', u'inquiri', u'tell'] [u'watson', u'clear', u'play', u'bull'] [u'wolf', u'blass', u'wineri', u'creat', u'job', u'barossa'] [u'woman', u'rescu', u'break', u'mount', u'lindsay'] [u'women', u'legal', u'servic', u'win', u'discrimin', u'case'] [u'worker', u'strike', u'plant'] [u'zantuck', u'charg', u'mobil', u'drive'] [u'auditor', u'general', u'ask', u'investig', u'workcov'] [u'increas', u'nurs', u'offer'] [u'activist', u'sue', u'japanes', u'govt', u'iraq', u'ordeal'] [u'afghan', u'taliban', u'fighter', u'kill', u'ambush'] [u'fiji', u'polic', u'seiz', u'drug', u'chemic'] [u'ail', u'slater', u'bow'] [u'pollut', u'fear', u'spark', u'council', u'steel', u'river', u'order'] [u'allawi', u'back', u'bomb', u'campaign', u'report'] [u'black', u'target', u'england', u'line'] [u'fast', u'track', u'garrett', u'membership'] [u'anderson', u'coff', u'talk', u'auslink'] [u'anglican', u'church', u'face', u'renew', u'critic'] [u'arm', u'guard', u'protect', u'journalist'] [u'arm', u'keep', u'firi', u'brisban'] [u'arrest', u'gangland', u'swoop'] [u'arsenal', u'case', u'england', u'defenc', u'french', u'attack'] [u'ashcroft', u'refus', u'hand', u'tortur', u'memo'] [u'auslink', u'plan', u'disappoint', u'transport', u'bodi'] [u'babi', u'bonus', u'abus', u'doctor'] [u'baddeley', u'hend', u'allan', u'earn', u'open', u'spot'] [u'barca', u'ronaldinho'] [u'beckham', u'england', u'terri', u'fit', u'doubt'] [u'bekel', u'dragila', u'break', u'world', u'record'] [u'briton', u'support', u'princ', u'charl', u'remarri', u'poll'] [u'bryant', u'song', u'laker', u'level', u'seri'] [u'budget', u'cut', u'slow', u'capit', u'work', u'project'] [u'firm', u'schedul', u'meet', u'talk', u'chang'] [u'busi', u'centr', u'plan', u'spark', u'fear', u'nowra', u'firm'] [u'health', u'servic', u'merger', u'specul'] [u'worker', u'input', u'north', u'coast', u'rail', u'probe'] [u'call', u'daguilar', u'highway', u'upgrad'] [u'canberra', u'vote', u'hec', u'increas'] [u'canberra', u'univers', u'increas', u'fee'] [u'cancer', u'patient', u'gene', u'tailor', u'treatment'] [u'charg', u'drop', u'polic', u'offic'] [u'chariti', u'liken', u'prison', u'ghraib'] [u'chief', u'minist', u'back', u'region', u'bodi', u'replac'] [u'chirac', u'give', u'lose', u'kiwi', u'veteran', u'lift', u'pari'] [u'commiss', u'halv', u'teacher', u'rise'] [u'communiti', u'input', u'seek', u'fluorid'] [u'congoles', u'govt', u'troop', u'regain', u'control', u'bukavu'] [u'consum', u'sentiment', u'resili', u'hous', u'attract'] [u'coolac', u'bypass', u'consid', u'prioriti'] [u'council', u'back', u'green', u'corridor', u'plan'] [u'council', u'reject', u'fruit', u'fumig', u'plan'] [u'council', u'unhappi', u'wilcannia', u'crime', u'brand'] [u'court', u'reserv', u'decis', u'blue', u'ribbon'] [u'crime', u'finger', u'point', u'armidal', u'more'] [u'cyclist', u'french', u'ban', u'dope', u'offenc'] [u'dane', u'appoint', u'head', u'correct'] [u'demetriou', u'move', u'heat', u'brereton'] [u'dengu', u'fever', u'case', u'declin'] [u'deputi', u'opposit', u'leader'] [u'east', u'coast', u'koala'] [u'effort', u'save', u'mildara', u'wineri'] [u'eighteen', u'anti', u'terror', u'arrest', u'europ'] [u'europ', u'battl', u'voter', u'apathi'] [u'evan', u'lead', u'tour', u'austria'] [u'faldo', u'secur', u'spot', u'open'] [u'fallujah', u'rebel', u'kill', u'iraqi', u'soldier'] [u'farmer', u'look', u'rain', u'boost'] [u'fear', u'air', u'bottl', u'plant', u'closur', u'impact'] [u'feder', u'fund', u'rural', u'transact', u'centr'] [u'feder', u'fund', u'focus', u'highway', u'work'] [u'feder', u'canter', u'hall', u'second', u'round'] [u'sugar', u'payment', u'loom'] [u'fisherman', u'wharf', u'consid', u'rockhampton'] [u'flaki', u'studi', u'target', u'greenhous', u'emiss'] [u'foley', u'church', u'resign', u'hypocrit'] [u'govt', u'advis', u'stand', u'trial'] [u'polic', u'offic', u'face', u'jail', u'insur'] [u'forum', u'focus', u'orang', u'job'] [u'charg', u'underworld', u'murder', u'plot'] [u'free', u'hostag', u'return', u'boost', u'berlusconi'] [u'crucial', u'england', u'black', u'clash'] [u'leader', u'gather', u'meet'] [u'seek', u'help', u'creat', u'world', u'peacekeep', u'forc'] [u'gabon', u'plane', u'crash', u'kill'] [u'gallop', u'face', u'cotton', u'opposit'] [u'game', u'critic', u'prais', u'gameboy', u'rival', u'soni'] [u'gene', u'mutat', u'link', u'bowel', u'diseas'] [u'good', u'thing', u'moot', u'futur', u'hospit'] [u'govt', u'defend', u'rail', u'plan'] [u'govt', u'quiz', u'school', u'build', u'delay'] [u'govt', u'seek', u'student', u'feedback', u'year', u'certif'] [u'greenough', u'shire', u'elect', u'plan'] [u'green', u'share', u'land', u'clear', u'fear'] [u'group', u'rais', u'rise', u'damp', u'health', u'concern'] [u'haas', u'defend', u'auslink', u'road', u'announc'] [u'hear', u'tell', u'defenc', u'complaint', u'process', u'meaningless'] [u'hec', u'like', u'welfar', u'repay', u'propos', u'unveil'] [u'henin', u'hardenn', u'pull', u'wimbledon'] [u'hepat', u'forc', u'pongia', u'retir'] [u'hooray', u'hippo', u'babi'] [u'home', u'loan', u'slump', u'begin', u'slow'] [u'hospit', u'junior', u'medic', u'offic'] [u'howard', u'hold', u'littl', u'hope', u'iraq', u'wheat', u'debt'] [u'humpback', u'whale', u'free', u'rope', u'port', u'macquari'] [u'icrc', u'revisit', u'ghraib'] [u'indian', u'cinema', u'grenad', u'wound'] [u'indigen', u'tour', u'oper', u'win', u'award'] [u'intellig', u'communiti', u'need', u'supervisor', u'think', u'tank'] [u'iran', u'criticis', u'hide', u'nuclear', u'activ'] [u'iraq', u'deal', u'allow', u'prison'] [u'isra', u'helicopt', u'strike', u'gaza', u'workshop'] [u'isra', u'soldier', u'face', u'court', u'peac', u'activist'] [u'judg', u'pleas', u'tidi', u'town', u'work'] [u'kakadu', u'review', u'advis', u'waterfal', u'cultur'] [u'kennedi', u'ponder', u'man', u'offer'] [u'kennedi', u'ponder', u'eagl', u'offer'] [u'koala', u'number', u'bear', u'kemp'] [u'kurd', u'threaten', u'boycott', u'interim', u'govern'] [u'labor', u'promis', u'campbel', u'budget', u'fair', u'hear'] [u'langer', u'skipper', u'chief', u'minist'] [u'latino', u'star', u'silent', u'nuptial'] [u'lawyer', u'fear', u'mislead', u'conduct', u'hardi', u'fund'] [u'lawyer', u'strike', u'affair', u'prison'] [u'life', u'leav', u'warrnambool'] [u'life', u'mountain', u'highway', u'plan'] [u'lightn', u'strike', u'adelaid', u'hous', u'storm'] [u'littl', u'sign', u'drug', u'defenc', u'forc', u'say', u'govt'] [u'long', u'distanc', u'walker', u'track', u'creat', u'record'] [u'lord', u'mayor', u'urg', u'labor', u'brisban', u'budget'] [u'court', u'shopkeep', u'assault'] [u'jail', u'holiday', u'bomb', u'hoax'] [u'stab', u'servic', u'station', u'hold'] [u'stand', u'trial', u'underworld', u'murder'] [u'market', u'buck', u'wall', u'street', u'lead'] [u'market', u'cautious', u'rat', u'specul', u'grow'] [u'mcgrath', u'macgil', u'lanka', u'test'] [u'medic', u'research', u'fund', u'expert'] [u'applic', u'near', u'complet'] [u'miner', u'export', u'earn', u'declin'] [u'minist', u'promis', u'polic', u'redfern'] [u'minist', u'say', u'hour', u'clinic', u'success'] [u'minist', u'seek', u'solut', u'ward', u'share', u'woe'] [u'minist', u'hear', u'case', u'hospit', u'fund', u'boost'] [u'montgomeri', u'accus', u'dope', u'violat'] [u'advic', u'seek', u'council', u'polit', u'donat'] [u'australian', u'overtim', u'free'] [u'fund', u'seek', u'communiti', u'bank'] [u'home', u'hous', u'estat'] [u'mother', u'succumb', u'matravill', u'injuri'] [u'motocross', u'rider', u'critic'] [u'nelson', u'pledg', u'maintain', u'nurs', u'degre', u'place'] [u'nelson', u'support', u'uni', u'nurs', u'cours', u'scrap'] [u'agricultur', u'think', u'tank', u'aim', u'drive', u'rural'] [u'director', u'head', u'nation', u'film', u'sound'] [u'prostat', u'treatment', u'encourag'] [u'virgin', u'blue', u'flight', u'fail', u'worri', u'jetstar'] [u'korea', u'slam', u'reckless', u'south', u'navi'] [u'world', u'record', u'dragila'] [u'ogradi', u'gutierrez', u'take', u'stage', u'overal'] [u'produc', u'monitor', u'nigerian', u'strike'] [u'hospit', u'sale'] [u'olymp', u'flame', u'light', u'china'] [u'oppn', u'accus', u'link', u'aust', u'troop', u'prison'] [u'oppn', u'highlight', u'water', u'restrict', u'worri'] [u'pageant', u'plastic', u'fantast'] [u'pair', u'arrest', u'gangland', u'sting'] [u'pakistan', u'afghan', u'border', u'offens', u'kill'] [u'appoint', u'shake'] [u'pharmacist', u'approv', u'forgeri', u'campaign'] [u'pie', u'lodg', u'tarrant', u'appeal'] [u'plan', u'area', u'health', u'servic', u'board'] [u'player', u'bond', u'booz'] [u'defend', u'bush', u'iraq', u'comment'] [u'welcom', u'resolut', u'iraq'] [u'poki', u'spend', u'fall'] [u'polic', u'lift', u'pullenval', u'emerg', u'declar'] [u'policeman', u'honour', u'braveri'] [u'polic', u'probe', u'attempt', u'theft'] [u'polic', u'question', u'wit', u'granvill', u'shoot'] [u'polic', u'search', u'arm', u'brisban', u'blaze'] [u'portugues', u'candid', u'die', u'campaign'] [u'premier', u'defend', u'suprem', u'court', u'appoint', u'promis'] [u'premier', u'support', u'garret', u'preselect'] [u'prison', u'offic', u'union', u'disgust', u'abus'] [u'properti', u'council', u'give', u'mediat', u'thumb'] [u'boost', u'spend', u'art'] [u'ranieri', u'home', u'valencia'] [u'rat', u'agenc', u'warn', u'elect', u'year', u'spend'] [u'rebat', u'cut', u'fund', u'machin'] [u'record', u'fin', u'brawler'] [u'redfern', u'block', u'seal', u'polic', u'chase'] [u'reef', u'author', u'defend', u'huge', u'pontoon', u'plan'] [u'renew', u'concern', u'launceston', u'qualiti'] [u'rescu', u'team', u'stay', u'clear', u'indonesian', u'volcano'] [u'research', u'oppos', u'platypus', u'kill', u'plan'] [u'russia', u'seek', u'support'] [u'africa', u'reject', u'mercenari', u'home'] [u'tip', u'lose', u'smelter', u'project'] [u'seafood', u'industri', u'air', u'reef', u'line', u'plan', u'concern'] [u'second', u'attack', u'sabotag', u'iraq', u'pipelin'] [u'senat', u'urg', u'govt', u'control', u'water'] [u'sharon', u'need', u'labour', u'support', u'pullout', u'offici'] [u'societi', u'get', u'black'] [u'small', u'island', u'win', u'literari', u'prize'] [u'solar', u'power', u'project', u'receiv', u'feder', u'fund'] [u'south', u'east', u'power', u'upgrad'] [u'specialist', u'team', u'improv', u'sexual', u'health'] [u'spirit', u'find', u'evid', u'water', u'mar'] [u'store', u'blaze', u'consid', u'suspici'] [u'storm', u'leav', u'communiti', u'dark'] [u'suicid', u'bomb', u'iraq', u'claim', u'live'] [u'superhero', u'go', u'onlin'] [u'survey', u'highlight', u'fall', u'farmer', u'number'] [u'suspend', u'policeman', u'plead', u'case', u'sack'] [u'sydney', u'close', u'nurs', u'cours'] [u'tamworth', u'princip', u'die'] [u'student', u'benefit', u'danish', u'scholarship'] [u'tate', u'origin', u'fit', u'scare'] [u'tate', u'succumb', u'injuri'] [u'teacher', u'postpon', u'stop', u'work', u'meet'] [u'teen', u'get', u'detent', u'pilbara', u'crime'] [u'teen', u'shoot', u'hockey', u'club', u'incid'] [u'thailand', u'deporte', u'arriv', u'brisban'] [u'thorp', u'test', u'olymp', u'prepar'] [u'totti', u'azzurri', u'say', u'trapattoni'] [u'tourism', u'group', u'lament', u'orang', u'demis'] [u'train', u'boost', u'rescu', u'chopper', u'servic'] [u'train', u'licenc', u'greyhound', u'kicker'] [u'transport', u'group', u'seek', u'fund', u'detail'] [u'tribut', u'pay', u'soldier'] [u'tutor', u'deni', u'inadequ', u'jail', u'supervis', u'claim'] [u'upgrad', u'queenscliff', u'port', u'state'] [u'convoy', u'drive', u'shoot'] [u'valu', u'hous', u'loan', u'jump'] [u'venezuela', u'chavez', u'face', u'referendum'] [u'vote', u'liber', u'strip', u'hungari', u'girl', u'say'] [u'warn', u'issu', u'pregnanc', u'drug'] [u'domain', u'registr', u'million'] [u'whitsunday', u'driver', u'target', u'drink', u'drive', u'campaign'] [u'wild', u'west', u'rodeo', u'high', u'tail', u'china'] [u'william', u'charg', u'follow', u'arrest'] [u'woman', u'kill', u'mandurah', u'head', u'crash'] [u'workcov', u'disclos', u'contract'] [u'worker', u'return', u'furnac', u'relin', u'begin'] [u'worksaf', u'test', u'fire', u'territori', u'firework'] [u'wrangl', u'continu', u'worker', u'camp'] [u'yakama', u'featur', u'brisban'] [u'young', u'peopl', u'sugar', u'industri'] [u'kill', u'dhaka', u'build', u'collaps'] [u'govt', u'slow', u'foster', u'carer'] [u'team', u'drought', u'applic'] [u'issu', u'warn', u'beachgoer'] [u'agreement', u'reach', u'medic', u'retriev', u'unit'] [u'plan', u'generat', u'support'] [u'ambul', u'servic', u'seek', u'continu', u'independ'] [u'australia', u'boost', u'lankan', u'refuge'] [u'bail', u'allow', u'drug', u'accus', u'return'] [u'bakeri', u'worker', u'redund'] [u'bank', u'england', u'rais', u'rat'] [u'bear', u'hope', u'continu', u'win', u'way'] [u'becker', u'dismiss', u'henman', u'chanc'] [u'beef', u'export', u'japan', u'rise'] [u'gun', u'final', u'open', u'prepar'] [u'boom', u'antarct', u'tourism', u'face', u'regul'] [u'brazil', u'leav', u'star', u'home', u'copa', u'america'] [u'britney', u'undergo', u'knee', u'surgeri', u'injuri'] [u'briton', u'attempt', u'vote', u'sale', u'internet'] [u'brit', u'hook', u'onlin', u'mobil', u'nightclub'] [u'bskyb', u'unveil', u'plan', u'free', u'digit', u'televis'] [u'bush', u'chirac', u'odd', u'nato', u'role', u'iraq'] [u'button', u'schus', u'magnific', u'seven'] [u'car', u'plung', u'river', u'bridg', u'collaps', u'china'] [u'cathol', u'teacher', u'rise', u'disappoint'] [u'centr', u'preserv', u'broom', u'indigen', u'cultur'] [u'cherri', u'king', u'fume', u'council', u'reject'] [u'chines', u'construct', u'worker', u'shoot', u'dead'] [u'client', u'unawar', u'soft', u'dollar', u'bonus', u'asic'] [u'compani', u'face', u'hefti', u'fin', u'hangar', u'collaps'] [u'compani', u'power', u'strike', u'vandal'] [u'compani', u'apologis', u'black', u'coal', u'smoke'] [u'compani', u'deni', u'aquif', u'investig', u'futil'] [u'coron', u'launch', u'brief', u'wall', u'death'] [u'council', u'await', u'light', u'rail', u'probe', u'result'] [u'council', u'consid', u'speed', u'trailer'] [u'council', u'hand', u'archbishop', u'resign', u'deadlin'] [u'council', u'maleni', u'supermarket', u'site'] [u'council', u'snub', u'surgeri', u'plan'] [u'council', u'protest', u'plan', u'elector', u'chang'] [u'council', u'stop', u'work', u'hotel', u'grand', u'site'] [u'council', u'vote', u'water', u'suppli', u'takeov'] [u'court', u'award', u'woman', u'supermarket', u'slip'] [u'croc', u'rilli', u'fin', u'deal'] [u'cruis', u'boat', u'crash', u'river', u'danub', u'bridg'] [u'cultur', u'signific', u'halt', u'wind', u'farm', u'plan'] [u'deadlin', u'releas', u'child', u'detaine', u'pass'] [u'decis', u'reserv', u'soccer', u'player', u'assault'] [u'defenc', u'busi', u'centr', u'boost', u'hunter', u'economi'] [u'devil', u'breed', u'program', u'earli', u'consid'] [u'devil', u'clash', u'werribe', u'devonport'] [u'diver', u'assess', u'darwin', u'princess', u'wreck'] [u'dokic', u'oust', u'american', u'qualifi', u'stosur'] [u'donald', u'duck', u'septuagenarian'] [u'drive', u'penalti', u'doubl', u'long', u'weekend'] [u'dutch', u'chang', u'tactic', u'play', u'winger'] [u'witt', u'cop', u'match'] [u'elder', u'politician', u'attend', u'yirrkala', u'memori'] [u'electr', u'price', u'rise', u'signific', u'burden'] [u'elizabeth', u'taylor', u'settl', u'lawsuit', u'sack'] [u'elus', u'croc', u'free', u'reptil', u'longer'] [u'engelsman', u'hit', u'spanish', u'pool'] [u'england', u'euro', u'henri'] [u'england', u'play', u'australia'] [u'environ', u'protect', u'get', u'multi', u'million', u'dollar'] [u'evan', u'keep', u'austrian', u'lead'] [u'ewingsdal', u'moot', u'possibl', u'hospit', u'site'] [u'farm', u'group', u'hop', u'water', u'share', u'agreement'] [u'farm', u'group', u'support', u'insur', u'levi', u'plan'] [u'father', u'find', u'daughter', u'law', u'bodi', u'fridg'] [u'fish', u'kill', u'caus', u'remain', u'unknown'] [u'flanneri', u'fulli', u'awar', u'fittler', u'factor'] [u'flanneri', u'fulli', u'awar', u'fittler', u'factor'] [u'flinder', u'expect', u'increas', u'fee'] [u'foley', u'play', u'smelter', u'decis'] [u'mitsubishi', u'presid', u'arrest', u'death'] [u'vicar', u'paedophil', u'jail', u'sentenc', u'uphold'] [u'fossil', u'confirm', u'pterosaur', u'lay', u'egg'] [u'face', u'court', u'gangland', u'murder', u'plot', u'charg'] [u'franc', u'play', u'wait', u'trezeguet'] [u'freak', u'second', u'storm', u'hit', u'melb'] [u'fruit', u'grower', u'seek', u'better', u'deal'] [u'fruit', u'grower', u'urg', u'monitor', u'quarantin'] [u'fund', u'hors', u'centr', u'studi'] [u'leader', u'support', u'revis', u'east', u'africa', u'reform'] [u'gallop', u'promis', u'broom', u'age', u'care', u'meet'] [u'gangland', u'arrest', u'save', u'life'] [u'gangland', u'target', u'refus', u'protect'] [u'garrett', u'lurch', u'leav'] [u'garrett', u'nail', u'colour', u'labor', u'mast'] [u'garrett', u'vote', u'australia'] [u'garrett', u'depth', u'carr', u'say'] [u'golf', u'diplomaci', u'signal', u'australia'] [u'govt', u'move', u'address', u'nurs', u'shortag'] [u'govt', u'secret', u'releas', u'children', u'detent'] [u'govt', u'stand', u'kangaroo', u'flat', u'school', u'project'] [u'govt', u'foot', u'york', u'park', u'match'] [u'group', u'find', u'age', u'care', u'crisi'] [u'group', u'suggest', u'tougher', u'mulga', u'clear', u'guidelin'] [u'gunmen', u'attack', u'pakistani', u'general', u'convoy'] [u'hervey', u'airport', u'expans', u'take'] [u'hewitt', u'cruis', u'reid', u'beat', u'queen'] [u'high', u'court', u'chief', u'want', u'peopl', u'train', u'judg'] [u'high', u'hop', u'unlock', u'histori'] [u'high', u'hop', u'north', u'east', u'tourism', u'trail'] [u'hill', u'reject', u'water', u'asset', u'claim'] [u'hockeyroo', u'blow', u'chanc', u'draw'] [u'hop', u'high', u'medicar', u'licenc'] [u'huddersfield', u'swoop', u'raider', u'draw'] [u'human', u'remain', u'burn', u'home'] [u'want', u'stat'] [u'indian', u'forc', u'battl', u'rebel', u'kashmir', u'mosqu'] [u'indigen', u'land', u'agreement', u'say'] [u'indigen', u'leader', u'sign', u'anti', u'violenc', u'alcohol'] [u'time', u'free', u'child', u'detaine', u'howard', u'tell'] [u'jobless', u'rate', u'expect', u'remain'] [u'kalgoorli', u'hear', u'latin', u'american', u'opportun'] [u'kennedi', u'confirm', u'man'] [u'kernot', u'warn', u'garrett', u'cultur'] [u'kerri', u'lead', u'bush', u'latest', u'presidenti'] [u'kite', u'tee', u'open'] [u'lake', u'eyr', u'agreement', u'benefit', u'river'] [u'lake', u'eyr', u'basin', u'meet', u'address', u'challeng'] [u'lend', u'figur', u'concern', u'hous', u'bodi'] [u'lennon', u'admit', u'garrett', u'polici', u'differ'] [u'life', u'leav', u'rural', u'manag', u'faculti'] [u'log', u'group', u'demand', u'clear', u'fell', u'safeti', u'report'] [u'mackay', u'rememb', u'plane', u'crash', u'tragedi'] [u'magnesium', u'plant', u'tip'] [u'appeal', u'murder', u'convict'] [u'arrest', u'thailand', u'sydney', u'acid', u'attack'] [u'die', u'crash'] [u'mango', u'grower', u'pressur', u'good', u'produc'] [u'kill', u'show', u'friend', u'hand', u'grenad'] [u'mayor', u'beckon', u'region', u'industri'] [u'midnight', u'vouch', u'vote', u'record', u'garrett'] [u'militari', u'kill', u'aceh', u'separatist', u'rebel'] [u'minist', u'encourag', u'graduat', u'skill', u'test'] [u'minist', u'say', u'health', u'woe', u'sign', u'time'] [u'minist', u'speak', u'pension', u'payment'] [u'peopl', u'arrest', u'madrid', u'bomb'] [u'motocross', u'champ', u'porter', u'die', u'crash'] [u'motorcyclist', u'prepar', u'odyssey'] [u'health', u'servic', u'delay', u'worri', u'mayor'] [u'stromlo', u'water', u'plant', u'readi', u'decemb'] [u'trial', u'manslaught', u'babi'] [u'murder', u'committ', u'question', u'wit'] [u'murray', u'darl', u'basin', u'river', u'undergo', u'year'] [u'role', u'aborigin', u'legal', u'servic', u'lawyer'] [u'news', u'corp', u'prop', u'share', u'market'] [u'free', u'ride', u'ambul', u'work', u'ban'] [u'health', u'merger', u'confirm'] [u'electr'] [u'ogradi', u'fourth', u'stage', u'mar', u'horror', u'crash'] [u'olymp', u'coverag', u'break', u'record'] [u'olymp', u'organis', u'busi', u'slang', u'match'] [u'olyroo', u'hand', u'tough', u'olymp', u'draw'] [u'ongo', u'beef', u'fear', u'boost', u'aust', u'export'] [u'opal', u'win', u'start'] [u'parent', u'access', u'child', u'medic', u'record', u'backward'] [u'past', u'chang', u'predict', u'futur', u'climat'] [u'perth', u'hous', u'market', u'lead', u'aust'] [u'philippin', u'tornado', u'kill'] [u'picioan', u'tarrant', u'lose', u'appeal'] [u'plane', u'crash', u'haunt', u'survivor'] [u'player', u'associ', u'unhappi', u'tribun', u'time'] [u'aust', u'reach', u'packag', u'agreement'] [u'polic', u'foil', u'alleg', u'gangland'] [u'polic', u'hunt', u'escap', u'perth', u'court', u'break'] [u'polic', u'charg', u'drug', u'raid'] [u'polic', u'quiz', u'journalist', u'gangland', u'stori'] [u'polic', u'releas', u'suspect', u'photo', u'wit', u'appeal'] [u'porter', u'succumb', u'injuri'] [u'powel', u'urg', u'latham', u'drop', u'iraq', u'troop', u'deadlin'] [u'primat', u'dismiss', u'call', u'archbishop'] [u'probe', u'aborigin', u'corp', u'end'] [u'public', u'urg', u'council', u'supermarket', u'land'] [u'public', u'urg', u'consid', u'shoot'] [u'confirm', u'prefer', u'smelter', u'site'] [u'rain', u'help', u'boost', u'cattl', u'sale', u'price'] [u'rat', u'talk', u'push', u'dollar', u'higher'] [u'reagan', u'corteg', u'pass', u'washington'] [u'reef', u'author', u'seek', u'comment', u'visitor', u'propos'] [u'report', u'highlight', u'age', u'care', u'servic', u'shortag'] [u'rescuer', u'watch', u'whale'] [u'resign', u'plung', u'caledonia', u'polit'] [u'rise', u'energi', u'price', u'stall', u'apec', u'economi'] [u'riverland', u'citrus', u'shipment', u'head'] [u'robe', u'provid', u'clinic', u'senat', u'chairman'] [u'rocket', u'scramjet', u'research'] [u'rumsfeld', u'tip', u'replac', u'jail', u'abus', u'investig'] [u'runner', u'jamieson', u'go', u'athen'] [u'church', u'committe', u'plan', u'archbishop', u'resign'] [u'sadr', u'militia', u'polic', u'clash', u'najaf'] [u'samo', u'rathbon', u'hand', u'wallabi', u'debut'] [u'schoolgirl', u'killer', u'parol'] [u'seafood', u'industri', u'warn', u'price', u'rise'] [u'senat', u'slam', u'indigen', u'student', u'fund', u'chang'] [u'assault', u'workshop', u'focus', u'drink', u'spike'] [u'shire', u'adopt', u'council', u'admin', u'build', u'design'] [u'spirit', u'troublesom', u'adventur', u'award'] [u'lanka', u'ask', u'chang', u'bowl', u'rule'] [u'state', u'blame', u'feder', u'govt', u'closur'] [u'streak', u'run', u'amid', u'blue', u'specul'] [u'strong', u'expect', u'hospit', u'site'] [u'survey', u'find', u'increas', u'support', u'leagu'] [u'taliban', u'deni', u'kill', u'chines', u'worker'] [u'talk', u'focus', u'save', u'busi', u'centr'] [u'foot', u'york', u'park', u'match'] [u'teacher', u'rise', u'fuel', u'polit', u'stoush'] [u'teacher', u'feder', u'chief', u'port', u'macquari'] [u'tear', u'dispers', u'strike', u'nigerian', u'worker'] [u'telstra', u'sign', u'deal', u'mobil', u'servic'] [u'terror', u'fear', u'prompt', u'palau', u'secur', u'concern'] [u'terror', u'suspect', u'father', u'object', u'forfeit', u'bail'] [u'terri', u'give', u'time', u'prove', u'fit'] [u'thiess', u'worker', u'wont', u'rule', u'strike', u'action'] [u'charg', u'inner', u'citi', u'polic', u'chase'] [u'injur', u'melbourn', u'smash'] [u'toyn', u'rule', u'forc', u'hospit', u'reappoint'] [u'train', u'run', u'minut', u'late', u'deem', u'time'] [u'trial', u'alleg', u'peopl', u'smuggler', u'begin', u'week'] [u'tribut', u'flow', u'motocross', u'kill', u'accid'] [u'tribut', u'flow', u'motocross', u'porter'] [u'trio', u'olymp', u'fenc', u'team'] [u'trio', u'sentenc', u'caravan', u'blaze'] [u'strike', u'consid', u'repeat'] [u'unemploy', u'drop'] [u'union', u'anger', u'beatti', u'free', u'trade', u'support'] [u'union', u'hour', u'work', u'major', u'issu'] [u'union', u'open', u'age', u'care', u'hotlin'] [u'halv', u'ghraib', u'prison', u'number'] [u'vine', u'scrap', u'tour'] [u'voter', u'garrett', u'refshaug'] [u'minist', u'pressur', u'coalit', u'deputi'] [u'increas', u'australia', u'terror', u'risk'] [u'washington', u'begin', u'farewel', u'reagan'] [u'westfield', u'plan', u'kotara', u'upgrad'] [u'whale', u'earli'] [u'whale', u'spot', u'east', u'gippsland'] [u'wickham', u'point', u'strike', u'worsen'] [u'wood', u'play', u'skin', u'game', u'south', u'korea', u'organis'] [u'yorta', u'yorta', u'land', u'deal', u'shonki'] [u'call', u'oversea', u'nurs', u'boost', u'workforc'] [u'claim', u'iraq', u'withdraw', u'wont', u'hurt', u'relat'] [u'qaeda', u'kingpin', u'direct', u'pakistan', u'convoy', u'attack'] [u'archbishop', u'quit', u'abus', u'scandal'] [u'asean', u'chairmanship', u'pressur', u'burma'] [u'athen', u'judo', u'team', u'name'] [u'athlet', u'happi', u'olymp', u'stadium'] [u'scammer', u'jail'] [u'attempt', u'murder', u'charg', u'surpris', u'hickss', u'father'] [u'auspin', u'tarpeena', u'worker', u'threaten', u'industri', u'unrest'] [u'babi', u'killer', u'sentenc', u'increas'] [u'bacteria', u'blame', u'colli', u'fish', u'kill'] [u'bathurst', u'council', u'reveal', u'logo'] [u'beatl', u'festiv', u'mark', u'australian', u'tour'] [u'beckham', u'knicker', u'knot', u'hotel', u'pictur'] [u'birthday', u'card', u'spark', u'polit'] [u'blue', u'expect', u'face', u'improv', u'maroon', u'attack'] [u'bodi', u'near', u'morwel'] [u'boiler', u'room', u'businessmen', u'avoid', u'jail'] [u'broadbeach', u'accid', u'put', u'hospit'] [u'build', u'industri', u'readi', u'higher', u'home', u'standard'] [u'bush', u'blair', u'play', u'iraq', u'troop', u'disagr'] [u'bush', u'join', u'thousand', u'honour', u'reagan'] [u'busi', u'fight', u'sunday', u'trade'] [u'busi', u'group', u'upbeat', u'magnesium', u'smelter'] [u'cabaret', u'star', u'belt', u'adelaid'] [u'cartwright', u'name', u'gold', u'coast', u'coach'] [u'chair', u'pose', u'weighti', u'problem', u'wimbledon'] [u'chariti', u'donat', u'sallyman', u'memori'] [u'children', u'kill', u'sadr', u'militia', u'troop', u'clash'] [u'church', u'committe', u'chairman', u'resign', u'archbishop'] [u'finalis', u'nomin'] [u'club', u'unhappi', u'gold', u'coast', u'dolphin'] [u'collina', u'blow', u'open', u'whistl'] [u'comment', u'invit', u'best', u'manag', u'money'] [u'committe', u'examin', u'need', u'environment', u'watchdog'] [u'compani', u'upbeat', u'wind', u'farm', u'plan'] [u'concern', u'region', u'domest', u'violenc', u'help'] [u'congo', u'coup', u'ringlead', u'surround', u'kabila'] [u'congo', u'guard', u'stage', u'coup'] [u'council', u'defend', u'phone', u'tower', u'process'] [u'councillor'] [u'council', u'outlin', u'budget', u'detail'] [u'crow', u'dump', u'smart'] [u'curdl', u'milk', u'magic', u'seneg', u'world', u'hop'] [u'dairi', u'countri', u'music', u'festiv', u'monto'] [u'dead', u'woman', u'emerg', u'treatment', u'compromis'] [u'delhi', u'polic', u'unearth', u'school', u'steal'] [u'dementia', u'impact', u'main', u'age', u'care'] [u'desert', u'champ', u'good', u'marriag', u'pledg'] [u'detent', u'centr', u'appeal', u'fail'] [u'develop', u'reveal', u'ental', u'hous'] [u'discrimin', u'law', u'boost', u'alcohol', u'ban', u'case', u'expert'] [u'handler', u'alleg', u'ghraib', u'abus', u'authoris'] [u'dog', u'understand', u'languag', u'research'] [u'appeal', u'jack', u'roch', u'sentenc'] [u'dragon', u'catch', u'panther'] [u'draw', u'light'] [u'drink', u'driver', u'narrowli', u'miss', u'polic', u'offic', u'court'] [u'driver', u'urg', u'enjoy', u'safe', u'long', u'weekend'] [u'dutch', u'risk', u'legal', u'action', u'ballot', u'result'] [u'earli', u'intervent', u'help', u'control', u'weed'] [u'east', u'coast', u'await', u'governor', u'visit'] [u'email', u'sack', u'bungl', u'infuri', u'atsic', u'worker'] [u'england', u'suit', u'franc', u'say', u'zidan'] [u'evan', u'retain', u'yellow', u'brutal', u'climb'] [u'fletcher', u'jone', u'worker', u'await', u'compo', u'decis'] [u'oper', u'iraqi', u'end', u'success'] [u'farmer', u'improv', u'outlook'] [u'fear', u'air', u'breed'] [u'feder', u'fund', u'govt', u'servic'] [u'fight', u'continu', u'save', u'colleg'] [u'woman', u'appoint', u'committe'] [u'fish', u'lure', u'dollar', u'south', u'burnett'] [u'garrett', u'highlight', u'labor', u'forest', u'split', u'brown'] [u'garrett', u'warn', u'tasmanian', u'issu'] [u'germani', u'need', u'confid', u'inject', u'say', u'voeller'] [u'gibernau', u'gun', u'home'] [u'goldfield', u'hear', u'detail'] [u'govt', u'accus', u'put', u'brake', u'road', u'fund'] [u'govt', u'give', u'assur', u'rehab', u'servic'] [u'govt', u'urg', u'open', u'teacher', u'rise', u'case'] [u'greenback', u'declin', u'prompt', u'aust', u'dollar', u'recoveri'] [u'green', u'group', u'seek', u'corindi', u'land', u'clear', u'probe'] [u'group', u'save', u'structur'] [u'group', u'want', u'killer', u'free', u'resum', u'life'] [u'groyn', u'plan', u'unlik'] [u'gucci', u'eas', u'luxuri', u'captiv'] [u'habib', u'charg', u'loom', u'say'] [u'hawk', u'fight'] [u'histori', u'beckon', u'ireland', u'troubl', u'springbok'] [u'hospit', u'death', u'spark', u'coroni', u'inquiri', u'request'] [u'howard', u'seek', u'inform', u'assassin', u'threat'] [u'indonesian', u'dentist', u'arrest', u'wake', u'terror'] [u'indonesian', u'volcano', u'eas', u'fear', u'remain'] [u'inquiri', u'tell', u'job', u'lose', u'follow', u'rail', u'line'] [u'intern', u'rift', u'threaten', u'interim', u'iraqi', u'govern'] [u'ipart', u'decis', u'wont', u'stop', u'hunter', u'power', u'boost'] [u'iran', u'seek', u'tone', u'iaea', u'resolut'] [u'iraq', u'anger', u'result', u'blair', u'poll', u'drub'] [u'jetstar', u'compens', u'passeng', u'strand', u'overnight'] [u'job', u'scheme', u'teach', u'forestri', u'skill'] [u'justic', u'minist', u'refus', u'resign', u'call'] [u'king', u'frame', u'terri', u'battl', u'fit'] [u'knight', u'complain', u'tahu', u'approach'] [u'kookaburra', u'european', u'tour', u'poor', u'note'] [u'labor', u'take', u'garrett', u'preselect', u'begin'] [u'labor', u'fast', u'track', u'garrett', u'membership'] [u'labour', u'agreement', u'help', u'eas', u'nurs', u'shortag'] [u'land', u'seek', u'indigen', u'justic', u'centr'] [u'launceston', u'dirti', u'health', u'issu'] [u'lead', u'zinc', u'product', u'fall'] [u'leagu', u'world', u'mourn', u'refere', u'pearc'] [u'legendari', u'singer', u'charl', u'dead'] [u'levi', u'bigger', u'bite', u'cherri'] [u'librari', u'futur', u'close', u'book', u'mayor'] [u'lib', u'attack', u'revenu', u'rais', u'park', u'fin'] [u'incom', u'earner', u'spend', u'smoke', u'studi', u'say'] [u'magazin', u'order', u'eminem', u'legal', u'fee'] [u'malthous', u'slam', u'tribun'] [u'attack', u'women', u'apart', u'court', u'hear'] [u'charg', u'bash', u'remand', u'custodi'] [u'charg', u'cattl', u'duf'] [u'flee', u'court', u'fail', u'meet', u'bail'] [u'man', u'unfaz', u'kennedi', u'injuri'] [u'manslaught', u'charg', u'get', u'bail'] [u'mayo', u'outclass', u'armstrong', u'time', u'trial'] [u'mcginti', u'back', u'hospit', u'site'] [u'mention', u'hospit', u'death', u'insensit'] [u'merino', u'line', u'record', u'price'] [u'mice', u'chew', u'competit', u'outrag', u'rspca'] [u'industri', u'back', u'push', u'boost', u'job'] [u'montoya', u'unmov', u'mclaren', u'problem'] [u'moruya', u'brawl', u'spark', u'polic', u'arrest'] [u'multi', u'million', u'dollar', u'radar', u'label', u'public'] [u'nebo', u'shire', u'improv', u'growth'] [u'england', u'health', u'fight', u'health'] [u'global', u'mine', u'boom', u'forecast'] [u'milk', u'deal', u'benefit', u'supplier'] [u'machin', u'help', u'treat', u'prematur', u'babi'] [u'visit', u'ophthalmologist', u'wide', u'burnett'] [u'abus', u'watch', u'guantanamo', u'general'] [u'nurs', u'label', u'irrespons', u'strike', u'plan'] [u'obstetrician', u'clear', u'incompet', u'babi'] [u'brother', u'get', u'bore', u'ralf'] [u'ohern', u'doubl', u'mission'] [u'year', u'make', u'littl', u'differ', u'minardi'] [u'opal', u'cruis', u'past', u'china'] [u'pair', u'face', u'drug', u'charg', u'bail'] [u'pakistan', u'attack', u'qaeda', u'hideout'] [u'panda', u'edg', u'brink'] [u'parent', u'want', u'better', u'offer', u'teacher'] [u'dispar', u'anger', u'public', u'school', u'teacher'] [u'petrol', u'bomber', u'pelt', u'polic', u'irish', u'poll'] [u'pilot', u'caution', u'safeti', u'fink', u'desert'] [u'piston', u'send', u'laker', u'time'] [u'plan', u'focus', u'natur', u'resourc', u'manag'] [u'accus', u'latham', u'indiffer', u'allianc'] [u'pneumococc', u'vaccin', u'program', u'target', u'children'] [u'polic', u'investig', u'train', u'derail'] [u'polic', u'drug', u'charg', u'raid'] [u'polic', u'music', u'sooth', u'nigerian', u'striker'] [u'polic', u'identifi', u'truck', u'crash', u'victim'] [u'port', u'piri', u'recov', u'smelter', u'loss'] [u'portug', u'feel', u'pressur', u'greec'] [u'poverti', u'reason', u'cede', u'reserv', u'downer'] [u'premier', u'woo', u'defenc', u'contract'] [u'project', u'offer', u'altern', u'away', u'crime'] [u'qsia', u'back', u'prawn', u'export', u'move'] [u'raikkonen', u'pin', u'hop', u'machin'] [u'rain', u'boost', u'farmer', u'effort'] [u'reef', u'closur', u'creat', u'fish', u'import', u'fear'] [u'research', u'aim', u'attract', u'shearer'] [u'resid', u'plan', u'maleni', u'land', u'talk'] [u'resid', u'water', u'price', u'plan', u'hard', u'swallow'] [u'resourc', u'stock', u'boost', u'ord'] [u'rosal', u'open', u'earli', u'lead', u'delawar'] [u'rural', u'issu', u'aplenti', u'rlpb', u'confer'] [u'sack', u'offic', u'move', u'victoria', u'polic'] [u'sadr', u'loyalist', u'attack', u'najaf', u'polic', u'station'] [u'safeti', u'concern', u'farm'] [u'schole', u'turn', u'heat', u'boast', u'french'] [u'schuettler', u'advanc', u'hall', u'quarter'] [u'scolari', u'attempt', u'portug'] [u'sculli', u'announc', u'local', u'fund'] [u'search', u'continu', u'escap'] [u'search', u'abduct', u'woman', u'continu'] [u'secur', u'tight', u'perth', u'court', u'follow', u'break'] [u'sharapova', u'knock', u'stosur', u'molik'] [u'shark', u'roll', u'surfer', u'underwat', u'attack'] [u'shearer', u'kill', u'itali', u'rumour'] [u'sign', u'spoil', u'sceneri'] [u'singh', u'song', u'york'] [u'appear', u'fiji', u'court', u'drug', u'charg'] [u'smart', u'career', u'hang', u'balanc'] [u'snow', u'shortfal', u'mark', u'season', u'start'] [u'spain', u'seek', u'egyptian', u'extradit'] [u'spanish', u'armada', u'look', u'flood', u'leaki', u'russian'] [u'steven', u'set', u'person', u'best'] [u'steven', u'boost', u'blue', u'price'] [u'steven', u'boost', u'blue', u'price', u'say'] [u'strong', u'crowd', u'tip', u'countri', u'footi'] [u'survey', u'consid', u'stock', u'rout', u'futur'] [u'sydney', u'immigr', u'raid', u'target', u'bar', u'restaur'] [u'sydney', u'mop', u'unexpect', u'storm'] [u'teacher', u'union', u'urg', u'consid', u'work', u'ban'] [u'teen', u'bush', u'attack', u'teacher', u'court'] [u'telco', u'bank', u'mobil', u'money'] [u'terror'] [u'terri', u'franc', u'game'] [u'hurt', u'bomb', u'target', u'convoy'] [u'charg', u'escap'] [u'foil', u'iraq', u'sabotag'] [u'toddler', u'die', u'crash'] [u'toowoomba', u'join', u'child', u'detent', u'protest'] [u'tourism', u'council', u'claim', u'forest', u'protest', u'hurt'] [u'tuqiri', u'stick', u'union'] [u'chief', u'call', u'secur', u'upgrad', u'afghanistan'] [u'union', u'stand', u'free', u'trade', u'protest', u'plan'] [u'compani', u'face', u'iraq', u'abus', u'suit'] [u'franc', u'odd', u'summit', u'wind'] [u'valentin', u'commit', u'red'] [u'van', u'lead', u'dutch', u'attack'] [u'varieti', u'school', u'signal'] [u'vietnam', u'ban', u'report', u'inaccuraci'] [u'minist', u'draw', u'clear', u'line', u'sand'] [u'warn', u'issu', u'legionnair', u'diseas'] [u'white', u'supremacist', u'terreblanch', u'leav', u'jail'] [u'wine', u'export', u'higher'] [u'woman', u'death', u'prevent', u'coron', u'say'] [u'work', u'begin', u'massiv', u'power', u'cabl', u'bass'] [u'worker', u'escap', u'injuri', u'floor', u'collaps'] [u'world', u'leader', u'gather', u'honour', u'reagan'] [u'wreck', u'like', u'darwin', u'princess'] [u'zimbabw', u'postpon', u'test'] [u'abeylegess', u'smash', u'women', u'world', u'record'] [u'aborigin', u'artefact', u'devonport'] [u'abscond', u'sailor', u'undermin', u'secur'] [u'teacher', u'seek', u'rise'] [u'actu', u'aim', u'rais', u'child', u'labour', u'awar'] [u'aircraft', u'fear', u'prove', u'fals', u'alarm'] [u'black', u'england', u'sword'] [u'qaeda', u'slam', u'middl', u'east', u'plan'] [u'defend', u'oversea', u'train', u'doctor'] [u'angri', u'buzzard', u'terroris', u'cyclist'] [u'anti', u'racism', u'strategi', u'light'] [u'archbishop', u'pay', u'high', u'price'] [u'aussi', u'nail', u'biter', u'franc'] [u'australian', u'children', u'face', u'exploit', u'actu'] [u'baquba', u'bomb', u'injur', u'soldier', u'polic'] [u'beckham', u'sound', u'battl', u'franc', u'match'] [u'berlusconi', u'voter', u'anger', u'opposit'] [u'black', u'cap', u'driver', u'seat', u'styri'] [u'blair', u'defiant', u'despit', u'labour', u'pain'] [u'blue', u'erupt', u'virgin', u'credit'] [u'boiler', u'room', u'convict', u'warn', u'investor'] [u'bomb', u'target', u'berlusconi', u'parti', u'headquart'] [u'bomb', u'underlin', u'thai', u'secur', u'need'] [u'border', u'agreement', u'eas', u'korean', u'tension'] [u'bosnian', u'serb', u'admit', u'srebrenica', u'massacr'] [u'brigitt', u'bardot', u'fin', u'incit', u'racial', u'hatr'] [u'british', u'warship', u'crash', u'open'] [u'bulldog', u'bite', u'saint'] [u'bush', u'reject', u'north', u'korean', u'offer', u'danc', u'report'] [u'canberra', u'play', u'host', u'nation', u'poultri'] [u'carnley', u'unhappi', u'archbishop', u'resign'] [u'car', u'bike', u'king', u'desert', u'race'] [u'charg', u'lay', u'monash', u'abduct'] [u'child', u'protect', u'recruit', u'drive', u'begin'] [u'chines', u'cop', u'unhealthi', u'shoddi'] [u'claim', u'howard', u'wont', u'visit', u'princ', u'highway'] [u'colombian', u'anti', u'kidnap', u'school', u'hostag', u'number'] [u'countri', u'hospit', u'await', u'health', u'amalgam'] [u'coupl', u'maintain', u'lead'] [u'coup', u'ringlead', u'flee', u'congo', u'capit'] [u'cowboy', u'streak', u'away', u'knight'] [u'cricket', u'australia', u'wait', u'warn', u'avail'] [u'croatia', u'seek', u'fli', u'start', u'swiss'] [u'dutch', u'troop', u'stay', u'iraq'] [u'eagl', u'subdu', u'disappoint', u'crow'] [u'ebadi', u'bar', u'repres', u'dead', u'journalist'] [u'escap', u'prompt', u'immedi', u'perth', u'court', u'upgrad'] [u'european', u'stock', u'slip'] [u'fashion', u'design', u'egon', u'furstenberg', u'die'] [u'bad', u'damag', u'famili', u'home'] [u'firework', u'law', u'prove', u'inadequ', u'pratt'] [u'fishermen', u'surviv', u'day'] [u'year', u'miss', u'pine', u'plantat'] [u'futur', u'traffic', u'radar', u'uncertain'] [u'futur', u'weigh', u'webber', u'mind'] [u'gibernau', u'take', u'provision', u'pole', u'barcelona'] [u'goward', u'highlight', u'women', u'poverti', u'risk'] [u'board', u'dump'] [u'grog', u'free', u'festiv', u'focus', u'famili'] [u'hewitt', u'face', u'roddick', u'queen', u'semi'] [u'hobart', u'rat', u'valu', u'money'] [u'home', u'buyer', u'urg', u'avoid', u'mortgag', u'wrap'] [u'educ', u'bangladeshi', u'child', u'labour'] [u'immigr', u'dept', u'say', u'suicid', u'report', u'wrong'] [u'industri', u'parti', u'elect'] [u'industri', u'race', u'maintain', u'nation', u'ident'] [u'inexperienc', u'latham', u'listen', u'learn', u'downer'] [u'iran', u'condemn', u'unaccept', u'iaea', u'pressur'] [u'iran', u'free', u'internet', u'journalist', u'bail'] [u'iraqi', u'foreign', u'affair', u'offici', u'assassin'] [u'iraq', u'insurg', u'kill', u'lebanes', u'hostag', u'hold'] [u'iraqi', u'turkish', u'hostag', u'free'] [u'israel', u'demolish', u'vacat', u'settler', u'home', u'sourc'] [u'jackson', u'charg', u'remain', u'secret', u'judg', u'rule'] [u'jone', u'replac', u'read', u'england', u'squad'] [u'katherin', u'hepburn', u'belong', u'auction'] [u'kerri', u'seek', u'republican', u'run', u'mate'] [u'knowl', u'tell', u'water', u'alloc'] [u'labor', u'commit', u'deer', u'park', u'bypass', u'construct'] [u'labor', u'troop', u'iraq', u'latham'] [u'labor', u'remain', u'split', u'garrett'] [u'late', u'chang', u'portug', u'prepar', u'kick'] [u'latham', u'find', u'succour', u'british', u'vote'] [u'life', u'sentenc', u'like', u'oklahoma', u'bomb'] [u'lion', u'rampant', u'dockland'] [u'livingston', u'win', u'second', u'term', u'london', u'mayor'] [u'mandela', u'run', u'olymp', u'flame', u'prison'] [u'man', u'sever', u'nightclub', u'brawl'] [u'meteorit', u'touch', u'home'] [u'methanol', u'lace', u'alcohol', u'kill', u'poison'] [u'mill', u'martin', u'injuri', u'woe'] [u'molik', u'knock', u'edgbaston', u'quarter'] [u'morient', u'readi', u'real', u'return'] [u'mother', u'charg', u'attempt', u'murder', u'children'] [u'motorcyclist', u'die', u'start', u'long', u'weekend'] [u'mourner', u'hear', u'reagan', u'penchant', u'earlob'] [u'myskina', u'rubin', u'wimbledon', u'warm'] [u'naga', u'comeback', u'trail'] [u'navratilova', u'play', u'wimbledon', u'singl'] [u'holiday', u'road', u'toll', u'rise'] [u'opposit', u'want', u'tourism', u'sign', u'revamp'] [u'issu', u'health', u'warn'] [u'ogradi', u'take', u'stage', u'victori'] [u'oper', u'harp', u'lead', u'bank', u'robberi', u'charg'] [u'pakistan', u'bomb', u'blast', u'kill'] [u'pakistan', u'bomb', u'qaeda', u'hideout'] [u'parent', u'prais', u'govt', u'decis', u'vaccin'] [u'peopl', u'ask', u'report', u'tag', u'prawn', u'find'] [u'plane', u'report', u'troubl', u'near', u'adelaid'] [u'polic', u'appeal', u'help', u'attempt', u'murder'] [u'polic', u'investig', u'brutal', u'hotel', u'bash'] [u'polic', u'question', u'alleg', u'abduct'] [u'polic', u'recaptur', u'perth', u'escap'] [u'polic', u'stop', u'ancient', u'skull', u'leav', u'peru'] [u'princ', u'record', u'auction'] [u'prison', u'face', u'perth', u'court', u'recaptur'] [u'pulp', u'environment', u'friend', u'brown'] [u'pumpkin', u'bear', u'brunt', u'road', u'train', u'accid'] [u'member', u'latham', u'garrett'] [u'hors', u'rid', u'event', u'draw', u'global', u'attent'] [u'polic', u'investig', u'rape', u'claim'] [u'union', u'member', u'ralli'] [u'quak', u'jolt', u'japan'] [u'rabbitoh', u'kitina', u'perfect', u'start'] [u'raider', u'deplet', u'shark'] [u'rain', u'set', u'endur', u'test', u'lpga', u'championship'] [u'reagan', u'lay', u'rest'] [u'reef', u'closur', u'mail', u'boost', u'awar'] [u'ricochet', u'bullet', u'injur', u'target', u'shooter'] [u'roberto', u'carlo', u'stay', u'real'] [u'sack', u'board', u'deni', u'lack', u'consult'] [u'sadr', u'call', u'ceas', u'najaf'] [u'salmonella', u'case', u'jump'] [u'sato', u'schus', u'slipstream'] [u'saturn', u'probe', u'focus', u'dark', u'moon'] [u'scientist', u'reloc', u'lone', u'killer', u'whale'] [u'search', u'continu', u'miss', u'plane'] [u'shiit', u'group', u'clash', u'najaf'] [u'skaif', u'take', u'race'] [u'smith', u'set', u'sight', u'maroon', u'fixtur'] [u'smith', u'want', u'maroon', u'fixtur'] [u'soldier', u'hurt', u'iraq', u'helicopt', u'accid'] [u'special', u'privileg', u'timor', u'violenc', u'prison'] [u'storm', u'caus', u'problem', u'perth', u'road'] [u'storm', u'flood', u'hundr', u'nicaraguan', u'home'] [u'success', u'timet', u'hold', u'despit', u'georg'] [u'suicid', u'report', u'boost', u'detent', u'inspector'] [u'superman', u'spearman', u'put', u'grace', u'shade'] [u'sweet', u'sixteen', u'feder', u'hall'] [u'sydney', u'traffic', u'normal', u'bridg', u'accid'] [u'doctor', u'want', u'surgeri', u'wait', u'list', u'slash'] [u'woman', u'kill', u'accid'] [u'thiev', u'bottl', u'shop'] [u'thorp', u'win', u'comfort', u'free', u'california'] [u'hospit', u'legionnair'] [u'thunderbird', u'score', u'easi', u'victori', u'oriol'] [u'traffic', u'chao', u'sydney', u'harbour', u'bridg', u'crash'] [u'truss', u'highlight', u'beatti', u'latham', u'split', u'ethanol'] [u'tunnicliff', u'hold', u'lead', u'scotland'] [u'arrest', u'afghan', u'bomb', u'maker'] [u'bid', u'emot', u'farewel', u'reagan'] [u'embrac', u'nanci', u'set', u'reagan'] [u'govt', u'turn', u'speed', u'fin'] [u'victorian', u'season', u'open'] [u'wallabi', u'look', u'build', u'year', u'gregan'] [u'warn', u'break', u'hand'] [u'swimmer', u'assur', u'shark', u'attack'] [u'wood', u'earli', u'start', u'open'] [u'aqsa', u'claim', u'isra', u'troop', u'target', u'leader'] [u'jazeera', u'air', u'american', u'execut'] [u'american', u'shoot', u'dead', u'riyadh'] [u'anti', u'globalis', u'ralli', u'target', u'meet'] [u'attack', u'israel', u'continu', u'hama'] [u'australian', u'unearth', u'ancient', u'egyptian', u'cemeteri'] [u'bank', u'target', u'worker', u'client'] [u'barbequ', u'explos', u'injur'] [u'brother', u'evicte', u'stag', u'silent', u'refuge', u'protest'] [u'lade', u'bodyguard', u'hold', u'guantanamo', u'report'] [u'birney', u'claim', u'polic', u'district', u'understaf'] [u'black', u'cap', u'pace', u'england'] [u'blue', u'turn', u'fifth', u'choic', u'half'] [u'botha', u'hero', u'springbok', u'upset', u'irish'] [u'bright', u'domin', u'round'] [u'burma', u'arrest', u'parti', u'member'] [u'canberra', u'welcom', u'tourism', u'figur'] [u'bomb', u'hit', u'baghdad', u'assassin'] [u'carr', u'call', u'rail', u'fare', u'freez'] [u'cassini', u'close', u'saturn', u'moon'] [u'cat', u'continu', u'fine', u'form'] [u'china', u'approv', u'rapid', u'sar', u'test'] [u'china', u'provinc', u'recal', u'milk', u'powder', u'poison'] [u'coalit', u'hand', u'boat', u'iraqi', u'guard'] [u'coalit', u'hold', u'prison', u'sovereignti'] [u'commonwealth', u'bank', u'build', u'sale', u'darwin'] [u'connect', u'chang', u'busi', u'oper'] [u'dancer', u'squar'] [u'dignitari', u'join', u'memori', u'atsic', u'leader'] [u'director', u'moor', u'turn', u'len', u'blair'] [u'docker', u'notch', u'rare', u'away'] [u'drug', u'syndic', u'make', u'ingredi'] [u'eel', u'romp', u'record'] [u'ethanol', u'mandat', u'aust', u'wide', u'say', u'beatti'] [u'europrid', u'draw', u'germani'] [u'evan', u'track', u'austria', u'tour'] [u'farmer', u'counteract', u'citi', u'bambi', u'mental'] [u'feder', u'face', u'fish', u'hall', u'final'] [u'damag', u'orthodox', u'church', u'melbourn'] [u'servant', u'admit', u'lie', u'princ', u'charl'] [u'franc', u'england', u'cope', u'late', u'defens', u'chang'] [u'french', u'open', u'champ', u'skip', u'wimbledon'] [u'gallop', u'refus', u'play', u'escap', u'blame', u'game'] [u'garrett', u'forest', u'spotlight'] [u'gibernau', u'captur', u'pole'] [u'govt', u'criticis', u'famili'] [u'govt', u'roll', u'promis', u'famili', u'payment'] [u'greec', u'stun', u'host', u'portug'] [u'green', u'candid', u'stand', u'garrett'] [u'group', u'want', u'stronger', u'focus', u'energi', u'manag'] [u'hewitt', u'question', u'roddick', u'record'] [u'high', u'cancer', u'rat', u'worri', u'submarin', u'veteran'] [u'hundr', u'mourn', u'yolgnu', u'elder'] [u'ikea', u'shop', u'adelaid'] [u'imelda', u'stori', u'award', u'win', u'documentari'] [u'increas', u'insurg', u'add', u'afghanistan'] [u'india', u'question', u'alleg', u'nuclear', u'secret', u'salesman'] [u'insurg', u'saddam', u'baghdad', u'palac'] [u'iran', u'toughen', u'nuclear', u'stanc'] [u'iraqi', u'professor', u'assassin'] [u'irish', u'voter', u'approv', u'tighten', u'citizenship', u'law'] [u'jihadist', u'free', u'turk', u'egyptian', u'hostag'] [u'juvenil', u'escape', u'face', u'court'] [u'kanu', u'keown', u'leav', u'gunner'] [u'kenyan', u'urg', u'disast', u'declar'] [u'kill', u'wont', u'derail', u'iraq', u'handov', u'offici'] [u'kimmorley', u'origin'] [u'larsson', u'hop', u'lift', u'swede', u'victori'] [u'liber', u'polici', u'wont', u'clean', u'graffiti', u'stanhop'] [u'long', u'weekend', u'polic', u'blitz', u'hail', u'success'] [u'long', u'weekend', u'road', u'toll', u'rise'] [u'long', u'weekend', u'sunday', u'danger', u'road'] [u'beat', u'hors', u'race'] [u'mandela', u'shin', u'torch', u'relay'] [u'kill', u'canberra', u'brawl'] [u'metro', u'rail', u'track', u'time'] [u'militari', u'chief', u'approv', u'ghraib', u'tactic', u'report'] [u'minist', u'attack', u'judiciari', u'mass', u'escap'] [u'minist', u'encourag', u'healthi', u'eat', u'communiti'] [u'miss', u'dead', u'river'] [u'mormon', u'pavement', u'deliv', u'cambodian'] [u'mount', u'erupt', u'alert', u'downgrad'] [u'mysteri', u'odour', u'stump', u'polic', u'author'] [u'nation', u'abus', u'inquiri', u'need', u'church', u'tell'] [u'nation', u'holiday', u'road', u'toll', u'reach'] [u'navratilova', u'celebr', u'singl'] [u'navi', u'storm', u'tanker', u'hijack'] [u'neurologist', u'drop', u'public', u'sector'] [u'hospit', u'fund', u'unspent', u'opposit'] [u'technolog', u'improv', u'secur', u'perth'] [u'nightclub', u'evacu', u'toxic', u'scare'] [u'anti', u'corrupt', u'bodi', u'remain', u'separ'] [u'polic', u'warn', u'motorist', u'vigil'] [u'opal', u'sight', u'gold'] [u'plug', u'pull', u'vietnam', u'peac', u'concert'] [u'polic', u'arrest', u'high', u'speed', u'chase'] [u'polic', u'continu', u'search', u'miss', u'woman', u'daughter'] [u'polic', u'investig', u'indec', u'assault', u'perth'] [u'polic', u'kill', u'intercept', u'iraq', u'bomber'] [u'polic', u'drug', u'bust'] [u'polic', u'treat', u'mornington', u'disappear', u'murder'] [u'polici', u'maker', u'attend', u'educ', u'review', u'meet'] [u'poll', u'back', u'labor', u'star', u'recruit'] [u'power', u'destroy', u'swan'] [u'prison', u'die', u'suspect', u'drug', u'overdos'] [u'puma', u'edg', u'past', u'wale'] [u'premier', u'despit', u'union', u'protest'] [u'ralf', u'pip', u'button', u'canada', u'pole'] [u'rasmussen', u'win', u'dauphin', u'stage', u'long', u'solo', u'push'] [u'rescu', u'helicopt', u'make', u'emerg', u'land'] [u'ricochet', u'bullet', u'hit', u'target', u'shooter'] [u'riyadh', u'attack', u'reveng', u'ghraib'] [u'robert', u'storm', u'york', u'lead'] [u'roddick', u'roll', u'hewitt'] [u'countri', u'music', u'award', u'move'] [u'sadr', u'deal', u'expect', u'week'] [u'sadr', u'plan', u'polit', u'parti'] [u'polic', u'deni', u'plan', u'hide', u'speed', u'camera', u'bin'] [u'saudi', u'bind', u'british', u'airway', u'crew', u'sleep', u'kuwait'] [u'woman', u'bash', u'mobil', u'phone'] [u'search', u'resum', u'miss', u'toddler'] [u'second', u'senior', u'iraqi', u'offici', u'assassin'] [u'settler', u'thwart', u'pullout', u'plan'] [u'singl', u'domain', u'moreton', u'save'] [u'kill', u'accid'] [u'snow', u'season', u'sluggish', u'thredbo'] [u'sorenstam', u'target', u'defend', u'major', u'titl'] [u'spanish', u'super', u'valeron', u'sink', u'russia'] [u'sudan', u'rebel', u'leader', u'vow', u'rebuild', u'devast'] [u'supermarket', u'protest', u'injur', u'tree', u'fall'] [u'swift', u'sink', u'phoenix'] [u'switzerland', u'croatia', u'face', u'game'] [u'syring', u'alleg', u'dead', u'prison', u'cell'] [u'teenag'] [u'teen', u'battl', u'edgbaston', u'final'] [u'thai', u'gunmen', u'kill', u'policeman'] [u'thorp', u'target', u'california'] [u'thousand', u'welcom', u'free', u'kurdish', u'activist'] [u'extradit', u'bank', u'robberi'] [u'tiger', u'thrash', u'hapless', u'warrior'] [u'trade', u'agreement', u'final', u'vail'] [u'tragic', u'search', u'miss', u'toddler'] [u'tunnicliff', u'clear', u'scotland'] [u'ullrich', u'claim', u'switzerland', u'stage'] [u'union', u'remind', u'worker', u'height', u'restrict'] [u'union', u'establish', u'age', u'care', u'hotlin'] [u'keep', u'option', u'open', u'rat'] [u'free', u'journalist', u'hold', u'iraq'] [u'govt', u'fund', u'domest', u'violenc', u'court'] [u'vote', u'start', u'final', u'poll'] [u'govt', u'crack', u'drink', u'driver'] [u'wallabi', u'overpow', u'plucki', u'scotland'] [u'warn', u'half', u'chanc', u'play', u'lankan'] [u'water', u'fight', u'continu'] [u'webber', u'head', u'william', u'wish', u'list'] [u'protest', u'clash', u'polic'] [u'white', u'hous', u'tri', u'help', u'howard'] [u'wrong', u'direct', u'leav', u'injur', u'teen', u'strand'] [u'bangladeshi', u'fishermen', u'miss', u'storm'] [u'academ', u'award', u'queen', u'birthday', u'honour'] [u'action', u'take', u'lion', u'doctor'] [u'alcohol', u'plan', u'allow', u'better', u'polic', u'spenc'] [u'democrat', u'oppos', u'elector', u'chang'] [u'analyst', u'predict', u'assur', u'greenspan', u'comment'] [u'angler', u'benefit', u'monster', u'salmon', u'releas'] [u'ansto', u'pin', u'export', u'hop', u'radiograph', u'camera'] [u'antarct', u'film', u'land', u'croc', u'hunter', u'water'] [u'arm', u'clubber', u'face', u'increas', u'penalti'] [u'aussi', u'cyclist', u'shine', u'europ'] [u'bashir', u'lose', u'lawsuit', u'polic'] [u'beatti', u'urg', u'pressur', u'latham', u'ethanol', u'mandat'] [u'beckham', u'take', u'blame', u'england', u'loss'] [u'crowd', u'enjoy', u'countri', u'music', u'festiv'] [u'blair', u'safe', u'moor', u'len'] [u'blast', u'kill', u'baghdad', u'report'] [u'bomb', u'blast', u'kill', u'soldier', u'pakistani'] [u'botch', u'terror', u'report', u'put', u'pressur'] [u'bridal', u'parti', u'splash', u'fail', u'dampen', u'celebr'] [u'britain', u'allow', u'diplomat', u'staff', u'leav', u'saudi'] [u'british', u'entrepreneur', u'branson', u'set', u'cross'] [u'buderus', u'put', u'faith', u'finch'] [u'businessman', u'warn', u'deal', u'danger'] [u'ceas', u'promis', u'exchang', u'jenin'] [u'central', u'queensland', u'honour', u'list'] [u'chines', u'farmer', u'time'] [u'clarenc', u'valley', u'water', u'restrict', u'flow', u'forth'] [u'clijster', u'wrist', u'oper'] [u'communiti', u'effort', u'earn', u'queen', u'birthday', u'honour'] [u'communiti', u'join', u'upper', u'hunter', u'shire'] [u'corrupt', u'claim', u'peak', u'crime', u'fight', u'bodi'] [u'costa', u'urg', u'face', u'north', u'coast', u'rail', u'probe'] [u'cost', u'live', u'australian', u'citi', u'soar'] [u'council', u'welcom', u'deer', u'park', u'bypass', u'pledg'] [u'cowboy', u'prove', u'depth', u'newcastl'] [u'crop', u'duster', u'self', u'regul', u'safeti'] [u'democrat', u'seek', u'central', u'train', u'fund'] [u'demon', u'pull'] [u'driver', u'die', u'road', u'crash'] [u'driver', u'urg', u'long', u'weekend', u'statist'] [u'egyptian', u'islamist', u'go', u'hunger', u'strike'] [u'england', u'recov', u'heartbreak', u'lampard'] [u'timor', u'focus', u'human', u'right', u'violat'] [u'european', u'voter', u'lash', u'govern', u'parti'] [u'expert', u'warn', u'flood', u'increas'] [u'north', u'resid', u'join', u'queen', u'birthday', u'honour'] [u'feder', u'fund', u'farm', u'manag', u'plan'] [u'feder', u'fri', u'fish', u'wimbledon', u'warn'] [u'chief', u'honour', u'queen', u'birthday'] [u'senat', u'presid', u'name', u'queen', u'birthday'] [u'fourteen', u'arrest', u'follow', u'england', u'euro', u'defeat'] [u'garcia', u'win', u'titl', u'play'] [u'garrett', u'urg', u'oppos', u'southern', u'highland', u'airport'] [u'gippsland', u'elect', u'stoush', u'prompt', u'formal', u'complaint'] [u'goldfield', u'woman', u'get', u'queen', u'birthday', u'honour'] [u'govern', u'brace', u'ballot', u'rebuff'] [u'govt', u'reject', u'call', u'overhaul', u'hospit'] [u'govt', u'urg', u'promot', u'territori', u'case', u'train'] [u'green', u'want', u'kimberley', u'cotton', u'trial'] [u'gregan', u'jone', u'honour', u'recipi'] [u'group', u'promis', u'continu', u'fight', u'hospit'] [u'guantanamo', u'video', u'turn', u'offici'] [u'hambali', u'brother', u'friend', u'trial'] [u'harri', u'potter', u'lose', u'potenc', u'atop', u'offic'] [u'highland', u'trek', u'aim', u'steer', u'youth', u'crime'] [u'hollywood', u'award', u'pay', u'tribut', u'meryl', u'streep'] [u'honour', u'roll', u'recognis', u'tasmanian'] [u'hope', u'age', u'care', u'place'] [u'hopoat', u'face', u'lengthi', u'sidelin', u'stint'] [u'illeg', u'shark', u'fin', u'rise', u'minist'] [u'input', u'seek', u'tweed', u'coast', u'plan'] [u'inquest', u'open', u'boy', u'death'] [u'iraqi', u'presid', u'reject', u'ghraib', u'demolit', u'offer'] [u'irwin', u'defend', u'whale'] [u'japan', u'divid', u'royal', u'success'] [u'juri', u'mull', u'verdict', u'belgian', u'paedophil', u'trial'] [u'kakadu', u'tourist', u'walk', u'reopen'] [u'kelpi', u'muster', u'round', u'crowd'] [u'king', u'cross', u'polic', u'road', u'block', u'stop'] [u'labor', u'deni', u'withdraw', u'humili', u'australia'] [u'labor', u'fear', u'trade', u'deal', u'affect'] [u'labor', u'show', u'star', u'recruit'] [u'latest', u'zimbabw', u'newspap', u'closur', u'condemn'] [u'late', u'zidan', u'doubl', u'break', u'english', u'heart'] [u'lightn', u'hit', u'fli', u'doctor', u'plane'] [u'local', u'govt', u'demand', u'infrastructur', u'budget', u'boost'] [u'local', u'featur', u'queen', u'birthday', u'honour'] [u'tunnel', u'emit', u'carbon', u'monoxid', u'oper', u'admit'] [u'mackenroth', u'predict', u'sustain', u'econom', u'growth'] [u'maleni', u'protest', u'rule', u'futur', u'tree'] [u'charg', u'towradgi', u'assault'] [u'charg', u'babysitt', u'assault'] [u'charg', u'manslaught', u'remain', u'custodi'] [u'custodi', u'croydon', u'sieg'] [u'court', u'cabbi', u'assault'] [u'mayor', u'unhappi', u'school', u'cross', u'snub'] [u'west', u'resid', u'queen', u'birthday', u'honour'] [u'minist', u'parent', u'criticis', u'call', u'compulsori'] [u'mundulla', u'farmer', u'recognis', u'innov'] [u'nation', u'trust', u'reform', u'clear', u'confus'] [u'navratilova', u'rethink', u'wimbledon', u'wildcard'] [u'nazi', u'graffiti', u'spray', u'muslim', u'grave'] [u'nepal', u'rebel', u'kill', u'policemen'] [u'council', u'wiluna'] [u'guid', u'come', u'rescu', u'parent', u'host'] [u'home', u'plan', u'chinchilla', u'ambo'] [u'polic', u'unit', u'probe', u'reopen', u'murder', u'case'] [u'unit', u'investig', u'unsolv', u'death'] [u'nightclub', u'fume', u'mysteri', u'odour', u'prank'] [u'queen', u'birthday', u'honour', u'list'] [u'dun', u'say', u'simpson', u'conqueror'] [u'armi', u'come', u'mortar', u'attack', u'iraq'] [u'citizenship', u'harder'] [u'olymp', u'torch', u'parad'] [u'opal', u'fail', u'shine', u'final'] [u'opposit', u'call', u'tree', u'health', u'check'] [u'pakistan', u'arrest', u'qaeda', u'suspect'] [u'patient', u'divers', u'highlight', u'meltdown', u'lib'] [u'pirat', u'kidnap', u'malaysian', u'fishermen', u'report'] [u'piston', u'away', u'titl'] [u'plan', u'heritag', u'list'] [u'polic', u'confirm', u'dead', u'melbourn', u'stab'] [u'polic', u'continu', u'search', u'miss', u'escap'] [u'polic', u'expect', u'charg', u'trucki', u'train', u'crash'] [u'polic', u'hold', u'fear', u'miss'] [u'polic', u'stop', u'car', u'daniel', u'morecomb', u'probe'] [u'polic', u'unhappi', u'think', u'drive', u'start'] [u'polic', u'pedestrian', u'victim'] [u'port', u'secur', u'boost', u'restrict', u'access'] [u'powel', u'prais', u'saudi', u'anti', u'terror', u'effort'] [u'powel', u'warn', u'danger', u'situat', u'saudi', u'arabia'] [u'public', u'urg', u'help', u'fight', u'drug', u'fauna', u'smuggl'] [u'public', u'warn', u'mossi', u'bear', u'virus', u'threat'] [u'quad', u'bike', u'accid', u'claim', u'boy', u'life'] [u'queen', u'birthday', u'honour', u'council', u'staffer'] [u'queen', u'birthday', u'honour', u'merimbula'] [u'queen', u'birthday', u'honour', u'announc'] [u'queen', u'birthday', u'honour', u'north', u'coast'] [u'queen', u'birthday', u'honour', u'south', u'coast', u'resid'] [u'queensland', u'award', u'honour', u'queen'] [u'queensland', u'win', u'campdraft', u'championship'] [u'rabbi', u'firefight', u'queen', u'birthday', u'honour'] [u'racial', u'tension', u'spark', u'congo', u'threat'] [u'riverland', u'malle', u'resid', u'queen', u'birthday'] [u'roddick', u'retain', u'queen', u'club', u'titl'] [u'rossi', u'deni', u'gibernau', u'home', u'victori'] [u'rspca', u'firework', u'law', u'dont'] [u'rugbi', u'leagu', u'stalwart', u'get', u'queen', u'birthday', u'honour'] [u'ruud', u'exploit', u'german', u'woe'] [u'defend', u'wheeli', u'speed', u'camera', u'plan'] [u'sadr', u'citi', u'clash', u'kill'] [u'schumach', u'celebr', u'magnific', u'seven'] [u'level', u'rise', u'make', u'hong', u'kong', u'flood', u'prone'] [u'search', u'break', u'hill', u'asset', u'manag'] [u'effort', u'bring', u'queen', u'birthday', u'honour'] [u'sharapova', u'win', u'battl', u'teen'] [u'skill', u'packag', u'improv', u'industri', u'access'] [u'snail', u'fever', u'outbreak', u'hit', u'china'] [u'snake', u'hold', u'sting', u'indian', u'mountain'] [u'sorenstam', u'eas', u'seventh', u'major', u'victori'] [u'stand', u'continu', u'night', u'violenc'] [u'stand', u'continu', u'melbourn', u'servic', u'station'] [u'stretton', u'receiv', u'queen', u'birthday', u'honour'] [u'studi', u'put', u'focus', u'drought', u'gender', u'issu'] [u'support', u'air', u'health', u'servic', u'merger'] [u'suspect', u'drug', u'smuggler', u'hold', u'turkey'] [u'casino', u'worker', u'stage', u'stop', u'work', u'meet'] [u'tasmania', u'move', u'reassur', u'race', u'industri'] [u'swiss', u'hold', u'croatia', u'goalless', u'draw'] [u'territorian', u'recipi', u'queen', u'birthday'] [u'thai', u'offici', u'worker', u'kill', u'troubl', u'south'] [u'thoma', u'happi', u'olymp', u'prepar'] [u'thorp', u'lead', u'england', u'clean', u'sweep'] [u'tonga', u'appoint', u'liquid', u'airlin'] [u'trial', u'test', u'crohn', u'diseas', u'treatment'] [u'tribun', u'back', u'privat', u'land', u'claim', u'settlement'] [u'tunnicliff', u'triumph', u'scotland', u'ohern'] [u'custodi', u'high', u'speed', u'chase'] [u'launch', u'gulf', u'syndrom', u'inquiri'] [u'umaga', u'black', u'miss', u'train'] [u'nuke', u'watchdog', u'unsur', u'iran', u'come', u'clean'] [u'back', u'iraqi', u'employe', u'shoot'] [u'free', u'score', u'iraqi', u'ghraib', u'jail'] [u'forc', u'captur', u'milit', u'afghanistan'] [u'militari', u'report', u'iraqi', u'abus', u'novemb'] [u'victorian', u'honour', u'queen', u'birthday', u'list'] [u'volunt', u'shortag', u'prompt', u'busi', u'incent'] [u'cancel', u'secur', u'deal', u'prison', u'breakout'] [u'wallabi', u'room', u'improv'] [u'opposit', u'want', u'justic', u'minist', u'stand'] [u'polic', u'fireman', u'featur', u'queen', u'birthday'] [u'wind', u'rain', u'warn', u'south', u'east'] [u'wine', u'industri', u'focus', u'green', u'manag'] [u'woman', u'arrest', u'babi', u'bodi', u'freezer'] [u'woman', u'plead', u'guilti', u'year', u'jail', u'absenc'] [u'wool', u'grower', u'input', u'seek', u'market', u'plan'] [u'zidan', u'doubl', u'break', u'english', u'heart'] [u'abbott', u'drop', u'medic', u'record', u'plan'] [u'accus', u'monash', u'murder', u'think', u'fellow', u'student'] [u'consid', u'futur', u'cracker', u'night'] [u'releas', u'children', u'plan'] [u'million', u'peopl', u'sabotag'] [u'worker', u'attack'] [u'alcoa', u'appear', u'court', u'pollut', u'charg'] [u'anglican', u'church', u'committe', u'member', u'replac'] [u'anzac', u'club', u'consid'] [u'applic', u'ditch', u'plan', u'underworld', u'tour'] [u'asbesto', u'compo', u'director', u'unabl', u'insur'] [u'atsic', u'meet', u'pointer', u'end', u'violenc'] [u'audienc', u'flock', u'cabaret', u'festiv'] [u'aussi', u'vest', u'beat', u'heat', u'athen'] [u'australian', u'choos', u'educ', u'children'] [u'australia', u'thailand', u'sign', u'free', u'trade', u'deal'] [u'author', u'claim', u'extrem', u'makeov', u'idea', u'steal'] [u'babi', u'suffer', u'smoke', u'inhal', u'cafe', u'mishap'] [u'barrist', u'take', u'helm', u'galleri'] [u'biki', u'boost', u'goondiwindi', u'economi'] [u'bjorkman', u'fish', u'withdraw', u'nottingham'] [u'blackwel', u'boost', u'leed', u'play', u'stock'] [u'blair', u'defend', u'take', u'britain'] [u'blair', u'limit', u'iraq', u'nato', u'role', u'train'] [u'blue', u'play', u'rooster', u'style', u'game'] [u'boomer', u'squad', u'warm', u'tour'] [u'brack', u'sign', u'biotech', u'deal', u'israel'] [u'breaker', u'lose', u'player', u'sunnybank', u'clash'] [u'brisban', u'compani', u'provid', u'breakthrough', u'cattl'] [u'british', u'soldier', u'face', u'iraq', u'abus', u'charg'] [u'brothel', u'approv', u'spark', u'develop', u'review'] [u'busi', u'appeal', u'late', u'night', u'lockout'] [u'butt', u'doubt', u'england'] [u'fund', u'boost'] [u'water', u'merger', u'specul'] [u'casino', u'oper', u'move', u'prevent', u'industri', u'action'] [u'central', u'coffe', u'harvest', u'plung'] [u'chairman', u'front', u'panther', u'corrupt', u'probe'] [u'chamber', u'play', u'samag', u'snub', u'impact'] [u'chamber', u'see', u'benefit', u'reopen', u'mall'] [u'chamber', u'help', u'secur', u'camera'] [u'cholesterol', u'lower', u'drug', u'glaucoma', u'risk'] [u'determin', u'qaeda', u'suspect', u'tape'] [u'club', u'blame', u'drunken', u'accid', u'court', u'find'] [u'colac', u'bypass', u'melbourn', u'warrnambool', u'cycl', u'race'] [u'comment', u'seek', u'draft', u'council', u'budget'] [u'communiti', u'anger', u'search', u'miss'] [u'confer', u'hear', u'geologist', u'mine', u'engin'] [u'coria', u'hurri', u'coach'] [u'corrupt', u'claim', u'lead', u'compani', u'timor', u'withdraw'] [u'costa', u'north', u'rail', u'servic'] [u'cotton', u'grower', u'celebr', u'good', u'crop'] [u'council', u'await', u'minist', u'respons', u'dept', u'store'] [u'councillor', u'fight', u'hotel', u'alcohol', u'decis'] [u'council', u'consid', u'water', u'cost', u'concern'] [u'court', u'hear', u'involv', u'teen', u'pagan', u'ritual'] [u'danish', u'compani', u'rethink', u'wind', u'turbin', u'plant'] [u'dead', u'dive', u'see', u'omen', u'lanka'] [u'deep', u'drainag', u'plan', u'microscop'] [u'discount', u'store', u'loom', u'norseman'] [u'test', u'improv', u'steak', u'qualiti'] [u'urg', u'plea', u'chang', u'reason', u'wagga'] [u'drop', u'raul', u'spain', u'think', u'unthink'] [u'drug', u'compani', u'make', u'cocain', u'vaccin'] [u'dubbo', u'host', u'princip', u'gather'] [u'eagl', u'lose', u'embley', u'crow', u'confid', u'bounc'] [u'beat', u'scott'] [u'emerg', u'land', u'prompt', u'safeti', u'investig'] [u'isi', u'down', u'wool', u'properti'] [u'energi', u'spend', u'prompt', u'earli', u'poll', u'talk'] [u'eriksson', u'sweat', u'schole'] [u'european', u'leader', u'firm', u'face', u'vote', u'drub'] [u'everton', u'fan', u'rite', u'buri'] [u'famili', u'highlight', u'hospit', u'treatment', u'fear'] [u'favour', u'weather', u'see', u'record', u'wine', u'product'] [u'out', u'wild', u'weather'] [u'firefight', u'admit', u'start', u'sydney', u'bushfir'] [u'snow', u'transform', u'alp'] [u'fish', u'competit', u'lure', u'crowd'] [u'charg', u'warren', u'brawl'] [u'stand', u'trial', u'melbourn'] [u'diplomat', u'criticis', u'unsaf', u'polici'] [u'play', u'mind', u'game', u'experi'] [u'free', u'pneumococc', u'vaccin', u'offer'] [u'fund', u'bolster', u'school', u'communiti', u'link'] [u'teacher', u'strike', u'like'] [u'gile', u'near', u'quit', u'critic'] [u'gould', u'accus', u'maroon', u'refere', u'pressur'] [u'govt', u'releas', u'energi', u'strategi'] [u'greatest', u'hit', u'tour', u'idea', u'tasteless'] [u'green', u'slam', u'miner', u'welcom', u'energi', u'plan'] [u'grow', u'race', u'crowd', u'spark', u'track', u'narrow'] [u'hadley', u'win', u'rise', u'star', u'nomin'] [u'hamburg', u'beat', u'citi', u'belgian', u'intern'] [u'henman', u'confid', u'wimbledon', u'success'] [u'home', u'staff', u'work'] [u'hop', u'high', u'season', u'snow', u'boost'] [u'hopoat', u'apologis', u'touch', u'judg'] [u'hopoat', u'match'] [u'scapegoat', u'ghraib', u'general'] [u'indigen', u'group', u'fear', u'wind', u'farm'] [u'insur', u'investig'] [u'iraq', u'polit', u'posit', u'howard'] [u'iraqi', u'milit', u'releas', u'video', u'lebanes', u'hostag'] [u'iraq', u'plan', u'crackdown', u'insurg'] [u'iraq', u'readi', u'hold', u'saddam'] [u'isra', u'court', u'allow', u'sale', u'pork'] [u'japanes', u'polic', u'catch', u'colombian', u'thiev'] [u'job', u'water', u'restrict', u'bite'] [u'journalist', u'claim', u'timor', u'conspir'] [u'judg', u'reject', u'jackson', u'lower', u'bail'] [u'juri', u'mull', u'dutroux', u'verdict'] [u'karzai', u'ask', u'nato', u'bolster', u'forc'] [u'korea', u'propaganda', u'broadcast'] [u'labor', u'request', u'senat', u'inquiri', u'atsic', u'futur'] [u'larsson', u'lead', u'swedish', u'rout'] [u'mackenroth', u'hand', u'budget', u'surplus'] [u'applaud', u'estrang', u'wife', u'jail', u'sentenc'] [u'charg', u'crash', u'hous'] [u'free', u'tonn', u'glass'] [u'court', u'hour', u'sieg'] [u'child', u'porn', u'charg', u'remand'] [u'plead', u'guilti', u'caravan', u'park', u'murder'] [u'face', u'court', u'servic', u'station', u'sieg'] [u'court', u'riverland', u'shoot'] [u'market', u'jitteri', u'rate', u'specul'] [u'mayor', u'look', u'improv', u'river', u'flow'] [u'mayor', u'seek', u'better', u'govt', u'represent'] [u'mcgeadi', u'cap', u'ireland', u'debut', u'celtic', u'deal'] [u'want', u'flexibl', u'workplac', u'actu', u'say'] [u'miner', u'minist', u'work'] [u'minist', u'mislead', u'famili', u'benefit', u'payment', u'labor'] [u'minist', u'rememb', u'myall', u'creek', u'massacr'] [u'monto', u'lead', u'push', u'crop'] [u'moor', u'contest', u'fahrenheit', u'rat'] [u'arrest', u'crackdown'] [u'mortlock', u'give', u'clear'] [u'mostovoi', u'ax', u'russian', u'squad'] [u'motorbik', u'group', u'defend', u'safeti', u'record'] [u'seek', u'river', u'open', u'meet'] [u'pollut', u'monitor', u'continu'] [u'muralitharan', u'announc', u'tour', u'withdraw'] [u'murali', u'skip', u'australia', u'tour'] [u'nativ', u'plant', u'provid', u'hope', u'ulcer', u'suffer'] [u'navi', u'ship', u'undergo', u'final', u'touch'] [u'govt', u'urg', u'address', u'ambul', u'concern'] [u'teacher', u'meet', u'industri', u'action'] [u'look', u'improv', u'gravel', u'road'] [u'orang', u'host', u'green', u'rural', u'gather'] [u'owen', u'blame', u'england', u'heartbreak'] [u'palestinian', u'explod', u'gaza'] [u'panther', u'boss', u'face', u'corrupt', u'inquiri'] [u'stoush', u'loom', u'casino', u'oper'] [u'pedestrian', u'die', u'cross', u'goldfield'] [u'pentagon', u'unawar', u'saddam', u'handov', u'plan'] [u'perth', u'escap', u'appear', u'court'] [u'peveril', u'cop', u'heavi', u'fine', u'push', u'doctor'] [u'piano', u'teacher', u'stand', u'trial', u'charg'] [u'pire', u'predict', u'england', u'final'] [u'plan', u'afoot', u'boost', u'communiti', u'bus'] [u'highway', u'comment', u'stun', u'mayor'] [u'polic', u'tougher', u'drink', u'drive', u'law'] [u'polic', u'charg', u'pair', u'golf', u'cours', u'damag'] [u'polic', u'defend', u'light', u'camera'] [u'polic', u'happi', u'long', u'weekend', u'traffic', u'blitz'] [u'polic', u'investig', u'morwel', u'woman', u'death'] [u'polic', u'lament', u'speed', u'driver'] [u'polic', u'probe', u'seymour', u'hous', u'blaze'] [u'portug', u'deni', u'animos', u'deco'] [u'prais', u'aplenti', u'gunnedah'] [u'presid', u'want', u'independ', u'french', u'polynesia'] [u'prison', u'staff', u'complaint', u'concern', u'union'] [u'product', u'slow', u'hous', u'market', u'cool'] [u'open', u'steal', u'wag', u'negoti'] [u'quak', u'jolt', u'turkey'] [u'realiti', u'inx', u'singer'] [u'retir', u'support', u'hurley', u'replac'] [u'roff', u'say', u'line', u'toe'] [u'roff', u'say', u'back', u'toe'] [u'soldier', u'appear', u'perth', u'court'] [u'saturn', u'moon', u'phoeb', u'reveal', u'batter', u'past'] [u'schoolgirl', u'lose', u'muslim', u'gown', u'case'] [u'screen', u'sound', u'archiv', u'chief', u'move', u'reassur'] [u'protect', u'cost', u'fish', u'subsidi'] [u'seatbelt', u'offenc', u'surpris', u'polic'] [u'stagger', u'respons', u'critic'] [u'sharon', u'bomb', u'plot', u'reveal'] [u'shrek', u'take', u'toon', u'titl'] [u'special', u'court', u'like', u'boost', u'domest', u'violenc'] [u'speed', u'drink', u'drive', u'worri', u'polic'] [u'strawberri', u'grower', u'discuss', u'packag', u'chang'] [u'strong', u'visitor', u'number', u'long', u'weekend'] [u'studi', u'find', u'length', u'heart', u'diseas', u'link'] [u'superbrat', u'slam', u'bore', u'tenni', u'star'] [u'support', u'crop', u'duster', u'plan'] [u'survey', u'hint', u'strong', u'employ', u'growth'] [u'swiss', u'england', u'voodoo', u'campaign'] [u'cut', u'senat', u'approv'] [u'taxpay', u'fork', u'bakhtiyari', u'detent'] [u'teacher', u'feder', u'meet', u'hear', u'local', u'concern'] [u'teen', u'jail', u'ebay', u'scam'] [u'thompson', u'wont', u'portfolio', u'garrett'] [u'asylum', u'seeker', u'nauru', u'hunger', u'strike'] [u'surviv', u'lightn', u'strike'] [u'tonga', u'send', u'troop', u'help', u'iraq'] [u'tour', u'oper', u'look', u'budget', u'fund'] [u'toyn', u'face', u'censur', u'motion', u'alic', u'hospit'] [u'train', u'servic', u'normal', u'crash'] [u'treasur', u'promis', u'best', u'budget'] [u'union', u'group', u'highlight', u'child', u'farm', u'accid'] [u'union', u'redund', u'fight', u'worker'] [u'armi', u'unzip', u'combat', u'uniform'] [u'rat', u'specul', u'send'] [u'hand', u'saddam', u'fortnight'] [u'verkerk', u'delight', u'mark', u'grass'] [u'oppn', u'tour', u'plan', u'wast', u'site'] [u'expect', u'announc'] [u'pipelin', u'focus', u'featur', u'film'] [u'prawn', u'market'] [u'warmer', u'weather', u'attract', u'tourist'] [u'water', u'plan', u'anger'] [u'inventor', u'berner', u'win', u'rich', u'tech', u'prize'] [u'whale', u'group', u'warn', u'watch', u'danger'] [u'whale', u'strand', u'harbour'] [u'william', u'apolog', u'ralf'] [u'wind', u'farm', u'start', u'soon'] [u'woman', u'die', u'highway', u'crash'] [u'woman', u'fin', u'prison', u'escap'] [u'woman', u'asbesto', u'relat', u'diseas'] [u'woodward', u'make', u'sweep', u'chang'] [u'youth', u'welfar', u'unfair', u'acoss'] [u'zimbabw', u'criticis', u'newspap', u'closur'] [u'zurich', u'probe', u'wont', u'impact', u'polici', u'holder'] [u'kill', u'injur', u'train', u'derail', u'western'] [u'aceh', u'rebel', u'fight', u'despit', u'leader', u'arrest'] [u'increas', u'offer', u'nurs'] [u'minist', u'reject', u'morn', u'pill'] [u'blast', u'year', u'retent', u'rat', u'boy'] [u'accus', u'ignor', u'countri', u'club'] [u'consid', u'cloth', u'chang', u'doctor'] [u'wont', u'chang', u'rule', u'shove'] [u'alcohol', u'polici', u'limit', u'licens', u'trade'] [u'welcom', u'wide', u'budget', u'boost'] [u'qaeda', u'threaten', u'execut', u'hostag'] [u'anderson', u'back', u'excis', u'chang'] [u'anti', u'depress', u'caus', u'suicid', u'thought'] [u'anti', u'terror', u'law', u'like', u'labor', u'support'] [u'apec', u'mine', u'confer', u'begin', u'chile'] [u'appeal', u'go', u'aborigin', u'blood', u'donor'] [u'australia', u'join', u'rank', u'nation'] [u'australian', u'win', u'british', u'literari', u'award'] [u'australia', u'urg', u'quit', u'bodi'] [u'australia', u'welcom', u'french', u'polynesia', u'presid'] [u'beatti', u'budget', u'face', u'interst', u'critic'] [u'beckham', u'take', u'shirt', u'zidan'] [u'blue', u'maroon', u'rack'] [u'bowman', u'hop', u'maroon', u'origin', u'turnaround'] [u'british', u'airport', u'experi', u'iri', u'scanner'] [u'british', u'teen', u'offer', u'virgin', u'ebay'] [u'budget', u'disappoint', u'tourism', u'oper'] [u'budget', u'includ', u'rocki', u'riverbank', u'work'] [u'budget', u'includ', u'sunshin', u'coast', u'health', u'boost'] [u'budget', u'offer', u'child', u'safeti', u'worker', u'boost'] [u'budget', u'see', u'help', u'famili'] [u'burn', u'smoke', u'choke', u'rockhampton'] [u'busi', u'face', u'rate', u'rise'] [u'busi', u'leader', u'quit', u'board', u'govern'] [u'plan', u'reviv'] [u'report', u'workplac', u'corrupt'] [u'campbel', u'stand', u'kalgoorli', u'independ'] [u'hewitt', u'derail', u'express'] [u'stand', u'truck', u'safeti'] [u'chamber', u'execut', u'offic', u'resign'] [u'china', u'plung', u'lake', u'pilgrim', u'dead'] [u'china', u'execut', u'beij', u'taxi', u'driver', u'serial', u'killer'] [u'church', u'aim', u'heal', u'wound', u'abus', u'victim'] [u'church', u'urg', u'deal', u'child', u'abus', u'issu'] [u'restrict', u'senat', u'report'] [u'citi', u'council', u'librari', u'east', u'timor'] [u'clash', u'mark', u'work', u'west', u'bank', u'barrier'] [u'colombian', u'rebel', u'massacr', u'peasant', u'claim'] [u'commit', u'show', u'lake', u'eyr', u'basin', u'sustain'] [u'communiti', u'involv', u'sentenc', u'recommend'] [u'compani', u'stand', u'hotel', u'demolit', u'work'] [u'consum', u'tenanc', u'advic', u'offic', u'remain'] [u'council', u'happi', u'canopi', u'walk', u'fund'] [u'council', u'debat', u'moruya', u'airport', u'chang'] [u'council', u'tri', u'eas', u'rate', u'swing'] [u'coupl', u'face', u'deport', u'drug', u'convict'] [u'court', u'mull', u'bilal', u'khazal', u'bail', u'appeal'] [u'cricket', u'boss', u'hop', u'murali', u'chang', u'heart'] [u'croat', u'rest', u'player', u'gambl', u'england'] [u'crow', u'smart', u'leav', u'nest', u'good'] [u'detail', u'seek', u'region', u'health', u'servic', u'plan'] [u'diabet', u'group', u'call', u'fund'] [u'dump', u'oper', u'stand', u'green', u'requir'] [u'economi', u'head', u'year', u'trough'] [u'edward', u'viii', u'letter', u'expect', u'fetch', u'king', u'ransom'] [u'emerg', u'drink', u'water', u'plan', u'begin'] [u'energi', u'firm', u'cast', u'doubt', u'feder', u'packag'] [u'england', u'sieg', u'swiss', u'warn', u'beckham'] [u'england', u'wont', u'swiss', u'light', u'jam'] [u'expert', u'concern', u'children', u'mental', u'health'] [u'expert', u'warn', u'whoop', u'cough', u'vigil'] [u'famili', u'privat', u'file', u'leav', u'tram'] [u'fan', u'rampag', u'algarv', u'arrest'] [u'govt', u'laugh', u'rann', u'woomera', u'comment'] [u'govt', u'urg', u'victoria', u'anti', u'corrupt'] [u'mobil', u'phone', u'virus', u'discov'] [u'minist', u'corrupt'] [u'franc', u'jugular', u'cagey', u'croatia'] [u'fruit', u'grower', u'stage', u'fieri', u'protest'] [u'general', u'view', u'shine', u'favour', u'light', u'okan'] [u'geologist', u'start', u'diamond', u'hunt'] [u'gould', u'step', u'origin', u'mind', u'game'] [u'govern', u'argu', u'public', u'hous', u'deal'] [u'governor', u'schwarzenegg', u'return', u'screen'] [u'govt', u'defend', u'record', u'fight', u'slave', u'trade'] [u'govt', u'nation', u'anti', u'corrupt', u'bodi'] [u'group', u'call', u'isol', u'children', u'allow'] [u'hagu', u'court', u'say', u'milosev', u'answer', u'genocid'] [u'hanson', u'focus', u'breaststrok', u'athen'] [u'hantuchova', u'win', u'eastbourn', u'molik'] [u'high', u'hop', u'cloud', u'seed', u'snow'] [u'high', u'worth'] [u'hill', u'regret', u'incorrect', u'prison', u'abus', u'inform'] [u'hoon', u'complaint', u'prompt', u'speed', u'camera', u'request'] [u'hop', u'wildflow', u'season', u'boost', u'tourism'] [u'hospit', u'shortag', u'reach'] [u'hous', u'industri', u'concern', u'cost', u'safeti'] [u'illeg', u'fishermen', u'keep', u'jail', u'boat'] [u'independ', u'inquiri', u'investig', u'prison', u'break'] [u'indigen', u'dept', u'expand', u'kimberley'] [u'initi', u'promot', u'coal', u'benefit'] [u'iraqi', u'cleric', u'order', u'fighter', u'leav', u'najaf'] [u'iraqi', u'secur', u'chief', u'kill', u'export', u'halt'] [u'irishmen', u'releas', u'colombian', u'jail'] [u'isi', u'down', u'ewe', u'sell', u'dollar'] [u'isra', u'troop', u'kill', u'palestinian', u'milit', u'west'] [u'itali', u'trapattoni', u'familiar'] [u'joint', u'militari', u'train', u'facil', u'caus'] [u'joness', u'lawyer', u'ask', u'usada', u'testimoni'] [u'justic', u'dept', u'happi', u'court', u'secur', u'servic'] [u'kakadu', u'swim', u'ludicr', u'say'] [u'lara', u'lead', u'windi', u'england'] [u'latvian', u'fan', u'hail', u'beat', u'hero'] [u'lawyer', u'say', u'hardi', u'wasnt', u'plan', u'remov', u'capit'] [u'lebanes', u'hostag', u'iraq', u'free', u'state'] [u'lee', u'vote', u'energi', u'plan'] [u'licenc', u'restor', u'faulti', u'speed', u'camera'] [u'lion', u'fin', u'peveril', u'incid'] [u'guilti', u'year', u'murder'] [u'jail', u'death', u'unborn', u'babi'] [u'man', u'resist', u'public', u'hang', u'hopoat'] [u'plead', u'guilti', u'horrif', u'rape', u'murder'] [u'plead', u'guilti', u'fraud'] [u'plead', u'guilti', u'attempt', u'murder', u'charg'] [u'court', u'bank', u'theft'] [u'maroon', u'come', u'thriller'] [u'mater', u'bundaberg', u'go', u'digit'] [u'mccaw', u'remain', u'doubt', u'england', u'test'] [u'mcewen', u'win', u'swiss', u'tour', u'fourth', u'stage'] [u'medic', u'famili', u'seek', u'perman', u'resid'] [u'miner', u'council', u'back', u'energi', u'packag'] [u'minist', u'offer', u'gold', u'assur'] [u'minist', u'examin', u'diabet', u'concess', u'card'] [u'mitsubishi', u'await', u'rescu', u'packag', u'news'] [u'mix', u'reaction', u'budget', u'benefit'] [u'action', u'need', u'solomon', u'corrupt', u'polic'] [u'dengu', u'fever', u'case', u'townsvill'] [u'repair', u'rfds', u'lightn', u'damag', u'plane'] [u'teacher', u'industri', u'unrest', u'loom'] [u'mortlock', u'waugh', u'wallabi'] [u'mother', u'admit', u'shake', u'babi', u'rage', u'court'] [u'cast', u'doubt', u'energi', u'paper'] [u'question', u'school', u'support', u'staff', u'rise'] [u'welcom', u'road', u'fund'] [u'murder', u'teen', u'parent', u'welcom', u'move', u'open'] [u'muslim', u'communiti', u'isol', u'vulner', u'report'] [u'nauru', u'hunger', u'striker', u'urg', u'protest'] [u'iraqi', u'forc', u'buy', u'australian', u'plan'] [u'kill', u'west', u'iraq', u'blast', u'medic'] [u'budget', u'fund', u'cruis', u'ship', u'termin'] [u'sight', u'whoop', u'cough', u'outbreak'] [u'eye', u'wild', u'food', u'export', u'industri'] [u'oppn', u'seek', u'polic', u'minist', u'resign', u'speed'] [u'opposit', u'call', u'junk', u'food'] [u'origin', u'kick'] [u'pacif', u'island', u'coach', u'focus', u'disciplin'] [u'pair', u'drug', u'charg', u'refus', u'bail'] [u'paper', u'tip', u'boost', u'local', u'economi'] [u'patient', u'urg', u'hospit', u'servic'] [u'perth', u'escap', u'suspect', u'robberi'] [u'petrol', u'ethanol', u'see', u'right', u'brazil'] [u'piston', u'crush', u'laker', u'claim', u'championship'] [u'hit', u'energi', u'plan', u'oppon'] [u'polic', u'chief', u'discuss', u'superintend', u'futur'] [u'polic', u'consid', u'industri', u'action', u'number'] [u'polic', u'investig', u'attempt', u'shoot'] [u'polic', u'probe', u'multipl', u'store', u'theft'] [u'polic', u'seiz', u'item', u'trigo', u'jorf', u'death'] [u'polic', u'stress', u'speed', u'messag'] [u'probe', u'begin', u'shop', u'centr'] [u'properti', u'fire', u'stretch', u'volunt'] [u'public', u'urg', u'help', u'miss', u'teen'] [u'pub', u'club', u'audit', u'crime', u'program'] [u'quick', u'blow', u'fast', u'cop'] [u'rann', u'warn', u'commonwealth', u'stay', u'wast', u'dump', u'site'] [u'region', u'work'] [u'rehhagel', u'accept', u'greek', u'plaudit'] [u'relax', u'prepar', u'make', u'happi', u'swedish', u'squad'] [u'request', u'ombudsman', u'phone', u'tap', u'power', u'deni'] [u'rescuer', u'work', u'save', u'strand', u'whale'] [u'research', u'benefit', u'fellowship'] [u'review', u'look', u'child', u'lead', u'exposur', u'program'] [u'rusedski', u'brink', u'nottingham'] [u'russia', u'richest', u'go', u'trial'] [u'russia', u'richest', u'trial'] [u'oppn', u'highlight', u'indigen', u'wind', u'farm', u'worri'] [u'saudi', u'arabia', u'bump', u'output', u'capac'] [u'saudi', u'refus', u'qaeda', u'kidnap', u'demand'] [u'schalken', u'make', u'earli', u'exit', u'amsterdam'] [u'school', u'face', u'industri', u'unrest'] [u'scot', u'appeal', u'grime', u'trampl'] [u'scuba', u'diver', u'death', u'investig'] [u'chang', u'bring', u'jobless', u'downsid'] [u'search', u'west', u'diamond'] [u'sept', u'theme', u'screen'] [u'shed', u'blaze', u'consid', u'suspici'] [u'smart', u'hang', u'boot'] [u'soft', u'soft', u'approach', u'tip', u'rat'] [u'solar', u'tower', u'develop', u'unhappi', u'energi', u'white'] [u'spanish', u'admit', u'raul', u'bench'] [u'spanish', u'commiss', u'probe', u'madrid', u'bomb'] [u'spanish', u'judg', u'charg', u'attack'] [u'state', u'urg', u'agre', u'murray', u'darl', u'rescu'] [u'support', u'famili', u'prison', u'lack', u'committe'] [u'swiss', u'face', u'england', u'backlash'] [u'swiss', u'readi', u'rise', u'challeng'] [u'sydney', u'tunnel', u'reach', u'mileston'] [u'takeov', u'aston', u'villa', u'fail'] [u'talk', u'focus', u'climat', u'chang', u'catchment', u'impact'] [u'telstra', u'lead', u'share', u'market', u'record', u'close'] [u'territori', u'announc', u'home', u'loan', u'help'] [u'thai', u'troop', u'leav', u'iraq', u'septemb'] [u'tougher', u'restrict', u'outlin', u'philippin'] [u'tourism', u'budget', u'fund', u'fail', u'impress'] [u'tour', u'reel', u'dope', u'cloud'] [u'train', u'injuri', u'rule', u'butt', u'england'] [u'union', u'hop', u'guid', u'bridg', u'cultur'] [u'univers', u'make', u'offer'] [u'deputi', u'defenc', u'secretari', u'arriv', u'iraq'] [u'vanuatu', u'offer', u'west', u'papuan', u'peac', u'talk'] [u'vesta', u'reconsid', u'wynyard', u'turbin', u'plant'] [u'view', u'buy', u'bronzew', u'gold'] [u'violenc', u'erupt', u'portug'] [u'whale', u'rescu', u'attempt', u'abandon'] [u'whale', u'rescu', u'begin', u'tasmania'] [u'whale', u'trap', u'cray', u'line'] [u'wild', u'hors', u'cull', u'nation', u'park'] [u'william', u'rule', u'lanka', u'test'] [u'wind', u'farm', u'ahead', u'despit', u'govt', u'plan'] [u'wine', u'grape', u'grower', u'form', u'price', u'polici', u'lobbi'] [u'wine', u'region', u'seek', u'diseas', u'free', u'declar'] [u'woman', u'face', u'drug', u'traffic', u'charg'] [u'workload', u'prompt', u'communiti', u'servic', u'staff', u'strike'] [u'young', u'wallabi', u'trounc', u'tonga'] [u'board', u'member', u'warn', u'fragment'] [u'aborigin', u'hit', u'state', u'atsic'] [u'access', u'smoke', u'criticis', u'report'] [u'teacher', u'like', u'accept', u'offer'] [u'administr', u'caravan', u'park'] [u'afghan', u'polic', u'arrest', u'child', u'kidnapp'] [u'accus', u'neglect', u'bush'] [u'agreement', u'enabl', u'aborigin', u'control', u'research'] [u'albani', u'court', u'clerk', u'defend', u'aim', u'servic'] [u'alleg', u'babi', u'killer', u'hear', u'postpon'] [u'ord', u'continu', u'break', u'record'] [u'ord', u'hit', u'record', u'high'] [u'anxious', u'wait', u'injur', u'black', u'mccaw'] [u'applic', u'seek', u'melbourn', u'radio', u'licenc'] [u'archbishop', u'write', u'letter', u'support', u'accus'] [u'argentin', u'collaps', u'kill'] [u'aust', u'indonesia', u'meet', u'counter', u'terror'] [u'bail', u'refus', u'accus', u'bank', u'robber'] [u'banana', u'import', u'restrict', u'delay', u'inevit', u'grower'] [u'beaut', u'bloke', u'planner', u'feast', u'prime', u'malle'] [u'belgium', u'dutroux', u'guilti', u'crime', u'case'] [u'benitez', u'unveil', u'liverpool', u'manag'] [u'bird', u'feather', u'flock', u'rocki'] [u'blair', u'blast', u'shame', u'hooligan'] [u'boati', u'herd', u'whale', u'harbour'] [u'boati', u'urg', u'marin', u'mainten', u'project'] [u'boati', u'warn', u'get', u'close', u'whale'] [u'bolkus', u'trade', u'ballot', u'bouzouki'] [u'britain', u'consid', u'human', u'clone', u'request'] [u'bushfir', u'inquest', u'find', u'delay'] [u'rent', u'repriev', u'drought', u'grazier'] [u'chief', u'magistr', u'legal', u'action', u'cost'] [u'generat', u'project', u'negoti', u'near', u'complet'] [u'concern', u'terror', u'sentenc', u'law'] [u'corrupt', u'watchdog', u'overse', u'public', u'servic'] [u'council', u'staff', u'decid', u'offer'] [u'court', u'hear', u'stepdaught', u'threat', u'millionair'] [u'trial', u'test', u'buri'] [u'custom', u'complaint', u'airlin', u'soar', u'nqca'] [u'deakin', u'move', u'curtail', u'drop', u'rate'] [u'death', u'toll', u'rise', u'baghdad', u'bomb'] [u'democrat', u'welcom', u'plan', u'super', u'chang'] [u'pedro', u'sign', u'blackburn'] [u'disciplinari', u'action', u'recommend', u'child'] [u'discoveri', u'marbl', u'gene', u'boost', u'cattl'] [u'discrimin', u'isol', u'muslim', u'australian'] [u'doubt', u'rais', u'contract'] [u'warn', u'high', u'grade', u'damag', u'fish', u'stock'] [u'eddi', u'doubl', u'magpi', u'fine'] [u'england', u'boost', u'schole', u'join', u'train'] [u'england', u'hand', u'year', u'portuges', u'jail', u'term'] [u'england', u'unhappi', u'frustrat', u'test', u'build', u'say'] [u'evolut', u'theori', u'breed', u'better', u'car'] [u'farmer', u'welcom', u'chang', u'calm', u'prosecut'] [u'feather', u'dead', u'peac', u'dive', u'lanka'] [u'feder', u'serena', u'wimbledon', u'seed'] [u'australian', u'cashew', u'crop', u'plant'] [u'fittler', u'unsur', u'origin'] [u'ford', u'recal', u'car', u'possibl', u'steer', u'problem'] [u'apex', u'member', u'charg', u'child', u'offenc'] [u'garrett', u'nomin', u'kingsford', u'smith'] [u'gidley', u'saddl', u'knight'] [u'glenelg', u'redevelop', u'stop', u'say', u'govt'] [u'global', u'warm', u'tip', u'produc', u'citi', u'night'] [u'gould', u'want', u'origin', u'sack'] [u'gould', u'want', u'refere', u'sack'] [u'govt', u'claim', u'success', u'reduc', u'wait', u'list'] [u'govt', u'dismiss', u'plan', u'food', u'fist'] [u'govt', u'help', u'electrolux', u'worker', u'face'] [u'govt', u'decis', u'restrict', u'contracept', u'condemn'] [u'govt', u'introduc', u'free', u'trade', u'legisl'] [u'govt', u'support', u'brown', u'coal', u'energi'] [u'govt', u'urg', u'better', u'protect', u'launceston', u'water'] [u'govt', u'urg', u'releas', u'area', u'health', u'servic'] [u'grang', u'fetch', u'record', u'price'] [u'greek', u'hold', u'spanish', u'draw'] [u'gungahlin', u'drive', u'vandal', u'report', u'investig'] [u'hawk', u'boss', u'step'] [u'hazard', u'highway', u'tree'] [u'hazzard', u'light', u'mile', u'franklin', u'judg', u'fire'] [u'healthi', u'outlook', u'push', u'dollar', u'higher'] [u'hepat', u'inquiri', u'deliv', u'find'] [u'hepat', u'inquiri', u'rule', u'compo', u'increas'] [u'develop', u'confid', u'project', u'concern', u'address'] [u'high', u'court', u'uphold', u'chief', u'magistr', u'appoint'] [u'highway', u'block', u'spontan', u'protest'] [u'hill', u'admit', u'know', u'amnesti', u'concern'] [u'hill', u'call', u'asia', u'pacif', u'breed', u'grind'] [u'hill', u'forgiv', u'depart', u'keep'] [u'histor', u'homestead', u'destroy'] [u'histor', u'strike', u'equal', u'right', u'rememb'] [u'hockeyroo', u'kiwi'] [u'hoogi', u'festiv', u'stall', u'follow', u'financi', u'loss'] [u'hop', u'wind', u'chang', u'shift', u'whale'] [u'hospit', u'equip', u'birth', u'complic'] [u'host', u'russia', u'euro', u'campaign'] [u'hungari', u'lose', u'soldier', u'violenc', u'iraq'] [u'hunter', u'bag', u'swiss', u'stage', u'ullrich', u'keep', u'lead'] [u'hydro', u'deter', u'retreat', u'energi', u'target'] [u'hype', u'project', u'target', u'juvenil', u'crime', u'rate'] [u'iemma', u'unveil', u'vamp', u'health', u'servic'] [u'illeg', u'worker', u'arrest', u'mildura'] [u'form', u'field', u'leav', u'open', u'wide', u'open'] [u'inject', u'put', u'stop', u'infidel', u'vole'] [u'inquest', u'continu', u'post', u'natal', u'death'] [u'inquiri', u'child', u'protect', u'requir', u'say'] [u'inquiri', u'investig', u'minist', u'oppn', u'claim'] [u'inter', u'island', u'endang', u'bandicoot'] [u'investor', u'seek', u'recoup', u'money', u'mortgag', u'scheme'] [u'iran', u'threaten', u'resum', u'uranium', u'enrich'] [u'iraq', u'rocket', u'attack', u'kill', u'soldier'] [u'isra', u'collabor', u'help', u'melbourn', u'hospit'] [u'itali', u'face', u'swede', u'talisman', u'totti'] [u'jackson', u'pay', u'million', u'accus', u'leak'] [u'japanes', u'seek', u'support', u'iraq', u'deploy'] [u'jone', u'demand', u'public', u'dope', u'inquiri'] [u'jone', u'expect', u'wallabi', u'lift'] [u'kcgm', u'buy', u'time'] [u'kiwi', u'slump'] [u'knee', u'injuri', u'leav', u'olymp', u'softbal', u'shatter'] [u'landhold', u'warn', u'strychnin', u'danger'] [u'landown', u'protest', u'dogmen', u'remov'] [u'leagu', u'return', u'break', u'hill'] [u'busi', u'help', u'space', u'drive', u'bush', u'tell'] [u'lion', u'pick', u'doctor', u'downfal'] [u'lobster', u'fisherman', u'push', u'financi'] [u'mall', u'inspect', u'tour', u'prove', u'worthwhil'] [u'accus', u'child', u'abus', u'grant', u'bail'] [u'charg', u'woman', u'attack'] [u'charg', u'bank', u'fraud'] [u'man', u'sentenc', u'reduc', u'aborigin'] [u'mauresmo', u'stroll', u'eastbourn', u'grass'] [u'meet', u'call', u'disput'] [u'middl', u'eastern', u'royal', u'prefer', u'aust'] [u'minist', u'accus', u'bungl', u'fast', u'rail', u'project'] [u'minist', u'defend', u'prison', u'escap', u'rate'] [u'miss', u'bushwalk'] [u'monash', u'shooter', u'guilti', u'mental', u'impair'] [u'lift', u'open', u'hotham', u'snowfal'] [u'kill', u'baghdad', u'armi', u'base', u'explos'] [u'defend', u'school', u'fund'] [u'murray', u'scot', u'grime', u'lose', u'trampl'] [u'nato', u'chief', u'leav', u'door', u'open', u'iraq', u'role'] [u'navratilova', u'confirm', u'wimbledon', u'return'] [u'nelson', u'criticis', u'tafe', u'increas'] [u'ambassador', u'japan', u'asia', u'specialist'] [u'ambul', u'station', u'gemfield'] [u'artist', u'modern'] [u'target', u'terrorist', u'associ'] [u'law', u'outlaw', u'biodiesel', u'home', u'brew'] [u'method', u'predict', u'speed', u'biolog', u'clock'] [u'abl', u'send', u'digit', u'fingerprint'] [u'test', u'check', u'champagn', u'bona', u'fide'] [u'govt', u'examin', u'damn', u'corrupt', u'report'] [u'rugbi', u'wont', u'rule', u'john'] [u'film', u'director', u'base', u'alic'] [u'olymp', u'coverag', u'gender', u'bias', u'spotlight'] [u'onlin', u'auction', u'help', u'stricken', u'policewoman'] [u'opal', u'win', u'start'] [u'opal', u'test', u'young', u'gun'] [u'analys', u'wood', u'seek', u'elus', u'major'] [u'patient', u'benefit', u'machin'] [u'peopl', u'traffick', u'target', u'fight'] [u'petit', u'protest', u'fund'] [u'pie', u'learn', u'sponsorship', u'fate', u'today'] [u'flag', u'defenc', u'dept', u'chang', u'wake', u'abus'] [u'minist', u'stop', u'chines', u'gain', u'citizenship'] [u'polic', u'commend', u'prevent', u'suicid'] [u'polic', u'head', u'program'] [u'polic', u'hold', u'gangland', u'investig'] [u'polic', u'hope', u'breakthrough', u'perth', u'kill'] [u'polic', u'investig', u'meteorit', u'report'] [u'polic', u'program', u'target', u'alcohol', u'relat', u'crime'] [u'polic', u'raid', u'net', u'dinosaur', u'fossil', u'worth', u'million'] [u'pressur', u'mount', u'govt', u'rehab', u'unit'] [u'prison', u'group', u'welcom', u'report', u'find'] [u'protest', u'prepar', u'bulldoz', u'return'] [u'protest', u'whale', u'chief', u'disrupt', u'captur'] [u'raaf', u'hercul', u'make', u'emerg', u'land'] [u'racetrack', u'propon', u'welcom', u'govt', u'decis'] [u'rain', u'respons', u'bumper', u'grape', u'crop'] [u'report', u'casualti', u'latest', u'baghdad', u'blast'] [u'resid', u'help', u'polic', u'burglari', u'rate'] [u'servic', u'region', u'rout'] [u'roch', u'appeal', u'jail', u'sentenc'] [u'rooster', u'sign', u'firman', u'shore', u'halv'] [u'rusedski', u'paradorn', u'nottingham'] [u'russia', u'boost', u'militari', u'spend'] [u'saint', u'collingwood', u'push', u'good', u'friday', u'game'] [u'polic', u'laser', u'target', u'tailgat'] [u'scientist', u'home', u'platypus', u'radar'] [u'search', u'fail', u'need', u'help'] [u'search', u'fail', u'meteorit'] [u'search', u'trap', u'whale', u'call'] [u'search', u'resum', u'miss', u'hiker'] [u'secur', u'camera', u'moot', u'main', u'street'] [u'senat', u'push', u'renew', u'energi', u'target', u'increas'] [u'sept', u'plot', u'split', u'qaeda'] [u'sept', u'report', u'destroy', u'argument', u'iraq'] [u'knee', u'injuri', u'leav', u'olymp', u'softbal'] [u'shinnecock', u'wind', u'blow', u'open', u'hope', u'away'] [u'slow', u'start', u'scallop', u'season'] [u'sponsor', u'put', u'pie', u'notic'] [u'steal', u'paint', u'garag'] [u'submiss', u'seek', u'bushfir', u'coroni', u'inquiri'] [u'sugar', u'cane', u'trial', u'provid', u'altern', u'incom'] [u'sugar', u'industri'] [u'super', u'wheat', u'beat', u'weed'] [u'teen', u'girl', u'arrest', u'suicid', u'bomb', u'plot'] [u'teleport', u'offer', u'supercomput', u'hope'] [u'thai', u'group', u'replac', u'liverpool'] [u'seed', u'fall', u'holland'] [u'tourist', u'vehicl', u'break', u'desert'] [u'charg', u'underworld', u'investig'] [u'dead', u'sydney', u'shoot'] [u'understaf', u'blame', u'bank', u'queue'] [u'union', u'back', u'princip', u'rise', u'current', u'work'] [u'union', u'secretari', u'tip', u'replac', u'senat', u'bolkus'] [u'union', u'tip', u'loss', u'uni'] [u'offer', u'mildura', u'campus'] [u'univers', u'freez', u'hec', u'fee'] [u'issu', u'indonesia', u'travel', u'warn'] [u'label', u'freez', u'chip', u'fresh', u'veggi'] [u'open', u'hole', u'hole'] [u'soldier', u'charg', u'fatal', u'iraq', u'shoot'] [u'victorian', u'want', u'corrupt', u'commiss', u'poll', u'find'] [u'opposit', u'keep', u'pressur', u'minist'] [u'weather', u'warn', u'driver'] [u'whale', u'swim', u'freeli', u'harbour'] [u'william', u'trial', u'face', u'delay'] [u'wineri', u'cautious', u'orang', u'plan'] [u'woman', u'kidnap', u'knifepoint'] [u'woman', u'question', u'cabramatta', u'death'] [u'woolmer', u'replac', u'miandad', u'pakistan', u'coach'] [u'world', u'meat', u'congress', u'stag', u'brisban'] [u'young', u'women', u'confid', u'financi', u'futur'] [u'alloc', u'industri', u'park', u'work'] [u'rate', u'rise', u'latrob', u'draft', u'budget'] [u'accid', u'spark', u'number', u'probe'] [u'afghan', u'kill', u'foreign', u'troop', u'hurt', u'attack'] [u'conclud', u'leak', u'investig'] [u'black', u'mccaw', u'doubt', u'england', u'test'] [u'ordinari', u'finish', u'close', u'high'] [u'branch', u'oppos', u'health', u'merger'] [u'anthrax', u'kill', u'eleph', u'infect'] [u'apec', u'meet', u'finish', u'indigen', u'declar'] [u'arm', u'bandit', u'target', u'wollongong', u'hotel'] [u'move', u'ensur', u'game', u'futur'] [u'atsic', u'fund', u'court', u'fight', u'unaccept', u'minist'] [u'atsic', u'meet', u'discuss', u'indigen', u'represent'] [u'australia', u'boost', u'sudan'] [u'australian', u'agricultur', u'invent', u'win'] [u'back', u'user', u'pay', u'water'] [u'weather', u'hamper', u'whale', u'rescu', u'effort'] [u'bangladeshi', u'farmer', u'prais', u'magic', u'trap'] [u'belgian', u'newspap', u'devot', u'space', u'rape', u'murder'] [u'berri', u'riverland', u'job'] [u'bone', u'teeth', u'metal', u'ancient', u'tomb'] [u'builder', u'group', u'criticis', u'darwin', u'train'] [u'better', u'women', u'sport', u'facil'] [u'men', u'health', u'scheme', u'fund'] [u'gambl', u'counsel', u'fund'] [u'consid', u'local', u'govt', u'revenu', u'rais', u'option'] [u'waiv', u'leas', u'payment'] [u'casino', u'staff', u'hobart', u'consid', u'strike'] [u'central', u'bushfir', u'threat', u'eas'] [u'central', u'hop', u'natur', u'connect'] [u'ceremoni', u'mark', u'bauxit', u'arriv', u'gladston'] [u'channel', u'warn', u'breach', u'foreign', u'control'] [u'child', u'abus', u'report', u'releas'] [u'childcar', u'centr', u'plan', u'cessnock'] [u'childless', u'coupl', u'rise', u'dramat', u'come'] [u'child', u'prostitut', u'claim', u'investig'] [u'church', u'tribun', u'tell', u'priest'] [u'coff', u'fluorid', u'plan', u'move', u'ahead'] [u'cole', u'chelsea', u'return'] [u'communiti', u'back', u'petrol', u'station'] [u'compani', u'chang', u'supermarket', u'land', u'deadlin'] [u'concern', u'represent', u'compo', u'claim'] [u'coria', u'appoint', u'coach', u'report'] [u'coria', u'grab', u'second', u'grass'] [u'council', u'allianc', u'promis', u'save'] [u'council', u'back', u'perman', u'water'] [u'council', u'put', u'bite', u'irrespons', u'owner'] [u'council', u'urg', u'lessen', u'public', u'hous', u'rat'] [u'court', u'uphold', u'claim', u'yuko'] [u'croatia', u'wari', u'rooney', u'threat'] [u'burk', u'spark', u'chainsaw', u'safeti'] [u'deadlin', u'near', u'hostag', u'saudi'] [u'death', u'tribal', u'leader', u'import', u'success', u'pakistani'] [u'deftero', u'surrend', u'certif'] [u'deja', u'go', u'come'] [u'dept', u'say', u'region', u'plan'] [u'deputi', u'mayor', u'lament', u'vet', u'wall', u'locat'] [u'donkey', u'origin', u'reveal'] [u'dont', u'risk', u'babi', u'life', u'bonus', u'abbott', u'say'] [u'door', u'snake', u'confound', u'parliamentari', u'committe'] [u'doubt', u'cast', u'fish', u'payment', u'claim'] [u'dragon', u'head'] [u'dreamtim', u'film', u'splash'] [u'drive', u'shoot', u'hit', u'fenech', u'home'] [u'dutch', u'run', u'scar', u'advocaat'] [u'east', u'counter', u'west', u'iraqi'] [u'welcom', u'loom', u'iraq', u'handov'] [u'eyr', u'highway', u'reopen', u'accid'] [u'fan', u'line', u'farewel', u'genius', u'soul'] [u'farmer', u'voic', u'wild', u'worri'] [u'fast', u'food', u'fine', u'moder', u'say'] [u'fear', u'tafe', u'rise', u'deter', u'student'] [u'feder', u'hewitt', u'face', u'potenti', u'wimbledon', u'showdown'] [u'ferrari', u'voic', u'qualifi', u'concern'] [u'fisher', u'fin', u'abalon'] [u'fisher', u'warn', u'outlet', u'pip'] [u'armstrong', u'masseus', u'reaffirm', u'dope', u'claim'] [u'athlet', u'appeal', u'decis'] [u'frawley', u'welcom', u'tiger'] [u'freddi', u'fire', u'rooster', u'lead'] [u'free', u'trade', u'wont', u'affect', u'drug', u'price', u'govt', u'say'] [u'frog', u'studi', u'help', u'cattl', u'industri'] [u'plan', u'creat', u'strong', u'region'] [u'gay', u'welcom', u'committe', u'recommend'] [u'gaza', u'moat', u'plan', u'aim', u'stop', u'weapon', u'smuggl'] [u'gibson', u'top', u'forb', u'power', u'celebr', u'list'] [u'gidley', u'tip', u'boost', u'knight', u'chanc'] [u'good', u'feedback', u'albani', u'fisheri', u'patrol', u'base', u'plan'] [u'goorjian', u'sign', u'king', u'deal'] [u'govt', u'back', u'tafe', u'fund', u'record'] [u'govt', u'defend', u'destruct', u'indonesian', u'fish'] [u'govt', u'postpon', u'test', u'radioact', u'wast', u'dump'] [u'govt', u'stand', u'firm', u'teacher', u'rise', u'condit'] [u'govt', u'urg', u'releas', u'dump', u'sit', u'data'] [u'govt', u'consid', u'independ', u'child', u'protect'] [u'gregan', u'warn', u'scot'] [u'harri', u'opt', u'return', u'leagu'] [u'hawk', u'cling', u'shock', u'lead'] [u'hawk', u'embarrass', u'ladder', u'posit'] [u'hawk', u'race', u'shock', u'lead'] [u'high', u'price', u'lead', u'slump', u'sheep', u'industri'] [u'hogg', u'resign', u'boss'] [u'hoon', u'affect', u'bunburi', u'busi'] [u'howard', u'back', u'nation', u'paedophil', u'law'] [u'imelda', u'ask', u'court', u'documentari'] [u'inquiri', u'look', u'fatal', u'accid'] [u'investig', u'continu', u'recov', u'paint'] [u'reopen', u'teacher', u'wage', u'case'] [u'irrig', u'want', u'independ', u'water', u'probe'] [u'island', u'council', u'audit', u'rais', u'manag', u'concern'] [u'isra', u'armi', u'unit', u'stand', u'kill'] [u'itali', u'decid', u'totti', u'appeal'] [u'japan', u'clear', u'multin', u'iraq', u'forc'] [u'take', u'hervey'] [u'jone', u'pass', u'polygraph', u'test', u'demand', u'exoner'] [u'kafelnikov', u'abandon', u'tenni', u'racket', u'golf', u'club'] [u'knight', u'lose', u'gidley', u'rooster', u'clash'] [u'labor', u'pledg', u'resum', u'detent', u'centr', u'control'] [u'lake', u'recharg', u'land', u'hydro', u'water'] [u'lawyer', u'futur', u'hang', u'balanc', u'conspiraci'] [u'lebanes', u'hostag', u'free', u'iraq'] [u'legal', u'action', u'take', u'stop', u'indigen', u'leav'] [u'letter', u'shock', u'interim', u'anglican', u'head'] [u'liverpool', u'fear', u'gerrard', u'departur'] [u'local', u'hero', u'win', u'tour', u'switzerland', u'sixth', u'stage'] [u'accus', u'author', u'caus', u'terror'] [u'extradit', u'face', u'child', u'charg'] [u'melbourn', u'circus', u'centr'] [u'mine', u'rescu', u'team', u'prove', u'abil'] [u'minist', u'issu', u'weed', u'warn'] [u'minist', u'oppos', u'broom', u'school', u'plan'] [u'murali', u'hatr', u'australian'] [u'murder', u'victim', u'father', u'welcom', u'investig', u'review'] [u'nat', u'accus', u'govt', u'fund', u'obscen'] [u'navi', u'rescu', u'trio', u'life', u'raft'] [u'environ', u'manag', u'appoint', u'troubl'] [u'presid', u'elect', u'wiluna', u'council'] [u'zealand', u'issu', u'athen', u'travel', u'warn'] [u'charg', u'lay', u'euthanasia', u'death'] [u'tourist', u'fin', u'breach', u'aborigin', u'alcohol'] [u'suicid', u'rat', u'higher', u'nation'] [u'vote', u'kissabl', u'woman'] [u'offic', u'felt', u'pressur', u'ghraib', u'report'] [u'chief', u'rais', u'greenhous', u'fear'] [u'olymp', u'cyclist', u'dope', u'claim'] [u'goal', u'doubt', u'rooney', u'strike'] [u'perth', u'coupl', u'lose', u'home', u'drug', u'convict'] [u'perth', u'extradit', u'sexual', u'assault', u'charg'] [u'plan', u'promis', u'hospit', u'benefit'] [u'plan', u'moot', u'tweed', u'brand'] [u'total', u'confid', u'hill'] [u'argu', u'continu', u'presenc', u'iraq'] [u'polic', u'call', u'british', u'brother', u'blue'] [u'polic', u'defend', u'drug', u'prevent', u'strategi'] [u'polic', u'poser', u'fremantl', u'jewel'] [u'polic', u'quiz', u'group', u'steal', u'cezann'] [u'polic', u'rethink', u'resourc', u'distribut'] [u'polic', u'hunt', u'attempt', u'hold'] [u'polic', u'crack', u'hoon'] [u'prison', u'escap', u'hospit'] [u'protest', u'polic', u'stand', u'develop'] [u'govt', u'steal', u'wag', u'talk'] [u'queanbeyan', u'defenc', u'base', u'plan', u'examin'] [u'raid', u'illeg', u'plant', u'anim', u'product'] [u'railway', u'sleeper', u'stop', u'train'] [u'rain', u'bolster', u'grain', u'farmer', u'hop'] [u'region', u'nomin', u'seek', u'export', u'award'] [u'report', u'highlight', u'sept', u'chao'] [u'revamp', u'plan', u'armidal'] [u'rooster', u'blitz', u'injuri', u'knight'] [u'russia', u'warn', u'saddam'] [u'saint', u'storm'] [u'saint', u'storm', u'sink', u'hawk'] [u'samo', u'sign', u'brumbi', u'deal'] [u'santini', u'order', u'franc', u'wake'] [u'oppn', u'air', u'court', u'sentenc', u'concern'] [u'park', u'consid', u'seagul', u'cull'] [u'scheme', u'aim', u'address', u'trust', u'fund', u'woe'] [u'schumach', u'pledg', u'indi'] [u'scientist', u'discov', u'prehistor', u'ratfish'] [u'senat', u'confirm', u'greenspan', u'fifth', u'term'] [u'kill', u'iraq', u'clash'] [u'shire', u'urg', u'fight', u'water', u'rat', u'model'] [u'smoke', u'alarm', u'need', u'hear', u'impair', u'coron'] [u'snow', u'fall', u'extra', u'strain', u'stock'] [u'guilti', u'manslaught', u'mother', u'stab'] [u'south', u'korean', u'troop', u'deploy', u'iraq', u'august'] [u'spain', u'abandon', u'ambiti', u'river', u'plan'] [u'status', u'influenc', u'block', u'newspap'] [u'helen', u'pair', u'ban', u'bet'] [u'studi', u'consid', u'lobster', u'chang', u'impact'] [u'sullivan', u'take', u'round', u'lead', u'franc'] [u'support', u'stay', u'connect', u'scheme'] [u'survey', u'find', u'fish', u'sell', u'legal', u'size'] [u'swiss', u'star', u'write', u'predict', u'england'] [u'sydney', u'school', u'shoot', u'leav', u'girl', u'hospit'] [u'princip', u'happi', u'state', u'dept', u'survey'] [u'teacher', u'talk', u'deadlock'] [u'telstra', u'reach', u'deal', u'reach', u'debt'] [u'moana', u'prepar', u'red', u'debut'] [u'tendulkar', u'feel', u'strain', u'long', u'career'] [u'terror', u'suspect', u'remain', u'free', u'pend', u'bail', u'appeal'] [u'theophan', u'fail', u'clear', u'corrupt'] [u'thiev', u'urg', u'return', u'vital', u'equip', u'hospit'] [u'thoma', u'dismiss', u'saint', u'slump', u'talk'] [u'charg', u'drug', u'haul'] [u'iraqi', u'civilian', u'wound', u'roadsid', u'bomb'] [u'stand', u'trial', u'slaveri'] [u'tiger', u'play', u'richo', u'fear'] [u'timelin', u'sept', u'attack', u'respons'] [u'tourist', u'bridg', u'death', u'mysteri'] [u'perth', u'escap', u'recaptur', u'larg'] [u'uefa', u'charg', u'pile', u'miseri', u'russia'] [u'uncertainti', u'olymp', u'region', u'coverag'] [u'chief', u'oppos', u'crime', u'immun'] [u'condemn', u'colombian', u'coca', u'farmer', u'massacr'] [u'union', u'air', u'hec', u'fear'] [u'wrap', u'iran', u'nuclear', u'stanc'] [u'central', u'command', u'admit', u'shortcom', u'iraq'] [u'senat', u'back', u'increas', u'armi', u'troop', u'strength'] [u'opposit', u'concern', u'number', u'train'] [u'vietnames', u'get', u'year', u'thailand', u'bomb', u'plot'] [u'lawyer', u'indigen', u'consider'] [u'welfar', u'group', u'foreign', u'bet'] [u'western', u'endur', u'cold', u'snap'] [u'whitak', u'predict', u'tough', u'pacif', u'challeng'] [u'william', u'doubl'] [u'william', u'sister', u'want'] [u'wind', u'farm', u'plan', u'moot', u'guyraglen', u'inn', u'region'] [u'withdraw', u'increas', u'local', u'terror', u'risk'] [u'woman', u'charg', u'stalk', u'actress', u'catherin', u'zeta'] [u'women', u'urg', u'delay', u'breast', u'check'] [u'woodward', u'laugh', u'player', u'discont', u'claim'] [u'woolmer', u'want', u'miandad', u'help'] [u'haitian', u'demand', u'aristid', u'return'] [u'accus', u'soccer', u'hooligan', u'return', u'home'] [u'school', u'tech', u'upgrad'] [u'adelaid', u'polic', u'investig', u'suspici', u'death'] [u'black', u'whitewash', u'england'] [u'celebr', u'affirm', u'action', u'anniversari'] [u'qaeda', u'chief', u'kill', u'contractor', u'behead'] [u'anglican', u'church', u'adelaid', u'apologis', u'sexual'] [u'anglican', u'synod', u'address', u'victim', u'interest', u'rann'] [u'aphrodit', u'head', u'line', u'honour', u'bird', u'race'] [u'armstrong', u'want', u'dope', u'denial', u'book'] [u'astronaut', u'moon', u'daughter', u'birth'] [u'iraqi', u'kill', u'strike', u'report'] [u'atsic', u'employe', u'fear', u'job'] [u'australia', u'lead', u'scot', u'sydney'] [u'australia', u'commit', u'missil', u'defenc', u'program'] [u'aust', u'commit', u'star', u'war'] [u'boss', u'condemn', u'qualifi', u'rule'] [u'barrichello', u'beat', u'schu', u'practic'] [u'beach', u'whale', u'free'] [u'benitez', u'hail', u'fantast', u'ciss'] [u'blue', u'trot'] [u'bono', u'breach', u'irish', u'smoke'] [u'brazil', u'foot', u'mouth', u'diseas'] [u'british', u'minist', u'see', u'constitut', u'deal', u'soon'] [u'bronco', u'grind', u'tough', u'eel'] [u'bronco', u'lead', u'eel', u'half', u'time', u'rabbitoh', u'leap'] [u'bulldog', u'hold', u'narrow', u'lead', u'raider'] [u'bulldog', u'hold', u'narrow', u'raider'] [u'burmes', u'democraci', u'icon', u'mark', u'birthday'] [u'charg', u'winona', u'ryder', u'reduc'] [u'chelsea', u'gronkjaer', u'birmingham'] [u'clapton', u'auction', u'guitar', u'benefit', u'rehab'] [u'clean', u'continu', u'adelaid', u'storm'] [u'commemor', u'number', u'plat', u'releas'] [u'construct', u'firm', u'seal', u'defenc', u'deal'] [u'level', u'continu', u'drop'] [u'disgrac', u'helen', u'pair', u'face', u'financi', u'miseri'] [u'dont', u'condemn', u'accus', u'lawyer', u'institut'] [u'dozen', u'bust', u'freeway', u'booz'] [u'egyptian', u'striker', u'mido', u'want', u'magpi'] [u'timor', u'daughter', u'graduat', u'darwin'] [u'clinch', u'histor', u'constitut', u'deal'] [u'summit', u'end', u'high'] [u'famili', u'bonus', u'payment', u'flow'] [u'feder', u'prison', u'land', u'offer', u'littl', u'late'] [u'fevola', u'boot', u'blue', u'half', u'time', u'lead'] [u'finmeccanica', u'alcatel', u'sign', u'space', u'allianc'] [u'flotilla', u'hope', u'mark', u'refuge'] [u'frawley', u'season'] [u'fremantl', u'hous', u'develop', u'delay'] [u'german', u'samurai', u'attack', u'hiker'] [u'greek', u'polic', u'bust', u'illeg', u'prostitut', u'ring'] [u'green', u'melbourn', u'candid', u'name'] [u'gronkjaer', u'help', u'kill', u'bulgaria', u'euro', u'dream'] [u'hantuchova', u'oust', u'mauresmo', u'eastbourn'] [u'harrow', u'break', u'nose', u'opal'] [u'hill', u'dismiss', u'censur', u'motion', u'ghraib'] [u'hous', u'slowdown', u'claim', u'agent'] [u'howard', u'hill', u'condemn', u'behead'] [u'hundr', u'protest', u'huge', u'taiwan', u'defenc', u'budget'] [u'hydro', u'tasmania', u'avoid', u'salt', u'lake', u'warn'] [u'india', u'pakistan', u'gear', u'histor', u'nuclear'] [u'indonesia', u'park', u'bar', u'tourist', u'rumbl', u'volcano'] [u'injur', u'blake', u'pull', u'wimbledon'] [u'iran', u'review', u'uranium', u'enrich', u'program'] [u'iraq', u'export', u'resum'] [u'israel', u'arrest', u'teenag', u'girl', u'plan'] [u'isra', u'helicopt', u'attack', u'gaza', u'strip'] [u'itali', u'gut', u'sweden', u'comeback'] [u'itali', u'school', u'foil', u'cheat', u'block', u'mobil'] [u'jackson', u'quit', u'laker', u'coach'] [u'judg', u'ax', u'galapago', u'cucumb', u'fish', u'law'] [u'kid', u'choos', u'fruit', u'offer', u'survey'] [u'lion', u'ahead', u'young', u'cat'] [u'liverpool', u'legend', u'thompson', u'leav', u'anfield'] [u'local', u'govern', u'warn', u'snap', u'audit'] [u'madonna', u'chang', u'esther'] [u'marathon', u'champ', u'support', u'junk', u'food'] [u'marshal', u'star', u'kiwi', u'tour'] [u'mickelson', u'surg', u'open', u'lead'] [u'blast', u'jolt', u'break', u'hill'] [u'england', u'fan', u'arrest', u'portug'] [u'nepal', u'rebel', u'attack', u'polic', u'patrol', u'kill', u'peopl'] [u'engin', u'boost', u'webber'] [u'newman', u'say', u'budget', u'consult', u'fine'] [u'nitschk', u'welcom', u'decis', u'prosecut', u'crick'] [u'proof', u'olymp', u'dope', u'claim', u'cycl', u'australia'] [u'constabl', u'die', u'patrol', u'accid'] [u'say', u'weed', u'need', u'greater', u'attent'] [u'olymp', u'prison', u'controversi', u'stir', u'greec'] [u'kill', u'fatal', u'road', u'accid'] [u'opal', u'seal', u'china', u'seri'] [u'paradorn', u'grasscourt', u'final'] [u'patterson', u'deni', u'homeless', u'fund', u'cut'] [u'philippin', u'journalist', u'kill'] [u'polic', u'breath', u'test', u'boat', u'owner'] [u'polic', u'finish', u'search', u'man', u'remain'] [u'polic', u'rescu', u'boat', u'sink', u'derwent'] [u'policewoman', u'serious', u'injur', u'crash'] [u'porn', u'scandal', u'film', u'domin', u'german', u'award'] [u'port', u'continu', u'subiaco', u'success'] [u'port', u'edg', u'docker', u'west'] [u'powel', u'condemn', u'behead', u'hostag'] [u'public', u'meet', u'hold', u'hospit', u'discuss'] [u'public', u'nolan', u'galleri'] [u'rail', u'union', u'say', u'hunter', u'job'] [u'rain', u'suspend', u'play', u'bosch'] [u'charl', u'mourn'] [u'rooney', u'keep', u'second', u'goal', u'swiss'] [u'russian', u'warn', u'saddam', u'puzzl'] [u'sadr', u'condemn', u'interim', u'govern', u'tie'] [u'sampra', u'comparison', u'feder'] [u'oppn', u'demand', u'better', u'facil', u'femal'] [u'saudi', u'arabia', u'arrest', u'milit'] [u'saudi', u'televis', u'show', u'footag', u'dead', u'qaeda'] [u'senat', u'want', u'histor', u'tree', u'stay'] [u'serga', u'killeen', u'share', u'lpga', u'lead'] [u'south', u'africa', u'coetzer', u'retir'] [u'south', u'home', u'man', u'cliffhang'] [u'south', u'home', u'man', u'cliff', u'hanger'] [u'space', u'shuttl', u'march', u'nasa'] [u'spain', u'scrap', u'controversi', u'water', u'project'] [u'spider', u'banana', u'bunch', u'bite'] [u'sprint', u'claim', u'world', u'speed', u'record', u'internet'] [u'strand', u'whale', u'face', u'fit', u'program'] [u'sudan', u'presid', u'order', u'darfur', u'crackdown', u'arm'] [u'suneson', u'swing', u'practic', u'pay', u'franc'] [u'suspici', u'white', u'powder', u'athen', u'rubbish'] [u'sweden', u'dent', u'itali', u'euro', u'hop'] [u'swift', u'defeat', u'firebird'] [u'send', u'smallgood', u'label', u'remind'] [u'tbird', u'inflict', u'swift', u'loss'] [u'think', u'tank', u'criticis', u'energi', u'packag'] [u'iraq', u'bomb', u'blast'] [u'tighten', u'militari', u'tie', u'tonga', u'china'] [u'triathlet', u'critic', u'injur', u'road', u'accid'] [u'trust', u'wrong', u'styx', u'valley', u'brown', u'say'] [u'tuqiri', u'grab', u'doubl', u'wallabi'] [u'aim', u'prove', u'olymp'] [u'ullrich', u'relinquish', u'tour', u'switzerland', u'lead'] [u'union', u'critic', u'latest', u'nurs', u'deal'] [u'seek', u'home', u'million', u'refuge'] [u'hostag', u'behead', u'saudi', u'arabia'] [u'sign', u'treati', u'save', u'titan'] [u'soldier', u'kill', u'contractor', u'wound', u'iraq'] [u'soldier', u'kill', u'baghdad'] [u'stock', u'quiet', u'ahead', u'announc'] [u'trade', u'deficit', u'explod', u'record'] [u'vatican', u'disappoint', u'christian', u'root'] [u'vaughan', u'call', u'unit', u'test', u'team'] [u'veteran', u'south', u'african', u'journalist', u'klaast', u'die'] [u'govt', u'tell', u'hand', u'firework'] [u'virus', u'put', u'giteau', u'doubt'] [u'virus', u'rule', u'giteau'] [u'push', u'ahead', u'pipelin'] [u'waugh', u'ball', u'steal', u'bonus', u'gregan'] [u'websit', u'deni', u'death', u'saudi', u'qaeda', u'chief'] [u'white', u'wipe', u'record', u'book'] [u'world', u'refuge', u'acknowledg'] [u'find', u'breach', u'trade', u'rule'] [u'young', u'cat', u'shock', u'lion'] [u'yuko', u'order', u'repay', u'tax'] [u'congoles', u'refuge', u'flee', u'burundi', u'offici'] [u'presum', u'dead', u'nepales', u'plung'] [u'abbott', u'say', u'labor', u'bill'] [u'crack', u'crimin'] [u'advoc', u'urg', u'communiti', u'support', u'refuge'] [u'algerian', u'extremist', u'leader', u'kill', u'arm', u'forc'] [u'qaeda', u'confirm', u'muqrin', u'death'] [u'qaeda', u'defiant', u'saudi', u'leader', u'die'] [u'ambul', u'servic', u'say', u'put', u'live', u'risk'] [u'anglican', u'church', u'apologis', u'adelaid', u'servic'] [u'anglicar', u'appeal', u'food', u'cloth', u'donat'] [u'asylum', u'seeker', u'hospitalis', u'overdos'] [u'barrichello', u'lead', u'ferrari'] [u'bartlett', u'say', u'carer', u'payment', u'elect'] [u'blair', u'launch', u'sell', u'charter', u'britain'] [u'blast', u'wound', u'iraq'] [u'booz', u'poll', u'split', u'melbourn', u'suburb'] [u'britain', u'free', u'hooligan', u'jail', u'portug'] [u'britain', u'honour', u'nazi', u'hunter', u'wiesenth'] [u'british', u'accus', u'isra', u'troop', u'fire'] [u'formal', u'antarct', u'tourism', u'manag'] [u'campaign', u'march', u'melbourn', u'world', u'refuge'] [u'campbel', u'town', u'water', u'safe', u'drink', u'say', u'mayor'] [u'canberra', u'space', u'station', u'readi', u'monitor', u'saturn'] [u'centenari', u'inquiri', u'witch', u'hunt', u'labor'] [u'chanderpaul', u'see', u'windi', u'sussex'] [u'chavez', u'media', u'boss', u'grind', u'rule', u'recal'] [u'chines', u'sentenc', u'death', u'babi', u'traffic'] [u'commission', u'pay', u'tribut', u'kill', u'policewoman'] [u'convent', u'play', u'host', u'art', u'cultur', u'centr'] [u'council', u'reject', u'heavi', u'hand', u'tactic', u'critic'] [u'cowboy', u'snatch', u'golden', u'point'] [u'cwealth', u'respons', u'detent', u'centr', u'prison'] [u'democrat', u'criticis', u'govt', u'asylum', u'seeker', u'polici'] [u'democrat', u'star', u'war', u'program'] [u'demon', u'bomber', u'crow', u'bite', u'dog'] [u'demon', u'bomber'] [u'docker', u'secur', u'pavlich', u'servic'] [u'doctor', u'blast', u'nose', u'fund', u'rais'] [u'dougla', u'council', u'confront', u'daintre', u'moratorium'] [u'dragon', u'boat', u'paddler', u'prepar', u'championship'] [u'dragon', u'rout', u'tiger'] [u'egyptian', u'rule', u'parti', u'domin', u'upper', u'hous'] [u'england', u'grewcock', u'ban', u'stamp', u'shaw', u'clear'] [u'extinguish', u'ember', u'proper', u'say', u'brigad'] [u'failur', u'catch', u'lade', u'greatest'] [u'filipino', u'extradit', u'murder', u'charg'] [u'privat', u'rocket', u'readi'] [u'central', u'accid'] [u'peopl', u'miss', u'indonesian', u'plane', u'crash'] [u'minist', u'arrest', u'child', u'swoop'] [u'formula', u'chew', u'appl', u'plan'] [u'teenag', u'girl', u'injur', u'crash'] [u'free', u'whale', u'monitor'] [u'frei', u'charg', u'spit', u'gerrard'] [u'gallop', u'say', u'pipelin', u'need', u'secur', u'power', u'suppli'] [u'gasnier', u'fire', u'dragon', u'rout', u'tiger'] [u'gasnier', u'dragon', u'rout', u'tiger'] [u'german', u'rock', u'latvia', u'prove', u'point'] [u'girl', u'die', u'tragic', u'accid'] [u'goosen', u'edg', u'ahead', u'field', u'falter'] [u'govt', u'deni', u'forest', u'sale', u'fund', u'rail', u'network'] [u'govt', u'say', u'ballist', u'technolog', u'assist', u'crime'] [u'green', u'foreshadow', u'energi', u'white', u'paper', u'attack'] [u'gutsi', u'czech'] [u'harrison', u'stop', u'brave', u'polish', u'fighter', u'bonin'] [u'henman', u'say', u'banish', u'wimbledon', u'blue'] [u'hill', u'work', u'defenc', u'communic'] [u'hospit', u'establish', u'mobil', u'treatment', u'centr'] [u'human', u'right', u'commission', u'mark', u'world', u'refuge'] [u'hundr', u'march', u'mark', u'world', u'refuge'] [u'india', u'pakistan', u'agre', u'reduc', u'risk', u'nuclear'] [u'india', u'pakistan', u'begin', u'nuclear', u'talk'] [u'india', u'pakistan', u'nuclear', u'hotlin'] [u'indonesia', u'megawati', u'draw', u'crowd', u'jakarta'] [u'injuri', u'forc', u'nalbandian', u'wimbledon'] [u'inquiri', u'probe', u'alp', u'centenari', u'hous', u'deal'] [u'iran', u'review', u'nuclear', u'program'] [u'iraq', u'announc', u'defenc', u'strategi'] [u'iraq', u'defend', u'strike', u'kill'] [u'island', u'good', u'red'] [u'isra', u'armi', u'probe', u'british', u'shoot', u'claim'] [u'isra', u'file', u'petit', u'sharon'] [u'bacon', u'die', u'age'] [u'killeen', u'seiz', u'shoot', u'lpga', u'lead'] [u'kimmorley', u'target', u'origin', u'comeback'] [u'kuznetsova', u'continu', u'russian', u'streak'] [u'labor', u'confer', u'continu', u'amid', u'protest'] [u'latham', u'demand', u'bank', u'account'] [u'bar', u'concert'] [u'charg', u'tortur', u'mother'] [u'manhunt', u'underway', u'perth', u'shoot'] [u'kill', u'motorbik', u'crash'] [u'step', u'year'] [u'mcgrath', u'join', u'middlesex'] [u'merlin', u'find', u'voic', u'refuge', u'ralli'] [u'million', u'afghani', u'regist', u'vote', u'histor'] [u'moor', u'plead', u'canada', u'vote', u'tori'] [u'pub', u'club', u'offer', u'free', u'water'] [u'palestinian', u'worker', u'cross', u'gaza', u'strip'] [u'paradorn', u'prevail', u'nottingham'] [u'philippin', u'presid', u'arroyo', u'win', u'elect', u'congress'] [u'pierc', u'win', u'bosch', u'titl'] [u'polic', u'search', u'miss', u'woman', u'child'] [u'polic', u'investig', u'alcohol', u'link', u'boat', u'accid'] [u'polic', u'swoop', u'paedophil', u'network'] [u'priddi', u'spark', u'panther', u'comeback'] [u'protest', u'mark', u'kyi', u'birthday'] [u'celebr', u'anniversari', u'pedal', u'radio'] [u'rail', u'union', u'meet', u'costa'] [u'refuge', u'activist', u'ask', u'leav', u'nauruan', u'water'] [u'refuge', u'activist', u'enter', u'nauruan', u'water', u'report'] [u'roo', u'bounc', u'eagl'] [u'roo', u'grab', u'bounc', u'eagl'] [u'commit', u'reduc', u'school', u'drop', u'rat'] [u'govt', u'commit', u'major', u'road', u'work', u'plan'] [u'sarong', u'spiderman', u'fight', u'hindu', u'demon', u'indian'] [u'search', u'continu', u'miss', u'cyclist'] [u'better', u'cash', u'bank', u'say'] [u'shark', u'lead', u'panther', u'break'] [u'player', u'fight', u'omer', u'lead'] [u'smart', u'leav', u'crow', u'win', u'note'] [u'springbok', u'doubl', u'ireland'] [u'lanka', u'rule', u'sabotag', u'peac', u'dove'] [u'teacher', u'closer', u'deal'] [u'teenag', u'charg', u'crash'] [u'teenag', u'charg', u'father', u'murder'] [u'tiger', u'shock', u'rebuk', u'coach'] [u'triathlet', u'critic', u'condit'] [u'tribut', u'flow', u'bacon'] [u'whale', u'erupt', u'canada'] [u'turinui', u'ax', u'wallabi'] [u'australian', u'fear', u'dead'] [u'million', u'famili', u'receiv', u'lump', u'payment'] [u'surviv', u'light', u'plane', u'crash'] [u'typhoon', u'kill', u'japan'] [u'probe', u'report', u'troop', u'abus', u'dead', u'iraqi'] [u'ullrich', u'race', u'time', u'tour'] [u'strike', u'qaeda', u'safe', u'hous', u'iraq', u'dead'] [u'nistelrooy', u'sick', u'break', u'miser', u'dutch'] [u'vanston', u'displeas', u'detent', u'centr', u'report'] [u'vanston', u'unsway', u'nauru', u'hunger', u'strike'] [u'polic', u'surround', u'hous', u'report', u'shoot'] [u'wed', u'guest', u'chines', u'truck', u'plung'] [u'william', u'trick', u'see', u'wale', u'tame', u'puma'] [u'woman', u'stab', u'melbourn'] [u'yacht', u'crew', u'determin', u'land', u'nauru'] [u'zimbabw', u'wrap', u'nation', u'aid', u'confer'] [u'develop', u'plan', u'bateman'] [u'commission', u'claim', u'iraqi', u'offic', u'qaeda', u'link'] [u'ghraib', u'crime', u'scene', u'say', u'militari', u'judg'] [u'accus', u'soldier', u'lawyer', u'grill', u'head', u'forc'] [u'opposit', u'urg', u'crackdown', u'unruli', u'tenant'] [u'andren', u'outrag', u'super', u'stanc'] [u'angri', u'vieri', u'vow', u'media', u'silenc'] [u'argentin', u'econom', u'collaps', u'trigger', u'violenc'] [u'armi', u'pair', u'dismiss', u'drug'] [u'arroyo', u'win', u'elect', u'vow', u'unit', u'philippin'] [u'author', u'major', u'drug', u'bust'] [u'baggaley', u'pick', u'bronz'] [u'barrier', u'reef', u'basin', u'list', u'explor'] [u'bear', u'prove', u'good', u'ipswich'] [u'berri', u'seek', u'avoid', u'voluntari', u'redund'] [u'boost', u'albani', u'recycl', u'effort'] [u'bridg', u'work', u'begin', u'soon'] [u'britain', u'probe', u'alleg', u'mutil', u'iraqi'] [u'brown', u'urg', u'intervent', u'lawyer', u'harass'] [u'busi', u'urg', u'seek', u'flood', u'relief'] [u'cabin', u'door', u'rip', u'jetstar', u'plane', u'passeng'] [u'cane', u'grower', u'consid', u'hemp', u'industri'] [u'crash', u'put', u'pair', u'hospit'] [u'chamber', u'play', u'flight', u'levi'] [u'chamber', u'attend', u'anti', u'health', u'merger', u'ralli'] [u'chaney', u'appoint', u'board'] [u'church', u'expect', u'clear', u'follow', u'arrest'] [u'promot', u'anti', u'misconduct'] [u'coag', u'discuss', u'indigen', u'problem', u'stanhop'] [u'cold', u'weather', u'hit', u'north', u'coast'] [u'comment', u'seek', u'colli', u'power', u'station', u'plan'] [u'communiti', u'mourn', u'toddler', u'loss'] [u'contract', u'boost', u'roadwork', u'job'] [u'convict', u'babi', u'killer', u'name', u'kiwi', u'olymp', u'team'] [u'councillor', u'divid', u'rat', u'structur'] [u'councillor', u'seek', u'elect', u'probe'] [u'coupl', u'jail', u'heroin', u'robberi'] [u'court', u'hear', u'hospit', u'error', u'leav', u'babi', u'brain'] [u'court', u'tell', u'dolina', u'take', u'go', u'home', u'plastic'] [u'credit', u'union', u'member', u'vote', u'merger', u'plan'] [u'critic', u'pan', u'outback', u'realiti', u'hunk', u'hunt'] [u'crown', u'push', u'indefin', u'jail', u'term', u'rapist'] [u'crow', u'dump', u'ayr'] [u'cabl', u'think', u'phone', u'woe'] [u'cyclist', u'die', u'collis'] [u'czech', u'reserv', u'take', u'light', u'warn'] [u'darwin', u'nativ', u'titl', u'case', u'near'] [u'dead', u'whale', u'caus', u'problem', u'author'] [u'democrat', u'support', u'govt', u'super', u'legisl'] [u'demon', u'welcom', u'break'] [u'deputi', u'urg', u'state', u'sign', u'water', u'deal'] [u'dutch', u'fan', u'burn', u'flag', u'frustrat'] [u'egan', u'promis', u'futur', u'land', u'relief'] [u'energi', u'minist', u'consid', u'protest', u'meet'] [u'england', u'return', u'jail', u'portug'] [u'euro', u'glori', u'unit', u'trebl', u'triumph', u'beckham'] [u'anglican', u'minist', u'report', u'child', u'claim'] [u'feder', u'help', u'seek', u'green', u'centr'] [u'fevola', u'sweat', u'video', u'report'] [u'fevola', u'answer', u'strike', u'charg'] [u'financ', u'group', u'prais', u'super', u'deal'] [u'fiorentina', u'earn', u'fairytal', u'return', u'seri'] [u'fior', u'urg', u'itali', u'forget', u'conspiraci', u'theori'] [u'forc', u'movi', u'goer', u'evacu'] [u'forest', u'lobbi', u'group', u'head', u'canberra'] [u'anglican', u'priest', u'court', u'indec'] [u'partner', u'say', u'dolina', u'owner', u'admit', u'fraud'] [u'deni', u'bail', u'ecstasi', u'powder', u'haul'] [u'soldier', u'kill', u'attack', u'west', u'baghdad'] [u'french', u'ban', u'life', u'kemp', u'announc', u'dope', u'probe'] [u'gasnier', u'dismiss', u'wigan', u'link'] [u'gather', u'focus', u'climat', u'chang'] [u'giant', u'prove', u'strong', u'redback'] [u'gippsland', u'enjoy', u'snowfal'] [u'girl', u'leav', u'hospit', u'child', u'care', u'accid'] [u'goosen', u'captur', u'open', u'crown'] [u'govt', u'criticis', u'provid', u'adequ', u'speed'] [u'govt', u'defend', u'centenari', u'hous', u'deal', u'inquiri'] [u'govt', u'dismiss', u'fortnight', u'famili', u'payment', u'call'] [u'govt', u'urg', u'protect', u'koala'] [u'greec', u'reach', u'despit', u'defeat'] [u'group', u'seek', u'tree', u'clear', u'injunct'] [u'group', u'sting', u'jellyfish', u'woe'] [u'guantanamo', u'prison', u'worst', u'worst', u'report'] [u'buyback', u'trigger', u'opposit', u'doubt'] [u'hargreav', u'stomach', u'croat', u'clash'] [u'hear', u'probe', u'colleg', u'woe'] [u'hepburn', u'welcom', u'refuge'] [u'heritag', u'group', u'promis', u'hospit', u'site', u'review'] [u'hick', u'lawyer', u'harass', u'disput'] [u'high', u'school', u'blaze', u'affect', u'class'] [u'high', u'wind', u'creat', u'work', u'aplenti'] [u'hill', u'censur', u'prison', u'abus', u'scandal'] [u'hockeyroo', u'crush', u'kiwi'] [u'hope', u'dentist', u'eas', u'wait', u'list', u'pressur'] [u'hop', u'rail', u'link', u'boost', u'kimberley', u'tourism'] [u'howard', u'attack', u'latham'] [u'hundr', u'farewel', u'matravill', u'victim'] [u'complet', u'share', u'buyback'] [u'india', u'take', u'manjimup', u'appl'] [u'inform', u'tell', u'court', u'detect'] [u'inform', u'seek', u'cyclist', u'death'] [u'inquiri', u'urg', u'focus', u'futur', u'water', u'suppli'] [u'inquiri', u'urg', u'target', u'improv', u'road', u'strategi'] [u'seek', u'lake', u'argyl', u'revamp'] [u'iran', u'dismiss', u'human', u'right', u'critic'] [u'iran', u'seiz', u'british', u'navi', u'boat'] [u'iraq', u'resum', u'export', u'halt'] [u'israel', u'consult', u'egypt', u'gaza', u'trench', u'plan'] [u'joey', u'waratah', u'switch', u'talk'] [u'jurien', u'urg', u'host', u'bank'] [u'kerr', u'win', u'lpga', u'classic'] [u'landhold', u'protest', u'daintre', u'develop'] [u'larsson', u'prolong', u'intern', u'return'] [u'latham', u'accus', u'govt', u'rush'] [u'latham', u'save', u'plan', u'elect'] [u'lawyer', u'want', u'bush', u'wit', u'stand', u'iraq', u'abus'] [u'lima', u'join', u'elit', u'omer', u'open'] [u'limeston', u'transport', u'start'] [u'macair', u'drop', u'tare', u'grafton', u'flight'] [u'magpi', u'davidson', u'assault', u'investig'] [u'magpi', u'davidson', u'assault', u'probe'] [u'hold', u'adelaid', u'murder'] [u'hospit', u'crash', u'river'] [u'jail', u'incest', u'despit', u'daughter', u'plea'] [u'court', u'tourist', u'attack'] [u'maritim', u'colleg', u'propon', u'site'] [u'matur', u'student', u'face', u'crimin', u'check'] [u'mayor', u'back', u'barrack', u'handov', u'plan'] [u'mayor', u'target', u'beach', u'eros'] [u'melbourn', u'water', u'price', u'rise'] [u'merger', u'plan', u'creat', u'health', u'doubt'] [u'minardi', u'celebr', u'histori', u'baumgartn'] [u'miner', u'face', u'prosecut', u'tremor'] [u'miner', u'urg', u'reject', u'workplac', u'agreement'] [u'mine', u'union', u'safeti', u'legisl'] [u'mix', u'respons', u'govt', u'democrat', u'super', u'deal'] [u'mobil', u'number', u'sale'] [u'skier', u'expect', u'snow'] [u'talk', u'port', u'access', u'road'] [u'join', u'energi', u'polici', u'protest'] [u'say', u'budget', u'wont', u'includ', u'pine', u'forest', u'sell'] [u'nation', u'rise', u'garden', u'step', u'closer', u'complet'] [u'nat', u'talk', u'geraldton', u'candid'] [u'negoti', u'continu', u'resolv', u'ambul', u'disput'] [u'footag', u'show', u'frei', u'spit'] [u'jetstar', u'plan', u'arriv'] [u'chairman', u'focus', u'bank', u'reput'] [u'york', u'time', u'pan', u'clinton', u'memoir'] [u'nida', u'workshop', u'head', u'armidal', u'tamworth'] [u'citi', u'hill', u'rezon', u'plan'] [u'teacher', u'threaten', u'fight'] [u'introduc', u'asbesto', u'demolit', u'safeti', u'check'] [u'olic', u'escap', u'fail', u'drug', u'test'] [u'opal', u'pick', u'porter', u'china', u'tour'] [u'open', u'final', u'round', u'difficult', u'year'] [u'oppn', u'promis', u'protect', u'softwood', u'communiti'] [u'orang', u'seek', u'industri', u'land'] [u'owen', u'fire', u'england', u'say', u'mcclaren'] [u'paint', u'undergo', u'polic', u'test'] [u'parliament', u'hous', u'secur', u'upgrad'] [u'parliament', u'pay', u'tribut', u'bacon'] [u'stock', u'fall', u'news', u'burswood'] [u'casino', u'offer'] [u'plan', u'underway', u'ethanol', u'industri'] [u'plan', u'address', u'school', u'retent', u'rat'] [u'welcom', u'poll', u'boost'] [u'polic', u'clarifi', u'higher', u'domest', u'violenc', u'figur'] [u'polic', u'hunt', u'continu', u'gunman'] [u'polic', u'investig', u'fatal', u'paraglid', u'crash'] [u'polic', u'horror', u'crash', u'victim'] [u'polic', u'prais', u'think', u'driver'] [u'polic', u'probe', u'colleagu', u'road', u'death'] [u'polic', u'target', u'drink', u'driver'] [u'polic', u'urg', u'consid', u'indigen', u'famili', u'grief'] [u'porter', u'make', u'opal', u'squad', u'tour', u'china'] [u'port', u'hedland', u'theft', u'fall'] [u'privat', u'rocket', u'prepar', u'blast'] [u'probe', u'examin', u'mental', u'health', u'servic'] [u'quoll', u'reloc', u'fail', u'impact', u'environ'] [u'rain', u'outlook', u'boost', u'irrig', u'trust', u'hop'] [u'record', u'commod', u'export', u'earn', u'expect'] [u'report', u'recommend', u'militari', u'jump', u'jet'] [u'report', u'portugues', u'polic', u'search'] [u'richard', u'quit', u'west', u'indi', u'selector'] [u'sadr', u'invit', u'iraq', u'nation', u'confer'] [u'santini', u'defend', u'tactic'] [u'sato', u'revel', u'podium', u'finish'] [u'school', u'exercis', u'tie', u'fund', u'nelson'] [u'schumach', u'reliv', u'agoni', u'brother', u'crash'] [u'schumach', u'shrug', u'brother', u'crash', u'claim'] [u'search', u'elus', u'white', u'whale'] [u'search', u'start', u'gold'] [u'senat', u'move', u'censur', u'hill'] [u'senat', u'reject', u'build', u'super', u'regul'] [u'korea', u'demand', u'iraqi', u'milit', u'releas', u'hostag'] [u'korea', u'unsway', u'behead', u'threat'] [u'smart', u'comfort', u'retir'] [u'soldier', u'hear', u'ghraib', u'scandal'] [u'lankan', u'confid', u'despit', u'miss', u'murali'] [u'state', u'energi', u'minist', u'meet', u'feder', u'polici'] [u'state', u'urg', u'lift', u'limit', u'crime', u'case'] [u'steal', u'dinosaur', u'egg', u'return', u'china'] [u'strong', u'veget', u'law'] [u'super', u'gome', u'put', u'portug', u'euro', u'heaven'] [u'switzerland', u'salvag', u'pride', u'franc'] [u'teacher', u'strike', u'gain', u'parent', u'support'] [u'teacher', u'hear', u'claim'] [u'telstra', u'news', u'prompt', u'record', u'market', u'gain'] [u'telstra', u'plan', u'sharehold', u'return'] [u'telstra', u'share', u'push', u'stock', u'market', u'high'] [u'territorian', u'readi', u'spin'] [u'territorian', u'recognis', u'multicultur', u'work'] [u'terror', u'suspect', u'hambali', u'brother', u'deni', u'terror'] [u'test', u'determin', u'cloud', u'seed', u'spark', u'snow'] [u'tighter', u'secur', u'close', u'port', u'access', u'road'] [u'toddler', u'hurt', u'child', u'care', u'centr', u'accid'] [u'twentieth', u'hijack', u'septemb', u'plot', u'hold'] [u'australian', u'kill', u'indonesian', u'plane', u'crash'] [u'ullrich', u'win', u'swiss', u'tour', u'narrowest', u'margin'] [u'umaga', u'sign', u'year', u'zealand'] [u'deni', u'australian', u'elect', u'interfer'] [u'marin', u'die', u'hostil', u'injuri'] [u'vandal', u'caus', u'high', u'school', u'havoc'] [u'consid', u'perman', u'water', u'restrict'] [u'govt', u'resist', u'push', u'chang', u'plate', u'regul'] [u'wallabi', u'back', u'england', u'collis', u'cours'] [u'target', u'paedophil', u'onlin'] [u'watchdog', u'ask', u'produc', u'annual', u'bank', u'report'] [u'water', u'round', u'tabl', u'hear', u'user', u'concern'] [u'wiki', u'high', u'tackl', u'charg'] [u'wiki', u'high', u'tackl', u'charg'] [u'wimbledon', u'begin', u'focus', u'feder'] [u'wind', u'farm', u'monitor', u'ongo'] [u'winter', u'chill', u'bite', u'southern'] [u'woman', u'die', u'ballarat', u'hous'] [u'work', u'begin', u'scallop', u'hatcheri'] [u'workcov', u'confid', u'adequ', u'asbesto', u'fund'] [u'young', u'wallabi', u'cruis', u'world', u'semi'] [u'signatur', u'gather', u'supermarket'] [u'abbott', u'accus', u'latham', u'leav', u'wing', u'hanson'] [u'abbott', u'hope', u'quick', u'passag', u'prescript'] [u'accus', u'paedophil', u'commit', u'suicid'] [u'accus', u'paedophil', u'nat', u'exec'] [u'tighten', u'child', u'exploit', u'law'] [u'drug', u'supermarket'] [u'member', u'urg', u'embrac', u'lennon', u'leadership'] [u'calder', u'fund', u'announc'] [u'qaeda', u'lurk', u'afghanistan', u'hill'] [u'ambul', u'servic', u'month'] [u'ameobi', u'look', u'newcastl', u'start', u'contract'] [u'anderson', u'airport', u'secur', u'announc'] [u'australia', u'help', u'train', u'iraqi', u'elect', u'worker'] [u'bacon', u'legaci', u'confid', u'tasmania'] [u'barrichello', u'posit', u'titl', u'chanc'] [u'bendigo', u'rememb', u'road', u'crash', u'victim'] [u'budget', u'boost', u'newcastl'] [u'blue', u'appeal', u'fevola'] [u'boxer', u'continu', u'train', u'despit', u'threat', u'coach'] [u'britain', u'seek', u'access', u'soldier', u'hold', u'iran'] [u'budget', u'deliv', u'west', u'health', u'boost'] [u'burk', u'welcom', u'renew', u'talk', u'joey'] [u'busi', u'enlist', u'fight', u'terror'] [u'byron', u'case', u'adjourn'] [u'budget', u'deliv', u'region', u'polic', u'boost'] [u'canberra', u'landhold', u'urg', u'control', u'problemat'] [u'bomb', u'kill', u'children', u'western', u'baghdad'] [u'casino', u'talk', u'resum'] [u'chavez', u'media', u'foe', u'hold', u'poll', u'talk'] [u'chees', u'produc', u'chang', u'hand'] [u'chief', u'minist', u'quiz', u'pool', u'fenc'] [u'china', u'tackl', u'year', u'coal'] [u'clinton', u'chide', u'arafat', u'coloss', u'mistak'] [u'cold', u'snap', u'prompt', u'flood', u'blanket', u'anim'] [u'communiti', u'opposit', u'end', u'resort', u'propos'] [u'confer', u'hear', u'nuclear', u'terror', u'threat'] [u'coron', u'urg', u'driver', u'follow', u'polic', u'direct'] [u'corridor', u'builder', u'extra', u'care'] [u'costello', u'mock', u'labor', u'backflip'] [u'council', u'back', u'effluent', u'dispos', u'scheme'] [u'council', u'like', u'refus', u'fund', u'request'] [u'councillor', u'lift', u'daintre', u'develop'] [u'council', u'group', u'worri', u'health', u'merger', u'plan'] [u'council', u'upset', u'plan', u'fund', u'snub'] [u'court', u'order', u'real', u'estat', u'agent', u'repay', u'custom'] [u'court', u'deal', u'corrupt', u'charg', u'brack'] [u'croatian', u'fan', u'uefa', u'spotlight', u'racist'] [u'crow', u'deni', u'approach', u'coach', u'candid'] [u'csiro', u'develop', u'greenhous', u'anti', u'burp', u'vaccin'] [u'cycl', u'drug', u'investig', u'swift', u'anti'] [u'cycl', u'drug', u'investig', u'swift', u'pound'] [u'cyclist', u'declar', u'theyr', u'clean'] [u'daintre', u'hous', u'continu'] [u'dam', u'pose', u'threat', u'yangtz'] [u'deadlin', u'pass', u'news', u'south', u'korean', u'hostag'] [u'dead', u'hous', u'blaze', u'suspici'] [u'democrat', u'queri', u'baxter', u'punish', u'regim'] [u'owner', u'warn', u'fatal', u'diseas'] [u'downer', u'confid', u'nauru', u'detent', u'centr', u'stay'] [u'dozen', u'kill', u'battl', u'near', u'chechnya'] [u'drag', u'race', u'plan', u'green', u'light'] [u'drug', u'action', u'week', u'target', u'alcohol', u'abus'] [u'drug', u'agenc', u'test', u'outsid', u'olymp', u'venu'] [u'dulko', u'overwhelm', u'dokic'] [u'dutch', u'tri', u'hard', u'banish', u'czech', u'ghost'] [u'ead', u'wallac', u'rumour', u'crow'] [u'educ', u'stand', u'scienc', u'teacher'] [u'eel', u'lure', u'riddel', u'dragon'] [u'park', u'resid', u'express', u'prefer'] [u'energi', u'plan', u'spark', u'reef', u'fear'] [u'erect', u'problem', u'signal', u'heart', u'problem'] [u'famili', u'respons', u'overpay', u'patterson'] [u'fevola', u'rub', u'week'] [u'filipino', u'court', u'murder', u'charg'] [u'final', u'wit', u'appear', u'jam', u'hardi', u'inquiri'] [u'flagpol', u'fund', u'scheme', u'anger', u'minist'] [u'forest', u'group', u'happi', u'canberra', u'hear'] [u'senat', u'collin', u'remain', u'critic'] [u'vivendi', u'head', u'hold', u'french', u'polic'] [u'french', u'defend', u'war', u'santini', u'focus'] [u'french', u'judg', u'reject', u'armstrong', u'dope', u'denial'] [u'fruit', u'bonfir', u'mark', u'appl', u'import', u'protest'] [u'fruit', u'grower', u'protest', u'introduc', u'appl'] [u'futur', u'look', u'shaki', u'colleg'] [u'geraldton', u'consid', u'adopt', u'navi', u'ship'] [u'gold', u'coast', u'lifeguard', u'scoop', u'nation', u'award'] [u'goran', u'growl', u'wimbledon'] [u'govt', u'hop', u'continu', u'work', u'road', u'extens'] [u'govt', u'urg', u'improv', u'indigen', u'home', u'ownership'] [u'group', u'push', u'public', u'educ', u'fund'] [u'hagan', u'hope', u'john', u'stay', u'leagu'] [u'halfway', u'hous', u'close', u'shoot'] [u'health', u'report', u'card', u'show', u'australian', u'live', u'longer'] [u'hear', u'postpon', u'soldier', u'iraq', u'leash'] [u'heinrich', u'debut', u'kiwi'] [u'henri', u'doubl', u'send', u'franc'] [u'hewitt', u'lead', u'aussi', u'charg'] [u'high', u'hop', u'highway', u'budget', u'fund'] [u'high', u'school', u'student', u'suspend', u'drug'] [u'hop', u'boost', u'water', u'storag'] [u'hospit', u'pay', u'babi', u'leav', u'brain', u'damag'] [u'hous', u'construct', u'slow'] [u'husband', u'arrest', u'wife', u'daughter'] [u'independ', u'work', u'pass', u'govt', u'super', u'scheme'] [u'injur', u'packer', u'help', u'seagul', u'bond'] [u'inquiri', u'tip', u'middl', u'east', u'trade', u'boost'] [u'iran', u'prosecut', u'british', u'crew', u'report'] [u'iraqi', u'polic', u'train', u'urban', u'warfar'] [u'hear', u'teacher', u'claim'] [u'israel', u'train', u'kurdish', u'commando', u'iraq', u'report'] [u'juri'] [u'labor', u'fear', u'industri'] [u'lamb', u'price', u'reach', u'high'] [u'lamb', u'livestock', u'exchang', u'record'] [u'langer', u'welcom', u'mcgrath'] [u'lara', u'lead'] [u'escape', u'captur'] [u'liverpool', u'council', u'oasi', u'project', u'fold'] [u'accus', u'escap', u'custodi', u'front', u'court'] [u'charg', u'jail', u'drug'] [u'charg', u'tourist', u'rape', u'remand', u'custodi'] [u'charg', u'murder', u'wife', u'babi'] [u'marin', u'bodi', u'recov', u'imag', u'air'] [u'market', u'let', u'steam', u'record'] [u'matilda', u'squad', u'athen', u'announc'] [u'mcgee', u'claim', u'leader', u'jersey'] [u'melbourn', u'jetstar', u'passeng', u'hold', u'sydney'] [u'blast', u'spark', u'complaint'] [u'minist', u'open', u'tower', u'hill', u'suburb'] [u'minist', u'listen', u'local', u'view', u'health'] [u'molik', u'hold', u'hope', u'australian', u'women'] [u'american', u'reject', u'iraq', u'poll'] [u'air', u'budget', u'softwood', u'fear'] [u'tell', u'admir', u'bacon', u'human'] [u'music', u'label', u'launch', u'pocket'] [u'chang', u'seek', u'ethnic', u'affair'] [u'naurus', u'govt', u'toppl'] [u'navratilova', u'roll', u'year', u'wimbledon'] [u'sale', u'continu', u'rise'] [u'program', u'aim', u'guard', u'club'] [u'babi', u'bonus', u'rush', u'expect'] [u'invit', u'iraqi', u'nation', u'confer'] [u'water', u'treatment', u'plant', u'cosgrav', u'reservoir'] [u'deliv', u'essenti', u'fund', u'bush'] [u'govt', u'deliv', u'budget', u'deficit'] [u'erad', u'noxious', u'weed', u'outbreak'] [u'reveal', u'croc', u'safari', u'plan'] [u'nurs', u'union', u'welcom', u'polic', u'find'] [u'olymp', u'ticket', u'sell', u'snail', u'pace'] [u'woman', u'diseas', u'dead'] [u'oppn', u'want', u'train', u'return'] [u'opposit', u'expect', u'vote', u'work'] [u'orang', u'council', u'rat', u'scrutini'] [u'pakistan', u'imran', u'khan', u'divorc', u'jemima'] [u'paradorn', u'fall', u'curs', u'karlov'] [u'parmalat', u'administr', u'submit', u'rescu', u'plan'] [u'boost', u'aim', u'child', u'protect', u'worker'] [u'penrith', u'leagu', u'club', u'boss', u'deni', u'salari'] [u'pentagon', u'releas', u'interrog', u'memo'] [u'plane', u'crash', u'rais', u'question'] [u'unfurl', u'flag', u'fit', u'school'] [u'pipelin', u'look', u'promis', u'report'] [u'polic', u'charg', u'drive', u'shoot'] [u'polic', u'discov', u'drug', u'western', u'sydney'] [u'polic', u'seiz', u'school', u'drug', u'tap'] [u'poll', u'show', u'blitz', u'fool', u'elector', u'labor'] [u'probe', u'launch', u'prison', u'burn'] [u'protest', u'critic', u'nauru', u'gift'] [u'public', u'urg', u'councillor'] [u'push', u'recognit', u'rescuer'] [u'putin', u'want', u'chechen', u'rebel', u'destroy'] [u'qanta', u'base', u'staff', u'offshor'] [u'question', u'rais', u'airstrip', u'consult'] [u'quit', u'smoke', u'halv', u'danger'] [u'rain', u'boost', u'grain', u'harvest', u'forecast'] [u'ralf', u'hospit'] [u'rann', u'announc', u'murray', u'scheme'] [u'report', u'highlight', u'high', u'council', u'rat'] [u'report', u'highlight', u'prostat', u'cancer', u'risk'] [u'report', u'show', u'slide', u'milk', u'product'] [u'resid', u'question', u'rate', u'differ'] [u'rockhampton', u'rat'] [u'rooney', u'fire', u'england', u'euro', u'quarter'] [u'rooney', u'worth', u'million', u'pound', u'say', u'everton'] [u'back', u'plan', u'injur', u'defenc', u'personnel'] [u'rspca', u'reject', u'critic', u'cage', u'chicken', u'live'] [u'seafood', u'group', u'map', u'reef', u'zone', u'concern'] [u'secker', u'seek', u'extra', u'murray', u'flow'] [u'seven', u'olymp', u'live', u'hour'] [u'shepherd', u'probe', u'identifi', u'problem'] [u'skywest', u'profit', u'high'] [u'slow', u'start', u'region', u'airport', u'secur', u'boost'] [u'softwood', u'credit', u'union', u'back', u'polic', u'merger'] [u'south', u'east', u'face', u'cathol', u'priest', u'shortag'] [u'south', u'korean', u'captor', u'extend', u'deadlin'] [u'sparkl', u'venus', u'hit', u'spot'] [u'sprint', u'cycl', u'team', u'respond', u'drug', u'alleg'] [u'stoner', u'air', u'budget', u'worri'] [u'strike', u'forc', u'probe', u'high', u'school', u'blaze'] [u'strike', u'affect', u'milk', u'suppli'] [u'student', u'urg', u'consid', u'scienc', u'career'] [u'studi', u'highlight', u'remot', u'resid', u'cancer', u'risk'] [u'submiss', u'continu', u'darwin', u'nativ', u'titl', u'case'] [u'sugar', u'grant', u'spark', u'ethanol'] [u'summit', u'focus', u'hous', u'afford'] [u'support', u'govt', u'ethanol', u'drive'] [u'teacher', u'sack', u'anglican', u'church', u'inquiri'] [u'tenanc', u'servic', u'dark', u'time', u'offic'] [u'chang', u'black', u'play', u'argentina'] [u'terror', u'suspect', u'ask', u'higher', u'bail', u'sureti'] [u'tibooburra', u'remot', u'polic', u'spotlight'] [u'tongan', u'peacekeep', u'arriv', u'kuwait'] [u'townsvill', u'cobalt', u'end', u'batteri'] [u'turnbul', u'accus', u'electron', u'stalk'] [u'campus', u'moot', u'break', u'hill'] [u'urg', u'investig', u'alarm', u'resurg'] [u'urgent', u'action', u'need', u'control', u'nuclear'] [u'market', u'wari', u'ahead', u'rate', u'decis'] [u'offici', u'doubt', u'iraqi', u'offic', u'qaeda'] [u'vaa', u'back', u'mcgrath', u'rediscov', u'form'] [u'varieti', u'factor', u'take', u'toll', u'abalon'] [u'veteran', u'smith', u'sign', u'raider'] [u'veteran', u'streaker', u'guilti', u'trespass'] [u'virgin', u'atlant', u'australia', u'decemb'] [u'visitor', u'centr', u'back', u'tourist', u'villag', u'push'] [u'govt', u'promis', u'relax', u'poker', u'machin'] [u'labor', u'preselect'] [u'wallabi', u'chanc', u'end', u'lose', u'say'] [u'wallabi', u'chanc', u'end', u'lose', u'woodward'] [u'warn', u'test'] [u'watson', u'run', u'deputi', u'polic'] [u'long', u'say', u'germani', u'kahn'] [u'white', u'whale', u'spot'] [u'wiki', u'ban', u'week'] [u'woman', u'die', u'highway', u'hors', u'crash'] [u'women', u'urg', u'midwif', u'birth'] [u'zimbabw', u'newspap', u'challeng', u'closur', u'court'] [u'journalist', u'lose', u'court', u'case'] [u'accus', u'terrorist', u'appear', u'sydney', u'court'] [u'alleg', u'killer', u'australian', u'cameraman', u'arrest'] [u'member', u'urg', u'report', u'branch', u'stack'] [u'amwu', u'deleg', u'lobbi'] [u'anger', u'unrest', u'south', u'korea', u'execut'] [u'anomali', u'allow', u'priest', u'accus', u'abus', u'stay'] [u'seek', u'assur', u'cycl', u'team', u'select'] [u'apart', u'develop', u'oppos', u'sewerag', u'cost'] [u'argentina', u'admit', u'problem', u'ahead', u'black'] [u'soldier', u'gentleman'] [u'babi', u'bonus', u'fuel', u'indigen', u'violenc', u'atsic'] [u'alert', u'return', u'campaign'] [u'beat', u'safin', u'say', u'hat', u'wimbledon'] [u'beatti', u'accus', u'pressur', u'coast', u'council'] [u'beatti', u'concern', u'ahead', u'coag'] [u'bendigo', u'respect', u'famili'] [u'dylan', u'honour', u'scottish', u'univers'] [u'bolt', u'bridg', u'reopen', u'earlier', u'incid'] [u'british', u'sailor', u'releas', u'soon', u'iranian'] [u'brown', u'urg', u'condemn', u'interrog', u'techniqu'] [u'budget', u'deliv', u'south', u'east', u'health', u'boost'] [u'budget', u'deliv', u'tamworth', u'benefit'] [u'budget', u'get', u'mix', u'review', u'illawarra'] [u'budget', u'provid', u'health', u'boost'] [u'burk', u'hurrah'] [u'burswood', u'director', u'recommend', u'offer'] [u'bush', u'condemn', u'latest', u'behead'] [u'bushmast', u'readi', u'product'] [u'caffein', u'free', u'coffe', u'plant', u'discov'] [u'cagey', u'busi', u'frustrat', u'wage', u'rise'] [u'call', u'patient', u'mistreat', u'investig'] [u'cancer', u'wors', u'remot', u'suffer', u'report'] [u'carr', u'announc', u'extra', u'fund', u'cancer', u'patient'] [u'celebr', u'croc', u'readi', u'home'] [u'child', u'die', u'baghdad', u'blast'] [u'citi', u'game', u'postpon'] [u'coal', u'road', u'product', u'boost'] [u'collin', u'critic', u'condit', u'crash'] [u'convict', u'belgian', u'child', u'killer', u'appeal'] [u'coron', u'clear', u'carer', u'home', u'death'] [u'council', u'back', u'shop', u'plan'] [u'councillor', u'air', u'high', u'rise', u'concern'] [u'council', u'offer', u'nimmitabel', u'water', u'suppli', u'assur'] [u'court', u'hear', u'warrawong', u'shoot', u'detail'] [u'court', u'jail', u'explos'] [u'cyclist', u'french', u'claim', u'innoc'] [u'appeal', u'withdraw', u'threaten', u'speci'] [u'dam', u'threaten', u'world', u'largest', u'river', u'report'] [u'danger', u'drive', u'charg', u'dismiss', u'doubl'] [u'debat', u'continu', u'commemor', u'wall'] [u'boer', u'return', u'troubl', u'dutch'] [u'delay', u'ballarat', u'draft', u'budget'] [u'dorset', u'council', u'consid', u'rate', u'rise'] [u'doubt', u'cast', u'ethanol', u'alloc'] [u'doubt', u'cast', u'region', u'develop', u'board', u'futur'] [u'doubt', u'rais', u'hunter', u'budget', u'fund'] [u'dozen', u'miss', u'strong', u'wind', u'capsiz', u'chines'] [u'draw', u'send', u'sweden', u'denmark'] [u'drought', u'grip'] [u'eal', u'wouldnt', u'risk', u'john', u'sign'] [u'ecuador', u'appeal', u'galapago', u'cucumb', u'rule'] [u'educ', u'fund', u'barwon', u'elector'] [u'england', u'hop', u'rooney', u'high'] [u'environment', u'group', u'hit', u'govt', u'accus'] [u'fahrenheit', u'rat', u'appeal', u'fail'] [u'famili', u'fear', u'miss'] [u'father', u'upset', u'driver', u'sentenc', u'son', u'death'] [u'ferreira', u'set', u'mark', u'slam'] [u'judg', u'probe', u'corrupt', u'claim'] [u'senat', u'fli', u'adelaid', u'specialis'] [u'soldier', u'fin', u'weapon', u'theft'] [u'forum', u'urg', u'discuss', u'indigen', u'servic'] [u'fund', u'snub', u'blow', u'ethanol', u'plant', u'project'] [u'fund', u'help', u'boost', u'airport', u'busi'] [u'gallop', u'mission', u'john'] [u'plan', u'like', u'boost', u'job'] [u'gate', u'offer', u'better', u'river', u'outcom'] [u'gaudoin', u'miss', u'athen'] [u'marriag', u'halt', u'senat', u'inquiri'] [u'geraldton', u'farewel', u'olymp', u'boxer'] [u'germani', u'reli', u'ballack', u'pride', u'decid'] [u'giteau', u'return', u'wallabi', u'start', u'line'] [u'gold', u'work', u'push', u'ahead'] [u'govt', u'accus', u'fail', u'tackl', u'busi'] [u'govt', u'accus', u'suspend', u'famili', u'overpay'] [u'govt', u'deni', u'rspca', u'blackmail', u'claim'] [u'govt', u'seiz', u'labor', u'backflip', u'fallout'] [u'govt', u'urg', u'indigen', u'health'] [u'govt', u'urg', u'remov', u'children', u'detent'] [u'group', u'aim', u'combat', u'drug', u'addict'] [u'henman', u'surviv', u'round', u'scare'] [u'hobart', u'elect', u'surgeri', u'restrict', u'routin'] [u'hobart', u'prepar', u'bacon', u'funer'] [u'holling', u'sell', u'telegraph', u'group', u'billion'] [u'homeless', u'survey', u'show', u'rent', u'home', u'shortag'] [u'home', u'ownership', u'probe', u'urg', u'review'] [u'hous', u'blaze', u'spark', u'smoke', u'alarm', u'remind'] [u'howard', u'host', u'anti', u'terror', u'summit', u'busi'] [u'husband', u'arrest', u'wife', u'fridg'] [u'indigen', u'snapshot', u'show', u'mix', u'news'] [u'inquiri', u'refer', u'ward', u'abus', u'case', u'polic'] [u'irrig', u'lose', u'water', u'sale', u'right'] [u'italian', u'point', u'accus', u'finger', u'swede', u'dane'] [u'itali', u'crash', u'despit', u'beat', u'bulgaria'] [u'johnson', u'surviv', u'horror', u'crash'] [u'junction', u'traffic', u'chang', u'moot'] [u'alli', u'extend', u'iraq', u'troop', u'deploy'] [u'kite', u'riddel', u'depart', u'dragon', u'raider', u'secur', u'smith'] [u'labor', u'rule', u'support', u'disabl', u'pension'] [u'labour', u'motion', u'remov', u'sharon', u'safeti'] [u'langer', u'injuri', u'cloud'] [u'latham', u'challeng', u'howard', u'debat'] [u'lawyer', u'abandon', u'case', u'releas', u'detain', u'children'] [u'doblo', u'futur', u'clearer', u'tomorrow'] [u'lib', u'mine', u'pastor', u'region', u'candid'] [u'long', u'appeal', u'childer', u'hostel', u'blaze'] [u'long', u'jail', u'term', u'seek', u'paedophil'] [u'malthous', u'scath', u'ayr', u'departur'] [u'arrest', u'alleg', u'fraud'] [u'front', u'court', u'murder', u'wife', u'daughter'] [u'court', u'shoot', u'death'] [u'drug', u'charg', u'plead', u'guilti'] [u'mcgee', u'hold', u'franc'] [u'mcgrath', u'readi', u'lankan', u'test'] [u'meatwork', u'plan', u'get', u'chop'] [u'milit', u'decapit', u'south', u'korean', u'hostag', u'iraq'] [u'miner', u'get', u'coal', u'explor', u'licenc'] [u'mix', u'respons', u'labor', u'drug', u'price', u'backflip'] [u'molotov', u'cocktail', u'attack', u'motiv', u'unknown'] [u'area', u'drought', u'status', u'lift'] [u'shepherd', u'woe', u'emerg'] [u'motorcyclist', u'set', u'iron', u'butt', u'trek', u'record'] [u'moy', u'blast', u'eriksson', u'rooney', u'remark'] [u'warn', u'quiet', u'parliament'] [u'unhappi', u'budget', u'highway', u'fund'] [u'nation', u'licens', u'recommend'] [u'nauru', u'govern', u'hop', u'push', u'budget'] [u'coach', u'put', u'focus', u'young', u'crow'] [u'jersey', u'governor', u'anger', u'tyson', u'box'] [u'law', u'target', u'prison', u'mobil', u'phone'] [u'permit', u'resolv', u'hotel', u'redevelop'] [u'news', u'corp', u'face', u'indic', u'exit'] [u'bail', u'abduct', u'accus'] [u'budget', u'criticis', u'transport', u'infrastructur'] [u'govt', u'reliant', u'tax', u'oppn'] [u'teacher', u'cancel', u'stop', u'work', u'meet'] [u'outlin', u'croc', u'hunt', u'plan'] [u'olsen', u'twin', u'treat', u'eat', u'disord'] [u'opposit', u'claim', u'million', u'wast', u'tank'] [u'owen', u'confid', u'end', u'euro', u'goal', u'drought'] [u'palestinian', u'milit', u'kill', u'gaza', u'strip', u'raid'] [u'pele', u'hail', u'wonder', u'rooney'] [u'pilot', u'inquest', u'urg', u'train', u'boost'] [u'pire', u'propos', u'radic', u'strategi', u'chang'] [u'special', u'power', u'accept', u'aust'] [u'polic', u'give', u'increas', u'anti', u'terror', u'power'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'strike', u'forc', u'probe', u'blacktown', u'death'] [u'privat', u'hire', u'owner', u'doubt', u'industri', u'shake'] [u'health', u'urg', u'negoti', u'anaesthetist'] [u'racv', u'urg', u'pressur', u'calder', u'duplic'] [u'ralf', u'unlik', u'french'] [u'ralli', u'oppos', u'englandhunt', u'health', u'merger'] [u'ransom', u'hous', u'director', u'deni', u'knowledg', u'loan'] [u'rate', u'rise', u'beaudesert', u'shire'] [u'rat', u'slight', u'gladston'] [u'rebuild', u'england', u'remain', u'strong', u'woodward'] [u'region', u'share', u'budget', u'fund'] [u'rehhagel', u'tell', u'greek', u'sleep', u'easi'] [u'riddoch', u'highway', u'includ', u'auslink', u'submiss'] [u'ronaldo', u'find', u'jibe', u'hard', u'swallow'] [u'ronaldo', u'keen', u'england', u'scrambl'] [u'rudd', u'step', u'intellig', u'cover', u'claim'] [u'russia', u'accus', u'chechen', u'human', u'right', u'abus'] [u'saddam', u'prison', u'letter', u'say', u'moral', u'high', u'newsweek'] [u'sadr', u'refus', u'attend', u'iraqi', u'nation', u'confer'] [u'african', u'hotel', u'chain', u'settl', u'toilet', u'phobia', u'lawsuit'] [u'school', u'revolt', u'flag', u'plan'] [u'scud', u'track'] [u'scud', u'track', u'wimbledon'] [u'search', u'continu', u'bodi', u'murder', u'victim'] [u'search', u'miss', u'tourist', u'call'] [u'second', u'muslim', u'soccer', u'player', u'tell', u'remov', u'hijab'] [u'senat', u'hitch', u'face', u'free', u'trade'] [u'senat', u'support', u'legisl', u'unclear'] [u'senat', u'clash', u'agenc', u'bali', u'warn'] [u'serena', u'fire', u'wimbledon', u'campaign'] [u'showground', u'moot', u'multi', u'purpos', u'centr'] [u'korea', u'deploy', u'troop', u'despit', u'behead'] [u'slay', u'hostag', u'famili', u'accus', u'govt', u'betray'] [u'slay', u'hostag', u'parent', u'accus', u'govt', u'betray'] [u'small', u'busi', u'benefit', u'competit', u'law'] [u'small', u'surplus', u'bellingen', u'budget'] [u'soldier', u'warn', u'stay', u'polit'] [u'solomon', u'island', u'rich', u'marin', u'life', u'scientist'] [u'soup', u'kitchen', u'plan', u'park'] [u'space', u'station', u'crew', u'readi', u'repair', u'mission'] [u'studi', u'consid', u'energi', u'option'] [u'support', u'budget', u'irrig', u'initi'] [u'support', u'troop', u'iraq', u'rise', u'poll'] [u'survey', u'show', u'dairi', u'farmer', u'road', u'recoveri'] [u'talk', u'begin', u'north', u'korea', u'nuclear', u'crisi'] [u'land', u'go', u'song'] [u'teacher', u'pressur', u'drop', u'action'] [u'telstra', u'lead', u'market', u'forward'] [u'detain', u'ecstasi', u'hide', u'wine', u'bottl'] [u'lift', u'watson', u'media'] [u'tourist', u'miss', u'fall', u'cliff'] [u'townsvill', u'prepar', u'chamber', u'music', u'festiv'] [u'servicemen', u'releas', u'tonight'] [u'union', u'seek', u'stronger', u'mine', u'voic'] [u'strike', u'kill', u'fallujah'] [u'approv', u'dog', u'guantanamo', u'prison'] [u'correct', u'global', u'terror', u'figur'] [u'hand', u'crime', u'proceed', u'payment'] [u'record', u'industri', u'sue', u'hundr', u'piraci'] [u'senat', u'hike', u'broadcast', u'fin', u'tighten', u'ownership'] [u'vaughan', u'look', u'seri'] [u'govt', u'expect', u'increas', u'water', u'price'] [u'govt', u'secur', u'murray', u'river', u'deal', u'farmer'] [u'victorian', u'soccer', u'refere', u'suspend'] [u'water', u'bill', u'rise'] [u'wallac', u'throw', u'hand', u'crow'] [u'wall', u'readi', u'rate', u'rise'] [u'nat', u'alarm', u'polic', u'hold', u'cell'] [u'water', u'pressur', u'rise', u'ahead', u'summit'] [u'water', u'price', u'rise', u'loom'] [u'wimbledon', u'dementieva', u'kuznetsova'] [u'veteran', u'smout', u'die'] [u'aborigin', u'elder', u'score', u'hreoc', u'appoint'] [u'launch', u'water', u'reform'] [u'toughen', u'drug', u'law'] [u'advoc', u'seek', u'wider', u'mandatori', u'child', u'abus'] [u'afl', u'flaw', u'genius', u'forc', u'retir'] [u'help', u'combat', u'welfar', u'fraud'] [u'treati', u'exempt', u'polic', u'rule'] [u'allenbi', u'readi', u'french', u'test'] [u'anger', u'sicki', u'caus', u'energi', u'crisi'] [u'school', u'solar'] [u'arroyo', u'narrowli', u'win', u'presid', u'elect'] [u'asic', u'warn', u'earli', u'releas', u'super', u'scheme'] [u'attack', u'iraqi', u'citi', u'dead'] [u'auspin', u'worker', u'industri', u'unrest', u'hold'] [u'australia', u'open', u'ash', u'tour'] [u'aust', u'viet', u'hold', u'human', u'right', u'talk'] [u'aviat', u'industri', u'equip', u'deal', u'terror'] [u'backbench', u'prepar', u'hand', u'abus', u'evid'] [u'bail', u'grant', u'opera', u'hous', u'slogan'] [u'mull', u'arab', u'channel', u'rival', u'jazeera'] [u'save', u'predict', u'water', u'merger', u'plan'] [u'fuel', u'capit', u'grant', u'decis'] [u'blue', u'ribbon', u'driver', u'stop', u'work', u'safeti'] [u'bogut', u'make', u'boomer', u'debut'] [u'bomb', u'kill', u'istanbul'] [u'boost', u'local', u'medic', u'facil'] [u'brambl', u'restack', u'pallet', u'busi'] [u'bushfir', u'prevent', u'imposs'] [u'kangaroo', u'koala', u'kill'] [u'nativ', u'titl', u'claim', u'detail', u'releas'] [u'polic', u'station', u'privat', u'invest'] [u'campaign', u'build', u'disabl', u'access'] [u'carey', u'call', u'quit'] [u'carey', u'retir'] [u'charg', u'lay', u'theft', u'email', u'address'] [u'chelsea', u'face', u'unit', u'open'] [u'child', u'bonus', u'spend', u'famili', u'discret', u'govt'] [u'childer', u'arsonist', u'lose', u'appeal'] [u'child', u'restraint', u'knowledg', u'prove'] [u'china', u'biggest', u'jailer', u'cyber', u'dissid', u'report'] [u'china', u'deni', u'arrest', u'cathol', u'bishop'] [u'club', u'fear', u'poki', u'rise'] [u'collin', u'stabl', u'crash', u'injuri', u'surgeri'] [u'comment', u'land', u'woodward', u'water'] [u'comment', u'seek', u'south', u'coast', u'green', u'strategi'] [u'committe', u'probe', u'closur'] [u'commonwealth', u'appoint'] [u'communiti', u'group', u'share', u'bank', u'profit'] [u'communiti', u'group', u'share', u'state', u'fund'] [u'communiti', u'urg', u'aboard', u'rail', u'campaign'] [u'condom', u'greet', u'tourist', u'thailand'] [u'conlon', u'quit', u'labor', u'leav', u'bolkus', u'decis'] [u'fear', u'self', u'thwart'] [u'coron', u'highlight', u'need', u'dementia', u'awar'] [u'councillor', u'fear', u'impact'] [u'council', u'cairn', u'plan', u'fight', u'public'] [u'council', u'upset', u'court', u'compo', u'rule'] [u'court', u'rule', u'dump', u'land', u'acquisit', u'illeg'] [u'curtin', u'univers', u'freez', u'hec', u'fee'] [u'cabl', u'affect', u'tweed', u'phone'] [u'dead', u'fish', u'dont', u'pose', u'health', u'threat', u'fisheri'] [u'desper', u'plea', u'blood', u'donat'] [u'detent', u'centr', u'stay', u'nauru', u'govt'] [u'develop', u'happi', u'council', u'plan', u'resolv'] [u'disput', u'home', u'owner', u'grant', u'continu'] [u'test', u'debunk', u'monster', u'myth'] [u'doctor', u'award', u'wife', u'treatment', u'bungl'] [u'downer', u'label', u'labor', u'anti', u'american'] [u'embryon', u'stem', u'cell', u'creat', u'australian'] [u'eriksson', u'demand', u'better', u'defend'] [u'everton', u'warn', u'club', u'rooney'] [u'export', u'grant', u'south', u'east', u'firm'] [u'fahrenheit', u'turn', u'offic', u'heat'] [u'failur', u'condemn', u'prison', u'abus', u'risk', u'live', u'kenni'] [u'govt', u'urg', u'nativ', u'titl', u'claim'] [u'fevola', u'lose', u'appeal'] [u'satisfi', u'handl', u'schumach', u'crash'] [u'fifth', u'polic', u'station', u'attack', u'mosul'] [u'fight', u'break', u'iraqi', u'citi'] [u'extend', u'mine', u'life'] [u'kill', u'indian', u'bomb', u'blast'] [u'flintoff', u'loss', u'hurt', u'england', u'seri'] [u'footbal', u'accus', u'school', u'fast', u'food', u'promot'] [u'foreign', u'terrorist', u'kill', u'fallujah', u'hous', u'strike'] [u'account', u'face', u'court'] [u'arrest'] [u'forum', u'focus', u'indigen', u'tourism'] [u'fossil', u'weight', u'dinosaur', u'extinct', u'theori'] [u'freight', u'council', u'welcom', u'port', u'review'] [u'legisl', u'senat'] [u'germani', u'coach', u'voeller', u'resign'] [u'girl', u'club', u'blame', u'problem', u'health'] [u'govern', u'appeal', u'nuclear', u'dump', u'rule'] [u'govt', u'accus', u'rush', u'upper', u'hous', u'appoint'] [u'govt', u'announc', u'famili', u'court', u'chief', u'justic'] [u'govt', u'introduc', u'second', u'marriag'] [u'govt', u'move', u'reduc', u'dengu', u'fever', u'threat'] [u'govt', u'reject', u'becton', u'develop'] [u'govt', u'appeal', u'court', u'nuclear', u'dump', u'plan'] [u'govt', u'remov', u'fisher', u'compo'] [u'handov', u'detail', u'delay', u'british', u'troop', u'releas'] [u'hardi', u'plan', u'wine', u'product', u'chang'] [u'health', u'merger', u'plan', u'unclear'] [u'hibern', u'lemur', u'start', u'stir'] [u'high', u'bosnian', u'bank', u'euro', u'offer'] [u'hockeyroo', u'prove', u'good', u'japan'] [u'hospit', u'chart', u'electron', u'darwin'] [u'hotel', u'sell', u'liquor', u'outlet', u'wooli'] [u'howard', u'defend', u'armi', u'public', u'pic'] [u'hunt', u'prison', u'farm', u'escap'] [u'iluka', u'green', u'light', u'miner', u'sand', u'project'] [u'immigr', u'dept', u'prais', u'asylum', u'seeker', u'work'] [u'indic', u'decis', u'spark', u'news', u'corp', u'sell'] [u'indigen', u'welfar', u'relianc', u'fall'] [u'ingram', u'welcom', u'lake', u'mokoan', u'decis'] [u'inquiri', u'ask', u'atsic', u'hold'] [u'iran', u'resum', u'talk', u'releas', u'detaine'] [u'iraqi', u'milit', u'use', u'poison', u'allawi'] [u'irish', u'junior', u'wallabi'] [u'irrig', u'question', u'lack', u'subsid', u'solut'] [u'john', u'keep', u'everybodi', u'guess'] [u'jone', u'confid', u'paul'] [u'kemp', u'outlin', u'cycl', u'drug', u'inquiri', u'detail'] [u'labor', u'attack', u'govt', u'anti', u'domest', u'violenc', u'campaign'] [u'langer', u'hit', u'tour', u'match'] [u'late', u'ralli', u'boost', u'market'] [u'leader', u'gather', u'bacon', u'funer'] [u'light', u'train', u'upgrad'] [u'litchfield', u'pool', u'promis', u'drain'] [u'local', u'govt', u'group', u'fight'] [u'london', u'enlist', u'sydney', u'firm', u'game'] [u'long', u'servic', u'spur', u'talli'] [u'long', u'summer', u'holiday', u'suspend', u'british'] [u'lord', u'mayor', u'push', u'ahead', u'secur', u'camera', u'trial'] [u'custodi', u'face', u'fraud', u'charg'] [u'jail', u'crash', u'leav', u'friend', u'quadripleg'] [u'jail', u'shoot'] [u'bond', u'wooli', u'cyanid', u'threat'] [u'mayor', u'upset', u'oppn', u'water', u'stanc'] [u'mayor', u'upset', u'lake', u'mokoan', u'plan'] [u'air', u'fear', u'tafe', u'cours'] [u'meet', u'consid', u'doblo', u'futur'] [u'guilti', u'barker', u'murder'] [u'million', u'zimbabwean', u'need', u'food', u'report'] [u'minist', u'defend', u'backburn'] [u'minist', u'outlin', u'detail', u'cyclist', u'drug', u'inquiri'] [u'miss', u'american', u'tourist'] [u'melt', u'metal', u'explod', u'burn'] [u'montgomeri', u'target', u'lifetim'] [u'mosley', u'determin', u'push', u'chang'] [u'nat', u'attack', u'research', u'station', u'plan'] [u'news', u'corp', u'futur', u'indic', u'question'] [u'news', u'corp', u'slump', u'market', u'follow'] [u'sign', u'point', u'driver'] [u'aussi', u'child', u'live', u'poverti', u'church'] [u'extra', u'fund', u'offer', u'rfds'] [u'north', u'fatal', u'crash', u'investig'] [u'budget', u'pose', u'environ', u'concern'] [u'polic', u'push', u'right', u'retir', u'super'] [u'nurs', u'group', u'offer', u'matern', u'servic', u'plan', u'support'] [u'nurs', u'union', u'push', u'cours', u'stay', u'open'] [u'oppn', u'air', u'tafe', u'worri'] [u'orford', u'stay', u'storm'] [u'pagan', u'hail', u'greatest'] [u'parasit', u'fish', u'kill'] [u'phoeb', u'freez', u'time', u'capsul'] [u'exploit', u'marriag', u'issu', u'right', u'group'] [u'visit', u'northern', u'tasmania'] [u'polic', u'arrest', u'machet', u'incid'] [u'polic', u'warn', u'tailgat', u'danger'] [u'port', u'hedland', u'mayor', u'resign'] [u'public', u'servant', u'reject', u'politicis', u'claim'] [u'push', u'qanta', u'crew'] [u'qanta', u'refus', u'budg', u'london', u'base', u'decis'] [u'regener', u'friend', u'speci', u'reef', u'health'] [u'relat', u'hous', u'deed', u'bail', u'khazal'] [u'relief', u'britain', u'welcom', u'releas', u'captur'] [u'report', u'question', u'benefit'] [u'research', u'station', u'shake'] [u'robert', u'seek', u'greater', u'hous', u'afford'] [u'safin', u'join', u'chorus', u'disapprov', u'olymp'] [u'jail', u'life', u'kill', u'famili', u'friend'] [u'saudi', u'arabia', u'offer', u'qaeda', u'milit', u'amnesti'] [u'school', u'drop', u'rat', u'reinforc', u'poverti', u'cycl'] [u'schooli', u'organis'] [u'school', u'packag', u'infring', u'state'] [u'second', u'tragedi', u'railton'] [u'senat', u'pass'] [u'kill', u'bomb', u'explod', u'mosul'] [u'traffic', u'law', u'committe'] [u'singleton', u'fourth', u'channel'] [u'smart', u'medicar', u'card'] [u'smart', u'medicar', u'card', u'plan', u'rais', u'privaci', u'issu'] [u'smuggl', u'dinosaur', u'egg', u'withdraw', u'auction'] [u'snap', u'tram', u'strike', u'strand', u'commut'] [u'south', u'african', u'aid', u'activist', u'protest', u'militari'] [u'south', u'korea', u'probe', u'behead'] [u'staff', u'shortag', u'problem', u'persist', u'mersey', u'hospit'] [u'hope', u'alma', u'pool'] [u'support', u'show', u'prescrib', u'burn'] [u'support', u'seek', u'sugar', u'mill', u'buyout', u'plan'] [u'survey', u'aim', u'boost', u'indigen', u'train'] [u'swiss', u'admit', u'frei', u'confess', u'spat'] [u'tasmanian', u'await', u'bacon', u'corteg'] [u'tasmanian', u'farewel', u'bacon'] [u'level', u'worri', u'busi', u'survey'] [u'network', u'air', u'record', u'profit', u'hop'] [u'terror', u'bail', u'chang', u'didnt', u'ruddock'] [u'thousand', u'tribut', u'bacon'] [u'kill', u'gaza', u'strip', u'clash'] [u'nepali', u'children', u'kill', u'play', u'bomb'] [u'tourism', u'group', u'welcom', u'campaign'] [u'tram', u'driver', u'return', u'work'] [u'realiti', u'capitalis', u'india', u'pakistan'] [u'showcas', u'limeston', u'coast'] [u'injur', u'turkish', u'bomb', u'blast'] [u'naval', u'personnel', u'releas', u'iran'] [u'union', u'highlight', u'apprentic', u'woe'] [u'union', u'tour', u'focus', u'workplac', u'agreement'] [u'consult', u'break', u'hill', u'campus', u'plan'] [u'unpaid', u'rat', u'forc', u'council', u'consid', u'properti'] [u'drop', u'exempt'] [u'helicopt', u'down', u'clash', u'erupt', u'near', u'fallujah'] [u'launch', u'strike', u'baquba'] [u'launch', u'strike', u'baquba', u'amid', u'heavi'] [u'north', u'korea', u'meet', u'see', u'chanc', u'discuss', u'offer'] [u'north', u'korea', u'negoti', u'begin', u'privat', u'talk'] [u'offer', u'north', u'korea', u'incent', u'scrap', u'nuclear'] [u'satellit', u'launch', u'free', u'mercuri', u'mission'] [u'senat', u'pass', u'billion', u'defenc'] [u'voic', u'congo', u'unrest', u'concern'] [u'goldfield', u'nomin', u'heritag', u'list'] [u'govt', u'hit', u'hous', u'afford', u'claim'] [u'voeller', u'blame', u'striker', u'euro', u'exit'] [u'water', u'author', u'unsur', u'levi', u'impact'] [u'water', u'polici', u'pander', u'green', u'group', u'nation'] [u'eas', u'board', u'boredom'] [u'whale', u'song', u'provid', u'clue', u'suffer'] [u'xstrata', u'talk', u'expans', u'benefit'] [u'arrest', u'theft'] [u'african', u'accid'] [u'abbott', u'dismiss', u'health', u'fund', u'overhaul', u'call'] [u'improv', u'radio', u'servic'] [u'depart', u'merger', u'cost', u'job'] [u'agreement', u'seek', u'nation', u'water', u'initi'] [u'aid', u'fight', u'window', u'close', u'expert'] [u'allawi', u'vow', u'crush', u'milit', u'death', u'toll', u'rise'] [u'ord', u'finish', u'week'] [u'angelina', u'joli', u'adopt', u'agent', u'admit', u'fraud'] [u'anti', u'amalgam', u'candid', u'join', u'fmit'] [u'interact', u'market', u'servic'] [u'aristocrat', u'lose', u'chairman', u'court', u'post'] [u'attack', u'iraq', u'unexpect', u'powel'] [u'author', u'pleas', u'duck', u'hunter'] [u'babysitt', u'jail', u'month'] [u'lade', u'contact', u'iraq', u'report'] [u'blast', u'turn', u'drink', u'machin', u'chemic', u'weapon'] [u'blue', u'scope', u'industri', u'end'] [u'boati', u'navig', u'need'] [u'bomber', u'close', u'sheedi', u'deal'] [u'boomer', u'beat', u'second', u'string', u'croatia'] [u'bowi', u'halt', u'pragu', u'concert'] [u'brack', u'push', u'water', u'conserv', u'polici'] [u'britain', u'label', u'militari', u'trial', u'unaccept'] [u'british', u'press', u'slam', u'ref', u'disgrac'] [u'break', u'hill', u'reflect', u'wast', u'dump', u'rule'] [u'build', u'industri', u'face', u'tasmanian', u'labor', u'shortag'] [u'burk', u'farewel', u'waratah', u'faith'] [u'bushfir', u'awar', u'releas'] [u'bush', u'question', u'leak'] [u'bush', u'seek', u'nato', u'support', u'iraq'] [u'indigen', u'lump', u'payment'] [u'probe', u'prison', u'abus', u'claim'] [u'go', u'blood', u'donat'] [u'camberwel', u'rail', u'station', u'protect'] [u'campaign', u'push', u'meat'] [u'campaign', u'focus', u'homeless'] [u'celesti', u'link', u'star', u'indigen', u'book'] [u'child', u'bonus', u'feed', u'poker', u'machin'] [u'china', u'olymp', u'midst', u'graft', u'scandal'] [u'china', u'europ', u'second', u'satellit', u'launch'] [u'cigarett', u'packet', u'display', u'graphic', u'health'] [u'clapton', u'guitar', u'fetch', u'record', u'price'] [u'coag', u'organis', u'resembl', u'chook', u'yard'] [u'coast', u'budget', u'includ', u'rate', u'rise'] [u'commonwealth', u'bank', u'staff', u'strike'] [u'communic', u'astronaut', u'spacewalk'] [u'compani', u'keen', u'establish', u'trade', u'link'] [u'congo', u'rwanda', u'presid', u'meet'] [u'consum', u'warn', u'internet', u'shop', u'danger'] [u'controversi', u'venus', u'tiebreak'] [u'council', u'back', u'ward', u'reduct'] [u'council', u'hop', u'discount', u'ethanol', u'blend', u'fuel'] [u'council', u'seek', u'lake', u'mokoan', u'wetland', u'fund'] [u'court', u'begin', u'hear', u'maleni', u'supermarket', u'plan'] [u'play', u'role', u'region'] [u'cyclist', u'millar', u'releas', u'night', u'cell'] [u'debt', u'reduct', u'spark', u'sugar', u'fear'] [u'deniliquin', u'age', u'care', u'centr', u'open'] [u'dept', u'restructur', u'spark', u'industri', u'unrest'] [u'doctor', u'group', u'air', u'region', u'cancer', u'concern'] [u'domest', u'violenc', u'law', u'strengthen'] [u'driver', u'warn', u'polic', u'crackdown'] [u'drug', u'smuggler', u'link', u'mexican', u'editor', u'murder'] [u'dump', u'rule', u'undermin', u'nuclear', u'reactor', u'plan'] [u'eagl', u'lift', u'howel', u'stroke', u'lead'] [u'eagl', u'rap', u'cash', u'report'] [u'mail', u'war', u'heat', u'hotmail', u'expand', u'free'] [u'firefight', u'sentenc'] [u'factori', u'agre', u'safeti', u'audit', u'demand'] [u'factori', u'halt', u'employe', u'demand', u'safeti', u'audit'] [u'famili', u'want', u'chemic', u'spill', u'compo'] [u'faster', u'internet', u'download', u'polic', u'doctor'] [u'fear', u'air', u'vineyard', u'invest', u'scheme'] [u'fear', u'babi', u'bonus', u'alcohol'] [u'fear', u'hold', u'posit', u'research', u'shake'] [u'govt', u'fund', u'shortfal', u'blame', u'rate'] [u'firefight', u'contain', u'mosqu', u'blaze'] [u'charg', u'purana', u'task', u'forc', u'raid'] [u'face', u'drug', u'charg', u'polic', u'raid'] [u'flight', u'crew', u'error', u'fatal', u'plane', u'crash', u'report'] [u'flood', u'boost', u'workload'] [u'franc', u'homework', u'greec', u'match'] [u'funer', u'hold', u'horror', u'smash'] [u'futur', u'tipperari', u'station', u'anim', u'unclear'] [u'futur', u'unclear', u'leak'] [u'home', u'english', u'portug', u'take', u'street'] [u'govern', u'ignor', u'hous', u'crisi', u'acoss'] [u'govt', u'consid', u'last', u'tribut', u'bacon'] [u'govt', u'donat', u'paul', u'restor'] [u'govt', u'plan', u'allow', u'male', u'teach', u'scholarship'] [u'govt', u'releas', u'mitsubishi', u'rescu', u'packag'] [u'govt', u'interest', u'wast', u'dump', u'site', u'park', u'plan'] [u'grandpar', u'increas', u'rais', u'grandchildren'] [u'grazier', u'meet', u'beef', u'industri', u'concern'] [u'group', u'unhappi', u'memori', u'fund', u'snub'] [u'guantanamo', u'inmat', u'trial', u'unfair', u'say', u'lawyer'] [u'hewitt', u'set', u'meet', u'bear', u'goran'] [u'highway', u'chemic', u'spill', u'investig'] [u'hinterland', u'resid', u'ask', u'green', u'scheme'] [u'hundr', u'wwii', u'chemic', u'bomb', u'china'] [u'indonesian', u'economi', u'perform', u'region'] [u'indonesian', u'rebel', u'charg', u'teacher', u'death'] [u'inner', u'sydney'] [u'high', u'balloon', u'titl'] [u'iran', u'accus', u'resum', u'uranium', u'program'] [u'iran', u'statement', u'prompt', u'nuke', u'fear'] [u'iran', u'warn', u'border', u'incurs'] [u'iraqi', u'handov', u'ahead', u'bush'] [u'iraq', u'unrest', u'worri', u'market'] [u'istanbul', u'bomb', u'toll', u'rise'] [u'john', u'back', u'huge', u'risk'] [u'john', u'stay', u'leagu'] [u'judg', u'water', u'masturb', u'claim'] [u'khazal', u'bail', u'rule', u'earn', u'govern', u'wrath'] [u'klep', u'remand', u'custodi'] [u'klien', u'freak', u'accid', u'hit', u'jaguar', u'test'] [u'labor', u'deni', u'vote', u'expos', u'divis'] [u'labor', u'premier', u'trade', u'deal'] [u'lankan', u'chase', u'territorian', u'darwin'] [u'laverton', u'group', u'oppos', u'wast', u'dump', u'plan'] [u'leader', u'decid', u'murray', u'fate'] [u'lehmann', u'readi', u'lankan'] [u'lennon', u'scrap', u'plan', u'attend', u'coag', u'meet'] [u'local', u'govt', u'group', u'back', u'port', u'hedland', u'council'] [u'magistr', u'court', u'head', u'replac', u'nicholson'] [u'convict', u'chinchilla', u'manslaught'] [u'massiv', u'secur', u'ireland', u'prepar', u'bush'] [u'mayor', u'talk', u'caloundra', u'budget'] [u'mcgrath', u'wicketless', u'tour', u'match'] [u'meet', u'focus', u'kosciuszko', u'manag', u'plan'] [u'mental', u'health', u'concern', u'state', u'coron'] [u'millar', u'confess', u'dope', u'report'] [u'miseri', u'rage', u'england', u'lose', u'penalti'] [u'miss', u'north', u'west'] [u'mix', u'reaction', u'water', u'legisl'] [u'montgomeri', u'admit', u'report'] [u'rail', u'delay', u'expect'] [u'morton', u'name', u'nation', u'museum', u'head'] [u'mundin', u'aim', u'inspir', u'gambier', u'student'] [u'murray', u'goulburn', u'plant', u'sourc', u'legionnair'] [u'music', u'enthusiast', u'head', u'east', u'coast'] [u'nasal', u'spray', u'protect', u'monkey', u'sar'] [u'nat', u'head', u'dubbo', u'confer'] [u'centr', u'benefit', u'derbi', u'youth'] [u'korea', u'threaten', u'direct', u'nuclear', u'test', u'south', u'korea'] [u'korea', u'threaten', u'nuclear', u'test', u'report'] [u'fund', u'wimmera', u'malle', u'pipelin', u'govt'] [u'northern', u'footbal', u'leagu', u'tribut', u'bacon'] [u'nation', u'highlight', u'problem', u'welfar'] [u'pair', u'stand', u'trial', u'assault', u'charg'] [u'palestinian', u'thiev', u'return', u'shin'] [u'parti', u'celebr', u'return', u'passeng', u'rail', u'servic'] [u'paul', u'england', u'clash'] [u'pike', u'announc', u'health', u'worker', u'fund'] [u'plan', u'begin', u'substanc', u'scheme'] [u'pleasur', u'receptor', u'hold', u'mother', u'child'] [u'prais', u'green', u'reject', u'water', u'deal'] [u'asean', u'summit', u'invit'] [u'polic', u'crack', u'nation', u'cattl', u'duf', u'ring'] [u'polic', u'investig', u'arm', u'robberi', u'link'] [u'polic', u'probe', u'mosqu', u'melbourn'] [u'polic', u'seiz', u'worth', u'drug'] [u'poor', u'mainten', u'lead', u'light', u'plan', u'crash', u'report'] [u'portug', u'progress', u'shoot', u'thriller'] [u'powel', u'pressur', u'sudan', u'arab', u'militia'] [u'priest', u'arrest', u'charg', u'deport'] [u'princess', u'carolin', u'win', u'court', u'case'] [u'prison', u'abus', u'outrag', u'hypocrit', u'burnsid'] [u'public', u'school', u'fund', u'minuscul', u'actu'] [u'puppi', u'prevent', u'canadian', u'kill', u'spree'] [u'push', u'blanket', u'warm', u'cloth'] [u'rain', u'reveal', u'frog', u'speci'] [u'rehab', u'expuls', u'student', u'drug', u'problem'] [u'rehhagel', u'focus', u'success', u'greek', u'hero'] [u'research', u'abuzz', u'find'] [u'seek', u'sourc', u'billion', u'deal'] [u'river', u'arriv', u'coag', u'meet'] [u'road', u'crash', u'investig'] [u'robber', u'forc', u'restaur', u'patron', u'floor'] [u'rooney', u'injuri', u'pretti', u'say', u'sven'] [u'processor', u'secur', u'state', u'fund'] [u'rough', u'terrain', u'hamper', u'cliff', u'rescu', u'effort'] [u'sack', u'wont', u'stop', u'atsic', u'fight', u'commission'] [u'sadr', u'militia', u'call', u'truce', u'fight', u'terrorist'] [u'scienc', u'crack', u'year', u'round', u'muddi'] [u'score', u'kill', u'iranian', u'road', u'accid'] [u'secur', u'measur', u'step', u'pisa'] [u'senat', u'continu', u'clear', u'legisl', u'deck'] [u'senat', u'reduc', u'super', u'cut'] [u'serena', u'roddick'] [u'sharehold', u'approv', u'westfield', u'merger'] [u'shire', u'address', u'mossi', u'number'] [u'shire', u'trial', u'biosolid', u'storag', u'facil'] [u'small', u'tremor', u'felt', u'darwin'] [u'win', u'lose', u'separ', u'defam', u'action'] [u'south', u'releas', u'peter', u'sign', u'cusack'] [u'spacewalk', u'short', u'oxygen', u'problem'] [u'spain', u'gibernau', u'take', u'provision', u'pole'] [u'spain', u'saez', u'quit', u'euro', u'exit'] [u'speed', u'fall', u'pedestrian', u'death'] [u'sport', u'honour', u'beaconsfield', u'polic', u'boss'] [u'srebrenica', u'survivor', u'netherland'] [u'state', u'interest', u'decid', u'gallop', u'water', u'strategi'] [u'state', u'health', u'care', u'shortag', u'concern'] [u'streep', u'take', u'dark', u'matter'] [u'student', u'outrag', u'textbook', u'subsidi', u'scrap'] [u'support', u'electr', u'market', u'access', u'rule'] [u'swift', u'winner', u'circl'] [u'sydney', u'dam', u'level', u'near', u'record', u'low'] [u'talk', u'fail', u'eas', u'qanta', u'concern'] [u'tasmanian', u'warn', u'possibl', u'credit', u'card', u'scam'] [u'teen', u'avoid', u'detent', u'blaze'] [u'terrorist', u'attack', u'financ', u'switzerland', u'task'] [u'test', u'macgil'] [u'thuringowa', u'celebr', u'river', u'festiv'] [u'tiger', u'cream', u'rooster', u'juggernaut'] [u'titl', u'hungri', u'saiki', u'lead', u'tesk', u'pittsford'] [u'tourism', u'council', u'back', u'feder', u'agenc'] [u'turkish', u'polic', u'detain', u'bomb', u'suspect'] [u'marin', u'kill', u'wound', u'afghanistan'] [u'bomb', u'raid', u'target', u'fallujah', u'baqubah'] [u'court', u'block', u'media', u'ownership', u'chang'] [u'open', u'survivor', u'mug', u'french', u'open'] [u'extend', u'iraq', u'prosecut', u'immun'] [u'vail', u'confid', u'labor', u'pass', u'law'] [u'venus', u'down', u'feder', u'fli'] [u'govt', u'ask', u'appl', u'rethink'] [u'jail', u'kill', u'father'] [u'want', u'australian', u'dead', u'thai', u'prison', u'cell'] [u'warrant', u'issu', u'judg'] [u'water', u'board', u'want', u'consumpt', u'figur', u'keep', u'secret'] [u'expand', u'nation', u'park', u'promis'] [u'westfield', u'stay', u'aust', u'say', u'chairman'] [u'wimbledon', u'offici', u'review', u'umpir', u'error'] [u'wolfowitz', u'apologis', u'journalist', u'iraq'] [u'woman', u'unsur', u'husband', u'stab', u'death'] [u'woodward', u'poke', u'ahead', u'replay'] [u'world', u'safer', u'place', u'despit', u'iraq', u'attack', u'bush'] [u'urg', u'state', u'green', u'energi'] [u'afghanistan', u'grow', u'opium', u'trade', u'concern'] [u'afghan', u'opium', u'product', u'control'] [u'algal', u'bloom', u'kill', u'thousand', u'fish', u'swan', u'river'] [u'black', u'bumbl', u'easi', u'puma'] [u'warn', u'water', u'deal', u'pork', u'barrel'] [u'back', u'tougher', u'child', u'abus', u'report', u'law'] [u'annan', u'push', u'nato', u'troop', u'afghanistan'] [u'appl', u'import', u'plan', u'consid', u'diseas', u'free'] [u'arafat', u'commit', u'truce', u'olymp'] [u'assault', u'inmat', u'deem', u'risk', u'govt'] [u'bishop', u'belo', u'embark', u'mozambiqu', u'mission'] [u'blair', u'person', u'plea', u'guantanamo', u'releas'] [u'boomer', u'lord', u'itali'] [u'border', u'monitor', u'eas', u'congo', u'rwanda', u'tension'] [u'bulldog', u'spoil', u'cowboy', u'parti'] [u'canada', u'hunt', u'save'] [u'dealer', u'seek', u'illeg', u'oper', u'crackdown'] [u'clinic', u'hewitt', u'favourit'] [u'clinton', u'fan', u'camp', u'ahead', u'book', u'sign'] [u'confus', u'surround', u'istanbul', u'airport', u'bomb', u'claim'] [u'consum', u'warn', u'oversea', u'real', u'estat'] [u'court', u'rule', u'princess', u'entitl', u'privaci'] [u'court', u'set', u'date', u'bryant', u'rape', u'trial'] [u'crowd', u'protest', u'govt', u'marriag'] [u'czech', u'surviv', u'day', u'buri', u'aliv', u'coffin'] [u'deadlin', u'reviv', u'ireland', u'power', u'deal'] [u'debat', u'flow', u'nation', u'water', u'plan'] [u'diplomat', u'play', u'castro', u'releas', u'dissid'] [u'dockland', u'host', u'hmas', u'ballarat', u'commiss'] [u'merger', u'boost', u'revenu'] [u'east', u'timor', u'threaten', u'deport', u'australian'] [u'effici', u'sophist', u'home', u'earn', u'architectur'] [u'exit', u'showman', u'goran', u'call'] [u'experi', u'lucic', u'sweden', u'return'] [u'explos', u'hear', u'baghdad'] [u'break', u'gold', u'coast', u'theme', u'park'] [u'fisher', u'float', u'reef', u'rezon', u'concern'] [u'fitzroy', u'final', u'receiv', u'premiership'] [u'fli', u'doctor', u'hold', u'dunni', u'door', u'contest'] [u'fli', u'rossi', u'grab', u'dutch', u'pole'] [u'kill', u'attack', u'baquba', u'shiit', u'group'] [u'french', u'press', u'maul', u'fall', u'hero'] [u'garrett', u'tell', u'young', u'labor', u'join'] [u'garrett', u'address', u'young', u'labor', u'confer'] [u'german', u'tell'] [u'good', u'rocca', u'challeng', u'roo'] [u'govern', u'incompet', u'blame', u'jail', u'crowd'] [u'govern', u'contract', u'attract', u'union'] [u'govt', u'listen', u'resid', u'plan', u'tunnel'] [u'govt', u'seek', u'recognis', u'soldier', u'medal'] [u'govt', u'reach', u'deal', u'water', u'resourc'] [u'grazier', u'controversi', u'cotton', u'research'] [u'greek', u'histori', u'maker', u'stun', u'franc'] [u'green', u'french', u'open', u'content'] [u'gunn', u'empt', u'forestri', u'polici', u'chang'] [u'hewitt', u'end', u'ivanisev', u'wimbledon', u'swansong'] [u'hockeyroo', u'japan', u'clash'] [u'huey', u'helicopt', u'retir'] [u'iran', u'push', u'ahead', u'uranium', u'enrich', u'plan'] [u'iraqi', u'shiit', u'condemn', u'filthi', u'infidel', u'terrorist'] [u'irish', u'ralli', u'polici'] [u'wont', u'quit', u'captainci', u'beckham'] [u'jackson', u'judg', u'say', u'fair', u'trial', u'difficult'] [u'judg', u'confid', u'cycl', u'drug', u'probe'] [u'kung', u'grab', u'share', u'lpga', u'lead'] [u'lankan', u'scent', u'victori', u'darwin'] [u'lara', u'look', u'win', u'start'] [u'latham', u'tread', u'light', u'carr'] [u'leav', u'delta', u'warn', u'scud'] [u'liber', u'candid', u'advoc', u'nation', u'educ'] [u'lippi', u'name', u'itali', u'coach'] [u'charg', u'murder', u'death', u'woman'] [u'seek', u'hijack'] [u'millar', u'bar', u'tour', u'franc'] [u'minist', u'reject', u'govt', u'energi', u'polici'] [u'nuclear', u'energi', u'need', u'rais', u'live'] [u'troop', u'leav', u'stabl', u'solomon'] [u'movi', u'theatr', u'washington'] [u'head', u'home', u'amid', u'talk', u'august', u'poll'] [u'nasdaq', u'escap', u'iraq', u'induc', u'stock', u'fall'] [u'nato', u'strike', u'tentat', u'iraq', u'secur', u'deal'] [u'newest', u'naval', u'frigat', u'enter', u'servic'] [u'govt', u'cambodia', u'month', u'elect'] [u'australian', u'hurt', u'mosul', u'mortar', u'attack'] [u'breakthrough', u'north', u'korean', u'nuclear', u'talk'] [u'corrupt', u'charg', u'lay', u'drug', u'squad'] [u'approv', u'home', u'project'] [u'chang', u'stamp', u'duti', u'avoid'] [u'ogradi', u'readi', u'green', u'jersey', u'battl'] [u'olymp', u'flame', u'stop', u'london'] [u'onlin', u'retail', u'strip', u'custom', u'right', u'accc'] [u'panther', u'power', u'home', u'eel'] [u'parliament', u'hold', u'rare', u'saturday', u'sit'] [u'paul', u'england', u'clash'] [u'poki', u'chang', u'toughen', u'licenc', u'process'] [u'queanbeyan', u'councillor', u'face', u'elector', u'test'] [u'queensland', u'better', u'reign', u'beatti'] [u'ralf', u'french', u'decis', u'week'] [u'rathbon', u'spark', u'wallabi', u'reveng'] [u'rooney', u'rule', u'week', u'eriksson'] [u'rusedski', u'loss', u'leav', u'henman'] [u'salt', u'deposit', u'boost', u'mar', u'theori'] [u'sangakkara', u'flay', u'territorian'] [u'score', u'kill', u'yemen', u'clash'] [u'scott', u'snatch', u'maryland', u'lead'] [u'scud', u'leav', u'time'] [u'small', u'busi', u'benefit', u'chang'] [u'soldier', u'claim', u'command', u'present', u'death'] [u'spear', u'marriag', u'second'] [u'storm', u'continu', u'warrior', u'miseri'] [u'stick', u'switch', u'caus', u'spacewalk', u'problem', u'nasa'] [u'sudan', u'deni', u'darfur', u'crisi'] [u'surplus', u'reviv', u'conoco', u'suppli', u'talk'] [u'swan', u'pie', u'final', u'hop'] [u'kill', u'kashmir', u'attack'] [u'blast', u'rock', u'burmes', u'train', u'station'] [u'elect', u'worker', u'kill', u'afghanistan', u'blast'] [u'tight', u'secur', u'ireland', u'bush', u'talk'] [u'kill', u'nablus', u'search', u'oper'] [u'tyson', u'settl', u'lawsuit', u'king'] [u'demand', u'access', u'terror', u'suspect'] [u'denounc', u'isra', u'palestinian', u'violenc'] [u'head', u'meet', u'powel', u'darfur'] [u'unit', u'line', u'rooney', u'report'] [u'take', u'charg', u'haiti', u'secur'] [u'interim', u'iraq', u'govern'] [u'investig', u'suspect', u'case'] [u'name', u'replac', u'iraq', u'abus', u'investig'] [u'nkorea', u'closer', u'crisi', u'talk'] [u'strike', u'zarqawi', u'safe', u'hous'] [u'surfer', u'password', u'bank', u'detail', u'vulner'] [u'wind', u'hamper', u'balloon', u'championship'] [u'xenophon', u'question', u'asbesto', u'report', u'respons'] [u'seek', u'interst', u'koala', u'stanhop'] [u'algal', u'bloom', u'monitor', u'fish'] [u'quiet', u'fairer', u'plan', u'detail'] [u'rethink', u'terror', u'hotlin', u'glitch', u'go'] [u'bomb', u'explod', u'istanbul', u'ahead', u'nato'] [u'australian', u'break', u'countri', u'music', u'drought'] [u'australian', u'gusmao', u'halt', u'deport'] [u'beckham', u'hint', u'media', u'forc', u'real'] [u'blast', u'fail', u'deter', u'regist', u'women'] [u'brisban', u'serv', u'feast'] [u'bung', u'caus', u'hobart', u'sink'] [u'bush', u'declar', u'iraq', u'rift', u'heal'] [u'bush', u'interview', u'cancel', u'broadcast'] [u'call', u'cost', u'hous', u'fund'] [u'carr', u'express', u'faith', u'latham'] [u'carrol', u'report', u'raider', u'break', u'hoodoo'] [u'halt', u'harsh', u'interrog', u'report'] [u'close', u'test', u'aust', u'troop', u'respons'] [u'command', u'tell', u'attack', u'aust', u'troop'] [u'czech', u'govern', u'fall', u'resign'] [u'dead', u'bomb', u'hit', u'southern', u'iraqi', u'citi'] [u'denmark', u'readi', u'czech', u'test'] [u'develop', u'meet', u'flood', u'martha', u'cove', u'resid'] [u'dilshan', u'guid', u'lankan', u'home'] [u'dragon', u'romp'] [u'dutch', u'final', u'shootout', u'reach', u'semi'] [u'earli', u'count', u'put', u'pangallo', u'ahead'] [u'energi', u'generat', u'public'] [u'enron', u'admit', u'respons', u'collaps'] [u'famili', u'appeal', u'help', u'miss'] [u'fan', u'danc', u'street', u'dutch', u'semi'] [u'fertil', u'technolog', u'help', u'save', u'endang', u'speci'] [u'destroy', u'movi', u'studio'] [u'georgia', u'step', u'time'] [u'ghan', u'break', u'length', u'record'] [u'gower', u'face', u'season', u'end', u'surgeri'] [u'greenpeac', u'remov', u'homebush', u'toxic', u'wast'] [u'green', u'challeng', u'garrett', u'port', u'plan'] [u'green', u'quiet', u'elect', u'prefer'] [u'green', u'stay', u'close', u'franc'] [u'grenad', u'attack', u'independ', u'madagascar'] [u'hama', u'aqsa', u'leader', u'kill', u'nablus', u'raid'] [u'health', u'area', u'merger', u'deal'] [u'high', u'standard', u'crocodil', u'hunter'] [u'hockeyroo', u'nation', u'tournament'] [u'hodg', u'eye', u'return', u'brisban'] [u'home', u'owner', u'flood', u'repair'] [u'hospit', u'trial', u'softwar', u'paperless', u'ward'] [u'balloon', u'championship', u'lift'] [u'iaea', u'urg', u'iran', u'reconsid', u'nuclear', u'work'] [u'sport', u'display', u'highlight', u'venu', u'troubl'] [u'indian', u'gay', u'lesbian', u'parad', u'right'] [u'injur', u'boer', u'celebr', u'ting', u'sad'] [u'insurg', u'delay', u'iraqi', u'elect'] [u'intern', u'bank', u'regul', u'set', u'tough', u'rule'] [u'iran', u'blame', u'afghan', u'drug', u'boom'] [u'iraq', u'attack', u'show', u'troop', u'stay'] [u'iraq', u'plan', u'amnesti', u'insurg'] [u'iraq', u'welcom', u'nato', u'train', u'plan'] [u'israel', u'dimiss', u'olymp', u'truce', u'offer'] [u'isra', u'forc', u'nablus', u'incurs'] [u'israel', u'talk', u'nuclear', u'arm', u'elbaradei'] [u'itali', u'down', u'boomer'] [u'kakadu', u'cut', u'lift', u'visitor', u'number'] [u'land', u'pass', u'develop', u'tread', u'cautious'] [u'lankan', u'chase', u'wicket', u'hand'] [u'latham', u'vow', u'parti'] [u'leak', u'reveal', u'babi', u'bonus', u'payment', u'concern'] [u'hospitalis', u'alban', u'shoot'] [u'mcgrath', u'confid', u'despit', u'tour', u'defeat'] [u'microsoft', u'request', u'stay', u'penalti'] [u'see', u'pittman', u'abandon', u'lill', u'race'] [u'museum', u'offer', u'relic', u'assess'] [u'nation', u'parti', u'stick', u'free', u'trade', u'stanc'] [u'navratilova', u'olymp', u'debut'] [u'hugh', u'star', u'knight'] [u'model', u'develop', u'indigen', u'palliat', u'care'] [u'contempt', u'action', u'brack', u'william', u'remark'] [u'offic', u'free', u'pcyc', u'paperwork'] [u'onlin', u'inform', u'improv', u'antarct', u'forecast'] [u'pakistani', u'cabinet', u'dissolv', u'resign'] [u'pakistan', u'resign', u'report'] [u'polic', u'continu', u'hunt', u'jacker'] [u'polic', u'investig', u'overnight', u'shoot'] [u'polic', u'know', u'norfolk', u'island', u'killer', u'ident', u'senat'] [u'pope', u'slam', u'tortur', u'intoler', u'violat'] [u'prospector', u'head', u'goldfield'] [u'protest', u'brussel', u'jewish', u'teenag', u'stab'] [u'protest', u'explos', u'mark', u'bush', u'visit', u'turkey'] [u'public', u'invit', u'inspect', u'ballarat'] [u'pulp', u'plan', u'win', u'feder', u'back'] [u'rain', u'save', u'windi', u'loss'] [u'robben', u'end', u'dutch', u'penalti', u'jinx'] [u'rooney', u'week'] [u'rossi', u'overtak', u'gibernau', u'dutch', u'victori'] [u'russia', u'ship', u'north', u'korea', u'food'] [u'saddam', u'move', u'jail', u'iraq'] [u'saiki', u'near', u'lpga', u'titl'] [u'slight', u'cheaper', u'power'] [u'scott', u'streak', u'ahead', u'maryland'] [u'serbian', u'voter', u'choos', u'presid'] [u'abus', u'critic', u'surpris', u'hollingworth'] [u'shop', u'face', u'closur', u'highway', u'upgrad'] [u'iraq', u'violenc', u'ahead', u'handov'] [u'smelter', u'propos', u'crazi', u'real'] [u'springbok', u'overwhelm', u'wale'] [u'suspect', u'taliban', u'kill', u'peopl', u'regist'] [u'sydney'] [u'sydney', u'observatori', u'threaten', u'budget'] [u'tale', u'prime', u'evil', u'win', u'african', u'literari', u'prize'] [u'move', u'save', u'wind', u'energi', u'plant'] [u'telecom', u'firm', u'launch', u'islam', u'mobil', u'phone'] [u'thunderbolt', u'kill', u'china'] [u'truck', u'driver', u'award', u'condit'] [u'tunnel', u'lobbi', u'group', u'seek', u'broad', u'transport', u'plan'] [u'turkey', u'refus', u'milit', u'demand'] [u'ultralight', u'crash', u'injur'] [u'uluru', u'resort', u'rebuild'] [u'uncap', u'fitter', u'name', u'wallabi', u'squad'] [u'commit', u'geneva', u'convent', u'bush'] [u'green', u'reject', u'nader', u'presidenti', u'nomine'] [u'veteran', u'umpir', u'bail', u'footbal', u'mileston'] [u'promis', u'holiday', u'road', u'blitz'] [u'villeneuv', u'drive', u'father', u'ferrari'] [u'join', u'state', u'base', u'energi', u'strategi'] [u'wallabi', u'want', u'roff', u'play'] [u'armstrong', u'ask', u'bar', u'luca'] [u'wimbledon', u'wash'] [u'wind', u'take', u'balloon', u'championship'] [u'zarqawi', u'support', u'threaten', u'behead', u'turk'] [u'escap', u'cash', u'comment', u'charg'] [u'abattoir', u'close', u'job', u'lose'] [u'local', u'news', u'editor', u'die', u'age'] [u'aborigin', u'coordin', u'council', u'spark'] [u'agreement', u'reach', u'offset', u'alpin', u'document'] [u'underworld', u'sponsorship', u'embarrass'] [u'architect', u'honour', u'citi', u'hall', u'work'] [u'argentin', u'titl', u'littl', u'consol'] [u'armstrong', u'histori', u'dope', u'cloud'] [u'asean', u'sign', u'draft', u'secur', u'plan'] [u'baggaley', u'bag', u'medal'] [u'baro', u'doubl', u'fire', u'czech'] [u'baro', u'vow', u'fight', u'place', u'look', u'liverpool'] [u'blade', u'product', u'plant', u'doubt'] [u'blaze', u'damag', u'mine', u'hous'] [u'boat', u'capsiz', u'india', u'dead'] [u'bonus', u'prompt', u'babi', u'talk', u'princip', u'say'] [u'hospit', u'suspect', u'meningococc'] [u'briton', u'kill', u'wound', u'iraq', u'attack'] [u'bulk', u'bill', u'rat', u'climb'] [u'cabinet', u'consid', u'kimberley', u'cotton', u'research'] [u'strong', u'open', u'milk', u'price'] [u'catchment', u'group', u'happi', u'greater', u'river', u'protect'] [u'china', u'crash', u'kill'] [u'china', u'sentenc', u'dozen', u'drug', u'dealer', u'death'] [u'clean', u'begin', u'high', u'wind'] [u'comic', u'address', u'indigen', u'alcohol', u'abus'] [u'cooma', u'monaro', u'elect', u'count', u'resum'] [u'costello', u'criticis', u'alp', u'diesel', u'excis', u'plan'] [u'costello', u'urg', u'commit', u'resourc', u'project'] [u'council', u'composit', u'unclear'] [u'councillor', u'urg', u'quiet', u'rate', u'rise', u'plan'] [u'council', u'want', u'manag', u'treat', u'fair', u'merger'] [u'court', u'reject', u'discriminatori', u'matern', u'leav', u'claim'] [u'custom', u'test', u'drone'] [u'democrat', u'film', u'attack', u'iraq', u'involv'] [u'doubt', u'cast', u'water', u'trade', u'benefit'] [u'clear', u'misconduct', u'volker', u'case'] [u'draw', u'determin', u'ballot', u'paper', u'rank'] [u'drought', u'forc', u'dairi', u'farmer'] [u'drown', u'bombo', u'beach', u'investig'] [u'ethanol', u'plant', u'court', u'case', u'resum'] [u'timor', u'move', u'deport', u'aust'] [u'suspend', u'anti', u'trust', u'measur', u'microsoft'] [u'factbox', u'iraq', u'interim', u'govern'] [u'factbox', u'power', u'interim', u'iraqi', u'govern'] [u'fahrenheit', u'top', u'north', u'american', u'offic'] [u'feder', u'serena', u'march'] [u'govt', u'urg', u'boost', u'fraser', u'tourism', u'effort'] [u'fight', u'fund', u'rais', u'counter', u'daintre'] [u'fiji', u'treason', u'trial', u'begin'] [u'firefight', u'continu', u'dous', u'movi', u'world', u'blaze'] [u'fittler', u'gasnier', u'tap', u'origin'] [u'forestri', u'need', u'transpar', u'report', u'say'] [u'fiji', u'testifi', u'coup', u'trial'] [u'spend', u'free', u'travel'] [u'teacher', u'guilti', u'child', u'charg'] [u'frawley', u'step', u'season'] [u'freak', u'accid', u'kill', u'garbag', u'collector'] [u'free', u'charg', u'guantanamo', u'prison', u'turkish', u'say'] [u'fund', u'undermin', u'wit', u'protect', u'polic'] [u'fund', u'polic', u'marin', u'fleet'] [u'gallop', u'launch', u'prospector', u'train'] [u'gate', u'target', u'australia', u'digit', u'divid'] [u'gather', u'focus', u'indigen', u'health'] [u'gayl', u'guid', u'west', u'indi', u'england'] [u'girl', u'lose', u'tram', u'accid'] [u'govt', u'rule', u'chang', u'serial', u'killer'] [u'govt', u'urg', u'indigen', u'kidney', u'problem'] [u'govt', u'urg', u'danger', u'toxic', u'wast'] [u'grain', u'handler', u'streamlin', u'export'] [u'great', u'walk', u'attract', u'tourist', u'worldwid', u'beatti'] [u'harradin', u'like', u'quit', u'polit'] [u'tractor', u'travel'] [u'heritag', u'regist', u'list', u'raaf', u'depot'] [u'hill', u'hear', u'push', u'navi', u'base'] [u'hospit', u'admiss', u'length', u'stay'] [u'howard', u'visit', u'herald', u'elect', u'lennon'] [u'howard', u'welcom', u'earli', u'iraq', u'power', u'transfer'] [u'hunter', u'high', u'immunis', u'rate'] [u'india', u'pakistan', u'reopen', u'consul'] [u'indonesian', u'polic', u'arrest', u'bali', u'link', u'terror', u'suspect'] [u'quot', u'iraq', u'handov'] [u'iraqi', u'govt', u'take', u'rein', u'earli'] [u'iraqi', u'presid', u'hail', u'transfer', u'power'] [u'iraqi', u'clear', u'bomb', u'kill', u'south'] [u'iraq', u'say', u'victim', u'terror'] [u'iraq', u'worri', u'dampen', u'share', u'market'] [u'irrig', u'say', u'water', u'return', u'reason'] [u'irrig', u'posit', u'water', u'agreement'] [u'isra', u'helicopt', u'fire', u'missil', u'gaza'] [u'jone', u'defeat', u'women', u'pole', u'vault', u'reach'] [u'kangaroo', u'koala', u'face', u'deport'] [u'labor', u'bring', u'elect', u'forward'] [u'labor', u'promis', u'afford', u'hous'] [u'land', u'negoti', u'build', u'trust', u'tribun'] [u'langer', u'back', u'mcgrath', u'comeback'] [u'leagu', u'club', u'close', u'good'] [u'lengthi', u'wit', u'list', u'doubl', u'murder', u'case'] [u'lib', u'senat', u'face', u'green', u'challeng'] [u'lion', u'favourit', u'flag', u'say', u'matthew'] [u'burn', u'home', u'explos'] [u'face', u'attempt', u'murder', u'charg'] [u'plead', u'guilti', u'help', u'escap'] [u'maroon', u'blue', u'chang', u'ahead', u'seri'] [u'mask', u'iraq', u'gunmen', u'threaten', u'behead', u'pakistani'] [u'mayor', u'seek', u'water', u'agreement', u'benefit'] [u'mcintosh', u'park', u'spotlight'] [u'milit', u'threaten', u'behead', u'marin'] [u'millar', u'rule', u'tour'] [u'infrastructur', u'help', u'remov', u'highway', u'truck'] [u'minist', u'say', u'iraqi', u'better'] [u'minist', u'highlight', u'school', u'disabl', u'access'] [u'minist', u'region', u'health', u'announc'] [u'mitsubishi', u'confirm', u'adelaid', u'sale', u'discuss'] [u'momentum', u'build', u'wimbledon', u'second', u'week'] [u'test', u'fell', u'dragon', u'thompson'] [u'defend', u'art', u'fund', u'effort'] [u'happi', u'privat', u'plantat'] [u'take', u'issu', u'marin', u'surveyor', u'transfer'] [u'nationalist', u'conced', u'defeat', u'serbian'] [u'nation', u'trust', u'accept', u'govt', u'help'] [u'nato', u'agre', u'major', u'expans', u'afghan', u'forc'] [u'nato', u'agre', u'train', u'iraqi', u'forc', u'amid', u'summit'] [u'navi', u'commit', u'remain', u'heavi', u'say', u'command'] [u'crow', u'coach', u'face', u'injuri', u'crisi'] [u'claim', u'water', u'initi'] [u'korea', u'reject', u'unrealist', u'offer'] [u'corrupt', u'probe', u'highlight', u'lack', u'supervis'] [u'scrutinis', u'local', u'council', u'project'] [u'unveil', u'middl', u'diseas', u'strategi'] [u'oecd', u'give', u'australia', u'poor', u'mark', u'equiti'] [u'kill', u'attack', u'raaf', u'hercul'] [u'option', u'limit', u'save', u'snow', u'dome'] [u'optus', u'issu', u'refund', u'mislead', u'promot'] [u'palestinian', u'blow', u'isra', u'armi', u'post', u'gaza'] [u'panel', u'reject', u'workplac', u'death', u'offenc'] [u'perfum', u'corner', u'wacki', u'scent', u'market'] [u'owner', u'warn', u'control', u'dog'] [u'pipelin', u'ocean', u'project', u'progress'] [u'player', u'death', u'sadden', u'footbal', u'leagu'] [u'dismiss', u'latham', u'advertis', u'stunt'] [u'polic', u'appeal', u'help', u'bash'] [u'polic', u'deni', u'budget', u'cost', u'inform', u'life'] [u'polic', u'investig', u'alban', u'shoot'] [u'polic', u'locat', u'steal', u'stock'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'probe', u'south', u'mackay', u'flat', u'blaze'] [u'polic', u'look', u'miss', u'woman'] [u'port', u'augusta', u'polic', u'moral'] [u'produc', u'drought'] [u'protest', u'arrest', u'gungahlin', u'develop'] [u'push', u'greater', u'sick', u'leav', u'flexibl'] [u'push', u'state', u'wineri', u'sale', u'rebat'] [u'qanta', u'passeng', u'strand', u'faulti', u'door'] [u'health', u'defend', u'mental', u'health', u'servic'] [u'question', u'rais', u'aborigin', u'corp', u'review'] [u'question', u'rais', u'bypass', u'delay'] [u'ransom', u'pay', u'italian', u'hostag', u'releas', u'report'] [u'real', u'madrid', u'tire', u'beckham'] [u'reflect', u'strip', u'rail', u'cross', u'safeti'] [u'remesi', u'lead', u'aussi', u'home', u'seal', u'french', u'open'] [u'renmark', u'paringa', u'council', u'rais', u'rat'] [u'report', u'say', u'log', u'water', u'suppli'] [u'research', u'monitor', u'humpback', u'whale', u'number'] [u'research', u'seek', u'crab', u'transit', u'death', u'rate'] [u'review', u'allow', u'work', u'industri', u'park', u'plan'] [u'maker', u'commit', u'expans', u'plan'] [u'saddam', u'haul', u'dock', u'day', u'iraqi'] [u'saddam', u'remain', u'guard'] [u'saiki', u'end', u'year', u'lpga', u'titl', u'drought'] [u'sailor', u'doubt', u'pacif', u'island', u'test'] [u'sandon', u'protest', u'maintain', u'picket', u'line'] [u'savag', u'wind', u'power'] [u'scott', u'hold', u'howel', u'maryland'] [u'scud', u'target', u'henman'] [u'sept', u'rescu', u'worker', u'olymp', u'hope'] [u'snake', u'condom', u'target', u'indigen'] [u'southcorp', u'aim', u'profit', u'boost'] [u'south', u'west', u'support', u'resourc', u'master', u'plan'] [u'spenc', u'plead', u'guilti', u'unlaw', u'death'] [u'springbok', u'recal', u'veteran', u'nation'] [u'stephenson', u'put', u'strong', u'elect', u'perform'] [u'steal', u'cattl', u'recov'] [u'street', u'prostitut', u'stay', u'report', u'say'] [u'summit', u'call', u'huge', u'hous', u'invest'] [u'summit', u'call', u'nation', u'plan', u'home', u'price'] [u'superbik', u'rider', u'airlift', u'wanneroo', u'crash'] [u'support', u'nation', u'water', u'framework'] [u'home', u'evacu', u'cliff', u'collaps'] [u'tasmania', u'trial', u'medicar', u'smart', u'card'] [u'sue', u'mistak', u'patern'] [u'tate', u'crocker', u'maroon'] [u'offic', u'unveil', u'invest', u'properti', u'deduct'] [u'torrington', u'bash', u'rob'] [u'tour', u'franc', u'stag', u'brief', u'descript'] [u'turkey', u'model', u'muslim', u'democraci', u'bush'] [u'children', u'kill', u'baghdad', u'mortar', u'strike'] [u'kill', u'hama', u'carri', u'dead'] [u'unit', u'plan', u'sale', u'financ', u'rooney', u'deal'] [u'predict', u'support', u'iraq'] [u'wheat', u'grower', u'urg', u'hear', u'debt', u'write', u'reason'] [u'william', u'sign', u'season', u'port'] [u'worksaf', u'issu', u'firework', u'warn'] [u'young', u'wallabi', u'finish', u'fourth'] [u'convent', u'centr', u'open', u'door'] [u'wont', u'forc', u'local', u'content'] [u'advisor', u'hold', u'liabl', u'investor', u'loss'] [u'defend', u'norman', u'rise', u'star', u'select'] [u'agricultur', u'product', u'feel', u'drought', u'impact'] [u'alcoa', u'studi', u'reveal', u'high', u'staff', u'cancer', u'rat'] [u'begin', u'wollongong', u'resid'] [u'ambo', u'welcom', u'servic', u'boost'] [u'ambul', u'woe', u'near'] [u'antarct', u'research', u'ship', u'gun', u'fish', u'poacher'] [u'close', u'carrol', u'origin', u'loophol'] [u'asbesto', u'eas', u'hardi', u'fund', u'shortfal'] [u'steadi', u'investor', u'await', u'financi', u'year'] [u'australian', u'iraqi', u'welcom', u'handov'] [u'australian', u'quartet', u'british', u'open', u'place'] [u'australian', u'monitor', u'indonesian', u'poll'] [u'australian', u'tour', u'challeng'] [u'australia', u'post', u'commemor', u'eureka', u'stockad'] [u'bail', u'propos', u'target', u'repeat', u'offend'] [u'baro', u'hop', u'form', u'liverpool'] [u'beatti', u'back', u'hous', u'minist', u'call'] [u'bega', u'weather', u'reach', u'extrem'] [u'bendigo', u'rate', u'rise', u'loom'] [u'besieg', u'advocaat', u'ponder', u'portug', u'clash'] [u'bet', u'suspend', u'rooster', u'wooden', u'spoon'] [u'bipartisan', u'support', u'number', u'increas'] [u'bird', u'mutat', u'deadlier', u'threat', u'studi'] [u'bodi', u'hous', u'blaze'] [u'bomb', u'hit', u'troop', u'baghdad'] [u'boost', u'expect', u'dairi', u'product'] [u'boost', u'wineri', u'capac'] [u'brack', u'probe', u'gambl', u'charg'] [u'bridg', u'work', u'near', u'finish'] [u'british', u'civilian', u'kill', u'iraq'] [u'brogden', u'question', u'murder', u'appeal'] [u'break', u'hill', u'adelaid', u'servic', u'track'] [u'bull', u'land', u'woman', u'hospit'] [u'bush', u'renew', u'push', u'middl', u'east', u'reform'] [u'busi', u'usual', u'queanbeyan', u'elect'] [u'busi', u'expect', u'staff', u'boost'] [u'cactus', u'extract', u'beat', u'hair'] [u'govt', u'compo', u'power', u'surg', u'victim'] [u'isol', u'teacher', u'support'] [u'canada', u'minor', u'rule'] [u'cantona', u'come', u'england'] [u'carr', u'admit', u'corrupt', u'mar', u'polic', u'forc'] [u'casino', u'worker', u'strike', u'wag', u'disput'] [u'chaffey', u'undergo', u'safeti', u'work'] [u'coalit', u'seek', u'tougher', u'sentenc', u'polic'] [u'communiti', u'warn', u'import'] [u'confin', u'ail', u'celebr', u'crocodil'] [u'costello', u'back', u'news', u'corp'] [u'costello', u'consid', u'infrastructur', u'fund', u'plea'] [u'council', u'dean', u'street', u'bridg'] [u'council', u'consid', u'waterfal', u'truck', u'movement'] [u'council', u'spar', u'resid', u'rate', u'rise'] [u'council', u'charg', u'effluent', u'dispos'] [u'court', u'hear', u'shoot', u'offic', u'fear', u'life'] [u'court', u'observ', u'jostl', u'brisban', u'report'] [u'date', u'chang', u'consid', u'agfair'] [u'boer', u'semi', u'final', u'ankl', u'injuri'] [u'democrat', u'question', u'koala'] [u'diplomat', u'deni', u'prais', u'vietnam', u'human', u'right'] [u'doubt', u'cast', u'adequaci', u'level', u'cross'] [u'doubt', u'cast', u'singl', u'birth', u'centr'] [u'appeal', u'mother', u'murder', u'sentenc'] [u'drought', u'cut', u'farm', u'number'] [u'drug', u'case', u'norman', u'rid', u'high'] [u'dutch', u'fan', u'soccer', u'sick'] [u'ead', u'interest', u'richmond', u'post'] [u'eden', u'eye', u'cruis', u'ship', u'tourism', u'potenti'] [u'elect', u'slow', u'employ', u'growth', u'survey'] [u'elliott', u'replac', u'pont', u'darwin', u'test'] [u'elvi', u'station', u'right', u'fan'] [u'emerald', u'budget', u'boost', u'rat'] [u'sight', u'polic', u'industri', u'woe'] [u'england', u'world', u'worst', u'rugbi', u'champion'] [u'english', u'press', u'hound', u'villain', u'uefa'] [u'timor', u'deport', u'australian', u'journalist'] [u'expans', u'unlik', u'barossa', u'impact'] [u'expert', u'fear', u'rise', u'hurt', u'mental'] [u'team', u'slow', u'notic'] [u'factori', u'destroy', u'blaze'] [u'fahrenheit', u'break', u'offic', u'record'] [u'famili', u'prais', u'have', u'emerg', u'beacon'] [u'feder', u'govt', u'urg', u'fund', u'water', u'plant'] [u'figur', u'highlight', u'southern', u'recycl', u'effort'] [u'fiji', u'govt', u'warn', u'coup', u'tell'] [u'caravan', u'park', u'owner', u'fin', u'creek'] [u'freddi', u'warn', u'origin', u'farewel'] [u'fund', u'preserv', u'biodivers', u'spot'] [u'garrett', u'learn', u'forestri', u'issu'] [u'pollut', u'cloud', u'indonesian', u'tell'] [u'gold', u'coast', u'convent', u'centr', u'long', u'overdu'] [u'govt', u'reject', u'claim', u'electr', u'price', u'rise'] [u'govt', u'famili', u'payment', u'bribe'] [u'green', u'brown', u'launch', u'hinkler', u'campaign'] [u'grower', u'flaw', u'appl', u'import', u'plan'] [u'guilti', u'plea', u'leav', u'origin', u'door', u'open', u'carrol'] [u'gunn', u'govt', u'fin', u'forestri', u'breach'] [u'hagan', u'appal', u'blue', u'drop', u'knight'] [u'hampstead', u'dump', u'simpkin', u'origin'] [u'harradin', u'call'] [u'hast', u'council', u'get', u'rate', u'rise'] [u'hick', u'tell', u'court', u'rule'] [u'high', u'protein', u'diet', u'link', u'concept', u'troubl'] [u'high', u'wind', u'grind', u'balloon', u'championship'] [u'howard', u'launch', u'obes', u'fight'] [u'howard', u'offer', u'condit', u'support', u'pulp'] [u'hume', u'confirm', u'prefer', u'jail', u'site'] [u'humpherson', u'seek', u'west', u'jail', u'answer'] [u'hunger', u'hormon', u'act', u'differ', u'studi'] [u'illeg', u'deport'] [u'injur', u'sailor', u'prais', u'rathbon'] [u'interim', u'file', u'plan', u'lure', u'hospit', u'staff'] [u'inventor', u'aim', u'sail', u'record', u'book'] [u'investig', u'continu', u'fatal', u'truck', u'accid'] [u'investig', u'probe', u'cycl', u'drug', u'claim'] [u'iraq', u'handov', u'offer', u'market', u'littl', u'support'] [u'israel', u'hit', u'gaza', u'target', u'hama', u'rocket', u'salvo'] [u'isra', u'shoot', u'dead', u'west', u'bank'] [u'isra', u'troop', u'kill', u'gaza', u'sweep'] [u'jam', u'hardi', u'anticip', u'asbesto', u'legal', u'claim'] [u'jiranek', u'nedv', u'yellow', u'alert', u'czech'] [u'john', u'stalk', u'case', u'accus', u'court'] [u'karzai', u'appeal', u'nato', u'assist'] [u'karzai', u'insist', u'sept', u'elect'] [u'kennedi', u'pleas', u'origin', u'selector', u'show'] [u'klien', u'franc', u'freak', u'accid'] [u'kuwait', u'renew', u'iraq', u'diplomat', u'tie'] [u'lack', u'region', u'knowledg', u'concern'] [u'larg', u'penalti', u'award', u'farm', u'worker', u'death'] [u'lawyer', u'cautious', u'report', u'chang'] [u'lawyer', u'plan', u'speedi', u'hick', u'appeal'] [u'leagu', u'club', u'tonight'] [u'liverpool', u'plain', u'council', u'take', u'shape'] [u'manag', u'upbeat', u'waikeri', u'wineri', u'sale'] [u'charg', u'rape', u'childer'] [u'jail', u'drive', u'offenc'] [u'refus', u'bail', u'virtual', u'prison', u'case'] [u'face', u'court', u'high', u'speed', u'chase'] [u'mildura', u'fight', u'takeov'] [u'milit', u'execut', u'soldier', u'iraq'] [u'attack', u'medicin', u'price', u'rise', u'plan'] [u'molik', u'pull'] [u'monti', u'squeez', u'chase', u'open', u'spot'] [u'carter', u'holt', u'harvey', u'wage', u'talk', u'plan'] [u'mother', u'deni', u'homosexu', u'kill', u'cousin'] [u'moot', u'dean', u'hoon'] [u'pitjantjatjara', u'independ'] [u'nat', u'reactor', u'wast', u'transport'] [u'agreement', u'weapon', u'rang'] [u'chief', u'outback', u'tourism', u'group'] [u'nicaraguan', u'landslid', u'kill'] [u'nightclub', u'risk', u'patron', u'live', u'court', u'tell'] [u'merger', u'croissant', u'council'] [u'noosa', u'consid', u'beach', u'smoke'] [u'cigarett', u'quit'] [u'nrma', u'dump', u'turnbul', u'presid'] [u'base', u'group', u'negoti', u'casino'] [u'ongo', u'spark', u'ward', u'murder', u'review'] [u'packag', u'explod', u'istanbul', u'plane'] [u'philippin', u'nab', u'suspect', u'ahead', u'inaugur'] [u'plane', u'crash', u'studi', u'highlight', u'danger', u'time'] [u'parti', u'surpris', u'canadian', u'vote'] [u'want', u'famili', u'overpay'] [u'pipelin', u'decis', u'delay'] [u'polic', u'await', u'skipper', u'rescu', u'navi'] [u'polic', u'arson', u'flat', u'blaze'] [u'pont', u'darwin', u'test'] [u'pont', u'starter', u'darwin', u'test'] [u'port', u'secur', u'plan', u'develop'] [u'powel', u'urg', u'warn', u'sudan', u'darfur', u'unrest'] [u'previous', u'failur', u'haunt', u'portug', u'netherland'] [u'princip', u'group', u'criticis', u'educ', u'squabbl'] [u'privat', u'hospit', u'lament', u'woe'] [u'prize', u'name', u'rubuntja', u'autobiographi', u'notabl'] [u'public', u'privat', u'partnership', u'creat', u'health'] [u'firm', u'seal', u'iraqi', u'forc', u'deal'] [u'refuge', u'reach', u'australia', u'nauru', u'detent'] [u'region', u'airport', u'plan', u'aliv'] [u'research', u'home', u'asthma', u'vaccin'] [u'saddam', u'face', u'handov', u'wednesday'] [u'sandon', u'aborigin', u'tent', u'embassi', u'stay'] [u'deliveri', u'bendigo', u'build', u'firek'] [u'search', u'continu', u'dump', u'miss', u'women'] [u'senior', u'aborigin', u'sack', u'meet', u'requir'] [u'serena', u'tackl', u'teenag', u'sensat'] [u'rat', u'fast', u'track', u'women', u'aphrodisiac'] [u'sharon', u'narrowli', u'beat', u'confid', u'vote'] [u'sheep', u'industri', u'year', u'recov'] [u'shoot', u'accus', u'assault', u'outsid', u'court'] [u'korea', u'parliament', u'approv'] [u'south', u'east', u'spar', u'southcorp', u'chang'] [u'sport', u'bodi', u'help', u'childhood', u'obes'] [u'state', u'want', u'power', u'transfer', u'terror', u'suspect'] [u'warn', u'commut', u'disrupt'] [u'storm', u'johnson', u'match'] [u'suspect', u'nuclear', u'site', u'research', u'facil', u'iran'] [u'tafe', u'goal', u'home', u'netbal'] [u'tasmanian', u'health', u'need', u'urgent', u'reform'] [u'west', u'coast', u'prepar', u'continu', u'delug'] [u'tate', u'civoniceva', u'berrigan', u'senior', u'stay', u'bronco'] [u'hold', u'polic', u'break', u'nato', u'protest'] [u'threat', u'kill', u'gerrard', u'chelsea'] [u'marin', u'kill', u'baghdad', u'bomb', u'attack'] [u'search', u'mother', u'babi'] [u'rugbi', u'watson', u'hang', u'whistl'] [u'tough', u'pakistan', u'readi', u'australia', u'say', u'inzamam'] [u'tour', u'dope', u'check', u'strike', u'threat'] [u'trade', u'deficit', u'steadi', u'despit', u'favour', u'condit'] [u'tradelink', u'store', u'closur', u'cost', u'job'] [u'trial', u'decis', u'reserv', u'polic', u'shoot', u'case'] [u'tweed', u'council', u'rais', u'rat'] [u'ullrich', u'readi', u'duel', u'armstrong'] [u'union', u'air', u'airport', u'secur', u'concern'] [u'union', u'chief', u'seek', u'tougher', u'region', u'airport', u'secur'] [u'union', u'highlight', u'sack', u'meatwork', u'plight'] [u'union', u'step', u'southcorp', u'worker'] [u'unit', u'offload', u'ruud', u'claim', u'advocaat'] [u'unreleas', u'magna', u'crash', u'adelaid'] [u'lawyer', u'welcom', u'histor', u'guantanamo', u'rule'] [u'resum', u'diplomat', u'tie', u'libya'] [u'valencia', u'benitez', u'file', u'rival', u'financi', u'claim'] [u'water', u'servic', u'cost', u'irrig'] [u'west', u'pilbara', u'seek', u'bigger', u'zone', u'rebat'] [u'whale', u'rider', u'invit', u'join', u'hollywood', u'gun'] [u'wood', u'woe', u'turn', u'spotlight', u'golf', u'gurus'] [u'worker', u'compo', u'premium', u'drop'] [u'taiwanes', u'pilot', u'head', u'toowoomba'] [u'yenda', u'wineri', u'close', u'southcorp', u'shakeup'] [u'yudhoyono', u'take', u'lead', u'indonesia', u'poll'] [u'zarqawi', u'milit', u'free', u'turkish', u'hostag'] [u'boost', u'miner', u'hall', u'fame'] [u'shepparton', u'medic', u'clinic'] [u'serb', u'offici', u'sack', u'karadz'] [u'abus', u'inquiri', u'report', u'month'] [u'accc', u'set', u'sight', u'cheaper', u'call'] [u'budget', u'pass', u'late', u'night', u'sit'] [u'action', u'talk', u'need', u'sudan', u'powel'] [u'wont', u'offer', u'export', u'guarante'] [u'advocaat', u'shrug', u'home', u'advantag'] [u'take', u'schedul', u'clash'] [u'alleg', u'killer', u'aust', u'journalist', u'soon', u'face'] [u'ambo', u'disput', u'escal'] [u'annan', u'deliv', u'sudan', u'ultimatum'] [u'area', u'health', u'servic', u'dark', u'govt', u'plan'] [u'argentina', u'meddl', u'minist'] [u'arroyo', u'swear', u'second', u'term'] [u'artist', u'win', u'court', u'battl', u'risqu', u'barbi', u'photo'] [u'asthma', u'test', u'provid', u'precis', u'diagnosi'] [u'athen', u'olymp', u'secur', u'start', u'roll'] [u'aussi', u'popov', u'pledg', u'futur', u'palac'] [u'australia', u'sign', u'deal'] [u'australia', u'struggl', u'reconcili', u'hreoc'] [u'aust', u'renew', u'tie', u'ghana'] [u'balkan', u'crime', u'suspect', u'tri', u'beat', u'deadlin'] [u'ballist', u'missil', u'launch', u'satellit'] [u'balloon', u'champion', u'name', u'soon'] [u'beazley', u'say', u'claim', u'fals'] [u'billiton', u'upbeat', u'electr', u'trial'] [u'phil', u'portug', u'close', u'renew', u'marriag'] [u'bird', u'kill', u'chicken', u'vietnam'] [u'bolton', u'target', u'portug', u'nuno', u'valent'] [u'booklet', u'outlin', u'green', u'project'] [u'brack', u'take', u'veteran', u'affair'] [u'brazil', u'creat', u'drug'] [u'bruce', u'stay', u'birmingham'] [u'bureau', u'play', u'fear', u'coastal', u'water'] [u'mainten', u'worker', u'industri', u'action', u'condemn'] [u'drip', u'fee', u'babi', u'bonus'] [u'quick', u'plan', u'save', u'softwood', u'industri'] [u'rethink', u'foreign', u'tourism', u'invest'] [u'timber', u'secur', u'boost'] [u'power', u'like', u'fail'] [u'cambodian', u'parti', u'seal', u'coalit', u'deal'] [u'capriati', u'confid', u'serena', u'trick'] [u'carrol', u'miss', u'origin'] [u'child', u'health', u'unit', u'close', u'say', u'labor'] [u'clarenc', u'valley', u'water', u'restrict', u'extend'] [u'costello', u'offer', u'littl', u'zone', u'rebat'] [u'council', u'back', u'librari', u'hour', u'chang'] [u'council', u'indi', u'plan', u'consider'] [u'councillor', u'lament', u'saleyard', u'decis'] [u'council', u'predict', u'singl', u'figur', u'rate', u'rise'] [u'council', u'urg', u'monitor', u'dajarra', u'water'] [u'countri', u'team', u'tackl', u'malacca', u'strait', u'piraci'] [u'court', u'boost', u'secur'] [u'deal', u'deadlin', u'today'] [u'credit', u'growth', u'continu', u'breakneck', u'pace'] [u'critic', u'increas', u'pressur', u'biosecur'] [u'czech', u'want', u'euro', u'poborski'] [u'davenport', u'gear', u'hurrah'] [u'doctor', u'defend', u'public', u'health'] [u'doctor', u'talli', u'green', u'light'] [u'doubt', u'cast', u'water', u'price', u'chang'] [u'drought', u'recoveri', u'time'] [u'eadi', u'qualifi', u'athen', u'squad'] [u'elliott', u'start', u'lanka'] [u'ellison', u'reject', u'corrupt', u'claim'] [u'famili', u'complain', u'gatto', u'prison', u'treatment'] [u'farmer', u'voic', u'anger', u'iraqi', u'debt', u'decis'] [u'fear', u'air', u'park', u'rise', u'impact'] [u'fear', u'cut', u'plan', u'affect', u'polic', u'servic'] [u'firm', u'experi', u'citrus', u'packer', u'shortag'] [u'drug', u'drive', u'test', u'trial', u'delay'] [u'woman', u'pregnant', u'ovarian', u'transplant'] [u'investig', u'offenc'] [u'fund', u'staff', u'age', u'care', u'wish', u'list'] [u'fund', u'alloc', u'strip', u'seal'] [u'game', u'hunt', u'licenc'] [u'game', u'regul', u'investig', u'casino'] [u'garrett', u'announc', u'point', u'nepean', u'park', u'polici'] [u'german', u'polic', u'detain', u'bomb', u'threat', u'plane'] [u'gidley', u'captainci', u'help', u'overcom', u'origin', u'snub'] [u'gidley', u'lead', u'knight'] [u'gilchrist', u'predict', u'torrid', u'darwin', u'test'] [u'gladston', u'back', u'airport', u'secur', u'upgrad'] [u'govt', u'play', u'benefit', u'blunder'] [u'govt', u'expand', u'medicar'] [u'govt', u'limit', u'price', u'increas'] [u'govt', u'abandon', u'speed', u'limit', u'plan'] [u'govt', u'urg', u'seek', u'civil', u'lawyer', u'habib'] [u'greater', u'polic', u'presenc', u'newcastl', u'port'] [u'green', u'encourag', u'young', u'enrol', u'vote'] [u'grey', u'nurs', u'shark', u'face', u'extinct'] [u'guidelin', u'suggest', u'target', u'ebay', u'fraudster'] [u'amnesti', u'deadlin', u'loom'] [u'hackett', u'unfaz', u'thorp', u'withdraw'] [u'hardi', u'director', u'scrutini', u'inquiri'] [u'health', u'author', u'warn', u'meningococc', u'risk'] [u'hendrix', u'relat', u'estat', u'court'] [u'herring', u'orang', u'juic', u'long', u'life', u'oldest', u'woman'] [u'household', u'elig', u'power', u'compens'] [u'katter'] [u'launch', u'oscar', u'style', u'award', u'ceremoni'] [u'independ', u'spark', u'abus'] [u'injur', u'agassi', u'hop', u'rest', u'help'] [u'investig', u'begin', u'high', u'speed', u'crash'] [u'iraqi', u'prime', u'minist', u'chair', u'detaine', u'committe'] [u'iraqi', u'legal', u'charg', u'saddam'] [u'iraq', u'instat', u'death', u'penalti'] [u'iraq', u'wheat', u'debt', u'recoveri', u'uncertain'] [u'irat', u'england', u'fan', u'defac', u'beckham', u'portrait'] [u'isra', u'court', u'order', u'barrier', u'move'] [u'johnson', u'disappoint', u'gold', u'medal', u'risk'] [u'jondaryan', u'shire', u'consid', u'rat', u'issu'] [u'katter', u'urg', u'oppos', u'educ', u'fund', u'condit'] [u'labor', u'unveil', u'coastguard', u'plan'] [u'laidley', u'say', u'friday', u'night', u'alright', u'roo'] [u'larsson', u'complet', u'barca'] [u'latham', u'free', u'trade'] [u'latham', u'talk', u'lake', u'illawarra', u'import'] [u'launceston', u'mayor', u'unabl', u'discuss', u'sport', u'complex'] [u'law', u'squeez', u'builder', u'green'] [u'lib', u'keen', u'commerci', u'hemp'] [u'lobster', u'season'] [u'local', u'anti', u'violenc', u'campaign', u'best', u'minist'] [u'majoli', u'retir'] [u'face', u'second', u'round', u'drug', u'charg'] [u'front', u'court', u'prohibit', u'good', u'charg'] [u'get', u'life', u'sentenc', u'rape', u'murder'] [u'market', u'close', u'year', u'posit', u'note'] [u'maroon', u'unsur', u'line', u'origin', u'decid'] [u'mayor', u'high', u'hop', u'snowi', u'servic'] [u'mayor', u'talk', u'cairn', u'budget'] [u'mayor', u'warn', u'loss'] [u'memori', u'march', u'spark', u'reconcili', u'talk'] [u'mercuri', u'clean', u'oper', u'take', u'time'] [u'meteorit', u'report', u'southern'] [u'minist', u'reject', u'jail', u'claim'] [u'miseri', u'turn', u'hope', u'tasmanian', u'cricket', u'fan'] [u'time', u'dump', u'guidelin'] [u'water', u'central', u'victoria'] [u'mortgag', u'broker', u'tip', u'fall', u'home', u'loan'] [u'confid', u'fish', u'surviv', u'despit'] [u'want', u'sport', u'free'] [u'gambier', u'break', u'rain', u'record'] [u'murder', u'accus', u'face', u'papua', u'communiti', u'meet'] [u'nat', u'closer', u'choos', u'great', u'southern'] [u'score', u'champ', u'mcgradi', u'join', u'rocket'] [u'build', u'accredit', u'rule'] [u'dean', u'focus', u'link', u'uni', u'activ'] [u'hospit', u'ward', u'boost', u'patient', u'flow'] [u'maroochi', u'council'] [u'scheme', u'address', u'weighti', u'problem'] [u'station', u'shed', u'light', u'power', u'woe'] [u'give', u'copper', u'concentr', u'storag', u'shed'] [u'impact', u'forestri', u'breach'] [u'nurs', u'return', u'walk', u'sydney'] [u'origin', u'player', u'say', u'hagan'] [u'oversea', u'doctor', u'adelaid', u'shortfal'] [u'parker', u'injur', u'bowman'] [u'passeng', u'rail', u'announc', u'track'] [u'passiv', u'smoke', u'heart', u'risk', u'doubl', u'earlier', u'estim'] [u'patient', u'tell', u'diabet', u'cure'] [u'paul', u'caution', u'polic'] [u'penguin', u'kill', u'control', u'burn'] [u'philippin', u'polic', u'foil', u'bomb', u'plot'] [u'polic', u'hunt', u'home', u'invad'] [u'polic', u'probe', u'teen', u'slash'] [u'polic', u'search', u'wheelchair', u'thief'] [u'poor', u'qualifi', u'turnout', u'disappoint', u'royal'] [u'propos', u'summit', u'boost', u'austasia', u'relat', u'downer'] [u'push', u'safe', u'bag'] [u'quarantin', u'watchdog', u'defend', u'risk', u'analysi'] [u'ralf', u'miss', u'french', u'report'] [u'ralli', u'driver', u'head', u'roma'] [u'region', u'race', u'offic', u'close'] [u'rfds', u'urg', u'releas', u'port', u'augusta', u'report'] [u'road', u'smash', u'injur'] [u'rocket', u'fall', u'sharon'] [u'erupt', u'highway', u'fund'] [u'russian', u'agent', u'give', u'life', u'chechen', u'leader'] [u'ryle', u'agre', u'stay', u'dragon'] [u'govt', u'announc', u'child', u'abus', u'inquiri'] [u'journalist', u'miss', u'afghanistan'] [u'scheme', u'address', u'murray', u'salin'] [u'world', u'put', u'polar', u'bear', u'kanook'] [u'septemb', u'date', u'sport', u'stadium', u'work'] [u'seven', u'pitcairn', u'face', u'abus', u'trial'] [u'shake', u'expect', u'child', u'sexual', u'assault'] [u'sharpshoot', u'larsson', u'sign', u'barca'] [u'sheedi', u'sign', u'year'] [u'sheedi', u'sign', u'year', u'deal'] [u'slipper', u'highlight', u'cost', u'greater', u'airport', u'secur'] [u'slow', u'pitch', u'tip', u'test'] [u'smelter', u'expans', u'depend', u'power', u'price'] [u'soldier', u'guilti', u'drag', u'race'] [u'sorenstam', u'eye', u'women', u'open', u'crown'] [u'send', u'home', u'briefcas', u'bungl'] [u'state', u'agre', u'paedophil', u'regist'] [u'steel', u'nation', u'fail', u'reach', u'subsidi', u'deal'] [u'strong', u'wind', u'lash', u'northern'] [u'studi', u'show', u'impact', u'economi'] [u'supermodel', u'spark', u'beach', u'stamped'] [u'survey', u'tip', u'moder', u'job', u'growth', u'ahead'] [u'survey', u'tip', u'strong', u'job', u'growth'] [u'suspect', u'shark', u'fish', u'boat', u'seiz'] [u'teacher', u'receiv', u'increas', u'match', u'cathol'] [u'thai', u'troop', u'begin', u'iraq', u'pullout', u'earli'] [u'time', u'prison', u'site', u'announc', u'question'] [u'tottenham', u'chase', u'chelsea', u'pair', u'geremi', u'cole'] [u'tour', u'boss', u'back', u'armstrong', u'amid', u'drug', u'claim'] [u'tyson', u'readi', u'ring', u'return'] [u'uefa', u'say', u'nedv', u'book', u'stand'] [u'underdog', u'hewitt', u'readi', u'feder', u'challeng'] [u'union', u'consid', u'legal', u'action', u'redund'] [u'univers', u'group', u'back', u'hec', u'increas'] [u'unnam', u'hawk', u'quiz', u'assault', u'claim'] [u'call', u'soldier'] [u'confid', u'sap', u'aussi', u'dollar'] [u'find', u'suspect', u'diseas'] [u'valencia', u'benitez', u'breach', u'contract'] [u'vasseur', u'cofidi', u'tour'] [u'vote', u'finish', u'cooma', u'monaro', u'council'] [u'wallabi', u'keep', u'win', u'formula', u'pacif'] [u'wallabi', u'stick', u'win', u'formula'] [u'water', u'filter', u'unit', u'offer', u'aquacultur'] [u'wit', u'compel', u'evid'] [u'woman', u'die', u'road', u'crash'] [u'woman', u'face', u'fraud', u'charg', u'sick', u'scam'] [u'women', u'kill', u'collis'] [u'veteran', u'smout', u'farewel', u'brisban'] [u'young', u'lose', u'sydney', u'relay', u'gold'] [u'zinifex', u'top', u'profit', u'forecast'] [u'rate', u'rise', u'hervey', u'resid'] [u'absent', u'minist', u'put', u'highway', u'talk', u'hold'] [u'realis', u'need', u'support', u'bulldog'] [u'airport', u'lift', u'passeng', u'number', u'high'] [u'airport', u'secur', u'breach', u'concern', u'minist'] [u'ambo', u'consid', u'industri', u'unrest'] [u'ambul', u'membership', u'increas', u'airport'] [u'andrew', u'urg', u'help', u'meatwork'] [u'bowl', u'club', u'closur', u'show', u'rapid', u'declin'] [u'anti', u'gambl', u'campaign', u'name', u'victorian'] [u'assembl', u'debat', u'gungahlin', u'extens'] [u'assist', u'offer', u'debtor'] [u'astronaut', u'complet', u'space', u'walk', u'quick', u'time'] [u'astronaut', u'start', u'spacewalk', u'repair'] [u'attapatu', u'minut', u'decis', u'line'] [u'aussi', u'dollar', u'despit', u'rat', u'decis'] [u'austoft', u'worker', u'help', u'work'] [u'australia', u'edg', u'synchrotron'] [u'babi', u'steal'] [u'babi', u'miss', u'steal', u'sydney'] [u'ballarat', u'council', u'lift', u'rat'] [u'blair', u'expect', u'detail', u'iraq', u'secur', u'plan', u'soon'] [u'blair', u'hit', u'militari', u'tribun'] [u'blair', u'comment', u'reflect', u'bad', u'australia', u'say'] [u'blaze', u'damag', u'beverford', u'school'] [u'bomb', u'threat', u'delay', u'fiji', u'treason', u'trial'] [u'bradford', u'brink', u'extinct'] [u'britain', u'detain', u'moroccan', u'septemb', u'madrid'] [u'british', u'press', u'lay', u'hopeless', u'henman'] [u'broadway', u'show', u'continu', u'contract', u'talk', u'resum'] [u'brown', u'unhappi', u'costello', u'visit'] [u'businessman', u'fight', u'court', u'asic', u'decis'] [u'mainten', u'worker', u'strike'] [u'greater', u'fisheri', u'educ'] [u'special', u'class', u'autist', u'children'] [u'carr', u'warn', u'clarenc', u'valley', u'loss'] [u'cassini', u'space', u'probe', u'enter', u'saturn', u'orbit'] [u'cattl', u'track', u'radio', u'transmitt'] [u'chang', u'nativ', u'scrub', u'harvest'] [u'chelsea', u'releas', u'crowd', u'favourit', u'hasselbaink'] [u'chocol', u'factori', u'caus', u'power', u'outag'] [u'chopper', u'ambul', u'feel', u'feder', u'airport', u'charg'] [u'compani', u'fin', u'worker', u'disabl'] [u'coron', u'say', u'systemat', u'failur', u'exist', u'polic'] [u'costello', u'consid', u'tourism', u'foreign', u'invest'] [u'council', u'foreshadow', u'noosa', u'rate', u'rise'] [u'coupl', u'forc', u'departur', u'australia', u'unfair'] [u'court', u'hear', u'natasha', u'ryan', u'boyfriend', u'charg'] [u'test', u'negat', u'diseas', u'offici'] [u'cross', u'stay', u'rooster'] [u'crow', u'fresh', u'face'] [u'cum', u'donat', u'race', u'museum'] [u'czech', u'defend', u'bolf', u'semi'] [u'dairi', u'industri', u'air', u'drought', u'fear'] [u'dallaglio', u'back', u'england', u'bounc'] [u'danih', u'dismiss', u'contract', u'rumour'] [u'deal', u'reach', u'pilbara', u'ancient', u'rock'] [u'detect', u'uniform', u'duti', u'investig'] [u'dfat', u'seek', u'clarif', u'miss', u'journalist'] [u'diseas', u'control', u'head', u'resign', u'sar', u'outbreak'] [u'donat', u'seek', u'communiti', u'kitchen'] [u'doubt', u'cast', u'livestock', u'scheme'] [u'downer', u'back', u'beazley', u'secur', u'risk', u'claim'] [u'downer', u'meet', u'indonesian', u'religi', u'leader'] [u'guilti', u'plan', u'rape'] [u'dust', u'storm', u'whip', u'land', u'manag', u'claim'] [u'electrician', u'threaten', u'industri', u'action'] [u'elton', u'john', u'take', u'stage', u'footbal', u'club'] [u'elton', u'john', u'take', u'stage', u'watford'] [u'emerg', u'respons', u'author', u'launch'] [u'england', u'recal', u'flintoff', u'seri'] [u'euthanasia', u'campaign', u'convict', u'attempt'] [u'consid', u'extend', u'calendar'] [u'famili', u'bonus', u'caus', u'drop', u'emerg', u'relief', u'salvo'] [u'famili', u'comment', u'collin', u'abus', u'claim'] [u'feder', u'end', u'hewitt', u'wimbledon', u'charg'] [u'govt', u'question', u'energi', u'polici', u'impact'] [u'figo', u'lead', u'portug', u'euro', u'final'] [u'food', u'airlift', u'begin', u'sudan'] [u'french', u'forestri', u'worker', u'admit', u'child', u'murder'] [u'fund', u'boost', u'marin', u'safeti'] [u'fund', u'flood', u'proof', u'causeway'] [u'goosen', u'eye', u'titl'] [u'govt', u'attack', u'gungahlin', u'drive', u'plan'] [u'govt', u'expect', u'green', u'light', u'park', u'clear'] [u'govt', u'wont', u'chase', u'overpay'] [u'grave', u'concern', u'rais', u'yarravill', u'plan'] [u'greek', u'revel', u'semi', u'appear', u'despit', u'pressur'] [u'green', u'law', u'thousand', u'hous', u'cost'] [u'guantanamo', u'prison', u'move', u'soil'] [u'gunman', u'lose', u'mexican', u'stand'] [u'hawk', u'player', u'accus', u'assault', u'schwab'] [u'health', u'report', u'implic', u'discuss'] [u'help', u'request', u'afghan', u'refuge'] [u'hewitt', u'take', u'feder'] [u'high', u'wind', u'blast', u'snowi', u'mountain'] [u'danc', u'doll', u'ridicul', u'saddam'] [u'hong', u'kong', u'mark', u'china', u'anniversari'] [u'howard', u'stern', u'return'] [u'zimbabw', u'test', u'decis'] [u'indigen', u'communiti', u'owe', u'million'] [u'indigen', u'servic', u'continu', u'despit', u'atsic'] [u'indonesia', u'detain', u'bali', u'bomb'] [u'integr', u'ticket', u'kick', u'south', u'east'] [u'internet', u'increas', u'year', u'high'] [u'investig', u'begin', u'secur', u'breach'] [u'iran', u'say', u'britain', u'incorrect', u'captur', u'sailor'] [u'israel', u'send', u'tank', u'jericho'] [u'japanes', u'busi', u'confid', u'improv'] [u'journalist', u'afghanistan', u'safe'] [u'kitten', u'tortur', u'discharg', u'armi'] [u'kookaburra', u'lose', u'veteran', u'campaign'] [u'kuwait', u'say', u'saddam'] [u'labor', u'hit', u'long', u'term', u'unemploy', u'figur'] [u'labor', u'seiz', u'cosgrov', u'iraq', u'comment'] [u'lake', u'georg', u'fish', u'stay'] [u'lara', u'tell', u'player', u'head'] [u'latham', u'say', u'degre', u'outrag'] [u'lifesav', u'coach', u'clear', u'complaint'] [u'loan', u'tip', u'coral', u'reef', u'fisher', u'extra'] [u'die', u'reservoir', u'fall'] [u'jail', u'hijack'] [u'manufactur', u'growth', u'eas'] [u'mayor', u'urg', u'clarifi', u'secur', u'breach', u'claim'] [u'mcgee', u'eye', u'prologu', u'glori'] [u'mcgee', u'protest', u'smear', u'campaign'] [u'mcgrath', u'ensur', u'honour', u'share'] [u'mclaren', u'unveil', u'magni', u'cour'] [u'meet', u'plan', u'avert', u'strike'] [u'minist', u'criticis', u'describ', u'prison', u'assault'] [u'mix', u'fortun', u'mum'] [u'doblo', u'talk', u'today'] [u'protect', u'seahors'] [u'shire', u'possibl', u'central', u'west'] [u'korea', u'accus', u'plan', u'attack'] [u'mysteri', u'baross', u'form', u'brueckner'] [u'sale', u'power', u'station'] [u'ombudsman', u'call', u'account', u'terror', u'law'] [u'kill', u'injur', u'afghanistan', u'blast'] [u'parent', u'jail', u'abalon', u'bust'] [u'passeng', u'report', u'calm', u'emerg', u'land'] [u'pearl', u'industri', u'recognis', u'anniversari'] [u'pilot', u'forc', u'emerg', u'land'] [u'poland', u'troop', u'iraq'] [u'polic', u'confirm', u'labor', u'senat'] [u'polic', u'investig', u'suspect', u'murder'] [u'polic', u'minist', u'oversea', u'trip', u'necessari', u'premier'] [u'polic', u'search', u'taxi', u'driver', u'murder'] [u'polic', u'target', u'paint', u'sniffer'] [u'polic', u'treat', u'school', u'suspici'] [u'port', u'augusta', u'council', u'leav', u'eplga'] [u'port', u'author', u'boost', u'secur'] [u'port', u'readi', u'saint'] [u'power', u'chocol', u'factori'] [u'power', u'price', u'rise'] [u'power', u'station', u'boost'] [u'problem', u'gambler', u'market'] [u'protest', u'ralli', u'chines', u'govern'] [u'ratepay', u'group', u'voic', u'worri'] [u'ratepay', u'angri', u'rate', u'rise'] [u'redfern', u'polic', u'consid', u'industri', u'action'] [u'retail', u'spend', u'bounc'] [u'retir', u'judg', u'take', u'part', u'shoot'] [u'aim', u'weed', u'potenti', u'arsonist'] [u'continu', u'water', u'plan'] [u'rowl', u'reveal', u'harri', u'potter', u'book', u'titl'] [u'rspca', u'brace', u'spook', u'anim', u'influx'] [u'ruud', u'put', u'sale', u'rumour'] [u'saddam', u'appear', u'iraqi', u'court'] [u'saddam', u'defiant', u'court', u'appear'] [u'saddam', u'expect', u'charg', u'baghdad', u'court'] [u'saddam', u'face', u'court'] [u'saddam', u'face', u'justic', u'pleasur', u'palac'] [u'saddam', u'hussein', u'nervous', u'handov'] [u'govt', u'expand', u'growden', u'compo', u'fund'] [u'move', u'attract', u'busi'] [u'sanchez', u'step', u'post', u'iraq'] [u'sanchez', u'vicaro', u'compet', u'fifth', u'olymp'] [u'scheme', u'target', u'young', u'worker', u'right'] [u'schumach', u'roll', u'franc'] [u'seagul', u'face', u'tough', u'young', u'gun', u'challeng'] [u'search', u'miss', u'trail', u'bike', u'rider'] [u'secur', u'boost', u'mildura', u'airport'] [u'senior', u'iraqi', u'financ', u'ministri', u'offici', u'die'] [u'serena', u'destroy', u'capriati', u'mauresmo', u'advanc'] [u'share', u'market', u'start', u'financi', u'year', u'green'] [u'ship', u'emerg', u'spark', u'port', u'procedur', u'question'] [u'shire', u'lament', u'jetti', u'fund', u'deadlin'] [u'silver', u'fern', u'outgun', u'aussi', u'netbal'] [u'small', u'busi', u'reap', u'cut'] [u'smith', u'blue', u'depth'] [u'smaller', u'beach', u'lose', u'patrol'] [u'southcorp', u'shakeup', u'worri', u'union'] [u'south', u'west', u'record', u'june'] [u'spinal', u'fractur', u'rule', u'ralf', u'month'] [u'statist', u'highlight', u'age', u'west', u'popul'] [u'sudan', u'pledg', u'refuge', u'crisi'] [u'sudan', u'humanitarian', u'crisi'] [u'support', u'tourism', u'levi', u'scrap'] [u'survey', u'consid', u'petroleum', u'potenti'] [u'survey', u'highlight', u'farm', u'worker'] [u'tasmania', u'australia', u'safest', u'state'] [u'taxpay', u'warn', u'fraudul', u'claim'] [u'teacher', u'consid', u'rise', u'respons'] [u'terror', u'obscur', u'world', u'crise', u'william', u'say'] [u'tidbinbilla', u'guid', u'cassini', u'saturn', u'orbit'] [u'saudi', u'qaeda', u'spiritu', u'guid', u'kill'] [u'treati', u'clear', u'aust', u'polic', u'deploy'] [u'trump', u'magazin', u'launch', u'septemb'] [u'palestinian', u'kill', u'isra', u'troop', u'detain'] [u'unser', u'junior', u'confirm', u'retir', u'plan'] [u'increas', u'zarqawi', u'bounti'] [u'rais', u'rate', u'percent'] [u'vail', u'stand', u'iraq', u'grain', u'decis'] [u'vasseur', u'tour', u'stand', u'armstrong', u'await', u'book'] [u'walgett', u'council', u'sack'] [u'wallabi', u'awar', u'island', u'threat', u'jone'] [u'pass', u'stem', u'cell', u'law'] [u'stamp', u'duti', u'expect', u'spark', u'mini', u'real'] [u'wast', u'facil', u'replac', u'smaller', u'dump'] [u'water', u'shake', u'pipelin'] [u'whitsunday', u'council', u'consid', u'rat', u'shake'] [u'woman', u'horrif', u'attack', u'identifi'] [u'woman', u'hospit', u'stab'] [u'woman', u'death', u'investig'] [u'women', u'cop', u'ditch', u'cap', u'save', u'coiffur'] [u'wood', u'seek', u'fourth', u'western', u'open', u'titl'] [u'work', u'home', u'council', u'admin', u'staff'] [u'work', u'progress', u'pipelin'] [u'york', u'park', u'tribut', u'premier'] [u'seek', u'boost', u'rural', u'specialist'] [u'consid', u'downer', u'complaint', u'program'] [u'accus', u'cyclist', u'know', u'fate', u'tomorrow'] [u'actu', u'hit', u'monitor', u'worker', u'internet'] [u'administr', u'appoint', u'agenc'] [u'explain', u'blue', u'ribbon', u'futur', u'direct'] [u'allenbi', u'second', u'western', u'open'] [u'ord', u'edg', u'lower', u'lacklustr', u'market'] [u'anger', u'sale', u'evandal', u'unit'] [u'aquat', u'centr', u'weigh', u'mcdonald', u'sponsorship'] [u'arm', u'stand', u'continu', u'sydney'] [u'armstrong', u'remain', u'resolut', u'drug', u'claim'] [u'galleri', u'acquir', u'rare', u'japanes', u'artwork'] [u'athen', u'burn', u'greek', u'semi', u'victori'] [u'aust', u'dollar', u'gain', u'valu', u'strong'] [u'austoft', u'plant', u'shut', u'door'] [u'australia', u'sign', u'asean', u'anti', u'terror', u'agreement'] [u'baghdad', u'hotel', u'come'] [u'bali', u'health', u'centr', u'memori', u'bomb', u'victim'] [u'barrichello', u'quickest', u'montoya', u'crash', u'practic'] [u'beard', u'contest', u'whos', u'rest'] [u'bomber', u'edg', u'roo', u'dockland'] [u'brigadi', u'back', u'report', u'kitten', u'tortur'] [u'bush', u'welcom', u'saddam', u'court', u'appear'] [u'buyer', u'doblo', u'properti'] [u'carter', u'holt', u'harvey', u'worker', u'accept', u'offer'] [u'celebr', u'erupt', u'greec', u'book', u'spot', u'euro'] [u'chao', u'hit', u'peruvian', u'citi', u'protest', u'break'] [u'chief', u'scientist', u'deni', u'conflict'] [u'citrus', u'industri', u'push', u'china', u'access'] [u'collina', u'bow', u'intern', u'footbal'] [u'commonwealth', u'bank', u'staff', u'vote', u'continu'] [u'commonwealth', u'bank', u'worker', u'threaten', u'strike'] [u'coron', u'seek', u'chang', u'pursuit', u'definit'] [u'council', u'administr', u'declar'] [u'council', u'back', u'skill', u'migrant', u'push'] [u'council', u'auslink', u'road', u'fund', u'slash'] [u'council', u'lift', u'rat'] [u'council', u'tackl', u'high', u'cost', u'sick', u'day'] [u'cowboy', u'confid', u'form', u'rooster'] [u'cowboy', u'confid', u'roll', u'rooster'] [u'push', u'health', u'servic', u'retent'] [u'cycl', u'inquiri', u'report', u'hand'] [u'cyclist', u'await', u'dope', u'inquiri', u'find'] [u'darwin', u'pitch', u'bamboozl', u'aussi', u'batsmen'] [u'darwin', u'dili', u'yacht', u'race', u'cancel'] [u'debat', u'seek', u'plan', u'strategi'] [u'demon', u'fin', u'late', u'contract', u'submiss'] [u'demon', u'fin', u'late', u'submiss'] [u'vere', u'loss', u'blow', u'tate'] [u'vere', u'england'] [u'doctor', u'boost', u'south', u'east'] [u'doubt', u'cast', u'train', u'scheme'] [u'dun', u'island', u'clash'] [u'effect', u'perth', u'curfew', u'challeng'] [u'england', u'win', u'way', u'windi'] [u'consid', u'dust', u'pollut', u'problem'] [u'eplga', u'hold', u'crisi', u'meet'] [u'timor', u'assign', u'end', u'aqi', u'offic'] [u'farmer', u'group', u'boost', u'region', u'servic', u'manag'] [u'presid', u'mosley', u'step'] [u'financi', u'counsel', u'servic', u'break', u'hill'] [u'firm', u'gear', u'china', u'export', u'deal'] [u'turkish', u'bomb'] [u'fletcher', u'bomber', u'lion', u'welcom', u'lynch'] [u'clerk', u'convict', u'polic', u'threat'] [u'polic', u'offic', u'win', u'damag', u'lack'] [u'gilchrist', u'set', u'lankan', u'chase'] [u'govt', u'cast', u'welfar', u'lifelin'] [u'govt', u'reject', u'latest', u'long', u'term', u'unemploy', u'figur'] [u'greec', u'book', u'spot', u'euro', u'final'] [u'greec', u'pretti', u'pretti', u'effect'] [u'group', u'rule', u'link', u'long', u'hour'] [u'hegarti', u'sign', u'south'] [u'hitzfeld', u'turn', u'german', u'coach'] [u'home', u'build', u'gain', u'momentum'] [u'hope', u'remain', u'rail', u'job'] [u'howard', u'want', u'hick', u'habib', u'tri'] [u'confirm', u'postpon', u'zimbabw', u'test'] [u'illawarra', u'consid', u'scandinavian', u'age', u'care', u'model'] [u'illeg', u'transact', u'lead', u'good', u'behaviour', u'bond'] [u'health', u'forc', u'postpon', u'milosev', u'defenc'] [u'indigen', u'group', u'unhappi', u'water', u'consult'] [u'irrig', u'miss', u'water', u'alloc'] [u'isra', u'pair', u'tri', u'obtain', u'passport'] [u'jordan', u'consid', u'send', u'troop', u'iraq'] [u'journalist', u'tight', u'lip', u'miss', u'day'] [u'kurdish', u'rebel', u'deni', u'respons', u'turkey'] [u'labor', u'polici', u'threaten', u'growth', u'report'] [u'labor', u'promis', u'telemarket', u'regist'] [u'lacklustr', u'bomber', u'lose', u'straight'] [u'latham', u'accus', u'verbal', u'defenc', u'forc', u'chief'] [u'latham', u'play', u'past', u'alterc'] [u'council', u'call', u'offend', u'regist'] [u'leagu', u'chairman', u'upbeat', u'refere', u'woe'] [u'lion', u'welcom', u'lynch'] [u'liverpool', u'plain', u'shire', u'councillor', u'name'] [u'loan', u'coral', u'reef', u'fisher', u'extra', u'quota'] [u'lucki', u'rossi'] [u'accus', u'abduct', u'babi', u'appear', u'court'] [u'arrest', u'follow', u'prison', u'worker', u'assault'] [u'plead', u'guilti', u'chemist', u'murder'] [u'maroon', u'miss', u'carrol', u'defenc', u'crocker'] [u'matilda', u'clinch', u'china', u'seri', u'draw'] [u'media', u'warn', u'restraint', u'collin'] [u'medicar', u'packag', u'confus', u'amaq'] [u'meet', u'consid', u'help', u'wineri', u'worker'] [u'meet', u'consid', u'bateman', u'foreshor', u'plan'] [u'melbourn', u'landmark', u'receiv', u'world', u'heritag', u'list'] [u'melbourn', u'prepar', u'euro', u'final'] [u'mickleberg', u'clear', u'perth', u'mint', u'swindl'] [u'milit', u'kill', u'alleg', u'palestinian', u'israel'] [u'milk', u'produc', u'vent', u'frustrat'] [u'millar', u'pull', u'british', u'olymp', u'team'] [u'millar', u'face', u'dope', u'probe'] [u'minist', u'highlight', u'need', u'shear', u'industri'] [u'miss', u'motorbik', u'rider', u'safe'] [u'fund', u'seek', u'bowel', u'cancer', u'program'] [u'place', u'alloc', u'griffith', u'parkland'] [u'place', u'announc'] [u'morrison', u'leav', u'cowboy'] [u'mourner', u'gather', u'farewel', u'journalist'] [u'hit', u'embryo', u'research', u'law'] [u'filthi', u'rich', u'buyer'] [u'murali', u'rule', u'later', u'tour'] [u'nauru', u'govt', u'staff', u'evict', u'melbourn', u'offic'] [u'research', u'centr', u'combat', u'tooth', u'decay'] [u'restrict', u'kid'] [u'victorian', u'truck', u'roll'] [u'nightclub', u'pledg', u'clean'] [u'korea', u'agre', u'trust', u'issu', u'thwart', u'progress'] [u'ohern', u'share', u'lead', u'ireland'] [u'panther', u'blitz', u'rag', u'storm'] [u'parkland', u'clear', u'expect', u'soon'] [u'peak', u'tourism', u'season', u'mix'] [u'plan', u'continu', u'energi', u'plant'] [u'wont', u'oppos', u'death', u'penalti', u'saddam'] [u'polic', u'continu', u'stand', u'negoti'] [u'polic', u'investig', u'singl', u'vehicl', u'accid'] [u'polic', u'link', u'arrest', u'terrorist', u'bomb'] [u'polic', u'probe', u'deton', u'theft'] [u'polic', u'probe', u'school', u'blaze'] [u'polic', u'raid', u'collin', u'home'] [u'port', u'augusta', u'announc', u'budget', u'project'] [u'powel', u'meet', u'north', u'korean', u'counterpart'] [u'powel', u'say', u'assum', u'saddam', u'innoc'] [u'prais', u'rock', u'decis'] [u'prison', u'group', u'hit', u'overpay'] [u'prop', u'logan', u'return', u'south'] [u'govt', u'stand', u'burnett', u'river'] [u'electrician', u'consid', u'industri', u'unrest'] [u'queanbeyan', u'crash', u'name', u'releas'] [u'rabi', u'infect', u'organ', u'kill'] [u'radio', u'day', u'outback', u'school'] [u'rail', u'bridg', u'entomb', u'ipswich', u'shop', u'centr'] [u'receiv', u'seal', u'nauru', u'melbourn', u'offic'] [u'relat', u'britain', u'iran', u'continu'] [u'report', u'detail', u'sniffer', u'drug', u'search', u'result'] [u'review', u'prompt', u'museum', u'overhaul'] [u'rezon', u'take', u'pressur', u'reef'] [u'riverland', u'staff', u'wont', u'join', u'strike'] [u'rocklea', u'trot', u'fall', u'victim', u'lack', u'fund'] [u'saddam', u'defiant', u'face', u'genocid', u'charg'] [u'safeti', u'group', u'probe', u'emerg', u'land'] [u'saleyard', u'plan', u'move', u'ahead'] [u'salvo', u'applaud', u'famili', u'payment', u'benefit'] [u'port', u'boost', u'secur'] [u'saturn', u'pictur', u'yield', u'surpris'] [u'scheme', u'help', u'student', u'nurs', u'stay', u'touch'] [u'secur', u'boost', u'port', u'kembla'] [u'secur', u'upgrad', u'tasmanian', u'port'] [u'senat', u'blame', u'polit', u'forest', u'report', u'delay'] [u'serena', u'sharapova', u'wimbledon', u'showdown'] [u'shire', u'reconsid', u'geraldton', u'alloc'] [u'showbag', u'item', u'remov', u'safeti', u'sake'] [u'silver', u'fern', u'secur', u'seri'] [u'hospit', u'infect'] [u'sixteen', u'kill', u'turkish', u'quak', u'report'] [u'wound', u'gaza', u'citi', u'incurs'] [u'small', u'eas', u'water', u'restrict'] [u'smith', u'prayer', u'final', u'answer'] [u'staff', u'stage', u'condit', u'strike'] [u'specialist', u'warn', u'public', u'hospit', u'crisi'] [u'stan', u'laurel', u'souvenir', u'snap', u'auction'] [u'stevedor', u'compani', u'join', u'victoria', u'dock'] [u'studi', u'reveal', u'rain', u'mar'] [u'sudan', u'toll', u'offici', u'warn'] [u'sudan', u'urg', u'urgent', u'action', u'protect'] [u'suspect', u'citrus', u'diseas', u'outbreak', u'investig'] [u'sydney', u'street', u'evacu', u'sieg'] [u'tasmanian', u'casino', u'worker', u'strike'] [u'tasmania', u'receiv', u'record', u'rainfal', u'june'] [u'teacher', u'group', u'worri', u'princip'] [u'telemarket', u'signal', u'need', u'nation', u'regist'] [u'member', u'french', u'paedophil', u'ring', u'jail'] [u'rise', u'fall', u'saddam'] [u'model', u'moot', u'shire', u'merger'] [u'time', u'warner', u'enter', u'bid', u'fray'] [u'saudi', u'milit', u'kill', u'shootout'] [u'tour', u'battl', u'say', u'ullrich'] [u'track', u'clear', u'freight', u'australia', u'acquisit'] [u'traumatis', u'anim', u'rspca', u'busi'] [u'treasur', u'head', u'south', u'korean', u'trade', u'mission'] [u'tree', u'domain', u'say', u'carr'] [u'turkish', u'hostag', u'free', u'iraq'] [u'soldier', u'charg', u'shoot', u'iraq'] [u'unemploy', u'figur', u'prompt', u'train', u'review', u'call'] [u'unherald', u'amateur', u'lead', u'massachusett'] [u'union', u'want', u'better', u'outcom', u'meatwork'] [u'union', u'urg', u'staff', u'walk'] [u'uriarra', u'pierc', u'creek', u'develop', u'halt'] [u'lawyer', u'demand', u'access', u'habib'] [u'releas', u'guantanamo', u'detaine'] [u'turn', u'away', u'ship', u'secur', u'failur'] [u'viduka', u'pois', u'boro'] [u'word', u'erupt', u'lengthi', u'council', u'meet'] [u'water', u'board', u'anti', u'irrig'] [u'prepar', u'indigen', u'market', u'strategi'] [u'wife', u'disgrac', u'admit', u'lie', u'corrupt'] [u'wild', u'deer', u'woe', u'troubl', u'council'] [u'wit', u'seek', u'pedestrian', u'truck', u'accid'] [u'woman', u'die', u'melbourn', u'hous'] [u'woman', u'plead', u'guilti', u'steal', u'bank'] [u'world', u'secur', u'say', u'vice', u'presid'] [u'yudhoyono', u'lead', u'indonesian', u'poll'] [u'taliban', u'fighter', u'kill'] [u'age', u'care', u'phone', u'pressur', u'govern'] [u'aid', u'number', u'grow', u'india'] [u'ambros', u'secur', u'pole'] [u'armstrong', u'lose', u'book', u'appeal'] [u'arrest', u'lawyer', u'murder'] [u'aussi', u'trail', u'illinoi', u'lead'] [u'australia', u'indonesia', u'fight', u'religi', u'mistrust'] [u'australia', u'indonesia', u'open', u'region', u'anti', u'terror'] [u'australia', u'join', u'spam', u'fight'] [u'bahrain', u'terror', u'threat', u'prompt', u'pullout'] [u'bennett', u'slam', u'player', u'trade'] [u'bodi', u'sieg', u'gunman'] [u'builder', u'warn', u'rat', u'rise', u'slow', u'activ'] [u'busi', u'usual', u'despit', u'casino', u'strike'] [u'canadian', u'set', u'pace', u'peac'] [u'canadian', u'rush', u'afghan', u'surgeri'] [u'canberra', u'rainfal', u'near', u'record', u'low'] [u'prompt', u'civic', u'evacu'] [u'cash', u'elder', u'worri', u'crime', u'fighter'] [u'cave', u'hold', u'clue', u'mysteri', u'hare'] [u'urg', u'reveal', u'qaeda', u'interrog', u'method'] [u'council', u'queri', u'ipswich', u'bridg', u'decis'] [u'csiro', u'give', u'wattl', u'boost', u'salin', u'fight'] [u'cyclist', u'clear', u'drug', u'claim'] [u'cyclist', u'pedal', u'drug'] [u'darfur', u'crisi', u'talk', u'begin', u'juli'] [u'develop', u'plan', u'maintain', u'harbour', u'health'] [u'eagl', u'defeat', u'cat', u'dour', u'clash'] [u'fatal', u'accid', u'prompt', u'warn', u'motorist'] [u'feder', u'finish', u'grosjean', u'reach', u'final'] [u'feyenoord', u'deal', u'socceroo', u'brosqu'] [u'filipino', u'rosal', u'lead', u'women', u'open'] [u'dead', u'kansa', u'shoot'] [u'dead', u'kansa', u'shoot', u'spree'] [u'fourth', u'stevedor', u'plan', u'concern'] [u'frawley', u'deadlin', u'endang', u'tiger'] [u'futur', u'head', u'talk'] [u'german', u'win', u'balloon', u'championship'] [u'gibernau', u'take', u'provision', u'pole'] [u'gingin', u'local', u'tell', u'groundwat', u'unsaf'] [u'goosen', u'grab', u'dublin', u'lead'] [u'green', u'empt', u'elect', u'campaign'] [u'gregan', u'readi', u'island', u'rough', u'stuff'] [u'guard', u'suspend', u'prison', u'death'] [u'heat', u'wave', u'kill', u'china', u'await', u'typhoon'] [u'hold', u'victim', u'crime', u'law', u'unfair', u'stanhop'] [u'danger', u'armstrong', u'say', u'mayo'] [u'quot', u'tribut', u'marlon', u'brando'] [u'iraqi', u'govt', u'emerg', u'law'] [u'iraqi', u'tribun', u'want', u'defend', u'split'] [u'iraq', u'export', u'ruptur'] [u'israel', u'thwart', u'suicid', u'bomber'] [u'kashmir', u'bomb', u'kill', u'injur'] [u'kasprowicz', u'captur', u'seven', u'aussi'] [u'kiwi', u'fan', u'spit', u'lion', u'ticket', u'snub'] [u'labor', u'reject', u'critic', u'workplac', u'plan'] [u'land', u'council', u'take', u'control', u'rock', u'site'] [u'lankan', u'limp', u'lunch'] [u'leak', u'suspicion', u'prompt', u'skywest', u'investig'] [u'lion', u'hold', u'tiger'] [u'magpi', u'hammer', u'hawk'] [u'charg', u'nightclub', u'clash'] [u'marlon', u'brando', u'die'] [u'marlon', u'brando', u'method'] [u'mcgee', u'bid', u'doubl', u'tour', u'prologu'] [u'milner', u'join', u'viduka', u'leed', u'exodus'] [u'evacu', u'goldfield', u'explos'] [u'minist', u'deni', u'swindl', u'polic', u'inquiri', u'necessari'] [u'miss', u'friend', u'hous'] [u'modburi', u'shoot', u'lead', u'polic', u'stand'] [u'murdoch', u'welcom', u'lion', u'share', u'fund'] [u'diseas', u'threaten', u'citrus', u'crop'] [u'prison', u'abus', u'claim', u'probe'] [u'farmer', u'diseas', u'track', u'deadlin'] [u'polic', u'work', u'get', u'reward'] [u'goanna', u'suffer', u'cane', u'toad', u'expans'] [u'nurs', u'hear', u'age', u'care', u'grip'] [u'nurs', u'welcom', u'latex', u'allergi', u'compens'] [u'opal', u'tough', u'china'] [u'patienc', u'urg', u'cyclist', u'domin', u'canberra', u'road'] [u'petacchi', u'bring', u'say', u'mcewen'] [u'plan', u'author', u'combat', u'public', u'confus'] [u'polic', u'continu', u'negoti', u'banksia', u'sieg'] [u'polic', u'fear', u'miss', u'boy', u'welfar'] [u'powel', u'get', u'asean', u'forum'] [u'prehistor', u'skull', u'fill', u'human', u'fossil', u'gap'] [u'polic', u'dismiss', u'terror', u'base', u'claim'] [u'raider', u'tame', u'tiger'] [u'rain', u'halt', u'feder', u'roddick'] [u'rooster', u'cowboy'] [u'russian', u'offic', u'arriv', u'yuko'] [u'russian', u'ralli', u'welfar', u'chang'] [u'rwanda', u'open', u'border', u'congo'] [u'second', u'sizzl', u'pittman', u'guerrouj', u'beat'] [u'shelter', u'moot', u'eas', u'homeless'] [u'shoot', u'suspect', u'give', u'polic', u'slip'] [u'sieg', u'continu', u'sydney'] [u'soft', u'job', u'data', u'renew', u'wall', u'street', u'jitter'] [u'spain', u'hold', u'terror', u'suspect', u'indefinit'] [u'lanka', u'rope', u'darwin'] [u'stretch', u'hospit', u'resourc', u'contribut'] [u'strike', u'worker', u'accus', u'hurt', u'tourism'] [u'sudan', u'pledg', u'disarm', u'rebel', u'group'] [u'sunderland', u'saddl', u'possibl', u'tour', u'farewel'] [u'swan', u'blue', u'pois', u'duel'] [u'swan', u'surg', u'home', u'sink', u'blue'] [u'swan', u'advantag', u'long', u'break'] [u'sydney', u'merger', u'approv'] [u'program', u'target', u'famili', u'violenc'] [u'therapist', u'consid', u'latest', u'offer'] [u'team', u'blast', u'darwin', u'pitch'] [u'thousand', u'expect', u'pride'] [u'time', u'zone', u'barrier', u'film', u'collabor'] [u'searcher', u'weekend', u'break'] [u'troop', u'unearth', u'iraq', u'bomb', u'factori'] [u'marin', u'kill', u'near', u'fallujah'] [u'union', u'call', u'educ', u'review', u'guidelin'] [u'regret', u'decis', u'peacekeep'] [u'challeng', u'guantanamo', u'detaine'] [u'charg', u'soldier', u'iraqi', u'death'] [u'job', u'growth', u'slow'] [u'rais', u'spectr', u'sudan', u'sanction'] [u'nistelrooy', u'cop', u'world'] [u'wallabi', u'overcom', u'bruis', u'island'] [u'welcom', u'crime', u'windfal'] [u'lift', u'warrior', u'cellar'] [u'woman', u'charg', u'brutal', u'bash'] [u'woolley', u'chair', u'forest', u'council'] [u'zimbabwean', u'opposit', u'leader', u'escap', u'attack'] [u'alleg', u'abalon', u'poacher', u'face', u'stiff', u'penalti'] [u'alonso', u'put', u'renault', u'pole', u'french'] [u'deni', u'blood', u'busi'] [u'ambros', u'win', u'queensland'] [u'aqi', u'give', u'timor', u'chicken', u'clear'] [u'aussi', u'rider', u'white', u'crash', u'tour'] [u'bahrain', u'reject', u'terror', u'warn'] [u'ban', u'cyclist', u'accus', u'cycl', u'australia'] [u'beat', u'navratilova', u'set', u'sight', u'olymp'] [u'britney', u'spear', u'take', u'role'] [u'brutal', u'roddick', u'set', u'dream', u'final', u'feder'] [u'buckland', u'host', u'massiv', u'armi', u'reserv', u'oper'] [u'tighter', u'child', u'protect', u'law'] [u'cancellara', u'claim', u'tour', u'prologu', u'mcgee', u'fourth'] [u'capsiz', u'tanker', u'right', u'hamburg', u'port'] [u'cassini', u'pictur', u'shatter', u'titan', u'theori'] [u'cheney', u'caution', u'iraq', u'pullout'] [u'children', u'kill', u'east', u'violenc'] [u'chines', u'woman', u'beat', u'death', u'hand'] [u'congest', u'bangkok', u'open', u'subway'] [u'corrupt', u'eat', u'rice', u'subsidi'] [u'council', u'attack', u'wait', u'list'] [u'court', u'grant', u'bail', u'accus', u'involv'] [u'crow', u'destroy', u'demon'] [u'cycl', u'australia', u'anger', u'alleg'] [u'darfur', u'bloodsh', u'test', u'african', u'union', u'peac', u'plan'] [u'darfur', u'rebel', u'boycott', u'talk'] [u'darwin', u'orchestra', u'hop', u'feder', u'fund'] [u'disobedi', u'juror', u'face', u'jail'] [u'docker', u'lead', u'bulldog'] [u'docker', u'dog'] [u'dont', u'worri', u'there', u'come', u'mcgee'] [u'east', u'timor', u'swing', u'portug'] [u'east', u'timor', u'swing', u'portug', u'euro', u'showdown'] [u'egypt', u'minist', u'die', u'heart', u'attack'] [u'estonian', u'coupl', u'take', u'home', u'wife', u'carri', u'world'] [u'ethiopian', u'win', u'gold', u'coast', u'marathon'] [u'euro', u'final', u'slam', u'bias', u'claim'] [u'slim', u'owner'] [u'feder', u'hotel', u'stand', u'firm', u'offer'] [u'blue', u'real', u'problem'] [u'femal', u'astronaut', u'visit', u'canberra', u'track'] [u'gold', u'coast', u'marathon', u'boast', u'record', u'field'] [u'goosen', u'cours', u'european', u'open'] [u'govt', u'support', u'access', u'econom', u'report', u'mean'] [u'group', u'call', u'investig', u'prison'] [u'homeless', u'shelter', u'idea', u'can'] [u'hospit', u'blackout', u'trigger', u'intern', u'disast'] [u'hunt', u'star', u'bronco', u'fest'] [u'india', u'test', u'nuclear', u'capabl', u'missil'] [u'indonesian', u'head', u'home', u'direct'] [u'iran', u'prepar', u'complaint', u'saddam', u'hussein'] [u'iraq', u'announc', u'amnesti', u'insurg'] [u'japan', u'opposit', u'outdo', u'rule', u'parti'] [u'job', u'figur', u'highlight', u'mismanag'] [u'johnson', u'miss', u'olymp', u'mark'] [u'kapsi', u'doubt', u'nikolaidi', u'final'] [u'kashmir', u'explos', u'kill', u'wind'] [u'kenyan', u'polic', u'struggl', u'control', u'protest'] [u'kiwi', u'verg', u'seri', u'final'] [u'klinsmann', u'hail', u'rooney', u'pick', u'star', u'euro'] [u'knee', u'injuri', u'put', u'roff', u'nation'] [u'labor', u'lash', u'govt', u'smear', u'campaign'] [u'lebanon', u'ministri', u'confirm', u'marin', u'hostag', u'dead'] [u'lomu', u'find', u'kidney', u'donor', u'report'] [u'kill', u'kayak'] [u'mclaren', u'boss', u'reject', u'mosley', u'critic'] [u'milit', u'claim', u'soldier', u'behead'] [u'mitsubishi', u'celebr', u'strong', u'sale'] [u'motorcyclist', u'injur', u'tree', u'branch', u'pierc'] [u'muso', u'unearth', u'jazz', u'festiv'] [u'narrow', u'loss', u'opal', u'china'] [u'confirm', u'hostag', u'kill', u'iraq'] [u'need', u'world', u'court', u'involv'] [u'abattoir', u'close', u'job'] [u'begin', u'naidoc', u'celebr'] [u'palestinian', u'kill', u'refuge', u'camp', u'clash'] [u'palestinian', u'shoot', u'attempt', u'ferri'] [u'polic', u'investig', u'claim', u'azaria', u'mysteri'] [u'polic', u'investig', u'riverland', u'fatal'] [u'polic', u'locat', u'prison', u'escape'] [u'polic', u'suspect', u'famili', u'member', u'respons', u'perth'] [u'port', u'power', u'saint'] [u'portug', u'faith', u'pauleta'] [u'power', u'surg', u'saint'] [u'power', u'strong', u'saint'] [u'govt', u'reject', u'critic', u'fisheri'] [u'queiroz', u'lash', u'beckham', u'excus'] [u'rich', u'nation', u'urg', u'help', u'prestigi'] [u'robert', u'power', u'pole', u'brazil', u'grand', u'prix'] [u'rosal', u'lead', u'women', u'open'] [u'costa', u'final'] [u'russian', u'polic', u'raid', u'yuko', u'headquart'] [u'ryan', u'send', u'messag', u'bulldog'] [u'scientist', u'releas', u'elect', u'wish', u'list'] [u'serb', u'general', u'threaten', u'reveng', u'hagu', u'handov'] [u'sharapova', u'apologis', u'wimbledon'] [u'shark', u'hold', u'fast', u'finish', u'knight'] [u'hurt', u'bomb', u'factori', u'discov', u'afghan'] [u'storm', u'confer', u'examin', u'econom', u'impact'] [u'urg', u'lead', u'smoke', u'ban'] [u'teenag', u'die', u'collaps', u'subiaco'] [u'thousand', u'celebr', u'pride', u'europ'] [u'turkish', u'peacekeep', u'withdraw', u'north', u'iraq'] [u'determin', u'merger', u'impact'] [u'urban', u'roo', u'pose', u'threat'] [u'paramed', u'step', u'campaign'] [u'law', u'recognis', u'carer', u'right'] [u'wallabi', u'count', u'cost', u'adelaid', u'batter'] [u'warn', u'continu', u'despit', u'drop', u'water'] [u'wenger', u'believ', u'rooney', u'join'] [u'woman', u'kill', u'perth', u'kebab', u'shop'] [u'woodbridg', u'aim', u'wimbledon', u'glori'] [u'wood', u'content', u'charg', u'aussi'] [u'woyecha', u'win', u'gold', u'coast', u'marathon'] [u'yemen', u'fight', u'leav', u'dead'] [u'afghan', u'famili', u'settl', u'launceston', u'life'] [u'african', u'heir', u'disney', u'lion', u'sleep', u'tonight'] [u'algeria', u'crisi', u'talk', u'independ', u'media'] [u'eye', u'retail', u'close', u'flat'] [u'defend', u'industri', u'polici'] [u'blast', u'govt', u'foreign', u'doctor'] [u'ambul', u'servic', u'disrupt', u'work', u'impos'] [u'anderson', u'open', u'industri', u'road'] [u'atsic', u'demis', u'rememb', u'amidst', u'celebr'] [u'aust', u'dairi', u'farmer', u'reject', u'thai', u'damag', u'claim'] [u'aust', u'pay'] [u'australia', u'host', u'world'] [u'aust', u'thailand', u'sign', u'free', u'trade', u'deal'] [u'award', u'recognis', u'indigen', u'musician'] [u'bank', u'tip', u'rat', u'rise', u'year'] [u'batkov', u'opal'] [u'beatti', u'oppos', u'opposit', u'access', u'document'] [u'brother', u'evicte', u'return', u'error'] [u'bird', u'face', u'judiciari'] [u'blackburn', u'claim', u'elder', u'victim'] [u'boca', u'junior', u'coach', u'bianchi', u'resign'] [u'bomber', u'notic', u'say', u'sheedi'] [u'bremer', u'say', u'iraq', u'democraci', u'wont', u'happen', u'overnight'] [u'budget', u'allow', u'free', u'ferri', u'pass'] [u'cameroon', u'resurrect', u'campaign'] [u'campion', u'ponder', u'bicep', u'injuri', u'impact'] [u'casino', u'worker', u'strike'] [u'casual', u'worker', u'extra', u'leav', u'right'] [u'cement', u'aust', u'prepar', u'plant', u'commiss'] [u'chao', u'greec', u'million', u'celebr', u'dream', u'come'] [u'china', u'drive', u'growth', u'report'] [u'chines', u'fossil', u'mail', u'parcel'] [u'church', u'ask', u'assault', u'victim', u'come', u'forward'] [u'communiti', u'legal', u'servic', u'face', u'fund'] [u'confer', u'focus', u'safeti'] [u'cosmonaut', u'nikolayev', u'die'] [u'costello', u'bonanza', u'mean', u'budget', u'bust', u'report'] [u'council', u'offer', u'irrig'] [u'council', u'question', u'state', u'agreement', u'act'] [u'court', u'hear', u'accus', u'think', u'shes', u'jesus'] [u'court', u'hear', u'underworld', u'rehears'] [u'curfew', u'need', u'polic', u'boost', u'birney'] [u'custom', u'promis', u'better', u'power', u'suppli'] [u'cyclist', u'anna', u'mear', u'athen', u'bind'] [u'dead', u'weekend', u'spark', u'road', u'care'] [u'defenc', u'chief', u'outlin', u'coalit', u'achiev'] [u'develop', u'say', u'delay', u'prove', u'cost'] [u'devonport', u'get', u'monitor', u'station'] [u'diver', u'miss', u'spear', u'fish', u'trip'] [u'doctor', u'temporari', u'visa', u'bypass', u'board', u'exam'] [u'driver', u'face', u'charg', u'highway', u'crash'] [u'drought', u'forc', u'nepales', u'strip', u'farm'] [u'drought', u'stricken', u'farmer', u'offer', u'help'] [u'educ', u'minist', u'heckl', u'teacher', u'confer'] [u'endur', u'ride', u'attract', u'strong', u'number'] [u'father', u'reliev', u'clear', u'cycl', u'drug'] [u'feder', u'spike', u'roddick', u'gun'] [u'feder', u'spike', u'roddick', u'gun', u'glori'] [u'govt', u'urg', u'chang', u'stanc'] [u'firm', u'fin', u'feedlot'] [u'fleme', u'lead', u'kiwi', u'final'] [u'forecast', u'futur', u'storm', u'warn', u'technolog'] [u'chief', u'minist', u'condemn', u'abus'] [u'mayor', u'criticis', u'latham', u'manag', u'skill'] [u'french', u'stand', u'drug', u'claim'] [u'fund', u'cut', u'spark', u'indigen', u'radio', u'concern'] [u'fund', u'shortfal', u'end', u'phone', u'legal', u'servic'] [u'fund', u'address', u'domest', u'violenc'] [u'fund', u'help', u'landhold', u'hurt', u'veget', u'law'] [u'futur', u'uncertain', u'bundaberg', u'austoft', u'worker'] [u'goosen', u'win', u'european', u'open', u'stroke'] [u'govt', u'plan', u'natur', u'resourc', u'manag', u'board'] [u'govt', u'reject', u'alcohol', u'tourism', u'claim'] [u'govt', u'support', u'port', u'phillip', u'dredg', u'plan'] [u'govt', u'urg', u'accept', u'inform', u'commission'] [u'greek', u'communiti', u'revel', u'soccer'] [u'greek', u'fan', u'street', u'australia'] [u'greek', u'complet', u'euro', u'fairytal'] [u'grind', u'zero', u'rebuild', u'begin'] [u'group', u'step', u'rat', u'protest'] [u'guantanamo', u'detaine', u'return', u'saudi', u'deal'] [u'help', u'seek', u'appar', u'drive', u'shoot'] [u'hensbi', u'ame', u'take', u'breakthrough'] [u'problem', u'mcgee', u'tour'] [u'holden', u'plant', u'close', u'upgrad'] [u'hollywood', u'star', u'unit', u'anti', u'bush'] [u'honesti', u'limit', u'sheep', u'diseas', u'spread'] [u'hope', u'plan', u'stop', u'meatwork', u'closur'] [u'hop', u'melt', u'away', u'snowfest'] [u'howard', u'seal', u'thai', u'free', u'trade', u'deal'] [u'increas', u'travel', u'hurt', u'environ'] [u'independ', u'firm', u'verifi', u'cost'] [u'independ', u'ask', u'public', u'bigger', u'medicar'] [u'indigen', u'communiti', u'urg', u'celebr', u'naidoc', u'week'] [u'indonesia', u'begin', u'histor', u'ballot'] [u'indonesia', u'order', u'invalid', u'vote', u'count'] [u'industri', u'woe', u'wont', u'affect', u'power'] [u'inquest', u'redfern', u'teenag', u'death', u'begin'] [u'inquiri', u'recommend', u'overhaul', u'plan', u'bodi'] [u'iraq', u'infrastructur', u'remain', u'threat'] [u'irish', u'scientist', u'plan', u'dial', u'dolphin'] [u'irrig', u'nation', u'water', u'initi'] [u'irrig', u'want', u'river', u'water', u'lift'] [u'israel', u'deni', u'ghraib', u'interrog', u'claim'] [u'isra', u'strike', u'target', u'metal', u'workshop'] [u'japanes', u'dog', u'competit', u'eat'] [u'kearn', u'possibl', u'week'] [u'latham', u'seek', u'quash', u'rumour'] [u'lawyer', u'defend', u'cyclist', u'drug', u'claim'] [u'local', u'firefight', u'take', u'train', u'lead'] [u'long', u'distanc', u'take', u'wind', u'balloon', u'event'] [u'long', u'servic', u'leav', u'casual', u'worker'] [u'lundi', u'welcom', u'plan', u'recommend'] [u'mallon', u'seal', u'shoot', u'women', u'open'] [u'accus', u'partner', u'murder', u'face', u'trial'] [u'plead', u'guilti', u'murder', u'alburi', u'woman'] [u'matthew', u'call', u'protect', u'forward'] [u'mayor', u'back', u'poki', u'plan'] [u'mayor', u'hear', u'worri'] [u'mcewen', u'miss', u'injur', u'mcgee', u'limp', u'home'] [u'mcewen', u'pedal', u'second', u'spot', u'tour', u'stage'] [u'casual', u'worker', u'win', u'long', u'servic', u'leav'] [u'mcrae', u'name', u'south', u'coach'] [u'medic', u'student', u'train', u'overhaul'] [u'milit', u'deni', u'behead', u'hostag'] [u'milosev', u'trial', u'delay', u'health'] [u'minist', u'back', u'merger', u'plan'] [u'interrupt', u'power', u'suppli'] [u'time', u'comment', u'wast', u'plan', u'studi'] [u'motorcyclist', u'die', u'road', u'crash'] [u'mugab', u'rule', u'talk'] [u'neighbour', u'back', u'azaria', u'mysteri', u'claim'] [u'network', u'boost', u'firefight', u'effort'] [u'darwin', u'suburb', u'honour', u'tradit', u'owner'] [u'technolog', u'improv', u'bowel', u'diagnosi'] [u'websit', u'hervey', u'whale', u'watch', u'industri'] [u'earli', u'elect', u'clarenc', u'valley', u'council'] [u'delay', u'hydrotherapi', u'pool', u'studi'] [u'minist', u'say', u'wont', u'stop', u'school', u'visit'] [u'accus', u'travel', u'rort'] [u'offici', u'interview', u'turkish', u'bushland'] [u'olymp', u'gold', u'target', u'feder'] [u'dead', u'injur', u'grafton', u'crash'] [u'organis', u'upbeat', u'naidoc', u'week', u'futur'] [u'pacif', u'countri', u'solomon', u'presenc'] [u'paramed', u'work', u'ban', u'spark', u'patient', u'fear'] [u'park', u'join', u'campaign', u'plastic', u'bag'] [u'perth', u'power', u'shortag', u'risk', u'play'] [u'polic', u'continu', u'lawley', u'murder', u'inquiri'] [u'polic', u'defend', u'port', u'fairi', u'hour', u'decis'] [u'polic', u'deni', u'chase', u'hickey', u'redfern'] [u'polic', u'investig', u'kebab', u'shop', u'death'] [u'polic', u'rescu', u'woman', u'burn', u'hous'] [u'polic', u'azaria', u'claim'] [u'poll', u'close', u'indonesian', u'vote'] [u'poor', u'say', u'boost', u'relianc', u'oversea'] [u'power', u'station', u'worker', u'strike', u'rise', u'claim'] [u'prison', u'plight', u'prompt', u'call', u'mental', u'health'] [u'public', u'urg', u'help', u'control', u'potenti', u'bird', u'problem'] [u'qanta', u'case', u'court'] [u'qanta', u'crew', u'strike', u'london', u'plan'] [u'citrus', u'face', u'diseas', u'discoveri'] [u'rehhagel', u'hail', u'sensat', u'final'] [u'report', u'expos', u'govt', u'elect', u'spree'] [u'richmond', u'council', u'upbeat', u'financ'] [u'river', u'overnight', u'rain'] [u'rooster', u'sign', u'robert', u'year', u'deal'] [u'busi', u'confid', u'continu', u'fall'] [u'defend', u'state', u'school', u'abus', u'record'] [u'urg', u'influenc', u'fli', u'doctor', u'reloc'] [u'scheme', u'highlight', u'heart', u'woe'] [u'pleas', u'extra', u'student', u'place'] [u'search', u'continu', u'miss', u'bargara', u'diver'] [u'servic', u'sector', u'contract', u'report'] [u'urg', u'promot', u'phone', u'number'] [u'seven', u'player', u'tribun'] [u'vehicl', u'major', u'accid', u'pacif'] [u'shire', u'await', u'chemic', u'test', u'result'] [u'shire', u'lament', u'grant', u'situat'] [u'shirvo', u'olymp', u'content'] [u'smaller', u'team', u'head', u'athen', u'paralymp'] [u'snapper', u'tag', u'aim', u'boost', u'sustain', u'stock'] [u'soccer', u'provid', u'indonesian', u'poll', u'worri'] [u'solid', u'job', u'growth', u'forecast'] [u'kid', u'wors', u'govern', u'care'] [u'south', u'face', u'oblivion', u'richardson'] [u'stab', u'put', u'hospit'] [u'stone', u'bros', u'appeal', u'ambros', u'point', u'decis'] [u'stretch', u'resourc', u'caus', u'man', u'death'] [u'sudan', u'plan', u'refuge', u'return'] [u'survey', u'aim', u'offer', u'barcaldin', u'boost'] [u'swimmer', u'warn', u'sewag', u'spill'] [u'sydney', u'host', u'oxfam', u'youth', u'parliament'] [u'talk', u'focus', u'darl', u'flow'] [u'tamada', u'clinch', u'grand', u'prix', u'victori'] [u'tamworth', u'council', u'look', u'budget', u'surplus'] [u'bubbl', u'burst', u'warn', u'forecast'] [u'teacher', u'minist', u'school', u'tafe'] [u'tender', u'call', u'road', u'studi'] [u'thai', u'opposit', u'support', u'inquiri'] [u'thai', u'advoc', u'aust', u'presenc', u'asean'] [u'licenc', u'seek', u'region'] [u'trapattoni', u'name', u'manag', u'benfica'] [u'turkish', u'detain'] [u'ugandan', u'hostag', u'site', u'nation', u'memori'] [u'happi', u'extra', u'student', u'place'] [u'game', u'attract', u'wide'] [u'unstopp', u'schumach', u'win', u'franc'] [u'figur', u'help', u'aussi', u'dollar', u'gain'] [u'baptist', u'investig', u'abus', u'claim'] [u'danger', u'safest', u'biker'] [u'westfield', u'group', u'make', u'solid', u'debut'] [u'wheat', u'grower', u'welcom', u'strong', u'sale'] [u'whitewash', u'leav', u'netbal', u'plenti', u'ponder'] [u'wild', u'weather', u'cut', u'power'] [u'winni', u'mandela', u'give', u'suspend', u'sentenc', u'fraud'] [u'wit', u'claim', u'volker', u'case', u'mishandl'] [u'women', u'team', u'stronger', u'sydney', u'say', u'jone'] [u'woodbridg', u'set', u'men', u'doubl', u'record'] [u'worksaf', u'comb', u'shear', u'shed', u'danger'] [u'yuko', u'loan', u'default', u'share', u'tumbl'] [u'abbott', u'talk', u'medicar', u'chang'] [u'abduct', u'marin', u'aliv', u'famili'] [u'accid', u'fuel', u'slower', u'speed', u'limit'] [u'afghan', u'rememb', u'alic', u'camel', u'race'] [u'african', u'union', u'plan', u'troop', u'sudan'] [u'aid', u'rise', u'contin'] [u'airport', u'protest', u'seek', u'latham', u'meet'] [u'ambul', u'chang', u'boost', u'respons', u'time'] [u'bird'] [u'austrian', u'presid', u'fight', u'life', u'doctor'] [u'aust', u'troop', u'pull', u'straw'] [u'beatti', u'offer', u'prais', u'townsvill'] [u'bendigo', u'slam', u'door', u'killer', u'kitti'] [u'hop', u'inveresk', u'magic', u'million', u'auction'] [u'bird', u'out', u'match'] [u'blair', u'say', u'wmds'] [u'britain', u'compromis', u'smack'] [u'brown', u'consid', u'royalti', u'concess', u'issu'] [u'bulldog', u'cruel', u'kind', u'ax', u'pair'] [u'bulldog', u'thurston', u'move', u'north'] [u'bush', u'hear', u'doubt', u'report'] [u'busi', u'predict', u'econom', u'slowdown', u'survey'] [u'busi', u'suffer', u'lack', u'skill', u'worker'] [u'cabinet', u'approv', u'therapist', u'wage', u'rise'] [u'famili', u'allow', u'smart', u'card'] [u'wilcannia', u'resid', u'road'] [u'call', u'mount', u'releas', u'cycl', u'report'] [u'support', u'naidoc', u'week'] [u'carey', u'tri', u'hand', u'coach'] [u'champion', u'novak', u'advanc', u'swiss', u'open', u'feder'] [u'chief', u'execut', u'stand', u'amidst', u'budget', u'woe'] [u'child', u'kill', u'iraq', u'shoot'] [u'chilean', u'royalti'] [u'citrus', u'canker', u'confirm', u'farm'] [u'petrol', u'price', u'scare', u'campaign'] [u'cold', u'snap', u'sap', u'power'] [u'communiti', u'urg', u'manag', u'plan'] [u'council', u'crack', u'water', u'meter', u'tamper'] [u'council', u'defend', u'feral', u'bounti'] [u'council', u'keep', u'option', u'open', u'porter', u'land'] [u'councillor', u'maintain', u'opposit', u'water', u'price'] [u'council', u'scrap', u'tourism', u'levi', u'plan'] [u'crackdown', u'oversea', u'train', u'countri', u'doctor'] [u'crew', u'strike', u'qantass', u'london', u'plan'] [u'crocker', u'origin'] [u'cult', u'organ', u'donat', u'investig'] [u'death', u'spark', u'greater', u'koala', u'protect'] [u'deco', u'sign', u'year', u'deal', u'barca'] [u'diamond', u'miner', u'look', u'rest'] [u'dive', u'industri', u'pleas', u'safeti', u'effort'] [u'doubt', u'rais', u'lack', u'underworld', u'record'] [u'driver', u'get', u'suspend', u'sentenc', u'woman', u'death'] [u'entek', u'energi', u'join', u'northern', u'explor'] [u'equal', u'opportun', u'issu', u'aris', u'jail', u'compo'] [u'bore', u'say', u'mansel'] [u'farmer', u'want', u'research', u'station', u'retain'] [u'firefight', u'closer', u'extinguish', u'bushfir'] [u'firework', u'worth', u'cracker', u'polic'] [u'firm', u'seek', u'council', u'contract', u'work'] [u'dead', u'west', u'bank', u'clash'] [u'forens', u'expert', u'dubious', u'azaria', u'claim'] [u'forest', u'halv', u'size'] [u'chief', u'take', u'communiti', u'posit'] [u'fitzroy', u'footbal', u'trial', u'rape'] [u'general', u'lead', u'indonesian', u'vote'] [u'freight', u'termin', u'plan', u'boost', u'bypass', u'hop'] [u'fund', u'avail', u'region', u'project'] [u'fund', u'flow', u'water', u'suppli', u'studi'] [u'fund', u'good', u'recept', u'port', u'stephen'] [u'gaddafi', u'daughter', u'join', u'saddam', u'defenc', u'team'] [u'german', u'set', u'iraqi', u'youth', u'radio'] [u'goosen', u'climb', u'sixth', u'world', u'rank'] [u'govt', u'near', u'agreement', u'forest', u'review'] [u'govt', u'offer', u'harden', u'shire', u'support'] [u'govt', u'spend', u'commonwealth', u'game'] [u'govt', u'tighten', u'loop', u'yemen', u'sieg'] [u'govt', u'urg', u'boost', u'kempsey', u'polic'] [u'govt', u'will', u'consid', u'region', u'youth', u'curfew'] [u'grain', u'grower', u'urg', u'maintain', u'iraq', u'debt', u'pressur'] [u'gravel', u'sell', u'field', u'develop'] [u'green', u'plea', u'kelp', u'research', u'fund'] [u'gregan', u'loss', u'wallabi', u'umaga'] [u'gulf', u'fish', u'extend'] [u'hackett', u'send', u'thorp', u'warn', u'perform'] [u'hackett', u'underlin', u'challeng'] [u'hand', u'world', u'worker', u'walk'] [u'help', u'hand', u'land', u'fletcher', u'tribun', u'troubl'] [u'hockeyroo', u'strong', u'korea'] [u'hong', u'kong', u'bind', u'plane', u'return', u'sydney'] [u'hope', u'remain', u'troubl', u'leagu', u'club'] [u'human', u'remain'] [u'hysteria', u'erupt', u'triumphant', u'greek', u'land'] [u'indigen', u'council', u'call', u'allow', u'smart', u'card'] [u'indonesian', u'poll', u'head', u'second', u'round'] [u'industri', u'woe', u'affect', u'council', u'servic'] [u'iraqi', u'lawyer', u'appoint', u'defend', u'saddam'] [u'iraqi', u'milit', u'claim', u'marin', u'take', u'safeti'] [u'iraqi', u'fallujah', u'raid'] [u'item', u'uncov', u'search', u'murder', u'victim'] [u'job', u'focus', u'naidoc', u'week'] [u'kerri', u'pick', u'rival', u'run', u'mate'] [u'klim', u'hit', u'olymp', u'trial', u'schedul'] [u'knight', u'review', u'hagan', u'origin'] [u'korea', u'escap', u'fine', u'secur', u'breach'] [u'labor', u'pledg', u'public', u'hous'] [u'landhold', u'tell', u'water', u'entitl', u'rule'] [u'latham', u'challeng', u'howard', u'dirt', u'unit'] [u'latham', u'drop', u'time', u'poll'] [u'latham', u'isol', u'iraq', u'withdraw'] [u'latham', u'complain'] [u'legal', u'servic', u'fight', u'feder', u'fund'] [u'lisa', u'simpson', u'ralli', u'cornish', u'liber'] [u'liverpool', u'plain', u'council', u'await', u'mayor'] [u'local', u'teacher', u'nomin', u'nation', u'award'] [u'lomu', u'deni', u'readi', u'transplant'] [u'court', u'charg'] [u'maroon', u'rock', u'late', u'injuri', u'scare'] [u'mcewen', u'win', u'stage', u'hushovd', u'yellow'] [u'mcgee', u'surviv', u'fight'] [u'mickelberg', u'policeman', u'slur'] [u'mine', u'council', u'welcom', u'industri', u'review'] [u'minist', u'dismiss', u'prison', u'offic', u'concern'] [u'minist', u'ask', u'resolv', u'multi', u'purpos'] [u'minist', u'urg', u'heed', u'plan', u'recommend'] [u'miss', u'boy', u'spark', u'polic', u'search'] [u'afghan', u'refuge', u'arriv', u'australia'] [u'scan', u'wallabi', u'pair'] [u'place', u'wide'] [u'motorcyclist', u'hospit', u'highway', u'crash'] [u'air', u'malle', u'dump', u'plan', u'fear'] [u'worri', u'schooli', u'plan', u'late'] [u'musharraf', u'warn', u'iron', u'curtain'] [u'music', u'download', u'geek', u'speak'] [u'wastewat', u'facil', u'open'] [u'drill', u'program', u'begin', u'cooper', u'basin'] [u'cricket', u'florida', u'american', u'tell'] [u'norwegian', u'troop', u'exit', u'iraq'] [u'inquiri', u'hear', u'live', u'rent', u'free'] [u'nurs', u'help', u'shape', u'polici', u'research'] [u'nylex', u'futur', u'locat', u'unclear'] [u'oversea', u'doctor', u'need', u'english', u'skill', u'council'] [u'pacif', u'hydro', u'request', u'trade', u'halt'] [u'paramed', u'work', u'ban', u'wont', u'slow', u'respons'] [u'pari', u'roof', u'collaps', u'inquiri', u'releas', u'earli', u'find'] [u'pitcairn', u'recruit', u'guard', u'prison', u'build'] [u'maintain', u'surplus', u'sustain'] [u'promis', u'tape', u'bind', u'small', u'busi'] [u'reveal', u'plan', u'tape'] [u'polic', u'confid', u'find', u'murder', u'victim'] [u'polic', u'consid', u'hickey', u'high', u'risk', u'inquest', u'hear'] [u'polic', u'continu', u'probe', u'fatal', u'highway', u'pile'] [u'polic', u'hunt', u'stab', u'suspect'] [u'polic', u'identifi', u'alleg', u'steal', u'cattl'] [u'polic', u'investig', u'burn', u'car'] [u'pressur', u'mount', u'wider', u'smoke'] [u'protest', u'pull', u'court', u'action'] [u'publican', u'clear', u'sexual', u'assault'] [u'public', u'urg', u'distanc', u'whale'] [u'push', u'foreign', u'train', u'doctor', u'local'] [u'push', u'fish', u'licenc', u'out'] [u'qanta', u'crew', u'meet', u'london', u'reloc'] [u'queen', u'prais', u'diana', u'memori', u'open'] [u'queensland', u'citrus', u'face', u'australia', u'wide'] [u'rate', u'hike', u'adelaid', u'budget'] [u'rate', u'rise', u'horsham', u'resid'] [u'redback', u'captainci'] [u'tiger', u'controversi'] [u'refshaug', u'see', u'distract'] [u'refuge', u'worker', u'halt', u'labour', u'crisi'] [u'region', u'develop', u'board', u'chief', u'upbeat'] [u'region', u'plan', u'shire'] [u'report', u'highlight', u'region', u'broadband', u'demand'] [u'resid', u'plan', u'offend', u'centr'] [u'resourc', u'bank', u'lift', u'ord', u'record', u'high'] [u'rooney', u'reveal', u'near', u'quit'] [u'royal', u'seal', u'approv', u'mcewen'] [u'russian', u'plan', u'nuclear', u'wast', u'dump', u'criticis'] [u'russian', u'youth', u'campaign', u'corrupt', u'foreign', u'news'] [u'saint', u'hard', u'tribun'] [u'sar', u'whistleblow', u'hold', u'tianamen', u'letter'] [u'maintain', u'lead', u'indon', u'count', u'continu'] [u'schulz', u'round', u'rise', u'star'] [u'second', u'staffer', u'give', u'icac', u'evid'] [u'sharapova', u'vault', u'women'] [u'sharon', u'tighten', u'secur', u'amid', u'assassin', u'fear'] [u'return', u'home'] [u'snow', u'isol', u'tasmanian', u'west', u'coast'] [u'solar', u'power', u'plan', u'need', u'shire', u'fund', u'inject'] [u'south', u'east', u'host', u'anim', u'diseas', u'exercis'] [u'stang', u'quit', u'iraq', u'coach'] [u'station', u'owner', u'fin', u'tree', u'clear'] [u'sign', u'miss', u'diver'] [u'stock', u'boost', u'saleyard'] [u'stopwatch', u'fail', u'centenarian', u'smash', u'record'] [u'strathbogi', u'resid', u'face', u'rate', u'rise'] [u'student', u'easier', u'access'] [u'studi', u'highlight', u'knowledg', u'lack'] [u'takov', u'uncertainti', u'put', u'pressur', u'wooli'] [u'tax', u'blame', u'real', u'estat', u'invest', u'slump'] [u'teacher', u'legal', u'action', u'religion'] [u'teen', u'robberi', u'prompt', u'safeti', u'warn'] [u'thorp', u'concern', u'hackett', u'defeat'] [u'thorp', u'concern', u'hackett'] [u'marin', u'kill', u'central', u'iraq'] [u'thumb', u'plan', u'develop', u'staff'] [u'tiger', u'kellaway', u'roger', u'quit', u'footi'] [u'topless', u'protest', u'tackl', u'pamplona', u'bull'] [u'tornado', u'threaten', u'town'] [u'tredrea', u'stay', u'loyal', u'port'] [u'get', u'place', u'campus', u'takeov'] [u'union', u'threaten', u'action', u'power', u'disput'] [u'union', u'unsur', u'newcastl', u'join', u'driver'] [u'pleas', u'extra', u'place'] [u'recognis', u'extra', u'student', u'place'] [u'holiday', u'dampen', u'global', u'trade'] [u'launch', u'dead', u'strike', u'fallujah'] [u'reprimand', u'over', u'thai', u'queen'] [u'releas', u'ghraib', u'prison'] [u'vanuatu', u'vote', u'snap', u'elect'] [u'video', u'show', u'foreign', u'iraq', u'attack'] [u'mental', u'health', u'breach', u'human', u'right', u'forum'] [u'warn', u'optimist', u'snare', u'record'] [u'weed', u'claim', u'young', u'cattl'] [u'wilko', u'close', u'injuri', u'comeback'] [u'woman', u'jail', u'bank', u'theft'] [u'woman', u'drug', u'man', u'sandwich'] [u'woman', u'secur', u'door', u'babi', u'seat'] [u'yuko', u'face', u'bankcruptci', u'threat'] [u'zagoraki', u'name', u'player', u'euro'] [u'contract', u'boost', u'kimberley', u'access'] [u'kill', u'taiwanes', u'flood'] [u'abbott', u'unfaz', u'uni', u'doctor', u'studi'] [u'compani', u'deni', u'monopoli', u'intent'] [u'advocaat', u'quit', u'dutch', u'coach'] [u'defend', u'fletcher', u'suspens'] [u'black', u'star', u'mccaw', u'leav', u'team', u'amidst'] [u'candid', u'want', u'govt', u'servic', u'boost'] [u'anti', u'dope', u'bodi', u'condemn', u'cycl', u'probe'] [u'post', u'scoop', u'pick', u'wrong'] [u'armstrong', u'target', u'robbi', u'yellow'] [u'say', u'wada', u'target', u'critic', u'drug'] [u'break', u'grind'] [u'athlet', u'squad', u'lack', u'experi', u'sydney', u'team'] [u'aussi', u'pace', u'attack', u'wari', u'cairn', u'repeat'] [u'australian', u'tap', u'militari', u'head', u'iraq'] [u'austrian', u'presid', u'die', u'age'] [u'weather', u'continu', u'tasmania'] [u'barnett', u'consid', u'port', u'hedland', u'rescu', u'deal'] [u'beatti', u'await', u'navi', u'ship', u'scuttl'] [u'blaze', u'claim', u'crediton', u'hous'] [u'blue', u'half', u'time', u'origin', u'decid'] [u'brando', u'cremat', u'privat', u'ceremoni'] [u'british', u'threat'] [u'busi', u'taxi', u'rank', u'marshal', u'plan'] [u'candid', u'seek', u'north', u'west', u'power', u'discount'] [u'bomb', u'kill', u'iraqi', u'funer'] [u'examin', u'montgomeri', u'case'] [u'central', u'fuel', u'price', u'expect', u'drop'] [u'chamberlain', u'unconvinc', u'claim'] [u'chamber', u'commerc', u'get', u'chief'] [u'chamber', u'welcom', u'super', u'chang'] [u'charg', u'possibl', u'azaria', u'revel'] [u'chief', u'minist', u'drop', u'legal', u'threat', u'bushfir'] [u'chines', u'ceremoni', u'unveil', u'inglewood', u'wool'] [u'club', u'ask', u'help', u'curb', u'drink', u'drive'] [u'constabl', u'quiz', u'hickey', u'inquiri'] [u'costigan', u'like', u'miss', u'dragon', u'clash'] [u'council', u'chang', u'pool', u'plan'] [u'council', u'reject', u'blame', u'retir', u'villag', u'delay'] [u'council', u'clean', u'sand', u'dun'] [u'court', u'throw', u'microsoft', u'keyboard', u'patent'] [u'creditor', u'overlook', u'lewington', u'debt', u'favour'] [u'daylesford', u'blaze', u'claim', u'bakeri'] [u'deadlin', u'loom', u'miner', u'sand', u'appeal'] [u'dead', u'bird', u'resurfac', u'asia'] [u'deco', u'complet', u'barca'] [u'demograph', u'win', u'prize'] [u'desailli', u'quit', u'chelsea'] [u'diseas', u'citrus', u'crop', u'destroy'] [u'distil', u'firm', u'fear', u'rise', u'impact'] [u'doubt', u'cast', u'plan', u'junk', u'food'] [u'down', u'endur', u'winter'] [u'drought', u'take', u'toll', u'local', u'busi'] [u'guerrouj', u'win', u'way'] [u'eurobodalla', u'face', u'water', u'woe'] [u'everton', u'offer', u'rooney', u'year', u'deal'] [u'explos', u'near', u'iraqi', u'resid', u'wind'] [u'farm', u'group', u'fear', u'research', u'station', u'closur'] [u'feder', u'environ', u'fund', u'fraser'] [u'feder', u'polic', u'chief', u'call', u'polic', u'databas'] [u'ferdinand', u'face', u'return', u'liverpool'] [u'fin', u'tiger', u'magpi'] [u'fisheri', u'shed', u'light', u'lobster', u'oper'] [u'dead', u'colombo', u'suicid', u'blast'] [u'flight', u'delay', u'sydney', u'secur', u'scare'] [u'flower', u'quit', u'redback'] [u'forc', u'retir', u'label', u'ageist'] [u'marin', u'kill', u'iraqi', u'oper'] [u'fresh', u'bird', u'outbreak', u'china'] [u'fund', u'boost', u'home', u'communiti', u'care', u'servic'] [u'gene', u'race', u'silverston'] [u'govt', u'launch', u'apprenticeship', u'scheme'] [u'govt', u'meatwork', u'closur'] [u'govt', u'urg', u'council', u'ward', u'chang'] [u'greec', u'climb', u'world', u'rank', u'euro', u'victori'] [u'hail', u'blue'] [u'handicap', u'children', u'centr', u'investig'] [u'health', u'servic', u'offer', u'job', u'help'] [u'hick', u'movi', u'premier', u'adelaid'] [u'higher', u'dampen', u'market'] [u'hill', u'claim', u'star', u'war', u'success'] [u'hodg', u'appoint', u'leicestershir', u'captain'] [u'hoggard', u'clear', u'west', u'indi', u'test'] [u'home', u'buyer', u'warn', u'rat'] [u'hope', u'lib', u'field', u'cunningham', u'candid'] [u'hope', u'rain', u'boost', u'water', u'storag'] [u'hospit', u'plan', u'orthopaed', u'surgeon'] [u'howard', u'reconsid', u'nuclear', u'dump'] [u'howard', u'urg', u'admit', u'wmds', u'iraq'] [u'hear', u'shoot', u'chamberlain'] [u'india', u'send', u'troop', u'iraq', u'foreign', u'minist'] [u'indonesian', u'fish', u'boat', u'nab', u'melvill'] [u'infrastructur', u'plan', u'region', u'focus'] [u'injuri', u'forc', u'rowett'] [u'inquiri', u'hear', u'landladi', u'worri'] [u'institut', u'launch', u'indigen', u'program'] [u'iraq', u'adopt', u'secur', u'law'] [u'hear', u'council', u'staff', u'woe'] [u'irrig', u'miss', u'alloc'] [u'israel', u'involv', u'iraq', u'interrog'] [u'jetstar', u'announc', u'launceston', u'servic', u'chang'] [u'jetstar', u'delay', u'plan'] [u'judg', u'question', u'plea', u'abil', u'accus', u'thief'] [u'kleberson', u'brazil'] [u'kookaburra', u'turn', u'heat', u'olymp', u'prepar'] [u'kookaburra', u'turn', u'heat', u'olymp'] [u'laidley', u'play', u'premiership', u'aspir'] [u'latham', u'promis', u'mandat', u'ethanol'] [u'launceston', u'radiat', u'therapist', u'accept', u'offer'] [u'lazio', u'releas', u'coach', u'mancini', u'inter'] [u'liquid', u'appoint', u'invest', u'scheme'] [u'local', u'govt', u'group', u'highlight', u'council', u'budget'] [u'long', u'wait', u'portland', u'overpass'] [u'maher', u'clear', u'seri'] [u'give', u'year', u'taxi', u'driver', u'murder'] [u'hospitalis', u'airport', u'scare'] [u'maroon', u'reject', u'talli', u'rumour'] [u'mask', u'iraqi', u'group', u'tell', u'zarqawi', u'leav'] [u'mcewen', u'take', u'tour', u'franc', u'lead'] [u'mickelberg', u'urg', u'polic', u'reinvestig', u'gold', u'theft'] [u'minist', u'open', u'shop'] [u'reform', u'need', u'ensur', u'growth'] [u'place', u'geraldton'] [u'mourinho', u'interest', u'benfica', u'tiago'] [u'cast', u'doubt', u'water', u'figur'] [u'highlight', u'timber', u'harvest', u'benefit'] [u'mudge', u'wineri', u'look', u'thai', u'export'] [u'beat', u'year', u'arrest', u'warrant'] [u'murray', u'goulburn', u'worker', u'work'] [u'murray', u'project', u'lead', u'region', u'drain', u'report'] [u'music', u'festiv', u'pull', u'plug', u'live', u'film'] [u'nappi', u'pram', u'rock', u'roll'] [u'nativ', u'titl', u'claim', u'appeal', u'reject'] [u'inquiri', u'wast', u'time', u'territori'] [u'chief', u'econom', u'develop', u'board'] [u'group', u'tackl', u'domest', u'violenc'] [u'insomnia', u'treatment', u'retrain', u'mind'] [u'chief', u'buy', u'cotton', u'properti'] [u'presid', u'set', u'record', u'properti', u'price'] [u'bone', u'dinosaur', u'prove', u'success'] [u'motiv', u'arson', u'attack', u'car'] [u'norton', u'name', u'cooma', u'monaro', u'mayor'] [u'govt', u'defend', u'child', u'offenc', u'investig'] [u'opposit', u'stunt', u'backfir', u'egan'] [u'cyclist', u'olymp', u'dream', u'doubt'] [u'kill', u'near', u'olymp', u'villag'] [u'opal', u'bounc', u'china'] [u'oppn', u'attack', u'highway', u'trucker', u'bulli'] [u'origin', u'crunch', u'time', u'sydney'] [u'palacio', u'save', u'peru', u'start', u'ref'] [u'perth', u'hospit', u'emerg', u'depart', u'capac'] [u'petit', u'seek', u'kempsey', u'hospit', u'fund'] [u'petrol', u'hike'] [u'phelp', u'unfaz', u'doubter'] [u'philippin', u'extend', u'iraq', u'tour', u'duti'] [u'abbott', u'deni', u'smear', u'campaign', u'claim'] [u'seiz', u'labor', u'candid', u'blunder'] [u'polic', u'badg', u'seiz', u'store'] [u'polic', u'properti', u'organis', u'crime', u'raid'] [u'polic', u'investig', u'orang', u'shoot'] [u'polic', u'prais', u'grisli', u'work'] [u'protest', u'attempt', u'block', u'adelaid'] [u'want', u'jail', u'open', u'door', u'close'] [u'push', u'save', u'histor', u'hall'] [u'cattl', u'price', u'tip', u'rise'] [u'govt', u'agre', u'transfer', u'prison', u'escape', u'perth'] [u'govt', u'claim', u'drop', u'violenc', u'alcohol'] [u'nat', u'question', u'biosecur', u'standard'] [u'quarantin', u'breach', u'possibl', u'sourc', u'citrus', u'diseas'] [u'queensland', u'reject', u'talli', u'rumour'] [u'rain', u'fall', u'ahead', u'origin', u'decid'] [u'ralf', u'hint', u'toyota'] [u'ranger', u'novo', u'newcom'] [u'redfern', u'inquest', u'tell', u'polic', u'discuss', u'teenag'] [u'report', u'highlight', u'need', u'council', u'spend'] [u'republican', u'dismiss', u'kerri', u'run', u'mate'] [u'rogg', u'tell', u'author', u'time'] [u'rural', u'train', u'boost'] [u'saddam', u'nephew', u'arrest', u'iraqi', u'minist'] [u'saint', u'anger', u'claim'] [u'satellit', u'track', u'follow', u'eleph', u'seal'] [u'scientist', u'coastal', u'temperatur'] [u'search', u'bodi', u'continu', u'tomorrow'] [u'search', u'miss', u'diver', u'suspend'] [u'search', u'gunnedah', u'coal', u'basin'] [u'sewag', u'spill', u'threat', u'mayor'] [u'shark', u'speci', u'futur', u'divid', u'communiti'] [u'shepparton', u'resid', u'face', u'rat', u'rise'] [u'shire', u'continu', u'push', u'seal', u'roadwork'] [u'shire', u'debat', u'idea', u'broom', u'plan'] [u'charg', u'cole', u'bomb'] [u'soccer', u'lion', u'want', u'lang', u'park', u'home'] [u'devonport', u'home', u'owner', u'rat', u'slug'] [u'southport', u'coach', u'wari', u'broadbeach', u'talent'] [u'protein', u'substitut', u'hormon', u'studi'] [u'studi', u'consid', u'industri', u'estat'] [u'sudan', u'decre', u'relief', u'restrict'] [u'summit', u'improv', u'safeti', u'canberra'] [u'sydney', u'charg', u'child', u'offenc'] [u'talli', u'ignor', u'origin', u'specul'] [u'teacher', u'consid', u'high', u'court', u'action'] [u'telstra', u'acknowledg', u'room', u'improv'] [u'tenant', u'servic', u'lament', u'hostel', u'closur'] [u'wound', u'explod', u'gaza', u'citi'] [u'tiger', u'magpi', u'receiv', u'fin'] [u'toowoomba', u'gladston', u'rail', u'link', u'track'] [u'tortur', u'claim', u'prompt', u'legal', u'action'] [u'toyota', u'sign', u'year', u'deal', u'ralf', u'schumach'] [u'tram', u'return', u'hobart'] [u'plan', u'law', u'religi', u'hatr'] [u'ullrich', u'humbl', u'unbow', u'armstrong'] [u'discov', u'anti', u'alga', u'compound', u'marin', u'paint'] [u'union', u'move', u'closer', u'auspin', u'tarpeena', u'resolut'] [u'unit', u'complet', u'rossi', u'deal'] [u'offici', u'say', u'organis', u'need', u'reform'] [u'urg', u'action', u'gorilla', u'habitat', u'destroy'] [u'cathol', u'dioces', u'file', u'bankruptci'] [u'pilot', u'fin', u'mistaken', u'bomb', u'canadian'] [u'secret', u'remov', u'iraqi', u'nuclear', u'materi'] [u'vanzella', u'tumut', u'shire', u'mayor'] [u'venezuela', u'invit', u'referendum', u'observ'] [u'polic', u'reopen', u'botch', u'abus', u'case'] [u'refus', u'accept', u'notori', u'prison'] [u'water', u'flow', u'hamper', u'algal', u'bloom', u'effort'] [u'water', u'hardship', u'flow', u'produc', u'communiti'] [u'stop', u'import', u'citrus', u'fruit'] [u'whale', u'strand', u'predict', u'scientist'] [u'widow', u'demand', u'appeal', u'husband', u'killer'] [u'wife', u'accus', u'murder', u'face', u'trial'] [u'windsor', u'back', u'year', u'parliamentari', u'term'] [u'woman', u'die', u'truck', u'mishap'] [u'work', u'begin', u'australia', u'largest', u'wind', u'farm'] [u'youngest', u'dougla', u'dead'] [u'yudhoyono', u'confid', u'ahead', u'second', u'round'] [u'zarqawi', u'brother', u'arrest', u'jordan', u'famili'] [u'abbott', u'promot', u'saturday', u'medicar', u'open'] [u'commit', u'rebuild', u'deek', u'forest'] [u'airport', u'boss', u'label', u'passeng', u'screen'] [u'sharehold', u'urg', u'reject', u'woolworth'] [u'ord', u'continu', u'upward', u'momentum'] [u'alstom', u'transport', u'sale'] [u'analyst', u'reject', u'newcrest', u'takeov', u'rumour'] [u'armstrong', u'yellow', u'jersey', u'collect', u'grow'] [u'aussi', u'troubl', u'tour'] [u'aussi', u'weightlift', u'refus', u'drug', u'test'] [u'australian', u'cinema', u'controversi', u'film'] [u'australia', u'jobless', u'rate', u'rise'] [u'award', u'win', u'scientist', u'say', u'barrier', u'reef'] [u'bash', u'nurs', u'look', u'forward', u'work'] [u'beach', u'close', u'deep', u'outfal', u'work'] [u'beatti', u'fine', u'shoalwat', u'upgrad'] [u'bendigo', u'shop', u'state', u'biggest'] [u'sport', u'complex', u'plan', u'near', u'maitland'] [u'bovey', u'reopen'] [u'buckley', u'readi', u'captainci'] [u'burrengong', u'meat', u'weather', u'market', u'woe'] [u'bush', u'sign', u'renew', u'sanction', u'burma'] [u'strike', u'cancel'] [u'home', u'brew', u'kit'] [u'busi', u'enterpris', u'centr', u'talk'] [u'rethink', u'women', u'health', u'clinic', u'closur'] [u'royal', u'commiss', u'paedophil', u'claim'] [u'canadian', u'star', u'radzinski', u'reject', u'everton', u'deal'] [u'carer', u'lack', u'requir', u'support', u'research'] [u'carr', u'stay', u'tent', u'embassi', u'disput'] [u'chamber', u'attack', u'council', u'eplga', u'pull'] [u'chemic', u'havent', u'affect', u'groundwat'] [u'child', u'convict', u'quash', u'retrial', u'order'] [u'china', u'back', u'search'] [u'chines', u'landmark', u'lose', u'lustr', u'energi'] [u'chistiakov', u'appeal', u'select', u'athen'] [u'citrus', u'market', u'face', u'tougher', u'intern', u'check'] [u'cocain', u'seiz', u'aboard', u'togoles', u'vessel', u'ghana'] [u'coleman', u'commit', u'futur', u'fulham'] [u'communiti', u'unhappi', u'rail', u'branch', u'line', u'closur'] [u'concern', u'air', u'citrus', u'diseas', u'impact'] [u'council', u'consid', u'secur', u'camera'] [u'council', u'merger', u'save', u'dollar'] [u'coupl', u'refus', u'fine', u'festiv', u'live'] [u'court', u'award', u'parapleg', u'timber', u'worker', u'damag'] [u'court', u'hear', u'accus', u'tobin', u'killer', u'grudg', u'list'] [u'dairi', u'farmer', u'milk', u'price', u'rise'] [u'defenc', u'facil', u'upgrad'] [u'democrat', u'face', u'ballot', u'remov'] [u'democrat', u'want', u'atsic', u'region', u'council', u'retain'] [u'dog', u'life', u'jerri'] [u'ask', u'appeal', u'taxi', u'driver', u'killer', u'sentenc'] [u'drought', u'take', u'toll', u'irrig'] [u'edward', u'inexperienc', u'vice', u'presid', u'bush'] [u'dead', u'gaza', u'clash'] [u'mind', u'scottish', u'open', u'defenc'] [u'endeavour', u'worker', u'impos', u'work', u'ban'] [u'enron', u'chief', u'indict', u'surrend'] [u'environ', u'dept', u'probe', u'perilya', u'blast'] [u'extra', u'surveil', u'announc', u'coast'] [u'fairytal', u'freddi'] [u'farmer', u'wont', u'appeal', u'miner', u'sand', u'decis'] [u'fear', u'hold', u'miss'] [u'fear', u'hold', u'sport', u'oval', u'futur'] [u'feder', u'govern', u'queri', u'wada', u'critic'] [u'feder', u'polic', u'help', u'solv', u'rape', u'case'] [u'figur', u'poor', u'bulk', u'bill', u'access'] [u'firefight', u'death', u'accid', u'coron', u'rule'] [u'fisher', u'automat', u'longlin', u'option'] [u'footbal', u'academi', u'get', u'fund', u'help', u'hand'] [u'foreign', u'invest', u'secur', u'gold', u'mine'] [u'baath', u'offici', u'kill', u'bomb'] [u'friend', u'ralli', u'accus', u'senat'] [u'gardin', u'flag', u'hop'] [u'gasnier', u'miss', u'week'] [u'german', u'unearth', u'dinosaur', u'graveyard'] [u'global', u'piraci', u'impact', u'world', u'economi', u'report'] [u'govt', u'accus', u'cycl', u'drug', u'cover'] [u'govt', u'accus', u'drug', u'cover'] [u'govt', u'older', u'worker'] [u'govt', u'give', u'york', u'peninsula', u'wind', u'farm'] [u'govt', u'urg', u'build', u'raceway', u'near', u'airport'] [u'grazier', u'warn', u'grass', u'diseas'] [u'grazier', u'warn', u'check', u'veget', u'map'] [u'group', u'call', u'highway', u'safeti'] [u'habib', u'face', u'militari', u'trial'] [u'hamburg', u'factori', u'order', u'north', u'korea'] [u'helm', u'target', u'doubl', u'gold', u'athen'] [u'hickey', u'inquest', u'adjourn'] [u'high', u'hop', u'murray', u'market', u'plan'] [u'hill', u'cast', u'doubt', u'live', u'murray', u'report'] [u'hockeyroo', u'humbl', u'test'] [u'hospit', u'play', u'impact', u'paramed'] [u'howard', u'outlin', u'vision', u'secur', u'futur'] [u'india', u'pledg', u'billion', u'poverti'] [u'indi', u'music', u'eye', u'onlin', u'triumph'] [u'iraq', u'mortar', u'strike', u'see', u'kill'] [u'isra', u'launch', u'giga', u'free', u'mail'] [u'katherin', u'mayor', u'concer', u'train', u'base'] [u'keat', u'hit', u'dumb', u'comment'] [u'kill', u'man', u'famili', u'shock', u'acquitt'] [u'kookaburra', u'humbl', u'test'] [u'ladi', u'appal', u'state', u'funer', u'comment'] [u'lamb', u'price', u'reach', u'record'] [u'lawyer', u'ensur', u'habib', u'militari', u'tribun'] [u'lead', u'trio', u'broadway', u'monti', u'python'] [u'lion', u'prepar', u'mileston', u'match'] [u'littl', u'doctor'] [u'london', u'talk', u'host', u'grand', u'prix'] [u'lower', u'fuel', u'price', u'wont', u'long', u'racv'] [u'major', u'mine', u'status', u'orang'] [u'mallon', u'hop', u'canadian', u'crown', u'open', u'titl'] [u'fin', u'tree', u'fell', u'accid'] [u'jail', u'ecstasi', u'bust'] [u'jail', u'wilcannia', u'assault'] [u'mayor', u'unhappi', u'level', u'cross', u'safeti', u'delay'] [u'welcom', u'rat'] [u'mcewen', u'drop', u'place', u'armstrong', u'take', u'tour', u'lead'] [u'mental', u'children', u'hold', u'detent', u'centr'] [u'michael', u'moor', u'brand', u'howard', u'disgrac'] [u'milit', u'threaten', u'behead', u'filipino', u'hostag'] [u'miner', u'develop', u'nickel', u'project'] [u'missil', u'shield', u'destabilis', u'region', u'latham', u'say'] [u'miss', u'famili', u'near', u'gippsland'] [u'montero', u'salvag', u'draw', u'uruguay', u'return'] [u'fund', u'seek', u'women', u'health', u'network'] [u'reject', u'doctor', u'train', u'claim'] [u'mudge', u'pair', u'export', u'digit', u'model', u'idea'] [u'murder', u'trial', u'tell'] [u'musician', u'promis', u'digit'] [u'boat', u'safeti', u'chart', u'month'] [u'famili', u'court', u'chief', u'justic', u'plan', u'shake'] [u'hous', u'armi', u'base'] [u'korea', u'deploy', u'intermedi', u'rang', u'missil'] [u'action', u'take', u'gould'] [u'charg', u'lay', u'airport', u'secur', u'scare'] [u'novak', u'reach', u'swiss', u'open', u'quarter'] [u'olymp', u'champ', u'drechsler', u'withdraw', u'game'] [u'opal', u'overpow', u'czech', u'republ'] [u'pacif', u'wont', u'tone', u'physic', u'approach'] [u'pair', u'charg', u'servic', u'station', u'theft'] [u'penni', u'clear', u'thoma', u'fin'] [u'phelp', u'smooth', u'start'] [u'phelp', u'set', u'world', u'mark'] [u'philippin', u'bar', u'worker', u'go', u'iraq'] [u'pike', u'open', u'youth', u'drug', u'withdraw', u'centr'] [u'plan', u'afoot', u'retain', u'lake', u'mokoan'] [u'hint', u'late', u'elect'] [u'outlin', u'plan', u'fourth', u'term'] [u'polic', u'open', u'kenyan', u'anti', u'govt', u'protest'] [u'polic', u'shoot', u'high', u'speed', u'chase'] [u'polic', u'speak', u'pedestrian', u'accid'] [u'pont', u'keen', u'test', u'lankan', u'batsmen'] [u'port', u'author', u'rule'] [u'portland', u'coast', u'water', u'probe', u'thermal', u'energi'] [u'probe', u'begin', u'food', u'factori', u'blast'] [u'public', u'ask', u'smith', u'famili', u'winter', u'appeal'] [u'public', u'second', u'surf', u'club'] [u'push', u'rural', u'medic', u'train', u'boost'] [u'scientist', u'win', u'nation', u'scienc', u'award'] [u'rehhagel', u'stay', u'greek', u'coach'] [u'religi', u'figur', u'criticis', u'atsic', u'scrap'] [u'report', u'support', u'cement', u'plant', u'wast', u'burn'] [u'resort', u'giant', u'pay', u'tribut'] [u'rockhampton', u'rat', u'rise', u'keep', u'minimum'] [u'sign', u'red'] [u'rosali', u'council', u'deliv', u'rate', u'rise'] [u'emerg', u'depart', u'intensifi'] [u'runner', u'dodg', u'gore', u'pamplona', u'bull'] [u'sack', u'meatwork', u'meet', u'entitl'] [u'safeti', u'boost', u'plan', u'turf', u'club', u'road'] [u'hearten', u'nuke', u'dump', u'reconsider'] [u'saint', u'tribun', u'review'] [u'sar', u'claim', u'hong', u'kong', u'health', u'offici'] [u'saviola', u'trick', u'spark', u'argentina', u'rout', u'ecuador'] [u'seagul', u'readi', u'tough', u'dolphin', u'clash'] [u'search', u'continu', u'miss', u'famili'] [u'season', u'sing'] [u'senat', u'select', u'threaten', u'blow'] [u'sharon', u'favour', u'nuke', u'free', u'middl', u'east'] [u'shire', u'look', u'forward', u'search', u'benefit'] [u'shoalhaven', u'hospit', u'revamp', u'cater', u'futur', u'growth'] [u'shoalwat', u'benefit', u'militari', u'deal'] [u'sign', u'signal', u'traffic', u'hazard'] [u'sing', u'season'] [u'size', u'matter', u'ugli', u'yamba'] [u'solomon', u'member', u'ignor', u'protest', u'train'] [u'south', u'east', u'jobless', u'rate', u'continu', u'fall'] [u'lankan', u'unconcern', u'lose', u'record'] [u'stewart', u'rap', u'eccleston', u'silverston', u'threat'] [u'stone', u'welcom', u'live', u'murray', u'studi'] [u'sudan', u'pressur', u'atroc'] [u'swedish', u'court', u'overturn', u'jail', u'term', u'lindh', u'killer'] [u'sydney', u'celebr', u'year', u'power'] [u'sydney', u'lawyer', u'join', u'saddam', u'defenc', u'team'] [u'syphili', u'resist', u'oral', u'antibiot'] [u'tamil', u'tiger', u'deni', u'blast', u'involv'] [u'tamworth', u'furious', u'newcastl', u'street', u'light', u'claim'] [u'consider', u'renew', u'energi'] [u'debt', u'result', u'polic', u'raid', u'russian'] [u'taxi', u'industri', u'want', u'murder', u'sentenc', u'review'] [u'teenag', u'face', u'long', u'battl', u'tram', u'accid'] [u'terror', u'confer', u'hear', u'need', u'reform'] [u'tomb', u'concern'] [u'train', u'boost', u'help', u'geraldton', u'doctor'] [u'troop', u'concern', u'unwarr', u'govt'] [u'turkish', u'ship', u'jumper', u'face', u'deport'] [u'move', u'closer', u'brisban', u'plan'] [u'unlucki', u'punter', u'help', u'navel', u'cadet'] [u'claim', u'labor', u'divid', u'iraqi', u'troop'] [u'forc', u'stretch', u'break', u'point'] [u'investor', u'cautious', u'despit', u'market', u'recoveri'] [u'mull', u'rule', u'guantanamo', u'detaine'] [u'stand', u'aust', u'polit', u'say'] [u'train', u'base', u'plan', u'rais', u'environment'] [u'vaa', u'say', u'bat', u'lankan', u'victori'] [u'vahali', u'snap', u'drought', u'newport', u'grass'] [u'vail', u'question', u'decis'] [u'vermeer', u'paint', u'sell'] [u'governor', u'undergo', u'heart', u'surgeri'] [u'govt', u'consid', u'review', u'hospit', u'death'] [u'virgin', u'boost', u'sunshin', u'coast', u'melbourn', u'servic'] [u'virgin', u'doubl', u'sunshin', u'coast', u'melbourn', u'servic'] [u'wale', u'host', u'australia', u'world'] [u'water', u'weed', u'prove', u'good', u'cane', u'crop'] [u'weiskopf', u'slam', u'american', u'show'] [u'welfar', u'support', u'swan', u'hill', u'campus'] [u'wellshot', u'hotel', u'open', u'door'] [u'wesfarm', u'sell', u'jarrah', u'asset'] [u'william', u'lose', u'lake', u'cowal', u'nativ', u'titl', u'appeal'] [u'wood', u'pressur', u'royal', u'troon', u'challeng'] [u'world', u'church', u'leader', u'visit', u'baxter', u'aborigin'] [u'yahoo', u'doubl', u'profit'] [u'yudhoyono', u'ahead', u'elect', u'count'] [u'yulara', u'get', u'life', u'amidst', u'azaria', u'furor'] [u'zimbabw', u'rebel', u'launch', u'team'] [u'year', u'spar', u'jail', u'kill', u'wife'] [u'abbott', u'announc', u'cheaper', u'servic'] [u'stalwart', u'leav'] [u'acdc', u'street', u'propos', u'get', u'council', u'support'] [u'administr', u'appoint', u'wagga', u'land', u'council'] [u'afghan', u'honour', u'alic', u'annual', u'camel'] [u'allatson', u'quit', u'athlet', u'australia'] [u'qaeda', u'plan', u'major', u'attack', u'ridg'] [u'ambros', u'win', u'point', u'appeal'] [u'armstrong', u'miss', u'athen', u'game'] [u'dip', u'record'] [u'australia', u'withdraw', u'basketbal', u'championship'] [u'aust', u'warn', u'extrem', u'weather'] [u'barrichello', u'set', u'pace', u'ferrari'] [u'penalti', u'york', u'park', u'streaker'] [u'blatter', u'renew', u'qualif', u'pledg'] [u'blue', u'board', u'examin', u'outburst'] [u'boomer', u'blitz', u'tall', u'black'] [u'brack', u'air', u'anger', u'napthin', u'alcoa', u'announc'] [u'brazil', u'edg', u'chile', u'minut', u'strike'] [u'brazil', u'initi', u'child', u'prostitut', u'investig'] [u'bronco', u'bounc'] [u'brown', u'warn', u'gunn'] [u'build', u'site', u'accid', u'worri', u'safeti', u'watchdog'] [u'businessman', u'slam', u'farcic', u'insid', u'trade', u'charg'] [u'canberra', u'high', u'resourc', u'caus'] [u'cat', u'pie'] [u'cezann', u'paint', u'bind', u'london'] [u'chalmer'] [u'chines', u'edg', u'opal'] [u'citrus', u'grower', u'urg', u'precaut'] [u'citrus', u'inspect', u'criticis'] [u'clinic', u'urg', u'canadian', u'sperm', u'travel'] [u'coalit', u'reject', u'dirt', u'file', u'claim'] [u'colli', u'resid', u'river', u'fenc'] [u'comment', u'seek', u'draft', u'bass', u'coast', u'council', u'budget'] [u'committe', u'overse', u'visitor', u'centr'] [u'cooper', u'call', u'address', u'homeless'] [u'negoti', u'milk', u'price', u'boost'] [u'coroni', u'inquest', u'discuss', u'patient', u'confidenti'] [u'cost', u'burden', u'creat', u'rfds', u'concern'] [u'council', u'budget', u'includ', u'rate', u'rise'] [u'council', u'decid', u'buy', u'maleni', u'site'] [u'councillor', u'brief', u'union', u'talk'] [u'court', u'hear', u'evid', u'tobin', u'kill'] [u'dajka', u'olymp', u'dope', u'cloud'] [u'worker', u'demand', u'free', u'travel'] [u'detent', u'centr', u'futur', u'unclear'] [u'diseas', u'citrus', u'tree', u'burn'] [u'door', u'close', u'eden', u'state', u'forest', u'offic'] [u'doubt', u'cast', u'paedophil', u'ring', u'claim'] [u'driver', u'urg', u'slow', u'save', u'wildlif'] [u'dupont', u'fail', u'report', u'teflon', u'health', u'risk'] [u'venabl', u'head', u'australia'] [u'enron', u'proclaim', u'innoc', u'call', u'speedi'] [u'exceed', u'excel', u'fail', u'finish', u'place'] [u'famili', u'choos', u'return', u'baxter'] [u'farmer', u'want', u'mine', u'chang'] [u'feasibl', u'studi', u'consid', u'mine', u'centr', u'plan'] [u'feder', u'leav', u'frustrat', u'rain', u'halt', u'play'] [u'govt', u'question', u'drought', u'fund', u'delay'] [u'govt', u'negoti', u'ravensthorp', u'fund'] [u'govt', u'urg', u'help', u'student', u'cost'] [u'figur', u'highlight', u'coff', u'invest'] [u'figur', u'suggest', u'soft', u'land', u'hous'] [u'station', u'plan', u'bring', u'industri', u'unrest'] [u'champ', u'obrien', u'abandon', u'athen'] [u'jail', u'insur', u'scam'] [u'enron', u'chief', u'indict', u'fraud'] [u'lifesav', u'admit', u'indec', u'deal'] [u'soldier', u'reunit', u'kidnap', u'wife'] [u'french', u'father', u'alleg', u'dope', u'cover'] [u'fund', u'lean', u'tower', u'gingin'] [u'funk', u'watson', u'british', u'open'] [u'garrett', u'attack', u'australia', u'joint', u'train', u'base'] [u'geelong', u'ring', u'chang', u'pie', u'match'] [u'ghana', u'host', u'african', u'nation'] [u'governor', u'landi', u'rest', u'surgeri'] [u'govt', u'offer', u'meatwork', u'help'] [u'govt', u'pan', u'alp', u'fairyland', u'job', u'goal'] [u'govt', u'reinstat', u'reconcili', u'dept'] [u'govt', u'sign', u'deal', u'tank'] [u'govt', u'urg', u'bolster', u'rollout'] [u'gunn', u'buy', u'interst', u'sawmil', u'oper'] [u'gunn', u'see', u'futur', u'sawmil'] [u'hansen', u'break', u'breast', u'stroke'] [u'heart', u'surgeri', u'end', u'bowi', u'tour', u'report'] [u'case', u'climb', u'australia'] [u'hospit', u'urg', u'work', u'guidelin'] [u'howard', u'silent', u'fraser', u'broadsid'] [u'hundr', u'protest', u'lake', u'plan'] [u'indigen', u'call', u'ring', u'alarm', u'bell', u'help', u'line'] [u'iraqi', u'milit', u'threaten', u'kill', u'bulgarian', u'hostag'] [u'iraqi', u'welcom', u'secur'] [u'item', u'mornington'] [u'judg', u'deni', u'martha', u'stewart', u'retrial'] [u'kidnap', u'japanes', u'woman', u'reunit', u'famili'] [u'kosmina', u'name', u'adelaid', u'coach'] [u'labor', u'object', u'militari', u'photo', u'campaign'] [u'langer', u'hayden', u'rampag'] [u'late', u'penalti', u'give', u'paraguay', u'costa', u'rica'] [u'latham', u'accus', u'hypocrisi', u'comment'] [u'latham', u'fear', u'allianc', u'public', u'support'] [u'lindh', u'killer', u'shift', u'psychiatr', u'ward'] [u'livestock', u'transport', u'road', u'decis'] [u'mallon', u'seiz', u'canada', u'lead'] [u'charg', u'woman', u'murder'] [u'charg', u'abus', u'disabl', u'boy'] [u'die', u'highway', u'truck', u'crash'] [u'maryborough', u'mark', u'year'] [u'mayor', u'stand', u'citi', u'heart', u'levi', u'plan'] [u'mcgauran', u'futur', u'grab'] [u'mcgee', u'quit', u'tour', u'doubt', u'olymp'] [u'miner', u'question', u'gold', u'project', u'announc'] [u'mine', u'firm', u'lack', u'job', u'expans'] [u'miss', u'marin', u'arriv', u'beirut', u'embassi'] [u'moor', u'choos', u'countri', u'club'] [u'water', u'need', u'boost', u'storag'] [u'mother', u'thank', u'australian', u'carer', u'save', u'daughter'] [u'mullumbimbi', u'face', u'water', u'restrict'] [u'murder', u'trial', u'hear', u'gunshot', u'wind', u'evid'] [u'mysteri', u'phone', u'unwelcom', u'taliban', u'founder'] [u'nativ', u'anim', u'threaten', u'busi', u'season'] [u'ambul', u'station', u'plan', u'julia', u'creek'] [u'code', u'offer', u'easier', u'choic', u'power'] [u'market', u'scheme', u'focus', u'murray'] [u'techniqu', u'halv', u'nitrogen', u'emiss'] [u'charg', u'child', u'offenc'] [u'orchard', u'inspect', u'canker'] [u'opposit', u'question', u'need', u'euro', u'parti'] [u'windi', u'match', u'wash'] [u'odomet', u'fraud', u'spark', u'consum', u'group', u'outcri'] [u'ogradi', u'captur', u'stage'] [u'ogradi', u'emot', u'roller', u'coaster'] [u'terror', u'warn'] [u'lazi', u'georg', u'michael', u'shut', u'chatroom'] [u'olymp', u'torch', u'spark', u'tension', u'cyprus'] [u'opposit', u'back', u'sniffer', u'dog'] [u'opposit', u'push', u'chang', u'elect', u'date'] [u'orchard', u'owner', u'seek', u'protect', u'properti'] [u'organis', u'fight', u'indigen', u'right'] [u'origin', u'player', u'gear', u'rerun'] [u'origin', u'star', u'gear', u'match'] [u'outback', u'prepar', u'cosmic'] [u'pacif', u'island', u'urg', u'declar', u'disast', u'zone'] [u'pair', u'shoalhaven', u'head', u'crash'] [u'parent', u'children', u'crime'] [u'perth', u'court', u'child', u'charg'] [u'petacchi', u'cipo', u'tour', u'pull', u'out'] [u'philippin', u'work', u'secur', u'hostag', u'releas'] [u'pie', u'crisi', u'hotel', u'bing'] [u'pioneer', u'pastoralist', u'die'] [u'defend', u'draper', u'adelaid', u'visit'] [u'see', u'pros', u'con', u'abort', u'documentari'] [u'pass', u'australian'] [u'polic', u'chief', u'head', u'tamworth'] [u'polic', u'investig', u'huge', u'counterfeit', u'good', u'haul'] [u'polic', u'probe', u'shepparton', u'death'] [u'polic', u'resourc', u'wast', u'sniffer', u'dog'] [u'polic', u'search', u'arm', u'robber'] [u'polic', u'seek', u'daylesford', u'blaze'] [u'polic', u'seek', u'woman', u'hous', u'blaze'] [u'polic', u'seiz', u'comput', u'morcomb', u'investig'] [u'port', u'augusta', u'rfds', u'servic', u'stay'] [u'port', u'author', u'back', u'skill', u'worker', u'push'] [u'priest', u'abus', u'charg', u'releas', u'bail'] [u'privat', u'sector', u'urg', u'fund', u'synchrotron'] [u'probe', u'look', u'rugbi', u'spectat', u'conduct'] [u'citrus', u'partial', u'lift'] [u'race', u'legend', u'attend', u'replica', u'motor', u'garag'] [u'rainfal', u'decreas', u'link', u'hail', u'cannon'] [u'restrict', u'result', u'huge', u'drop', u'paint', u'sniff'] [u'retir', u'naval', u'command', u'franklin'] [u'rfds', u'unfaz', u'increas', u'cost'] [u'romero', u'share', u'lead', u'scotland'] [u'rule', u'isra', u'barrier', u'expect'] [u'runway', u'extens', u'boost', u'coastal', u'surveil'] [u'school', u'allow', u'choos', u'staff'] [u'schumach', u'coulthard', u'london'] [u'senior', u'cleric', u'damn', u'baxter', u'disgrac'] [u'seven', u'dead', u'north', u'gaza', u'fight'] [u'sharon', u'start', u'talk', u'labour', u'nation', u'uniti'] [u'shoalwat', u'upgrad', u'rais', u'cattl', u'concern'] [u'shoot', u'star', u'dazzl', u'sky'] [u'sister', u'name', u'water', u'polo', u'team'] [u'sixer', u'welcom', u'return', u'hero'] [u'smoke', u'research', u'plant', u'germin', u'discoveri'] [u'socceroo', u'cahil', u'head', u'palac'] [u'solar', u'storm', u'tear', u'away', u'mar', u'water', u'nasa'] [u'lankan', u'batsmen', u'pressur', u'perform'] [u'stasi', u'sale', u'bargain', u'price'] [u'state', u'appeal', u'late', u'assault', u'case'] [u'steami', u'joyc', u'love', u'letter', u'fetch', u'high', u'price'] [u'exact', u'lake', u'creek', u'start', u'date'] [u'steal', u'truck', u'recov', u'melbourn'] [u'storm', u'expert', u'urg', u'peopl', u'cyclon', u'proof', u'home'] [u'student', u'boost', u'leadership', u'skill'] [u'sudan', u'halt', u'violenc', u'face', u'action', u'powel'] [u'support', u'west', u'field', u'coal'] [u'survey', u'highlight', u'local', u'tourism', u'figur'] [u'survey', u'tip', u'steadi', u'popul', u'growth'] [u'sweden', u'welcom', u'releas', u'guantanamo', u'detaine'] [u'sydney', u'fin', u'flee', u'lebanon'] [u'tabcorp', u'oper', u'bank', u'strike', u'action'] [u'tahu', u'wiki'] [u'ideal', u'marin', u'pest', u'studi', u'scientist'] [u'teen', u'spend', u'time', u'aboard', u'train', u'ship'] [u'telstra', u'slower', u'fault', u'report'] [u'telstra', u'servic', u'get', u'wors', u'labor'] [u'trucki', u'await', u'level', u'cross', u'crash', u'committ'] [u'union', u'air', u'fear', u'worker'] [u'reject', u'request', u'presidenti', u'poll'] [u'committe', u'approv', u'australia', u'free', u'trade', u'deal'] [u'deni', u'report', u'plane', u'crash'] [u'investig', u'free', u'marin', u'case'] [u'get', u'year', u'plan', u'abort'] [u'plane', u'crash', u'south', u'korea', u'report'] [u'venabl', u'join', u'local', u'leagu'] [u'governor', u'undergo', u'heart', u'surgeri'] [u'viduka', u'complet', u'boro'] [u'warren', u'overwhelm', u'fifa', u'honour'] [u'weak', u'technolog', u'forecast', u'lower', u'stock', u'price'] [u'webber', u'reveal', u'deal'] [u'weightlift', u'strip', u'athen', u'place'] [u'whale', u'strand', u'beach'] [u'wine', u'export', u'record'] [u'winton', u'shine', u'opal'] [u'wollongong', u'council', u'worker', u'work'] [u'woman', u'bodi'] [u'year', u'lead', u'polic', u'high', u'speed', u'chase'] [u'beekeep', u'consid', u'code', u'conduct'] [u'investig', u'whistleblow', u'abus', u'claim'] [u'split', u'gungahlin', u'drive', u'extens', u'liber'] [u'alstom', u'sharehold', u'approv', u'australian', u'sell'] [u'armstrong', u'bruis', u'sixth', u'stage', u'crash'] [u'arrest', u'warrant', u'issu', u'courtney', u'love'] [u'atapattu', u'lead', u'lankan', u'fightback'] [u'auditor', u'fault', u'handl', u'iraqi', u'fund'] [u'australia', u'head', u'drop'] [u'australia', u'go', u'say', u'rudd'] [u'australia', u'go', u'flaw', u'intellig', u'say'] [u'baghdad', u'violenc', u'claim', u'victim'] [u'beach', u'close', u'surfer', u'kill', u'shark', u'attack'] [u'beatti', u'make', u'homeless', u'pledg'] [u'blair', u'come', u'close', u'step'] [u'boonen', u'win', u'crash', u'mar', u'sixth', u'stage'] [u'breaker', u'morant', u'tale', u'intend', u'cheer', u'hick'] [u'bulgaria', u'unsway', u'iraq', u'hostag', u'threat'] [u'burt', u'star', u'eel', u'stun', u'rooster'] [u'bush', u'pledg', u'intellig', u'reform'] [u'bush', u'introduc', u'intellig', u'servic', u'reform'] [u'cahil', u'transfer', u'limbo'] [u'chalmer', u'stay', u'touch', u'illinoi'] [u'child', u'arsonist', u'rule', u'prompt', u'review', u'call'] [u'admit', u'intellig', u'shortcom'] [u'cook', u'come', u'boil'] [u'cool', u'tassi', u'stay', u'straight', u'camel'] [u'court', u'didnt', u'consid', u'isra', u'secur', u'judg'] [u'courtney', u'love', u'hospitalis', u'feminin', u'issu'] [u'court', u'rule', u'israel', u'barrier', u'inappropri', u'say'] [u'date', u'afghan', u'poll'] [u'death', u'threat', u'hang', u'iraq', u'hostag'] [u'denmark', u'press', u'seek', u'probe', u'report'] [u'discount', u'petrol', u'deal', u'get', u'accc', u'green', u'light'] [u'downer', u'defend', u'iraq', u'decis'] [u'downer', u'express', u'concern', u'hick', u'habib'] [u'downturn', u'begin', u'hous', u'industri'] [u'eagl', u'final', u'straight'] [u'egyptian', u'cabinet', u'offer', u'resign'] [u'pressur', u'israel', u'dismantl', u'secur', u'wall'] [u'everton', u'commenc', u'rooney', u'talk'] [u'everybodi', u'seoul', u'olymp', u'drug', u'johnson'] [u'farmer', u'fight', u'research', u'station', u'closur'] [u'feder', u'make', u'tire', u'passag', u'swiss', u'semi'] [u'victori', u'maori', u'parti'] [u'accid', u'kill'] [u'kill', u'pipelin', u'sabotag', u'iraq', u'violenc'] [u'gaudio', u'continu', u'excel', u'swedish', u'open'] [u'govt', u'consid', u'forest', u'anti', u'privatis', u'studi'] [u'grinspoon', u'expect', u'boost', u'darwin', u'festiv'] [u'grower', u'welcom', u'eas', u'citrus', u'ban'] [u'hall', u'kick', u'swan', u'crow'] [u'hasselbaink', u'sign', u'boro'] [u'havret', u'snatch', u'scottish', u'open', u'lead'] [u'hird', u'injuri', u'mar', u'bomber'] [u'indian', u'flood', u'death', u'toll', u'hit'] [u'iraq', u'justifi', u'despit', u'senat', u'report', u'wolfowitz'] [u'island', u'stretch', u'black'] [u'israel', u'ask', u'support', u'barrier'] [u'israel', u'reject', u'secur', u'barrier', u'rule'] [u'johnson', u'launch', u'olymp', u'appeal'] [u'jone', u'sparkl', u'form', u'olymp', u'near'] [u'militari', u'payrol', u'record', u'bush', u'destroy'] [u'kookaburra', u'seri', u'darwin'] [u'kookaburra', u'take', u'seri', u'darwin'] [u'lyon', u'stay', u'waratah'] [u'mallon', u'hold', u'canada', u'lead'] [u'stab', u'home', u'invas'] [u'maori', u'parti', u'expect', u'elect'] [u'marin', u'return', u'militari', u'control'] [u'matilda', u'triumph', u'mexico'] [u'mcdonald', u'face', u'lawsuit'] [u'mcewen', u'tour', u'doubt'] [u'mcewen', u'team', u'mate', u'fail', u'dope', u'test'] [u'minardi', u'mourn', u'death', u'sport', u'director'] [u'leav', u'damag'] [u'minist', u'call', u'teacher', u'ban', u'lift'] [u'minist', u'defend', u'problem', u'gambl', u'fund'] [u'murdoch', u'deni', u'scoop', u'sourc'] [u'fish', u'name', u'clear', u'confus'] [u'charg', u'soldier', u'iraq', u'scandal'] [u'preferenti', u'treatment', u'ralf', u'schumach'] [u'ogradi', u'take', u'green', u'jersey'] [u'price', u'slip', u'opec', u'output', u'pledg'] [u'opposit', u'offer', u'venezuela', u'return', u'free', u'market'] [u'palestinian', u'seek', u'resolut', u'secur', u'barrier'] [u'pentagon', u'offer', u'hick', u'habib', u'detent', u'review'] [u'phelp', u'qualifi', u'campaign'] [u'philip', u'morri', u'settl', u'tobacco', u'smuggl'] [u'pilkington', u'glass', u'close', u'adelaid', u'plant'] [u'pizarro', u'card', u'spoil', u'peruvian', u'parti'] [u'princess', u'diana', u'estat', u'lose', u'court', u'fight'] [u'purpl', u'chocol', u'peak', u'plan', u'prompt', u'protest'] [u'citrus', u'grower', u'start', u'pick'] [u'queensland', u'warn', u'credit', u'card', u'scam'] [u'raider', u'davico', u'announc', u'wigan', u'deal'] [u'raikkonen', u'set', u'pace', u'schumach', u'wobbl'] [u'raikkonen', u'top', u'british', u'practic'] [u'rebound', u'lift', u'wall', u'street', u'recent', u'slide'] [u'refuge', u'group', u'seek', u'independ', u'baxter', u'probe'] [u'report', u'condemn', u'clear', u'bush', u'iraq'] [u'rescuer', u'work', u'retreiv', u'woman'] [u'fire', u'roo', u'shock', u'docker'] [u'maintain', u'lead', u'indonesian', u'vote', u'count'] [u'second', u'milit', u'group', u'threaten', u'zarqawi'] [u'seven', u'kill', u'troubl', u'kashmir'] [u'shark', u'hold', u'spot'] [u'shark', u'hold', u'spot'] [u'shark', u'hold', u'spot'] [u'shipper', u'teach', u'halv', u'greenhous'] [u'smaller', u'club', u'compli', u'smoke', u'law'] [u'speed', u'figur', u'disturb', u'minist'] [u'spur', u'sell', u'postiga', u'porto'] [u'lanka', u'tough', u'time', u'langer'] [u'swift', u'outclass', u'firebird'] [u'swim', u'studi', u'unveil', u'pollut', u'concern'] [u'tall', u'black', u'claim', u'reveng'] [u'busi', u'demand', u'mainland', u'flight'] [u'turkish', u'ship', u'jumper', u'send', u'home', u'second', u'detain'] [u'boss', u'say', u'help', u'sell', u'coca', u'cola'] [u'court', u'design', u'isra', u'secur', u'wall'] [u'unseed', u'rusedski', u'advanc', u'newport'] [u'court', u'uphold', u'nevada', u'nuclear', u'wast', u'site'] [u'editor', u'russian', u'forb', u'kill', u'moscow'] [u'intellig', u'sourc', u'iraq'] [u'vanuatu', u'ballot', u'box', u'burn', u'arm', u'polic', u'send'] [u'vline', u'servic', u'cost', u'criticis'] [u'look', u'attract', u'intern', u'student'] [u'watchdog', u'blog', u'reach', u'techi'] [u'woman', u'hospit', u'attempt', u'murder', u'suicid'] [u'wooli', u'takeov', u'push', u'wineri'] [u'world', u'court', u'rule', u'israel', u'barrier', u'illeg'] [u'zimbabw', u'cricket', u'chief', u'agre', u'talk'] [u'firefight', u'treat', u'smoke', u'inhal'] [u'kill', u'truck', u'crash', u'java', u'wed'] [u'accc', u'examin', u'woolworth', u'liquor'] [u'laud', u'green', u'high', u'school'] [u'percent', u'drought'] [u'qaeda', u'suspect', u'arrest', u'greec', u'visit'] [u'annan', u'warn', u'aid', u'crisi', u'asia', u'pacif'] [u'australian', u'urg', u'organ', u'donor'] [u'aust', u'spend', u'combat', u'aid'] [u'babi', u'boomer', u'urg', u'donat', u'inherit'] [u'barrier', u'rule', u'prompt', u'arab', u'leagu', u'meet'] [u'bomb', u'aviv', u'station', u'kill'] [u'boomer', u'seri'] [u'brigitt', u'return', u'franc', u'law', u'ruddock'] [u'brisban', u'electr', u'upgrad'] [u'break', u'sidelin', u'hird'] [u'brown', u'scarlett', u'tribun'] [u'bulgaria', u'say', u'hop', u'rise', u'hostag', u'iraq'] [u'bulldog', u'storm'] [u'chalmer', u'hensbi', u'close', u'illinoi'] [u'chavez', u'proof', u'interfer'] [u'constitut', u'chang', u'outlaw', u'marriag'] [u'costello', u'challeng', u'crean', u'polici', u'showdown'] [u'disabl', u'group', u'condemn', u'initi'] [u'disney', u'deni', u'lion', u'sleep', u'tonight', u'copyright', u'claim'] [u'escape', u'captur', u'month'] [u'track', u'cow', u'citizen'] [u'expert', u'warn', u'childhood', u'diabet', u'diet', u'link'] [u'feder', u'feel', u'final', u'strain'] [u'kill', u'western', u'afghanistan', u'blast'] [u'trap', u'cliff'] [u'marin', u'kill', u'falluja'] [u'franc', u'perfect', u'start', u'belgium', u'stun', u'spain'] [u'frazer', u'fire', u'scottish', u'open', u'lead'] [u'girl', u'rescu', u'waterfal', u'plung'] [u'govt', u'call', u'better', u'feder', u'public', u'hous'] [u'govt', u'spend', u'million', u'promot'] [u'hakkinen', u'consid', u'comeback', u'say', u'denni'] [u'hick', u'habib', u'famili', u'speak', u'forum'] [u'hobart', u'attract', u'pull', u'increas', u'number'] [u'iraqi', u'judg', u'hand', u'death', u'sentenc'] [u'iraqi', u'milit', u'hour', u'hostag', u'deadlin'] [u'iraq', u'announc', u'ambassador', u'appoint'] [u'iraq', u'troop', u'deploy', u'japanes', u'poll'] [u'jone', u'miss', u'olymp', u'spot'] [u'jone', u'miss', u'spot'] [u'jone', u'world'] [u'kerri', u'attack', u'bush', u'iraq'] [u'lankan', u'pass', u'light', u'fail'] [u'latham', u'rule', u'garrett', u'environ', u'portfolio'] [u'latham', u'rumour', u'unlik', u'influenc', u'voter', u'poll'] [u'lethal', u'leisel', u'world'] [u'lion', u'rout', u'bulldog', u'gabba'] [u'love', u'encourag', u'queensland', u'citrus'] [u'mallon', u'seiz', u'shoot', u'lead', u'canada'] [u'mcdonald', u'chief', u'join', u'diabet', u'australia', u'board'] [u'miller', u'cautious', u'wood', u'studi', u'result'] [u'call', u'school', u'report', u'releas'] [u'moral', u'free', u'kick', u'stun', u'argentina'] [u'tarkin', u'forest', u'heritag', u'list'] [u'defend', u'rais'] [u'ogradi', u'keep', u'green', u'pozzato', u'secur', u'stage'] [u'ogradi', u'throw', u'green', u'jersey', u'challeng'] [u'oppn', u'want', u'year', u'propos', u'servic', u'medal'] [u'opposit', u'accept', u'costello', u'challeng', u'polici'] [u'palestinian', u'milit', u'kill', u'blast'] [u'palestinian', u'delay', u'push', u'secur', u'council'] [u'perth', u'author', u'hunt', u'dead', u'shark'] [u'phelp', u'fli'] [u'philippin', u'reject', u'iraqi', u'milit', u'demand'] [u'phoenix', u'local', u'battl'] [u'polic', u'investig', u'assault', u'care', u'centr'] [u'polic', u'investig', u'drug', u'squad', u'robberi'] [u'polic', u'investig', u'overnight', u'assault'] [u'polic', u'investig', u'scuba', u'dive', u'death'] [u'polic', u'investig', u'sydney', u'stab'] [u'polic', u'patrol', u'video', u'cam'] [u'polic', u'resuscit', u'napoleon', u'dwarf', u'rabbit'] [u'port', u'slaughter', u'abysm', u'blue'] [u'pressur', u'mount', u'blair', u'iraq'] [u'saddam', u'ralli', u'restiv', u'iraqi', u'citi', u'baquba'] [u'quarantin', u'servic', u'sniff', u'recruit'] [u'rabbitoh', u'panther'] [u'rabbitoh', u'shock', u'premier'] [u'raikkonen', u'take', u'silverston', u'pole'] [u'rain', u'postpon', u'swedish', u'open', u'semi'] [u'ralf', u'hop', u'hungari', u'william'] [u'walk', u'fulham', u'farc'] [u'rehhagel', u'snub', u'germani'] [u'research', u'examin', u'croc', u'safari', u'effect'] [u'retail', u'question', u'affect', u'christma', u'trade'] [u'rusedski', u'reach', u'newport', u'final'] [u'safeti', u'expo', u'hop', u'larg', u'crowd'] [u'saint', u'slump'] [u'satellit', u'census', u'begin', u'timor'] [u'saudi', u'deni', u'guantanamo', u'prison', u'swap'] [u'eagl', u'climb'] [u'eagl', u'edg', u'tiger', u'break'] [u'secur', u'tight', u'ahead', u'bangkok', u'world', u'aid'] [u'shark', u'involv', u'fatal', u'attack', u'like', u'great'] [u'sharon', u'condemn', u'aviv', u'bomb'] [u'sudan', u'chad', u'meet', u'darfur', u'crise', u'worsen'] [u'taiwan', u'independ', u'desir', u'region', u'say'] [u'nomin', u'macquari', u'wetland', u'list'] [u'report', u'excel', u'snow', u'season'] [u'thailand', u'nudg', u'australia', u'trapdoor'] [u'thai', u'doom', u'australia', u'drop'] [u'thousand', u'gather', u'rememb', u'srebrenica', u'massacr'] [u'trade', u'power', u'meet', u'deadlin', u'loom'] [u'treasur', u'silent', u'missil', u'defenc', u'cost'] [u'troop', u'stay', u'iraq', u'say', u'democrat'] [u'uruguay', u'edg', u'ecuador'] [u'delay', u'atmospher', u'satellit', u'launch'] [u'press', u'question', u'bush', u'iraq', u'justif'] [u'host', u'intern', u'drill'] [u'vettori', u'send', u'windi', u'final', u'spin'] [u'admit', u'drink', u'drive'] [u'involv', u'smash'] [u'polic', u'divid', u'royal', u'commiss', u'call'] [u'viduka', u'spurn', u'celtic', u'offer'] [u'warn', u'australian', u'victori'] [u'yemen', u'forc', u'battl', u'anti', u'cleric', u'support'] [u'accc', u'scheme', u'wont', u'affect', u'coal', u'shipment'] [u'confid', u'drought', u'relief'] [u'adriano', u'trebl', u'help', u'brazil', u'sink', u'costa', u'rica'] [u'african', u'migrant', u'land', u'itali'] [u'agreement', u'reach', u'camp', u'leas'] [u'aid', u'econom', u'develop'] [u'algerian', u'report', u'appeal', u'fail', u'defam', u'case'] [u'alic', u'mayor', u'call', u'highway', u'money'] [u'alleg', u'cattl', u'duffer', u'appear', u'court'] [u'urg', u'stop', u'import', u'doctor'] [u'annan', u'plead', u'action', u'aid'] [u'aussi', u'chase', u'earli', u'wicket'] [u'aussi', u'kill', u'cairn'] [u'aussi', u'yacht', u'crew', u'perform', u'athen', u'warm'] [u'australia', u'help', u'celebr', u'kiribati', u'independ'] [u'australia', u'post', u'admit', u'mistak', u'matern', u'rule'] [u'austrian', u'destroy', u'navratilova', u'final', u'dream'] [u'author', u'begin', u'destroy', u'infect', u'citrus'] [u'beatti', u'accus', u'panic', u'power', u'report'] [u'beazley', u'defenc', u'portfolio'] [u'crowd', u'expect', u'farewel', u'pioneer'] [u'bleak', u'outlook', u'coral', u'reef', u'warn', u'research'] [u'blind', u'pilot', u'reach', u'record'] [u'breast', u'cancer', u'studi', u'focus', u'survivor'] [u'bush', u'aid', u'polici', u'come', u'attack'] [u'busi', u'week', u'judiciari'] [u'cabinet', u'decis', u'nuclear', u'dump', u'remain', u'unclear'] [u'cabinet', u'extend', u'drought', u'assist', u'program'] [u'camel', u'prove', u'winner'] [u'carr', u'open', u'aldavilla', u'jail'] [u'carr', u'uncertain', u'futur', u'port'] [u'cattl', u'parasit', u'presenc', u'fall', u'gympi'] [u'push', u'ahead', u'port', u'work'] [u'child', u'porn', u'voyeur', u'get', u'good', u'behaviour', u'bond'] [u'citrus', u'farmer', u'consid', u'oversea', u'market'] [u'citrus', u'grower', u'wait', u'canker', u'impact'] [u'close', u'finish', u'draw', u'like'] [u'cloud', u'seeder', u'claim', u'snow', u'success'] [u'conserv', u'council', u'reject', u'fish', u'reloc', u'plan'] [u'coron', u'probe', u'death', u'custodi'] [u'council', u'push', u'communiti', u'hous', u'polici'] [u'council', u'borrow', u'fund', u'hole'] [u'council', u'warn', u'industri', u'woe', u'contract'] [u'court', u'determin', u'face', u'murder', u'trial'] [u'court', u'hear', u'babi', u'death', u'evid'] [u'staff', u'walk', u'australia'] [u'crean', u'accept', u'costello', u'debat', u'challeng'] [u'credit', u'card', u'owner', u'warn', u'phone', u'scam'] [u'custom', u'offic', u'post', u'remot', u'border', u'protect'] [u'democrat', u'urg', u'govt', u'releas', u'school', u'report'] [u'design', u'chang', u'wont', u'stop', u'speed', u'racv'] [u'cours', u'winter', u'regular'] [u'drive', u'aim', u'boost', u'northern', u'tourist', u'number'] [u'drought', u'assist', u'extend'] [u'drought', u'grip', u'hunter'] [u'drought', u'tighten', u'grip'] [u'drug', u'cyclist', u'olymp'] [u'duyfken', u'voyag', u'begin'] [u'eadi', u'deni', u'drug', u'alleg'] [u'eadi', u'drug'] [u'elder', u'back', u'nativ', u'titl', u'appeal', u'reject'] [u'elkington', u'british', u'open'] [u'mail', u'warn', u'put', u'south', u'korean', u'airport', u'alert'] [u'embattl', u'deni', u'icac', u'alleg'] [u'emerg', u'servic', u'honour', u'memori'] [u'escape', u'recaptur', u'newcastl'] [u'exit', u'poll', u'find', u'koizumi', u'fall', u'short', u'target'] [u'execut', u'face', u'court', u'cover', u'charg'] [u'famili', u'unpack', u'miss', u'moggi', u'melbourn'] [u'famili', u'want', u'killer', u'shark', u'spar'] [u'fatal', u'blaze', u'spark', u'safeti', u'warn'] [u'feder', u'final', u'win', u'swiss', u'open'] [u'damag', u'school', u'prepar', u'student', u'return'] [u'firm', u'back', u'mine', u'legisl', u'review'] [u'fisher', u'protest', u'green', u'zone'] [u'forest', u'group', u'highlight', u'clear', u'fell', u'safeti'] [u'intellig', u'chief', u'heap', u'pressur', u'blair'] [u'rescu', u'cliff', u'face'] [u'franc', u'iraq', u'resum', u'diplomat', u'tie'] [u'freighlink', u'help', u'militari', u'equip'] [u'funer', u'director', u'fin', u'unauthoris', u'dispos'] [u'game', u'industri', u'await', u'releas'] [u'gaudio', u'face', u'zabaleta', u'argentin', u'final'] [u'goat', u'export', u'doubl', u'product'] [u'googl', u'hop', u'public', u'month', u'report'] [u'govt', u'reassur', u'public', u'histor', u'garden', u'sale'] [u'govt', u'reject', u'delay', u'attack'] [u'graf', u'edberg', u'enshrin', u'hall', u'fame'] [u'grafton', u'court', u'extradit', u'alleg', u'murder'] [u'green', u'deni', u'select', u'log', u'riski'] [u'gregan', u'nation', u'open'] [u'group', u'consid', u'world', u'heritag', u'list', u'nomin'] [u'hansen', u'claim'] [u'head', u'turn', u'skyward', u'astrofest'] [u'hensbi', u'make', u'breakthrough'] [u'suffer', u'bar', u'aid', u'confer', u'open'] [u'hope', u'remain', u'eagl', u'final', u'chanc'] [u'howard', u'unveil', u'emerg', u'worker', u'memori'] [u'industri', u'action', u'hit', u'environ', u'dept'] [u'injur', u'dragon', u'give', u'time', u'prove', u'fit'] [u'inquiri', u'tell', u'school', u'fund', u'flaw'] [u'internet', u'bank', u'safer'] [u'iran', u'dismiss', u'direct', u'nuclear', u'talk'] [u'iraq', u'syria', u'improv', u'border', u'secur'] [u'isra', u'coalit', u'push', u'gaza', u'withdraw'] [u'israel', u'order', u'snip', u'shrek', u'joke'] [u'itali', u'prevent', u'dock', u'migrant', u'ship'] [u'itsi', u'bitsi', u'spider', u'catch', u'snake'] [u'japanes', u'vow', u'troop', u'remain', u'iraq'] [u'japan', u'opposit', u'push', u'iraq', u'troop', u'withdraw'] [u'julia', u'creek', u'get', u'medic', u'centr', u'librari'] [u'kerri', u'edward', u'campaign', u'fight', u'namesak'] [u'kidnapp', u'extend', u'hostag', u'execut', u'deadlin'] [u'kojonup', u'come', u'financi', u'woe'] [u'labor', u'cost', u'polici', u'base', u'sham', u'say', u'costello'] [u'lane', u'close', u'amidst', u'bridg', u'work'] [u'latham', u'renew', u'iraq', u'withdraw', u'pledg'] [u'lauranc', u'rockefel', u'die', u'age'] [u'lemon', u'juic', u'kill', u'aid', u'virus', u'research'] [u'levet', u'storm', u'home', u'snare', u'scottish', u'open'] [u'liber', u'regret', u'drink', u'drive', u'incid'] [u'long', u'court', u'bail', u'breach'] [u'magpi', u'unfaz', u'aker', u'critic'] [u'major', u'blackout', u'greec'] [u'mallon', u'win', u'canadian', u'women', u'open'] [u'admit', u'guilt', u'abduct'] [u'arrest', u'stab'] [u'charg', u'fatal', u'lakemba', u'stab'] [u'mandela', u'imag', u'display'] [u'die', u'troop', u'destroy', u'gaza', u'home'] [u'fli', u'hospit', u'accid'] [u'injur', u'mine', u'accid'] [u'think', u'miss', u'safe'] [u'grafton', u'court', u'murder', u'charg'] [u'matthew', u'take', u'dictat'] [u'mayor', u'happi', u'candid'] [u'mcewen', u'grab', u'green', u'ogradi'] [u'mcgauran', u'head', u'challeng'] [u'meatwork', u'revamp', u'near', u'start'] [u'mental', u'health', u'council', u'question', u'miss', u'fund'] [u'militari', u'plan', u'creat', u'tourism', u'concern'] [u'million', u'dollar', u'memori', u'unveil'] [u'million', u'battl', u'south', u'asia', u'flood'] [u'mine', u'truck', u'blaze', u'investig'] [u'miss', u'cold', u'night'] [u'montgomeri', u'fail', u'olymp'] [u'child', u'porn', u'charg', u'like'] [u'custom', u'offic', u'boost', u'port', u'secur'] [u'youth', u'listen', u'plea', u'good'] [u'delight', u'rail', u'return'] [u'reject', u'forest', u'sale', u'claim'] [u'want', u'hospit', u'committe', u'elect'] [u'woe', u'wollongong', u'nowra'] [u'navi', u'amphibi', u'plan', u'spark', u'debat'] [u'nepales', u'flood', u'leav', u'dead'] [u'rule', u'allow', u'polic', u'conduct', u'undercov'] [u'word', u'hostag', u'face', u'death', u'iraq'] [u'govt', u'lose', u'decad', u'long', u'fight', u'ballast', u'point'] [u'fashion', u'design', u'know', u'denim'] [u'soccer', u'fan', u'free', u'euro', u'bash'] [u'offic', u'declin', u'evid', u'redfern'] [u'opposit', u'call', u'inquiri', u'strathmont'] [u'patient', u'testifi', u'accus', u'tobin', u'killer'] [u'perez', u'claim', u'victori', u'real', u'elect'] [u'phoenix', u'rise'] [u'pilbara', u'welcom', u'nickel', u'oper'] [u'plan', u'aim', u'help', u'save', u'great', u'lake', u'koala'] [u'plan', u'allow', u'water', u'licenc', u'trade'] [u'plane', u'hijack', u'world', u'devil', u'court', u'tell'] [u'plan', u'afoot', u'bring', u'goldfield'] [u'plenti', u'work', u'rescu', u'chopper'] [u'polic', u'consid', u'charg', u'safe', u'incid'] [u'polic', u'focus', u'crime', u'effort', u'gunnedah'] [u'polic', u'investig', u'child', u'assault', u'claim'] [u'polic', u'investig', u'fatal', u'meatwork', u'accid'] [u'polic', u'investig', u'suspici', u'mornington', u'death'] [u'polic', u'prepar', u'report', u'fatal', u'crash'] [u'polic', u'probe', u'hous', u'blaze'] [u'polic', u'probe', u'leonora', u'brawl'] [u'polic', u'search', u'miss', u'overnight'] [u'port', u'take', u'record', u'coal', u'level'] [u'power', u'station', u'strike', u'extend', u'week'] [u'premier', u'open', u'aldavilla', u'jail'] [u'pressur', u'mount', u'quick', u'highway', u'fund'] [u'price', u'sign', u'warrior'] [u'princ', u'william', u'run', u'chariti'] [u'push', u'greater', u'drought'] [u'opposit', u'want', u'extra', u'road', u'spend'] [u'rail', u'return', u'see', u'tourism', u'winner'] [u'rain', u'delay', u'gymkhana'] [u'rain', u'fail', u'eas', u'drought', u'condit'] [u'rain', u'offer', u'littl', u'pastur', u'relief'] [u'rann', u'expect', u'backdown', u'nuclear', u'dump'] [u'rebuild', u'rubi', u'water'] [u'record', u'turnov', u'livestock', u'saleyard'] [u'recoveri', u'effort', u'launch', u'sink', u'speedboat'] [u'refuge', u'ship', u'dock', u'itali'] [u'rescu', u'begin', u'strand', u'humpback', u'calf'] [u'resid', u'group', u'reliev', u'shop', u'centr', u'start'] [u'road', u'crash', u'victim', u'name'] [u'road', u'congress', u'talk', u'transport', u'plan'] [u'saint', u'form', u'say', u'hudghton'] [u'question', u'citrus', u'decis'] [u'scheme', u'look', u'boost', u'indigen', u'teacher', u'number'] [u'schumach', u'surg', u'seventh', u'titl'] [u'search', u'busi', u'invest', u'opportun'] [u'sharapova', u'opt', u'schedul'] [u'sharon', u'pere', u'meet', u'coalit', u'talk'] [u'skimpi', u'cloth', u'outlaw', u'iranian', u'fashion', u'polic'] [u'sluggish', u'start', u'week', u'market'] [u'lankan', u'pont', u'wicket'] [u'state', u'uphold', u'citrus'] [u'studi', u'tour', u'put', u'focus', u'river', u'murray'] [u'support', u'rail', u'competit', u'push'] [u'surrey'] [u'sydney', u'accid', u'injur', u'elder'] [u'takeov', u'plan', u'littl', u'impact', u'mudge', u'win'] [u'talk', u'begin', u'cabinet', u'reshuffl'] [u'talk', u'focus', u'move', u'sport'] [u'teacher', u'union', u'wari', u'govt', u'chang'] [u'teen', u'court', u'fatal', u'umbrella', u'attack'] [u'thousand', u'aero', u'club', u'open'] [u'tourism', u'fund', u'intensifi'] [u'town', u'shock', u'famili', u'tragedi'] [u'shark', u'kill', u'surfer', u'expert'] [u'soldier', u'kill', u'wound', u'iraq', u'blast'] [u'union', u'slam', u'halv', u'matern', u'payment'] [u'union', u'want', u'prison', u'staff', u'meal', u'issu', u'resolv'] [u'group', u'target', u'copycat', u'aid', u'drug'] [u'ponder', u'elect', u'delay'] [u'pull', u'pitch', u'black', u'exercis'] [u'polic', u'pack', u'semi', u'automat'] [u'white', u'speed', u'ralli', u'burni'] [u'win', u'mix', u'polocross', u'team', u'home'] [u'wit', u'seek', u'fatal', u'road', u'crash'] [u'woman', u'die', u'road', u'smash'] [u'woman', u'drag', u'tanker'] [u'wooli', u'small', u'beer', u'compani'] [u'aborigin', u'keen', u'kangaroo'] [u'ghraib', u'attack', u'insurg'] [u'order', u'kangaroo', u'cull'] [u'afghan', u'refuge', u'arriv', u'nauru'] [u'agassi', u'shrug', u'retir', u'talk'] [u'aid', u'confer', u'mascot', u'kill', u'handler'] [u'aid', u'rob', u'children', u'parent'] [u'alcohol', u'manag', u'chang', u'fail', u'impress'] [u'alleg', u'murder', u'appear', u'southport', u'court'] [u'amaz', u'schu', u'class', u'apart'] [u'ambul', u'locat', u'undecid'] [u'angler', u'redclaw', u'crayfish', u'remind'] [u'annan', u'urg', u'fight', u'aid'] [u'anti', u'social', u'sheep', u'terroris', u'divid'] [u'ban', u'inject', u'dope', u'crackdown'] [u'aphrodit', u'win', u'albatross', u'race'] [u'appl', u'hit', u'million', u'itun', u'mark'] [u'armstrong', u'look', u'forward', u'tour', u'crunch', u'time'] [u'arsenal', u'unbeaten', u'say', u'bergkamp'] [u'athen', u'black', u'ahead', u'olymp'] [u'atlas', u'highlight', u'wine', u'region', u'growth'] [u'aust', u'leav', u'loop', u'bali'] [u'australia', u'help', u'avoid', u'collaps', u'downer', u'say'] [u'australia', u'chase', u'quick', u'run'] [u'austrian', u'airlin', u'order', u'boe'] [u'babi', u'humpback', u'die', u'strand'] [u'beach', u'open', u'fatal', u'shark', u'attack'] [u'beard', u'reclaim', u'breast', u'stroke'] [u'beatti', u'springborg', u'join', u'forc', u'ethanol'] [u'beatti', u'possess', u'navi', u'ship'] [u'beazley', u'rule', u'leadership', u'challeng'] [u'sport', u'facil', u'plan', u'site'] [u'blackburn', u'maradona', u'junior', u'stall'] [u'border', u'protect', u'polici', u'steal', u'latham', u'say'] [u'breen', u'deni', u'rort', u'alleg', u'icac', u'inquiri'] [u'brisban', u'garbo', u'return', u'work'] [u'britain', u'shut', u'float', u'duti', u'free', u'outlet'] [u'brown', u'match'] [u'budget', u'airlin', u'increas', u'airport', u'passeng', u'number'] [u'burma', u'suspect', u'bug', u'indonesian', u'embassi'] [u'bush', u'defend', u'iraq', u'say', u'safer'] [u'button', u'urg', u'pick', u'pace'] [u'cabl', u'moot', u'wellington'] [u'carr', u'outlin', u'reason', u'jail', u'site'] [u'chang', u'applic'] [u'chinchilla', u'second', u'nation', u'farmer', u'award'] [u'citrus', u'ban', u'worri', u'export'] [u'citrus', u'destruct', u'continu', u'central'] [u'citrus', u'diseas', u'put', u'squeez', u'market'] [u'citrus', u'grower', u'want', u'interst', u'access'] [u'citi', u'back', u'plan'] [u'communiti', u'shock', u'death'] [u'concret', u'firm', u'clear', u'contract', u'issu'] [u'conflict', u'evid', u'reveal', u'hickey', u'inquest'] [u'confus', u'surround', u'philippin', u'hostag', u'crisi'] [u'contain', u'maker', u'make', u'park'] [u'coron', u'hear', u'prison', u'death', u'evid'] [u'costello', u'criticis', u'fli', u'visit'] [u'council', u'ask', u'rethink', u'hous', u'plan'] [u'council', u'back', u'push', u'medicar', u'licenc'] [u'council', u'beef', u'water', u'restrict'] [u'councillor', u'upbeat', u'sand', u'dun', u'cooper'] [u'court', u'adjourn', u'reckless', u'pilot', u'case'] [u'custom', u'probe', u'game', u'squad'] [u'cwealth', u'accus', u'state', u'fail', u'canker', u'outbreak'] [u'dead', u'bacteria', u'strike', u'rarest', u'bird'] [u'democrat', u'criticis', u'dump', u'decis', u'delay'] [u'democrat', u'seek', u'kangaroo', u'forestri', u'limit'] [u'dept', u'probe', u'fume', u'incid'] [u'deputi', u'mayor', u'quit', u'leadership', u'concern'] [u'devonport', u'babi', u'make', u'emerg', u'flight'] [u'director', u'fli', u'superman'] [u'doctor', u'hospit', u'merger', u'plan'] [u'doubt', u'rais', u'diabet', u'effort'] [u'downer', u'deni', u'cabinet', u'split', u'dump'] [u'appeal', u'assault', u'sentenc'] [u'draw', u'bolivia', u'put', u'venezuela', u'copa'] [u'drought', u'continu'] [u'drug', u'furor', u'put', u'athen', u'team', u'hold'] [u'drug', u'furor', u'put', u'olymp', u'select', u'hold'] [u'eadi', u'challeng', u'drug', u'alleg'] [u'examin', u'expect', u'confirm', u'murder', u'suicid'] [u'info', u'wouldnt', u'chang', u'bali', u'warn', u'downer'] [u'film', u'accus', u'news', u'bush', u'bias'] [u'fisher', u'protest', u'reef', u'rezon'] [u'forecast', u'spot', u'unusu', u'climat', u'swing'] [u'forecast', u'warmer', u'weather', u'ahead'] [u'player', u'acquit', u'rape'] [u'appear', u'tribun'] [u'tribun'] [u'fund', u'help', u'health', u'hamilton', u'hospit'] [u'ghost', u'heal', u'sick', u'sacr', u'iranian', u'shrine'] [u'goat', u'help', u'manag', u'veget'] [u'googl', u'list', u'nasdaq'] [u'goondiwindi', u'murder', u'trial', u'continu'] [u'govern', u'boost', u'iraq', u'troop', u'number'] [u'govt', u'drop', u'stricter', u'internet', u'gambl', u'propos'] [u'govt', u'overhaul', u'rule', u'resid'] [u'govt', u'shift', u'give', u'refuge', u'hope', u'stay'] [u'govt', u'stand', u'hospit', u'committe', u'process'] [u'govt', u'urg', u'restructur', u'medicar'] [u'great', u'white', u'shark', u'go', u'tiger'] [u'gresford', u'death', u'prompt', u'overhaul', u'call'] [u'groundwat', u'alloc', u'announc'] [u'group', u'consid', u'sport', u'facil', u'plan'] [u'harley', u'pair', u'ride', u'alzheim', u'research'] [u'hijack', u'second', u'attempt', u'court', u'hear'] [u'hobart', u'plan', u'free', u'zone'] [u'homicid', u'actor', u'georg', u'mallabi', u'die'] [u'hundr', u'enter', u'alic', u'prize'] [u'hundr', u'ralli', u'research', u'station', u'futur'] [u'hunt', u'killer', u'shark', u'call'] [u'indigen', u'slam', u'howard', u'health', u'fund'] [u'indigen', u'voter', u'urg'] [u'injur', u'return', u'black', u'line'] [u'inquiri', u'hear', u'feder', u'fund', u'boost', u'privat'] [u'iraq', u'ask', u'nato', u'secur', u'help'] [u'iraqi', u'polic', u'detain', u'crimin'] [u'italian', u'arrest', u'asylum', u'seeker', u'ship', u'captain'] [u'train', u'generat', u'terrorist', u'report'] [u'juri', u'decid', u'attempt', u'hijack', u'fate'] [u'kemp', u'disappoint', u'environ', u'minist'] [u'kemp', u'quit', u'polit'] [u'labor', u'attack', u'govt', u'advertis', u'frenzi'] [u'labor', u'divid', u'dump'] [u'labor', u'pledg', u'reassess', u'banana', u'import'] [u'labor', u'reject', u'cost', u'claim'] [u'labor', u'iraq', u'plan', u'earn', u'prais'] [u'lake', u'creek', u'abattoir', u'reopen'] [u'latham', u'bet', u'iraq'] [u'latham', u'move', u'boost', u'relat'] [u'latham', u'visit', u'focus', u'local', u'issu'] [u'lobsey', u'mayor', u'liverpool', u'plain', u'council'] [u'loss', u'record', u'surpris', u'say', u'jone', u'coach'] [u'loss', u'record', u'surpirisng', u'say', u'jone', u'coach'] [u'lowest', u'sugar', u'pool', u'price', u'year'] [u'lynch', u'reflect', u'ahead', u'game'] [u'charg', u'wodonga', u'stab'] [u'die', u'wyndham', u'stab'] [u'get', u'bail', u'darwin', u'drug', u'raid'] [u'hospitalis', u'uranium', u'accid'] [u'pull', u'burn', u'hous'] [u'mass', u'suicid', u'threaten', u'chines', u'protest'] [u'meet', u'debat', u'council', u'offic', u'futur'] [u'miner', u'urg', u'explain', u'local', u'train', u'plan'] [u'minist', u'meet', u'singapor'] [u'miss', u'teenag'] [u'miss', u'woman'] [u'news', u'break', u'hill'] [u'morgan', u'stanley', u'settl', u'gender', u'bias', u'suit'] [u'say', u'territori', u'consid', u'nuclear', u'dump'] [u'murali', u'lankan', u'squad', u'asia'] [u'muslim', u'activist', u'campaign', u'headscarf', u'rule'] [u'nat', u'cast', u'doubt', u'mildura', u'rail', u'claim'] [u'beatl', u'song', u'victoria'] [u'rural', u'advisori', u'council'] [u'kill', u'african', u'collaps'] [u'deni', u'interfer', u'retail', u'closur'] [u'shift', u'highway', u'focus', u'feder', u'govt'] [u'line', u'nuke', u'dump'] [u'opposit', u'leader', u'embark', u'rural', u'tour'] [u'orang', u'parad', u'end', u'violenc'] [u'paint', u'spark', u'captain', u'cook', u'debat'] [u'pair', u'hold', u'drug', u'charg'] [u'panel', u'urg', u'offer', u'fluorid', u'advic'] [u'pari', u'lose', u'privaci', u'suit'] [u'parkhurst', u'student', u'counsel', u'blaze'] [u'pfizer', u'chief', u'heckl', u'aid', u'confer'] [u'philippin', u'armi', u'await', u'iraq', u'pullout', u'order'] [u'philippin', u'announc', u'iraq', u'pullout'] [u'philippin', u'reiter', u'iraq', u'pullout', u'stanc'] [u'plan', u'underway', u'indigen', u'youth', u'detent'] [u'defend', u'plan', u'visa', u'chang'] [u'polic', u'pleas', u'holiday', u'driver'] [u'polic', u'progress', u'investig', u'child'] [u'polic', u'internet', u'meet', u'robberi'] [u'polic', u'search', u'miss', u'girl'] [u'polic', u'releas', u'detail', u'drug', u'raid'] [u'porn', u'download', u'offend', u'regist'] [u'plot', u'uncov', u'olymp', u'torch', u'relay'] [u'power', u'restor', u'athen'] [u'power', u'station', u'threaten', u'electr', u'suppli'] [u'predict', u'strong', u'futur'] [u'prison', u'escap', u'hospit', u'visit'] [u'protest', u'disrupt', u'aid', u'summit'] [u'push', u'eplga', u'perform', u'review'] [u'qanta', u'flight', u'attend', u'strike', u'plan'] [u'govt', u'urg', u'fuel', u'subsidi'] [u'minist', u'face', u'budget', u'grill'] [u'speaker', u'play', u'miss', u'silverwar'] [u'question', u'hinder', u'govt', u'busi', u'treasur'] [u'radioact', u'threat', u'play', u'theft'] [u'rat', u'talk', u'return', u'busi', u'pick'] [u'realiti', u'channel', u'slat', u'news', u'corp'] [u'region', u'olymp', u'pledg'] [u'region', u'await', u'health', u'merger', u'news'] [u'retail', u'bolster', u'local', u'market'] [u'rooney', u'agent', u'dismiss', u'real', u'talk'] [u'ross', u'donnelli', u'date', u'judiciari'] [u'rural', u'medic', u'colleg', u'appli', u'specialist'] [u'safe', u'radioact', u'materi', u'steal', u'rmit'] [u'sar', u'antibodi', u'offer', u'treatment'] [u'school', u'report', u'highlight', u'problem', u'area'] [u'seabi', u'star', u'rise'] [u'search', u'continu', u'castaway', u'parent'] [u'search', u'capsiz', u'famili', u'call'] [u'search', u'miss', u'castaway', u'doubt'] [u'sharon', u'stone', u'agre', u'basic', u'instinct', u'sequel'] [u'shepparton', u'unlik', u'licenc'] [u'shire', u'seek', u'mine', u'guarante'] [u'short', u'stage', u'prospect', u'rest', u'bunch'] [u'sport', u'minist', u'back', u'silverston', u'futur'] [u'student', u'die', u'misdirect', u'kashmir', u'blast'] [u'submarin', u'spill', u'soot', u'river'] [u'swan', u'open', u'gippsland', u'candid', u'offic'] [u'tech', u'stock', u'fall', u'wall'] [u'thailand', u'battl', u'bird', u'outbreak'] [u'thousand', u'attend', u'clinton', u'book', u'sign'] [u'troubl', u'port', u'hedland', u'council', u'elect', u'mayor'] [u'rider', u'kick', u'tour'] [u'announc', u'iraq', u'envoy'] [u'back', u'plea', u'return', u'rail', u'servic'] [u'union', u'urg', u'tougher', u'workplac', u'law', u'worker'] [u'staff', u'unhappi', u'offer'] [u'defend', u'hospit', u'wait', u'list'] [u'farmer', u'sick', u'govern', u'tape'] [u'woman', u'miss', u'nation', u'park'] [u'warn', u'draw', u'level', u'murali', u'test', u'end', u'draw'] [u'warn', u'equal', u'murali', u'record'] [u'warn', u'equal', u'record', u'australian', u'fall', u'short'] [u'warn', u'level', u'murali', u'test', u'draw'] [u'warn', u'level', u'murali', u'test', u'end', u'draw'] [u'whale', u'popul', u'boom'] [u'whale', u'rescu', u'coast'] [u'woman', u'dead', u'babi'] [u'woolford', u'disappoint', u'player', u'departur'] [u'zabaleta', u'retain', u'swedish', u'open'] [u'predict', u'jump', u'local', u'drama', u'product'] [u'launch', u'campaign', u'combat', u'violenc'] [u'postpon', u'kangaroo', u'cull'] [u'quiet', u'protest'] [u'agassi', u'claim', u'mileston'] [u'aid', u'slash', u'life', u'expect', u'africa'] [u'forc', u'probe', u'plan', u'distress'] [u'albatross', u'race', u'annual'] [u'alcohol', u'vapour', u'sale', u'begin'] [u'aldi', u'bring', u'hop', u'busi', u'invest'] [u'alleg', u'caus', u'princip', u'stand', u'asid'] [u'memori', u'fund', u'pledg'] [u'amalgam', u'council', u'elect', u'mayor'] [u'target', u'chicken', u'polio', u'vaccin'] [u'issu', u'health', u'report', u'card'] [u'argentina', u'sink', u'uruguay', u'figueroa', u'doubl'] [u'armitag', u'india', u'meet'] [u'athen', u'secur', u'spend', u'higher', u'sydney'] [u'aunti', u'tell', u'castaway', u'kid', u'miracul', u'surviv'] [u'aust', u'eye', u'offshor', u'nuclear', u'wast', u'dump'] [u'author', u'reject', u'fish', u'closur', u'claim'] [u'award', u'prove', u'publish', u'right', u'recip', u'success'] [u'baghdad', u'blast', u'kill'] [u'beatti', u'say', u'ship', u'sink', u'wont', u'rush'] [u'beckenbau', u'hint', u'germani', u'choos', u'foreign', u'coach'] [u'lade', u'associ', u'turn'] [u'bjorn', u'plan', u'banish', u'open', u'demon'] [u'blair', u'quot', u'iraq', u'weapon'] [u'blair', u'take', u'blame', u'intellig'] [u'british', u'committe', u'urg', u'overhaul', u'honour'] [u'british', u'govt', u'await', u'iraq', u'intellig', u'report'] [u'briton', u'jail', u'ball'] [u'break', u'hill', u'hit', u'road', u'today'] [u'bulgaria', u'confirm', u'iraq', u'hostag', u'kill'] [u'bulgarian', u'hostag', u'execut', u'report'] [u'bulgaria', u'stay', u'iraq', u'despit', u'behead'] [u'chang', u'player', u'contract', u'talk'] [u'canberra', u'airport', u'meet', u'concern', u'citizen'] [u'casino', u'worker', u'meet', u'offer'] [u'central', u'australian', u'tourism', u'surg'] [u'central', u'citrus', u'tree', u'burn', u'continu'] [u'chamber', u'worri', u'mine', u'guarante'] [u'chariti', u'come', u'roma', u'girl', u'rescu'] [u'chechen', u'leader', u'surviv', u'blast'] [u'china', u'welcom', u'birth', u'panda'] [u'chines', u'polic', u'crack', u'babi', u'traffic', u'ring'] [u'citrus', u'canker', u'sampl', u'test'] [u'clinic', u'school', u'fund', u'student', u'hous'] [u'clone', u'die', u'mastiti', u'infect'] [u'coach', u'demand', u'meet', u'tribun', u'fin'] [u'committe', u'meet', u'council', u'water', u'fluorid'] [u'consum', u'confid', u'hit', u'year', u'high'] [u'council', u'approv', u'hous', u'project', u'develop'] [u'council', u'consid', u'committe', u'meet', u'shake'] [u'council', u'dissatisfact', u'plan', u'ratepay'] [u'council', u'stand', u'develop', u'consent'] [u'court', u'hear', u'gatto', u'unhappi', u'prison', u'condit'] [u'courtney', u'love', u'discharg', u'hospit'] [u'crocker', u'set', u'butterfli', u'world', u'record'] [u'dairi', u'worker', u'meet'] [u'darl', u'down', u'get', u'crcs'] [u'dead', u'blast', u'hit', u'baghdad', u'green', u'zone'] [u'debat', u'continu', u'highway', u'work'] [u'develop', u'commiss', u'welcom', u'refuge', u'polici'] [u'diamond', u'firm', u'plan', u'local', u'worker', u'boost'] [u'dirt', u'road', u'campaign', u'bite', u'dust'] [u'donnelli', u'suspend', u'ross', u'guilti'] [u'doubt', u'cast', u'temporari', u'protect', u'visa', u'chang'] [u'downer', u'ask', u'philippin', u'withdraw', u'troop'] [u'dracula', u'put', u'bite', u'small', u'busi', u'award'] [u'dump', u'decis', u'setback', u'luca', u'height'] [u'eadi', u'gambl', u'chanc', u'appeal'] [u'eadi', u'olymp', u'squad'] [u'take', u'swing', u'golf', u'chief'] [u'ethanol', u'industri', u'hop', u'greater', u'polit'] [u'farmer', u'group', u'question', u'dept', u'plan'] [u'govt', u'urg', u'examin', u'tree', u'clear', u'compo'] [u'filipino', u'hostag', u'safe', u'iraq', u'offici'] [u'firm', u'make', u'maleni', u'woolworth', u'pledg'] [u'firm', u'upbeat', u'gold', u'explor'] [u'firm', u'upbeat', u'organ', u'beef', u'trade'] [u'flood', u'caus', u'havoc', u'south', u'asia'] [u'priest', u'charg', u'offenc'] [u'forum', u'debat', u'syring', u'vend', u'machin'] [u'fossil', u'research', u'challeng', u'earli', u'anim', u'life', u'theori'] [u'fund', u'seek', u'medic', u'centr'] [u'gallop', u'say', u'nuclear', u'wast'] [u'girl', u'die', u'sydney'] [u'goldfield', u'line', u'plan'] [u'gosper', u'lash', u'pound', u'drug', u'critic'] [u'govt', u'deni', u'forc', u'asylum', u'seeker', u'reloc'] [u'govt', u'ditch', u'nuclear', u'dump', u'plan'] [u'govt', u'urg', u'prison', u'transport'] [u'greek', u'urg', u'olymp', u'stadium'] [u'harrop', u'olymp', u'fast', u'track'] [u'heathcot', u'bank', u'secur', u'lender'] [u'hickss', u'lawyer', u'touch', u'cuba'] [u'higher', u'cost', u'toll', u'saleyard'] [u'horticultur', u'industri', u'support', u'visa', u'chang'] [u'hospit', u'pressur', u'caus', u'treatment', u'oversight'] [u'howard', u'reshuffl', u'cabinet'] [u'india', u'pakistan', u'renew', u'cricket', u'rivalri'] [u'indigen', u'diabet', u'rate', u'ring', u'alarm', u'bell'] [u'indigen', u'group', u'form', u'nation', u'coalit'] [u'industri', u'woe', u'unlik', u'affect', u'graduat'] [u'investig', u'begin', u'plan', u'emerg', u'land'] [u'iraqi', u'communiti', u'offer', u'support', u'visa', u'chang'] [u'iraq', u'olymp', u'chief', u'surviv', u'assassin', u'attempt'] [u'order', u'tinto', u'employ', u'worker'] [u'israel', u'kill', u'senior', u'jihad', u'leader'] [u'jail', u'shower', u'screen', u'suicid', u'risk'] [u'jam', u'hardi', u'make', u'asbesto', u'compo', u'offer'] [u'japan', u'rule', u'parti', u'lose', u'spot', u'poll'] [u'jetti', u'remain', u'sport', u'develop'] [u'juri', u'find', u'guilti', u'hijack', u'trial'] [u'find', u'iraq', u'intellig', u'report'] [u'kookaburra', u'scrape', u'home', u'cairn'] [u'labor', u'backflip', u'woomera', u'wast', u'reloc'] [u'lara', u'warm', u'england'] [u'latham', u'focus', u'region', u'social', u'invest'] [u'legal', u'centr', u'cast', u'doubt', u'centr'] [u'lennon', u'meet', u'labor', u'premier', u'uniti'] [u'lewi', u'battl', u'injuri', u'defend', u'olymp', u'titl'] [u'liber', u'pair', u'blue', u'ribbon', u'seat'] [u'lismor', u'council', u'sign'] [u'longreach', u'farewel', u'region', u'leader'] [u'lord', u'butler', u'ultim', u'british', u'establish'] [u'charg', u'woman', u'death'] [u'die', u'road', u'crash'] [u'refus', u'bail', u'philippin', u'child', u'charg'] [u'market', u'subdu', u'profit', u'report'] [u'mayor', u'mark', u'baker', u'deputi', u'posit'] [u'mccaw', u'miss', u'nation', u'open'] [u'mcewen', u'pip', u'ogradi', u'number'] [u'mcgrath', u'fin', u'outburst'] [u'meatwork', u'chief', u'back', u'visa', u'decis'] [u'meet', u'consid', u'taxi', u'marshal', u'effort'] [u'melbourn', u'offic', u'caus', u'major', u'damag'] [u'mexico', u'bautista', u'send', u'ecuador', u'pack'] [u'mickelson', u'look', u'domin', u'troon'] [u'call', u'licenc', u'overhaul'] [u'aid', u'patient', u'move', u'riverina'] [u'money', u'seek', u'crime', u'prevent', u'program'] [u'planner', u'urg', u'overse', u'eden', u'resort', u'plan'] [u'refuge', u'arriv', u'brisban', u'nauru'] [u'murweh', u'budget', u'includ', u'rate', u'rise'] [u'museum', u'hop', u'steer', u'memorabilia'] [u'dive', u'pull'] [u'share', u'slump', u'warn'] [u'nasa', u'aura', u'mission', u'delay', u'time'] [u'council', u'look'] [u'festiv', u'attract', u'architectur', u'lead'] [u'mayor', u'look', u'better', u'council', u'financ'] [u'wide', u'food', u'group', u'name'] [u'nickel', u'project', u'move', u'closer', u'feder', u'fund'] [u'chang', u'commerci', u'abalon', u'catch', u'quota'] [u'nuclear', u'plan', u'propos', u'malle', u'wast', u'site'] [u'govt', u'oppos', u'nuke', u'dump', u'site'] [u'green', u'concern', u'nuke', u'wast', u'head', u'west'] [u'green', u'defend', u'publish', u'allow'] [u'jail', u'sentenc', u'overturn'] [u'implement', u'agricultur', u'research', u'chang'] [u'govt', u'oppos', u'wast', u'dump'] [u'ask', u'azaria', u'apolog'] [u'nurs', u'confer', u'look', u'workplac', u'violenc'] [u'oppn', u'say', u'vline', u'perform', u'rail'] [u'oversea', u'expertis', u'seek', u'chopper', u'crash', u'probe'] [u'parliament', u'hous', u'hous', u'gold', u'coast', u'artwork'] [u'philippin', u'begin', u'iraq', u'pullout'] [u'philippin', u'start', u'iraq', u'troop', u'withdraw'] [u'pilot', u'safe', u'crash', u'land'] [u'polic', u'call', u'tackl', u'dean', u'woe'] [u'polic', u'offer', u'tourist', u'travel', u'warn'] [u'polic', u'relaunch', u'miss', u'case'] [u'polic', u'search', u'grave', u'vandal'] [u'polic', u'seek', u'wit', u'assault'] [u'public', u'warn', u'hous', u'threat'] [u'health', u'defend', u'aid', u'servic', u'tender', u'decis'] [u'rabattoir', u'propon', u'call', u'coonambl', u'home'] [u'rate', u'rise', u'includ', u'murray', u'budget'] [u'refuge', u'group', u'back', u'visa', u'chang'] [u'relat', u'admit', u'see', u'hickey', u'chase', u'media'] [u'releas', u'whale', u'long', u'trip'] [u'renew', u'energi', u'polici'] [u'resid', u'hope', u'stringent', u'refineri', u'probe'] [u'reward', u'offer', u'inform', u'veget'] [u'riverina', u'support', u'visa', u'chang'] [u'robredo', u'crash', u'stuttgart'] [u'rural', u'women', u'motiv', u'talk'] [u'plan', u'nuke', u'wast', u'dump', u'site'] [u'scientist', u'map', u'eucalyptus'] [u'scud', u'fall', u'short'] [u'sharp', u'name', u'australia', u'captain'] [u'sharp', u'name', u'wallabi', u'captain'] [u'shire', u'risk', u'higher', u'year'] [u'smashnova', u'pistolesi', u'advanc', u'stanford'] [u'southern', u'cross', u'sign', u'feder', u'fund'] [u'srichaphan', u'overpow', u'defend', u'champ', u'ferreira'] [u'star', u'fear', u'troon', u'vicious', u'teeth'] [u'state', u'forc', u'govt', u'hand', u'wast', u'dump'] [u'survey', u'highlight', u'bruce', u'highway', u'issu'] [u'swede', u'reignit', u'guantanamo', u'tortur', u'fear'] [u'sydney', u'bronz', u'medallist', u'leav', u'china', u'team'] [u'talk', u'focus', u'power', u'station', u'land', u'sale'] [u'tarzan', u'tiger'] [u'tax', u'gambl', u'surf', u'club', u'fund'] [u'telstra', u'ditch', u'technolog', u'major', u'network'] [u'test', u'confirm', u'tour', u'cyclist', u'methadon'] [u'hurt', u'spanish', u'bull'] [u'jail', u'fraud'] [u'tidi', u'town', u'support', u'campaign', u'plastic'] [u'tiger', u'kill', u'florida', u'escap'] [u'apprentic', u'award', u'kerang', u'dairi', u'farmer'] [u'tour', u'start', u'earnest', u'stage'] [u'victorian', u'sit', u'heritag', u'list'] [u'iraq', u'intellig', u'bad', u'flaw'] [u'scarlett', u'live'] [u'union', u'concern', u'jail', u'food', u'prepar'] [u'unit', u'church', u'welcom', u'refuge', u'polici'] [u'aid', u'ambassador', u'jeer', u'thailand'] [u'reject', u'critic', u'aid', u'fight'] [u'rule', u'elect', u'delay'] [u'urg', u'philippin', u'pullout'] [u'vigilant', u'peacekeep', u'afghanistan'] [u'ventur', u'partner', u'seek', u'bauxit', u'deposit'] [u'minist', u'push', u'nation', u'wast', u'dump'] [u'vicroad', u'defend', u'bendigo', u'traffic', u'effort'] [u'violent', u'protest', u'greet', u'howard', u'melbourn'] [u'virgin', u'canberra', u'sydney', u'link', u'threat'] [u'vline', u'speak', u'warrnambool', u'concern'] [u'recognis', u'origin', u'custodian', u'stall'] [u'govt', u'angri', u'sluggish', u'upper', u'hous'] [u'warn', u'back', u'pont', u'declar'] [u'warn', u'rue', u'lose', u'opportun'] [u'weather', u'station', u'improv', u'bushfir', u'monitor'] [u'dont', u'want', u'nuclear', u'dump', u'beatti'] [u'william', u'readi', u'test', u'tyson'] [u'woman', u'alleg', u'weapon', u'long', u'attack'] [u'worsfold', u'question', u'sheed', u'confid', u'young'] [u'retail', u'sell', u'cigarett', u'minor'] [u'abbott', u'nelson', u'criticis', u'labor', u'pact'] [u'acci', u'rise', u'employ', u'super', u'contribut'] [u'warn', u'govt', u'reviv', u'nuclear', u'dump', u'plan'] [u'see', u'littl', u'chang', u'nuclear', u'wast', u'dispos'] [u'advisori', u'posit', u'requir', u'expertis', u'mayor'] [u'offic', u'recognis', u'outstand', u'servic'] [u'age', u'care', u'nurs', u'need', u'urgent', u'attent'] [u'agribusi', u'confer', u'examin', u'sector', u'outlook'] [u'hole', u'hole', u'look', u'royal', u'troon'] [u'aid', u'vaccin', u'trial', u'label', u'expens', u'flop'] [u'black', u'forc', u'reliv', u'world', u'horror'] [u'night', u'phone', u'flirt', u'cost', u'fortun'] [u'tear', u'beer', u'chines'] [u'dismiss', u'portland', u'midwiferi', u'program'] [u'anderson', u'luca', u'loggerhead', u'tulli', u'bypass'] [u'death', u'prompt', u'train', u'program'] [u'aussi', u'junior', u'pick', u'bronz', u'world', u'champ'] [u'aussi', u'readi', u'tour', u'climb'] [u'aussi', u'win', u'british', u'market'] [u'aust', u'name', u'solomon', u'mission', u'head'] [u'australian', u'arrest', u'peru', u'cocain', u'seizur'] [u'australia', u'kitt', u'bind', u'world'] [u'aust', u'standard', u'live', u'index'] [u'bathurst', u'host', u'univers', u'communiti', u'confer'] [u'beckham', u'ball', u'bid', u'million'] [u'beleagu', u'health', u'servic', u'track'] [u'bendigo', u'welcom', u'fortuna', u'villa', u'list'] [u'billiton', u'investig', u'chemic', u'inhal'] [u'criticis', u'mass', u'sack'] [u'breast', u'screen', u'fund', u'help', u'gippsland', u'women'] [u'bulgaria', u'await', u'news', u'second', u'hostag'] [u'calder', u'upgrad', u'doubt', u'cabinet'] [u'californian', u'wildfir', u'forc', u'evacu'] [u'bomb', u'kill', u'iraq'] [u'carr', u'deni', u'contact', u'westfield', u'chief'] [u'casey', u'levet', u'tie', u'troon', u'lead'] [u'caution', u'urg', u'larg', u'scale', u'drainag', u'project'] [u'centrelink', u'registr', u'fall', u'tableland'] [u'champion', u'sprinter', u'face', u'olymp', u'dope'] [u'chelsea', u'crespo', u'say', u'close', u'milan', u'switch'] [u'cherbourg', u'princip', u'reject', u'student', u'assault', u'claim'] [u'china', u'clean', u'gorg'] [u'convinc', u'terrorist', u'plan'] [u'citrus', u'grower', u'meet', u'gayndah'] [u'citi', u'properti', u'buyer', u'forc', u'region', u'area'] [u'coledal', u'call', u'perman', u'polic'] [u'collina', u'honour', u'english', u'univers'] [u'communiti', u'benefit', u'indigen', u'medic'] [u'compani', u'chang', u'unlik', u'affect', u'network'] [u'confus', u'surround', u'baralaba', u'ferri'] [u'conveyanc', u'go', u'onlin'] [u'costa', u'rica', u'qualifi', u'injuri', u'time', u'winner'] [u'council', u'make', u'hospit', u'site'] [u'council', u'plan', u'region', u'road', u'fund'] [u'council', u'take', u'court', u'action', u'artifici', u'lake'] [u'crow', u'docker', u'reach', u'game', u'mileston'] [u'crude', u'price', u'surg', u'market'] [u'custom', u'warn', u'scam'] [u'custom', u'finish', u'check', u'olympian'] [u'care', u'prove', u'difficult', u'tara', u'famili'] [u'deputi', u'attack', u'independ'] [u'dive', u'compani', u'plead', u'guilti', u'safeti', u'breach'] [u'doctor', u'awar', u'breast', u'cancer'] [u'downer', u'back', u'blair', u'govt', u'iraq'] [u'staff', u'prepar', u'public', u'demonstr'] [u'eadi', u'gambl', u'chanc', u'appeal'] [u'ask', u'probe', u'anti', u'govern', u'websit'] [u'elect', u'like', u'novemb', u'anderson'] [u'favourit', u'open'] [u'famili', u'hear', u'detent'] [u'farmer', u'anger', u'vffs', u'water', u'reform', u'support'] [u'farmer', u'battl', u'aphid', u'damag', u'winter'] [u'fatal', u'accid', u'prompt', u'intersect', u'review', u'call'] [u'festiv', u'fail', u'director'] [u'erad', u'cost'] [u'fisheri', u'alloc', u'anger', u'eden', u'fisherman'] [u'fish', u'struggl', u'quarter', u'final'] [u'banker', u'take', u'rein', u'port'] [u'deputi', u'premier', u'die'] [u'priest', u'expect', u'court', u'face', u'charg'] [u'kill', u'iraq', u'rocket', u'strike'] [u'bait', u'plan', u'divid', u'task', u'forc'] [u'fund', u'expect', u'mackay', u'sport', u'centr'] [u'strike', u'slat', u'murray', u'milker'] [u'girl', u'serious', u'burn', u'sydney', u'park'] [u'gold', u'coast', u'compani', u'win', u'beatti', u'prais'] [u'govern', u'updat', u'travel', u'warn'] [u'governor', u'mosul', u'gun'] [u'govt', u'announc', u'biosecur', u'australia', u'shake'] [u'govt', u'consid', u'polic', u'phone', u'tap', u'power'] [u'govt', u'urg', u'manag', u'babi', u'bonus', u'spend'] [u'green', u'control', u'summit'] [u'group', u'welcom', u'streamlin', u'land', u'transfer'] [u'hagan', u'consid', u'quit', u'maroon'] [u'harvey', u'blast', u'yorkshir'] [u'hick', u'habib', u'inform', u'legal', u'right'] [u'highway', u'zone', u'help', u'busi'] [u'hoggard', u'find', u'form', u'west', u'indi', u'struggl'] [u'hous', u'fund', u'boost', u'allevi', u'refug', u'need'] [u'howard', u'shirk', u'nuclear', u'respons', u'minist'] [u'human', u'remain', u'near', u'darwin', u'hospit'] [u'illawarra', u'health', u'board', u'recommend', u'sydney', u'merger'] [u'illawarra', u'health', u'graduat', u'help', u'communiti'] [u'immunis', u'initi', u'eas', u'clinic', u'strain'] [u'infant', u'blind', u'link', u'music', u'abil'] [u'iraqi', u'vow', u'crush', u'insurg'] [u'irwin', u'applaud', u'antarctica', u'footag', u'find'] [u'irwin', u'clear', u'antarct', u'antic'] [u'jam', u'hardi', u'attack', u'compo', u'plan'] [u'jazzi', u'open', u'mackay', u'art', u'festiv'] [u'judg', u'deni', u'dismiss', u'napster', u'case'] [u'kalgoorli', u'school', u'benefit', u'clinic', u'fund'] [u'kemp', u'cancel', u'north', u'coast', u'meet'] [u'kenya', u'warn', u'impend', u'famin'] [u'labor', u'distanc', u'anti', u'govt', u'websit'] [u'labor', u'question', u'cabinet', u'reshuffl'] [u'labour', u'shortag', u'expect', u'mine', u'expand'] [u'landmark', u'childhood', u'health', u'studi', u'extend'] [u'latham', u'labor', u'leader', u'strike', u'polici', u'pact'] [u'local', u'govern', u'address', u'chang', u'role'] [u'mafia', u'join', u'zeta', u'jone', u'pitt'] [u'maleni', u'supermarket', u'ahead'] [u'arrest', u'angri', u'protest'] [u'charg', u'throw'] [u'mandela', u'urg', u'action'] [u'front', u'court', u'tavern', u'attack'] [u'face', u'court', u'mice', u'chew'] [u'mine', u'compani', u'boost'] [u'minist', u'blame', u'colleg', u'surgeon', u'shortag'] [u'minist', u'confid', u'fishermen', u'support'] [u'ministri', u'elev', u'wont', u'stop', u'represent'] [u'moor', u'incit', u'anger', u'canada', u'elect', u'comment'] [u'nurs', u'place', u'offer', u'student'] [u'motorbik', u'accid', u'claim', u'teen', u'life'] [u'mountain', u'bike', u'rider', u'win', u'appeal'] [u'claim', u'nuclear', u'wast', u'store', u'bushland'] [u'criticis', u'bonvill', u'deviat', u'websit', u'chang'] [u'oppos', u'western', u'wast', u'dump', u'suggest'] [u'trash', u'jervi', u'dump', u'option'] [u'murali', u'lanka'] [u'nasa', u'head', u'vow', u'examin', u'option', u'save'] [u'nasa', u'launch', u'aura', u'satellit'] [u'nation', u'determin', u'kennedi'] [u'nation', u'tribut', u'leader'] [u'navi', u'frigat', u'missil', u'upgrad'] [u'mayor', u'promis', u'solv', u'port', u'hedland', u'financ'] [u'minist', u'seek', u'recognit', u'canberra'] [u'plan', u'outsid', u'prison', u'cook', u'minist'] [u'sell', u'trangi', u'research', u'station', u'land'] [u'launch', u'region', u'health', u'plan', u'katherin'] [u'plan', u'minist', u'hand', u'design', u'award'] [u'wont', u'lead', u'internet', u'bet', u'exchang'] [u'jail', u'isra', u'spi'] [u'older', u'mum', u'face', u'lower', u'ovarian', u'cancer', u'risk'] [u'omalley', u'strike', u'blow', u'troon'] [u'paraguay', u'stun', u'brazil'] [u'phelp', u'olymp', u'gold'] [u'phelp', u'miss', u'athen', u'backstrok', u'report'] [u'philippin', u'hostag', u'aliv'] [u'philippin', u'troop', u'pullout'] [u'pileggi', u'flee', u'fiji', u'train', u'tribun', u'hear'] [u'maintain', u'iraq', u'justifi'] [u'warn', u'wall', u'wall', u'labor', u'govern'] [u'polic', u'investig', u'attempt', u'bomb'] [u'polic', u'investig', u'playground'] [u'polic', u'legitim', u'follow', u'hickey'] [u'polic', u'probe', u'jail', u'bash'] [u'polic', u'work', u'identifi', u'skelet', u'remain'] [u'politician', u'religi', u'powerhous'] [u'power', u'offer', u'museum', u'solid', u'return'] [u'port', u'author', u'welcom', u'secur', u'vessel'] [u'port', u'rule'] [u'pratt', u'bounc', u'shambl'] [u'priest', u'leav', u'school', u'abus', u'alleg'] [u'promis', u'rain', u'fail', u'eventu', u'western'] [u'protest', u'vent', u'anger', u'minist', u'coastal', u'plan'] [u'agent', u'contest', u'world', u'livestock', u'sell', u'titl'] [u'citrus', u'export', u'soon', u'resum'] [u'rare', u'ulcer', u'outbreak', u'concern', u'health', u'offici'] [u'rate', u'hike', u'push', u'hous', u'price'] [u'reiq', u'expect', u'rate', u'rise'] [u'reptil', u'fossil', u'go', u'display'] [u'resid', u'tell', u'check', u'backyard', u'tree', u'diseas'] [u'resili', u'mcewen', u'battl'] [u'tinto', u'order', u'reinstat', u'sack', u'worker'] [u'riverland', u'welcom', u'station', u'heritag', u'list'] [u'road', u'close', u'sydney'] [u'robe', u'plan', u'plastic', u'free', u'futur'] [u'robinson', u'doubt', u'nation', u'clash'] [u'rofe', u'join', u'northant'] [u'grape', u'grower', u'welcom', u'legisl'] [u'saint', u'tiger', u'honour', u'tasmanian'] [u'move', u'protect', u'coastlin'] [u'savag', u'accept', u'birmingham', u'deal'] [u'seiz', u'crimin', u'asset', u'fund', u'polic', u'oper'] [u'shearer', u'threaten', u'leav', u'newcastl'] [u'shooter', u'group', u'call', u'mental', u'health', u'review'] [u'sixth', u'restaur', u'fin', u'weight', u'seafood'] [u'social', u'impair', u'rapist', u'avoid', u'prison'] [u'stanhop', u'criticis', u'premier', u'nuclear', u'dump'] [u'studi', u'aim', u'improv', u'aborigin', u'servic', u'alic'] [u'surg', u'floodwat', u'strand', u'million', u'south', u'asia'] [u'taiwan', u'businessman', u'jail', u'espionag'] [u'talk', u'address', u'hard', u'time', u'harden'] [u'tawana', u'sharehold', u'hope', u'diamond'] [u'technolog', u'provid', u'relief', u'maryval'] [u'teen', u'drag', u'race', u'crash'] [u'iraqi', u'kill', u'citi'] [u'terror', u'white', u'paper', u'releas'] [u'tidi', u'tambo', u'receiv', u'award'] [u'seed', u'schuettler', u'stuttgart'] [u'torr', u'strait', u'leader', u'govt', u'financi'] [u'torr', u'strait', u'local', u'cling', u'hope', u'miss', u'trio'] [u'holder', u'wont', u'automat', u'resid', u'latham'] [u'union', u'warn', u'alter', u'economi'] [u'marriag', u'law', u'stand'] [u'hous', u'back', u'aust', u'free', u'trade', u'deal'] [u'militari', u'offici', u'deni', u'hick', u'habib', u'abus'] [u'pass', u'bioterror', u'antidot', u'fund'] [u'save', u'best', u'athen', u'say', u'nugent'] [u'venus', u'cruis', u'second', u'round', u'stanford'] [u'group', u'fight', u'indigen', u'artefact'] [u'face', u'spencer', u'lawsuit'] [u'victim', u'push', u'jam', u'hardi', u'asbesto', u'charg'] [u'virenqu', u'light', u'bastill'] [u'govt', u'question', u'campbel', u'cabinet'] [u'wait', u'continu', u'fluorid', u'water', u'decis'] [u'wallabi', u'prepar', u'ideal', u'say', u'jone'] [u'terror', u'cost', u'billion', u'downer'] [u'water', u'alloc', u'review', u'call', u'public', u'help'] [u'urg', u'reconsid', u'constitut', u'amend'] [u'weightlift', u'hide', u'drug', u'tester'] [u'west', u'snag', u'teddi'] [u'widow', u'slay', u'aust', u'missionari', u'leav', u'india'] [u'wilcannia', u'choir', u'propos', u'hop', u'cheer', u'resid'] [u'woman', u'assault', u'park'] [u'wood', u'face', u'open', u'battl'] [u'zimbabw', u'rebel', u'champion', u'trophi'] [u'fear', u'dead', u'indian', u'school'] [u'abetz', u'say', u'websit', u'smear', u'proxi'] [u'aborigin', u'landscap', u'name', u'heritag', u'list'] [u'accus', u'rapist', u'enter', u'plea'] [u'govt', u'push', u'ahead', u'milu', u'plan'] [u'agassi', u'quarter', u'final'] [u'agricultur', u'colleg', u'welcom', u'healthi', u'review'] [u'hit', u'biosecur', u'restructur'] [u'alzheim', u'assoc', u'urg', u'better', u'staff'] [u'andr', u'alicia', u'silverston', u'vote', u'sexiest'] [u'anti', u'howard', u'websit', u'face', u'legal', u'action'] [u'attempt', u'trial', u'poison', u'collar', u'wild', u'control'] [u'aust', u'indonesia', u'probe', u'perth', u'man', u'link'] [u'australian', u'dairi', u'cattl', u'lure', u'chines'] [u'australian', u'economi', u'world', u'freest', u'think', u'tank'] [u'away', u'win', u'fremantl', u'success', u'connolli'] [u'battl', u'trainer', u'punt', u'bring', u'payday'] [u'battl', u'trainer', u'punt', u'bring', u'payday'] [u'beatti', u'hail', u'china', u'visit', u'success'] [u'beckham', u'ball', u'reveal', u'fake'] [u'beckham', u'right', u'blame', u'pitch', u'miss', u'ricardo'] [u'shortag', u'predict', u'adelaid', u'medic', u'centr'] [u'betfair', u'push', u'gambl', u'licenc'] [u'bird', u'spread', u'thailand'] [u'blignaut', u'sign', u'durham'] [u'boot', u'factori', u'expand', u'oper'] [u'bronz', u'javelin', u'junior', u'itali'] [u'bryant', u'stay', u'laker'] [u'buderim', u'battl', u'hole', u'road'] [u'bulgaria', u'scrambl', u'news', u'hostag', u'iraq'] [u'bunburi', u'council', u'defend', u'cemeteri', u'claim'] [u'bush', u'approv', u'free', u'trade', u'pact'] [u'busi', u'assess', u'feder', u'award', u'chang', u'impact'] [u'call', u'spray', u'halt', u'water', u'catchment'] [u'carey', u'help', u'coach', u'crow'] [u'carr', u'wont', u'save', u'job'] [u'casey', u'levet', u'tie', u'british', u'open', u'lead'] [u'cessnock', u'hunt'] [u'chamber', u'research', u'ground', u'north'] [u'charlton', u'report', u'chelsea', u'cole', u'loan'] [u'child', u'burn', u'accident', u'polic'] [u'china', u'ban', u'abort', u'base', u'babi', u'gender'] [u'citrus', u'inspector', u'urgent', u'need'] [u'citrus', u'tree', u'destroy'] [u'contend', u'reveal', u'mountain'] [u'crespo', u'join', u'milan', u'loan', u'chelsea'] [u'crown', u'prosecutor', u'visit', u'court'] [u'democrat', u'like', u'nuclear', u'dump'] [u'digit', u'power', u'meter', u'allow', u'cheaper', u'bill'] [u'doco', u'expos', u'racial', u'hatr', u'british', u'right'] [u'doctor', u'region', u'women'] [u'dont', u'panic', u'price', u'home', u'owner', u'tell'] [u'doubt', u'futur'] [u'dozen', u'indian', u'school', u'inferno'] [u'drink', u'drive', u'skate', u'doyl'] [u'driver', u'caution', u'urg', u'crash'] [u'eagl', u'defus', u'bomber'] [u'earli', u'start', u'bushfir', u'season'] [u'emir', u'price', u'tendulkar', u'head'] [u'famili', u'celebr', u'lynch', u'mileston'] [u'famili', u'celebr', u'lynch', u'sport', u'achiev'] [u'feder', u'lead', u'liverpool', u'shop', u'protest'] [u'filipino', u'hostag', u'return', u'home', u'tap', u'messag'] [u'filipino', u'troop', u'begin', u'iraq', u'pullout'] [u'fire', u'feral', u'blame', u'speci', u'declin'] [u'fish', u'strategi', u'target', u'recreat', u'angler'] [u'fletcher', u'lose', u'teeth', u'bomber', u'slump'] [u'tablet', u'purchas', u'lead', u'tare', u'arrest'] [u'chess', u'champion', u'detain', u'japan'] [u'east', u'timor', u'governor', u'refus', u'jail'] [u'polic', u'offic', u'court', u'databas', u'misus'] [u'priest', u'face', u'child', u'charg'] [u'worker', u'charg', u'steal', u'waca'] [u'young', u'nation', u'presid', u'die', u'crash'] [u'forum', u'hear', u'need', u'mental', u'health', u'reform'] [u'french', u'continu', u'tour', u'celebr'] [u'fruit', u'grower', u'want', u'clarif', u'quarantin'] [u'fund', u'cut', u'council', u'water', u'system'] [u'gaudio', u'book', u'place', u'stuttgart', u'quarter'] [u'geraldton', u'port', u'improv', u'mix', u'reaction'] [u'gibson', u'seiz', u'lead', u'open', u'round', u'york'] [u'girl', u'alight', u'polic'] [u'grampian', u'promot', u'criticis', u'cultur'] [u'grower', u'start'] [u'hama', u'milit', u'kill', u'shoot'] [u'hawk', u'black', u'hole', u'backflip'] [u'health', u'catastroph', u'loom', u'sudan'] [u'hickey', u'inquest', u'adjourn'] [u'hous', u'crisi', u'put', u'homeless', u'canva'] [u'howard', u'lie', u'websit', u'deni', u'labor', u'tie'] [u'illawarra', u'call', u'unfair', u'dismiss', u'chang'] [u'indigen', u'council', u'count', u'popul'] [u'indonesia', u'allow', u'newcrest', u'protect', u'forest'] [u'inquiri', u'examin', u'travel', u'claim'] [u'intellig', u'inquiri', u'hamstr', u'rudd', u'say'] [u'ipod', u'sale', u'sweeten', u'appl', u'profit'] [u'iraqi', u'foreign', u'ministri', u'secur', u'chief', u'kill'] [u'israel', u'hop', u'resum', u'tie'] [u'jaguar', u'rule', u'earli', u'releas', u'webber'] [u'jewish', u'headston', u'smash'] [u'jone', u'blast', u'black', u'tactic'] [u'jone', u'leap', u'athen', u'olymp'] [u'kookaburra', u'thrash', u'kiwi', u'cairn'] [u'labor', u'promis', u'extra', u'mris', u'hospit'] [u'labor', u'seek', u'isra', u'brief'] [u'lake', u'creek', u'money', u'hand'] [u'larg', u'turnov', u'vanuatu', u'elect'] [u'legal', u'action', u'threaten', u'cull'] [u'legal', u'action', u'leav', u'last', u'council', u'cost'] [u'lib', u'concern', u'labor', u'public', u'servic', u'plan'] [u'licens', u'problem', u'delay', u'grafton', u'tare', u'flight'] [u'life', u'skill', u'program', u'benefit', u'gambier', u'youth'] [u'lock', u'robinson', u'doubt', u'black'] [u'loan', u'consid', u'rural', u'age', u'care'] [u'luczak', u'pratt', u'crash'] [u'mandela', u'call', u'aid', u'fund'] [u'mandela', u'play', u'editor', u'african', u'newspap'] [u'court', u'collect'] [u'custodi', u'stab', u'incid'] [u'interview', u'extens', u'search'] [u'manou', u'appoint', u'vice', u'captainci'] [u'mat', u'season', u'spark', u'whyalla', u'bait'] [u'media', u'resourc', u'stock', u'lead', u'higher'] [u'murray', u'council', u'sted', u'protest'] [u'minist', u'call', u'rural', u'health', u'studi', u'incent'] [u'minist', u'defend', u'research', u'station', u'closur'] [u'miss', u'document', u'halt', u'nuclear', u'arm', u'research'] [u'monsoon', u'rain', u'wreak', u'havoc', u'south', u'asia'] [u'moratorium', u'need', u'fund', u'cut'] [u'abus', u'case', u'uncov', u'iraq'] [u'bird', u'outbreak', u'vietnam'] [u'morley', u'like', u'australia'] [u'mountain', u'biker', u'ponder', u'olymp', u'appeal'] [u'criticis', u'maritim', u'safeti', u'brief'] [u'dismiss', u'port', u'hedland', u'plant', u'rumour'] [u'gambier', u'welcom', u'newest', u'councillor'] [u'minist', u'reaffirm', u'calder', u'fund'] [u'shepparton', u'track', u'har', u'local', u'race'] [u'alloc', u'murray', u'irrig'] [u'american', u'troop', u'olymp', u'secur'] [u'proof', u'school', u'teacher', u'terror', u'leader'] [u'govt', u'blame', u'sydney', u'rail', u'run', u'time'] [u'health', u'defend', u'girl', u'surgeri', u'cancel'] [u'move', u'coastal', u'clear', u'confus'] [u'redfern', u'polic', u'resourc'] [u'home', u'raid', u'drug', u'oper'] [u'unsatisfi', u'israel', u'respons'] [u'outdat', u'cultur', u'blame', u'male', u'nurs', u'shortag'] [u'palestinian', u'play', u'envoy', u'decis'] [u'palm', u'theft', u'prompt', u'polic', u'call'] [u'paranoid', u'posti', u'fear', u'drug', u'plant', u'team', u'sourc'] [u'extend', u'burswood', u'offer'] [u'secur', u'despit', u'trade', u'deal', u'vail'] [u'perth', u'man', u'conspiraci', u'case', u'flimsi'] [u'philippin', u'begin', u'withdraw', u'iraq', u'forc'] [u'pie', u'rock', u'tarrant', u'injuri'] [u'bait', u'woman', u'cite', u'anim', u'cruelti'] [u'pileggi', u'lose', u'olymp', u'appeal'] [u'pileggi', u'wait', u'olymp', u'verdict'] [u'say', u'philippin', u'give', u'terror'] [u'polic', u'charg', u'escap', u'relat'] [u'polic', u'unsur', u'girl'] [u'polic', u'welcom', u'power'] [u'port', u'secur', u'head', u'ruddock', u'visit'] [u'prison', u'train', u'centr', u'address', u'staff', u'woe'] [u'qraa', u'hold', u'reef', u'zone', u'brief'] [u'rooster', u'dragon'] [u'rural', u'consid', u'specialist', u'upgrad'] [u'russia', u'richest', u'plead', u'innoc', u'fraud'] [u'counter', u'port', u'lincoln', u'school', u'concern'] [u'firm', u'develop', u'shark', u'shield', u'board'] [u'tree', u'farm', u'celebr', u'wood', u'chip', u'export'] [u'second', u'bodi', u'retriev', u'river', u'iraq'] [u'share', u'fall', u'despit', u'optimist', u'data'] [u'shearer', u'deni', u'newcastl', u'ultimatum'] [u'shire', u'confid', u'mincor', u'appeal', u'decis'] [u'slim', u'fast', u'shed', u'whoopi', u'goldberg'] [u'soprano', u'lead', u'emmi', u'nomin'] [u'staff', u'disput', u'aapt', u'centr', u'condit'] [u'surgeon', u'amput', u'patient', u'peni'] [u'suspend', u'fine', u'thoma'] [u'swift', u'sink', u'novocastrian'] [u'taint', u'supplement', u'blame', u'dope', u'test', u'say'] [u'talk', u'resolv', u'cull', u'stand'] [u'taskforc', u'welcom', u'biosecur', u'chang'] [u'teacher', u'concern', u'prep', u'year', u'trial'] [u'tennant', u'creek', u'festiv', u'go', u'alcohol', u'free'] [u'tesk', u'defend', u'classic', u'titl'] [u'tobacco', u'sale', u'research', u'disturb', u'cancer', u'fund'] [u'toddler', u'resuscit', u'hour'] [u'tomato', u'glut', u'prompt', u'grower', u'diversif', u'call'] [u'townsvill', u'worst', u'tobacco', u'sale', u'offend'] [u'trap', u'shortag', u'highlight', u'wild', u'problem'] [u'line', u'defend', u'ticket', u'price', u'jump'] [u'tyson', u'tire', u'train', u'readi', u'fight', u'say', u'trainer'] [u'union', u'call', u'prison', u'guard'] [u'union', u'move', u'kangara', u'sack'] [u'warn', u'impend', u'aid', u'crisi', u'burma'] [u'hurdler', u'fail', u'drug', u'test', u'report'] [u'name', u'armstrong', u'replac', u'athen'] [u'say', u'coalit', u'strong', u'despit', u'philippin'] [u'sprinter', u'admit', u'posit', u'dope', u'test'] [u'dairi', u'worker', u'start', u'indefinit', u'strike'] [u'govt', u'defend', u'rail', u'inquiri'] [u'rail', u'network', u'face', u'independ', u'safeti', u'probe'] [u'virgin', u'gold', u'coast', u'busi', u'forum'] [u'volunt', u'shortag', u'hit', u'landcar'] [u'appoint', u'counter', u'terror', u'polic', u'command'] [u'wallabi', u'readi', u'condit'] [u'western', u'benefit', u'china', u'agreement'] [u'west', u'indi', u'scrape', u'past'] [u'wheat', u'group', u'threaten', u'withdraw', u'iraq', u'debt'] [u'wild', u'deleg', u'pursu', u'minist'] [u'wodonga', u'await', u'rail', u'line', u'decis'] [u'wodonga', u'woman', u'charg', u'son', u'murder'] [u'woman', u'stand', u'trial', u'invent', u'anti', u'semit'] [u'work', u'begin', u'erad', u'yellow', u'crazi', u'ant'] [u'examin', u'drug', u'alcohol', u'claim'] [u'black', u'hold', u'narrow', u'lead', u'wallabi'] [u'black', u'retain', u'bledislo'] [u'armstrong', u'dismay', u'lemond', u'accus'] [u'armstrong', u'strength', u'ogradi', u'plung'] [u'armstrong', u'strength', u'ogradi', u'plung'] [u'aust', u'creat', u'drug', u'label', u'standard'] [u'author', u'ensur', u'write', u'wall'] [u'barclay', u'freez', u'right', u'parti', u'account'] [u'blue', u'hold', u'bounc', u'roo'] [u'blue', u'half', u'time'] [u'boe', u'post', u'recruit', u'drive'] [u'brisban', u'lay', u'welcom', u'timor', u'troop'] [u'byrd', u'shoot', u'vault', u'open', u'lead'] [u'cameroon', u'armi', u'releas', u'journalist'] [u'canberra', u'properti', u'valu', u'climb'] [u'bomb', u'target', u'iraqi', u'minist'] [u'bomb', u'target', u'convoy', u'iraq'] [u'chines', u'prospector', u'stori', u'tell', u'tour', u'rout'] [u'commerci', u'help', u'high'] [u'connolli', u'prais', u'gutsi', u'docker'] [u'costello', u'push', u'labor'] [u'council', u'chang', u'overwhelm'] [u'cowboy', u'round', u'eel'] [u'csiro', u'say', u'kangaroo', u'cull', u'long', u'term', u'focus'] [u'cult', u'leader', u'accus', u'abus'] [u'democrat', u'seek', u'youth', u'viewpoint'] [u'docker', u'edg', u'crow', u'thriller'] [u'docker', u'readi', u'adelaid', u'litmus', u'test'] [u'domin', u'gaudio', u'stuttgart', u'semi'] [u'month', u'jail', u'escape'] [u'atsic', u'deni', u'splurg'] [u'eye', u'labor', u'back', u'trade', u'agreement'] [u'worker', u'higher', u'cancer', u'risk'] [u'fishermen', u'challeng', u'kelp', u'studi'] [u'arrest', u'indian', u'school'] [u'flood', u'affect', u'million', u'asia'] [u'east', u'timor', u'governor', u'begin', u'jail', u'term'] [u'world', u'number', u'rio', u'retir'] [u'kill', u'victorian', u'road'] [u'french', u'worker', u'free', u'gaza', u'abduct'] [u'gaddafi', u'set', u'sight', u'crystal', u'palac', u'report'] [u'ghan', u'help', u'boost', u'tourism', u'manag', u'say'] [u'gibernau', u'take', u'provision', u'pole', u'sachsenr'] [u'govt', u'explain', u'allawi', u'claim', u'brown'] [u'guantanamo', u'tribun', u'start', u'week'] [u'haa', u'stun', u'agassi'] [u'hamilton', u'tour'] [u'happi', u'lion', u'lynch'] [u'heavi', u'dump', u'draw', u'crowd', u'snowi', u'mountain'] [u'heavi', u'snow', u'caus', u'chao', u'road'] [u'heavi', u'snow', u'caus', u'havoc', u'road'] [u'heavi', u'snow', u'cut', u'resort'] [u'india', u'bangladesh', u'cruis', u'easi', u'win'] [u'indigen', u'tasmanian', u'protest', u'legal', u'chang'] [u'iraqi', u'shoot', u'inmat', u'report'] [u'joint', u'union', u'worker'] [u'kendal', u'lead', u'cull', u'cut', u'aussi'] [u'kendal', u'lead', u'cull', u'aussi'] [u'kidnapp', u'releas', u'gaza', u'polic', u'chief', u'offici', u'say'] [u'kidnap', u'spark', u'gaza', u'chao'] [u'kookaburra', u'clinch', u'seri', u'kiwi'] [u'kookaburra', u'complet', u'seri', u'kiwi'] [u'land', u'handov', u'recognis', u'tradit', u'owner'] [u'dope', u'charg', u'athlet', u'end', u'athen'] [u'tape', u'futur', u'civic', u'develop'] [u'live', u'grenad', u'polic', u'station'] [u'love', u'fear', u'olymp', u'drug', u'cheat'] [u'mainten', u'avoid', u'school', u'blast'] [u'charg', u'inter', u'school', u'thredbo', u'fight'] [u'get', u'retrial', u'foster', u'daughter', u'death'] [u'guilti', u'import', u'human', u'growth', u'hormon'] [u'order', u'restor', u'tree', u'clear', u'land'] [u'martha', u'stewart', u'jail', u'month'] [u'mental', u'health', u'need', u'decad', u'work'] [u'milosev', u'health', u'delay', u'trial'] [u'missionari', u'widow', u'arriv', u'aust'] [u'mosley', u'stay', u'presid'] [u'mourinho', u'set', u'deadlin', u'drogba', u'tiago'] [u'murder', u'investig', u'launch', u'woman', u'throw'] [u'nasa', u'shoot', u'mercuri', u'year', u'break'] [u'music', u'lose', u'franc'] [u'minist', u'head', u'asian', u'tour'] [u'opposit', u'say', u'nation', u'wast', u'dump'] [u'aussi', u'troop', u'train'] [u'panther', u'pummel', u'raider'] [u'parent', u'mourn', u'indian', u'school'] [u'park', u'ralli', u'lpga', u'lead', u'tesk', u'troubl'] [u'pie', u'lead', u'lion'] [u'polic', u'investig', u'attempt', u'abduct'] [u'polic', u'investig', u'synagogu', u'attack'] [u'polic', u'seek', u'wit', u'ballarat', u'assault'] [u'polic', u'solv', u'playground', u'mysteri'] [u'prepar', u'destroy', u'citrus', u'tree'] [u'racq', u'want', u'freedom', u'choic', u'motorist'] [u'refuge', u'need', u'help', u'adjust', u'region'] [u'russian', u'magnat', u'slam', u'shame', u'charg'] [u'saint', u'dockland'] [u'saint', u'tame', u'tiger'] [u'scan', u'expos', u'check', u'worker', u'fake', u'robberi'] [u'scientist', u'discov', u'biggest', u'raindrop'] [u'search', u'continu', u'miss', u'yachtsman'] [u'secur', u'gaza', u'review'] [u'serena', u'vow', u'revers', u'form', u'slump'] [u'citi', u'censor', u'singapor'] [u'share', u'goal', u'need', u'buffalo', u'disput'] [u'sharp', u'pois', u'bledislo', u'battl'] [u'sharp', u'readi', u'black'] [u'specialist', u'shortag', u'caus', u'problem'] [u'springbok', u'hold', u'island'] [u'springborg', u'attack', u'beatti', u'grant'] [u'studi', u'find', u'link', u'kid', u'obes'] [u'sweetenham', u'play', u'british', u'pool', u'hop'] [u'synagogu', u'attack', u'unaccept'] [u'hold', u'hostag', u'khan', u'youni'] [u'tour', u'organis', u'lose', u'appeal', u'rider'] [u'traffic', u'offend', u'hop', u'board'] [u'truck', u'driver', u'kill', u'iraq'] [u'sydney', u'women', u'kill'] [u'debat', u'design', u'babi', u'rule'] [u'rethink', u'design', u'babi', u'rule'] [u'say', u'guantanamo', u'prison', u'inform', u'right'] [u'sprinter', u'grime', u'test', u'posit', u'report'] [u'stock', u'fall', u'economi', u'profit', u'worri'] [u'violent', u'incid', u'overlook'] [u'polic', u'captur', u'escape'] [u'weather', u'warn', u'issu'] [u'william', u'davenport', u'reach', u'stanford', u'semi', u'final'] [u'william', u'send', u'tiger', u'stun', u'storm'] [u'william', u'turn', u'pizzonia'] [u'woman', u'die', u'throw'] [u'zarqawi', u'claim', u'attack', u'iraqi', u'minist'] [u'kill', u'fallujah', u'strike', u'report'] [u'accus', u'desert', u'famili', u'head', u'japan'] [u'expand', u'water', u'tank', u'rebat'] [u'agassi', u'scale', u'schedul'] [u'aguilar', u'strike', u'colombia', u'reach'] [u'allawi', u'claim', u'polic', u'matter', u'hill', u'say'] [u'alley', u'victim', u'identifi', u'polic'] [u'teacher', u'undergo', u'crimin', u'check'] [u'ancient', u'tomb', u'uncov', u'crete'] [u'armstrong', u'win', u'stage', u'rival', u'crack'] [u'aussi', u'chase', u'byrd'] [u'australian', u'wife', u'albanian', u'throne', u'pretend', u'die'] [u'intensifi', u'peac', u'talk', u'sudan'] [u'ayala', u'argentina', u'knock', u'host', u'peru'] [u'basso', u'confirm', u'overal', u'credenti', u'second'] [u'beer', u'regatta', u'draw', u'record', u'field'] [u'beij', u'olymp', u'question', u'asian', u'open'] [u'biaggi', u'pole', u'german', u'grand', u'prix'] [u'britain', u'stag', u'terror', u'attack', u'drill'] [u'bronco', u'break', u'newcastl', u'hoodoo'] [u'bulldog', u'sink', u'shark'] [u'butcher', u'return', u'windi', u'seri'] [u'cannon', u'suspend', u'bledislo', u'punch'] [u'cat', u'claw', u'past', u'swan', u'classic'] [u'cat', u'swan', u'lock', u'tight', u'battl'] [u'chelsea', u'draw', u'mourinho', u'friend'] [u'china', u'learn', u'qlds', u'ambul', u'expert'] [u'coal', u'boom', u'provid', u'secur'] [u'communiti', u'fight', u'charm', u'dirt', u'road'] [u'consum', u'dont', u'want', u'telstra', u'privatis', u'democrat'] [u'copi', u'warrior', u'defeat', u'spirit', u'rabbitoh'] [u'csiro', u'say', u'nuclear', u'wast', u'pose', u'threat'] [u'davey', u'injuri', u'mar', u'melbourn'] [u'deleg', u'fear', u'lumber', u'aid', u'road', u'fail'] [u'demon', u'lead', u'dog', u'half', u'time'] [u'director', u'heer', u'get', u'fist', u'film'] [u'diseas', u'expect', u'flood', u'wake'] [u'earthquak', u'hit', u'indonesian', u'island'] [u'exercis', u'pitch', u'black', u'launch', u'darwin'] [u'fender', u'icon', u'strat', u'guitar', u'turn'] [u'gaudio', u'set', u'argentin', u'final', u'stuttgart'] [u'swear', u'govt', u'minist'] [u'govt', u'extend', u'plastic', u'offer'] [u'govt', u'refin', u'telstra', u'legisl'] [u'govt', u'muddl', u'risk', u'job'] [u'greek', u'dancer', u'break', u'world', u'record'] [u'green', u'demand', u'aerial', u'spray', u'catchment'] [u'haa', u'kiefer', u'german', u'final'] [u'hamilton', u'head', u'gun', u'troon', u'climax'] [u'high', u'countri', u'blast', u'heavi', u'snow'] [u'hill', u'defend', u'intellig'] [u'home', u'hope', u'verkerk', u'meet', u'gonzalez', u'amersfoort'] [u'iaaf', u'recommend', u'strip', u'relay', u'gold', u'medal'] [u'iran', u'arrest', u'qaeda', u'backer'] [u'iran', u'court', u'tell', u'canadian', u'tortur', u'death'] [u'iran', u'halt', u'controversi', u'kazemi', u'trial'] [u'iran', u'judiciari', u'ban', u'reform', u'newspap'] [u'iraqi', u'okay', u'strike'] [u'itali', u'deni', u'asylum', u'ship', u'migrant', u'report'] [u'japan', u'make', u'world', u'smallest', u'diamond', u'ring'] [u'japan', u'pledg', u'burma', u'despit', u'detent'] [u'jetstar', u'defend', u'pilot', u'near', u'miss'] [u'klos', u'replac', u'moor', u'ranger', u'captain'] [u'laptop', u'rollout', u'teacher', u'loom'] [u'latham', u'babi', u'rumour'] [u'chang', u'urg', u'race', u'base', u'attack'] [u'lend', u'leas', u'chief', u'play', u'properti'] [u'lister', u'leap', u'olymp', u'team'] [u'local', u'warn', u'rise', u'shark', u'sight'] [u'locatelli', u'win', u'sachsenr'] [u'lovett', u'iron', u'face', u'african', u'surf'] [u'magic', u'mountain', u'close', u'final', u'time'] [u'malaysia', u'releas', u'muslim', u'milit', u'newspap'] [u'mandela', u'mark', u'birthday'] [u'die', u'hit', u'tree'] [u'question'] [u'market', u'organis', u'work', u'park', u'problem'] [u'marvel', u'challeng', u'disney', u'superhero', u'duel'] [u'mayo', u'close', u'call', u'quit'] [u'melbourn', u'artist', u'defend', u'thorp', u'piec'] [u'melbourn', u'eye', u'zorba', u'greek', u'record'] [u'missionari', u'consid', u'return', u'india'] [u'singapor', u'rein', u'month'] [u'major', u'chang', u'expect', u'report'] [u'help', u'bushfir', u'safe', u'home', u'design'] [u'motorist', u'warn', u'hazard', u'condit'] [u'overdos', u'victim', u'mother', u'want', u'methadon', u'figur'] [u'pakistan', u'lanka', u'cruis', u'easi', u'win'] [u'pedestrian', u'injur', u'crash'] [u'philippin', u'complet', u'pullout', u'monday'] [u'polic', u'investig', u'alic', u'assault'] [u'polic', u'investig'] [u'polic', u'probe', u'racist', u'graffiti', u'attack'] [u'power', u'hammer', u'hawk'] [u'prize', u'chicken', u'peck', u'order'] [u'psychologist', u'urg', u'closer', u'scrutini', u'anim', u'abus'] [u'queen', u'knight', u'web', u'inventor'] [u'rebel', u'walk', u'sudan', u'peac', u'talk'] [u'rspca', u'flag', u'kid', u'buy', u'pet'] [u'second', u'russian', u'journalist', u'dead', u'moscow'] [u'sharp', u'leav', u'hollow', u'bledislo', u'defeat'] [u'nanci', u'punk', u'rock', u'histori', u'display'] [u'small', u'busi', u'warn', u'credit', u'card', u'fraud'] [u'snowstorm', u'worst', u'year'] [u'sophist', u'method', u'forg', u'copi', u'proof', u'euro'] [u'south', u'korean', u'polic', u'arrest', u'suspect', u'serial', u'killer'] [u'australian', u'die', u'smash'] [u'thompson', u'land', u'spanish', u'victori'] [u'thousand', u'march', u'gaza', u'secur', u'chief'] [u'tire', u'jone', u'pull', u'trial'] [u'launch', u'fallujah', u'strike'] [u'vail', u'maintain', u'local', u'industri'] [u'venus', u'face', u'davenport', u'stanford', u'final'] [u'govt', u'launch', u'smear', u'campaign'] [u'boati', u'join', u'search', u'miss', u'yacht'] [u'warrior', u'defeat', u'spirit', u'rabbitoh'] [u'warrior', u'lead', u'rabbitoh', u'auckland'] [u'wild', u'weather', u'caus', u'chao'] [u'wmds', u'bush', u'main', u'focus', u'clinton'] [u'world', u'largest', u'commerci', u'satellit', u'provid'] [u'yang', u'estil', u'tie', u'lpga', u'lead'] [u'kill', u'baghdad', u'bomb', u'attack'] [u'wound', u'palestinian', u'clash'] [u'kill', u'indian', u'crash'] [u'accc', u'commit', u'competit', u'fuel', u'market', u'samuel'] [u'advocaci', u'servic', u'threat'] [u'albani', u'council', u'discuss', u'marina', u'recommend'] [u'alburi', u'council', u'reconsid', u'bridg', u'demolit'] [u'concern', u'hour', u'blueprint'] [u'arafat', u'name', u'secur', u'chief', u'demot', u'cousin'] [u'begin', u'week', u'posit'] [u'athlet', u'australia', u'investig', u'alleg', u'drug'] [u'miss', u'boat', u'sink', u'indonesia'] [u'australian', u'hold', u'olymp', u'plan'] [u'author', u'ignor', u'nimbin', u'crime', u'homeless'] [u'award', u'recognis', u'canberra', u'artist'] [u'bait', u'drum', u'line', u'better', u'shark', u'net', u'academ'] [u'bakhtiyari', u'launch', u'legal', u'action'] [u'bangladesh', u'spinner', u'razzaq', u'report', u'suspect'] [u'beer', u'regatta', u'pull', u'spectat'] [u'benalla', u'ratepay', u'spend', u'spree', u'halt'] [u'biaggi', u'close', u'rossi', u'german'] [u'bid', u'close', u'revamp', u'soccer', u'competit'] [u'bolivian', u'presid', u'tip', u'referendum'] [u'bomb', u'attack', u'hit', u'western', u'russia'] [u'bomb', u'kill', u'senior', u'hezbollah', u'figur'] [u'boulia', u'mayor', u'hail', u'camel', u'race', u'success'] [u'brack', u'tour', u'encompass', u'visit'] [u'breez', u'freez', u'break', u'hill'] [u'bronco', u'want', u'protect', u'special'] [u'bunburi', u'hope'] [u'burni', u'mayor', u'ask', u'explain', u'health', u'servic'] [u'bush', u'latham', u'critic', u'unhelp', u'clinton', u'say'] [u'byrd', u'win', u'open'] [u'whale', u'moratorium', u'domin'] [u'canada', u'recal', u'ambassador', u'iran'] [u'canberra', u'supplier', u'push', u'higher', u'price', u'rise'] [u'capit', u'gain', u'cut', u'hurt', u'incom', u'earner'] [u'chef', u'seek', u'cook', u'tasmania'] [u'china', u'economi', u'outstrip', u'energi', u'suppli'] [u'china', u'flood', u'season', u'leav', u'dead'] [u'cold', u'snap', u'push', u'power', u'usag', u'high'] [u'cold', u'weather', u'bring', u'mix', u'bless', u'farmer'] [u'cole', u'shunt', u'fulham', u'free', u'transfer'] [u'coliban', u'defend', u'price', u'restructur'] [u'concern', u'grow', u'miss', u'yachtsman'] [u'concern', u'rise', u'grafton', u'research', u'station', u'futur'] [u'controversi', u'penalti', u'set', u'brazil'] [u'costello', u'hird', u'launch', u'life', u'skill', u'initi'] [u'council', u'approv', u'bridg', u'brisban'] [u'council', u'move', u'increas', u'casual', u'secur'] [u'council', u'warn', u'duck', u'plant', u'closur'] [u'court', u'hear', u'agent', u'pose', u'journalist', u'expos'] [u'dale', u'earnhardt', u'burn', u'crash'] [u'darwin', u'port', u'inadequ', u'olympia', u'resourc'] [u'davenport', u'beat', u'venus', u'time'] [u'detect', u'investig', u'riverina', u'blaze'] [u'dever', u'crawford', u'score', u'olymp', u'trial', u'win'] [u'dinosaur', u'stamped', u'add', u'heritag', u'list'] [u'doctor', u'confirm', u'health', u'servic', u'amalgam', u'plan'] [u'drought', u'end', u'tableland', u'shire'] [u'drug', u'delay', u'prevent', u'alzheim', u'studi'] [u'dunn', u'win', u'career', u'lpga', u'titl'] [u'eadi', u'clear', u'drug', u'traffic'] [u'emerg', u'servic', u'ask', u'explain', u'respons'] [u'energi', u'meter', u'allow', u'cost', u'power', u'access'] [u'specialist', u'recruit', u'hobart', u'say'] [u'environment', u'veranda', u'award', u'honour'] [u'estrogen', u'link', u'male', u'drive'] [u'timor', u'hold', u'better', u'boundari', u'deal'] [u'eucalyptus', u'lure', u'crow', u'australia'] [u'evid', u'mount', u'carr'] [u'father', u'cours', u'earn', u'high', u'prais'] [u'fear', u'racial', u'graffiti', u'attack', u'continu'] [u'feder', u'govt', u'control', u'murray', u'river', u'democrat'] [u'walk', u'mountain', u'pile'] [u'final', u'curtain', u'tosca'] [u'deputi', u'premier', u'lay', u'rest'] [u'foster', u'group', u'sell', u'properti', u'busi'] [u'kill', u'latest', u'aceh', u'violenc'] [u'franc', u'protest', u'sharon', u'emigr', u'jew'] [u'ghan', u'late', u'unusu', u'incid'] [u'gippsland', u'boati', u'welcom', u'safeti', u'fund'] [u'gold', u'coast', u'prepar', u'indi', u'construct'] [u'goldfield', u'tip', u'heritag', u'list', u'inclus'] [u'gonzalez', u'restor', u'spanish', u'tour', u'pride'] [u'govt', u'analys', u'iraq', u'intellig', u'report'] [u'govt', u'backflip', u'save', u'sydney', u'outlet', u'centr'] [u'govt', u'begin', u'negoti', u'indigen', u'fund'] [u'govt', u'formul', u'year', u'sydney', u'water', u'plan'] [u'grampian', u'council', u'lobbi', u'rail', u'chang'] [u'grant', u'council', u'expect', u'adopt', u'budget'] [u'haa', u'beat', u'kiefer', u'claim', u'titl'] [u'hamilton', u'beat', u'open', u'showdown'] [u'harden', u'consid', u'tourism', u'futur'] [u'heathrow', u'airport', u'anti', u'terror', u'plan', u'road'] [u'henin', u'hardenn', u'hope', u'olymp', u'return'] [u'hezbollah', u'vow', u'reveng', u'milit', u'kill'] [u'home', u'hope', u'verkerk', u'claim', u'amersfoort', u'titl'] [u'hous', u'boom', u'busi', u'chinchilla', u'builder'] [u'howard', u'tri', u'crime'] [u'hunter', u'offens', u'world', u'whale', u'talk'] [u'icac', u'wrap', u'parliamentari', u'entitl', u'inquiri'] [u'say', u'regim', u'count', u'india'] [u'illawarra', u'clean', u'wild', u'weather'] [u'indian', u'polic', u'question', u'teacher', u'school'] [u'indigen', u'group', u'celebr', u'wast', u'dump', u'decis'] [u'investig', u'begin', u'men', u'death'] [u'iraq', u'authoris', u'dead', u'strike'] [u'iraqi', u'minist', u'investig', u'allawi', u'execut'] [u'item', u'melbourn'] [u'jetstar', u'reject', u'sweatshop', u'claim'] [u'johnson', u'lose', u'appeal', u'sprint', u'doubl', u'athen'] [u'kabul', u'rocket', u'attack', u'kill'] [u'kakadu', u'scrap', u'cautious', u'welcom'] [u'kakadu', u'park', u'entri', u'fee', u'scrap'] [u'kangaroo', u'face', u'tribun'] [u'karratha', u'resid', u'feel', u'earthquak', u'shudder'] [u'karratha', u'water', u'treatment', u'turn'] [u'knight', u'like', u'lose', u'simpson', u'season'] [u'labor', u'vow', u'boost', u'women'] [u'lake', u'condah', u'push', u'heritag', u'status'] [u'larger', u'life'] [u'latest', u'citrus', u'hurt', u'nurseri'] [u'law', u'revamp', u'target', u'misbehaviour', u'bus'] [u'liber', u'allow', u'olexand', u'stay'] [u'lion', u'need', u'improv', u'fourth', u'quarter', u'focus', u'say'] [u'charg', u'latest', u'norfolk', u'murder'] [u'die', u'helicopt', u'crash'] [u'jail', u'kill', u'girlfriend', u'babi'] [u'man', u'bodi', u'sydney', u'park'] [u'marin', u'expert', u'dismiss', u'shark', u'threat'] [u'marseill', u'lose', u'santo', u'drogba', u'follow'] [u'mayor', u'hope', u'polic', u'staff', u'resolut'] [u'mcewen', u'say', u'green', u'jersey', u'rival', u'cover'] [u'medic', u'student', u'train', u'benefit', u'region', u'area'] [u'meet', u'explain', u'reef', u'rezon', u'program'] [u'trap', u'gold', u'coast', u'accid'] [u'milit', u'offer', u'bounti', u'iraqi', u'head'] [u'minor', u'injuri', u'northam', u'accid', u'spate'] [u'inspector', u'need', u'citrus', u'lift'] [u'call', u'better', u'breast', u'test', u'servic'] [u'museum', u'stoush', u'heat', u'artefact', u'return'] [u'appoint', u'auditor'] [u'england', u'snowfal', u'forc', u'weekend', u'road', u'closur'] [u'immigr', u'polici', u'address', u'labour', u'shortag'] [u'medal', u'recognis', u'emerg', u'servic', u'worker'] [u'mine', u'educ', u'centr', u'open'] [u'link', u'norfolk', u'murder'] [u'appeal', u'murder', u'jail', u'sentenc'] [u'polic', u'target', u'shooter'] [u'nurs', u'action', u'ward', u'overcrowd'] [u'offer', u'rooney', u'joke', u'insist', u'everton', u'boss'] [u'offic', u'investig', u'highway', u'accid'] [u'fear', u'dead', u'hundr', u'evacu', u'flood'] [u'oneil', u'escap', u'injuri', u'william', u'face'] [u'oyster', u'death', u'prompt', u'pesticid', u'spray'] [u'pakistan', u'thrash', u'hong', u'kong'] [u'palestinian', u'suicid', u'bomber', u'abort', u'attack', u'later'] [u'panel', u'confid', u'repay', u'trust', u'fund', u'money'] [u'peopl', u'dangl', u'meat', u'hook'] [u'philippin', u'command', u'iraq', u'arriv', u'home'] [u'pileggi', u'lodg', u'second', u'appeal'] [u'fail', u'rule', u'wast', u'dump'] [u'polic', u'elicit', u'inform', u'jail', u'biki'] [u'polic', u'help', u'babi', u'boy', u'speedi', u'entranc'] [u'polic', u'inspect', u'involv', u'field', u'crash'] [u'polic', u'investig', u'racist', u'graffiti', u'perth'] [u'polic', u'investig', u'warwick', u'death'] [u'polic', u'prais', u'mildura', u'supermarket', u'secur'] [u'polic', u'target', u'speed', u'driver', u'school', u'zone'] [u'port', u'arthur', u'boost', u'tourism', u'number'] [u'prescrib', u'burn', u'close', u'hinchinbrook', u'section'] [u'priest', u'kill', u'indonesia', u'church', u'attack'] [u'prison', u'staff', u'continu', u'industri', u'disput'] [u'public', u'deserv', u'explan', u'cull'] [u'grant', u'bail', u'tablet', u'charg'] [u'radic', u'chang', u'intellig', u'servic', u'unlik'] [u'radic', u'shiit', u'newspap', u'reopen'] [u'report', u'find', u'urgent', u'need', u'palliat', u'care', u'staff'] [u'report', u'prompt', u'need', u'water', u'contamin', u'test'] [u'rfds', u'target', u'rural', u'mental', u'health'] [u'riverland', u'council', u'welcom'] [u'road', u'open', u'weekend', u'snowfal'] [u'rural', u'colleg', u'review', u'spark', u'closur', u'concern'] [u'rustic', u'road', u'tourism', u'garner', u'nation', u'trust', u'support'] [u'safe', u'hous', u'plan', u'address', u'wander', u'kid'] [u'govt', u'accus', u'reneg', u'inquiri', u'head'] [u'govt', u'want', u'assassin', u'game', u'ban'] [u'salt', u'wise', u'garden', u'eas', u'salin', u'woe'] [u'scallop', u'breed', u'compani', u'hope', u'success'] [u'school', u'tackl', u'bulli'] [u'sept', u'hijack', u'pass', u'iran'] [u'sheedi', u'unconcern', u'dockland', u'surfac'] [u'shepparton', u'council', u'question', u'univers', u'futur'] [u'ship', u'compani', u'withdraw', u'anger', u'produc'] [u'showdown', u'loom', u'olymp', u'drug', u'controversi'] [u'silva', u'doubl', u'send', u'uruguay', u'copa', u'semi'] [u'snowi', u'hydro', u'pleas', u'cloud', u'seed', u'success'] [u'social', u'justic', u'group', u'deni', u'push', u'mine', u'fight'] [u'springborg', u'back', u'beatti', u'china', u'negoti'] [u'stanhop', u'call', u'nation', u'boer', u'memori'] [u'stott', u'despoja', u'merlin', u'tour', u'detent', u'centr'] [u'sudan', u'militia', u'rape', u'women', u'amnesti', u'say'] [u'suspect', u'bomb', u'kill', u'iraq'] [u'sweetheart', u'pull', u'year'] [u'taskforc', u'probe', u'perth', u'graffiti', u'attack'] [u'teacher', u'subject', u'check', u'law'] [u'tender', u'call', u'armidal', u'landfil', u'site'] [u'tenni', u'coach', u'deni', u'have', u'teen'] [u'tenni', u'coach', u'trial', u'sexual', u'assault', u'charg'] [u'time', u'lucki', u'cana', u'win', u'stuttgart'] [u'kill', u'arrest', u'jordan', u'border', u'skirmish'] [u'todd', u'hamilton', u'win', u'british', u'open'] [u'tourism', u'campaign', u'pay'] [u'toxin', u'fear', u'halt', u'nurs', u'home', u'develop'] [u'tripl', u'fatal', u'prompt', u'call', u'caution'] [u'triumph', u'hamilton', u'ugli', u'game'] [u'hospit', u'close', u'claim', u'oppn'] [u'vow', u'pursu', u'unfair', u'dismiss', u'case'] [u'desert', u'arriv', u'japan'] [u'vaughan', u'look', u'rediscov', u'bat', u'form'] [u'lib', u'probe', u'travel', u'allow'] [u'vieira', u'irreplac', u'claim', u'bergkamp'] [u'author', u'investig', u'prospector', u'sabotag'] [u'begin', u'polic', u'recruit', u'drive'] [u'whale', u'die', u'shark'] [u'white', u'supremacist', u'deni', u'perth', u'attack'] [u'william', u'receiv', u'support', u'coach'] [u'william', u'say', u'sorri', u'ugli'] [u'woman', u'charg', u'ambul', u'offic', u'threaten'] [u'wooli', u'report', u'strong', u'sale', u'growth'] [u'zoysa', u'star', u'lanka', u'clinch', u'thrill'] [u'kill', u'ukrain', u'explos'] [u'accc', u'take', u'stiff', u'action', u'turpi'] [u'accid', u'kill', u'elder', u'learner', u'driver'] [u'communiti', u'council', u'fund', u'withhold'] [u'forest', u'profit', u'bushfir'] [u'african', u'union', u'tri', u'reviv', u'fail', u'darfur', u'talk'] [u'agforc', u'welcom', u'basin', u'develop', u'halt'] [u'alic', u'tourism', u'oper', u'ralli', u'virgin'] [u'black', u'chang', u'south', u'africa', u'test'] [u'altern', u'weed', u'strategi', u'need', u'combat'] [u'amazon', u'burn', u'make', u'brazil', u'lead', u'pollut'] [u'annual', u'turnov', u'solid', u'harvey', u'norman'] [u'readi', u'eadi'] [u'appl', u'roll', u'cheaper', u'ipod'] [u'releas', u'detail', u'bid', u'leagu'] [u'atsb', u'call', u'fatal', u'chopper', u'crash', u'wit'] [u'australia', u'chip', u'solomon', u'island', u'soccer'] [u'beatti', u'call', u'thursday', u'island', u'naval', u'base'] [u'bendigo', u'call', u'state', u'wide', u'plan', u'control'] [u'bhopal', u'disast', u'victim', u'award', u'compens'] [u'bitou', u'eat', u'moth', u'wont', u'pest', u'research'] [u'blue', u'coach', u'gould', u'pay', u'part', u'shoot'] [u'bodi', u'sydney', u'park', u'identifi'] [u'boomer', u'opal', u'name', u'athen'] [u'british', u'militari', u'helicopt', u'crash', u'iraq'] [u'child', u'porn', u'filter', u'stop'] [u'burk', u'welcom', u'explor', u'land', u'acquisit'] [u'behaviour', u'guidelin', u'similar', u'conduct', u'code'] [u'bushfir', u'season', u'start', u'earli'] [u'public', u'servic', u'youth', u'inject'] [u'casino', u'owner', u'refus', u'budg', u'offer'] [u'cautionari', u'call', u'conserv', u'coliban', u'water'] [u'chanderpaul', u'hit', u'form', u'ahead', u'test'] [u'chelsea', u'agre', u'term', u'drogba'] [u'children', u'arrest', u'tableland', u'crime', u'spree'] [u'china', u'host', u'supercar', u'championship'] [u'chines', u'live', u'cockroach'] [u'chirac', u'tell', u'sharon', u'welcom', u'franc'] [u'cityrail', u'servic', u'weekend'] [u'cobargo', u'meet', u'address', u'water', u'woe'] [u'communiti', u'includ', u'drill', u'committe'] [u'compani', u'satisfi', u'watchdog', u'sale', u'method'] [u'construct', u'chao', u'hamper', u'greec', u'athlet'] [u'council', u'dismiss', u'ecovillag', u'concern'] [u'council', u'divid', u'showground', u'curfew', u'request'] [u'council', u'hop', u'miner', u'develop', u'fund'] [u'council', u'adopt', u'integr', u'approach'] [u'court', u'consid', u'pileggi', u'appeal'] [u'court', u'hear', u'homeless', u'man', u'death', u'accid'] [u'cricket', u'boomerang', u'come'] [u'crow', u'shut', u'lynch'] [u'crow', u'nest', u'welcom', u'record', u'growth'] [u'cycl', u'controversi', u'overshadow', u'olymp', u'team'] [u'date', u'australia', u'india', u'tour'] [u'detaine', u'death', u'spark', u'riot'] [u'develop', u'board', u'search', u'replac'] [u'doctor', u'target', u'dead', u'lung', u'diseas'] [u'dolphin', u'sanctuari', u'step', u'closer'] [u'downer', u'push', u'khmer', u'roug', u'tribun'] [u'dismiss', u'cold', u'weather', u'lamb', u'worri'] [u'dragon', u'refus', u'gasnier', u'releas'] [u'economi', u'survey'] [u'egyptian', u'hostag', u'free', u'filipino', u'fate', u'unknown'] [u'elect', u'surgeri', u'list', u'grow', u'rapid', u'govt'] [u'embassi', u'confirm', u'filipino', u'hostag', u'releas'] [u'approv', u'soni', u'bertelsmann', u'merger'] [u'farmer', u'free', u'play', u'swan'] [u'fatal', u'helicopt', u'crash', u'investig'] [u'feder', u'govt', u'fund', u'marin', u'research', u'centr'] [u'franc', u'ascion', u'advanc', u'indianapoli'] [u'free', u'hostag', u'say', u'arroyo'] [u'futur', u'bleak', u'brisban', u'skyscrap'] [u'futur', u'resolv', u'bathurst', u'coach'] [u'game', u'match', u'wander', u'ferret'] [u'gene', u'defect', u'death', u'case'] [u'govt', u'enterpris', u'better'] [u'govt', u'block', u'reopen', u'christma', u'island', u'casino'] [u'grave', u'fear', u'hold', u'miss', u'yachtsman'] [u'green', u'polici', u'target', u'work', u'condit'] [u'hervey', u'take', u'tidi', u'town', u'award'] [u'hewitt', u'sole', u'aussi', u'tenni'] [u'high', u'prais', u'maritim', u'secur', u'boost'] [u'hird', u'doubt', u'comeback', u'date'] [u'hobart', u'intern', u'undergo', u'facelift'] [u'hous', u'group', u'agre', u'allianc'] [u'howard', u'hint', u'late', u'poll', u'latham', u'shrug', u'slide'] [u'howard', u'reject', u'agenc', u'overhaul'] [u'illawarra', u'busi', u'confid', u'drop'] [u'includ', u'address', u'offend', u'regist', u'polic'] [u'india', u'sack', u'hockey', u'coach', u'olymp'] [u'indigen', u'mainstream', u'face', u'problem', u'senat'] [u'inquest', u'begin', u'transplant', u'patient', u'death'] [u'internet', u'diagnosi', u'concern', u'rural', u'doctor'] [u'island', u'return', u'home', u'year', u'evacu'] [u'isra', u'judg', u'shoot', u'dead'] [u'israel', u'sure', u'palestinian', u'didnt', u'kill', u'judg'] [u'japan', u'seek', u'consider', u'accus'] [u'jetstar', u'consid', u'newcastl', u'mainten'] [u'joint', u'patrol', u'malacca', u'strait', u'underway'] [u'juri', u'tell', u'unfair', u'convict', u'coupl', u'murder'] [u'philippin', u'troop', u'leav', u'iraq'] [u'lie', u'peni', u'size', u'scare', u'smoker'] [u'accus', u'racist', u'attack', u'remand', u'custodi'] [u'face', u'court', u'latest', u'norfolk', u'murder'] [u'maradona', u'junior', u'flee', u'scotland'] [u'mayor', u'request', u'temporari', u'aerial', u'spray'] [u'mayor', u'vow', u'meet', u'golf', u'cours', u'deadlin'] [u'meatwork', u'vow', u'stay', u'open', u'despit', u'sheep', u'price'] [u'meet', u'aim', u'dismiss', u'rail', u'trail', u'project'] [u'methadon', u'program', u'complaint', u'disput'] [u'microsoft', u'lindowscom', u'million'] [u'mine', u'giant', u'expand'] [u'minist', u'consid', u'drug', u'court', u'expans'] [u'minist', u'ignor', u'palliat', u'care', u'plan'] [u'minist', u'open', u'endoscopi', u'unit'] [u'minist', u'promis', u'mine', u'institut', u'fund'] [u'minist', u'weigh', u'artefact', u'stoush'] [u'call', u'crop', u'locat', u'public'] [u'morley', u'out', u'william', u'face', u'judiciari', u'wipe'] [u'mornington', u'search', u'end'] [u'mornington', u'search'] [u'call', u'nowra', u'licenc'] [u'lose', u'car'] [u'gambier', u'servic', u'offer', u'free', u'help'] [u'museum', u'benefit', u'custom', u'hous', u'acquisit'] [u'fallout', u'contribut'] [u'nation', u'indigen', u'bodi', u'essenti', u'committe', u'hear'] [u'nation', u'port', u'secur', u'boost'] [u'nation', u'prostat', u'tissu', u'bank', u'form'] [u'navi', u'doctor', u'guilti', u'improp', u'conduct'] [u'manag', u'investig', u'livestock', u'exchang'] [u'minist', u'review', u'croc', u'safari', u'plan'] [u'nightclub', u'close', u'time', u'rule', u'overturn'] [u'nimbin', u'call', u'sustain', u'polic'] [u'nimmitabel', u'eas', u'water', u'restrict'] [u'minist', u'hail', u'buyback', u'scheme'] [u'polic', u'hunt', u'isra', u'link'] [u'offici', u'shoot', u'dead', u'iraqi', u'citi'] [u'near', u'barrel'] [u'manag', u'resid', u'make', u'heritag', u'list'] [u'oneil', u'judiciari', u'appear', u'defer'] [u'oper', u'wander', u'tourist'] [u'orang', u'sentenc', u'fellow', u'escap', u'murder'] [u'pair', u'convict', u'doubl', u'murder'] [u'palestinian', u'leadership', u'crisi', u'annan'] [u'palestinian', u'withdraw', u'resign'] [u'park', u'victoria', u'chief', u'deni', u'conflict'] [u'patholog', u'compani', u'escap', u'takeov', u'review'] [u'rise', u'tip', u'murray', u'goulburn', u'worker'] [u'save', u'owner', u'hous'] [u'road', u'promis', u'appear', u'pothol'] [u'poetri', u'award', u'receiv', u'entri'] [u'poki', u'threaten', u'club', u'surviv'] [u'polic', u'break', u'dili', u'riot'] [u'port', u'lincoln', u'eplga', u'consid', u'heal', u'rift'] [u'power', u'restor', u'properti'] [u'press', u'watchdog', u'slam', u'iran', u'newspap', u'closur'] [u'prison', u'offic', u'sack', u'inmat', u'murder'] [u'properti', u'valu', u'scam', u'concern', u'council'] [u'pulp', u'burn', u'burni', u'tourism', u'imag'] [u'produc', u'ban', u'move', u'fruit'] [u'race', u'track', u'return', u'alleg', u'cruel', u'greyhound'] [u'racist', u'graffiti', u'worri', u'chines', u'communiti'] [u'rail', u'accid', u'spark', u'union', u'concern'] [u'railway', u'societi', u'plan', u'display', u'vamp'] [u'research', u'assess', u'effect', u'hair', u'loss'] [u'resid', u'mediat', u'doctor', u'disput'] [u'resid', u'protest', u'fish', u'sanctuari', u'propos'] [u'rival', u'weak', u'challeng', u'lanc', u'team', u'boss'] [u'road', u'minist', u'invit', u'calder', u'drive'] [u'roger', u'carri', u'australian', u'yellow', u'jersey', u'hop'] [u'rural', u'communiti', u'emerg', u'respons', u'team'] [u'rusedski', u'outlast', u'johansson', u'indi'] [u'russian', u'bailiff', u'order', u'yuko', u'sale'] [u'debat', u'abus', u'inquiri', u'term'] [u'senior', u'iraqi', u'offici', u'assassin'] [u'shepparton', u'welcom', u'visit'] [u'solar', u'group', u'rule', u'renmark', u'develop'] [u'solomon', u'wipe', u'forest', u'studi', u'warn'] [u'stan', u'birmingham'] [u'africa', u'commit', u'nation', u'super'] [u'strand', u'park', u'close', u'mainten'] [u'streeton', u'paint', u'tour', u'western', u'queensland'] [u'strike', u'disrupt', u'hospit', u'servic'] [u'strike', u'hospit', u'staff', u'reject', u'deal'] [u'subject', u'seek', u'cancer', u'research'] [u'sudanes', u'govt', u'accus', u'link', u'darfur', u'atroc'] [u'sudanes', u'militiamen', u'jail', u'say', u'attack', u'continu'] [u'supercar', u'seal', u'china', u'deal'] [u'tamar', u'river', u'dredg', u'solv', u'silt', u'problem'] [u'tamworth', u'manag', u'criticis', u'rural', u'opportun'] [u'task', u'forc', u'hop', u'quick', u'payment', u'aborigin'] [u'tatura', u'milk', u'rais', u'supplier', u'payment'] [u'teen', u'charg', u'alleg', u'stab', u'bail'] [u'telstra', u'go', u'howard', u'mate', u'say', u'labor'] [u'telstra', u'plan', u'chang'] [u'tenni', u'coach', u'hopper', u'obsess', u'year', u'girl'] [u'terror', u'accus', u'commit', u'stand', u'trial'] [u'time', u'feel'] [u'hospitalis', u'light', u'plane', u'crash'] [u'timber', u'industri', u'improv', u'practic'] [u'torr', u'strait', u'boat', u'accid', u'braveri', u'recognis'] [u'tour', u'target', u'indigen', u'consum', u'right'] [u'tribun', u'deliv', u'good', u'news', u'fremantl'] [u'tribut', u'minist', u'norfolk', u'murder'] [u'charg', u'perth', u'graffiti', u'attack'] [u'offici', u'fail', u'protect', u'asylum', u'seeker'] [u'delay', u'vote', u'isra', u'wall'] [u'continu', u'investig', u'iran', u'terrorist', u'claim'] [u'marin', u'deni', u'desert', u'iraq'] [u'home', u'snow'] [u'legal', u'examin', u'region', u'expans'] [u'victorian', u'polic', u'prepar', u'swim', u'english', u'channel'] [u'violenc', u'flare', u'israel', u'lebanon', u'border'] [u'polic', u'intensifi', u'search', u'miss', u'yachtsman'] [u'warn', u'issu', u'public', u'hous', u'propos'] [u'week', u'open', u'slowli', u'wall', u'street'] [u'wetland', u'protect', u'shouldnt', u'impact', u'farmer', u'waff'] [u'yellow', u'jersey', u'voeckler', u'head', u'athen'] [u'accc', u'wont', u'interven', u'sale'] [u'activist', u'complain', u'threat'] [u'challeng', u'health', u'fund', u'alloc'] [u'chief', u'take', u'malthous'] [u'afma', u'issu', u'warn', u'pelag', u'fish', u'stock'] [u'agreement', u'close', u'olymp', u'park', u'mcguir'] [u'albani', u'adopt', u'marina', u'develop', u'plan'] [u'albani', u'mull', u'late', u'night', u'shop'] [u'consid', u'introduc', u'worker', u'card'] [u'alp', u'dhuez', u'test', u'yellow', u'jersey', u'contend'] [u'say', u'increas', u'surgeri', u'demand', u'wait'] [u'antarct', u'link', u'schedul'] [u'armidal', u'begin', u'redevelop'] [u'armstrong', u'command'] [u'aussi', u'test', u'team', u'class'] [u'aust', u'defend', u'secur', u'barrier', u'vote'] [u'australian', u'reliv', u'role', u'moon', u'land'] [u'babi', u'whale', u'sight', u'continu'] [u'bank', u'expand', u'interst'] [u'bankstown', u'airport', u'bigger', u'passeng', u'plan'] [u'ban', u'hormon', u'eadi', u'bonus'] [u'bargain', u'hunter', u'snap', u'magic', u'icon'] [u'bark', u'ident', u'say', u'atsic', u'aftermath', u'confus'] [u'bendigo', u'get', u'ahead', u'lake', u'tram', u'rout'] [u'benfica', u'tiago', u'sign', u'chelsea'] [u'bhps', u'union', u'workforc', u'win', u'rise'] [u'bodi', u'discoveri', u'prompt', u'polic', u'probe'] [u'bolton', u'quick', u'mark', u'speed'] [u'bosnian', u'serb', u'polic', u'search', u'crime', u'fugit'] [u'brace', u'quicker', u'rate', u'hike', u'inflat', u'rise'] [u'brack', u'say', u'school', u'safeti', u'improv'] [u'bundaberg', u'sugar', u'worker', u'strike', u'skill'] [u'canberra', u'feel', u'winter', u'chill'] [u'cancer', u'studi', u'focus', u'mackay'] [u'carr', u'see', u'need', u'orang', u'grove', u'inquiri'] [u'china', u'unveil', u'olymp', u'squad'] [u'clash', u'whale', u'bodi', u'cruelti', u'issu'] [u'classic', u'music', u'help', u'eas', u'pain', u'doctor', u'say'] [u'club', u'claim', u'poki', u'caus', u'loss'] [u'club', u'lock', u'reduc', u'crime'] [u'coco', u'pop', u'rice', u'bubbl', u'recal'] [u'committe', u'address', u'indigen', u'justic'] [u'cooma', u'review', u'park'] [u'corrupt', u'watchdog', u'look', u'orang', u'grove', u'claim'] [u'council', u'defend', u'talbot', u'mobil', u'librari', u'plan'] [u'council', u'encourag', u'option', u'hunt', u'boandik', u'lodg'] [u'councillor', u'object', u'tacki', u'signag'] [u'council', u'push', u'surgeri', u'reinstat'] [u'council', u'offer', u'indigen', u'traineeship'] [u'council', u'veto', u'mobil', u'tower', u'plan'] [u'court', u'hear', u'detail', u'murder'] [u'court', u'weigh', u'pileggi', u'case'] [u'cycl', u'australia', u'decid', u'eadi', u'fate'] [u'worker', u'reject', u'travel', u'offer'] [u'defenc', u'committe', u'brief', u'pine'] [u'demand', u'dorrigo', u'resid', u'adsl'] [u'detent', u'centr', u'riot', u'spark', u'strike'] [u'vere', u'confid', u'injuri', u'wont', u'harm', u'england', u'plan'] [u'donor', u'pledg', u'billion', u'haiti'] [u'downer', u'rebuff', u'ramo', u'horta', u'talk'] [u'celebr', u'trade', u'mission', u'success'] [u'weather', u'need', u'finish', u'green', u'factori'] [u'eadi', u'athen', u'team'] [u'eadi', u'consid', u'sue'] [u'eadi', u'wait', u'olymp', u'appeal'] [u'electr', u'fault', u'possibl', u'caus', u'shop', u'blaze'] [u'euthanasia', u'societi', u'inquest', u'evid'] [u'experiment', u'vaccin', u'keep', u'cancer', u'patient', u'diseas'] [u'expert', u'warn', u'breed', u'worm'] [u'chang', u'renault', u'approv'] [u'farmer', u'ralli', u'phone', u'rental', u'charg'] [u'farm', u'yield', u'predict', u'rise'] [u'feder', u'polic', u'arriv', u'norfolk', u'island'] [u'fijian', u'soldier', u'guilti', u'mutini'] [u'firefight', u'battl', u'fingal', u'blaze'] [u'olymp', u'medal', u'roll', u'product', u'line'] [u'fish', u'stock', u'monitor', u'acoust', u'technolog'] [u'jail', u'doubl', u'murder'] [u'flintoff', u'assum', u'bat', u'role', u'england'] [u'flower', u'power', u'turn', u'volum', u'japan'] [u'troop', u'kill', u'fallujah'] [u'freier', u'come', u'suspend', u'cannon'] [u'fruit', u'picker', u'shortag', u'prompt', u'call', u'help'] [u'strike', u'like', u'casino'] [u'gatton', u'physio', u'help', u'olymp', u'hors', u'rider'] [u'golf', u'develop', u'garner', u'intern'] [u'govt', u'accus', u'cover', u'prison', u'escap'] [u'govt', u'cuddl', u'nation', u'say', u'labor'] [u'govt', u'test', u'airport', u'secur', u'scanner'] [u'greenspan', u'market', u'lift'] [u'green', u'urg', u'latham', u'forest', u'concern'] [u'green', u'reduc', u'illawarra', u'unemploy'] [u'group', u'battl', u'bottl', u'shop', u'propos'] [u'guyra', u'target', u'outstand', u'rate', u'debt'] [u'haiti', u'promis', u'billion'] [u'help', u'secur', u'border', u'iraq', u'say'] [u'henin', u'hardenn', u'aim', u'olymp', u'comeback'] [u'henin', u'hardenn', u'road', u'recoveri'] [u'hepburn', u'creat', u'heat', u'debat'] [u'heroin', u'addict', u'cure', u'prais'] [u'hoon', u'announc', u'sweep', u'defenc', u'cut'] [u'hopper', u'accus', u'doesnt', u'want', u'money'] [u'hormon', u'shot', u'help', u'tan', u'damag', u'studi'] [u'hospit', u'meat', u'contract', u'anger', u'region', u'butcher'] [u'humpback', u'whale', u'popul', u'increas', u'survey'] [u'internet', u'address'] [u'interst', u'fruit', u'market', u'reopen'] [u'investig', u'fail', u'fatal', u'plane', u'crash', u'caus'] [u'time', u'slogan', u'promot', u'labor', u'event'] [u'japan', u'vow', u'troop', u'iraq'] [u'jeanpierr', u'make', u'lucki', u'break'] [u'jetstar', u'cut', u'hobart', u'flight'] [u'kidnapp', u'treat', u'filipino', u'hostag', u'tell'] [u'knight', u'sign', u'reynoldson'] [u'kyoto', u'ratif', u'benefit', u'say', u'latham'] [u'labor', u'flag', u'card', u'foreign', u'worker'] [u'labor', u'plan', u'chief', u'nurs', u'posit'] [u'labor', u'plan', u'extra', u'hour', u'doctor'] [u'langer', u'issu', u'ryder', u'ralli'] [u'leader', u'grappl', u'underdog'] [u'leader', u'hostag', u'wouldnt', u'sway', u'polici'] [u'leicest', u'sign', u'veteran', u'keown'] [u'live', u'export', u'report', u'mislead', u'rspca'] [u'liverpool', u'striker', u'share', u'limelight'] [u'livestock', u'export', u'death', u'rat', u'fall'] [u'livid', u'festiv', u'cancel'] [u'alamo', u'bar', u'classifi', u'work'] [u'man', u'throw', u'lifelin', u'hopoat'] [u'martian', u'meteor', u'discov', u'antarctica'] [u'mayor', u'call', u'shoalwat', u'inform'] [u'michael', u'jackson', u'deni', u'surrog', u'mother', u'report'] [u'microsoft', u'plan', u'payout'] [u'midwiv', u'protest', u'darwin'] [u'mildura', u'start', u'communiti', u'polic', u'program'] [u'millar', u'punish', u'roger', u'gold'] [u'minist', u'prais', u'fish', u'permit', u'success'] [u'minist', u'reject', u'free', u'babi', u'food', u'idea'] [u'evid', u'econom', u'recoveri'] [u'morn', u'glori', u'research', u'lead', u'better', u'weather'] [u'mother', u'anger', u'polic', u'inquiri', u'delay', u'son'] [u'gambier', u'withdraw', u'servic', u'fund'] [u'mugab', u'accus', u'dead', u'peopl', u'vote'] [u'museum', u'confid', u'cricket', u'boomerang', u'genuin'] [u'museum', u'confid', u'cricket', u'boomerang', u'origin'] [u'news', u'corp', u'help', u'market', u'rebound'] [u'narrabri', u'research', u'station', u'get', u'boost'] [u'sale'] [u'dad', u'need', u'support', u'say', u'research'] [u'decis', u'william', u'sway'] [u'farmer', u'consid', u'milit', u'action'] [u'introduc', u'number', u'plat'] [u'oppn', u'promis', u'local', u'govern', u'assist'] [u'origin', u'target', u'purchas'] [u'oversea', u'train', u'doctor', u'offer', u'hand'] [u'pacif', u'island', u'face', u'super', u'shut'] [u'palmer', u'report', u'disturb', u'abalon', u'fishermen'] [u'paradorn', u'move', u'round', u'indianapoli'] [u'parliament', u'urg', u'arafat', u'accept', u'resign'] [u'passeng', u'number', u'melbourn', u'airport'] [u'philippin', u'weak', u'wont', u'stop', u'terrorist', u'howard'] [u'pileggi', u'appeal', u'hear', u'feder', u'court'] [u'pileggi', u'decis', u'expect', u'thursday'] [u'pileggi', u'decis', u'expect', u'tomorrow'] [u'pinochet', u'face', u'charg', u'secret', u'bank', u'account'] [u'plan', u'begin', u'break', u'hill', u'confer'] [u'polic', u'dismiss', u'robinval', u'racial', u'tension', u'fear'] [u'polic', u'grant', u'extens', u'gangland', u'case'] [u'polic', u'hunt', u'owner', u'distinct'] [u'polic', u'investig', u'boy', u'sexual', u'assault'] [u'polic', u'investig', u'overnight', u'fire'] [u'policeman', u'award', u'braveri'] [u'polic', u'swimmer', u'near', u'franc'] [u'poor', u'moor', u'vessel', u'damag'] [u'pope', u'order', u'inquiri', u'sexual', u'misconduct'] [u'portman', u'increas', u'iron', u'export'] [u'port', u'secur', u'fail', u'address', u'foreign', u'ship'] [u'port', u'secur', u'remot', u'monitor'] [u'privat', u'resid', u'consid', u'ental', u'hous'] [u'psychiatrist', u'plan', u'free', u'sexual', u'sadist'] [u'puckapuny', u'heritag', u'list'] [u'push', u'corrupt', u'prosecut', u'solomon'] [u'compani', u'boost', u'goldfield', u'employ'] [u'union', u'discuss', u'townsvill', u'centr'] [u'queensland', u'resum', u'citrus', u'trade'] [u'real', u'bid', u'striker', u'etoo'] [u'region', u'forest', u'agreement', u'flaw', u'say', u'scientist'] [u'riverina', u'flip', u'kill', u'passeng'] [u'riverina', u'camp', u'hope', u'youth', u'direct'] [u'rock', u'throw', u'incid', u'prompt', u'polic', u'investig'] [u'russian', u'gangster', u'offer', u'realiti'] [u'commit', u'murray', u'dredg', u'fund'] [u'sar', u'whistleblow', u'releas', u'detent'] [u'saudi', u'head', u'slay', u'hostag'] [u'school', u'time', u'capsul', u'disappear', u'ruin', u'garden'] [u'schwab', u'quit', u'hawk', u'season'] [u'search', u'continu', u'miss', u'sailor'] [u'search', u'miss', u'sailor', u'expand'] [u'season', u'vere'] [u'seymour', u'hospit', u'ralli', u'staff', u'woe'] [u'jetti', u'placement', u'propos', u'anger', u'nannup'] [u'south', u'korea', u'strike', u'spread', u'subway'] [u'springbok', u'squad', u'black', u'encount'] [u'statewid', u'fruit', u'inspect', u'begin'] [u'sudan', u'reject', u'human', u'right', u'report', u'darfur'] [u'sugar', u'industri', u'launch', u'biosecur', u'plan'] [u'suspect', u'want', u'activist', u'riyadh', u'clash'] [u'govt', u'urg', u'match', u'highway', u'fund', u'commit'] [u'tasmanian', u'golf', u'cours', u'garner', u'intern'] [u'score', u'histor', u'artwork'] [u'teacher', u'transfer', u'chang', u'wont', u'work', u'union'] [u'teen', u'receiv', u'suspend', u'sentenc', u'polic', u'assault'] [u'tevez', u'strike', u'argentina', u'oust', u'colombia'] [u'thousand', u'greet', u'shaq', u'miami'] [u'timor', u'explor', u'benefit', u'territori'] [u'townsvill', u'top', u'clean', u'energi', u'challeng'] [u'servic', u'tip', u'buchan', u'resid'] [u'milit', u'kill', u'saudi', u'shoot'] [u'question', u'perth', u'racist', u'attack'] [u'vote', u'demand', u'israel', u'tear', u'barrier'] [u'invest', u'guru', u'tell', u'reveal', u'limit'] [u'accept', u'citrus', u'shipment', u'board'] [u'urg', u'arafat', u'power'] [u'welcom', u'hostag', u'releas', u'regret', u'pullout'] [u'vanston', u'unmov', u'woomera', u'case'] [u'venus', u'overwhelm', u'harkleroad'] [u'vibrant', u'communiti', u'healthi', u'town'] [u'preschool', u'teacher', u'start', u'strike'] [u'polic', u'seek', u'identifi', u'bushland', u'bodi'] [u'whale', u'calf', u'sight', u'rais', u'tourism', u'hop'] [u'whale', u'say', u'campbel'] [u'william', u'decis', u'adjourn', u'week'] [u'william', u'futur', u'balanc'] [u'william', u'present', u'concuss', u'defenc'] [u'wit', u'recal', u'ordeal', u'peopl', u'smuggl'] [u'woman', u'drown', u'houseboat', u'fall'] [u'work', u'begin', u'wind', u'farm', u'develop'] [u'give', u'grind', u'cull', u'debat'] [u'action', u'group', u'question', u'fast', u'rail', u'plan'] [u'actu', u'upbeat', u'billiton', u'boost'] [u'albani', u'marina', u'plan', u'continu'] [u'alic', u'court', u'wont', u'increas', u'secur', u'despit'] [u'antarct', u'aircraft', u'germani'] [u'apec', u'consid', u'anti', u'aircraft', u'missil', u'export'] [u'ape', u'anthrax', u'death', u'caus', u'fear', u'human'] [u'armstrong', u'hold', u'strong', u'lead', u'go', u'stage'] [u'assault', u'spark', u'fear', u'footbal', u'club', u'futur'] [u'crack', u'super', u'fund'] [u'auction', u'site', u'doubl', u'profit', u'stock', u'fall'] [u'aussi', u'reid', u'advanc', u'indianapoli'] [u'aust', u'shut', u'spammer'] [u'autopsi', u'beach', u'babi', u'whale'] [u'bail', u'boxer', u'compet', u'athen'] [u'bank', u'resourc', u'drive', u'lower'] [u'head', u'news', u'world', u'servic'] [u'beckham', u'twist', u'ankl', u'train'] [u'behead', u'western', u'bodi', u'iraq'] [u'bendigo', u'bank', u'manag', u'gold', u'mine', u'fund'] [u'bigger', u'breast', u'offer', u'perk', u'soldier'] [u'biodivers', u'trade', u'scheme', u'south', u'east'] [u'blackburn', u'cruis', u'olymp', u'warm'] [u'blackout', u'hit', u'north', u'hobart'] [u'bok', u'lose', u'streak', u'sick'] [u'bomber', u'target', u'young', u'saint', u'say', u'hamil'] [u'brazil', u'edg', u'uruguay', u'copa', u'final'] [u'bush', u'approv', u'arm', u'sale', u'iraq'] [u'bush', u'sign', u'biolog', u'weapon', u'vaccin'] [u'cabinet', u'appoint', u'deliv', u'stabl', u'govt', u'rann'] [u'canadian', u'coupl', u'seek', u'divorc'] [u'canadian', u'pledg', u'decriminalis', u'marijuana'] [u'capsul', u'research', u'target', u'cancer', u'cell'] [u'chemic', u'clean', u'begin'] [u'children', u'rescu', u'burn', u'hous'] [u'citrus', u'grower', u'consid', u'legal', u'action'] [u'costello', u'tip', u'sept', u'elect'] [u'council', u'air', u'poison', u'fear'] [u'councillor', u'censur', u'comment'] [u'councillor', u'fail', u'chang', u'rat', u'plan'] [u'council', u'receiv', u'grant'] [u'council', u'tackl', u'backlog'] [u'court', u'appear', u'alleg', u'racist'] [u'court', u'dismiss', u'pileggi', u'appeal'] [u'court', u'tell', u'bakhtiyari', u'boy', u'live', u'freeli'] [u'court', u'rule', u'pileggi', u'case', u'today'] [u'crow', u'power', u'chang'] [u'crow', u'wont', u'rush', u'search', u'coach'] [u'work', u'affect', u'shire', u'road'] [u'darwin', u'port', u'tighten', u'secur'] [u'darwin', u'expect', u'ten', u'thousand'] [u'david', u'jone', u'share', u'jump', u'profit', u'increas'] [u'defenc', u'probe', u'possibl', u'radioact', u'contamin'] [u'deleg', u'aim', u'grind', u'land', u'fee'] [u'derelict', u'ship', u'owner', u'hit', u'critic'] [u'dont', u'kick', u'say', u'studi'] [u'doubt', u'cast', u'infrastructur', u'pledg'] [u'emerg', u'depart', u'run'] [u'escape', u'court', u'nude'] [u'eurobodalla', u'gear', u'council', u'elect'] [u'expert', u'halv', u'cancer', u'case'] [u'faldo', u'irish', u'open'] [u'famili', u'payment', u'boost', u'david', u'jone', u'figur'] [u'farmer', u'warn', u'misdirect', u'land', u'bill'] [u'court', u'order', u'closur', u'intern', u'financ'] [u'govt', u'stand', u'walk', u'track', u'probe'] [u'filipino', u'hostag', u'return', u'hero', u'welcom'] [u'fisher', u'seek', u'jetti', u'access', u'summit'] [u'foetal', u'thumbsuck', u'give', u'clue', u'hand', u'prefer'] [u'priest', u'plead', u'guilti', u'offenc'] [u'teacher', u'jail', u'indec', u'deal'] [u'fossil', u'come', u'aliv', u'museum', u'open'] [u'fund', u'boost', u'youth', u'justic', u'servic'] [u'fund', u'loss', u'fewer', u'nurs', u'hour'] [u'gaza', u'report', u'tell', u'cover', u'intern', u'strife'] [u'govt', u'consid', u'arm', u'guard', u'athlet'] [u'govt', u'consid', u'arm', u'guard', u'athlet'] [u'govt', u'cut', u'level', u'sulphur', u'petrol'] [u'govt', u'reject', u'mine', u'guarante'] [u'govt', u'stand', u'ambul', u'fund'] [u'govt', u'wast', u'plan', u'consult'] [u'green', u'attack', u'roll', u'failur'] [u'green', u'lash', u'farm', u'lobbi', u'group'] [u'greenspan', u'forecast', u'knock', u'aussi', u'dollar'] [u'green', u'project', u'elect', u'issu'] [u'gregan', u'train', u'wallabi'] [u'gregan', u'train', u'wallabi'] [u'grower', u'citrus', u'export', u'assur'] [u'guilti', u'plea', u'enter', u'melbourn', u'sieg'] [u'gunn', u'accus', u'embark', u'land', u'grab'] [u'hardwick', u'reach', u'mileston'] [u'hopper', u'admit', u'sleep', u'student', u'court', u'hear'] [u'hopper', u'kiss', u'alleg', u'victim', u'court', u'hear'] [u'horticultur', u'worker', u'visa', u'categori'] [u'hospit', u'make', u'secur', u'chang'] [u'howard', u'stern', u'face', u'indec', u'counterclaim'] [u'huddersfield', u'stick', u'injur', u'vere'] [u'india', u'hop', u'hostag', u'releas'] [u'indigen', u'inquiri', u'hear', u'polic', u'problem'] [u'investig', u'launch', u'doubl', u'road', u'death'] [u'italian', u'team', u'offer', u'millar', u'lifelin'] [u'kersten', u'join', u'team', u'oversea', u'manag'] [u'kluivert', u'seal', u'year', u'newcastl', u'deal'] [u'labor', u'health', u'number', u'dont', u'costello'] [u'labor', u'revisit', u'east', u'timor', u'talk'] [u'labor', u'wreck', u'warn'] [u'lake', u'eyr', u'basin', u'group', u'seek', u'fund'] [u'lamb', u'price', u'rise'] [u'latham', u'enforc', u'fair', u'price', u'dairi', u'farmer'] [u'fund', u'riverland', u'festiv', u'share'] [u'limeston', u'coast', u'share', u'tourism', u'fund'] [u'lose', u'frog', u'home'] [u'macklin', u'oppos', u'telstra', u'privatis'] [u'charg', u'larg', u'data', u'theft', u'case'] [u'charg', u'dubbo', u'death'] [u'charg', u'kebab', u'shop', u'murder'] [u'fin', u'mice', u'chew', u'case'] [u'surviv', u'light', u'plane', u'crash'] [u'court', u'child', u'porn', u'charg'] [u'wont', u'hope', u'tiger', u'return'] [u'maradona', u'reject', u'dumfermlin', u'offer'] [u'matilda', u'lose', u'friend'] [u'mayor', u'defend', u'rate', u'rise'] [u'mayor', u'seek', u'fair', u'road', u'fund', u'split'] [u'meekatharra', u'alcohol', u'restrict', u'continu'] [u'meet', u'consid', u'trade', u'debat'] [u'mental', u'ill', u'save', u'jail', u'court', u'tell'] [u'mental', u'charg', u'friend', u'death'] [u'militari', u'industri', u'sonar', u'harm', u'whale', u'report'] [u'miner', u'appeal', u'worker', u'camp', u'snub'] [u'minist', u'mislead', u'public', u'westfield', u'lobbi', u'lib'] [u'minist', u'postpon', u'research', u'station', u'closur'] [u'minist', u'slam', u'labor', u'dairi', u'plan'] [u'mix', u'respons', u'road', u'levi'] [u'highlight', u'school', u'woe'] [u'poke', u'breakaway', u'state'] [u'natur', u'beauti', u'ban', u'pageant'] [u'near', u'kill', u'china', u'flood'] [u'australian', u'arm', u'guard', u'olymp', u'athlet'] [u'foreign', u'arm', u'guard', u'athlet', u'greec'] [u'prosecut', u'green', u'phone', u'demis'] [u'norwegian', u'whale', u'plan'] [u'olymp', u'blow', u'ferguson'] [u'olymp', u'drug', u'concern', u'expect', u'fade'] [u'orang', u'loss', u'microscop'] [u'parlour', u'wife', u'boro'] [u'parti', u'negoti', u'cost', u'outsid', u'court'] [u'patterson', u'rid', u'high', u'south', u'africa'] [u'joint', u'ventur', u'bring', u'bet', u'servic'] [u'petrol', u'sniff', u'child', u'abus', u'major', u'health', u'problem'] [u'photo', u'highlight', u'medic', u'wast', u'concern'] [u'race', u'pull', u'darwin', u'crowd'] [u'plane', u'crash', u'inquest', u'uncertain'] [u'plan', u'underway', u'schooli', u'influx'] [u'player', u'craig', u'crow'] [u'solomon', u'pois', u'sign', u'border', u'deal'] [u'polic', u'appeal', u'help', u'solv', u'sexual', u'assault'] [u'polic', u'campaign', u'tackl', u'drink', u'driver'] [u'polit', u'wrangl', u'delay', u'forest', u'review'] [u'poor', u'staff', u'level', u'blame', u'worker', u'compo'] [u'popov', u'sign', u'palac', u'deal'] [u'port', u'boost', u'trade', u'revenu'] [u'power', u'gippsland', u'storm'] [u'prison', u'secur', u'firm', u'announc', u'overhaul'] [u'privat', u'hospit', u'help', u'public', u'surgeri', u'wait'] [u'project', u'aim', u'boost', u'rail', u'station', u'access'] [u'protest', u'fail', u'stop', u'cull'] [u'air', u'staff', u'cut', u'concern'] [u'public', u'urg', u'overdu', u'rat'] [u'public', u'warn', u'burn', u'danger'] [u'endors', u'reef', u'zone'] [u'forestri', u'hang', u'balanc'] [u'rail', u'mishap', u'unlik', u'affect', u'patronag'] [u'rain', u'disrupt', u'roddick', u'open', u'indianapoli'] [u'rann', u'order', u'probe', u'olympian', u'court', u'delay'] [u'record', u'problem', u'solv', u'hospit', u'say'] [u'report', u'clear', u'govt', u'interfer', u'iraq'] [u'report', u'clear', u'polic', u'databas', u'misus'] [u'research', u'dispel', u'spider', u'bite', u'myth'] [u'review', u'launch', u'websit', u'glitch'] [u'rivaldo', u'arriv', u'olympiako'] [u'river', u'death', u'spark', u'colli', u'meet'] [u'river', u'slime', u'undergo', u'test'] [u'rock', u'star', u'sue', u'frampton', u'bikini'] [u'ronaldo', u'tiago', u'miss', u'premier', u'leagu', u'kick'] [u'schwab', u'deni', u'payout', u'rumour'] [u'search', u'take', u'miss', u'plane'] [u'serena', u'reach', u'round'] [u'sergeant', u'charg', u'duti', u'assault'] [u'shellharbour', u'council', u'black'] [u'small', u'rate', u'rise', u'ilfracomb', u'shire'] [u'snowi', u'river', u'resid', u'prepar', u'vote'] [u'solomon', u'fragil', u'year'] [u'sound', u'music', u'reviv', u'generat'] [u'southern', u'cross', u'await', u'heritag', u'inspect'] [u'speed', u'camera', u'oper', u'steal'] [u'springbok', u'fear', u'black', u'line'] [u'lankan', u'bowler', u'crush', u'pakistan'] [u'staff', u'evacu', u'paper', u'blaze'] [u'statement', u'shin', u'littl', u'light', u'shoalwat', u'upgrad'] [u'storm', u'leav', u'student', u'strand'] [u'strike', u'review'] [u'sugar', u'industri', u'plan', u'pest'] [u'support', u'foreign', u'train', u'doctor', u'push'] [u'support', u'park', u'chang'] [u'busi', u'anger', u'jetstar', u'decis'] [u'teen', u'custodi', u'robberi', u'charg'] [u'teen', u'refus', u'bail', u'alleg', u'sexual'] [u'telstra', u'announc', u'plan'] [u'thai', u'court', u'quash', u'sentenc', u'aust', u'tourist'] [u'thai', u'polic', u'charg', u'teen', u'girl', u'death'] [u'theatr', u'target', u'petrol', u'bomb', u'attack'] [u'stand', u'trial', u'homeless', u'man', u'death'] [u'design', u'await', u'council', u'approv'] [u'titl', u'beckon', u'ferrari', u'germani'] [u'tobacco', u'compani', u'fin', u'destroy', u'document'] [u'honour', u'break', u'hill', u'farmer'] [u'charg', u'adelaid', u'incid'] [u'union', u'call', u'public', u'school', u'fund'] [u'union', u'call', u'extra', u'polic'] [u'unlicens', u'driver', u'jail', u'workmat', u'death'] [u'marin', u'battl', u'insurg', u'ramadi'] [u'militari', u'cook', u'urin', u'ration'] [u'stock', u'fall', u'earli', u'ralli'] [u'terror', u'face', u'billion', u'cost', u'blow'] [u'video', u'show', u'sept', u'hijack', u'breach', u'secur'] [u'waco', u'criticis', u'unfair', u'water', u'charg', u'plan'] [u'wagga', u'princip', u'top', u'award'] [u'photograph', u'document', u'cambodia', u'peac'] [u'water', u'board', u'clarifi', u'role'] [u'weather', u'warm', u'see', u'threat', u'live', u'murray'] [u'webb', u'doubt', u'british', u'open'] [u'woman', u'hop', u'photo', u'shed', u'light', u'outback', u'mysteri'] [u'work', u'appeal', u'lover', u'sens'] [u'zimbabw', u'rebel', u'agre', u'arbitr'] [u'zimbabw', u'court', u'uphold', u'paper', u'closur'] [u'teacher', u'agre', u'deal'] [u'campaign', u'target', u'flag', u'sydney', u'devonport', u'ferri'] [u'afghani', u'detaine', u'face', u'reassess'] [u'station', u'protest', u'ralli', u'plan'] [u'alarm', u'help', u'diabet', u'sleep', u'easi'] [u'grant', u'access', u'classifi', u'report'] [u'offer', u'youth', u'jobless', u'pledg'] [u'amazon', u'report', u'profit', u'share', u'fall'] [u'ambo', u'industri', u'action', u'threaten', u'live'] [u'anim', u'festiv', u'hit', u'road'] [u'arm', u'protect', u'athlet', u'allow', u'outsid'] [u'arm', u'robber', u'drug', u'custodi', u'court', u'hear'] [u'armstrong', u'sprint', u'stage'] [u'asbesto', u'fund', u'director', u'appli', u'exempt'] [u'close'] [u'aussi', u'kiwi', u'play', u'fixtur'] [u'author', u'investig', u'skin', u'ulcer', u'outbreak'] [u'author', u'delay', u'storm', u'repair'] [u'babi', u'whale', u'strand', u'beach'] [u'bali', u'convict', u'throw', u'chao'] [u'base', u'jumper', u'bad', u'injur'] [u'beckham', u'blunder', u'ball', u'sell'] [u'berri', u'spring', u'mother', u'name', u'rural', u'ambassador'] [u'crowd', u'expect', u'camel', u'race'] [u'blaze', u'destroy', u'midland', u'home'] [u'bodi', u'remov', u'appal', u'territori'] [u'bomber', u'surpris', u'hird', u'select'] [u'brigg', u'top', u'crowd', u'milwauke', u'leaderboard'] [u'britain', u'introduc', u'languag', u'test', u'foreign'] [u'break', u'hill', u'hop', u'clean', u'tidi', u'town'] [u'bulldog', u'boss', u'back', u'rohd'] [u'bundaberg', u'hospit', u'defend', u'staff', u'secur'] [u'burn', u'philp', u'sell', u'boost', u'share'] [u'bush', u'move', u'limit', u'report', u'damag'] [u'busi', u'usual', u'heytesburi', u'plant'] [u'cahil', u'bind', u'everton'] [u'auslink', u'includ', u'riddock', u'highway'] [u'mental', u'health', u'counsellor'] [u'surgic', u'theatr'] [u'secur', u'upgrad', u'narrabri'] [u'challeng', u'threaten', u'lib', u'hold', u'margin', u'seat'] [u'chao', u'predict', u'sydney', u'rail', u'passeng'] [u'children', u'arrest', u'villawood', u'heroin', u'bust'] [u'china', u'move', u'protect', u'ancient', u'cave'] [u'christma', u'devast', u'casino', u'decis'] [u'clean', u'staff', u'woe', u'affect', u'cessnock', u'nurs'] [u'communic', u'concern', u'terror', u'threat'] [u'concern', u'air', u'push'] [u'coron', u'speak', u'polic', u'chase'] [u'council', u'question', u'hospit', u'downgrad'] [u'council', u'talk', u'lake', u'develop', u'benefit'] [u'council', u'discuss', u'memori', u'resolut'] [u'court', u'rule', u'bali', u'terrorist', u'convict'] [u'cowboy', u'predict', u'closer', u'knight', u'clash'] [u'dead', u'flash', u'flood', u'vietnam'] [u'dept', u'agre', u'hand', u'joey'] [u'develop', u'get', u'extens', u'railyard', u'deal'] [u'develop', u'plead', u'guilti', u'fraud'] [u'diplomat', u'cull', u'affect', u'intellig', u'dfat', u'head'] [u'disgrac', u'millar', u'lose', u'world', u'titl'] [u'doolan', u'touch', u'franc'] [u'doubt', u'cast', u'surfer', u'seced'] [u'dunstal', u'instal', u'hawk'] [u'masri', u'boot', u'bulldog', u'clear'] [u'england', u'trafford', u'home'] [u'fairfax', u'strike', u'weekend', u'paper'] [u'farmer', u'unimpress', u'water', u'plan'] [u'farmer', u'warn', u'loom', u'mous', u'plagu'] [u'grant', u'bolster', u'hervey', u'pearl', u'industri'] [u'fijian', u'extend', u'oliv', u'branch', u'labour'] [u'flamini', u'join', u'arsenal', u'marseill'] [u'ford', u'worker', u'fear', u'job'] [u'portugues', u'head', u'european', u'commiss'] [u'freightlink', u'appoint'] [u'french', u'singer', u'sacha', u'distel', u'die'] [u'frost', u'take', u'toll', u'cane', u'crop'] [u'futur', u'ambul', u'arriv'] [u'gehrig', u'star', u'saint', u'bomber'] [u'ghan', u'stair', u'inadequ', u'tennant', u'creek', u'mayor', u'say'] [u'govt', u'consid', u'bigger', u'area', u'wild', u'bounti'] [u'govt', u'maintain', u'hope', u'shale', u'plant'] [u'govt', u'scrap', u'bankruptci', u'chang'] [u'govt', u'urg', u'fund', u'conserv', u'program'] [u'green', u'promot', u'drug', u'free', u'credenti'] [u'green', u'ground', u'reject'] [u'green', u'want', u'flood', u'bali', u'inquiri'] [u'grow', u'rais', u'home', u'invas', u'risk', u'warn', u'polic'] [u'guantanamo', u'detent', u'tribun', u'begin'] [u'gunnedah', u'shire', u'eye', u'land', u'corridor'] [u'heaven', u'nightclub', u'appeal', u'refus'] [u'put', u'hospit'] [u'hopper', u'deni', u'schoolgirl', u'claim'] [u'hospit', u'extra', u'winter', u'bed', u'remain', u'close'] [u'hotel', u'want', u'polic', u'check', u'bouncer'] [u'hous', u'fire', u'spark', u'safeti', u'warn'] [u'howard', u'offer', u'guarante', u'athlet', u'safeti'] [u'indigen', u'youth', u'graduat', u'train', u'cours'] [u'injuri', u'heartbreak', u'hope', u'mccarthi'] [u'inquiri', u'begin', u'unauthoris', u'access', u'polic'] [u'inquiri', u'rann', u'nation', u'parti', u'appoint'] [u'iron', u'knock', u'aussi', u'perfect'] [u'johnson', u'lodg', u'athen', u'appeal'] [u'jone', u'accus', u'sydney', u'dope'] [u'jone', u'accus', u'sydney', u'dope', u'report'] [u'kalgoorli', u'resid', u'face', u'small', u'rate', u'rise'] [u'unlock', u'windi', u'attack', u'lord'] [u'kingaroy', u'hop', u'facil'] [u'landhold', u'govt', u'fire', u'line', u'wild'] [u'landhold', u'warn', u'readi'] [u'lib', u'look', u'secur', u'kimberley'] [u'lonard', u'eye', u'irish', u'titl'] [u'lucki', u'escap', u'brick', u'attack'] [u'mackerel', u'tag', u'show', u'earli', u'sign', u'success'] [u'magpi', u'appeal', u'malthous', u'fine'] [u'magpi', u'meet', u'malthous', u'fin'] [u'malthous', u'satisfi', u'meet'] [u'charg', u'carri', u'scissor'] [u'clear', u'supermarket', u'murder'] [u'mandelson', u'land', u'post'] [u'remand', u'woman', u'bail', u'adelaid', u'incid'] [u'serious', u'injur', u'cafe', u'explos'] [u'mcewen', u'favourit', u'green'] [u'melbourn', u'cafe', u'open', u'follow', u'explos'] [u'melbourn', u'drug', u'courier', u'face', u'death', u'singapor'] [u'melbourn', u'weapon', u'charg', u'bail'] [u'microsoft', u'profit', u'jump'] [u'milan', u'inzaghi', u'rule', u'week'] [u'miss', u'hospit', u'patient'] [u'miss'] [u'mix', u'feel', u'reef', u'rezon', u'plan'] [u'montoya', u'predict', u'close', u'race', u'germani'] [u'aborigin', u'communiti', u'polic'] [u'famili', u'receiv', u'payment'] [u'arrest', u'baghdad', u'oper'] [u'movement', u'financi', u'market', u'limit'] [u'movi', u'mood', u'studi', u'find'] [u'question', u'dairi', u'polici'] [u'prompt', u'nation', u'parti', u'split'] [u'murder', u'accus', u'friend', u'alleg', u'victim', u'court'] [u'needl', u'program', u'face', u'cutback'] [u'dig', u'fossil', u'miner', u'museum'] [u'newspap', u'report', u'author', u'bacon'] [u'iraqi', u'kill', u'injur', u'tank', u'accid'] [u'drug', u'scandal', u'come'] [u'opposit', u'go', u'nut', u'remov', u'minist'] [u'palestinian', u'milit', u'isra', u'rocket', u'attack'] [u'partnership', u'address', u'weed', u'woe'] [u'closer', u'casino', u'ownership'] [u'philippin', u'commit', u'fight', u'terror'] [u'pie', u'rocca', u'season'] [u'pizzonia', u'blast', u'jaguar', u'william', u'comeback'] [u'wont', u'blame', u'intellig', u'failur'] [u'polic', u'continu', u'search', u'miss', u'woman'] [u'polic', u'hunt', u'attack', u'teenag'] [u'polic', u'woman', u'river'] [u'polic', u'probe', u'cattl', u'duf', u'claim'] [u'polic', u'charg', u'drug', u'raid'] [u'politician', u'urg', u'help', u'save', u'bridg'] [u'poor', u'weather', u'affect', u'miss', u'sailor', u'search'] [u'portal', u'research', u'win', u'innov', u'award'] [u'posti', u'shape', u'bikki', u'upset', u'postal', u'worker'] [u'powel', u'criticis', u'manila', u'reward', u'milit'] [u'premier', u'launch', u'symmon', u'plain', u'improv'] [u'prison', u'group', u'welcom', u'plan', u'court', u'secur'] [u'probe', u'look', u'nation', u'park', u'timber', u'cut'] [u'push', u'time', u'prospector'] [u'public', u'ask', u'roadsid', u'attract', u'idea'] [u'public', u'look', u'pool', u'report'] [u'public', u'urg', u'report', u'bug'] [u'push', u'lake', u'condah', u'revamp'] [u'push', u'lower', u'central', u'greenhous'] [u'govt', u'play', u'land', u'court', u'decis'] [u'race', u'attack', u'defend', u'refus', u'bail'] [u'racq', u'hit', u'fuel', u'standard'] [u'radio', u'announc', u'fin', u'bulli'] [u'rate', u'rise', u'belyando', u'resid'] [u'reid', u'exit', u'indianapoli', u'event'] [u'remot', u'region', u'volunt', u'ambul', u'team'] [u'report', u'recommend', u'poki', u'restrict'] [u'research', u'centr', u'fund', u'boost'] [u'rivaldo', u'complet', u'olympiako'] [u'roadsid', u'bomb', u'kill', u'soldier'] [u'robert', u'deni', u'communic', u'breakdown'] [u'roddick', u'run', u'indianapoli'] [u'rossi', u'aim', u'check', u'biaggi', u'charg'] [u'rotari', u'ask', u'polic', u'probe', u'abus', u'claim'] [u'sadr', u'chastis', u'milit', u'behead', u'south', u'korean'] [u'school', u'futur', u'open', u'adelaid'] [u'schumach', u'reunit', u'lose', u'lucki', u'charm'] [u'seafood', u'industri', u'teach', u'rais', u'industri'] [u'search', u'crash', u'driver'] [u'search', u'miss', u'tourist'] [u'search', u'underway', u'miss', u'beach'] [u'shire', u'play', u'chemic', u'threat'] [u'snag', u'hit', u'interst', u'trade', u'citrus'] [u'snowi', u'mountain', u'servic'] [u'strong', u'expect', u'countri', u'club', u'plan'] [u'sudanes', u'critic', u'genocid', u'resolut'] [u'support', u'councillor', u'rise'] [u'support', u'power', u'station', u'probe'] [u'surfer', u'accus', u'murder', u'refus', u'bail'] [u'surgeri', u'boost', u'townsvill', u'hospit'] [u'survey', u'highlight', u'grow', u'youth', u'debt'] [u'symond', u'home', u'achill', u'treatment'] [u'talli', u'bronco'] [u'tap', u'reveal', u'fourth', u'sept', u'flight', u'final', u'moment'] [u'forc', u'defend', u'prison', u'polici'] [u'tasmania', u'dentist', u'shortag'] [u'teen', u'shoot', u'charg', u'bail'] [u'telecom', u'energi', u'sector', u'need', u'competit', u'accc'] [u'terror', u'agenda', u'local', u'govern'] [u'tiger', u'readi', u'bounc'] [u'tourist', u'die', u'lasset', u'highway', u'crash'] [u'track', u'athlet', u'clear', u'dope', u'offenc'] [u'track', u'athlet', u'clear', u'drug', u'offenc'] [u'tran', u'tasman', u'maritim', u'boundari', u'deal', u'complet'] [u'trauma', u'research', u'institut', u'open', u'melbourn'] [u'treasuri', u'take', u'hand', u'approach', u'naurus', u'problem'] [u'trucker', u'quit', u'rat'] [u'turkey', u'train', u'derail', u'death', u'toll', u'revis'] [u'consortium', u'offer', u'yuko', u'lifelin'] [u'professor', u'criticis', u'environ', u'report'] [u'declar', u'genocid', u'sudan'] [u'defenc', u'await', u'bush', u'approv'] [u'threaten', u'sudan', u'sanction'] [u'vail', u'tout', u'pend', u'trade', u'breakthrough'] [u'govt', u'monitor', u'ambul', u'union', u'move'] [u'resort', u'creditor', u'fear', u'theyll'] [u'video', u'boost', u'kempsey', u'jail'] [u'virenqu', u'seal', u'king', u'mountain', u'record'] [u'voter', u'poll', u'greenough', u'shire'] [u'govt', u'prepar', u'cook', u'review', u'respons'] [u'william', u'sister', u'advanc'] [u'wiranto', u'legal', u'action', u'elect', u'count'] [u'worker', u'know', u'expos', u'asbesto', u'union'] [u'youth', u'face', u'manslaught', u'trial'] [u'youth', u'support', u'servic', u'worker', u'ralli'] [u'bentley', u'fetch', u'million'] [u'age', u'care', u'sector', u'call', u'cash', u'inject'] [u'alcohol', u'plan', u'critic', u'bleed', u'heart', u'rubbish'] [u'black', u'snatch', u'dramat'] [u'offer', u'overdos', u'reassur'] [u'ambiti', u'middlesbrough', u'sign', u'parlour'] [u'armstrong', u'settl', u'score', u'simeoni'] [u'armstrong', u'undecid', u'tour', u'futur'] [u'australian', u'head', u'nauruan', u'treasuri'] [u'baird', u'take', u'maiden', u'pole'] [u'baird', u'start', u'pole', u'victoria'] [u'bali', u'convict', u'stand', u'indonesian', u'judg'] [u'beatti', u'put', u'power', u'firm', u'notic'] [u'beckham', u'restat', u'real', u'commit'] [u'keeper', u'return', u'boat', u'calm', u'swarm'] [u'lade', u'suicid', u'virus', u'threaten', u'expert'] [u'brazil', u'woman', u'turn', u'gun', u'amnesti'] [u'bridg', u'reunit', u'divid', u'muslim', u'croat', u'citi'] [u'bronco', u'eagl'] [u'burswood', u'takeov', u'win', u'board', u'approv'] [u'button', u'top', u'final', u'practic', u'hockenheim'] [u'cahil', u'radzinski', u'goodison', u'park'] [u'capriati', u'withdraw', u'carlsbad', u'event'] [u'carraz', u'reach', u'indi', u'semi', u'final'] [u'cattl', u'send', u'east', u'timor', u'dairi', u'herd'] [u'chimp', u'studi', u'yawn'] [u'chisholm', u'shop', u'complex', u'draw', u'strong'] [u'cool', u'period', u'sale', u'complaint'] [u'council', u'ban', u'goldfish', u'bowl'] [u'council', u'real', u'role', u'prevent', u'alcohol', u'abus'] [u'lead', u'swift', u'victori'] [u'darfur', u'death', u'toll'] [u'dont', u'kidnapp', u'iraq', u'urg', u'egypt'] [u'downer', u'consult', u'indonesia', u'bali', u'rule'] [u'slip', u'nasdaq', u'fall'] [u'edward', u'compet', u'athen', u'iaaf'] [u'edward', u'complet', u'olymp', u'iaaf'] [u'egyptian', u'diplomat', u'hold', u'hostag', u'iraq'] [u'foreign', u'polici', u'chief', u'tell', u'sudan', u'disarm'] [u'explos', u'leav', u'iraq', u'pipelin', u'ablaz'] [u'expo', u'particip', u'tell', u'invent', u'famili'] [u'fair', u'trade', u'inspect', u'target', u'worst', u'offend'] [u'forbid', u'love', u'author', u'accus', u'fraud'] [u'mexican', u'presid', u'face', u'genocid', u'charg'] [u'franco', u'fire', u'milwauke', u'lead'] [u'frawley', u'snatch', u'raider'] [u'free', u'trade', u'decis', u'hing', u'assur', u'latham'] [u'freo', u'final', u'home'] [u'gambl', u'report', u'find', u'welcom'] [u'gile', u'tripl', u'strike', u'hurt', u'windi'] [u'govern', u'thin', u'veil', u'propaganda', u'smyth'] [u'govt', u'urg', u'test', u'waterway'] [u'gunmen', u'gaza', u'governor', u'offic'] [u'hayden', u'set', u'donington', u'pace'] [u'hollywood', u'mourn', u'death', u'star', u'trek', u'music', u'compos'] [u'homeopathi', u'trial', u'aim', u'drug', u'effect'] [u'hospit', u'record', u'move', u'claim', u'employe'] [u'howard', u'pledg', u'pursu', u'bali', u'convict'] [u'improv', u'figur', u'offer', u'firework', u'night', u'repriev'] [u'internet', u'releas', u'thwart', u'album', u'thiev'] [u'iraq', u'construct', u'group', u'chief', u'seiz', u'baghdad'] [u'jayasuriya', u'star', u'lankan', u'crush', u'bangladesh'] [u'jenkin', u'charg', u'desert'] [u'jone', u'seek', u'charg', u'husband'] [u'kakadus', u'tradit', u'owner', u'criticis', u'howard'] [u'kroger', u'rule', u'stand', u'goldstein'] [u'lampard', u'stay', u'stamford', u'bridg'] [u'latham', u'admit', u'cannabi'] [u'latham', u'pledg', u'playgroup'] [u'lib', u'seek', u'royal', u'commiss', u'gangland', u'kill'] [u'lion', u'destroy', u'crow'] [u'lonard', u'shoot', u'clear', u'ireland'] [u'lose', u'year', u'emerg', u'kimberley'] [u'die', u'injur', u'arthurvill', u'shoot'] [u'mayor', u'call', u'garbag', u'disput', u'resolut'] [u'mersey', u'staff', u'shortag', u'forc', u'surgeri', u'shutdown'] [u'microsoft', u'offer', u'job'] [u'minist', u'tighten', u'prison', u'activ', u'access'] [u'natur', u'reserv', u'protect', u'earless', u'dragon'] [u'bush', u'record', u'fail', u'dispel', u'awol', u'charg'] [u'proof', u'allawi', u'execut', u'claim', u'report'] [u'norfolk', u'prepar', u'farewel', u'murder', u'minist'] [u'obikwelu', u'spoil', u'green', u'birthday', u'parti'] [u'orford', u'seal', u'gasp', u'storm'] [u'patriot', u'miner', u'surrend', u'mous', u'size', u'diamond'] [u'pie', u'outclass', u'bulldog'] [u'pittman', u'fourth', u'pari'] [u'plan', u'intern', u'space', u'station'] [u'poki', u'mark', u'mileston'] [u'polic', u'wit', u'prahran', u'shoot'] [u'polic', u'station', u'raze', u'gaza', u'unrest', u'continu'] [u'powel', u'tour', u'middl', u'east', u'peac', u'push'] [u'premier', u'challeng', u'debat', u'bacon', u'legaci'] [u'prison', u'design', u'start', u'criminologist', u'say'] [u'prison', u'site', u'advic', u'confus', u'queanbeyan', u'resid'] [u'reef', u'zone', u'forc', u'price', u'seafood'] [u'roddick', u'cruis', u'quarter', u'final', u'hrbati'] [u'ronaldo', u'thrill', u'olymp'] [u'roo', u'surg'] [u'rooster', u'surviv', u'rabbitoh', u'scare'] [u'schu', u'fastest', u'twice', u'halt', u'practic', u'session'] [u'schumach', u'lead', u'german', u'practic'] [u'slate', u'onlin', u'magazin', u'sale'] [u'solomon', u'mission', u'coordin'] [u'south', u'east', u'asia', u'win', u'malaysian'] [u'success', u'bacon', u'credit', u'gunn', u'chief'] [u'sudanes', u'rebel', u'agre', u'talk'] [u'tiwi', u'ferri', u'reduc', u'travel', u'cost'] [u'tour', u'reckon', u'roger'] [u'twin', u'push', u'bush', u'elect', u'campaign', u'onlin', u'chat'] [u'overnight', u'smash'] [u'muslim', u'cleric', u'hat', u'court', u'tell'] [u'underwat', u'camera', u'assist', u'whale', u'rescu'] [u'state', u'depart', u'hold', u'sudan', u'genocid'] [u'target', u'milit', u'raid', u'iraqi', u'citi'] [u'troop', u'leav', u'seoul'] [u'updat', u'alleg', u'desert', u'japan'] [u'voter', u'welcom', u'nat', u'labor', u'allianc', u'maywald'] [u'washington', u'freez', u'asset', u'liberian', u'presid'] [u'waterway', u'rule', u'hamper', u'locust', u'prevent', u'farmer'] [u'webb', u'miss', u'british', u'open'] [u'william', u'sister', u'closer', u'showdown'] [u'woman', u'escap', u'abductor'] [u'worker', u'train', u'treat', u'offend'] [u'workplac', u'relat', u'overhaul', u'costello', u'agenda'] [u'adopt', u'regist', u'reopen'] [u'advis', u'court', u'rule', u'wake', u'bank'] [u'worker', u'return', u'chadian', u'refuge', u'camp'] [u'allawi', u'shore', u'support', u'iraq'] [u'alleg', u'ecstasi', u'smuggler', u'remand', u'custodi'] [u'arafat', u'accept', u'quri', u'reform'] [u'armstrong', u'win', u'tour', u'time', u'trial'] [u'athlet', u'unveil', u'olymp', u'swimsuit'] [u'aussi', u'creat', u'histori', u'hole', u'doubl'] [u'australia', u'consid', u'troop', u'darfur'] [u'australia', u'stand', u'terrorist', u'downer'] [u'belconnen', u'age', u'care', u'facil', u'provid', u'bed'] [u'british', u'govt', u'crack', u'anim', u'right'] [u'busi', u'group', u'call', u'airlin', u'subsidi'] [u'cat', u'stay', u'fifth', u'down', u'blue'] [u'charg', u'mexican', u'presid', u'throw'] [u'consum', u'need', u'common', u'voic', u'food', u'choic'] [u'controversi', u'mcconvill'] [u'coulthard', u'role', u'mclaren', u'denni'] [u'crawley', u'toast', u'tripl'] [u'disrupt', u'passeng', u'delay', u'virgin', u'flight'] [u'dividend', u'polici', u'blame', u'power'] [u'door', u'knock', u'underway', u'sexual', u'assault'] [u'downer', u'back', u'drug', u'courier', u'clemenc'] [u'downer', u'play', u'polit', u'timor', u'talk'] [u'drink', u'doolan', u'master'] [u'eadi', u'fli', u'europ'] [u'kill', u'attack', u'tamil', u'safe', u'hous'] [u'electr', u'network', u'report', u'vindic', u'union'] [u'england', u'despit', u'chanderpaul'] [u'enthusiasm', u'hold', u'drought', u'cut', u'tree', u'plant'] [u'explos', u'kill', u'mauritius', u'resort', u'polic'] [u'famili', u'payment', u'criticis', u'boost', u'gambl'] [u'finish', u'highlight', u'say', u'armstrong'] [u'flight', u'coober', u'pedi', u'continu'] [u'flood', u'victim', u'benefit', u'mysteri', u'lotteri', u'winner'] [u'liverpool', u'mayor', u'deni', u'improp', u'conduct'] [u'frustrat', u'ralf', u'eye', u'hungari', u'start'] [u'fund', u'grant', u'maningrida', u'band', u'profession'] [u'good', u'chanc', u'aust', u'troop', u'sudan'] [u'govt', u'plan', u'prison', u'botch'] [u'govt', u'restrict', u'prison', u'condemn'] [u'govt', u'fail', u'homeless', u'acoss', u'say'] [u'govt', u'unsway', u'qaeda', u'threat'] [u'green', u'withhold', u'prefer', u'labor', u'back'] [u'gun', u'play', u'role', u'solomon', u'peac', u'memori'] [u'health', u'minist', u'admit', u'tri', u'didnt', u'inhal'] [u'heidfeld', u'hop', u'william', u'opportun'] [u'hospit', u'need', u'recruit', u'control', u'hid'] [u'pregnant', u'harri', u'potter', u'wont', u'late', u'rowl'] [u'injur', u'lion', u'face', u'scan'] [u'investor', u'demonstr', u'cooma', u'confid'] [u'iranian', u'agent', u'clear', u'kill', u'photograph'] [u'iraq', u'hostag', u'crisi', u'spiral'] [u'iraq', u'syria', u'cooper', u'border', u'secur'] [u'isra', u'minist', u'warn', u'attack', u'jewish'] [u'isra', u'missil', u'attack', u'hit', u'gaza', u'milit', u'home'] [u'kangaroo', u'cull', u'shooter', u'protest'] [u'kennedi', u'distraught', u'cowboy', u'pinch', u'thriller'] [u'kezman', u'strike', u'twice', u'lead', u'chelsea', u'past', u'celtic'] [u'late', u'tri', u'secur', u'dragon', u'triumph'] [u'latham', u'comment', u'forc', u'timor', u'talk', u'halt'] [u'legal', u'ident', u'cast', u'eagl', u'transport'] [u'literaci', u'improv', u'aborigin', u'benefit'] [u'lonard', u'maintain', u'irish', u'open', u'lead'] [u'risk', u'water', u'contamin'] [u'luca', u'acknowledg', u'pay', u'suspens', u'concern'] [u'mcewen', u'pari', u'battl'] [u'motorist', u'help', u'road', u'safer'] [u'murder', u'worker', u'famili', u'make', u'plea', u'attack'] [u'neitz', u'target', u'demon', u'beat', u'tiger'] [u'newspap', u'raid', u'hong', u'kong', u'fraud', u'probe'] [u'crisi', u'english', u'rugbi', u'insist', u'cohen'] [u'north', u'coast', u'popul', u'continu', u'grow'] [u'pakistani', u'fear', u'kidnap', u'iraq'] [u'review', u'rais', u'drug', u'price'] [u'poki', u'creat', u'gambl', u'addict', u'increas', u'say'] [u'polic', u'appeal', u'help', u'person'] [u'polic', u'happi', u'stay', u'union'] [u'polic', u'investig', u'suspici'] [u'polic', u'offic', u'attack', u'capsicum', u'spray'] [u'polic', u'search', u'miss', u'canoeist'] [u'raider', u'deep', u'sink', u'warrior'] [u'rail', u'secur', u'upgrad', u'put', u'vandal', u'notic'] [u'rebel', u'club', u'hous', u'propos', u'overrul'] [u'recount', u'confirm', u'yudhoyono', u'poll'] [u'rescu', u'prompt', u'tourist', u'safeti', u'warn'] [u'road', u'upgrad', u'save', u'live', u'racv'] [u'roddick', u'ralli', u'reach', u'indi', u'final'] [u'rossi', u'pole', u'british'] [u'ruin', u'year', u'hous', u'bulgaria'] [u'russia', u'protest', u'closur', u'belarus'] [u'satellit', u'survey', u'wash', u'away', u'wave', u'theori'] [u'schumach', u'snare', u'german', u'pole'] [u'senat', u'seek', u'clarif', u'lade', u'charter'] [u'serena', u'davenport', u'showdown'] [u'socceroo', u'copa', u'america', u'berth'] [u'stop', u'work', u'meet', u'disrupt', u'perth', u'train', u'servic'] [u'stranger', u'danger', u'program', u'overhaul'] [u'sydney', u'weekend', u'train', u'servic', u'smooth'] [u'health', u'struggl', u'age', u'doctor'] [u'thai', u'bird', u'suspect', u'rule'] [u'arrest', u'turkish', u'train', u'accid'] [u'treati', u'formalis', u'australia', u'ocean', u'border'] [u'tredrea', u'extend', u'port', u'streak'] [u'trio', u'share', u'milwauke', u'lead'] [u'trulli', u'leav', u'renault'] [u'charg', u'arthurvill', u'murder'] [u'overnight', u'smash'] [u'surviv', u'sunshin', u'coast', u'plane', u'crash'] [u'urg', u'citizen', u'alert', u'alarm'] [u'union', u'poll', u'pressur', u'labor', u'reject'] [u'militari', u'aid', u'philippin', u'anti', u'terror', u'push'] [u'report', u'prison', u'abus', u'whitewash'] [u'research', u'develop', u'breast', u'cancer', u'treatment'] [u'polic', u'open', u'murder', u'case'] [u'volandri', u'end', u'moya', u'hop', u'fifth', u'croatian', u'titl'] [u'volunt', u'hand', u'dirti', u'nation', u'tree'] [u'watcher', u'report', u'record', u'whale', u'season'] [u'woman', u'prais', u'kimberley', u'surviv', u'effort'] [u'women', u'urg', u'regular', u'smear'] [u'aborigin', u'paint', u'fail', u'sell'] [u'call', u'polic', u'protect', u'kangaroo', u'cull'] [u'action', u'call', u'inner', u'citi', u'rail', u'line'] [u'acton', u'quit', u'agforc'] [u'age', u'care', u'place', u'predict', u'quick'] [u'age', u'carer', u'urg', u'ignor', u'euthanasia', u'group'] [u'airlin', u'plan', u'alic', u'tennant', u'creek', u'servic'] [u'aker', u'book', u'video', u'evid'] [u'ambul', u'worker', u'refus'] [u'anti', u'terror', u'law', u'dump', u'bali', u'case'] [u'help', u'school', u'studi', u'star'] [u'armstrong', u'doesnt', u'come', u'close', u'cannib'] [u'armstrong', u'make', u'tour', u'histori', u'mcewen', u'win', u'green'] [u'armstrong', u'pedal', u'fame', u'fortun'] [u'armstrong', u'rediscov', u'cycl'] [u'steadi', u'despit', u'bank', u'gain'] [u'auction', u'drive', u'home', u'guyra', u'golf', u'club'] [u'aust', u'publish', u'pull', u'controversi', u'memoir'] [u'australian', u'appeal', u'singapor', u'death', u'sentenc'] [u'australian', u'appeal', u'singapor', u'death', u'sentenc'] [u'australian', u'unwil', u'deal', u'terrorist'] [u'author', u'probe', u'forc', u'jetstar', u'land'] [u'bali', u'victim', u'father', u'downer'] [u'beatti', u'energex', u'clash', u'grid'] [u'turnout', u'digger', u'dealer'] [u'blackburn', u'disqualifi', u'athen', u'lead'] [u'blast', u'hit', u'indonesian', u'elector', u'commiss'] [u'board', u'hostel', u'close', u'door'] [u'brack', u'back', u'travel', u'allow', u'rule'] [u'brazil', u'claim', u'copa', u'america', u'penalti', u'shootout'] [u'brigadi', u'find', u'philippin', u'withdraw', u'unfortun'] [u'broadband', u'rollout', u'town'] [u'bulldog', u'sack', u'club', u'great', u'criticis', u'rhode'] [u'bulldog', u'sack', u'club', u'great', u'criticis', u'rohd'] [u'bushwalk', u'survivor', u'tough', u'bird'] [u'busi', u'ident', u'die'] [u'cabin', u'smoke', u'forc', u'jetstar', u'emerg', u'land'] [u'coober', u'pedi', u'link'] [u'differ', u'plan', u'becton', u'develop'] [u'shark', u'net', u'rethink'] [u'urgent', u'action', u'ring', u'road'] [u'water', u'review', u'ensur', u'region', u'price'] [u'cana', u'win', u'croatia', u'open'] [u'canegrow', u'look', u'sugar', u'reform', u'fund'] [u'caravan', u'crush'] [u'caravan', u'park', u'plan', u'take', u'shape'] [u'bomb', u'explod', u'baghdad'] [u'bomb', u'baghdad', u'mosul'] [u'semi', u'road', u'crash', u'claim', u'life'] [u'chan', u'face', u'judiciari'] [u'charg', u'recommend', u'oasi', u'failur'] [u'christma', u'casino', u'licenc'] [u'collin', u'predict', u'drug', u'free', u'olymp', u'final'] [u'columbian', u'author', u'seiz', u'huge', u'cocain', u'haul'] [u'cop', u'round', u'wander', u'cattl'] [u'costello', u'visit', u'gippsland'] [u'council', u'move', u'closer', u'pass', u'bendigo', u'budget'] [u'court', u'consid', u'johnson', u'appeal'] [u'crow', u'fan', u'feel', u'player', u'pain', u'craig'] [u'darwin', u'stab', u'self', u'inflict'] [u'davenport', u'dump', u'serena', u'titl'] [u'demand', u'grow', u'central', u'welfar', u'servic'] [u'demon', u'finish'] [u'develop', u'flag', u'public', u'input', u'golf', u'resort'] [u'discoveri', u'rewrit', u'chines', u'vehicl', u'histori'] [u'disgrac', u'repay', u'travel', u'allow'] [u'doubt', u'cast', u'footbal', u'leagu', u'futur'] [u'drought', u'assist', u'farmer'] [u'embattl', u'winemak', u'lose', u'home'] [u'seek', u'coal', u'fire', u'power', u'station'] [u'environ', u'minist', u'hear', u'fisher', u'rezon', u'fear'] [u'ethicist', u'confront', u'protest', u'adelaid'] [u'maintain', u'sanction', u'threat', u'sudan'] [u'explos', u'hit', u'indonesian', u'elector', u'commiss'] [u'famili', u'daycar', u'centr', u'open', u'door'] [u'famili', u'plan', u'action', u'journalist', u'murder', u'iran'] [u'govt', u'urg', u'help', u'fund', u'nickel', u'project'] [u'insurg', u'kill', u'iraq', u'shootout'] [u'film', u'financ', u'revamp', u'rejuven', u'industri'] [u'firm', u'rais', u'hop', u'hostag', u'releas', u'iraq'] [u'coach', u'testifi', u'hopper', u'trial'] [u'judg', u'appoint', u'adelaid', u'head'] [u'offic', u'stand', u'trial', u'drug'] [u'fourteen', u'kill', u'turkish', u'train', u'hit', u'minibus'] [u'franc', u'help', u'polic', u'australian', u'water'] [u'franco', u'win', u'milwauke', u'open'] [u'fund', u'clarenc', u'valley', u'plan'] [u'health', u'admin', u'shake', u'predict'] [u'girl', u'sexual', u'assault'] [u'gosford', u'runner', u'put', u'marathon', u'effort'] [u'govt', u'rejig', u'centrelink', u'debt'] [u'green', u'claim', u'trade', u'agreement', u'water', u'risk'] [u'green', u'seek', u'payout', u'wheat', u'farmer'] [u'group', u'flag', u'drag', u'snag'] [u'group', u'highlight', u'small', u'council', u'financi', u'woe'] [u'guard', u'refus', u'interview', u'shoot'] [u'hard', u'time', u'chariti'] [u'hawk', u'tiger', u'need', u'clean', u'break', u'say', u'matthew'] [u'healthi', u'respons', u'survey'] [u'helicopt', u'join', u'search', u'miss', u'paddler'] [u'howard', u'leav', u'green', u'protest', u'wake'] [u'howard', u'stay', u'despit', u'reach', u'retir'] [u'illeg', u'industri', u'prosper', u'brothel', u'owner'] [u'injur', u'charman', u'miss', u'match'] [u'iraq', u'hostag', u'surviv', u'deadlin'] [u'isra', u'court', u'refus', u'lift', u'vanunu', u'travel'] [u'isra', u'form', u'human', u'chain', u'oppos', u'gaza', u'plan'] [u'johnson', u'lose', u'olymp', u'appeal'] [u'johnson', u'appeal', u'dismiss'] [u'junior', u'javelin', u'star', u'take', u'world', u'bronz', u'medal'] [u'knife', u'paper', u'bind', u'emir', u'plane'] [u'labor', u'promis', u'faster', u'access', u'drought', u'assist'] [u'leaflet', u'prepar', u'briton', u'terror', u'attack'] [u'lion', u'wait', u'charman', u'diagnosi'] [u'mackay', u'win', u'rugbi', u'leagu', u'foley', u'shield'] [u'malacca', u'strait', u'piraci', u'rise'] [u'malik', u'power', u'pakistan', u'victori', u'india'] [u'accus', u'break', u'enter', u'face', u'court'] [u'charg', u'fatal', u'mcdonald', u'shoot'] [u'jail', u'bash', u'evil', u'girlfriend', u'death'] [u'jail', u'truck', u'firm', u'fraud'] [u'shoot', u'dead', u'alleg', u'hold'] [u'shoot', u'dead', u'sydney'] [u'court', u'fake', u'death', u'claim'] [u'marathon', u'massu', u'win', u'kitzbuhel'] [u'mcewen', u'ogradi', u'leader', u'pack'] [u'meet', u'back', u'countri', u'club', u'revamp'] [u'milit', u'kill', u'west', u'bank', u'battl'] [u'million', u'strand', u'bangladesh', u'floodwat'] [u'minist', u'defend', u'retail', u'outlet', u'rezon', u'decis'] [u'minist', u'seek', u'talk', u'wast', u'store', u'union', u'ban'] [u'miss', u'sailor', u'search', u'call'] [u'chang', u'possibl', u'health', u'administr'] [u'oppos', u'ningaloo', u'reef', u'heritag', u'list'] [u'want', u'polic', u'boost', u'tackl', u'hoon'] [u'murder', u'trial', u'hear', u'life', u'insur', u'evid'] [u'nativ', u'titl', u'tribun', u'make', u'tamworth', u'region'] [u'newcastl', u'clash', u'see', u'cowboy', u'join'] [u'rail', u'timet', u'work'] [u'decis', u'bathhous'] [u'stand', u'refere', u'amid', u'grow', u'critic'] [u'defend', u'olymp', u'site', u'subsidi'] [u'nurs', u'home', u'longer', u'build'] [u'olyroo', u'track', u'athen', u'campaign'] [u'oneil', u'say', u'australia', u'look', u'copa', u'spot'] [u'open', u'interrog'] [u'oppn', u'put', u'dentist', u'recruit', u'spotlight'] [u'oppn', u'question', u'water', u'charg'] [u'overthrow', u'fijian', u'want'] [u'pair', u'dubbo', u'court', u'murder', u'charg'] [u'pair', u'uninjur', u'plane', u'crash'] [u'paper', u'maker', u'smell', u'money', u'eleph', u'dung'] [u'pitcairn', u'abus', u'accus', u'fight', u'british', u'claim'] [u'plan', u'copper', u'product', u'move', u'ahead'] [u'accus', u'labor', u'play', u'polit', u'trade', u'deal'] [u'polic', u'cover', u'prompt', u'commiss', u'call'] [u'polic', u'crack', u'drink', u'driver'] [u'polic', u'investig', u'darwin', u'stab'] [u'polic', u'tourist', u'road', u'crash', u'victim'] [u'polic', u'probe', u'pedestrian', u'death'] [u'polic', u'suspect', u'mistak', u'mother', u'murder'] [u'politician', u'highlight', u'domest', u'violenc'] [u'portug', u'reject', u'chelsea', u'request', u'spare', u'tiago'] [u'premier', u'hear', u'hospit', u'concern'] [u'probe', u'launch', u'suspici', u'school', u'blaze'] [u'protest', u'continu', u'fight', u'cull'] [u'public', u'offer', u'region', u'ambul', u'assur'] [u'public', u'spar', u'water', u'restrict'] [u'retail', u'trade', u'rise'] [u'electr', u'shake'] [u'rain', u'help', u'lift', u'grain', u'farmer', u'spirit'] [u'rain', u'need', u'dam'] [u'ratepay', u'plan', u'popular', u'elect', u'mayor'] [u'relay', u'team', u'expect', u'record', u'swim', u'defend', u'gold'] [u'renmark', u'host', u'quandong', u'gather'] [u'resid', u'defend', u'bridg', u'petit'] [u'resid', u'face', u'rate', u'rise'] [u'resid', u'want', u'green', u'light', u'traffic', u'safeti', u'boost'] [u'revamp', u'plan', u'coast', u'power', u'suppli'] [u'risdon', u'inmat', u'lock', u'disturb'] [u'roadhous', u'see', u'tourism', u'push'] [u'roddick', u'retain', u'indi', u'crown'] [u'rossi', u'pull', u'clear', u'british', u'victori'] [u'rover', u'thoma', u'paint', u'tip', u'break'] [u'rumford', u'win', u'irish', u'open', u'lonard', u'fourth'] [u'rural', u'australia', u'log'] [u'rural', u'paramed', u'intensifi', u'industri', u'woe'] [u'russian', u'isinbayeva', u'set', u'pole', u'vault', u'world', u'record'] [u'russia', u'great', u'gymnast', u'declin'] [u'compromis', u'yellabinna', u'reserv', u'plan'] [u'nation', u'parti', u'leader', u'deni', u'split'] [u'school', u'offer', u'counsel', u'fatal', u'crash'] [u'schu', u'expect', u'beat', u'season'] [u'schumach', u'equal', u'record', u'germani'] [u'schwab', u'departur', u'immedi'] [u'schwab', u'earli', u'exit'] [u'schwab', u'season'] [u'search', u'begin', u'armstrong', u'successor'] [u'search', u'miss', u'canoeist', u'suspend'] [u'search', u'launch', u'suspect', u'drown', u'victim'] [u'secur', u'tight', u'democrat', u'convent'] [u'vaccin'] [u'sharon', u'defiant', u'gaza', u'pullout'] [u'shire', u'face', u'build', u'boom'] [u'shire', u'face', u'underwat', u'observatori', u'blowout'] [u'spam', u'drain', u'small', u'busi'] [u'springbok', u'concern', u'gregan', u'specul'] [u'staff', u'bank', u'custom', u'servic'] [u'stage', u'winner', u'tour', u'franc'] [u'sudanes', u'milit', u'warn', u'crusad', u'armi'] [u'sudanes', u'refuge', u'flood', u'chad'] [u'sunshin', u'coast', u'retain', u'cycl', u'championship'] [u'surgic', u'chang', u'creat', u'problem'] [u'suspect', u'rebel', u'kill', u'kashmir'] [u'task', u'forc', u'bolster', u'job'] [u'push', u'realist', u'jetstar', u'schedul'] [u'teen', u'jail', u'attempt', u'rape', u'teacher'] [u'tiger', u'board', u'face', u'possibl', u'challeng'] [u'tiger', u'board', u'face', u'possibl', u'challeng'] [u'time', u'run', u'farm', u'fellowship'] [u'tour', u'lanc', u'fact'] [u'townsvill', u'host', u'agforc', u'confer'] [u'train', u'timet', u'necessarili', u'time'] [u'tree', u'clear', u'fine', u'send', u'warn'] [u'trevor', u'take', u'biggest', u'prize'] [u'tuna', u'tast', u'underway', u'port', u'lincoln'] [u'twin', u'vaughan', u'put', u'england'] [u'secur', u'snowi', u'shire', u'seat'] [u'museum', u'arm', u'grab'] [u'underus', u'halfway', u'hous', u'close'] [u'unlaw', u'shoot', u'charg', u'policeman'] [u'militari', u'investig', u'botch', u'afghan', u'raid'] [u'remind', u'pedestrian', u'road', u'risk'] [u'timber', u'get', u'fund', u'grant'] [u'weak', u'dollar', u'blame', u'wholesal', u'inflat', u'hike'] [u'wenger', u'dismiss', u'rumour', u'vieira'] [u'wide', u'secur', u'age', u'care', u'place'] [u'woodsid', u'want', u'timor', u'deal', u'year'] [u'need', u'riddoch', u'highway', u'work'] [u'flee', u'indonesian', u'volcano', u'erupt'] [u'french', u'guantanamo', u'detaine', u'repatri', u'report'] [u'abbott', u'fast', u'track', u'drug', u'list'] [u'aborigin', u'focus', u'natur', u'resourc', u'manag'] [u'activist', u'confid', u'ban', u'stop', u'wast', u'plan'] [u'afghan', u'hospit', u'collaps', u'kill', u'injur'] [u'fin', u'ugli', u'behaviour'] [u'agil', u'agassi', u'aveng', u'loss', u'haa'] [u'aker', u'clear', u'strike', u'charg'] [u'aker', u'appear', u'video', u'link'] [u'ambo', u'disput', u'hurt', u'goulburn', u'valley'] [u'ambul', u'disput', u'put', u'live', u'risk', u'doctor'] [u'america', u'holder', u'sack', u'win', u'skipper'] [u'annan', u'african', u'leader', u'hold', u'sudan', u'talk'] [u'apprenticeship', u'program', u'shame', u'union'] [u'arafat', u'secur', u'power', u'offici'] [u'archer', u'refere', u'despit', u'critic'] [u'arroyo', u'ask', u'answer', u'fraud', u'charg'] [u'australian', u'lead', u'sudan', u'fundrais', u'effort'] [u'author', u'deni', u'fabric', u'forbid', u'love'] [u'bali', u'bomber', u'execut', u'proceed'] [u'beatti', u'reject', u'surfer', u'secess'] [u'get', u'clear', u'grafton', u'tare', u'servic'] [u'bluescop', u'steel', u'fin', u'toxic', u'leak'] [u'bomb', u'messag', u'hoax', u'polic'] [u'bomb', u'threat', u'forc', u'flight', u'sydney'] [u'bosnian', u'mass', u'grave', u'reveal', u'remain', u'muslim'] [u'bulgaria', u'repatri', u'bodi', u'execut', u'hostag'] [u'butcher', u'miss', u'second', u'test'] [u'butler', u'receiv', u'rise', u'star'] [u'butt', u'pois', u'join', u'newcastl'] [u'detent', u'centr', u'hand'] [u'drought', u'polici', u'free', u'polit'] [u'icac', u'probe', u'report', u'leak'] [u'campaign', u'aim', u'land', u'hand'] [u'canberra', u'victim', u'seek', u'counsel'] [u'canyon', u'tragedi', u'famili', u'maintain', u'insur'] [u'centro', u'merger', u'boost'] [u'citrus', u'firm', u'unfaz', u'delay'] [u'cityrail', u'sick', u'leav', u'level', u'extraordinari', u'costa'] [u'civic', u'rejuven', u'project', u'underway'] [u'clinton', u'savag', u'wealth', u'power', u'parti'] [u'coast', u'cruis', u'ship', u'termin', u'plan', u'continu'] [u'code', u'cut', u'financi', u'advis', u'soft', u'dollar', u'payment'] [u'communiti', u'share', u'econom', u'develop', u'idea'] [u'communiti', u'urg', u'comment', u'health', u'merger'] [u'competitor', u'pump', u'volum', u'stereo', u'sound'] [u'convict', u'crimin', u'pois', u'return', u'govern'] [u'coron', u'rule', u'foul', u'play', u'itiner', u'death'] [u'council', u'put', u'brake', u'airport', u'drag', u'plan'] [u'council', u'campaign', u'campus'] [u'court', u'consid', u'philippin', u'vote', u'rig', u'claim'] [u'court', u'uphold', u'convict', u'busi', u'partner'] [u'court', u'void', u'franc', u'marriag'] [u'crouch', u'unfaz', u'past', u'aker', u'critic'] [u'debat', u'continu', u'level', u'cross', u'safeti'] [u'democrat', u'seek', u'region', u'job', u'plan'] [u'downer', u'unmov', u'spanish', u'protest'] [u'elector', u'detail', u'onlin'] [u'ethicist', u'human', u'right', u'view'] [u'fame', u'aborigin', u'artwork', u'pass', u'auction'] [u'farmer', u'stage', u'ordin', u'protest', u'offic'] [u'farmer', u'fight', u'wheat', u'debt', u'compo'] [u'farmer', u'urg', u'appli', u'drought', u'assist'] [u'farmer', u'warn', u'immedi', u'follow', u'rain'] [u'fear', u'hold', u'miss', u'fisher'] [u'fear', u'reserv', u'protect', u'threaten', u'job'] [u'feder', u'fund', u'forestri', u'work'] [u'ferrero', u'quit', u'toronto', u'master', u'pain'] [u'firefight', u'die', u'tri', u'save'] [u'fish', u'limit', u'boost', u'boat', u'sale'] [u'flood', u'chao', u'continu', u'india', u'bangladesh'] [u'foetal', u'brain', u'cell', u'hope', u'stroke', u'victim'] [u'foolhardi', u'rock', u'diver', u'lose', u'payout'] [u'guantanamo', u'prison', u'arriv', u'franc'] [u'freez', u'preserv', u'endang', u'speci'] [u'gallop', u'say', u'work', u'north', u'west', u'right', u'road'] [u'gile', u'spin', u'england', u'victori'] [u'golden', u'time', u'miner', u'norseman'] [u'googl', u'offer', u'estim', u'worth'] [u'gore', u'carter', u'slam', u'bush', u'democrat', u'convent'] [u'govt', u'critic', u'hasten', u'retir', u'judg'] [u'govt', u'open', u'book', u'cairn', u'educ'] [u'govt', u'support', u'portland', u'factori', u'push'] [u'govt', u'revitalis', u'christma', u'island', u'economi'] [u'govt', u'urg', u'rethink', u'croc', u'festiv', u'support'] [u'green', u'want', u'bigger', u'murray', u'flow', u'commit'] [u'group', u'reject', u'breast', u'screen', u'unit', u'claim'] [u'grower', u'fear', u'picker', u'spread', u'canker'] [u'incid', u'trigger', u'year', u'shoot'] [u'har', u'race', u'chief', u'welcom', u'drug', u'crackdown'] [u'health', u'dept', u'stand', u'patient', u'care'] [u'health', u'merger', u'news', u'expect', u'today'] [u'health', u'overhaul', u'cost', u'job'] [u'health', u'summit', u'hear', u'teen', u'pregnanc', u'tale'] [u'heroin', u'accus', u'go', u'trial'] [u'hindu', u'muslim', u'clash', u'result', u'gujarat', u'curfew'] [u'build', u'supercomput', u'militari'] [u'indonesia', u'proceed', u'bashir', u'case'] [u'iraqi', u'kidnapp', u'free', u'egyptian', u'diplomat'] [u'iraqi', u'visit', u'saudi', u'arabia'] [u'irrig', u'disput', u'settl', u'court'] [u'want', u'catch', u'millar'] [u'jackson', u'repeat', u'wnba', u'honour'] [u'jail', u'guard', u'concern', u'prison', u'lockdown'] [u'jail', u'staff', u'clear', u'prison', u'escap'] [u'jetstar', u'explain', u'flight', u'chang'] [u'judiciari', u'refus', u'bring', u'forward', u'william', u'case'] [u'judiciari', u'final', u'hear', u'oneil', u'charg'] [u'karzai', u'nomin', u'afghan', u'elect'] [u'klinsmann', u'accept', u'german', u'coach'] [u'knee', u'injuri', u'end', u'overmar', u'career'] [u'labor', u'dither', u'free', u'trade'] [u'labor', u'democrat', u'debat'] [u'labor', u'senat', u'speak'] [u'landhold', u'urg', u'better', u'understand', u'drought'] [u'latham', u'centrelink', u'gambl', u'line'] [u'lead', u'fear', u'prompt', u'white', u'wing', u'recal'] [u'leagu', u'watch', u'richmond', u'rebel'] [u'libya', u'start', u'entri', u'talk'] [u'live', u'cattl', u'market', u'continu', u'south', u'east', u'asian'] [u'liverpool', u'edg', u'closer', u'owen', u'deal'] [u'liverpool', u'report', u'prove', u'latham', u'unfit'] [u'magpi', u'deni', u'compromis', u'venu'] [u'mayor', u'reject', u'develop', u'claim'] [u'meet', u'discuss', u'option'] [u'melbourn', u'wake', u'coldest', u'year'] [u'meningococc', u'case', u'spark', u'strain', u'concern'] [u'meningococc', u'suspect', u'teenag', u'death'] [u'merger', u'announc', u'fruit', u'grower'] [u'merger', u'creat', u'fifth', u'biggest', u'properti', u'trust'] [u'forum', u'tell', u'flow', u'share', u'scheme', u'snub'] [u'minist', u'blame', u'state', u'entri', u'dispar'] [u'minist', u'fail', u'cave', u'fishermen', u'demand'] [u'minist', u'agre', u'drought', u'assist', u'revamp'] [u'minist', u'urg', u'sign', u'drought', u'chang'] [u'miss', u'fisherman', u'bodi'] [u'polic', u'see', u'answer', u'hoon'] [u'air', u'health', u'merger', u'fear'] [u'oppos', u'kyoto', u'protocol'] [u'age', u'care', u'place', u'announc', u'illawarra'] [u'clash', u'kill', u'seven', u'indonesia', u'aceh', u'provinc'] [u'environ', u'minist', u'meet', u'gladston', u'fisher'] [u'import', u'impress', u'croc', u'coach'] [u'north', u'korean', u'defector', u'arriv', u'south', u'korea'] [u'galleri', u'deserv', u'support', u'dealer', u'say'] [u'nurs', u'ambul', u'crew', u'plan'] [u'outback', u'road', u'open', u'rain'] [u'pair', u'murder', u'charg', u'refus', u'bail'] [u'palliat', u'care', u'facil', u'fail', u'indigen'] [u'pamper', u'pet', u'foreign', u'recipi'] [u'parmalat', u'lay', u'foundat', u'liquid'] [u'parmalat', u'restructur', u'boost', u'aust', u'export'] [u'pension', u'rate', u'rebat', u'complic'] [u'philippin', u'offici', u'complaint', u'iraq'] [u'plan', u'boost', u'region', u'airport', u'secur'] [u'platform', u'risk', u'ghan', u'reput'] [u'polic', u'condemn', u'alcohol', u'abus'] [u'polic', u'investig', u'melbourn', u'terrorist', u'cell'] [u'polic', u'reveal', u'ident', u'shoot', u'guard'] [u'polic', u'urg', u'reopen', u'inquiri', u'prison', u'gang'] [u'polic', u'wait', u'interview', u'secur', u'guard'] [u'polli', u'dont', u'want', u'gambl', u'mildura', u'futur'] [u'pressur', u'mount', u'wild', u'bait'] [u'pride', u'line', u'hawk', u'say', u'vandenberg'] [u'prison', u'face', u'crackdown'] [u'qanta', u'increas', u'melbourn', u'servic'] [u'choos', u'site', u'steel', u'oper'] [u'industri', u'miner', u'secur', u'interim', u'tenur'] [u'qualifi', u'support', u'health', u'region', u'chang'] [u'race', u'attack', u'suspect', u'undergo', u'assess'] [u'richmond', u'presid', u'meet', u'rebel', u'challeng'] [u'richmond', u'rebel', u'challeng', u'casey'] [u'road', u'minist', u'plan', u'calder', u'visit'] [u'cull', u'choic', u'biologist'] [u'issu', u'confront'] [u'sausag', u'skin', u'factori', u'hit', u'snag'] [u'top', u'round', u'indonesia', u'vote'] [u'schwab', u'say', u'board', u'disput', u'hurt', u'hawk'] [u'sharapova', u'court', u'success'] [u'shire', u'budget', u'includ', u'rate', u'rise'] [u'sleep', u'apnoea', u'link', u'stroke', u'death', u'risk'] [u'soak', u'help', u'save', u'crop'] [u'soldier', u'charg', u'hors', u'death'] [u'south', u'korean', u'defenc', u'minist', u'quit'] [u'spain', u'summon', u'aust', u'ambassador', u'iraq'] [u'swan', u'hill', u'get', u'refuge', u'plan'] [u'swan', u'forc', u'play', u'injuri'] [u'sydney', u'hobart', u'organis', u'confid', u'success'] [u'talk', u'focus', u'council', u'medic', u'facil'] [u'talli', u'confid', u'play', u'season'] [u'teenag', u'jail', u'adelaid', u'road', u'incid'] [u'teenag', u'admit', u'hospit', u'meningococc'] [u'teen', u'get', u'life', u'sentenc', u'britain', u'high', u'school'] [u'teen', u'charg', u'home', u'invas'] [u'terror', u'fight', u'need', u'cooper', u'blame'] [u'terrorist', u'group', u'melbourn', u'brack'] [u'thai', u'eleph', u'anticip', u'jumbo', u'sale'] [u'fan', u'stori'] [u'thousand', u'expect', u'schooli', u'influx'] [u'thuram', u'end', u'intern', u'career'] [u'trucki', u'admit', u'assault', u'cameraman'] [u'demand', u'grow', u'bundaberg', u'ginger', u'beer'] [u'highlight', u'help', u'region', u'student'] [u'warn', u'humanitarian', u'crisi', u'bangladesh'] [u'grant', u'peopl', u'mujahedeen', u'member', u'protect'] [u'vaughan', u'hail', u'gile', u'role', u'england'] [u'accept', u'wheatbelt', u'drought', u'reject'] [u'wada', u'unveil', u'weapon', u'fight', u'drug'] [u'wallabi', u'includ', u'bok', u'south', u'african'] [u'wall', u'street', u'finish', u'volatil', u'trade'] [u'oppn', u'question', u'indigen', u'health', u'standard'] [u'tractor', u'convoy', u'make', u'flinder', u'ranger'] [u'windi', u'look', u'collymor'] [u'wire', u'blame', u'jetstar', u'emerg'] [u'wollongong', u'home', u'merg', u'health', u'servic'] [u'worm', u'slow', u'search', u'engin'] [u'youth', u'homeless', u'servic', u'make', u'cut'] [u'zvonareva', u'edg', u'dechi', u'diego'] [u'reef', u'wetland', u'work'] [u'abbott', u'launch', u'medicar', u'smartcard'] [u'acid', u'tortur', u'money', u'court', u'tell'] [u'happi', u'talk', u'club', u'perform'] [u'afro', u'american', u'star', u'shin', u'democrat', u'convent'] [u'airport', u'council', u'loan'] [u'search', u'call', u'miss', u'plane'] [u'alcoa', u'lift', u'game', u'spill', u'prevent'] [u'alleg', u'siev', u'smuggler', u'stand', u'trial'] [u'alo', u'help', u'trauma', u'victim', u'studi', u'find'] [u'amazon', u'fire', u'weather', u'pattern', u'chang'] [u'anti', u'dioxin', u'group', u'reveal', u'document'] [u'begin', u'assess', u'bid', u'revamp', u'leagu'] [u'asbesto', u'fund', u'run', u'cash'] [u'aussi', u'rower', u'world', u'champ'] [u'aust', u'extend', u'border', u'surveil', u'contract'] [u'aust', u'polic', u'deploy'] [u'australian', u'director', u'urg', u'oppos'] [u'author', u'probe', u'hous', u'blaze'] [u'ayr', u'say', u'regret', u'adelaid'] [u'beatti', u'perform', u'bonus'] [u'beatti', u'urg', u'labor', u'approv'] [u'billiton', u'report', u'record', u'output'] [u'blame', u'game', u'begin', u'compani', u'reloc'] [u'bluescop', u'expand', u'port', u'kembla'] [u'bomb', u'board', u'best', u'board'] [u'bomb', u'threat', u'wasnt', u'previous', u'flight'] [u'sneak', u'airport', u'conveyor', u'belt'] [u'brown', u'question', u'late', u'wheat', u'debt', u'stanc'] [u'buderus', u'sorri', u'rant'] [u'burn', u'motor', u'blame', u'medic', u'centr', u'emerg'] [u'businessman', u'urg', u'chang', u'bulldog', u'board'] [u'grain', u'plan', u'bring', u'grower', u'benefit'] [u'canberran', u'urg', u'blood'] [u'chang', u'sceneri', u'bronco'] [u'child', u'protect', u'worker', u'boost', u'break', u'hill'] [u'china', u'criticis', u'star', u'war', u'missil', u'shield'] [u'christma', u'island', u'deceiv', u'casino'] [u'church', u'tell', u'defrock', u'bishop'] [u'clue', u'uncov', u'prevent', u'prematur', u'birth'] [u'commerci', u'space', u'flight', u'plan', u'sept'] [u'communiti', u'farewel', u'late', u'businessman'] [u'compromis', u'end', u'cost', u'burnett', u'river', u'strike'] [u'confer', u'focus', u'renew', u'energi'] [u'coron', u'urg', u'traffic', u'safeti', u'awar', u'campaign'] [u'costa', u'rican', u'hostag', u'drama', u'end', u'bloodsh'] [u'costello', u'applaud', u'inflat', u'figur'] [u'cost', u'counterfeit', u'puzzl', u'polic'] [u'council', u'budget', u'includ', u'water', u'spend'] [u'council', u'tussl', u'dog'] [u'court', u'dismiss', u'terrorist', u'claim', u'appeal'] [u'court', u'rule', u'compo', u'injur', u'tourist'] [u'court', u'uphold', u'death', u'sentenc', u'sarin'] [u'crazi', u'ant', u'face', u'extermin', u'plan'] [u'crow', u'hart', u'option'] [u'crow', u'hold', u'talk', u'ead'] [u'csiro', u'begin', u'rainfal', u'predict', u'project'] [u'cypriot', u'warn', u'laundri', u'public'] [u'darfur', u'civilian', u'burn', u'aliv', u'militia', u'attack'] [u'defenc', u'industri', u'industri', u'woe', u'continu'] [u'egypt', u'deni', u'pay', u'hostag', u'freedom'] [u'emerald', u'seek', u'discount', u'fare'] [u'engag', u'ring', u'squirrel', u'away', u'rooney', u'fiance'] [u'exmouth'] [u'farmer', u'slug', u'rate', u'rise'] [u'farm', u'lobbi', u'urg', u'export', u'subsidi', u'remov'] [u'feder', u'fund', u'seek', u'communiti', u'legal', u'centr'] [u'feder', u'form', u'interrupt', u'rain'] [u'fifth', u'person', u'charg', u'synagogu', u'graffiti'] [u'charg', u'acid', u'murder'] [u'cycl', u'champion', u'injur'] [u'french', u'guantanamo', u'detaine', u'question'] [u'fruit', u'group', u'seek', u'water', u'polici', u'chang'] [u'plant', u'hear', u'schedul', u'septemb'] [u'gold', u'miner', u'take', u'cook', u'review'] [u'govern', u'form', u'age', u'action', u'plan'] [u'govt', u'blame', u'class', u'size', u'blowout'] [u'govt', u'refus', u'pork', u'industri', u'request'] [u'govt', u'fear', u'homeless', u'program', u'futur'] [u'govt', u'stand', u'water', u'plan'] [u'govt', u'snub', u'council', u'meet'] [u'govt', u'meningococc', u'vaccin', u'program'] [u'govt', u'urg', u'boost', u'region', u'mobil', u'phone', u'coverag'] [u'govt', u'urg', u'fund'] [u'grand', u'vision', u'unveil', u'launceston'] [u'greec', u'deploy', u'patriot', u'missil', u'safeguard'] [u'gregan', u'south', u'africa', u'test'] [u'group', u'consid', u'plan', u'health', u'chang'] [u'health', u'merger', u'draw', u'critic'] [u'hepburn', u'bathhous', u'futur', u'unclear'] [u'high', u'tech', u'upgrad', u'courthous'] [u'hoax', u'spark', u'review', u'flight', u'disclosur'] [u'hope', u'youth', u'scheme', u'help', u'transport', u'job'] [u'rock', u'drill', u'begin', u'month'] [u'howard', u'attack', u'latham', u'timor', u'talk'] [u'squirrel', u'away', u'ring'] [u'hundr', u'arrest', u'china', u'internet', u'porn'] [u'increas', u'effort', u'need', u'stamp', u'drug', u'say'] [u'india', u'surviv', u'jayasuriya', u'blitz', u'enter', u'asia'] [u'indigen', u'health', u'servic', u'lead'] [u'indonesia', u'drop', u'bashir', u'bali', u'bomb', u'charg'] [u'industri', u'woe', u'sick', u'hurt', u'rail', u'servic'] [u'iraq', u'death', u'toll', u'rise'] [u'iraqi', u'accus', u'british', u'troop', u'crime'] [u'israel', u'order', u'quicker', u'work', u'barrier'] [u'job', u'expect', u'health', u'shake'] [u'kayak', u'add', u'olymp', u'team'] [u'kerri', u'reveal', u'person', u'democrat'] [u'killer', u'whale', u'turn', u'trainer'] [u'labor', u'figur', u'urg', u'attend', u'liverpool', u'retail'] [u'landhold', u'consult', u'power', u'plan'] [u'lara', u'bank', u'edgbaston', u'memori', u'second', u'test'] [u'lawyer', u'seek', u'bashir', u'releas', u'anti', u'terror'] [u'local', u'health', u'servic', u'state', u'wide', u'shake'] [u'lovesick', u'tomtit', u'fli', u'reunion'] [u'major', u'surgeri', u'health'] [u'marin', u'park', u'get', u'wast', u'water'] [u'mccaw', u'rule', u'nation', u'seri'] [u'mcevoy', u'win', u'european', u'group', u'race'] [u'mcgillivray', u'secur', u'elect'] [u'meatwork', u'talk', u'chemic', u'leak'] [u'medecin', u'san', u'frontier', u'leav', u'afghanistan'] [u'melbourn', u'pair', u'murder', u'greec'] [u'meningococc', u'confirm', u'teenag', u'death'] [u'miner', u'push', u'aussi', u'market', u'higher'] [u'minist', u'talk', u'health', u'servic', u'chang'] [u'miss', u'plane', u'victoria'] [u'call', u'murray', u'water', u'flow', u'increas'] [u'moyn', u'budget', u'includ', u'rate', u'rise'] [u'take', u'issu', u'coorong', u'claim'] [u'murder', u'man', u'famili', u'unhappi', u'govt', u'effort'] [u'murray', u'snowi', u'river', u'benefit', u'lake'] [u'chief', u'look', u'chang', u'face', u'agforc'] [u'back', u'easier', u'drought', u'declar'] [u'final', u'seri', u'free'] [u'outlaw', u'nation', u'nuclear', u'wast', u'dump'] [u'olymp', u'sister', u'brighten', u'sharapova', u'gloom'] [u'onlin', u'spend', u'tip', u'increas'] [u'oppn', u'warn', u'mental', u'health', u'violenc'] [u'palestinian', u'retract', u'resign'] [u'paramed', u'unhappi', u'talk'] [u'park', u'wild', u'dog', u'havent', u'attack', u'peopl', u'npws'] [u'patriot', u'missil', u'instal', u'olymp', u'sit'] [u'perth', u'refus', u'bail', u'murder', u'plot', u'charg'] [u'back', u'downer', u'iraq', u'troop', u'pullout', u'remark'] [u'pole', u'tell', u'indigen', u'stori'] [u'polic', u'lake', u'mishap'] [u'polic', u'link', u'attack'] [u'polic', u'offic', u'face', u'prosecut', u'drink', u'drive'] [u'polic', u'probe', u'chainsaw', u'theft'] [u'polit', u'billboard', u'reach', u'line'] [u'portrait', u'plan', u'thunderbolt', u'rock'] [u'public', u'urg', u'help', u'erad', u'mozzi', u'threat'] [u'govt', u'accus', u'fail', u'protect', u'koala'] [u'insect', u'pest', u'find'] [u'put', u'forward', u'nation', u'child', u'abus', u'strategi'] [u'rain', u'expect', u'boost', u'eastern', u'eyr', u'peninsula', u'crop'] [u'rain', u'ruin', u'program', u'master', u'seri'] [u'rate', u'rise', u'gayndah', u'tiaro', u'resid'] [u'rate', u'rise', u'thuringowa', u'resid'] [u'record', u'profit'] [u'reef', u'rezon', u'plan'] [u'region', u'rail', u'safeti', u'spotlight'] [u'renault', u'confirm', u'fisichella', u'partner', u'alonso'] [u'richmond', u'rival', u'agre', u'compromis'] [u'rise', u'expect', u'figur'] [u'rise', u'suicid', u'embezzl', u'caus', u'problem'] [u'road', u'safeti', u'drive', u'esso', u'phone'] [u'ruddock', u'shepparton', u'talk', u'reform'] [u'rush', u'accept', u'award', u'brisban', u'festiv'] [u'secur', u'boost', u'port', u'augusta', u'jail'] [u'sharapova', u'shin', u'serena', u'struggl', u'diego'] [u'simeoni', u'question', u'armstrong', u'feud'] [u'dead', u'plane', u'crash'] [u'skill', u'speed', u'domin', u'elder', u'buggi', u'race'] [u'event', u'consid', u'insur', u'risk'] [u'springbok', u'surpris', u'wallabi', u'line'] [u'stoner', u'criticis', u'health', u'servic', u'chang'] [u'sudan', u'vow', u'resist', u'darfur', u'intervent'] [u'sunbeam', u'victa', u'sale', u'boost', u'profit'] [u'suspect', u'mercenari', u'plead', u'guilti', u'zimbabw'] [u'tait', u'sign', u'durham'] [u'talk', u'continu', u'picket', u'end'] [u'talk', u'focus', u'aapt', u'wag'] [u'labor', u'sceptic', u'ftas', u'benefit'] [u'taxi', u'driver', u'bash', u'sentenc', u'appeal'] [u'overhaul', u'need', u'household', u'employe', u'bishop'] [u'thousand', u'farewel', u'icon'] [u'charg', u'sydney', u'chase'] [u'tiger', u'oneil', u'face', u'judiciari', u'high', u'tackl'] [u'timor', u'disput', u'threaten', u'project'] [u'tini', u'victorian', u'town', u'prepar'] [u'tougher', u'water', u'restrict', u'moot', u'livingston'] [u'train', u'firm', u'win', u'small', u'busi', u'award'] [u'truce', u'call', u'richmond', u'rival', u'agre', u'compromis'] [u'uncertainti', u'remain', u'health', u'loss'] [u'muslim', u'chariti', u'charg', u'aid', u'hama'] [u'tabl', u'resolut', u'sudan'] [u'venus', u'william', u'withdraw', u'diego'] [u'govt', u'deni', u'hospit', u'bypass', u'claim'] [u'nation', u'park', u'open', u'sport', u'shooter'] [u'ambul', u'trip', u'push', u'region', u'boost'] [u'wallabi', u'south', u'africa', u'clash'] [u'wallabi', u'name', u'south', u'africa', u'clash'] [u'wall', u'ralli', u'consum', u'confid'] [u'newspap', u'confirm', u'fairfax', u'merger', u'talk'] [u'webber', u'sign', u'william'] [u'werribe', u'protest', u'blue', u'line'] [u'wigan', u'sign', u'kiwi', u'centr', u'vaealiki'] [u'wind', u'industri', u'fear', u'miss', u'energi', u'boom'] [u'yasss', u'incorpor', u'kangiara', u'face', u'opposit'] [u'young', u'australian', u'incur', u'danger', u'debt', u'level'] [u'appoint', u'news', u'chief'] [u'activist', u'orang', u'utan', u'kickbox'] [u'stand', u'final'] [u'african', u'union', u'consid', u'sudan', u'peacekeep', u'mission'] [u'second', u'nation', u'defam', u'law'] [u'airport', u'secur', u'camera', u'defect'] [u'alma', u'pool', u'futur', u'take', u'dive'] [u'qaeda', u'link', u'group', u'vow', u'bloodi', u'europ'] [u'anderson', u'switch', u'rugbi', u'wale'] [u'anderson', u'rescu', u'packag', u'comment'] [u'annan', u'urg', u'sudan'] [u'assault', u'charg', u'drop', u'carey', u'brother'] [u'aust', u'criticis', u'support', u'isra', u'barrier'] [u'austrad', u'welcom', u'malaysia', u'trade', u'talk'] [u'bacon', u'critic', u'challeng', u'stand', u'parliament'] [u'barber', u'await', u'green', u'light', u'olymp'] [u'bashir', u'face', u'bali', u'charg', u'despit', u'law', u'rule'] [u'baxter', u'detaine', u'continu', u'hunger', u'strike'] [u'beatti', u'peddl', u'cycl', u'safeti', u'messag'] [u'bendigo', u'bank', u'reach', u'mileston'] [u'bing', u'spend', u'leav', u'young', u'debt', u'stress'] [u'boe', u'plan', u'boost', u'hunter', u'job'] [u'boomer', u'pair'] [u'boost', u'plan', u'steelwork'] [u'busi', u'award', u'launch', u'northern', u'tasmania'] [u'servic', u'undergo', u'month', u'trial'] [u'age', u'care', u'disclosur'] [u'canada', u'reject', u'explan', u'photograph'] [u'carey', u'brother', u'court', u'alleg', u'attack'] [u'celtic', u'surpris'] [u'chamber', u'back', u'mine', u'effort'] [u'cleaner', u'artist', u'council', u'commiss', u'work'] [u'cofidi', u'testimoni', u'tamper', u'claim', u'hand'] [u'nuclear', u'dump', u'opposit'] [u'consum', u'warn', u'bewar', u'listeria'] [u'coolgardi', u'shire', u'air', u'fund', u'concern'] [u'council', u'await', u'park', u'review'] [u'council', u'back', u'school', u'plan'] [u'council', u'dig', u'miner', u'statu'] [u'council', u'govt', u'address', u'fall', u'popul'] [u'council', u'lament', u'gympi', u'gold', u'demis'] [u'council', u'outlin', u'budget', u'spend'] [u'council', u'state', u'agreement', u'consult'] [u'court', u'reserv', u'decis', u'protest', u'appeal'] [u'court', u'view', u'gruesom', u'murder', u'photo'] [u'craig', u'concern', u'ayr', u'comment'] [u'creditor', u'vote', u'wind', u'gympi', u'gold'] [u'croc', u'player', u'excit', u'olymp'] [u'custodi', u'chang', u'divid', u'father', u'group'] [u'custodi', u'overhaul', u'improv', u'men', u'access', u'children'] [u'cycl', u'drug', u'probe', u'releas'] [u'dajka', u'doubt', u'olymp'] [u'dam', u'blue', u'green', u'alga', u'rise'] [u'local', u'govt', u'group'] [u'develop', u'welcom', u'vision', u'launceston'] [u'differ', u'fuel', u'price', u'highlight', u'competit'] [u'unlock', u'secret', u'superior', u'sugarcan', u'varieti'] [u'doctor', u'group', u'cast', u'doubt', u'health', u'chang'] [u'east', u'asian', u'growth', u'peak', u'percent', u'review'] [u'edward', u'accept', u'vice', u'presid', u'nomin'] [u'edward', u'hail', u'decis', u'strong', u'kerri'] [u'embassi', u'confirm', u'behead', u'pakistani', u'hostag'] [u'embattl', u'jone', u'london', u'pull'] [u'energi', u'fund', u'boost', u'wide', u'burnett'] [u'enterpris', u'zone', u'spark', u'job', u'boost'] [u'environ', u'loser', u'athen', u'greenpeac'] [u'execut', u'pakistani', u'hostag', u'iraq', u'confirm'] [u'export', u'rise', u'fail', u'check', u'trade', u'deficit'] [u'farm', u'group', u'fear', u'rail', u'branch', u'line', u'closur'] [u'farm', u'group', u'seek', u'road', u'rent', u'talk'] [u'fifth', u'suspect', u'meningococc', u'infect', u'reveal'] [u'fiji', u'get', u'key', u'armouri'] [u'fli', u'school', u'lament', u'plan', u'dearer', u'land'] [u'fragil', u'peac', u'declar', u'richmond'] [u'freight', u'firm', u'back', u'rail', u'access', u'paper'] [u'fuel', u'plane', u'crash'] [u'fund', u'crazi', u'ant', u'fight'] [u'fund', u'clean', u'abandon', u'fish', u'net'] [u'fund', u'wetland', u'work'] [u'gambl', u'spree', u'end', u'year', u'jail', u'term'] [u'googong', u'kangaroo', u'cull', u'complet'] [u'gould', u'name', u'wallabi', u'back', u'coach'] [u'governor', u'play', u'presid', u'temporarili'] [u'govt', u'accus', u'overst', u'plastic', u'reduct'] [u'grain', u'group', u'back', u'singl', u'desk', u'market'] [u'chew', u'team', u'tell', u'drop', u'habit', u'sing'] [u'hackett', u'confid', u'good', u'show'] [u'health', u'author', u'urg', u'calm', u'meningococc'] [u'health', u'educ', u'key', u'elect', u'say'] [u'health', u'minist', u'reject', u'fund', u'propos'] [u'hewitt', u'reid', u'toronto'] [u'test', u'readi', u'athen'] [u'hobart', u'woman', u'diagnos', u'meningococc', u'diseas'] [u'homeless', u'fund', u'welcom', u'inadequ'] [u'hous', u'market', u'rebound'] [u'howard', u'deni', u'dud', u'wheat', u'farmer'] [u'howard', u'go', u'pacif', u'super', u'deal'] [u'hundr', u'attend', u'duthi', u'funer'] [u'india', u'make', u'effort', u'releas', u'hostag'] [u'industri', u'woe', u'continu', u'crane', u'firm'] [u'inform', u'share', u'program', u'benefit', u'welfar'] [u'intellig', u'offici', u'indonesian', u'ambassador'] [u'investig', u'begin', u'plane', u'crash'] [u'investig', u'light', u'plane', u'cours'] [u'iran', u'ignor', u'nuclear', u'commit'] [u'iraq', u'captor', u'kill', u'pakistani', u'hostag', u'report'] [u'iraqi', u'nation', u'confer', u'delay', u'week'] [u'jam', u'hardi', u'inquiri', u'tell', u'reform', u'need'] [u'jondaryan', u'council', u'outlin', u'budget', u'spend'] [u'joyc', u'savill', u'bolster', u'athen', u'effort'] [u'juri', u'form', u'snowtown', u'murder', u'trial'] [u'juri', u'consid', u'hopper', u'verdict'] [u'juri', u'urg', u'look', u'scapegoat'] [u'labor', u'reject', u'jam', u'hardi', u'donat'] [u'labor', u'confid', u'green', u'support'] [u'labor', u'say', u'divorc', u'plan', u'good'] [u'labor', u'wont', u'rush', u'trade', u'deal', u'latham', u'say'] [u'latham', u'unveil', u'manufactur', u'plan'] [u'lazi', u'book', u'shock', u'french', u'electr', u'compani'] [u'liverpool', u'refut', u'kewel', u'injuri', u'talk'] [u'local', u'govt', u'group', u'put', u'transport', u'spotlight'] [u'face', u'court', u'prostitut', u'charg'] [u'mcdonald', u'look', u'renew', u'effort', u'hawk'] [u'meat', u'lose', u'chemic', u'spill'] [u'medic', u'council', u'unhappi', u'hospit', u'status'] [u'meet', u'debat', u'council', u'merger', u'plan'] [u'meningococc', u'case', u'caus', u'panic'] [u'meteor', u'light', u'central', u'victorian'] [u'mine', u'minist', u'discuss', u'counter', u'terror', u'plan'] [u'minist', u'deni', u'health', u'crisi'] [u'minist', u'agre', u'interst', u'screen', u'polici'] [u'minist', u'stand', u'health', u'servic', u'merger'] [u'minist', u'talk', u'youth', u'apprenticeship'] [u'molik', u'stun', u'mauresmo'] [u'money', u'save', u'relationship', u'servic', u'welfar'] [u'bird', u'confirm', u'thailand'] [u'billboard', u'remain', u'time'] [u'muslim', u'troop', u'moot', u'bomb', u'kill', u'iraqi'] [u'nation', u'trust', u'dump', u'northern', u'chairman'] [u'natur', u'supplier', u'seal', u'japan', u'deal'] [u'drug', u'help', u'hepat'] [u'health', u'servic', u'administr', u'tour', u'hast'] [u'lifeguard', u'supervisor', u'townsvill'] [u'snowi', u'shire', u'council', u'name'] [u'newspap', u'fin', u'run', u'vlassaki', u'photo'] [u'sight', u'ambo', u'strike'] [u'extra', u'motiv', u'gregan', u'say', u'jone'] [u'turn', u'look', u'tyson'] [u'lead', u'child', u'protect', u'work', u'group'] [u'lift', u'rat'] [u'price', u'spike', u'worri', u'investor'] [u'olyroo', u'prepar', u'torrid', u'warm', u'say', u'farina'] [u'oneil', u'guilti', u'suspend'] [u'pantani', u'kill', u'massiv', u'cocain', u'overdos', u'doctor'] [u'perth', u'protest', u'hound'] [u'pilbara', u'miner', u'name', u'digger', u'year'] [u'plane', u'crash', u'recoveri', u'effort', u'day'] [u'plan', u'continu', u'eyr', u'peninsula', u'wind', u'farm'] [u'confid', u'famili', u'centr', u'help', u'separ'] [u'wind', u'pilbara', u'tour'] [u'polic', u'break', u'caledonia', u'wharf', u'disput'] [u'polic', u'probe', u'bateman', u'arson'] [u'pork', u'industri', u'unhappi', u'fund', u'snub'] [u'probe', u'begin', u'accid'] [u'properti', u'raid', u'tongeren', u'probe'] [u'protea', u'snatch', u'australia', u'test', u'crown'] [u'protest', u'call', u'health', u'servic', u'shake'] [u'public', u'tap', u'water', u'idea'] [u'push', u'albani', u'perth', u'passeng', u'train'] [u'push', u'return', u'blood', u'donat', u'gambier'] [u'rain', u'offer', u'littl', u'grain', u'crop'] [u'rate', u'rise', u'boonah', u'shire', u'resid'] [u'record', u'price', u'bailiff', u'move', u'yuko'] [u'region', u'recreat', u'plan', u'aim', u'crime'] [u'remot', u'school', u'debat', u'educ', u'review'] [u'research', u'home', u'acn', u'gene'] [u'resourc', u'energi', u'sector', u'help', u'market', u'hold', u'grind'] [u'rilli', u'excit', u'olymp'] [u'tinto', u'post', u'profit'] [u'rodd', u'expect', u'spring', u'carniv', u'rid'] [u'ruddock', u'urg', u'govt', u'boost', u'legal', u'effort'] [u'saudi', u'arabia', u'moot', u'muslim', u'forc', u'iraq'] [u'scott', u'chase', u'major', u'boost', u'sweden'] [u'scott', u'set', u'skin', u'date', u'tiger'] [u'secur', u'audit', u'target', u'mine', u'energi'] [u'self', u'portrait', u'score', u'prize'] [u'seminar', u'outlin', u'polic', u'recruit', u'requir'] [u'seven', u'trade', u'like', u'remain', u'thorni', u'issu'] [u'shopper', u'boost', u'properti', u'trust', u'line'] [u'kill', u'central', u'afghanistan', u'bomb', u'blast'] [u'snell', u'lead', u'opal', u'spanish'] [u'somali', u'take', u'hostag', u'iraq', u'jazeera'] [u'soni', u'merger', u'receiv', u'green', u'light'] [u'stalker', u'drive', u'actress', u'near', u'nervous', u'breakdown'] [u'stamp', u'duti', u'concess', u'boost', u'build', u'activ'] [u'strong', u'energi', u'bank', u'sector', u'hold', u'share', u'market'] [u'strong', u'expect', u'industri', u'land'] [u'survey', u'chart', u'children', u'wellb'] [u'swastika', u'paint', u'jewish', u'grave'] [u'thorp', u'scold', u'olymp', u'drug', u'claim'] [u'time', u'aust', u'philippin', u'ambassador'] [u'time', u'short', u'leagu', u'club', u'express'] [u'earli', u'specul', u'rape', u'retrial'] [u'troop', u'laugh', u'bash', u'iraqi', u'court', u'hear'] [u'canberra', u'children', u'diagnos', u'meningococc'] [u'kill', u'afghanistan', u'mosqu', u'blast'] [u'palestinian', u'milit', u'leader', u'kill', u'gaza'] [u'court', u'slash', u'sentenc', u'accus', u'bosnian'] [u'debat', u'sudan', u'sanction', u'resolut'] [u'union', u'criticis', u'citibank', u'job', u'decis'] [u'union', u'question', u'labor', u'cut'] [u'union', u'seek', u'wider', u'workplac', u'smoke'] [u'union', u'urg', u'latham', u'block'] [u'uni', u'rise', u'studentstaff', u'ratio', u'caus', u'concern'] [u'unit', u'griffith', u'sign', u'belgian', u'club'] [u'vanuatu', u'elect'] [u'vaughan', u'call', u'rest'] [u'build', u'union', u'boycott', u'hardi', u'product'] [u'wada', u'welcom', u'olymp', u'test'] [u'water', u'boost', u'snowi', u'river'] [u'water', u'plan', u'consult', u'continu'] [u'weep', u'statu', u'miracl'] [u'wide', u'unemploy', u'high', u'fall'] [u'widow', u'urg', u'asbesto', u'warn', u'home'] [u'wind', u'turbin', u'get', u'green', u'light'] [u'wiranto', u'launch', u'challeng', u'indon', u'elect', u'result'] [u'yacht', u'club', u'welcom', u'jetti', u'plan'] [u'aborigin', u'languag', u'teach', u'school'] [u'guilti', u'push', u'friend', u'overpass'] [u'ord', u'bank', u'resourc', u'news', u'corp'] [u'anim', u'right', u'activist', u'rememb', u'dead', u'roo'] [u'showcas', u'mini', u'submarin'] [u'artist', u'brew', u'mostar', u'bridg', u'celebr'] [u'kill', u'belgian', u'pipelin', u'erupt'] [u'attorney', u'general', u'fight', u'ident', u'fraud'] [u'aust', u'compani', u'fighter', u'contract'] [u'aust', u'top', u'convent', u'destin', u'list'] [u'author', u'clean', u'highway', u'chemic', u'spill'] [u'ballarat', u'firm', u'secur', u'hamilton', u'pool', u'contract'] [u'ballarat', u'home', u'fibr', u'optic', u'project'] [u'bangladeshi', u'face', u'wors', u'flood'] [u'barclay', u'brother', u'telegraph', u'newspap'] [u'barrett', u'gasnier', u'unscath', u'crash'] [u'british', u'govt', u'propos', u'plan', u'stop', u'anim', u'right'] [u'british', u'holocaust', u'denier', u'deni', u'entri'] [u'break', u'wont', u'halt', u'mcewen', u'olymp', u'campaign'] [u'bulldog', u'pummel', u'defend', u'premier'] [u'bundaberg', u'coupl', u'face', u'indec', u'deal', u'charg'] [u'busi', u'microscop'] [u'calliop', u'water', u'charg', u'chang'] [u'shear', u'injuri'] [u'carey', u'brother', u'clear', u'assault', u'mick', u'martyn'] [u'central', u'australia', u'face', u'drink', u'drive', u'crackdown'] [u'command', u'kerri', u'report', u'duti'] [u'confer', u'hear', u'teacher', u'isol'] [u'council', u'budget', u'road', u'spend'] [u'council', u'say', u'arboretum', u'sale'] [u'council', u'urg', u'begin', u'water', u'suppli', u'talk'] [u'council', u'urg', u'boost', u'park', u'number'] [u'court', u'decis', u'expect', u'bolster', u'union'] [u'crew', u'escap', u'helicopt', u'crash'] [u'crow', u'bounc', u'kangaroo'] [u'custodi', u'inquiri', u'head', u'satisfi', u'second', u'best'] [u'dairi', u'farmer', u'discuss', u'polici'] [u'dajka', u'drop', u'olymp', u'team'] [u'dajka', u'discov', u'olymp', u'fate', u'afternoon'] [u'decis', u'fluorid'] [u'deegan', u'claim', u'downer', u'hill', u'dodg', u'vietnam'] [u'deegan', u'hand', u'resign'] [u'dept', u'dismiss', u'meningococc', u'diseas', u'outbreak', u'fear'] [u'develop', u'fight', u'build', u'height', u'block'] [u'diesel', u'break', u'tip', u'affect', u'solar', u'power'] [u'digger', u'dealer', u'tip', u'boost', u'busi'] [u'diseas', u'fish', u'kill'] [u'pioneer', u'die'] [u'doubl', u'jeopardi', u'propos', u'divid', u'state'] [u'dozen', u'arrest', u'redfern', u'drug', u'raid'] [u'embattl', u'eriksson', u'break', u'silenc'] [u'england', u'command', u'second', u'test'] [u'profit', u'rise', u'despit', u'shutdown'] [u'chess', u'champ', u'fischer', u'like', u'appeal', u'deport'] [u'famili', u'griev', u'plane', u'crash', u'coupl'] [u'fatal', u'crash', u'black', u'brisban', u'baysid'] [u'fear', u'air', u'rail', u'cut'] [u'fear', u'air', u'conserv', u'park', u'mine'] [u'fear', u'hold', u'patient', u'health', u'specialist'] [u'feder', u'roddick', u'hewitt', u'toronto'] [u'financi', u'woe', u'delay', u'darfur', u'observ', u'team'] [u'charg', u'follow', u'alban', u'drug', u'raid'] [u'forest', u'industri', u'chief', u'seek', u'balanc'] [u'franc', u'welcom', u'sharon', u'prais', u'fight'] [u'fund', u'tree', u'diseas', u'studi'] [u'fund', u'increas', u'riverland', u'tourism'] [u'fund', u'address', u'ballarat', u'black', u'spot'] [u'gather', u'discuss', u'fraser', u'light', u'rail', u'plan'] [u'spar', u'jail', u'cafe', u'assault'] [u'govt', u'reject', u'emerg', u'hous', u'plan'] [u'govt', u'urg', u'rethink', u'polic', u'station', u'plan'] [u'govt', u'welcom', u'hick', u'trial', u'progress'] [u'grain', u'leader', u'quit'] [u'gregan', u'put', u'ahead', u'person', u'mileston'] [u'group', u'team', u'fight', u'substanc', u'abus'] [u'hardi', u'ban', u'dont', u'breach', u'trade', u'law', u'accc'] [u'harri', u'potter', u'websit', u'conquer', u'cyberspac'] [u'health', u'servic', u'shake', u'spark', u'indigen', u'concern'] [u'hewitt', u'feder', u'toronto'] [u'hick', u'direct', u'hear', u'date'] [u'hmas', u'adelaid', u'head', u'persian', u'gulf'] [u'hope', u'boe', u'expans', u'student'] [u'hopper', u'case', u'adjourn'] [u'hospit', u'plan'] [u'hospit', u'owner', u'push', u'replac', u'doctor'] [u'hospit', u'report', u'rule', u'cover'] [u'howard', u'name', u'seat'] [u'howard', u'promis', u'infrastructur'] [u'howel', u'lead', u'malmo'] [u'hunter', u'economi', u'begin', u'cool'] [u'icac', u'summon', u'health', u'minist'] [u'indonesia', u'charg', u'bashir', u'jakarta', u'bomb'] [u'show', u'buronga', u'supermarket'] [u'show', u'southport', u'spit', u'land'] [u'investig', u'continu', u'plane', u'crash'] [u'investig', u'begin', u'construct', u'worker'] [u'investig', u'probe', u'brisban', u'chopper', u'crash'] [u'iranian', u'univers', u'student', u'jail', u'protest'] [u'iraq', u'hostag', u'taker', u'threaten', u'kill'] [u'order', u'ambul', u'offic', u'work', u'ban'] [u'iron', u'boost', u'product'] [u'jam', u'hardi', u'face', u'union', u'pressur'] [u'judg', u'forc', u'deegan', u'resign'] [u'kerri', u'slam', u'bush', u'iraq', u'offer', u'littl'] [u'kersten', u'push', u'olymp', u'select'] [u'kidney', u'transplant', u'give', u'lomu', u'hope'] [u'lansval', u'shoot', u'prompt', u'polic', u'search'] [u'drink', u'grand', u'hotel'] [u'life', u'leav', u'eyr', u'peninsula', u'local', u'govt', u'group'] [u'loan', u'hous', u'approv', u'continu', u'rise'] [u'local', u'hous', u'industri', u'strong'] [u'arrest', u'sydney', u'lawyer', u'murder'] [u'arrest', u'sydney', u'solicitor', u'murder'] [u'charg', u'bank', u'robberi', u'refus', u'bail'] [u'die', u'highway', u'crash'] [u'plead', u'guilti', u'internet', u'charg'] [u'sentenc', u'year', u'doubl', u'murder'] [u'mayor', u'welcom', u'multi', u'million', u'dollar', u'invest'] [u'final', u'schedul', u'wrong', u'say', u'roo'] [u'mcginti', u'threat', u'diminish'] [u'minist', u'meet', u'farmer', u'road', u'reserv', u'rent'] [u'montgomeri', u'hart', u'keat', u'comeback'] [u'focus', u'seek', u'local', u'roadwork'] [u'shoalwat', u'defenc', u'detail', u'releas'] [u'mountain', u'close', u'tast', u'minor', u'premiership'] [u'suggest', u'special', u'road'] [u'mundin', u'chase', u'world', u'titl'] [u'nation', u'galleri', u'head', u'launch', u'exhibit'] [u'nation', u'resolut', u'tire', u'member'] [u'nat', u'urg', u'pull', u'lib', u'line'] [u'hous', u'project', u'plan', u'rockhampton'] [u'explor', u'licenc', u'issu'] [u'news', u'corp', u'end', u'chernin', u'specul'] [u'speci', u'underwat', u'bone', u'eat', u'worm'] [u'dirti', u'hangov', u'wallabi', u'bok', u'say', u'jone'] [u'witch', u'hunt', u'murali', u'say'] [u'price', u'eas', u'volatil', u'trade'] [u'price', u'fresh', u'high'] [u'orchestra', u'deficit', u'predict', u'doubl'] [u'owen', u'hop', u'seal', u'liverpool', u'futur', u'soon'] [u'pacif', u'highway', u'remain', u'prioriti'] [u'pakistan', u'arrest', u'qaeda', u'bomb', u'suspect'] [u'pakistan', u'whip', u'bangladesh', u'dead', u'match'] [u'pension', u'quiet', u'azaria', u'claim'] [u'perilya', u'shift', u'focus', u'potosi', u'deposit'] [u'petroleum', u'firm', u'reach', u'record', u'profit'] [u'philippin', u'move', u'marshmallow', u'stoush'] [u'plane', u'crash', u'victim', u'take', u'melbourn'] [u'weekend', u'plan', u'quash', u'elect', u'rumour'] [u'polic', u'charg', u'drug', u'firearm', u'offenc'] [u'polic', u'disput', u'media', u'radio', u'right'] [u'polic', u'releas', u'liken', u'want'] [u'polic', u'search', u'miss'] [u'port', u'adelaid', u'receiv', u'contain', u'scan', u'boost'] [u'port', u'happi', u'dockland', u'surfac'] [u'port', u'hedland', u'port', u'top', u'tonnag', u'export'] [u'powel', u'prais', u'iraqi', u'presid'] [u'power', u'firm', u'work', u'revamp'] [u'prayer', u'servic', u'rememb', u'highway', u'victim'] [u'price', u'structur', u'target', u'water', u'user'] [u'profit', u'terror', u'hamper', u'game', u'ticket', u'sale'] [u'public', u'urg', u'discuss', u'water', u'develop'] [u'push', u'home', u'care', u'fund'] [u'push', u'port', u'macdonnel', u'health', u'boost'] [u'hous', u'sale', u'expect', u'slow', u'industri'] [u'arrest', u'counterfeit', u'charg'] [u'race', u'hate', u'crime', u'spark', u'gingin', u'search'] [u'rate', u'rise', u'millmerran', u'shire'] [u'record', u'crowd', u'expect', u'netbal', u'doubl', u'header'] [u'region', u'brand', u'hunter', u'produc'] [u'retir', u'footbal', u'brother', u'clear', u'assault'] [u'riverland', u'maintain', u'canker', u'quarantin'] [u'rogerson', u'break', u'wit', u'stand'] [u'rogu', u'sheep', u'outwit', u'road', u'grid'] [u'rosita', u'maryborough'] [u'rspca', u'probe', u'dugong', u'cruelti', u'claim'] [u'saddam', u'lawyer', u'rais', u'health', u'fear'] [u'school', u'oral', u'claim', u'refer', u'child', u'servic'] [u'sharapova', u'hit', u'nation', u'debat'] [u'sheep', u'truck', u'crash'] [u'sheepvent', u'begin', u'fashion', u'parad'] [u'singh', u'sizzl', u'lead', u'michigan'] [u'sixth', u'suspect', u'meningococc', u'infect', u'announc'] [u'smoke', u'ban', u'help', u'poki', u'turnov'] [u'snowi', u'ski', u'injuri', u'remain', u'high'] [u'sober', u'shelter', u'close', u'death'] [u'lanka', u'tiger', u'releas', u'child', u'soldier'] [u'state', u'push', u'east', u'timores', u'input', u'resourc'] [u'stuppl', u'lead', u'women', u'british', u'open'] [u'sudan', u'hail', u'softer', u'resolut', u'word'] [u'support', u'white', u'limit'] [u'support', u'show', u'health', u'servic', u'chang'] [u'test', u'clear', u'helen', u'water', u'suppli'] [u'arrest', u'sydney', u'solicitor', u'death'] [u'time', u'run', u'disput', u'tenanc', u'blacklist'] [u'qaeda', u'resist', u'pakistani', u'interrog'] [u'report', u'warn', u'iraq', u'afghanistan', u'deterior'] [u'slow', u'darfur', u'crisi', u'downer'] [u'lift', u'iraq', u'sanction'] [u'troop', u'insurg', u'battl', u'fallujah'] [u'warn', u'iran', u'nuke', u'plan'] [u'veteran', u'shine', u'opal', u'belgian'] [u'virgin', u'blue', u'boost', u'launceston', u'flight'] [u'wafl', u'back', u'region', u'match'] [u'warn', u'sell', u'record', u'ball', u'rais', u'cash', u'kid'] [u'warn', u'sell', u'record', u'ball', u'rais', u'fund', u'kid'] [u'wast', u'water', u'plan', u'prove', u'cost'] [u'white', u'supremacist', u'threaten', u'perth', u'ident'] [u'woman', u'admit', u'psych', u'ward', u'daughter', u'murder'] [u'woman', u'remand', u'juri', u'fail', u'reach', u'murder'] [u'work', u'start', u'coastal', u'subdivis'] [u'yacht', u'racer', u'clubhous', u'access'] [u'young', u'abattoir', u'fall', u'victim', u'drought'] [u'zeta', u'jone', u'hear', u'postpon', u'take', u'pill'] [u'armstrong', u'aim', u'number', u'seven'] [u'athen', u'declar', u'readi', u'game'] [u'australian', u'miss', u'ski', u'accid'] [u'aust', u'restructur', u'iraq', u'forc'] [u'ballot', u'bungl', u'forc', u'rottnest', u'accommod', u'redraw'] [u'barnett', u'confid', u'liber', u'govern'] [u'bartlett', u'ask', u'labor', u'hold', u'decis'] [u'beatti', u'dismiss', u'energi', u'market', u'concern'] [u'beatti', u'swear', u'dividend', u'power', u'compani'] [u'blast', u'shake', u'isra', u'embassi'] [u'bomber', u'power', u'upset'] [u'brown', u'call', u'transpar', u'disput'] [u'builder', u'predict', u'healthi', u'hous', u'industri'] [u'carlton', u'curtain', u'raiser', u'highlight', u'indigen'] [u'chines', u'dissid', u'head', u'australia', u'report'] [u'climat', u'wrong', u'unreli', u'latham'] [u'cowboy', u'continu', u'final', u'charg'] [u'crow', u'bounc', u'kangaroo', u'sluggish', u'encount'] [u'dajka', u'expel', u'train', u'camp'] [u'dajka', u'fight', u'olymp', u'dump'] [u'deadlin', u'pass', u'agreement', u'global', u'free'] [u'deputi', u'compar', u'latham', u'quack'] [u'diver', u'join', u'search', u'miss'] [u'donald', u'surg', u'scandinavian', u'lead'] [u'drink', u'driver', u'time', u'limit'] [u'elect', u'send', u'troop', u'brown'] [u'environ', u'dept', u'follow', u'whale', u'sight'] [u'environ', u'group', u'air', u'tunnel', u'concern'] [u'feder', u'foil', u'santoro', u'magic'] [u'fisherman', u'lake', u'fyan'] [u'foreign', u'briefli', u'kidnap', u'west', u'bank'] [u'liber', u'parti', u'director', u'nomin'] [u'foster', u'parent', u'charg', u'child', u'offenc'] [u'freo', u'away', u'continu'] [u'blast', u'kill', u'belgium'] [u'govt', u'move', u'regain', u'control', u'mersey', u'hospit'] [u'govt', u'iraq', u'forc', u'restructur', u'criticis'] [u'govt', u'urg', u'consult', u'communiti', u'coco', u'plan'] [u'greek', u'cypriot', u'announc', u'fresh', u'initi', u'boost'] [u'rule', u'odumb', u'come', u'week'] [u'indigen', u'leader', u'discuss', u'higher', u'educ', u'chang'] [u'probe', u'olymp', u'corrupt', u'claim'] [u'iraqi', u'kidnapp', u'extend', u'execut', u'deadlin'] [u'judg', u'decid', u'french', u'guantanamo', u'men', u'fate'] [u'khouri', u'fight', u'credibl'] [u'labor', u'prepar', u'elect'] [u'late', u'tate', u'sink', u'shark'] [u'latham', u'wont', u'speak', u'committe', u'head', u'caucus'] [u'launceston', u'scientist', u'award', u'climat', u'research'] [u'lion', u'miaow', u'swan'] [u'liverpool', u'ahead', u'stadium'] [u'talk', u'polic', u'latest', u'azaria', u'claim'] [u'mar', u'mission', u'learn', u'lesson', u'histori'] [u'minist', u'admit', u'larg', u'scale', u'land', u'grant', u'problem'] [u'minist', u'appeal', u'indigen', u'educ', u'idea'] [u'minist', u'defend', u'juvenil', u'detent', u'secur'] [u'minist', u'push', u'ahead', u'civic', u'develop'] [u'mottram', u'break', u'minut', u'barrier'] [u'mottram', u'break', u'minut', u'barrier'] [u'murder', u'victim', u'memori', u'unveil', u'perth'] [u'nato', u'send', u'advanc', u'team', u'work', u'iraq'] [u'nemmco', u'dismiss', u'power', u'shortag', u'claim'] [u'norwood', u'blaze', u'claim', u'elder', u'man', u'life'] [u'polic', u'drug', u'haul'] [u'olyroo', u'lose', u'olymp', u'warm'] [u'opal', u'complet', u'spanish', u'rout'] [u'pakistani', u'surviv', u'suicid', u'bomb', u'attack'] [u'phoenix', u'triumph', u'record', u'crowd'] [u'phone', u'gaug', u'opinion', u'age', u'care'] [u'pie', u'snatch', u'luckless', u'tiger'] [u'polic', u'charg', u'morayfield', u'kill'] [u'polic', u'link', u'tongeren', u'perth', u'race', u'crime'] [u'powel', u'send', u'green', u'olymp', u'warn'] [u'powel', u'urg', u'sudan', u'meet', u'demand'] [u'princ', u'lead', u'tiger', u'victori'] [u'coalit', u'bicker', u'unhelp', u'comment'] [u'rathbon', u'give', u'wallabi', u'victori'] [u'reiv', u'downplay', u'melbourn', u'hous', u'price', u'fall'] [u'sarwan', u'lara', u'defi', u'england'] [u'search', u'intensifi', u'miss', u'canoeist'] [u'senat', u'committe', u'finalis', u'report'] [u'serena', u'pull', u'diego', u'quarter'] [u'singh', u'leader', u'michigan'] [u'stuppl', u'stretch', u'open', u'lead'] [u'sudan', u'reject', u'resolut', u'darfur'] [u'suicid', u'bomber', u'embassi', u'uzbekistan'] [u'swan', u'hop', u'close', u'contest'] [u'threat', u'spark', u'push', u'tougher', u'anti', u'racism', u'law'] [u'russian', u'reach', u'semi', u'serena', u'withdraw'] [u'charg', u'slave', u'offenc'] [u'crackdown', u'target', u'anim', u'right', u'extremist'] [u'warn', u'sudan', u'darfur', u'atroc'] [u'begin', u'guantanamo', u'prison', u'review'] [u'tongeren', u'deni', u'make', u'death', u'threat'] [u'volunt', u'weed', u'penguin', u'danger'] [u'wallabi', u'prepar', u'tough', u'condit'] [u'wall', u'street', u'make', u'slight', u'gain'] [u'william', u'knock', u'tyson'] [u'plan', u'tighter', u'region', u'defenc', u'tie'] [u'ambul', u'disput', u'head'] [u'warn', u'prescript', u'govern'] [u'athlet', u'tunic', u'real', u'olymp'] [u'aussi', u'rower', u'claim', u'gold', u'spain'] [u'australia', u'close', u'achiev', u'employ'] [u'australia', u'damag', u'cycl', u'drug', u'scandal'] [u'bangladesh', u'flood', u'spark', u'diseas', u'crisi'] [u'biker', u'restaur', u'record'] [u'cat', u'theyr', u'genuin', u'contend'] [u'chief', u'minist', u'promis', u'steadi', u'govern'] [u'child', u'abus', u'report', u'rise'] [u'chines', u'polic', u'rescu', u'kidnap', u'toddler'] [u'chines', u'troop', u'forc', u'hong', u'kong'] [u'clijster', u'open'] [u'consum', u'turn', u'expens', u'lamb'] [u'crash', u'inquiri', u'like', u'examin', u'chopper', u'weight'] [u'dajka', u'leav', u'olymp', u'train', u'camp'] [u'davenport', u'cruis', u'diego', u'final'] [u'democrat', u'hop', u'senat', u'seat'] [u'democrat', u'urg', u'review', u'discrimin'] [u'demon'] [u'demon', u'wari', u'wound', u'hawk'] [u'donald', u'close', u'scandinavian', u'master'] [u'drive', u'teacher', u'nervous', u'licenc'] [u'eagl', u'coast', u'victori'] [u'dead', u'fresh', u'fallujah', u'fight'] [u'feder', u'roddick', u'toronto', u'final'] [u'ferguson', u'focus', u'premiership'] [u'year', u'critic', u'condit', u'metr'] [u'forestri', u'blueprint', u'spark', u'controversi'] [u'kill', u'suspect', u'iraq', u'suicid', u'bomb'] [u'star', u'gile', u'stun', u'windi'] [u'french', u'troop', u'begin', u'darfur', u'mission'] [u'gang', u'rape', u'alleg', u'startl', u'polic'] [u'googl', u'auction', u'websit', u'go', u'live'] [u'govt', u'fund', u'sydney', u'campus'] [u'graffiti', u'squad', u'clean', u'respons', u'time'] [u'green', u'art', u'polici', u'target', u'concern'] [u'gunmen', u'kill', u'soldier', u'south', u'western', u'pakistan'] [u'howard', u'label', u'senat', u'inquiri', u'process', u'shambl'] [u'hundr', u'protest', u'central', u'militari', u'area'] [u'inca', u'observatori', u'uncov', u'peru'] [u'independ', u'fail', u'experi', u'boswel'] [u'indonesian', u'troop', u'kill', u'aceh', u'separatist', u'rebel'] [u'intellig', u'drug', u'find'] [u'iraqi', u'milit', u'extend', u'hostag', u'deadlin'] [u'israel', u'mull', u'restrict', u'jewish', u'extremist'] [u'jetstar', u'investig', u'seatbelt', u'slash'] [u'junior', u'cyclist', u'medal'] [u'knight', u'stay', u'touch'] [u'labor', u'claim', u'signific', u'budget', u'save'] [u'labor', u'choic', u'week'] [u'lomu', u'leav', u'hospit', u'kidney', u'transplant'] [u'inflat', u'ensur', u'flat', u'rat', u'costello'] [u'man', u'climb'] [u'mcewen', u'spearhead', u'team'] [u'mcgrath', u'prim', u'ash', u'battl'] [u'meningococc', u'spate', u'rais', u'public', u'fear'] [u'merger', u'push', u'worri', u'shire', u'associ'] [u'miss', u'person', u'week', u'focus', u'famili', u'trauma'] [u'myskina', u'earn', u'final', u'meet', u'davenport'] [u'keep', u'watch', u'earli', u'bushfir', u'risk'] [u'polic', u'secur', u'guard', u'deadlin'] [u'pakistan', u'vow', u'continu', u'fight', u'terror'] [u'panel', u'examin', u'mental', u'health'] [u'perth', u'record', u'juli'] [u'pittman', u'second', u'belgium'] [u'poland', u'mark', u'anniversari', u'warsaw', u'upris'] [u'polic', u'appeal', u'help', u'miss', u'tourist'] [u'polic', u'investig', u'steal', u'forklift', u'crash'] [u'port', u'remain', u'posit', u'despit', u'defeat'] [u'possibl', u'spurr', u'erupt', u'worri', u'geologist'] [u'promot', u'back', u'william', u'klitschko', u'showdown'] [u'land', u'clear', u'law', u'failur', u'anderson'] [u'put', u'homework', u'review'] [u'young', u'nation', u'membership', u'flounder'] [u'rooster', u'storm'] [u'rooster', u'stay', u'weather', u'storm'] [u'ignor', u'flood', u'risk', u'opposit', u'say'] [u'saint', u'expect', u'physic', u'clash'] [u'charg', u'paedophil', u'offenc'] [u'secur', u'guard', u'fail', u'meet', u'polic', u'deadlin'] [u'seventeen', u'injur', u'pragu', u'explos'] [u'singh', u'pull', u'clear', u'michigan'] [u'stamp', u'duti', u'figur', u'point', u'strong', u'market'] [u'sudan', u'say', u'rebel', u'spread', u'fight', u'east'] [u'sudan', u'accept', u'resolut'] [u'govt', u'accus', u'hord', u'elect', u'chest'] [u'marin', u'communiti', u'celebr', u'shark'] [u'terrorist', u'traine', u'surpris'] [u'tesk', u'share', u'british', u'open', u'lead'] [u'trescothick', u'set', u'edgbaston', u'record'] [u'turkish', u'firm', u'suspend', u'iraqi', u'oper'] [u'turkish', u'hold', u'captiv', u'iraq'] [u'lebanes', u'seiz', u'iraq', u'ministri'] [u'union', u'claim', u'miner', u'hold', u'hostag', u'billiton'] [u'place', u'tough', u'travel', u'restrict', u'cuban'] [u'vatican', u'argu', u'femin', u'undermin', u'famili'] [u'opposit', u'unveil', u'order', u'polici'] [u'west', u'bank', u'verg', u'unpreced', u'chao'] [u'woman', u'kill', u'renov', u'accid'] [u'world', u'trade', u'negoti', u'strike', u'deal'] [u'sight', u'trade', u'deal', u'reviv'] [u'disput', u'plastic', u'reduct', u'claim'] [u'actu', u'seek', u'casual', u'worker', u'right'] [u'airport', u'manag', u'move', u'allay', u'council', u'concern'] [u'black', u'robinson', u'wallabi', u'test'] [u'alleg', u'gang', u'leader', u'threat', u'court', u'tell'] [u'alleg', u'offend', u'refus', u'bail'] [u'make', u'bruce', u'highway', u'flood', u'pledg'] [u'speak', u'doctor', u'fatigu'] [u'ambul', u'ban', u'remain', u'place'] [u'ambul', u'union', u'vow', u'continu', u'fight'] [u'ancient', u'babylon', u'ruin', u'foreign', u'troop', u'iraqi'] [u'asbesto', u'put', u'risk', u'union', u'say'] [u'aust', u'hand', u'baghdad', u'traffic', u'control'] [u'australian', u'warn', u'terror', u'risk'] [u'weather', u'delay', u'nasa', u'mercuri', u'messeng'] [u'bali', u'bomber', u'switch', u'jail'] [u'billit', u'disput', u'escal', u'lock'] [u'continu', u'south', u'east'] [u'bodi', u'near', u'outback', u'rail', u'line'] [u'boomer', u'opal', u'lose', u'olymp', u'warm'] [u'boulder', u'beach', u'black', u'bean', u'blunder'] [u'brumbi', u'upbeat', u'bathhous', u'tender', u'process'] [u'builder', u'insur', u'protest', u'parliament', u'hous'] [u'bushfir', u'danger', u'period', u'begin'] [u'cafe', u'worker', u'diagnos', u'hepat'] [u'diesel', u'includ', u'ethanol', u'debat'] [u'govt', u'help', u'nation', u'trust'] [u'hunter', u'tourism', u'rethink'] [u'camp', u'qualiti', u'call', u'volunt'] [u'bomb', u'target', u'christian', u'iraq'] [u'casual', u'employ', u'hit', u'region', u'hard'] [u'casual', u'invalu', u'tourism'] [u'children', u'care', u'feel', u'need'] [u'citrus', u'canker', u'inspect', u'continu', u'year'] [u'close', u'door', u'blame', u'death'] [u'coal', u'construct', u'start'] [u'coast', u'miss', u'person', u'urg', u'famili'] [u'coat', u'give', u'athen', u'thumb'] [u'cobb', u'reliv', u'outback', u'trek'] [u'communiti', u'urg', u'fight', u'hospit', u'servic'] [u'cop', u'implic', u'alic', u'fight'] [u'coron', u'advis', u'acquit', u'lawyer'] [u'council', u'concern', u'canberra', u'airport', u'freight'] [u'council', u'hesit', u'perman', u'cyclon', u'traci'] [u'council', u'sign', u'cross', u'border', u'deal'] [u'council', u'upbeat', u'renmark', u'plan'] [u'cowra', u'boost', u'water', u'restrict'] [u'crash', u'leav', u'woman', u'critic'] [u'crown', u'open', u'case', u'snowtown', u'murder', u'trial'] [u'danih', u'play', u'spot'] [u'davenport', u'claim', u'titl', u'trick'] [u'death', u'toll', u'mount', u'shop', u'centr'] [u'delay', u'cattl', u'graze', u'report'] [u'dive', u'mishap', u'put', u'hospit'] [u'doctor', u'warn', u'earli', u'birth', u'carri', u'health', u'risk'] [u'dolphin', u'chief', u'shake', u'attack'] [u'donald', u'break', u'european', u'duck'] [u'doubl', u'road', u'fatal', u'childer'] [u'concern', u'secur', u'guard', u'interview'] [u'drink', u'countri', u'footbal', u'cultur', u'carey'] [u'electr', u'blanket', u'blame', u'hous'] [u'chess', u'champ', u'appli', u'asylum', u'japan'] [u'farmer', u'worri', u'agreement', u'loophol'] [u'firm', u'sandgat', u'rail', u'work'] [u'fisheri', u'reopen', u'restrict'] [u'flawless', u'feder', u'take', u'toronto', u'titl'] [u'flinder', u'provid', u'better', u'outlook', u'stroke', u'victim'] [u'flood', u'destroy', u'crop', u'north', u'korea'] [u'gallop', u'promis', u'better', u'mental', u'health', u'servic'] [u'german', u'leader', u'attend', u'warsaw', u'upris'] [u'gile', u'spin', u'england', u'victori'] [u'gippsland', u'builder', u'join', u'insur', u'protest'] [u'girlfriend', u'fear', u'miss', u'english', u'tourist'] [u'goldfield', u'hop', u'relationship', u'centr'] [u'govt', u'open', u'experiment', u'weather', u'bureau', u'shopfront'] [u'govt', u'urg', u'chang', u'indigen', u'legal', u'tender'] [u'govt', u'urg', u'follow', u'feral', u'anim', u'scheme'] [u'govt', u'urg', u'wind', u'farm'] [u'govt', u'want', u'quick', u'passag'] [u'gracetown', u'cliff', u'collaps', u'claim', u'court'] [u'gracetown', u'cliff', u'collaps', u'claim', u'hear', u'court'] [u'grazier', u'set', u'sight', u'shoot', u'gold'] [u'green', u'target', u'hunter', u'bulk', u'bill', u'declin'] [u'group', u'boost', u'farm', u'skill'] [u'group', u'say', u'fish', u'chang', u'ignor', u'net', u'issu'] [u'group', u'worri', u'train', u'timet', u'derail', u'tourism'] [u'gunmen', u'kill', u'afghan', u'soldier', u'elect', u'attack'] [u'gunmen', u'kill', u'suspect', u'collabor', u'gaza', u'hospit'] [u'hardi', u'dump', u'share', u'inquiri', u'hear'] [u'har', u'race', u'trainer', u'disqualifi', u'drug', u'test'] [u'hear', u'probe', u'council', u'elect', u'disput'] [u'help', u'agenc', u'forc', u'downsiz', u'oper'] [u'help', u'offer', u'veget', u'manag', u'law', u'impact'] [u'democraci', u'support', u'talk', u'beij'] [u'hope', u'gympi', u'gold', u'worker'] [u'hope', u'region', u'relationship', u'centr'] [u'hous', u'price', u'fall', u'bendigo'] [u'hundr', u'ralli', u'militari', u'train', u'plan'] [u'industri', u'woe', u'close', u'ambul', u'station'] [u'inquest', u'investig', u'aborigin', u'children', u'death'] [u'iraqi', u'presid', u'blame', u'zarqawi', u'church', u'bomb'] [u'order', u'ambul', u'union', u'lift', u'work', u'ban'] [u'kidnap', u'turkish', u'nation', u'execut', u'iraq'] [u'kingaroy', u'council', u'budget', u'deliv', u'rate', u'rise'] [u'knightley', u'fall', u'domino'] [u'knight', u'raider', u'face', u'battl', u'final', u'spot'] [u'landhold', u'warn', u'bushfir', u'season', u'fin'] [u'lara', u'wont', u'quit', u'despit', u'windi', u'woe'] [u'leader', u'congratul', u'troop'] [u'lebanes', u'hostag', u'free', u'iraq'] [u'lebanes', u'hostag', u'releas', u'iraq'] [u'return', u'champion', u'trophi'] [u'lib', u'offer', u'expand', u'senior', u'concess'] [u'loss', u'concentr', u'cost', u'bok', u'say', u'white'] [u'manufactur', u'activ', u'rise'] [u'matthew', u'say', u'lion', u'sure', u'thing'] [u'mayor', u'lament', u'meatwork', u'woe'] [u'meet', u'consid', u'softwood', u'industri', u'futur'] [u'worker', u'want', u'share', u'resourc', u'boom'] [u'minist', u'promis', u'medicar', u'fund', u'licenc'] [u'miss', u'person', u'urg', u'contact', u'famili'] [u'murali', u'lanka', u'test', u'squad'] [u'murder', u'boy', u'famili', u'video', u'game', u'maker'] [u'nation', u'miss', u'person', u'week', u'launch'] [u'nevill', u'smith', u'merg'] [u'sydney', u'train', u'timet', u'disastr'] [u'norther', u'contest', u'plate'] [u'nurs', u'boost', u'address', u'hospit', u'workload'] [u'builder', u'marri', u'british', u'royalti'] [u'offici', u'enhanc', u'safeti'] [u'ogradi', u'sprint', u'hamburg', u'victori'] [u'opposit', u'youth', u'crime', u'polici'] [u'pair', u'face', u'court', u'trucki', u'shoot'] [u'palio', u'resign', u'chief', u'execut'] [u'defend', u'extravag', u'travel', u'expens'] [u'welcom', u'home', u'troop'] [u'confirm', u'aust', u'pilot', u'death'] [u'poki', u'mean', u'staff', u'port', u'panther'] [u'polic', u'investig', u'melbourn', u'shoot'] [u'polic', u'play', u'station', u'concern'] [u'polic', u'renew', u'plea', u'help', u'miss', u'fruit', u'grower'] [u'polic', u'train', u'death', u'accident'] [u'polic', u'seek', u'help', u'catch', u'school', u'vandal'] [u'port', u'player', u'charg'] [u'public', u'ask', u'help', u'miss', u'local'] [u'public', u'prais', u'crime', u'fight', u'help'] [u'electr', u'upgrad', u'deadlin', u'question'] [u'record', u'number', u'entrant', u'fist', u'film'] [u'report', u'suggest', u'shift', u'redfern', u'needl'] [u'research', u'studi', u'rare', u'shark'] [u'retail', u'sale', u'surg'] [u'retir', u'unit', u'develop', u'consid', u'site'] [u'remain', u'prioriti', u'search', u'industri'] [u'ring', u'cycl', u'rehears', u'resum'] [u'rooney', u'price'] [u'leav', u'polic', u'offic', u'injur'] [u'farmer', u'welcom', u'deal'] [u'hotb', u'paedophil', u'rann'] [u'santo', u'build', u'fetch'] [u'pleas', u'workplac', u'endors'] [u'school', u'adopt', u'olymp', u'swim', u'hope'] [u'search', u'continu', u'miss', u'canoeist'] [u'season', u'charman', u'otten'] [u'secur', u'guard', u'charg', u'murder'] [u'senat', u'inquiri', u'expect', u'releas', u'trade', u'report'] [u'senat', u'recommend', u'labor'] [u'sensor', u'tassi', u'devil', u'declin'] [u'serena', u'miss', u'montreal', u'event'] [u'kill', u'injur', u'afghan', u'border', u'clash'] [u'shake', u'possibl', u'elector', u'boundari'] [u'shark', u'fisher', u'fight', u'industri'] [u'shark', u'lover', u'plung'] [u'singh', u'ralli', u'michigan'] [u'smelli', u'salami', u'poster', u'anger', u'itali'] [u'somali', u'hostag', u'releas', u'report'] [u'lankan', u'lift', u'asia'] [u'stock', u'finish', u'close', u'week', u'high'] [u'studi', u'consid', u'sport', u'stadium', u'plan'] [u'studi', u'excus', u'avoid', u'vietnam'] [u'stuppl', u'hold', u'tesk', u'british'] [u'sudan', u'reject', u'resolut', u'deadlin'] [u'swan', u'boss', u'face', u'fine', u'barrag'] [u'sydney', u'guard', u'face', u'murder', u'charg'] [u'sydney', u'secur', u'guard', u'talk', u'polic'] [u'teen', u'particip', u'self', u'harm', u'studi'] [u'teeth', u'problem', u'prospector'] [u'telstra', u'sign', u'deal', u'tabcorp', u'network'] [u'tenni', u'coach', u'guilti', u'offenc'] [u'tiger', u'deni', u'wallac', u'link'] [u'time', u'come', u'hard', u'decis', u'springborg'] [u'time', u'run', u'power', u'station', u'bid'] [u'toll', u'rise', u'paraguay', u'supermarket', u'inferno'] [u'tunnel', u'ralli', u'workmat', u'widow'] [u'face', u'judiciari'] [u'union', u'happi', u'compani', u'respons', u'workplac'] [u'secur', u'medic', u'school'] [u'rais', u'terror', u'alert', u'financi', u'district'] [u'vanadium', u'submiss', u'close'] [u'vermeulen', u'second', u'superbik', u'championship'] [u'back', u'deal', u'talk'] [u'govt', u'seek', u'lift', u'ambo', u'work', u'ban'] [u'video', u'surveil', u'fuel', u'petrol', u'thief', u'probe'] [u'wait', u'list', u'program', u'work', u'beatti'] [u'test', u'counter', u'terror', u'respons'] [u'websit', u'kill', u'turkish', u'hostag'] [u'week', u'recognis', u'nurs', u'effort'] [u'know', u'malaysian', u'businessman', u'trial', u'fraud'] [u'whale', u'tangl', u'coast'] [u'give', u'pioneer', u'final', u'boost'] [u'wollongong', u'land', u'medic', u'school'] [u'woman', u'face', u'marijuana', u'drive', u'charg'] [u'workcov', u'defend', u'compens', u'requir'] [u'work', u'wind', u'station', u'januari'] [u'fine', u'print', u'worri', u'howard'] [u'yandi', u'oper'] [u'youth', u'sentenc', u'drink', u'drive', u'death'] [u'yuendumu', u'shoot', u'prompt', u'polic', u'probe'] [u'zidan', u'injur', u'real', u'japan', u'tour'] [u'year', u'intellig', u'latest', u'terror'] [u'accus', u'peopl', u'smuggler', u'plead', u'guilti'] [u'acid', u'rain', u'counteract', u'global', u'warm'] [u'milan', u'chelsea', u'friend'] [u'admit', u'child', u'protect', u'failur'] [u'assembl', u'gear', u'elect'] [u'urg', u'report', u'dodgi', u'sale', u'scheme'] [u'airport', u'plan', u'bird', u'turf'] [u'black', u'chang'] [u'ord', u'hit', u'time', u'high'] [u'stanc'] [u'ambul', u'worker', u'lift', u'work', u'ban'] [u'american', u'sprinter', u'hand', u'year', u'dope'] [u'arrest', u'polic', u'drug', u'raid'] [u'close', u'week', u'high'] [u'asylum', u'seeker', u'arriv', u'nauru'] [u'athen', u'offici', u'introduc', u'olymp', u'road', u'rule'] [u'attack', u'halt', u'export', u'northern', u'iraq'] [u'aussi', u'chart', u'record', u'number'] [u'australian', u'domin', u'etchel', u'place'] [u'australia', u'sport', u'develop', u'pacif'] [u'averag', u'harvest', u'tip', u'south', u'east'] [u'bail', u'refus', u'attempt', u'murder', u'charg'] [u'beat', u'tyson', u'face', u'knee', u'surgeri'] [u'beatti', u'match'] [u'beatti', u'urg', u'feder', u'labor'] [u'beatti', u'warn', u'power', u'compani', u'problem'] [u'billiton', u'probe', u'hear', u'evid'] [u'downpour', u'bypass', u'riverland'] [u'brickwork', u'plant', u'hunter'] [u'bushfir', u'inquest', u'narrow', u'say'] [u'bushfir', u'season', u'concern', u'heat'] [u'call', u'releas', u'cycl', u'inquiri', u'report'] [u'canefarm', u'consid', u'ethanol', u'sustain'] [u'cannon', u'feel', u'pressur', u'regain', u'wallabi', u'spot'] [u'bomb', u'north', u'baghdad', u'kill', u'armi'] [u'carr', u'back', u'senat', u'inquiri', u'report'] [u'carr', u'bolster', u'school', u'disciplin'] [u'carr', u'defend', u'redfern', u'riot', u'inquiri'] [u'chess', u'champ', u'search', u'home'] [u'choppi', u'water', u'spain', u'gibraltar'] [u'claw', u'come', u'registr', u'plan'] [u'cleaner', u'strike', u'contract'] [u'coalit', u'pull', u'clear', u'poll'] [u'commonwealth', u'bank', u'staff', u'half', u'strike'] [u'launch', u'joint', u'polici', u'ahead'] [u'council', u'consid', u'communiti', u'fund', u'distribut'] [u'council', u'merger', u'discuss'] [u'council', u'urg', u'invest', u'ferri', u'servic'] [u'court', u'challeng', u'lake', u'cowal', u'nativ', u'titl'] [u'court', u'decis', u'like', u'delay', u'project'] [u'croc', u'captain', u'upbeat', u'come', u'season'] [u'croc', u'upbeat', u'come', u'season'] [u'cult', u'school', u'investig'] [u'dajka', u'lodg', u'appeal', u'expuls'] [u'davenport', u'rise', u'second', u'world', u'rank'] [u'deal', u'green', u'light', u'shark', u'interpret', u'centr'] [u'develop', u'preserv', u'mine', u'heritag'] [u'dingo', u'research', u'reveal', u'histori'] [u'doctor', u'crack', u'year', u'digest', u'puzzl'] [u'doctor', u'urg', u'close', u'watch', u'meningococc', u'symptom'] [u'doubt', u'cast', u'rain', u'predict'] [u'drought', u'fail', u'impact', u'meat', u'qualiti', u'price'] [u'eagl', u'water', u'win', u'rise', u'star'] [u'ekka', u'sleep', u'stoush', u'resolv'] [u'electr', u'disconnect', u'plan', u'unfair', u'say', u'sacoss'] [u'everton', u'confid', u'rooney', u'stay'] [u'expert', u'converg', u'bendigo', u'salin', u'talk'] [u'extra', u'secur', u'isra', u'athlet'] [u'back', u'embattl', u'eriksson'] [u'famili', u'unhappi', u'find', u'death'] [u'farmer', u'lobbi', u'govt', u'sign', u'kyoto'] [u'stretch', u'german', u'relat'] [u'fear', u'air', u'popul', u'boost', u'plan'] [u'firefight', u'battl', u'recycl', u'plant', u'blaze'] [u'fisher', u'await', u'news', u'manag', u'plan'] [u'flight', u'check', u'text', u'away'] [u'isra', u'captiv', u'clear', u'hezbollah', u'tie'] [u'forum', u'consid', u'broadband', u'access'] [u'fund', u'offer', u'rural', u'project'] [u'govt', u'back', u'polic', u'train', u'brogden'] [u'govt', u'defend', u'sydney', u'train', u'run', u'time'] [u'govt', u'examin', u'redevelop', u'option', u'block'] [u'govt', u'urg', u'crack', u'illeg', u'land', u'clear'] [u'govt', u'urg', u'replac', u'land', u'administr'] [u'green', u'bridg', u'face', u'legal', u'challeng'] [u'green', u'light', u'intersect', u'safeti', u'work'] [u'green', u'seek', u'penalti', u'workplac', u'death'] [u'hama', u'threaten', u'bombard', u'isra', u'town'] [u'harri', u'jenkin', u'rememb', u'parliament'] [u'heavi', u'rainfal', u'caus', u'flood'] [u'help', u'offer', u'health', u'servic', u'chang'] [u'henin', u'hardenn', u'compet', u'athen'] [u'hewitt', u'arthur', u'advanc', u'cincinnati'] [u'hobart', u'die', u'mening'] [u'hopper', u'centr', u'alleg'] [u'hurdler', u'send', u'omin', u'warn', u'ahead', u'athen'] [u'indonesia', u'mark', u'border', u'concret', u'pillar'] [u'injuri', u'strike', u'power'] [u'italian', u'cyclist', u'bartoli', u'rule', u'olymp'] [u'jackeroo', u'miss', u'cape', u'york'] [u'jobless', u'level', u'fall', u'gwydir', u'elector'] [u'julian', u'mcmahon', u'play', u'doom'] [u'karaok', u'king', u'queen', u'crown'] [u'kersten', u'snub', u'team', u'mat', u'manag'] [u'recal', u'car'] [u'kill', u'prompt', u'turkish', u'trucker', u'work'] [u'konica', u'minolta', u'take', u'line', u'honour'] [u'labor', u'claim', u'govt', u'massag', u'anti', u'terror', u'spend'] [u'labor', u'offer', u'condit', u'support'] [u'labor', u'urg', u'govt', u'fund', u'infant', u'vaccin'] [u'labor', u'want', u'releas', u'cycl', u'dope', u'report'] [u'languag', u'film', u'take', u'award'] [u'latest', u'terror', u'intellig', u'date'] [u'look', u'forward', u'speedi', u'return'] [u'legal', u'expert', u'discuss', u'anti', u'terror', u'strategi'] [u'local', u'doctor', u'involv', u'medic', u'school'] [u'lownd', u'switch', u'team'] [u'mackay', u'water', u'alloc'] [u'mahwir', u'come', u'right', u'fix', u'suspect', u'bowl'] [u'die', u'farm', u'accid'] [u'court', u'norfolk', u'murder'] [u'kill', u'melbourn', u'hous', u'collaps'] [u'question', u'sydney', u'solicitor', u'murder'] [u'market', u'remain', u'stabl', u'price', u'rise'] [u'mass', u'grave', u'ivori', u'coast'] [u'mass', u'grave', u'uncov', u'ivori', u'coast'] [u'matilda', u'begin', u'zircon', u'explor'] [u'memori', u'park', u'honour', u'westgat', u'disast', u'victim'] [u'million', u'bangladesh', u'flood', u'victim', u'need', u'food'] [u'firm', u'urg', u'consid', u'nativ', u'titl', u'issu'] [u'worker', u'consid', u'improv', u'offer'] [u'mix', u'fortun', u'port', u'tribun'] [u'mooney', u'face', u'rough', u'play', u'charg'] [u'servic', u'cut', u'fear'] [u'citrus', u'tree', u'destroy'] [u'scrap', u'daintre', u'hous', u'fail'] [u'back', u'labor', u'stanc'] [u'back', u'probe', u'reef', u'fish', u'closur'] [u'question', u'medic', u'school', u'locat'] [u'want', u'extens', u'firewood', u'collect'] [u'netbal', u'reloc', u'hit', u'impass'] [u'group', u'suspect', u'iraq', u'church', u'attack'] [u'chang', u'tip', u'rat'] [u'confirm', u'bodi'] [u'north', u'korea', u'call', u'talk'] [u'consid', u'hardi', u'product'] [u'review', u'cult', u'school', u'registr'] [u'offic', u'dead', u'polic'] [u'opal', u'bounc', u'czech'] [u'opposit', u'highlight', u'naracoort', u'doctor', u'woe'] [u'oral', u'cancer', u'awar', u'program', u'launch'] [u'pacif', u'island', u'good', u'world'] [u'paramed', u'tell', u'work', u'ban'] [u'parent', u'contract', u'plan', u'unlik', u'work'] [u'pbls', u'burswood', u'extend'] [u'philippin', u'arrest', u'bomb', u'suspect'] [u'plan', u'continu', u'miner', u'sand', u'plan'] [u'hear', u'veterinari', u'school'] [u'consid', u'labor', u'chang'] [u'polic', u'investig', u'hand', u'theft'] [u'polic', u'tough', u'liquor', u'licens'] [u'post', u'mortem', u'truck', u'accid', u'victim'] [u'pratt', u'move', u'montreal'] [u'produc', u'condemn', u'labor', u'choic'] [u'project', u'put', u'focus', u'malle', u'fowl', u'conserv'] [u'protea', u'tough', u'challeng', u'lanka'] [u'public', u'ask', u'help', u'miss', u'person'] [u'public', u'urg', u'help', u'miss'] [u'public', u'urg', u'safeti', u'respons'] [u'rain', u'dust', u'settler'] [u'campaign', u'target', u'public', u'school', u'fund'] [u'recycl', u'prove', u'posit', u'broom'] [u'cross', u'visit', u'saddam', u'fourth', u'time'] [u'report', u'point', u'strong', u'invest', u'growth'] [u'rescuer', u'free', u'trap', u'whale'] [u'research', u'consid', u'pesticid', u'impact'] [u'resid', u'look', u'inland', u'chang'] [u'resid', u'urg', u'prepar', u'sever', u'bushfir'] [u'rice', u'defend', u'terror', u'alert'] [u'riverland', u'retain', u'citrus'] [u'rural', u'bank', u'report', u'profit', u'good', u'outlook'] [u'clean', u'wild', u'weather'] [u'school', u'confirm', u'agreement', u'victim'] [u'schooli', u'coordin', u'announc', u'soon'] [u'score', u'milit', u'believ', u'kill', u'afghan'] [u'seventh', u'jordanian', u'take', u'hostag', u'iraq', u'say'] [u'sharon', u'approv', u'west', u'bank', u'settlement', u'push'] [u'sight', u'racecours', u'hous', u'festiv', u'fan'] [u'sixteen', u'refuge', u'arriv', u'nauru'] [u'snowdon', u'voic', u'concern'] [u'socceroo', u'skipper', u'moor', u'head', u'rover'] [u'southern', u'coast', u'limit', u'chang', u'possibl'] [u'statu', u'liberti', u'visit', u'resum'] [u'stray', u'dog', u'olymp', u'villag'] [u'strong', u'malle', u'properti'] [u'student', u'risk', u'poor', u'vision', u'studi'] [u'sudan', u'claim', u'declar'] [u'sink', u'treasur', u'exhibit', u'open', u'museum'] [u'suppli', u'fear', u'push', u'high'] [u'survey', u'highlight', u'skill', u'build', u'labour', u'shortag'] [u'survey', u'show', u'support', u'hotel', u'redevelop'] [u'taxi', u'marshal', u'trial', u'consid', u'success'] [u'teen', u'face', u'court', u'prostitut', u'death'] [u'territori', u'enact', u'compani', u'crackdown'] [u'thing', u'better', u'coke'] [u'kill', u'gaza', u'explos'] [u'trap', u'build', u'collaps'] [u'polic', u'offici', u'kill', u'baghdad'] [u'trade', u'deal', u'hit', u'fresh', u'hitch'] [u'trio', u'admit', u'role', u'perth', u'racist', u'attack'] [u'trio', u'rescu', u'burn'] [u'trucki', u'undergo', u'polic', u'drug', u'test'] [u'tuckey', u'seek', u'grain', u'council', u'revamp'] [u'tyson', u'knee', u'surgeri', u'call', u'success'] [u'union', u'angri', u'worker', u'rest', u'break'] [u'unit', u'liverpool', u'confid', u'champion', u'leagu'] [u'network', u'screen', u'polygami', u'drama'] [u'send', u'messeng', u'mercuri'] [u'vandal', u'attack', u'prompt', u'school', u'secur', u'upgrad'] [u'vandal', u'damag', u'launceston', u'school'] [u'wallac', u'pull', u'race', u'adelaid'] [u'walsh', u'ethiopian', u'post'] [u'western', u'town', u'extend', u'area'] [u'west', u'tamar', u'cyclist', u'win', u'world', u'titl'] [u'wide', u'alic', u'land', u'develop'] [u'windi', u'coach', u'back', u'lara'] [u'wit', u'will', u'identifi', u'accus', u'smuggler'] [u'worimi', u'land', u'council', u'woe', u'continu'] [u'world', u'champ', u'outclass', u'boomer'] [u'accus', u'pander', u'govern'] [u'yahoo', u'launch', u'localis', u'search'] [u'youth', u'question', u'break', u'claim'] [u'dead', u'mosul', u'clash'] [u'olymp', u'riddl', u'corrupt', u'report'] [u'injur', u'zimbabw', u'train', u'crash'] [u'reject', u'request', u'abort', u'documentari'] [u'aborigin', u'children', u'focus', u'famili', u'violenc'] [u'academ', u'see', u'benefit', u'alp', u'condit'] [u'accus', u'conspir', u'underworld', u'murder', u'refus'] [u'accus', u'secur', u'guard', u'refus', u'media', u'money'] [u'ban', u'cigarett', u'vend', u'machin'] [u'uni', u'receiv', u'mark'] [u'decid', u'fin', u'umpir', u'critic'] [u'african', u'union', u'send', u'troop', u'darfur'] [u'announc', u'quarantin', u'plan'] [u'back', u'labor', u'stanc'] [u'analyst', u'dubious', u'demand', u'portabl', u'video'] [u'armi', u'chief', u'reject', u'tank', u'critic'] [u'arsenal', u'real', u'madrid', u'agre', u'vieira', u'sale', u'report'] [u'artist', u'expect', u'townsvill'] [u'athen', u'guard', u'accus', u'crew', u'bash'] [u'athen', u'secur', u'guard', u'bash', u'crew', u'report'] [u'atsic', u'inquiri', u'extend', u'submiss', u'deadlin'] [u'attack', u'slash', u'children', u'beij'] [u'aussi', u'domin', u'etchel', u'world', u'champ'] [u'aust', u'invent', u'boon', u'safeti'] [u'australia', u'crack', u'bull', u'semen', u'market'] [u'aust', u'seek', u'dutch', u'treati', u'protect', u'asbesto', u'victim'] [u'belgium', u'mourn', u'explos', u'victim'] [u'bleak', u'futur', u'mental', u'health', u'servic'] [u'boomer', u'beat', u'angola', u'olymp', u'tournament'] [u'boost', u'plan', u'port', u'macdonnel', u'health', u'servic'] [u'break', u'hill', u'rain', u'hop', u'dri'] [u'bulldog', u'sack', u'rohd'] [u'bush', u'sign', u'australia', u'free', u'trade', u'agreement'] [u'bush', u'sign', u'aust', u'debat', u'continu'] [u'canberra', u'airport', u'expans', u'worri', u'resid'] [u'cane', u'crop', u'estim'] [u'cannon', u'wallabi', u'squad'] [u'cervic', u'cancer', u'screen', u'chang', u'risk', u'live'] [u'chang', u'afoot', u'local', u'elector', u'boundari'] [u'charg', u'lay', u'paraguay', u'shop', u'centr'] [u'china', u'asian', u'final'] [u'china', u'pakistan', u'kick', u'anti', u'terror', u'drill'] [u'citrus', u'canker', u'offic', u'plan', u'emerald'] [u'citylink', u'work', u'furious', u'clear', u'melbourn', u'road'] [u'claim', u'sugarcan', u'safe'] [u'clear', u'beatti', u'govt', u'bypass', u'claim'] [u'communiti', u'split', u'land', u'corridor', u'plan'] [u'council', u'seek', u'boost', u'migrant', u'number'] [u'council', u'consid', u'use', u'sturt', u'site'] [u'council', u'chang', u'servic', u'centr', u'role'] [u'council', u'consid', u'beach', u'develop', u'concern'] [u'council', u'upbeat', u'netbal', u'reloc'] [u'countri', u'peopl', u'lose', u'seat', u'chang', u'nation'] [u'court', u'hear', u'driver', u'unawar', u'accus', u'arm'] [u'court', u'hear', u'wine', u'grape', u'suppli', u'disput'] [u'court', u'tell', u'rapist', u'videotap', u'offenc'] [u'cowboy', u'pair', u'await', u'fit', u'test', u'bulldog', u'clash'] [u'creditor', u'pack', u'firm', u'return'] [u'reject', u'student', u'staff', u'ratio', u'figur'] [u'dajka', u'head', u'home', u'appeal'] [u'danish', u'armi', u'captain', u'charg', u'iraq', u'prison'] [u'darwin', u'celebr', u'steam', u'train', u'return'] [u'dead', u'zone', u'spread', u'gulf', u'mexico'] [u'death', u'toll', u'rise', u'india', u'monsoon', u'flood'] [u'decis', u'loom', u'kimberley', u'cotton'] [u'decis', u'loom', u'vietnam', u'veteran', u'memori', u'wall'] [u'defenc', u'worker', u'strike'] [u'test', u'continu', u'worker', u'murder', u'case'] [u'donat', u'flow', u'galleri'] [u'doubt', u'cast', u'dairi', u'plan'] [u'doubt', u'cast', u'cod', u'carrara'] [u'move', u'freez', u'guard', u'interview', u'money'] [u'driver', u'warn', u'condit'] [u'drug', u'addict', u'brew', u'poppi', u'seed', u'buy'] [u'drug', u'maker', u'deni', u'pressur', u'govt'] [u'eel', u'lyon', u'talk', u'panther'] [u'elector', u'boundari', u'chang', u'plan', u'hunter'] [u'emerg', u'crew', u'work', u'avert', u'flood', u'disast'] [u'england', u'schole', u'quit', u'intern', u'footbal'] [u'eriksson', u'grill'] [u'everton', u'sign', u'australian', u'defend'] [u'expand', u'shoe', u'target', u'grow', u'feet'] [u'fear', u'air', u'devonport', u'kindergarten', u'futur'] [u'feder', u'win', u'streak', u'snap'] [u'feder', u'streak', u'snap'] [u'feedback', u'seek', u'ocean', u'trawl', u'draft', u'plan'] [u'figur', u'highlight', u'tourism', u'job'] [u'financi', u'reassur', u'seek', u'cottag'] [u'wilkinson', u'return'] [u'remain', u'deadlock'] [u'garrett', u'tell', u'father', u'death'] [u'gaza', u'violenc', u'prove', u'need', u'reform'] [u'gbrmpa', u'reject', u'rotat', u'fish', u'closur'] [u'gibraltar', u'celebr', u'year', u'british', u'rule'] [u'govt', u'launch', u'elect', u'recycl', u'initi'] [u'govt', u'reveal', u'albani', u'waterfront', u'plan'] [u'govt', u'fast', u'track', u'marriag'] [u'greec', u'stage', u'extraordinari', u'safe', u'game'] [u'group', u'seek', u'saleyard', u'plan', u'rethink'] [u'guantanamo', u'inmat', u'alleg', u'abus', u'humili'] [u'hall', u'back', u'thorp', u'drug', u'claim'] [u'halliburton', u'mislead', u'account'] [u'hattonval', u'bushfir', u'threat', u'eas'] [u'hemp', u'cultiv', u'get', u'green', u'light'] [u'heroin', u'strategi', u'prompt', u'inject', u'room'] [u'high', u'wind', u'toll', u'wollongong', u'area'] [u'identif', u'paramount', u'peopl', u'smuggl', u'case'] [u'ignor', u'hardi', u'cri', u'innoc', u'inquiri', u'tell'] [u'inglewood', u'shire', u'water', u'cost'] [u'rat', u'stay', u'hold'] [u'investig', u'begin', u'meningococc', u'diseas'] [u'iraqi', u'insurg', u'free', u'hostag'] [u'conduct', u'prison', u'probe'] [u'irishman', u'kill', u'riyadh', u'shoot'] [u'isra', u'troop', u'push', u'deeper', u'gaza'] [u'itali', u'stun', u'olymp', u'basketbal', u'exhibit'] [u'jayawarden', u'sangakkara', u'slam', u'fifti', u'south'] [u'karratha', u'face', u'doctor', u'shortag'] [u'kewel', u'hop', u'anfield', u'peac'] [u'labor', u'plan', u'riski', u'warn'] [u'labor', u'vow', u'pay', u'place'] [u'laidley', u'budget', u'deliv', u'rate', u'rise'] [u'lamb', u'loss', u'reach', u'peak'] [u'local', u'govern', u'join', u'hardi'] [u'local', u'return', u'french', u'theatr', u'product'] [u'charg', u'worker', u'death'] [u'mauresmo', u'lead', u'seed', u'player', u'montreal'] [u'mayor', u'question', u'free', u'trade', u'deal', u'benefit'] [u'mildura', u'south', u'plan', u'document', u'releas'] [u'minist', u'want', u'tent', u'embassi', u'close'] [u'miss', u'farmhand', u'safe', u'dehydr'] [u'molik', u'farina', u'elia', u'advanc', u'stockholm'] [u'moor', u'blackburn', u'deal', u'collaps'] [u'communiti', u'join', u'cert'] [u'fund', u'seek', u'taxi', u'plan'] [u'snow', u'predict', u'alpin', u'resort'] [u'women', u'urg', u'stand', u'local', u'govt'] [u'seek', u'fire', u'power', u'station'] [u'napthin', u'join', u'call', u'lower', u'purnim', u'speed', u'limit'] [u'nauran', u'face', u'court', u'worker', u'murder', u'charg'] [u'centr', u'open', u'wollongong'] [u'polic', u'offic', u'kill', u'colombia', u'bomb'] [u'korea', u'missil', u'develop', u'concern'] [u'detail', u'waikeri', u'wineri', u'sale'] [u'compani', u'fin', u'illeg', u'clear'] [u'price', u'hit'] [u'olymp', u'weightlift', u'charg', u'melborn'] [u'olymp', u'weightlift', u'charg', u'prostitut'] [u'dead', u'injur', u'cabramatta', u'shoot'] [u'onlin', u'scam', u'pose', u'kerri', u'campaign', u'fundrais'] [u'opposit', u'youth', u'crime', u'polici'] [u'owen', u'give', u'liverpool', u'win', u'edg', u'roma'] [u'pair', u'plead', u'guilti', u'track', u'case'] [u'paramed', u'resum', u'talk'] [u'parent', u'push', u'uniform', u'school'] [u'parliamentari', u'foe', u'join', u'forc', u'launch', u'book'] [u'passeng', u'boost', u'whitsunday', u'airport'] [u'pfizer', u'seller', u'fake', u'viagra'] [u'polic', u'charg', u'gladston', u'drug', u'oper'] [u'polic', u'counter', u'derbi', u'crime', u'claim'] [u'policeman', u'succumb', u'ill'] [u'polic', u'truck', u'accid', u'victim'] [u'polic', u'probe', u'fuel', u'tanker', u'spill'] [u'polic', u'probe', u'rail', u'worker', u'death'] [u'polic', u'pursu', u'parrot', u'pilfer'] [u'polic', u'seek', u'fatal', u'crash', u'wit'] [u'polic', u'bolster', u'tennant', u'creek', u'number'] [u'polic', u'oppos', u'push', u'extend', u'hour'] [u'poor', u'respons', u'driver', u'fatigu', u'probe'] [u'pragu', u'attack'] [u'school', u'communiti', u'protest'] [u'probe', u'launch', u'train', u'blaze'] [u'push', u'safe', u'shear', u'technolog'] [u'push', u'promot', u'gawler', u'craton'] [u'professor', u'pioneer', u'incontin', u'cure'] [u'rail', u'overpass', u'name', u'honour', u'alic', u'pioneer'] [u'rain', u'aid', u'barossa', u'vineyard'] [u'rain', u'outlook', u'good', u'mitchel', u'grass', u'plain'] [u'recognit', u'council', u'youth', u'effort'] [u'region', u'doubt', u'cast', u'parent', u'contract'] [u'review', u'consid', u'careflight', u'chopper'] [u'warn', u'bushfir', u'threat'] [u'road', u'crash', u'claim', u'teen', u'life'] [u'rush', u'athen', u'ticket'] [u'russia', u'georgia', u'foot', u'separatist'] [u'sand', u'track', u'work', u'continu'] [u'school', u'cleaner', u'protest', u'privatis', u'plan'] [u'search', u'wynyard', u'continu'] [u'search', u'miss', u'student', u'north'] [u'servic', u'sector', u'growth', u'great', u'news', u'busi'] [u'servic', u'index', u'show', u'strong', u'recoveri'] [u'shark', u'bite', u'spear', u'fisherman'] [u'sheedi', u'call', u'improv', u'communic'] [u'shire', u'review', u'prove', u'cost'] [u'shire', u'suggest', u'opium', u'trial'] [u'shop', u'centr', u'owner', u'closur'] [u'charg', u'fatal', u'paraguayan'] [u'kill', u'light', u'plane', u'crash'] [u'sorenstam', u'readjust', u'sight', u'major', u'sweep'] [u'state', u'leader', u'amend'] [u'statu', u'liberti', u'open', u'despit', u'terror', u'fear'] [u'strategi', u'address', u'hospit', u'shortag'] [u'submiss', u'seek', u'daintre', u'hous'] [u'sudan', u'get', u'messag', u'loud', u'clear'] [u'talk', u'restart', u'ambul', u'disput'] [u'accus', u'anti', u'competit', u'poki', u'polici'] [u'galleri', u'unveil', u'unusu', u'victorian', u'paint'] [u'premier', u'urg', u'outlin', u'role', u'governor'] [u'teen', u'flee', u'brisban', u'bodi', u'court'] [u'telstra', u'strike', u'deal'] [u'thailand', u'ban', u'orang', u'utan', u'kickbox'] [u'thailand', u'criticis', u'tough', u'drug', u'polici'] [u'tourism', u'forum', u'discuss', u'voluntari', u'accredit'] [u'tourism', u'support', u'tip', u'elect', u'issu'] [u'tribut', u'flow', u'follow', u'policeman', u'death'] [u'troubl', u'kashmir', u'seek', u'host', u'intern'] [u'polic', u'arrest', u'terror', u'suspicion'] [u'agenc', u'pull', u'foreign', u'staff', u'gaza'] [u'defend', u'year', u'terror', u'alert'] [u'market', u'slide', u'hit', u'high'] [u'pilot', u'punish', u'mistak', u'stand'] [u'press', u'israel', u'settlement', u'expans'] [u'soldier', u'face', u'hear', u'ghraib', u'abus'] [u'soldier', u'abus', u'iraqi'] [u'virgin', u'qanta', u'pull', u'market', u'lower'] [u'wallabi', u'name', u'today'] [u'walsh', u'head', u'chines', u'cycl', u'hop'] [u'water', u'boost', u'flow', u'pipelin', u'work'] [u'addict', u'get', u'finnish', u'conscript', u'armi'] [u'weightlift', u'remand', u'custodi', u'worker'] [u'wildcat', u'challeng', u'croc', u'kalgoorli'] [u'wildlif', u'sanctuari', u'accus', u'manag', u'overfe'] [u'william', u'suspend', u'week'] [u'william', u'judiciari', u'tonight'] [u'world', u'polio', u'free', u'year'] [u'yanco', u'woman', u'face', u'murder', u'trial'] [u'ballan', u'crash', u'victim', u'question', u'treatment'] [u'date', u'tugun', u'bypass', u'work'] [u'kill', u'yemen', u'fight'] [u'accc', u'give', u'soni', u'merger'] [u'accus', u'refus', u'leav', u'cell', u'interview'] [u'consid', u'extra', u'ambul', u'eas', u'health', u'woe'] [u'afghan', u'confess', u'kill', u'journalist'] [u'help', u'bulldog', u'coach'] [u'agassi', u'battl', u'past', u'johansson', u'cincinnati'] [u'dump', u'dajka'] [u'albani', u'await', u'ring', u'road', u'fund'] [u'alcohol', u'chang', u'offer', u'littl', u'polic', u'relief'] [u'alic', u'airport', u'consid', u'intern', u'focus'] [u'black', u'persever', u'flat', u'backlin'] [u'alleg', u'islam', u'milit', u'veteran', u'go', u'trial'] [u'take', u'issu', u'boundari', u'chang', u'plan'] [u'ambassador', u'reject', u'invit', u'radic', u'cleric'] [u'anim', u'great', u'small', u'genom', u'map'] [u'dismiss', u'houllier', u'rumour'] [u'athen', u'budget', u'blow'] [u'athen', u'hotel', u'worker', u'threaten', u'strike'] [u'aust', u'china', u'trade', u'deal', u'hamper', u'local', u'market'] [u'australia', u'step', u'effort', u'combat', u'illeg'] [u'bangladesh', u'put', u'flood', u'cost'] [u'beach', u'volleybal', u'scar', u'dark', u'athen'] [u'lamb', u'loss', u'expect', u'northern', u'tableland'] [u'bogus', u'child', u'porn', u'email', u'spread', u'virus'] [u'bomb', u'kill', u'helicopt', u'shoot', u'iraq'] [u'bridg', u'crack', u'spark', u'speed', u'reduct'] [u'busi', u'group', u'question', u'governor', u'role'] [u'busi', u'group', u'urg', u'impass'] [u'servic', u'trial', u'start', u'month'] [u'cabin', u'odour', u'forc', u'plane', u'turn'] [u'crackdown', u'wild', u'dog'] [u'carr', u'wont', u'tent', u'embassi'] [u'cattl', u'breeder', u'tell', u'kowtow', u'ideal', u'imag'] [u'central', u'soccer', u'refere', u'head', u'athen'] [u'china', u'sweat', u'fit', u'inspir', u'captain'] [u'boost', u'nativ', u'veget'] [u'coach', u'sympathis', u'rohd'] [u'committe', u'consid', u'aluminium', u'smelter', u'plan'] [u'copper', u'disput', u'end'] [u'council', u'consid', u'minist', u'waterfront', u'plan'] [u'council', u'reject', u'region', u'review'] [u'council', u'ask', u'jam', u'hardi'] [u'council', u'share', u'road', u'fund'] [u'council', u'vote', u'develop', u'contribut', u'plan'] [u'dajka', u'appeal', u'postpon'] [u'dajka', u'arriv', u'sydney', u'appeal', u'hear'] [u'deal', u'reach', u'memori', u'wall'] [u'dinosaur', u'bird', u'equip'] [u'docker', u'sign', u'mcpharlin', u'polak'] [u'dog', u'begin', u'search', u'coach'] [u'offer', u'support', u'bushfir', u'coroni', u'inquiri'] [u'edward', u'hear', u'olymp', u'fate', u'week'] [u'elector', u'boundari', u'shake', u'affect', u'south', u'east'] [u'electr', u'project', u'boost', u'isi', u'canegrow'] [u'eriksson', u'shake'] [u'expect', u'high', u'ekka', u'open'] [u'farmer', u'push', u'safeti', u'regul'] [u'fatal', u'shoot', u'link', u'domest'] [u'fear', u'bug', u'bite', u'tourism'] [u'femal', u'tenni', u'player', u'threaten', u'athen', u'boycott'] [u'festiv', u'hop', u'countri', u'star'] [u'fijian', u'vice', u'presid', u'guilti', u'coup', u'court', u'hear'] [u'firefight', u'battl', u'blaze'] [u'fish', u'cell', u'transplant', u'save', u'speci'] [u'guantanamo', u'prison', u'refus', u'hear'] [u'kill', u'accid'] [u'fremantl', u'polic', u'centr', u'miss', u'cannabi'] [u'french', u'photojourn', u'pioneer', u'die'] [u'tip', u'bolster', u'goldfield', u'esper'] [u'fuel', u'price', u'tip', u'rise'] [u'girl', u'hospitalis', u'accid'] [u'girl', u'receiv', u'pool', u'accid'] [u'govern', u'urg', u'boost', u'pipelin', u'fund'] [u'govt', u'labor', u'clash', u'drug', u'scandal'] [u'govt', u'hint', u'end', u'deadlock'] [u'govt', u'know', u'child', u'protect', u'fail', u'say'] [u'govt', u'say', u'deal', u'extra', u'york', u'park'] [u'govt', u'tell', u'renew', u'hour', u'servic', u'fund'] [u'green', u'continu', u'fight', u'wheat', u'debt'] [u'grower', u'welcom', u'opposit', u'appl', u'import'] [u'guantanamo', u'abus', u'claim', u'prompt', u'inquiri', u'call'] [u'health', u'worker', u'organis', u'bateman', u'hospit', u'ralli'] [u'helicopt', u'crash', u'siberia'] [u'herbert', u'candid', u'unhappi', u'senat', u'critic'] [u'hewitt', u'arthur', u'master'] [u'hewitt', u'master'] [u'hick', u'catch', u'polit'] [u'hill', u'storm'] [u'hockeyroo', u'injuri'] [u'houllier', u'link', u'socceroo'] [u'hous', u'boom', u'boost', u'heritag', u'societi', u'profit'] [u'hous', u'suppli', u'balanc', u'shrapnel'] [u'hull', u'back', u'fast', u'track', u'nativ', u'titl'] [u'icac', u'urg', u'probe', u'properti', u'develop'] [u'indonesia', u'conduct', u'execut', u'year'] [u'injur', u'coria', u'pull', u'olymp'] [u'inquest', u'prove', u'electrician', u'death'] [u'promis', u'action', u'corrupt', u'claim'] [u'irish', u'outsid', u'deportivo', u'clash'] [u'israel', u'pull', u'northern', u'gaza', u'town'] [u'jail', u'special', u'care', u'inmat', u'number'] [u'jam', u'hardi', u'white', u'knuckl', u'grasp', u'info'] [u'jam', u'hardi', u'misus', u'liabil', u'estim'] [u'jayawarden', u'doubl', u'centuri', u'frustrat', u'south', u'africa'] [u'take', u'issu', u'guid', u'rat'] [u'plot', u'attack', u'report'] [u'jone', u'talk', u'nation', u'crunch', u'match'] [u'jordanian', u'hostag', u'free', u'iraq'] [u'juvenil', u'romp', u'prompt', u'prison', u'review'] [u'khartoum', u'disarm', u'darfur', u'militia', u'polic', u'chief'] [u'kindi', u'teacher', u'boost', u'fund', u'campaign'] [u'king', u'brother', u'face', u'hear', u'fraud', u'charg'] [u'labor', u'stanc', u'help', u'vote', u'carr'] [u'labor', u'welcom', u'shift', u'climat', u'chang'] [u'can', u'licenc', u'psychic'] [u'legal', u'challeng', u'kangaroo', u'harvest', u'expect'] [u'lizarazu', u'retir', u'intern', u'footbal'] [u'local', u'govt', u'group', u'seek', u'road', u'fund'] [u'fin', u'assault', u'airport', u'secur', u'guard'] [u'pluck', u'rag', u'flood', u'water'] [u'sue', u'trip', u'potato', u'scallop'] [u'face', u'carnarvon', u'murder', u'trial'] [u'fake', u'death', u'await', u'sentenc'] [u'market', u'focus', u'volatil', u'price'] [u'medal', u'servic', u'honour', u'local', u'polic'] [u'meet', u'focus', u'health', u'region'] [u'microsoft', u'launch', u'weblog', u'servic', u'japan'] [u'millar', u'ban', u'year', u'strip', u'titl'] [u'minist', u'hear', u'valuat', u'woe'] [u'attack', u'boundari', u'chang', u'plan'] [u'get', u'teeth', u'fluorid', u'debat'] [u'want', u'baan', u'speed', u'limit', u'reduc'] [u'jail', u'drug', u'trade'] [u'nation', u'park', u'increas', u'caus', u'problem'] [u'claim', u'hick', u'habib', u'abus'] [u'england', u'polic', u'chief', u'move', u'north'] [u'news', u'corp', u'drag', u'ord', u'lower'] [u'charg', u'fraud', u'case'] [u'rebel', u'raid', u'kashmir', u'secur', u'camp'] [u'kill', u'iraq', u'suicid', u'blast'] [u'korean', u'tension', u'prompt', u'downer', u'peac', u'mission'] [u'offer', u'say', u'wallac'] [u'plan', u'gold', u'coast', u'team'] [u'norman', u'hand', u'champ', u'start'] [u'govt', u'defend', u'hospit'] [u'govt', u'urg', u'apologis', u'woman', u'death'] [u'polic', u'investig', u'shoot', u'death', u'raid'] [u'expand', u'electron', u'medic', u'record', u'trial'] [u'program', u'offer', u'confidenti', u'file'] [u'pacif', u'adopt', u'aid', u'strategi'] [u'pair', u'hurt', u'highway', u'head', u'crash'] [u'pakistan', u'armi', u'helicopt', u'crash', u'kill', u'soldier'] [u'seek', u'histor', u'fifth', u'crown', u'lpga', u'event'] [u'group', u'speak', u'rent', u'concern'] [u'pension', u'interview', u'azaria', u'claim'] [u'pension', u'murder', u'inquiri', u'head', u'interst'] [u'philippin', u'pursu', u'banana', u'export', u'case'] [u'plan', u'boundari', u'chang', u'boost', u'alburi', u'elector'] [u'plan', u'charg', u'push', u'fare'] [u'plan', u'offer', u'farmer', u'pest', u'control'] [u'stand', u'firm', u'trade', u'deal'] [u'grind', u'latham'] [u'polic', u'reveal', u'bomb', u'contain', u'devic'] [u'polic', u'seek', u'identifi', u'crash', u'victim'] [u'polic', u'seiz', u'cocain'] [u'poll', u'show', u'labor', u'lead', u'rise'] [u'polli', u'preserv', u'pressur', u'puffer'] [u'prawn', u'fisher', u'suggest', u'compo', u'fish', u'cut', u'plan'] [u'prostitut', u'murder', u'trial', u'hear', u'polic', u'raid'] [u'protect', u'zone', u'reef', u'breach', u'drop'] [u'protest', u'ralli', u'foreign', u'intervent'] [u'public', u'demand', u'militari', u'train', u'answer'] [u'public', u'urg', u'help', u'tackl', u'slimi', u'mangrov'] [u'push', u'boost', u'home', u'tutor', u'allow'] [u'report', u'offer', u'hope', u'basin', u'roo'] [u'revamp', u'boost', u'aluminium', u'smelter', u'product'] [u'ryder', u'battl', u'heat'] [u'salami', u'alert', u'recal'] [u'scheme', u'indigen', u'seeker'] [u'second', u'accid', u'scene', u'level', u'cross', u'crash'] [u'senat', u'committe', u'find', u'littl', u'support', u'atsic'] [u'senat', u'report', u'slam', u'telstra'] [u'senat', u'pressur', u'chief', u'scientist'] [u'serial', u'arsonist', u'blame', u'sunshin', u'coast', u'fire'] [u'sharapova', u'cruis', u'easi', u'montreal', u'victori'] [u'shire', u'back', u'water', u'pipelin', u'benefit'] [u'singtel', u'profit', u'slash'] [u'soccer', u'chief', u'deni', u'court', u'french', u'coach'] [u'solar', u'uniqu', u'astronom'] [u'soldier', u'prison', u'abus'] [u'soldier', u'suicid', u'prevent'] [u'state', u'ward', u'face', u'choic'] [u'strike', u'defenc', u'worker', u'face', u'lockout'] [u'studi', u'focus', u'rural', u'women', u'issu'] [u'sunraysia', u'leagu', u'trial', u'salari', u'replac'] [u'swan', u'fine', u'criticis', u'umpir'] [u'sweet', u'victori', u'cane', u'farmer'] [u'talk', u'shed', u'littl', u'light', u'health', u'merger', u'loss'] [u'thailand', u'human', u'right', u'record'] [u'thiev', u'plunder', u'toxic', u'pepper'] [u'dead', u'melbourn', u'level', u'cross', u'accid'] [u'palestinian', u'kill', u'gaza', u'violenc'] [u'thrupp', u'look', u'gold', u'medal', u'win', u'perform'] [u'oper', u'chang', u'inquiri'] [u'tongan', u'engin', u'help', u'build', u'indigen', u'hous'] [u'train', u'crash', u'victim', u'chanc'] [u'tribut', u'flow', u'melbourn', u'perform'] [u'jail', u'perth', u'racist', u'attack'] [u'union', u'call', u'nurs', u'medicar', u'provid'] [u'union', u'consid', u'nationwid', u'jam', u'hardi'] [u'union', u'demand', u'rail', u'safeti', u'inquiri'] [u'union', u'urg', u'inquiri', u'practic'] [u'uni', u'rate', u'poor', u'attract', u'research', u'fund', u'guid'] [u'univers', u'swan', u'hill', u'campus'] [u'firm', u'claim', u'copi', u'cat'] [u'helicopt', u'shoot', u'iraq'] [u'protect', u'team', u'baghdad'] [u'vatican', u'look', u'soul', u'sport'] [u'virgin', u'blue', u'decis', u'tip', u'spark', u'price'] [u'face', u'critic', u'pipelin', u'deal'] [u'wanganeen', u'keen', u'return'] [u'warn', u'grow', u'tension', u'kosovo', u'ahead'] [u'websit', u'rat', u'environment', u'perform', u'car'] [u'websit', u'help', u'boost', u'indigen', u'health'] [u'west', u'skipper', u'senter', u'announc', u'retir'] [u'wildlif', u'sanctuari', u'cruelti', u'charg', u'drop'] [u'wit', u'identifi', u'accus', u'peopl', u'smuggler', u'court'] [u'worker', u'fear', u'contract', u'clean', u'away', u'job'] [u'world', u'price', u'dive'] [u'young', u'flock', u'viagra'] [u'zonta', u'replac', u'matta', u'toyota'] [u'accus', u'paedophil', u'refus', u'bail'] [u'adopt', u'limit', u'scrap'] [u'airbus', u'seal', u'virgin', u'atlant', u'deal'] [u'airlin', u'welcom', u'virgin', u'servic'] [u'alabama', u'execut', u'year'] [u'alic', u'mayor', u'attend', u'african', u'local', u'govt'] [u'ambul', u'worker', u'upbeat', u'talk'] [u'ancient', u'rock', u'carv', u'tasmania'] [u'arm', u'hold', u'trigger', u'polic', u'hunt'] [u'close', u'secur', u'deal'] [u'asylum', u'seeker', u'return', u'custodi'] [u'aust', u'market', u'lose', u'grind'] [u'aust', u'offer', u'help', u'flood', u'ravag', u'bangladesh'] [u'author', u'call', u'rockhampton', u'chemic', u'spill'] [u'share', u'surg', u'buyout', u'news'] [u'challeng', u'button', u'william'] [u'bellingen', u'join', u'oxley', u'seat'] [u'bell', u'toll', u'drought', u'victim'] [u'speak', u'council', u'worker', u'job'] [u'fin', u'harass', u'paramed'] [u'grain', u'crop', u'certainti'] [u'billion', u'lose', u'super', u'sit', u'idl'] [u'bloke', u'chauvin', u'dud', u'potenti', u'councillor'] [u'blood', u'test', u'extend', u'olymp', u'event'] [u'bodi', u'discov', u'raid', u'suspect', u'cult'] [u'breast', u'best', u'record', u'break', u'babi'] [u'british', u'terror', u'suspect', u'navi', u'plan', u'court'] [u'briton', u'nab', u'london', u'warrant'] [u'break', u'hill', u'host', u'health', u'merger', u'meet'] [u'bulldog', u'player', u'fin', u'polic', u'assault'] [u'busi', u'week', u'emerg', u'chopper'] [u'button', u'move', u'william'] [u'probe', u'cash', u'comment', u'claim'] [u'probe', u'wheat', u'debt', u'write'] [u'improv', u'farm', u'safeti'] [u'canadian', u'rocket', u'enter', u'privat', u'space', u'race'] [u'casino', u'employe', u'urg', u'accept', u'deal'] [u'chemic', u'think', u'fish', u'kill'] [u'chess', u'master', u'renounc', u'nation'] [u'climber', u'trap', u'avalanch', u'kyrgyzstan'] [u'coat', u'deni', u'vote', u'buy', u'alleg'] [u'committe', u'want', u'anti', u'terror', u'law', u'review'] [u'communiti', u'fear', u'downgrad', u'health', u'servic'] [u'communiti', u'back', u'campaign', u'save', u'seat'] [u'conduct', u'committe', u'meet', u'today'] [u'conjoin', u'twin', u'separ', u'york'] [u'convict', u'murder', u'refus', u'leav', u'high', u'court'] [u'coordin', u'consid', u'transport', u'option'] [u'coria', u'olymp', u'chanc'] [u'cosgrov', u'concern', u'committe', u'find'] [u'costello', u'warn', u'busi', u'offshor', u'escap'] [u'council', u'consid', u'land', u'auction'] [u'council', u'take', u'forget', u'trivial'] [u'court', u'fin', u'farmer', u'injur', u'bull'] [u'court', u'reinstat', u'killer', u'sentenc'] [u'court', u'rule', u'asbesto', u'payout', u'continu'] [u'cowboy', u'hope', u'distanc', u'bulldog'] [u'crude', u'shoot', u'higher'] [u'danish', u'armi', u'investig', u'confirm', u'iraqi', u'prison'] [u'deal', u'allow', u'year', u'reef', u'tourism', u'permit'] [u'defenc', u'forc', u'member', u'punish'] [u'delay', u'slow', u'steelwork', u'product'] [u'dragon', u'enjoy', u'half', u'time', u'lead'] [u'dragon', u'giant', u'leap', u'storm'] [u'elector', u'overhaul'] [u'english', u'tourist', u'tri', u'walk', u'help', u'coron'] [u'detect', u'drug', u'offenc', u'investig'] [u'expert', u'assess', u'dam'] [u'militari', u'arrest', u'smuggl', u'ecstasi'] [u'famili', u'children', u'servic', u'worker', u'extrem'] [u'famili', u'push', u'upgrad', u'level', u'cross'] [u'festiv', u'highlight', u'indigen', u'independ'] [u'fiji', u'vice', u'presid', u'jail', u'coup'] [u'firefight', u'alert', u'blaze', u'continu', u'burn'] [u'general', u'predict', u'long', u'haul', u'iraq'] [u'lebanes', u'driver', u'take', u'hostag', u'iraq'] [u'fund', u'seek', u'address', u'woe'] [u'golf', u'club', u'urg', u'fashion', u'dress', u'cod'] [u'govt', u'fast', u'track', u'plan', u'improv', u'level'] [u'govt', u'urg', u'remot', u'educ'] [u'govt', u'urg', u'block', u'moreton', u'fish', u'farm'] [u'govt', u'warn', u'land', u'develop', u'pitfal'] [u'govt', u'win', u'indefinit', u'detent', u'appeal'] [u'green', u'back', u'jone', u'zurich', u'exclus'] [u'green', u'group', u'worri', u'riverland', u'illeg'] [u'green', u'dutch', u'open', u'content'] [u'green', u'offer', u'tour', u'west', u'spot'] [u'gregan', u'focus', u'ahead', u'black', u'clash'] [u'group', u'disput', u'council', u'rat'] [u'group', u'tackl', u'crime', u'clean'] [u'health', u'chief', u'address', u'overcrowd', u'concern'] [u'hiroshima', u'mayor', u'critic', u'egocentr'] [u'drug', u'stop', u'transmiss'] [u'hotlin', u'aim', u'stop', u'alcohol', u'woe'] [u'human', u'right', u'group', u'slam', u'iraqi', u'insurg', u'attack'] [u'hundr', u'kill', u'iraq', u'fight', u'militari'] [u'iaaf', u'decis', u'edward', u'send', u'panel'] [u'india', u'pakistan', u'talk', u'kashmir', u'glacier'] [u'indonesian', u'command', u'acquit', u'timor'] [u'injur', u'zaheer', u'india', u'trophi', u'squad'] [u'iraqi', u'cleric', u'treat', u'heart', u'troubl'] [u'israel', u'open', u'gaza', u'egypt', u'border'] [u'jam', u'hardi', u'find', u'shortfal', u'unsatisfactori'] [u'open', u'sure', u'jest'] [u'jone', u'laud', u'flash', u'halv'] [u'kerri', u'criticis', u'slow', u'respons', u'crisi'] [u'kewel', u'prepar', u'return', u'home', u'play'] [u'labor', u'reveal', u'plan'] [u'lawyer', u'say', u'sourc', u'back', u'azaria', u'claim'] [u'lend', u'leas', u'win', u'takeov', u'battl'] [u'lenton', u'stay', u'relax', u'ahead', u'athen', u'assault'] [u'lib', u'threaten', u'withdraw', u'support', u'butler'] [u'lifestyl', u'chang', u'offer', u'hope', u'alzheim', u'fight'] [u'loch', u'sport', u'get', u'ambul', u'servic'] [u'locust', u'plagu', u'hit', u'west', u'africa'] [u'appear', u'court', u'sydney', u'doubl', u'shoot'] [u'charg', u'cabramatta', u'shoot'] [u'jail', u'accessori', u'murder'] [u'jail', u'doubl', u'stab'] [u'jail', u'fake', u'death'] [u'question', u'arson', u'attack'] [u'surviv', u'wateri', u'crash'] [u'mass', u'grave', u'muslim', u'eastern', u'bosnia'] [u'mauresmo', u'montreal', u'quarter'] [u'mayor', u'want', u'croc', u'festiv', u'fund', u'resum'] [u'medic', u'wast', u'problem', u'spread'] [u'millar', u'accus', u'admit', u'traffic'] [u'miner', u'begin', u'gold', u'drill', u'program'] [u'miss', u'tourist', u'parent', u'plead', u'help'] [u'molik', u'move', u'sweden'] [u'tare', u'grafton', u'servic'] [u'wit', u'identifi', u'peopl', u'smuggler', u'court'] [u'pour', u'cold', u'water', u'desalin', u'plant'] [u'turn', u'heat', u'bathhous', u'handl'] [u'gambier', u'bank', u'food', u'handl', u'plan'] [u'murali', u'recaptur', u'record', u'rudolph', u'dig'] [u'murali', u'take', u'world', u'wicket', u'record'] [u'muslim', u'tomb', u'desecr', u'franc'] [u'nation', u'australia', u'bank', u'see', u'mull', u'irish', u'sale'] [u'nat', u'rais', u'forestri', u'group', u'concern'] [u'newcastl', u'council', u'ban', u'jam', u'hardi', u'build'] [u'heatwav', u'athen', u'game'] [u'ambul', u'decid', u'work', u'ban'] [u'sailor', u'lead', u'etchel'] [u'dead', u'hospit', u'melvill', u'accid'] [u'oppn', u'ask', u'pass', u'atsic', u'legisl'] [u'oprah', u'plan', u'year', u'chat'] [u'pacif', u'island', u'warn', u'nauru', u'risk'] [u'palestinian', u'milit', u'break', u'news', u'confer'] [u'palestinian', u'polic', u'clear', u'carri', u'gun'] [u'pampl', u'stay', u'calm', u'storm'] [u'perth', u'murder', u'rate', u'jump'] [u'pie', u'upset', u'docker'] [u'sens', u'pacif', u'spirit'] [u'consid', u'labor', u'amend'] [u'poison', u'compo', u'payout', u'welcom'] [u'polic', u'charg', u'arson', u'attack'] [u'polic', u'fear', u'miss'] [u'polic', u'investig', u'link', u'vandal', u'assault'] [u'polic', u'teen', u'crash', u'victim'] [u'polic', u'probe', u'arson', u'attack', u'labor', u'offic'] [u'polic', u'question', u'white', u'supremicist', u'leader'] [u'polic', u'seiz', u'illeg', u'firework'] [u'port', u'stephen', u'maintain', u'local', u'area', u'command'] [u'postman', u'keep', u'undeliv', u'letter'] [u'power', u'station', u'decis', u'hold'] [u'probe', u'launch', u'tractor', u'death'] [u'produc', u'warn', u'reject', u'assur', u'scheme'] [u'psychiatr', u'patient', u'second', u'escap'] [u'public', u'ask', u'help', u'murder', u'victim'] [u'public', u'urg', u'readi', u'horror', u'season'] [u'ralf', u'skip', u'hungarian', u'grand', u'prix'] [u'rapist', u'jail', u'videotap', u'crime'] [u'remain', u'shed', u'light', u'disappear'] [u'riverland', u'join', u'nation', u'committe'] [u'rockhampton', u'chemic', u'spill', u'clean'] [u'sadr', u'look', u'resum', u'najaf', u'ceas'] [u'fishermen', u'metr', u'great', u'white'] [u'miguel', u'buy', u'half', u'berri'] [u'scallop', u'ranch', u'propon', u'defend', u'project'] [u'school', u'cleaner', u'step', u'contract', u'protest'] [u'school', u'spirit', u'shin', u'vandal', u'attack'] [u'senior', u'policeman', u'arrest', u'charg'] [u'offend', u'push', u'definit', u'term'] [u'sharapova', u'oust', u'myskina', u'mauresmo'] [u'short', u'circuit', u'blame', u'paraguay', u'supermarket', u'blaze'] [u'skill', u'shortag', u'worri', u'busi'] [u'resort', u'get', u'fund', u'help', u'hand'] [u'sober', u'centr', u'reopen', u'door'] [u'soni', u'complet', u'merger'] [u'speed', u'factor', u'wirrabara', u'tragedi', u'polic'] [u'spirit', u'rover', u'fail', u'lake', u'remnant', u'mar'] [u'springbok', u'rooki', u'nation', u'squad'] [u'springborg', u'confid', u'power', u'debacl', u'undo', u'govt'] [u'springsteen', u'enter', u'polit', u'debat'] [u'staff', u'threaten', u'diamond', u'heist'] [u'stanhop', u'defend', u'drug', u'strategi'] [u'stanhop', u'defend', u'govt', u'wake', u'damn', u'report'] [u'steel', u'compani', u'fin', u'safeti', u'breach'] [u'storm', u'consid', u'william', u'appeal'] [u'stori', u'boy', u'struggl', u'take', u'melbourn'] [u'strong', u'demand', u'hervey', u'land'] [u'studi', u'look', u'balanc', u'fuel', u'reduct', u'habitat'] [u'studi', u'consid', u'altern', u'waterfront', u'plan'] [u'stuppl', u'grab', u'lpga', u'lead'] [u'sudan', u'start', u'disarm', u'militia'] [u'survey', u'highlight', u'care', u'invest'] [u'sydney', u'aborigin', u'tent', u'embassi', u'dismantl'] [u'tarrant', u'magpi'] [u'premier', u'back', u'governor'] [u'tenix', u'worker', u'decid', u'offer'] [u'tenni', u'coach', u'jail', u'crime'] [u'thorp', u'readi', u'year'] [u'face', u'court', u'drug', u'crop'] [u'tierney', u'quit', u'senat', u'post'] [u'tobacco', u'grower', u'killer', u'sentenc', u'year', u'jail'] [u'tokelau', u'move', u'self', u'determin'] [u'saudi', u'milit', u'arrest'] [u'track', u'work', u'affect', u'train', u'time'] [u'train', u'delay', u'spark', u'compo', u'offer'] [u'tree', u'surgeon', u'prepar', u'oper'] [u'troubl', u'predict', u'emerg', u'ward'] [u'trout', u'boost', u'lake', u'barrington'] [u'turner', u'unhappi', u'plan', u'boundari', u'chang'] [u'tutor', u'deni', u'inappropri', u'relationship', u'inmat'] [u'launch', u'fish', u'farm', u'project'] [u'open', u'guantanamo', u'tribun', u'journalist'] [u'nistelrooy', u'month'] [u'detect', u'deni', u'african', u'sexual', u'assault', u'claim'] [u'resort', u'staff', u'fear', u'job'] [u'wagga', u'jobless', u'rate', u'fall'] [u'wall', u'street', u'price'] [u'webck', u'warrior', u'clash'] [u'white', u'hous', u'disown', u'anti', u'kerri', u'record'] [u'whitfield', u'look'] [u'player', u'advis', u'avoid', u'athen', u'boycott'] [u'yemeni', u'troop', u'close', u'rebel', u'leader'] [u'ghraib', u'whistleblow', u'testifi'] [u'qaeda', u'link', u'group', u'threaten', u'itali'] [u'american', u'behead', u'iraq', u'video'] [u'anti', u'terror', u'law', u'need', u'greater', u'safeguard', u'labor'] [u'anti', u'tobacco', u'group', u'welcom', u'vend', u'machin'] [u'aussi', u'athlet', u'olymp', u'spirit'] [u'aussi', u'swimmer', u'struggl', u'ill'] [u'aust', u'extend', u'fiji', u'cloth', u'industri', u'deal'] [u'australia', u'boast', u'second', u'largest', u'olymp', u'team'] [u'aust', u'help', u'solv', u'pacif', u'transport', u'problem'] [u'babi', u'snatch', u'mother'] [u'blue', u'face', u'tough', u'bomber'] [u'boomer', u'bounc', u'angola'] [u'bronco', u'break', u'auckland', u'duck'] [u'bush', u'renam', u'terror'] [u'button', u'defiant', u'despit', u'ultimatum'] [u'canadian', u'author', u'battl', u'dead', u'bacteria'] [u'staff', u'strike'] [u'coat', u'slam', u'ungrat', u'dawn'] [u'cold', u'weather', u'fail', u'deter', u'volunt', u'sleep'] [u'communiti', u'consult', u'help', u'indigen'] [u'council', u'withhold', u'rescu', u'chopper', u'fund'] [u'crew', u'monitor', u'bushfir', u'south', u'east'] [u'curios', u'expect', u'steal', u'jewel', u'auction'] [u'dawn', u'invit', u'olymp', u'game'] [u'neri', u'oust', u'porto', u'coach'] [u'dimarco', u'captur', u'intern', u'lead', u'pampl', u'second'] [u'don', u'suffer', u'case', u'blue'] [u'drought', u'continu'] [u'dutch', u'politician', u'consid', u'lick'] [u'guerrouj', u'beat', u'powel', u'defi', u'green'] [u'english', u'shellfish', u'digger', u'tide'] [u'timor', u'urg', u'listen', u'veteran', u'demand'] [u'aceh', u'separatist', u'rebel', u'kill'] [u'forum', u'chairman', u'question', u'pacif', u'plan'] [u'govt', u'urg', u'asylum', u'seeker', u'compass'] [u'green', u'grab', u'dutch', u'open', u'lead'] [u'greenland', u'win', u'trade', u'radar', u'deal'] [u'hawk', u'break', u'drought'] [u'hewitt', u'agassi', u'advanc', u'cincinnati', u'semi'] [u'hobart', u'nurs', u'struggl', u'emerg', u'demand', u'staff'] [u'indigen', u'festiv', u'address', u'creation'] [u'insur', u'warn', u'busi', u'energi', u'crisi'] [u'iraqi', u'author', u'order', u'jazeera', u'offic', u'shut'] [u'iraqi', u'criticis', u'najaf', u'death'] [u'ireland', u'plato', u'atlanti', u'claim', u'geograph'] [u'jail', u'term', u'welcom', u'fijian', u'coup', u'trial'] [u'kerri', u'aim', u'troop', u'iraq'] [u'kestrel', u'phoenix', u'post', u'win'] [u'knight', u'final', u'calcul'] [u'labor', u'polici', u'step', u'backward', u'howard', u'say'] [u'mauresmo', u'fight', u'lone', u'battl', u'russian'] [u'molik', u'fire', u'stockholm', u'semi'] [u'naval', u'personnel', u'gather', u'reunion'] [u'seek', u'curfew', u'young', u'driver'] [u'plan', u'limit', u'child', u'wit', u'trauma'] [u'price', u'yoyo', u'yuko', u'woe'] [u'opal', u'outshin', u'korea'] [u'oppn', u'call', u'tent', u'embassi', u'deal', u'detail'] [u'oppn', u'support', u'govt', u'trade', u'deal', u'chang'] [u'darfur', u'rebel', u'surrend', u'report'] [u'pacif', u'group', u'endors', u'futur', u'plan'] [u'pacif', u'leader', u'agre', u'nauru', u'assist', u'packag'] [u'pakistan', u'recal', u'afridi', u'champion', u'trophi'] [u'pampl', u'set', u'pace', u'intern'] [u'pelican', u'mess', u'land', u'council', u'sticki', u'situat'] [u'penrith', u'slaughter', u'man'] [u'pittman', u'doubt', u'athen'] [u'pittman', u'prognosi', u'worsen'] [u'pressur', u'mount', u'premier', u'interven'] [u'consid', u'child', u'abduct', u'amber', u'alert'] [u'face', u'rape', u'tortur', u'charg'] [u'roo', u'surg', u'huge', u'comeback'] [u'sadr', u'militia', u'surrend', u'najaf', u'iraqi', u'polic'] [u'saint', u'hold', u'fight', u'crow'] [u'plan', u'tough', u'learner', u'driver', u'law'] [u'kill', u'baghdad', u'clash'] [u'sudan', u'approv', u'plan', u'eas', u'darfur', u'unrest'] [u'swan', u'readi', u'roo'] [u'sydney', u'mayor', u'blame', u'hyster', u'media', u'racist'] [u'oppn', u'hold', u'butler', u'stoush'] [u'charg', u'mona', u'vale', u'road', u'rage', u'clash'] [u'nation', u'clash', u'lock', u'half', u'time'] [u'turkish', u'hostag', u'iraq', u'threaten', u'death'] [u'kill', u'pakistan', u'explos'] [u'palestinian', u'minist', u'tender', u'resign'] [u'ban', u'smile', u'passport', u'crackdown'] [u'investig', u'blame', u'khartoum', u'darfur', u'kill'] [u'union', u'welcom', u'labor', u'plan'] [u'behead', u'video', u'hoax', u'report'] [u'blow', u'inform', u'cover', u'terror', u'alert'] [u'funk', u'star', u'rick', u'jam', u'die'] [u'market', u'plung', u'weak', u'figur'] [u'replac', u'veteran', u'explor', u'submarin'] [u'tongeren', u'front', u'court', u'conspiraci', u'charg'] [u'vieira', u'make', u'mistak', u'join', u'real', u'wenger'] [u'approv', u'controversi', u'ludlow', u'forest'] [u'wada', u'insist', u'complet', u'code', u'fifa'] [u'wallabi', u'nation', u'hop', u'aliv'] [u'school', u'need', u'urgent', u'repair', u'admit', u'minist'] [u'watchdog', u'investig', u'women', u'prison'] [u'webb', u'touch', u'ohio'] [u'white', u'supremacist', u'leader', u'charg', u'perth', u'attack'] [u'zarqawi', u'group', u'threaten', u'kill', u'iraq', u'websit'] [u'abandon', u'boat', u'discov', u'year', u'later'] [u'ghraib', u'abus', u'hear', u'suspend'] [u'worker', u'afghanistan', u'slam'] [u'allawi', u'order', u'fighter', u'najaf'] [u'black', u'umaga', u'springbok', u'test'] [u'qaeda', u'seek', u'launch', u'attack', u'bush', u'aid'] [u'argentina', u'hop', u'fade', u'gaudio', u'injur'] [u'organis', u'sudanes', u'peac', u'talk'] [u'aust', u'pharmaceut', u'chief', u'back'] [u'australian', u'personnel', u'escort', u'iraqi', u'olympian'] [u'bacon', u'award', u'posthum', u'doctor'] [u'see', u'drop', u'heroin', u'substitut'] [u'boomer', u'good', u'brazil'] [u'bulldog', u'claim', u'spot'] [u'canberra', u'unlik', u'meet', u'landfil', u'rubbish', u'target'] [u'cat', u'claw', u'tiger'] [u'crew', u'continu', u'battl', u'blaze'] [u'darwin', u'art', u'profil', u'rise', u'nation'] [u'death', u'toll', u'bangladesh', u'flood', u'reach'] [u'democrat', u'wont', u'labor', u'trade', u'amend'] [u'devast', u'pittman', u'accept', u'dream'] [u'donald', u'duck', u'get', u'star', u'hollywood', u'walk', u'fame'] [u'eagl', u'lead', u'lion', u'half', u'time'] [u'eagl', u'tame', u'lion'] [u'edward', u'lift', u'west', u'indi'] [u'nino', u'pacif', u'month', u'report'] [u'famili', u'parti', u'support', u'marriag'] [u'destroy', u'eriksson', u'secretari'] [u'probe', u'hoax', u'video', u'iraq', u'behead'] [u'fear', u'increas', u'kidnap', u'babi'] [u'firefight', u'battl', u'brisban', u'blaze'] [u'ger', u'stall', u'scottish', u'open'] [u'girl', u'charg', u'fals', u'abduct', u'claim'] [u'govt', u'agre', u'audit', u'drive', u'instructor'] [u'govt', u'prepar', u'locust', u'plagu'] [u'green', u'seat', u'netherland'] [u'green', u'condemn', u'health', u'minist', u'abort', u'view'] [u'hardi', u'face', u'legal', u'action'] [u'health', u'minist', u'concern', u'escap'] [u'hewitt', u'play', u'agassi', u'cincinnati', u'final'] [u'hodg', u'guid', u'leicestershir'] [u'homemad', u'kill', u'soldier', u'afghanistan'] [u'hong', u'kong', u'highest', u'abort', u'rate', u'develop'] [u'howard', u'dismiss', u'public', u'servant', u'critic'] [u'suspend', u'bulgarian', u'offici'] [u'iran', u'north', u'korea', u'advanc', u'nuclear', u'arm'] [u'iraq', u'offer', u'amnesti', u'najaf', u'clash', u'continu'] [u'irish', u'athlet', u'fail', u'drug', u'test'] [u'israel', u'distribut', u'radiat', u'pill', u'resid'] [u'japan', u'sink', u'china', u'heat', u'asia', u'final'] [u'kersten', u'deni', u'drink', u'spike', u'alleg'] [u'labor', u'hail', u'public', u'servant', u'attack', u'govt'] [u'labor', u'plan', u'million', u'dollar', u'fin', u'amend'] [u'lake', u'crescent', u'reopen', u'angler'] [u'latham', u'leav', u'butler', u'issu', u'tasmania'] [u'latham', u'specul', u'olymp', u'elect'] [u'leed', u'win', u'start', u'promot'] [u'liverpool', u'accept', u'tottenham', u'murphi'] [u'mauresmo', u'gun', u'second', u'montreal', u'titl'] [u'mexico', u'find', u'want', u'bar'] [u'mickelberg', u'seek', u'compens'] [u'milit', u'abduct', u'iranian', u'diplomat', u'iraq', u'report'] [u'molik', u'power', u'stockholm', u'decid'] [u'moneghetti', u'run', u'citi', u'surf'] [u'mount', u'polic', u'tell', u'avoid', u'ekka', u'crowd'] [u'olymp', u'hop', u'pittman'] [u'gangland', u'link', u'babi', u'snatch', u'polic'] [u'polic', u'commission', u'push', u'regular', u'driver'] [u'nuclear', u'inspector', u'return', u'iraq'] [u'opal', u'overpow', u'greec'] [u'opposit', u'unsur', u'china', u'benefit'] [u'owen', u'fear', u'eriksson', u'exit'] [u'pacif', u'leader', u'agre', u'tackl', u'hivaid'] [u'pampl', u'grab', u'share', u'lead'] [u'parent', u'warn', u'internet', u'game', u'centr'] [u'philippin', u'journalist', u'critic', u'condit'] [u'pittman', u'accept', u'dream'] [u'pittman', u'hop', u'miracl', u'diagnosi'] [u'win', u'pacif', u'vote'] [u'polic', u'investig', u'human', u'attack', u'croc'] [u'polic', u'releas', u'footag', u'steal', u'babi'] [u'polic', u'seek', u'driver'] [u'power', u'destroy', u'demon'] [u'protea', u'beat', u'lanka'] [u'queanbeyan', u'council', u'dump', u'school', u'child', u'care'] [u'report', u'find', u'canberra', u'dump', u'conflict'] [u'research', u'centr', u'target', u'rural', u'road', u'toll'] [u'secur', u'fear', u'threaten', u'nation'] [u'shark', u'ruffl', u'rooster'] [u'soldier', u'kill', u'colombian', u'presid', u'mark'] [u'south', u'africa', u'apartheid', u'parti', u'merg'] [u'studi', u'aim', u'reduc', u'fish', u'catch'] [u'swan', u'mourn', u'death', u'head', u'trainer'] [u'sydney', u'citi', u'council', u'recognis', u'tent', u'embassi'] [u'opposit', u'threaten', u'withdraw', u'support'] [u'tbird', u'deni', u'spot', u'shock', u'loss'] [u'telemarket', u'compani', u'forc', u'refund', u'voucher'] [u'arrest', u'cocain', u'seiz'] [u'tiger', u'thrash', u'beleagu', u'bunni'] [u'rower', u'rescu', u'atlant', u'storm', u'wreck', u'boat'] [u'offer', u'mediat', u'iraq', u'ceasefir'] [u'realiti', u'tackl', u'death', u'penalti'] [u'victoria', u'move', u'offend', u'sentenc', u'concern'] [u'wallabi', u'inspir', u'aussi', u'olympian'] [u'senat', u'discharg', u'perth', u'hospit'] [u'watchdog', u'blast', u'kuwait', u'ban', u'fahrenheit'] [u'spend', u'million', u'school', u'repair'] [u'weather', u'hamper', u'rescuer', u'kyrgyz', u'mountain'] [u'webb', u'slip', u'ohio', u'leaderboard'] [u'women', u'olymp', u'tenni', u'boycott', u'avert'] [u'woodsid', u'set', u'deadlin', u'timor', u'deal'] [u'wood', u'singh', u'dali', u'draw'] [u'young', u'record', u'posit', u'drug', u'test', u'report'] [u'injur', u'colombian', u'bomb', u'explos'] [u'highway', u'upgrad', u'west', u'tamar'] [u'face', u'fund', u'challeng', u'chairman'] [u'aborigin', u'artefact', u'return', u'communiti'] [u'target', u'illeg', u'drag', u'race'] [u'agassi', u'beat', u'hewitt', u'captur', u'cincinnati', u'titl'] [u'agent', u'expect', u'littl', u'relief', u'region', u'rental'] [u'annan', u'call', u'effort', u'empow', u'indigen'] [u'arab', u'leagu', u'call', u'extend', u'sudan', u'deadlin'] [u'arsenal', u'draw', u'blood', u'unit'] [u'asylum', u'seeker', u'support', u'consid'] [u'aussi', u'gymnast', u'rule', u'game'] [u'australian', u'prais', u'olymp', u'pool'] [u'australian', u'wheat', u'help', u'flood', u'stricken', u'bangladesh'] [u'australia', u'post', u'employe', u'rise'] [u'bank', u'centr', u'staff', u'half', u'strike'] [u'bendigo', u'bank', u'announc', u'profit', u'increas'] [u'drive', u'forc', u'golfer', u'gold', u'coast'] [u'drive', u'forc', u'golfer'] [u'board', u'game', u'trivial', u'matter', u'falconio', u'hear'] [u'boomer', u'complet', u'olymp', u'prepar', u'style'] [u'brisban', u'welcom', u'quin'] [u'bushfir', u'affect', u'farmer', u'disast'] [u'butler', u'resign', u'tasmanian', u'governor'] [u'button', u'meet', u'boss'] [u'autonomi', u'aborigin', u'communiti'] [u'relianc', u'interst', u'locum'] [u'canberra', u'bushfir', u'inquest', u'face', u'delay'] [u'cape', u'byron', u'marin', u'park', u'plan', u'creat', u'fish'] [u'carr', u'consid', u'night', u'curfew', u'young', u'driver'] [u'celtic', u'win', u'start'] [u'chalabi', u'reject', u'alleg', u'counterfeit'] [u'chalabi', u'face', u'outrag', u'counterfeit', u'charg'] [u'chalabi', u'vow', u'fight', u'iraqi', u'charg'] [u'child', u'pornographi', u'charg', u'dismiss'] [u'chimp', u'mogo', u'home'] [u'coalit', u'tell', u'dodder', u'daiquiri', u'diplomat'] [u'communiti', u'bank', u'board', u'hop', u'novemb', u'open'] [u'communiti', u'input', u'seek', u'water', u'storag', u'plan'] [u'communiti', u'split', u'land', u'corridor'] [u'communiti', u'train', u'address', u'island', u'ambul'] [u'confer', u'look', u'prevent', u'health', u'care'] [u'coron', u'criticis', u'jail', u'cell', u'design', u'effort'] [u'council', u'aborigin', u'discuss', u'land', u'right', u'issu'] [u'council', u'back', u'mildura', u'master', u'game'] [u'council', u'defend', u'art', u'stanc', u'amid', u'censorship', u'fear'] [u'council', u'propos', u'communiti', u'art', u'studio'] [u'council', u'unhappi', u'plan', u'strategi', u'respons'] [u'cowboy', u'hope', u'despit', u'weekend', u'loss'] [u'crocodil', u'terri', u'recov', u'youth', u'attack'] [u'crow', u'unfaz', u'favourit'] [u'curfew', u'impos', u'sadr', u'citi'] [u'dajka', u'appeal', u'hear', u'tonight'] [u'deputi', u'consid', u'park', u'fund', u'request'] [u'doctor', u'deni', u'shortag', u'hurt', u'patient', u'care'] [u'doctor', u'criticis', u'propos', u'labour', u'ward', u'closur'] [u'doctor', u'fear', u'health', u'shake', u'hurt', u'servic'] [u'drought', u'rise', u'dri'] [u'drought', u'leav', u'blundston', u'high'] [u'energex', u'storm', u'updat', u'broadcast'] [u'eric', u'danger', u'miss', u'olymp'] [u'eurocorp', u'control', u'afghanistan', u'deploy'] [u'expert', u'dismiss', u'hemp', u'product', u'hop'] [u'export', u'counterfeit', u'cattl'] [u'famili', u'parti', u'launch', u'nation', u'campaign'] [u'famili', u'murder', u'victim', u'throw', u'court', u'hear'] [u'famili', u'sue', u'prematur', u'babi'] [u'fatal', u'raid', u'chase', u'justifi', u'opposit'] [u'respons', u'flow', u'wine', u'grape', u'survey'] [u'fifth', u'heavi', u'fight', u'rock', u'najaf'] [u'firefight', u'brace', u'windi', u'weather'] [u'firefight', u'face', u'test', u'hunt', u'suspect'] [u'flood', u'forc', u'thousand', u'africa', u'shanti'] [u'footpath', u'rider', u'face', u'fin'] [u'foreign', u'doctor', u'shun', u'south', u'adelaid'] [u'defenc', u'chief', u'accept', u'iraq'] [u'forum', u'rais', u'need', u'health', u'boost'] [u'foul', u'play', u'suspect', u'thai', u'orang', u'utan', u'scandal'] [u'kill', u'japanes', u'nuclear', u'accid'] [u'french', u'coach', u'hop', u'convinc', u'zidan', u'stay'] [u'friend', u'famili', u'turn', u'zag', u'funer'] [u'amend', u'drug', u'compani', u'fin'] [u'amend', u'introduc', u'senat'] [u'fundrais', u'shave', u'bring', u'record', u'fund', u'hospit'] [u'geraldton', u'welcom', u'port', u'upgrad', u'fund'] [u'german', u'lose', u'equestrian', u'hope'] [u'gippsland', u'council', u'act', u'casino', u'rumour'] [u'girl', u'die'] [u'glimmer', u'hope', u'injur', u'bronco', u'rooki'] [u'goondiwindi', u'bowl', u'club', u'bowl'] [u'goosen', u'price', u'championship'] [u'govt', u'accus', u'human', u'right', u'breach'] [u'govt', u'boost', u'cancer', u'fund'] [u'govt', u'dismiss', u'christma', u'casino', u'conspiraci'] [u'govt', u'urg', u'rush', u'youth', u'drive', u'curfew'] [u'greek', u'basebal', u'record', u'posit', u'drug', u'test'] [u'green', u'falter', u'hand', u'lynn', u'dutch', u'open'] [u'hellfight', u'die', u'age'] [u'hepburn', u'sale', u'prompt', u'investig', u'call'] [u'hotlin', u'aim', u'stamp', u'grog'] [u'hous', u'fire', u'author', u'busi', u'weekend'] [u'huge', u'ralli', u'boost', u'chavez', u'referendum', u'hop'] [u'hundr', u'bateman', u'hospit'] [u'hunter', u'pig', u'releas'] [u'indonesian', u'court', u'reject', u'wiranto', u'poll', u'case'] [u'indonesian', u'fish', u'boat', u'seiz', u'timor'] [u'initi', u'trial', u'show', u'sar', u'vaccin', u'effect'] [u'inquiri', u'begin', u'labor', u'canberra', u'headquart'] [u'insect', u'pose', u'grave', u'threat', u'chines', u'grassland'] [u'happi', u'athen', u'prepar'] [u'iranian', u'korean', u'hostag', u'free'] [u'iraq', u'reinstat', u'death', u'penalti'] [u'irish', u'runner', u'admit', u'take'] [u'isra', u'missil', u'gaza', u'refuge', u'camp', u'wit'] [u'jam', u'hardi', u'lawyer', u'play', u'surg', u'claim'] [u'jetstar', u'failur', u'leav', u'strand'] [u'hous', u'loan', u'drop'] [u'jone', u'jump', u'victori', u'germani'] [u'karratha', u'clinic', u'hop', u'eas', u'emerg', u'ward', u'woe'] [u'kenya', u'odumb', u'champion', u'trophi', u'squad'] [u'kidnap', u'babi', u'melbourn'] [u'labor', u'outlin', u'amend'] [u'labor', u'prepar', u'free', u'trade', u'amend'] [u'labor', u'senat', u'label', u'sport', u'minist', u'disgrac'] [u'labor', u'encourag', u'fearless', u'public', u'servant'] [u'lazi', u'lion', u'target', u'say', u'matthew'] [u'leader', u'agre', u'increas', u'return', u'tuna', u'fish'] [u'learner', u'driver', u'clock'] [u'lennon', u'tight', u'lip', u'butler', u'controversi'] [u'lewi', u'buy', u'time', u'bankruptci', u'proceed'] [u'local', u'govt', u'call', u'region', u'power', u'improv'] [u'lucki', u'escap', u'patron', u'drive', u'club'] [u'mallon', u'snare', u'ohio', u'lpga', u'titl'] [u'die', u'truck', u'raid'] [u'mauresmo', u'regain', u'montreal', u'titl'] [u'media', u'watchdog', u'criticis', u'iraq', u'jazeera'] [u'menem', u'face', u'argentin', u'accus'] [u'pluck', u'strand', u'yacht'] [u'men', u'club', u'drive', u'shoot'] [u'face', u'court', u'cocain', u'haul'] [u'mine', u'compani', u'contribut', u'miner', u'death'] [u'molik', u'back'] [u'molik', u'doubl', u'sweden'] [u'commerci', u'fisher', u'obey', u'law'] [u'attack', u'arrog', u'child', u'support', u'agenc'] [u'demand', u'specul'] [u'suggest', u'tribut', u'correspond'] [u'discuss', u'disabl', u'servic', u'fund', u'chang'] [u'music', u'project', u'launch', u'garma', u'festiv'] [u'nato', u'soldier', u'intern', u'forc'] [u'nat', u'attack', u'hospit', u'plan'] [u'normal', u'secur', u'ahead', u'nation', u'test'] [u'word', u'butler', u'lennon', u'meet'] [u'charg', u'player'] [u'educ', u'review', u'move', u'final', u'stage'] [u'opal', u'athen', u'warm', u'event'] [u'opec', u'rais', u'quota', u'presid'] [u'opposit', u'call', u'uniform', u'polic'] [u'pair', u'sauna', u'contest', u'sweat'] [u'pampl', u'claim', u'maiden'] [u'parent', u'vote', u'compens', u'home'] [u'parmalat', u'deutsch', u'bank'] [u'passer', u'prevent', u'thiev', u'clean', u'laundromat'] [u'philippin', u'seek', u'patch', u'tie'] [u'pittman', u'embrac', u'second', u'chanc'] [u'plain', u'english', u'vote', u'guid', u'difficult'] [u'plan', u'afoot', u'creat', u'ratepay', u'group'] [u'stand', u'iraq', u'action', u'despit', u'latest', u'critic'] [u'polic', u'hunt', u'newsag', u'robberi'] [u'polic', u'charg', u'derbi', u'drug', u'raid'] [u'polic', u'locat', u'bogong', u'hiker'] [u'polic', u'seek', u'believ', u'involv', u'shoot'] [u'polic', u'warn', u'drug', u'make', u'increas', u'region'] [u'politician', u'pass', u'free', u'trade', u'deal', u'dairi'] [u'pool', u'staff', u'escap', u'disciplin', u'free', u'entri'] [u'postal', u'worker', u'consid', u'strike', u'disput'] [u'properti', u'market', u'cool', u'treasur', u'say'] [u'proud', u'umaga', u'rejoin', u'black'] [u'public', u'urg', u'wide', u'berth', u'migrat', u'whale'] [u'quintuplet', u'bear', u'brisban'] [u'radic', u'iraqi', u'cleric', u'call', u'truce', u'reject'] [u'radic', u'iraqi', u'cleric', u'vow', u'fight', u'najaf', u'occup'] [u'raider', u'stand', u'smith'] [u'raider', u'winger', u'arrest', u'king', u'cross'] [u'rain', u'fail', u'break', u'england', u'drought'] [u'rainfal', u'spark', u'flinder', u'rang', u'floral', u'bloom'] [u'read', u'good', u'book', u'mobil', u'phone', u'late'] [u'reef', u'grow', u'despit', u'alga', u'threat'] [u'rescu', u'spark', u'polic', u'weather', u'warn'] [u'reserv', u'bank', u'say', u'rate', u'rise'] [u'think', u'urg', u'shuttl', u'stallion'] [u'review', u'probe', u'safeti'] [u'riley', u'call', u'support', u'asthma', u'foundat'] [u'riverina', u'firm', u'tourism', u'honour'] [u'robinson', u'stay', u'sale'] [u'sadr', u'milit', u'seek', u'hostag', u'prison', u'swap', u'video'] [u'salem', u'chalabi', u'say', u'charg', u'undermin', u'saddam', u'trial'] [u'shepparton', u'trial', u'singl', u'gender', u'swim'] [u'shire', u'welcom', u'school', u'fund'] [u'kill', u'wound', u'iraq', u'suicid', u'bomb'] [u'face', u'tribun'] [u'face', u'tribun'] [u'slater', u'struggl', u'groin', u'injuri'] [u'small', u'grower', u'blame', u'oliv', u'levi', u'failur'] [u'small', u'radioact', u'leak', u'investig'] [u'smith', u'kalli', u'help', u'protea', u'secur', u'draw'] [u'snow', u'close', u'highway'] [u'soccer', u'offici', u'seek', u'advic', u'parent', u'plan'] [u'kilda', u'polic', u'question', u'alleg', u'kidnapp'] [u'stokel', u'win', u'wakefield', u'park'] [u'steal', u'babi', u'reunit', u'famili'] [u'strike', u'consensus', u'concern', u'mine', u'union'] [u'sudan', u'expect', u'meet', u'demand'] [u'suicid', u'highlight', u'mental', u'health', u'fund', u'crisi'] [u'suppress', u'materi', u'falconio', u'trial', u'prompt'] [u'surf', u'lifesav', u'consid', u'high', u'tech'] [u'sushi', u'shop', u'worker', u'guilti', u'manslaught'] [u'swan', u'grappl', u'trainer', u'death'] [u'talk', u'tribun', u'concern', u'timor'] [u'tamworth', u'council', u'lose', u'elect', u'cost', u'appeal'] [u'premier', u'meet', u'butler'] [u'road', u'open', u'snowfal'] [u'teen', u'jail', u'muswellbrook', u'murder'] [u'face', u'court', u'cocain', u'haul'] [u'toddler', u'kill', u'truck', u'smash'] [u'cruis', u'thriller', u'score', u'offic'] [u'diplomat', u'australia', u'high', u'commission'] [u'townsvill', u'accid', u'claim', u'motorcyclist', u'life'] [u'wilcannia', u'road', u'crash'] [u'custodi', u'abduct', u'babi'] [u'union', u'welcom', u'rule', u'mine', u'disast'] [u'upgrad', u'track', u'tennant', u'creek', u'rail', u'station'] [u'figur', u'pull', u'local', u'sharemarket'] [u'lib', u'uniform', u'road', u'rule'] [u'vieira', u'tell', u'mind'] [u'wage', u'rise', u'tip', u'pressur', u'small', u'busi'] [u'wolv', u'beat', u'return', u'flight'] [u'woman', u'bodi', u'hawthorn', u'flat'] [u'wood', u'match', u'norman', u'record'] [u'worksaf', u'continu', u'illeg', u'firework', u'hunt'] [u'agreement', u'sweet', u'acfa'] [u'ming', u'carri', u'chines', u'flag'] [u'yarwun', u'prompt', u'safeti', u'warn'] [u'yunupingu', u'resign', u'northern', u'land', u'council'] [u'zola', u'bid', u'belat', u'farewel', u'ador', u'chelsea', u'fan'] [u'accus', u'murder', u'say', u'victim', u'incorrect', u'identifi'] [u'aircraft', u'engin', u'continu', u'compens'] [u'albani', u'port', u'seek', u'bomb', u'compo'] [u'alonso', u'seek', u'victori', u'return', u'hungari'] [u'plan', u'pork', u'import', u'probe'] [u'alston', u'defend', u'austereo', u'posit'] [u'ansel', u'clean', u'profit'] [u'student', u'screen', u'tuberculosi', u'case'] [u'arthur', u'get', u'ditch', u'olymp', u'berth'] [u'asbesto', u'victim', u'applaud', u'jam', u'hardi', u'ban'] [u'astronom', u'shed', u'light', u'sight'] [u'asylum', u'seeker', u'polici', u'trigger', u'voter', u'protest'] [u'athen', u'mayor', u'eas', u'tension', u'australia'] [u'athen', u'organis', u'deni', u'hand', u'free', u'ticket'] [u'aust', u'oblig', u'help', u'nauru', u'labor', u'say'] [u'australian', u'agricultur', u'profit', u'climb', u'despit'] [u'backpack', u'bodi', u'sydney', u'harbour'] [u'seed', u'polish', u'open'] [u'bali', u'bomber', u'seek', u'charg', u'dismiss'] [u'barossa', u'forum', u'address', u'develop', u'direct'] [u'basra', u'tens', u'troop', u'militia', u'clash'] [u'beatti', u'end', u'schooli', u'agreement'] [u'beef', u'produc', u'tell', u'work', u'hard', u'market'] [u'beij', u'hotel', u'school', u'turn', u'away', u'aid', u'orphan'] [u'bird', u'jump', u'speci', u'barrier', u'scientist'] [u'blatter', u'back', u'china', u'world', u'host'] [u'blue', u'plan', u'princ', u'park'] [u'surviv', u'truck'] [u'briton', u'william', u'eye', u'bout', u'klitschko'] [u'busi', u'expect', u'continu', u'strong', u'sale'] [u'butler', u'receiv', u'handshak'] [u'cabinet', u'dissent', u'slow', u'palestinian', u'polic', u'plan'] [u'call', u'increas', u'great', u'alpin', u'boost'] [u'crash', u'cut', u'bendigo', u'power'] [u'carr', u'credit', u'brother', u'field', u'tough'] [u'casino', u'worker', u'consid', u'offer'] [u'chinchilla', u'welcom', u'quintuplet'] [u'club', u'drive', u'accus', u'refus', u'bail'] [u'coast', u'firebug', u'enjoy', u'attent', u'expert'] [u'commonwealth', u'bank', u'staff', u'plan', u'stoppag'] [u'compens', u'unlik', u'phone', u'outag'] [u'condit', u'firefight'] [u'cotton', u'accept', u'river', u'crop'] [u'council', u'fight', u'earli', u'train', u'time'] [u'council', u'fear', u'revenu', u'loss', u'util', u'control'] [u'council', u'reform', u'walga'] [u'council', u'welcom', u'qanta', u'flight', u'decis'] [u'coupl', u'remand', u'babi', u'abduct'] [u'coupl', u'face', u'court', u'kidnap'] [u'court', u'tell', u'falconio', u'murder', u'suspect', u'vehicl'] [u'croc', u'look', u'home', u'town', u'support'] [u'cross', u'reward', u'effort', u'hawk'] [u'dajka', u'lose', u'olymp', u'appeal'] [u'damag', u'minimis', u'melbourn', u'tyre', u'centr'] [u'darfur', u'kill', u'genocid'] [u'bruijn', u'say', u'free', u'record'] [u'democrat', u'campaign', u'industri', u'relat'] [u'dept', u'deni', u'pressur', u'council', u'develop'] [u'disabl', u'servic', u'cut', u'spark', u'newcastl', u'protest'] [u'announc', u'profit', u'boost'] [u'doctor', u'group', u'question', u'hour', u'health', u'care'] [u'dog', u'cross', u'rise', u'star', u'run'] [u'driver', u'warn', u'extra', u'care', u'need', u'cane'] [u'spring', u'tip', u'eastern', u'state'] [u'dunedoo', u'divid', u'council', u'merger'] [u'engin', u'troubl', u'forc', u'jetstar', u'turnaround'] [u'eurobodalla', u'water', u'shortag', u'prompt', u'warn'] [u'europ', u'elit', u'seek', u'champion', u'leagu', u'rich'] [u'extens', u'grant', u'northern', u'railyard', u'develop'] [u'wife', u'bite', u'wallet'] [u'falconio', u'hear', u'finish', u'earli'] [u'falconio', u'trial', u'hear', u'evid'] [u'farmer', u'await', u'wetland', u'survey', u'result'] [u'farmer', u'send', u'pack', u'amid', u'udder', u'scandal'] [u'farmer', u'warn', u'prepar', u'spell'] [u'farm', u'group', u'protest', u'health', u'servic', u'chang'] [u'fatal', u'branxton', u'crash', u'prompt', u'wit', u'appeal'] [u'feder', u'close', u'tanker', u'explos'] [u'feder', u'road', u'fund', u'worri', u'council'] [u'govt', u'urg', u'chang', u'propos', u'anti', u'terror', u'law'] [u'feral', u'oliv', u'plan', u'slug', u'grower'] [u'firearm', u'cach', u'inner', u'melbourn'] [u'firefight', u'search', u'factori', u'explos', u'victim'] [u'fluorid', u'recommend', u'north', u'coast', u'water'] [u'mayor', u'signal', u'independ', u'campaign'] [u'priest', u'face', u'court', u'indec', u'deal'] [u'gippsland', u'hous', u'price', u'rocket'] [u'gold', u'coast', u'beenleigh', u'bikeway', u'open'] [u'govt', u'consid', u'appeal', u'union', u'work', u'site'] [u'govt', u'defend', u'water', u'manag', u'record'] [u'govt', u'urg', u'releas', u'process', u'review'] [u'govt', u'urg', u'support', u'domest', u'violenc', u'shelter'] [u'graft', u'rampant', u'malaysian', u'polic'] [u'grave', u'desecr', u'jewish', u'cemeteri', u'franc'] [u'great', u'train', u'robber', u'bigg', u'seek', u'clemenc'] [u'health', u'group', u'seek', u'syring', u'safeti', u'educ'] [u'hewson', u'doubt', u'australian', u'understand'] [u'hickey', u'inquest', u'find', u'bring', u'forward'] [u'hick', u'defenc', u'team', u'like', u'gain', u'time'] [u'hoogi', u'shun', u'limelight', u'athen'] [u'hospit', u'psychiatr', u'staff', u'seek', u'safeti', u'review'] [u'howard', u'latham', u'discuss', u'amend'] [u'huge', u'crowd', u'expect', u'field', u'day'] [u'hunter', u'crime', u'rate', u'fall'] [u'icpa', u'back', u'bigger', u'distanc', u'educ', u'allow'] [u'indian', u'rescuer', u'reach', u'trap', u'tunnel'] [u'industri', u'watchdog', u'glimps', u'rural', u'woe'] [u'predict', u'increas', u'drug', u'cheat'] [u'iraq', u'hostag', u'taker', u'demand', u'ransom', u'jordanian'] [u'jam', u'hardi', u'profit', u'jump', u'amid', u'warn'] [u'japanes', u'nuclear', u'plant', u'admit', u'check'] [u'jone', u'want', u'marshal', u'charg'] [u'juri', u'find', u'magistr', u'guilti', u'offenc'] [u'kerr', u'face', u'tribun'] [u'khouri', u'hand', u'memoir', u'evid'] [u'kindergarten', u'communiti', u'protest'] [u'king', u'kong', u'star', u'wray', u'die'] [u'koopu', u'southern', u'enter', u'guilti', u'plea'] [u'labor', u'play', u'marriag', u'split'] [u'labor', u'pan', u'alston', u'austereo'] [u'labor', u'reject', u'trobe', u'fund', u'fear'] [u'labor', u'chang', u'soft'] [u'lashko', u'splash', u'athen'] [u'privat', u'school', u'princip', u'tell', u'labor'] [u'lebanes', u'hostag', u'free', u'iraq'] [u'lion', u'king', u'roar', u'helpmann', u'award'] [u'locust', u'swarm', u'africa'] [u'lose', u'lead', u'long', u'fundrais', u'walk'] [u'satisfact', u'rat', u'disabl', u'taxi', u'servic'] [u'lucki', u'escap', u'crop', u'spray', u'pilot'] [u'jail', u'sushi', u'shop', u'murder'] [u'lie', u'cover', u'murder', u'court', u'hear'] [u'market', u'dip', u'despit', u'profit', u'report'] [u'mass', u'grave', u'expect', u'reveal', u'muslim', u'bodi'] [u'matfield', u'add', u'south', u'african', u'squad'] [u'mauritania', u'hold', u'soldier', u'coup', u'attempt'] [u'mayor', u'reject', u'mine', u'concern'] [u'media', u'scrum', u'visit', u'athlet', u'villag'] [u'mole', u'creek', u'log', u'illeg'] [u'morley', u'deni', u'england'] [u'mother', u'daughter', u'buri'] [u'defend', u'govt', u'rural', u'record'] [u'fight', u'disabl', u'servic', u'cut'] [u'question', u'indigen', u'tutor', u'fund'] [u'mutu', u'stay', u'chelsea', u'abramovich', u'talk'] [u'mysteri', u'deepen', u'owen', u'futur'] [u'nat', u'issu'] [u'season', u'accommod', u'game'] [u'bendigo', u'bank', u'track'] [u'law', u'allow', u'aust', u'polic', u'work'] [u'go', u'anti', u'dope', u'deal', u'say', u'blatter'] [u'govt', u'accus', u'chang', u'train', u'time', u'definit'] [u'nuclear', u'check', u'requir', u'plant', u'shutdown'] [u'seek', u'support', u'timor', u'crime', u'tribun'] [u'chief', u'predict', u'litr', u'petrol'] [u'hit', u'high', u'iraq', u'ceas', u'product'] [u'oklahoma', u'bomb', u'conspir', u'get', u'life'] [u'oliv', u'grower', u'levi', u'reaction', u'bring', u'prais'] [u'oppn', u'call', u'hepburn', u'probe'] [u'opposit', u'deni', u'influenc', u'butler', u'decis'] [u'owen', u'quit', u'liverpool', u'real', u'report'] [u'pedestrian', u'kill', u'accid'] [u'philippin', u'open', u'fresh', u'iraq', u'deploy'] [u'pilbara', u'base', u'group', u'examin', u'kalgoorli', u'initi'] [u'pilot', u'unharm', u'darwin', u'plane', u'crash'] [u'pittman', u'itali', u'treatment'] [u'quiz', u'turnbul', u'iraq', u'critic'] [u'remain', u'tight', u'lip', u'elect', u'date'] [u'poland', u'transfer', u'najaf', u'control'] [u'polic', u'wilcannia', u'crash', u'victim'] [u'polic', u'probe', u'alleg', u'aborigin', u'heritag', u'breach'] [u'prison', u'entitl', u'clean', u'needl', u'green'] [u'protest', u'prompt', u'tail', u'review'] [u'publish', u'find', u'khouri', u'evid', u'unclear'] [u'putin', u'urg', u'journalist', u'safeti'] [u'question', u'septemb', u'trial'] [u'radiotherapi', u'unit', u'prioriti', u'coff', u'hospit'] [u'region', u'emerg', u'clinic', u'eas', u'hospit'] [u'rescu', u'hiker', u'prais', u'emerg', u'crew'] [u'research', u'project', u'target', u'bushfir', u'control'] [u'growth', u'take'] [u'rooster', u'target', u'minor', u'premiership'] [u'rural', u'fight', u'toxic', u'dump', u'plan'] [u'russia', u'warn', u'star', u'war'] [u'sadr', u'vow', u'fight', u'najaf'] [u'corpor', u'pay', u'bash', u'court', u'hear'] [u'jail', u'plan', u'bash', u'pregnant', u'woman'] [u'scholarship', u'recipi', u'hop', u'help', u'communiti'] [u'scutt', u'bulli', u'claim', u'prompt', u'inquiri'] [u'seafood', u'industri', u'seek', u'scienc', u'base', u'plan'] [u'secur', u'threat', u'close', u'lanka', u'embassi'] [u'sept', u'retrial', u'begin', u'germani'] [u'shopahol', u'get', u'jail', u'sentenc', u'bank', u'robberi'] [u'south', u'africa', u'recal', u'gibb', u'second', u'test'] [u'spotlight', u'fall', u'larapinta', u'trail', u'manag'] [u'spur', u'pull', u'murphi', u'deal'] [u'studi', u'examin', u'region', u'rail', u'chang', u'impact'] [u'studi', u'highlight', u'school', u'speed', u'danger'] [u'super', u'council', u'plan', u'worri', u'noosa', u'council'] [u'suspend', u'member', u'step', u'offici', u'post'] [u'swan', u'train'] [u'address', u'north', u'west', u'health', u'need'] [u'terrorist', u'blast', u'istanbul', u'hotel'] [u'test', u'throw', u'drug', u'case'] [u'thousand', u'homeless', u'cape', u'town', u'storm'] [u'injur', u'factori', u'explos'] [u'thuringowa', u'bushfir', u'test', u'local', u'crew'] [u'tourism', u'bodi', u'welcom', u'hobart', u'adelaid', u'flight'] [u'treasur', u'warn', u'global', u'rat', u'movement'] [u'tribun', u'ban', u'bateman', u'brown'] [u'tuna', u'farm', u'trial', u'get'] [u'critic', u'condit', u'sydney', u'crash'] [u'injur', u'factori', u'blast'] [u'uniform', u'polic', u'preced', u'ellison'] [u'union', u'seek', u'industri', u'manslaught', u'charg'] [u'unit', u'solskjaer', u'miss', u'entir', u'season'] [u'offer', u'fourth', u'indigen', u'scholarship'] [u'workshop', u'target', u'indigen', u'buyer'] [u'helicopt', u'target', u'najaf', u'fighter'] [u'judg', u'uphold', u'media', u'subpoena', u'leak', u'case'] [u'privat', u'space', u'ship', u'blow', u'lift'] [u'secur', u'chief', u'defend', u'terror', u'alert'] [u'sidestep', u'jazeera', u'closur'] [u'slam', u'timor', u'appeal', u'decis'] [u'help', u'pacif', u'tackl', u'money', u'launder'] [u'offic', u'suspend', u'crime', u'probe'] [u'wallabi', u'announc', u'squad', u'springbok', u'test'] [u'wallac', u'coach', u'tiger'] [u'wall', u'street', u'sit', u'tight', u'soar'] [u'wesfarm', u'post', u'record', u'profit'] [u'western', u'market', u'dinosaur', u'region'] [u'william', u'begin', u'appeal', u'process'] [u'william', u'consid', u'option'] [u'william', u'consid', u'option'] [u'woman', u'jail', u'unit', u'blaze'] [u'work', u'death', u'spark', u'review'] [u'yacht', u'race', u'organis', u'hope', u'class', u'event'] [u'seek', u'cost', u'gungahlin', u'protest', u'group'] [u'adult', u'receiv', u'meningococc', u'vaccin'] [u'agreement', u'boost', u'hospit', u'traine', u'doctor'] [u'airlin', u'price', u'war', u'coast', u'airport'] [u'black', u'dump', u'spencer'] [u'alleg', u'abductor', u'brisban'] [u'attack', u'govt', u'age', u'care'] [u'hand', u'hardi', u'donat'] [u'wait', u'legal', u'advic', u'amend'] [u'amara', u'clash', u'kill'] [u'anderton', u'join', u'birmingham'] [u'leader', u'offer', u'silenc', u'bail'] [u'aust', u'give', u'fight', u'pacif', u'aid', u'danger'] [u'aust', u'chang', u'china', u'econom', u'status'] [u'australian', u'injur', u'austrian', u'crash'] [u'author', u'swoop', u'retir', u'home', u'blaze'] [u'babysitt', u'challeng', u'leski', u'inquest'] [u'back', u'button', u'fight'] [u'basslink', u'stand', u'tree', u'plan'] [u'beatti', u'claim', u'sens', u'unnecessari', u'power', u'debat'] [u'beazley', u'hint', u'defenc', u'cutback'] [u'bird', u'outbreak', u'prompt', u'african', u'ostrich', u'cull'] [u'block', u'chimney', u'blame', u'dead', u'paraguay'] [u'bosnian', u'grave', u'reveal', u'bodi'] [u'british', u'lifer', u'win', u'lotto'] [u'burdekin', u'council', u'staff', u'protest'] [u'busi', u'group', u'outlin', u'illawarra', u'plan'] [u'busi', u'group', u'want', u'butler', u'payout'] [u'buyer', u'urg', u'hand', u'illeg', u'gun'] [u'bruce', u'highway', u'fund'] [u'rais', u'asbesto', u'knowledg', u'hous'] [u'capriati', u'pull', u'olymp'] [u'bomb', u'kill', u'isra', u'checkpoint'] [u'cattl', u'firm', u'beef', u'profit'] [u'channel', u'drag', u'alcohol', u'breach', u'trial'] [u'charlestown', u'charg', u'murder'] [u'charlton', u'snap', u'murphi', u'jeffer'] [u'children', u'aplenti', u'involv', u'croc', u'festiv'] [u'coach', u'name', u'wolv', u'state', u'leagu', u'assault'] [u'commodor', u'falcon', u'safest', u'car'] [u'commonwealth', u'post', u'profit', u'increas'] [u'communiti', u'health', u'servic', u'plan'] [u'commut', u'face', u'year', u'rail', u'problem'] [u'confer', u'focus', u'water', u'restrict'] [u'consum', u'confid', u'hit', u'year', u'high'] [u'council', u'continu', u'plan'] [u'council', u'defend', u'event', u'fund'] [u'council', u'map', u'plan', u'defenc', u'site'] [u'council', u'hold', u'merger', u'talk', u'week'] [u'court', u'hear', u'blood', u'road', u'match', u'falconio'] [u'court', u'overturn', u'decis', u'perth', u'doctor'] [u'court', u'hand', u'land', u'clear', u'fin'] [u'cowboy', u'dismiss', u'rabbitoh'] [u'crane', u'recoveri', u'spark', u'road', u'closur'] [u'crown', u'alleg', u'confess', u'murder'] [u'dajka', u'disciplinari', u'hear', u'adjourn'] [u'democrat', u'immigr', u'chang'] [u'detaine', u'hold', u'indefinit', u'lose', u'appeal'] [u'diamond', u'target', u'gold', u'traumat', u'year'] [u'disabl', u'reform', u'prove', u'cost'] [u'help', u'brew', u'better', u'coffe'] [u'doubt', u'cast', u'review'] [u'downer', u'optimist', u'fresh', u'timor', u'talk'] [u'dream', u'team', u'down', u'turk', u'final', u'olymp', u'warm'] [u'drug', u'trade', u'threaten', u'afghan', u'democraci', u'rumsfeld'] [u'dun', u'remain', u'waratah'] [u'dupa', u'defiant', u'face', u'second', u'murder', u'convict'] [u'pull', u'boost', u'baddeley', u'hop'] [u'focus', u'whistl', u'strait', u'tiger'] [u'emerg', u'chief', u'unhappi', u'wait', u'find'] [u'engin', u'share', u'environment', u'research', u'award'] [u'england', u'releas', u'batti', u'test', u'squad'] [u'exercis', u'singaroo', u'begin', u'darwin'] [u'extrem', u'sport', u'team', u'converg', u'kalbarri'] [u'factori', u'evacu', u'ammonia', u'leak'] [u'famili', u'field', u'bendigo', u'candid'] [u'farmer', u'urg', u'appli', u'drought', u'assist'] [u'feder', u'back', u'seek', u'ocean', u'termin', u'plan'] [u'feder', u'fund', u'suicid', u'prevent', u'scheme'] [u'rais', u'rat', u'percent'] [u'ferri', u'fare', u'rise', u'fuel', u'debat'] [u'fund', u'flow', u'hour', u'health', u'servic'] [u'gerrard', u'boost', u'red', u'champion', u'leagu', u'hop'] [u'govt', u'pressur', u'releas', u'kelli', u'reef', u'detail'] [u'govt', u'reveal', u'role', u'butler', u'staff'] [u'govt', u'matur', u'opportun'] [u'grow', u'pain', u'children', u'think'] [u'habib', u'call', u'home'] [u'hackett', u'say', u'phelp', u'disappoint'] [u'help', u'seek', u'save', u'jail'] [u'henri', u'ask', u'jone', u'balanc'] [u'hewitt', u'come', u'home', u'adelaid'] [u'highway', u'crash', u'leav', u'dead'] [u'hinterland', u'blaze', u'burn'] [u'hospit', u'back', u'nurs', u'train'] [u'icac', u'probe', u'build', u'industri', u'corrupt', u'claim'] [u'announc', u'zimbabw', u'investig'] [u'impact', u'manag', u'chang', u'unfold'] [u'independ', u'liber', u'ring', u'beazley', u'say'] [u'injuri', u'forc'] [u'innov', u'target', u'shearer', u'baaad', u'back'] [u'inquiri', u'fail', u'sourc', u'hutton', u'leak'] [u'isra', u'missil', u'hit', u'gaza', u'refuge', u'camp'] [u'jam', u'hardi', u'chairman', u'resign'] [u'jetstar', u'flight', u'delay', u'launceston'] [u'jetstar', u'report', u'plane', u'fault'] [u'job', u'growth', u'rise'] [u'kenya', u'face', u'hunger', u'crisi'] [u'kenyan', u'boxer', u'betray', u'countri', u'rogg'] [u'kenyan', u'fail', u'athen', u'drug', u'test'] [u'kerr', u'clear', u'head', u'butt', u'charg'] [u'kerr', u'clear', u'headbutt', u'charg'] [u'labor', u'idea', u'olymp', u'elect'] [u'lack', u'competit', u'blame', u'petrol', u'price', u'hike'] [u'lack', u'govern', u'fund', u'killer', u'highway'] [u'latham', u'find', u'butler', u'payout', u'sicken'] [u'lenton', u'battl', u'nerv', u'game', u'draw', u'closer'] [u'jump', u'turnbul', u'statement'] [u'local', u'hospit', u'traine', u'doctor'] [u'son', u'accus', u'murder', u'cannib'] [u'die', u'gove', u'power', u'station', u'accid'] [u'electrocut', u'goulburn', u'valley'] [u'jail', u'kill', u'babi'] [u'matern', u'bed', u'retain', u'public', u'outrag'] [u'mayor', u'reflect', u'land', u'rezon', u'import'] [u'mayor', u'welcom', u'altern', u'wind', u'farm', u'sit'] [u'mental', u'string', u'featur', u'ekka', u'peopl'] [u'minist', u'launch', u'plastic', u'famin'] [u'minist', u'upbeat', u'address', u'doctor', u'shortag'] [u'fruit', u'tree', u'destroy', u'follow', u'citrus'] [u'fund', u'seek', u'address', u'tradespeopl', u'shortag'] [u'road', u'fund', u'seek', u'avoid', u'flood'] [u'put', u'brake', u'slower', u'car'] [u'murali', u'face', u'shoulder', u'surgeri'] [u'murdoch', u'worri', u'phone', u'trace', u'court', u'tell'] [u'music', u'festiv', u'eureka', u'celebr'] [u'give', u'chief', u'welcom'] [u'nat', u'criticis', u'doctor', u'rural', u'attitud', u'problem'] [u'nepal', u'launch', u'offens', u'rebel'] [u'canberra', u'chief', u'hop', u'restor', u'faith'] [u'newcastl', u'council', u'impos', u'jam', u'hardi'] [u'news', u'corp', u'bank', u'provid', u'market', u'boost'] [u'news', u'good', u'pack', u'firm', u'unsecur', u'creditor'] [u'norther', u'comeback', u'track'] [u'soldier', u'kill', u'driver', u'train', u'accid'] [u'market', u'continu', u'irrat', u'exuber'] [u'olyroo', u'matilda', u'kick'] [u'oppn', u'back', u'youth', u'bail', u'facil'] [u'oppn', u'call', u'bounti'] [u'opposit', u'claim', u'train', u'turmoil'] [u'opposit', u'vow', u'reinstat', u'darwin', u'festiv', u'parad'] [u'owen', u'miss', u'liverpool', u'game'] [u'page', u'health', u'servic', u'protest', u'march'] [u'park', u'author', u'defend', u'reef', u'rezon'] [u'perth', u'abduct', u'brazen'] [u'petrol', u'bomb', u'throw', u'ireland', u'clash'] [u'philippin', u'withdraw', u'iraq', u'deploy', u'offer'] [u'photograph', u'sue', u'aguilera', u'alleg', u'assault'] [u'pitcairn', u'island', u'urg', u'hand', u'gun'] [u'plan', u'continu', u'swan', u'reach', u'health', u'centr'] [u'plea', u'intensifi', u'bushfir', u'probe'] [u'brush', u'asid', u'turnbul', u'question'] [u'polic', u'assault', u'chase'] [u'polic', u'associ', u'welcom', u'plan'] [u'polic', u'crack', u'school', u'speed'] [u'polic', u'probe', u'fatal', u'hous'] [u'polic', u'search', u'driver'] [u'polic', u'duvet', u'murder', u'mysteri'] [u'polic', u'pepper', u'spray', u'menac', u'bull'] [u'pound', u'say', u'except', u'fifa'] [u'properti', u'boom', u'bring', u'bendigo', u'price', u'line'] [u'protest', u'allawi', u'parti', u'offic'] [u'protest', u'hold', u'death', u'olymp', u'construct'] [u'psychiatrist', u'test', u'accus', u'zeta', u'jone', u'stalker'] [u'push', u'highway', u'fund'] [u'push', u'boost', u'drink', u'spike', u'educ'] [u'radio', u'theft', u'doesnt', u'compromis', u'game', u'secur'] [u'ratepay', u'group', u'begin', u'oper'] [u'region', u'recruit', u'problemat'] [u'research', u'board', u'encourag', u'scienc', u'fund', u'bid'] [u'resid', u'lobbi', u'speed', u'camera'] [u'injuri', u'forc', u'burn', u'retir'] [u'right', u'activist', u'khouri'] [u'robot', u'attempt', u'hubbl', u'repair'] [u'roo', u'lodg', u'appeal', u'brown', u'suspens'] [u'row', u'crew', u'tribut', u'bali', u'victim'] [u'royal', u'show', u'introduc', u'drug', u'test'] [u'rural', u'support', u'farmbi', u'fund', u'plan'] [u'sadr', u'tell', u'fighter', u'carri', u'martyr'] [u'safin', u'open', u'account', u'polish', u'open'] [u'scientist', u'win', u'prize', u'enlighten', u'politician'] [u'second', u'jordanian', u'kidnap', u'iraq', u'offici'] [u'septemb', u'retrial', u'doubt'] [u'serial', u'killer', u'lose', u'murder', u'appeal'] [u'sharehold', u'urg', u'donat', u'jam', u'hardi'] [u'shire', u'seek', u'govt', u'talk', u'wake', u'atsic', u'demis'] [u'solomon', u'prison', u'disturb', u'prompt', u'review'] [u'southern', u'iraq', u'pipelin', u'closur', u'cut', u'export'] [u'stockham', u'gear', u'paralymp'] [u'stosur', u'serena', u'pull'] [u'student', u'sue', u'govt', u'school', u'bash'] [u'studi', u'find', u'airlin', u'servic', u'viabl'] [u'sudan', u'accus', u'ongo', u'atroc'] [u'sudan', u'accus', u'west', u'eye', u'plunder'] [u'support', u'seabird', u'habitat', u'restor', u'plan'] [u'suspici', u'person', u'declin', u'evid'] [u'swim', u'australia', u'versus'] [u'sydney', u'ferri', u'lobbi', u'fare', u'increas'] [u'talk', u'continu', u'miner', u'camp', u'plan'] [u'forest', u'job', u'save'] [u'tasmanian', u'score', u'eureka', u'award'] [u'thorp', u'urg', u'drug', u'test'] [u'thorp', u'urg', u'competit', u'drug', u'test'] [u'dead', u'injur', u'china', u'quak'] [u'tokyo', u'heatwav', u'equal', u'record'] [u'toowoomba', u'crew', u'track', u'silver', u'spike'] [u'tornado', u'kill', u'atlant', u'coast', u'holidaymak'] [u'tougher', u'control', u'tree', u'plantat'] [u'traine', u'doctor', u'boost', u'hunter', u'hospit'] [u'tweed', u'research', u'acid', u'sulphat', u'soil'] [u'children', u'brisban', u'abduct'] [u'tyson', u'conqueror', u'line', u'bout'] [u'scientist', u'human', u'clone', u'licenc'] [u'upbeat', u'wood', u'experi', u'deja'] [u'second', u'aircraft', u'carrier', u'asia', u'pacif'] [u'militari', u'prepar', u'finish', u'moqtada', u'fight'] [u'sailor', u'face', u'rape', u'charg', u'darwin'] [u'test', u'gear'] [u'victorian', u'festiv', u'commemor', u'eureka', u'stockad'] [u'memori', u'crack', u'spark', u'council', u'fear'] [u'webck', u'play', u'grand', u'final', u'hype'] [u'welfar', u'group', u'fund', u'anti', u'wast', u'plan', u'effort'] [u'wigan', u'smith', u'retir', u'season'] [u'wild', u'dog', u'ostrich', u'death'] [u'wilkinson', u'relish', u'return', u'club', u'duti'] [u'windi', u'omit', u'best', u'jacob', u'champion', u'trophi'] [u'wit', u'fail', u'build', u'corrupt'] [u'worker', u'boost'] [u'million', u'project', u'time', u'govt'] [u'accus', u'kidnapp', u'refus', u'bail'] [u'personnel', u'right', u'concern', u'anthrax'] [u'push', u'darwin', u'match'] [u'ainsli', u'prim', u'success', u'gold'] [u'alic', u'sydney', u'flight', u'cut', u'gobsmack', u'tourist', u'oper'] [u'alien', u'discoveri', u'excit', u'russian', u'scientist'] [u'alleg', u'brisban', u'abductor', u'mental'] [u'reveal', u'privat', u'school', u'fund', u'plan'] [u'alston', u'defend', u'austereo', u'appoint'] [u'call', u'extra', u'health', u'fund', u'aborigin'] [u'want', u'indigen', u'health', u'fund', u'boost'] [u'ambros', u'hop', u'luck', u'symmon', u'plain'] [u'ambros', u'hop', u'luck', u'tasmania'] [u'ambul', u'servic', u'get', u'radio', u'boost'] [u'ambul', u'union', u'draw', u'battl', u'line'] [u'anderson', u'urg', u'margaret', u'report'] [u'art', u'educ', u'review'] [u'asean', u'australia', u'trade', u'pact', u'deal'] [u'audit', u'highlight', u'health', u'servic', u'loss'] [u'aussi', u'athlet', u'miss', u'open', u'ceremoni'] [u'award', u'honour', u'benalla', u'pair', u'braveri'] [u'bail', u'stalk', u'charg'] [u'edward', u'olymp'] [u'bathhous', u'staff', u'highlight', u'loss'] [u'beach', u'rescu', u'effort', u'bring', u'award'] [u'beatl', u'grammi', u'hammer'] [u'beazley', u'return', u'defenc', u'failur', u'hill'] [u'threaten', u'industri', u'unrest', u'council', u'job'] [u'blackal', u'resid', u'money', u'limit'] [u'bomb', u'squad', u'call', u'investig', u'backyard', u'blast'] [u'brent', u'crude', u'touch', u'mark'] [u'brewer', u'find', u'tax', u'time', u'hard', u'swallow'] [u'broadcast', u'fin', u'workplac', u'bulli'] [u'bronco', u'crowd', u'safe', u'coast', u'cullen'] [u'brown', u'scott', u'return', u'lion'] [u'bureau', u'say', u'wind', u'eas'] [u'burni', u'alderman', u'seek', u'chang', u'local', u'govt', u'charter'] [u'busi', u'chamber', u'look', u'blood'] [u'busi', u'focus', u'mine', u'opportun'] [u'carr', u'say', u'polic', u'learn', u'redfern', u'riot'] [u'chief', u'minist', u'group', u'recognis', u'braveri'] [u'child', u'internet', u'predat', u'jail', u'year'] [u'church', u'offer', u'abus', u'victim', u'altern'] [u'leader', u'deni', u'leadership', u'rumour'] [u'club', u'group', u'unhappi', u'council', u'game', u'stanc'] [u'coast', u'team', u'wouldnt', u'impact', u'bronco', u'crowd'] [u'cole', u'myer', u'profit', u'ring', u'regist'] [u'committe', u'begin', u'closur', u'hear'] [u'committe', u'urg', u'charg', u'lay'] [u'communiti', u'seek', u'murder', u'answer'] [u'council', u'plan', u'chief', u'execut', u'payout', u'talk'] [u'council', u'ask', u'consid', u'region', u'wast', u'plan'] [u'council', u'staff', u'protest'] [u'council', u'upbeat', u'galleri', u'work'] [u'firefight', u'want', u'manag', u'chang'] [u'crow', u'faith', u'craig'] [u'darwin', u'awash', u'singl'] [u'decid', u'springbrook', u'govt', u'tell'] [u'defam', u'rule', u'wont', u'bankrupt', u'conserv', u'group'] [u'dept', u'predict', u'rural', u'workforc', u'shortag'] [u'disabl', u'ralli', u'train', u'program', u'cut'] [u'buy', u'melbourn', u'licenc'] [u'doubt', u'rais', u'bega', u'get', u'traine', u'doctor', u'plan'] [u'driver', u'urg', u'push', u'better', u'fuel', u'deal'] [u'drink', u'driver', u'order', u'arrest'] [u'elder', u'coupl', u'face', u'drug', u'charg'] [u'employ', u'growth', u'return'] [u'iraq', u'nuclear', u'weapon', u'chief', u'deni', u'program'] [u'eyr', u'peninsula', u'farm', u'death', u'investig'] [u'fals', u'record', u'claim', u'build', u'licenc'] [u'famili', u'crash', u'victim', u'back', u'slower', u'car'] [u'farmer', u'input', u'wild', u'debat'] [u'fear', u'air', u'fraser', u'dingo', u'number'] [u'feder', u'henin', u'hardenn', u'lead', u'athen', u'seed'] [u'fencer', u'slam', u'controversi', u'sabr', u'mask'] [u'firefight', u'prepar', u'warm', u'weekend'] [u'kill', u'turkey', u'train', u'crash'] [u'forens', u'accredit', u'question', u'falconio'] [u'fossil', u'help', u'unveil', u'past'] [u'free', u'killer', u'surveil', u'life'] [u'gene', u'block', u'monkey', u'busi'] [u'georgian', u'leader', u'rais', u'ethnic', u'cleans', u'fear'] [u'gold', u'miner', u'boost', u'job'] [u'goodrem', u'take', u'athen', u'hospit'] [u'govt', u'accus', u'maltreat', u'victorian', u'meat', u'worker'] [u'govt', u'back', u'labor', u'demand'] [u'govt', u'cash', u'aborigin', u'tourist', u'attract', u'need'] [u'govt', u'move', u'streamlin', u'teacher', u'disciplinari'] [u'govt', u'offer', u'truck', u'industri', u'break'] [u'govt', u'urg', u'repay', u'brigad'] [u'west', u'young', u'traine', u'doctor'] [u'greek', u'comeback', u'seal', u'draw', u'south', u'korea'] [u'greek', u'boss', u'resign', u'signal', u'fiasco'] [u'green', u'group', u'celebr', u'cotton', u'crop'] [u'gregan', u'dismiss', u'waratah'] [u'gregan', u'say', u'world', u'loss', u'major', u'motiv'] [u'group', u'highlight', u'gippsland', u'cancer', u'rate'] [u'gypsi', u'joker', u'label', u'wit', u'scumbag'] [u'heavi', u'fight', u'najaf'] [u'hotel', u'review', u'hour', u'incid'] [u'hous', u'demand', u'remain', u'high', u'report'] [u'howard', u'deni', u'secret', u'deal', u'trade', u'agreement'] [u'indonesian', u'court', u'clear', u'general', u'massacr'] [u'investig', u'alcan', u'worker', u'death', u'continu'] [u'iraq', u'deploy', u'make', u'australia', u'terrorist', u'target'] [u'iraqi', u'seek', u'sadr', u'meet', u'najaf', u'fight'] [u'jam', u'hardi', u'boss', u'face', u'fraud', u'charg'] [u'jensen', u'target', u'million', u'dollar', u'hackett'] [u'level', u'western'] [u'job', u'research', u'show', u'surg', u'pay', u'work'] [u'judiciari', u'reserv', u'william', u'decis'] [u'judiciari', u'hear', u'submiss', u'william', u'case'] [u'kimmorley', u'injuri', u'battl', u'continu'] [u'korea', u'aim', u'unifi', u'team', u'game'] [u'labor', u'council', u'seek', u'jam', u'hardi'] [u'lack', u'plagu', u'lake', u'argyl', u'redevelop'] [u'lara', u'name', u'captain', u'champion', u'trophi'] [u'lennon', u'urg', u'recal', u'parliament', u'butler'] [u'lindenow', u'seek', u'connect'] [u'local', u'olympian', u'prepar', u'gold'] [u'mainland', u'media', u'blame', u'butler', u'demis', u'premier'] [u'murder', u'charg', u'undergo', u'mental', u'assess'] [u'rebel', u'star', u'argentina'] [u'market', u'group', u'reject', u'tourism', u'report', u'attack'] [u'mayor', u'seek', u'asbesto', u'answer'] [u'mayor', u'meet', u'toxic', u'dump', u'plan'] [u'militia', u'threaten', u'iraq', u'line', u'najaf', u'attack'] [u'minist', u'accus', u'paper', u'anti', u'govt', u'campaign'] [u'mini', u'tornado', u'hit', u'bunburi'] [u'charg', u'lay', u'child', u'abus', u'probe'] [u'time', u'forecast'] [u'muralitharan', u'head', u'australia', u'surgeri'] [u'museum', u'showcas', u'italian', u'heritag'] [u'cancer', u'treatment', u'go', u'trial'] [u'rule', u'worri', u'china'] [u'news', u'corp', u'announc', u'quarter', u'profit', u'boost'] [u'digger', u'dealer', u'consid', u'junior'] [u'plan', u'alic', u'youth', u'detent', u'centr'] [u'reef', u'rezon', u'detail', u'tabl'] [u'fund', u'minist', u'defam', u'defenc'] [u'nunn', u'forecast', u'track', u'glori'] [u'ogradi', u'favourit', u'olymp', u'road', u'race'] [u'product', u'fear', u'trigger', u'market', u'volatil'] [u'opal', u'confid', u'conquer', u'dream', u'team'] [u'opposit', u'back', u'land', u'coordin'] [u'pagan', u'happi', u'blue', u'despit', u'hawthorn'] [u'passeng', u'escap', u'plane', u'crash', u'unscath'] [u'patholog', u'test', u'reassess', u'doctor', u'suspens'] [u'phelp', u'clam', u'record'] [u'pipelin', u'disput', u'prove', u'cost'] [u'marsh', u'leav', u'warrior'] [u'plan', u'develop', u'hunter', u'manag'] [u'planner', u'administ', u'shop', u'centr', u'work'] [u'polic', u'killer', u'releas', u'prompt', u'opposit', u'critic'] [u'polic', u'offic', u'recognis', u'help', u'rescu', u'bali'] [u'pont', u'love', u'england'] [u'poor', u'rail', u'blame', u'turkey', u'crash'] [u'pound', u'confirm', u'olymp', u'test', u'growth', u'hormon'] [u'pound', u'defend', u'thorp', u'drug', u'claim'] [u'prison', u'upgrad', u'respons', u'ellison'] [u'project', u'tackl', u'childhood', u'develop', u'problem'] [u'prosecutor', u'seek', u'second', u'life', u'term', u'dupa'] [u'water', u'plan', u'boost', u'condamin', u'balonn', u'river'] [u'queensland', u'recognis', u'save', u'truck', u'driver'] [u'question', u'rais', u'karoonda', u'polic', u'presenc'] [u'quilt', u'unlock', u'murder', u'mysteri'] [u'quri', u'take', u'swipe', u'palestinian', u'milit'] [u'raducan', u'demand', u'return', u'gold', u'medal'] [u'rail', u'studi', u'find', u'know', u'soon'] [u'rain', u'aid', u'wheatbelt', u'crop'] [u'rebel', u'attend', u'sudan', u'peac', u'talk'] [u'report', u'show', u'polic', u'unprepar', u'riot', u'brogden'] [u'resid', u'reward', u'brave', u'effort'] [u'russian', u'trio', u'fail', u'drug', u'test'] [u'safin', u'thump', u'myskina', u'poland'] [u'sangakkara', u'put', u'lankan', u'lofti', u'posit'] [u'banish', u'plastic', u'bag'] [u'saudi', u'promis', u'fail', u'cool', u'price'] [u'search', u'bombala', u'idol'] [u'senat', u'inquiri', u'find', u'intellig', u'failur', u'bali'] [u'serial', u'killer', u'sobhraj', u'jail', u'life'] [u'volunt', u'recognis', u'brave', u'effort'] [u'shire', u'group', u'lobbi', u'better', u'public', u'transport'] [u'shire', u'wont', u'oppos', u'marina', u'plan', u'public', u'opinion'] [u'sing', u'final', u'round', u'return'] [u'sing', u'throw', u'shark', u'comeback'] [u'south', u'australian', u'recognis', u'braveri'] [u'southern', u'develop', u'orang'] [u'spanish', u'cyclist', u'fail', u'drug', u'test'] [u'spanish', u'polic', u'bomb', u'search'] [u'state', u'territori', u'agre', u'citrus', u'canker', u'plan'] [u'stosur', u'olymp', u'campaign', u'widen'] [u'studi', u'consid', u'rail', u'freight', u'corridor'] [u'submiss', u'hear', u'william', u'case'] [u'support', u'show', u'friday', u'night', u'mall', u'trade'] [u'syrian', u'hold', u'lebanes', u'hostag', u'captiv'] [u'telstra', u'news', u'corp', u'disappoint', u'market'] [u'telstra', u'post', u'record', u'profit'] [u'telstra', u'work', u'broadband', u'outag'] [u'townsvill', u'deleg', u'tour', u'mall'] [u'tuckey', u'back', u'port', u'author', u'legal', u'fight'] [u'aussi', u'vie', u'glori', u'wisconsin'] [u'court', u'rule', u'evid', u'obtain', u'tortur'] [u'appeal', u'bangladesh', u'flood', u'victim'] [u'underground', u'blaze', u'burn'] [u'conced', u'protocol', u'breach'] [u'union', u'lash', u'specul', u'defenc'] [u'union', u'reject', u'jam', u'hardi', u'offer'] [u'union', u'want', u'manag', u'stand', u'asid'] [u'seek', u'intellectu', u'properti', u'chang'] [u'unit', u'real', u'notch', u'champ', u'leagu', u'win'] [u'univers', u'western', u'sydney', u'vote', u'hec'] [u'deni', u'agent', u'behead', u'iraq'] [u'launch', u'najaf', u'offens'] [u'strike', u'kill', u'fallujah'] [u'veteran', u'sailor', u'beashel', u'carri', u'flag', u'athen'] [u'back', u'bounti', u'call'] [u'victorian', u'dam', u'fill'] [u'victorian', u'recognis', u'braveri'] [u'wada', u'confirm', u'olymp', u'test', u'growth', u'hormon'] [u'walgett', u'shire', u'quit'] [u'memori', u'crack', u'fix', u'soon'] [u'warwick', u'honour', u'braveri', u'award'] [u'whistl', u'strait', u'like', u'produc', u'surpris'] [u'white', u'supremacist', u'deni', u'bail'] [u'wineri', u'secur', u'sustain', u'accredit'] [u'resourc', u'boost', u'profit'] [u'woman', u'bind', u'assault', u'home'] [u'woman', u'surviv', u'crash', u'shop'] [u'woman', u'face', u'court', u'boy', u'abduct'] [u'woman', u'face', u'murder', u'trial'] [u'women', u'wrestler', u'look', u'forward', u'olymp', u'debut'] [u'youth', u'plead', u'guilti', u'school', u'steal', u'charg'] [u'zidan', u'quit', u'french', u'team', u'report'] [u'dead', u'miss', u'atlant', u'capsiz'] [u'grant', u'target', u'disabl', u'project'] [u'adelaid', u'festiv', u'commiss', u'film'] [u'cast', u'doubt', u'bulli', u'fin'] [u'candid', u'seek', u'support', u'jam', u'hardi'] [u'alpin', u'weather', u'warn', u'driver'] [u'anti', u'dope', u'agenc', u'receiv', u'cycl', u'report'] [u'anti', u'dope', u'chief', u'slam', u'athlet', u'boss'] [u'archeri', u'record', u'fall', u'athen'] [u'clinch', u'soccer', u'deal'] [u'asbesto', u'victim', u'knock', u'hardi', u'scheme'] [u'asylum', u'seeker', u'claim', u'maggot', u'food'] [u'athen', u'cheer', u'olymp', u'flame', u'arriv'] [u'aussi', u'close', u'clark', u'set', u'pace'] [u'australia', u'cricket', u'overpay'] [u'australia', u'shake', u'expect', u'epidem'] [u'author', u'outrag', u'creek', u'dump'] [u'babi', u'sigh', u'vital', u'regul', u'breath', u'studi', u'find'] [u'bali', u'blast', u'survivor', u'compo', u'plan'] [u'journalist', u'detain', u'isra', u'oper'] [u'blacklock', u'england'] [u'blizzard', u'strand', u'ski', u'student'] [u'bomber', u'lift', u'final', u'hop'] [u'bomber', u'ring', u'chang'] [u'breast', u'cancer', u'scheme', u'get', u'help', u'hand'] [u'brisco', u'hand', u'toyota', u'test'] [u'british', u'journalist', u'kidnap', u'iraq', u'report'] [u'brown', u'lose', u'strike', u'appeal'] [u'builder', u'warn', u'icac'] [u'butler', u'appoint', u'inappropri', u'howard'] [u'butler', u'confidenti', u'debat', u'continu'] [u'butler', u'disput', u'confidenti', u'claus', u'claim'] [u'educ', u'fund', u'boost', u'west'] [u'chang', u'disabl', u'program', u'reform'] [u'chavez', u'oppon', u'signal', u'tough', u'referendum', u'battl'] [u'child', u'labour', u'paper', u'open', u'comment'] [u'china', u'quak', u'leav', u'homeless'] [u'climat', u'scheme', u'offer', u'help', u'outlook', u'farmer'] [u'clint', u'eastwood', u'drop', u'lawsuit', u'book'] [u'coalit', u'labor', u'pass', u'marriag'] [u'concern', u'estat', u'agent', u'licenc', u'fee'] [u'concert', u'goer', u'surviv', u'cliff', u'fall'] [u'confer', u'tell', u'fraser', u'rail', u'possibl'] [u'council', u'green', u'light', u'unit', u'plan'] [u'councillor', u'remind', u'correct', u'conduct'] [u'council', u'consid', u'buy', u'wind', u'tower'] [u'council', u'gain', u'feder', u'road', u'fund'] [u'council', u'urg', u'chang', u'sceneri'] [u'dajka', u'hear', u'saturday'] [u'defenc', u'worker', u'face', u'lockout'] [u'democrat', u'want', u'land', u'council', u'vote', u'postpon'] [u'dentist', u'sentenc', u'lure', u'child', u'internet'] [u'derail', u'disrupt', u'hamersley', u'export'] [u'dieback', u'threaten', u'south', u'coast'] [u'disabl', u'cut', u'spark', u'protest'] [u'doctor', u'bodi', u'opt', u'voluntari', u'administr'] [u'downer', u'sign', u'polic', u'mission'] [u'downer', u'warn', u'north', u'korea', u'nuclear', u'threat'] [u'drug', u'hear', u'delay', u'spar', u'greec', u'open', u'shame'] [u'drug', u'leav', u'quick', u'rogg'] [u'earthquak', u'dam', u'threaten', u'chines', u'villag'] [u'educ', u'campaign', u'target', u'video', u'pirat'] [u'essex', u'aussi', u'brant', u'fli', u'home', u'surgeri'] [u'presid', u'appoint', u'commission'] [u'excav', u'boost', u'whitehaven', u'effort'] [u'eye', u'focus', u'local', u'olymp', u'hero'] [u'farmer', u'die', u'tractor', u'accid'] [u'farmer', u'warn', u'locust', u'threat'] [u'father', u'abus', u'brutal', u'reign', u'judg'] [u'fierc', u'fight', u'grip', u'najaf'] [u'threat', u'worsen', u'south', u'east'] [u'fisheri', u'dept', u'advertis', u'abrolho', u'island'] [u'council', u'worker', u'get', u'accid', u'payout'] [u'chief', u'head', u'crime', u'bodi'] [u'freeman', u'join', u'live', u'export', u'protest', u'athen'] [u'free', u'trade', u'deal', u'fantast', u'australia', u'howard'] [u'gallop', u'kalgoorli'] [u'game', u'expect', u'impact', u'aust', u'tourism', u'market'] [u'genet', u'materi', u'help', u'nanotechnolog', u'research'] [u'coastal', u'patrol', u'boat', u'speaker'] [u'good', u'behaviour', u'bond', u'indonesian', u'fisherman'] [u'goodrem', u'okay', u'attend', u'open', u'ceremoni'] [u'govt', u'criticis', u'withhold', u'retail', u'outlet'] [u'govt', u'bali', u'downer'] [u'govt', u'urg', u'boost', u'farm', u'safeti', u'fund'] [u'greek', u'athlet', u'miss', u'drug', u'test'] [u'greek', u'sprint', u'champ', u'order', u'appear', u'drug'] [u'greek', u'sprint', u'champ', u'order', u'attend', u'drug', u'hear'] [u'greek', u'sprinter', u'hurt', u'crash', u'miss', u'dope'] [u'greek', u'sprinter', u'drug', u'test', u'hear', u'delay'] [u'hawk', u'captain', u'crawford', u'hospit'] [u'heat', u'wave', u'predict', u'europ', u'north', u'america'] [u'highway', u'servic', u'centr'] [u'high', u'wind', u'caus', u'havoc', u'snowi', u'mountain'] [u'hockeyroo', u'skipper', u'powel', u'recov', u'injuri'] [u'hoggard', u'halt', u'windi', u'reviv'] [u'illeg', u'build', u'rise'] [u'immigr', u'reject', u'baxter', u'maggot', u'claim'] [u'indigen', u'award', u'winner', u'announc'] [u'indonesia', u'timor', u'discuss', u'occup', u'acquitt'] [u'industri', u'lobbi', u'say', u'educ', u'answer'] [u'inform', u'darfur', u'peac', u'talk', u'begin'] [u'injur', u'discov', u'bondi', u'park'] [u'inquiri', u'recommend', u'tighter', u'rule', u'bank'] [u'iranian', u'ralli', u'attack'] [u'iraq', u'down', u'portug', u'olymp', u'fairytal'] [u'iraqi', u'cleric', u'urg', u'hostag', u'journalist', u'releas'] [u'iraq', u'restor', u'flow'] [u'israel', u'armi', u'chief', u'hint', u'golan', u'height'] [u'kostya', u'bout', u'head'] [u'clash', u'leav', u'dead'] [u'vow', u'open', u'singaporean', u'societi'] [u'legal', u'action', u'alcohol', u'plan', u'hold'] [u'lifesav', u'jail', u'offenc'] [u'local', u'state', u'govt', u'discuss', u'servic', u'deliveri', u'post'] [u'local', u'support', u'indigen', u'health', u'boost'] [u'log', u'near', u'nation', u'park', u'investig'] [u'loxton', u'hockey', u'player', u'prepar', u'athen', u'countdown'] [u'magistr', u'demand', u'answer', u'falconio', u'wit'] [u'arrest', u'incid'] [u'market', u'busi', u'week'] [u'market', u'unsettl', u'price', u'reach', u'high'] [u'maroochi', u'consid', u'light', u'rail', u'option'] [u'meet', u'discuss', u'scallop', u'industri', u'plan'] [u'men', u'babi', u'assault', u'charg', u'drop'] [u'mental', u'health', u'campaign', u'gain', u'support'] [u'mix', u'respons', u'water', u'plan'] [u'moor', u'interview', u'expos', u'nomine'] [u'mother', u'reject', u'bali', u'compo', u'plan'] [u'appoint', u'board', u'member'] [u'negoti', u'underway', u'thousand', u'decri', u'najaf'] [u'newcastl', u'port', u'break', u'trade', u'record'] [u'test', u'guidelin', u'advis', u'pregnant', u'women'] [u'shop', u'centr', u'replac', u'mater', u'hospit'] [u'buri', u'avalanch', u'emerg', u'crew'] [u'farmer', u'stop', u'whing', u'anderson'] [u'govt', u'virgin', u'flight'] [u'nurs', u'threat', u'amidst', u'ralli', u'push'] [u'price', u'break', u'record', u'iraq', u'fear'] [u'price', u'soar'] [u'olymp', u'expect', u'break'] [u'orang', u'grove', u'owner', u'evid', u'total', u'lie', u'carr'] [u'palestinian', u'kill', u'ambush', u'settler'] [u'parti', u'urg', u'refus', u'jam', u'hardi', u'donat'] [u'perth', u'mint', u'return', u'mickelberg', u'gold'] [u'petit', u'doesnt', u'faze', u'hepburn', u'mayor'] [u'petit', u'oppos', u'mica', u'unit'] [u'petrol', u'price', u'fuel', u'concern'] [u'plane', u'crash', u'exercis', u'put', u'skill', u'test'] [u'plan', u'join', u'rfds', u'fundrais', u'campaign'] [u'plan', u'indigen', u'secur', u'offic'] [u'plan', u'underway', u'combat', u'locust', u'threat'] [u'seek', u'malaysian', u'free', u'trade', u'deal'] [u'welcom', u'bali', u'bomb', u'inquiri', u'find'] [u'highland', u'brink', u'civil', u'conflict'] [u'polic', u'public', u'assist', u'trentham'] [u'polic', u'consid', u'aggress', u'riot', u'tactic'] [u'polic', u'bendigo', u'crime', u'statist', u'encourag'] [u'polic', u'search', u'tuggeranong', u'arm', u'robber'] [u'polic', u'question', u'driver', u'fatal', u'crash'] [u'polic', u'union', u'welcom', u'appoint'] [u'polli', u'discuss', u'alic', u'intern', u'airport', u'plan'] [u'prawn', u'fisher', u'lobbi', u'compo'] [u'publish', u'pull', u'khouri', u'fabric', u'book'] [u'race', u'club', u'avoid', u'fund'] [u'rebel', u'georgian', u'convoy'] [u'region', u'council', u'queri', u'pilbara', u'fund', u'spend'] [u'research', u'track', u'fraser', u'dingo'] [u'retir', u'villag', u'stay', u'free'] [u'rooster', u'track'] [u'rooster', u'reveng'] [u'sadr', u'unhurt', u'negoti', u'iraqi', u'govt'] [u'sadr', u'wound', u'attack', u'najaf'] [u'sangakkara', u'blaze', u'doubl', u'protea', u'struggl'] [u'satellit', u'photo', u'chart', u'landscap', u'chang'] [u'scud', u'hand', u'tough', u'athen', u'draw'] [u'seafood', u'industri', u'welcom', u'reef', u'compo', u'rethink'] [u'senat', u'pass', u'associ', u'terrorist'] [u'senat', u'pass', u'deal', u'amid', u'warn'] [u'senat', u'report', u'seek', u'control', u'rural', u'water'] [u'senat', u'defend', u'fish', u'boat', u'rescu', u'inquiri'] [u'volunt', u'injur', u'crash', u'hous'] [u'charg', u'highlight', u'need', u'workplac', u'educ'] [u'scandal', u'forc', u'austrian', u'seminari', u'closur'] [u'site', u'choos', u'mar', u'train'] [u'snowboard', u'injuri', u'increas'] [u'south', u'east', u'health', u'talk', u'continu'] [u'south', u'sign', u'spree'] [u'springbok', u'pois', u'black', u'domin'] [u'stab', u'investig', u'halt', u'heathrow', u'tube', u'servic'] [u'state', u'govt', u'cancel', u'cotton', u'agreement'] [u'studi', u'consid', u'rail', u'corridor'] [u'sunday', u'telegraph', u'concern', u'kidnap', u'report'] [u'survey', u'show', u'resid', u'open', u'higher', u'medicar', u'levi'] [u'sydney', u'level', u'continu', u'fall'] [u'technic', u'fault', u'black', u'queensland'] [u'teen', u'injur', u'cracker', u'blast'] [u'teen', u'arrest', u'crocodil', u'attack'] [u'thiev', u'beat', u'novelist', u'return', u'exil'] [u'thousand', u'expect', u'food', u'wine', u'event'] [u'fear', u'trap', u'avalanch'] [u'live', u'fast', u'die', u'young'] [u'troubl', u'entertain', u'centr', u'continu', u'trade'] [u'present', u'expos', u'nake', u'truth'] [u'qaeda', u'suspect', u'captur', u'report'] [u'union', u'criticis', u'policeman', u'unfair', u'sack'] [u'union', u'meet', u'forest', u'cut'] [u'athlet', u'best', u'behaviour', u'notic'] [u'continu', u'fallujah', u'bomb', u'run'] [u'court', u'annul', u'marriag'] [u'governor', u'resign', u'affair'] [u'nomin', u'start', u'date', u'hick', u'trial'] [u'warn', u'australia', u'amend'] [u'govt', u'urg', u'deliv', u'clean', u'coal', u'research', u'fund'] [u'vietnam', u'confirm', u'bird', u'death'] [u'vline', u'blame', u'spencer', u'redevelop', u'delay'] [u'waff', u'move', u'reassur', u'industri', u'follow', u'livecorp'] [u'govt', u'select', u'child', u'protect', u'worker'] [u'wambo', u'urg', u'dalbi', u'regular', u'upkeep'] [u'warburton', u'teenag', u'plead', u'guilti', u'assault'] [u'washington', u'post', u'admit', u'failur', u'iraq', u'coverag'] [u'water', u'dryland', u'initi', u'launch'] [u'union', u'step', u'anti', u'jam', u'hardi', u'campaign'] [u'webber', u'happi', u'team', u'button'] [u'weep', u'virgin', u'collect'] [u'wisher', u'urg', u'olympian', u'unleash', u'hell'] [u'western', u'power', u'chairman', u'deliv', u'ultimatum'] [u'wheel', u'clamp', u'cours', u'offer', u'britain'] [u'white', u'whale', u'make', u'splash'] [u'seek', u'bird', u'sampl'] [u'william', u'judiciari', u'decis', u'hold'] [u'xstrata', u'coal', u'earn', u'half', u'year', u'profit'] [u'xstrata', u'outlook', u'posit', u'strong', u'perform'] [u'young', u'socceroo', u'pull', u'indonesia', u'tour'] [u'zidan', u'call', u'time', u'intern', u'career'] [u'zinifex', u'deal', u'talk', u'reach', u'stalem'] [u'injur', u'cinema', u'blast', u'india'] [u'opposit', u'seek', u'protect', u'mother'] [u'rankl', u'qanta', u'snub'] [u'arnhem', u'land', u'artist', u'win', u'prize'] [u'asbesto', u'group', u'wait', u'compo', u'detail'] [u'athen', u'open', u'bring', u'myth', u'life'] [u'aussi', u'sand'] [u'australian', u'softbal', u'power', u'past', u'japan'] [u'australia', u'world', u'class', u'sailor', u'enter', u'water'] [u'australia', u'challeng', u'women', u'basketbal'] [u'australia', u'join', u'singapor', u'naval', u'exercis'] [u'beach', u'volleybal', u'champion', u'return', u'partner'] [u'bennett', u'expect', u'tough', u'battl', u'bulldog'] [u'blackout', u'state'] [u'blusteri', u'condit', u'slow', u'firefight'] [u'hospit'] [u'brent', u'price', u'soar'] [u'brisban', u'mayor', u'rais', u'doubt', u'generat', u'plan'] [u'butler', u'tight', u'lip', u'resign', u'talk'] [u'carr', u'welcom', u'jam', u'hardi', u'compo', u'propos'] [u'cathol', u'school', u'fund', u'push', u'expect'] [u'cat', u'destroy', u'uninspir', u'docker'] [u'china', u'typhoon', u'kill', u'injur'] [u'chines', u'typhoon', u'destroy', u'home'] [u'coupl', u'attack', u'home', u'invas'] [u'cowboy', u'rabbitoh'] [u'cuban', u'boxer', u'lose', u'grip', u'middleweight', u'class'] [u'dead', u'claim', u'gold'] [u'diamond', u'trick', u'suffer', u'blow'] [u'docker', u'histor', u'kardinia'] [u'doll', u'market', u'take', u'free', u'speech', u'fight', u'arni'] [u'dozen', u'kill', u'warplan', u'strike', u'samarra'] [u'dragon', u'outclass', u'warrior'] [u'driver', u'hit', u'peopl', u'incid'] [u'driver', u'kill', u'smash'] [u'edwardss', u'olymp', u'fate', u'decid', u'hour'] [u'eel', u'slip', u'past', u'shark'] [u'iraqi', u'kill', u'wound', u'hilla', u'fight'] [u'fair', u'trade', u'move', u'shame', u'repair'] [u'famili', u'hit', u'polic', u'raid'] [u'favourit', u'canada', u'face', u'tough', u'draw', u'men'] [u'fenc', u'protect', u'rare', u'desert', u'tree'] [u'fire', u'threaten', u'home', u'brisban'] [u'hockeyroo', u'hope', u'defend', u'gold'] [u'fli', u'doctor', u'reliev', u'rethink'] [u'guantanamo', u'declar', u'enemi', u'combat'] [u'freeman', u'fear', u'pittman', u'pressur', u'olymp'] [u'girl', u'fight', u'life', u'bash'] [u'girl', u'arrest', u'adelaid', u'robberi'] [u'googl', u'stock', u'auction', u'rocki', u'start'] [u'greec', u'suspend', u'dope', u'test', u'sprint', u'pair'] [u'gunmen', u'kill', u'burundi', u'refuge', u'camp'] [u'hardi', u'offer', u'catch', u'victim', u'surpris'] [u'heart', u'attack', u'forc', u'emerg', u'land'] [u'heat', u'factor', u'port', u'play', u'dog', u'darwin'] [u'heavi', u'gunfir', u'baghdad', u'sunni', u'insurg', u'hotspot'] [u'hill', u'back', u'north', u'korea', u'missil', u'statement'] [u'hill', u'farewel', u'iraq', u'bind', u'troop'] [u'hockey', u'win', u'china', u'netherland'] [u'hurrican', u'lash', u'florida', u'coast'] [u'india', u'carri', u'execut', u'near'] [u'iranian', u'judo', u'champion', u'quit', u'game', u'protest'] [u'iraq', u'shut', u'main', u'pipelin'] [u'italian', u'secur', u'forc', u'alert'] [u'japan', u'stand', u'aussi', u'softbal', u'gold'] [u'jetstar', u'investig', u'malfunct'] [u'judo', u'champ', u'hobbl', u'action'] [u'kidnap', u'british', u'journalist', u'free', u'iraq'] [u'labor', u'warn', u'right', u'stanc'] [u'lion', u'winner', u'circl'] [u'longo', u'deject', u'road', u'race', u'cours'] [u'maldiv', u'declar', u'state', u'emerg'] [u'mayor', u'babi', u'spark', u'launceston', u'council', u'disput'] [u'mix', u'result', u'aussi', u'tabl', u'tenni', u'judo'] [u'murali', u'face', u'wait', u'shoulder'] [u'myth', u'technolog', u'welcom', u'game', u'home'] [u'najaf', u'truce', u'allow', u'talk'] [u'najaf', u'truce', u'end'] [u'facil', u'nullarbor', u'whale', u'watcher'] [u'gymnast', u'format', u'leav', u'littl', u'room', u'error'] [u'mistak', u'thorp', u'launch', u'defenc'] [u'commit', u'fund', u'homeless', u'network'] [u'firefight', u'battl', u'north', u'east', u'blaze'] [u'price', u'surg', u'higher'] [u'opal', u'nigeria'] [u'owen', u'leav', u'liverpool', u'real', u'madrid'] [u'phelp', u'cruis', u'olymp', u'open'] [u'philippin', u'emb', u'soldier', u'newsroom'] [u'pittman', u'closer', u'track', u'return'] [u'pittman', u'athen', u'monday'] [u'poland', u'nobel', u'laureat', u'die'] [u'polic', u'dodg', u'stereo', u'speaker', u'chase'] [u'polic', u'metr', u'bridg', u'thief'] [u'poolsid', u'joke', u'hide', u'jitter'] [u'power', u'expect', u'heat', u'battl', u'bulldog'] [u'power', u'surg', u'disappoint', u'dog'] [u'protest', u'march', u'marriag'] [u'reach', u'deal', u'citrus', u'canker', u'watch'] [u'raikkonen', u'surpris', u'schu', u'hungari'] [u'rain', u'wash'] [u'reign', u'sabr', u'champion', u'face', u'tough', u'challeng'] [u'riot', u'polic', u'confront', u'strong', u'crowd'] [u'rock', u'throw', u'kid', u'stir', u'be'] [u'russian', u'suppli', u'ship', u'reach', u'space', u'station'] [u'sadr', u'set', u'condit', u'najaf', u'ceas'] [u'sadr', u'vow', u'fight'] [u'marriag', u'mileston', u'valu'] [u'offend', u'free', u'year'] [u'sexual', u'predat', u'jail', u'year'] [u'shiit', u'cleric', u'stabl', u'condit', u'heart'] [u'singh', u'leonard', u'share', u'lead', u'wood', u'make'] [u'skaif', u'kelli', u'claim'] [u'lanka', u'crush', u'south', u'africa'] [u'stanhop', u'defend', u'commission', u'right', u'comment'] [u'state', u'school', u'teacher', u'work', u'extra', u'hour'] [u'swan', u'sneak'] [u'tasmanian', u'push', u'butler', u'inquiri'] [u'thoma', u'fli', u'semi'] [u'thorp', u'edg', u'hackett', u'gold'] [u'thorp', u'hackett', u'duel', u'loom'] [u'tomkin', u'ginn', u'cruis', u'semi'] [u'troop', u'arriv', u'darfur'] [u'ullrich', u'year', u'road', u'race', u'record', u'sight'] [u'see', u'progress', u'darfur', u'talk'] [u'staff', u'iraq'] [u'bomber', u'strike', u'samarra'] [u'vieira', u'remain', u'gunner'] [u'violent', u'protest', u'plung', u'maldiv', u'chao'] [u'wall', u'street', u'edg'] [u'weigh', u'weightless', u'russia', u'put'] [u'monitor', u'bird', u'outbreak'] [u'health', u'confid', u'matern', u'servic'] [u'ainsli', u'suffer', u'titl', u'blow'] [u'ambros', u'edg', u'skaif', u'victori'] [u'anlezark', u'welcom', u'shoot', u'spotlight'] [u'artist', u'stage', u'galleri'] [u'aussi', u'touch', u'wind', u'sail', u'comp'] [u'aussi', u'slam', u'athen', u'road', u'race', u'time'] [u'aussi', u'winner', u'beach', u'volleybal'] [u'australian', u'sculler', u'world', u'mark'] [u'aust', u'snatch', u'gold', u'pool'] [u'baghdad', u'confer', u'debat', u'interim', u'assembl'] [u'bettini', u'win', u'men', u'road', u'race'] [u'bomb', u'explos', u'hear', u'near', u'iraq', u'nation', u'confer'] [u'bulldog', u'rais', u'bronco'] [u'ceasefir', u'take', u'effect', u'georgia'] [u'chavez', u'predict', u'referendum', u'victori'] [u'china', u'hand', u'internet', u'porn', u'sentenc'] [u'coastal', u'patrol', u'defend', u'divis', u'closur'] [u'code', u'conduct', u'propos', u'cafe'] [u'communiti', u'unprepar', u'emerg'] [u'communiti', u'bank', u'start', u'turn', u'profit'] [u'crew', u'struggl', u'contain', u'bushfir'] [u'crow', u'launch', u'final', u'quarter', u'raid', u'trounc', u'tiger'] [u'cuba', u'good', u'australia'] [u'cyclist', u'brush', u'paint'] [u'darfur', u'rebel', u'urg', u'monitor', u'spread'] [u'dead', u'hurrican', u'sweep', u'florida'] [u'diamond', u'miss', u'trap', u'final'] [u'disgrac', u'kenyan', u'boxer', u'appeal', u'game'] [u'doubl', u'dose', u'bronz', u'aussi', u'synchro', u'diver'] [u'downer', u'shrug', u'pueril', u'missil', u'debat'] [u'dozen', u'dead', u'salvador', u'crash'] [u'promot', u'countri', u'teacher', u'lifestyl'] [u'dwyer', u'star', u'kookaburra', u'trounc'] [u'eagl', u'crush', u'blue'] [u'eagl', u'shape', u'match', u'blue'] [u'eel', u'slip', u'past', u'shark'] [u'stadium', u'spark', u'ticket', u'giveaway', u'plan'] [u'fight', u'resum', u'najaf'] [u'firebug', u'face', u'life', u'jail', u'beatti', u'warn'] [u'fisherman', u'sweep', u'rock'] [u'game', u'secur', u'terrorist', u'dream'] [u'german', u'upset', u'hockeyroo'] [u'germani', u'stun', u'olymp', u'champion', u'cuba'] [u'govt', u'explain', u'labor', u'polici', u'busi'] [u'greek', u'offici', u'angri', u'media', u'mous', u'game'] [u'greek', u'sprint', u'pair', u'pull', u'game'] [u'green', u'probe', u'butler', u'resign'] [u'gungahlin', u'local', u'frustrat', u'broadband'] [u'hackett', u'look', u'silver'] [u'high', u'ball', u'concern', u'hunt', u'bennett', u'say'] [u'hurrican', u'leav', u'devast', u'florida'] [u'hurrican', u'leav', u'cuban', u'capit', u'power'] [u'indigen', u'court', u'prison', u'number', u'report'] [u'iranian', u'judo', u'champ', u'fail', u'weight'] [u'jackson', u'court', u'child', u'molest'] [u'jamaica', u'powel', u'predict', u'world', u'record'] [u'japanes', u'pace', u'chines', u'gymnast', u'struggl'] [u'japan', u'judoka', u'olymp', u'histori'] [u'joubert', u'star', u'springbok', u'black'] [u'kersten', u'unlik', u'race', u'athen', u'coach'] [u'kitajima', u'see', u'hansen', u'eclips', u'olymp', u'mark'] [u'klochkova', u'success', u'defend', u'medley', u'titl'] [u'lion', u'winner', u'circl'] [u'macarthur', u'museum', u'open', u'brisban'] [u'die', u'ship', u'accid'] [u'manhunt', u'spark', u'censorship'] [u'matilda', u'beat', u'greec', u'down', u'brazil'] [u'medicar', u'scheme', u'includ', u'outer', u'suburb'] [u'montano', u'win', u'sabr', u'keep', u'famili'] [u'team', u'aim', u'track'] [u'world', u'record', u'australian', u'rower'] [u'bushfir', u'contain'] [u'crew', u'continu', u'fight', u'north', u'coast'] [u'pray', u'rain'] [u'rejig', u'danger'] [u'public', u'sector', u'expand'] [u'want', u'wider', u'data'] [u'duti', u'policewoman', u'nightclub', u'attack'] [u'offici', u'investig', u'spate', u'fire', u'adelaid'] [u'olyroo', u'good', u'serbia', u'montenegro'] [u'organis', u'pleas', u'ekka', u'turnout'] [u'organis', u'rejig', u'row', u'schedul', u'beat', u'wind'] [u'kill', u'afghan', u'faction', u'clash'] [u'owen', u'unveil', u'real', u'madrid', u'player'] [u'palestinian', u'prison', u'begin', u'hunger', u'strike', u'israel'] [u'perth', u'council', u'develop', u'foreshor', u'plan'] [u'petria', u'thoma', u'win', u'second', u'gold'] [u'phelp', u'start', u'world', u'record', u'victori'] [u'phelp', u'thorp', u'clash', u'free'] [u'pittman', u'percent', u'certain', u'athen'] [u'pittman', u'athen'] [u'hint', u'game', u'elect', u'unlik'] [u'predict', u'close', u'elect', u'result'] [u'urg', u'review', u'nation', u'electr', u'grid'] [u'polic', u'investig', u'man', u'death', u'zeehan'] [u'poll', u'give', u'green', u'senat', u'hope'] [u'pope', u'burden', u'health', u'lourd', u'pilgrimag'] [u'princess', u'eulog', u'rais', u'chariti'] [u'protea', u'chase', u'huge', u'target', u'lanka'] [u'protest', u'ralli', u'church', u'prison', u'support'] [u'firefight', u'battl', u'grass', u'blaze'] [u'relay', u'gold', u'world', u'record', u'australia', u'women'] [u'report', u'show', u'increas', u'drug', u'polic'] [u'rescu', u'worker', u'search', u'miss', u'plane'] [u'rider', u'safe', u'spend', u'night', u'outdoor'] [u'roddick', u'stretch', u'venus', u'soar', u'arthur', u'win'] [u'roll', u'stone', u'drummer', u'battl', u'throat', u'cancer'] [u'rwanda', u'troop', u'start', u'mission', u'darfur'] [u'saint', u'march', u'kangaroo'] [u'assess', u'murray', u'pollut'] [u'schumach', u'claim', u'pole', u'hungari'] [u'sculler', u'world', u'mark'] [u'eagl', u'stun', u'knight'] [u'singh', u'take', u'stroke', u'lead'] [u'small', u'bomb', u'explod', u'spanish', u'port'] [u'solid', u'start', u'aussi', u'shark'] [u'nation', u'recalcitr', u'marin', u'poach'] [u'speargun', u'murder'] [u'speed', u'drink', u'driver', u'pick'] [u'spur', u'hold', u'liverpool', u'bolton', u'rout', u'charlton'] [u'storm', u'outgun', u'raider'] [u'storm', u'row', u'program'] [u'syrian', u'truck', u'driver', u'kidnap', u'northern', u'iraq'] [u'taylan', u'triumph', u'world', u'record', u'break', u'style'] [u'knee', u'need', u'know'] [u'thoma', u'schipper', u'inki'] [u'thorp', u'hackett', u'grab', u'quinella'] [u'thorp', u'fastest', u'freestyl', u'heat'] [u'thorp', u'hackett', u'quinella', u'free'] [u'thorp', u'strauss', u'lead', u'england', u'fightback'] [u'injur', u'crash'] [u'tire', u'pope', u'wind', u'lourd', u'visit', u'mass'] [u'toddler', u'die', u'head', u'injuri'] [u'tourism', u'chief', u'prais', u'adelaid', u'river', u'initi'] [u'tutsi', u'kill', u'burundi', u'refuge', u'camp'] [u'unlucki', u'loss', u'boxer', u'pittman'] [u'move', u'protect', u'burundi', u'refuge'] [u'strike', u'near', u'flashpoint', u'citi', u'fallujah'] [u'australia', u'slow', u'start', u'basketbal'] [u'male', u'gymnast', u'stake', u'claim', u'gold'] [u'vaa', u'steer', u'lanka', u'seri'] [u'vandal', u'daub', u'swastika', u'near', u'notr', u'dame'] [u'vella', u'claim', u'bronz', u'alipov', u'win', u'olymp', u'trap'] [u'vietnam', u'vet', u'march', u'adelaid'] [u'violenc', u'hit', u'indian', u'independ', u'celebr'] [u'wild', u'storm', u'cold', u'victoria'] [u'abbott', u'deni', u'direct', u'medicar', u'scheme'] [u'hour', u'health', u'advic', u'realiti'] [u'propos', u'threaten', u'workingman', u'club', u'futur'] [u'aid', u'reveal', u'children', u'overboard', u'advic'] [u'alleg', u'arsonist', u'tri', u'adult'] [u'alleg', u'offend', u'dead'] [u'dump', u'can', u'candid'] [u'promis', u'secur', u'upgrad', u'region', u'airport'] [u'want', u'kid', u'overboard', u'probe'] [u'ambul', u'respons', u'time', u'slow', u'inquest', u'tell'] [u'arsenal', u'chelsea', u'start', u'victori'] [u'arsonist', u'blame', u'north', u'fire'] [u'arson', u'suspect', u'nowra', u'bushfir'] [u'aussi', u'semi', u'final', u'phelp', u'pool'] [u'aussi', u'team', u'final', u'gymnast'] [u'australia', u'fire', u'shot', u'hockey', u'glori'] [u'aust', u'take', u'swim', u'cycl', u'gold'] [u'balgo', u'track', u'upgrad', u'link', u'communiti', u'tanami'] [u'barbaro', u'case', u'adjourn', u'court'] [u'beazley', u'accus', u'govt', u'scaremong'] [u'blackout', u'caus', u'unknown'] [u'bomber', u'investig', u'player', u'brawl'] [u'bomb', u'threat', u'forc', u'emerg', u'land'] [u'boomer', u'lose', u'greec'] [u'british', u'protest', u'backstrok', u'injur', u'pool'] [u'bronco', u'worri', u'say', u'bennett'] [u'broom', u'plan', u'second', u'water', u'treatment', u'plant'] [u'bulk', u'bill', u'extens', u'benefit'] [u'bulk', u'bill', u'payment', u'increas', u'boost', u'doctor'] [u'bulldog', u'refus', u'permiss', u'wear', u'anti', u'abus'] [u'bundaberg', u'rat'] [u'bush', u'inspect', u'hurrican', u'wreckag'] [u'butterfli', u'gold', u'thoma'] [u'camel', u'drive', u'highlight', u'weed', u'control', u'measur'] [u'cert', u'earn', u'paramed', u'prais'] [u'champion', u'singh', u'celebr', u'career', u'best'] [u'channel', u'seven', u'offic', u'target', u'probe', u'leak'] [u'chavez', u'win', u'venezuelan', u'referendum'] [u'china', u'step', u'crackdown', u'porn'] [u'coast', u'patrol', u'volunt', u'unhappi', u'lock'] [u'coff', u'model', u'townsvill'] [u'coliban', u'seek', u'comment', u'futur', u'water', u'plan'] [u'communiti', u'canvass', u'militari', u'depot'] [u'problem', u'delay', u'licens', u'registr'] [u'council', u'want', u'ratepay', u'charit'] [u'cycl', u'silver', u'medallist', u'arndt', u'fin', u'report'] [u'disast', u'australian', u'tabl', u'tenni'] [u'dazzl', u'iraq', u'storm', u'olymp', u'quarter'] [u'dept', u'admit', u'illeg', u'mill'] [u'doctor', u'critic', u'hospit', u'servic'] [u'doctor', u'criticis', u'emerg', u'chopper', u'promis'] [u'doctor', u'surgeri', u'closur', u'highlight', u'shortag'] [u'dolphin', u'decis', u'short', u'sight'] [u'domin', u'leisel', u'fastest', u'breast', u'stroke', u'final'] [u'dont', u'knock', u'aloisi'] [u'downer', u'discuss', u'trade', u'polit', u'chines'] [u'search', u'tomato', u'virus', u'sign'] [u'drive', u'violat', u'frustrat', u'bendigo', u'polic'] [u'eagl', u'focus', u'form', u'say', u'worsfold'] [u'effort', u'save', u'die', u'gum'] [u'emerg', u'respons', u'affect', u'work', u'ban', u'union'] [u'england', u'thriller'] [u'entek', u'energi', u'list'] [u'involv', u'rogerson', u'case', u'polic'] [u'experi', u'rescu', u'aussi', u'cook'] [u'extend', u'rock', u'lobster', u'season', u'remain', u'undecid'] [u'fairweath', u'shock', u'round', u'loser'] [u'falconio', u'hear', u'tell', u'tape', u'accus'] [u'falconio', u'see', u'aliv', u'disappear', u'court', u'tell'] [u'fight', u'break', u'afghanistan'] [u'firefight', u'contain', u'northern', u'fire'] [u'firefight', u'continu', u'monitor', u'sarina', u'blaze'] [u'firefight', u'blaze', u'control'] [u'fisheri', u'dept', u'halt', u'light', u'boat'] [u'trial', u'stab', u'murder'] [u'advis', u'stand', u'firm', u'children', u'overboard'] [u'health', u'minist', u'conduct', u'icac', u'scrutini'] [u'fraser', u'ambul', u'workload', u'review'] [u'agenda', u'minist', u'visit', u'boot', u'maker'] [u'fund', u'boost', u'asthma', u'research'] [u'german', u'cyclist', u'arndt', u'livid', u'exclus'] [u'germani', u'lead', u'event'] [u'gippsland', u'farmer', u'push', u'trapper'] [u'gold', u'coast', u'dolphin', u'hope', u'berth'] [u'golkar', u'endors', u'megawati', u'presid'] [u'goondiwindi', u'end', u'kingaroy', u'final', u'hop'] [u'govt', u'urg', u'consid', u'break', u'power', u'util'] [u'govt', u'waiv', u'disabl', u'servic', u'debt'] [u'grant', u'help', u'train', u'tourism', u'volunt'] [u'great', u'southern', u'tourism', u'gain', u'grind'] [u'greek', u'sprinter', u'await', u'olymp', u'fat'] [u'greek', u'sprinter', u'delay', u'dope', u'hear'] [u'gwydir', u'council', u'pleas', u'expo', u'success'] [u'hall', u'bartel', u'book', u'tribun', u'date'] [u'health', u'worker', u'test', u'posit'] [u'henman', u'crash', u'olymp', u'flop'] [u'hilton', u'sister', u'marri', u'vega'] [u'hockeyroo', u'sink', u'south', u'african'] [u'hoogi', u'gatecrash', u'popov', u'farewel'] [u'hop', u'remain', u'dump', u'polici', u'chang'] [u'hospit', u'back', u'nurs', u'sack', u'threat'] [u'howard', u'unfit', u'lead'] [u'hydro', u'aluminium', u'work', u'ban', u'tip', u'escal'] [u'iran', u'journalist', u'detain', u'najaf'] [u'iraq', u'nation', u'confer', u'deleg', u'meet', u'shiit'] [u'judo', u'bodi', u'postpon', u'decis', u'sanction'] [u'karratha', u'child', u'care', u'help', u'local', u'employ'] [u'killer', u'give', u'second', u'life', u'sentenc'] [u'kingaroy', u'hospit', u'claim', u'specialist', u'success'] [u'kitajima', u'stike', u'gold', u'breast', u'stroke'] [u'labor', u'parti', u'discuss', u'futur', u'candid'] [u'langham', u'fall', u'khan', u'storm', u'second', u'round'] [u'lara', u'fastest', u'test', u'run'] [u'lithgow', u'compani', u'bathurst', u'coach'] [u'lynda', u'carter', u'reactiv', u'superpow', u'role'] [u'manaudou', u'end', u'franc', u'year', u'wait', u'gold'] [u'charg', u'beer', u'carton', u'brawl'] [u'charg', u'melbourn', u'underworld', u'murder'] [u'charg', u'go', u'arm', u'public'] [u'expect', u'court', u'port', u'lincoln', u'murder'] [u'hold', u'gangland', u'murder'] [u'kill', u'motorcycl', u'race'] [u'kill', u'mungindi', u'crash'] [u'court', u'murder', u'charg'] [u'marathon', u'favourit', u'radcliff', u'stay', u'silent', u'plan'] [u'massiv', u'turnout', u'venezuela', u'referendum'] [u'matthew', u'look', u'forward', u'clash', u'saint'] [u'give', u'birthday', u'present', u'partner'] [u'mayor', u'meet', u'discuss', u'west', u'futur'] [u'mayor', u'stun', u'illeg', u'naracoort', u'worker'] [u'fin', u'illeg', u'deer', u'hunt'] [u'mental', u'health', u'forum', u'spotlight'] [u'miner', u'return', u'work', u'year', u'absenc'] [u'minist', u'deni', u'medic', u'school', u'credit', u'comment'] [u'mitsubishi', u'worker', u'urg', u'north'] [u'mix', u'result', u'aussi', u'team'] [u'molik', u'pratt', u'advanc', u'athen'] [u'swim', u'gold', u'grab'] [u'wit', u'falconio', u'hear'] [u'mortar', u'mark', u'open', u'iraqi', u'summit'] [u'liver', u'cancer', u'prompt', u'independ', u'help'] [u'murray', u'ferri', u'upgrad'] [u'nagi', u'retain', u'women', u'epe', u'titl'] [u'england', u'meet', u'address', u'health', u'servic'] [u'news', u'hospit', u'downgrad', u'draw', u'critic'] [u'nike', u'pull', u'insensit'] [u'put', u'expans', u'plan', u'hold'] [u'town', u'miss', u'golden', u'sound'] [u'sailor', u'injur', u'naval', u'base', u'incid'] [u'near', u'barrel'] [u'price', u'fall', u'record', u'high'] [u'olympian', u'disappoint', u'crowd', u'number'] [u'opposit', u'parti', u'attack', u'lennon', u'butler', u'payout'] [u'patienc', u'urg', u'gunnedah', u'field', u'day'] [u'petrol', u'price', u'fail', u'dampen', u'outback', u'tourism'] [u'plane', u'debri', u'sunshin', u'coast'] [u'plantat', u'help', u'water', u'conserv', u'studi'] [u'polic', u'appeal', u'help', u'fatal', u'accid', u'probe'] [u'polic', u'await', u'diamond', u'heist', u'forens', u'result'] [u'polic', u'bust', u'insect', u'fight', u'gambl', u'ring'] [u'polic', u'hunt', u'nightclub', u'attack'] [u'polic', u'investig', u'alleg', u'boulia', u'murder'] [u'polic', u'investig', u'cabbi', u'robberi'] [u'polic', u'investig', u'griffith', u'school', u'fire'] [u'polic', u'search', u'miss', u'boy'] [u'polic', u'threaten', u'crackdown', u'warrnambool', u'driver'] [u'portug', u'striker', u'mort', u'match'] [u'power', u'station', u'expans', u'investig'] [u'pressur', u'continu', u'govt', u'power', u'problem'] [u'probe', u'continu', u'hous', u'bomb'] [u'public', u'servant', u'reject', u'govt', u'offer'] [u'puerto', u'rico', u'dream', u'team', u'nightmar'] [u'qualiti', u'life', u'aborigin', u'communiti', u'poor'] [u'real', u'estat', u'agent', u'warn', u'scam'] [u'renmark', u'road', u'fund', u'irk', u'council'] [u'repeat', u'drink', u'drive', u'offend', u'jail'] [u'research', u'point', u'cannabi', u'schizophrenia', u'link'] [u'retail', u'want', u'orang', u'grove', u'remain', u'open'] [u'retir', u'general', u'surpris'] [u'brew', u'plan', u'cut', u'disabl'] [u'rule', u'foul', u'cost', u'thai', u'weightlift', u'olymp'] [u'satellit', u'imag', u'help', u'bushfir', u'fight'] [u'scientist', u'zero', u'termit'] [u'search', u'continu', u'eldorado', u'gold'] [u'search', u'miss', u'pilot', u'suspend'] [u'sewerag', u'check', u'prevent', u'futur', u'problem'] [u'share', u'market', u'slip', u'lower'] [u'shoot', u'gold', u'aussi', u'balogh'] [u'singh', u'captur', u'championship'] [u'south', u'africa', u'snatch', u'relay', u'gold', u'world', u'record'] [u'south', u'korean', u'form', u'game', u'homecom'] [u'springbok', u'prais', u'australian', u'pack'] [u'strong', u'wind', u'whip', u'surf', u'northern'] [u'super', u'crash', u'susilo', u'steal'] [u'swim', u'cycl', u'gold', u'australia'] [u'sydney', u'harbour', u'floor', u'heavili', u'pollut'] [u'talli', u'face', u'judiciari'] [u'tara', u'water', u'treatment', u'plant', u'lead', u'rat', u'rise'] [u'teen', u'tell', u'judg', u'plain'] [u'teeth', u'problem', u'fail', u'stop', u'train', u'success'] [u'telstra', u'consid', u'boost', u'mobil', u'phone', u'coverag'] [u'tenix', u'continu', u'worker', u'lockout'] [u'thorp', u'hackett', u'readi', u'roll', u'free'] [u'thorp', u'make', u'histori', u'free'] [u'soldier', u'kill', u'najaf'] [u'tighter', u'control', u'disappoint', u'plantat', u'grower'] [u'tini', u'turk', u'mutlu', u'join', u'great', u'olymp'] [u'manag', u'flag', u'asbestosi', u'worri'] [u'offici', u'concern', u'lack', u'progress'] [u'tour', u'boost', u'stargaz'] [u'tamar', u'top', u'state', u'assess'] [u'hold', u'australian', u'rape', u'ordeal'] [u'kill', u'gaza', u'strike', u'report'] [u'kill', u'caravan'] [u'discuss', u'burundi', u'refuge', u'massacr'] [u'battl', u'race', u'hate', u'campaign'] [u'record', u'increas', u'matur', u'age', u'student', u'number'] [u'unit', u'group', u'share', u'jump', u'profit', u'increas'] [u'seek', u'answer', u'burundi', u'massacr'] [u'urgent', u'action', u'need', u'save', u'turtl'] [u'venezuela', u'presidenti', u'recal', u'vote', u'extend'] [u'approv', u'freight', u'australia', u'sale'] [u'virgin', u'blue', u'cut', u'sydney', u'alic', u'flight'] [u'move', u'aborigin', u'workplac', u'exploit'] [u'warehous', u'damag', u'shepparton'] [u'warn', u'issu', u'despit', u'bushfir', u'control'] [u'watchdog', u'criticis', u'order', u'report', u'leav'] [u'waugh', u'prais', u'lara', u'mileston'] [u'weekend', u'wind', u'whip', u'monaro', u'field'] [u'wilkinson', u'long', u'await', u'return'] [u'william', u'brincat', u'face', u'court', u'gangland'] [u'william', u'lose', u'appeal'] [u'william', u'serv', u'suspens'] [u'winemak', u'stay', u'deadlin', u'pass'] [u'wit', u'recal', u'falconio', u'sight'] [u'wit', u'tell', u'fieri', u'plane', u'crash'] [u'wood', u'hand', u'chanc', u'gold', u'medal', u'sacrific'] [u'wood', u'pass', u'norman', u'number', u'record'] [u'work', u'stop', u'aldoga', u'smelter'] [u'agenda', u'blame', u'nrls', u'expans'] [u'alien', u'predat', u'crush', u'competit'] [u'nomin', u'can', u'candid'] [u'anger', u'remain', u'despit', u'disabl', u'scheme', u'backdown'] [u'archaeologist', u'link', u'cave', u'john', u'baptist'] [u'aussi', u'shark', u'sink', u'itali'] [u'aussi', u'return', u'form', u'taiwan'] [u'aust', u'china', u'trade', u'deal', u'strengthen', u'tie', u'downer'] [u'aust', u'market', u'move', u'higher'] [u'australian', u'help', u'chines', u'reform'] [u'australia', u'tabl', u'tenni', u'pair', u'lose'] [u'award', u'win', u'author', u'thea', u'astley', u'die'] [u'baghdad', u'blast', u'kill', u'seven', u'najaf', u'fight', u'rag'] [u'bartel', u'suspend', u'player', u'fin', u'tribun'] [u'bear', u'coach', u'happi', u'minor', u'premiership'] [u'belling', u'score', u'land', u'ancestor'] [u'fin', u'illeg', u'dump'] [u'blaze', u'come', u'close', u'boat', u'builder'] [u'boenisch', u'upset', u'odd', u'olymp', u'gold'] [u'boomer', u'angola'] [u'breast', u'stroke', u'champion', u'readi'] [u'britain', u'lead', u'equestrian', u'event'] [u'bronco', u'undecid', u'contest', u'talli', u'charg'] [u'bronco', u'undecid', u'talli', u'charg'] [u'burmes', u'weightlift', u'fail', u'drug', u'test'] [u'burnett', u'river', u'industri', u'woe', u'resolv'] [u'bush', u'announc', u'troop', u'realign'] [u'cabl', u'fault', u'creat', u'toowoomba', u'phone', u'woe'] [u'calend', u'girl', u'strip', u'away', u'age', u'mythsagain'] [u'crackdown', u'internet', u'porn'] [u'candid', u'question', u'politician', u'travel'] [u'carter', u'back', u'venezuela', u'recal', u'result'] [u'cat', u'appeal', u'bartel', u'suspens'] [u'charg', u'drop', u'launceston', u'protest'] [u'children', u'overboard', u'claim', u'verifi', u'scrafton'] [u'china', u'chen', u'surviv', u'danish', u'test', u'claim'] [u'citrus', u'canker', u'surveil', u'continu', u'palaszczuk'] [u'clarenc', u'valley', u'begin', u'restructur'] [u'cobain', u'christma', u'card', u'fetch', u'high', u'price', u'auction'] [u'cochlear', u'share', u'fall', u'profit', u'drop'] [u'communiti', u'soak', u'spong', u'benefit'] [u'communiti', u'cabinet', u'extend', u'region', u'visit'] [u'communiti', u'long', u'term', u'ballarat', u'plan'] [u'concern', u'rais', u'drug', u'law'] [u'coron', u'report', u'hickey', u'death'] [u'coron', u'highlight', u'petrol', u'sniff', u'caus'] [u'council', u'own', u'land', u'sale', u'hervey'] [u'council', u'pressur', u'clean', u'gaswork'] [u'council', u'consid', u'industri', u'develop'] [u'council', u'gaug', u'health', u'risk'] [u'custom', u'seiz', u'worth', u'heroin'] [u'dead', u'consid', u'suspici'] [u'death', u'toll', u'climb', u'chines', u'typhoon'] [u'defenc', u'dept', u'damag', u'seagrass', u'bed', u'coral', u'reef', u'flat'] [u'dive', u'gold', u'greec', u'australia', u'take', u'bronz'] [u'doco', u'screen', u'elect'] [u'doctor', u'group', u'back', u'traine', u'specialist'] [u'downer', u'offer', u'north', u'korea', u'opportun'] [u'drag', u'race', u'teen', u'order', u'road'] [u'drought', u'stop', u'field', u'day'] [u'dwyer', u'help', u'aussi', u'hold', u'argentina'] [u'ead', u'offici', u'sign', u'bulldog', u'post'] [u'edward', u'learn', u'fate', u'today'] [u'electr', u'fault', u'spark', u'warehous', u'blaze'] [u'energi', u'brix', u'urg', u'offer', u'worker', u'entitl'] [u'falconio', u'accus', u'gentleman', u'wit', u'say'] [u'famili', u'defend', u'william', u'face', u'murder', u'charg'] [u'famili', u'lose', u'hope', u'search', u'miss', u'pilot'] [u'famili', u'say', u'turkish', u'driver', u'abduct', u'iraq'] [u'fan', u'cheer', u'jackson', u'outsid', u'court', u'hear'] [u'farmer', u'hop', u'wind', u'farm', u'develop'] [u'farmer', u'tell', u'grow', u'food', u'safe'] [u'fear', u'hold', u'magnet', u'overdevelop'] [u'fear', u'school', u'blaze', u'affect', u'student', u'effort'] [u'feder', u'minist', u'call', u'ring', u'road', u'work'] [u'field', u'day', u'plan', u'track'] [u'flash', u'flood', u'english', u'tourist', u'town'] [u'elvi', u'home', u'welcom', u'renter'] [u'sailor', u'sue', u'voyag', u'disast'] [u'fund', u'shortag', u'stop', u'hour', u'clinic'] [u'geraldton', u'boxer', u'strike'] [u'gold', u'nestruev', u'pistol', u'shoot'] [u'googl', u'market', u'debut', u'loom'] [u'govt', u'invest', u'asthma', u'research'] [u'govt', u'offer', u'council', u'militari', u'depot'] [u'govt', u'reject', u'review', u'claim'] [u'govt', u'urg', u'bolster', u'river', u'murray', u'effort'] [u'group', u'criticis', u'paedophil', u'identifi', u'letter', u'drop'] [u'gunn', u'boss', u'leav', u'forestri', u'group'] [u'guyart', u'win', u'physic', u'battl', u'men', u'foil'] [u'gympi', u'muster', u'organis', u'expect', u'record', u'crowd'] [u'hacker', u'enorm', u'challeng'] [u'hewitt', u'advanc', u'washington', u'classic'] [u'histor', u'hotel', u'undergo', u'redevelop'] [u'hobart', u'hospit', u'play', u'fear'] [u'hockeyroo', u'rival', u'cours', u'semi', u'final'] [u'hospit', u'room', u'improv'] [u'hotel', u'work', u'near', u'finish'] [u'hous', u'market', u'boost', u'boral', u'profit'] [u'hoy', u'medal', u'hop', u'dive'] [u'hunter', u'residenti', u'build', u'approv', u'strong'] [u'icac', u'inquiri', u'head', u'call', u'lawyer', u'focus'] [u'drug', u'cheat', u'say', u'kenteri'] [u'iraqi', u'polic', u'releas', u'report', u'najaf'] [u'iron', u'train', u'derail', u'investig'] [u'irrig', u'urg', u'attend', u'workshop'] [u'israel', u'build', u'hous', u'unit', u'west', u'bank'] [u'japanes', u'edg', u'men', u'team', u'gymnast'] [u'jetstar', u'cancel', u'melbourn', u'hobart', u'flight'] [u'jindabyn', u'land', u'releas', u'loom'] [u'judg', u'blast', u'author', u'babi', u'abus', u'case'] [u'judg', u'queri', u'killer', u'driver', u'lesser', u'charg'] [u'judg', u'rule', u'jail', u'drink', u'driver'] [u'juri', u'retir', u'supermarket', u'robberi', u'case'] [u'kenya', u'reject', u'tribal', u'move', u'evict', u'white', u'farmer'] [u'unlock', u'victori', u'england'] [u'khouri', u'admit', u'invent', u'detail'] [u'korean', u'captain', u'bad', u'injur', u'hockey', u'accid'] [u'korean', u'hockey', u'captain', u'hospit'] [u'labor', u'offici', u'deni', u'bulli', u'claim'] [u'landhold', u'urg', u'vigil'] [u'landhold', u'urg', u'boost', u'safeti'] [u'latham', u'shrug', u'posit', u'poll'] [u'lawyer', u'observ', u'hick', u'hear'] [u'lennon', u'suspend', u'butler', u'golden', u'handshak'] [u'lennon', u'face', u'butler', u'inquisit'] [u'lightweight', u'littl', u'box'] [u'long', u'award', u'sore', u'point', u'veteran'] [u'lynch', u'like', u'starter', u'saint'] [u'accus', u'sell', u'squid', u'illeg'] [u'jail', u'assault', u'friend'] [u'court', u'bowen', u'arm', u'robberi'] [u'mayor', u'doesnt', u'support', u'perman', u'slower', u'speed', u'limit'] [u'meet', u'hear', u'hospit', u'masterplan', u'detail'] [u'meet', u'discuss', u'veteran', u'memori', u'design'] [u'meet', u'focus', u'break', u'hill', u'tourism', u'direct'] [u'explor', u'area', u'expand'] [u'miss', u'tourist'] [u'mistral', u'race', u'void', u'resail'] [u'mix', u'respons', u'aldoga', u'smelter', u'halt'] [u'question', u'seven', u'trade', u'plan'] [u'monto', u'miner', u'get', u'lifelin'] [u'problem', u'like'] [u'wit', u'call', u'falconio', u'trial'] [u'mous', u'muncher', u'fin', u'contest'] [u'back', u'govt', u'drink', u'drive', u'fight'] [u'murali', u'month', u'surgeri'] [u'najaf', u'battl', u'continu', u'amid', u'peac', u'push'] [u'nation', u'attack', u'forc', u'council', u'merger'] [u'nat', u'question', u'rail', u'sale'] [u'nephew', u'guilti', u'strangl', u'aunt'] [u'bird', u'speci', u'philippin'] [u'hardi', u'boss', u'note', u'oblig', u'investor'] [u'nickel', u'run'] [u'norri', u'phelp', u'favour'] [u'water', u'alloc', u'respit', u'irrig'] [u'nurs', u'threaten', u'industri', u'action', u'staff'] [u'opal', u'russia'] [u'opposit', u'suggest', u'port', u'hedland'] [u'pair', u'tell', u'falconio', u'kombi', u'sight'] [u'panel', u'hear', u'lake', u'feder', u'submiss'] [u'phelp', u'thorp', u'rejoin', u'gold', u'chase'] [u'phelp', u'upbeat', u'despit', u'seven', u'gold', u'dream'] [u'phiggl', u'scienc', u'lesson'] [u'aid', u'odd', u'overboard', u'advic'] [u'deni', u'children', u'overboard', u'discrep'] [u'poki', u'tax', u'club'] [u'polic', u'amaz', u'tourist', u'good', u'health'] [u'polic', u'clear', u'hickey', u'death'] [u'polic', u'concern', u'miss', u'tourist'] [u'polic', u'continu', u'probe', u'pedestrian', u'death'] [u'polic', u'hunt', u'jail', u'escape'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'readi'] [u'polic', u'search', u'detent', u'centr', u'escap'] [u'polic', u'seiz', u'heritag', u'list', u'item'] [u'poor', u'season', u'maverick', u'discuss', u'futur'] [u'practic', u'make', u'perfect', u'pottharst'] [u'pratt', u'molik', u'face', u'tough', u'ask', u'round'] [u'protest', u'stand', u'tall', u'tuart'] [u'public', u'ask', u'help', u'syring', u'bandit'] [u'public', u'speaker', u'leav', u'speechless'] [u'public', u'mislead', u'orang', u'grove', u'carr'] [u'purana', u'work'] [u'push', u'continu', u'blood', u'collect', u'facil'] [u'energi', u'plan', u'announc', u'parliament'] [u'rebel', u'fighter', u'kill', u'chechnya'] [u'record', u'profit', u'onesteel'] [u'record', u'ticket', u'sale', u'seat'] [u'recuper', u'pittman', u'face', u'final', u'hurdl'] [u'refuel', u'extend', u'chopper', u'rang'] [u'reith', u'speak', u'latham', u'say'] [u'report', u'find', u'household', u'struggl'] [u'salt', u'affect', u'drink', u'water'] [u'polic', u'budget', u'slash'] [u'school', u'board', u'member', u'accus', u'drug', u'smuggl'] [u'school', u'crash', u'hous'] [u'score', u'pig', u'riot', u'highway'] [u'seminar', u'put', u'focus', u'broadband', u'internet'] [u'servic', u'station', u'worker', u'thwart', u'thiev'] [u'share', u'leap', u'pressur', u'eas'] [u'korean', u'equal', u'women', u'olymp', u'record'] [u'super', u'expans', u'consid'] [u'taiwan', u'warn', u'declar', u'independ'] [u'talk', u'plan', u'coal', u'miner', u'disput'] [u'teacher', u'admit', u'schoolboy'] [u'teacher', u'smaller', u'class', u'size'] [u'teenag', u'stab', u'school'] [u'teen', u'face', u'cunnamulla', u'rape', u'charg'] [u'cite', u'cat', u'docker', u'mele'] [u'tent', u'embassi', u'suspici'] [u'tent', u'embassi', u'resid', u'stay'] [u'thirteen', u'kill', u'azerbaijan', u'collis'] [u'thorp', u'cruis', u'semi'] [u'thorp', u'cours', u'trebl', u'take', u'tumbl'] [u'shot', u'athen', u'effort', u'trigger', u'gold'] [u'tree', u'plant', u'aim', u'tackl', u'salt', u'woe'] [u'tutu', u'diver', u'prompt', u'secur', u'shake'] [u'union', u'lament', u'busi', u'bank', u'centr', u'closur'] [u'union', u'want', u'tenix', u'lockout', u'rule', u'unlaw'] [u'end', u'australia', u'reign'] [u'flight', u'vulner', u'attack', u'warn'] [u'wait', u'recognis', u'chavez', u'victori'] [u'vandal', u'forc', u'welcom', u'sign', u'remov'] [u'hoogenband', u'posit', u'defeat'] [u'crime', u'figur', u'shame'] [u'crime', u'rat', u'rise'] [u'worker', u'award', u'benefit'] [u'vietnam', u'confirm', u'bird', u'death'] [u'fin', u'secur', u'firm', u'prison', u'break'] [u'nurs', u'unhappi', u'ambul', u'procedur'] [u'weightlift', u'put', u'greec', u'medal', u'board'] [u'wild', u'poison', u'creat', u'nativ', u'anim', u'fear'] [u'wind', u'farm', u'threaten', u'indigen', u'sit'] [u'wind', u'help', u'firefight'] [u'winemak', u'evict'] [u'wit', u'identifi', u'accus', u'peopl', u'smuggler'] [u'worker', u'await', u'impact', u'forest', u'restructur'] [u'lead', u'china', u'past', u'tall', u'black'] [u'young', u'bomber', u'name', u'rise', u'star'] [u'youth', u'detent', u'centr', u'closur', u'urg'] [u'year', u'jail', u'plan', u'racist', u'attack', u'dump'] [u'abba', u'fire', u'pakistan', u'riot', u'egypt'] [u'aborigin', u'want', u'talk', u'govt', u'tent', u'embassi'] [u'accus', u'backpack', u'killer', u'face', u'trial', u'month'] [u'agassi', u'overcom', u'goldstein', u'washington', u'open'] [u'aldoga', u'interest', u'aurukin', u'deposit'] [u'alleg', u'child', u'offend', u'charg'] [u'report', u'near', u'profit'] [u'ancient', u'citi', u'remot', u'peru', u'jungl'] [u'anlezark', u'power', u'shoot', u'final'] [u'appoint', u'free', u'ambul', u'crew'] [u'arafat', u'admit', u'mistak', u'back', u'quri'] [u'iraqi', u'kill', u'mosul', u'violenc'] [u'target', u'busi', u'properti', u'investor'] [u'basebal', u'shock', u'japan'] [u'aussi', u'beach', u'volleybal'] [u'aussi', u'flyweight', u'go', u'fight'] [u'aussi', u'softbal', u'china'] [u'aussi', u'women', u'song', u'heat'] [u'australian', u'arrest', u'vietnam', u'drug', u'charg'] [u'australia', u'equestrian', u'medal', u'hop', u'slip'] [u'australia', u'softbal', u'itali', u'merci'] [u'australia', u'oldest', u'olympian', u'crash'] [u'beatti', u'admit', u'power', u'cost', u'offic'] [u'win', u'busi', u'advisori', u'servic', u'tender'] [u'belarussian', u'lead', u'women', u'shoot', u'qualifi'] [u'bell', u'miss', u'cano', u'medal'] [u'report', u'record', u'profit'] [u'blanck', u'hold', u'lead', u'europ', u'class'] [u'boost', u'campaign', u'miss', u'teenag'] [u'brazil', u'look', u'australia', u'ethanol', u'partnership'] [u'busi', u'communiti', u'leader', u'rooki'] [u'busi', u'centr', u'combin', u'effort'] [u'bypass', u'help', u'intersect', u'crash'] [u'ballarat', u'tram', u'work'] [u'candid', u'back', u'oakaje', u'report'] [u'crash', u'put', u'hospit'] [u'cartwright', u'dolphin'] [u'china', u'women', u'hockey', u'semi'] [u'china', u'men', u'badminton', u'cupboard', u'look', u'barer'] [u'china', u'badminton', u'hop', u'smoke'] [u'china', u'gang', u'pass', u'test', u'tabl', u'tenni'] [u'chines', u'south', u'korean', u'pair', u'share', u'tabl', u'tenni', u'medal'] [u'comment', u'seek', u'bark', u'develop', u'plan'] [u'committe', u'coordin', u'wast', u'dump', u'fight'] [u'communiti', u'input', u'bendigo', u'plan'] [u'confess', u'guantanamo', u'hear'] [u'conven', u'lament', u'shire', u'expo', u'snub'] [u'council', u'back', u'develop'] [u'council', u'back', u'entertain', u'centr', u'plan'] [u'council', u'crack', u'water'] [u'council', u'grappl', u'intern'] [u'council', u'probe', u'child', u'care', u'woe'] [u'council', u'reject', u'cost', u'shift', u'plan'] [u'council', u'push', u'age', u'care', u'boost'] [u'council', u'decid', u'worker', u'camp'] [u'crime', u'fall', u'room', u'improv'] [u'crime', u'level', u'fall', u'south', u'west'] [u'democrat', u'widen', u'plan'] [u'doctor', u'laud', u'earli', u'meningococc', u'detect'] [u'downer', u'criticis', u'taiwan', u'comment'] [u'downer', u'upbeat', u'north', u'korean', u'nuclear', u'talk'] [u'dutch', u'join', u'china', u'hockey', u'semi'] [u'employ', u'prompt', u'know', u'worker', u'condit'] [u'endur', u'swimmer', u'short', u'chang', u'olymp'] [u'kangaroo', u'dolphin'] [u'lover', u'jail', u'stab'] [u'explos', u'hit', u'hama', u'milit', u'home'] [u'fail', u'peac', u'mission', u'quit', u'najaf'] [u'falconio', u'accus', u'stand', u'trial'] [u'falconio', u'hear', u'near'] [u'fall', u'dash', u'hoy', u'medal', u'hop'] [u'fear', u'air', u'bathurst', u'jail', u'futur'] [u'fear', u'whale', u'catch', u'shark'] [u'dodger', u'spark', u'kidnap', u'alert'] [u'ferri', u'servic', u'face', u'disrupt'] [u'ferri', u'servic', u'resum', u'sydney'] [u'flag', u'order', u'parliament'] [u'fletcher', u'jone', u'shut', u'oper'] [u'health', u'minist', u'conduct', u'honour'] [u'health', u'minist', u'intimid'] [u'public', u'servant', u'back', u'overboard', u'claim'] [u'fuel', u'price', u'rise', u'surpris'] [u'funer', u'today', u'drove', u'pioneer'] [u'open', u'girl', u'school', u'hall'] [u'googl', u'await', u'ahead', u'sell', u'share'] [u'govt', u'insist', u'channel', u'plan', u'examin'] [u'govt', u'name', u'busi', u'train', u'firm'] [u'govt', u'provid', u'assist', u'mitsubishi', u'worker'] [u'govt', u'releas', u'ranger', u'contamin', u'report'] [u'grandma', u'strike', u'meteorit'] [u'greek', u'quit', u'drama', u'overshadow', u'pool', u'duel'] [u'greek', u'sprinter', u'quit', u'olymp'] [u'green', u'hous', u'plan', u'reject'] [u'hayden', u'applaud', u'odumb'] [u'hayden', u'favour', u'match', u'fix'] [u'heaston', u'go', u'histori', u'accid'] [u'heritag', u'law', u'overhaul'] [u'hope', u'clinic', u'school', u'boost', u'medic', u'student'] [u'hospit', u'manag', u'clear', u'blame', u'girl', u'death'] [u'hostel', u'get', u'safeti', u'fund'] [u'howard', u'deni', u'blix', u'claim'] [u'hutchison', u'secur', u'loan'] [u'iliadi', u'take', u'judo', u'gold'] [u'illawarra', u'hous', u'market', u'slow'] [u'india', u'fight', u'resurrect', u'olymp', u'campaign'] [u'inquiri', u'consid', u'region', u'econom', u'impedi'] [u'iraq', u'expect', u'decis', u'battl', u'najaf'] [u'jackson', u'inspir', u'opal', u'easi'] [u'jackson', u'team', u'fail', u'challeng', u'evid'] [u'kalgoorli', u'join', u'school', u'studi'] [u'labor', u'pick', u'can', u'candid'] [u'landhold', u'urg', u'unit', u'tackl', u'wild', u'dog'] [u'latham', u'diagnos', u'pancreat'] [u'latham', u'hospit'] [u'legisl', u'assembl', u'vote', u'work', u'hour'] [u'lend', u'leas', u'profit', u'reach', u'target'] [u'lyon', u'deal', u'helen', u'doubt'] [u'charg', u'shoot'] [u'convict', u'tourist', u'bash'] [u'die', u'copper', u'accid'] [u'plead', u'guilti', u'stadium', u'break'] [u'man', u'bodi', u'fish'] [u'market', u'slide', u'despit', u'profit', u'report'] [u'martin', u'push', u'nuclear', u'dump'] [u'mayor', u'suggest', u'narrandera', u'youth', u'curfew'] [u'mayor', u'welcom', u'onesteel', u'announc'] [u'men', u'coxless', u'pair', u'four', u'final'] [u'mental', u'guilti', u'kill'] [u'power', u'fight', u'life'] [u'miner', u'launch', u'court', u'action', u'xstrata'] [u'minist', u'reject', u'homeless', u'grog', u'link'] [u'minist', u'reject', u'tuart', u'forest', u'claim'] [u'mobil', u'refineri', u'upgrad'] [u'flight', u'option', u'hast'] [u'hear', u'poki', u'chang', u'concern'] [u'hear', u'communic', u'woe'] [u'nat', u'renew', u'attack', u'beatti', u'govt', u'power'] [u'navi', u'gunner', u'break', u'silenc', u'siev'] [u'gasol', u'spark', u'spain', u'past', u'argentina'] [u'newcastl', u'help', u'lift', u'onesteel', u'profit'] [u'drug', u'law', u'bring', u'line', u'nation'] [u'newsag', u'protest', u'deal'] [u'treatment', u'good', u'gold', u'eczema', u'suffer'] [u'nigeria', u'seek', u'approv', u'send', u'peacekeep'] [u'nightclub', u'trade', u'permit', u'scrutini'] [u'map', u'crazi', u'coloni'] [u'like', u'site', u'wast', u'dump'] [u'odumb', u'hand', u'year'] [u'price', u'bubbl', u'record', u'high'] [u'olyroo', u'despit', u'loss'] [u'hurt', u'freeway', u'crash'] [u'oprah', u'select', u'murder', u'juri'] [u'overboard', u'continu'] [u'packer', u'close', u'burswood', u'casino'] [u'paedophil', u'dunn', u'appeal', u'convict'] [u'photo', u'identifi', u'accus', u'peopl', u'smuggler'] [u'pioneer', u'photojournalist', u'carl', u'mydan', u'die'] [u'plan', u'swan', u'reach', u'work'] [u'mingl', u'farmer', u'quip', u'field', u'day'] [u'wish', u'latham', u'speedi', u'recoveri'] [u'polic', u'fear', u'miss', u'fisherman'] [u'polic', u'suspect', u'falconio', u'case'] [u'polic', u'happi', u'fall', u'crime', u'rate'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'policeman', u'charg', u'decept'] [u'polic', u'offic', u'ask', u'student', u'sell', u'drug'] [u'polic', u'predict', u'drug', u'arrest'] [u'port', u'hedland', u'seek', u'public', u'liabil', u'claim'] [u'potato', u'scallop', u'fall', u'case', u'settl', u'court'] [u'potenti', u'brake', u'problem', u'prompt', u'magna', u'recal'] [u'pottharst', u'close', u'medal', u'dream'] [u'protest', u'focus', u'relief', u'teacher', u'shortag'] [u'public', u'get', u'communiti', u'bank', u'plan'] [u'chickpea', u'industri', u'boom'] [u'set', u'plan', u'develop', u'court'] [u'queanbeyan', u'centr', u'take', u'local', u'bec'] [u'racq', u'drive', u'highway', u'fund', u'boost'] [u'rat', u'slug', u'broom', u'resid'] [u'rebel', u'block', u'road', u'kathmandu'] [u'report', u'find', u'ferri', u'master', u'fault', u'port', u'phillip'] [u'rescu', u'worker', u'search', u'storm', u'english', u'villag'] [u'rhode', u'win', u'gold', u'doubl', u'trap'] [u'riddoch', u'galleri', u'boost', u'visit'] [u'roch', u'lawyer', u'evas', u'sentenc', u'deal'] [u'roddick', u'surviv', u'arthur'] [u'romanian', u'storm', u'gymnast', u'victori'] [u'rumsfeld', u'caution', u'intellig', u'reform'] [u'sadr', u'refus', u'meet', u'iraqi', u'deleg'] [u'polic', u'raid', u'hous'] [u'veteran', u'attend', u'memori', u'servic'] [u'scheidt', u'control', u'laser', u'fleet'] [u'seal', u'popul', u'monitor', u'recoveri'] [u'search', u'miss', u'fisherman', u'continu'] [u'shire', u'reject', u'barker', u'bushfir', u'claim'] [u'time', u'take', u'penalti', u'hand', u'tunisia', u'victori'] [u'korean', u'cours', u'sixth', u'straight', u'archeri', u'gold'] [u'smoke', u'reform', u'submiss', u'favour', u'ban'] [u'spacecraft', u'spot', u'saturn', u'moon'] [u'stingray', u'notch', u'kazakhstan'] [u'mari', u'plead', u'guilti', u'murder'] [u'storm', u'batter', u'zealand'] [u'strike', u'power', u'station', u'worker', u'order', u'work'] [u'strong', u'econom', u'growth', u'forecast', u'continu'] [u'strong', u'magpi', u'high', u'perform', u'post'] [u'student', u'charg', u'school', u'stab'] [u'studi', u'highlight', u'region', u'women', u'unemploy'] [u'super', u'centr', u'mean', u'person', u'touch'] [u'support', u'need', u'help', u'improv', u'communiti', u'condit'] [u'survey', u'highlight', u'continu', u'strong', u'spend'] [u'survey', u'highlight', u'lower', u'busi', u'confid'] [u'swedish', u'veteran', u'slay', u'chines', u'second', u'seed'] [u'sydney', u'get', u'drench', u'drought', u'continu'] [u'talli', u'miss', u'match'] [u'coastal', u'patrol', u'servic', u'long', u'term', u'futur'] [u'research', u'examin', u'dead', u'allergi'] [u'taufik', u'upset', u'gade', u'claim', u'badminton', u'semi', u'place'] [u'thanou', u'regist'] [u'thorp', u'look', u'creat', u'histori'] [u'toowoomba', u'archer', u'target', u'olymp', u'quarter'] [u'tourism', u'zone', u'look', u'greater', u'exposur'] [u'tourist', u'flock', u'warrnambool', u'whale'] [u'injur', u'lightn', u'strike', u'hous'] [u'union', u'take', u'issu', u'station', u'staff', u'plan'] [u'union', u'unsur', u'health', u'shake', u'loss'] [u'world', u'say', u'track', u'cyclist', u'bayley'] [u'swiss', u'fenc', u'gold', u'drought'] [u'marin', u'kill', u'iraq'] [u'star', u'edg', u'greec'] [u'share', u'market', u'climb'] [u'studi', u'isra', u'plan', u'jewish', u'settlement'] [u'unlik', u'storm', u'najaf', u'holi', u'sit'] [u'vet', u'hope', u'silenc', u'incess', u'bark'] [u'govt', u'ban', u'tardi', u'payment', u'fee'] [u'vietnam', u'veteran', u'club', u'focus', u'wall', u'dedic'] [u'vujan', u'salvag', u'victori', u'serb'] [u'wage', u'rise', u'remain'] [u'wallabi', u'unchang', u'nation', u'decid'] [u'lower', u'hous', u'back', u'drink', u'drive', u'legisl'] [u'warrant', u'issu', u'rebel', u'accus', u'kill'] [u'whale', u'explor', u'inner', u'sydney', u'harbour'] [u'wilkinson', u'make', u'long', u'await', u'return'] [u'woman', u'plead', u'guilti', u'murder', u'charg'] [u'wood', u'miss', u'dutch', u'master', u'strike', u'gold'] [u'workshop', u'consid', u'retail', u'plan'] [u'assist', u'polic', u'reed', u'murder', u'inquiri'] [u'accid', u'spark', u'demolit', u'firm', u'probe'] [u'accid', u'spark', u'northern', u'spinal', u'unit'] [u'govt', u'asbesto'] [u'action', u'group', u'river', u'mine', u'plan'] [u'action', u'group', u'protest', u'power', u'station'] [u'year', u'phone', u'line', u'request', u'turn'] [u'regul', u'chang', u'delay'] [u'alic', u'resid', u'support', u'water', u'price', u'chang', u'studi'] [u'offer', u'tafe', u'fee', u'pledg'] [u'amaq', u'welcom', u'fluorid', u'commit'] [u'amcor', u'optimist', u'despit', u'profit', u'drop'] [u'anger', u'plan', u'wage', u'rise', u'burnett', u'councillor'] [u'anthoni', u'urg', u'prove', u'clinic', u'fund', u'pledg'] [u'asic', u'ban', u'rivkin', u'life'] [u'audina', u'thank', u'badminton', u'final', u'berth'] [u'aussi', u'pair', u'women', u'backstrok', u'semi'] [u'aussi', u'beach', u'volleybal', u'wait', u'result'] [u'australian', u'arrest', u'vietnam', u'drug', u'charg'] [u'australian', u'govt', u'worker', u'arriv'] [u'australia', u'philippin', u'hold', u'navi', u'exercis'] [u'author', u'choos', u'site', u'emerg'] [u'aziz', u'pakistan'] [u'ballarat', u'swimmer', u'miss', u'relay', u'medal'] [u'bartel', u'free', u'play', u'final'] [u'bayley', u'pump', u'keirin'] [u'birth', u'unnecessarili', u'clog', u'hospit'] [u'blackburn', u'head', u'finish'] [u'blood', u'carpet', u'french', u'fencer', u'advanc'] [u'bluescop', u'profit'] [u'boomer', u'star', u'scare'] [u'boomer', u'urg', u'chang', u'strategi'] [u'box', u'show', u'slug', u'court'] [u'hurt', u'drag'] [u'brack', u'welcom', u'lloyd', u'appoint', u'probe'] [u'brigg', u'line', u'world', u'titl', u'bout'] [u'brown', u'lynch', u'shrug', u'injuri', u'woe'] [u'busi', u'defenc', u'work', u'updat'] [u'butler', u'deni', u'sell', u'stori'] [u'butler', u'negoti', u'pay', u'interview'] [u'butler', u'resign', u'wont', u'investig', u'polic'] [u'butt', u'steer', u'pakistan', u'home', u'south', u'korea'] [u'dubbo', u'emerg', u'servic', u'boost'] [u'campaign', u'aim', u'save', u'histor', u'cinema'] [u'canberra', u'face', u'water', u'restrict'] [u'cape', u'barren', u'visit', u'consid', u'step', u'land', u'handback'] [u'plant', u'adelaid', u'economi'] [u'case', u'murder', u'inform', u'close'] [u'caus', u'latham', u'ill'] [u'chamber', u'back', u'aust', u'china', u'plan'] [u'china', u'south', u'korea', u'play', u'tabl', u'tenni', u'doubl', u'gold'] [u'coff', u'invit', u'enter', u'livabl', u'citi', u'award'] [u'commonwealth', u'bank', u'job', u'union'] [u'competit', u'help', u'horsham', u'fuel', u'price'] [u'convent', u'centr', u'overcom', u'site', u'hurdl'] [u'corbel', u'depress', u'bout'] [u'council', u'agre', u'indigen', u'flag'] [u'council', u'approv', u'hotel', u'demolit', u'permit'] [u'council', u'ask', u'rethink', u'tram', u'viabil'] [u'council', u'back', u'govt', u'cut', u'studi'] [u'council', u'brief', u'militari', u'plan'] [u'council', u'candid', u'brief'] [u'council', u'consid', u'kerbsid', u'recycl'] [u'council', u'happi', u'elector', u'review', u'report'] [u'council', u'like', u'accept', u'elector', u'chang'] [u'council', u'need', u'loan', u'railway', u'revamp'] [u'council', u'promis', u'creek', u'pollut'] [u'council', u'meet', u'golf', u'club', u'request'] [u'court', u'back', u'decis', u'drop', u'sharon', u'case'] [u'court', u'reject', u'appeal', u'train', u'death'] [u'dental', u'clinic', u'upbeat', u'equip', u'upgrad'] [u'dept', u'defend', u'effort', u'relief', u'teacher', u'shortag'] [u'diamantina', u'budget', u'deliv', u'rate', u'rise'] [u'disabl', u'carer', u'begin', u'industri', u'campaign'] [u'disabl', u'support', u'grant', u'reinstat'] [u'doubt', u'cast', u'truck', u'law'] [u'downer', u'wont', u'comment', u'taiwan', u'question'] [u'dutch', u'hockey', u'champ', u'surviv', u'south', u'african', u'scare'] [u'guerrouj', u'shake', u'doubt', u'go', u'gold'] [u'engin', u'problem', u'forc', u'emerg', u'land'] [u'tourism', u'oper', u'seek', u'forest'] [u'escap', u'face', u'charg'] [u'problem', u'cost', u'australia', u'billion', u'report'] [u'farmer', u'conserv', u'incent'] [u'south', u'coast', u'face', u'bushfir', u'threat'] [u'fast', u'rail', u'servic', u'year', u'away'] [u'kill', u'baghdad', u'advanc'] [u'fight', u'hear', u'najaf', u'despit', u'truce'] [u'fisherman', u'throw', u'piranha', u'dutch', u'canal'] [u'remain', u'hospit', u'naval', u'accid'] [u'fuel', u'reduct', u'burn', u'plan', u'today'] [u'german', u'win', u'shoot', u'gold', u'despit', u'poor', u'final'] [u'global', u'warm', u'banish', u'cold', u'winter'] [u'googl', u'price', u'fall', u'short', u'predict'] [u'googl', u'receiv', u'share', u'ahead'] [u'govern', u'agre', u'citrus', u'canker', u'plan'] [u'govern', u'urg', u'chang', u'race', u'hate', u'law'] [u'govt', u'announc', u'illawarra', u'health', u'boost'] [u'govt', u'criticis', u'stall', u'releas', u'bushfir'] [u'govt', u'urg', u'releas', u'ranger', u'inquiri', u'report'] [u'govt', u'urg', u'power', u'break', u'retreat', u'stalem'] [u'grand', u'final', u'ticket', u'caus', u'headach'] [u'greek', u'sprinter', u'fake', u'accid'] [u'group', u'threaten', u'kill', u'journalist', u'iraq'] [u'hansen', u'blame', u'pressur', u'bronz', u'finish'] [u'hanson', u'jone', u'final'] [u'hawk', u'semi', u'hoogi', u'popov'] [u'height', u'rule', u'protect', u'botan', u'garden'] [u'hewitt', u'cruis', u'washington', u'quarter'] [u'hillari', u'featur', u'antarctica', u'documentari'] [u'hop', u'high', u'power', u'surgeri'] [u'howard', u'campaign', u'adelaid', u'margin'] [u'hoy', u'father', u'reflect', u'olymp', u'fall'] [u'huegil', u'power', u'butterfli', u'heat'] [u'deliv', u'increas', u'profit'] [u'icac', u'accus', u'carr', u'contempt'] [u'idol', u'sing', u'virtu', u'farm', u'safeti', u'award'] [u'inadequ', u'staff', u'leav', u'age', u'care', u'union'] [u'inquest', u'hear', u'boat', u'death', u'detail'] [u'interpret', u'misunderstand', u'wit', u'say'] [u'iran', u'warn', u'preemptiv', u'strike', u'forc'] [u'iraqi', u'agricultur', u'deleg', u'train'] [u'judg', u'accus', u'masturb', u'court', u'resign'] [u'judg', u'rob', u'highlight', u'crime', u'problem'] [u'label', u'help', u'australian', u'water', u'effici'] [u'lameroo', u'grain', u'storag', u'centr'] [u'landhold', u'action', u'valuat', u'increas'] [u'landslid', u'flood', u'caus', u'death', u'japan'] [u'liber', u'question', u'oppon', u'select'] [u'likud', u'deliv', u'blow', u'gaza', u'pullout', u'plan'] [u'local', u'push', u'decis', u'leighton', u'beach', u'site'] [u'unemploy', u'fail', u'boost', u'wag'] [u'mackenzi', u'paton', u'miss', u'free'] [u'magistr', u'prison', u'rape', u'comment', u'inappropri'] [u'malaysia', u'studi', u'seek', u'submiss'] [u'malaysia', u'move', u'contain', u'bird', u'outbreak'] [u'jail', u'child', u'charg'] [u'mar', u'offer', u'wateri', u'clue'] [u'martin', u'lawyer', u'attempt', u'head', u'defam', u'suit'] [u'matilda', u'fielder', u'score', u'olymp', u'goal'] [u'matilda', u'midfield', u'score', u'olymp', u'goal'] [u'mayor', u'vow', u'fight', u'health', u'servic', u'demis'] [u'mcconnel', u'take', u'seventh', u'event'] [u'megawati', u'unveil', u'coalit'] [u'men', u'volleybal', u'lose', u'itali'] [u'mersey', u'staff', u'urg', u'accept', u'roster', u'arrang'] [u'mildura', u'shooter', u'face', u'tough', u'olymp', u'target'] [u'million', u'spend', u'road', u'black', u'spot'] [u'miss', u'iranian', u'diplomat', u'report'] [u'mitsubishi', u'order', u'worker', u'holiday'] [u'modifi', u'discoveri', u'readi', u'march', u'launch'] [u'fund', u'ethanol', u'refineri', u'plan'] [u'mortar', u'attack', u'najaf', u'kill', u'wound'] [u'hear', u'disabl', u'fund', u'concern'] [u'question', u'crown', u'land', u'moratorium'] [u'rais', u'worri'] [u'multilingu', u'offer', u'parent', u'support'] [u'evict', u'embattl', u'winemak', u'tenant'] [u'najaf', u'fight', u'intensifi', u'govt', u'warn'] [u'navi', u'doctor', u'escap', u'suspens'] [u'station', u'expect', u'boost', u'remot', u'polic'] [u'water', u'ban', u'loom', u'toowoomba'] [u'nightclub', u'extend', u'trade', u'hour'] [u'council', u'decis', u'plan'] [u'sight', u'whoop', u'cough', u'outbreak'] [u'nurs', u'home', u'resid', u'unabl', u'afford', u'healthcar'] [u'oscar', u'win', u'compos', u'bernstein', u'die'] [u'pakistan', u'polic', u'captur', u'qaeda', u'suspect', u'shoot'] [u'parent', u'preschool', u'teacher', u'wag'] [u'park', u'set', u'archeri', u'record', u'aussi', u'cuddihi'] [u'petrol', u'station', u'link', u'leukaemia'] [u'phelp', u'possibl', u'eighth', u'medal', u'chanc'] [u'pilot', u'bodi', u'wreckag'] [u'pittman', u'declar', u'rare'] [u'pittman', u'rare', u'race'] [u'pittman', u'hawk', u'huegil', u'song'] [u'plan', u'review', u'lawyer', u'appoint', u'welcom'] [u'advis', u'face', u'overboard', u'inquiri', u'labor'] [u'court', u'delay', u'australian', u'challeng'] [u'polic', u'fail', u'flush', u'toilet', u'thiev'] [u'polic', u'probe', u'coast', u'theft'] [u'polic', u'seek', u'school', u'vandal', u'wit'] [u'politician', u'hit', u'chang', u'medal', u'criteria'] [u'portug', u'suffer', u'humili', u'olymp', u'exit'] [u'prison', u'salvador', u'revolt'] [u'public', u'miner', u'camp', u'plan'] [u'qanta', u'profit', u'take'] [u'launch', u'health', u'blueprint'] [u'racist', u'target', u'adelaid', u'shop'] [u'ranger', u'report', u'comment', u'hamper', u'prosecut'] [u'rate', u'rise', u'kolan', u'shire', u'ratepay'] [u'report', u'give', u'hospit', u'site', u'clear'] [u'sadr', u'face', u'final', u'hour', u'iraq', u'govt'] [u'schacht', u'slack', u'norwegian'] [u'school', u'model', u'keep', u'student', u'year'] [u'senior', u'play', u'wood', u'ohio'] [u'sentenc', u'appeal', u'send', u'policeman', u'jail'] [u'sharon', u'press', u'gaza', u'pullout'] [u'shock', u'defeat', u'inou', u'end', u'gold', u'medal', u'dream'] [u'smatter', u'rain', u'eas', u'danger'] [u'southcorp', u'make', u'profit', u'turnaround'] [u'south', u'korea', u'rule', u'parti', u'leader', u'resign'] [u'storm', u'landslid', u'wreak', u'havoc', u'scotland', u'franc'] [u'strong', u'growth', u'predict', u'barossa', u'wine', u'product'] [u'strong', u'expect', u'land', u'releas'] [u'strong', u'profit', u'report', u'lift', u'share', u'market'] [u'strong', u'quak', u'jolt', u'northern', u'japan'] [u'student', u'investig', u'nazi', u'websit'] [u'tall', u'black', u'stun', u'world', u'champion', u'serb'] [u'task', u'forc', u'moot', u'tackl', u'skill', u'shortag'] [u'tear', u'gold', u'vezzali'] [u'thorp', u'short', u'search', u'challeng'] [u'tourism', u'industri', u'urg', u'join', u'forum'] [u'troubl', u'travel', u'firm', u'sell', u'today'] [u'truck', u'spill', u'creat', u'traffic'] [u'aussi', u'row', u'team', u'qualifi', u'final'] [u'kill', u'ghraib', u'report', u'implic'] [u'cooper', u'china', u'semi', u'final'] [u'union', u'order', u'compens'] [u'unseed', u'dane', u'bronz', u'badminton', u'mix'] [u'victim', u'kill', u'rule', u'relev', u'appeal'] [u'vision', u'problem', u'cost', u'communiti', u'billion'] [u'voter', u'turn', u'power', u'debat', u'beatti'] [u'wallabi', u'place', u'hide', u'say', u'jone'] [u'walter', u'cronkit', u'sign'] [u'trade', u'hour', u'extens', u'vote'] [u'site', u'prompt', u'school', u'paedophil', u'investig'] [u'weightlift', u'fail', u'drug', u'test', u'name'] [u'wildcat', u'south', u'croc', u'clash'] [u'win', u'germani', u'england', u'shock', u'defeat'] [u'woman', u'rescu', u'fall'] [u'world', u'learn', u'love', u'insect'] [u'zhang', u'suprem', u'despit', u'hurt'] [u'zhou', u'take', u'women', u'badminton', u'singl', u'bronz'] [u'mitsubishi', u'worker', u'accept', u'offer'] [u'aborigin', u'remain', u'return', u'communiti'] [u'ghraib', u'doctor', u'ignor', u'medic', u'ethic'] [u'debat', u'dragway', u'site'] [u'african', u'staff', u'nurs', u'shortag'] [u'agassi', u'waltz', u'washington', u'quarter', u'final'] [u'alic', u'spring', u'host', u'sustain', u'confer'] [u'deni', u'delay', u'textil', u'invest'] [u'pledg', u'murwillumbah', u'casino', u'rail', u'fund'] [u'promis', u'fund', u'adelaid', u'hospit'] [u'launch', u'shepparton', u'offic'] [u'ambassador', u'deni', u'aust', u'allianc', u'damag'] [u'ambul', u'offic', u'test', u'spark', u'industri', u'woe'] [u'anger', u'reduc', u'court', u'sit'] [u'aussi', u'judoka', u'exit', u'heavyweight', u'competit'] [u'aussi', u'welterweight', u'go', u'athen'] [u'australian', u'medal', u'count', u'expect'] [u'award', u'celebr', u'tourism', u'effort'] [u'ballarat', u'consid', u'spencer', u'display'] [u'bank', u'chang', u'tip', u'hurt', u'region'] [u'barca', u'lui', u'garcia', u'pois', u'join', u'liverpool'] [u'bashir', u'file', u'lawsuit', u'arrest'] [u'berrigan', u'tiger', u'match'] [u'confirm', u'india', u'talk'] [u'bird', u'virus', u'pig'] [u'broadford', u'footbal', u'club', u'warn', u'stop', u'rough', u'play'] [u'colleg', u'stay', u'stand', u'facil'] [u'canberra', u'colleg', u'celebr', u'student', u'olymp'] [u'cancer', u'fight', u'requir', u'person', u'council'] [u'carr', u'retract', u'fail', u'contempt', u'threat'] [u'carr', u'haul', u'icac'] [u'sale', u'revers'] [u'theft', u'decreas'] [u'cataract', u'gorg', u'access', u'improv'] [u'cbas', u'bordertown', u'plan'] [u'chamber', u'seek', u'convent', u'centr', u'detail'] [u'cheap', u'import', u'devonport', u'textil', u'worker', u'job'] [u'cheat', u'stand', u'elect'] [u'china', u'humbl', u'argentina'] [u'china', u'peat', u'campaign', u'falter'] [u'chines', u'gold', u'bronz', u'tabl', u'tenni'] [u'communiti', u'servic', u'extortionist'] [u'communiti', u'urg', u'support', u'mental', u'health', u'patient'] [u'council', u'air', u'boundari', u'chang', u'plan', u'fear'] [u'council', u'chief', u'resign', u'impuls'] [u'council', u'defer', u'wetland', u'decis'] [u'council', u'lay', u'welcom', u'poultri', u'farm'] [u'council', u'rethink', u'rail', u'trail', u'rout'] [u'council', u'speak', u'cost', u'blowout'] [u'council', u'want', u'anim', u'pest', u'kosciuszko'] [u'court', u'jail', u'assault', u'charg'] [u'crow', u'goodwin', u'expect', u'play'] [u'custom', u'unhappi', u'telco', u'servic'] [u'deadlin', u'loom', u'tree', u'clear', u'ballot'] [u'deak', u'walk', u'olymp', u'bronz'] [u'dept', u'watch', u'altern', u'fuel', u'trial', u'emiss'] [u'detaine', u'refus', u'meat', u'maggot'] [u'determin', u'davenport', u'continu', u'win', u'streak'] [u'displac', u'sudanes', u'threaten', u'enter', u'chad'] [u'doctor', u'claim', u'shortag', u'patient', u'risk'] [u'doubt', u'cast', u'tourism', u'forum'] [u'dragon', u'edg', u'fade', u'knight'] [u'driver', u'high', u'speed', u'crash', u'sentenc', u'year'] [u'driver', u'plead', u'guilti', u'fatal', u'chase', u'charg'] [u'east', u'timores', u'perman', u'resid'] [u'engelsman', u'lenton', u'surg', u'semi'] [u'explor', u'well', u'flow', u'prove', u'promis'] [u'farina', u'specul', u'unfound', u'boss'] [u'father', u'face', u'yacht', u'race'] [u'feder', u'health', u'sell', u'pharmaci'] [u'festiv', u'promis', u'broom', u'boost'] [u'festiv', u'right', u'note', u'jazz', u'buff'] [u'field', u'guid', u'fisher'] [u'file', u'share', u'firm', u'round', u'piraci', u'disput'] [u'forum', u'hear', u'region', u'climat', u'threat'] [u'fuel', u'burn', u'continu'] [u'fund', u'seek', u'manag', u'resid', u'revamp'] [u'fund', u'albani', u'heritag', u'sit'] [u'galkina', u'win', u'shoot', u'gold', u'russia'] [u'game', u'thorp', u'relay', u'flop'] [u'garrett', u'temporarili', u'stave', u'evict'] [u'gatto', u'complain', u'prison', u'condit'] [u'govt', u'defend', u'teacher', u'payment', u'reward'] [u'govt', u'play', u'blame', u'game', u'school', u'fund'] [u'govt', u'stand', u'greater', u'bunburi', u'region', u'scheme'] [u'govt', u'urg', u'waiv', u'charg', u'help', u'hous', u'student'] [u'govt', u'wont', u'challeng', u'union', u'site', u'access'] [u'grant', u'boost', u'sawmil', u'equip'] [u'greek', u'unawar', u'dope', u'case'] [u'growth', u'expect', u'ruin', u'barossa', u'charact'] [u'hackett', u'steven', u'final'] [u'handback', u'ceremoni', u'mark', u'wave', u'hill', u'protest'] [u'hawk', u'target'] [u'hobart', u'hospit', u'crisi', u'worsen'] [u'hockeyroo', u'medal', u'hop', u'slip', u'away'] [u'hope', u'aliv', u'eden', u'resort', u'plan'] [u'howard', u'lee', u'unveil', u'biodivers', u'plan'] [u'beer', u'bear', u'bear'] [u'hunter', u'job', u'growth', u'predict', u'slow'] [u'indonesian', u'bronz', u'badminton', u'doubl'] [u'insect', u'base', u'robot', u'like', u'magic'] [u'hear', u'teacher', u'transfer', u'disput'] [u'isra', u'court', u'warn', u'ignor', u'barrier', u'rule'] [u'jackson', u'accus', u'famili', u'offer', u'hous'] [u'japan', u'grab', u'olymp', u'judo', u'gold'] [u'jubile', u'mine', u'strike', u'record', u'profit'] [u'judg', u'maintain', u'peirsol', u'break', u'rule'] [u'katter', u'defend', u'support', u'candid'] [u'kerri', u'challeng', u'discredit', u'militari', u'servic'] [u'kluft', u'take', u'control', u'heptathlon'] [u'knight', u'lose', u'perri', u'parson', u'georg', u'clash'] [u'kookaburra', u'score', u'gasp', u'india'] [u'minut', u'chang', u'worri'] [u'latham', u'confid', u'fit', u'govern'] [u'latham', u'mend'] [u'lead', u'iraqi', u'cleric', u'discharg', u'hospit'] [u'leaflet', u'spark', u'vicious', u'privat', u'public', u'school', u'spat'] [u'warn', u'long', u'term', u'properti', u'valuat'] [u'littl', u'prepar', u'second', u'olymp', u'bout'] [u'local', u'govt', u'group', u'back', u'council', u'miner', u'camp'] [u'local', u'hospit', u'link', u'metropolitan'] [u'macdonald', u'run', u'hawk'] [u'face', u'onlin', u'stalk', u'charg'] [u'jail', u'offenc', u'famili'] [u'place', u'good', u'behaviour', u'bond', u'dump'] [u'face', u'bank', u'robberi', u'trial'] [u'court', u'woman', u'death'] [u'market', u'oper', u'sure', u'vacanc', u'fill'] [u'melbourn', u'reservoir', u'half'] [u'men', u'tabl', u'tenni', u'doubl', u'final', u'china'] [u'micro', u'crustacean', u'eat', u'away', u'dengu', u'fever', u'rat'] [u'minist', u'outrag', u'illeg', u'land', u'clear'] [u'mix', u'respons', u'long', u'term', u'jobless', u'fall'] [u'mother', u'kid', u'rescu', u'burn', u'home'] [u'scuffl', u'interrupt', u'rail', u'polici', u'launch'] [u'najaf', u'fight', u'kill', u'iraqi', u'hour'] [u'nambucca', u'hous', u'quota', u'expans', u'moot'] [u'nation', u'institut', u'better', u'age', u'care'] [u'nauru', u'need', u'million', u'avoid', u'econom', u'ruin'] [u'nerimbera', u'get', u'town', u'water'] [u'widen', u'drug', u'cheat'] [u'microsoft', u'secur', u'flaw'] [u'newton', u'march', u'knight', u'loss'] [u'work', u'agreement', u'seek', u'hospit', u'worker'] [u'resolut', u'jetstar', u'flight', u'impass'] [u'nurseri', u'manag', u'fin', u'plant', u'smuggl'] [u'odour', u'caus', u'citi', u'build', u'evacu'] [u'high', u'iraq', u'violenc', u'escal'] [u'high', u'worri', u'wall', u'street'] [u'price', u'forc', u'qanta', u'fare', u'rise'] [u'ombudsman', u'seek', u'phone', u'impass'] [u'opposit', u'wont', u'pursu', u'butler'] [u'pampl', u'place', u'ohio'] [u'patient', u'benefit', u'industri', u'action'] [u'casino', u'takeov', u'wont', u'chang', u'poki'] [u'wrap', u'burswood', u'casino'] [u'peak', u'age', u'group', u'back', u'committe', u'recommend'] [u'phelp', u'track', u'fifth', u'gold'] [u'phoenix', u'book', u'final', u'showdown', u'swift'] [u'plan', u'hamper', u'farmer', u'develop', u'idea'] [u'deni', u'downer', u'damag', u'tie'] [u'polic', u'probe', u'attempt', u'abduct'] [u'polic', u'raid', u'trigger', u'weapon', u'charg'] [u'polic', u'seek', u'help', u'investig', u'rodeo', u'rape'] [u'poll', u'find', u'australian', u'accept', u'asylum'] [u'port', u'close', u'minor', u'premiership'] [u'port', u'kembla', u'recognis', u'bluescop', u'profit', u'boost'] [u'power', u'tougher', u'unit', u'say', u'malthous'] [u'power', u'util', u'contractor', u'strike', u'worker'] [u'school', u'teacher', u'protest', u'problem'] [u'public', u'health', u'council'] [u'qanta', u'hike', u'disgrac'] [u'council', u'unhappi', u'plan'] [u'queensland', u'rail', u'job'] [u'ract', u'urg', u'motorist', u'shop', u'fuel'] [u'rail', u'defect', u'like', u'case', u'pilbara', u'derail'] [u'rainfal', u'predict', u'worri', u'farmer'] [u'kangaroo', u'number', u'plummet', u'hunter'] [u'report', u'critic', u'health', u'shake'] [u'report', u'shatter', u'healthi', u'countri', u'folk', u'myth'] [u'research', u'work', u'perfect', u'macadamia'] [u'resourc', u'lead', u'market', u'posit', u'finish'] [u'rocki', u'cyclist', u'olymp', u'gold'] [u'crucial', u'liber', u'elect', u'howard'] [u'sadr', u'hand', u'mosqu', u'key', u'aid'] [u'sadr', u'order', u'hostag', u'journalist', u'releas'] [u'school', u'traffic', u'marshal'] [u'school', u'uncertainti', u'cost', u'alic', u'teacher', u'union'] [u'secur', u'tight', u'olyroo', u'iraq', u'clash'] [u'share', u'sale', u'allow', u'fruit', u'debt', u'repay'] [u'share', u'sale', u'allow', u'fruit', u'coop', u'debt', u'repay'] [u'shead', u'win', u'dobel', u'prize'] [u'slovak', u'twin', u'retain', u'cano', u'slalom', u'titl'] [u'grog', u'case', u'hold', u'cameraman', u'seek'] [u'smoke', u'relat', u'ill', u'devast'] [u'soldier', u'think', u'shoot', u'brumbi'] [u'south', u'west', u'share', u'road', u'safeti', u'fund'] [u'state', u'fund', u'traffic', u'black', u'spot'] [u'student', u'high', u'tech', u'trial', u'bring', u'result'] [u'studi', u'consid', u'power', u'plant', u'plan'] [u'stunt', u'pilot', u'snag', u'stardust', u'nasa'] [u'submiss', u'roll', u'malle', u'wast', u'dump', u'plan'] [u'sugar', u'mill', u'sustain', u'question'] [u'survey', u'highlight', u'poor', u'agricultur', u'sale'] [u'suspend', u'sentenc', u'ecstasi', u'dealer'] [u'sydney', u'beach', u'volleybal', u'champ', u'head', u'head'] [u'taufik', u'meet', u'shon', u'badminton', u'final'] [u'teach', u'code', u'ethic', u'develop'] [u'teen', u'fight', u'alleg', u'attack'] [u'teen', u'machin', u'lift', u'dope', u'gloom'] [u'toddler', u'die', u'consider', u'time', u'inquest'] [u'tourki', u'make', u'splash', u'platform', u'preliminari'] [u'tredrea', u'play', u'magpi'] [u'trial', u'date', u'falconio', u'murder', u'accus'] [u'tribe', u'great', u'excus', u'poor', u'math', u'skill'] [u'dead', u'hurt', u'tanker', u'smash'] [u'kill', u'freeway', u'accid'] [u'marin', u'kill', u'iraq', u'anbar', u'provinc'] [u'wound', u'kathmandu', u'bomb', u'blast'] [u'union', u'air', u'concern'] [u'union', u'back', u'public', u'servic', u'reviv', u'plan'] [u'union', u'healthscop', u'agre', u'trial', u'emerg'] [u'scotch', u'rumour', u'cut', u'asset', u'sale'] [u'trio', u'ottey', u'sprint', u'heat'] [u'veteran', u'rememb', u'kokoda', u'ordeal'] [u'victori', u'give', u'softbal', u'shoot', u'medal'] [u'virgin', u'blue', u'reject', u'flight', u'attend'] [u'wallabi', u'anxious', u'nation', u'decid'] [u'opposit', u'fear', u'ningaloo', u'coast', u'tourism', u'plan'] [u'word', u'continu', u'medic', u'clinic', u'promis'] [u'highest', u'pay'] [u'watanab', u'star', u'memoir', u'geisha'] [u'wenger', u'close', u'clough', u'record'] [u'woman', u'accus', u'surgeri', u'sham'] [u'woodgat', u'madrid', u'medic', u'report'] [u'work', u'move', u'ahead', u'stockland', u'centr'] [u'workshop', u'focus', u'plantat', u'strategi'] [u'work', u'start', u'year', u'care', u'line'] [u'world', u'champion', u'tikhon', u'head', u'men', u'hammer', u'qualifi'] [u'aborigin', u'trust', u'fund', u'consult', u'success'] [u'nurseri', u'warn', u'water', u'restrict'] [u'promot', u'cannabi', u'chang'] [u'age', u'care', u'fund', u'unresolv', u'communiti', u'servic'] [u'ainsli', u'win', u'second', u'olymp', u'yacht', u'gold'] [u'alpacca', u'confer', u'draw', u'hobart'] [u'american', u'hold', u'german', u'charg', u'shoot'] [u'american', u'men', u'gold'] [u'aussi', u'rower', u'gold'] [u'aussi', u'volleybal', u'trump'] [u'aussi', u'wheeler', u'heptathlon', u'content'] [u'australia', u'bundl', u'archeri', u'team', u'competit'] [u'author', u'lose', u'plot', u'summerhous', u'theft'] [u'backstrok', u'coventri', u'win', u'gold', u'zimbabw'] [u'balogh', u'civic', u'recept', u'queanbeyan'] [u'bangladesh', u'bomb', u'caus', u'chao', u'dhaka'] [u'basebal', u'stay', u'cours'] [u'bird', u'expert', u'china', u'clue', u'pig'] [u'blanck', u'lead', u'aussi', u'sail', u'pack'] [u'blast', u'hear', u'najaf'] [u'blue', u'upset', u'demon'] [u'bomb', u'help', u'enforc', u'blockad', u'nepales', u'maoist'] [u'boomer', u'sink', u'defeat', u'beat'] [u'briton', u'kill', u'thailand', u'south'] [u'bronco', u'hold', u'tiger'] [u'bulldog', u'break', u'lose', u'streak'] [u'burk', u'readi'] [u'burk', u'say', u'return', u'australia'] [u'carr', u'defend', u'stanc', u'contempt', u'hear'] [u'cat', u'blow', u'chanc', u'secur', u'home', u'final'] [u'cheat', u'contest', u'elect'] [u'checa', u'grab', u'provision', u'pole', u'czech', u'grand', u'prix'] [u'china', u'beat', u'second', u'tabl', u'tenni', u'gold'] [u'china', u'zhang', u'meet', u'north', u'korean', u'gold'] [u'chines', u'women', u'ralli', u'badminton', u'gold'] [u'confus', u'reign', u'strife', u'tear', u'najaf'] [u'confus', u'surround', u'seizur', u'iraqi', u'mosqu'] [u'cook', u'win', u'aussi', u'beach', u'battl'] [u'council', u'ask', u'lock', u'mainten', u'fund'] [u'court', u'delay', u'rule', u'hezbollah'] [u'cuban', u'basebal', u'coach', u'thrive', u'seat'] [u'darwin', u'astronom', u'advantag', u'moon', u'phase'] [u'davenport', u'reach', u'semi', u'cincinnati', u'tenni'] [u'derwent', u'gust', u'boati', u'bath'] [u'desert', u'festiv', u'attract', u'nation'] [u'dever', u'block', u'squeez', u'metr', u'semi'] [u'doubt', u'cast', u'iraqi', u'govt', u'shrine', u'claim'] [u'top', u'holidaymak'] [u'eel', u'strong', u'warrior'] [u'egan', u'step', u'indigen', u'marriag', u'stoush'] [u'elbow', u'injuri', u'sidelin', u'tendulkar'] [u'elect', u'focus', u'futur', u'tell', u'parti'] [u'offici', u'buy', u'teenag', u'prostitut', u'booz'] [u'farmer', u'voic', u'concern', u'locust', u'control'] [u'field', u'wide', u'open', u'women', u'final'] [u'gut', u'derelict', u'hous'] [u'franc', u'win', u'gold', u'kayak'] [u'french', u'shock', u'favourit', u'row', u'gold'] [u'georgia', u'announc', u'troop', u'pull', u'rebel', u'region'] [u'georgian', u'troop', u'leav', u'south', u'ossetia', u'amid', u'hope'] [u'german', u'polic', u'detain', u'nazi', u'hess', u'march'] [u'german', u'win', u'singl', u'scull', u'gold'] [u'germani', u'take', u'lead', u'team', u'dressag'] [u'germani', u'dressag', u'team', u'gold'] [u'germani', u'win', u'women', u'trampolin', u'gold'] [u'ginn', u'tomkin', u'row', u'golden', u'boy'] [u'glorious', u'bekel', u'end', u'gebrselassi', u'olymp', u'reign'] [u'goal', u'india', u'knock', u'hockey'] [u'govt', u'reject', u'critic', u'public', u'hous'] [u'govt', u'taiwan', u'comment', u'unhelp', u'green', u'leader'] [u'greek', u'athlet', u'fail', u'drug', u'test'] [u'greek', u'drug', u'squad', u'raid', u'sprinter', u'coach', u'premis'] [u'greek', u'olymp', u'team', u'chief', u'offer', u'resign'] [u'greek', u'weightlift', u'sampl', u'posit', u'offici'] [u'green', u'urg', u'feder', u'buyback', u'daintre', u'properti'] [u'hall', u'retain', u'metr', u'freestyl', u'titl'] [u'hamm', u'gold', u'score', u'error'] [u'harmison', u'take', u'england', u'near', u'clean', u'sweep'] [u'health', u'research', u'invalu', u'canberra', u'say'] [u'hewitt', u'close', u'agassi', u'rematch'] [u'hewitt', u'step', u'closer', u'rematch', u'agassi'] [u'hid', u'consid', u'butler', u'resign', u'option'] [u'holm', u'court', u'sell', u'final', u'stake', u'cattl', u'compani'] [u'hospit', u'chief', u'foreshadow', u'improv'] [u'hungari', u'fazeka', u'lead', u'discus', u'qualifi'] [u'indonesia', u'bronz', u'men', u'singl', u'badminton'] [u'iraq', u'soccer', u'player', u'slam', u'bush', u'campaign'] [u'irish', u'archaeologist', u'centuri', u'vike', u'bodi'] [u'jackson', u'look', u'home', u'liechtenstein', u'report'] [u'jail', u'incid', u'expect', u'minist', u'say'] [u'japan', u'boost', u'record', u'gold', u'haul', u'judo'] [u'joint', u'naval', u'exercis', u'underway', u'philippin'] [u'kelli', u'miss', u'time', u'trial', u'medal'] [u'kerri', u'complain', u'record'] [u'korean', u'gymnast', u'appeal', u'men', u'round', u'result'] [u'labor', u'accus', u'lie', u'payrol'] [u'labor', u'criticis', u'ambassador', u'comment'] [u'latham', u'leav', u'hospit'] [u'latham', u'releas', u'hospit'] [u'launceston', u'landmark', u'facelift'] [u'lawyer', u'carr', u'contempt', u'hear'] [u'lenton', u'englesman', u'free', u'final'] [u'lewi', u'fail', u'qualifi', u'quest'] [u'massu', u'lead', u'chilean', u'quest', u'year', u'wait'] [u'mcgee', u'race', u'gold'] [u'mear', u'time', u'trial', u'gold', u'triumph'] [u'mear', u'world'] [u'mear', u'win', u'cycl', u'gold', u'australia'] [u'mental', u'patient', u'right', u'privaci', u'scrutinis'] [u'minist', u'oppos', u'industri', u'racecours'] [u'minist', u'address', u'indigen', u'foetal', u'alcohol'] [u'molik', u'fall', u'henin', u'set', u'gold', u'standard'] [u'urg', u'scrutini', u'anim', u'cruelti', u'charg'] [u'mysteri', u'surround', u'prison', u'stand'] [u'najaf', u'mosqu', u'stand', u'unresolv'] [u'support', u'centr', u'open', u'brisban'] [u'norway', u'tuft', u'win', u'olymp', u'singl', u'gold'] [u'twin', u'doubl', u'scull', u'gold'] [u'odumb', u'deni', u'appeal', u'year', u'suspens'] [u'price', u'drop', u'barrel'] [u'olyroo', u'fit', u'trainer', u'suspend', u'offens'] [u'opal', u'continu', u'unbeaten'] [u'kill', u'malaria', u'parasit'] [u'panther', u'trounc', u'cowboy'] [u'phelp', u'make', u'gold', u'triumph'] [u'phelp', u'pull', u'medley', u'relay', u'final'] [u'photo', u'finish', u'give', u'pinsent', u'fourth', u'olymp', u'gold'] [u'pittman', u'clear', u'hurdl'] [u'pittman', u'semi'] [u'plastic', u'user', u'tell'] [u'continu', u'campaign'] [u'dismiss', u'labor', u'anti', u'american', u'rhetor'] [u'polic', u'wing', u'help', u'fight', u'perth', u'burglari'] [u'polic', u'appeal', u'inform', u'freeway', u'smash'] [u'polic', u'detain', u'russian', u'tri', u'enter', u'olymp'] [u'polic', u'hunt', u'melbourn', u'stab'] [u'polic', u'seek', u'inform', u'sydney', u'shoot'] [u'polic', u'seek', u'wit', u'fatal', u'crash'] [u'polish', u'soldier', u'kill', u'iraq', u'bomb', u'attack'] [u'queensland', u'rail', u'worri', u'freight', u'loss'] [u'rebel', u'kill', u'aceh', u'clash'] [u'cross', u'appeal', u'donor'] [u'rockhampton', u'celebr', u'mear', u'win', u'gold'] [u'romanian', u'rower', u'retain', u'women', u'pair', u'titl'] [u'ross', u'go', u'fast', u'heat'] [u'russia', u'lifter', u'drug'] [u'russian', u'boxer', u'winner', u'littl', u'khan', u'win'] [u'russia', u'retain', u'women', u'team', u'epe', u'titl'] [u'schumann', u'snare', u'shoot', u'gold', u'germani'] [u'seafar', u'father', u'rescu', u'twice'] [u'shibata', u'pip', u'manaudou', u'free', u'crown'] [u'shibata', u'win', u'women', u'freestyl'] [u'korean', u'deni', u'china', u'women', u'doubl', u'clean', u'sweep'] [u'softbal', u'book', u'clash'] [u'south', u'korean', u'pair', u'men', u'doubl', u'gold'] [u'south', u'korea', u'win', u'women', u'team', u'gold', u'archeri'] [u'stingray', u'water', u'polo', u'semi'] [u'stop', u'call', u'wacko', u'say', u'jackson'] [u'studi', u'reveal', u'high', u'indigen', u'cancer', u'rat'] [u'suspect', u'rebel', u'kill', u'policeman', u'nepal', u'capit'] [u'swan', u'cement', u'spot'] [u'swede', u'matilda', u'athen', u'dream'] [u'syrian', u'algerian', u'arrest', u'madrid', u'train', u'bomb'] [u'taiwan', u'launch', u'campaign'] [u'tare', u'council', u'rais', u'aborigin', u'flag'] [u'tasrail', u'hop', u'pulp'] [u'tourki', u'women', u'platform'] [u'truck', u'driver', u'die', u'highway', u'crash'] [u'charg', u'murder'] [u'charg', u'flinder', u'street', u'stab'] [u'arrest', u'hama', u'financ', u'case'] [u'hurdler', u'dedic', u'gold', u'disgrac', u'girlfriend'] [u'market', u'gain', u'price', u'retreat'] [u'name', u'head', u'pacif', u'command'] [u'press', u'bow', u'phelpss', u'golden', u'sportsmanship'] [u'women', u'basketbal', u'tough', u'test', u'spain'] [u'uzbek', u'indian', u'posit', u'test', u'game'] [u'vaa', u'inspir', u'lanka', u'wicket'] [u'motorist', u'warn', u'record', u'petrol', u'price'] [u'investig', u'prison', u'stand'] [u'woman', u'die', u'north', u'east', u'smash'] [u'woman', u'save', u'newcastl', u'hous'] [u'women', u'prison', u'group', u'deni', u'strip', u'search', u'data'] [u'woodgat', u'complet', u'england', u'trio', u'real', u'madrid'] [u'wood', u'keep', u'rival', u'cink', u'lead'] [u'age', u'abus', u'rise', u'say', u'chariti'] [u'airlin', u'passeng', u'suffer', u'food', u'poison'] [u'alcohol', u'inhal', u'cut', u'mixer'] [u'argentina', u'secur', u'spot', u'basketbal', u'quarter', u'final'] [u'arm', u'robber', u'steal', u'scream'] [u'arson', u'attack', u'jewish', u'centr', u'pari'] [u'asia', u'generat', u'fight', u'tabl', u'tenni', u'gold'] [u'athen', u'flop', u'ullrich', u'pull', u'zurich', u'world'] [u'audit', u'confirm', u'chavez', u'venezuela'] [u'aussi', u'cyclist', u'miss', u'team', u'sprint', u'medal'] [u'aussi', u'foursom', u'snare', u'row', u'silver'] [u'aussi', u'grab', u'row', u'eight', u'bronz'] [u'aussi', u'fade', u'fourth', u'women', u'doubl', u'scull'] [u'aussi', u'shark'] [u'aussi', u'semi', u'final', u'furious', u'india', u'knock'] [u'aussi', u'sizzl', u'team', u'pursuit', u'qualifi'] [u'aussi', u'women', u'world'] [u'australia', u'basebal', u'medal', u'round'] [u'australia', u'miss', u'medal', u'women', u'quad'] [u'australian', u'forg', u'olymp', u'ident', u'card'] [u'bayley', u'mear', u'lead', u'sprint', u'charg'] [u'beazley', u'warn', u'taiwan', u'specul'] [u'blair', u'wont', u'pick', u'bush', u'honour', u'person', u'report'] [u'britain', u'lewi', u'heptathlon'] [u'brogden', u'flag', u'orang', u'grove'] [u'busi', u'call', u'urgent', u'upgrad', u'convent'] [u'bomb', u'target', u'offici', u'iraq'] [u'sale', u'race', u'ahead'] [u'chelsea', u'target'] [u'chilean', u'pair', u'countri', u'gold'] [u'china', u'celebr', u'deng', u'xiaop', u'achiev'] [u'cink', u'take', u'command', u'lead', u'wood'] [u'concern', u'mount', u'report', u'miss', u'iraq'] [u'welcom', u'water', u'effici', u'label'] [u'critic', u'slam', u'rule', u'guantanamo', u'trial'] [u'darfur', u'war', u'parti', u'meet', u'crucial', u'week'] [u'davenport', u'reach', u'cincinnati', u'final'] [u'democrat', u'slate', u'govt', u'famili', u'polici'] [u'doubl', u'seek', u'lebedeva', u'eas'] [u'drink', u'drive', u'statist', u'target', u'irrespons'] [u'eagl', u'leap'] [u'road', u'iraq', u'pint', u'size', u'fighter'] [u'england', u'complet', u'windi', u'whitewash'] [u'euphoria', u'iraq', u'despair', u'olyroo'] [u'fair', u'trade', u'name', u'dodgi', u'repairman'] [u'close', u'litchfield', u'road'] [u'forestri', u'union', u'threaten', u'action', u'disput'] [u'forsyth', u'carri', u'box', u'hop'] [u'gibernau', u'storm', u'pole', u'czech', u'grand', u'prix'] [u'govt', u'consid', u'benchmark', u'polic', u'respons', u'time'] [u'govt', u'reveal', u'blackout', u'compo', u'plan'] [u'govt', u'urg', u'smoke', u'pub'] [u'greek', u'legend', u'dima', u'pip', u'fourth', u'straight', u'gold'] [u'greek', u'lifter', u'strip', u'medal'] [u'green', u'pip', u'powel', u'heat'] [u'groceri', u'avail', u'despit', u'mall', u'blaze'] [u'hackett', u'push', u'like'] [u'hackett', u'star', u'golden', u'night', u'australia'] [u'hackett', u'win', u'swim', u'marathon'] [u'harmison', u'top', u'bowler', u'rank'] [u'hawk', u'cellar', u'dweller', u'duel'] [u'heartbreak', u'arron', u'ottey', u'miss'] [u'help', u'hand', u'hear', u'impair', u'bub'] [u'henin', u'hardenn', u'win', u'women', u'tenni', u'gold'] [u'heritag', u'group', u'oppos', u'perth', u'apart', u'block'] [u'hewitt', u'washington', u'final'] [u'hick', u'famili', u'visit', u'ahead', u'militari', u'hear'] [u'hockeyroo', u'troubl', u'germani', u'semi'] [u'germani', u'lose', u'equestrian', u'gold'] [u'human', u'remain', u'near', u'perth'] [u'indonesia', u'storm', u'men', u'badminton', u'gold'] [u'iraq', u'clash', u'kill', u'handov', u'talk', u'stall'] [u'iraq', u'clear', u'iran', u'aid', u'sadr', u'upris'] [u'japan', u'elimin', u'china', u'softbal'] [u'japan', u'say', u'slowdown', u'temporari', u'warn'] [u'jeannet', u'hold', u'firm', u'send', u'franc'] [u'labor', u'intensifi', u'attack', u'credibl'] [u'labor', u'promis', u'intellig', u'inquiri'] [u'latham', u'ill', u'setback'] [u'lawyer', u'question', u'pinochet', u'fortun'] [u'lenton', u'win', u'bronz', u'splash', u'dash'] [u'liber', u'target', u'independ', u'poll'] [u'lion', u'thump', u'saint', u'second'] [u'liquor', u'licens', u'complic', u'parliament', u'function'] [u'mactier', u'race', u'gold'] [u'arrest', u'melbourn', u'stab'] [u'charg', u'home', u'invas'] [u'injur', u'homemad', u'bomb', u'blast'] [u'kill', u'perth', u'industri', u'accid'] [u'kill', u'north', u'properti'] [u'undergo', u'surgeri', u'bomb', u'explod'] [u'mcgee', u'win', u'cycl', u'silver'] [u'militia', u'najaf', u'mosqu', u'crack', u'emerg'] [u'mix', u'result', u'aussi', u'beach', u'volleybal'] [u'molik', u'claim', u'bronz', u'australia'] [u'molik', u'make', u'olymp', u'tenni', u'histori'] [u'fight', u'erupt', u'nepal'] [u'staff', u'need', u'prison', u'say', u'union'] [u'violenc', u'ahead', u'chechen', u'elect'] [u'mozambiqu', u'mutola', u'show', u'class', u'women'] [u'nation', u'trust', u'member', u'grassroot', u'focus'] [u'nesterenko', u'win', u'sprint', u'gold', u'belarus'] [u'look', u'develop', u'worker', u'degre'] [u'polic', u'prepar', u'azaria', u'report'] [u'export', u'southern', u'iraq', u'normal'] [u'price', u'fall', u'say'] [u'opal', u'clinch', u'spot'] [u'pacif', u'island', u'tour', u'end', u'debt'] [u'pakistan', u'foil', u'qaeda', u'plot'] [u'pakistan', u'forc', u'attack', u'suspect', u'qaeda', u'hide', u'out'] [u'pakistan', u'spin', u'india', u'defeat'] [u'parent', u'seek', u'fund', u'boost', u'learn', u'program'] [u'petrol', u'top', u'litr', u'brisban'] [u'picnic', u'prompt', u'forestri', u'censorship'] [u'pigeon', u'lover', u'hope', u'foul', u'tast', u'save', u'bird'] [u'plastic', u'famin', u'success'] [u'plenti', u'snowfal', u'result', u'wild', u'problem'] [u'poland', u'retain', u'lightweight', u'doubl', u'titl'] [u'polic', u'investig', u'sydney', u'board', u'hous'] [u'polic', u'seek', u'driver'] [u'polic', u'seek', u'identifi', u'remain'] [u'polic', u'seiz', u'cannabi', u'cash', u'darwin', u'home'] [u'polic', u'warn', u'sailor', u'wild', u'weather'] [u'pont', u'eager', u'dutch', u'test'] [u'power', u'firm', u'boost', u'staff', u'number'] [u'prison', u'charg', u'attempt', u'murder'] [u'prison', u'guard', u'recov', u'stab', u'incid'] [u'prison', u'stab', u'investig', u'continu'] [u'privat', u'health', u'rebat', u'boost'] [u'putin', u'visit', u'chechnya', u'ahead', u'elect'] [u'queanbeyan', u'approv', u'apart', u'plan'] [u'racehors', u'trainer', u'induct', u'hall', u'fame'] [u'racetrack', u'accid', u'injur', u'children'] [u'rail', u'chief', u'promis', u'sack'] [u'rare', u'komodo', u'dragon', u'die', u'love', u'plung'] [u'record', u'relay', u'net', u'phelp', u'eighth', u'medal'] [u'retir', u'club', u'chairman', u'criticis', u'poki'] [u'riot', u'follow', u'dead', u'bomb', u'bangladesh'] [u'romania', u'retain', u'women', u'eight', u'row', u'titl'] [u'rooster', u'down', u'raider'] [u'rural', u'economi', u'high', u'price'] [u'russia', u'stun', u'favourit', u'men', u'quad'] [u'scientist', u'warn', u'beach', u'goer', u'sand', u'danger'] [u'eagl', u'avoid', u'wooden', u'spoon'] [u'shop', u'centr', u'leav', u'damag'] [u'silver', u'bronz', u'complet', u'row', u'program'] [u'kill', u'aceh', u'violenc'] [u'korea', u'win', u'rare', u'tabl', u'tenni', u'bronz'] [u'korea', u'appeal', u'hamm', u'gold'] [u'south', u'korean', u'team', u'archeri', u'gold'] [u'spark', u'kluft', u'take', u'olymp', u'heptathlon', u'gold'] [u'springbok', u'snare', u'nation', u'trophi'] [u'step', u'shadow'] [u'storm', u'rain', u'dog', u'parad'] [u'studi', u'look', u'balanc', u'coastal', u'develop'] [u'tang', u'win', u'china', u'fifth', u'olymp', u'weightlift', u'gold'] [u'foodi', u'tast', u'sweet', u'success'] [u'thoma', u'happi', u'leav', u'high', u'note'] [u'bomb', u'rock', u'thailand', u'troubl', u'south'] [u'ukrainian', u'win', u'men', u'trampolin', u'gold'] [u'ulmer', u'pip', u'aussi', u'mactier', u'pursuit'] [u'expert', u'demand', u'access', u'prison'] [u'knock', u'volleybal'] [u'launch', u'assault', u'rebel', u'najaf'] [u'softbal', u'outclass', u'australia'] [u'soldier', u'face', u'hear', u'alleg', u'prison'] [u'veteran', u'honour', u'parramatta', u'river', u'area'] [u'vietnam', u'veteran', u'come', u'kerri', u'defenc'] [u'seek', u'tougher', u'law', u'offend'] [u'water', u'util', u'bemoan', u'water', u'restrict'] [u'wiggin', u'salut', u'beat', u'mcgee'] [u'woman', u'escap', u'hous'] [u'wrong', u'target', u'drama', u'cost', u'shoot', u'gold'] [u'veteran', u'die', u'age'] [u'zhang', u'gold', u'bring', u'china'] [u'kill', u'venezuelan', u'militari', u'plane', u'crash'] [u'ghraib', u'abus', u'hear', u'begin'] [u'opposit', u'promis', u'greater', u'architectur'] [u'debat', u'auditor', u'general', u'role', u'chang'] [u'adler', u'appeal', u'stay', u'crimin', u'proceed'] [u'adult', u'industri', u'review', u'consid', u'regul'] [u'defend', u'propos', u'power', u'price', u'increas'] [u'promis', u'good', u'faith', u'enterpris', u'bargain'] [u'audit', u'reveal', u'increas', u'workcov', u'claim'] [u'aussi', u'hammer', u'thrower'] [u'aussi', u'shark', u'draw', u'germani'] [u'austereo', u'turn', u'profit', u'volum'] [u'aust', u'ignor', u'indo', u'fijian', u'cane', u'farmer', u'plight'] [u'aust', u'symbol', u'fray', u'costello', u'say'] [u'baggaley', u'semi'] [u'basebal', u'despit', u'canadian', u'thrash'] [u'bear', u'prove', u'strong', u'wynnum'] [u'workplac', u'safeti', u'inquiri', u'begin'] [u'organis', u'schooli'] [u'suspens', u'store', u'newton', u'forearm'] [u'billabong', u'sale', u'splash'] [u'blaze', u'destroy', u'berri', u'supermarket'] [u'boomer', u'oust', u'olymp'] [u'brad', u'thorn', u'return', u'bronco'] [u'build', u'applic', u'popul'] [u'bulgaria', u'appeal', u'ring', u'final', u'result'] [u'busi', u'urg', u'bolster', u'market', u'plan'] [u'oper', u'upbeat', u'break', u'hill', u'adelaid'] [u'region', u'polic'] [u'carinda', u'suffer', u'coli', u'threat'] [u'cessnock', u'council', u'happi', u'court'] [u'chilean', u'alchemist', u'turn', u'dream', u'gold'] [u'china', u'confirm', u'bird', u'virus', u'pig'] [u'china', u'smite', u'golden', u'tenni', u'angel'] [u'cink', u'eas', u'shoot'] [u'classroom', u'plan', u'offer', u'altern'] [u'coalit', u'leader', u'tour', u'north', u'coast'] [u'collaps', u'rower', u'stun', u'team', u'mat', u'reaction'] [u'collaps', u'rower', u'stun', u'team', u'mat', u'reaction'] [u'commission', u'reject', u'call', u'polic', u'respons'] [u'convict', u'murder', u'compens', u'hurt', u'feel'] [u'council', u'worker', u'protest'] [u'cyclist', u'strike', u'gold', u'row', u'controversi'] [u'darfur', u'peac', u'talk', u'begin'] [u'davenport', u'win', u'cincinnati'] [u'death', u'spark', u'polic', u'road', u'toll', u'fear'] [u'deliri', u'swede', u'creat', u'home', u'home'] [u'diamond', u'firm', u'board', u'shake'] [u'digger', u'famili', u'accept', u'state', u'funer'] [u'documentari', u'obsess', u'extrem', u'hobbi'] [u'downer', u'defend', u'terror', u'warn'] [u'driver', u'tip', u'feel', u'higher', u'petrol', u'price'] [u'drought', u'spark', u'cattl', u'sell'] [u'dubbo', u'water', u'spark', u'concern'] [u'elit', u'squad', u'safeguard', u'region', u'airport'] [u'elliott', u'continu', u'bankruptci', u'fight'] [u'energi', u'crisi', u'lead', u'cabinet', u'reshuffl'] [u'exhaust', u'massu', u'outlast', u'fish', u'gold'] [u'expedit', u'shed', u'light', u'undiscov', u'reef'] [u'explos', u'rock', u'najaf'] [u'feder', u'fund', u'local', u'teen'] [u'fiction', u'prize', u'organis', u'controversi', u'free'] [u'fiji', u'court', u'reject', u'vice', u'presid', u'bail', u'applic'] [u'stick', u'return', u'tradit', u'owner'] [u'firm', u'secur', u'softwood', u'site'] [u'flatley', u'roger', u'rejoin', u'wallabi'] [u'forestri', u'tasmania', u'accus', u'log', u'trial'] [u'policeman', u'jail', u'brothel', u'theft'] [u'tasmanian', u'premier', u'angus', u'bethun', u'die'] [u'forsyth', u'font', u'cruis', u'heavyweight', u'semi'] [u'tribun'] [u'bait', u'target', u'east', u'coast'] [u'freak', u'insid', u'stun', u'produc'] [u'french', u'gymnast', u'take', u'khorkina', u'asymmetr', u'crown'] [u'french', u'epe', u'team', u'gold'] [u'fresh', u'call', u'recognit', u'tradit'] [u'gatlin', u'gun', u'rival', u'titl'] [u'gatlin', u'win', u'men', u'sprint'] [u'good', u'start', u'lake', u'creek', u'product'] [u'govt', u'stand', u'firm', u'orang', u'grove', u'retail', u'outlet'] [u'govt', u'fund', u'airport', u'secur', u'boost'] [u'greek', u'guard', u'kill', u'prank', u'go', u'wrong'] [u'greek', u'tampako', u'lord', u'ring'] [u'hackett', u'power', u'home', u'gold'] [u'haddin', u'replac', u'gilli', u'buchanan'] [u'hamm', u'vow', u'gold', u'ask'] [u'hayden', u'schammer', u'doubt', u'bell', u'play'] [u'health', u'insur', u'rebat', u'bribe', u'abbott'] [u'heritag', u'build', u'council', u'discuss'] [u'hewitt', u'move', u'second', u'round'] [u'hewitt', u'stop', u'muller', u'washington', u'titl'] [u'hewitt', u'win', u'washington', u'titl'] [u'hickss', u'lawyer', u'confid', u'fair', u'trial'] [u'higher', u'charg', u'perri', u'shire', u'ratepay'] [u'hockeyroo', u'olymp', u'reign', u'end', u'tear'] [u'honour', u'tasmanian', u'hero'] [u'hope', u'allianc', u'boost', u'reef', u'fund'] [u'hospit', u'push', u'health', u'specialist'] [u'hunter', u'ambul', u'worker', u'continu', u'protest'] [u'illeg', u'fishermen', u'free', u'good', u'behaviour', u'bond'] [u'indonesia', u'arrest', u'suicid', u'squad', u'suspect'] [u'indoor', u'champion', u'take', u'high', u'jump', u'titl'] [u'injuri', u'end', u'dvorak', u'decathlon', u'dream'] [u'inquest', u'begin', u'toddler', u'soccer', u'death'] [u'inquest', u'launch', u'toddler', u'goalpost', u'death'] [u'inspir', u'manus', u'elimin', u'french', u'world', u'champion'] [u'investig', u'return', u'fatal', u'accid', u'scene'] [u'investor', u'confid', u'return', u'price', u'eas'] [u'isra', u'sourc', u'reveal', u'west', u'bank', u'expans'] [u'whistleblow', u'admit', u'gatlin', u'coach'] [u'jazz', u'audienc', u'boost', u'festiv'] [u'korean', u'lawmak', u'demand', u'gymnast', u'award'] [u'labor', u'accus', u'health', u'backflip'] [u'labor', u'mull', u'qanta', u'ownership'] [u'latham', u'work', u'feel', u'percent'] [u'latham', u'reject', u'privat', u'health', u'rebat', u'increas'] [u'livestock', u'transport', u'fuel', u'price', u'pressur'] [u'lobbi', u'group', u'call', u'halt', u'film', u'archiv'] [u'local', u'govt', u'review', u'consid', u'routin'] [u'lowli', u'egypt', u'spain', u'sweat', u'semi', u'final', u'berth'] [u'magistr', u'prescrib', u'jail', u'pretend', u'doctor'] [u'await', u'sentenc', u'mother', u'stab'] [u'charg', u'stab'] [u'court', u'facto', u'stab'] [u'court', u'home', u'invas'] [u'martin', u'apologis', u'anim', u'cruelti', u'case'] [u'matthew', u'beat', u'defend', u'champ', u'lpga', u'play'] [u'mayor', u'cancel', u'meet', u'babi', u'concern'] [u'medic', u'warn', u'bewar', u'fake'] [u'face', u'court', u'seven', u'year', u'murder'] [u'miner', u'group', u'upbeat', u'address', u'skill'] [u'mitcham', u'store', u'owner', u'stock'] [u'mitsubishi', u'worker', u'urg', u'accept', u'redund'] [u'mooroopna', u'polic', u'spotlight'] [u'moroccan', u'lead', u'field', u'final'] [u'mother', u'die', u'yackandandah', u'wodonga', u'crash'] [u'odd', u'indigen', u'child', u'abus', u'claim'] [u'murray', u'start', u'open', u'nativ', u'fish'] [u'mutola', u'face', u'stern', u'challeng'] [u'nation', u'fight', u'save', u'lachlan', u'elector'] [u'nation', u'outlin', u'driver', u'educ', u'plan'] [u'nation', u'trust', u'member', u'unhappi', u'council'] [u'neitz', u'injuri', u'add', u'demon', u'woe'] [u'newberi', u'break', u'year', u'gold', u'drought'] [u'newberi', u'mactier', u'medal'] [u'newberi', u'mactier', u'medal'] [u'newberi', u'athen', u'plung', u'pay', u'gold'] [u'newcastl', u'celebr', u'divers'] [u'technolog', u'help', u'polic', u'combat', u'crime'] [u'tourism', u'model', u'includ', u'outsid', u'help'] [u'tunnel', u'justifi', u'toll', u'racv'] [u'children', u'detent', u'costello'] [u'sight', u'tenix', u'disput'] [u'excus', u'saint', u'loss', u'gabba'] [u'northern', u'doctor', u'seek', u'mission'] [u'crime', u'figur', u'year'] [u'student', u'benefit', u'art', u'grant'] [u'grant', u'help', u'fund', u'desert', u'research'] [u'nuclear', u'talk', u'doubt', u'north', u'korea', u'lash'] [u'wool', u'cross', u'tasman'] [u'ogradi', u'keep', u'fourth', u'flecha', u'win', u'zurich', u'world'] [u'olsson', u'land', u'tripl', u'jump', u'gold'] [u'opposit', u'claim', u'welfar', u'debt', u'rise'] [u'opposit', u'move', u'total', u'club', u'smoke'] [u'orica', u'expand', u'gladston', u'plant'] [u'pair', u'court', u'drug', u'face', u'charg'] [u'panther', u'thrash', u'deplet', u'cowboy'] [u'paramed', u'petit', u'oppos', u'mica', u'transfer'] [u'parent', u'celebr', u'mear', u'gold', u'medal'] [u'parent', u'urg', u'educ', u'children', u'bushfir'] [u'pipelin', u'group', u'welcom', u'appoint'] [u'pittman', u'confid', u'hurdl', u'final', u'loom'] [u'pittman', u'confid', u'hurdl', u'final', u'loom'] [u'pittman', u'storm', u'final'] [u'polic', u'happi', u'hoon', u'campaign'] [u'polic', u'hunt', u'motiv', u'robber', u'scream', u'theft'] [u'polic', u'identifi', u'miss', u'pension', u'remain'] [u'polic', u'offic', u'injur', u'glass', u'attack'] [u'polic', u'probe', u'offer', u'welfar', u'scam'] [u'polic', u'search', u'driver'] [u'post', u'mortem', u'hous', u'victim'] [u'powel', u'announc', u'retir'] [u'power', u'station', u'worker', u'hold', u'return', u'work'] [u'public', u'dark', u'blackout', u'compo', u'beatti'] [u'push', u'better', u'wide', u'burnett'] [u'qanta', u'british', u'airway', u'price', u'fix', u'agreement'] [u'qanta', u'like', u'stay', u'australian', u'control'] [u'radcliff', u'injur', u'british', u'team', u'say'] [u'region', u'rail', u'plan', u'trigger', u'fear'] [u'report', u'fail', u'silenc', u'butler', u'furor'] [u'increas', u'fuel', u'surcharg'] [u'riverfront', u'area', u'treat', u'septic', u'water'] [u'rower', u'exhaust', u'carri', u'team', u'boss'] [u'russian', u'shoot', u'putter', u'strip', u'gold'] [u'sadr', u'broker', u'journalist', u'releas'] [u'savill', u'win', u'walk', u'bronz'] [u'school', u'face', u'suit', u'alleg', u'abus'] [u'senior', u'muslim', u'figur', u'iraqi', u'insurg'] [u'shewfelt', u'tumbl', u'men', u'floor', u'gold'] [u'shoot', u'putter', u'korzhanenko', u'strip', u'gold'] [u'singapor', u'recognis', u'independ', u'taiwan'] [u'somalian', u'parliament', u'swear'] [u'state', u'funer', u'plan', u'veteran'] [u'strike', u'power', u'worker', u'appear', u'defi', u'order'] [u'stronger', u'high', u'produc', u'rain'] [u'strong', u'sale', u'push', u'woolworth', u'profit', u'higher'] [u'studi', u'focus', u'busi', u'retent'] [u'studi', u'identifi', u'help', u'avail', u'problem'] [u'suspici', u'see', u'near', u'drug', u'theft', u'site', u'court'] [u'sydney', u'injur', u'attack'] [u'synthet', u'vaccin', u'target'] [u'talk', u'continu', u'chief', u'minist', u'anim', u'cruelti'] [u'tamworth', u'water', u'rise'] [u'tare', u'stage', u'hydroplan', u'race'] [u'taxi', u'driver', u'tour', u'guid', u'role'] [u'telstra', u'call', u'price', u'cap'] [u'telstra', u'price', u'control', u'review'] [u'tender', u'seek', u'sydney', u'water', u'headquart'] [u'thorn', u'return', u'bronco'] [u'thrill', u'record', u'equal', u'gunner'] [u'tragic', u'weekend', u'darl', u'down', u'road'] [u'tram', u'plan', u'oppon', u'seek', u'council', u'talk'] [u'tree', u'clear', u'upset', u'tour', u'oper'] [u'tree', u'planter', u'need', u'melbourn', u'game'] [u'expans', u'help', u'lift', u'sonic', u'profit'] [u'union', u'air', u'townsvill', u'stab', u'concern'] [u'union', u'threaten', u'industri', u'unrest', u'claim'] [u'warplan', u'hit', u'najaf', u'rebel', u'posit'] [u'industri', u'crack', u'market'] [u'vietnam', u'alleg', u'woman', u'serial', u'killer'] [u'violenc', u'erupt', u'follow', u'bangladesh', u'attack'] [u'virgin', u'lift', u'fuel', u'charg', u'cut', u'rout'] [u'genghi', u'khan', u'mighti', u'sword'] [u'wine', u'maker', u'toast', u'profit', u'increas'] [u'wollongong', u'runner', u'finish', u'marathon'] [u'woman', u'jail', u'bank', u'fraud'] [u'woodsid', u'hop'] [u'wooli', u'threaten', u'walk', u'away'] [u'face', u'grindlay', u'bash', u'committ', u'hear'] [u'chechnyan', u'fighter', u'kill'] [u'accus', u'kidnapp', u'know', u'babi'] [u'move', u'eas', u'pressur', u'hospit'] [u'opposit', u'criticis', u'govt'] [u'administr', u'talk', u'merg', u'health', u'servic'] [u'aerial', u'bait', u'plan', u'spark', u'threaten', u'speci', u'fear'] [u'age', u'care', u'servic', u'spotlight'] [u'airport', u'manag', u'cautious', u'secur', u'plan'] [u'airport', u'secur', u'move', u'consid', u'realist'] [u'alic', u'spring', u'art', u'festiv', u'cancel'] [u'rais', u'doubt', u'rail', u'fund', u'offer'] [u'ambul', u'union', u'angri', u'crew', u'cutback'] [u'american', u'star', u'stutter', u'hurdl'] [u'angler', u'urg', u'share', u'fund'] [u'target', u'record', u'profit'] [u'press', u'extra', u'cycl', u'medal'] [u'ararat', u'council', u'deni', u'polit', u'campaign', u'claim'] [u'aristocrat', u'announc', u'record', u'profit'] [u'arsenal', u'gun', u'record'] [u'arson', u'possibl', u'shop', u'centr'] [u'aussi', u'basebal', u'reach', u'gold', u'medal', u'match'] [u'aussi', u'basebal', u'play', u'gold'] [u'aussi', u'invent', u'assist', u'clearanc'] [u'aussi', u'market', u'creep', u'higher', u'dollar', u'fall'] [u'aussi', u'round', u'cano', u'program'] [u'australian', u'short', u'film', u'pari'] [u'author', u'captur', u'legendari', u'mexican', u'drug', u'lord'] [u'author', u'defend', u'plan', u'consult'] [u'bashir', u'face', u'charg', u'polic'] [u'berrigan', u'expect', u'play', u'rabbitoh', u'game'] [u'berrigan', u'expect', u'play', u'rabbitoh', u'match'] [u'crowd', u'expect', u'flock', u'field', u'day'] [u'refineri', u'upgrad', u'underway'] [u'boo', u'fan', u'shut', u'olymp', u'horizont', u'final'] [u'brand', u'thorp', u'expand'] [u'british', u'govt', u'investig', u'fake', u'bomb', u'claim'] [u'brogden', u'stoner', u'tour', u'station'] [u'broom', u'rodeo', u'year', u'event'] [u'bulgarian', u'gymnast', u'appeal', u'reject'] [u'bush', u'call', u'attack'] [u'butler', u'resign', u'domin', u'parliament'] [u'campbel', u'promis', u'river', u'research'] [u'candid', u'reject', u'email', u'polit', u'stunt', u'claim'] [u'candid', u'seek', u'safeti', u'chang'] [u'captain', u'wait', u'india', u'australia', u'seri'] [u'carpentaria', u'shire', u'upbeat', u'budget'] [u'charg', u'expect', u'robinval', u'brawl'] [u'chinchilla', u'council', u'deliv', u'record', u'budget'] [u'christian', u'withdraw', u'public', u'school', u'immor', u'gibe'] [u'clean', u'king', u'want', u'tanker', u'reef'] [u'confid', u'cuban', u'skip', u'olymp', u'showdown'] [u'congress', u'help', u'direct', u'lobster', u'industri'] [u'conserv', u'park', u'handov', u'help', u'restor'] [u'coroni', u'inquiri', u'like', u'criticis', u'author'] [u'costello', u'immigr', u'comment', u'govt', u'polici'] [u'council', u'hop', u'bridg', u'timber', u'dilemma'] [u'council', u'rethink', u'communiti', u'group', u'meet'] [u'council', u'seek', u'support', u'health', u'servic', u'opposit'] [u'council', u'urg', u'quick', u'child', u'care', u'issu'] [u'council', u'worker', u'strike'] [u'court', u'clear', u'offici', u'child'] [u'court', u'continu', u'murder', u'committ', u'hear'] [u'court', u'lock', u'hick', u'hear'] [u'crew', u'show', u'support', u'collaps', u'rower'] [u'croc', u'adelaid', u'hous'] [u'crop', u'estim', u'news', u'cane', u'industri'] [u'custom', u'seiz', u'fake', u'trade', u'card'] [u'recreat', u'work', u'boost', u'tourism'] [u'design', u'tender', u'seek', u'desert', u'centr'] [u'develop', u'seek', u'apolog'] [u'link', u'year', u'crime'] [u'doctor', u'medicar', u'safeti', u'rais', u'fee'] [u'driver', u'jail', u'pedestrian', u'death'] [u'drought', u'dollar', u'tip', u'shear', u'wool', u'price'] [u'everton', u'reject', u'newcastl', u'rooney'] [u'farmer', u'warn', u'locust', u'threat'] [u'fear', u'strategi', u'link', u'indigen', u'refuge', u'issu'] [u'feder', u'govt', u'pledg', u'casino', u'murwillumbah', u'rail', u'fund'] [u'govt', u'final', u'decis', u'wast', u'dump', u'site'] [u'ferguson', u'look', u'smith', u'brighten', u'dinamo'] [u'figur', u'highlight', u'fall', u'crime', u'level'] [u'fight', u'continu'] [u'liber', u'stalwart', u'launch', u'campaign'] [u'fremantl', u'dock', u'interchang', u'reshuffl'] [u'fryer', u'blame', u'restaur', u'blaze'] [u'fuel', u'price', u'crippl', u'fli', u'doctor'] [u'garrett', u'continu', u'fight', u'adelaid', u'hill', u'home'] [u'gene', u'tweak', u'creat', u'mighti', u'mous'] [u'georgian', u'presid', u'warn', u'russia'] [u'german', u'lead', u'team', u'jump'] [u'gillard', u'stir', u'liber', u'leadership'] [u'good', u'local', u'crime', u'figur'] [u'govt', u'ask', u'explain', u'fare', u'rise'] [u'govt', u'blame', u'nurs', u'shortfal'] [u'govt', u'consult', u'doctor', u'free', u'hospit', u'bed'] [u'govt', u'deni', u'tri', u'replac', u'medicar'] [u'govt', u'dismiss', u'nuclear', u'wast', u'dump', u'site', u'report'] [u'govt', u'say', u'farmer', u'plea', u'fuel', u'relief'] [u'govt', u'say', u'disappear', u'labor'] [u'govt', u'refuge', u'stay'] [u'govt', u'urg', u'streamlin', u'age', u'care', u'facil'] [u'granit', u'belt', u'fruit', u'festiv', u'make', u'loss'] [u'greek', u'judoka', u'die', u'hospit', u'day', u'fall'] [u'group', u'consid', u'orphanag', u'abus', u'lawsuit'] [u'hawk', u'outlin', u'case', u'latham'] [u'headlin', u'act', u'unlik', u'schooli', u'week'] [u'hobart', u'declar', u'refuge', u'welcom', u'zone'] [u'hockeyroo', u'japan'] [u'hospit', u'turn', u'away', u'elder', u'outsid'] [u'hotel', u'license', u'fin', u'nude', u'danc'] [u'hous', u'scheme', u'help', u'home', u'buyer'] [u'howard', u'latham', u'trade', u'blow', u'credibl'] [u'icac', u'hear', u'pearl', u'farm', u'propon', u'complaint'] [u'idri', u'escap', u'punish', u'bali', u'blast'] [u'illawarra', u'south', u'east', u'stage', u'econom', u'confer'] [u'interst', u'final', u'ideal', u'demetriou', u'admit'] [u'investig', u'begin', u'bundaberg', u'murder'] [u'iraq', u'govern', u'warn', u'sadr', u'resist'] [u'iraqi', u'minist', u'escap', u'attack'] [u'iraq', u'issu', u'fresh', u'warn', u'mehdi', u'armi'] [u'isol', u'care'] [u'israel', u'alter', u'west', u'bank', u'barrier'] [u'issu', u'need', u'clear', u'council', u'merg'] [u'jackman', u'final', u'fetch', u'seat'] [u'japan', u'deport', u'fischer'] [u'juror', u'dismiss', u'accus', u'peopl', u'smuggler', u'case'] [u'kingsgat', u'report', u'profit'] [u'korean', u'file', u'gold', u'medal', u'appeal'] [u'krakouer', u'releas'] [u'labor', u'outlin', u'csiro', u'review'] [u'lancast', u'pedal', u'gold', u'medal'] [u'lead', u'wrestl', u'offici', u'call', u'reform'] [u'lennon', u'defend', u'butler', u'decis'] [u'lennon', u'clear', u'butler', u'payout'] [u'lennon', u'cut', u'futur', u'governor'] [u'life', u'leav', u'landmark', u'tree'] [u'lobbi', u'group', u'hop', u'hospit', u'site', u'rethink'] [u'local', u'airport', u'share', u'secur', u'boost'] [u'catch', u'tri', u'smuggl', u'pigeon'] [u'charg', u'drive', u'offenc', u'speed'] [u'charg', u'submachin', u'import'] [u'destroy', u'chines', u'restaur', u'court', u'tell'] [u'jail', u'attempt', u'partner'] [u'jail', u'friend', u'death'] [u'mayor', u'want', u'secur', u'screen', u'flight'] [u'mear', u'hop', u'second', u'olymp', u'medal'] [u'power', u'recuper', u'brisban'] [u'militari', u'limit', u'hick', u'trial', u'coverag'] [u'miller', u'crash'] [u'miner', u'sand', u'project', u'slat', u'year'] [u'minist', u'aim', u'counter', u'cane', u'toad', u'crisi'] [u'minist', u'highlight', u'need', u'fish', u'protect'] [u'mitsubishi', u'worker', u'accept', u'redund', u'packag'] [u'modern', u'munster', u'movi', u'plan'] [u'moomba', u'hit', u'santoss', u'line'] [u'child', u'abus', u'report'] [u'fund', u'urg', u'atsic', u'demis'] [u'region', u'student', u'studi', u'medicin', u'anderson'] [u'wild', u'storm', u'tip', u'perth'] [u'resid', u'ralli', u'toxic', u'wast', u'dump'] [u'talk', u'privat', u'health', u'rebat'] [u'newberi', u'final', u'barnett', u'bow'] [u'councillor', u'seek', u'ratepay', u'guidanc'] [u'discount', u'fuel', u'promot', u'shopper'] [u'newton', u'give', u'time'] [u'zealand', u'beat', u'south', u'korea', u'hockey', u'play'] [u'nylex', u'make', u'splash', u'ventur'] [u'flag', u'stay'] [u'price', u'drop', u'iraqi', u'product', u'resum'] [u'opposit', u'reject', u'north', u'coast', u'rail', u'claim'] [u'organis', u'crime', u'prevent', u'workshop', u'open'] [u'pakistan', u'afghanistan', u'tighten', u'boarder', u'secur'] [u'palestinian', u'prison', u'hunger', u'strike', u'continu'] [u'paramed', u'highlight', u'staff', u'woe'] [u'parent', u'welcom', u'goal', u'post', u'death', u'inquest'] [u'perilya', u'turn', u'profit', u'loss'] [u'perpetu', u'truste', u'record', u'profit', u'rise'] [u'philippin', u'ban', u'malaysian', u'poultri', u'import'] [u'plan', u'focus', u'lift', u'season', u'tourism'] [u'reject', u'labor', u'list', u'lie'] [u'polic', u'rapid', u'creek', u'investig'] [u'polic', u'hunt', u'knife', u'wield', u'bandit'] [u'polic', u'investig', u'rapid', u'creek', u'shoot'] [u'polic', u'fairytal', u'drug', u'bust'] [u'polic', u'recaptur', u'escap', u'prison'] [u'practition', u'public', u'respond', u'health', u'servic'] [u'privatis', u'wouldnt', u'hurt', u'timber', u'deal', u'minist'] [u'probe', u'launch', u'townsvill', u'jail', u'secur'] [u'produc', u'action', u'stop', u'attack'] [u'public', u'water', u'secur'] [u'public', u'want', u'account', u'latham', u'say'] [u'jockey', u'get', u'place', u'race', u'hall', u'fame'] [u'staff', u'brief', u'redund'] [u'racecours', u'prepar', u'track'] [u'back', u'region', u'airport', u'secur', u'upgrad'] [u'riverland', u'danger', u'wast', u'servic'] [u'river', u'plan', u'tip', u'carp', u'number'] [u'rower', u'face', u'censur', u'dump', u'robbin'] [u'ruddock', u'hint', u'releas', u'hick', u'photo'] [u'rumsfeld', u'wont', u'forc', u'testifi', u'iraq', u'abus'] [u'russian', u'lead', u'synchro', u'curtain', u'raiser'] [u'sale', u'help', u'deliv', u'foster', u'profit', u'boost'] [u'lose', u'soccer', u'broadcast', u'right'] [u'school', u'pick', u'litter', u'prevent', u'award'] [u'scientist', u'flesh', u'georg', u'washington'] [u'scott', u'pursu', u'challeng', u'hawk', u'board'] [u'seal', u'road', u'recoveri'] [u'seattl', u'time', u'writer', u'admit', u'plagiar'] [u'slater', u'tumbl', u'beam', u'final'] [u'straw', u'demand', u'effort', u'khartoum', u'stem', u'crisi'] [u'straw', u'talk', u'sudanes', u'darfur', u'crisi'] [u'sudan', u'peac', u'talk', u'start', u'abuja'] [u'sunshin', u'coast', u'softbal', u'score', u'athen', u'silver'] [u'suspect', u'mercenari', u'trial', u'equatori', u'guinea'] [u'swiss', u'readi', u'hang'] [u'talk', u'continu', u'resolv', u'power', u'disput'] [u'tamworth', u'ponder', u'water', u'ban', u'futur'] [u'tasmania', u'hold', u'bird', u'diseas', u'outbreak', u'exercis'] [u'offic', u'evacu', u'water', u'tank', u'burst'] [u'teacher', u'accept', u'govt', u'offer'] [u'teenag'] [u'tiger', u'appeal', u'zantuck', u'suspens'] [u'trainer', u'high', u'hop', u'starcraft'] [u'tribut', u'flow', u'tasmanian', u'premier'] [u'accus', u'insid', u'trade', u'wine', u'merger'] [u'typhoon', u'batter', u'japan', u'taiwan'] [u'chief', u'hail', u'progress', u'east', u'timor'] [u'univers', u'offer', u'place', u'aust', u'student'] [u'begin', u'airborn', u'propaganda', u'broadcast', u'cuba'] [u'iraqi', u'troop', u'deploy', u'najaf', u'shrine'] [u'shrug', u'north', u'korean', u'critic'] [u'vet', u'discuss', u'pet', u'medic', u'need', u'confer'] [u'ombudsman', u'power', u'boost'] [u'rescuer', u'search', u'miss', u'school', u'children'] [u'virgin', u'accc', u'blue', u'fail', u'rout'] [u'whale', u'group', u'unhappi', u'explor', u'plan'] [u'wit', u'seek', u'motorcycl', u'crash'] [u'woman', u'move', u'scorpion'] [u'worker', u'electrocut', u'storm', u'clean'] [u'trawler', u'wharf', u'plan'] [u'accus', u'butler'] [u'accus', u'kidnapp', u'refus', u'bail'] [u'adelaid', u'derbi', u'crucial', u'craig', u'say'] [u'balanc', u'coverag'] [u'balanc', u'coverag'] [u'airport', u'secur', u'risk', u'assess'] [u'alford', u'school', u'close', u'year'] [u'alic', u'host', u'rural', u'health', u'confer'] [u'allianc', u'aim', u'boost', u'farm', u'safeti'] [u'ord', u'lose', u'grind'] [u'appeal', u'slash', u'kmart', u'compo', u'payout'] [u'argentina', u'beat', u'itali', u'place', u'footbal', u'final'] [u'argentin', u'court', u'open', u'door', u'human', u'right', u'case'] [u'arson', u'think', u'servic', u'station', u'blaze'] [u'assembl', u'vote', u'taxi', u'hire', u'industri'] [u'aussi', u'triangular', u'seri', u'final'] [u'baggaley', u'eas', u'final'] [u'banish', u'shoot', u'putter', u'refus', u'return', u'gold', u'medal'] [u'bashir', u'charg', u'hotel', u'bomb'] [u'batchelor', u'back', u'feder', u'wast', u'site'] [u'beef', u'produc', u'face', u'tree', u'clear', u'charg'] [u'benitez', u'back', u'kewel', u'red', u'stumbl'] [u'berestov', u'grab', u'shock', u'weightlift', u'gold', u'russia'] [u'bering', u'blass', u'sell', u'vineyard'] [u'plan', u'afoot', u'hospit'] [u'break', u'hill', u'showcas', u'film', u'potenti'] [u'burial', u'plan', u'fail', u'rise'] [u'busi', u'group', u'air', u'fuel', u'price', u'fear'] [u'butler', u'payout', u'reason', u'doubt'] [u'boost', u'mental', u'ill', u'servic'] [u'councillor', u'salari', u'sacrific'] [u'go', u'blood', u'bank', u'donat'] [u'canola', u'seed', u'fuel', u'diesel', u'unit'] [u'torch', u'break', u'hill'] [u'carlton', u'game', u'negoti'] [u'carr', u'make', u'surpris', u'deniliquin', u'visit'] [u'charl', u'imperson', u'keep', u'licenc'] [u'chechen', u'condemn', u'plane', u'crash'] [u'children', u'hous'] [u'children', u'reward', u'trip', u'school', u'attend'] [u'coal', u'inquiri', u'hear', u'water', u'issu'] [u'collin', u'quit', u'consult', u'role'] [u'commiss', u'hop', u'abus', u'case'] [u'competit', u'keep', u'profit', u'flat'] [u'costello', u'jump', u'crean', u'comment'] [u'council', u'consid', u'talk', u'tram'] [u'council', u'block', u'truck', u'access', u'road'] [u'council', u'ask', u'consid', u'growth', u'need'] [u'council', u'green', u'light', u'draft', u'citi', u'plan'] [u'council', u'warn', u'resid', u'illeg', u'landfil'] [u'cuba', u'stag', u'volleybal', u'comeback'] [u'daintre', u'develop', u'decis', u'soon'] [u'disabl', u'carer', u'protest', u'inact'] [u'disney', u'challeng', u'lion', u'king', u'song', u'claim', u'court'] [u'dope', u'scandal', u'tarnish', u'game'] [u'doubt', u'cast', u'popular', u'elect', u'mayor'] [u'drogba', u'mark', u'chelsea'] [u'dubbo', u'polic', u'urg', u'increas', u'number'] [u'dutch', u'german', u'women', u'hockey', u'final'] [u'guerrouj', u'break', u'jinx'] [u'guerrouj', u'win'] [u'engin', u'troubl', u'forc', u'plan', u'return', u'melbourn'] [u'bishop', u'lose', u'holi', u'order'] [u'expert', u'watch', u'locust', u'migrat'] [u'farmer', u'group', u'urg', u'govt', u'address', u'high', u'fuel'] [u'farmer', u'face', u'trial', u'ekka', u'syring'] [u'fear', u'water', u'scheme', u'prove', u'cost'] [u'final', u'focus', u'say', u'william'] [u'final', u'submiss', u'gulf', u'doubl', u'murder'] [u'destroy', u'refuge', u'famili', u'home'] [u'fischer', u'dodg', u'deport'] [u'fisher', u'angri', u'plan', u'island', u'restrict'] [u'caus', u'airport', u'delay'] [u'frenchwoman', u'merret', u'captur', u'windsurf', u'titl'] [u'fridman', u'gold', u'fulfil', u'israel', u'dream'] [u'gaza', u'intellig', u'chief', u'hurt', u'ambush'] [u'georg', u'weston', u'food', u'fin', u'price', u'fix'] [u'germani', u'clinch', u'jump', u'gold'] [u'germani', u'face', u'russia', u'handbal', u'semi', u'final'] [u'gibbon', u'push', u'abbott', u'hospit', u'licenc'] [u'gippsland', u'share', u'fall', u'prevent', u'fund'] [u'girl', u'hilton', u'brothel', u'case', u'possibl'] [u'gold', u'rush', u'continu', u'aussi', u'cyclist'] [u'good', u'flow', u'water', u'chang'] [u'gould', u'quit', u'wallabi', u'post'] [u'govt', u'disturb', u'idri', u'court', u'decis'] [u'govt', u'tabl', u'cook', u'review', u'repli'] [u'govt', u'pressur', u'bali'] [u'greek', u'athlet', u'tell', u'tribut', u'sham'] [u'group', u'launch', u'goodwood', u'orphanag', u'abus', u'case'] [u'group', u'upbeat', u'alcohol', u'plan', u'impact'] [u'gunnedah', u'council', u'launch', u'birthday', u'blueprint'] [u'hackett', u'deliv', u'mini', u'aussi', u'babi', u'boom'] [u'harrop', u'take', u'silver', u'tight', u'finish'] [u'harrop', u'win', u'silver', u'kayak', u'progress', u'final'] [u'hay', u'win', u'dramat', u'women', u'hurdl'] [u'heal', u'star', u'boomer', u'finish', u'ninth'] [u'health', u'servic', u'urg', u'deliv', u'pregnanc', u'clinic'] [u'healthi', u'profit', u'hospit', u'group'] [u'helicopt', u'rescu', u'bonus', u'student'] [u'heritag', u'precinct', u'build', u'applic', u'withdraw'] [u'hewitt', u'paradorn', u'reach', u'long', u'island', u'second', u'round'] [u'hick', u'famili', u'arriv', u'guantanamo'] [u'hick', u'plead', u'guilti', u'charg'] [u'hick', u'releas', u'guilti', u'say'] [u'high', u'cost', u'blame', u'smorgon', u'profit', u'fall'] [u'higher', u'toll', u'take', u'fail', u'prevent', u'transurban', u'loss'] [u'high', u'hop', u'gold'] [u'hijack', u'fear', u'jet', u'crash', u'russia'] [u'hitman', u'hirer', u'sentenc', u'increas'] [u'hop', u'scheme', u'translat'] [u'injur', u'cook', u'go', u'fight'] [u'isinbayeva', u'world', u'pole', u'vault'] [u'italian', u'govt', u'reject', u'iraq', u'hostag', u'threat'] [u'japan', u'basebal', u'bronz'] [u'kalgoorli', u'take', u'camp', u'action'] [u'kcgm', u'charlott', u'effort'] [u'kenyan', u'clean', u'sweep', u'steeplechas'] [u'khan', u'aim', u'olymp', u'glori'] [u'king', u'inquest', u'begin'] [u'labor', u'coalit', u'spar', u'school', u'fund'] [u'labor', u'vote', u'butler', u'inquiri'] [u'land', u'council', u'oppos', u'atsic', u'abolit'] [u'latham', u'urg', u'govt', u'seek', u'justic', u'bali', u'case'] [u'local', u'stop', u'latest', u'wind', u'farm'] [u'long', u'jump', u'champ', u'target', u'record'] [u'fire', u'polic', u'turn'] [u'jail', u'polic', u'chase'] [u'man', u'bodi', u'skate', u'park'] [u'maradona', u'shed', u'tear', u'drug', u'rehab'] [u'mayor', u'cast', u'doubt', u'magnet', u'report'] [u'mayor', u'welcom', u'iron', u'talk'] [u'mear', u'win', u'sprint', u'bronz'] [u'medic', u'trust', u'offer', u'lectur', u'theatr', u'fund'] [u'minist', u'highlight', u'strong', u'farmer', u'market'] [u'miss', u'student', u'teacher'] [u'unhappi', u'reject', u'aerial', u'bait'] [u'molopo', u'test', u'stratford', u'qualiti'] [u'moorabool', u'air', u'popul', u'budget', u'worri'] [u'protect', u'urg', u'primari', u'industri'] [u'attack', u'hospit', u'bed', u'plan'] [u'fear', u'rail', u'shake', u'cost', u'local', u'job'] [u'reject', u'detent', u'centr', u'maggot', u'claim'] [u'multiplex', u'build', u'solid', u'result'] [u'shame', u'plan', u'illeg', u'tree', u'clearer'] [u'nation', u'cycl', u'race', u'launceston'] [u'advis', u'tackl', u'petrol', u'sniff', u'drug', u'abus'] [u'asbesto'] [u'newberi', u'peng', u'win', u'springboard', u'gold'] [u'energi', u'minist', u'get', u'busi'] [u'hitler', u'movi', u'caus', u'controversi'] [u'newton', u'ban', u'week'] [u'newton', u'plead', u'guilti', u'strike', u'charg'] [u'ventur', u'power', u'transfield', u'profit'] [u'resolut', u'council', u'wag', u'impass'] [u'continu', u'class', u'size', u'reduct'] [u'price', u'fall', u'lift', u'market', u'aust', u'dollar', u'fall'] [u'olymp', u'champion', u'crash', u'hurdl'] [u'airlin', u'crash', u'miss', u'russia'] [u'oper', u'crack', u'money', u'launder', u'scheme'] [u'opposit', u'hold', u'fear', u'child', u'abus', u'victim'] [u'orang', u'grove', u'owner', u'keep', u'door', u'open'] [u'orang', u'grove', u'close', u'court', u'rule'] [u'order', u'strike', u'secur', u'frustrat'] [u'pair', u'court', u'shepparton', u'murder'] [u'paraguay', u'end', u'iraq', u'dream'] [u'parent', u'protest', u'school', u'revamp', u'delay'] [u'parliamentari', u'tribut', u'flow', u'premier'] [u'peopl', u'warn', u'mobil', u'phone'] [u'pittman', u'prepar', u'gold'] [u'elect', u'date'] [u'polic', u'appeal', u'help', u'year', u'murder', u'mysteri'] [u'polic', u'charg', u'year', u'alleg', u'stab'] [u'polic', u'issu', u'warn', u'forc'] [u'polic', u'pair', u'intern', u'rugbi', u'leagu'] [u'polic', u'probe', u'suspect', u'murder', u'suicid'] [u'polic', u'probe', u'suspici', u'retir', u'villag', u'death'] [u'polic', u'weigh', u'option', u'entitl', u'rule'] [u'prison', u'escape', u'wont', u'face', u'charg'] [u'profit', u'jump', u'tran', u'tasman', u'insur'] [u'psychiatrist', u'say', u'accus', u'kidnapp', u'panic'] [u'public', u'warn', u'dodgi', u'roof', u'painter'] [u'push', u'marin', u'pilot', u'torr', u'strait'] [u'putin', u'order', u'secret', u'servic', u'investig', u'plane'] [u'quak', u'jolt', u'athen'] [u'radio', u'cyprus', u'experi', u'technic', u'itch'] [u'ranger', u'coach', u'call', u'fan', u'spurn', u'moor'] [u'rebel', u'lift', u'kathmandu', u'blockad'] [u'reef', u'chief', u'talk', u'rezon', u'benefit'] [u'region', u'airport', u'benefit', u'aviat'] [u'report', u'find', u'human', u'error', u'ship', u'ground'] [u'report', u'recommend', u'alcohol', u'court'] [u'research', u'project', u'probe', u'live', u'work', u'poor'] [u'robot', u'health', u'care'] [u'roo', u'steven', u'call'] [u'rumsfeld', u'contribut', u'iraqi', u'prison', u'chao'] [u'russian', u'hold', u'japanes', u'lead', u'synchro', u'swim'] [u'support', u'region', u'refuge'] [u'search', u'resum', u'miss', u'student'] [u'sebrl', u'win', u'decathlon', u'gold'] [u'sharapova', u'stun', u'haven', u'capriati'] [u'shark', u'score', u'classif'] [u'shoalhaven', u'face', u'water', u'ban'] [u'shock', u'loss', u'aussi', u'stingray'] [u'sistani', u'urg', u'mass', u'march', u'najaf', u'aid'] [u'spear', u'gold', u'feud'] [u'steven', u'call'] [u'strip', u'champion', u'send', u'gold', u'russia'] [u'studi', u'highlight', u'link', u'soft', u'drink'] [u'sudan', u'peac', u'talk', u'deadlock', u'rebel', u'backtrack'] [u'talli', u'comment', u'hearten', u'propon'] [u'taxi', u'driver', u'home', u'raid', u'serial', u'kill', u'probe'] [u'teenag', u'question', u'school', u'stab'] [u'tenix', u'defenc', u'disput'] [u'thatcher', u'arrest', u'coup', u'attempt'] [u'theft', u'toll', u'chariti', u'group', u'volunt'] [u'time', u'run', u'tamworth', u'council', u'nomin'] [u'tini', u'telescop', u'spot', u'giant', u'planet'] [u'trio', u'charg', u'rifl', u'theft'] [u'revenu', u'push', u'southern', u'cross', u'profit'] [u'tweed', u'mayor', u'back', u'feder', u'govt', u'rail', u'offer'] [u'russian', u'passeng', u'plan', u'miss'] [u'underworld', u'ident', u'drug', u'charg', u'pull'] [u'union', u'criticis', u'hospit', u'support', u'staff'] [u'union', u'hop', u'agreement', u'power', u'disput'] [u'union', u'look', u'boost', u'effici', u'amidst', u'cut'] [u'union', u'pleas', u'neglig', u'penalti'] [u'union', u'urg', u'boycott', u'hardi', u'product'] [u'forc', u'close', u'najaf', u'shrine'] [u'journalist', u'end', u'silenc', u'leak', u'case'] [u'highlight', u'poor', u'harvest', u'concern'] [u'offic', u'face', u'sierra', u'leon', u'court'] [u'volunt', u'group', u'seek', u'altern', u'helper'] [u'govt', u'defend', u'action', u'muja', u'disput'] [u'waratah', u'prepar', u'earli', u'super', u'campaign'] [u'william', u'darl', u'claim', u'gold'] [u'wit', u'credibl', u'question', u'bushfir', u'inquest'] [u'youth', u'face', u'court', u'home', u'theft'] [u'kill', u'sistani', u'sadr', u'support', u'fire'] [u'rate', u'rise', u'boulia', u'budget'] [u'accc', u'launch', u'help', u'rural', u'doctor'] [u'age', u'care', u'plan', u'bandaid', u'solut', u'opposit'] [u'alleg', u'grog', u'runner', u'arrest', u'follow'] [u'anderson', u'want', u'rail', u'plan', u'pledg'] [u'atapattu', u'guid', u'lanka', u'wicket'] [u'death', u'inquest', u'tell', u'user', u'ignor', u'guidelin'] [u'aussi', u'cyclist', u'defend', u'haul', u'amid', u'drug', u'slur'] [u'aussi', u'pair', u'progress', u'springboard', u'final'] [u'australia', u'settl', u'basebal', u'silver'] [u'australia', u'win', u'doubl', u'cycl', u'gold'] [u'authoris', u'polic', u'strength', u'rais', u'debnam'] [u'balco', u'prosecutor', u'athen', u'kenteri', u'thanou'] [u'bali', u'bomber', u'face', u'aust', u'court'] [u'ballarat', u'build', u'koala', u'plan', u'success'] [u'betham', u'stand', u'warrior', u'captain'] [u'bladerunn', u'scientist', u'flick'] [u'bluescop', u'reject', u'sack', u'claim'] [u'brazil', u'edg', u'spain', u'semi', u'basketbal', u'spot'] [u'brisk', u'trade', u'defi', u'orang', u'grove', u'court', u'rule'] [u'brothel', u'issu', u'head', u'court'] [u'bush', u'lawyer', u'quit', u'kerri', u'furor'] [u'bush', u'reclaim', u'lead', u'opinion', u'poll'] [u'busi', u'refuge', u'polici'] [u'busi', u'invest', u'rebound'] [u'canberra', u'land', u'asid', u'moder', u'incom', u'earner'] [u'cancer', u'council', u'tackl', u'cancer', u'indigen'] [u'casa', u'investig', u'winton', u'plane', u'crash'] [u'chamber', u'offer', u'mix', u'respons', u'safeti', u'plan'] [u'chariti', u'cross', u'bass', u'strait'] [u'cityrail', u'defend', u'taxi', u'expenditur'] [u'clean', u'product', u'solvent', u'caus', u'asthma'] [u'cleric', u'arriv', u'start', u'najaf', u'ceas'] [u'convent', u'centr', u'boost', u'tourism', u'industri'] [u'coolah', u'coonabarabran', u'council'] [u'coron', u'hit', u'attempt', u'impugn', u'bushfir'] [u'coron', u'find', u'hous', u'blaze', u'tragedi'] [u'costello', u'warn', u'price', u'threaten', u'growth'] [u'council', u'act', u'stamp', u'fire'] [u'council', u'delay', u'eureka', u'holiday', u'decis'] [u'council', u'get', u'tough', u'illeg', u'dump'] [u'council', u'like', u'marina', u'plan', u'tonight'] [u'councillor', u'reject', u'wickham', u'hous', u'plan'] [u'councillor', u'unhappi', u'tourism', u'meet', u'payment'] [u'council', u'reject', u'malcolmson', u'street', u'upgrad'] [u'council', u'sell', u'properti', u'long', u'overdu', u'rat'] [u'council', u'hospit', u'site'] [u'court', u'consid', u'pinochet', u'immun'] [u'critic', u'greet', u'land', u'coordin'] [u'cruis', u'missil', u'worri', u'neighbour', u'howard'] [u'death', u'die', u'author', u'die'] [u'defrock', u'put', u'focus', u'anglican', u'abus'] [u'dementieva', u'surviv', u'cull', u'haven'] [u'depart', u'frawley', u'undecid', u'futur'] [u'develop', u'sector', u'help', u'lift', u'townsvill', u'economi'] [u'dirrel', u'boost', u'american', u'box', u'hop'] [u'disgrac', u'meirhaegh', u'throw', u'open', u'hunt', u'mountain'] [u'domest', u'disput', u'death'] [u'drug', u'penalti', u'promot', u'australian', u'crew', u'bronz'] [u'dutch', u'away', u'golden', u'hockey', u'trick'] [u'earthwork', u'cost', u'land', u'owner', u'mountain', u'fine'] [u'educ', u'review', u'ignor', u'stakehold'] [u'everton', u'will', u'price', u'rooney'] [u'famili', u'candid', u'face', u'riverland', u'challeng'] [u'famili', u'tragedi', u'harrop', u'mind', u'athen'] [u'farmer', u'democrat', u'seek', u'trade', u'practic', u'chang'] [u'farmer', u'wild', u'oat', u'tractor', u'plough'] [u'farm', u'group', u'highlight', u'salin', u'fund', u'import'] [u'fast', u'rail', u'plan', u'track', u'opposit'] [u'fear', u'aerial', u'bait', u'boost', u'wild', u'woe'] [u'fewer', u'assault', u'convict', u'bendigo', u'ballarat'] [u'firework', u'charg', u'drop', u'chang'] [u'caus', u'travel', u'disrupt'] [u'fund', u'beef', u'longreach', u'saleyard'] [u'gambler', u'plead', u'guilti', u'fraud'] [u'reserv', u'power', u'australia', u'year'] [u'gatlin', u'stay', u'cours', u'sprint', u'doubl'] [u'girl', u'die', u'stab', u'wound'] [u'govt', u'paralys', u'land', u'opposit'] [u'govt', u'settl', u'voyag', u'collis', u'lawsuit'] [u'greek', u'box', u'protest', u'reject'] [u'group', u'aim', u'boost', u'season', u'visitor', u'number'] [u'group', u'back', u'exist', u'trade', u'hour'] [u'group', u'pleas', u'hotel', u'sale'] [u'grow', u'accept', u'livestock', u'scheme'] [u'guantanamo', u'inquiri', u'find', u'abus', u'evid'] [u'habib', u'meet', u'appoint', u'lawyer'] [u'harradin', u'blast', u'petrol', u'price'] [u'health', u'group', u'reject', u'number', u'claim'] [u'health', u'rebat', u'rise', u'boost', u'premium', u'latham'] [u'hick', u'clean', u'calm', u'court'] [u'hickss', u'lawyer', u'challeng', u'tribun', u'author'] [u'hilton', u'tell', u'court', u'electro', u'shock', u'therapi'] [u'hockeyroo', u'finish', u'olymp', u'fifth', u'place'] [u'hollywood', u'focus', u'gold', u'coast', u'benefit'] [u'hous', u'victim', u'succumb', u'injuri'] [u'howard', u'associ', u'latham', u'high', u'rat'] [u'howard', u'fuel', u'elect', u'rumour'] [u'howard', u'elect', u'pitch', u'focus', u'futur'] [u'hundr', u'thousand', u'evacu', u'typhoon', u'sweep'] [u'hungarian', u'lifter', u'exclud', u'olymp', u'drug'] [u'iaaf', u'launch', u'probe', u'greek', u'sprinter'] [u'icac', u'recommend', u'charg'] [u'indigen', u'administr', u'spotlight'] [u'indonesia', u'question', u'missil', u'plan', u'wisdom'] [u'industri', u'council', u'odd', u'chamber', u'job'] [u'inflex', u'matern', u'leav', u'hamper', u'women'] [u'itali', u'withdraw', u'iraq', u'request', u'minist'] [u'jackson', u'help', u'opal', u'medal', u'chanc'] [u'john', u'fairfax', u'doubl', u'profit'] [u'johnson', u'dream', u'regain', u'olymp', u'titl', u'bite'] [u'jone', u'make', u'return', u'game'] [u'juninho', u'head', u'celtic'] [u'kasper', u'australia', u'challeng'] [u'kean', u'week'] [u'kiwi', u'men', u'triathlon'] [u'knight', u'decid', u'newton', u'appeal'] [u'kookaburra', u'beat', u'spain', u'reach', u'men', u'final'] [u'kufa', u'bomb', u'kill', u'sistani', u'support'] [u'kuzenkova', u'get', u'hammer', u'gold'] [u'landhold', u'claim', u'separ', u'nation', u'status'] [u'lawyer', u'question', u'alcohol', u'restrict'] [u'lead', u'men', u'singl', u'contend'] [u'levi', u'strauss', u'stitch', u'factori', u'closur'] [u'lower', u'price', u'fuel', u'wall', u'ralli'] [u'charg', u'drug', u'firearm', u'offenc'] [u'mansurov', u'win', u'gold'] [u'mayor', u'call', u'bowen', u'polic'] [u'media', u'compani', u'push', u'market', u'higher'] [u'meet', u'talk', u'cut'] [u'merger', u'lift', u'tabcorp', u'profit'] [u'meteor', u'sight', u'resembl', u'firework', u'display'] [u'micronesian', u'politician', u'ban', u'offic', u'life'] [u'milit', u'kidnap', u'relat', u'iraqi', u'minist'] [u'mincor', u'record', u'profit'] [u'closur', u'cost', u'job'] [u'minist', u'offer', u'river', u'mine', u'pledg'] [u'mix', u'aussi', u'kayak'] [u'mix', u'respons', u'hervey', u'sydney', u'flight'] [u'central', u'medal', u'guarante'] [u'mother', u'charg', u'daughter', u'stab', u'death'] [u'mottram', u'fourth', u'open', u'heat'] [u'back', u'plan', u'creator'] [u'plan', u'impeach', u'blair', u'iraq'] [u'murder', u'prefer', u'death', u'tribal', u'punish'] [u'murray', u'goulburn', u'boost', u'milk', u'price'] [u'najaf', u'polic', u'detain', u'journalist'] [u'nambucca', u'valley', u'get', u'pump', u'restrict'] [u'nasa', u'find', u'predict', u'drought', u'flood'] [u'missil', u'hail', u'region', u'lethal'] [u'missil', u'boost', u'aust', u'strike', u'rang'] [u'newspap', u'printer', u'press', u'case', u'rise'] [u'twist', u'perth', u'serial', u'kill', u'investig'] [u'fight', u'delay', u'basketbal', u'stadium'] [u'nomine', u'name', u'tamworth', u'council', u'poll'] [u'miracl', u'pittman', u'finish', u'fifth'] [u'proof', u'corrupt', u'gang', u'link', u'polic'] [u'nucifora', u'head', u'zealand'] [u'number', u'plat', u'link', u'polic', u'underworld'] [u'price', u'slide'] [u'opal', u'sail', u'basketbal', u'semi'] [u'optus', u'vodafon', u'plan', u'joint', u'network'] [u'orang', u'grove', u'retail', u'defi', u'court', u'order'] [u'pakistan', u'deni', u'aid', u'taliban'] [u'paradorn', u'hunt', u'long', u'island', u'titl', u'trebl'] [u'rise', u'push', u'salari'] [u'report', u'profit', u'lift'] [u'pittman', u'fifth', u'cyclist', u'complet', u'massiv', u'gold', u'haul'] [u'plane', u'incid', u'prompt', u'secur', u'train', u'concern'] [u'plan', u'afoot', u'renmark', u'town', u'centr', u'revamp'] [u'polic', u'station', u'indigen', u'liaison', u'offic'] [u'polic', u'hous', u'victim'] [u'politician', u'polic', u'station', u'data'] [u'powder', u'plane', u'threat', u'passeng'] [u'power', u'station', u'disput', u'remain', u'deadlock'] [u'probe', u'launch', u'manildra', u'plant', u'blaze'] [u'prosser', u'william', u'miss', u'beach', u'volleybal', u'bronz'] [u'queen', u'choirmast', u'jail', u'child'] [u'radcliff', u'leav', u'late', u'decis'] [u'rain', u'threaten', u'triangular', u'final'] [u'ranger', u'crash', u'home', u'draw', u'cska'] [u'real', u'juventus', u'reach', u'champ', u'leagu'] [u'rebel', u'group', u'blame', u'india', u'attack'] [u'record', u'break', u'gunner', u'dream', u'debut'] [u'relief', u'greet', u'voyag', u'settlement'] [u'report', u'beij', u'boycott'] [u'resid', u'group', u'unhappi', u'cook', u'review', u'respons'] [u'lift', u'merimbula', u'sydney', u'number'] [u'rezazadeh', u'reign', u'world', u'strongest'] [u'riverina', u'woman', u'embroil', u'defrock', u'case'] [u'road', u'accid', u'research', u'cost'] [u'roddick', u'aim', u'repeat', u'perform'] [u'rower', u'promot', u'bronz', u'baggaley', u'power'] [u'russia', u'mourn', u'crash', u'victim', u'chechen', u'deni', u'role'] [u'russian', u'plane', u'break', u'midair'] [u'school', u'anti', u'bulli', u'scheme', u'prove', u'success'] [u'search', u'find', u'miss', u'walker'] [u'search', u'miss', u'mental', u'health', u'patient'] [u'secur', u'fear', u'prompt', u'burni', u'hospit', u'strike'] [u'sept', u'movi', u'premier', u'edinburgh'] [u'serial', u'rapist', u'get', u'year', u'jail', u'term'] [u'offenc', u'hear', u'tell', u'parent', u'worst'] [u'shannon', u'subsidi'] [u'shire', u'fund', u'assur'] [u'sistani', u'begin', u'najaf', u'peac', u'talk'] [u'sistani', u'return', u'iraq', u'forc', u'trap', u'mehdi', u'armi'] [u'smoke', u'law', u'tighten', u'debat'] [u'fuel', u'hit', u'litr', u'rockhampton'] [u'spain', u'eas', u'gold'] [u'stab', u'put', u'girl', u'hospit'] [u'statement', u'fuel', u'butler', u'resign'] [u'storm', u'expect', u'kimmorley', u'danger'] [u'storm', u'leav', u'resid', u'dark'] [u'studi', u'show', u'high', u'indigen', u'rheumat', u'diseas', u'rate'] [u'super', u'campbel', u'destroy', u'felix', u'titl'] [u'taiwan', u'typhoon', u'death', u'toll', u'rise'] [u'taliban', u'threaten', u'rumsfeld', u'vow', u'jihad'] [u'task', u'forc', u'design', u'asbesto', u'manag'] [u'taxi', u'stab', u'sentenc', u'lack', u'public', u'deterr'] [u'teacher', u'need', u'moral', u'boost', u'report'] [u'tent', u'resort', u'offer', u'tast', u'indigen', u'life'] [u'territori', u'introduc', u'child', u'law'] [u'thai', u'motorcycl', u'bomb', u'wound'] [u'thiev', u'fleec', u'wedderburn', u'produc'] [u'thiev', u'skim', u'orang', u'bank', u'account'] [u'thompson', u'leap', u'final'] [u'cleric', u'move', u'quell', u'najaf', u'violenc'] [u'tougher', u'water', u'ban', u'loom'] [u'tough', u'open', u'hewitt'] [u'tourist', u'go', u'flame'] [u'townsvill', u'label', u'racist', u'citi'] [u'tuvalu', u'govt', u'fall', u'follow', u'confid', u'motion'] [u'union', u'threaten', u'industri', u'unrest', u'forestri'] [u'armi', u'confirm', u'tortur', u'ghraib'] [u'court', u'overturn', u'yahoo', u'nazi', u'memorabilia', u'rule'] [u'cyclist', u'win', u'tamar', u'valley', u'round', u'nation'] [u'warn', u'bowler', u'reprimand'] [u'white', u'powder', u'spark', u'sydney', u'airport', u'investig'] [u'wind', u'farm', u'propon', u'criticis', u'protest'] [u'woman', u'lose', u'compo', u'fight', u'diseas', u'fear'] [u'youth', u'curfew', u'face', u'court'] [u'zimbabwean', u'opposit', u'boycott', u'elect'] [u'zimbabw', u'opposit', u'scar', u'lose', u'elect'] [u'broadcast', u'digit', u'plan'] [u'ghraib', u'inquiri', u'slam', u'aust', u'soldier'] [u'ghraib', u'lawyer', u'inquiri'] [u'accc', u'address', u'doctor', u'roster', u'price'] [u'acquit', u'biki', u'state'] [u'adelong', u'bank', u'lender'] [u'advertis', u'boom', u'boost', u'prime', u'profit'] [u'airport', u'receiv', u'secur', u'fund', u'boost'] [u'albani', u'adopt', u'adventur', u'theme', u'exhibit'] [u'ord', u'reach', u'record', u'high'] [u'redirect', u'tourism', u'fund', u'region'] [u'anderson', u'upbeat', u'northern', u'rail', u'solut'] [u'assam', u'bomb', u'design', u'trigger', u'panic'] [u'atsb', u'highlight', u'fatal', u'plane', u'crash', u'mistak'] [u'aust', u'name', u'iraq', u'kuwait', u'ambassador'] [u'baggaley', u'pip', u'bronz', u'final'] [u'beatti', u'wont', u'elabor', u'rwandan', u'secur', u'incid'] [u'sign', u'japan', u'deal'] [u'profit', u'gunn', u'timber', u'firm'] [u'biki', u'clear', u'bomb', u'arson', u'attack'] [u'blue', u'determin', u'pie'] [u'blue', u'magpi', u'thriller'] [u'bomber', u'hang', u'boot'] [u'bomb', u'trace', u'russian', u'plane', u'wreck'] [u'brisban', u'parad', u'welcom', u'olympian', u'home'] [u'british', u'support', u'anti', u'log', u'campaign'] [u'briton', u'guilti', u'coup', u'plot', u'charg'] [u'break', u'hill', u'get', u'bigger', u'slice', u'revenu'] [u'bronco', u'lose', u'berrigan', u'bunni', u'clash'] [u'bulk', u'bill', u'rise', u'show', u'polici', u'work', u'abbott'] [u'bulldog', u'humbl', u'hapless', u'knight'] [u'bush', u'admit', u'iraq', u'miscalcul'] [u'plan', u'tackl', u'indigen', u'cancer', u'rate'] [u'caltex', u'profit', u'surg'] [u'campaign', u'intensifi', u'machin'] [u'carr', u'call', u'branch', u'clean'] [u'caus', u'ambul', u'crash'] [u'cemeteri', u'vandal', u'leav', u'resid', u'horrifi'] [u'centroc', u'deal', u'save', u'council', u'thousand'] [u'china', u'end', u'cuban', u'volleybal', u'reign'] [u'chopper', u'firm', u'promis', u'million', u'townsvill'] [u'clark', u'win', u'atsic', u'suspens', u'appeal'] [u'cleaner', u'trash', u'tate', u'artwork'] [u'cloet', u'fli', u'high', u'jump', u'final'] [u'commut', u'warn', u'rail', u'line', u'woe'] [u'compo', u'bring', u'hardship', u'lawyer'] [u'cooper', u'spill', u'declin'] [u'coronor', u'find', u'polic', u'health', u'fail', u'dead'] [u'cosgrov', u'begin', u'china', u'visit'] [u'council', u'hold', u'wind', u'farm', u'zone', u'talk'] [u'councillor', u'odd', u'minist', u'caravan', u'park'] [u'council', u'govt', u'focus', u'powerlin', u'veget'] [u'council', u'struggl', u'veget', u'manag', u'studi'] [u'council', u'upset', u'land', u'advic'] [u'court', u'deni', u'murder', u'contact'] [u'court', u'name', u'launceston', u'danger', u'crimin'] [u'court', u'kimber', u'nativ', u'titl', u'claim'] [u'cowboy', u'slay', u'tiger', u'spot'] [u'cowboy', u'hope', u'slay', u'tiger', u'spot'] [u'crash', u'ordeal', u'put', u'driver', u'hospit'] [u'crawford', u'deni', u'gatlin', u'sprint', u'doubl'] [u'crawford', u'win', u'crowd', u'jeer'] [u'dahl', u'win', u'women', u'mountain', u'bike', u'gold', u'medal'] [u'daintre', u'grant', u'help', u'conserv'] [u'dampier', u'bunburi', u'pipelin', u'sale', u'stall'] [u'deak', u'disqualifi', u'korzeniowski', u'take', u'fourth'] [u'deak', u'assess', u'techniqu'] [u'defend', u'champion', u'capriati', u'oust', u'haven'] [u'diamond', u'reveal', u'australian', u'tour', u'date'] [u'downer', u'believ', u'polic', u'order'] [u'downer', u'bali', u'remark', u'help'] [u'driver', u'get', u'correct', u'order', u'polic', u'chase'] [u'drought', u'rais', u'countri', u'women', u'stress', u'level'] [u'dump', u'plan', u'pose', u'environment', u'threat'] [u'dynamik', u'face', u'illeg', u'test', u'fine'] [u'egyptian', u'boxer', u'disqualifi', u'semi', u'final'] [u'elect', u'avoid', u'parliamentari', u'scrutini'] [u'offici', u'didnt', u'question', u'child', u'prostitut'] [u'exhibit', u'centr', u'tip', u'attract', u'event'] [u'famili', u'hire', u'secur', u'guard', u'protect'] [u'fear', u'air', u'research', u'fund'] [u'fear', u'elect', u'delay', u'wine', u'break'] [u'final', u'round', u'regular', u'season', u'cafl', u'match'] [u'flamboy', u'ibrahim', u'end', u'egypt', u'gold', u'drought'] [u'forget', u'pursuit', u'belat', u'gold'] [u'liber', u'premier', u'farewel'] [u'union', u'boss', u'jail', u'offic', u'rampag'] [u'franc', u'denmark', u'cours', u'handbal', u'final'] [u'fraud', u'lawyer', u'jail', u'year'] [u'gallop', u'rule', u'coral', u'jetti', u'rethink'] [u'govt', u'face', u'compo', u'claim', u'nativ', u'titl', u'deal'] [u'govt', u'offer', u'compo', u'reef', u'fish'] [u'govt', u'compens', u'navi', u'disast', u'victim'] [u'green', u'group', u'air', u'bonnel', u'rezon', u'fear'] [u'hail', u'news', u'stonefruit', u'grower'] [u'heritag', u'offic', u'weigh', u'centuri', u'anchor'] [u'hewitt', u'move', u'long', u'island', u'quarter', u'final'] [u'home', u'sale', u'cosi', u'wwii', u'bunker'] [u'hous', u'group', u'get', u'fund', u'relief'] [u'howard', u'back', u'son', u'polit', u'spam', u'campaign'] [u'human', u'societi', u'attack', u'aerial', u'bait', u'plan'] [u'idol', u'star', u'noll', u'hospitalis', u'farm', u'accid'] [u'indonesia', u'criticis', u'lethal', u'missil', u'plan'] [u'invinc', u'sanchez', u'storm', u'gold'] [u'summon', u'hungarian', u'drug', u'test'] [u'iraqi', u'govt', u'accept', u'najaf', u'peac', u'deal'] [u'iraqi', u'kidnapp', u'kill', u'italian', u'journalist', u'jazeera'] [u'italian', u'govt', u'condemn', u'journalist', u'kill'] [u'jam', u'packer', u'chair', u'burswood', u'board'] [u'judg', u'grant', u'bushfir', u'inquiri', u'document', u'request'] [u'judg', u'reserv', u'gonzal', u'sentenc', u'decis'] [u'kaniva', u'retain', u'petrol', u'station'] [u'kenteri', u'pleas', u'crowd', u'support'] [u'kipket', u'cours', u'glori'] [u'knight', u'simpson', u'return', u'bulldog', u'clash'] [u'lashko', u'bow'] [u'latham', u'mysteri'] [u'lawyer', u'lose', u'appeal', u'drug', u'convict'] [u'lawyer', u'bushfir', u'inquiri', u'challeng'] [u'soccer', u'safeti', u'child', u'death', u'coron'] [u'lead', u'women', u'singl', u'contend'] [u'loom', u'redund', u'prompt', u'joineri', u'strike'] [u'mackay', u'sentenc', u'appeal', u'uphold'] [u'macquari', u'freez', u'hec', u'fee'] [u'die', u'hotel', u'park', u'accid'] [u'jail', u'tri', u'partner'] [u'surviv', u'plung', u'escap', u'train', u'collis'] [u'wound', u'drive', u'shoot'] [u'mayor', u'speak', u'chariti', u'theft'] [u'mental', u'health', u'patient', u'miss'] [u'mental', u'health', u'worker', u'seek', u'boost'] [u'merger', u'cost', u'wipe', u'westfield', u'profit'] [u'mildura', u'council', u'green', u'light', u'marina', u'plan'] [u'milit', u'claim', u'russian', u'blast'] [u'militia', u'welcom', u'pilgrim', u'najaf', u'shrine'] [u'minara', u'record', u'profit', u'turnaround'] [u'group', u'back', u'plan', u'chang'] [u'minist', u'agre', u'power', u'consumpt'] [u'minist', u'extend', u'applianc', u'energi', u'rat'] [u'monti', u'ryder', u'stand'] [u'motorcyclist', u'die', u'truck', u'crash'] [u'muslim', u'cleric', u'question', u'terror', u'charg'] [u'narracan', u'death', u'prompt', u'polic', u'probe'] [u'nation', u'stand', u'individu', u'candid'] [u'newborough', u'death', u'suspici', u'polic'] [u'heat', u'pool', u'open'] [u'jetstar', u'timet', u'boost', u'tourism'] [u'chief', u'seek', u'fairer', u'fund', u'deal'] [u'polic', u'beat'] [u'woorabinda', u'school', u'build', u'open'] [u'compo', u'bunburi', u'blackout'] [u'offic', u'sierra', u'leon', u'abus', u'case', u'adjourn'] [u'price', u'fall', u'despit', u'iraq', u'pipelin', u'attack'] [u'okan', u'find', u'leav', u'look', u'answer'] [u'olympian', u'tickertap', u'honour', u'sydney'] [u'outgo', u'chamber', u'chief', u'highlight', u'challeng'] [u'pakistan', u'confid', u'defeat', u'aussi'] [u'pakistan', u'fifth', u'place', u'men', u'hockey'] [u'paralympian', u'win', u'appeal', u'compet', u'game'] [u'pastoralist', u'welcom', u'kimberley', u'titl', u'rule'] [u'patient', u'incub'] [u'pinochet', u'lose', u'prosecut', u'immun'] [u'plane', u'threat', u'accus', u'charg', u'dismiss'] [u'campaign', u'margin', u'labor', u'seat'] [u'releas', u'children', u'overboard', u'document'] [u'remain', u'elect'] [u'poki', u'revenu', u'growth', u'prove', u'need', u'cull', u'govt'] [u'polic', u'boost', u'england'] [u'polic', u'disrupt', u'chat', u'room', u'teen', u'rendezv'] [u'polic', u'investig', u'lake', u'bodi'] [u'policeman', u'widow', u'repres', u'victim', u'crime'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'question', u'boy', u'school', u'assault'] [u'polic', u'search', u'pair', u'injur', u'child'] [u'polic', u'charg', u'pair', u'umpir', u'assault'] [u'port', u'unchang', u'home', u'derbi'] [u'powel', u'announc', u'retir'] [u'premier', u'oppos', u'cattl', u'plan', u'exempt'] [u'prison', u'tutor', u'affair', u'claim', u'dismiss'] [u'psychiatr', u'report', u'delay', u'theft', u'case'] [u'qantaslink', u'trial', u'extra', u'roma', u'flight'] [u'blame', u'nation', u'grid', u'blackout'] [u'quad', u'bike', u'group', u'reject', u'tour', u'concern'] [u'queensland', u'urg', u'blood'] [u'radcliff', u'metr'] [u'rann', u'challeng', u'futur', u'address', u'climat', u'chang'] [u'rehab', u'drive', u'maradona', u'claim', u'lawyer'] [u'research', u'delv', u'homeless', u'plight'] [u'research', u'har', u'banana', u'power'] [u'review', u'mildura', u'council', u'spotlight'] [u'rmit', u'head', u'resign', u'revenu', u'shortfal'] [u'rogg', u'refus', u'duplic', u'medal', u'request'] [u'rooney', u'hand', u'transfer', u'request'] [u'rwandan', u'presid', u'clear', u'bring', u'arm', u'guard'] [u'sack', u'rohd', u'consid', u'assist', u'role'] [u'sadr', u'hand', u'mosqu', u'key'] [u'union', u'consid', u'join', u'hardi'] [u'search', u'expand', u'miss', u'deckhand'] [u'senat', u'doubt', u'govt', u'heed', u'atsic', u'inquiri'] [u'sentinel', u'fin', u'worker', u'electrocut'] [u'sharapova', u'lead', u'russian', u'charg', u'open'] [u'small', u'asteroid', u'give', u'earth', u'closest', u'shave'] [u'stanozolol', u'taker', u'stupid', u'pound', u'say'] [u'state', u'funer', u'honour', u'veteran'] [u'state', u'blame', u'tasmanian', u'health', u'issu'] [u'resolut', u'forestri', u'disput'] [u'stricter', u'regul', u'govern', u'childcar'] [u'student', u'immunis', u'whoop', u'cough'] [u'sudan', u'dismiss', u'demand', u'disarm', u'militia'] [u'suncorp', u'post', u'record', u'profit'] [u'support', u'grow', u'nation', u'competit', u'polici'] [u'teacher', u'transfer', u'talk', u'fail'] [u'teenag', u'give', u'adult', u'term', u'arm', u'robberi'] [u'tourism', u'plan', u'highlight', u'hunter', u'visitor', u'slump'] [u'townsvill', u'genocid', u'claim', u'laughabl', u'mayor'] [u'track', u'star', u'centr', u'stage'] [u'train', u'program', u'improv', u'indigen', u'healthcar'] [u'truss', u'extend', u'drought', u'assist'] [u'union', u'warn', u'worker', u'awa'] [u'univers', u'aim', u'excel', u'indigen'] [u'seek', u'locust', u'plagu', u'nation'] [u'admit', u'translat', u'error', u'guantanamo'] [u'champ', u'greer', u'head', u'javelin', u'qualifi'] [u'judg', u'rule', u'partial', u'birth', u'abort'] [u'market', u'eas', u'slight'] [u'visa', u'expiri', u'worri', u'injur', u'girl', u'famili'] [u'wallabi', u'lose', u'second', u'coach'] [u'wambach', u'strike', u'give', u'soccer', u'gold'] [u'warburton', u'perman', u'polic', u'station'] [u'word', u'erupt', u'health', u'servic', u'locat'] [u'wilkinson', u'face', u'match', u'test'] [u'wind', u'farm', u'plan', u'undergo', u'test'] [u'wine', u'centr', u'moot', u'gold', u'coast'] [u'wine', u'compani', u'report', u'profit', u'increas'] [u'women', u'face', u'uncertain', u'futur', u'levi', u'closur'] [u'wool', u'sale', u'slight', u'market', u'improv'] [u'veteran', u'farewel'] [u'abbott', u'play', u'elect', u'specul'] [u'absalon', u'give', u'franc', u'cycl', u'gold'] [u'academ', u'shoot', u'dead', u'northern', u'iraq'] [u'allen', u'choos', u'carri', u'austrian', u'flag', u'close'] [u'anzac', u'rescu', u'indonesian', u'freighter', u'crew'] [u'argentina', u'end', u'star', u'olymp', u'reign'] [u'athlet', u'chief', u'scold', u'local', u'fan', u'jeer'] [u'aussi', u'brisco', u'end', u'belgian', u'debut', u'hospit'] [u'aussi', u'kayak', u'finish', u'silver', u'line'] [u'aussi', u'knock', u'taekwondo', u'quarter'] [u'aussi', u'shark', u'edg'] [u'australia', u'final'] [u'australia', u'pakistan', u'merci', u'dizzi'] [u'austrian', u'pair', u'retain', u'tornado', u'titl'] [u'move', u'protect', u'rail', u'network'] [u'merino'] [u'bodi', u'turkish', u'hostag', u'iraq'] [u'brave', u'opal', u'fall', u'short', u'silver'] [u'bulk', u'bill', u'rat', u'mislead', u'latham', u'say'] [u'bush', u'chief', u'temporari', u'expand', u'power'] [u'canberra', u'cop', u'join', u'mission'] [u'canberra', u'driver', u'warn', u'roo'] [u'chelsea', u'readi', u'pile', u'woe', u'southampton'] [u'church', u'woo', u'reluct', u'worshipp', u'chocol'] [u'classi', u'argentina', u'year', u'wait'] [u'cold', u'shower', u'dutch', u'urin', u'public'] [u'commiss', u'recommend', u'water', u'price', u'hike'] [u'cuban', u'power', u'gold', u'medal', u'fight'] [u'denmark', u'scar', u'fraud'] [u'doctor', u'disput', u'abbott', u'bulk', u'bill', u'claim'] [u'doyl', u'point', u'finger', u'govt', u'rmit', u'troubl'] [u'driver', u'clock'] [u'weather', u'bring', u'forward', u'danger', u'period'] [u'dutch', u'abort', u'boat', u'ask', u'enter', u'portugues', u'port'] [u'eagl', u'docker', u'fight', u'final', u'spot'] [u'eagl', u'demon'] [u'egyptian', u'boxer', u'make', u'olymp', u'histori'] [u'nino', u'possibl', u'return', u'rais', u'fear'] [u'eritrean', u'hijack', u'plane', u'expuls', u'libya'] [u'farmer', u'brace', u'locust', u'season'] [u'firefight', u'medal', u'angri'] [u'gallop', u'keep', u'elect', u'option', u'open'] [u'golden', u'goal', u'give', u'germani', u'hockey', u'bronz'] [u'govt', u'deni', u'spam', u'campaign', u'break'] [u'habib', u'laywer', u'cancel', u'visit'] [u'hall', u'fame', u'recognis', u'transport', u'worker', u'report'] [u'hammer', u'throw', u'champion', u'hunt', u'dope', u'test', u'mysteri'] [u'helm', u'pole', u'posit', u'platform', u'final'] [u'helm', u'target', u'aussi', u'platform', u'doubl'] [u'hewitt', u'loom', u'spoiler', u'paradorn', u'mileston'] [u'hid', u'shrug', u'labor', u'attack'] [u'howard', u'warn', u'union', u'power', u'latham'] [u'hungari', u'serbia', u'meet', u'men', u'water', u'polo', u'final'] [u'hungari', u'voro', u'win', u'women', u'pentathlon'] [u'index', u'rank', u'firm', u'social', u'respons'] [u'iraq', u'seek', u'mend', u'relat', u'iran'] [u'ireland', u'oconnor', u'win', u'showjump', u'gold'] [u'irwin', u'impress', u'rabbitoh'] [u'italian', u'stun', u'lithuania', u'reach', u'basketbal', u'final'] [u'itali', u'brazil', u'reach', u'volleybal', u'final'] [u'itali', u'edg', u'iraq', u'soccer', u'bronz'] [u'think', u'say', u'stun', u'runner'] [u'jamaica', u'women', u'relay', u'mistak'] [u'johnson', u'join', u'funk', u'connecticut', u'lead'] [u'khan', u'reach', u'gold', u'medal', u'match'] [u'kookaburra', u'clinch', u'histor', u'gold'] [u'kookaburra', u'laugh', u'golden', u'breakthrough'] [u'labor', u'blame', u'vanston', u'clark', u'bungl'] [u'labor', u'candid', u'join', u'prison', u'protest'] [u'labor', u'plan', u'tropic', u'research', u'centr'] [u'lack', u'oncolog', u'unit', u'traumat', u'patient'] [u'leader', u'trade', u'blow', u'quasi', u'campaign'] [u'lion', u'send', u'warn', u'final', u'rival'] [u'win', u'hurdl', u'gold', u'equal'] [u'loss', u'saint', u'leav', u'freo', u'knife', u'edg'] [u'loss', u'saint', u'leav', u'freo', u'knife', u'edg'] [u'mack', u'go', u'pole', u'vault', u'gold'] [u'major', u'temperatur', u'rise', u'record', u'arctic'] [u'matthew', u'dismiss', u'port', u'game'] [u'matthew', u'dismiss', u'williamss', u'game'] [u'menendez', u'win', u'javelin', u'eas'] [u'microsoft', u'promis'] [u'minist', u'deni', u'conflict', u'poki'] [u'minist', u'question', u'fish', u'packag', u'delay'] [u'natroad', u'back', u'heavi', u'fin', u'speed', u'truck'] [u'navi', u'rescu', u'near', u'singapor'] [u'pakistani', u'elect', u'despit', u'boycott'] [u'poll', u'give', u'labor', u'win', u'lead'] [u'polic', u'review', u'develop', u'weapon', u'check'] [u'price', u'eas', u'fear', u'suppli', u'disrupt', u'fade'] [u'price', u'firm', u'week', u'declin'] [u'opal', u'meet', u'gold'] [u'panther', u'strong', u'eel'] [u'pentagon', u'offici', u'suspect', u'isra'] [u'pilot', u'die', u'ultralight', u'crash'] [u'eye', u'harradin', u'senat', u'seat'] [u'stand', u'firm', u'overboard', u'duel'] [u'polic', u'remov', u'protest'] [u'powel', u'cancel', u'athen', u'visit'] [u'power', u'firm', u'fight', u'week', u'strike', u'court'] [u'prison', u'protest', u'spark', u'polit'] [u'examin', u'secur', u'camera', u'option'] [u'raikkonen', u'lead', u'crash', u'belgian', u'practic'] [u'cross', u'fear', u'outsid', u'darfur', u'camp'] [u'rock', u'act', u'side', u'campaign'] [u'russia', u'complet', u'olymp', u'synchro', u'sweep', u'team'] [u'russian', u'bovina', u'reach', u'haven', u'final'] [u'russian', u'focus', u'passeng', u'crash', u'inquiri'] [u'sadr', u'surrend', u'control', u'shrine'] [u'sangakkara', u'lead', u'belt', u'protea'] [u'korea', u'women', u'handbal', u'final'] [u'south', u'africa', u'deni', u'talk', u'malabo', u'extradit'] [u'south', u'australia', u'plan', u'communiti', u'scienc', u'lesson'] [u'south', u'stand', u'tall', u'thrill', u'draw'] [u'storm', u'outmuscl', u'shark'] [u'student', u'protest', u'attack'] [u'swan', u'lock', u'final'] [u'swift', u'reveng', u'netbal', u'final'] [u'swift', u'titl', u'thriller'] [u'taekwondo', u'gold', u'korea', u'iran'] [u'teacher', u'encourag', u'polic', u'check'] [u'thai', u'bantamweight', u'fight', u'cuban', u'champ', u'gold'] [u'thompson', u'fourth', u'russian', u'clean', u'sweep', u'long', u'jump'] [u'trenton', u'knock', u'taekwondo', u'quarter'] [u'charg', u'perth', u'racist', u'attack'] [u'unherald', u'xing', u'stun', u'ethiopian'] [u'univers', u'build', u'hous', u'hemp'] [u'angri', u'pressur', u'hamm'] [u'women', u'basketbal', u'final'] [u'vandal', u'attack', u'adelaid', u'high', u'school'] [u'weightlift', u'silver', u'medallist', u'fail', u'drug', u'test'] [u'wit', u'warn', u'graphic', u'port', u'arthur', u'video'] [u'world', u'champ', u'croatia', u'reach', u'men', u'handbal', u'final'] [u'yemen', u'jail', u'limburg', u'envoy', u'murder', u'plot'] [u'accus', u'racist', u'friend', u'say'] [u'adelaid', u'host', u'kidney', u'diseas', u'confer'] [u'afghan', u'school', u'blast', u'kill'] [u'argentina', u'toppl', u'itali', u'basketbal', u'gold'] [u'arsonist', u'blame', u'church'] [u'aussi', u'shark', u'croatia'] [u'aussi', u'surpris', u'relay', u'silver'] [u'australian', u'polic', u'mission'] [u'beatti', u'want', u'clean', u'campaign'] [u'bomber', u'muzzl', u'dog', u'scrape'] [u'bomb', u'kill', u'chechnya'] [u'borzakovskiy', u'snatch', u'men', u'gold'] [u'attack', u'melbourn', u'parti'] [u'brave', u'opal', u'silver'] [u'british', u'stun', u'sprint', u'relay'] [u'bush', u'tout', u'intellig', u'move'] [u'capel', u'take', u'relay', u'team', u'posit', u'test'] [u'cat', u'clip', u'meek', u'hawk', u'ahead', u'final'] [u'china', u'land', u'women', u'volleybal', u'gold'] [u'china', u'send', u'envoy', u'korea'] [u'clash', u'athen', u'olymp', u'final'] [u'cowboy', u'final', u'berth'] [u'crowd', u'flock', u'river', u'firework', u'spectacular'] [u'cuba', u'bronz', u'women', u'volleybal'] [u'darfur', u'deleg', u'urg', u'return', u'talk'] [u'dark', u'chocol', u'help', u'blood', u'flow'] [u'democrat', u'announc', u'team', u'elect'] [u'denmark', u'women', u'handbal', u'gold'] [u'disabl', u'children', u'access', u'taxi', u'subsidi'] [u'dragon', u'amaz', u'comeback'] [u'dream', u'team', u'salvag', u'pride', u'basketbal', u'bronz'] [u'egyptian', u'boxer', u'fail', u'medic'] [u'elect', u'wait', u'game', u'continu'] [u'guerrouj', u'beat', u'bekel', u'histor', u'doubl'] [u'experi', u'factor', u'leagu', u'loss', u'lion'] [u'explos', u'crash', u'russian', u'jet'] [u'firefight', u'criticis', u'medal', u'hand'] [u'franc', u'assess', u'iraq', u'hostag', u'claim'] [u'franc', u'scrambl', u'free', u'kidnap', u'journalist'] [u'funk', u'edg', u'ahead', u'connecticut'] [u'protest', u'condemn', u'call', u'heavi'] [u'girl', u'save', u'home'] [u'goodwil', u'visit', u'aim', u'strengthen', u'australia'] [u'govt', u'appeal', u'clark', u'rule'] [u'green', u'push', u'year', u'fix', u'term'] [u'green', u'shoot', u'senat', u'seat'] [u'gunner', u'chelsea', u'march', u'unit', u'falter'] [u'helm', u'snatch', u'dive', u'silver'] [u'hewitt', u'advanc', u'final'] [u'high', u'price', u'stay', u'analyst', u'say'] [u'histor', u'church', u'destroy'] [u'holm', u'pull', u'golden', u'doubl'] [u'hous', u'industri', u'welcom', u'land', u'ballot'] [u'illeg', u'fish', u'boat', u'destroy'] [u'impress', u'russian', u'bovina', u'win', u'haven', u'open'] [u'chief', u'hail', u'awaken', u'asia', u'athen'] [u'iraq', u'group', u'take', u'french', u'citizen', u'hostag', u'report'] [u'iraqi', u'busi', u'prepar', u'trade', u'fair'] [u'iraqi', u'minist', u'meet', u'sistani'] [u'israel', u'deni', u'spi'] [u'time', u'chang', u'latham', u'say'] [u'kerri', u'tour', u'duti', u'heroic', u'bush', u'say'] [u'khan', u'stop', u'cuba', u'finish', u'box', u'gold'] [u'lewinski', u'loo', u'defend', u'sell', u'stori'] [u'liber', u'push', u'compulsori', u'water', u'fluorid'] [u'light', u'plane', u'wreckag', u'salvag'] [u'lose', u'nightmar', u'smith'] [u'margin', u'seat', u'elect', u'result'] [u'milit', u'kill', u'detain', u'afghan', u'oper'] [u'mine', u'compani', u'seek', u'licenc', u'west', u'coast'] [u'minist', u'plan', u'toad', u'block'] [u'minist', u'mission', u'meet', u'sistani', u'najaf'] [u'minor', u'parti', u'govt', u'notic'] [u'moroccan', u'crash', u'kill'] [u'muster', u'expect', u'record', u'crowd'] [u'water', u'treatment', u'plant', u'northern', u'midland'] [u'norwegian', u'outsid', u'win', u'javelin', u'gold'] [u'philippin', u'face', u'huge', u'flood'] [u'call', u'poll'] [u'announc', u'elect'] [u'poker', u'machin', u'tax', u'caus', u'loss', u'club'] [u'poker', u'machin', u'tax', u'cost', u'job'] [u'polic', u'probe', u'port', u'arthur', u'tape', u'sale'] [u'power', u'minor', u'premiership'] [u'premier', u'highlight', u'import', u'margin', u'seat'] [u'russian', u'minist', u'favourit', u'chechen', u'poll'] [u'public', u'servant', u'oppos', u'research', u'station', u'closur'] [u'public', u'servant', u'stand', u'firm', u'rise', u'claim'] [u'queensland', u'shuck', u'runner'] [u'rebel', u'walk', u'sudan', u'peac', u'talk'] [u'rogg', u'give', u'mark', u'athen'] [u'rooster', u'hold', u'warrior'] [u'russia', u'group', u'rhythmic', u'gold'] [u'sanderson', u'lone', u'wrestl', u'gold', u'success'] [u'introduc', u'hoon', u'law'] [u'second', u'charg', u'murder'] [u'secur', u'tight', u'chechen', u'poll'] [u'silver', u'line', u'australia'] [u'hold', u'newcastl', u'street', u'brawl'] [u'polic', u'kill', u'peopl', u'wound', u'iraq'] [u'korea', u'lodg', u'appeal', u'hamm', u'medal'] [u'slesarenko', u'wreck', u'cloet', u'high', u'jump', u'dream'] [u'soli', u'maintain', u'cuban', u'heavyweight', u'grip'] [u'spanish', u'crash', u'kill', u'injur'] [u'suburb', u'push', u'perman', u'polic', u'presenc'] [u'symond', u'lead', u'australia', u'triangular'] [u'tasmania', u'train', u'doctor', u'emerg'] [u'thoma', u'carri', u'flag', u'close', u'ceremoni'] [u'threat', u'demand', u'breed', u'scienc'] [u'tobacco', u'chief', u'say', u'industri', u'cooper'] [u'trulli', u'take', u'pole', u'raini'] [u'children', u'kill', u'road', u'smash'] [u'hold', u'bomb', u'plot'] [u'kill', u'road', u'smash'] [u'typhoon', u'pound', u'southern', u'japan'] [u'conserv', u'leader', u'accus', u'bush', u'protect'] [u'ukrain', u'snatch', u'bronz', u'handbal'] [u'unit', u'rais', u'rooney'] [u'women', u'relay', u'gold'] [u'china', u'taekwondo', u'gold'] [u'veteran', u'famili', u'rememb', u'legaci', u'help'] [u'voic', u'bart', u'simpson', u'enjoy', u'anonym', u'fame'] [u'voter', u'judg', u'credibl', u'lee', u'say'] [u'wilkinson', u'complet', u'game', u'month'] [u'wrestler', u'lifter', u'fail', u'drug', u'test'] [u'yothu', u'yindi', u'bag', u'music', u'prize'] [u'need', u'iran', u'remind'] [u'anti', u'bush', u'protest', u'arrest'] [u'hurt', u'english', u'grandstand', u'collaps'] [u'tree', u'plant', u'sydney', u'domain'] [u'abbott', u'begin', u'health', u'campaign'] [u'accid', u'put', u'pedestrian', u'hospit'] [u'accus', u'nurs', u'aggress', u'patient'] [u'accus', u'underworld', u'killer', u'challeng', u'direct'] [u'advis', u'appear', u'rezon', u'inquiri'] [u'agforc', u'seek', u'certainti', u'feder', u'poll'] [u'alburi', u'member', u'criticis', u'health', u'consult'] [u'alic', u'spring', u'festiv', u'launch'] [u'qaeda', u'taliban', u'claim', u'respons', u'kabul'] [u'amateur', u'archaeologist', u'track', u'lose', u'tomb', u'cheop'] [u'anti', u'bush', u'ralli', u'hit', u'york', u'street'] [u'apologis', u'children', u'abus', u'care', u'report'] [u'argyl', u'court', u'man', u'death'] [u'arm', u'race', u'spiral', u'control'] [u'aussi', u'dollar', u'drop', u'poll', u'call'] [u'austin', u'win', u'sudden', u'death'] [u'australian', u'final', u'cher'] [u'bartlett', u'predict', u'difficult', u'poll', u'democrat'] [u'beatti', u'want', u'electr', u'meet'] [u'beckham', u'expect', u'babi', u'number'] [u'elect', u'battl', u'expect', u'bass'] [u'birdsvill', u'race', u'warn', u'motorist'] [u'brisban', u'hotel', u'occup'] [u'brisban', u'tunnel', u'plan', u'stand'] [u'busi', u'group', u'issu', u'elect', u'wish', u'list'] [u'buyer', u'southern', u'poodl'] [u'rememb', u'outback', u'polic'] [u'campaign', u'begin', u'gippsland'] [u'campaign', u'begin', u'hinkler', u'capricornia'] [u'campaign', u'heat', u'north', u'coast'] [u'canberra', u'communiti', u'experi', u'huge', u'popul'] [u'canberra', u'rain', u'expect', u'eas'] [u'canberra', u'rain', u'continu'] [u'central', u'asia', u'japan'] [u'chechen', u'elect', u'kremlin', u'candid'] [u'chines', u'polic', u'hold', u'australian', u'protest'] [u'close', u'dragon'] [u'cole', u'myer', u'job', u'outsourc'] [u'compani', u'gross', u'oper', u'profit'] [u'concern', u'rail', u'line', u'proxim', u'coast'] [u'concern', u'rais', u'council', u'leader', u'trip'] [u'coron', u'clear', u'hospit', u'death'] [u'costello', u'refus', u'rule', u'leadership'] [u'costello', u'rule', u'leadership'] [u'costello', u'unconcern', u'current', u'account', u'deficit'] [u'costello', u'warn', u'terrorist', u'influenc'] [u'court', u'appear', u'drug', u'raid'] [u'court', u'reject', u'appeal', u'milton', u'develop'] [u'darwin', u'seat', u'elect', u'spotlight'] [u'debat', u'continu', u'north', u'coast', u'rail'] [u'democrat', u'fight', u'opera', u'singer', u'visa'] [u'democrat', u'leader', u'cast', u'view', u'elect'] [u'dept', u'store', u'plan', u'reject', u'zone', u'hitch'] [u'devil', u'good', u'bomber', u'york', u'park', u'thriller'] [u'doctor', u'fluorid', u'queensland'] [u'downer', u'deni', u'islam', u'asia', u'help', u'terrorist'] [u'driveway', u'death', u'suspici', u'polic'] [u'drought', u'extend', u'bourk', u'brewarrina'] [u'dwyer', u'talk', u'surpris', u'silver', u'medal'] [u'east', u'timor', u'mark', u'referendum', u'vote'] [u'elect', u'campaign', u'build', u'illawarra'] [u'elect', u'campaign', u'underway', u'gold', u'coast'] [u'elect', u'spotlight', u'fall', u'margin', u'seat'] [u'employ', u'opportun', u'festiv', u'revamp'] [u'england', u'veteran', u'face', u'squeez'] [u'timor', u'confid', u'secur', u'timor', u'right'] [u'exhibit', u'put', u'focus', u'central', u'aust'] [u'famili', u'croc', u'victim', u'call', u'swim'] [u'farewel', u'athen'] [u'farmer', u'await', u'impend', u'locust', u'threat'] [u'farmer', u'welcom', u'rain'] [u'fatal', u'accid', u'quirindi'] [u'fatal', u'crash', u'spark', u'driver', u'caution'] [u'fear', u'rehabilit', u'ahead'] [u'feder', u'elect', u'campaign', u'barker', u'commenc'] [u'feder', u'poll', u'complic', u'elect'] [u'govt', u'urg', u'decid', u'crocodil', u'manag'] [u'flood', u'warn', u'upper', u'murray', u'river'] [u'push', u'rail', u'access', u'challeng'] [u'food', u'shortag', u'forc', u'dingo', u'town'] [u'footbal', u'season', u'busi'] [u'foster', u'children', u'welcom', u'child', u'abus', u'report'] [u'magistr', u'appeal', u'convict'] [u'face', u'judiciari'] [u'franc', u'stick', u'headscarf'] [u'french', u'minist', u'attempt', u'secur', u'releas'] [u'fund', u'need', u'stop', u'spread', u'cane', u'toad'] [u'gehrig', u'clinch', u'coleman', u'medal'] [u'undergo', u'knee', u'surgeri'] [u'goddard', u'stick', u'saint'] [u'govern', u'reintroduc', u'plat', u'driver'] [u'govt', u'advertis', u'poker', u'machin'] [u'govt', u'plan', u'marina', u'project', u'media', u'blitz'] [u'govt', u'urg', u'fund', u'kidney', u'diseas', u'manag'] [u'green', u'confid', u'elect', u'success'] [u'grower', u'wont', u'bend', u'opposit', u'banana', u'import'] [u'guid', u'offer', u'help', u'fight', u'rural', u'crime'] [u'havilah', u'confid', u'miner'] [u'headless', u'skeleton', u'pacif', u'graveyard'] [u'healthscop', u'seek', u'earli', u'hospit', u'handov'] [u'henti', u'indec', u'assault', u'hear', u'postpon'] [u'heritag', u'list', u'seek', u'luna', u'park'] [u'artist', u'clean', u'award'] [u'hire', u'chang', u'alic', u'airport'] [u'hotlin', u'marin', u'crime', u'crackdown'] [u'howard', u'costello', u'present', u'unit'] [u'howard', u'latham', u'airwav'] [u'hundr', u'evacu', u'taiwan', u'slide'] [u'hunter', u'forum', u'put', u'focus', u'unemploy'] [u'independ', u'school', u'resist', u'curriculum', u'restrict'] [u'inquest', u'begin', u'croc', u'attack'] [u'kalgoorli', u'name', u'john', u'volunt', u'year'] [u'kalgoorli', u'member', u'push', u'mine', u'scheme'] [u'king', u'weigh', u'wentworth', u'option'] [u'knight', u'appeal', u'newton', u'suspens'] [u'knight', u'seek', u'leav', u'appeal', u'newton', u'suspens'] [u'kremlin', u'tip', u'chechen', u'poll'] [u'labor', u'call', u'kid', u'overboard', u'inquiri'] [u'labor', u'promis', u'reef', u'research', u'centr', u'fund'] [u'labor', u'shrug', u'rate', u'specul'] [u'latham', u'accus', u'tell', u'porki'] [u'latham', u'anger', u'question', u'time', u'cancel'] [u'latham', u'lie', u'nation', u'payrol'] [u'latham', u'restat', u'troop', u'home', u'christma', u'pledg'] [u'latham', u'forestri', u'announc'] [u'lawyer', u'launch', u'legal', u'free', u'bashir'] [u'liber', u'like', u'retain', u'seat', u'forrest'] [u'lib', u'hope', u'margin', u'ballarat'] [u'libyan', u'win', u'middl', u'east', u'crown'] [u'lingiari', u'campaign', u'focus', u'indigen', u'issu'] [u'lion', u'better', u'say', u'scott'] [u'lion', u'better', u'say', u'scott'] [u'livestock', u'produc', u'forum', u'glen', u'inn'] [u'local', u'govt', u'gather', u'boost', u'mackay', u'coffer'] [u'log', u'protest', u'form', u'blockad'] [u'jail', u'mother', u'death'] [u'kill', u'road', u'accid'] [u'child', u'charg'] [u'stab', u'alburi'] [u'marina', u'propon', u'pledg', u'environment', u'care'] [u'martin', u'opt', u'renew', u'ombudsman', u'term'] [u'mcewen', u'elector', u'margin', u'seat', u'watch'] [u'meat', u'group', u'upbeat', u'futur'] [u'medal', u'win', u'diver', u'plung', u'famili'] [u'meet', u'hear', u'health', u'merger', u'concern'] [u'minist', u'flag', u'novemb', u'start', u'stuart', u'highway'] [u'minist', u'discuss', u'report', u'ranger', u'leak'] [u'molik', u'open', u'flush', u'meadow', u'campaign'] [u'monti', u'donald', u'name', u'ryder', u'wildcard'] [u'hard', u'time', u'predict', u'timber', u'town'] [u'call', u'poster', u'protect'] [u'question', u'nurs', u'patient', u'ratio'] [u'murray', u'member', u'start', u'campaign'] [u'nation', u'parti', u'leader', u'confirm', u'leadership'] [u'neitz', u'chanc', u'play', u'don'] [u'netbal', u'squad', u'announc', u'tran', u'tasman', u'seri'] [u'england', u'candid', u'begin', u'campaign'] [u'polic', u'unit', u'tackl', u'mildura', u'crime'] [u'psychiatr', u'ward', u'sydney', u'hospit'] [u'nigerian', u'troop', u'darfur', u'peac', u'mission'] [u'immedi', u'plan', u'river'] [u'northern', u'restaur', u'name', u'tasmania', u'best'] [u'give', u'million', u'inform', u'unsolv'] [u'premier', u'pressur', u'parliament', u'resum'] [u'polic', u'seiz', u'weapon'] [u'nuclear', u'wast', u'dump', u'elect', u'issu'] [u'nation', u'founder', u'stand', u'senat'] [u'owen', u'set', u'ronaldo', u'real'] [u'plane', u'crash', u'victim', u'think', u'grazier'] [u'caution', u'voter', u'green'] [u'offer', u'latham', u'debat'] [u'urg', u'king', u'independ'] [u'polic', u'arrest', u'suspect', u'bridg', u'thiev'] [u'policemen', u'escap', u'flood', u'water'] [u'polic', u'probe', u'brawl'] [u'polic', u'question', u'port', u'arthur', u'tape'] [u'polic', u'search', u'arm', u'robberi', u'gang'] [u'polic', u'search', u'miss', u'melbourn'] [u'polic', u'warn', u'vigil', u'amid', u'crime', u'drop'] [u'port', u'confid', u'ahead', u'final', u'seri'] [u'port', u'piri', u'smelter', u'produc'] [u'prais', u'expans', u'justic', u'program'] [u'princ', u'highway', u'vote', u'worst', u'road'] [u'prior', u'charg', u'drop', u'hook', u'accus'] [u'public', u'liabil', u'cost', u'crippl', u'disabl'] [u'public', u'health', u'admin', u'chang'] [u'public', u'urg', u'help', u'shop', u'damag', u'driver'] [u'public', u'urg', u'bigger', u'child', u'abus', u'problem'] [u'rain', u'damag', u'break', u'hill'] [u'rate', u'rise', u'predict', u'regardless', u'elect', u'outcom'] [u'record', u'crowd', u'gympi', u'countri', u'music', u'muster'] [u'road', u'affirm', u'commit', u'calder', u'highway'] [u'robinson', u'win', u'silver'] [u'rockhampton', u'player', u'crucial', u'hockey', u'gold', u'medal'] [u'saint', u'hope', u'hamil', u'recoveri'] [u'seafood', u'market', u'welcom', u'compo', u'deal', u'chang'] [u'senat', u'reopen', u'children', u'overboard', u'inquiri'] [u'sentenc', u'reduc', u'killer'] [u'sexual', u'frustrat', u'chimp', u'take', u'smoke'] [u'shire', u'back', u'motocross', u'track', u'site'] [u'shire', u'give', u'charg', u'mine', u'hous'] [u'soldier', u'find', u'miss', u'woman'] [u'somar', u'push', u'alcohol', u'beer', u'plan'] [u'south', u'east', u'gear', u'elect', u'battl'] [u'southern', u'queensland', u'prepar', u'vote'] [u'sport', u'academi', u'offer', u'boost', u'local', u'athlet'] [u'starcraft', u'prais'] [u'star', u'gazer', u'treat', u'rare', u'blue', u'moon'] [u'georg', u'appoint', u'chairman'] [u'georg', u'faster', u'internet'] [u'stock', u'slide', u'elect', u'concern'] [u'stroke', u'kill', u'perth'] [u'studi', u'reveal', u'youth', u'drug'] [u'sudan', u'talk', u'deadlock'] [u'survey', u'highlight', u'princ', u'highway', u'woe'] [u'sydney', u'final', u'swan'] [u'govt', u'move', u'increas', u'transpar', u'forestri'] [u'recruit', u'interst', u'ambul', u'offic'] [u'time', u'run', u'boundari', u'submiss'] [u'travel', u'controversi', u'issu', u'draper'] [u'tribut', u'tamworth', u'local', u'olympian'] [u'tripodi', u'face', u'orang', u'grove', u'accus'] [u'kill', u'plane', u'crash'] [u'typhoon', u'chaba', u'lash', u'southern', u'japan'] [u'allianc', u'featur', u'elect', u'campaign'] [u'tollway', u'featur', u'elect', u'campaign'] [u'victoria', u'welcom', u'home', u'aussi', u'athlet'] [u'gold', u'insolv'] [u'miner', u'sell', u'gold'] [u'water', u'manag', u'main', u'issu', u'riverina', u'elector'] [u'west', u'prove', u'good', u'feder'] [u'wilki', u'launch', u'bennelong', u'campaign'] [u'wimmera', u'babi', u'inquest', u'continu'] [u'winemak', u'confid', u'bank', u'stoush'] [u'work', u'labor', u'south'] [u'wwii', u'vet', u'kokoda', u'pilgrimag'] [u'youth', u'charg', u'polic', u'assault'] [u'zinc', u'produc', u'post', u'profit'] [u'soldier', u'repatri', u'buri'] [u'accc', u'approv', u'grain', u'merger'] [u'accus', u'killer', u'question', u'underworld'] [u'offici', u'monitor', u'rainfal'] [u'senat', u'alter', u'balanc', u'power'] [u'adelaid', u'sit', u'develop', u'gaudi', u'say', u'nation'] [u'await', u'sydney', u'flag', u'nation', u'success'] [u'agforc', u'beatti', u'discuss', u'livestock', u'scheme'] [u'alleg', u'supermarket', u'thief', u'nab', u'interst'] [u'caus', u'corangamit', u'upset', u'academ'] [u'refus', u'ranger', u'shutdown'] [u'ambul', u'recruit', u'head', u'north', u'west'] [u'kelsey', u'grammer'] [u'asthma', u'suffer', u'urg', u'activ'] [u'aust', u'offer', u'north', u'korea'] [u'australian', u'releas', u'vietnames', u'jail'] [u'babi', u'humpback', u'dead', u'beach'] [u'bendigo', u'tip', u'reflect', u'nation', u'poll', u'result'] [u'bledislo', u'retain', u'match', u'format'] [u'bonlac', u'declar', u'loss'] [u'boss', u'keep', u'plate', u'option', u'open'] [u'brack', u'reject', u'govt', u'offer', u'hand'] [u'broadband', u'uptak', u'pass', u'million', u'mileston'] [u'brown', u'defend', u'kooki', u'drug', u'polici'] [u'busi', u'decid', u'mall', u'traffic'] [u'shake', u'standardis', u'fare'] [u'butler', u'pocket', u'golden', u'handshak'] [u'glen', u'inn', u'freight', u'rail'] [u'canberra', u'airport', u'get', u'navig', u'upgrad'] [u'cancer', u'patient', u'seek', u'compo', u'diagnosi', u'delay'] [u'candid', u'remind', u'road', u'fund', u'import'] [u'carr', u'deni', u'orang', u'grove', u'liabil', u'latham'] [u'comparison', u'anger', u'refuge', u'support'] [u'classi', u'agassi', u'serv', u'late', u'feast'] [u'commiss', u'examin', u'meat', u'industri'] [u'committe', u'propos', u'step', u'republ', u'vote'] [u'costa', u'reject', u'feder', u'rail', u'offer'] [u'council', u'chief', u'lament', u'dept', u'store', u'snub'] [u'court', u'order', u'garrett'] [u'court', u'see', u'fewer', u'civil', u'liabil', u'case'] [u'court', u'tell', u'steal', u'bracelet'] [u'cow', u'munch', u'light', u'aircraft'] [u'crash', u'plane', u'cours', u'report'] [u'croc', u'prepar', u'season'] [u'cunningham', u'like', u'corner', u'contest'] [u'dallaglio', u'quit', u'england', u'team'] [u'deadlin', u'extend', u'captur', u'newsmen'] [u'deal', u'end', u'week', u'power', u'station', u'strike'] [u'defiant', u'milosev', u'call', u'crime', u'charg', u'lie'] [u'develop', u'group', u'member', u'want', u'boundari', u'chang'] [u'director', u'welcom', u'radford'] [u'doubt', u'rais', u'invit', u'health', u'forum'] [u'downpour', u'surpris', u'farmer'] [u'recal', u'port', u'arthur', u'tap'] [u'eas', u'credit', u'growth', u'pleas', u'economist'] [u'elect', u'campaign', u'expect', u'includ', u'tourism'] [u'environment', u'forum', u'test', u'candid'] [u'environ', u'elect', u'issu', u'newspol', u'head'] [u'everton', u'hold'] [u'farina', u'name', u'strength', u'squad', u'train', u'camp'] [u'feder', u'parliament', u'offici', u'prorogu'] [u'firefight', u'contain', u'bushfir'] [u'fittler', u'pay', u'tribut', u'rival', u'talli'] [u'forestri', u'chang', u'fail', u'industri', u'group'] [u'iraqi', u'kill', u'strike'] [u'fraser', u'dingo', u'form', u'super', u'pack'] [u'bodi', u'ray', u'rais', u'cancer', u'risk'] [u'gastroenter', u'patient', u'treat', u'hobart', u'hospit'] [u'gold', u'coast', u'triathlet', u'win'] [u'govt', u'approv', u'helicopt', u'deal'] [u'govt', u'boost', u'hospit', u'psychiatr', u'care'] [u'govt', u'deni', u'plan', u'increas', u'local', u'cost'] [u'govt', u'torpedo', u'controversi', u'fish', u'farm', u'plan'] [u'govt', u'urg', u'subsid', u'victim'] [u'govt', u'urg', u'commit', u'wimmera', u'malle', u'pipelin', u'money'] [u'govt', u'urg', u'prosecut', u'safeti'] [u'green', u'democrat', u'swap', u'senat', u'prefer'] [u'green', u'murray', u'elect', u'spotlight'] [u'group', u'make', u'pipelin'] [u'group', u'continu', u'fight', u'propos', u'hotel'] [u'grower', u'lobbi', u'group', u'score', u'parti'] [u'guilti', u'plea', u'pair', u'season'] [u'trick', u'welshman', u'world', u'snorkel'] [u'heffernan', u'strike', u'final'] [u'hickss', u'father', u'reiter', u'abus', u'claim'] [u'hickss', u'treatment', u'elect', u'issu', u'lawyer'] [u'hilton', u'fate', u'juri', u'hand'] [u'home', u'owner', u'await', u'rat', u'bill'] [u'howard', u'attack', u'green'] [u'icac', u'hear', u'probe', u'plagiar', u'claim'] [u'independ', u'want', u'campaign', u'spend'] [u'indigen', u'council', u'plan', u'hold'] [u'iraqi', u'pipelin', u'attack'] [u'irrig', u'face', u'tougher', u'water', u'restrict'] [u'japan', u'aust', u'sign', u'share', u'market', u'inform'] [u'bacon', u'trust', u'donat', u'chair', u'cancer', u'clinic'] [u'johnson', u'secur', u'lionel', u'johnston', u'medal'] [u'katter', u'katter', u'poll', u'fight'] [u'labor', u'hit', u'dentistri', u'degre', u'cost'] [u'labor', u'urg', u'public', u'health', u'spend', u'boost'] [u'labor', u'reveal', u'blueprint', u'govern'] [u'latham', u'warn', u'elect', u'terror', u'risk'] [u'liber', u'parti', u'silent', u'complaint', u'investig'] [u'liber', u'launch', u'campaign'] [u'lie', u'rodent', u'claim', u'expos', u'children', u'overboard', u'rift'] [u'charg', u'stalk', u'singer', u'avril', u'lavign'] [u'plead', u'guilti', u'racist', u'graffiti', u'attack'] [u'martin', u'announc', u'retir', u'open', u'exit'] [u'mayor', u'want', u'princ', u'highway', u'auslink', u'scheme'] [u'mcgrane', u'undergo', u'liver', u'surgeri'] [u'milosev', u'begin', u'defenc', u'genocid', u'charg'] [u'milosev', u'begin', u'defenc'] [u'minist', u'launch', u'tourism', u'resort', u'work'] [u'minist', u'urg', u'rethink', u'school', u'leav', u'plan'] [u'montagu', u'undergo', u'reveget', u'work'] [u'moor', u'boo', u'republican', u'convent'] [u'fund', u'seek', u'address', u'road', u'woe'] [u'mous', u'chewer', u'sentenc', u'postpon'] [u'highlight', u'delay', u'concern'] [u'hop', u'overcom', u'paterson', u'hoodoo'] [u'want', u'dead', u'highway'] [u'want', u'urgent', u'manilla'] [u'music', u'bait', u'lure', u'whale'] [u'mysteri', u'diseas', u'kill', u'chicken', u'indonesia'] [u'nepales', u'hostag', u'execut', u'iraq', u'websit'] [u'campaign', u'target', u'tire', u'driver'] [u'newcastl', u'sack', u'bobbi'] [u'move', u'gold', u'product'] [u'decis', u'alic', u'base', u'power', u'provid'] [u'guarante', u'western', u'rain'] [u'tighten', u'citizenship', u'law'] [u'offici', u'investig', u'light', u'plane', u'crash'] [u'olymp', u'bronz', u'get', u'molik', u'right', u'track'] [u'orang', u'grove', u'owner', u'exploit', u'worker', u'carr'] [u'pacif', u'brand', u'record', u'posit', u'maiden', u'profit'] [u'pakistan', u'board', u'play', u'shep', u'blast'] [u'pallet', u'provid', u'line', u'profit', u'decreas'] [u'parti', u'push', u'boost', u'local', u'govt', u'fund'] [u'parti', u'urg', u'rethink', u'dairi', u'deregul'] [u'parti', u'urg', u'protest', u'vote', u'grey'] [u'pest', u'fin', u'marathon', u'tackl'] [u'pierc', u'creek', u'expans', u'reject'] [u'challeng', u'labor', u'cost', u'polici'] [u'dismiss', u'labor', u'blueprint'] [u'border', u'reopen', u'fight', u'wan'] [u'polic', u'ask', u'investig', u'council', u'leak'] [u'polic', u'code', u'encourag', u'domest', u'violenc', u'report'] [u'polic', u'follow', u'byron', u'murder', u'lead'] [u'polic', u'investig', u'suspici', u'byron', u'death'] [u'polic', u'question', u'alleg', u'gangland', u'killer'] [u'polit', u'parti', u'urg', u'address', u'rural', u'educ'] [u'posit', u'market', u'defi', u'intern', u'trend'] [u'potenti', u'sport', u'complex', u'sit', u'highlight'] [u'power', u'respect', u'qualiti', u'cat'] [u'prefer', u'vital', u'wide', u'seat'] [u'prison', u'teacher', u'rise'] [u'prison', u'union', u'assur', u'spi'] [u'privat', u'hospit', u'await', u'train', u'survey', u'result'] [u'protest', u'aplenti', u'parliament', u'hous'] [u'public', u'remind', u'emerg', u'number'] [u'punter', u'elect', u'candid'] [u'putin', u'link', u'plane', u'disast', u'qaeda'] [u'health', u'reject', u'hospit', u'closur', u'rumour'] [u'quarantin', u'review', u'make', u'recommend'] [u'quilpi', u'shire', u'resid', u'spar', u'rate', u'rise'] [u'racq', u'back', u'crash', u'reduct', u'plan'] [u'rain', u'boost', u'southern', u'crop'] [u'rain', u'boost', u'crowd'] [u'rain', u'hamper', u'bushfir', u'fight', u'effort'] [u'ralf', u'battl', u'monza', u'fit'] [u'ralli', u'vent', u'merger', u'anger'] [u'ranger', u'owner', u'urg', u'overhaul', u'safeti'] [u'ravensthorp', u'infrastructur', u'fund'] [u'rebel', u'kidnap', u'health', u'worker', u'darfur'] [u'republican', u'convent', u'trigger', u'hestit'] [u'republican', u'leader', u'attack', u'kerri'] [u'resid', u'urg', u'elector', u'roll'] [u'review', u'grant', u'asylum', u'seeker', u'visa'] [u'stewart', u'tour', u'reviv', u'small', u'face'] [u'russia', u'blame', u'terrorist', u'plane', u'crash'] [u'galleri', u'prais', u'outgo', u'director', u'work'] [u'saint', u'lose', u'hamil', u'lion', u'clash'] [u'sale', u'contract', u'sign', u'post', u'offic', u'build'] [u'salvo', u'cast', u'doubt', u'compo', u'scheme', u'abus'] [u'opposit', u'say', u'govt', u'gambl', u'region'] [u'schumach', u'success', u'continu', u'say', u'team', u'chief'] [u'search', u'continu', u'sink', u'sydney'] [u'search', u'resum', u'miss', u'fishermen'] [u'second', u'biggest', u'month', u'trade', u'deficit', u'record'] [u'seven', u'report', u'profit', u'jump'] [u'sharon', u'present', u'tight', u'withdraw', u'timet'] [u'shire', u'tell', u'possibl', u'miss', u'rate', u'revenu'] [u'sikorski', u'unit', u'local', u'firm', u'defenc'] [u'skier', u'revel', u'bumper', u'snow', u'season'] [u'small', u'busi', u'confid', u'decad', u'high', u'level'] [u'smash', u'repair', u'insur', u'investig'] [u'solicitor', u'jail', u'trust', u'fund', u'fraud'] [u'solomon', u'island', u'launch', u'aid', u'test'] [u'southland', u'collieri', u'owner'] [u'sportsground', u'cost', u'soar'] [u'state', u'urg', u'follow', u'lead', u'offenc', u'law'] [u'stosur', u'prepar', u'open'] [u'stress', u'canberran', u'worri', u'job', u'ill'] [u'strong', u'demand', u'lift', u'harvey', u'norman', u'profit'] [u'student', u'entitl', u'cours', u'nelson'] [u'student', u'farewel', u'slay', u'schoolgirl'] [u'studi', u'consid', u'rout', u'feasibl'] [u'stutter', u'studi', u'offer', u'bilingu', u'insight'] [u'swim', u'hurt', u'tourism', u'inquest', u'tell'] [u'sydney', u'real', u'estat', u'boom', u'cool'] [u'tafe', u'campus', u'faster', u'connect'] [u'talli', u'call', u'quit'] [u'talli', u'eye', u'premiership'] [u'teacher', u'strike', u'student', u'escap', u'expuls'] [u'blackout'] [] [u'torr', u'strait', u'fishermen', u'safe'] [u'tour', u'compani', u'owner', u'awar', u'guid', u'problem'] [u'tuckey', u'take', u'safe', u'seat', u'grant'] [u'twin', u'bomb', u'kill', u'israel'] [u'express', u'chechyna', u'poll', u'concern'] [u'union', u'air', u'fear'] [u'union', u'want', u'action', u'eas', u'ambul', u'strain'] [u'consid', u'sanction', u'sudan'] [u'guard', u'stomp', u'finger', u'iraqi', u'jail', u'detaine'] [u'soldier', u'tri', u'pass', u'info', u'qaeda'] [u'govt', u'pledg', u'art', u'centr'] [u'victim', u'reunit', u'nurs'] [u'virus', u'aim', u'stop', u'cane', u'toad', u'march'] [u'word', u'erupt', u'highway', u'status'] [u'water', u'shortag', u'dri', u'tandou', u'profit'] [u'westpac', u'work', u'onlin', u'bank', u'glitch'] [u'winter', u'england', u'region'] [u'winter', u'record', u'adelaid'] [u'widow', u'sue', u'council', u'husband', u'flood', u'death'] [u'william', u'dazzl', u'feder', u'eas'] [u'wineg', u'bottl', u'return', u'mullan'] [u'woodward', u'switch', u'cod'] [u'woolmer', u'upbeat', u'dutch', u'drench'] [u'workingman', u'club', u'stay'] [u'zinifex', u'profit', u'better', u'expect'] [u'kill', u'strike', u'fallujah'] [u'abar', u'offer', u'local', u'outlook'] [u'accus', u'gangland', u'killer', u'declar', u'innoc'] [u'adelaid', u'killer', u'get', u'year'] [u'aerial', u'search', u'seek', u'miner', u'potenti'] [u'agreement', u'reach', u'disabl', u'worker', u'disput'] [u'airport', u'flick', u'crash', u'venic'] [u'candid', u'oppos', u'chang', u'aborigin', u'legal'] [u'annan', u'call', u'intern', u'troop', u'darfur'] [u'anwar', u'free', u'win', u'final', u'appeal'] [u'aust', u'crime', u'investig', u'jail'] [u'award', u'recognis', u'great', u'lake', u'catchment', u'plan'] [u'babi', u'russian', u'hostag', u'local'] [u'bali', u'bomber', u'coffe', u'out', u'proper', u'procedur'] [u'dung', u'get', u'food'] [u'earmark', u'pilbara', u'natur', u'plant'] [u'record', u'loss'] [u'blast', u'hear', u'near', u'russian', u'hostag', u'school'] [u'blast', u'hear', u'near', u'russian', u'school', u'sieg'] [u'blood', u'suppli', u'reach', u'record'] [u'brack', u'odd', u'latham', u'freeway', u'decis'] [u'brack', u'welcom', u'labor', u'road', u'promis'] [u'brandi', u'accus', u'brace', u'possibl', u'expuls'] [u'brisban', u'chemic', u'control'] [u'brisban', u'host', u'govt', u'offici', u'campaign', u'launch'] [u'atsic', u'demis', u'elect', u'issu'] [u'campaign', u'seek', u'lake', u'area', u'cattl', u'remov'] [u'canberra', u'face', u'court', u'vicious', u'brawl'] [u'candid', u'highlight', u'murray', u'alloc', u'concern'] [u'sale', u'boost', u'financ', u'compani'] [u'catchment', u'group', u'honour', u'award'] [u'central', u'welcom', u'home', u'gold', u'win', u'cyclist'] [u'cereb', u'palsi', u'suffer', u'financi'] [u'cheney', u'cite', u'bush', u'leadership', u'skill', u'vote', u'winner'] [u'investig', u'woocoo', u'shire'] [u'coal', u'boost', u'like', u'lift', u'job'] [u'coastal', u'safeti', u'studi', u'urg', u'better', u'signag'] [u'cold', u'winter'] [u'cole', u'recal', u'delux', u'water', u'bottl'] [u'communiti', u'mobil', u'phone', u'boost'] [u'concern', u'anti', u'bush', u'canoeist', u'unprepar', u'journey'] [u'coorong', u'council', u'snare', u'landcar', u'award'] [u'council', u'want', u'road', u'fund', u'boost'] [u'counterfeit', u'charg', u'drop', u'ahmad'] [u'court', u'impos', u'defenc', u'lawyer', u'milosev'] [u'crawford', u'grant', u'quit', u'captainci', u'post'] [u'cream', u'encourag', u'bodi', u'cancer', u'fight', u'cell'] [u'crimin', u'track', u'machin', u'success', u'polic'] [u'crow', u'stenglein', u'head', u'home'] [u'damag', u'payout', u'spark', u'council', u'safeti', u'review'] [u'defenc', u'firm', u'seek', u'exclud', u'worker', u'base'] [u'delay', u'gold', u'product'] [u'democrat', u'readi', u'tough', u'fight'] [u'demonstr', u'plant', u'tree', u'cement', u'plant'] [u'desper', u'borrow', u'charg'] [u'dino', u'festiv', u'spark', u'hop', u'visitor'] [u'dont', u'phone', u'send', u'encod', u'object'] [u'doubt', u'remain', u'iran', u'nuclear', u'arm', u'program'] [u'dugong', u'monitor', u'project', u'win', u'nation', u'award'] [u'eagl', u'kerr', u'place'] [u'educ', u'dept', u'criticis', u'interfer'] [u'electrolux', u'win', u'union', u'appeal'] [u'emerald', u'north', u'teacher', u'stop', u'work'] [u'emerg', u'declar', u'brisban', u'factori', u'blaze'] [u'eurobodalla', u'council', u'reject', u'jam', u'hardi'] [u'expert', u'probe', u'wilder', u'park', u'plane', u'crash'] [u'expert', u'welcom', u'court', u'recognit', u'tribal'] [u'famili', u'despair', u'russian', u'hostag', u'crisi'] [u'farmer', u'urg', u'patterson', u'curs', u'fight'] [u'farmhous', u'blaze', u'consid', u'suspici'] [u'feder', u'serena', u'advanc', u'flush', u'meadow'] [u'feedback', u'seek', u'trawler', u'plan', u'discuss', u'paper'] [u'ferguson', u'fear', u'record', u'rooney'] [u'exec', u'return'] [u'onetel', u'chairman', u'await', u'settlement', u'decis'] [u'theatr', u'director', u'guilti', u'sexual'] [u'foster', u'carer', u'seek', u'indigen', u'youth'] [u'freightlink', u'price', u'hike', u'hit', u'removalist'] [u'french', u'islam', u'headscarv', u'school'] [u'french', u'headscarf', u'come', u'forc'] [u'fuel', u'price', u'continu', u'climb'] [u'fund', u'council', u'environment', u'plan'] [u'gaze', u'name', u'father', u'year'] [u'good', u'rain', u'forecast', u'south', u'east'] [u'govern', u'accus', u'breach', u'caretak', u'rule'] [u'govt', u'confid', u'scrafton', u'claim', u'discredit'] [u'govt', u'ignor', u'explor', u'fund', u'compani'] [u'govt', u'pass', u'legisl', u'chang'] [u'govt', u'decid', u'water', u'restrict'] [u'green', u'abolish', u'fee'] [u'green', u'super', u'trawler', u'death', u'ship'] [u'group', u'threaten', u'protest', u'kosciuszko', u'access'] [u'hackett', u'urg', u'stick', u'current', u'program'] [u'happi', u'valley', u'work', u'near', u'finish'] [u'harmison', u'trick', u'set', u'england'] [u'har', u'race', u'cost', u'shift', u'council'] [u'haunt', u'mull', u'major', u'failur'] [u'health', u'group', u'urg', u'build', u'communiti'] [u'hewitt', u'make', u'impress', u'start', u'scud', u'molik'] [u'high', u'profil', u'convict', u'highlight', u'homeless'] [u'hilton', u'heiress', u'launch', u'jewelleri', u'line'] [u'hostag', u'prepar', u'night', u'school', u'sieg'] [u'hostag', u'taker', u'free', u'women', u'children'] [u'howard', u'rule', u'ipswich', u'motorway', u'upgrad'] [u'hundr', u'live', u'ribbon', u'rebellion'] [u'hunt', u'tip', u'kangaroo', u'select'] [u'icac', u'urg', u'prison', u'search', u'overhaul'] [u'indigen', u'tourism', u'ventur', u'worri', u'anim'] [u'infect', u'risk', u'prompt', u'drop', u'recal'] [u'award', u'nurs', u'rise'] [u'isra', u'forc', u'suicid', u'attack'] [u'israel', u'threaten', u'syria', u'wake', u'hama', u'bomb'] [u'child', u'potter', u'sporti', u'screeni'] [u'jetstar', u'consid', u'boost', u'newcastl', u'servic'] [u'judg', u'dismiss', u'kobe', u'bryant', u'rape', u'case'] [u'kakadu', u'croc', u'attack', u'unforse'] [u'kingsley', u'montgomeri', u'expect', u'port'] [u'labor', u'air', u'gippsland', u'fear'] [u'labor', u'make', u'indigen', u'hous', u'pledg'] [u'labor', u'say', u'dummi', u'bid', u'review'] [u'labor', u'scrafton', u'strategi', u'backfir', u'say'] [u'labor', u'take', u'cautious', u'approach', u'mobil', u'phone'] [u'latham', u'pledg', u'rat'] [u'latham', u'refus', u'apologis', u'children'] [u'latham', u'stand', u'scrafton', u'children', u'overboard'] [u'lgaq', u'call', u'relax', u'subdivis', u'rule'] [u'lgaq', u'seek', u'crackdown', u'frivol', u'liabil', u'claim'] [u'luck', u'run', u'punter', u'gambl', u'spree'] [u'macquari', u'announc', u'region', u'radio'] [u'arrest', u'jewelleri', u'store', u'robberi'] [u'jail', u'year', u'grandmoth'] [u'manjimup', u'properti', u'export', u'floor'] [u'court', u'castl', u'hill', u'death'] [u'mayor', u'defend', u'travel', u'arrang'] [u'meet', u'focus', u'impact'] [u'miner', u'continu', u'gold', u'search'] [u'minist', u'applaud', u'plastic', u'bag'] [u'mother', u'miss', u'diver', u'plead', u'help'] [u'moot', u'youth', u'curfew'] [u'mysteri', u'surround', u'woodward', u'futur'] [u'nation', u'seek', u'glen', u'inn', u'learn', u'centr'] [u'negoti', u'begin', u'russian', u'hostag', u'crisi'] [u'negoti', u'resum', u'russian', u'hostag', u'crisi'] [u'neitz', u'content', u'bomber', u'clash'] [u'nevill', u'defend', u'sven', u'record'] [u'hepat', u'treatment', u'lead', u'better', u'cure'] [u'rail', u'link', u'boost', u'tourism', u'goldfield'] [u'north', u'west', u'farmer', u'win', u'landcar', u'award'] [u'crack', u'juri', u'sleuth'] [u'get', u'life', u'alic', u'murder'] [u'prison', u'bomb', u'sniff', u'dog'] [u'gold', u'product', u'start', u'ahead', u'schedul'] [u'nurs', u'council', u'disput', u'deadlock'] [u'ocean', u'condit', u'boost', u'chanc', u'nino'] [u'price', u'rise', u'impact', u'share', u'price'] [u'olymp', u'legend', u'call', u'releas', u'detaine'] [u'pair', u'serv', u'minimum', u'year', u'murder'] [u'peopl', u'mental', u'ill', u'urg', u'speak'] [u'pipelin', u'group', u'seek', u'elect', u'candid'] [u'urg', u'wentworth', u'voter', u'support', u'turnbul'] [u'polic', u'hunt', u'tamworth', u'thief'] [u'polic', u'investig', u'bodi', u'near'] [u'polic', u'probe', u'fatal', u'hume', u'highway', u'crash'] [u'polic', u'question', u'assault'] [u'polic', u'seek', u'inform', u'woman', u'dead'] [u'polic', u'action', u'hotel', u'brawl'] [u'polit', u'parti', u'urg', u'boost', u'infrastructur'] [u'politician', u'hand', u'look', u'road', u'woe'] [u'polit', u'asid', u'age', u'care', u'forum'] [u'port', u'arthur', u'video', u'probe', u'spread'] [u'prison', u'escap', u'continu', u'elud', u'polic'] [u'probe', u'consid', u'castl', u'hill', u'death', u'prevent'] [u'probe', u'launch', u'dubai', u'campus', u'plan'] [u'probe', u'launch', u'supermarket', u'blaze'] [u'public', u'urg', u'help', u'tackl', u'underag', u'drink'] [u'coal', u'export', u'high'] [u'liber', u'consid', u'disciplin', u'parti', u'offici'] [u'quadrupl', u'heart', u'bypass', u'recipi', u'walk', u'kokoda', u'track'] [u'rain', u'good', u'news', u'break', u'hill', u'carr'] [u'rare', u'dolphin', u'strand', u'tasmanian', u'shallow'] [u'report', u'flow', u'locust', u'hatchl'] [u'report', u'show', u'slight', u'improv', u'indigen'] [u'rescu', u'deal', u'bowl', u'club', u'green'] [u'resid', u'ask', u'boost', u'blood', u'stock'] [u'rise', u'river', u'crown', u'best', u'rooki'] [u'robot', u'call', u'parliament', u'hous', u'secur'] [u'erupt', u'secur', u'polici'] [u'rspca', u'welcom', u'cruelti', u'fine'] [u'rudd', u'head', u'southern'] [u'russia', u'rule', u'forc', u'hostag', u'crisi'] [u'safe', u'hous', u'propos', u'aborigin', u'children'] [u'saint', u'drop', u'miln', u'keat', u'doubt'] [u'scheme', u'focus', u'boost', u'indigen', u'live'] [u'school', u'recognis', u'literaci', u'numeraci', u'effort'] [u'schumach', u'rubbish', u'retir', u'talk'] [u'scientist', u'identifi', u'jekyl', u'hyde', u'cancer', u'gene'] [u'screen', u'time', u'sap', u'child', u'health', u'report'] [u'sewerag', u'currarong'] [u'share', u'market', u'hit', u'record', u'high'] [u'korea', u'admit', u'rogu', u'uranium', u'experi'] [u'skywest', u'consid', u'takeov'] [u'spain', u'sanz', u'win', u'earli', u'latin', u'grammi', u'best', u'song'] [u'state', u'council', u'rule', u'rodent', u'remark', u'claim'] [u'streaker', u'pay', u'price', u'minut', u'fame'] [u'sunraysia', u'tafe', u'put', u'perform'] [u'suppli', u'worri', u'prompt', u'jump', u'price'] [u'sydney', u'lead', u'hous', u'declin'] [u'forestri', u'probe', u'vital', u'senat', u'committe'] [u'taskforc', u'examin', u'sydney', u'robberi', u'similar'] [u'teen', u'give', u'evid', u'gang', u'rape', u'trial'] [u'year', u'cyberia'] [u'rise', u'fall', u'malaysia', u'anwar'] [u'test', u'hold'] [u'jockey', u'fallon', u'hold', u'race', u'fix', u'probe'] [u'truanci', u'patrol', u'fund', u'ax'] [u'apart', u'build', u'demolish', u'gaza'] [u'arrest', u'dare', u'perth', u'robberi'] [u'demand', u'releas', u'hostag', u'russia'] [u'union', u'stoush', u'mate', u'form'] [u'ralli', u'racist'] [u'order', u'revers', u'terror', u'convict'] [u'farmer', u'demand', u'long', u'term', u'rural', u'polici'] [u'wagga', u'host', u'creditor', u'meet'] [u'water', u'restrict', u'shoalhaven', u'week'] [u'webck', u'join', u'club'] [u'welcom', u'home', u'plan', u'tamworth', u'olympian'] [u'westfield', u'advis', u'accus', u'intimid', u'bulli'] [u'westfield', u'deni', u'orang', u'grove', u'thuggeri', u'claim'] [u'winegrow', u'hail', u'rebat'] [u'wine', u'industri', u'upbeat', u'rebat'] [u'winemak', u'give', u'extens', u'repay', u'debt'] [u'winemak', u'welcom', u'relief'] [u'wood', u'centr', u'open', u'smithton'] [u'woodward', u'resign', u'leav', u'england', u'turmoil'] [u'worker', u'evacu', u'brisban', u'factori'] [u'ray', u'unmask', u'mummi', u'face', u'virtual'] [u'hurt', u'assault', u'russian', u'school', u'report'] [u'absente', u'drain', u'england', u'firepow'] [u'jazeera', u'ventur', u'english', u'languag', u'market'] [u'undecid', u'atsic', u'replac'] [u'anderson', u'expect', u'tough', u'contest', u'kennedi'] [u'apec', u'countri', u'give', u'glow', u'report', u'card'] [u'archaeologist', u'discov', u'tomb', u'near', u'egypt', u'pyramid'] [u'armi', u'investig', u'sexual', u'misconduct', u'claim'] [u'asbesto', u'inspect', u'need', u'union', u'say'] [u'dead', u'russian', u'school', u'raid', u'report'] [u'bear', u'close', u'east', u'clash'] [u'beazley', u'claim', u'underdog', u'status'] [u'beirut', u'reject', u'secur', u'council', u'resolut'] [u'benitez', u'defend', u'liverpool', u'foreign', u'legion'] [u'boost', u'illawarra', u'coal', u'effort'] [u'barri', u'hop', u'swan'] [u'hunter', u'book', u'tip', u'harri', u'potter'] [u'brazilian', u'music', u'produc', u'die', u'motorcycl'] [u'brisban', u'welcom', u'home', u'olympian'] [u'bundaberg', u'paralympian', u'set', u'sight', u'gold'] [u'burglar', u'jail', u'assault', u'woman'] [u'bush', u'accept', u'nomin', u'attack', u'kerri'] [u'bush', u'prais', u'wise', u'counsel'] [u'go', u'blood', u'suppli', u'boost'] [u'cano', u'stunt', u'spark', u'search'] [u'carlton', u'bend', u'chang', u'ground'] [u'cattl', u'scheme', u'promis', u'save'] [u'chang', u'growth', u'log', u'impact', u'job'] [u'chao', u'reign', u'troop', u'russian', u'school', u'sieg'] [u'chees', u'voter', u'tell', u'past', u'best'] [u'child', u'die', u'brisban', u'hous'] [u'civil', u'libertarian', u'reject', u'youth', u'curfew'] [u'cobar', u'host', u'bondi', u'tsunami', u'world', u'premier'] [u'cole', u'remov', u'cook', u'wine', u'alcohol', u'content'] [u'communiti', u'unit', u'wake', u'murder', u'suicid'] [u'communiti', u'urg', u'support', u'injur', u'polic'] [u'concern', u'air', u'rate', u'rise'] [u'cooper', u'return', u'aerial', u'competit'] [u'show', u'town', u'nappi', u'dresser'] [u'coron', u'find', u'secur', u'guard', u'act', u'outsid', u'power'] [u'council', u'offer', u'summer', u'beach', u'pledg'] [u'council', u'ponder', u'manilla', u'option'] [u'council', u'recycl', u'effort', u'better', u'data', u'suggest'] [u'council', u'resourc', u'curb', u'child', u'prostitut'] [u'council', u'take', u'action', u'handl', u'tide'] [u'court', u'hear', u'gassi', u'keep', u'list', u'doctor', u'name'] [u'court', u'order', u'issu', u'massiv', u'tree', u'clear'] [u'cowboy', u'coach', u'face', u'tough', u'choic'] [u'croc', u'taipan', u'clash', u'test', u'game'] [u'crop', u'forecast', u'good', u'south', u'east'] [u'dairi', u'report', u'show', u'fewer', u'farmer', u'produc'] [u'deadlin', u'announc', u'wind', u'farm', u'submiss'] [u'democrat', u'target', u'voter'] [u'deputi', u'turn', u'road', u'fund', u'claim', u'labor'] [u'devast', u'lion', u'hammer', u'saint'] [u'develop', u'secur', u'marina', u'site'] [u'disabl', u'carer', u'agre', u'deal'] [u'disabl', u'worker', u'reach', u'agreement', u'rise'] [u'doubt', u'surround', u'creditor', u'fund'] [u'downer', u'seiz', u'foreign', u'minist', u'iraq'] [u'urg', u'indefint', u'sentenc', u'prison', u'killer'] [u'drink', u'driver', u'crash', u'park', u'polic'] [u'drought', u'decis', u'spark', u'agforc', u'anger'] [u'eagl', u'spread', u'wing', u'kimberley'] [u'elect', u'help', u'dampen', u'canberra', u'hous', u'market'] [u'embri', u'deni', u'countri', u'parti', u'nation', u'clone'] [u'environment', u'group', u'look', u'partisan'] [u'explos', u'possibl', u'rebel', u'hideout'] [u'explos', u'rock', u'site', u'russian', u'sieg'] [u'extremist', u'grenad', u'russian', u'stand'] [u'farmer', u'air', u'locust', u'plagu', u'fear'] [u'north', u'share', u'child', u'protect', u'fund'] [u'fate', u'brandi', u'accus', u'decid'] [u'feder', u'hotel', u'buy', u'cradl', u'mountain', u'resort'] [u'russian', u'hostag', u'school'] [u'firm', u'secur', u'comalco', u'contract'] [u'florida', u'resid', u'urg', u'evacu', u'hurrican'] [u'florida', u'threat', u'monster', u'storm', u'loom'] [u'foreign', u'debt', u'push', u'rat', u'crean'] [u'oil', u'frontman', u'hit', u'note', u'campaign'] [u'forum', u'put', u'focus', u'power', u'access'] [u'kill', u'malaysian', u'chopper', u'crash'] [u'year', u'die', u'hous'] [u'fowler', u'switzerland'] [u'french', u'author', u'optimist', u'hostag'] [u'fund', u'boost', u'landcar', u'insur'] [u'fund', u'rais', u'hop', u'quoll', u'research'] [u'fund', u'upgrad', u'town', u'hall'] [u'gerrard', u'pull', u'england', u'train'] [u'gilchrist', u'fli', u'join', u'champ', u'trophi', u'squad'] [u'gold', u'produc', u'spend', u'explor'] [u'govt', u'run', u'scare', u'campaign', u'crean', u'say'] [u'govt', u'commit', u'drug', u'rehabilit', u'question'] [u'govt', u'urg', u'greater', u'rural', u'consider'] [u'govt', u'urg', u'consider', u'bush'] [u'green', u'campaign', u'wollongong'] [u'green', u'applaud', u'govt', u'possibl', u'log', u'polici'] [u'green', u'candid', u'prefer', u'decis'] [u'grinham', u'squash', u'number'] [u'group', u'probe', u'impact'] [u'hawk', u'deserv', u'better', u'crawford', u'demetriou'] [u'hervey', u'rail', u'link', u'tourism', u'bodi', u'sceptic'] [u'highfield', u'school', u'trial', u'time', u'prep', u'year'] [u'hobart', u'smelter', u'worker', u'rise'] [u'gather', u'cultiv', u'idea'] [u'hospit', u'question', u'patient', u'treatment'] [u'howard', u'hint', u'growth', u'log', u'polici', u'chang'] [u'industri', u'unrest', u'derail', u'handov'] [u'insur', u'group', u'criticis', u'levi', u'decis'] [u'investig', u'begin', u'toddler', u'die'] [u'iraqi', u'presid', u'delay', u'trip', u'franc'] [u'jail', u'trigger', u'rivkin', u'suicid', u'attempt'] [u'kenyan', u'court', u'free', u'australian', u'trespass'] [u'fire', u'springfield', u'lead'] [u'kingsley', u'confirm', u'port'] [u'king', u'stand', u'independ', u'blue', u'ribbon', u'seat'] [u'knight', u'lose', u'right', u'appeal', u'newton'] [u'kookaburra', u'rattl', u'pakistan', u'terror', u'fear'] [u'labor', u'candid', u'criticis', u'follow', u'rail'] [u'labor', u'base', u'indigen', u'polici', u'greater'] [u'labor', u'late', u'school', u'plan', u'nelson', u'say'] [u'latham', u'pledg', u'improv', u'teach', u'standard'] [u'latham', u'want', u'hick', u'releas', u'clear'] [u'lazi', u'govt', u'abandon', u'cane', u'toad', u'opposit', u'say'] [u'legal', u'profession', u'rais', u'concern', u'fund'] [u'libya', u'disco', u'bomb'] [u'life', u'leav', u'bermagui', u'chamber'] [u'mackay', u'hop', u'secur', u'senat', u'spot'] [u'manag', u'chang', u'unlik', u'impact', u'airport'] [u'charg', u'nuclear', u'smuggl'] [u'guilti', u'doubl', u'rape', u'charg'] [u'plead', u'guilti', u'underworld', u'death'] [u'face', u'court', u'accus', u'kidnap', u'salesmen'] [u'mcewen', u'team', u'mate', u'brandt', u'lotto'] [u'mcgradi', u'highlight', u'convent', u'centr', u'boom'] [u'meyer', u'injuri', u'rooki', u'chanc'] [u'mildura', u'lose', u'har', u'race'] [u'mincor', u'start', u'redross', u'product'] [u'miner', u'look', u'gold', u'explor'] [u'mine', u'face', u'rate', u'rise', u'follow', u'review', u'shire'] [u'minist', u'consid', u'orana', u'polic', u'number'] [u'minist', u'urg', u'death', u'ship'] [u'miss', u'univers', u'vow', u'cheeki', u'mishap'] [u'back', u'seek', u'disabl', u'ailment'] [u'harbour', u'user', u'foreshor', u'plan'] [u'mother', u'join', u'search', u'miss', u'daughter', u'fiji'] [u'mourinho', u'recal', u'champ', u'leagu', u'death', u'threat'] [u'warn', u'workplac', u'agreement', u'reject'] [u'nation', u'disput', u'dead', u'murray', u'claim'] [u'nation', u'offer', u'kosciuszko', u'park', u'support'] [u'sale', u'drive', u'record'] [u'fossil', u'fish', u'like', u'reptil', u'arctic'] [u'polic', u'plane', u'servic', u'central', u'australia'] [u'children', u'hurt', u'russian', u'sieg', u'negoti', u'say'] [u'final', u'breakdown', u'glanc'] [u'polic', u'seek', u'elect', u'pledg'] [u'govt', u'part', u'blame', u'breach'] [u'seafood', u'industri', u'concern', u'nativ', u'titl'] [u'price', u'increas', u'cost', u'countri', u'petrol'] [u'price', u'push', u'rat', u'green'] [u'pacif', u'island', u'tour', u'make', u'modest', u'profit'] [u'paralympian', u'leav', u'athen'] [u'penrith', u'secur', u'home', u'final', u'style'] [u'peopl', u'recognis', u'braveri', u'childcar', u'centr'] [u'pirsa', u'begin', u'locust', u'prevent'] [u'hint', u'chang'] [u'seek', u'commit', u'latham', u'industri'] [u'polic', u'appeal', u'wit', u'suspect'] [u'polic', u'seek', u'heavier', u'penalti', u'soldier'] [u'polic', u'review', u'search', u'canoeist'] [u'polic', u'warn', u'hoon', u'watch', u'step'] [u'polli', u'gag', u'olymp', u'homecom'] [u'power', u'line', u'vandal', u'lucki', u'electrocut'] [u'premier', u'defend', u'forest', u'industri'] [u'probe', u'seek', u'murrurundi', u'council'] [u'program', u'begin', u'ensur', u'sawfish', u'surviv'] [u'public', u'paedophilia', u'brief'] [u'public', u'warn', u'slash', u'water'] [u'indigen', u'land', u'law', u'review'] [u'racq', u'call', u'fuel', u'price', u'reduct'] [u'ranger', u'uranium', u'reopen'] [u'recent', u'rainfal', u'sydney', u'catchment'] [u'research', u'explor', u'scienc', u'wine', u'make'] [u'resid', u'seek', u'detail', u'drug', u'rehab', u'expans'] [u'resourc', u'manag', u'group', u'call', u'increas'] [u'retail', u'surpris', u'fall', u'turnov'] [u'rivkin', u'admit', u'hospit'] [u'rivkin', u'hospitalis', u'suicid', u'attempt'] [u'road', u'rage', u'wont', u'toler', u'judg', u'say'] [u'rough', u'terrain', u'hamper', u'recoveri', u'hiker', u'bodi'] [u'ruddock', u'defend', u'russian', u'sieg', u'comment'] [u'rural', u'financi', u'counsel', u'microscop'] [u'russian', u'armi', u'attack', u'gunmen', u'hole', u'hous'] [u'russian', u'forc', u'storm', u'sieg', u'school'] [u'russian', u'hostag', u'number', u'wit'] [u'safeti', u'fear', u'prompt', u'pakistan', u'hockey', u'pull'] [u'form', u'crop', u'advisori', u'group'] [u'school', u'help', u'save', u'murray', u'darl'] [u'schumach', u'unhurt', u'heavi', u'crash', u'monza'] [u'scienc', u'odditi', u'reveal', u'public'] [u'scientist', u'claim', u'success', u'control', u'curs'] [u'scientist', u'earthquak', u'answer'] [u'search', u'american', u'canoeist', u'resum'] [u'secur', u'guard', u'clear', u'bracelet', u'theft'] [u'servic', u'sector', u'continu', u'solid', u'perform'] [u'sharapova', u'venus'] [u'sharehold', u'woe', u'wont', u'affect', u'miner', u'sand', u'plan'] [u'share', u'market', u'retreat', u'record', u'high'] [u'special', u'forc', u'control', u'russian', u'hostag', u'school'] [u'stosur', u'pratt', u'fall', u'york'] [u'strong', u'water', u'suppli', u'workshop'] [u'sudan', u'urg', u'allow', u'intern', u'peacekeep'] [u'sydney', u'plead', u'guilti', u'rape', u'murder'] [u'teacher', u'welcom', u'karratha', u'educ', u'centr'] [u'teen', u'get', u'life', u'video', u'game', u'style', u'murder'] [u'thai', u'team', u'talk', u'chicken', u'arm', u'deal', u'russia'] [u'thoma', u'keep', u'trick', u'sleev'] [u'torren', u'weir', u'investig', u'white', u'water', u'cano'] [u'tourism', u'report', u'highlight', u'cheap', u'capricorn', u'coast'] [u'group', u'tackl', u'campus', u'racism'] [u'union', u'critic', u'high', u'court', u'decis'] [u'order', u'syria', u'withdraw', u'forc', u'lebanon'] [u'call', u'probe', u'south', u'korea', u'nuclear', u'activ'] [u'marin', u'guilti', u'prison', u'abus'] [u'soldier', u'guilti', u'pass', u'inform'] [u'tighten', u'secur', u'flight', u'russia'] [u'victoria', u'olympian', u'honour', u'parad'] [u'wallavill', u'home', u'threaten'] [u'wall', u'investor', u'reliev', u'price', u'wind'] [u'weather', u'favour', u'lion', u'lethal'] [u'windsor', u'seek', u'deputi', u'debat'] [u'wondai', u'man', u'death', u'accident'] [u'woodward', u'continu', u'lion', u'coach'] [u'work', u'begin', u'corridor', u'tunnel'] [u'keeper', u'conduct', u'survey', u'rare', u'wallabi', u'number'] [u'buy', u'rare', u'merced', u'sport'] [u'kill', u'russian', u'school', u'sieg'] [u'accus', u'neglect', u'weed', u'affect', u'land'] [u'allianc', u'attack', u'carr', u'green', u'credenti'] [u'sydney', u'seat', u'analyst'] [u'plan', u'abolish', u'medicar', u'abbott'] [u'asean', u'consid', u'free', u'trade', u'australia'] [u'aussi', u'surfer', u'japan', u'quarter'] [u'australian', u'win', u'british', u'palat'] [u'bodi', u'suspect', u'miss', u'woman'] [u'bomber', u'hang', u'thriller'] [u'booki', u'odd', u'elect', u'tip', u'polit'] [u'builder', u'welcom', u'develop', u'ventur'] [u'bungl', u'upgrad', u'delay', u'virgin', u'flight'] [u'bomb', u'explod', u'kirkuk'] [u'cat', u'easier', u'prey', u'interst', u'say', u'william'] [u'clinton', u'await', u'heart', u'bypass', u'surgeri'] [u'clinton', u'heart', u'bypass', u'surgeri'] [u'clinton', u'undergo', u'heart', u'bypass', u'week'] [u'coalit', u'lead', u'margin'] [u'convict', u'judg', u'resign', u'stand'] [u'courag', u'need', u'kashmir', u'talk', u'begin'] [u'cowboy', u'shark', u'season'] [u'cowboy', u'warm', u'final', u'shark'] [u'dead', u'climber', u'year'] [u'dead', u'school', u'sieg', u'putin', u'arriv'] [u'demand', u'spur', u'second', u'contact', u'centr'] [u'democrat', u'warn', u'region', u'arm', u'race'] [u'demon', u'desper', u'form', u'revers'] [u'digit', u'photo', u'help', u'catch', u'crimin'] [u'dozen', u'kill', u'russian', u'hostag', u'crisi'] [u'driver', u'flee', u'crash', u'scene'] [u'kill', u'mosul', u'clash'] [u'flintoff', u'lead', u'england', u'seri'] [u'florida', u'prepar', u'hurrican', u'approach'] [u'flyer', u'hunt', u'miss', u'woman'] [u'form', u'team', u'readi', u'battl', u'roo'] [u'garcia', u'lead', u'fowler', u'slip', u'switzerland'] [u'group', u'move', u'protect', u'admiralti', u'hous'] [u'hail', u'storm', u'caus', u'accid'] [u'harri', u'potter', u'fan', u'offer', u'sneak', u'peek'] [u'hewitt', u'blossom', u'roddick', u'serena', u'power'] [u'howard', u'challeng', u'cross', u'path'] [u'howard', u'fail', u'educ', u'promis', u'labor'] [u'howard', u'latham', u'offer', u'russian', u'sympathi'] [u'hurrican', u'franc', u'head', u'florida'] [u'hurrican', u'franc', u'lash', u'florida'] [u'warn', u'bari', u'shepherd', u'comment'] [u'intel', u'outlook', u'spark', u'market', u'slide'] [u'pay', u'past', u'accus', u'jackson'] [u'ireland', u'pull', u'plug', u'world', u'plan'] [u'islam', u'armi', u'claim', u'chalabi', u'assassin', u'attempt'] [u'islamist', u'deni', u'russian', u'link'] [u'isra', u'helicopt', u'attack', u'hama', u'build'] [u'ivana', u'apprentic', u'snag', u'prime', u'time'] [u'joint', u'launch', u'help', u'coalit', u'queensland'] [u'increas', u'lead', u'lpga', u'event'] [u'kindergarten', u'teacher', u'strike'] [u'latham', u'hater', u'anderson', u'say'] [u'latham', u'call', u'sept', u'campaign'] [u'latham', u'launch', u'airport', u'secur', u'polici'] [u'latham', u'unveil', u'tasmania', u'packag'] [u'societi', u'lament', u'legisl', u'loss'] [u'librari', u'damag', u'thousand', u'rare', u'book'] [u'log', u'top', u'tasmanian', u'elect', u'agenda'] [u'loom', u'quak', u'deadlin', u'rattl', u'predict'] [u'blood', u'soak', u'matress', u'lane'] [u'injur', u'bike', u'accid'] [u'kill', u'road', u'accid'] [u'meeuw', u'join', u'grow', u'exodus', u'black'] [u'minist', u'honour', u'tracker', u'train', u'award'] [u'mortar', u'land', u'near', u'iraq', u'nation', u'assembl'] [u'mugab', u'warn', u'australia', u'regim', u'chang'] [u'nauru', u'parliament', u'debat', u'money', u'launder', u'law'] [u'game', u'plan', u'sport', u'facil'] [u'onlin', u'magazin', u'groom', u'women', u'jihad'] [u'palmer', u'knock', u'semi', u'final'] [u'panda', u'give', u'birth', u'twin'] [u'parent', u'welcom', u'disabl', u'servic', u'strategi'] [u'polic', u'continu', u'search', u'miss', u'woman'] [u'polic', u'investig'] [u'policeman', u'hurt'] [u'polic', u'seek', u'driver', u'hit', u'hous'] [u'star', u'releas', u'album', u'dafur'] [u'preschool', u'offer', u'fail', u'satisfi', u'teacher'] [u'prosecut', u'plan', u'maroubra', u'babi', u'bash'] [u'putin', u'order', u'border', u'seal'] [u'raider', u'scrape', u'final'] [u'report', u'say', u'cat', u'spread', u'bird'] [u'retest', u'show', u'orford', u'drink', u'water', u'safe'] [u'tinto', u'deni', u'closur', u'threat'] [u'rooney', u'prepar', u'wait', u'unit', u'glori'] [u'rossi', u'snatch', u'provision', u'portug', u'pole'] [u'russian', u'sieg', u'horrifi', u'world', u'leader'] [u'saboteur', u'attack', u'pipelin'] [u'saint', u'shock', u'awe', u'thrash'] [u'turn'] [u'scientist', u'nose', u'ahead', u'battl', u'mosquito'] [u'season', u'tiger'] [u'seven', u'kill', u'mosul', u'clash'] [u'sieg', u'death', u'toll', u'rise'] [u'sieg', u'weapon', u'stash', u'school', u'secur', u'offic'] [u'southampton', u'rule', u'lead', u'role', u'woodward'] [u'spill', u'halt', u'ranger', u'process', u'plant'] [u'stamp', u'duti', u'cut', u'home', u'jump', u'ripper'] [u'studi', u'question', u'long', u'term', u'atkin', u'effect'] [u'swan', u'hold', u'command', u'half', u'time', u'lead'] [u'swan', u'send', u'eagl', u'pack'] [u'govt', u'target', u'communiti', u'educ'] [u'tendulkar', u'doubt', u'champion', u'trophi'] [u'train', u'enthusiast', u'historian', u'celebr', u'birdum'] [u'corner', u'contest', u'issu', u'liber'] [u'kill', u'highway', u'smash'] [u'polic', u'target', u'muslim', u'report'] [u'ukrain', u'iraq', u'troop', u'number'] [u'unemploy', u'influenc', u'margin', u'seat'] [u'union', u'seek', u'mandatori', u'home', u'asbesto', u'check'] [u'urban', u'plan', u'protect', u'park', u'reserv'] [u'fear', u'prompt', u'renew', u'indonesian', u'travel', u'warn'] [u'friend', u'kill', u'iraq'] [u'virgin', u'blue', u'fix', u'glitch'] [u'nation', u'parti', u'elect', u'femal', u'presid'] [u'waterway', u'weevil', u'help', u'clear', u'hawkesburi'] [u'wood', u'lead', u'massachusett'] [u'wood', u'share', u'round', u'lead'] [u'worksaf', u'concern', u'rise', u'death', u'toll'] [u'ray', u'clear', u'bronco', u'pair'] [u'iraqi', u'polic', u'offic', u'kill'] [u'seek', u'ranger', u'prosecut'] [u'engin', u'answer', u'green', u'challeng'] [u'activist', u'claim', u'success', u'cabl', u'sand', u'protest'] [u'hour', u'clinic', u'bulk', u'treatment'] [u'argentina', u'follow', u'olymp', u'gold', u'peru'] [u'seek', u'whistleblow', u'law', u'extens'] [u'australia', u'offer', u'assist', u'russia', u'terrorist', u'hunt'] [u'austria', u'hold', u'scrappi', u'england'] [u'blair', u'invok', u'rare', u'hunt'] [u'bodi', u'egyptian', u'iraq', u'franc', u'wait', u'word'] [u'brisban', u'fail', u'melbourn', u'zorba', u'record'] [u'brisban', u'storm', u'caus', u'blackout'] [u'bush', u'declar', u'major', u'disast', u'florida'] [u'bush', u'give', u'broccoli', u'half', u'heart', u'approv'] [u'bomb', u'kill', u'iraq'] [u'china', u'flood', u'landslid', u'kill'] [u'chines', u'tell', u'busi', u'trip', u'wast', u'time'] [u'coalit', u'commit', u'fight', u'child', u'abus'] [u'curfew', u'impos', u'hurrican', u'near', u'florida'] [u'danih', u'keep', u'chin', u'loss'] [u'parlour', u'thiev', u'search'] [u'doctor', u'polic', u'child', u'protect', u'honour'] [u'doctor', u'condemn', u'govt', u'iraq'] [u'doctor', u'entitl', u'criticis', u'iraq', u'polici', u'howard'] [u'dont', u'panic', u'talli', u'tell', u'bronco'] [u'drought', u'crisi', u'migratori', u'bird'] [u'hospitalis', u'hunter', u'hous'] [u'karkouri', u'score', u'late', u'spare', u'morocco'] [u'expatri', u'sudan', u'intervent'] [u'famili', u'parti', u'call', u'child', u'custodi', u'reform'] [u'corp', u'worri', u'german', u'armi'] [u'feder', u'hit', u'form', u'miseri', u'sharapova'] [u'feder', u'roll', u'sharapova', u'knock'] [u'firefight', u'reject', u'inadequ', u'deal'] [u'storm', u'sweep', u'sydney'] [u'florida', u'hunker', u'franc', u'furi'] [u'join', u'financ', u'ombudsman', u'board'] [u'governor', u'die'] [u'utai', u'run', u'ring', u'warrior'] [u'utai', u'torment', u'warrior'] [u'free', u'speech', u'stake', u'libel', u'case', u'begin'] [u'funer', u'begin', u'russian', u'hostag', u'victim'] [u'gavaskar', u'replac', u'tendulkar'] [u'gaza', u'gunmen', u'seiz', u'governor', u'offic', u'protest'] [u'green', u'call', u'aerial', u'spray'] [u'green', u'target', u'polit', u'donat', u'elect'] [u'grow', u'communiti', u'spirit', u'boost', u'volunt', u'rank'] [u'hobgood', u'edg', u'parkinson', u'japan', u'final'] [u'homicid', u'polic', u'investig', u'alburi', u'hous'] [u'hondura', u'frustrat', u'canada', u'panama', u'stun', u'regga', u'boyz'] [u'hook', u'turn', u'plan', u'spark', u'safeti', u'concern'] [u'howard', u'latham', u'hust', u'sydney'] [u'ierodiaconou', u'world'] [u'form', u'kasper', u'pose', u'select', u'dilemma'] [u'iraq', u'clash', u'leav', u'dozen', u'dead'] [u'iraq', u'extend', u'jazeera', u'indefinit'] [u'jimenez', u'lead', u'european', u'master'] [u'kashmir', u'talk', u'begin', u'amid', u'word'] [u'labor', u'deni', u'green', u'polici', u'influenc'] [u'labor', u'elect', u'worker', u'abus'] [u'labor', u'make', u'youth', u'unemploy', u'pledg'] [u'labor', u'packag', u'focus', u'northern'] [u'latham', u'accus', u'dodg', u'elect', u'debat'] [u'latham', u'use', u'father', u'focus', u'famili'] [u'leader', u'downplay', u'close', u'opinion', u'poll'] [u'lennon', u'welcom', u'labor', u'packag'] [u'girl', u'kill', u'alburi', u'hous'] [u'man', u'finish', u'season', u'flourish'] [u'man', u'lead', u'break'] [u'mcginti', u'expect', u'bipartisan', u'support', u'evid'] [u'nauru', u'sack', u'presid', u'debt', u'tussl'] [u'nauru', u'toughen', u'law', u'money', u'launder'] [u'hoon', u'law', u'tougher', u'say', u'safeti', u'council'] [u'hail', u'anti', u'sledg', u'pledg', u'success'] [u'boost', u'literaci', u'program'] [u'strengthen', u'land', u'clear', u'law'] [u'obes', u'crisi', u'fuel', u'camp', u'surg'] [u'parti', u'pledg', u'budget', u'black'] [u'polic', u'hold', u'children', u'chrome'] [u'polic', u'question', u'mysteri', u'shoot', u'victim'] [u'polic', u'union', u'back', u'propos', u'interview', u'overhaul'] [u'pollut', u'monitor', u'tab', u'emiss'] [u'port', u'turn', u'final', u'form'] [u'power', u'surg', u'ahead', u'half', u'time'] [u'power', u'surg', u'preliminari', u'final'] [u'prefer', u'influenc', u'labor', u'howard'] [u'product', u'boost', u'need', u'price'] [u'queanbeyan', u'council', u'join', u'jam', u'hardi', u'boycott'] [u'record', u'fine', u'tip', u'wardrob', u'malfunct'] [u'redcliff', u'festiv', u'celebr', u'european', u'land'] [u'ring', u'endors', u'phone', u'zone', u'plan'] [u'risk', u'take', u'tasmanian', u'secur', u'survey'] [u'rooster', u'head', u'minor', u'premiership'] [u'rooster', u'wrap', u'minor', u'premiership'] [u'russia', u'mourn', u'death', u'toll', u'rise'] [u'russia', u'prepar', u'sieg', u'funer'] [u'sailor', u'bodi', u'near', u'damag', u'yacht'] [u'search', u'resum', u'miss', u'ipswich', u'woman'] [u'secur', u'scar', u'shut', u'airport'] [u'singh', u'take', u'massachusett', u'lead'] [u'sing', u'minist', u'boost', u'panama', u'tourism'] [u'korean', u'downplay', u'grade', u'nuclear', u'test'] [u'smoke', u'caus', u'blow', u'studi'] [u'lanka', u'upbeat', u'ahead', u'trophi', u'defenc'] [u'statehood', u'committe', u'form', u'year'] [u'strong', u'quak', u'hit', u'west', u'japan', u'tsunami', u'warn'] [u'sudan', u'ask', u'respect', u'african', u'peac', u'effort'] [u'super', u'trawler', u'unlik', u'fish', u'australia'] [u'sweden', u'world', u'flier', u'gun', u'suffer'] [u'symond', u'set', u'aussi'] [u'tamada', u'take', u'portugues', u'pole'] [u'suspect', u'arrest', u'follow', u'russia', u'school'] [u'saddam', u'aid', u'arrest', u'govern'] [u'tough', u'water', u'rule', u'limit', u'tourist', u'pressur'] [u'trust', u'import', u'thing', u'costello'] [u'kill', u'bangladesh', u'bomb', u'blast'] [u'union', u'urg', u'public', u'consid', u'univers'] [u'venabl', u'talk', u'newcastl', u'report'] [u'welfar', u'group', u'warn', u'parti', u'social', u'issu'] [u'wit', u'seek', u'melbourn'] [u'worker', u'bind', u'parlour', u'hold'] [u'acoss', u'seek', u'privat', u'health', u'rebat'] [u'actu', u'launch', u'childcar', u'phone'] [u'adelaid', u'stand', u'end', u'peac'] [u'offic', u'receiv', u'medal', u'bali', u'bomb', u'work'] [u'forc', u'breach', u'right', u'convent', u'hreoc'] [u'reappoint', u'head', u'dive', u'coach'] [u'candid', u'question', u'telstra', u'claim'] [u'candid', u'reject', u'loss', u'claim'] [u'pledg', u'pakenham', u'rail', u'boost'] [u'pledg', u'region', u'airport', u'secur', u'boost'] [u'say', u'labor', u'health', u'focus', u'misplac'] [u'anderson', u'take', u'swipe', u'watermelon', u'green'] [u'anderson', u'underst', u'telstra', u'sale', u'opposit', u'andren'] [u'angler', u'battl', u'report', u'condit'] [u'anim', u'bridg', u'middl', u'east', u'divid'] [u'anwar', u'launch', u'clear'] [u'share', u'rise'] [u'arson', u'vintag', u'blaze'] [u'asylum', u'seeker', u'malaysia', u'launch', u'hunger', u'strike'] [u'australia', u'asean', u'agre', u'free', u'trade', u'talk'] [u'bail', u'grant', u'bomb', u'charg'] [u'bashir', u'stay', u'jail'] [u'beatti', u'prepar', u'japanes', u'trade', u'talk'] [u'beazley', u'challeng', u'govt', u'start', u'work', u'sale'] [u'bellami', u'wari', u'real', u'tough', u'bronco'] [u'bellami', u'wari', u'real', u'tough', u'bronc'] [u'booklet', u'launch', u'combat', u'internet', u'paedophil'] [u'bronco', u'sign', u'lockyer', u'hunt'] [u'brother', u'appeal', u'gang', u'rape', u'convict'] [u'brother', u'lose', u'appeal', u'gang', u'rape', u'convict'] [u'brown', u'face', u'charg'] [u'brown', u'say', u'liber', u'reach', u'control', u'senat'] [u'busi', u'group', u'question', u'labor', u'packag'] [u'cadet', u'report', u'find', u'need', u'enforc'] [u'chang', u'oper'] [u'earli', u'detect', u'child', u'abus'] [u'cambodia', u'senat', u'rubberstamp', u'entri'] [u'campaign', u'wild', u'dog', u'take'] [u'campaign', u'focus', u'parent', u'problem'] [u'canberra', u'resid', u'younger', u'rest', u'countri'] [u'cane', u'toad', u'darwin'] [u'carr', u'eager', u'await', u'snowflak', u'analysi'] [u'child', u'abus', u'accept', u'indigen'] [u'code', u'entic', u'visitor', u'supper'] [u'correct', u'servic', u'monitor', u'rivkin', u'condit'] [u'corrupt', u'polic', u'lose', u'servic', u'medal'] [u'cost', u'health', u'fraud'] [u'council', u'employe', u'nation', u'presid'] [u'council', u'urg', u'sign', u'pipelin', u'plan'] [u'crash', u'russian', u'helicopt', u'near', u'chechnya'] [u'curfew', u'lift', u'nepal'] [u'deadlin', u'pass', u'elector', u'boundari'] [u'death', u'toll', u'rise', u'chines', u'flood'] [u'democrat', u'founder', u'criticis', u'green', u'associ'] [u'democrat', u'indigen', u'affair', u'scandal'] [u'democrat', u'launch', u'indigen', u'polici'] [u'dept', u'cut', u'fund', u'child', u'care'] [u'develop', u'studi', u'port', u'alma'] [u'dialysi', u'unit', u'open', u'surround'] [u'doctor', u'greater', u'protect'] [u'donald', u'give', u'langer', u'perfect', u'ryder', u'tonic'] [u'doubt', u'rais', u'airport', u'secur', u'plan'] [u'doubt', u'rais', u'cook', u'wine', u'withdraw'] [u'dragon', u'hope', u'avoid', u'slay', u'panther', u'match'] [u'driver', u'seiz', u'anti', u'hoon', u'law'] [u'driver', u'warn', u'great', u'alpin', u'delay'] [u'nino', u'threat', u'loom'] [u'employ', u'urg', u'disabl', u'worker'] [u'defend', u'sugar', u'subsidi'] [u'expans', u'plan', u'super', u'nation'] [u'famili', u'urg', u'nation', u'licens', u'mental'] [u'fear', u'water', u'woe', u'harm', u'tourism'] [u'feder', u'fund', u'boost', u'food', u'centr'] [u'feder', u'polic', u'offer', u'help', u'russia'] [u'fiji', u'govt', u'cancel', u'search', u'miss', u'bega', u'woman'] [u'flood', u'kill', u'china'] [u'florida', u'see', u'hurrican'] [u'footi', u'cod', u'secur', u'grand', u'final', u'spot'] [u'fourth', u'australian', u'team', u'expand', u'super'] [u'fractur', u'socket', u'webb'] [u'franc', u'award', u'australian', u'linguist', u'legion', u'honour'] [u'franc', u'leav', u'florida', u'black', u'curfew'] [u'golf', u'club', u'death', u'inquest', u'start'] [u'govt', u'ask', u'shed', u'light', u'fish', u'initi'] [u'govt', u'concess', u'seek', u'argyl', u'diamond'] [u'govt', u'play', u'polit', u'free', u'trade', u'deal'] [u'govt', u'hick', u'concern', u'elect', u'stunt', u'say', u'brown'] [u'govt', u'help', u'fund', u'ballina', u'pass'] [u'govt', u'urg', u'help', u'save'] [u'green', u'candid', u'predict', u'senat', u'boost'] [u'green', u'seek', u'cobb', u'debat'] [u'council', u'question', u'grant', u'discrep'] [u'hewitt', u'blitz', u'lopez'] [u'hickss', u'lawyer', u'question', u'time', u'govt', u'concern'] [u'home', u'loan', u'firm', u'take', u'award', u'honour'] [u'hospit', u'neck', u'wait', u'surgeri', u'time', u'halv'] [u'hous', u'blaze', u'survivor', u'condit', u'improv'] [u'hundr', u'miss', u'beslan', u'sieg'] [u'bounc', u'vow', u'calam', u'jam'] [u'india', u'pakistan', u'continu', u'kashmir', u'ceasefir'] [u'indonesian', u'court', u'reject', u'bashir', u'appeal'] [u'investig', u'continu', u'alburi', u'hous'] [u'iraq', u'captor', u'free', u'jordanian', u'sudanes'] [u'iraqi', u'minist', u'rule', u'intervent', u'saddam'] [u'israel', u'deni', u'bomb', u'latest', u'barrier'] [u'ivori', u'coast', u'world', u'group'] [u'japan', u'guard', u'aftershock', u'quak'] [u'reach', u'highest', u'level', u'year'] [u'keelti', u'hope', u'renew', u'relat', u'vanuatu'] [u'kerin', u'say', u'politician', u'play', u'murray', u'polit'] [u'knight', u'trio', u'name', u'kangaroo', u'squad'] [u'latham', u'call', u'public', u'forum'] [u'latham', u'express', u'hope', u'fair', u'hick', u'trial'] [u'latham', u'promis', u'bulk', u'bill', u'rat', u'boost'] [u'lion', u'head', u'final'] [u'lion', u'like', u'charter', u'plane'] [u'liquor', u'accord', u'pay'] [u'live', u'memori', u'creat', u'canberra'] [u'local', u'industri', u'busi', u'regul'] [u'local', u'russian', u'communiti', u'offer', u'beslan'] [u'loddon', u'malle', u'face', u'weighti', u'problem'] [u'majest', u'brazil', u'close', u'world', u'final'] [u'major', u'parti', u'unveil', u'health', u'strategi'] [u'charg', u'taxi', u'driver', u'hold'] [u'kill', u'greek', u'soccer', u'riot'] [u'face', u'court', u'homemad', u'bomb'] [u'face', u'trial', u'alleg', u'petrol', u'dous'] [u'matthew', u'question', u'brown', u'report'] [u'meat', u'tray', u'thiev', u'bash', u'woman'] [u'meet', u'canva', u'dump', u'design', u'option'] [u'militari', u'action', u'chechnya', u'like', u'say', u'expert'] [u'futur', u'feder', u'decis', u'scienc', u'offic'] [u'mine', u'crush', u'boulder'] [u'minist', u'launch', u'highway', u'work'] [u'minist', u'prais', u'mayor', u'probe'] [u'minist', u'reject', u'claim', u'reef', u'zone', u'threaten'] [u'minist', u'want', u'hate', u'sit', u'block'] [u'moscow', u'bomb', u'toll', u'rise'] [u'put', u'focus', u'boost', u'doctor', u'number'] [u'muppet', u'popular', u'scientist', u'award'] [u'nauruan', u'govt', u'order', u'attend', u'mediat'] [u'child', u'abus', u'claim', u'anglican', u'church'] [u'polic', u'offic', u'start', u'rockhampton'] [u'news', u'corp', u'help', u'prop', u'market'] [u'guarante', u'land', u'clear', u'applic'] [u'time', u'sanction', u'sudan'] [u'govt', u'look', u'increas', u'privat', u'invest'] [u'govt', u'speak', u'racism'] [u'green', u'issu', u'warn', u'major', u'parti'] [u'onetel', u'founder', u'face', u'court'] [u'world', u'flop', u'quit', u'eriksson'] [u'opposit', u'worri', u'wander', u'prison'] [u'pakistan', u'play', u'champ', u'trophi', u'terror', u'fear'] [u'plan', u'blow', u'wind', u'indigen', u'communiti'] [u'polic', u'confid', u'govt', u'fund', u'court', u'case'] [u'polic', u'highlight', u'reduc', u'crash', u'rat'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'offic', u'recommend', u'braveri'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'promis', u'continu', u'drug', u'crackdown'] [u'polic', u'seek', u'inform', u'alleg', u'sexual', u'assault'] [u'politician', u'continu', u'rate', u'debat'] [u'trial', u'hear', u'begin', u'british', u'backpack'] [u'prison', u'stab', u'jail'] [u'properti', u'develop', u'unhappi', u'chief', u'minist'] [u'protest', u'fight', u'ludlow', u'log'] [u'public', u'urg', u'maintain', u'health', u'servic', u'fight'] [u'push', u'elect', u'road', u'fund', u'boost'] [u'push', u'local', u'health', u'admin', u'job'] [u'pub', u'smoke', u'free'] [u'rain', u'offer', u'farmer', u'respit'] [u'ranger', u'restart', u'hing', u'safeti', u'audit'] [u'rauhihi', u'featur', u'canterburi', u'clash'] [u'reynold', u'reject', u'youth', u'curfew', u'plan'] [u'ricketson', u'say'] [u'rioli', u'rule', u'semi', u'final'] [u'rossi', u'eye', u'sixth', u'world', u'titl', u'portugues'] [u'blow', u'wind', u'farm', u'tourist'] [u'russia', u'begin', u'nation', u'mourn'] [u'russia', u'mourn', u'beslan', u'prepar', u'funer'] [u'russia', u'mourn', u'hostag', u'death', u'putin', u'criticis'] [u'russian', u'communiti', u'meet', u'beslan', u'appeal'] [u'russian', u'helicopt', u'report', u'miss'] [u'safeti', u'concern', u'spark', u'weighbridg', u'work'] [u'lose', u'focus', u'telescop'] [u'busi', u'lead', u'spend'] [u'scientist', u'beauti', u'brain'] [u'shire', u'tire', u'plan', u'strategi', u'delay'] [u'shire', u'revamp', u'emerg', u'plan'] [u'shoalhaven', u'crack', u'water'] [u'shop', u'centr', u'centenari', u'event'] [u'singh', u'close', u'rank'] [u'clive', u'say', u'sorri', u'anti', u'club', u'outburst'] [u'site', u'choos', u'peregian', u'school'] [u'marin', u'kill', u'fallujah', u'attack'] [u'smash', u'repair', u'rate', u'increas'] [u'sober', u'honour'] [u'star', u'war', u'target', u'missil', u'launch'] [u'souness', u'quit', u'rover', u'newcastl'] [u'speed', u'driver', u'worri', u'polic'] [u'storm', u'clean', u'continu'] [u'storm', u'bring', u'highway', u'havoc'] [u'strike', u'action', u'stall', u'commodor', u'product'] [u'student', u'enrol', u'democraci', u'cours'] [u'student', u'return', u'class', u'teacher'] [u'super', u'expans', u'announc'] [u'swedish', u'bewild', u'british', u'park', u'ticket'] [u'sydney', u'racehors', u'trainer', u'kill', u'hunt', u'accid'] [u'tasmanian', u'urg', u'lock', u'home'] [u'teacher', u'meet', u'drug', u'expuls', u'decis'] [u'teen', u'hospit', u'motorcycl', u'mishap'] [u'tendulkar', u'champion', u'trophi'] [u'thiev', u'target', u'tare', u'senior'] [u'thompson', u'win', u'italian', u'long', u'jump'] [u'saddam', u'aid', u'custodi'] [u'tropic', u'wasp', u'match', u'cockroach'] [u'turf', u'club', u'oppos', u'super', u'bodi', u'plan'] [u'turkish', u'captiv', u'releas', u'iraq'] [u'turkish', u'truck', u'compani', u'pull', u'iraq', u'save'] [u'injur', u'canberra', u'crash'] [u'teen', u'accid'] [u'soldier', u'kill', u'iraq'] [u'uncertainti', u'captur', u'saddam', u'aid'] [u'hold', u'integr', u'talk'] [u'union', u'attack', u'govt', u'univers', u'fund'] [u'univeristi', u'cleaner', u'secur'] [u'unsettl', u'film', u'surpris', u'venic', u'film'] [u'uruguay', u'world', u'cours', u'brazil', u'down'] [u'school', u'urg', u'reject', u'unhealthi', u'sponsorship'] [u'weed', u'expert', u'converg', u'wagga'] [u'weed', u'pest', u'mistaken', u'mulch'] [u'woman', u'critic', u'injur', u'smash'] [u'woman', u'die', u'nurs', u'home'] [u'woman', u'kill', u'retir', u'villag'] [u'woman', u'kill', u'hume', u'highway'] [u'woman', u'plead', u'guilti', u'theft', u'charg'] [u'woolford', u'doubt', u'final'] [u'woomera', u'host', u'scramjet', u'engin', u'test'] [u'worker', u'continu', u'abattoir', u'industri', u'woe'] [u'worker', u'miss', u'rise'] [u'hit', u'critic', u'role'] [u'wwfs', u'conserv', u'credenti', u'question'] [u'abbott', u'deni', u'fraud', u'medicar'] [u'aborigin', u'elder', u'welcom', u'return', u'remain'] [u'green', u'propos', u'water', u'conserv', u'measur'] [u'liber', u'launch', u'elect', u'polici'] [u'begin', u'pacif', u'mission'] [u'agassi', u'set', u'feder', u'showdown'] [u'albani', u'crucial', u'elect', u'barnett'] [u'alic', u'spring', u'communiti', u'prais', u'east', u'timor'] [u'ord', u'reach', u'record', u'high'] [u'hospit', u'indoor', u'smoke'] [u'anderson', u'face', u'angri', u'elector'] [u'anderson', u'reaffirm', u'telstra', u'sale', u'plan'] [u'anwar', u'spinal', u'surgeri', u'success'] [u'sue', u'olymp', u'ring'] [u'arsenic', u'consid', u'health', u'risk'] [u'australian', u'polic', u'arriv', u'bougainvill'] [u'australia', u'send', u'russia'] [u'balogh', u'featur', u'open'] [u'barbaro', u'court', u'drug', u'charg'] [u'barrack', u'condit', u'worri', u'mayor'] [u'bartlett', u'say', u'democrat', u'green', u'remain', u'distinct'] [u'beach', u'smoke', u'inevit', u'say', u'mayor'] [u'beekeep', u'locust', u'lowdown'] [u'rail', u'access'] [u'border', u'doctor', u'worri', u'medicar', u'quick'] [u'hospit', u'hous', u'blaze', u'ordeal'] [u'britain', u'charg', u'soldier', u'murder', u'iraq'] [u'break', u'fin', u'sell', u'cannabi'] [u'bronco', u'storm', u'recal', u'star'] [u'brown', u'clear', u'kingsley', u'rub'] [u'brown', u'clear', u'technic'] [u'brown', u'dismiss', u'govt', u'call'] [u'buderus', u'name', u'rugbi', u'leagu', u'best'] [u'busi', u'optim', u'remain', u'upbeat'] [u'cabl', u'sand', u'push', u'ahead', u'despit', u'protest'] [u'cairn', u'host', u'blitz'] [u'indigen', u'hous', u'fund'] [u'cleaner', u'strike', u'affect', u'school'] [u'clinton', u'heart', u'surgeri', u'success'] [u'council', u'get', u'endang', u'anim'] [u'council', u'look', u'great', u'ocean', u'strategi', u'fund'] [u'council', u'rezon', u'spin', u'mill', u'site'] [u'court', u'review', u'anwar', u'convict'] [u'croc', u'wildcat', u'match'] [u'cuban', u'doctor', u'help', u'allevi', u'nauru', u'health', u'problem'] [u'custom', u'siez', u'herion', u'post'] [u'dane', u'jail', u'monopoli', u'money', u'defenc'] [u'darwin', u'experi', u'downturn', u'commerci', u'properti'] [u'davi', u'doubt', u'swan'] [u'dingo', u'trap', u'scheme', u'end'] [u'doctor', u'highlight', u'hospit', u'staff', u'shortag', u'woe'] [u'doctor', u'group', u'question', u'parti', u'bulk', u'bill', u'plan'] [u'doctor', u'sceptic', u'elect', u'pledg'] [u'doubt', u'cast', u'bulk', u'bill', u'plan'] [u'driver', u'die', u'vinifera', u'crash'] [u'ask', u'push', u'basslink', u'plant'] [u'emerg', u'servic', u'simul', u'terrorist', u'attack'] [u'england', u'great', u'butcher', u'turn', u'beckham'] [u'claim', u'waterfront', u'project'] [u'european', u'market', u'steadi'] [u'expert', u'stop', u'dengu', u'outbreak'] [u'polic', u'offic', u'win', u'neglig', u'case'] [u'priest', u'face', u'child', u'charg', u'novemb'] [u'famili', u'better', u'labor', u'plan', u'say'] [u'farmer', u'inform', u'locust', u'fight'] [u'farmer', u'highlight', u'water', u'suppli', u'woe'] [u'father', u'plead', u'guilti', u'daughter', u'molest'] [u'fear', u'surfac', u'rise', u'parti', u'drug'] [u'festiv', u'put', u'focus', u'film', u'differ'] [u'fight', u'break', u'shiit', u'forc'] [u'finch', u'hindmarsh', u'buderus', u'lead', u'dalli', u'field'] [u'american', u'come', u'australia', u'studi'] [u'fish', u'farm', u'harvest', u'approach'] [u'dead', u'million', u'power', u'typhoon', u'lash'] [u'florenc', u'celebr', u'david', u'birthday'] [u'site', u'reopen', u'reactor'] [u'forum', u'focus', u'child', u'abus'] [u'fund', u'beef', u'forb', u'livestock', u'handl'] [u'rigger', u'fight', u'work', u'hour'] [u'girl', u'injur', u'leinster', u'attack'] [u'govt', u'labor', u'miss', u'prefer'] [u'govt', u'buy', u'depot', u'tafe'] [u'govt', u'fund', u'upgrad', u'man', u'polic', u'facil'] [u'govt', u'warn', u'possibl', u'recess'] [u'grain', u'harvest', u'forecast'] [u'green', u'thumb', u'urg', u'consid', u'appropri', u'nativ'] [u'group', u'fight', u'plan', u'disabl', u'chang'] [u'hama', u'vow', u'reveng', u'isra', u'missil', u'strike'] [u'harrop', u'train', u'olymp'] [u'henin', u'hardenn', u'crash', u'open'] [u'heritag', u'trail', u'offer', u'environment', u'sight'] [u'hobart', u'redevelop', u'get', u'green', u'light'] [u'hospit', u'contract', u'spark', u'doctor', u'burn', u'fear'] [u'hull', u'maintain', u'telstra', u'sale', u'stanc'] [u'indian', u'cricket', u'seal', u'multi', u'million', u'dollar', u'deal'] [u'india', u'seal', u'multi', u'million', u'dollar', u'deal'] [u'industri', u'woe', u'radiolog', u'clinic'] [u'inquiri', u'plagiar', u'begin', u'take'] [u'insur', u'monitor', u'jam', u'hardi', u'asbesto', u'case'] [u'internet', u'grow', u'farm'] [u'investig', u'link', u'russia', u'want'] [u'iraq', u'group', u'set', u'ransom', u'french', u'hostag', u'releas'] [u'isra', u'launch', u'strike', u'gaza', u'strip'] [u'israel', u'target', u'hama', u'train', u'camp'] [u'jail', u'worker', u'extend', u'strike'] [u'jamiroquai', u'frontman', u'cop', u'drive'] [u'japan', u'boost', u'beef', u'promot'] [u'kidnap', u'babi', u'grant', u'bail'] [u'kidnap', u'babi', u'court', u'drug', u'charg'] [u'labor', u'phase', u'tariff', u'cut', u'vehicl', u'import'] [u'labor', u'warn', u'fuel', u'secur', u'problem'] [u'latham', u'issu', u'bundaberg', u'forum', u'challeng'] [u'latham', u'make', u'pitch', u'middl', u'australia'] [u'latham', u'tri', u'deceiv', u'australian', u'costello', u'say'] [u'latham', u'win', u'australian', u'trust', u'elect'] [u'launceston', u'council', u'enter', u'heritag', u'debat'] [u'launch', u'isra', u'satellit', u'fail'] [u'leader', u'unit', u'commemor'] [u'letter', u'bomb', u'sender', u'launch', u'court', u'action'] [u'lgaq', u'air', u'smoke', u'enforc', u'concern'] [u'liber', u'focus', u'kimberley'] [u'lion', u'ticket', u'ballot'] [u'list', u'childcar', u'compani', u'seek', u'trade', u'halt'] [u'lynch', u'tip', u'preliminari', u'final', u'return'] [u'macek', u'join', u'richmond', u'board', u'tussl'] [u'major', u'parti', u'urg', u'reveal', u'adequ', u'climat'] [u'manag', u'defend', u'dump', u'design', u'consider'] [u'charg', u'homemad', u'bomb', u'get', u'bail'] [u'drown', u'swan', u'river'] [u'custodi', u'outstand', u'warrant'] [u'maradona', u'continu', u'cuban', u'drug', u'treatment'] [u'mayor', u'ponder', u'beach', u'smoke'] [u'mayor', u'pressur', u'letter'] [u'mayor', u'urg', u'rethink', u'hobart', u'waterfront', u'plan'] [u'medicar', u'announc', u'dont'] [u'mine', u'chief', u'outlin', u'futur', u'renew', u'energi'] [u'minist', u'push', u'explos', u'creat', u'water'] [u'minist', u'seek', u'smoke', u'high', u'roller'] [u'motorist', u'catch', u'zone'] [u'murder', u'inquiri', u'underway', u'nina', u'lewiss', u'bodi'] [u'forens', u'techniqu', u'help', u'identifi', u'decompos'] [u'newspap', u'editor', u'fire', u'coverag', u'school'] [u'stem', u'cell', u'therapi', u'offer', u'hope', u'anaemia'] [u'chang', u'expect', u'rat'] [u'class', u'cleaner', u'strike'] [u'norther', u'readi', u'race'] [u'outbreak', u'prompt', u'elect', u'surgeri', u'delay'] [u'surviv', u'parti', u'room', u'lock'] [u'olympian', u'hand', u'key', u'canberra'] [u'opposit', u'seek', u'surgic', u'servic', u'retent'] [u'pakistan', u'board', u'warn', u'chief', u'selector', u'shep'] [u'parent', u'urg', u'form', u'bucket', u'brigad'] [u'parti', u'accus', u'ignor', u'shortag'] [u'parti', u'face', u'medicar'] [u'parti', u'water', u'recycl', u'plan'] [u'place', u'announc', u'nurs', u'cours'] [u'plan', u'moot', u'develop', u'land', u'near', u'jail'] [u'sound', u'warn', u'hang', u'parliament'] [u'polic', u'appeal', u'help', u'offic', u'attack'] [u'polic', u'boost', u'highfield'] [u'polic', u'continu', u'fatal', u'hous', u'blaze', u'probe'] [u'pont', u'hayden', u'run', u'award'] [u'pont', u'quest', u'histor', u'doubl'] [u'port', u'cours', u'crucial', u'final'] [u'presidenti', u'campaign', u'kick', u'afghanistan'] [u'prison', u'camp', u'victim', u'exhum', u'bosnian', u'mass', u'grave'] [u'probe', u'continu', u'fatal'] [u'protea', u'hero', u'say', u'smith'] [u'public', u'speak', u'health', u'servic', u'council'] [u'public', u'support', u'deem', u'vital', u'wind', u'farm'] [u'smoke', u'fire', u'debat'] [u'recycl', u'crush', u'car'] [u'research', u'back', u'need', u'kyoto', u'carr', u'say'] [u'retail', u'win', u'develop', u'hospit', u'site'] [u'ricciuto', u'captain', u'australian', u'team'] [u'riccuito', u'captain', u'australian', u'team'] [u'roadsid', u'bomb', u'target', u'baghdad', u'governor'] [u'meat', u'bound', u'foreign', u'market'] [u'rooster', u'underestim', u'raider'] [u'erupt', u'indigen', u'hous'] [u'russian', u'funer', u'continu', u'pressur', u'mount', u'putin'] [u'doctor', u'unhappi', u'bulk', u'bill', u'focus'] [u'govt', u'oppos', u'giant', u'trawler'] [u'school', u'reject', u'failur', u'claim'] [u'scott', u'singh', u'dethron', u'tiger'] [u'issu', u'warn', u'freak', u'hailstorm'] [u'sheedi', u'say', u'experi', u'essenti', u'final'] [u'shrink', u'wrap', u'skull', u'hit', u'nit'] [u'singh', u'grab', u'tiger', u'spot'] [u'smoke', u'crackdown', u'creat', u'lifesav', u'dilemma'] [u'smoke', u'crackdown', u'overkil', u'mayor'] [u'souness', u'excit', u'newcastl', u'challeng'] [u'south', u'korean', u'russian', u'snap', u'indigen'] [u'spider', u'venom', u'drug', u'claim', u'doubt', u'prison'] [u'student', u'learn', u'eureka', u'rebellion'] [u'talk', u'fail', u'smooth', u'rift', u'vanuatu'] [u'earthquak', u'hit', u'japan'] [u'thousand', u'strand', u'china', u'flood', u'crisi', u'deepen'] [u'thousand', u'ralli', u'moscow', u'nation', u'mourn'] [u'timber', u'industri', u'consid', u'elect', u'candid'] [u'time', u'run', u'plan'] [u'time', u'bat', u'let', u'india', u'say'] [u'time', u'opal', u'star', u'sporn'] [u'train', u'look', u'indigen', u'cancer', u'rat'] [u'trio', u'jail', u'mareeba', u'bash', u'murder'] [u'truss', u'reject', u'meat', u'concern'] [u'ullrich', u'signal', u'retir', u'plan'] [u'unemploy', u'wineri', u'worker', u'train'] [u'union', u'call', u'timber', u'industri', u'train', u'plan'] [u'union', u'accus', u'govt', u'freez', u'tafe', u'fund'] [u'unit', u'gold', u'look', u'list'] [u'soldier', u'kill', u'roadsid', u'bomb', u'attack', u'near'] [u'tank', u'pound', u'fallujah', u'target', u'wit'] [u'venic', u'film', u'festiv', u'organis'] [u'victoria', u'russian', u'communiti', u'mourn', u'beslan', u'victim'] [u'vote', u'enrol', u'deadlin', u'loom'] [u'wastewat', u'propon', u'consid', u'elect', u'lobbi'] [u'whale', u'free', u'shark', u'net'] [u'woman', u'die', u'trailer', u'mishap'] [u'woolford', u'contest', u'high', u'tackl', u'charg'] [u'youth', u'accus', u'rail', u'worker', u'assault'] [u'qanta', u'stake', u'expect', u'spread'] [u'bluescop', u'plant', u'target', u'pollut'] [u'govt', u'slam', u'prevent', u'packag'] [u'swallow', u'brown', u'decis'] [u'ord', u'edg', u'record', u'high', u'close'] [u'candid', u'say', u'iraq', u'wheat', u'debt', u'hurt', u'tuckey'] [u'pledg', u'veteran', u'memori', u'fund'] [u'ambul', u'servic', u'offer', u'respons', u'time', u'assur'] [u'anderson', u'fear', u'soft', u'voter', u'support'] [u'anti', u'hoon', u'law', u'have', u'immedi', u'effect'] [u'anwar', u'lawyer', u'attack', u'clear'] [u'australian', u'polic', u'receiv', u'warm', u'welcom'] [u'australian', u'prison', u'hunger', u'strike', u'thailand'] [u'australian', u'arrest', u'drug', u'investig'] [u'australian', u'arrest', u'global', u'drug', u'syndic', u'bust'] [u'author', u'prepar', u'loom', u'threat'] [u'plan', u'privatis', u'commerci', u'unit', u'report'] [u'beslan', u'video', u'fuel', u'russian', u'grief', u'anger'] [u'bionic', u'innov', u'lead', u'scienc', u'prize'] [u'blair', u'see', u'ireland', u'deal', u'possibl', u'talk'] [u'blaze', u'trap', u'turkish', u'worker', u'tunnel'] [u'british', u'airway', u'sell', u'qanta', u'stake'] [u'bundaberg', u'reef', u'advisori', u'committe'] [u'bushrang', u'kelli', u'gravesit', u'rob'] [u'council', u'delay', u'har', u'race', u'decis'] [u'canberra', u'level', u'begin', u'rise'] [u'capriati', u'dementieva', u'roddick', u'star', u'drama'] [u'capriati', u'edg', u'serena', u'titan', u'quarter', u'final'] [u'carr', u'highlight', u'frighten', u'climat', u'report'] [u'carr', u'question', u'illawarra', u'protest'] [u'castro', u'urg', u'strict', u'father', u'maradona'] [u'china', u'flood', u'death', u'toll', u'rise'] [u'coast', u'host', u'super', u'confer'] [u'communiti', u'push', u'pipelin', u'cost', u'share', u'messag'] [u'communiti', u'support', u'need', u'town', u'centr', u'plan'] [u'confer', u'tell', u'parent', u'innat', u'instinct'] [u'consum', u'confid', u'year', u'high'] [u'convict', u'bali', u'bomber', u'releas', u'autobiographi'] [u'coron', u'call', u'improv', u'train', u'demolit'] [u'councillor', u'meet', u'baxter', u'asylum', u'seeker'] [u'council', u'offer', u'pine', u'vandal', u'reward'] [u'council', u'shop', u'resid'] [u'court', u'hear', u'gold', u'disput'] [u'court', u'rule', u'requir', u'unreason'] [u'custom', u'warn', u'australian', u'oversea', u'medic'] [u'death', u'toll', u'rise', u'china', u'flood', u'worsen'] [u'death', u'toll', u'rise', u'typhoon', u'batter', u'north', u'asia'] [u'dementieva', u'upset', u'second', u'seed', u'mauresmo'] [u'doctor', u'join', u'rfds', u'dubbo', u'base'] [u'document', u'indic', u'govt', u'energi', u'lobbi', u'collus'] [u'dravid', u'name', u'world', u'player', u'year'] [u'edinburgh', u'tattoo', u'play', u'canberra'] [u'energi', u'firm', u'urg', u'reject', u'nirranda', u'wind', u'farm', u'plan'] [u'eriksson', u'confid', u'england', u'perform'] [u'esso', u'shore', u'worker', u'roster', u'fight'] [u'fallujah', u'sadr', u'citi', u'target', u'latest', u'strike'] [u'famili', u'wors', u'labor', u'plan', u'govt'] [u'feder', u'fund', u'heat', u'pool', u'plan'] [u'financi', u'lobbi', u'criticis', u'labor', u'packag'] [u'fishermen', u'plead', u'guilti', u'unlaw', u'hunt'] [u'charg', u'smuggl', u'heroin', u'shoe'] [u'forest', u'mine', u'protest', u'heckl', u'gallop'] [u'forum', u'consid', u'park', u'burn'] [u'forum', u'tell', u'govt', u'fail', u'provid', u'adequ'] [u'arrest', u'britain', u'terror', u'offenc'] [u'franz', u'ferdinand', u'british', u'mercuri', u'award'] [u'flow', u'moranbah', u'project'] [u'govt', u'announc', u'upgrad', u'darwin', u'naval', u'base'] [u'govt', u'ask', u'boost', u'school', u'cross', u'fund'] [u'govt', u'hop', u'japanes', u'invest', u'boost'] [u'govt', u'pledg', u'bush', u'prepar'] [u'clinic', u'expect', u'open', u'month'] [u'green', u'unfaz', u'coalit', u'attack'] [u'group', u'suggest', u'rate', u'debat'] [u'guidelin', u'provid', u'canberra', u'residenti'] [u'gunmen', u'abduct', u'italian', u'iraqi', u'baghdad'] [u'hawk', u'appoint', u'clarkson', u'coach'] [u'hewitt', u'power', u'quarter'] [u'play', u'rate', u'concern'] [u'highway', u'claim', u'life'] [u'hinkler', u'green', u'candid', u'resign'] [u'hockey', u'club', u'manag', u'face', u'shoot', u'trial'] [u'home', u'buyer', u'take', u'advantag', u'condit'] [u'home', u'owner', u'tell', u'worri', u'rate'] [u'hospit', u'chief', u'wont', u'reveal', u'health', u'talk'] [u'hous', u'financ', u'figur', u'rise'] [u'howard', u'attack', u'labor', u'packag'] [u'illawarra', u'take', u'deliveri', u'disast', u'vehicl'] [u'imran', u'khan', u'slam', u'polic', u'offici'] [u'rat', u'hold', u'ahead', u'poll'] [u'investig', u'launch', u'plane', u'lose', u'cabin', u'door'] [u'iraq', u'evid'] [u'irrig', u'want', u'water', u'reform', u'rethink'] [u'israel', u'move', u'troop', u'northern', u'gaza'] [u'labor', u'accus', u'defenc', u'dept', u'election'] [u'latham', u'begin', u'packag', u'pitch'] [u'lawyer', u'condemn', u'polic', u'confess', u'tactic'] [u'lion', u'match', u'confirm'] [u'local', u'builder', u'secur', u'riverway', u'tender'] [u'local', u'support', u'japan', u'beef', u'initi'] [u'log', u'threaten', u'speci', u'extinct'] [u'maintain', u'balanc', u'power', u'essenti', u'bartlett'] [u'accus', u'infect', u'woman'] [u'face', u'court', u'stab', u'charg'] [u'manur', u'mishap', u'provid', u'smell'] [u'walk', u'free', u'caus', u'fatal', u'crash'] [u'medico', u'question', u'need', u'canberra', u'hour'] [u'meet', u'discuss', u'hospit', u'site'] [u'melbourn', u'welcom', u'home', u'olymp', u'athlet'] [u'methan', u'possibl', u'power', u'sourc', u'brisban'] [u'miner', u'sand', u'get', u'green', u'light'] [u'minist', u'support', u'wildlif', u'forestri', u'exist'] [u'minist', u'launch', u'work', u'giant', u'wind', u'farm'] [u'minist', u'unmov', u'health', u'servic'] [u'minist', u'welcom', u'intern', u'demand', u'coal'] [u'moor', u'aim', u'oscar', u'fahrenheit'] [u'fund', u'learn', u'centr'] [u'dig', u'tunnel', u'gold', u'coast'] [u'make', u'rescu', u'chopper', u'pledg'] [u'reject', u'abc', u'energi', u'polici', u'claim'] [u'gambier', u'honour', u'melbourn', u'link'] [u'murder', u'suspect', u'alburi', u'hous'] [u'murray', u'name', u'squad', u'bulldog', u'clash'] [u'nation', u'hospit', u'improv'] [u'nation', u'fear', u'lose', u'margin', u'seat'] [u'nat', u'candid', u'scold', u'comment', u'rival'] [u'sign', u'name', u'right', u'sponsor'] [u'clue', u'help', u'understand', u'breast', u'cancer'] [u'parti', u'candid', u'state'] [u'plan', u'worri', u'green', u'group'] [u'softwar', u'detect', u'illeg', u'arriv', u'monitor'] [u'issu', u'elect', u'wish', u'list'] [u'noffk', u'sign', u'durham'] [u'clean', u'strike', u'continu'] [u'rail', u'whistleblow', u'need', u'greater', u'protect'] [u'govt', u'reject', u'tougher', u'ranger', u'monitor'] [u'opposit', u'seek', u'tougher', u'ranger', u'monitor'] [u'tourism', u'group', u'concern', u'departur'] [u'olympian', u'parad', u'melbourn'] [u'opposit', u'seek', u'jail', u'strike', u'resolut'] [u'palestinian', u'say', u'hama', u'retali', u'justifi'] [u'paramed', u'snub', u'govt', u'offer'] [u'paramed', u'industri', u'woe', u'brack', u'offic'] [u'park', u'candid', u'talk', u'plan'] [u'sydney', u'superdom', u'manag', u'right'] [u'perth', u'unlik', u'face', u'tougher', u'water', u'restrict'] [u'plan', u'focus', u'mental', u'health', u'reform'] [u'plan', u'smoke', u'law', u'cast', u'haze', u'hotel', u'futur'] [u'plaza', u'support', u'rezon', u'plan'] [u'plenti', u'snow', u'predict', u'season'] [u'satisfi', u'earli', u'stag', u'campaign'] [u'urg', u'boost', u'murray', u'flow'] [u'polic', u'probe', u'orchard', u'blaze'] [u'polic', u'releas', u'descript', u'warrnambool', u'murder'] [u'prison', u'escape', u'captur'] [u'produc', u'urg', u'help', u'limit'] [u'provan', u'irvin', u'bath', u'hall', u'famer'] [u'psychologist', u'suspend', u'love', u'letter', u'murder'] [u'psychologist', u'suspend', u'alleg', u'love', u'letter'] [u'public', u'get', u'area', u'health', u'servic'] [u'public', u'urg', u'help', u'fund', u'respit', u'hous'] [u'putin', u'rule', u'public', u'inquiri', u'school', u'sieg'] [u'govt', u'declar', u'zone', u'whale'] [u'rain', u'respit', u'central', u'farmer'] [u'rauhihi', u'win', u'dalli', u'honour'] [u'region', u'govern', u'quit', u'beslan', u'tragedi'] [u'research', u'group', u'offer', u'plan', u'support'] [u'resid', u'urg', u'cross', u'leg', u'power', u'woe'] [u'robinson', u'lay', u'claim', u'england'] [u'roger', u'thaiday', u'suspend'] [u'roger', u'confirm', u'world', u'champion'] [u'russia', u'arrest', u'suspect', u'plane', u'crash'] [u'russia', u'offer', u'bounti', u'chechen', u'rebel', u'leader'] [u'russia', u'warn', u'emptiv', u'strike', u'follow'] [u'govt', u'put', u'public', u'sector', u'execut'] [u'sawmil', u'fear', u'loss', u'support', u'major', u'parti'] [u'school', u'sniff', u'hygien', u'amidst', u'cleaner', u'strike'] [u'scientist', u'make', u'progress', u'anim', u'human'] [u'separatist', u'rebel', u'kill', u'aceh'] [u'sharon', u'deni', u'gaza', u'strike', u'reveng'] [u'south', u'australian', u'shoot', u'high', u'speed', u'chase'] [u'south', u'east', u'consid', u'mobil', u'blood', u'bank'] [u'storm', u'kick', u'dust', u'break', u'hill'] [u'stunt', u'pilot', u'readi', u'deliveri', u'stardust'] [u'sudan', u'reject', u'propos', u'darfur', u'secur'] [u'suspect', u'terrorist', u'captur', u'philippin'] [u'talli', u'downplay', u'final', u'home', u'match'] [u'ten', u'thousand', u'ralli', u'moscow', u'terror'] [u'elect', u'signific', u'hawk'] [u'thousand', u'kosciuszko', u'park', u'plan'] [u'tradespeopl', u'shortag', u'spark', u'home', u'danger', u'fear'] [u'truck', u'driver', u'convoy', u'kill', u'iraq'] [u'tuna', u'associ', u'add', u'trawler', u'fear'] [u'elect', u'campaign', u'region', u'focus'] [u'union', u'feel', u'singl', u'park', u'snub'] [u'union', u'welcom', u'labor', u'import', u'tariff', u'plan'] [u'death', u'iraq', u'reach'] [u'launch', u'strike', u'fallujah'] [u'plan', u'resolut', u'sudan'] [u'share', u'rise', u'german', u'japanes', u'upsw'] [u'vaccin', u'alert', u'contract', u'rare', u'ill'] [u'video', u'port', u'arthur', u'shoot', u'hand', u'polic'] [u'video', u'show', u'hour', u'school', u'sieg'] [u'vietnam', u'shell', u'kill'] [u'vike', u'grave', u'discoveri', u'lifetim'] [u'indigen', u'communiti', u'celebr', u'nativ', u'titl'] [u'weapon', u'drug', u'polic', u'raid'] [u'woman', u'kill', u'vehicl', u'rollov'] [u'woodward', u'lion'] [u'woolford', u'rub', u'match'] [u'youth', u'debt', u'highlight', u'school', u'campaign'] [u'kill', u'embassi', u'attack'] [u'north', u'milk', u'plant'] [u'dead', u'renew', u'attack', u'iraq'] [u'kill', u'turkish', u'tunnel'] [u'report', u'dead', u'blast', u'near', u'australian', u'embassi'] [u'abus', u'report', u'rise', u'prompt', u'disciplin', u'warn'] [u'accus', u'zeta', u'jone', u'stalker', u'trial'] [u'govt', u'begin', u'final', u'offic'] [u'liber', u'pledg', u'cash', u'privat', u'school'] [u'adelaid', u'sieg', u'inquiri', u'begin'] [u'studi', u'judiciari'] [u'play', u'role', u'bomb', u'investig'] [u'anderson', u'call', u'state', u'water', u'share', u'research'] [u'anderson', u'question', u'labor', u'flag', u'chang'] [u'anger', u'deakin', u'highris', u'plan'] [u'conced', u'region', u'bank', u'closur', u'wrong'] [u'aust', u'target', u'limit', u'greenhous', u'emiss'] [u'australian', u'bear', u'child', u'rule', u'citizen'] [u'australian', u'embassi', u'evacu', u'jakarta'] [u'australian', u'high', u'commiss', u'pakistan', u'upgrad'] [u'australian', u'quest', u'breath', u'life', u'champion'] [u'australian', u'school', u'jakarta', u'stay', u'open'] [u'australia', u'post', u'deal', u'agre', u'union', u'reject'] [u'seek', u'unflu', u'heater'] [u'beatti', u'highlight', u'livestock', u'scheme', u'import'] [u'bendigo', u'set', u'locat', u'benefit'] [u'boy', u'bounc', u'world', u'qualifi'] [u'biodiesel', u'plant', u'fund', u'secur'] [u'bird', u'death', u'remain', u'mysteri'] [u'blitz', u'mobil', u'net', u'driver'] [u'board', u'hous', u'benefit', u'incom', u'earner'] [u'brack', u'reject', u'claim', u'wind', u'farm', u'doubl', u'standard'] [u'budget', u'surplus', u'predict', u'spark', u'spend', u'warn'] [u'bush', u'get', u'whip', u'fetish', u'lingeri', u'video'] [u'busi', u'usual', u'mersey', u'hospit'] [u'servic', u'trial', u'offer', u'flexibl'] [u'freeway', u'fund', u'bypass'] [u'campaign', u'hold', u'embassi', u'attack'] [u'carr', u'apologis', u'illawarra', u'comment'] [u'casino', u'assist', u'tobacco', u'chang'] [u'cat', u'sanderson', u'heart', u'scare'] [u'charlevill', u'leap', u'faith', u'meat', u'demand'] [u'chief', u'minist', u'edg', u'elect'] [u'china', u'storm', u'death', u'toll', u'rise', u'thousand', u'injur'] [u'claremont', u'kill', u'raid', u'yield', u'item'] [u'coloni', u'drive', u'mataranka', u'busi', u'batti'] [u'communiti', u'readi', u'footi', u'grand', u'final'] [u'communiti', u'urg', u'tourism', u'plan'] [u'conserv', u'deal', u'forc', u'farmer', u'land'] [u'convoy', u'attack', u'indian', u'kashmir'] [u'coron', u'report', u'influenc', u'secur', u'law'] [u'costa', u'refer', u'rail', u'whistleblow', u'claim', u'polic'] [u'costello', u'foreshadow', u'jobless', u'rate', u'fall'] [u'council', u'consid', u'bigger', u'water', u'alloc'] [u'council', u'push', u'elector', u'boundari', u'chang'] [u'council', u'question', u'elector', u'boundari', u'plan'] [u'council', u'vote', u'eureka', u'holiday'] [u'court', u'refus', u'reduc', u'briberi', u'sentenc'] [u'crow', u'coach', u'cull'] [u'crow', u'rebuild', u'coach', u'cull'] [u'darwin', u'hous', u'sieg', u'leav', u'polic', u'face'] [u'davenport', u'storm', u'rain', u'forc', u'delay'] [u'deal', u'aim', u'cleaner', u'power', u'station'] [u'democrat', u'hold', u'riverland', u'health', u'forum'] [u'desert', u'park', u'put', u'parasit', u'microscop'] [u'dinosaur', u'dot', u'parent'] [u'doctor', u'prepar', u'push', u'rural', u'fund'] [u'door', u'open', u'super', u'submiss'] [u'doubt', u'cast', u'murder', u'evid'] [u'downer', u'blame', u'jakarta', u'bomb'] [u'dynamik', u'face', u'quarter', u'million', u'dollar', u'fine'] [u'econom', u'benefit', u'see', u'road', u'seal'] [u'economist', u'jobless', u'rate', u'drop'] [u'embassi', u'staff', u'account', u'jakarta', u'bomb'] [u'discrimin', u'link', u'econom'] [u'condemn', u'jakarta', u'blast'] [u'exercis', u'test', u'counter', u'terror', u'procedur'] [u'explos', u'hear', u'near', u'australian', u'embassi', u'jakarta'] [u'explos', u'hide', u'close', u'russian', u'cinema'] [u'expo', u'offer', u'youth', u'career', u'guidanc'] [u'extend', u'coal', u'leas', u'boost', u'perman', u'job'] [u'farmer', u'speak', u'wild', u'woe'] [u'fatal', u'crash', u'spark', u'call', u'second', u'rang', u'cross'] [u'kill', u'raid', u'qaeda', u'train', u'camp'] [u'fight', u'break', u'gaza', u'strip'] [u'like', u'sick', u'expect', u'soon'] [u'forens', u'oper', u'begin', u'jakarta', u'bomb', u'site'] [u'governor', u'pass', u'away', u'age'] [u'half', u'year', u'jail', u'sydney', u'stockbrok'] [u'freeway', u'fund', u'pledg', u'stunt', u'latham'] [u'fresh', u'fallujah', u'strike', u'kill'] [u'gallop', u'talk', u'dental', u'wait', u'list', u'plan'] [u'germani', u'kuranyi', u'strike', u'nativ', u'brazil'] [u'giffin', u'lillicrap', u'join', u'wallabi', u'coach', u'staff'] [u'govt', u'consid', u'convent', u'centr', u'fund', u'plea'] [u'govt', u'urg', u'fulli', u'fund', u'medic', u'centr'] [u'green', u'coalit', u'labor', u'democrat'] [u'green', u'reveal', u'woodchip', u'plan'] [u'grower', u'merger', u'plan'] [u'guantanamo', u'prison', u'incorrect', u'detain'] [u'health', u'area', u'plan', u'expect', u'impress', u'minist'] [u'hick', u'habib', u'deni', u'fair', u'amnesti'] [u'hoddl', u'killer', u'vexati', u'litig', u'court', u'hear'] [u'hong', u'kong', u'polit', u'climat', u'toxic'] [u'hous', u'blaze', u'investig', u'murder', u'probe'] [u'howard', u'offset', u'encourag', u'matur', u'worker'] [u'hurrican', u'ivan', u'kill', u'caribbean'] [u'hurrican', u'ivan', u'strengthen', u'maul', u'grenada'] [u'immigr', u'fail', u'tell', u'franc', u'elder'] [u'increas', u'children', u'blood', u'lead', u'level', u'prompt'] [u'indonesian', u'presid', u'cut', u'short', u'trip', u'bomb'] [u'injur', u'panther', u'battl', u'dragon'] [u'intern', u'pressur', u'indigen', u'issu', u'seek'] [u'iran', u'confirm', u'nuclear', u'activ'] [u'enter', u'ambul', u'union', u'meet'] [u'hear', u'public', u'servic', u'wage', u'disput'] [u'jail', u'inmat', u'sleep', u'inflat', u'bed'] [u'jobless', u'rate', u'steadi'] [u'journalist', u'kidnapp', u'deni', u'ransom', u'demand'] [u'kidman', u'birth', u'stir', u'controversi'] [u'labor', u'deni', u'polici', u'ignor', u'sole', u'parent'] [u'labor', u'outlin', u'meat', u'industri', u'plan'] [u'labor', u'textil', u'packag', u'cost', u'lib'] [u'labor', u'maintain', u'foreign', u'ownership', u'rule', u'latham'] [u'latham', u'prepar', u'democraci'] [u'latham', u'receiv', u'warm', u'welcom', u'bundaberg'] [u'lawn', u'bowler', u'court', u'save', u'club'] [u'leader', u'condemn', u'bomb'] [u'lockout', u'continu', u'gladston', u'crane', u'depot'] [u'macgil', u'snub', u'selector', u'hauritz', u'white'] [u'die', u'suspici', u'hous'] [u'face', u'child', u'porn', u'charg'] [u'margin', u'candid', u'declar', u'labor', u'plan', u'winner'] [u'market', u'enjoy', u'record'] [u'market', u'ignor', u'greenspan', u'upbeat', u'testimoni'] [u'mayor', u'welcom', u'econom', u'develop', u'board'] [u'mcgrane', u'cancer', u'oper', u'complet', u'success'] [u'medic', u'journal', u'demand', u'research', u'disclosur'] [u'megawati', u'visit', u'embassi', u'blast', u'scene'] [u'rescu', u'capsiz', u'yacht'] [u'merger', u'announc', u'send', u'childcar', u'stock', u'rise'] [u'merger', u'creat', u'childcar', u'giant'] [u'meet', u'plan', u'approv', u'condit'] [u'minist', u'wind', u'farm', u'honour'] [u'minist', u'shed', u'light', u'heat', u'fund'] [u'bed', u'cut', u'hospit', u'wait', u'list'] [u'voter', u'north', u'coast', u'seat'] [u'movi', u'magician', u'fail', u'catch', u'star', u'dust'] [u'await', u'elector', u'shake', u'detail'] [u'welcom', u'bushfir', u'fund'] [u'mundin', u'stop', u'sullivan', u'track', u'titl', u'bout'] [u'murali', u'furious', u'team', u'year', u'snub'] [u'marin', u'advisori', u'committe', u'fail', u'support'] [u'nightclub', u'pessimist', u'beat', u'lockout'] [u'breakthrough', u'council', u'disput'] [u'final', u'hitch', u'clarkson', u'departur', u'say', u'port'] [u'novemb', u'start', u'like', u'south', u'west', u'polic'] [u'polic', u'heighten', u'secur', u'feder', u'poll'] [u'resort', u'sue', u'ski', u'accid'] [u'administr', u'admit', u'hospit'] [u'lift', u'rat', u'signal', u'rise'] [u'occup', u'rise', u'lift', u'tourism', u'invest'] [u'ocean', u'offic', u'remain', u'tasmania', u'senat'] [u'ombudsman', u'air', u'fund', u'concern'] [u'oversea', u'show', u'boost', u'tweed', u'economi'] [u'ownership', u'rule', u'qanta', u'remain', u'unchang'] [u'palestinian', u'fight', u'camp', u'incurs'] [u'paramed', u'consid', u'strike', u'offer'] [u'perth', u'welcom', u'home', u'olymp', u'hero'] [u'play', u'final', u'begin', u'york'] [u'plea', u'increas', u'jail', u'term', u'terror'] [u'hint', u'relief'] [u'send', u'downer', u'jakarta'] [u'tight', u'lip', u'wimmera', u'malle', u'pipelin'] [u'polic', u'chief', u'deni', u'safeti', u'compromis'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'probe', u'graffiti', u'spree'] [u'polic', u'quiz', u'lewi', u'murder'] [u'pregnanc', u'campaign', u'warn', u'alcohol', u'danger'] [u'probe', u'seek', u'rescu', u'chopper', u'ground'] [u'propos', u'staff', u'cut', u'anger', u'cessnock', u'jail', u'warden'] [u'public', u'urg', u'remain', u'water', u'vigil', u'despit'] [u'qanta', u'return', u'trade', u'sell', u'stakehold'] [u'council', u'alert', u'worker', u'contract'] [u'opposit', u'support', u'year', u'fix', u'term'] [u'unveil', u'blueprint', u'fight', u'lung', u'cancer'] [u'hop', u'second'] [u'rain', u'boost', u'central', u'west', u'dam'] [u'rain', u'bring', u'relief', u'southern'] [u'rain', u'caus', u'open', u'reshuffl'] [u'rain', u'time', u'crop', u'plant'] [u'report', u'highlight', u'fall', u'miner', u'export', u'earn'] [u'reserv', u'bank', u'move', u'regul', u'eftpo'] [u'review', u'consid', u'drink', u'water', u'transport'] [u'rfds', u'boost', u'break', u'hill', u'effort'] [u'rivkin', u'resum', u'detent', u'drug', u'overdos'] [u'russia', u'threaten', u'liquid', u'terrorist', u'base'] [u'saff', u'back', u'land', u'resourc', u'secur', u'focus'] [u'african', u'nuclear', u'smuggl', u'charg', u'drop'] [u'school', u'cleaner', u'strike', u'continu'] [u'search', u'continu', u'aircraft', u'door'] [u'sewag', u'lure', u'meal', u'eat', u'robot'] [u'british', u'soldier', u'kill', u'czech', u'helicopt'] [u'smell', u'decompos', u'corps', u'mistak', u'garbag'] [u'smoke', u'law', u'feder', u'minist'] [u'south', u'korea', u'admit', u'histori', u'nuclear', u'test'] [u'staffer', u'say', u'warn', u'minist', u'orang', u'grove'] [u'steami', u'peacekeep', u'come', u'screen'] [u'strong', u'dollar', u'cut', u'miner', u'export', u'earn'] [u'subsidi', u'rule', u'sweet', u'victori', u'sugar', u'produc'] [u'suicid', u'rat', u'higher', u'homicid'] [u'super', u'trawler', u'ban', u'coast'] [u'suspend', u'sentenc', u'drug', u'traffick'] [u'syria', u'influenc', u'terror', u'israel', u'sharon'] [u'taibu', u'injuri', u'cloud', u'england', u'open'] [u'tasmania', u'fail', u'meet', u'commit', u'govt'] [u'offset', u'matur', u'worker', u'patchwork', u'crean', u'say'] [u'timmin', u'focus', u'penrith', u'showdown'] [u'toll', u'rise', u'bomb', u'blast', u'outsid', u'australian'] [u'traffic', u'jam', u'green', u'light', u'love'] [u'transport', u'cost', u'discourag', u'unemploy', u'renter'] [u'travel', u'warn', u'issu', u'indonesia'] [u'truck', u'close', u'barton', u'highway'] [u'iraqi', u'kill', u'fresh', u'strike'] [u'dead', u'helicopt', u'crash'] [u'year', u'delay', u'eas', u'hunt', u'ban', u'impact'] [u'ugandan', u'forc', u'free', u'hostag'] [u'award', u'recognis', u'newcastl', u'playwright'] [u'offici', u'defend', u'action', u'plagiar'] [u'union', u'back', u'rule'] [u'union', u'call', u'frontlin', u'polic'] [u'general', u'inspect', u'townsvill', u'troop'] [u'open', u'say', u'sorri', u'serena'] [u'urg', u'sanction', u'sudan'] [u'vaughan', u'snub', u'england', u'dream', u'team'] [u'warden', u'threaten', u'forc', u'picket', u'line'] [u'welfar', u'group', u'offer', u'plan', u'support'] [u'wind', u'farm', u'prove', u'energi', u'polici', u'work', u'govt'] [u'launch', u'mexico', u'world'] [u'world', u'want', u'bush', u'poll'] [u'dead', u'fallujah', u'attack', u'continu'] [u'elect', u'campaign', u'hold', u'jakarta'] [u'deni', u'knowledg', u'brown', u'loophol'] [u'aid', u'long', u'term', u'threat', u'secur'] [u'airport', u'secur', u'boost', u'welcom'] [u'alic', u'spring', u'prepar', u'yuendumu', u'influx'] [u'black', u'marshal', u'unhappi', u'expans'] [u'candid', u'deni', u'local', u'faction', u'brawl'] [u'pledg', u'austoft', u'site', u'owner'] [u'anderson', u'flag', u'airport', u'secur', u'increas'] [u'anderson', u'flag', u'eureka', u'debat'] [u'approv', u'give', u'mine', u'expans', u'arnhem', u'land'] [u'auction', u'fund', u'galleri'] [u'burn', u'effort', u'control', u'wetland', u'blaze'] [u'hope', u'retain', u'button'] [u'bathurst', u'heaven', u'monaro', u'buff'] [u'beat', u'agassi', u'vow', u'carri'] [u'beckham', u'sign', u'sponsorship', u'deal'] [u'bendigo', u'bank', u'claim', u'lender', u'face'] [u'bene', u'kick', u'oscar', u'toronto'] [u'bike', u'attack', u'wit', u'urg', u'come', u'forward'] [u'bird', u'buff', u'flock', u'highfield'] [u'blair', u'ahern', u'ditch', u'ireland', u'peac', u'effort'] [u'blood', u'donat', u'reveal', u'court', u'hear'] [u'bomber', u'regain', u'mcphee'] [u'bomber', u'warn', u'polic', u'attack'] [u'bomb', u'elect', u'short', u'liber', u'gather'] [u'bomb', u'link', u'australia', u'indonesia', u'howard'] [u'bowl', u'club', u'wrangl', u'trial'] [u'budget', u'figur', u'help', u'rat', u'say', u'labor'] [u'budget', u'surplus', u'doubl', u'predict'] [u'businesswoman', u'fear', u'jakarta', u'blast', u'econom', u'impact'] [u'stronger', u'tree', u'preserv', u'order'] [u'campaign', u'homophob', u'violenc', u'launch'] [u'carr', u'admit', u'icac', u'act', u'inappropri'] [u'cassini', u'pictur', u'reveal', u'saturn', u'ring'] [u'champion', u'leagu', u'tip', u'provid', u'upset'] [u'chopper', u'crash', u'claim', u'know', u'pastoralist'] [u'cleaner', u'strike', u'tonight'] [u'coffe', u'brew', u'posthum', u'charl'] [u'communiti', u'rat', u'scheme', u'input'] [u'concern', u'air', u'coast', u'accommod', u'shortag'] [u'confer', u'rais', u'alic', u'spring', u'profil'] [u'convict', u'record', u'solar', u'panel'] [u'coron', u'make', u'find', u'toddler', u'death'] [u'council', u'cast', u'wide', u'shark', u'plan'] [u'council', u'crack', u'moranbah', u'water'] [u'council', u'dive', u'pool', u'safeti', u'audit'] [u'council', u'maintain', u'bypass', u'fund', u'plea'] [u'council', u'form', u'plan'] [u'court', u'add', u'contempt', u'penalti', u'stab', u'sentenc'] [u'court', u'jail', u'driver', u'run', u'pair'] [u'court', u'overturn', u'murder', u'convict', u'order', u'trial'] [u'cowper', u'candid', u'look', u'boost', u'green', u'vote'] [u'deputi', u'hint', u'bruce', u'highway', u'flood', u'work'] [u'desper', u'ferguson', u'turn', u'heinz'] [u'dinosaur', u'plant', u'grace', u'japanes', u'garden'] [u'dollar', u'plung', u'terrorist', u'attack'] [u'downpour', u'boost', u'water', u'storag'] [u'dynamik', u'fail', u'stop', u'inquiri'] [u'elbaradei', u'seek', u'iaea', u'term'] [u'elliott', u'appeal', u'bankruptci', u'proceed'] [u'embassi', u'staff', u'surviv', u'miracl', u'downer'] [u'england', u'assess', u'secur', u'zimbabw', u'tour'] [u'expert', u'enter', u'weighti', u'debat'] [u'eyewit', u'report', u'suggest', u'bomb', u'mini'] [u'fake', u'indigen', u'artist', u'million', u'senat'] [u'fatal', u'crash', u'baffl', u'polic'] [u'fear', u'worker', u'compo', u'cost', u'busi', u'migrat'] [u'feedlot', u'owner', u'stand', u'live', u'export', u'standard'] [u'firm', u'guilti', u'workplac', u'death', u'case'] [u'fishermen', u'fin', u'take', u'toothfish'] [u'plan', u'power', u'station', u'woe'] [u'footbal', u'leagu', u'face', u'uncertain', u'futur'] [u'fox', u'threaten', u'tasmanian', u'biodivers'] [u'futur', u'cash', u'surplus', u'help', u'super', u'liabil'] [u'gallop', u'upbeat', u'entertain', u'centr', u'plan'] [u'geal', u'ring'] [u'geal', u'ring', u'olymp', u'disappoint'] [u'send', u'condol', u'indonesian', u'govt'] [u'govt', u'announc', u'billion', u'surplus'] [u'govt', u'consid', u'roundabout', u'option'] [u'govt', u'interst', u'ambul', u'bill'] [u'govt', u'warn', u'possibl', u'follow', u'attack'] [u'ask', u'hour', u'clinic', u'input'] [u'green', u'group', u'seek', u'stop', u'subdivis'] [u'green', u'candid', u'want', u'lower', u'port', u'piri', u'lead', u'level'] [u'green', u'oppos', u'power', u'station', u'plan'] [u'gunmak', u'rifl', u'dealer', u'sniper', u'victim'] [u'hewitt', u'crush', u'haa', u'reach', u'semi'] [u'hewitt', u'face', u'johansson', u'open', u'semi'] [u'hewitt', u'johansson', u'semi', u'final'] [u'high', u'court', u'hear', u'case', u'qanta'] [u'high', u'suicid', u'rate', u'concern', u'lifelin'] [u'hospit', u'strengthen', u'exist', u'servic'] [u'hous', u'shed', u'light', u'solar', u'benefit'] [u'howard', u'govt', u'target', u'deegan'] [u'hurrican', u'ivan', u'leav', u'dead', u'wake'] [u'icac', u'debat', u'carr', u'contempt', u'charg'] [u'icpa', u'gather', u'discuss', u'prep', u'year', u'concern'] [u'independ', u'ranger', u'audit', u'begin', u'monday'] [u'india', u'spin', u'say', u'wright'] [u'indonesian', u'polic', u'warn', u'attack'] [u'injur', u'australian', u'girl', u'move', u'singapor'] [u'injur', u'australian', u'father', u'grate', u'support'] [u'inquest', u'girl', u'death', u'recommend', u'charg'] [u'inquest', u'consid', u'booya', u'wreckag'] [u'institut', u'deliv', u'medic', u'research', u'award'] [u'investig', u'continu', u'zambian', u'plane', u'crash'] [u'iraqi', u'leader', u'condemn', u'worker', u'kidnap'] [u'boast', u'commerci', u'radio', u'station'] [u'israel', u'continu', u'strike', u'gaza'] [u'israel', u'expand', u'gaza', u'strip', u'offens'] [u'italian', u'museum', u'dream', u'realiti'] [u'jamaica', u'brace', u'feroci', u'hurrican', u'ivan'] [u'jam', u'fight', u'england', u'place'] [u'respons', u'jakarta', u'bomb', u'statement'] [u'judg', u'award', u'payout', u'crash', u'injuri'] [u'labor', u'delay', u'indigen', u'polici', u'launch'] [u'landcar', u'repres', u'share', u'idea'] [u'land', u'council', u'coordin', u'stand', u'asid', u'audit'] [u'launceston', u'clear', u'basebal', u'attack'] [u'liber', u'blow', u'budget'] [u'lobbi', u'group', u'anticip', u'budget', u'surplus'] [u'staff', u'number', u'forc', u'ambul', u'station', u'closur'] [u'mall', u'traffic', u'decis', u'pay'] [u'convict', u'know', u'transmit'] [u'stand', u'trial', u'threaten', u'kill'] [u'materi', u'chang', u'town', u'plastic', u'polici'] [u'mirboo', u'north', u'get', u'childhood', u'servic', u'centr'] [u'miss', u'children', u'murder', u'coron'] [u'time', u'rat', u'rebat', u'applic'] [u'time', u'seek', u'bauxit', u'submiss'] [u'urg', u'feder', u'health', u'takeov'] [u'nasa', u'hop', u'salvag', u'star', u'dust'] [u'nation', u'museum', u'unveil', u'flag', u'grind', u'zero'] [u'brussel', u'blow', u'turkey', u'hop'] [u'deal', u'boost', u'region', u'polic', u'presenc'] [u'sight', u'jail', u'strike'] [u'proof', u'bomb', u'claim', u'true'] [u'galah', u'death', u'mysteri'] [u'terrorist', u'target', u'polic'] [u'nuclear', u'talk', u'resum', u'korea'] [u'nurs', u'approv', u'offer'] [u'ohern', u'green', u'start', u'germani'] [u'older', u'men', u'health', u'microscop'] [u'olympian', u'welcom', u'home', u'adelaid'] [u'opposit', u'confid', u'maintain', u'surplus'] [u'pair', u'face', u'court', u'bash'] [u'panther', u'hold', u'dragon'] [u'panther', u'lose', u'galuvao', u'lewi'] [u'paralymp', u'flame', u'foot', u'acropoli'] [u'plan', u'boost', u'region', u'beach', u'safeti'] [u'plea', u'go', u'women', u'refug'] [u'polic', u'happi', u'reduc', u'crime', u'rate'] [u'polic', u'investig', u'melbourn', u'shoot', u'link'] [u'polic', u'lose', u'appeal', u'kitten', u'killer', u'sentenc'] [u'polic', u'probe', u'fatal', u'hinterland', u'crash'] [u'polic', u'seek', u'public', u'help', u'suspici', u'death'] [u'polic', u'warn', u'driver', u'hand', u'hold', u'mobil'] [u'polic', u'warn', u'footi', u'revel', u'behav'] [u'port', u'chief', u'post'] [u'power', u'compani', u'deni', u'bulli', u'claim'] [u'power', u'trio', u'train'] [u'process', u'plant', u'squeez', u'dairyfarm'] [u'bowl', u'club', u'win', u'fight', u'stay', u'open'] [u'radio', u'upgrad', u'improv', u'emerg', u'communic'] [u'rauhihi', u'readi', u'bulldog'] [u'real', u'crocodil', u'hunter', u'deni', u'plot'] [u'recept', u'olymp', u'gold', u'medallist'] [u'resid', u'want', u'rat', u'notic', u'concern', u'resolv'] [u'retract', u'remov', u'contempt', u'carr'] [u'roddick', u'bounc', u'swede', u'johansson'] [u'russian', u'sieg', u'victim', u'remain', u'unidentifi'] [u'govt', u'offer', u'polic', u'medic', u'assist'] [u'saint', u'dump', u'ahead', u'swan', u'clash'] [u'saint', u'march', u'preliminari', u'final'] [u'salmonella', u'restaur', u'reach', u'settlement'] [u'sauber', u'play', u'villeneuv', u'specul'] [u'scheme', u'encourag', u'timber', u'divers'] [u'school', u'cleaner'] [u'schumach', u'sizzl', u'practic'] [u'schu', u'say', u'crash', u'wont', u'chang', u'think'] [u'search', u'chancellor'] [u'senior', u'anticip', u'work', u'incent'] [u'sentenc', u'suspend', u'love', u'father', u'bash'] [u'sentenc', u'policeman', u'killer', u'help', u'famili'] [u'servicemen', u'conscript', u'wake', u'bomb'] [u'seven', u'fear', u'drown', u'rout', u'spain'] [u'share', u'market', u'end', u'week', u'record', u'high'] [u'shellharbour', u'get', u'prais', u'crime', u'fight', u'effort'] [u'sinclair', u'wait', u'brigalow', u'belt', u'decis'] [u'sindelar', u'lead', u'rain', u'canadian', u'open'] [u'pressur', u'jam', u'hardi', u'fund'] [u'warn', u'send', u'indonesian', u'polic', u'prior'] [u'stamp', u'duti', u'rise', u'outstrip', u'hous', u'price'] [u'stroke', u'dream'] [u'strong', u'economi', u'boost', u'territori', u'home', u'ownership'] [u'subdivis', u'creat', u'headach'] [u'sudan', u'genocid', u'claim', u'vote'] [u'sudan', u'sanction', u'divid'] [u'sudan', u'reject', u'genocid', u'declar', u'polit'] [u'sugar', u'grower', u'urg', u'diversifi', u'despit', u'rule'] [u'suicid', u'prevent', u'campaign', u'focus'] [u'survey', u'highlight', u'inner', u'citi', u'concern'] [u'sydney', u'hospit', u'childcar', u'centr'] [u'taiwan', u'polic', u'charg', u'assassin'] [u'tasmanian', u'candid', u'unabl', u'vote'] [u'taxi', u'council', u'put', u'custom', u'servic'] [u'teagu', u'vote', u'carlton', u'best'] [u'sink', u'fang', u'tare', u'green', u'committe'] [u'textil', u'firm', u'pleas', u'plan'] [u'theatr', u'share', u'upgrad', u'fund'] [u'thrill', u'panther', u'hold', u'dragon'] [u'toyota', u'pani', u'retir'] [u'travel', u'agenc', u'panic', u'jakarta', u'bomb'] [u'travel', u'undet', u'jakarta', u'bomb'] [u'tripodi', u'quiet', u'branch', u'stack', u'alleg'] [u'tuart', u'protest', u'violenc', u'alarm', u'polic'] [u'tuckey', u'seek', u'annual', u'farmer'] [u'tupou', u'injur', u'minto'] [u'union', u'welcom', u'meatwork', u'entitl', u'decis'] [u'unit', u'lose', u'fear', u'factor', u'say', u'kean'] [u'vice', u'chancellor', u'evid', u'plagiar'] [u'upgrad', u'showground', u'grandstand'] [u'maker', u'pay', u'sniper', u'victim'] [u'dozen', u'iraqi', u'prison', u'investig'] [u'defeat', u'matter', u'time', u'qaeda'] [u'govt', u'announc', u'south', u'east', u'initi'] [u'famili', u'die', u'zimbabw', u'plane', u'crash'] [u'water', u'shortag', u'possibl', u'problem', u'garden', u'site'] [u'wheelchair', u'taxi', u'target', u'transport', u'plan'] [u'move', u'shorten', u'tour', u'schedul'] [u'predict', u'great', u'white', u'shark', u'extinct'] [u'youth', u'danc', u'storm', u'tennant', u'creek'] [u'zimbabw', u'jail', u'briton', u'year', u'mercenari', u'case'] [u'alcan', u'pipelin', u'survey', u'complet'] [u'alcoa', u'account', u'chemic', u'spill'] [u'reject', u'patholog', u'accredit', u'inquiri'] [u'asian', u'trade', u'deleg', u'tour', u'darwin'] [u'aussi', u'aldous', u'appoint', u'french', u'rugbi', u'leagu', u'coach'] [u'aussi', u'pilkadari', u'lead', u'korea'] [u'aussi', u'pilkadari', u'stay', u'ahead'] [u'aussi', u'face', u'strength', u'morocco', u'fight'] [u'australian', u'lefti', u'menac', u'german', u'lead'] [u'barrichello', u'claim', u'fastest', u'pole'] [u'bauxit', u'agreement', u'extens', u'consider'] [u'escap', u'abductor', u'polic'] [u'boy', u'arrest', u'campbelltown'] [u'bronco', u'ignor', u'gordi', u'factor'] [u'crash', u'northern', u'iran', u'kill'] [u'cabinet', u'consid', u'secur', u'measur'] [u'cab', u'answer', u'disabl', u'servic', u'concern'] [u'campaign', u'halt', u'continu'] [u'canberra', u'firefight', u'consid', u'offer'] [u'candid', u'campbel', u'put', u'privaci', u'concern', u'asid'] [u'cat', u'stay', u'aliv'] [u'cigarett', u'sale', u'restrict', u'implement'] [u'clinton', u'releas', u'hospit'] [u'coalit', u'woo', u'wide', u'road', u'fund'] [u'cold', u'snap', u'surpris', u'driver'] [u'congo', u'launch', u'offens', u'rebel'] [u'cotton', u'plan', u'rekindl', u'water', u'disput'] [u'cowboy', u'produc', u'stun', u'upset'] [u'loom', u'dynamik'] [u'dead', u'hurrican', u'ivan', u'roar', u'ashor', u'jamaica'] [u'deegan', u'urg', u'talk', u'bloodsh'] [u'dementieva', u'set', u'russian', u'open', u'final'] [u'democrat', u'girli', u'doll'] [u'diner', u'escap', u'concret', u'collaps', u'unharm'] [u'discharg', u'patient', u'forc'] [u'disgrac', u'millar', u'drug', u'appeal'] [u'disney', u'thoma', u'die'] [u'doctor', u'push', u'measl', u'shot'] [u'dog', u'snore', u'wors', u'bite'] [u'donat', u'disclos', u'elect', u'lee'] [u'dont', u'write', u'underdog', u'cowboy'] [u'driver', u'fin', u'player'] [u'embassi', u'bomb', u'link', u'foil', u'attack', u'polic'] [u'fall', u'price', u'boost', u'stock'] [u'famer', u'welcom', u'extra', u'trapper'] [u'famili', u'refus', u'maradona', u'leav', u'argentina'] [u'priest', u'face', u'indec', u'assault', u'charg'] [u'test', u'cricket', u'die', u'age'] [u'fund', u'polici', u'privat', u'school', u'advantag', u'parent'] [u'galleri', u'hang', u'upgrad', u'hop', u'sponsorship', u'dollar'] [u'gallop', u'promis', u'sustain', u'budget', u'spend'] [u'gough', u'harmison', u'england', u'rout', u'zimbabw'] [u'govt', u'announc', u'secur', u'review'] [u'greek', u'balco', u'prosecutor', u'kenteri', u'case'] [u'inexperienc', u'medic', u'staff', u'matern', u'ward'] [u'investig', u'probe', u'fatal', u'chopper', u'crash'] [u'isra', u'troop', u'withdraw', u'gaza', u'refuge', u'camp'] [u'italian', u'hold', u'silent', u'vigil', u'captur', u'worker'] [u'ivan', u'strengthen', u'rout', u'jamaica'] [u'jabiru', u'council', u'strip', u'power'] [u'jailer', u'excus', u'suicid', u'rivkin'] [u'kelli', u'secur', u'maiden', u'pole'] [u'kiwi', u'rattl', u'australia', u'fleme'] [u'kiwi', u'eas', u'victori', u'rain', u'halt', u'england'] [u'liber', u'hope', u'good', u'behaviour', u'meet'] [u'locust', u'control', u'centr', u'open'] [u'charg', u'woman', u'murder'] [u'die', u'wall', u'collaps'] [u'kill', u'singl', u'accid'] [u'misinform', u'caus', u'conserv', u'plan', u'fear'] [u'mosqu', u'host', u'multi', u'faith', u'sept', u'servic'] [u'seek', u'heroin', u'cure', u'gambl', u'addict'] [u'nauru', u'opposit', u'seek', u'govt', u'remov'] [u'malaysian', u'bird', u'case', u'offici'] [u'norther', u'fourth', u'track', u'return'] [u'norther', u'comeback', u'perth'] [u'water', u'level', u'rise', u'drought'] [u'nurs', u'home', u'death', u'toll', u'rise'] [u'ogradi', u'fourth', u'petacchi', u'complet', u'spanish'] [u'orford', u'hill', u'lead', u'storm', u'victori'] [u'policeman', u'lose', u'allow', u'case'] [u'polic', u'question', u'bodi'] [u'polic', u'releas', u'video', u'footag', u'jakarta', u'bomb'] [u'polic', u'warn', u'busi', u'theft'] [u'prison', u'trial', u'extend'] [u'elect', u'victori', u'say', u'minchin'] [u'quadripleg', u'win', u'compens', u'payout'] [u'raikkonen', u'take', u'fight', u'schumach'] [u'ranger', u'problem', u'highlight', u'safeti', u'flaw'] [u'religi', u'leader', u'anniversari', u'condemn'] [u'rooney', u'fit', u'battl', u'drag'] [u'rumsfeld', u'doubt', u'south', u'korea', u'maintain', u'nuclear', u'program'] [u'rumsfeld', u'warn', u'escal', u'iraq', u'violenc'] [u'russia', u'blame', u'chechen', u'rebel', u'leader', u'sieg'] [u'sack', u'america', u'skipper', u'break', u'silenc'] [u'sadr', u'citi', u'clash', u'leav', u'dead'] [u'scientist', u'recommend', u'blue', u'tuna'] [u'second', u'terrorist', u'cell', u'pois', u'attack', u'keelti'] [u'secret', u'archbishop', u'short', u'list', u'releas'] [u'septemb', u'victim', u'rememb', u'silenc'] [u'shakespear', u'enter', u'digit'] [u'singh', u'stalk', u'canadian', u'leader', u'weir'] [u'spain', u'finish', u'tanker', u'spill', u'clean'] [u'srebrenica', u'victim', u'bosnia', u'mass', u'grave'] [u'kilda', u'kiosk', u'restor'] [u'atom', u'salvag', u'genesiss', u'ruin'] [u'sydney', u'home', u'lose', u'power'] [u'tasmania', u'congratul', u'olympian'] [u'taxi', u'chase', u'foil', u'west', u'bank', u'bomb', u'plot'] [u'team', u'dynamik', u'fin', u'illeg', u'test'] [u'terror', u'australia', u'greatest', u'challeng', u'latham'] [u'arrest', u'perth', u'sieg', u'end'] [u'lebanes', u'shoot', u'dead', u'baghdad', u'offici'] [u'tiwi', u'timber', u'set', u'sail', u'asian', u'market'] [u'report', u'open', u'discuss'] [u'tourist', u'flock'] [u'train', u'delay', u'earn', u'connex', u'fine'] [u'transport', u'upgrad', u'plan', u'target', u'congest'] [u'bomb', u'explod', u'jeddah'] [u'kill', u'road', u'smash'] [u'umaga', u'defend', u'black', u'backlin', u'tactic'] [u'union', u'appeal', u'allow', u'decis'] [u'desert', u'jenkin', u'surrend', u'japan'] [u'intellig', u'soldier', u'jail', u'ghraib'] [u'secur', u'fear', u'remain', u'anniversari', u'loom'] [u'vet', u'urg', u'check', u'anim', u'tableland'] [u'villa', u'draw', u'end', u'chelsea', u'win'] [u'voter', u'urg', u'indigen', u'repres'] [u'offer', u'indonesia', u'help', u'downer'] [u'william', u'challeng', u'klitschko', u'world', u'titl'] [u'woodbridg', u'molik', u'lose', u'doubl', u'final'] [u'owner', u'saudi', u'arabia', u'attack'] [u'children', u'slash', u'care', u'attack'] [u'target', u'growth', u'log', u'elect', u'issu'] [u'fan', u'flock', u'alic', u'spring'] [u'alleg', u'child', u'abus', u'remand', u'custodi'] [u'ambiti', u'exercis', u'test', u'terror', u'defenc'] [u'ambros', u'lead', u'seri', u'sandown'] [u'anderson', u'deni', u'australia', u'higher', u'terror', u'risk'] [u'anderson', u'urg', u'clarifi', u'terror', u'risk', u'comment'] [u'attack', u'strengthen', u'counter', u'terror', u'resolv'] [u'australian', u'warn', u'bomb', u'risk'] [u'free', u'qanta', u'eye', u'china'] [u'beckham', u'larsson', u'target', u'barca', u'real'] [u'bird', u'area', u'ibi', u'breed', u'undisturb'] [u'blast', u'fight', u'baghdad', u'kill'] [u'bomb', u'fail', u'deter', u'intern', u'travel'] [u'brown', u'warn', u'vote', u'coalit', u'senat'] [u'burnout', u'doctor', u'refus', u'sign', u'hospit', u'contract'] [u'bushfir', u'control'] [u'button', u'contract', u'hear', u'expect', u'week'] [u'cahil', u'card', u'sour', u'everton', u'victori'] [u'communiti', u'snap', u'suburban', u'life'] [u'competit', u'keep', u'attend', u'high'] [u'congo', u'forc', u'clear', u'rwanda', u'flashpoint'] [u'cowboy', u'host', u'histor', u'final'] [u'cuba', u'florida', u'await', u'strengthen', u'hurrican'] [u'custom', u'apprehend', u'bird', u'smuggler'] [u'dawn', u'blast', u'gunfir', u'rock', u'heart', u'baghdad'] [u'decis', u'expect', u'norther', u'carniv', u'plan'] [u'deegan', u'back', u'unseat', u'downer'] [u'democrat', u'green', u'launch', u'victoria', u'campaign'] [u'democrat', u'seek', u'women', u'vote'] [u'derail', u'shut', u'evandal', u'road'] [u'doubl', u'appeal', u'dynamik', u'fine'] [u'draft', u'set', u'deadlin', u'iran', u'nuclear', u'investig'] [u'elector', u'roll', u'open', u'voter'] [u'emerg', u'declar', u'truck'] [u'forestri', u'offic', u'remov', u'illeg', u'bike', u'jump'] [u'kill', u'perth', u'accid'] [u'ganguli', u'toy', u'struggl', u'kenyan'] [u'govt', u'focus', u'water', u'polici'] [u'grove', u'find', u'expans', u'easi'] [u'gunner', u'pull', u'clear', u'chelsea', u'stumbl'] [u'helicopt', u'crash', u'kill', u'alexandria', u'patriarch'] [u'hewitt', u'secur', u'master', u'spot'] [u'hewitt', u'face', u'feder', u'open', u'final'] [u'histori', u'hold', u'solut', u'expert'] [u'hobbi', u'farmer', u'urg', u'check', u'fee', u'level'] [u'howard', u'latham', u'prepar', u'debat'] [u'huge', u'turnout', u'expect', u'hong', u'kong', u'elect'] [u'hurrican', u'lash', u'cayman', u'pound', u'jamaica'] [u'intens', u'fight', u'baghdad', u'leav', u'dead'] [u'iraqi', u'kill', u'british', u'consul', u'bomb'] [u'iraq', u'rais', u'terrorist', u'risk', u'anderson'] [u'itali', u'hope', u'hostag', u'deadlin', u'loom'] [u'kidnapp', u'free', u'turkish', u'journalist'] [u'kuznetsova', u'win', u'open', u'final'] [u'larg', u'explos', u'north', u'korea', u'week', u'report'] [u'latham', u'challeng', u'futur', u'plan'] [u'leader', u'debat', u'restart', u'campaign'] [u'leader', u'squar', u'debat'] [u'lebanes', u'kill', u'fail', u'kidnap', u'attempt', u'polic'] [u'liber', u'urg', u'remain', u'singl', u'mind'] [u'loar', u'claim', u'korean', u'open', u'aussi', u'pilkadari', u'fourth'] [u'charg', u'alleg', u'parramatta', u'kidnap'] [u'charg', u'toddler', u'son', u'murder'] [u'mcdowel', u'retain', u'german', u'master', u'lead'] [u'mental', u'health', u'servic', u'fall', u'apart', u'brown'] [u'neurosurgeon', u'share', u'brain', u'injuri', u'knowledg'] [u'museum', u'pay', u'homag', u'italian', u'influenc'] [u'explan', u'korean', u'blast', u'report', u'offici'] [u'northern', u'suburb', u'power', u'restor'] [u'north', u'korea', u'blast', u'like', u'nuclear'] [u'sign', u'agricultur', u'agreement', u'sabah'] [u'park', u'user', u'concern', u'futur', u'kosciuszko'] [u'perth', u'trial', u'environ', u'friend', u'bus'] [u'photo', u'exhibit', u'kick', u'heritag', u'week'] [u'poll', u'put', u'labor', u'bass', u'braddon'] [u'propos', u'famili', u'violenc', u'law', u'need', u'debat'] [u'region', u'broadcast', u'meet', u'local', u'program', u'quota'] [u'retail', u'fin', u'power', u'cut'] [u'rooster', u'send', u'raider', u'pack'] [u'rspca', u'renew', u'push', u'live', u'export'] [u'runaway', u'tiger', u'elud', u'armi'] [u'santa', u'lose', u'aircraft', u'altitud', u'exempt'] [u'second', u'sydney', u'marathon', u'tanzania', u'revelian'] [u'small', u'team', u'need', u'help', u'hand', u'say', u'ganguli'] [u'sorenstam', u'seiz', u'lpga', u'lead'] [u'sprinkler', u'wash', u'away', u'problem', u'bat'] [u'tale', u'illeg', u'abort', u'win', u'venic', u'honour'] [u'tanzanian', u'take', u'sydney', u'marathon'] [u'critic', u'eat', u'humbl', u'crean'] [u'teenag', u'kill', u'vehicl', u'collis'] [u'kill', u'elect', u'unrest', u'afghanistan'] [u'build', u'attack', u'afghanistan'] [u'union', u'launch', u'anti', u'coalit', u'campaign'] [u'unsuccess', u'bidder', u'challeng', u'stanbrok', u'sale'] [u'tell', u'syria', u'stop', u'interfer', u'lebanon'] [u'end', u'coupl'] [u'viduka', u'keep', u'boro', u'roll', u'go'] [u'violenc', u'grip', u'baghdad'] [u'violenc', u'letter', u'spark'] [u'labor', u'candid', u'die'] [u'continu', u'aerial', u'shark', u'patrol', u'despit'] [u'weir', u'hold', u'canada', u'lead'] [u'weir', u'stretch', u'canadian', u'open', u'lead'] [u'defeat', u'terrorist', u'bush'] [u'wilko', u'impress', u'england', u'boss'] [u'wind', u'grass', u'fire', u'brisban'] [u'woman', u'drown', u'near', u'coff', u'harbour'] [u'young', u'cat', u'readi', u'lion', u'thompson'] [u'kill', u'nepal', u'crash'] [u'accommod', u'pretti', u'bloom', u'short', u'festiv'] [u'agn', u'water', u'parent', u'want', u'high', u'school'] [u'campaign', u'firebomb'] [u'issu', u'murray', u'flow', u'challeng'] [u'seek', u'candid', u'kevin', u'richard', u'die'] [u'choos', u'kalgoorli', u'candid', u'wednesday'] [u'aussi', u'refere', u'hand', u'world', u'qualifi'] [u'aussi', u'whistleblow', u'hand', u'world', u'qualifi'] [u'australia', u'smash'] [u'australia', u'annihil', u'beat', u'rate'] [u'awesom', u'feder', u'demolish', u'hewitt'] [u'banana', u'grower', u'protest', u'philippin'] [u'bank', u'lead', u'stock', u'market', u'climb'] [u'beer', u'flow', u'worker', u'return'] [u'crowd', u'see', u'violent', u'wind'] [u'crowd', u'tip', u'greet', u'gold', u'medal', u'win'] [u'blatter', u'criticis', u'cahil', u'send'] [u'break', u'hill', u'health', u'staff', u'join', u'nation', u'scheme'] [u'break', u'hill', u'share', u'tourism', u'fund'] [u'businessman', u'attack', u'warn'] [u'boost', u'alic', u'spring', u'patient', u'hous'] [u'campaign', u'rais', u'child', u'abus', u'awar'] [u'carr', u'dismiss', u'fear', u'competit'] [u'carr', u'say', u'ninth', u'area', u'health', u'servic'] [u'research', u'help', u'diabet', u'fight'] [u'child', u'care', u'shortag', u'stop', u'riverland', u'move'] [u'china', u'demand', u'boost', u'kimberley'] [u'chines', u'deleg', u'opportun'] [u'death', u'spark', u'hospit', u'alert'] [u'coast', u'patrol', u'asset', u'strip'] [u'woe', u'spark', u'chang'] [u'costello', u'warn', u'labor', u'hike'] [u'council', u'get', u'flight'] [u'council', u'happi', u'road', u'fund'] [u'council', u'seek', u'park', u'fund'] [u'council', u'seek', u'greater', u'plan', u'power'] [u'council', u'seek', u'highway', u'invest'] [u'count', u'continu', u'hong', u'kong', u'poll'] [u'court', u'hear', u'clark', u'challeng', u'rape', u'case'] [u'cowboy', u'await', u'semi', u'final', u'confirm'] [u'cyclist', u'wood', u'clinch', u'world', u'crown'] [u'dairi', u'farmer', u'worri'] [u'darwin', u'nguiu', u'ferri', u'servic', u'benefit', u'children'] [u'democrat', u'attack', u'quarantin', u'polici'] [u'democrat', u'lyne', u'candid', u'unlik'] [u'doctor', u'reassur', u'patient', u'brain', u'diseas'] [u'dragon', u'foursom', u'train'] [u'drought', u'threaten', u'wool', u'industri'] [u'drought', u'tighten', u'grip'] [u'engin', u'seek', u'access', u'embassi', u'ruin'] [u'explos', u'expert', u'check', u'burn', u'truck'] [u'extra', u'resourc', u'aid', u'robberi'] [u'farm', u'confid'] [u'farm', u'benefit', u'recycl', u'effluent', u'water'] [u'father', u'accus', u'son', u'murder', u'face', u'court'] [u'father', u'happi', u'abduct', u'home'] [u'feder', u'demolish', u'hewitt', u'open', u'titl'] [u'feder', u'express', u'roll'] [u'feder', u'fast', u'hewitt', u'grand', u'slam', u'nemesi'] [u'feder', u'steamrol', u'hewitt'] [u'final', u'attack', u'leav', u'umpir', u'stitch'] [u'finch', u'doubt', u'final'] [u'foodland', u'withstand', u'petrol', u'deal', u'pressur'] [u'boss', u'slam', u'unreason'] [u'head', u'jackson', u'slam', u'unreason'] [u'player', u'plead', u'guilti', u'forgeri'] [u'governor', u'farewel', u'public', u'servic'] [u'teen', u'arrest', u'high', u'speed', u'chase'] [u'gallop', u'listen', u'hospit', u'concern'] [u'garrett', u'say', u'environ', u'labor', u'prioriti'] [u'geraldton', u'forum', u'consid', u'mental', u'health'] [u'girl', u'injur', u'embassi', u'bomb', u'part', u'paralys'] [u'govt', u'admit', u'wont', u'impact', u'violent'] [u'govt', u'admit', u'water', u'project', u'skip', u'bid'] [u'govt', u'announc', u'pipelin', u'fund', u'western'] [u'grain', u'grower', u'optimist', u'rain', u'predict'] [u'greec', u'sack', u'forc', u'chief', u'chopper', u'crash'] [u'green', u'leader', u'astound', u'content', u'debat'] [u'green', u'seek', u'uranium', u'review', u'releas'] [u'herat', u'calm', u'weekend', u'violenc'] [u'hewitt', u'fli', u'feder'] [u'voter', u'china', u'politician'] [u'homestead', u'work', u'earn', u'award'] [u'hong', u'kong', u'elect', u'candid', u'question', u'vote'] [u'hospit', u'withdraw', u'instrument', u'death'] [u'hurrican', u'ivan', u'head', u'cuba'] [u'iaea', u'meet', u'iran', u'nuclear', u'plan', u'amid', u'bomb', u'worri'] [u'disciplin', u'liber', u'upset', u'nation'] [u'indigen', u'group', u'say', u'health', u'fund', u'inadequ'] [u'industri', u'council', u'air', u'dental', u'plan', u'concern'] [u'industri', u'land', u'plan'] [u'injuri', u'help', u'mauresmo', u'reach', u'spot'] [u'inquest', u'launch', u'road', u'death'] [u'iraqi', u'elect', u'ahead'] [u'iraqi', u'warn', u'await', u'angel', u'death'] [u'hear', u'health', u'posit', u'disput'] [u'jakarta', u'death', u'toll', u'possibl', u'keelti'] [u'jakarta', u'embassi', u'move'] [u'journalist', u'kill', u'camera', u'iraq'] [u'judiciari', u'worri', u'rooster'] [u'june', u'warden', u'return', u'work'] [u'karzi', u'urg', u'calm', u'governor', u'sack'] [u'kenteri', u'coach', u'hear', u'postpon'] [u'labor', u'plan', u'atsic', u'copi', u'vanston'] [u'labor', u'retreat', u'plan', u'say'] [u'landcar', u'group', u'question', u'lift', u'water', u'ban'] [u'land', u'council', u'look', u'improv', u'island', u'educ'] [u'landslid', u'buri', u'famili', u'ivan', u'wake'] [u'latham', u'buoy', u'debat', u'perform'] [u'latham', u'honour', u'kalgoorli', u'candid'] [u'latham', u'will', u'debat', u'costello'] [u'launceston', u'player', u'win', u'ntfl', u'award'] [u'leav', u'right', u'ear', u'attun', u'differ', u'sound'] [u'liber', u'reiter', u'liquor', u'licens', u'plan'] [u'lobster', u'group', u'reject', u'democrat', u'claim'] [u'lomu', u'run', u'kidney', u'transplant'] [u'luca', u'height', u'reactor', u'licens'] [u'macfarlan', u'dismiss', u'carbon', u'trade', u'call'] [u'accus', u'racist', u'attack', u'seek', u'bail'] [u'admit', u'murder'] [u'face', u'court', u'attempt', u'murder', u'charg'] [u'face', u'court', u'galah', u'death'] [u'marijuana', u'crop', u'steal', u'break'] [u'matthew', u'confid', u'injur', u'lion', u'play'] [u'medic', u'centr', u'cut', u'night', u'oper'] [u'face', u'court', u'anim', u'import'] [u'court', u'attempt', u'murder', u'charg'] [u'merchant', u'remak', u'give', u'fundamentalist', u'warn'] [u'migrat', u'scheme', u'investig'] [u'miner', u'field', u'goal', u'clinch', u'grand', u'final'] [u'minist', u'talk', u'boost', u'coast', u'flight'] [u'say', u'forest', u'fell', u'threaten', u'creatur'] [u'mobil', u'guid', u'lead', u'walk', u'tour'] [u'money', u'need', u'water', u'fund', u'democrat'] [u'motorcyclist', u'die', u'gulnar', u'crash'] [u'air', u'resid', u'heritag', u'plan', u'fear'] [u'murder', u'victim', u'famili', u'back', u'doubl', u'jeopardi', u'review'] [u'murray', u'river', u'polici', u'critic', u'flow'] [u'music', u'student', u'year', u'high', u'note'] [u'netanyahu', u'call', u'referendum', u'gaza', u'pullout', u'plan'] [u'servic', u'expect', u'teeth', u'woe'] [u'highway', u'travel', u'time', u'reduc'] [u'jail', u'vehicl', u'undergo', u'test'] [u'night', u'curfew', u'save', u'driver', u'live', u'expert'] [u'nixon', u'australia', u'power', u'polic', u'chief'] [u'korea', u'say', u'explos', u'control', u'demolit'] [u'norther', u'book', u'spring', u'carniv'] [u'confirm', u'townsvill', u'final'] [u'nurs', u'home', u'death', u'toll', u'increas'] [u'inspir', u'design'] [u'ohern', u'second', u'germani', u'win', u'vijay', u'annika'] [u'olympian', u'enjoy', u'central', u'recept'] [u'opposit', u'tram', u'plan', u'grow'] [u'paramed', u'protest', u'offic'] [u'phone', u'reveal', u'childcar', u'dissatisfact'] [u'plagiar', u'inquiri', u'tell', u'comment', u'inappropri'] [u'announc', u'water', u'fund'] [u'defend', u'releas', u'inform', u'bomb', u'warn'] [u'want', u'cultur', u'shift', u'water'] [u'polic', u'hope', u'display', u'lead', u'killer'] [u'polic', u'investig', u'biki', u'club', u'brawl'] [u'post', u'mortem', u'shed', u'light', u'dolphin', u'death'] [u'post', u'olymp', u'comedown', u'doubl', u'medallist', u'holm'] [u'powel', u'confid', u'iraq', u'elect', u'proceed'] [u'power', u'train', u'privat'] [u'power', u'woe', u'affect', u'tafe', u'class'] [u'primari', u'produc', u'confid', u'increas'] [u'primari', u'produc', u'land', u'clear', u'ballot'] [u'prison', u'manag', u'guarante', u'job'] [u'probe', u'continu', u'sale', u'blackout'] [u'program', u'help', u'school', u'better', u'manag', u'financ'] [u'protea', u'crush', u'bangladesh'] [u'public', u'health', u'servic', u'chang'] [u'public', u'invit', u'candid', u'forum'] [u'putin', u'tighten', u'grip', u'region', u'school', u'sieg'] [u'recov', u'fall', u'rock', u'ledg'] [u'ralf', u'readi', u'work'] [u'ranger', u'audit', u'begin', u'today'] [u'rann', u'want', u'murray', u'flow', u'water', u'plan'] [u'research', u'develop', u'bird', u'vaccin'] [u'reserv', u'bank', u'announc', u'profit'] [u'restor', u'cloncurri', u'hall', u'win', u'award'] [u'rudd', u'address', u'parti', u'faith', u'bathurst'] [u'saint', u'lion', u'battl', u'injuri', u'scar'] [u'school', u'budget', u'help'] [u'school', u'teach', u'wild', u'erad'] [u'secur', u'guard', u'face', u'court', u'murder', u'charg'] [u'urg', u'storm', u'readi'] [u'clive', u'leav', u'england', u'door', u'ajar'] [u'skier', u'hole', u'surviv', u'blizzard'] [u'korea', u'nuke', u'research', u'concern'] [u'snow', u'fall', u'cold', u'septemb', u'weekend'] [u'snow', u'fall', u'victoria', u'high', u'countri'] [u'chief', u'justic', u'charg', u'theft'] [u'son', u'ill', u'forc', u'giffin', u'wallabi', u'tour'] [u'specul', u'govt', u'pipelin', u'fund'] [u'spider', u'charg', u'father', u'right', u'protest'] [u'sport', u'stori'] [u'spur', u'frustrat', u'norwich', u'keeper', u'green'] [u'staff', u'shortag', u'toll', u'paramed'] [u'stanhop', u'conced', u'govt', u'slow', u'age', u'care'] [u'suicid', u'letter', u'reveal', u'deni', u'involv'] [u'surf', u'club', u'say', u'drown', u'highlight', u'beach', u'danger'] [u'sydney', u'prison', u'offic', u'strike'] [u'technolog', u'uncov', u'ibi', u'behaviour'] [u'terror', u'fear', u'increas', u'salvo', u'workload'] [u'terror', u'need', u'balanc', u'respons', u'say', u'keelti'] [u'test', u'identifi', u'river', u'remain'] [u'thatcher', u'lawyer', u'challeng', u'africa', u'coup', u'question'] [u'thiev', u'target', u'hemp', u'plant'] [u'earli', u'excit', u'opinion', u'poll'] [u'tourism', u'oper', u'fear', u'propos', u'increas'] [u'tourism', u'strategi'] [u'tradit', u'owner', u'welcom', u'tourism', u'strategi'] [u'tragic', u'time', u'north', u'east', u'road'] [u'trial', u'start', u'year', u'murder'] [u'troop', u'carrier', u'crash', u'kill', u'cadet'] [u'australian', u'kidnap', u'iraq', u'report'] [u'dead', u'separ', u'north', u'road', u'accid'] [u'confer', u'disabl', u'voic'] [u'offer', u'counsel', u'student', u'drown'] [u'chief', u'defend', u'plagiar', u'inquiri'] [u'ponder', u'civic', u'hall', u'accommod'] [u'airway', u'file', u'bankruptci', u'protect'] [u'call', u'pressur', u'sudan'] [u'launch', u'strike', u'falluja'] [u'vegi', u'truck', u'roll', u'catch'] [u'charg', u'fatal'] [u'violenc', u'escal', u'pound', u'falluja'] [u'visitor', u'cave', u'light'] [u'water', u'fund', u'lack', u'strategi'] [u'water', u'storag', u'rainfal', u'boost'] [u'lure', u'mitsubishi', u'worker', u'west'] [u'week', u'put', u'brain', u'injuri', u'spotlight'] [u'woman', u'face', u'court', u'partner', u'stab'] [u'woodward', u'tip', u'wilko', u'england', u'captainci'] [u'work', u'progress', u'byangum', u'bridg'] [u'youth', u'lack', u'resourc', u'industri', u'knowledg', u'survey'] [u'yuendumu', u'score', u'countri', u'win'] [u'zarqawi', u'milit', u'claim', u'iraq', u'attack'] [u'academ', u'join', u'log', u'protest'] [u'accc', u'urg', u'probe', u'telstra', u'australia', u'post', u'deal'] [u'adelaid', u'seek', u'extend', u'zone'] [u'aid', u'campaign', u'target', u'indigen', u'communiti'] [u'fay', u'lose', u'appeal', u'princess'] [u'australian', u'account', u'downer'] [u'threaten', u'govt', u'legal', u'action'] [u'anderson', u'order', u'realiti', u'check', u'water', u'fund'] [u'anglican', u'converg', u'wagga', u'synod'] [u'anti', u'log', u'group', u'reloc', u'plan'] [u'apologis', u'concert', u'outburst'] [u'anwar', u'say', u'govern', u'corrupt', u'widespread'] [u'argument', u'end', u'shoot', u'stab'] [u'audit', u'highlight', u'highway', u'woe'] [u'australia', u'investig', u'iraq', u'kidnap', u'claim'] [u'australia', u'spi', u'keelti', u'say'] [u'australia', u'negoti', u'terrorist'] [u'oper', u'head', u'southern', u'highland'] [u'batman', u'end', u'buckingham', u'palac', u'ledg', u'protest'] [u'crowd', u'tip', u'farewel', u'hero'] [u'biki', u'court', u'explos', u'charg'] [u'blaze', u'take', u'hold', u'scout', u'hall'] [u'boral', u'expand', u'colorado'] [u'brain', u'surgeri', u'cancel', u'scare'] [u'brazilian', u'thiev', u'bar'] [u'british', u'ambassador', u'visit', u'korean', u'blast', u'site'] [u'brown', u'want', u'forestri', u'packag', u'major', u'parti'] [u'brumbi', u'claim', u'water', u'plan', u'raid', u'state', u'coffer'] [u'bundaberg', u'sugar', u'move', u'home'] [u'busi', u'protest', u'supermarket', u'domin'] [u'enterpris', u'talk'] [u'campaign', u'build', u'reopen', u'theatr'] [u'candid', u'continu', u'campaign', u'despit', u'blast'] [u'bomb', u'explod', u'outsid', u'baghdad', u'polic', u'centr'] [u'bomb', u'kill', u'dozen', u'baghdad'] [u'carpent', u'head', u'teacher', u'industri', u'action'] [u'carr', u'reappoint', u'outstand', u'governor'] [u'car', u'crash', u'home', u'fenc'] [u'chamber', u'back', u'push', u'skill', u'worker'] [u'cheap', u'flight', u'boost', u'border', u'tourism'] [u'children', u'hospit', u'clear', u'scare'] [u'child', u'abus', u'case', u'rise'] [u'chines', u'accid', u'kill'] [u'cinema', u'reopen', u'plus', u'youth'] [u'coastal', u'patrol', u'asset', u'strip'] [u'compani', u'knock', u'wind', u'contract', u'claim'] [u'compens', u'packag', u'approv', u'gaza', u'settler'] [u'coron', u'reject', u'delay', u'bushfir', u'inquest'] [u'council', u'hear', u'plan', u'playground', u'smoke'] [u'council', u'wind', u'farm', u'submiss'] [u'court', u'hear', u'cri', u'help', u'attack'] [u'crowd', u'fear', u'spur', u'townsvill'] [u'cuba', u'brace', u'hurrican', u'ivan'] [u'cycl', u'aust', u'lament', u'modra', u'dump'] [u'daintre', u'hous', u'scrap'] [u'darfur', u'death', u'rat', u'time', u'higher', u'normal'] [u'injur', u'hamil'] [u'debat', u'erupt', u'rail', u'line', u'cost'] [u'deep', u'outfal', u'get', u'fine', u'tune'] [u'detect', u'ask', u'feder', u'polic', u'investig'] [u'develop', u'race', u'beat', u'plan', u'control'] [u'drink', u'spike', u'rise', u'goondiwindi'] [u'drought', u'bring', u'counsel', u'cash'] [u'economi', u'continu', u'acceler'] [u'elect', u'offer', u'wastewat', u'pipelin', u'hope'] [u'emerg', u'specialist', u'patient', u'risk'] [u'employ', u'survey', u'signal', u'job', u'growth'] [u'back', u'west', u'seismic', u'survey'] [u'fisher', u'seek', u'super', u'trawler', u'impact', u'studi'] [u'fit', u'doubt', u'haunt', u'reynoldson', u'anasta'] [u'footi', u'umpir', u'return', u'assault'] [u'forestri', u'industri', u'say', u'feder', u'compens'] [u'fund', u'offer', u'communiti', u'crime', u'fight'] [u'gassi', u'trial', u'reach', u'conclus'] [u'gold', u'coast', u'look', u'boost', u'indigen', u'health', u'worker'] [u'govt', u'commit', u'dragway', u'despit', u'hurdl'] [u'govt', u'deni', u'leav', u'famili', u'limbo'] [u'govt', u'urg', u'drop', u'riverland', u'health', u'plan'] [u'grazier', u'drought', u'concern'] [u'greec', u'mourn', u'patriarch', u'alexandria'] [u'green', u'field', u'hinkler', u'candid'] [u'green', u'want', u'super', u'trawler'] [u'grower', u'urg', u'grain', u'merger'] [u'gympi', u'busi', u'highlight', u'water', u'shortag'] [u'hospit', u'cop', u'despit', u'overcrowd'] [u'hostag', u'claim', u'remain', u'unconfirm'] [u'hotlin', u'allow', u'report', u'alcohol', u'breach'] [u'howard', u'water', u'plan', u'cost', u'state'] [u'hundr', u'seek', u'advic', u'scare'] [u'hurrican', u'hold', u'citrus', u'payment'] [u'hurrican', u'ivan', u'lash', u'cuba'] [u'hydro', u'tasmania', u'talk', u'research', u'partnership'] [u'indigen', u'contractor', u'enter', u'mine', u'industri'] [u'investig', u'launch', u'carpark', u'birth'] [u'investig', u'continu', u'home', u'invas'] [u'delay', u'mitsubishi', u'redund', u'packag'] [u'hear', u'long', u'strike', u'disput'] [u'irrig', u'spray', u'prais', u'water', u'announc'] [u'isra', u'arab', u'leav', u'england'] [u'isra', u'strike', u'kill', u'aqsa', u'leader'] [u'jackman', u'get', u'littl', u'help', u'final'] [u'japan', u'confirm', u'latest', u'case'] [u'jimenez', u'hold', u'ogradi', u'spain'] [u'keegan', u'face', u'citi'] [u'keelti', u'support', u'intellig', u'releas'] [u'kieli', u'save', u'leav', u'saint', u'curs'] [u'king', u'headmast', u'criticis', u'labor', u'school', u'polici'] [u'labor', u'school', u'polici', u'confus', u'lib'] [u'labor', u'arrest', u'declin', u'film', u'industri'] [u'latham', u'admit', u'famili', u'wors', u'labor'] [u'latham', u'redirect', u'privat', u'school', u'fund'] [u'lee', u'welcom', u'water', u'polici'] [u'liber', u'pledg', u'rebuild', u'school'] [u'lobbi', u'group', u'push', u'rural', u'health', u'focus'] [u'lobster', u'industri', u'undergo', u'train'] [u'long', u'wait', u'school', u'review'] [u'look', u'india', u'warn', u'inzamam'] [u'maleni', u'develop', u'clear', u'water', u'breach'] [u'escap', u'injuri', u'lion', u'enclosur'] [u'execut', u'japan', u'school', u'massacr'] [u'court', u'polic', u'slash'] [u'marlin', u'join', u'gun', u'season', u'blitz'] [u'marlin', u'challeng', u'pirat', u'season', u'clash'] [u'maverick', u'focus', u'domest', u'player'] [u'mayor', u'highlight', u'high', u'camel', u'demand'] [u'maywald', u'deni', u'split', u'claim'] [u'media', u'bodi', u'decri', u'ukrain', u'murder', u'inquiri'] [u'melbourn', u'land', u'film', u'deal'] [u'merger', u'spark', u'subdivis', u'headach'] [u'mickelson', u'rat', u'europ', u'ryder', u'favourit'] [u'miner', u'move', u'closer', u'zircon', u'plan'] [u'life', u'leav', u'landfil'] [u'rain', u'need', u'break', u'drought', u'impact'] [u'murder', u'suspect', u'claim', u'self', u'defenc'] [u'netanyahu', u'call', u'gaza', u'pullout', u'vote'] [u'bird', u'case', u'malaysia'] [u'newcastl', u'jockey', u'suspend', u'ban', u'substanc'] [u'look', u'tourism', u'bureau'] [u'newman', u'drive', u'charg', u'lose'] [u'technolog', u'aid', u'polic', u'work'] [u'telescop', u'bring', u'southern', u'closer'] [u'zealand', u'defend', u'player', u'cash'] [u'nolan', u'paint', u'stay', u'lanyon'] [u'milk', u'factori', u'closur', u'plan'] [u'norther', u'win', u'grind'] [u'govt', u'urg', u'rethink', u'cut'] [u'assault', u'rise'] [u'nuclear', u'program', u'suspens', u'temporari', u'say', u'iran'] [u'nurs', u'home', u'toll', u'reach'] [u'paedophilia', u'task', u'forc', u'receiv', u'fund', u'boost'] [u'paramed', u'plan', u'phase', u'campaign'] [u'patient', u'access', u'video', u'conferenc'] [u'perilya', u'search', u'miner', u'near', u'border'] [u'pilot', u'stabl', u'crash'] [u'plan', u'afoot', u'shop', u'centr', u'upgrad'] [u'polic', u'command', u'receiv', u'budget'] [u'polic', u'review', u'alcohol', u'breach'] [u'pont', u'back', u'quick', u'blast', u'australia'] [u'pont', u'fire', u'doubl', u'jibe', u'debacl'] [u'port', u'wari', u'saint', u'forward'] [u'premier', u'announc', u'wynyard', u'tourism', u'boost'] [u'pressur', u'self', u'impos', u'say', u'thoma'] [u'pressur', u'match', u'pipelin', u'fund'] [u'princ', u'highway', u'speed'] [u'public', u'comment', u'seek', u'alcohol', u'rule'] [u'public', u'input', u'hospit', u'site', u'plan'] [u'public', u'servant', u'super', u'protest', u'target', u'margin'] [u'public', u'urg', u'avoid', u'bite'] [u'public', u'urg', u'crim'] [u'public', u'warn', u'chain', u'letter', u'scheme'] [u'push', u'oberon', u'fluorid'] [u'qanta', u'pilot', u'plead', u'guilti', u'airport'] [u'reid', u'injur', u'philippoussi'] [u'renov', u'builder', u'busi'] [u'research', u'claim', u'alcohol', u'increas', u'risk', u'breast'] [u'resid', u'mental', u'health', u'concern'] [u'resourc', u'ord', u'high'] [u'reward', u'offer', u'captur', u'embassi', u'bomber'] [u'road', u'reopen', u'chemic', u'tanker', u'blaze'] [u'rooster', u'dog', u'judiciari', u'damag', u'control'] [u'saddam', u'weapon', u'unlik', u'powel'] [u'safeti', u'devic', u'trial', u'extend'] [u'scientist', u'glimps', u'exoplanet'] [u'search', u'continu', u'miss', u'kempsey', u'teen'] [u'second', u'melbourn', u'case', u'confirm'] [u'shire', u'wont', u'boost', u'absente', u'landown', u'rat'] [u'soccer', u'academi', u'head', u'sunraysia'] [u'solomon', u'feel', u'socceroo'] [u'souness', u'offer', u'guidanc', u'newcastl', u'brat'] [u'state', u'question', u'water', u'plan'] [u'strategi', u'address', u'youth', u'disabl', u'need'] [u'studi', u'back', u'fluorid', u'academ'] [u'suicid', u'bomber', u'wound', u'soldier', u'west', u'bank'] [u'survey', u'show', u'farmer', u'upbeat', u'futur'] [u'talkback', u'critic', u'connect', u'liber'] [u'talk', u'break', u'disput'] [u'famili', u'polici', u'fail', u'boost', u'labor'] [u'teacher', u'parent', u'fail', u'liber', u'school', u'polici'] [u'teenag', u'jail', u'death'] [u'telstra', u'move', u'healthcar'] [u'terrorist', u'victim', u'rememb'] [u'wound', u'west', u'bank', u'suicid', u'bomb'] [u'earli', u'licenc', u'nuclear', u'reactor', u'opposit'] [u'truck', u'crash', u'close', u'king', u'highway'] [u'turkey', u'threaten', u'withdraw', u'iraq'] [u'unit', u'rock', u'nevill', u'injuri'] [u'assault', u'weapon', u'expir'] [u'monitor', u'north', u'korea', u'powel'] [u'current', u'account', u'deficit', u'hit', u'record', u'billion'] [u'fighter', u'crash'] [u'investor', u'focus', u'tech', u'stock'] [u'vail', u'take', u'campaign', u'richmond'] [u'volunt', u'queensland', u'storm', u'readi'] [u'word', u'break', u'telstra', u'sale'] [u'water', u'ban', u'remain', u'despit', u'rain'] [u'water', u'plan', u'govt'] [u'winemak', u'produc', u'million', u'face', u'evict'] [u'work', u'begin', u'soon', u'rural', u'exhibit', u'centr'] [u'yowi', u'chocol', u'maker', u'head', u'head'] [u'yowi', u'say', u'name', u'disput', u'ridicul'] [u'zarqawi', u'group', u'claim', u'attack', u'iraqi', u'polic'] [u'fear', u'dead', u'vietnam', u'landslid'] [u'switch', u'channel', u'region'] [u'aeropelican', u'restart', u'weekend', u'sydney', u'flight'] [u'fault', u'domest', u'violenc', u'rise'] [u'exercis', u'continu', u'crash'] [u'alic', u'council', u'offer', u'reward', u'vandal', u'fight'] [u'alleg', u'parti', u'gunman', u'refus', u'bail'] [u'know', u'australian', u'account', u'iraq'] [u'promis', u'youth', u'centr', u'fund'] [u'senat', u'accus', u'desper', u'polit'] [u'top', u'govt', u'pledg', u'indigen', u'art', u'centr'] [u'amnesti', u'campaign', u'juvenil', u'execut'] [u'anderson', u'announc', u'aviat', u'shake'] [u'anderson', u'unveil', u'govt', u'transport', u'plan'] [u'anwar', u'appeal', u'fail'] [u'apolog', u'fail', u'satisfi', u'anus', u'critic'] [u'arab', u'leagu', u'urg', u'member', u'restor', u'iraq', u'tie'] [u'arazi', u'spearhead', u'morocco', u'australia'] [u'ausbulk', u'merger', u'retain', u'bordertown', u'offic'] [u'australia', u'magnet', u'foreign', u'student', u'oecd'] [u'australia', u'share', u'market', u'continu', u'record'] [u'bangladesh', u'recov', u'record', u'break', u'rain'] [u'bartlett', u'take', u'elect', u'leap', u'faith'] [u'bendigo', u'soccer', u'school', u'kid'] [u'blair', u'make', u'urgent', u'appeal', u'tackl', u'global', u'warm'] [u'bomb', u'drive', u'brit', u'distract'] [u'brigg', u'hand', u'shoot', u'titl', u'belt'] [u'break', u'hill', u'protest', u'health', u'merger'] [u'budget', u'cut', u'threaten', u'adult', u'educ', u'colleg'] [u'bunburi', u'high', u'school', u'adopt', u'memori'] [u'busi', u'fear', u'rule'] [u'cahil', u'serv', u'match'] [u'canada', u'cool', u'world'] [u'chanc', u'upbeat', u'wheatbelt', u'drought'] [u'chemic', u'factori', u'blaze', u'leav'] [u'china', u'deal', u'earn', u'hamersley', u'award', u'nomin'] [u'civic', u'park', u'fountain', u'facelift'] [u'coalit', u'pledg', u'coolac', u'bypass', u'fund'] [u'confus', u'surround', u'polic', u'offic', u'retreat'] [u'constitut', u'chang', u'plan', u'patronis', u'aborigin'] [u'contract', u'tie', u'imparja', u'despit', u'clash'] [u'coron', u'hand', u'death', u'find'] [u'coron', u'withhold', u'drown', u'find'] [u'council', u'hate', u'mail', u'worri', u'chief'] [u'council', u'consid', u'smaller', u'moone', u'develop', u'plan'] [u'counsel', u'need', u'tortur', u'rspca'] [u'court', u'reserv', u'decis', u'landmark', u'peopl'] [u'crash', u'destroy', u'pork', u'lade', u'semi'] [u'cubbi', u'purchas', u'boost', u'river', u'flow', u'green'] [u'cultur', u'centr', u'rais', u'indigen', u'communiti'] [u'decapit', u'bodi', u'north', u'baghdad'] [u'democrat', u'want', u'radio', u'licens', u'fund', u'communiti'] [u'dhaka', u'unpreced', u'flood'] [u'reject', u'cooloola', u'water', u'claim'] [u'doctor', u'fear', u'hospit', u'chang', u'number'] [u'doctor', u'assist', u'take', u'citizenship'] [u'drought', u'draw', u'rural', u'communiti'] [u'drought', u'spell', u'hard', u'time', u'hunter'] [u'east', u'timor', u'popul', u'rise'] [u'eccentr', u'argentina', u'coach', u'bielsa', u'resign'] [u'educ', u'dept', u'commit', u'account', u'chang'] [u'emerg', u'fund', u'seek', u'head', u'water', u'crisi'] [u'deputi', u'urg', u'australia', u'respect', u'timor'] [u'famili', u'candid', u'claim', u'underdog', u'status'] [u'farmer', u'market', u'pocket', u'social', u'live'] [u'fear', u'water', u'fund', u'plan', u'upset', u'council', u'budget'] [u'final', u'secur', u'step', u'jakarta', u'blast'] [u'finch', u'price', u'clear', u'play'] [u'finch', u'price', u'free', u'play'] [u'olympian', u'face', u'jail', u'share', u'fraud'] [u'foster', u'care', u'display', u'spark', u'communiti'] [u'geelong', u'grammar', u'lose', u'fund', u'plan'] [u'gippsland', u'lobbi', u'join', u'jam', u'hardi', u'protest'] [u'govt', u'attack', u'detent', u'centr', u'secur', u'breach'] [u'govt', u'clear', u'suprem', u'court', u'secur', u'upgrad'] [u'govt', u'reject', u'hick', u'trial', u'critic'] [u'govt', u'seek', u'certainti', u'commit', u'oakaje'] [u'govt', u'shrug', u'citylink', u'job', u'boy', u'claim'] [u'govt', u'spend', u'storm', u'water', u'conserv'] [u'great', u'entertain', u'follow', u'botham', u'footstep'] [u'green', u'announc', u'forestri', u'polici'] [u'griffith', u'council', u'oppos', u'health', u'merger', u'push'] [u'grosjean', u'miss', u'davi', u'semi', u'final'] [u'guantanamo', u'process', u'good', u'labor', u'say'] [u'gunn', u'issu', u'pulp', u'threat'] [u'hanson', u'senat', u'seat'] [u'hart', u'back', u'lynch', u'torment', u'cat'] [u'hick', u'unlik', u'fair', u'trial'] [u'high', u'tech', u'chicken', u'manur', u'hold', u'water', u'save', u'hop'] [u'hoon', u'law', u'endang', u'countri', u'resid'] [u'hospit', u'park', u'birth', u'investig'] [u'howard', u'accus', u'labor', u'petti', u'politick', u'iraq'] [u'improv', u'surplus', u'spend', u'treasuri'] [u'indigen', u'group', u'applaud', u'labor', u'polici'] [u'industri', u'predict', u'worst', u'year', u'dairi', u'product'] [u'inquest', u'examin', u'respons', u'firefight'] [u'insur', u'woe', u'toll', u'race', u'club'] [u'investig', u'underway', u'crash'] [u'investor', u'boost', u'bundaberg', u'hous', u'price'] [u'isra', u'troop', u'kill', u'milit', u'west', u'bank'] [u'jam', u'hardi', u'boss', u'report', u'sharehold'] [u'jam', u'hardi', u'commit', u'cover', u'asbesto', u'fund'] [u'japan', u'asama', u'erupt'] [u'kangaroo', u'face', u'fit', u'test'] [u'king', u'highway', u'reopen', u'tanker', u'crash'] [u'knife', u'attack', u'rise', u'melbourn'] [u'kojonup', u'rate', u'rise', u'like', u'upset', u'resid'] [u'kookaburra', u'world', u'rank'] [u'labor', u'announc', u'polici'] [u'labor', u'preselect', u'stephen', u'kalgoorli'] [u'labor', u'promis', u'extra', u'bed', u'public', u'hospit'] [u'labor', u'senat', u'accus', u'mislead', u'voter'] [u'labor', u'announc', u'kalgoorli', u'candid'] [u'land', u'offic', u'ask', u'farmer', u'ignor', u'rent', u'notic'] [u'larsson', u'score', u'celtic', u'homecom'] [u'latham', u'defend', u'labor', u'school', u'polici'] [u'latham', u'fume', u'iraq', u'hostag', u'team', u'snub'] [u'latham', u'reject', u'learner'] [u'lend', u'leas', u'confid', u'grind', u'zero', u'class', u'action'] [u'lennon', u'attack', u'howard', u'growth', u'forest', u'plan'] [u'liber', u'pursu', u'practic', u'reconcili'] [u'lion', u'nathan', u'sell', u'chines', u'oper'] [u'local', u'govt', u'award', u'recognis', u'uralla', u'project'] [u'local', u'welcom', u'footi', u'influx'] [u'locust', u'task', u'forc', u'focus', u'nation', u'park'] [u'locust', u'threat', u'enter', u'critic', u'phase'] [u'temperatur', u'normal', u'spring', u'weather'] [u'luca', u'launch', u'wheelchair', u'taxi', u'servic'] [u'fin', u'name', u'breach'] [u'maleni', u'water', u'rule', u'scrutini'] [u'arrest', u'alterc', u'qanta', u'flight'] [u'marcher', u'demand', u'jam', u'hardi', u'fund'] [u'mcgrane', u'die', u'cancer'] [u'microchip', u'lead', u'illeg', u'fish', u'fine'] [u'minist', u'criticis', u'workcov', u'contract'] [u'minist', u'support', u'daintre', u'hous'] [u'mini', u'tornado', u'caus', u'hobart', u'evacu'] [u'miss', u'soldier', u'return', u'duti'] [u'mourinho', u'ranieri', u'win', u'start', u'club'] [u'back', u'small', u'scale', u'develop', u'near', u'daintre'] [u'seek', u'daylight', u'save', u'referendum'] [u'push', u'noosa', u'plan', u'consult'] [u'mundin', u'say', u'better', u'titl', u'bout', u'loss'] [u'nation', u'seek', u'rainwat', u'tank', u'rebat', u'extens'] [u'nato', u'urg', u'iraq'] [u'nat', u'blast', u'green', u'propos', u'cubbi', u'station'] [u'orlean', u'sight', u'hurrican', u'ivan'] [u'news', u'corp', u'confirm', u'plan'] [u'nickel', u'consider'] [u'sight', u'industri', u'disput'] [u'link', u'nurs', u'home', u'death'] [u'inform', u'gertsch', u'murder'] [u'olymp', u'appeal', u'german', u'equestrian'] [u'govt', u'creat', u'northern', u'council'] [u'coma'] [u'odd', u'shorten', u'robinson', u'england'] [u'ogradi', u'hold', u'point', u'lead', u'spain'] [u'olympian', u'welcom', u'home', u'sydney'] [u'olympian', u'special', u'mullumbimbi', u'welcom'] [u'kill', u'bali', u'earthquak'] [u'nation', u'prefer', u'nation', u'riverina'] [u'seven', u'million', u'tune', u'communiti', u'radio'] [u'permit', u'halt', u'giant', u'trawler'] [u'plane', u'door', u'mishap'] [u'plant', u'emerg', u'burk', u'prefer', u'power', u'solut'] [u'polic', u'hope', u'crime', u'wont', u'mean', u'resourc'] [u'polic', u'interview', u'fatal', u'crash', u'wit'] [u'polic', u'investig', u'offic', u'work', u'iraq'] [u'poll', u'predict', u'landslid', u'defeat', u'megawati'] [u'receiv', u'rat', u'moodi'] [u'reinstat', u'daintre', u'develop'] [u'radcliff', u'vow', u'learn', u'athen', u'heartbreak'] [u'rain', u'boost', u'coliban', u'water', u'alloc'] [u'ralph', u'develop', u'survey', u'releas'] [u'ravensworth', u'shiraz', u'bag', u'wine', u'award'] [u'record', u'trade', u'continu', u'news', u'corp'] [u'renault', u'releas', u'trulli'] [u'rice', u'grower', u'group', u'back', u'coalit', u'water', u'plan'] [u'roger', u'herft', u'elect', u'archbishop', u'perth'] [u'limit', u'anzac', u'servic', u'crowd'] [u'rumsfeld', u'claim', u'media', u'receiv', u'terror', u'off'] [u'run', u'enlighten'] [u'ryder', u'offici', u'warn', u'rowdi', u'fan'] [u'school', u'teacher', u'charg', u'child', u'pornographi'] [u'search', u'continu', u'miss', u'kempsey', u'woman'] [u'search', u'miss', u'woman', u'suspend'] [u'search', u'continu', u'miss', u'teenag'] [u'spong', u'base', u'drug', u'fight', u'cancer'] [u'second', u'tier', u'sydney'] [u'sewag', u'spill', u'pose', u'health', u'risk', u'council'] [u'shepparton', u'ambul', u'concern', u'rais', u'parliament'] [u'shire', u'back', u'victoria', u'hotel', u'reopen'] [u'showground', u'committe', u'canva', u'revamp', u'option'] [u'societi', u'anticip', u'exhibit', u'centr'] [u'singapor', u'extend', u'detent', u'terror', u'suspect'] [u'sinn', u'fein', u'find', u'second', u'belfast'] [u'skill', u'shortag', u'hurt', u'half', u'australia'] [u'smart', u'win', u'year', u'licenc'] [u'smelter', u'blame', u'children', u'blood', u'lead', u'level'] [u'star', u'war', u'flight', u'test', u'delay'] [u'spanish', u'polic', u'arrest', u'terror', u'oper'] [u'spanish', u'polic', u'cannonbal', u'clampdown'] [u'stab', u'attack', u'overnight', u'melbourn'] [u'stanhop', u'unveil', u'justic', u'reform', u'plan'] [u'status', u'unknown', u'australian', u'hostag', u'deadlin'] [u'steadi', u'growth', u'predict', u'australian', u'economi'] [u'stone', u'say', u'coalit', u'dairi'] [u'storm', u'pois', u'doubl', u'dog', u'miseri'] [u'student', u'return', u'school', u'beslan'] [u'sugar', u'project', u'boost', u'lucern', u'industri'] [u'task', u'forc', u'tackl', u'leagu', u'woe'] [u'team', u'unchang', u'townsvill', u'blockbust'] [u'teenag', u'charg', u'highway', u'robberi'] [u'teenag', u'drown', u'adelaid'] [u'telstra', u'sale', u'fund', u'govt', u'forest', u'plan', u'latham'] [u'tendulkar', u'cours', u'face', u'australia'] [u'kill', u'ramadi', u'clash'] [u'thiev', u'hemp', u'industri'] [u'thoma', u'urg', u'harvey', u'play'] [u'injur', u'brighton', u'shoot'] [u'treasur', u'laud', u'home', u'grant'] [u'trio', u'court', u'drug', u'raid'] [u'unemploy', u'rat', u'illawarra'] [u'union', u'reject', u'carr', u'claim'] [u'unit', u'skipper', u'kean', u'golf', u'cours', u'assault', u'probe'] [u'upgrad', u'stop', u'sewerag', u'overflow'] [u'basebal', u'charg', u'chair', u'throw', u'incid'] [u'militari', u'apologis', u'journalist', u'death'] [u'present', u'resolut', u'sudan'] [u'refocus', u'iraq', u'secur'] [u'reveal', u'revis', u'sudan', u'resolut'] [u'vigilant', u'jail', u'afghanistan'] [u'act', u'chain', u'letter'] [u'gangland', u'inform', u'avoid', u'jail', u'sentenc'] [u'govt', u'announc', u'stormwat', u'fund'] [u'volunt', u'driver', u'seek', u'raymond'] [u'volunt', u'bring', u'week', u'ski', u'mount'] [u'weak', u'consum', u'data', u'worri', u'market'] [u'west', u'bank', u'raid', u'leav', u'dead'] [u'workcov', u'rebuk', u'breach', u'contract'] [u'worker', u'ralli', u'jam', u'hardi', u'commit', u'asbesto'] [u'worker', u'stand', u'trial', u'real', u'estat', u'agenc', u'theft'] [u'workshop', u'encourag', u'job', u'growth'] [u'wynyard', u'wonder', u'project', u'attract', u'tourist'] [u'yeppoon', u'pipelin', u'eas', u'water', u'problem'] [u'roadwork', u'contract', u'announc'] [u'job', u'kodak', u'close', u'melbourn', u'plant'] [u'abbott', u'tout', u'medicar', u'safeti', u'figur'] [u'academ', u'urg', u'deeper', u'engag', u'indonesia'] [u'govt', u'announc', u'incent', u'work', u'mother'] [u'action', u'urg', u'save', u'giant', u'freshwat', u'lobster'] [u'liber', u'target', u'health', u'ahead', u'poll'] [u'afridi', u'star', u'pakistan', u'rout', u'kenya'] [u'school', u'polici', u'draw', u'mix', u'respons'] [u'slam', u'major', u'parti', u'indigen', u'health'] [u'anderson', u'label', u'green', u'leader', u'brown'] [u'ararat', u'consolid', u'china', u'relationship'] [u'attorney', u'general', u'appeal', u'suspend', u'sentenc'] [u'aussi', u'lovett', u'down', u'iron', u'california'] [u'aussi', u'sleuth', u'receiv', u'award', u'york'] [u'aussi', u'rare', u'black', u'cap'] [u'australia', u'bowl'] [u'australian', u'sailor', u'rescu', u'english', u'coast'] [u'australia', u'push', u'resolut', u'iran'] [u'author', u'suspend', u'miss', u'teen', u'search'] [u'bank', u'hold', u'trigger', u'polic', u'manhunt'] [u'interview', u'payment', u'challeng'] [u'basslink', u'offer', u'green', u'power', u'boost', u'hydro', u'boss'] [u'crowd', u'attend', u'paedophilia', u'educ', u'forum'] [u'crowd', u'expect', u'silver', u'citi'] [u'blood', u'donat', u'need', u'chicken'] [u'board', u'give', u'thumb', u'riverbank', u'plan'] [u'bouncer', u'undergo', u'drug', u'test'] [u'brogden', u'critic', u'lose', u'fin'] [u'budget', u'cut', u'victorian', u'public', u'school'] [u'bunge', u'busi', u'back', u'insur', u'plan'] [u'bushwalk', u'miss', u'cradl', u'mountain'] [u'calder', u'fund', u'miss', u'road', u'announc'] [u'cost', u'shift', u'elect', u'issu'] [u'wider', u'chemic', u'compo'] [u'canberra', u'stand', u'trial', u'death', u'threat'] [u'carlaw', u'wari', u'form', u'cowboy'] [u'cathol', u'school', u'attack', u'govt', u'fund'] [u'initi', u'aim', u'boost', u'tradespeopl', u'number'] [u'chang', u'legal', u'possibl'] [u'chemic', u'shortag', u'hurt', u'grain', u'crop', u'rust', u'woe'] [u'church', u'vote', u'femal', u'priest'] [u'clijster', u'marri', u'hewitt', u'februari'] [u'congress', u'criticis', u'bush', u'slow', u'iraq', u'progress'] [u'council', u'aim', u'avoid', u'rate', u'rise', u'feder'] [u'council', u'consid', u'bond', u'stop', u'hous', u'eyesor'] [u'council', u'urg', u'jam', u'hardi'] [u'council', u'unsur', u'split', u'affect', u'librari', u'cost'] [u'court', u'order', u'hardi', u'wine', u'grape', u'grower'] [u'deepwat', u'fin', u'neighbour', u'assault'] [u'defenc', u'forc', u'look', u'boost', u'shore'] [u'dental', u'scheme', u'unlik', u'albani', u'wait', u'list'] [u'dillon', u'guid', u'windi', u'victori'] [u'docker', u'dock', u'unlicens', u'drive'] [u'downer', u'stand', u'dfat', u'hostag', u'decis'] [u'downer', u'unawar', u'australian', u'cleric', u'kidnap'] [u'drama', u'rome', u'overshadow', u'real', u'loss'] [u'drone', u'guard', u'australian', u'reserv'] [u'drought', u'spark', u'break'] [u'drought', u'stricken', u'farmer', u'help', u'hand'] [u'dubbo', u'mourn', u'death'] [u'aim', u'entic', u'health', u'staff'] [u'effort', u'focus', u'help', u'fletcher', u'jone', u'worker'] [u'everton', u'hope', u'common', u'sens', u'prevail'] [u'farmer', u'research', u'station', u'fight', u'minist'] [u'north', u'host', u'defenc', u'exercis'] [u'fear', u'super', u'trawler', u'resurfac'] [u'feder', u'secur', u'year', u'spot'] [u'ravag', u'scout', u'hall', u'like', u'demolish'] [u'flood', u'situat', u'worsen', u'bangladesh'] [u'follow', u'nose', u'control'] [u'labor', u'senat', u'hospitalis', u'darwin'] [u'frost', u'affect', u'farmer', u'urg', u'advic'] [u'fund', u'address', u'youth', u'crime'] [u'german', u'broadcast', u'go', u'klingon', u'say', u'qayb'] [u'girlish', u'crush', u'lead', u'trial', u'accus', u'stalker'] [u'gold', u'invest', u'hit'] [u'govt', u'accus', u'devalu', u'doctor'] [u'govt', u'pledg', u'rang', u'cross', u'fund'] [u'govt', u'promis', u'fund', u'wild', u'scheme'] [u'govt', u'appeal', u'atsic', u'chairman', u'reinstat'] [u'grey', u'growth', u'apprentic', u'rank'] [u'haddin', u'skipper', u'blue', u'katich', u'absenc'] [u'hanson', u'battl', u'harden', u'ahead', u'senat', u'race'] [u'hanson', u'lack', u'relev', u'polici', u'say'] [u'hanson', u'sympathi', u'vote'] [u'hanson', u'senat', u'task', u'democrat'] [u'hart', u'admir', u'geelong', u'team', u'spirit'] [u'hat', u'artist', u'award', u'win', u'helmet'] [u'hill', u'want', u'counter', u'terror', u'excercis', u'extend'] [u'histor', u'site', u'earmark', u'townhous', u'project'] [u'hodg', u'accept', u'middl', u'east'] [u'hodg', u'turn', u'counti', u'deal'] [u'homemad', u'road', u'spike', u'wont', u'deter', u'polic'] [u'hope', u'miner', u'secur', u'boost'] [u'hop', u'health', u'forum', u'annual', u'event'] [u'hospit', u'mural', u'recognis', u'reconcili'] [u'howard', u'undecid', u'growth', u'log'] [u'hugh', u'take', u'charg', u'blackburn'] [u'hundr', u'protest', u'health', u'chang'] [u'hurrican', u'ivan', u'lash', u'coast'] [u'indigen', u'group', u'question', u'constitut', u'plan'] [u'indonesia', u'issu', u'embassi', u'bomb', u'suspect', u'list'] [u'indonesian', u'editor', u'jail', u'libel', u'case'] [u'injuri', u'central', u'accid'] [u'investor', u'seek', u'aquacultur', u'plan'] [u'iraq', u'invas', u'entir', u'valid', u'howard', u'say'] [u'iraqi', u'allawi', u'visit', u'britain', u'week'] [u'iraq', u'illeg', u'say', u'annan'] [u'italian', u'deleg', u'tour', u'gambier'] [u'japanes', u'gyudon', u'restaur', u'turn', u'aussi', u'beef'] [u'domin', u'aria', u'nomin'] [u'judg', u'order', u'releas', u'guantanamo', u'record'] [u'karzai', u'cancel', u'campaign', u'stop', u'rocket', u'attack'] [u'kewel', u'delight', u'liverpool', u'spanish', u'influenc'] [u'labor', u'commit', u'upgrad', u'railway', u'secur'] [u'labor', u'earmark', u'darwin', u'port', u'secur', u'boost'] [u'labor', u'place', u'hanson', u'vote', u'card'] [u'labor', u'plan', u'multi', u'million', u'anti', u'smoke', u'campaign'] [u'labor', u'pledg', u'help', u'work', u'mum'] [u'labor', u'rail', u'secur', u'plan', u'advis', u'anderson', u'say'] [u'labor', u'reveal', u'plan', u'save', u'murray'] [u'labor', u'murray', u'plan', u'vagu', u'howard', u'say'] [u'labor', u'slash', u'govt', u'school', u'fund', u'nelson', u'say'] [u'latham', u'launch', u'water', u'polici', u'sunraysia'] [u'latham', u'person', u'debat', u'rag'] [u'pay', u'tribut', u'record', u'break', u'ruud'] [u'liber', u'campaign', u'launch', u'target', u'health', u'educ'] [u'librari', u'forgo', u'late', u'fee'] [u'local', u'govt', u'manag', u'converg', u'bateman'] [u'local', u'govt', u'upset', u'minist', u'daintre'] [u'lynch', u'keat', u'tackl', u'cat'] [u'mackay', u'offer', u'fund', u'incent', u'earli', u'flight'] [u'charg', u'june', u'murder'] [u'jail', u'year', u'marriott', u'bomb'] [u'sentenc', u'life', u'irish', u'finucan', u'murder'] [u'court', u'polic', u'chase'] [u'manufactur', u'activ', u'solid', u'survey'] [u'unhappi', u'polic', u'treatment'] [u'mass', u'reformist', u'cathol', u'priest'] [u'mccardl', u'highlight', u'hospit', u'pressur'] [u'host', u'grand', u'final'] [u'meet', u'debat', u'nation', u'competit', u'polici'] [u'melanoma', u'plagu', u'young', u'western', u'australian'] [u'mickelson', u'prepar', u'ryder'] [u'minist', u'play', u'super', u'trawler', u'fear'] [u'minist', u'reject', u'maleni', u'court', u'challeng', u'attack'] [u'miss', u'tourist', u'locat', u'kimberley'] [u'mitsubishi', u'close', u'plant', u'week', u'shift', u'stock'] [u'moodi', u'upgrad', u'credit', u'rat'] [u'mummi', u'maker', u'anim', u'lover', u'studi', u'find'] [u'murdoch', u'get', u'bonus', u'record', u'break', u'year'] [u'musharraf', u'armi', u'post'] [u'nation', u'deni', u'prefer', u'deal', u'hanson'] [u'newcastl', u'offici', u'welcom', u'home', u'olympian'] [u'unit', u'posit', u'step', u'inquest', u'tell'] [u'helmet', u'design', u'consid', u'safeti', u'debat'] [u'youth', u'arrest', u'wagga', u'stab'] [u'resolut', u'rescu', u'chopper', u'ground'] [u'opec', u'pledg', u'fail', u'satisfi', u'market'] [u'opera', u'hous', u'renov', u'unveil'] [u'opposit', u'ask', u'detail', u'kariong', u'breach'] [u'opposit', u'question', u'council', u'merger', u'consult'] [u'pair', u'surrend', u'suicid', u'bomb', u'plan', u'isra'] [u'paltri', u'fund', u'offer', u'delay', u'highway', u'say'] [u'paramed', u'work', u'woe', u'communiti'] [u'parti', u'ask', u'bolster', u'board', u'school', u'allow'] [u'parti', u'counter', u'hanson', u'return'] [u'parti', u'urg', u'honour', u'log', u'agreement'] [u'pesticid', u'fish', u'kill'] [u'petrol', u'retail', u'squeez', u'candid'] [u'head', u'kalgoorli'] [u'polic', u'arrest', u'pair', u'hunt', u'embassi', u'bomber'] [u'polic', u'hope', u'identifi', u'lancelin', u'bodi'] [u'polic', u'hunt', u'chemist', u'knife', u'bandit'] [u'polic', u'hunt', u'gunman', u'brighton', u'tripl', u'shoot'] [u'polic', u'question', u'brighton', u'tripl', u'shoot'] [u'polic', u'warn', u'driver', u'care'] [u'power', u'prim', u'preliminari', u'final'] [u'protest', u'storm', u'british', u'parliament'] [u'protest', u'strip', u'anti', u'demonstr'] [u'public', u'seek', u'water', u'access'] [u'public', u'warn', u'croc', u'sight'] [u'punk', u'idol', u'die', u'prostat', u'cancer'] [u'back', u'highway', u'fund'] [u'race', u'club', u'face', u'uncertain', u'futur'] [u'rainfal', u'delay', u'murray', u'alloc', u'decis'] [u'rainfal', u'forecast', u'suggest', u'futur', u'perth'] [u'rain', u'like', u'boost', u'blue', u'green', u'alga'] [u'rann', u'welcom', u'opposit', u'murray', u'plan'] [u'right', u'threaten', u'tour', u'india'] [u'riverina', u'candid', u'educ', u'polici'] [u'robbin', u'slap', u'row', u'team', u'mate'] [u'russian', u'airlin', u'employe', u'bribe', u'suicid', u'bomber'] [u'saint', u'recal', u'hamil', u'black'] [u'salvat', u'armi', u'target', u'bing', u'drink'] [u'salvo', u'launch', u'anti', u'bing', u'drink', u'campaign'] [u'sauber', u'sign', u'villeneuv', u'year'] [u'sauvag', u'australian', u'flag'] [u'search', u'kimberley', u'miss', u'tourist'] [u'senior', u'offici', u'kidnap', u'gaza', u'wit'] [u'servo', u'attack', u'supermarket', u'sell'] [u'sharp', u'doubt', u'european', u'tour', u'report'] [u'shell', u'offer', u'comment', u'power', u'station', u'futur'] [u'shoulder', u'injuri', u'blow', u'real', u'zidan'] [u'somar', u'highlight', u'popul', u'problem'] [u'southern', u'coast', u'brace', u'hurrican', u'ivan'] [u'staff', u'woe', u'hamper', u'mental', u'health', u'servic'] [u'starcraft', u'track', u'success'] [u'starcraft', u'tip', u'strong', u'show'] [u'state', u'fume', u'govt', u'water', u'polici'] [u'stockmarket', u'slow', u'record', u'high'] [u'student', u'gear', u'indigen', u'game'] [u'sudan', u'reject', u'sponsor', u'darfur', u'resolut'] [u'surgeri', u'loom', u'kuerten'] [u'branch', u'warn', u'growth', u'log'] [u'honey', u'produc', u'seek', u'elect', u'sweeten'] [u'premier', u'tri', u'sway', u'feder', u'log'] [u'union', u'consid', u'interst', u'poll', u'battl'] [u'territori', u'display', u'suprem', u'court'] [u'arrest', u'miller', u'assault'] [u'arrest', u'geelong', u'raid'] [u'timber', u'firm', u'deliv', u'rail', u'ultimatum'] [u'tourism', u'industri', u'bed', u'plan'] [u'toyota', u'confirm', u'trulli'] [u'train', u'go', u'despit', u'fighter', u'crash'] [u'transport', u'group', u'wont', u'comment', u'plane', u'crash', u'claim'] [u'american', u'briton', u'kidnap', u'iraq'] [u'union', u'stand', u'log', u'ticket'] [u'marin', u'kill', u'iraq', u'sunni', u'stronghold'] [u'postal', u'control'] [u'run', u'short', u'reserv', u'troop', u'report'] [u'vanuatu', u'allow', u'offic', u'condit', u'return'] [u'volunt', u'work', u'group', u'assist', u'indigen'] [u'govt', u'challeng', u'properti'] [u'whale', u'watch', u'season', u'year'] [u'woman', u'lose', u'cliff', u'mishap'] [u'woman', u'court', u'park', u'stab'] [u'work', u'continu', u'combat', u'poor', u'grind', u'water', u'qualiti'] [u'aborigin', u'group', u'retriev', u'remain', u'sweden'] [u'liber', u'refus', u'answer', u'budget', u'question'] [u'warm', u'paralympian', u'centr', u'stage'] [u'alli', u'rebuff', u'annan', u'illeg', u'iraq'] [u'branch', u'stacker', u'latham'] [u'annan', u'say', u'darfur'] [u'asic', u'kill', u'mislead', u'loan', u'calcul'] [u'aussi', u'paralympian', u'carri', u'torch', u'athen'] [u'aussi', u'summer', u'shin', u'taiwan'] [u'aussi', u'summer', u'stumbl', u'taiwan', u'stand'] [u'australian', u'market', u'close', u'higher'] [u'australian', u'market', u'continu', u'march', u'higher'] [u'aust', u'secur', u'iran', u'resolut'] [u'return', u'goldfield'] [u'balogh', u'key', u'citi'] [u'banana', u'grower', u'demand', u'import', u'rule', u'chang'] [u'beatti', u'dismiss', u'call', u'daylight', u'save'] [u'bendigo', u'candid', u'announc', u'today'] [u'benefit', u'flow', u'wine', u'award'] [u'bennett', u'reject', u'talli', u'bench', u'rumour'] [u'turnout', u'expect', u'farewel'] [u'investig', u'massiv', u'spill'] [u'bridgetown', u'councillor', u'face', u'drug', u'charg'] [u'bring', u'paddock', u'masur'] [u'bypass', u'offer', u'chang'] [u'go', u'nation', u'stinger', u'guidelin'] [u'candid', u'confirm', u'announc'] [u'candid', u'quiz', u'refuge', u'polici'] [u'cat', u'complet', u'prepar', u'lion', u'clash'] [u'chechen', u'warlord', u'russian', u'school', u'sieg'] [u'chopper', u'case', u'spark', u'casa', u'rule', u'rethink'] [u'clijster', u'marri', u'hewitt', u'februari'] [u'coalit', u'help', u'fund', u'pakeham', u'bypass'] [u'coastal', u'patrol', u'chief', u'explain', u'account', u'chang'] [u'commonwealth', u'bank', u'chair', u'retir'] [u'compani', u'target', u'hemp', u'factori', u'dalbi'] [u'concern', u'darwin', u'port', u'secur', u'ridicul'] [u'costello', u'announc', u'windfal'] [u'council', u'boost', u'tourism', u'fund'] [u'councillor', u'flag', u'lifeguard', u'concern'] [u'councillor', u'deputi', u'mayor', u'spot'] [u'court', u'drop', u'charg', u'forestri', u'protest'] [u'court', u'hear', u'hammer', u'kill'] [u'court', u'quash', u'murder', u'convict'] [u'cressbrook', u'hop', u'help', u'bear', u'premiership'] [u'csiro', u'put', u'weight', u'sheep', u'technolog'] [u'custom', u'search', u'disrupt', u'steroid', u'smuggl', u'ring'] [u'danish', u'royal', u'famili', u'rock', u'divorc'] [u'dead', u'soil', u'kill'] [u'deleg', u'vie', u'communiti', u'award'] [u'doctor', u'unimpress', u'opposit', u'health', u'packag'] [u'donkey', u'year', u'amor', u'ass'] [u'doubt', u'rais', u'cobden', u'wind', u'farm', u'site'] [u'dozen', u'kill', u'strike'] [u'drought', u'threaten', u'south', u'coast', u'oyster'] [u'earli', u'success', u'cancer', u'vaccin'] [u'effort', u'continu', u'lure', u'citi', u'dweller', u'region'] [u'elliott', u'sign', u'glamorgan'] [u'embassi', u'seek', u'identifi', u'iraq', u'bodi'] [u'embassi', u'suspect', u'releas', u'indonesian', u'polic'] [u'farmer', u'hold', u'hope', u'research', u'station'] [u'feder', u'govt', u'offer', u'pakenham', u'bypass', u'fund'] [u'field', u'offer', u'good', u'social', u'out'] [u'fish', u'group', u'reel', u'liber', u'white', u'move'] [u'fitzgerald', u'face', u'select', u'dilemma'] [u'kill', u'wound', u'bomb'] [u'flower', u'carniv', u'look', u'record', u'visitor'] [u'fund', u'boost', u'tangetyer', u'night', u'patrol'] [u'gonzal', u'give', u'tripl', u'life', u'sentenc'] [u'govt', u'act', u'late', u'kodak', u'shut'] [u'govt', u'ask', u'resolv', u'rescu', u'chopper', u'woe'] [u'govt', u'consid', u'buy', u'rail', u'line', u'amidst', u'chip'] [u'govt', u'fudg', u'medicar', u'figur', u'labor'] [u'govt', u'ignor', u'helicopt', u'rescu', u'issu', u'opposit'] [u'govt', u'urg', u'boost', u'sport', u'facil', u'weight'] [u'govt', u'urg', u'creat', u'farm', u'develop', u'task', u'forc'] [u'govt', u'urg', u'fuel', u'excis'] [u'grampian', u'backpack', u'workshop'] [u'green', u'group', u'back', u'murray', u'effort'] [u'hanson', u'reject', u'beatti', u'racist'] [u'hanson', u'see', u'liven', u'campaign'] [u'health', u'warn', u'issu', u'china', u'smoker'] [u'heater', u'petrol', u'centr', u'inquiri'] [u'hera', u'line', u'tour', u'spain', u'chanc'] [u'hewitt', u'proceed', u'defam', u'action'] [u'high', u'passion', u'delay', u'juri', u'reform'] [u'hill', u'announc', u'navi', u'base', u'upgrad'] [u'holiday', u'keep', u'market', u'check'] [u'hope', u'fade', u'research', u'station'] [u'hopkin', u'take', u'provision', u'pole', u'japan'] [u'huge', u'explos', u'jolt', u'baghdad'] [u'hull', u'rule', u'nation'] [u'hundr', u'flock', u'women', u'gather'] [u'hundr', u'voic', u'macedon', u'rang', u'plan', u'concern'] [u'hunter', u'benefit', u'coal', u'compo'] [u'hunter', u'paralympian', u'prepar', u'game'] [u'hurrican', u'ivan', u'caus', u'havoc'] [u'hurrican', u'ivan', u'pound', u'gulf', u'coast'] [u'indian', u'board', u'desper', u'resolv', u'wrangl'] [u'internet', u'virus', u'turf', u'resum'] [u'ivan', u'slam', u'gulf', u'coast', u'alabama'] [u'jackson', u'accus', u'mission'] [u'jaguar', u'pull', u'formula'] [u'jam', u'hardi', u'target', u'netherland'] [u'judg', u'choos', u'wine'] [u'kluivert', u'give', u'souness', u'stutter', u'start'] [u'labor', u'claim', u'govt', u'neglect', u'famili', u'payment', u'debt'] [u'labor', u'pledg', u'tourism'] [u'labor', u'pursu', u'govt', u'anti', u'terror', u'campaign'] [u'labor', u'slam', u'windfal', u'figur'] [u'latham', u'deni', u'privat', u'school', u'attack'] [u'latham', u'dismiss', u'beazley', u'diplomat', u'post', u'rumour'] [u'latham', u'pledg', u'clean', u'beach'] [u'latham', u'vow', u'stand', u'grind'] [u'lennon', u'urg', u'honour', u'log', u'agreement'] [u'liber', u'slash', u'indigen', u'bureaucraci'] [u'local', u'input', u'seek', u'art', u'confer'] [u'log', u'compani', u'threaten', u'greenpeac'] [u'lotto', u'loser', u'jail', u'fail', u'murder', u'plot'] [u'maffra', u'look', u'grand', u'final', u'trick'] [u'arrest', u'embassi', u'blast'] [u'charg', u'follow', u'murder'] [u'guilti', u'gang', u'rape'] [u'manilla', u'get', u'govt', u'agronomi', u'pledg'] [u'jail', u'attack', u'girlfriend'] [u'mayor', u'seek', u'zone', u'rebat'] [u'mcgrath', u'kasprowicz', u'honest'] [u'media', u'watch', u'win', u'independ', u'journal', u'award'] [u'modra', u'clear', u'compet', u'paralymp'] [u'mother', u'plead', u'guilti', u'kill', u'babi'] [u'move', u'afoot', u'western', u'flight'] [u'gambier', u'join', u'citizenship', u'celebr'] [u'murray', u'rescu', u'plan', u'dont', u'green'] [u'newcastl', u'ignor', u'plagiar', u'lectur', u'say'] [u'confirm', u'health', u'shake', u'loss'] [u'grain', u'truth', u'nation', u'debt', u'claim', u'tuckey'] [u'north', u'korean', u'didnt', u'test', u'nuclear', u'weapon', u'diplomat'] [u'minist', u'grill', u'orang', u'grove', u'project'] [u'opposit', u'rail', u'report'] [u'palestinian', u'offici', u'free', u'gaza', u'kidnap'] [u'parkinson', u'burrow', u'occhi', u'california'] [u'parliament', u'need', u'indigen', u'repres'] [u'express', u'concern', u'kodak', u'worker'] [u'decid', u'hanson', u'prefer', u'latham'] [u'pledg', u'boost', u'apprentic', u'payment'] [u'warn', u'huge', u'cost', u'log'] [u'polic', u'charg', u'theft'] [u'polic', u'crack', u'suspect', u'intern', u'theft', u'ring'] [u'polic', u'probe', u'toormina', u'attack'] [u'polic', u'crack', u'grand', u'final', u'drink'] [u'polic', u'uncov', u'detail', u'miss', u'teen', u'case'] [u'polic', u'threat', u'highway', u'sabotag'] [u'polic', u'warn', u'holiday', u'road', u'crackdown'] [u'polic', u'truck', u'crash', u'victim'] [u'pont', u'hail', u'mcgrath', u'symond'] [u'pont', u'leav', u'door', u'open', u'comeback'] [u'port', u'arthur', u'charg', u'sink', u'yacht'] [u'power', u'final', u'break', u'duck'] [u'power', u'station', u'consid', u'greener', u'technolog'] [u'primari', u'school', u'teacher', u'charg', u'assault'] [u'probe', u'continu', u'mccain', u'leak'] [u'protest', u'fire', u'fluorid', u'debat'] [u'push', u'region', u'scienc', u'career'] [u'threat', u'ivan', u'like', u'condit'] [u'radio', u'announc', u'breach', u'broadcast', u'law'] [u'renault', u'villeneuv', u'wait'] [u'report', u'smuggl', u'fake', u'bomb', u'gear', u'parliament'] [u'report', u'highlight', u'windal', u'wag'] [u'resid', u'odd', u'council', u'develop'] [u'resid', u'question', u'council', u'valuat'] [u'revamp', u'underway', u'histor', u'hotel'] [u'ridgeway', u'urg', u'indigen', u'represent'] [u'right', u'watchdog', u'urg', u'guantanamo', u'commiss'] [u'rivkin', u'sick', u'detent'] [u'roma', u'face', u'uefa', u'wrath'] [u'rossi', u'take', u'titl', u'fight', u'honda', u'backyard'] [u'defend', u'highway', u'effort'] [u'russian', u'tanker', u'explod', u'peopl', u'miss'] [u'saint', u'risk', u'hamil'] [u'school', u'crash', u'melbourn', u'injur'] [u'senat', u'candid', u'go', u'hungri', u'campaign'] [u'slim', u'dusti', u'fan', u'mark', u'anniversari', u'death'] [u'spur', u'wretch', u'stamford', u'bridg', u'record'] [u'lanka', u'handbal', u'team', u'vanish'] [u'state', u'territori', u'foul', u'govt', u'water'] [u'state', u'receiv', u'bonus'] [u'student', u'hurt', u'tunnel', u'crash'] [u'suicid', u'bomber', u'kill', u'baghdad'] [u'symond', u'guid', u'aussi'] [u'serious', u'say', u'senat', u'idol', u'winner'] [u'tender', u'process', u'begin', u'nhulunbuy', u'refineri'] [u'thousand', u'expect', u'alic', u'boat', u'race'] [u'thousand', u'folk', u'tip', u'festiv'] [u'arrest', u'karzai', u'assassin', u'attempt'] [u'marin', u'kill', u'iraq'] [u'tiger', u'pair', u'mickelson', u'ryder'] [u'town', u'communiti', u'award'] [u'accus', u'financ', u'terror'] [u'union', u'fight', u'kodak', u'off'] [u'claim', u'kill', u'strike'] [u'forc', u'strike', u'fallujah', u'sweep', u'ramadi'] [u'intellig', u'offer', u'gloomi', u'outlook', u'iraq'] [u'villeneuv', u'get', u'renault', u'drive'] [u'wangaratta', u'bishop', u'ponder', u'adelaid'] [u'wast', u'control', u'program', u'reveal'] [u'water', u'recycl', u'scheme', u'impress', u'brumbi'] [u'young', u'council', u'wont', u'fund'] [u'youth', u'fund', u'boost', u'central'] [u'strand', u'bangladesh', u'embank', u'burst'] [u'wound', u'mortar', u'strike', u'iraq', u'student'] [u'abbott', u'join', u'sydney', u'hospit', u'protest'] [u'aussi', u'elli', u'lpga', u'event'] [u'aussi', u'hedg', u'perfect', u'california'] [u'beatti', u'pay', u'tribut', u'late', u'energex', u'boss'] [u'blair', u'say', u'agreement', u'ireland', u'talk'] [u'bond', u'join', u'homer', u'club'] [u'clean', u'massiv', u'petrol', u'spill'] [u'brack', u'celebr', u'year', u'offic'] [u'brack', u'sack', u'drive', u'offenc'] [u'cabin', u'crew', u'deal', u'keep', u'alitalia', u'aloft', u'report'] [u'chariti', u'boat', u'race'] [u'child', u'critic', u'injur', u'overnight', u'smash'] [u'china', u'childbirth', u'studi', u'offer', u'australian', u'insight'] [u'prefer', u'democrat', u'green'] [u'coalit', u'grant', u'scheme', u'water', u'conserv'] [u'coalit', u'hold', u'slim', u'poll', u'edg', u'latham', u'gain'] [u'conserv', u'trust', u'warn', u'foreign', u'bumblebe'] [u'costa', u'rica', u'abandon', u'coalit', u'will'] [u'court', u'reject', u'jurisdict', u'challeng', u'coat'] [u'cowboy', u'away', u'grand', u'final'] [u'darwin', u'soldier', u'return', u'iraq'] [u'dead', u'strike', u'hit', u'fallujah'] [u'democrat', u'green', u'clash', u'prefer'] [u'dozen', u'kill', u'nigerian', u'pipelin', u'blast', u'polic'] [u'river', u'race', u'leav', u'anderson'] [u'europ', u'flourish', u'wood', u'mickelson', u'flop'] [u'famili', u'urg', u'voter', u'consid', u'polici'] [u'save', u'snake', u'bite', u'victim', u'life'] [u'partnership', u'victoria', u'hospit', u'open'] [u'flower', u'festiv', u'celebr', u'wonder', u'water'] [u'delay', u'zimbabw', u'cricket', u'hear'] [u'girl', u'bad', u'injur', u'tram', u'accid'] [u'govt', u'confid', u'coast', u'patrol', u'accept', u'offer'] [u'govt', u'bang', u'drum', u'band'] [u'green', u'labor', u'strike', u'prefer', u'deal'] [u'hopkin', u'hoya', u'impress', u'weigh'] [u'howard', u'accus', u'abandon', u'forest', u'worker'] [u'howard', u'prepar', u'forestri', u'polici'] [u'indonesia', u'draft', u'tougher', u'anti', u'terror', u'law'] [u'indonesian', u'polic', u'hold', u'embassi', u'blast'] [u'iraqi', u'airway', u'resum', u'intern', u'flight'] [u'iraq', u'free', u'plan', u'acquisit', u'report'] [u'kalgoorli', u'nightclub', u'owner', u'bash', u'brawl'] [u'kangaroo', u'cull', u'decis', u'right'] [u'kean', u'admit', u'abysm'] [u'porn', u'industri', u'sting', u'condom', u'fin'] [u'latham', u'reject', u'attack', u'econom', u'credenti'] [u'latham', u'woo', u'west'] [u'leed', u'year', u'english', u'titl', u'wait'] [u'liber', u'disappoint', u'king', u'prefer', u'decis'] [u'liber', u'forest', u'offer', u'altern', u'coalit'] [u'light', u'captur', u'antenna', u'reveal'] [u'lion', u'fourth', u'straight', u'decid'] [u'lie', u'rodent', u'stalk', u'howard', u'bennelong'] [u'kill', u'head', u'collis'] [u'maradona', u'return', u'cuba', u'monday', u'drug', u'rehab'] [u'martin', u'defend', u'waterfront', u'redevelop', u'project'] [u'matthew', u'talk', u'cat', u'chanc'] [u'mayor', u'reject', u'diesel', u'generat', u'kangaroo', u'island'] [u'melbourn', u'protest', u'reflect', u'anti', u'abort'] [u'militari', u'advis', u'atherton', u'ordnanc'] [u'mother', u'jackson', u'accus', u'testifi'] [u'continu', u'push', u'abus', u'report', u'releas'] [u'nalbandian', u'suffer', u'beij', u'shock', u'safin'] [u'nation', u'pledg', u'rodeo'] [u'australian', u'celebr', u'citizenship'] [u'korea', u'vow', u'dismantl', u'atom', u'arm'] [u'north', u'pole', u'mussel', u'sign', u'global', u'warm'] [u'cattl', u'export', u'target', u'philippin'] [u'ogradi', u'lose', u'point', u'lead', u'zabel'] [u'panama', u'flood', u'kill'] [u'paralymp', u'underway', u'athen'] [u'patagonian', u'toothfish', u'vessel', u'scuttl'] [u'polic', u'crocodil', u'snake', u'sydney', u'hous'] [u'polic', u'issu', u'sketch', u'possibl', u'embassi', u'mini'] [u'psych', u'ward', u'decis', u'bouy', u'lobbi', u'group'] [u'psych', u'ward', u'escape', u'captur'] [u'guid', u'seek', u'youth', u'commit', u'candid'] [u'rain', u'send', u'england', u'lanka', u'second'] [u'ralf', u'return', u'william', u'china'] [u'rogu', u'sheep', u'face', u'muster'] [u'rspca', u'slither', u'reptil', u'sydney', u'hous'] [u'russian', u'star', u'shine', u'bali'] [u'sack', u'apologis', u'drive', u'offenc'] [u'scientist', u'breakthrough', u'spinal', u'injuri'] [u'senden', u'tie', u'texa'] [u'setback', u'souness', u'dyer', u'rule', u'week'] [u'spadea', u'ancic', u'reach', u'delray', u'beach', u'semi'] [u'starcraft', u'shin', u'zealand'] [u'sublim', u'safin', u'set', u'russian', u'final', u'beij'] [u'sudan', u'peac', u'talk', u'break'] [u'suicid', u'bomb', u'kill', u'kirkuk'] [u'synod', u'consid', u'adelaid', u'archbishop', u'nomine'] [u'tamada', u'grab', u'pole', u'japan'] [u'polic', u'investig', u'death'] [u'team', u'colour', u'disguis', u'alleg', u'tractor', u'thief'] [u'thaworn', u'keep', u'taiwan', u'master', u'lead'] [u'triumphant', u'power', u'thank', u'support'] [u'trust', u'appeal', u'cole', u'approv'] [u'replay', u'necessari', u'india', u'australia', u'seri'] [u'dedic', u'final', u'drown', u'teammat'] [u'death', u'toll', u'hurrican', u'ivan'] [u'death', u'toll', u'hurrican', u'ivan', u'hit', u'report'] [u'prais', u'iran', u'resolut', u'compromis'] [u'polic', u'hunt', u'danger', u'psych', u'ward', u'escap'] [u'weak', u'consum', u'data', u'hit', u'wall', u'street'] [u'webck', u'cours', u'cowboy'] [u'wenger', u'condemn', u'decis', u'abandon', u'roma', u'match'] [u'west', u'coaster', u'entitl', u'hospit', u'inform'] [u'woman', u'die', u'fall'] [u'women', u'work', u'glass', u'ceil'] [u'woodi', u'allen', u'condemn', u'comic', u'tragic', u'bush'] [u'zarqawi', u'group', u'threaten', u'kill', u'hostag'] [u'hospitalis', u'balconi', u'collaps'] [u'hail', u'industri', u'action'] [u'allawi', u'determin', u'hold', u'januari', u'elect'] [u'medal', u'brace', u'highlight', u'paralymp'] [u'aussi', u'rid', u'high', u'california'] [u'beckham', u'bench', u'real', u'slump'] [u'blair', u'deni', u'iraq', u'post', u'chao', u'warn'] [u'bolton', u'gunner', u'citi', u'eas', u'pressur'] [u'brodgen', u'call', u'resign', u'jail', u'incid'] [u'bryant', u'surg', u'texa', u'leaderboard'] [u'bulldog', u'clash', u'panther'] [u'carr', u'urg', u'coalit', u'ratifi', u'kyoto'] [u'chanderpaul', u'steer', u'windi', u'trophi', u'semi'] [u'children', u'recov', u'accid'] [u'chines', u'polit', u'shuffl', u'like'] [u'convent', u'hear', u'abus', u'children'] [u'corpor', u'urg', u'improv', u'public', u'imag'] [u'council', u'hand', u'donat', u'helicopt', u'servic'] [u'croc', u'cruis', u'blitz', u'final'] [u'dementia', u'solut', u'focus', u'week'] [u'democrat', u'lee', u'agre', u'prefer'] [u'democrat', u'pledg', u'rental', u'blacklist', u'reform'] [u'driver', u'destroy', u'speed', u'camera'] [u'dunni', u'featur', u'heritag', u'week', u'display'] [u'eritrea', u'report', u'detent'] [u'appeal', u'sugar', u'rule'] [u'extra', u'accommod', u'eas', u'mental', u'health', u'crisi'] [u'fight', u'underwood', u'elvstroem'] [u'firefight', u'fear', u'snake', u'collect'] [u'firefight', u'train', u'facil', u'get', u'makeov'] [u'safe', u'cigarett', u'save', u'live', u'expert'] [u'flintoff', u'lead', u'england', u'aussi', u'semi', u'final', u'clash'] [u'footbal', u'fan', u'turn', u'attent', u'melbourn'] [u'kill', u'iraqi', u'violenc'] [u'girl', u'die', u'tram'] [u'govt', u'pursu', u'hardi', u'compens', u'treati', u'union'] [u'gypsi', u'joker', u'slater', u'charg', u'nightclub', u'bash'] [u'hail', u'storm', u'bring', u'flood', u'central', u'coast'] [u'harmison', u'boycott', u'zimbabw', u'tour'] [u'hewitt', u'begin', u'davi', u'prepar'] [u'home', u'star', u'arrest', u'drug', u'charg'] [u'hong', u'kong', u'unlik', u'titan', u'wheelchair', u'fenc'] [u'hopkin', u'knock', u'hoya'] [u'hospit', u'fund', u'boost', u'benefit', u'children'] [u'howard', u'cash', u'sydney', u'candid'] [u'howard', u'find', u'labor', u'green', u'deal', u'sicken'] [u'replac', u'jiang', u'china', u'militari', u'chief'] [u'indian', u'christian', u'hindu'] [u'indonesia', u'prepar', u'elect'] [u'insurg', u'kill', u'clash', u'sadr', u'offic'] [u'investig', u'continu', u'hous'] [u'iran', u'reject', u'uranium', u'enrich', u'freez'] [u'iraq', u'hold', u'januari', u'elect', u'iraqi'] [u'ivan', u'remnant', u'continu', u'destruct'] [u'kung', u'kane', u'share', u'portland', u'lead'] [u'labor', u'announc', u'suburban', u'safeti', u'plan'] [u'labor', u'rebuild', u'asian', u'relationship', u'beazley'] [u'labor', u'commit', u'maritim', u'secur'] [u'latham', u'accus', u'famili', u'payment', u'quick'] [u'latham', u'brush', u'dishonest'] [u'latham', u'pitch', u'health', u'educ', u'polici'] [u'latham', u'reject', u'emptiv', u'strike'] [u'leak', u'show', u'child', u'payment', u'quick'] [u'leav', u'son', u'educ', u'latham'] [u'lee', u'acknowledg', u'tough', u'fight', u'seat'] [u'librari', u'heart', u'govt', u'art', u'polici'] [u'lion', u'assess', u'casualti', u'list'] [u'lion', u'fan', u'join', u'grand', u'final', u'ticket', u'rush'] [u'local', u'hero', u'tamada', u'win', u'japan'] [u'log', u'polici', u'determin', u'green', u'prefer'] [u'manhunt', u'underway', u'penguin', u'murder'] [u'mari', u'poppin', u'statu', u'honour', u'author'] [u'maze', u'lure', u'tourist', u'dismal', u'swamp'] [u'megawati', u'pray', u'peac', u'poll'] [u'melbourn', u'team', u'win', u'henley', u'todd', u'regatta'] [u'milit', u'threaten', u'kill', u'hostag'] [u'motorcyclist', u'kill', u'wivenho', u'accid'] [u'everest', u'station', u'examin', u'atmospher', u'exchang'] [u'week', u'hit', u'adelaid', u'newsstand'] [u'norther', u'return', u'romant'] [u'barrist', u'head', u'nation', u'council'] [u'benefit', u'project', u'asia', u'say'] [u'green', u'prefer', u'labor'] [u'nuclear', u'watchdog', u'demand', u'iran', u'freez', u'enrich'] [u'pakistan', u'win', u'releas', u'guantanamo', u'detaine'] [u'paratroop', u'drop', u'innisfail'] [u'parti', u'finalis', u'prefer'] [u'parti', u'wrangl', u'offer', u'forest', u'protect', u'result'] [u'guarante', u'continu', u'bulk', u'incent'] [u'guarante', u'continu', u'bulk', u'bill', u'incent'] [u'turn', u'focus', u'western', u'sydney'] [u'polic', u'appeal', u'help', u'search', u'miss', u'girl'] [u'polic', u'continu', u'hunt', u'psych', u'ward', u'escape'] [u'polic', u'investig', u'balconi', u'collaps'] [u'polic', u'investig', u'suspect', u'doubl', u'murder'] [u'polic', u'investig', u'suspici', u'fire'] [u'polic', u'radio', u'network', u'upgrad'] [u'polic', u'stun', u'bonnet', u'surf', u'accid'] [u'elect', u'afghan', u'tribal', u'chief', u'murder'] [u'record', u'field', u'contest', u'adelaid'] [u'report', u'death', u'exagger', u'say'] [u'rule', u'tempo', u'press', u'restrict'] [u'russian', u'polic', u'intercept', u'explos', u'report'] [u'saddam', u'trial', u'octob', u'allawi'] [u'sanction', u'complet', u'destroy', u'sudan'] [u'declar', u'psych', u'ward', u'escap', u'proof'] [u'senat', u'candid', u'debat', u'issu'] [u'sheep', u'hide', u'mutton', u'cove', u'escap', u'dinner', u'plate'] [u'sixer', u'king', u'blitz', u'final'] [u'snake', u'home', u'wildlif', u'sanctuari'] [u'spadea', u'mello', u'delray', u'beach', u'final'] [u'starcraft', u'shin', u'zealand'] [u'storm', u'bank', u'final', u'experi'] [u'stroke', u'victim', u'offer', u'hope'] [u'sudan', u'abid', u'unfair', u'resolut', u'report'] [u'swift', u'domin', u'australian', u'squad'] [u'teenag', u'rid', u'bonnet'] [u'thompson', u'prais', u'fight', u'cat'] [u'torrensvill', u'clean', u'continu'] [u'troop', u'leav', u'iraq', u'year', u'hill'] [u'tropic', u'storm', u'jeann', u'cut', u'caribbean'] [u'univers', u'recognis', u'littl', u'contribut'] [u'resolut', u'threaten', u'sudan', u'sanction'] [u'strike', u'fallujah', u'kill', u'hospit'] [u'ryder', u'crisi', u'europ', u'turn', u'screw'] [u'plan', u'decemb', u'offens', u'iraqi', u'insurg'] [u'vaughan', u'talk', u'england', u'chanc'] [u'vote', u'independ', u'wast', u'anderson'] [u'west', u'coast', u'resid', u'concern', u'hospit'] [u'wife', u'plead', u'kidnap', u'husband', u'releas'] [u'wind', u'farm', u'propos', u'refer', u'govt'] [u'windi', u'resum', u'chase', u'rain', u'hit'] [u'wotif', u'specul', u'asian', u'hotel', u'market'] [u'disobey', u'franc', u'scarf'] [u'kill', u'pakistan', u'crash'] [u'injur', u'zimbabw', u'militari', u'drill'] [u'candid', u'wide', u'hinkler'] [u'pledg', u'buchanan', u'park', u'work'] [u'accid', u'spark', u'school', u'safeti', u'boost'] [u'afghan', u'vice', u'presid', u'surviv', u'bomb', u'attack'] [u'final', u'boost', u'tourism'] [u'airport', u'disastr'] [u'allawi', u'reveal', u'assassin', u'attempt'] [u'amnesti', u'turn', u'hand', u'end', u'domest', u'violenc'] [u'ampute', u'sue', u'hospit', u'neglig'] [] [u'asic', u'call', u'wit', u'onetel', u'case'] [u'team', u'play', u'french', u'barbarian'] [u'aust', u'ambassador', u'optimist', u'iraq', u'futur'] [u'aust', u'east', u'timor', u'resum', u'timor', u'resourc', u'talk'] [u'austoft', u'sell', u'local', u'consortium'] [u'ballarat', u'brace', u'port', u'power', u'invas'] [u'ban', u'help', u'jondaryan', u'water'] [u'barca', u'hold', u'real', u'boss', u'camacho', u'offer', u'resign'] [u'bekel', u'isinbayeva', u'name', u'year', u'best', u'athlet'] [u'betel', u'beauti', u'give', u'cover', u'order'] [u'biki', u'court', u'nightclub', u'assault'] [u'birth', u'defect', u'biolog', u'genocid'] [u'blackshirt', u'leader', u'plead', u'guilti', u'stalk'] [u'blast', u'furnac', u'work', u'launch'] [u'blow', u'caus', u'fatal', u'heart', u'condit', u'court', u'hear'] [u'bordertown', u'school', u'rock', u'eisteddfod', u'award'] [u'british', u'polic', u'suspect', u'serial', u'killer'] [u'brown', u'clear', u'injuri'] [u'brownlow', u'winner', u'judd', u'stick', u'eagl'] [u'bryant', u'captur', u'titl'] [u'budget', u'carrier', u'singapor', u'perth', u'rout'] [u'bike', u'incent', u'alp', u'agenda'] [u'bush', u'support', u'critic', u'iraq', u'polici'] [u'bushwalk', u'schoolgirl', u'stumbl', u'remain'] [u'busi', u'welcom', u'snow'] [u'cabl', u'sand', u'plan', u'bunburi', u'boost'] [u'call', u'continu', u'dedic', u'riverina', u'murray'] [u'canberra', u'develop', u'plan', u'revitalis', u'area'] [u'care', u'seek', u'shoalhaven', u'children'] [u'chamber', u'want', u'opposit', u'commit'] [u'children', u'warn', u'heart', u'health'] [u'child', u'surviv', u'day', u'jungl'] [u'china', u'join', u'formula', u'famili'] [u'chinchilla', u'power', u'station', u'worker', u'camp'] [u'circular', u'head', u'council', u'renew', u'partnership', u'deal'] [u'clash', u'hamper', u'effort', u'sudan'] [u'clijster', u'plan', u'belgian', u'return'] [u'prefer', u'labor'] [u'cooper', u'basin', u'open', u'explor'] [u'cooper', u'basin', u'top', u'energi', u'explor'] [u'council', u'alter', u'hous', u'polici'] [u'council', u'meet', u'consid', u'hospit', u'plan'] [u'council', u'hold', u'clark', u'hill', u'wind', u'farm', u'talk'] [u'court', u'hear', u'differ', u'meninga', u'brawl', u'account'] [u'cowboy', u'rid', u'high', u'contain', u'bronco'] [u'custom', u'break', u'anim', u'smuggl', u'ring'] [u'date', u'falconio', u'murder', u'trial'] [u'dead', u'aid', u'murder', u'probe'] [u'delay', u'femal', u'priest', u'vote'] [u'democrat', u'welcom', u'suggest', u'nation', u'water'] [u'chang', u'yield', u'arrest', u'rann'] [u'document', u'hold', u'sydney', u'locat'] [u'doubt', u'cast', u'mental', u'health', u'plan'] [u'doubt', u'remain', u'north', u'korean', u'explos'] [u'eagl', u'west', u'claim', u'premiership'] [u'effort', u'continu', u'contain', u'kimberley', u'fire'] [u'emmi', u'award', u'winner'] [u'energi', u'miner', u'drive', u'record', u'export', u'earn'] [u'england', u'break', u'aussi', u'stranglehold', u'claim', u'gough'] [u'errant', u'bird', u'ground', u'virgin', u'plane'] [u'timor', u'australia', u'talk', u'product'] [u'expo', u'highlight', u'emerg', u'servic', u'work'] [u'consid', u'bin'] [u'final', u'loser', u'add', u'kangaroo', u'squad'] [u'destroy', u'aborigin', u'embassi'] [u'flower', u'carniv', u'bloom', u'success'] [u'forestri', u'specul', u'unsettl', u'investor', u'gunn'] [u'mayor', u'deni', u'connect', u'perth', u'serial'] [u'french', u'cautious', u'optimist', u'hostag', u'news'] [u'gallop', u'pleas', u'rein', u'water'] [u'gate', u'mishap', u'put', u'girl', u'hospit'] [u'geelong', u'johnson', u'tribun', u'charg'] [u'make', u'diabet', u'treatment', u'easier', u'swallow'] [u'gisborn', u'die', u'crash'] [u'govern', u'accus', u'educ', u'review', u'delay'] [u'govern', u'boost', u'mine', u'sector'] [u'govt', u'indigen', u'repres'] [u'govt', u'seek', u'feedback', u'retir', u'home', u'law'] [u'govt', u'toughen', u'fertilis', u'control'] [u'green', u'group', u'feel', u'chipper', u'log', u'protest'] [u'green', u'forc', u'doubl', u'dissolut', u'lee'] [u'green', u'undecid', u'prefer'] [u'green', u'prefer', u'paterson'] [u'hama', u'fire', u'isra', u'strike'] [u'hama', u'threaten', u'aveng', u'liquid'] [u'edg', u'kane', u'lpga', u'play'] [u'hang', u'glider', u'pilot', u'hurt', u'rough', u'weather'] [u'come', u'emmi'] [u'health', u'offici', u'deni', u'whistleblow', u'sack', u'claim'] [u'high', u'court', u'reject', u'qanta', u'allianc'] [u'histor', u'scrapbook', u'donat'] [u'hockeyroo', u'rebuild', u'athen', u'failur'] [u'hostag', u'claim', u'like', u'hoax'] [u'hotel', u'rwanda', u'win', u'heart', u'toronto', u'film', u'festiv'] [u'howard', u'pledg', u'million', u'upgrad', u'darwin'] [u'huge', u'crowd', u'expect', u'mcgrane', u'funer'] [u'hundr', u'hospit', u'matern', u'servic'] [u'hundr', u'farewel', u'richard'] [u'iaea', u'team', u'resum', u'investig', u'south', u'korea'] [u'increas', u'crime', u'train', u'caus', u'concern'] [u'independ', u'fear', u'ballot', u'paper', u'confus'] [u'indian', u'satellit', u'connect', u'remot', u'classroom'] [u'indian', u'look', u'ahead', u'australia', u'challeng'] [u'injuri', u'cloud', u'panther', u'trio'] [u'inquiri', u'tell', u'model', u'fail', u'predict', u'bushfir'] [u'irrig', u'group', u'get', u'voic'] [u'duti', u'protect', u'son', u'latham'] [u'jagger', u'win', u'humanitarian', u'award'] [u'johnson', u'tempt', u'lion', u'tour'] [u'judd', u'lead', u'halfway', u'point'] [u'judd', u'win', u'brownlow', u'medal'] [u'juventus', u'pace', u'itali'] [u'kwinana', u'polic', u'offic', u'reloc'] [u'labor', u'plan', u'battalion', u'townsvill'] [u'labor', u'promis', u'phone', u'rental', u'freez'] [u'labor', u'promis', u'plastic'] [u'labor', u'promis', u'boost', u'public', u'transport'] [u'latham', u'back', u'cinderella', u'stori', u'cowboy'] [u'latham', u'request', u'branch', u'stack', u'candid'] [u'latham', u'patch', u'styx', u'fell'] [u'launceston', u'mayor', u'tell', u'council', u'focus'] [u'lennon', u'open', u'north', u'west', u'tourism', u'ventur'] [u'lethal', u'back', u'riewoldt', u'brownlow'] [u'liber', u'branch', u'favour', u'green', u'vote', u'card'] [u'loxton', u'school', u'rid', u'high', u'pedal', u'prix'] [u'magistr', u'jail', u'offenc'] [u'jail', u'kill', u'neighbour'] [u'trial', u'aunt', u'murder'] [u'market', u'slow', u'record'] [u'megawati', u'confid', u'poll', u'close'] [u'mello', u'break', u'florida'] [u'meninga', u'fight', u'videotap', u'eras'] [u'milit', u'behead', u'afghan', u'soldier'] [u'minist', u'defend', u'ausaid', u'fund', u'effort'] [u'minist', u'defend', u'waterfront', u'effort'] [u'minist', u'fall', u'timber', u'job', u'chop', u'union'] [u'miss', u'see', u'bundaberg'] [u'modra', u'take', u'paralymp', u'gold'] [u'money', u'tasmanian', u'health', u'napier'] [u'mother', u'call', u'son', u'transfer'] [u'moura', u'plan', u'deal', u'attract', u'doctor'] [u'accus', u'govt', u'freez', u'indigen', u'fund'] [u'reject', u'alleg', u'post', u'seat', u'offer'] [u'say', u'labor', u'promis'] [u'navi', u'hunt', u'darwin', u'seahors'] [u'law', u'ensur', u'crime', u'doesnt'] [u'delay', u'zimbabw', u'racism', u'hear'] [u'injuri', u'concern', u'port'] [u'nois', u'summit', u'brisban'] [u'plan', u'iraq', u'deploy', u'say'] [u'poll', u'start'] [u'price', u'rise', u'yuko', u'slow', u'export'] [u'opposit', u'back', u'stay', u'sydney', u'airport'] [u'orphan', u'polar', u'bear', u'gold', u'coast', u'home'] [u'parent', u'group', u'concern', u'labor', u'school', u'polici'] [u'personalis', u'medicin', u'studi', u'launch'] [u'photojournalist', u'eddi', u'adam', u'die', u'age'] [u'pilbara', u'take', u'polic', u'academi', u'posit'] [u'polic', u'charg', u'rave', u'drug', u'bust'] [u'polic', u'hunt', u'dairi', u'farm', u'vandal'] [u'polic', u'hunt', u'home', u'invad'] [u'polic', u'investig', u'north', u'sydney', u'stab'] [u'polic', u'swoop', u'copi', u'dvds'] [u'polic', u'interview', u'disgrac'] [u'power', u'look', u'experi', u'perform'] [u'emptiv', u'strike', u'undermin', u'cooper'] [u'pregnant', u'woman', u'forc', u'return', u'husband'] [u'pressur', u'mount', u'health', u'servic', u'rethink'] [u'priest', u'face', u'court', u'rwandan', u'massacr'] [u'prison', u'step', u'closer', u'govt', u'say'] [u'probe', u'launch', u'cairn', u'brawl'] [u'public', u'urg', u'health', u'council'] [u'qanta', u'rule', u'allianc', u'appeal'] [u'race', u'driver', u'kill', u'crash'] [u'real', u'coach', u'camacho', u'quit'] [u'resid', u'form', u'anti', u'biodiesel', u'plant', u'strategi'] [u'feel', u'airport', u'squeez'] [u'termin', u'claim', u'scaremong', u'airport'] [u'saddam', u'distraught', u'depress'] [u'saddam', u'trial', u'like', u'month'] [u'sadr', u'call', u'releas', u'hostag'] [u'safin', u'end', u'year', u'wait', u'beij', u'kuznetsova'] [u'prison', u'diseas', u'prevent', u'scrutini'] [u'sawmil', u'propos', u'nativ', u'forest', u'clear'] [u'school', u'share', u'secur', u'boost'] [u'shake', u'plan', u'jail', u'staff', u'level'] [u'shark', u'poacher', u'plead', u'guilti'] [u'shark', u'net', u'suspect', u'seal', u'declin'] [u'sheep', u'fee', u'accus', u'seek', u'trial', u'chang'] [u'south', u'african', u'rugbi', u'athen', u'storm'] [u'strict', u'bail', u'condit', u'jail', u'magistr'] [u'sunni', u'cleric', u'kill', u'baghdad'] [u'survey', u'highlight', u'need', u'belt'] [u'survey', u'highlight', u'tougher', u'tourism', u'market'] [u'suspend', u'vanuatu', u'command', u'arrest', u'replac'] [u'tackl', u'terror', u'latham', u'agenda'] [u'taiwan', u'rang', u'china', u'test', u'cruis', u'missil'] [u'team', u'celebr', u'weekend', u'final', u'success'] [u'teenag', u'charg', u'attack', u'boy'] [u'thousand', u'mourn', u'mcgrane'] [u'year', u'jail', u'greedi', u'thief'] [u'tibooburra', u'name', u'communiti'] [u'timber', u'group', u'appeal', u'chip', u'reject'] [u'bear', u'defenc', u'secur', u'grand', u'final'] [u'tour', u'oper', u'reject', u'market', u'campaign'] [u'transperth', u'servic', u'suspend', u'union', u'meet'] [u'tredrea', u'lead', u'brownlow', u'bet'] [u'troop', u'free', u'jordanian', u'hostag', u'iraq'] [u'tropic', u'storm', u'pound', u'haiti'] [u'turkish', u'truck', u'driver', u'target', u'iraq'] [u'arrest', u'anti', u'nuclear', u'protest'] [u'gather', u'discuss', u'hunger', u'poverti'] [u'univers', u'benefit', u'liber'] [u'univers', u'reopen', u'despit', u'hail', u'damag'] [u'look', u'restor', u'pride', u'davi'] [u'vaccin', u'offer', u'hope', u'cancer', u'patient'] [u'vandal', u'target', u'shepparton', u'firm'] [u'video', u'footag', u'help', u'catch', u'cracker', u'starter'] [u'accid', u'leav', u'burn'] [u'wilkinson', u'kick', u'newcastl'] [u'winemak', u'garrett', u'evict'] [u'woman', u'die', u'picton', u'crash'] [u'work', u'begin', u'robinval', u'euston', u'bridg'] [u'year', u'student', u'quiz', u'school', u'fund'] [u'yudhoyono', u'eye', u'presid', u'count', u'begin'] [u'yudhoyono', u'lead', u'indonesian', u'vote'] [u'zahra', u'reject', u'call', u'resign', u'vote', u'blunder'] [u'year', u'jail', u'murder', u'arson'] [u'kill', u'haiti', u'storm'] [u'aborigin', u'seek', u'consult', u'forest', u'debat'] [u'chang', u'allow', u'transfer', u'norfolk'] [u'unveil', u'grand', u'final', u'umpir'] [u'gain', u'grind', u'poll'] [u'boost', u'bioterror', u'prevent'] [u'alzheim', u'librari', u'support', u'carer'] [u'artist', u'rais', u'fund', u'hous', u'collect'] [u'asic', u'investig', u'jam', u'hardi', u'breach'] [u'atkinson', u'deni', u'elect', u'interfer', u'claim'] [u'aussi', u'cyclist', u'blitz', u'paralymp', u'field'] [u'aust', u'terror', u'fear', u'prioriti'] [u'author', u'investig', u'coober', u'pedi', u'mine', u'death'] [u'award', u'recognis', u'timber', u'plantat', u'pioneer'] [u'babi', u'quoll', u'lithgow', u'home'] [u'beazley', u'question', u'emptiv', u'strike', u'polici'] [u'beer', u'leav', u'bitter', u'tast'] [u'blair', u'monitor', u'iraq', u'kidnap'] [u'blood', u'test', u'predict', u'diabet', u'heart', u'diseas', u'risk'] [u'boss', u'starcraft', u'plate', u'decis'] [u'branch', u'stack', u'claim', u'credibl', u'latham'] [u'brazilian', u'miss', u'qlds', u'highest', u'peak'] [u'brownlow', u'winner', u'judd', u'stick', u'eagl'] [u'bundaberg', u'local', u'win', u'award'] [u'driver', u'stab', u'chines', u'children'] [u'bush', u'kerri', u'agre', u'elect', u'debat'] [u'bush', u'lift', u'libyan', u'trade', u'embargo'] [u'joint', u'care'] [u'camera', u'offer', u'insight', u'condit'] [u'candid', u'forum', u'highlight', u'educ', u'issu'] [u'explod', u'baghdad'] [u'cash', u'strap', u'candid', u'can', u'campaign'] [u'dupe', u'bush', u'militari', u'memo'] [u'china', u'resum', u'live', u'export', u'middl', u'east'] [u'chines', u'ship', u'jumper', u'custodi'] [u'coast', u'forg', u'china', u'trade', u'link'] [u'coast', u'tourism', u'chief', u'quit'] [u'promis', u'log', u'fight'] [u'corbel', u'hail', u'wait', u'list', u'cut'] [u'council', u'await', u'report', u'choos', u'bathhous'] [u'council', u'consid', u'futur', u'growth'] [u'council', u'clear', u'smoke', u'enforc'] [u'council', u'urg', u'return', u'supercar', u'race'] [u'council', u'subdivis', u'snub'] [u'council', u'post', u'decis', u'letterbox'] [u'crackdown', u'seek', u'crook'] [u'cranebrook', u'sell', u'break', u'promis'] [u'crop', u'contamin', u'seed', u'scandal'] [u'debat', u'consid', u'matur', u'educ', u'cut'] [u'defenc', u'work', u'promis', u'newcastl', u'job', u'boost'] [u'democrat', u'want', u'school', u'voluntari', u'fee', u'abolish'] [u'disqualifi', u'driver', u'petit', u'governor'] [u'doctor', u'bolster', u'south', u'west', u'health'] [u'doubl', u'entendr', u'arous', u'regul'] [u'earli', u'morn', u'mackay', u'brisban', u'flight'] [u'elector', u'roll', u'rort', u'ignor', u'claim', u'senat'] [u'embassi', u'bomb', u'suspect', u'custodi'] [u'england', u'toss', u'bowl', u'australia'] [u'entri', u'seek', u'design', u'rural', u'learn', u'centr'] [u'european', u'hail', u'latest', u'data', u'mar'] [u'exit', u'dampen', u'hous', u'market'] [u'farmer', u'urg', u'avoid', u'fever'] [u'farm', u'product', u'scheme', u'aim', u'right', u'match'] [u'fear', u'isol', u'famili', u'leav', u'educ'] [u'forest', u'misinform', u'influenc'] [u'forum', u'put', u'reconcili', u'spotlight'] [u'forum', u'discuss', u'highway', u'bypass', u'flood'] [u'fulham', u'charg', u'west', u'brom', u'brawl'] [u'fund', u'lifelin', u'cooma', u'busi', u'centr'] [u'gambl', u'initi', u'earn', u'prais'] [u'game', u'take', u'prostat', u'cancer'] [u'german', u'worri', u'nazi', u'parti', u'support'] [u'ghost', u'ship', u'landfil'] [u'gippsland', u'green', u'declin', u'prefer', u'deal'] [u'gorg', u'galaxi', u'aid', u'format', u'studi'] [u'govt', u'urg', u'provid', u'indian', u'ocean', u'drive', u'fund'] [u'grain', u'compani', u'merger', u'benefit', u'grower'] [u'grazier', u'get', u'tree', u'clear', u'fine'] [u'group', u'want', u'upgrad', u'dead', u'highway'] [u'gutnick', u'share', u'sale', u'rule', u'uphold'] [u'hanson', u'lodg', u'complaint', u'unfair', u'ballot'] [u'hardi', u'execut', u'breach', u'corpor'] [u'hart', u'unsur', u'play', u'futur'] [u'home', u'invad', u'jail', u'year'] [u'hope', u'adopt', u'fluid', u'fertilis'] [u'hope', u'weather', u'bushfir', u'fight'] [u'hostag', u'famili', u'seek', u'blair', u'intervent'] [u'howard', u'pledg', u'reef', u'research', u'fund'] [u'howard', u'announc', u'reef', u'packag'] [u'howard', u'sniff', u'labor', u'polici'] [u'ill', u'forc', u'hand', u'rear', u'cheetah', u'cub'] [u'independ', u'say', u'nation', u'pressur'] [u'indian', u'claim', u'australia', u'pull', u'tour'] [u'indigen', u'claimant', u'sign', u'deal'] [u'indonesian', u'vote', u'chang'] [u'injuri', u'end', u'hogg', u'trophi'] [u'iran', u'convert', u'uranium', u'offici', u'say'] [u'iraqi', u'milit', u'behead', u'hostag'] [u'jam', u'hardi', u'ask', u'halt', u'share', u'trade'] [u'jam', u'hardi', u'inquiri', u'find', u'releas'] [u'japanes', u'discoveri', u'help', u'combat', u'diseas'] [u'offer', u'crime', u'say'] [u'journal', u'expert', u'moot', u'press', u'logo'] [u'judg', u'recommend', u'arsonist', u'meet', u'victim'] [u'kerri', u'slam', u'bush', u'coloss', u'failur', u'iraq'] [u'kidnap', u'babi', u'father', u'face', u'drug', u'charg'] [u'kiwi', u'dump', u'mcmillan'] [u'knock', u'scent', u'ghost', u'fear'] [u'labor', u'await', u'costello', u'plan', u'critiqu'] [u'labor', u'instal', u'ravlich', u'gallop', u'govern'] [u'labor', u'make', u'stand', u'eureka', u'centr'] [u'labor', u'saliv', u'hang', u'parliament'] [u'landhold', u'pipelin', u'rout'] [u'langer', u'hail', u'overwhelm', u'ryder'] [u'late', u'recoveri', u'leav', u'market', u'black'] [u'legal', u'action', u'solut', u'safeti', u'labor'] [u'liber', u'better', u'prison', u'support'] [u'libya', u'welcom', u'trade', u'sanction'] [u'magistr', u'leav', u'violenc', u'order'] [u'malaysia', u'reject', u'howard', u'terror', u'plan'] [u'stand', u'trial', u'fatal', u'spear'] [u'maradona', u'leav', u'cuba'] [u'maroochi', u'lifeguard'] [u'meninga', u'stand', u'trial', u'assault', u'charg'] [u'milit', u'extend', u'execut', u'deadlin'] [u'creditor', u'urg', u'payout', u'deal'] [u'group', u'unfaz', u'goldfield', u'return'] [u'minist', u'defend', u'polic', u'staff', u'level'] [u'mitchel', u'hoil', u'wallabi'] [u'molik', u'slip'] [u'monitor', u'brand', u'indonesian', u'vote', u'honest'] [u'dead', u'fish', u'waterway'] [u'port', u'arthur', u'tap', u'like', u'polic'] [u'support', u'urg', u'wine', u'oper', u'plan'] [u'work', u'urg', u'power', u'facil'] [u'attack', u'water', u'impact'] [u'musician', u'valley', u'entertain', u'zone'] [u'nation', u'park', u'fuel', u'reduct', u'burn', u'underway'] [u'neighbour', u'weigh', u'emptiv', u'strike', u'debat'] [u'attack', u'afghan', u'leadership'] [u'hospit', u'manag', u'focus', u'staff'] [u'bail', u'kidnap', u'charg'] [u'rift', u'camacho', u'player', u'say', u'beckham'] [u'research', u'help', u'address', u'child', u'abus'] [u'price', u'dampen', u'wall', u'trade'] [u'opal', u'agreement', u'pave', u'mine'] [u'page', u'candid', u'elect', u'forum'] [u'palestinian', u'farmer', u'injur', u'alleg', u'attack'] [u'palestinian', u'gunmen', u'kill', u'suspect', u'inform'] [u'palestinian', u'arrest', u'jenin', u'raid'] [u'paralympian', u'follow', u'bronz', u'silver'] [u'parent', u'lament', u'librari', u'demis'] [u'parent', u'away', u'meningococc', u'vaccin'] [u'parent', u'urg', u'vote', u'educ', u'chang'] [u'park', u'oper', u'welcom', u'wast', u'dispos', u'facil'] [u'parrot', u'seiz', u'custom', u'raid'] [u'partnership', u'target', u'stanley', u'tourism', u'potenti'] [u'peopl', u'smuggler', u'jail'] [u'ping', u'ping', u'leav', u'coast', u'china', u'olymp', u'role'] [u'playstat', u'get', u'makeov'] [u'deni', u'knowledg', u'alleg', u'elector', u'bribe'] [u'reassur', u'neighbour', u'emptiv', u'strike'] [u'polic', u'seiz', u'gun'] [u'polic', u'warn', u'footi', u'fan', u'behav', u'road'] [u'pont', u'back', u'pace', u'blitz'] [u'pont', u'ignor', u'england', u'hype'] [u'pool', u'death', u'prompt', u'swim', u'star', u'campaign'] [u'port', u'author', u'face', u'flinder', u'truck'] [u'probe', u'urg', u'region', u'develop', u'board'] [u'public', u'servant', u'ralli', u'collect', u'bargain'] [u'putin', u'call', u'resumpt', u'north', u'korea', u'nuclear', u'talk'] [u'rabbi', u'escap', u'charg', u'curs', u'isra', u'leader'] [u'real', u'estat', u'institut', u'reform', u'price', u'record'] [u'rescu', u'chopper', u'return', u'servic'] [u'resid', u'voic', u'opposit', u'warner', u'plan'] [u'unhappi', u'airport', u'termin', u'offer'] [u'rspca', u'aim', u'address', u'shelter', u'misconcept'] [u'russia', u'begin', u'beslan', u'investig'] [u'rwanda', u'genocid', u'priest', u'trial'] [u'sadr', u'support', u'releas', u'hostag'] [u'sanfl', u'player', u'charg', u'hopoat', u'style', u'incid'] [u'scientist', u'hop', u'sar', u'cure'] [u'search', u'continu', u'miss', u'murder', u'weapon'] [u'ship', u'desert', u'deport'] [u'silver', u'citi', u'forgo', u'sunday'] [u'silvestr', u'doubl', u'sink', u'liverpool', u'return'] [u'charg', u'gosford', u'attack'] [u'soak', u'build', u'remain', u'limit', u'student'] [u'staff', u'stand', u'asid', u'mental', u'hospit', u'abus', u'probe'] [u'stanhop', u'dismiss', u'liber', u'food', u'festiv', u'plan'] [u'support', u'super', u'school', u'plan'] [u'syria', u'coordin', u'lebanon', u'redeploy'] [u'pub', u'smoke', u'free'] [u'thousand', u'tip', u'flock', u'field', u'day'] [u'tougher', u'limit', u'cigarett', u'sale', u'expect'] [u'tragic', u'rest', u'wrong', u'tree', u'wrong', u'time'] [u'tribut', u'pour', u'legendari', u'manag', u'clough'] [u'truss', u'agricultur', u'dept', u'claim', u'fanci'] [u'turkish', u'compani', u'suspend', u'activ', u'iraq'] [u'sharehold', u'approv', u'grain', u'merger'] [u'beg', u'releas', u'hostag'] [u'undercov', u'polic', u'target', u'scalper'] [u'union', u'campaign', u'margin'] [u'univers', u'split', u'medic', u'school'] [u'urg', u'action', u'child', u'abus'] [u'arrest', u'sadr', u'aid'] [u'tackl', u'anti', u'muslim', u'percept', u'musharraf'] [u'sell', u'israel', u'bunker', u'buster'] [u'verdict', u'date', u'zimbabw', u'treason', u'case'] [u'terror', u'tackl', u'child', u'abus', u'say'] [u'water', u'wont', u'itemis', u'bill'] [u'wentworth', u'candid', u'focus', u'log'] [u'windsor', u'prepar', u'briber'] [u'wolfenden', u'follow', u'bronz', u'silver'] [u'woman', u'fall', u'window'] [u'women', u'bishop', u'plan', u'expect', u'face', u'opposit'] [u'workshop', u'look', u'bolster', u'backpack', u'number'] [u'wrong', u'classif', u'cost', u'iranian', u'paralymp', u'gold'] [u'boost', u'defenc', u'technolog'] [u'nelson', u'build', u'get', u'plan'] [u'slash', u'china', u'internet', u'cafe'] [u'accc', u'pursu', u'decept', u'salesman'] [u'acupunctur', u'help', u'eas', u'post', u'surgic', u'ill'] [u'announc', u'rise', u'offici', u'figur'] [u'defend', u'staffer', u'union', u'elect', u'claim'] [u'urg', u'draft', u'domest', u'violenc'] [u'alcohol', u'foundat', u'open', u'facil'] [u'promis', u'bushfir', u'repair'] [u'qaeda', u'leader', u'grant', u'tourist', u'visa'] [u'back', u'hospit', u'manag', u'appoint'] [u'ambul', u'review', u'restor', u'credibl'] [u'anasta', u'dog', u'lewi', u'panther'] [u'anderson', u'step', u'nation', u'lose', u'seat'] [u'anderson', u'warn', u'tight', u'elect'] [u'angler', u'seek', u'reef', u'rezon', u'review'] [u'arafat', u'deserv', u'sharon'] [u'arsenal', u'confid', u'keep', u'wenger'] [u'artefact', u'stoush', u'prompt', u'legal', u'threat'] [u'asic', u'begin', u'jam', u'hardi', u'investig'] [u'audit', u'find', u'govt', u'fee', u'excess'] [u'australian', u'hostag', u'team', u'remain', u'iraq'] [u'australian', u'jaqu', u'sign', u'yorkshir'] [u'australia', u'qaeda', u'proof', u'ruddock'] [u'author', u'miss', u'woman', u'safe'] [u'baghdad', u'bomb', u'kill'] [u'bali', u'remark', u'spark', u'dump', u'candid'] [u'ballarat', u'atop', u'gold'] [u'barrichello', u'readi', u'finish', u'season', u'high', u'note'] [u'beatti', u'await', u'feder', u'pipelin', u'pledg'] [u'beckham', u'give', u'real', u'win', u'start', u'regim'] [u'beckham', u'tabloid'] [u'bigger', u'push', u'promot', u'western'] [u'parti', u'urg', u'cultiv', u'rural', u'vote'] [u'blue', u'chip', u'drive', u'market', u'record'] [u'brack', u'urg', u'coalit', u'match', u'cancer', u'fund'] [u'builder', u'urg', u'renov', u'seek', u'advic'] [u'build', u'union', u'criticis', u'howard', u'apprentic', u'plan'] [u'bulldog', u'sweat', u'anasta', u'fit'] [u'bureaucrat', u'blame', u'graze'] [u'bush', u'call', u'israel', u'freez', u'settlement'] [u'busi', u'fear', u'bypass', u'impact'] [u'busi', u'role', u'child', u'abus', u'fight', u'expert'] [u'busi', u'honour', u'coast', u'professor'] [u'mental', u'health', u'fund', u'boost'] [u'cambodia', u'find', u'fresh', u'bird', u'case'] [u'canunda', u'wind', u'farm', u'take', u'shape'] [u'capel', u'receiv', u'warn', u'posit', u'test'] [u'carr', u'contempt', u'avoid', u'charg'] [u'carr', u'leav', u'countri', u'ahead', u'icac', u'rule'] [u'castro', u'back', u'maradona', u'drug', u'battl'] [u'steven', u'deni', u'entri'] [u'investig', u'improprieti', u'claim'] [u'child', u'offend', u'track', u'trial'] [u'china', u'awash', u'wast'] [u'china', u'begin', u'olymp', u'countdown'] [u'claim', u'free', u'scientist', u'reject'] [u'cleaner', u'reach', u'contract', u'agreement'] [u'cole', u'myer', u'sale', u'drive', u'record', u'profit'] [u'compani', u'detail', u'iron', u'project', u'impact'] [u'concern', u'air', u'rail', u'line', u'futur'] [u'costello', u'find', u'raft', u'error', u'plan'] [u'council', u'back', u'ethanol', u'blend', u'fuel'] [u'council', u'ban', u'bondi', u'butt'] [u'council', u'hear', u'methadon', u'clinic', u'worri'] [u'councillor', u'urg', u'heed', u'rate', u'rise', u'concern'] [u'council', u'plan', u'main', u'revamp'] [u'council', u'seek', u'confirm', u'nylex', u'expans'] [u'council', u'welcom', u'rate', u'rise', u'question'] [u'court', u'case', u'rais', u'tree', u'clear', u'permit', u'fear'] [u'crash', u'highway', u'leav', u'dead'] [u'darwin', u'record', u'coolest', u'septemb', u'night'] [u'deadlin', u'approach', u'retail', u'law', u'review'] [u'delay', u'alzheim', u'onset', u'save', u'billion'] [u'democrat', u'focus', u'vocat', u'train', u'cost'] [u'democrat', u'focus', u'seachang'] [u'owner', u'warn', u'tick', u'outbreak'] [u'dont', u'write', u'panther', u'girdler'] [u'drink', u'drive', u'bill', u'referr', u'anger', u'mcginti'] [u'drug', u'summit', u'show', u'communiti', u'concern', u'leader'] [u'east', u'timor', u'australia', u'near', u'boundari', u'agreement'] [u'eden', u'forum', u'discuss', u'indigen', u'book'] [u'elect', u'pledg', u'surpris', u'say'] [u'emerg', u'confus', u'caus', u'rescu'] [u'emus', u'launch', u'revamp', u'servic'] [u'epidem', u'prompt', u'dialysi', u'fund', u'plea'] [u'timor', u'protest', u'warship', u'intrus'] [u'farmer', u'remind', u'powerlin', u'hazard'] [u'fear', u'mount', u'tourist', u'remain', u'miss'] [u'feder', u'poll', u'spook', u'forestri', u'lender'] [u'figur', u'highlight', u'alcohol', u'relat', u'crime'] [u'fiji', u'threaten', u'quit', u'island', u'tour'] [u'hamper', u'accid', u'clean'] [u'fisheri', u'revis', u'lobster'] [u'footi', u'season', u'end', u'fewer', u'player', u'misconduct'] [u'bardot', u'manag', u'win', u'damag', u'dismiss'] [u'detect', u'rogerson', u'collaps'] [u'franc', u'host', u'festiv', u'australian'] [u'frost', u'leav', u'farmer', u'plead', u'compass'] [u'fulham', u'fine', u'cole', u'diop', u'west', u'brom', u'brawl'] [u'galleri', u'extend', u'hour', u'minut', u'rush'] [u'gerrard', u'month', u'break', u'foot'] [u'gladston', u'hear', u'china', u'alumina', u'opportun'] [u'gold', u'coast', u'settlement', u'nation', u'park'] [u'goulburn', u'water', u'suppli', u'run'] [u'govt', u'move', u'strip', u'theophan', u'super'] [u'govt', u'pledg', u'motor', u'sport'] [u'govt', u'allow', u'death', u'sentenc', u'extradit', u'say'] [u'green', u'target', u'privat', u'school'] [u'hairi', u'competit', u'honour', u'german', u'explor'] [u'haiti', u'mourn', u'storm', u'victim'] [u'heat', u'hurt', u'wimmera', u'malle', u'crop'] [u'helicopt', u'carri', u'politician', u'crash', u'east'] [u'tech', u'court', u'plan', u'high', u'profil', u'trial'] [u'horan', u'join', u'wallabi', u'select', u'team'] [u'hostag', u'team', u'leav', u'middl', u'east'] [u'howard', u'deni', u'health', u'polici', u'vote'] [u'howard', u'urg', u'older', u'australian', u'work'] [u'vote', u'card', u'spark', u'confus'] [u'icac', u'prepar', u'carr', u'contempt', u'rule'] [u'illawarra', u'group', u'welcom', u'jam', u'hardi', u'report'] [u'independ', u'school', u'fear', u'mediocr'] [u'indian', u'cricket', u'deal', u'fall'] [u'indian', u'cricket', u'right', u'deal', u'fall'] [u'india', u'final', u'frontier', u'australia', u'langer'] [u'indigen', u'communiti', u'burn'] [u'indonesian', u'presidenti', u'hope', u'plan', u'peac', u'aceh'] [u'injur', u'tendulkar', u'miss', u'australian', u'seri'] [u'internet', u'messag', u'renew', u'hostag', u'threat'] [u'iraqi', u'hand', u'bodi', u'embassi'] [u'irrig', u'say', u'murray', u'health', u'improv'] [u'jam', u'hardi', u'asbesto', u'report', u'bring', u'mix', u'feel'] [u'japan', u'push', u'perman', u'secur', u'council'] [u'jockey', u'club', u'face', u'racecours', u'sale', u'critic'] [u'jordanian', u'hostag', u'releas', u'iraq'] [u'kean', u'charg', u'assault'] [u'kidnap', u'babi', u'father', u'refus', u'bail'] [u'knowl', u'take', u'whistleblow', u'claim', u'serious'] [u'labor', u'offer', u'hospit', u'cancer', u'centr'] [u'latham', u'promis', u'hospit'] [u'liber', u'return', u'hardi', u'donat'] [u'lion', u'port', u'final', u'prepar'] [u'lion', u'power', u'complet', u'home', u'prepar'] [u'lion', u'readi', u'histori'] [u'local', u'solut', u'urg', u'creat', u'reconcili'] [u'extradit', u'face', u'theft', u'charg'] [u'market', u'welcom', u'rate', u'increas'] [u'mayor', u'reject', u'council', u'complaint', u'list'] [u'mayor', u'unhappi', u'complaint', u'rank'] [u'mcdonald', u'move', u'kangaroo'] [u'mcrae', u'plan', u'council', u'return'] [u'partner', u'face', u'parliamentari', u'committe'] [u'minist', u'tell', u'justic', u'centr', u'assault'] [u'minist', u'unhappi', u'state', u'senior'] [u'moder', u'locust', u'outbreak', u'predict'] [u'modra', u'continu', u'athen', u'charg'] [u'modra', u'continu', u'paralymp', u'charg'] [u'morrocan', u'prepar', u'huge', u'challeng'] [u'motorcyclist', u'die', u'highway', u'crash'] [u'reject', u'claim', u'super', u'school', u'snub'] [u'nation', u'accus', u'intent', u'bribe'] [u'estat', u'law'] [u'look', u'capit', u'readi', u'wnbl', u'season'] [u'pilot', u'train', u'cours'] [u'nickel', u'produc', u'share', u'price', u'take'] [u'experi', u'better', u'costello'] [u'forest', u'polici', u'prefer', u'brown'] [u'opposit', u'enter', u'wrangl'] [u'parmalat', u'eye', u'stock', u'exchang', u'list'] [u'parti', u'pressur', u'return', u'hardi', u'donat'] [u'penguin', u'kill', u'leav', u'resid', u'fear'] [u'penguin', u'murder', u'investig', u'continu'] [u'phelp', u'go', u'gold', u'shortcours', u'champ'] [u'philippin', u'deleg', u'consid', u'council', u'valuat'] [u'pilot', u'blame', u'canberra', u'scare', u'bureau'] [u'ask', u'immigr', u'centr', u'open'] [u'polic', u'fear', u'jakarta', u'bomber', u'capabl', u'strike'] [u'polic', u'hunt', u'serial', u'offend'] [u'polic', u'minist', u'crack', u'privat'] [u'polic', u'focus', u'alcohol', u'relat', u'crime'] [u'polic', u'recov', u'bodi', u'miss', u'woman'] [u'polic', u'hold', u'inaugur', u'confer', u'centr', u'function'] [u'pont', u'back', u'england', u'champion', u'trophi'] [u'premier', u'defer', u'report', u'energex', u'chief', u'death'] [u'public', u'welcom', u'greater', u'polic', u'presenc'] [u'qanta', u'confirm', u'canberra', u'incid'] [u'rail', u'line', u'report', u'public'] [u'rann', u'back', u'hardi', u'boycott'] [u'rescuer', u'train', u'possibl'] [u'retail', u'oppos', u'market', u'power', u'limit'] [u'ridgeway', u'moot', u'hanson', u'hold', u'balanc', u'power'] [u'rivkin', u'complet', u'jail', u'term', u'block'] [u'roof', u'collaps', u'newcastl', u'student'] [u'erupt', u'paralymp', u'final'] [u'russia', u'consid', u'terror', u'law'] [u'jockey', u'club', u'face', u'racecours', u'sale', u'critic'] [u'scienc', u'minist', u'catch', u'graze', u'licenc'] [u'level', u'rise', u'glacier', u'escap', u'shelv'] [u'trial', u'threaten', u'pitcairn', u'island'] [u'shadow', u'accus', u'inappropri', u'behaviour'] [u'shire', u'seek', u'retain', u'ward', u'structur'] [u'short', u'cours', u'champ', u'showcas', u'olymp', u'medallist'] [u'sierra', u'leon', u'deni', u'bail', u'aust', u'policeman'] [u'skydiv', u'death', u'investig'] [u'speed', u'lead', u'polic', u'cannabi', u'haul'] [u'spread', u'grass', u'rais', u'fear', u'crossbre'] [u'student', u'rescu', u'mountain', u'fall'] [u'support', u'show', u'homeless', u'youth', u'scheme'] [u'taiwanes', u'urg', u'arm'] [u'tasmanian', u'smoke', u'australian'] [u'teenag', u'tri', u'adult', u'road', u'death'] [u'thiess', u'govt', u'talk', u'port', u'delay'] [u'tiger', u'withdraw', u'event', u'ryder', u'flop'] [u'timber', u'crucial', u'prosper', u'tasmania', u'lennon'] [u'tourism', u'campaign', u'grampian', u'spotlight'] [u'tourism', u'chief', u'upbeat', u'futur'] [u'travolta', u'autobiographi'] [u'tszyu', u'line', u'titl', u'showdown'] [u'road', u'crash'] [u'uefa', u'come', u'hard', u'roma'] [u'union', u'expect', u'jam', u'hardi', u'compo', u'talk'] [u'upgrad', u'plan', u'dead', u'intersect'] [u'free', u'afghan', u'guantanamo', u'detaine'] [u'launch', u'sadr', u'citi', u'strike'] [u'releas', u'iraq', u'germ'] [u'take', u'tobacco', u'industri'] [u'doctor', u'move', u'interst'] [u'vogel', u'put', u'debut', u'novelist', u'road', u'success'] [u'warm', u'weather', u'put', u'crop', u'doubt'] [u'warship', u'incid', u'prompt', u'explain', u'east'] [u'weed', u'effort', u'earn', u'region', u'award'] [u'wentworth', u'voter', u'turn', u'liber', u'poll'] [u'wild', u'histor', u'trial', u'stag', u'sydney'] [u'winton', u'host', u'supercar'] [u'work', u'group', u'consid', u'tram', u'option'] [u'xerox', u'worker', u'strike', u'satellit', u'track'] [u'zarqawi', u'cleric', u'alli', u'kill', u'strike', u'famili'] [u'choic', u'voter'] [u'accommod', u'respit', u'cancer', u'patient'] [u'aerial', u'check', u'spot', u'locust'] [u'candid', u'back', u'wife', u'bali', u'claim'] [u'candid', u'defend', u'miss', u'court'] [u'right', u'accus', u'polici', u'dodgi', u'howard'] [u'ambul', u'wait', u'put', u'live', u'risk', u'opposit'] [u'anderson', u'virgin', u'secur', u'comment', u'anger', u'union'] [u'apolog', u'seek', u'parliament', u'grope'] [u'appoint', u'eas', u'coast', u'health', u'crisi'] [u'arson', u'squad', u'investig', u'fatal'] [u'arthur', u'get', u'moroccan', u'clash'] [u'atsic', u'leader', u'welcom', u'land', u'return'] [u'australian', u'hous', u'boom', u'perplex'] [u'balanc', u'need', u'risk', u'children', u'care', u'depart'] [u'bankwest', u'offer', u'farmer', u'frost', u'pledg'] [u'beatti', u'call', u'airport', u'secur', u'upgrad'] [u'bendigo', u'power', u'outag', u'plan'] [u'bevan', u'prepar', u'challeng', u'tasmania'] [u'blackburn', u'exit', u'leagu', u'everton', u'enjoy', u'lucki'] [u'blackmail', u'investig', u'lead', u'drug'] [u'blaze', u'rip', u'takeaway', u'shop'] [u'blood', u'dope', u'test', u'develop', u'sydney', u'research'] [u'boat', u'ramp', u'upgrad', u'make', u'wet', u'line', u'easier'] [u'brazil', u'crash', u'kill', u'children'] [u'britney', u'spear', u'fake', u'wed', u'report'] [u'break', u'hill', u'commerc', u'websit'] [u'bulldog', u'anasta', u'strong', u'chanc'] [u'bushfir', u'destroy', u'kimberley', u'pastur'] [u'businessman', u'await', u'drug', u'sentenc'] [u'button', u'contract', u'decis', u'delay'] [u'byron', u'council', u'save', u'biodivers'] [u'elect', u'spotlight', u'glow', u'rural', u'age'] [u'caloundra', u'firm', u'look', u'strong', u'christma', u'sale'] [u'bomb', u'kill', u'soldier'] [u'carr', u'reiter', u'support', u'icac'] [u'steven', u'deport', u'amid', u'terror', u'fear'] [u'fin', u'jackson', u'wardrob', u'malfunct'] [u'central', u'australia', u'come', u'map', u'microscop'] [u'ceremoni', u'welcom', u'magistr'] [u'cheaper', u'rail', u'prospect', u'excit', u'train', u'group'] [u'cirqu', u'soleil', u'unveil', u'record', u'label'] [u'coalit', u'pledg', u'machin', u'mackay'] [u'protest', u'land', u'transfer'] [u'costello', u'stake', u'credibl', u'cost'] [u'council', u'consid', u'har', u'race', u'compo'] [u'council', u'consult', u'grave', u'structur'] [u'council', u'decid', u'trade', u'hour'] [u'councillor', u'push', u'high', u'school', u'defens', u'drive'] [u'coupl', u'guilti', u'defraud', u'medicar'] [u'court', u'delay', u'sentenc', u'fraud', u'case'] [u'cowboy', u'fan', u'prepar', u'send'] [u'crean', u'slap', u'costello', u'incompet', u'analysi'] [u'czech', u'give', u'beer', u'return', u'blood', u'donat'] [u'develop', u'board', u'work', u'manag'] [u'diseas', u'expert', u'converg', u'darwin'] [u'diseas', u'fear', u'haiti', u'death', u'toll', u'rise'] [u'aid', u'arm', u'robberi', u'investig'] [u'doctor', u'concern', u'hear', u'medicar', u'pledg'] [u'doctor', u'train', u'squeez', u'worri', u'govt'] [u'downer', u'scoff', u'separatist', u'invit'] [u'drug', u'cheat', u'repay', u'educ', u'cost'] [u'drug', u'run', u'suspect', u'arrest', u'bali'] [u'environ', u'group', u'wider'] [u'eriksson', u'rule', u'real', u'run'] [u'explos', u'devic', u'virgin', u'plane'] [u'policeman', u'guilti', u'child', u'porn', u'charg'] [u'psychiatrist', u'guilti', u'health', u'chief', u'murder'] [u'farmer', u'tell', u'expect', u'grain', u'merger', u'chang'] [u'farm', u'group', u'back', u'airport'] [u'fatal', u'melbourn', u'suspici'] [u'fear', u'air', u'cape', u'york', u'plan'] [u'fertil', u'drug', u'blame', u'record', u'multipl', u'birth'] [u'fisheri', u'group', u'stand', u'ghost', u'ship', u'decis'] [u'fisher', u'fight', u'retain', u'foreshor', u'access'] [u'footi', u'fan', u'flock', u'melbourn'] [u'franci', u'sprint', u'paralymp', u'silver'] [u'french', u'hostag', u'free'] [u'fund', u'forc', u'theophan', u'forego', u'lawyer'] [u'gallop', u'shout'] [u'gaza', u'withdraw', u'start'] [u'govt', u'refus', u'tackl', u'greenhous', u'issu', u'dunda'] [u'govt', u'urg', u'adopt', u'differ', u'chemic', u'compo', u'model'] [u'govt', u'urg', u'speed', u'bridg', u'work'] [u'greek', u'sprinter', u'order', u'face', u'prosecutor'] [u'green', u'swap', u'prefer', u'kalgoorli'] [u'green', u'democrat', u'clash', u'jam', u'hardi', u'donat'] [u'green', u'push', u'better', u'pension', u'deal'] [u'haiti', u'prepar', u'mass', u'grave', u'flood', u'victim'] [u'hawk', u'picioan'] [u'hill', u'promis', u'base', u'upgrad'] [u'hodg', u'call', u'pont', u'return', u'home'] [u'home', u'start', u'australian', u'super', u'team'] [u'hotlin', u'offer', u'prostat', u'cancer', u'help'] [u'howard', u'deni', u'cancel', u'tasmania', u'trip'] [u'howard', u'liber', u'pile', u'run'] [u'import', u'worker', u'short', u'term', u'solut'] [u'indian', u'cricket', u'chief', u'hunt', u'channel'] [u'inquest', u'open', u'truck', u'driver', u'death'] [u'iraqi', u'refus', u'hostag', u'taker', u'demand'] [u'italian', u'hostag', u'kill', u'claim', u'iraqi', u'milit'] [u'itali', u'anguish', u'fate', u'worker', u'iraq'] [u'japan', u'fear', u'north', u'korea', u'missil', u'test'] [u'jazz', u'famili', u'patriarch', u'marsali', u'die'] [u'judg', u'appeal', u'assault', u'sentenc'] [u'judg', u'inspect', u'dead', u'cliff', u'collaps', u'site'] [u'judg', u'uncov', u'pinochet', u'dump'] [u'labor', u'address', u'alic', u'bulk', u'bill', u'shortag'] [u'landhold', u'urg', u'bushfir', u'readi'] [u'latham', u'challeng', u'costello', u'debat'] [u'latham', u'stand', u'bali', u'claim', u'candid'] [u'lawyer', u'gap', u'worker', u'privaci'] [u'leaflet', u'drop', u'hunt', u'embassi', u'bomber'] [u'liber', u'target', u'disabl', u'servic', u'fund'] [u'lifelin', u'announc', u'volunt', u'coastal', u'patrol'] [u'limber', u'citi', u'rule', u'allow', u'nake', u'yoga'] [u'smoke', u'lung', u'damag', u'link', u'scrutini'] [u'lynch', u'focus', u'final'] [u'mari', u'kathleen', u'lodg', u'sell'] [u'medium', u'skill', u'dissip', u'scrutini'] [u'megawati', u'apologis', u'reign', u'shortcom'] [u'michelangelo', u'final', u'fresco', u'facelift'] [u'minist', u'hear', u'case', u'riverina', u'murray', u'health'] [u'minist', u'unlik', u'overrid', u'artefact', u'decis'] [u'miramax', u'financ', u'moor', u'film', u'report'] [u'miss', u'tourist', u'surviv', u'diet', u'wild', u'berri'] [u'morphin', u'free', u'poppi', u'hold', u'pain', u'killer'] [u'mysteri', u'benalla', u'train', u'derail'] [u'nepales', u'buddhist', u'seek', u'hollywood', u'film'] [u'drive', u'fin', u'enforc', u'year'] [u'news', u'corp', u'price', u'depress', u'market'] [u'water', u'ban', u'start'] [u'support', u'global', u'hardi'] [u'consid', u'jam', u'hardi', u'boycott'] [u'nurs', u'assault', u'spark', u'hospit', u'secur', u'review'] [u'open', u'sanction', u'european', u'tour'] [u'iraq', u'troop', u'return', u'home'] [u'oliv', u'plant', u'offer', u'benefit'] [u'opposit', u'fight', u'hospit', u'surgeri'] [u'paedophil', u'law', u'dont', u'liber'] [u'papua', u'guinean', u'accus', u'assault'] [u'paralympian', u'powerlift', u'hand', u'life', u'ban'] [u'phone', u'survey', u'council', u'plan'] [u'criticis', u'latham', u'union', u'pledg'] [u'outrag', u'candid', u'bali', u'claim'] [u'polic', u'defend', u'hoon', u'crackdown', u'effort'] [u'polic', u'hold', u'threat', u'call'] [u'policeman', u'face', u'disciplin', u'racist', u'email'] [u'polic', u'probe', u'grampian', u'bone', u'mysteri'] [u'polic', u'search', u'dickson', u'abductor'] [u'polic', u'seek', u'penguin', u'murder', u'probe'] [u'polic', u'probe', u'chopper', u'rescu'] [u'polic', u'zero', u'alcohol', u'relat', u'crime'] [u'polici', u'fail', u'consid', u'high', u'cost', u'school'] [u'politician', u'visit', u'blame', u'aborigin', u'riot'] [u'pont', u'test'] [u'power', u'lion', u'grand', u'final', u'line'] [u'privat', u'drift', u'threaten', u'public', u'school', u'studi'] [u'probe', u'launch', u'benalla', u'derail'] [u'prototyp', u'vaccin', u'target', u'livestock', u'greenhous'] [u'psych', u'report', u'seek', u'death', u'threat', u'case'] [u'public', u'fund', u'seek', u'discoveri', u'centr'] [u'rann', u'beatti', u'flag', u'challeng'] [u'reluct', u'cardena', u'reward', u'stage'] [u'report', u'highlight', u'domest', u'tourism', u'spend'] [u'rescu', u'chopper', u'flight'] [u'rescu', u'oper', u'return', u'sink', u'boat'] [u'research', u'fear', u'hide', u'drug', u'death', u'toll'] [u'termin', u'disput', u'refer', u'accc'] [u'open', u'unit', u'golden', u'say', u'kean'] [u'rise', u'price', u'unnerv', u'market'] [u'roadwork', u'make', u'path', u'hotel', u'easier'] [u'rooster', u'cautious', u'cowboy', u'form'] [u'rooster', u'cautious', u'cowboy'] [u'rooster', u'wari', u'confid', u'cowboy'] [u'listen', u'resid', u'flood', u'fear'] [u'rugbi', u'minnow', u'japan', u'bid', u'world'] [u'african', u'aid', u'rate', u'stabilis', u'report'] [u'sailor', u'grant', u'right', u'melbourn'] [u'sanfl', u'poki', u'exempt'] [u'sauvag', u'settl', u'silver'] [u'scent', u'sensit', u'mobil', u'phone', u'detect', u'breath'] [u'search', u'continu', u'mountain', u'tourist'] [u'secur', u'guard', u'attack', u'catch', u'tape'] [u'secur', u'prioriti', u'south', u'korea', u'deploy', u'iraq'] [u'serviceman', u'stand', u'trial', u'darfur', u'right', u'abus'] [u'silver', u'sauvag', u'australia', u'climb', u'medal', u'talli'] [u'sniffer', u'rat', u'seek', u'quak', u'survivor'] [u'specialist', u'shortag', u'breast', u'screen', u'closur'] [u'stroke', u'delay', u'rogerson', u'sentenc'] [u'strong', u'dollar', u'boost', u'colorado', u'profit'] [u'strong', u'expect', u'stuttl', u'murder', u'trial'] [u'strong', u'show', u'swan', u'hill', u'work', u'scheme'] [u'sudan', u'say', u'plan', u'disarm', u'arab', u'tribe'] [u'syrian', u'withdraw', u'troop', u'lebanon'] [u'tag', u'law', u'vote', u'appal', u'govt'] [u'tasmanian', u'ferri', u'record', u'passeng', u'drop'] [u'team', u'suspend', u'olymp', u'champion', u'hamilton'] [u'teenag', u'charg', u'petrol', u'station', u'murder'] [u'teenag', u'charg', u'stab', u'death'] [u'telstra', u'question', u'extend', u'phone', u'coverag', u'viabil'] [u'timor', u'deal', u'christma'] [u'leav', u'pilbara'] [u'tripl', u'transplant', u'recipi', u'attack', u'sorri'] [u'dead', u'miss', u'china', u'boat', u'accid'] [u'gunnedah', u'road', u'crash'] [u'gunmen', u'soldier', u'kill', u'settlement'] [u'unassail', u'schumach', u'plan', u'race'] [u'union', u'school', u'cleaner', u'contract'] [u'union', u'govt', u'dump', u'hardi', u'share'] [u'union', u'welcom', u'school', u'clean', u'agreement'] [u'union', u'virgin', u'discuss', u'safeti', u'concern'] [u'predict', u'flood', u'affect', u'build', u'woe'] [u'unmark', u'polic', u'car', u'catch', u'speedster'] [u'regul', u'investig', u'jam', u'hardi'] [u'releas', u'guantanamo', u'prison'] [u'senat', u'confirm', u'head'] [u'send', u'terror', u'suspect', u'saudi', u'arabia'] [u'veteran', u'accus', u'labor', u'senat', u'abus'] [u'rock', u'climber', u'kill', u'accid'] [u'victorian', u'region', u'invest', u'skyrocket'] [u'virgin', u'claim', u'airport', u'secur', u'breach'] [u'virgin', u'prank', u'renew', u'airport', u'secur', u'fear'] [u'voter', u'miss', u'latham', u'way'] [u'word', u'continu', u'cattl', u'graze'] [u'warwick', u'lose', u'chees', u'factori'] [u'william', u'wont', u'rule', u'chang'] [u'windi', u'reach', u'champion', u'trophi', u'final'] [u'wine', u'open', u'door', u'boutiqu', u'wine', u'produc'] [u'woman', u'escap', u'polic', u'medic', u'exam'] [u'worker', u'escap', u'tonn', u'slab', u'collaps'] [u'work', u'underway', u'underwat', u'observatori'] [u'yass', u'council', u'warn', u'state', u'hospit', u'debat'] [u'year', u'leav', u'iron', u'mine'] [u'youth', u'coerc', u'adelaid', u'raid', u'polic'] [u'youth', u'see', u'prescript', u'pharmacist', u'shortag'] [u'youth', u'benefit', u'whitten', u'oval', u'redevelop'] [u'yudhoyono', u'make', u'sulawesi'] [u'zeehan', u'plead', u'guilti', u'murder', u'charg'] [u'abus', u'senat', u'apologis', u'veteran'] [u'accc', u'warn', u'busi', u'illeg', u'onlin', u'trade'] [u'accc', u'warn', u'onlin', u'firm', u'warranti', u'rort'] [u'forc', u'crash', u'inquiri', u'continu'] [u'alic', u'host', u'parliament'] [u'alleg', u'drink', u'driver', u'set', u'record'] [u'allenbi', u'second', u'pennsylvania'] [u'brand', u'apprentic', u'scheme', u'littl', u'late'] [u'plan', u'increas', u'preschool', u'hour'] [u'lodg', u'complaint', u'labor'] [u'anderson', u'upbeat', u'nation', u'prospect'] [u'anti', u'terror', u'delay', u'labor'] [u'review', u'focus', u'research', u'enrol'] [u'arthur', u'win', u'open', u'rubber', u'morocco'] [u'aussi', u'skier', u'sprint'] [u'australian', u'arrest', u'bali', u'drug', u'bust'] [u'australian', u'cricket', u'boss', u'review', u'kenyan'] [u'australia', u'posit', u'buck', u'indian', u'trend'] [u'aviat', u'worri', u'aerodrom', u'futur'] [u'baffl', u'creek', u'blaze', u'threaten', u'hous'] [u'ballarat', u'olympian', u'unlik', u'compet', u'beij'] [u'drop', u'pogo', u'pope', u'seri', u'complaint'] [u'beatti', u'dismiss', u'energex', u'whistleblow', u'claim'] [u'beatti', u'stand', u'molloy'] [u'behead', u'broadcast', u'draw', u'viewer'] [u'bird', u'leav', u'thousand', u'dark'] [u'bishop', u'say', u'femal', u'clergi', u'issu', u'need', u'nation', u'vote'] [u'bold', u'labor', u'erad', u'youth', u'unemploy'] [u'bridg', u'plan', u'chang', u'threaten', u'tree', u'resid'] [u'british', u'hostag', u'mother', u'plead', u'son', u'releas'] [u'british', u'polic', u'hunt', u'scottish', u'palac', u'intrud'] [u'brown', u'doubt', u'decid'] [u'brownlow', u'dress', u'sale'] [u'bush', u'stay', u'cours', u'iraq'] [u'butt', u'hand', u'match', u'euro'] [u'review', u'health', u'servic', u'chang'] [u'school', u'educ', u'includ', u'indigen'] [u'cancer', u'polici', u'close', u'heart'] [u'steven', u'philosoph', u'ridicul'] [u'catwoman', u'claw', u'villag', u'roadshow', u'profit'] [u'chechen', u'rebel', u'leader', u'vow', u'warlord', u'trial'] [u'china', u'execut', u'head', u'babi', u'traffic', u'ring'] [u'class', u'action', u'tobacco', u'firm', u'throw'] [u'coalit', u'offer', u'rural', u'voter', u'boost'] [u'coalit', u'plan', u'boost', u'apprenticeship'] [u'coalit', u'region', u'project', u'boost', u'busi'] [u'colgat', u'palmol', u'recal', u'dental', u'product'] [u'communiti', u'mourn', u'truck', u'crash', u'victim'] [u'coron', u'encourag', u'babi', u'death', u'inquiri'] [u'cosmic', u'stormi', u'weather', u'clear', u'scientist'] [u'cotton', u'grind', u'job', u'land'] [u'council', u'green', u'light', u'sport', u'master', u'plan'] [u'councillor', u'say', u'toll', u'park', u'road'] [u'councillor', u'suspend', u'pecuniari'] [u'council', u'boost', u'residenti', u'land', u'avail'] [u'court', u'consid', u'carlton', u'petit', u'valid'] [u'cowboy', u'earn', u'rooster', u'respect'] [u'cricket', u'depart', u'punter', u'arriv', u'home'] [u'crime', u'victim', u'appli', u'regist', u'inclus'] [u'dog', u'smell', u'cancer', u'patient'] [u'dole', u'recipi', u'number', u'year', u'govt'] [u'dollar', u'climb', u'price', u'creep', u'record'] [u'doubl', u'murder', u'prompt', u'polic', u'extend', u'hour'] [u'downer', u'expect', u'portfolio'] [u'drink', u'drive', u'law', u'return', u'parliament'] [u'bush', u'track', u'survivor', u'muster'] [u'boss', u'question', u'futur', u'jordan', u'minardi'] [u'fifth', u'embassi', u'bomb', u'suspect', u'arrest'] [u'fiji', u'coup', u'leader', u'apologis', u'detaine'] [u'footi', u'fan', u'grand', u'final', u'pilgrimag'] [u'footi', u'fever', u'final', u'hit', u'melbourn'] [u'anti', u'drug', u'campaign', u'escap', u'jail', u'term'] [u'frost', u'damag', u'spark', u'crop', u'insur'] [u'gascoyn', u'murchison', u'strategi', u'near'] [u'globetrott', u'challeng', u'olymp', u'hoop', u'champ'] [u'golden', u'time', u'paralympian', u'thrupp'] [u'golf', u'club', u'strip', u'clubhous', u'manag'] [u'good', u'behaviour', u'bond', u'defraud'] [u'green', u'reject', u'cost', u'claim', u'greenhous', u'plan'] [u'green', u'grow', u'organ', u'farm', u'profil'] [u'grenfel', u'medic', u'centr', u'wait', u'room'] [u'grey', u'thompson', u'take', u'paralymp', u'gold'] [u'haitian', u'death', u'toll', u'jeann', u'pass'] [u'hamilton', u'olymp', u'gold'] [u'harass', u'deni', u'passport', u'seizur'] [u'hewitt', u'claim', u'record', u'aussi', u'lead'] [u'hewitt', u'eye', u'davi', u'histori'] [u'surgeri', u'sidelin', u'kuerten'] [u'hobart', u'waterfront', u'trader', u'develop', u'concern'] [u'hous', u'estat', u'get', u'heritag'] [u'howard', u'attack', u'labor', u'secret', u'agenda'] [u'scheme', u'spark', u'fear', u'festiv', u'look', u'sheep'] [u'indonesia', u'hold', u'australian', u'mine', u'execut'] [u'inquiri', u'chief', u'critic', u'closur'] [u'invest', u'outlook', u'good', u'south', u'west'] [u'iraqi', u'milit', u'kidnap', u'egyptian'] [u'iraqi', u'receiv', u'invit', u'australia'] [u'iraq', u'mortar', u'explos', u'wind'] [u'ireland', u'advis', u'stick', u'burger', u'wrapper'] [u'irish', u'singer', u'plead', u'privaci', u'newspap'] [u'israel', u'claim', u'iran', u'terror', u'sourc'] [u'isra', u'kill', u'gaza', u'mortar', u'attack', u'armi'] [u'japanes', u'nurs', u'get', u'death', u'sentenc'] [u'link', u'grind', u'sydney'] [u'kangaroo', u'ferri', u'take', u'water'] [u'kean', u'court', u'assault', u'charg'] [u'fire', u'lead', u'california', u'lpga', u'tournament'] [u'king', u'island', u'fuel', u'price', u'climb'] [u'kojonup', u'shire', u'vote', u'councillor'] [u'kyneton', u'develop', u'plan', u'wind'] [u'labor', u'challeng', u'howard', u'school', u'claim'] [u'lara', u'play', u'champion', u'final'] [u'latham', u'accus', u'coalit', u'school', u'privatis'] [u'latham', u'hop', u'kick', u'win', u'goal', u'labor'] [u'latham', u'threaten', u'jam', u'hardi', u'boycott'] [u'liber', u'nation', u'famili', u'prefer'] [u'lion', u'sweat', u'brown', u'mcrae'] [u'long', u'term', u'health', u'reli', u'earli', u'start', u'allianc'] [u'mackay', u'group', u'unfaz', u'rocki', u'mine', u'push'] [u'manchest', u'citi', u'brace', u'arsenal', u'visit'] [u'face', u'court', u'fatal', u'park', u'crash'] [u'face', u'tourist', u'murder', u'trial'] [u'meet', u'focus', u'kimberley', u'bushfir'] [u'melbourn', u'reclaim', u'fountain'] [u'miner', u'want', u'govern', u'roadwork'] [u'mine', u'legisl', u'attack'] [u'minist', u'argu', u'rail', u'line', u'remov'] [u'minist', u'disput', u'detent', u'centr', u'claim'] [u'mislead', u'good', u'guy', u'water'] [u'mission', u'extend', u'mar', u'robot'] [u'mountain', u'mishap', u'spark', u'search', u'cost', u'debat'] [u'school', u'fee', u'comment', u'misrepres'] [u'speak', u'polic', u'briberi', u'claim'] [u'beauti', u'skier', u'sprint', u'world', u'record'] [u'bear', u'paralympian', u'win', u'swim', u'bronz'] [u'nation', u'trust', u'presid', u'pleas', u'talk'] [u'grain', u'compani', u'debut'] [u'korea', u'missil', u'test', u'immin'] [u'bail', u'alleg', u'drug', u'import'] [u'ninth', u'area', u'health', u'servic', u'plan'] [u'north', u'west', u'medic', u'specialist'] [u'norwegian', u'artwork', u'prompt', u'isra', u'envoy', u'protest'] [u'advis', u'consid', u'sydney', u'water', u'recycl'] [u'fund', u'improv', u'harbour', u'access'] [u'administr', u'call', u'better', u'health', u'program'] [u'nurs', u'home', u'upgrad', u'get'] [u'offici', u'sidelin', u'prostitut', u'soccer', u'squad'] [u'oshan', u'stand', u'asid', u'charg', u'hear'] [u'otten', u'walk', u'tiger'] [u'paralympian', u'grab', u'gold'] [u'pascual', u'rodriguez', u'win', u'stage'] [u'penniless', u'disappoint', u'newcastl', u'stadium'] [u'perpetu', u'cut', u'fidel', u'tie'] [u'perth', u'boast', u'cheapest', u'hous', u'price'] [u'promis', u'citi', u'wide', u'high', u'speed', u'internet'] [u'polic', u'campaign', u'stop', u'underag', u'drink'] [u'polic', u'prepar', u'footi', u'influx'] [u'polic', u'target', u'airport', u'worker', u'secur', u'scare'] [u'polic', u'threaten', u'redfern', u'inquiri', u'offic'] [u'politician', u'warn', u'forest', u'debat'] [u'portug', u'consid', u'extend', u'iraq', u'mission'] [u'public', u'school', u'fee', u'polici'] [u'public', u'urg', u'fluorid'] [u'rail', u'servic', u'track', u'soon'] [u'rann', u'prais', u'asbesto', u'hotlin', u'propos'] [u'rebel', u'pledg', u'sieg', u'warlord'] [u'research', u'station', u'protest', u'hear'] [u'resid', u'closur'] [u'resid', u'vote', u'fluorid'] [u'revel', u'rais', u'stradbrok', u'crime', u'rate'] [u'chief', u'issu', u'burn', u'off', u'warn'] [u'richmond', u'see', u'elect'] [u'rise', u'price', u'spark', u'stock', u'sell'] [u'saff', u'upbeat', u'nation', u'competit', u'polici', u'talk'] [u'salt', u'leach', u'fear', u'air'] [u'salvadoran', u'jail', u'gang', u'hostag'] [u'scheme', u'help', u'beef', u'produc', u'profit'] [u'school', u'reviv', u'indigen', u'languag'] [u'seagrass', u'confer', u'focus', u'conserv'] [u'search', u'continu', u'miss', u'swimmer'] [u'world', u'keeper', u'meet', u'polar', u'bear', u'star'] [u'secur', u'guard', u'attack', u'identifi'] [u'shire', u'fend', u'elect', u'interfer', u'claim'] [u'sierra', u'leon', u'trial', u'begin', u'australian', u'policeman'] [u'small', u'chanc', u'upset', u'bennelong'] [u'spear', u'hit', u'fake', u'wed', u'claim'] [u'specialist', u'join', u'hospit', u'neonat', u'unit'] [u'state', u'agreement', u'act', u'microscop'] [u'strong', u'alic', u'elect', u'forum'] [u'survey', u'say', u'open', u'mall', u'slow', u'traffic'] [u'suspect', u'support', u'appeal', u'passport'] [u'suspend', u'sentenc', u'fish', u'fraca'] [u'inmat', u'number', u'rise'] [u'tasmania', u'claim', u'australia', u'largest', u'wind', u'farm'] [u'teen', u'homemad', u'firecrack', u'spark', u'virgin', u'scare'] [u'thousand', u'cheer', u'power', u'lion', u'grand', u'final'] [u'nurs', u'home', u'virus', u'outbreak'] [u'peak', u'champion', u'die'] [u'futur', u'uncertain'] [u'toddler', u'kill', u'sydney', u'hous'] [u'townsvill', u'prepar', u'farewel', u'cowboy'] [u'tuna', u'plan', u'spark', u'mix', u'respons'] [u'arrest', u'bali', u'drug', u'bust'] [u'iraq', u'stand', u'firm', u'kidnapp', u'demand'] [u'union', u'back', u'labor', u'educ', u'polici'] [u'union', u'say', u'worker', u'shortag', u'affect', u'defenc'] [u'union', u'enter', u'rescu', u'chopper'] [u'nuclear', u'inspector', u'head', u'brazil'] [u'offici', u'urg', u'sudan', u'grant', u'autonomi', u'darfur'] [u'strike', u'iraqi', u'rebel', u'town', u'fallujah', u'resid'] [u'record', u'tourist', u'boom'] [u'walker', u'quit', u'posit', u'drug', u'test'] [u'weak', u'blue', u'chip', u'drag', u'market'] [u'succeed', u'iraq', u'tell', u'congress'] [u'lift', u'panther', u'say', u'price'] [u'whoop', u'cough', u'outbreak', u'spark', u'concern'] [u'winemak', u'garrett', u'declar', u'bankrupt'] [u'winter', u'go', u'gold'] [u'wolfenden', u'lap', u'gold'] [u'woman', u'avoid', u'jail', u'pension', u'fraud'] [u'woman', u'give', u'birth', u'ovarian', u'tissu', u'transplant'] [u'youth', u'enjoy', u'sport', u'exchang'] [u'grand', u'final', u'underway'] [u'worker', u'warn', u'diseas', u'follow', u'storm'] [u'allawi', u'seek', u'help', u'defeat', u'forc', u'terror'] [u'produc', u'report', u'card', u'health', u'polici'] [u'anasta', u'return', u'boost', u'bulldog'] [u'anti', u'smoke', u'coalit', u'call', u'feder', u'money'] [u'armitag', u'face', u'hostil', u'question', u'iraq', u'elect'] [u'aurora', u'complet', u'transmiss', u'line'] [u'aussi', u'cricket', u'arriv', u'india'] [u'aussi', u'cyclist', u'lose', u'french', u'race', u'prankster'] [u'aussi', u'clean', u'sweep', u'morocco'] [u'australia', u'davi', u'kill'] [u'australia', u'athen', u'sullivan', u'eye'] [u'barrichello', u'take', u'pole', u'schumach', u'spin'] [u'billionair', u'play', u'catch', u'gate'] [u'birmingham', u'citi', u'manag', u'attack', u'street'] [u'brisban', u'face', u'drug', u'charg', u'bali'] [u'british', u'envoy', u'head', u'baghdad'] [u'british', u'govt', u'sceptic', u'websit', u'claim'] [u'bulldog', u'book', u'grand', u'final', u'berth'] [u'california', u'get', u'tough', u'emiss'] [u'campaign', u'forestri', u'log'] [u'canberra', u'futur', u'water', u'suppli', u'scrutini'] [u'cath', u'cautious', u'welcom', u'educ', u'packag'] [u'child', u'pornograph', u'get', u'year'] [u'coalit', u'region', u'plan', u'describ', u'pork'] [u'concern', u'rais', u'effect', u'alcohol', u'unborn'] [u'dinosaur', u'long', u'neck', u'reason', u'expert'] [u'doctor', u'push', u'larg', u'scale', u'hospit', u'improv'] [u'downer', u'unfit', u'offic', u'latham', u'say'] [u'edmiston', u'equal', u'breast', u'stroke'] [u'energex', u'chairman', u'defend', u'ceo', u'integr'] [u'environment', u'group', u'appeal', u'gungahlin', u'drive'] [u'envi', u'power', u'port', u'william'] [u'famili', u'devast', u'sydney', u'unit'] [u'fear', u'bird', u'transmit'] [u'final', u'ticket', u'avail'] [u'financ', u'compani', u'guilti', u'breach', u'credit'] [u'firecrack', u'incid', u'spark', u'airport', u'secur'] [u'florida', u'brace', u'hurrican'] [u'french', u'bohemian', u'writer', u'francois', u'sagan', u'die'] [u'govt', u'accus', u'promot', u'user', u'pay', u'educ'] [u'govt', u'announc', u'boost', u'biotechnolog', u'precinct'] [u'grand', u'final', u'countdown', u'underway'] [u'half', u'million', u'urg', u'leav', u'home', u'ahead'] [u'human', u'bone', u'perth'] [u'india', u'pakistan', u'leader', u'seek', u'kashmir', u'settlement'] [u'insur', u'group', u'seek', u'labor', u'guarante', u'privat'] [u'investig', u'begin', u'fatal', u'unit'] [u'israel', u'destroy', u'palestinian', u'home', u'gaza'] [u'jimi', u'hendrix', u'brother', u'lose', u'lawsuit'] [u'judg', u'arriv', u'pitcairn', u'sexual', u'abus', u'trial'] [u'labor', u'deni', u'delay', u'anti', u'terror'] [u'labor', u'flag', u'chang', u'art', u'polici'] [u'labor', u'make', u'cancer', u'pledg'] [u'land', u'council', u'seek', u'alcohol', u'permit'] [u'latham', u'shrug', u'latest', u'poll'] [u'leader', u'babi', u'traffic', u'group', u'execut'] [u'lib', u'promis', u'loan', u'scheme', u'energi', u'effici'] [u'lion', u'claw', u'half', u'time', u'lead'] [u'lion', u'defi', u'year', u'jinx'] [u'locust', u'plagu', u'worsen'] [u'lone', u'woman', u'get', u'vote', u'station', u'india'] [u'charg', u'alleg', u'bomb', u'threat'] [u'die', u'hang', u'glider', u'crash'] [u'kill', u'isra', u'rocket', u'attack', u'wit'] [u'swim', u'safeti', u'boat', u'capsiz'] [u'appear', u'court', u'drug', u'charg'] [u'media', u'deni', u'oshan', u'hear', u'document'] [u'mental', u'health', u'group', u'urg', u'boycott', u'pizza', u'chain'] [u'michael', u'jackson', u'father', u'hospitalis', u'ulcer'] [u'uncertainti', u'indian', u'tour'] [u'shakespear', u'folio'] [u'categori', u'add', u'tourism', u'award'] [u'law', u'compel', u'maker', u'greenhous'] [u'zealand', u'iraq', u'forc', u'return', u'home'] [u'afghan', u'soldier', u'kill', u'attack'] [u'oliv', u'face', u'hear', u'robbin', u'slap'] [u'oliv', u'hand', u'year', u'suspend', u'robbin'] [u'paramed', u'defend', u'drug', u'charg'] [u'plane', u'crash', u'fraser', u'island'] [u'respond', u'iraq', u'warn', u'report'] [u'heed', u'warn', u'iraq', u'latham', u'say'] [u'polic', u'seek', u'inform', u'miss', u'coupl'] [u'poll', u'show', u'rise', u'coalit', u'support'] [u'pont', u'avoid', u'surgeri', u'break', u'thumb'] [u'pont', u'hop', u'dodg', u'surgeri'] [u'port', u'head', u'victori'] [u'power', u'head', u'victori'] [u'power', u'surg', u'earli', u'lead'] [u'power', u'surg', u'maiden', u'flag'] [u'research', u'point', u'heart', u'muscl', u'regrowth'] [u'riewoldt', u'name', u'valuabl'] [u'rossi', u'formula'] [u'schumach', u'ferrari', u'china'] [u'schumach', u'tame', u'shanghai', u'twister'] [u'seven', u'kill', u'brazilian', u'reformatori', u'violenc'] [u'sierra', u'leon', u'court', u'set', u'bail', u'aust', u'polic'] [u'singh', u'stay', u'track', u'fifth', u'start'] [u'student', u'notic', u'unruli', u'behaviour'] [u'studi', u'highlight', u'birth', u'weight', u'suicid', u'link'] [u'tasmanian', u'volunt', u'await', u'endang', u'parrot'] [u'troubl', u'walker', u'rue', u'cocain', u'mad'] [u'ukrainian', u'attack', u'thrower'] [u'union', u'criticis', u'govt', u'educ', u'packag'] [u'unhappi', u'rumsfeld', u'iraq', u'elect', u'comment'] [u'strike', u'target', u'milit', u'fallujah'] [u'democrat', u'target', u'iraq', u'secur', u'kidnap'] [u'launch', u'strike', u'fallujah'] [u'stockmarket', u'close', u'high'] [u'troop', u'leav', u'iraq', u'peac', u'rumsfeld'] [u'virenqu', u'hang', u'pedal'] [u'compani', u'welcom', u'slow', u'chines', u'economi'] [u'webb', u'hunt', u'california'] [u'welsh', u'domin', u'short', u'cours', u'champ'] [u'wenger', u'pledg', u'futur', u'gunner'] [u'wife', u'malaysian', u'leader', u'question', u'bomb'] [u'india', u'career', u'say', u'langer'] [u'australia', u'england', u'vaughan'] [u'kill', u'weekend', u'accid'] [u'academ', u'truth', u'account', u'govt'] [u'democrat', u'launch', u'justic', u'polici'] [u'armi', u'chopper', u'make', u'emerg', u'land'] [u'assault', u'pizza', u'deliveri', u'dial', u'rescu'] [u'aussi', u'break', u'india', u'jinx'] [u'aussi'] [u'barrichello', u'win', u'chines'] [u'blair', u'say', u'hell', u'help', u'british'] [u'brunei', u'parliament', u'reopen', u'year', u'break'] [u'burrow', u'advanc', u'franc'] [u'bush', u'reveal', u'plan', u'stabilis', u'iraq'] [u'busi', u'council', u'condemn', u'labor', u'industri'] [u'candid', u'shoot', u'mouth', u'cannon', u'prank'] [u'coalit', u'launch', u'vocat', u'educ'] [u'coalit', u'boost', u'access', u'hour', u'doctor'] [u'cole', u'myer', u'explor', u'hypermart', u'possibl'] [u'concern', u'rais', u'fund', u'cut'] [u'costello', u'challeng', u'labor', u'releas', u'independ'] [u'costello', u'tight', u'lip', u'leadership', u'aspir'] [u'darfur', u'refuge', u'fear', u'return', u'home'] [u'disband', u'iraqi', u'armi', u'mistak', u'say', u'blair'] [u'edmiston', u'break', u'world', u'record'] [u'envoy', u'iraq', u'mission', u'save', u'british', u'hostag'] [u'kill', u'perth', u'collis'] [u'florida', u'resid', u'batten'] [u'foreign', u'troop', u'answer', u'iraq', u'musharraf'] [u'forestri', u'polici', u'wont', u'democrat', u'packag'] [u'accc', u'head', u'call', u'hospit', u'revamp'] [u'mainten', u'worker', u'suspici'] [u'arrest', u'london', u'anti', u'terror'] [u'fuel', u'pump', u'spar', u'roadhous'] [u'giant', u'asteroid', u'pass', u'close', u'earth'] [u'gilchrist', u'sound', u'cautious', u'note'] [u'govt', u'pledg', u'famili'] [u'govt', u'urg', u'address', u'rural', u'health', u'issu'] [u'green', u'champion', u'fair', u'campaign', u'launch'] [u'group', u'question', u'govt', u'reloc', u'plan'] [u'gunner', u'stay', u'clear', u'unit', u'reviv', u'gather', u'steam'] [u'hook', u'memori', u'launch', u'transplant', u'game'] [u'hotel', u'employe', u'wit', u'fatal', u'fall'] [u'howard', u'creat', u'skill', u'shortag', u'say', u'actu'] [u'howard', u'outlin', u'term', u'vision'] [u'howard', u'pledg', u'term'] [u'hurrican', u'jeann', u'batter', u'bahama'] [u'hurrican', u'jeann', u'pound', u'florida'] [u'injur', u'price', u'talk', u'grand', u'final', u'chanc'] [u'iran', u'call', u'european', u'negoti', u'nuclear'] [u'iraq', u'film', u'scoop', u'spanish', u'festiv', u'prize'] [u'israel', u'blame', u'hama', u'milit', u'kill', u'syria'] [u'janett', u'howard', u'stand'] [u'jeann', u'pound', u'coast'] [u'charg', u'robberi'] [u'die', u'road', u'accid'] [u'stab', u'parti', u'scuffl'] [u'matthew', u'keep', u'faith', u'beat', u'lion'] [u'minist', u'urg', u'apologis', u'follow', u'airport'] [u'mix', u'result', u'aussi', u'todd'] [u'kill', u'iraq', u'attack'] [u'motorbik', u'accid', u'leav', u'hospit'] [u'nat', u'promis', u'better', u'servic', u'bush'] [u'group', u'fight', u'develop', u'residenti', u'area'] [u'meet', u'open'] [u'pickett', u'claim', u'norm', u'smith', u'medal'] [u'pinochet', u'question', u'polit', u'kill'] [u'announc', u'dementia'] [u'spend', u'spree', u'reckless', u'latham', u'say'] [u'unveil', u'school', u'boost'] [u'polic', u'appeal', u'wit'] [u'polic', u'investig', u'accid', u'king'] [u'port', u'adelaid', u'parti'] [u'port', u'celebr', u'power'] [u'power', u'emot', u'homecom'] [u'protest', u'clash', u'liber', u'support'] [u'racq', u'back', u'polic', u'motorist', u'slow'] [u'real', u'slump'] [u'reid', u'stumbl', u'davi', u'debut'] [u'rooster', u'lead', u'cowboy', u'fieri', u'half'] [u'rooster', u'reach', u'grand', u'final'] [u'sauvag', u'bow', u'silver'] [u'schumach', u'chang', u'engin'] [u'seven', u'kill', u'wound', u'fresh', u'airstrik'] [u'shanghai', u'experi', u'popul', u'boom'] [u'singapor', u'transsexu', u'beauti', u'pageant', u'sell'] [u'dead', u'road', u'accid'] [u'separ', u'accid', u'road'] [u'small', u'busi', u'incent', u'coalit'] [u'specialist', u'urg', u'govt', u'declar', u'water'] [u'stab', u'victim', u'die', u'hospit'] [u'struggl', u'singh', u'stay', u'ahead'] [u'stuart', u'prais', u'cowboy', u'defenc'] [u'support', u'tafe', u'democrat', u'tell', u'howard'] [u'turkey', u'prepar', u'marathon', u'reform'] [u'teenag', u'remand', u'custodi', u'alleg'] [u'soldier', u'get', u'year', u'murder', u'iraqi'] [u'soldier', u'give', u'year', u'sentenc', u'iraqi'] [u'davi', u'final'] [u'voller', u'quit', u'roma', u'debacl'] [u'warn', u'issu', u'child', u'diagnos', u'buruli'] [u'webb', u'fourth', u'lpga'] [u'weekend', u'road', u'toll', u'worst'] [u'windi', u'stun', u'england', u'trophi', u'triumph'] [u'young', u'socceroo', u'fieri', u'chile'] [u'accus', u'plead', u'guilti', u'backpack', u'murder', u'case'] [u'liber', u'target', u'elder', u'activ', u'age', u'polici'] [u'traffic', u'blitz', u'prove', u'busi', u'time', u'polic'] [u'alcohol', u'seiz', u'north'] [u'coalit', u'freight', u'logist', u'centr', u'plan'] [u'liber', u'ignor', u'northern', u'river', u'green'] [u'anderson', u'back', u'speed', u'limit', u'driver'] [u'anti', u'terror', u'draw', u'latham', u'concern'] [u'aquacultur', u'industri', u'eye', u'market'] [u'arab', u'nation', u'aid', u'assassin', u'hama'] [u'arson', u'think', u'yeppoon', u'blaze'] [u'aussi', u'luxford', u'win', u'japan', u'triathlon'] [u'australian', u'polic', u'thai', u'heroin', u'bust'] [u'author', u'recov', u'swimmer', u'bodi'] [u'aviat', u'museum', u'step', u'closer', u'fruition'] [u'bash', u'port', u'wake', u'coma'] [u'bash', u'power', u'support', u'wake', u'coma'] [u'beatti', u'eat', u'humbl', u'port', u'flag', u'fli'] [u'beatti', u'miss', u'press', u'confer', u'surpris', u'media'] [u'beatti', u'play', u'smoke', u'crackdown', u'club', u'impact'] [u'bigley', u'aliv', u'say', u'brother'] [u'black', u'spot', u'fatal', u'fail', u'stop', u'speedster'] [u'brack', u'bounc', u'poll'] [u'branson', u'launch', u'thousand', u'astronaut'] [u'breath', u'test', u'blitz', u'result', u'disappoint', u'polic'] [u'britain', u'readi', u'write', u'world', u'debt'] [u'british', u'cabl', u'custom', u'ear'] [u'british', u'nurs', u'charg', u'murder', u'patient'] [u'businessman', u'deni', u'nauru', u'loan', u'bribe'] [u'greater', u'environment', u'regul'] [u'rescu', u'chopper', u'manag', u'probe'] [u'reveal', u'secret', u'canola', u'site'] [u'carcoar', u'student', u'put', u'marathon', u'effort', u'gold'] [u'cautious', u'investor', u'market'] [u'china', u'target', u'corrupt'] [u'church', u'sorri', u'institut', u'care', u'suffer'] [u'communiti', u'station', u'effort'] [u'continu', u'fund', u'woe', u'outgo', u'atsic'] [u'controversi', u'drive', u'test'] [u'copi', u'say', u'costello'] [u'councillor', u'question', u'wast', u'plant', u'find'] [u'council', u'consid', u'salin', u'myth'] [u'council', u'consid', u'hotel', u'plan'] [u'countri', u'race', u'share', u'fund'] [u'court', u'blow', u'india', u'australia', u'test', u'seri'] [u'cowboy', u'reward', u'kangaroo'] [u'hand', u'australian', u'vice', u'captainci'] [u'crean', u'take', u'hydro', u'tasmania', u'post'] [u'custom', u'benefit', u'border', u'protect', u'plan'] [u'date', u'chang', u'rate', u'rise', u'forum'] [u'doggi', u'care', u'tire', u'pet'] [u'doubt', u'cast', u'road', u'toll', u'plan'] [u'doubt', u'cast', u'white', u'regul'] [u'doubt', u'rais', u'coal', u'ration'] [u'driver', u'drug', u'test', u'fatal', u'crash'] [u'driver', u'speed', u'past', u'fatal', u'accid', u'site'] [u'dylan', u'bar', u'soul', u'memoir'] [u'earli', u'trend', u'emerg', u'council', u'vote', u'count'] [u'emerg', u'agreement', u'boost', u'cooper'] [u'energi', u'effici', u'requir', u'propos'] [u'fall', u'soldier', u'name', u'add', u'memori'] [u'famili', u'forestri', u'worker', u'ralli', u'job'] [u'famili', u'seek', u'probe', u'pilot', u'murder'] [u'famili', u'critic', u'condit', u'unit'] [u'farm', u'group', u'seek', u'tape'] [u'fear', u'wast', u'dump', u'plan', u'threaten', u'horticultur'] [u'ferguson', u'pois', u'blood', u'rooney'] [u'fijian', u'soldier', u'guard', u'iraq'] [u'destroy', u'perth', u'hous'] [u'firefight', u'game', u'heat', u'tourism'] [u'dead', u'dubai', u'airport', u'build', u'site', u'collaps'] [u'flanneri', u'add', u'rooster', u'woe'] [u'flood', u'hamper', u'bangladesh', u'econom', u'growth'] [u'satellit', u'head', u'invest', u'trial', u'begin'] [u'fuel', u'monitor', u'predict', u'sydney', u'price', u'spike'] [u'fund', u'seek', u'hospit', u'wait', u'list'] [u'fund', u'seek', u'stop', u'woe'] [u'galleri', u'paint', u'gloomi', u'pictur', u'polici'] [u'gallop', u'dismiss', u'skill', u'shortag', u'plan'] [u'gallop', u'warn', u'marin', u'manag', u'consult'] [u'tank', u'roof', u'engin', u'feat'] [u'gigant', u'mushroom', u'stun', u'swiss', u'scientist'] [u'gilchrist', u'tell', u'team', u'mat', u'stay', u'focus'] [u'gold', u'coast', u'mayor', u'boycott', u'indi'] [u'goldfield', u'prison', u'possibl'] [u'goulburn', u'water', u'year'] [u'govern', u'urg', u'rethink', u'road', u'fund'] [u'govt', u'abolish', u'fisheri', u'tariff', u'protect'] [u'govt', u'urg', u'deliv', u'south', u'coast', u'hospit'] [u'greek', u'give', u'clear', u'bomb', u'threat'] [u'green', u'patch', u'open'] [u'green', u'aerial', u'spray', u'inquiri'] [u'green', u'differ'] [u'grower', u'offer', u'grain', u'merger', u'assur'] [u'gungahlin', u'drive', u'appeal', u'decis', u'reserv'] [u'hama', u'activist', u'detain', u'west', u'bank', u'incurs'] [u'hama', u'claim', u'rocket', u'attack', u'israel'] [u'health', u'boost', u'bathurst', u'dubbo'] [u'hera', u'win', u'record', u'equal', u'tour', u'spain'] [u'hous', u'price', u'rise', u'labor', u'govt'] [u'hundr', u'daintre', u'area', u'develop'] [u'hundr', u'mourn', u'slay', u'penguin', u'pair'] [u'india', u'kick', u'birthday', u'mahal'] [u'inquest', u'present', u'suicid', u'open'] [u'insurg', u'attack', u'baghdad', u'polic', u'academi'] [u'intellig', u'suggest', u'lade', u'aliv', u'musharraf'] [u'irrig', u'water', u'alloc', u'rais'] [u'italian', u'grandfath', u'awash', u'adopt', u'offer'] [u'jail', u'term', u'cannabi', u'courier'] [u'forg', u'link', u'chechen', u'rebel', u'expert'] [u'kariong', u'woe', u'prompt', u'overhaul', u'plan'] [u'kelli', u'unhappi', u'reloc', u'plan'] [u'kewel', u'champion', u'clash'] [u'escap', u'webb', u'challeng', u'california'] [u'king', u'investig', u'continu'] [u'kosciusko', u'bushfir', u'inquiri', u'begin'] [u'labor', u'offer', u'free', u'childcar', u'packag'] [u'labor', u'slam', u'crazi', u'john', u'career', u'clearanc'] [u'latham', u'releas', u'child', u'care', u'polici'] [u'chang', u'offer', u'reveget', u'hope'] [u'leagu', u'team', u'protest', u'poki'] [u'lion', u'seek', u'help', u'brown', u'tribun', u'habit'] [u'lumber', u'plant', u'plan', u'move', u'ahead'] [u'charg', u'steal', u'sack'] [u'mander', u'control', u'decid'] [u'face', u'court', u'film', u'beach', u'children'] [u'medal', u'haul', u'newcastl', u'paralympian'] [u'merger', u'tip', u'earth', u'sanctuari', u'head', u'retir'] [u'migrat', u'bird', u'secur'] [u'miss', u'diver', u'famili', u'creat', u'site'] [u'miss', u'walker', u'night', u'spend', u'camp'] [u'moneybag', u'singh', u'break', u'tiger', u'record'] [u'charg', u'expect', u'grand', u'final', u'bust'] [u'more', u'figur', u'shortag', u'profil'] [u'prison', u'bed', u'bunburi'] [u'question', u'medicar', u'safeti', u'benefit'] [u'say', u'rebat', u'boost', u'child', u'mind', u'place'] [u'gambier', u'name', u'senior', u'year'] [u'distanc', u'cannonbal'] [u'multiplex', u'unveil', u'billion', u'dollar', u'ronin'] [u'narrow', u'escap', u'explod'] [u'nation', u'admit', u'bunburi', u'scheme', u'mistak'] [u'home', u'anim'] [u'magistr', u'head', u'kalgoorli', u'boulder'] [u'reef', u'tourism', u'ventur', u'announc'] [u'parol', u'period', u'urg', u'gassi', u'trial'] [u'north', u'west', u'nomin', u'tourism', u'award'] [u'hit', u'school', u'fund', u'plan'] [u'nude', u'requir', u'restor', u'accid'] [u'price', u'near', u'record', u'high'] [u'olsen', u'twin', u'sign', u'distribut', u'deal'] [u'pacemen', u'snub', u'indian', u'contract'] [u'pakistan', u'arrest', u'terror', u'suspect'] [u'pakistan', u'kill', u'milit', u'want', u'musharraf', u'plot'] [u'penguin', u'gather', u'murder', u'men', u'funer'] [u'pileggi', u'drop', u'appeal', u'plan'] [u'refuge', u'leav', u'limbo'] [u'polic', u'offic', u'stand', u'trial', u'drug', u'charg'] [u'polic', u'probe', u'hanwood', u'bash'] [u'polic', u'probe', u'king'] [u'polic', u'search', u'youth', u'weekend', u'ransack'] [u'polic', u'look', u'deeper', u'babi', u'death'] [u'polic', u'unhappi', u'traffic', u'infring'] [u'polic', u'wont', u'rule', u'teen', u'candid', u'attack'] [u'port', u'play', u'sponsor', u'rift'] [u'post', u'offic', u'robber', u'descript', u'releas'] [u'premiership', u'prove', u'profit', u'port'] [u'price', u'rat', u'chanc'] [u'prize', u'artwork', u'chloe', u'damag'] [u'probe', u'continu', u'underground', u'blast'] [u'protest', u'chip', u'away', u'garrett', u'forest', u'stanc'] [u'protest', u'confront', u'drill', u'crew'] [u'psycho', u'serena', u'celebr', u'china'] [u'public', u'help', u'seek', u'servic', u'station', u'hold'] [u'push', u'north', u'drought'] [u'racq', u'say', u'govt', u'need', u'increas', u'road', u'spend'] [u'receiv', u'sell', u'lee', u'store'] [u'recruit', u'fear', u'prompt', u'tour', u'duti', u'rethink'] [u'renal', u'dialysi', u'program', u'begin', u'communiti'] [u'reshuffl', u'boost', u'japan', u'popular'] [u'resid', u'ralli', u'zoo', u'helicopt', u'plan'] [u'consid', u'scrap', u'canberra', u'sydney'] [u'ricketson', u'face', u'grand', u'final', u'wipe'] [u'roadsid', u'bomb', u'kill', u'near', u'baquba'] [u'road', u'train', u'spill', u'tonn', u'explos', u'chemic'] [u'rocket', u'injur', u'pakistani', u'troop', u'near', u'afghan', u'border'] [u'rspca', u'campaign', u'link', u'anim', u'cruelti', u'violenc'] [u'rspca', u'launch', u'campaign', u'anim', u'cruelti'] [u'respons', u'fatal', u'crash'] [u'salin', u'think', u'anderson'] [u'white', u'law', u'ineffect', u'say', u'opposit'] [u'search', u'grave', u'vandal'] [u'secur', u'fear', u'boost', u'price'] [u'shevchenko', u'strike', u'milan', u'beat', u'lazio'] [u'children', u'kill', u'greec', u'crash'] [u'skill', u'fund', u'misdirect', u'school', u'bodi'] [u'spanish', u'hero', u'nadal', u'face', u'davi', u'final', u'snub'] [u'speed', u'limit', u'call', u'upset', u'politician'] [u'strand', u'coupl', u'unprepar', u'bush', u'ordeal'] [u'stress', u'disord', u'delay', u'underworld', u'drug', u'trial'] [u'student', u'protest', u'poor', u'servic'] [u'stuttl', u'murder', u'bungl', u'robberi', u'prosecut'] [u'sudan', u'sentenc', u'death', u'darfur', u'crime'] [u'support', u'show', u'nation', u'wine', u'bodi'] [u'survey', u'rais', u'water', u'awar'] [u'sweden', u'return', u'indigen', u'remain'] [u'industri', u'concern', u'train', u'pledg'] [u'teen', u'face', u'court', u'assault', u'charg'] [u'telstra', u'confirm', u'share', u'buyback'] [u'tenant', u'union', u'push', u'afford', u'hous'] [u'thailand', u'play', u'human', u'human', u'bird', u'fear'] [u'unhurt', u'helicopt', u'crash'] [u'townsvill', u'experi', u'oversea', u'tourism', u'boost'] [u'tragic', u'weekend', u'local', u'road'] [u'train', u'flight', u'end', u'emerg', u'land'] [u'transplant', u'game', u'underway', u'adelaid'] [u'tuckey', u'attack', u'leav', u'wing', u'nation'] [u'turtl', u'nab', u'sebastian', u'gold', u'shell'] [u'palestinian', u'milit', u'kill', u'northern', u'gaza'] [u'union', u'call', u'electr', u'protect', u'law'] [u'pledg', u'darfur'] [u'drug', u'smuggler', u'jail', u'melbourn', u'import'] [u'valencia', u'barca', u'pull', u'clear', u'atop', u'liga'] [u'vanuatu', u'escap', u'contempt', u'charg'] [u'victoria', u'boost', u'firefight', u'resourc'] [u'vote', u'begin', u'end', u'vast', u'elector'] [u'warn', u'eye', u'tilt', u'indian', u'glori'] [u'warn', u'hop', u'hurrah', u'india'] [u'warn', u'bushwalk', u'ahead', u'weather'] [u'water', u'concern', u'spark', u'test'] [u'water', u'test', u'reassur', u'tasmanian'] [u'weather', u'help', u'firefight', u'effort'] [u'west', u'bank', u'barrier', u'guard', u'die', u'suspect', u'suicid'] [u'windsor', u'name', u'alleg', u'briber'] [u'woman', u'critic', u'injur', u'dead', u'crash'] [u'woman', u'die', u'bargara', u'crash'] [u'work', u'progress', u'wickham', u'point', u'project'] [u'young', u'commut', u'right', u'thing'] [u'youth', u'allow', u'pledg', u'win', u'support'] [u'boost', u'mental', u'health', u'servic'] [u'charg', u'drug', u'syndic', u'bust'] [u'abandon', u'hanson', u'song', u'case'] [u'aborigin', u'detail', u'polit', u'journey'] [u'sayyaf', u'spiritu', u'advis', u'captur'] [u'best', u'magazin', u'market'] [u'addit', u'sentenc', u'jail', u'stash'] [u'agforc', u'declar', u'elect', u'result'] [u'alleg', u'drug', u'ring', u'muscl', u'face', u'court'] [u'alleg', u'plutonium', u'smuggler', u'arrest'] [u'alleg', u'abus', u'victim', u'sue', u'anglican', u'church'] [u'want', u'raaf', u'worker', u'compo'] [u'seek', u'nation', u'drink', u'water', u'polici'] [u'arafat', u'order', u'releas', u'kidnap', u'produc'] [u'arafat', u'lobbi', u'british', u'hostag', u'releas'] [u'architect', u'head', u'roebourn', u'shire'] [u'armidal', u'sieg', u'enter', u'fifth', u'hour'] [u'aussi', u'driver', u'fuel', u'indi'] [u'beatti', u'face', u'parliament', u'energex', u'debacl'] [u'bewar', u'latham', u'liverpool', u'account', u'govt'] [u'billiton', u'doubl', u'iron', u'sale', u'china'] [u'bird', u'perman', u'threat'] [u'blackshirt', u'leader', u'guilti', u'stalk'] [u'offer', u'hous', u'block'] [u'boyfriend', u'tell', u'stuttl', u'final'] [u'brack', u'defend', u'delahunti', u'mitcham', u'high', u'rise'] [u'british', u'soldier', u'kill', u'basra', u'ambush'] [u'break', u'hill', u'pursu', u'solar', u'tower', u'idea'] [u'brown', u'tribun', u'bind', u'grand', u'final', u'loss'] [u'bypass', u'prompt', u'karuah', u'plan', u'manag'] [u'eas', u'pressur', u'south', u'coast', u'hospit'] [u'candi', u'maker', u'downsiz', u'imag', u'issu'] [u'cautious', u'welcom', u'region', u'race', u'chang'] [u'continu', u'dwarf', u'digit', u'download'] [u'charlton', u'edg', u'rover'] [u'china', u'warn', u'interfer', u'activist'] [u'club', u'drive', u'accus', u'bail'] [u'cold', u'weather', u'forc', u'oktoberfest', u'switch', u'wine'] [u'communiti', u'boost', u'paedophil', u'awar'] [u'communiti', u'pay', u'tribut', u'penguin'] [u'contamin', u'sit', u'spotlight'] [u'council', u'back', u'hotel', u'plan'] [u'council', u'back', u'warner', u'stanc'] [u'council', u'campaign', u'auslink', u'fund'] [u'council', u'consid', u'zone'] [u'council', u'contribut', u'home', u'dementia', u'wing'] [u'council', u'get', u'teeth', u'fluorid', u'debat'] [u'council', u'green', u'light', u'feedlot', u'expans'] [u'councillor', u'deliv', u'corrupt', u'warn'] [u'councillor', u'unhappi', u'virgin', u'fund'] [u'council', u'rethink', u'sign', u'polici'] [u'council', u'pressur', u'upgrad'] [u'court', u'hear', u'william', u'incit', u'moran', u'murder'] [u'cowboy', u'player', u'choos', u'nation'] [u'croc', u'hunter', u'chop', u'flight', u'peac'] [u'daughter', u'probabl', u'pass', u'bird'] [u'david', u'jone', u'report', u'profit'] [u'democrat', u'critic', u'telstra', u'buyback'] [u'democrat', u'deplor', u'lack', u'indigen', u'fund'] [u'democrat', u'offer', u'latham', u'qualifi', u'support'] [u'democrat', u'welcom', u'church', u'apolog'] [u'develop', u'consid', u'post', u'surgeri', u'resort'] [u'dolli', u'creator', u'want', u'clone', u'human', u'cell'] [u'doubt', u'cast', u'roadhous', u'plan'] [u'drought', u'take', u'heavi', u'toll', u'farmer'] [u'educ', u'comment', u'plagu', u'hull'] [u'educ', u'minist', u'check', u'possibl', u'elector'] [u'energex', u'chair', u'authoris', u'unjustifi', u'payment'] [u'energex', u'chairman', u'beatti', u'scapegoat'] [u'england', u'player', u'admit', u'cocain'] [u'england', u'player', u'agonis', u'zimbabw', u'tour'] [u'director', u'say', u'didnt', u'overse', u'invest'] [u'farina', u'keep', u'kewel', u'viduka'] [u'fear', u'hold', u'queanbeyan', u'blast', u'victim'] [u'feder', u'court', u'trial', u'gold', u'coast', u'sit'] [u'govt', u'reject', u'secret', u'dump', u'list', u'claim'] [u'govt', u'urg', u'wast', u'dump', u'plan'] [u'financ', u'manag', u'guilti', u'chariti', u'robberi'] [u'fish', u'farm', u'harvest', u'showcas', u'potenti'] [u'flanneri', u'add', u'rooster', u'woe'] [u'flow', u'chart', u'wait', u'list'] [u'delay', u'rescu', u'injur', u'skier'] [u'disrupt', u'flight', u'melbourn', u'airport'] [u'forestri', u'overshadow', u'issu', u'democrat'] [u'energex', u'head', u'dishonest'] [u'fund', u'deal', u'leav', u'uluru', u'short', u'tourism', u'bodi'] [u'fund', u'access', u'centr'] [u'game', u'leav', u'hoteli', u'uncertain'] [u'ganguli', u'hope', u'tendulkar', u'chanc'] [u'leak', u'trigger', u'queanbeyan', u'explos'] [u'marriag', u'like', u'releas', u'virus'] [u'golf', u'club', u'flag', u'tournament', u'event'] [u'gonzal', u'upset', u'parko', u'french', u'surf'] [u'govt', u'ask', u'explain', u'nuclear', u'wast', u'dump', u'plan'] [u'govt', u'cynic', u'nation', u'backflip'] [u'govt', u'dismiss', u'nuclear', u'wast', u'dump', u'site', u'list'] [u'govt', u'pledg', u'wast', u'treatment', u'plant'] [u'govt', u'relax', u'irrig', u'water', u'restrict'] [u'govt', u'favour', u'shore', u'nuclear', u'dump'] [u'green', u'offer', u'prefer', u'pledg'] [u'green', u'play', u'role', u'richmond'] [u'grosser', u'hold', u'polic', u'injuri', u'payout'] [u'gunn', u'spray', u'contamin', u'drink', u'water'] [u'health', u'boost', u'eurobodalla'] [u'height', u'restrict', u'caus', u'develop', u'headach'] [u'hickey', u'outlin', u'safeti', u'review'] [u'hick', u'lawyer', u'demand', u'charg', u'detail'] [u'howard', u'defend', u'ipswich', u'bypass', u'plan'] [u'hurrican', u'blow', u'singh', u'irish', u'event'] [u'husband', u'seek', u'drop', u'oshan', u'assault', u'charg'] [u'hydro', u'appoint', u'mat', u'deal'] [u'independ', u'school', u'group', u'air', u'elect', u'polici'] [u'indian', u'wall', u'australia'] [u'india', u'test', u'doubt', u'right', u'hear', u'adjourn'] [u'injur', u'skier', u'rescu', u'alp'] [u'input', u'seek', u'pipelin', u'rout'] [u'isra', u'troop', u'kill', u'jenin', u'curfew', u'breaker'] [u'fiscal', u'grand', u'final', u'treasur'] [u'jail', u'chines', u'restaur', u'arsonist'] [u'jam', u'hardi', u'execut', u'stand', u'asid'] [u'jimmi', u'carter', u'fear', u'fair', u'florida', u'vote'] [u'johnston', u'label', u'senat', u'challeng', u'clueless'] [u'jordan', u'king', u'doubt', u'iraqi', u'elect', u'possibl'] [u'kidnap', u'iranian', u'diplomat', u'safe', u'baghdad'] [u'labor', u'go', u'environ', u'vote'] [u'labor', u'hold', u'poll', u'lead'] [u'labor', u'oppos', u'nuclear', u'dump', u'snowdon'] [u'labor', u'promis', u'mental', u'health', u'servic'] [u'labor', u'lift', u'ferri', u'subsidi'] [u'labor', u'unveil', u'green', u'push', u'canberra'] [u'latham', u'challeng', u'govt', u'alleg', u'energi'] [u'latham', u'dismiss', u'latest', u'poll'] [u'latham', u'howard', u'spar', u'molloy', u'issu'] [u'forc', u'brazilian', u'polic', u'releas', u'biopir'] [u'restrict', u'brew', u'kit', u'indigen'] [u'societi', u'call', u'extra', u'judg', u'reappoint'] [u'lenton', u'hanson', u'rais', u'brisban'] [u'liber', u'vote', u'card', u'draw', u'protest'] [u'suffer', u'burn', u'mysteri', u'queanbeyan', u'blast'] [u'meet', u'focus', u'hospit', u'asbesto', u'concern'] [u'milit', u'free', u'egyptian', u'hostag'] [u'minist', u'back', u'koizumi', u'shrine', u'visit'] [u'minist', u'say', u'takai', u'petit'] [u'minist', u'turn', u'bush', u'hospit', u'site'] [u'firefight', u'south', u'west'] [u'indigen', u'teacher', u'need', u'democrat'] [u'rail', u'woe', u'commut'] [u'time', u'vote', u'fluorid'] [u'musician', u'drum', u'anti', u'bush', u'sentiment'] [u'music', u'produc', u'spector', u'indict', u'murder', u'charg'] [u'nation', u'deni', u'gippsland', u'pledg', u'pork', u'barrel'] [u'navig', u'acquir', u'son', u'gwalia', u'mine'] [u'newbridg', u'trump', u'woolworth'] [u'develop', u'look', u'water', u'sustain'] [u'law', u'speed', u'asic', u'hardi', u'inquiri'] [u'specif', u'site', u'choos', u'technic', u'school'] [u'program', u'address', u'prison', u'violenc'] [u'senat', u'want', u'immigr', u'centr', u'sell'] [u'nurs', u'disput', u'arbitr'] [u'nurs', u'home', u'open', u'virus', u'outbreak'] [u'deport', u'isra', u'spi'] [u'price', u'break', u'mark'] [u'price', u'hit', u'barrel'] [u'price', u'spike', u'hurt', u'econom', u'growth'] [u'author', u'moot', u'kimberley'] [u'opposit', u'suspect', u'maddock', u'smear', u'campaign'] [u'pharmaceut', u'founder', u'front', u'court'] [u'parmalat', u'founder', u'releas', u'ahead', u'hear'] [u'parti', u'health', u'effort'] [u'pension', u'fund', u'criticis', u'news', u'corp', u'shift'] [u'pinochet', u'blame', u'militari', u'human', u'right', u'abus'] [u'pitcairn', u'accus', u'refus', u'restor', u'justic'] [u'clarifi', u'nanni', u'issu'] [u'downplay', u'telstra', u'vote', u'comment'] [u'polic', u'raid', u'home', u'drug', u'bust'] [u'polic', u'unsur', u'fatal', u'crash', u'caus'] [u'polic', u'urg', u'greater', u'secur'] [u'port', u'fight', u'carr'] [u'price', u'firm', u'final'] [u'priest', u'scuffl', u'holi', u'sepulchr'] [u'probe', u'launch', u'sugar', u'blaze'] [u'probe', u'launch', u'west', u'coast', u'chopper', u'crash'] [u'program', u'help', u'parent', u'cope'] [u'prosecut', u'open', u'case', u'accus', u'backpack'] [u'prosecutor', u'request', u'vizard', u'theft', u'case', u'delay'] [u'public', u'urg', u'help', u'fight', u'arson'] [u'push', u'better', u'health', u'servic', u'access'] [u'push', u'organ', u'donor'] [u'queanbeyan', u'trial', u'wont', u'shorten', u'wait', u'list', u'doctor'] [u'rain', u'outlook', u'good', u'south', u'east', u'farmer'] [u'rain', u'take', u'toll', u'dairi', u'factori', u'product'] [u'record', u'price', u'market'] [u'resid', u'unhappi', u'ambul', u'consult'] [u'resourc', u'stock', u'push', u'market'] [u'ricketson', u'plead', u'guilti', u'argu', u'downgrad'] [u'road', u'safeti', u'guid', u'impart', u'local', u'knowledg'] [u'road', u'upgrad', u'help', u'grape', u'grower'] [u'roger', u'carpet', u'club', u'jibe'] [u'roger', u'fin', u'club', u'rugbi', u'jibe'] [u'rural', u'colleg', u'upbeat', u'review'] [u'rural', u'doctor', u'seek', u'quarantin', u'health', u'fund'] [u'rural', u'servic', u'share'] [u'regain', u'credit', u'rat'] [u'saudi', u'arabia', u'hike', u'product', u'capac'] [u'school', u'polici', u'make', u'church', u'uncomfort'] [u'scientist', u'monitor', u'volcano'] [u'crash', u'spark', u'crew', u'qualif'] [u'shield', u'consid', u'contest', u'dubbo', u'liber'] [u'sixth', u'paralymp', u'medal', u'bundi', u'swimmer'] [u'sixth', u'paralymp', u'medal', u'wolfenden'] [u'argument', u'speed', u'limit', u'democrat'] [u'spaceshipon', u'fli', u'prize'] [u'special', u'unit', u'small', u'busi', u'govt'] [u'sport', u'forum', u'tackl', u'ugli', u'parent', u'syndrom'] [u'spratt', u'open', u'australia', u'cycl', u'world', u'campaign'] [u'stress', u'test', u'predict', u'heart', u'attack', u'earli'] [u'summit', u'consid', u'plan', u'fight', u'substanc', u'abus'] [u'sydney', u'unit', u'claim', u'second', u'life'] [u'teen', u'charg', u'assault', u'face', u'court', u'today'] [u'test', u'doubt', u'right', u'hear', u'adjourn'] [u'kill', u'fallujah', u'airstrik'] [u'tourism', u'council', u'play', u'limit', u'award', u'entri'] [u'tragic', u'crash', u'overshadow', u'paralymp'] [u'trio', u'automat', u'ironman', u'entri'] [u'truffl', u'grower', u'hope', u'bigger', u'crop'] [u'tuckey', u'stoush', u'coalit', u'candid'] [u'arrest', u'forb', u'editor', u'murder'] [u'union', u'threaten', u'work', u'ban', u'secur', u'concern'] [u'unrest', u'forc', u'price', u'higher'] [u'upper', u'hous', u'histor', u'kalgoorli', u'sit'] [u'captur', u'iraqi', u'milit', u'cell', u'leader'] [u'pressur', u'indonesia', u'pollut', u'arrest'] [u'vandal', u'desecr', u'bendigo', u'grave'] [u'victorian', u'worker', u'copi', u'xerox', u'strike'] [u'warren', u'women', u'defend', u'pitcairn'] [u'watchdog', u'ban', u'invest', u'fraud'] [u'wentworth', u'green', u'prefer', u'labor'] [u'year', u'live', u'danger', u'air', u'indonesia'] [u'radio', u'promis', u'boost'] [u'activist', u'dont', u'understand', u'middl', u'east', u'trade'] [u'liber', u'blame', u'labor', u'small', u'busi', u'declin'] [u'adult', u'trial', u'teenag', u'frighten', u'record'] [u'announc', u'season', u'comp'] [u'alleg', u'isra', u'agent', u'releas', u'jail'] [u'see', u'hull', u'respons', u'proof', u'govt', u'want', u'telstra'] [u'hail', u'excit', u'medicar', u'gold', u'plan'] [u'american', u'taliban', u'appeal', u'sentenc'] [u'angler', u'urg', u'avoid', u'estuari'] [u'resign', u'hit', u'energex'] [u'argentin', u'teen', u'shoot', u'dead', u'classmat'] [u'armidal', u'sieg', u'charg'] [u'australia', u'india', u'urg', u'oper'] [u'australian', u'stock', u'record', u'high'] [u'australian', u'senior', u'legal', u'post'] [u'australia', u'foreign', u'exchang', u'market', u'boom'] [u'bash', u'death', u'spark', u'church', u'heal', u'servic'] [u'crowd', u'hop', u'horsham'] [u'put', u'lighthous', u'liabil', u'issu'] [u'brown', u'seek', u'legal', u'advic', u'rival'] [u'bulldog', u'plea', u'fan'] [u'bullet', u'predict', u'titl'] [u'burglari', u'trial', u'hear', u'evid', u'video', u'link'] [u'busi', u'leader', u'forest', u'protect'] [u'buy', u'frenzi', u'creat', u'market', u'record'] [u'migrat', u'chang', u'protect', u'children'] [u'kalgoorli', u'road', u'fund'] [u'canberra', u'lead', u'plastic', u'free', u'nation'] [u'candid', u'quiz', u'woodchip', u'plan'] [u'candid', u'odd', u'polici'] [u'candid', u'want', u'age', u'care', u'bed', u'issu', u'address'] [u'carr', u'keep', u'port', u'fan', u'guess'] [u'carter', u'question', u'hospit', u'surgeri', u'decis'] [u'cliff', u'collaps', u'case', u'near'] [u'coach', u'suspend', u'cairn', u'brawl'] [u'communiti', u'honour', u'fall', u'polic'] [u'upgrad', u'improv', u'manag'] [u'council', u'detail', u'esplanad', u'develop', u'work'] [u'council', u'green', u'light', u'meter', u'park', u'plan'] [u'councillor', u'oppos', u'rate', u'rise', u'link', u'home'] [u'council', u'offer', u'reward', u'catch', u'coff', u'vandal'] [u'criteria', u'potenti', u'solid', u'storag'] [u'croc', u'remov', u'recreat', u'area'] [u'crow', u'announc', u'overhaul', u'coach', u'staff'] [u'democrat', u'green', u'leader', u'sign', u'anti', u'live', u'export'] [u'democrat', u'pressur', u'asylum', u'seeker'] [u'design', u'seek', u'salt', u'intercept', u'scheme'] [u'disappoint', u'lenient', u'term', u'policeman'] [u'identifi', u'jakarta', u'embassi', u'bomber'] [u'doctor', u'close', u'servic', u'risk', u'mum'] [u'door', u'shut', u'local', u'bec'] [u'doubl', u'gold', u'hanson', u'brisban'] [u'drought', u'boost', u'continu', u'dairi', u'farmer'] [u'earli', u'intervent', u'urg', u'asthma', u'woe'] [u'ecstasi', u'tablet', u'handgun', u'melbourn'] [u'energex', u'turmoil', u'continu', u'beatti'] [u'charg', u'ranger', u'contamin'] [u'export', u'recoveri', u'fail', u'meet', u'expect'] [u'extra', u'age', u'care', u'bed', u'bundaberg'] [u'famili', u'give', u'prefer', u'trish', u'worth'] [u'fan', u'vote', u'candlestick', u'park', u'renam'] [u'farm', u'group', u'pleas', u'candid', u'forum'] [u'author', u'find', u'tent', u'embassi', u'blaze'] [u'chief', u'deni', u'brigad', u'upgrad'] [u'flintoff', u'trescothick', u'miss', u'zimbabw', u'tour'] [u'probe', u'delv', u'nurs', u'home', u'death'] [u'forb', u'pool', u'plan', u'move', u'ahead'] [u'free', u'italian', u'worker', u'arriv', u'home'] [u'frost', u'crop', u'damag', u'like', u'hurt', u'albani', u'port'] [u'fume', u'caus', u'polic', u'station', u'closur'] [u'gallop', u'talk', u'billiton', u'china', u'iron'] [u'garret', u'receiv', u'green', u'prefer', u'default'] [u'gaza', u'restrict', u'affect', u'food', u'suppli'] [u'gippsland', u'koala', u'head', u'home'] [u'girl', u'deni', u'alleg', u'sierra', u'leon', u'sexual'] [u'goldfield', u'research', u'salin', u'fight'] [u'govern', u'urg', u'support', u'alpin', u'park', u'plan'] [u'govt', u'plan', u'extend', u'lobster', u'season'] [u'govt', u'play', u'opposit', u'pension', u'claim'] [u'govt', u'pressur', u'eas', u'water', u'woe'] [u'govt', u'rule', u'goldfield', u'hazard', u'wast'] [u'govt', u'rule', u'weaker', u'control'] [u'govt', u'urg', u'rule', u'western', u'dump', u'site'] [u'grandpar', u'feel', u'child', u'care', u'squeez'] [u'green', u'offer', u'herbert', u'prefer'] [u'gwydir', u'council', u'member', u'name'] [u'hacker', u'attack', u'qaeda', u'link', u'websit'] [u'health', u'group', u'play', u'asbesto', u'fear'] [u'hemingway', u'manuscript', u'remain', u'unpublish'] [u'hemp', u'parti', u'prefer', u'smoke'] [u'driver', u'aim', u'victim'] [u'home', u'evacu', u'typhoon', u'hit', u'japan'] [u'readi', u'lead', u'latham'] [u'incred', u'rooney', u'gun', u'turk'] [u'indigen', u'australian', u'protest', u'cruelti'] [u'indigen', u'council', u'face', u'tough', u'standard'] [u'indigen', u'mortal', u'rate', u'fall'] [u'intern', u'charter', u'gold'] [u'invest', u'scheme', u'chief', u'quiz', u'money'] [u'investor', u'fund', u'histor', u'home', u'purchas', u'court', u'hear'] [u'israel', u'push', u'gaza', u'strip'] [u'jackson', u'give', u'time', u'recoveri'] [u'job', u'growth', u'outlook', u'good', u'hunter'] [u'joke', u'ground', u'singapor', u'airlin', u'passeng'] [u'kakadu', u'environ', u'debat', u'heat'] [u'labor', u'leader', u'prais', u'latham', u'vision'] [u'labor', u'reaffirm', u'back', u'allianc'] [u'latham', u'take'] [u'lee', u'outlin', u'murray', u'plan'] [u'lehmann', u'name', u'gilli', u'deputi'] [u'liber', u'democrat', u'seek', u'reduc', u'burden'] [u'liber', u'claim', u'environ'] [u'life', u'return', u'newsstand'] [u'lille', u'head', u'waca', u'board'] [u'livestock', u'group', u'dismiss', u'celebr', u'protest'] [u'locust', u'fight', u'take', u'sky'] [u'give', u'suspend', u'term', u'steroid', u'case'] [u'mayor', u'hope', u'get', u'confid'] [u'mcdonald', u'boss', u'hospit', u'cancer'] [u'medic', u'staff', u'shortag', u'widen'] [u'medicar', u'gold', u'best', u'thing', u'slice', u'bread'] [u'miner', u'sign', u'pilbara', u'nativ', u'titl', u'agreement'] [u'minist', u'look', u'waterfront', u'plan', u'accept'] [u'mix', u'result', u'aussi', u'surf', u'tour'] [u'fund', u'council', u'apprentic'] [u'mosul', u'bomb', u'wound'] [u'motorola', u'staff', u'adelaid'] [u'move', u'afoot', u'boost', u'mobil', u'phone', u'coverag'] [u'put', u'brake', u'driver', u'curfew', u'plan'] [u'mysteri', u'disord', u'threaten', u'sunflow', u'industri'] [u'name', u'reveal', u'pitcairn', u'island', u'abus', u'trial'] [u'nation', u'galleri', u'masterpiec', u'stay', u'display'] [u'nation', u'polic', u'memori', u'plan', u'canberra'] [u'nigerian', u'rebel', u'threaten', u'attack', u'worker'] [u'korean', u'break', u'canadian', u'embassi'] [u'norwegian', u'pilot', u'land', u'plane', u'attack'] [u'growth', u'predict', u'outstrip', u'nation'] [u'deport', u'alleg', u'secret', u'agent'] [u'oat', u'seek', u'bail', u'trial', u'abort'] [u'orbit', u'worker', u'like', u'halt', u'strike'] [u'pair', u'injur', u'break', u'hill', u'shoot'] [u'pakistan', u'confid', u'win', u'seri'] [u'palestinian', u'activist', u'kill', u'nablus'] [u'paralymp', u'boss', u'signal', u'classif', u'review'] [u'paralymp', u'gold', u'medallist', u'key', u'citi'] [u'parent', u'adopt', u'cost'] [u'parti', u'urg', u'help', u'independ', u'fuel', u'oper'] [u'pension', u'approv', u'medicar', u'gold'] [u'petit', u'oppos', u'storag', u'site'] [u'pilot', u'fli', u'crash', u'report'] [u'pitcairn', u'prosecut', u'dismiss', u'judici', u'bias', u'claim'] [u'expect', u'match', u'contribut', u'water'] [u'polic', u'offic', u'rememb', u'servic'] [u'polic', u'seek', u'clue', u'school', u'fire'] [u'polic', u'upbeat', u'despit', u'miss', u'convict'] [u'polocross', u'advoc', u'enter', u'hall', u'fame'] [u'poultri', u'power', u'station', u'protest', u'pooh', u'pooh', u'plan'] [u'poverti', u'cycl', u'address', u'ridgeway'] [u'primat', u'disavow', u'stanc', u'labor', u'school', u'polici'] [u'probe', u'launch', u'drown', u'death'] [u'push', u'stand', u'rescu', u'chopper', u'servic'] [u'qanta', u'unveil', u'jetstar', u'asia'] [u'phase', u'hurrican', u'claim'] [u'queanbeyan', u'blast', u'victim', u'undergo', u'surgeri'] [u'queen', u'honour', u'republican', u'hero'] [u'queensland', u'treat', u'heart', u'attack'] [u'race', u'ident', u'launch', u'spring', u'carniv'] [u'rail', u'woe', u'spark', u'forest', u'polici', u'attack'] [u'ralf', u'race', u'william', u'final', u'race'] [u'rann', u'energi', u'record'] [u'region', u'rail', u'commut', u'remind', u'station', u'work'] [u'region', u'summit', u'consid', u'airport', u'right'] [u'report', u'say', u'work', u'prospect', u'good'] [u'seek', u'airport', u'access', u'guarante'] [u'ricketson', u'face', u'judiciari', u'tonight'] [u'ricketson', u'miss', u'grand', u'final'] [u'riewoldt', u'name', u'saint', u'best'] [u'rise', u'temperatur', u'spark', u'warn'] [u'roadhous', u'reject', u'grog', u'run', u'link'] [u'rspca', u'seiz', u'sick', u'dog', u'woocoo', u'properti'] [u'rush', u'crow', u'join', u'eucalyptus', u'cast'] [u'russian', u'contest', u'hamilton', u'gold', u'medal'] [u'school', u'sign', u'rule', u'polit'] [u'scientist', u'lectur', u'bush'] [u'scientist', u'skin', u'dung', u'track', u'ivori'] [u'second', u'bomb', u'threat', u'greek', u'airlin'] [u'sixer', u'launch', u'season'] [u'smother', u'sentenc', u'decis', u'reserv'] [u'soccer', u'boss', u'pois', u'nation', u'leagu', u'decis'] [u'spain', u'pick', u'sevill', u'davi', u'final'] [u'spring', u'carniv', u'launch', u'melbourn'] [u'state', u'deal', u'wast', u'democrat'] [u'strike', u'earn', u'north', u'cairn', u'coach', u'season'] [u'stuttl', u'trial', u'tell', u'wit', u'hear', u'scream'] [u'sydney', u'council', u'manag', u'abandon', u'contract'] [u'sydney', u'woman', u'die', u'honeymoon'] [u'symond', u'unhappi', u'india', u'test', u'tour', u'snub'] [u'symond', u'unhappi', u'test', u'tour', u'snub'] [u'taliban', u'ambush', u'leav', u'dead'] [u'tare', u'servic', u'slash'] [u'ship', u'builder', u'keen', u'captur', u'armi', u'market'] [u'tech', u'giant', u'unit', u'stop', u'phish'] [u'telstra', u'sale', u'caus', u'dissent', u'anderson'] [u'tendulkar', u'give', u'test'] [u'tendulkar', u'plot', u'aussi', u'downfal'] [u'terror', u'peacekeep', u'endang', u'polic'] [u'thai', u'offici', u'analys', u'bird', u'fluke'] [u'hurt', u'truck', u'crash', u'shop'] [u'time', u'file', u'lawsuit', u'protect', u'sourc'] [u'time', u'honour', u'fall', u'polic'] [u'judg', u'face', u'charg', u'unauthoris'] [u'tourism', u'award', u'nomin', u'pioneer', u'settlement'] [u'tourism', u'deal', u'rid', u'high', u'cowboy', u'effort'] [u'tradit', u'remedi', u'wive', u'tale'] [u'refus', u'bail', u'assault', u'charg'] [u'cole', u'bomber', u'sentenc', u'death'] [u'iraq', u'hostag', u'renew', u'appeal', u'blair'] [u'uncl', u'sticker', u'add', u'molloy', u'woe'] [u'underworld', u'murder', u'plot', u'self', u'defenc'] [u'urg', u'quick', u'start', u'darfur', u'monitor', u'forc'] [u'warn', u'iraqi', u'malnutrit'] [u'market', u'gain'] [u'militari', u'reserv', u'baulk', u'iraq', u'afghanistan'] [u'poll', u'bush', u'lead'] [u'vass', u'villag', u'promis', u'excit', u'chang'] [u'victorian', u'queen', u'birthday', u'honour', u'winner', u'receiv'] [u'word', u'erupt', u'wast', u'dump', u'issu'] [u'wast', u'dump', u'assur', u'fail', u'convinc', u'govt'] [u'water', u'assur', u'fail', u'convinc', u'northern', u'pair'] [u'water', u'breakthrough', u'nation'] [u'warn', u'fuel', u'price', u'rise'] [u'welsh', u'aim', u'short', u'cours', u'titl'] [u'welsh', u'swim', u'histori', u'titl'] [u'wollongong', u'rememb', u'fall', u'polic'] [u'wood', u'ninth', u'world', u'time', u'trial'] [u'worksaf', u'crack', u'truck', u'driver', u'fatigu'] [u'zimbabw', u'cricket', u'union', u'deni', u'racism', u'charg'] [u'face', u'charg', u'nation', u'child'] [u'abbott', u'unconvinc', u'labor', u'medicar', u'mirag'] [u'abus', u'child', u'trust', u'stagger', u'scale', u'child'] [u'academ', u'expect', u'child', u'pornographi', u'arrest'] [u'accus', u'see', u'bridg', u'attack', u'wit'] [u'acdc', u'electrifi', u'melbourn', u'lane'] [u'adelaid', u'withdraw', u'enter'] [u'spam', u'spim', u'time', u'spit'] [u'bid', u'push', u'market', u'higher'] [u'alli', u'plan', u'iraq', u'despit', u'denial'] [u'appl', u'pear', u'grower', u'welcom', u'import', u'reject'] [u'arsenic', u'offer', u'hope', u'leukaemia', u'suffer'] [u'surpris', u'adelaid', u'unit', u'withdraw'] [u'auction', u'cash', u'alic'] [u'author', u'abalon', u'poach', u'arrest'] [u'autist', u'children', u'parent', u'protest', u'parliament'] [u'averag', u'gold', u'coast', u'hous', u'price', u'fall'] [u'bec', u'promis', u'stay', u'aliv', u'amidst', u'fund', u'cut'] [u'benefit', u'flow', u'water', u'pump', u'revamp'] [u'crowd', u'boost', u'horsham'] [u'blair', u'readi', u'respond', u'negoti'] [u'blair', u'readi', u'talk', u'hostag', u'taker'] [u'boss', u'ask', u'starcraft', u'plate', u'confirm'] [u'boss', u'ask', u'confirm', u'plate', u'ride'] [u'botox', u'offer', u'hope', u'stroke', u'patient'] [u'brack', u'back', u'medicar', u'gold'] [u'brain', u'surgeri', u'delay', u'stress', u'famili'] [u'british', u'opposit', u'accus', u'blair', u'lie', u'iraq'] [u'brown', u'see', u'attack', u'green'] [u'brown', u'tribun', u'hear', u'defer'] [u'drop', u'trivial', u'offenc'] [u'caloundra', u'document', u'plan', u'futur'] [u'camera', u'focus', u'gambier', u'spot'] [u'candid', u'invit', u'poverti', u'polici'] [u'candid', u'outlin', u'polici', u'forum'] [u'bomb', u'iraq', u'kill', u'wind'] [u'cat', u'saint', u'reward', u'draw'] [u'chief', u'justic', u'escap', u'jail', u'time'] [u'childcar', u'centr', u'owner', u'charg', u'child', u'porn'] [u'childcar', u'centr', u'owner', u'fight', u'child', u'porn'] [u'china', u'hint', u'hong', u'kong', u'involv'] [u'chip', u'forestri', u'polici'] [u'clijster', u'make', u'win', u'return'] [u'contracept', u'plan', u'aim', u'koala', u'number'] [u'council', u'consid', u'trade', u'hour', u'plan'] [u'councillor', u'consid', u'specif', u'area', u'need'] [u'council', u'reject', u'sneath', u'claim'] [u'council', u'seek', u'health', u'servic', u'local', u'represent'] [u'council', u'suggest', u'farm', u'futur', u'forum'] [u'council', u'woe', u'attribut', u'communic', u'breakdown'] [u'court', u'fin', u'dairi', u'distributor', u'milk', u'claim'] [u'court', u'hear', u'pitcairn', u'mayor', u'rap', u'woman', u'time'] [u'croc', u'forc', u'closur', u'waterhol'] [u'custom', u'seiz', u'fake', u'swap', u'card'] [u'dairi', u'fin', u'bogus', u'milk', u'claim'] [u'dakar', u'winner', u'sainct', u'kill', u'ralli', u'pharaoh'] [u'free', u'train', u'travel', u'perth', u'resid'] [u'develop', u'board', u'review', u'hamper', u'project'] [u'find', u'dinosaur', u'bone'] [u'disco', u'deter', u'petrol', u'sniff'] [u'docket', u'tip', u'fuel', u'region', u'servic'] [u'doctor', u'warn', u'anti', u'inflammatori', u'drug', u'risk'] [u'doubt', u'cast', u'marin', u'park', u'plan'] [u'energi', u'australia', u'boss', u'resign'] [u'energi', u'retail', u'play', u'custom', u'grip'] [u'environ', u'group', u'welcom', u'labor', u'forest', u'polici'] [u'farmer', u'ask', u'report', u'locust', u'threat'] [u'fatal', u'hallucinogen', u'arriv'] [u'father', u'unhappi', u'polic', u'killer', u'sentenc'] [u'fear', u'hold', u'dubbo', u'detent', u'centr'] [u'fenc', u'aim', u'protect', u'children', u'dead', u'river'] [u'hop', u'avoid', u'year', u'poor', u'season', u'start'] [u'fisher', u'lip', u'seal', u'millic', u'meet'] [u'fish', u'releas', u'aim', u'bolster', u'river', u'health'] [u'fitzgerald', u'seed', u'fourth'] [u'bond', u'head', u'wait', u'bail', u'decis'] [u'polic', u'marksman', u'win', u'neglig', u'suit'] [u'fresh', u'push', u'market', u'record'] [u'fund', u'cut', u'forc', u'trim', u'servic'] [u'gallop', u'welcom', u'medicar', u'gold', u'polici'] [u'gigg', u'warn', u'rooney', u'burnout'] [u'global', u'warm', u'spark', u'poor', u'outlook', u'bendigo'] [u'govt', u'demand', u'elect', u'cost', u'lib'] [u'govt', u'give', u'nuclear', u'dump', u'assur'] [u'govt', u'hail', u'child', u'porn', u'arrest', u'polic', u'victori'] [u'govt', u'interest', u'goldfield', u'salin', u'research'] [u'govt', u'promis', u'bank', u'servic', u'rural', u'area'] [u'govt', u'appeal', u'paedophil', u'compens', u'rule'] [u'govt', u'urg', u'forget', u'state', u'agreement', u'act', u'studi'] [u'govt', u'urg', u'rethink', u'mine', u'leas', u'payment'] [u'satellit', u'phone', u'illeg', u'fish', u'boat'] [u'green', u'lose', u'ranger', u'licenc'] [u'group', u'submiss', u'chopper', u'review'] [u'harradin', u'set', u'suitabl', u'questionnair'] [u'hart', u'hang', u'boot'] [u'hart', u'hang', u'boot'] [u'hayden', u'return', u'land', u'rebirth'] [u'heckler', u'jeer', u'downer', u'foreign', u'affair', u'debat'] [u'henin', u'hardenn', u'shake', u'virus'] [u'high', u'hop', u'hold', u'wind', u'farm', u'plan'] [u'holbrook', u'hous', u'hume', u'shire', u'administr'] [u'hop', u'appeal', u'rais', u'fund', u'fight', u'deport'] [u'horan', u'highlight', u'turf', u'club', u'inequ'] [u'hospit', u'run', u'capac'] [u'hospit', u'surgeri', u'plan', u'baffl', u'council'] [u'hous', u'shortag', u'forc', u'feedlot', u'oper', u'build'] [u'human', u'bone', u'grampian'] [u'hunter', u'export', u'safeti', u'idea', u'china'] [u'warn', u'rate', u'hike', u'growth', u'soar'] [u'injur', u'firefight', u'die', u'hospit'] [u'investor', u'fund', u'wed', u'card', u'debt'] [u'iraq', u'group', u'take', u'hostag', u'includ', u'women'] [u'iraq', u'train', u'slow', u'say', u'think', u'tank'] [u'isra', u'palestinian', u'kill', u'clash'] [u'jordan', u'realign', u'iraq'] [u'kashmiri', u'separatist', u'escal', u'violenc'] [u'knee', u'hold', u'price'] [u'labor', u'jam', u'hardi', u'boss', u'resign'] [u'lake', u'closur', u'spark', u'oyster', u'threat'] [u'landhold', u'urg', u'report', u'fire'] [u'latham', u'call', u'admit', u'mistak'] [u'latham', u'grey', u'vote', u'pitch', u'draw', u'mix', u'respons'] [u'leader', u'outlin', u'vision', u'territori'] [u'legisl', u'council', u'end', u'kalgoorli', u'sit'] [u'lgaq', u'offer', u'support', u'indigen', u'transit'] [u'lille', u'honour', u'waca', u'presid'] [u'lobbi', u'group', u'call', u'increas', u'fund'] [u'locust', u'hatch', u'rise', u'weather', u'heat'] [u'locust', u'west'] [u'machin', u'help', u'meatwork', u'boost', u'goat', u'meat', u'export'] [u'accus', u'plane', u'bomb', u'claim', u'front', u'court'] [u'charg', u'shoot', u'partner'] [u'die', u'booyal', u'tractor', u'accid'] [u'die', u'head', u'road', u'crash'] [u'die', u'railway', u'crash'] [u'drive', u'japan', u'parliament'] [u'tell', u'court', u'abus', u'murder', u'wife'] [u'martha', u'stewart', u'serv', u'sentenc', u'camp', u'cupcak'] [u'mayor', u'unhappi', u'minist', u'waterfront', u'plan'] [u'medicar', u'gold', u'fulli', u'fund', u'latham'] [u'medicar', u'gold', u'polici', u'need', u'examin', u'democrat'] [u'medicar', u'gold', u'blame', u'game', u'say', u'minist'] [u'million', u'imag', u'child', u'porn', u'raid'] [u'minist', u'reject', u'poultri', u'power', u'station', u'claim'] [u'minist', u'say', u'surgeri', u'decis'] [u'montgomeri', u'hear', u'novemb'] [u'land', u'seek', u'develop'] [u'arrest', u'child', u'porn', u'raid'] [u'mourinho', u'down', u'porto', u'gunner', u'hold', u'draw'] [u'say', u'elector', u'shake', u'sensic'] [u'nation', u'wide', u'oper', u'crack', u'child'] [u'nauru', u'parliament', u'vote', u'minist', u'suspens'] [u'near', u'charg', u'child', u'porn', u'crackdown'] [u'drug', u'hope', u'skin', u'cancer', u'patient'] [u'newman', u'host', u'plan', u'confer'] [u'technolog', u'provid', u'seat', u'driver', u'assist'] [u'centuri', u'fastest', u'human', u'woman'] [u'bond', u'say', u'busi', u'usual'] [u'north', u'famili', u'celebr', u'footbal', u'honour'] [u'squad', u'open'] [u'roadhous', u'lash', u'violent', u'storm'] [u'price', u'eas', u'posit', u'news', u'nigeria'] [u'owner', u'doubl', u'ident', u'car'] [u'photo', u'fingerprint', u'need', u'visit'] [u'plea', u'forest', u'region', u'tourism', u'fund'] [u'accus', u'latham', u'decept', u'medicar', u'gold'] [u'label', u'medicar', u'gold', u'hoax'] [u'governor', u'escap', u'prosecut', u'attempt'] [u'polic', u'arrest', u'child', u'porn', u'oper'] [u'polic', u'bust', u'nationwid', u'child', u'porn', u'ring'] [u'polic', u'rememb', u'fall', u'colleagu'] [u'polic', u'launch', u'road', u'crackdown'] [u'polic', u'teacher', u'charg', u'child', u'porn', u'bust'] [u'polic', u'target', u'major', u'highway', u'long', u'weekend'] [u'pont', u'india', u'test'] [u'prison', u'underworld', u'figur', u'reach', u'lawyer'] [u'privat', u'health', u'group', u'welcom', u'medicar', u'gold'] [u'research', u'prostat', u'cancer', u'advanc'] [u'quarantin', u'watchdog', u'independ'] [u'racism', u'inquiri', u'face', u'earli', u'bouncer'] [u'ranger', u'warn', u'contamin'] [u'rawl', u'win', u'barker', u'medal'] [u'region', u'road', u'toll', u'probe', u'take', u'submiss'] [u'research', u'gong', u'academ'] [u'residenti', u'zone', u'rais', u'communiti', u'group'] [u'retail', u'figur', u'baffl', u'economist'] [u'retail', u'figur', u'bless', u'homeown'] [u'retir', u'lynch', u'cop', u'match'] [u'ricketson', u'rub', u'king'] [u'roger', u'retain', u'time', u'trial', u'crown'] [u'row', u'australia', u'announc', u'coach', u'shake'] [u'rspca', u'question', u'anim', u'welfar', u'penalti'] [u'russia', u'approv', u'kyoto', u'protocol'] [u'russia', u'expect', u'ratifi', u'kyoto'] [u'scholarship', u'tourism', u'student', u'wide'] [u'scientist', u'tune', u'earth', u'vibe'] [u'scout', u'leader', u'jail', u'year', u'abus'] [u'chang', u'haven', u'idyl'] [u'chang', u'like', u'boost', u'tweed', u'resort'] [u'searcher', u'gippsland', u'trio'] [u'search', u'resum', u'miss', u'gippsland', u'trio'] [u'second', u'blast', u'target', u'rescuer', u'iraq'] [u'secur', u'concern', u'grind', u'british', u'airway', u'flight'] [u'seven', u'arrest', u'nation', u'child', u'porn', u'crackdown'] [u'sexual', u'abus', u'trial', u'underway', u'pitcairn'] [u'dead', u'gaza', u'violenc'] [u'sixer', u'sink', u'breaker', u'open'] [u'spaceshipon', u'make', u'success', u'flight'] [u'stuart', u'tight', u'lip', u'chang'] [u'survey', u'highlight', u'nlis', u'databas', u'eas'] [u'sydney', u'hospitalis', u'gunshot', u'wound'] [u'syria', u'agre', u'border', u'secur', u'upgrad'] [u'talk', u'progress', u'timor', u'talk'] [u'smoke', u'legisl', u'head', u'upper', u'hous'] [u'teacher', u'polic', u'offic', u'charg', u'child', u'porn'] [u'teen', u'kill', u'attack'] [u'teen', u'coober', u'pedi', u'race'] [u'typhoon', u'lash', u'japan'] [u'typhoon', u'leav', u'dead', u'miss', u'japan'] [u'uncertainti', u'wagga', u'polic', u'station', u'builder'] [u'launch', u'haiti', u'campaign'] [u'crude', u'reserv', u'calm', u'market'] [u'friend', u'report', u'insidi', u'cover'] [u'raid', u'fallujah', u'safe', u'hous'] [u'fingerprint', u'visitor'] [u'court', u'consid', u'dynamik', u'appeal'] [u'koala', u'pill'] [u'victorian', u'injur', u'hang', u'glide', u'accid'] [u'virgin', u'introduc', u'newcastl', u'gold', u'coast', u'flight'] [u'polic', u'arrest', u'child', u'porn'] [u'west', u'coast', u'famili', u'anxious', u'surgeri', u'delay'] [u'woolworth', u'trump', u'newbridg', u'bid'] [u'wreck', u'webcam'] [u'zimbabw', u'option', u'say', u'flintoff'] [u'face', u'court', u'follow', u'child', u'porn', u'crackdown'] [u'resid', u'face', u'child', u'porn', u'charg'] [u'abalon', u'fisher', u'warn', u'care'] [u'abbott', u'deni', u'urg', u'pell', u'criticis', u'labor'] [u'summon', u'issu', u'pornographi', u'crackdown'] [u'water', u'polici', u'gain', u'liber', u'attent'] [u'adelaid', u'fatal'] [u'consid', u'tribun', u'overhaul'] [u'albani', u'includ', u'child', u'porn', u'arrest'] [u'pledg', u'needi', u'school', u'fund'] [u'promis', u'radio', u'australia', u'fund', u'boost'] [u'short', u'chang', u'govt', u'labor'] [u'appl', u'grower', u'seek', u'mandatori', u'conduct', u'code'] [u'keen', u'adelaid', u'team'] [u'aussi', u'touch', u'ireland'] [u'australia', u'back', u'indonesia'] [u'author', u'destroy', u'killer', u'dog'] [u'baker', u'rise', u'occas', u'award'] [u'beatti', u'call', u'media', u'ombudsman', u'energex'] [u'benigni', u'iraq', u'comedi'] [u'crowd', u'turn', u'hear', u'council', u'rate', u'rise'] [u'name', u'uefa', u'group', u'stage'] [u'blair', u'undergo', u'treatment', u'heart', u'palpit'] [u'bond', u'licens', u'kill', u'hold'] [u'brisban', u'firm', u'begin', u'vioxx', u'class', u'action'] [u'british', u'airway', u'bomb', u'threat', u'hoax'] [u'british', u'drop', u'championship'] [u'build', u'approv', u'slump', u'year'] [u'bullet', u'newcastl'] [u'bulli', u'hospit', u'lose', u'doctor'] [u'bush', u'kerri', u'battl', u'iraq'] [u'candid', u'defend', u'doctor', u'plan'] [u'candid', u'seek', u'kalgoorli', u'ambul', u'boost'] [u'candid', u'urg', u'pledg', u'gippsland', u'fund'] [u'chamber', u'welcom', u'weekend', u'bank'] [u'childcar', u'centr', u'sale', u'owner', u'charg'] [u'child', u'porn', u'arrest', u'small', u'defenc'] [u'child', u'pornographi', u'sicken', u'latham'] [u'child', u'porn', u'raid', u'prompt', u'polic', u'check', u'review'] [u'child', u'porn', u'suspect', u'dead'] [u'cook', u'undergo', u'shoulder', u'surgeri'] [u'cost', u'fuel', u'expect', u'boost', u'crop', u'demand'] [u'council', u'administr', u'seek', u'recount'] [u'council', u'back', u'tent', u'embassi', u'retent'] [u'council', u'launch', u'internet', u'tourism', u'plan'] [u'council', u'rezon', u'riverland', u'fruit'] [u'custodi', u'battl', u'end', u'embassi', u'bomb', u'blast', u'victim'] [u'darwin', u'seat', u'draw', u'high', u'profil', u'lobbi'] [u'dawson', u'candid', u'prefer'] [u'dead', u'clash', u'escal', u'gaza'] [u'dozen', u'kill', u'samarra', u'offens'] [u'appeal', u'inadequ', u'crime', u'sentenc'] [u'driver', u'remind', u'holiday', u'traffic', u'blitz'] [u'island', u'possibl', u'nuclear', u'wast', u'dump'] [u'fallon', u'give', u'flame', u'spark'] [u'fijian', u'indian', u'minist', u'resign', u'amid', u'money', u'abus'] [u'final', u'oral', u'submiss', u'boundari', u'shake'] [u'firebug', u'urg', u'rethink', u'behaviour'] [u'fish', u'boat', u'tonn', u'hash'] [u'fitzgerald', u'draw', u'austria'] [u'flanneri', u'give', u'deadlin', u'prove', u'fit'] [u'flinder', u'home', u'search', u'child', u'porn', u'raid'] [u'probe', u'intensifi', u'sixth', u'nurs', u'home'] [u'bond', u'execut', u'grant', u'bail'] [u'champ', u'slam', u'ax', u'british'] [u'school', u'chaplain', u'arrest', u'child'] [u'school', u'chaplain', u'remand', u'child'] [u'fund', u'combat', u'petrol', u'sniff'] [u'fund', u'announc', u'miner', u'explor', u'centr'] [u'garrett', u'slam', u'coalit', u'approach', u'nuclear', u'wast'] [u'geraldton', u'seiz', u'child', u'porn', u'oper'] [u'govt', u'sign', u'central', u'deal'] [u'group', u'drive', u'home', u'push', u'road', u'fund'] [u'grower', u'welcom', u'appl', u'knockback'] [u'gympi', u'gold', u'sale', u'near', u'complet'] [u'hart', u'hang', u'footi', u'boot', u'promot', u'famili'] [u'hayden', u'find', u'form', u'tour', u'open'] [u'heritag', u'site', u'conserv', u'plan'] [u'high', u'court', u'back', u'nsws', u'special', u'crimin', u'restrict'] [u'high', u'court', u'decis', u'delay', u'backpay', u'public'] [u'highway', u'tragedi', u'rule', u'accident'] [u'hop', u'rain', u'delay', u'water', u'crackdown'] [u'hotlin', u'help', u'address', u'youth', u'homeless', u'plight'] [u'howard', u'costello', u'attack', u'labor', u'cost'] [u'howard', u'latham', u'tight', u'lip', u'forestri', u'polici'] [u'howard', u'pitch', u'grey', u'vote'] [u'indian', u'board', u'reach', u'deal'] [u'indigen', u'health', u'fund', u'need', u'increas'] [u'indonesia', u'name', u'embassi', u'suicid', u'bomber'] [u'intersect', u'upgrad', u'get', u'green', u'light'] [u'ipswich', u'welcom', u'home', u'troop', u'iraq'] [u'israel', u'begin', u'open', u'end', u'gaza', u'offens'] [u'jam', u'hardi', u'actu', u'upbeat', u'talk'] [u'jam', u'hardi', u'union', u'begin', u'asbesto', u'talk'] [u'jetstar', u'boost', u'local', u'flight', u'melbourn'] [u'john', u'kerri', u'win', u'presidenti', u'debat', u'poll'] [u'judg', u'order', u'releas', u'lennon', u'file'] [u'judg', u'success', u'appeal', u'assault'] [u'judg', u'weigh', u'penalti', u'microsoft'] [u'keown', u'place', u'transfer', u'list'] [u'killer', u'dog', u'destroy'] [u'kyoto', u'support', u'jubil', u'russia', u'back'] [u'kyoto', u'hurt', u'aust', u'industri'] [u'labor', u'pledg', u'improv', u'wag'] [u'land', u'near', u'pcyc', u'consid', u'polic', u'station'] [u'drink', u'tini', u'town', u'resid'] [u'latham', u'brand', u'abbott', u'liar', u'pell', u'comment'] [u'latham', u'defend', u'medicar', u'gold', u'plan'] [u'latham', u'make', u'age', u'care', u'pledg'] [u'lawyer', u'say', u'hunter', u'top', u'asbesto', u'victim', u'list'] [u'leader', u'court', u'grey', u'vote'] [u'liber', u'parti', u'flyer', u'draw', u'angri', u'respons'] [u'lobbi', u'seek', u'club', u'smoke', u'deadlin'] [u'lynch', u'remors', u'grand', u'final', u'brawl'] [u'magistr', u'wont', u'face', u'assault', u'charg', u'stand'] [u'intend', u'guilti', u'plea', u'child', u'porn', u'charg'] [u'manufactur', u'sector', u'maintain', u'growth'] [u'market', u'end', u'record'] [u'martin', u'confid', u'govt', u'regul', u'ranger'] [u'martyn', u'score', u'mumbai'] [u'mayor', u'stand', u'tourism', u'levi'] [u'mediocr', u'liverpool', u'face', u'exact', u'test', u'chelsea'] [u'meeuw', u'unavail', u'black', u'tour'] [u'metal', u'gain', u'dollar', u'sell'] [u'midlif', u'crise', u'male', u'menopaus', u'research'] [u'miner', u'analysi', u'lure', u'mine', u'investor'] [u'minist', u'reject', u'opposit', u'detaine', u'claim'] [u'arrest', u'expect', u'child', u'porn', u'crackdown'] [u'feder', u'seek', u'pesticid', u'author'] [u'snare', u'child', u'porn', u'crackdown'] [u'time', u'bauxit', u'plan'] [u'motocycl', u'bodi', u'criticis', u'rider', u'death'] [u'museum', u'reloc', u'save', u'council', u'million'] [u'narooma', u'prepar', u'blue'] [u'nation', u'trust', u'execut', u'offic', u'back', u'work'] [u'nauruan', u'presid', u'declar', u'state', u'emerg'] [u'nauru', u'speaker', u'evict', u'offic'] [u'newman', u'face', u'court', u'child', u'porn', u'raid'] [u'nigeria', u'start', u'nuclear', u'reactor', u'amid', u'unrest'] [u'charg', u'fatal', u'attack'] [u'fund', u'council', u'youth', u'coordin'] [u'candid', u'debat', u'doctor', u'shortag'] [u'price', u'climb'] [u'spill', u'clean', u'underway', u'north', u'coast'] [u'opposit', u'call', u'govt', u'kyoto'] [u'owen', u'keen', u'action'] [u'pair', u'face', u'bunburi', u'court', u'child', u'porn', u'raid'] [u'parent', u'children', u'centr', u'despit', u'porn'] [u'parti', u'urg', u'maintain', u'sydney', u'airport', u'region'] [u'pinochet', u'undergo', u'psychiatr', u'evalu'] [u'condemn', u'child', u'porn', u'ring'] [u'restat', u'iraq', u'commit'] [u'reveal', u'plan', u'latham'] [u'urg', u'rethink', u'kyoto', u'stanc'] [u'protest', u'caus', u'high', u'commiss', u'disrupt'] [u'polic', u'arrest', u'drug', u'traffic', u'charg'] [u'polic', u'campaign', u'help', u'road', u'death'] [u'polic', u'recognis', u'brave', u'effort'] [u'polic', u'seek', u'wit', u'stuttl', u'murder', u'trial'] [u'polic', u'seiz', u'drug', u'swan', u'hill', u'raid'] [u'polic', u'warn', u'driver', u'long', u'weekend', u'traffic', u'blitz'] [u'posti', u'bike', u'deliv', u'outback', u'challeng'] [u'premiership', u'bust', u'say', u'price'] [u'protest', u'high', u'commiss'] [u'push', u'toxic', u'wast', u'rail', u'option'] [u'rapist', u'stay', u'jail', u'indefinit'] [u'raid', u'spark', u'plea', u'public', u'report', u'child', u'porn'] [u'rain', u'stop', u'water', u'ban'] [u'rain', u'welcom', u'break', u'hill'] [u'razzaq', u'centuri', u'sink', u'zimbabw'] [u'region', u'develop', u'board', u'converg'] [u'report', u'show', u'public', u'valu', u'weed', u'control'] [u'rhode', u'peninsula', u'develop', u'creat', u'job'] [u'rock', u'lifter', u'agre', u'return', u'megalith'] [u'rooster', u'boss', u'fin', u'ricketson', u'outburst'] [u'rural', u'servic', u'prepar', u'season'] [u'ryan', u'lead', u'dog', u'price', u'pull'] [u'driver', u'warn', u'flood', u'danger'] [u'scientist', u'crack', u'eat', u'alga', u'genet', u'code'] [u'second', u'jail', u'kill', u'earn', u'prison', u'indefinit'] [u'second', u'pitcairn', u'face', u'court', u'charg'] [u'senden', u'soar', u'mississippi', u'lead'] [u'sewag', u'spill', u'spark', u'creek', u'warn'] [u'shark', u'death', u'prompt', u'net', u'rethink'] [u'solomon', u'candid', u'debat', u'post', u'atsic', u'polici'] [u'south', u'africa', u'confirm'] [u'studi', u'end', u'gold', u'hop'] [u'studi', u'highlight', u'nation', u'park', u'tourism', u'benefit'] [u'suicid', u'bomber', u'kill', u'pakistani'] [u'supermarket', u'compani', u'ventur', u'fuel', u'region'] [u'sweden', u'return', u'aborigin', u'remain'] [u'sydney', u'teacher', u'child', u'porn', u'charg', u'refus', u'bail'] [u'seek', u'offshor', u'nuclear', u'dump', u'assur'] [u'unveil', u'waterfront', u'author', u'propos'] [u'thiev', u'steal', u'bike', u'australian', u'cycl', u'team'] [u'tiwi', u'program', u'target', u'role', u'model', u'footbal'] [u'triumphant', u'paralympian', u'arriv', u'home'] [u'indonesian', u'women', u'take', u'hostag', u'iraq'] [u'underworld', u'figur', u'tri', u'fals', u'passport'] [u'union', u'meet', u'cqpa', u'impass'] [u'union', u'warn', u'custom', u'cut', u'threaten', u'check'] [u'unlead', u'fuel', u'clear', u'adelaid'] [u'risk', u'slide', u'irrelev', u'australia'] [u'begin', u'offens', u'samarra'] [u'compani', u'recal', u'arthriti', u'drug'] [u'scientist', u'sound', u'warn', u'volcano'] [u'victorian', u'polic', u'investig', u'fatal', u'shoot'] [u'introduc', u'holiday', u'doubl', u'demerit', u'point'] [u'watchdog', u'monitor', u'apart', u'plan'] [u'wild', u'weather', u'lash', u'central', u'coast'] [u'wind', u'farm', u'power', u'year'] [u'xaus', u'claim', u'provision', u'pole', u'qatar'] [u'zarqawi', u'group', u'claim', u'iraq', u'suicid', u'attack'] [u'zimbabw', u'race', u'probe', u'scrap'] [u'suspect', u'milit', u'catch', u'afghanistan'] [u'aborigin', u'warn', u'lock', u'forest', u'away'] [u'liber', u'pledg', u'earli', u'childhood', u'servic'] [u'qaeda', u'tape', u'urg', u'muslim', u'alli'] [u'qaeda', u'threat', u'tape', u'authent', u'downer'] [u'anglican', u'synod', u'address', u'child', u'abus'] [u'aussi', u'danz', u'join', u'palac'] [u'aussi', u'mccoy', u'return', u'motogp'] [u'aussi', u'england', u'clash'] [u'australia', u'warn', u'india', u'backlash'] [u'balmus', u'upset', u'starcraft'] [u'beach', u'plaqu', u'urg', u'surfer', u'line'] [u'beatti', u'get', u'honorari', u'doctor'] [u'beazley', u'fear', u'seat', u'green', u'prefer'] [u'free', u'french', u'journalist', u'founder'] [u'blair', u'exit', u'strategi', u'spark', u'success', u'fever'] [u'blast', u'india', u'kill'] [u'brazil', u'court', u'appeal', u'athen', u'marathon', u'gold'] [u'brownlow', u'dress', u'auction', u'sick', u'kid'] [u'camera', u'fault', u'forc', u'speed', u'fin', u'refund'] [u'champion', u'medal', u'judd', u'bell'] [u'chariti', u'urg', u'action', u'poverti', u'margin', u'seat'] [u'child', u'porn', u'crackdown', u'continu', u'despit', u'suicid'] [u'church', u'tighten', u'secur', u'check'] [u'club', u'dish', u'champion', u'accolad'] [u'coalit', u'fund', u'juvenil', u'diabet', u'research'] [u'democrat', u'child', u'abus', u'royal', u'commiss'] [u'democrat', u'launch', u'senat'] [u'desert', u'make', u'gai'] [u'driest', u'district', u'miss', u'rain'] [u'dutch', u'intellig', u'agent', u'arrest', u'treason'] [u'eldest', u'pitcairn', u'rape', u'suspect', u'tri'] [u'elvstroem', u'take', u'turnbul', u'stake'] [u'eriksson', u'warn', u'owen', u'england', u'place'] [u'extra', u'polic', u'call', u'grand', u'final'] [u'farm', u'output', u'quadrupl', u'eas', u'poverti'] [u'fashion', u'photograph', u'avedon', u'die'] [u'father', u'fight', u'doctor', u'babi', u'aliv'] [u'ferencvaro', u'deni', u'uefa', u'charg', u'millwal'] [u'destroy', u'hous'] [u'fit', u'program', u'encourag', u'famili', u'activ'] [u'flanneri', u'chanc', u'make', u'grand', u'final'] [u'foreign', u'recruit', u'eas', u'child', u'protect', u'crisi'] [u'forest', u'spray', u'breach', u'unpunish'] [u'armstrong', u'sport', u'doctor', u'get', u'suspend'] [u'arrest', u'multipl', u'stab'] [u'mull', u'plan', u'eas', u'crisi'] [u'gibson', u'pray', u'stalker', u'leav'] [u'green', u'bicycl', u'summit', u'propos'] [u'guantanamo', u'detaine', u'alleg', u'abus', u'tortur'] [u'gunmen', u'shoot', u'dead', u'cross', u'gaza', u'border', u'fenc'] [u'hama', u'milit', u'kill', u'gaza', u'raid'] [u'hawk', u'tame', u'tiger'] [u'heart', u'order', u'blair', u'eye', u'term'] [u'high', u'speed', u'chase', u'end', u'arrest'] [u'hospit', u'staff', u'await', u'test', u'asbesto', u'scare'] [u'hostag', u'offer', u'return', u'bashir'] [u'hurrican', u'forc', u'nasa', u'delay', u'flight'] [u'indefinit', u'detent', u'rule'] [u'indian', u'board', u'reach', u'deal'] [u'india', u'alert', u'cyclon', u'approach'] [u'indigen', u'health', u'servic', u'approach', u'capac'] [u'indonesia', u'appeal', u'nation', u'releas'] [u'iraqi', u'behead', u'work'] [u'israel', u'expand', u'gaza', u'strike', u'kill', u'palestinian'] [u'israel', u'urg', u'avoid', u'civilian', u'death', u'gaza'] [u'jordanian', u'princ', u'request', u'bush', u'brain', u'view'] [u'judiciari', u'improv', u'public', u'imag', u'chief', u'justic'] [u'kewel', u'warn', u'chelsea', u'liverpool', u'backlash'] [u'labor', u'dodg', u'financi', u'check', u'say', u'costello'] [u'labor', u'pledg', u'place'] [u'latham', u'sorri', u'campaign'] [u'latham', u'kirribilli', u'hous', u'peopl'] [u'lewi', u'nation', u'seri'] [u'liber', u'sprinkler', u'plan', u'disadvantag', u'elder'] [u'lightn', u'strike', u'fallon', u'fire', u'flame'] [u'kill', u'accid'] [u'mcgrath', u'langer', u'shine', u'draw', u'tour', u'open'] [u'megawati', u'appeal', u'hostag', u'releas'] [u'melbourn', u'polic', u'buller', u'search'] [u'microsoft', u'confid', u'appeal', u'hear', u'end'] [u'milit', u'palestinian', u'sack'] [u'miss', u'fisherman', u'bodi', u'wash', u'ashor'] [u'miss', u'mount', u'buller', u'bushwalk'] [u'motorcyclist', u'gain', u'road', u'safeti', u'repres'] [u'chinatown', u'gateway', u'open'] [u'nigeria', u'militia', u'pledg', u'ceas'] [u'norther', u'flemington', u'return'] [u'offens', u'samarra', u'leav', u'dead'] [u'offshor', u'dump', u'safest', u'nuclear', u'wast', u'option', u'senat'] [u'price', u'hold'] [u'pace', u'club', u'penalis', u'cut', u'debt'] [u'paradorn', u'power', u'feder', u'test'] [u'peoplesoft', u'shake', u'pleas', u'wall', u'street'] [u'perth', u'resid', u'ask', u'consid', u'river', u'health'] [u'phallic', u'polit', u'artwork', u'rais', u'eyebrow'] [u'polic', u'search', u'driver', u'cotteslo'] [u'pont', u'target', u'test'] [u'powel', u'deni', u'bungl', u'lade', u'hunt'] [u'premiership', u'mind', u'doggi', u'folk'] [u'promin', u'women', u'bare', u'cancer', u'fund'] [u'public', u'servant', u'review'] [u'punter', u'coalit', u'poll', u'loom'] [u'qanta', u'deni', u'secret', u'cabin', u'crew', u'train'] [u'rail', u'termin', u'track', u'nation', u'build'] [u'ranger', u'hunt', u'massiv', u'croc'] [u'reformist', u'prefer', u'chang'] [u'refurbish', u'rottnest', u'accommod'] [u'revitalis', u'birdi', u'blitz'] [u'roo', u'sign'] [u'rural', u'doctor', u'seek', u'indigen', u'health', u'commit'] [u'russia', u'arrest', u'suspect', u'milit'] [u'welcom', u'labor', u'dolphin', u'sanctuari', u'plan'] [u'senden', u'second', u'mississippi'] [u'serbian', u'court', u'receiv', u'crime', u'case'] [u'continu', u'storm', u'clean'] [u'seven', u'kill', u'strike'] [u'sharapova', u'advanc', u'korea', u'open', u'final'] [u'sharapova', u'storm', u'past', u'stosur'] [u'shopper', u'welcom', u'howard', u'polici'] [u'singl', u'puff', u'damag', u'smoker'] [u'hospitalis', u'incid'] [u'soccer', u'club', u'snag', u'spectat'] [u'socceroo', u'close', u'strength', u'farina'] [u'south', u'africa', u'zealand', u'japan', u'rugbi'] [u'space', u'explos', u'point', u'supernova'] [u'spain', u'move', u'approv', u'marriag'] [u'teacher', u'minist', u'face', u'child', u'porn', u'charg'] [u'teen', u'charg', u'hill', u'stab'] [u'tendulkar', u'name', u'india'] [u'tens', u'calm', u'samarra', u'iraqi', u'offens'] [u'thailand', u'propos', u'south', u'east', u'asian', u'wildlif'] [u'pitcairn', u'trial', u'begin'] [u'thousand', u'shiit', u'youth', u'riot', u'pakistan'] [u'charg', u'dirti', u'bomb', u'sting'] [u'tighter', u'porn', u'law', u'consider', u'govt'] [u'lead', u'alleg', u'alcohol', u'runner', u'arrest'] [u'aloisi', u'osasuna', u'mileston'] [u'kill', u'injur', u'gaza', u'camp', u'strike'] [u'hostag', u'brother', u'claim', u'home', u'raid'] [u'condemn', u'pakistan', u'mosqu', u'bomb'] [u'captiv', u'presidenti', u'debat'] [u'confid', u'qaeda', u'threat', u'tape', u'authent'] [u'destroy', u'deploy', u'near', u'north', u'korea'] [u'investig', u'guantanamo', u'tortur', u'claim'] [u'volcano', u'blow', u'steam'] [u'woman', u'charg', u'oxygen', u'equip', u'theft'] [u'workplac', u'death', u'law', u'enhanc', u'busi', u'govt'] [u'kill', u'factori', u'blast'] [u'black', u'hole', u'medicar', u'gold', u'andrew', u'say'] [u'abus', u'victim', u'criticis', u'church', u'curriculum'] [u'actcoss', u'welcom', u'labor', u'polici'] [u'afghan', u'author', u'arrest', u'milit', u'ahead', u'poll'] [u'alleg', u'embassi', u'bomber', u'widow', u'put', u'faith'] [u'anim', u'right', u'activist', u'receiv', u'intern'] [u'arson', u'squad', u'investig', u'fatal'] [u'aussi', u'touch', u'mississippi'] [u'beachley', u'crash', u'world', u'champ', u'reign', u'danger'] [u'beatti', u'deni', u'energex', u'boss', u'conspiraci', u'theori'] [u'bulldog', u'gatecrash', u'freddi', u'farewel', u'parti'] [u'burrow', u'hobgood', u'elimin', u'franc'] [u'cahil', u'socceroo', u'horror', u'tackl'] [u'cana', u'cruis', u'shanghai', u'titl'] [u'carr', u'want', u'head', u'west'] [u'child', u'porn', u'penalti', u'rais'] [u'church', u'offer', u'counsel', u'child', u'porn'] [u'coastlin', u'scrutini', u'beach', u'competit'] [u'confer', u'cover', u'women', u'issu'] [u'costello', u'resign', u'wrong', u'labor', u'cost'] [u'council', u'seek', u'nuclear', u'dump', u'veto'] [u'countri', u'music', u'suicid', u'studi', u'top', u'ignobel', u'award'] [u'crump', u'break', u'australian', u'speedway', u'drought'] [u'custom', u'offic', u'kill', u'antiqu', u'miss'] [u'danih', u'extend', u'stay', u'demon'] [u'darwin', u'council', u'eureka', u'flag'] [u'death', u'gandhi', u'anniversari'] [u'debat', u'boost', u'kerri', u'poll', u'chanc'] [u'doctor', u'nurs', u'attack', u'coalit', u'medicar', u'lie'] [u'doubt', u'rais', u'defenc', u'contract', u'flip'] [u'dream', u'start', u'wildcat', u'coach', u'fisher'] [u'drought', u'fundrais', u'music', u'farmer', u'ear'] [u'stay', u'clear', u'ireland'] [u'england', u'squash', u'australia', u'take', u'world', u'titl'] [u'suspect', u'detain', u'franc'] [u'father', u'toddler', u'miss'] [u'express', u'run', u'paradorn'] [u'fight', u'continu', u'fallujah'] [u'aristid', u'counterpart', u'arrest', u'stand'] [u'energex', u'chairman', u'straight', u'shooter'] [u'fresh', u'blast', u'north', u'east', u'india'] [u'nation', u'agre', u'iraq', u'debt'] [u'ganguli', u'talk', u'indian', u'fear', u'factor'] [u'gibernau', u'win', u'qatar', u'rossi', u'crash'] [u'grand', u'final', u'countdown', u'underway'] [u'grand', u'final', u'countdown'] [u'green', u'propos', u'child', u'protect', u'law'] [u'gunner', u'cruis', u'magic'] [u'health', u'fund', u'call', u'indigen', u'support'] [u'howard', u'rule', u'increas'] [u'polici', u'maker', u'open', u'annual', u'meet', u'heavi'] [u'immunis', u'drive', u'african', u'polio', u'case'] [u'investig', u'launch', u'man', u'bodi'] [u'israel', u'claim', u'milit', u'vehicl'] [u'israel', u'seek', u'remov', u'unwra', u'head'] [u'itali', u'flag', u'troop', u'pullout', u'iraqi', u'elect'] [u'jerilderi', u'resid', u'warn', u'water', u'qualiti'] [u'latham', u'clear', u'wait', u'list', u'elder'] [u'lennon', u'murder', u'parol'] [u'liber', u'childcar', u'plan', u'lack', u'govt'] [u'light', u'aircraft', u'make', u'emerg', u'land'] [u'lightn', u'strike', u'boomer', u'bounc'] [u'lone', u'greek', u'board', u'love'] [u'charg', u'wed', u'recept', u'shoot'] [u'mcginti', u'keen', u'extend', u'child', u'porn', u'penalti'] [u'mcgrath', u'langer', u'shine', u'draw', u'tour', u'open'] [u'hospitalis', u'boat', u'accid'] [u'mental', u'health', u'pledg', u'short'] [u'mildura', u'investig', u'continu'] [u'motorcyclist', u'die', u'road', u'accid'] [u'mount', u'helen', u'pois', u'erupt'] [u'ancestor', u'secur', u'world', u'healer'] [u'ball', u'soar', u'secret', u'black', u'test'] [u'injuri', u'crisi', u'clijster'] [u'grand', u'final', u'underway'] [u'price', u'threaten', u'global', u'recoveri'] [u'onlin', u'medic', u'sit', u'caus', u'cyberchondria'] [u'ozon', u'layer', u'hole', u'shrink'] [u'palestinian', u'declar', u'state', u'emerg'] [u'parti', u'empt', u'petrol', u'sniff', u'report'] [u'peopl', u'evacu', u'area', u'near', u'mount', u'helen'] [u'pitcairn', u'island', u'pray', u'trial', u'continu'] [u'polic', u'sniff', u'chase', u'driver'] [u'polic', u'seek', u'info', u'botan', u'garden', u'assault'] [u'poll', u'tight', u'race', u'margin'] [u'pope', u'beatifi', u'controversi', u'cathol', u'figur'] [u'prescript', u'plan', u'benefit', u'australian'] [u'price', u'season', u'come', u'close'] [u'privat', u'colleg', u'moot', u'eas', u'skill', u'shortag'] [u'protest', u'truth', u'govern'] [u'ranger', u'dous', u'gasp'] [u'rebel', u'leader', u'hold', u'despit', u'nigerian', u'ceas', u'deal'] [u'region', u'airlin', u'report', u'recommend', u'ignor'] [u'rise', u'cost', u'grind'] [u'rooster', u'half', u'time'] [u'rugbi', u'net', u'council', u'sport', u'award'] [u'screensound', u'anniversari', u'reviv', u'independ'] [u'seal', u'hunt', u'norwegian', u'tourist'] [u'search', u'injur', u'toddler', u'father', u'call'] [u'sharapova', u'captur', u'korea', u'open'] [u'sharon', u'move', u'widen', u'gaza', u'offens'] [u'sharon', u'vow', u'rocket', u'strike'] [u'growth', u'log', u'polici', u'forest', u'group'] [u'high', u'happi', u'john', u'protest', u'target'] [u'submerg', u'truck', u'pose', u'pollut', u'risk'] [u'syria', u'brand', u'report', u'inaccur'] [u'thai', u'girl', u'infect', u'bird'] [u'transplant', u'game', u'organis', u'prais', u'adelaid'] [u'tulip', u'festiv', u'bloom'] [u'bodi', u'iraq'] [u'unbeaten', u'chievo', u'lecc'] [u'nuclear', u'watchdog', u'arriv', u'south', u'korea'] [u'upgrad', u'leader', u'grave', u'promis'] [u'iraqi', u'forc', u'tighten', u'grip', u'samarra'] [u'tighten', u'hold', u'samarra'] [u'warplan', u'kill', u'fallujah', u'raid'] [u'warm', u'welcom', u'sailor', u'home', u'iraq'] [u'wast', u'valencia', u'hold', u'draw'] [u'belt', u'india', u'spinner', u'say', u'gilchrist'] [u'whistleblow', u'prais', u'pursuit', u'alleg', u'paedophil'] [u'wilder', u'societi', u'warn', u'launceston', u'water', u'risk'] [u'wit', u'locat', u'backpack', u'murder', u'case'] [u'woman', u'die', u'fall', u'train'] [u'women', u'slip', u'equiti', u'fight'] [u'aborigin', u'ignor', u'forest', u'debat', u'democrat'] [u'accus', u'polic', u'offic', u'threaten', u'inform', u'court'] [u'actu', u'join', u'health', u'worker', u'support', u'medicar'] [u'attack', u'major', u'parti', u'indigen', u'health'] [u'anderson', u'uncertain', u'hold', u'eden', u'monaro'] [u'angler', u'think', u'fall', u'boat'] [u'anglican', u'church', u'screen', u'priest', u'worker'] [u'anglican', u'discuss', u'friendship', u'priest'] [u'arnhem', u'land', u'incom', u'go', u'drug'] [u'author', u'urg', u'labor', u'match', u'dementia', u'fund'] [u'bathurst', u'continu', u'push', u'bendigo', u'bank'] [u'battl', u'erni', u'wipe', u'major', u'miseri', u'tiger', u'slump'] [u'beachley', u'face', u'world', u'championship', u'wipe'] [u'beckham', u'stay', u'charg', u'say', u'sven'] [u'bigley', u'hand', u'group'] [u'black', u'rhino', u'hunt', u'lift'] [u'boati', u'urg', u'help', u'crime'] [u'box', u'champ', u'anyo', u'consid', u'titl'] [u'break', u'hill', u'doc', u'case', u'worker'] [u'brown', u'cop', u'match'] [u'buchanan', u'lash', u'terribl', u'wicket'] [u'build', u'group', u'consid', u'merger', u'plan'] [u'bulldoz', u'mishap', u'put', u'hospit'] [u'bull', u'rider', u'belt', u'golden', u'ride'] [u'bundaberg', u'welcom', u'home', u'paralymp', u'gold', u'medallist'] [u'nation', u'standard', u'assess', u'oversea'] [u'cambodia', u'approv', u'khmer', u'roug', u'tribun'] [u'cambodia', u'concern', u'crime', u'trial', u'cost'] [u'candid', u'want', u'half', u'town', u'resid'] [u'bomb', u'kill', u'iraq'] [u'crash', u'leav', u'burn'] [u'carr', u'want', u'head', u'west'] [u'chamber', u'showcas', u'parti', u'workplac', u'differ'] [u'chines', u'demand', u'give', u'cattl', u'export', u'boost'] [u'christian', u'parti', u'green'] [u'clark', u'hodg', u'wait', u'selector'] [u'move', u'strengthen', u'anti', u'nuclear', u'dump', u'law'] [u'coalit', u'commit', u'veteran', u'care'] [u'coalit', u'keep', u'elect', u'win', u'lead'] [u'coalit', u'extend', u'bowel', u'cancer', u'screen', u'program'] [u'cole', u'strike', u'keep', u'chelsea', u'touch'] [u'council', u'consid', u'beach'] [u'council', u'consid', u'immedi', u'airport', u'expans'] [u'council', u'seek', u'solut', u'abandon', u'home'] [u'council', u'weigh', u'build', u'plan'] [u'countri', u'music', u'fan', u'break', u'attend', u'record'] [u'court', u'ask', u'throw', u'lewi', u'neglig', u'case'] [u'crump', u'speed', u'world', u'championship'] [u'darwin', u'cabbi', u'concern', u'drug', u'hous'] [u'death', u'toll', u'continu', u'rise', u'isra', u'offens'] [u'detect', u'face', u'court', u'drug', u'theft'] [u'dog', u'celebr', u'fairytal', u'tumultu', u'year'] [u'driver', u'remind', u'doubl', u'demerit', u'point'] [u'drogba', u'sidelin', u'groin', u'injuri'] [u'earli', u'trade', u'talk', u'focus'] [u'effort', u'save', u'chees', u'factori'] [u'clear', u'meatwork', u'chemic', u'spill'] [u'leader', u'hold', u'french', u'swoop'] [u'eyr', u'peninsula', u'wilder', u'area', u'gain', u'protect'] [u'famili', u'distinct', u'church', u'candid', u'say'] [u'farm', u'breakthrough', u'offer', u'higher', u'yield'] [u'father', u'daughter', u'hurt', u'shed', u'blaze'] [u'feder', u'roll', u'roddick', u'thailand', u'titl'] [u'ferdinand', u'rooney', u'campbel', u'england', u'squad'] [u'figur', u'highlight', u'wild', u'respons'] [u'firm', u'offer', u'apprentic', u'incent'] [u'footbal', u'team', u'cri', u'racism', u'refere', u'snub'] [u'forestri', u'group', u'attack', u'labor', u'polici', u'announc'] [u'cricket', u'face', u'fraud', u'charg'] [u'news', u'admit', u'publish', u'fake', u'kerri', u'stori'] [u'friendli', u'pip', u'price', u'custom', u'loyalti'] [u'fruit', u'grower', u'claim', u'victori', u'code'] [u'funk', u'win', u'mississippi'] [u'gaddafi', u'ask', u'help', u'secur', u'british', u'hostag'] [u'gaza', u'offens', u'continu'] [u'girl', u'latest', u'thai', u'bird', u'victim'] [u'glider', u'converg', u'dalbi', u'event'] [u'govt', u'depart', u'urg', u'improv', u'custom', u'servic'] [u'govt', u'promis', u'film', u'industri'] [u'govt', u'urg', u'prevent', u'rural', u'campus', u'closur'] [u'green', u'hour', u'work', u'week'] [u'green', u'delay', u'eden', u'monaro', u'prefer', u'decis'] [u'hama', u'command', u'kill', u'isra', u'strike'] [u'hospit', u'staff', u'defer', u'industri', u'action'] [u'howard', u'confid', u'win', u'elect'] [u'huge', u'arriv', u'south', u'coast'] [u'india', u'order', u'troop', u'quell', u'north', u'eastern', u'violenc'] [u'strong', u'miner', u'sand', u'plan'] [u'isra', u'raid', u'target', u'hama', u'leader'] [u'itali', u'put', u'asylum', u'seeker', u'flight', u'home'] [u'elect', u'countdown'] [u'kit', u'help', u'identifi', u'domest', u'violenc', u'victim'] [u'labor', u'rule', u'wholesal', u'loss', u'public'] [u'labor', u'promis', u'power', u'station', u'latrob', u'valley'] [u'labor', u'promis', u'tafe', u'place', u'eas', u'skill', u'shortag'] [u'labor', u'unveil', u'forest', u'polici'] [u'land', u'council', u'member', u'financi', u'updat'] [u'larsson', u'fire', u'barca', u'real', u'collaps'] [u'latham', u'expect', u'announc', u'forest', u'polici'] [u'latham', u'hit', u'medicar', u'gold', u'critic'] [u'latham', u'pledg', u'save', u'tree', u'job'] [u'doblo', u'shut', u'rocki', u'shop'] [u'liber', u'boost', u'polic', u'number'] [u'lib', u'borrow', u'fund', u'capit', u'work'] [u'lobster', u'season', u'open', u'price', u'high'] [u'lockyer', u'lead', u'kangaroo', u'timmin', u'miss'] [u'longer', u'creek', u'fish', u'impos'] [u'longford', u'bakeri', u'take', u'cake', u'award'] [u'charg', u'bundaberg', u'assault'] [u'escap', u'fieri', u'crash'] [u'injur', u'drive', u'shoot', u'outsid'] [u'injur', u'hous', u'explos'] [u'manni', u'releas', u'hospit'] [u'murder', u'charg', u'hang', u'cell'] [u'court', u'caloundra', u'death'] [u'market', u'hit', u'high', u'despit', u'holiday'] [u'mayor', u'deputi', u'clear', u'elect', u'irregular'] [u'medicar', u'gold', u'polici', u'unsustain'] [u'minist', u'reject', u'launceston', u'water', u'claim'] [u'miss', u'girl', u'bike', u'mishap'] [u'miss', u'motorcyclist', u'safe'] [u'miss', u'trail', u'bike', u'rider'] [u'mobil', u'phone', u'vulner', u'hacker', u'secur'] [u'quarantin', u'restrict', u'lift', u'canker'] [u'violenc', u'hit', u'north', u'east', u'india'] [u'motorist', u'warn', u'long', u'weekend', u'road', u'death'] [u'call', u'immedi', u'good', u'samaritan', u'protect'] [u'nation', u'question', u'extens'] [u'natur', u'reserv', u'open', u'croc', u'scare'] [u'injuri', u'end', u'clijster', u'season'] [u'tamworth', u'council', u'select', u'mayor'] [u'nida', u'showcas', u'teach', u'program', u'whyalla'] [u'nightclub', u'cast', u'doubt', u'lockout'] [u'review', u'rehabilit', u'program', u'young'] [u'govt', u'introduc', u'tougher', u'child', u'porn', u'law'] [u'offici', u'result', u'declar', u'winner'] [u'ogradi', u'pip', u'fourth', u'italian', u'world'] [u'opposit', u'pledg', u'psychiatr', u'facil', u'solv'] [u'traffic', u'fin', u'issu', u'long', u'weekend'] [u'owen', u'doubt', u'wale', u'match'] [u'pitcairn', u'rape', u'complain', u'evid', u'doubt'] [u'judg', u'water', u'alleg', u'threaten'] [u'polic', u'investig', u'mildura', u'bodi'] [u'polic', u'investig', u'parti', u'attack'] [u'polic', u'arrest', u'bomaderri', u'stab'] [u'polic', u'drink', u'drive', u'arrest'] [u'polic', u'probe', u'hotel', u'assault'] [u'polic', u'rule', u'truck', u'crash', u'river', u'contamin'] [u'porn', u'suspect', u'suicid', u'spark', u'polic', u'review'] [u'psycho', u'actress', u'leigh', u'die'] [u'rann', u'confid', u'destroy', u'contract'] [u'rebel', u'georgian', u'region', u'elect', u'leader'] [u'record', u'reward', u'offer', u'morecomb', u'case'] [u'redknapp', u'say', u'sorri', u'cahil', u'horror', u'tackl'] [u'region', u'airlin', u'hope', u'resolv', u'airport'] [u'resid', u'urg', u'fear', u'newri', u'plan'] [u'retrial', u'begin', u'hindu', u'religi', u'riot', u'suspect'] [u'rhiannon', u'campaign', u'coal', u'plan'] [u'roma', u'fight', u'inter', u'juve', u'stay'] [u'rural', u'adjust', u'author', u'reach', u'year'] [u'safeti', u'breach', u'expos', u'farm'] [u'salvo', u'ponder', u'bega', u'blaze', u'damag'] [u'schwarzer', u'heroic', u'spur', u'chanc', u'trafford'] [u'scientist', u'claim', u'sar', u'vaccin', u'breakthrough'] [u'scientist', u'warn', u'volcano', u'erupt', u'immin'] [u'seaplan', u'land', u'mishap', u'mysteri'] [u'search', u'continu', u'miss', u'girl'] [u'search', u'resum', u'miss', u'trail', u'bike', u'rider'] [u'sewerag', u'woe', u'spark', u'plea', u'avoid', u'beach'] [u'spark', u'airport', u'scare'] [u'share', u'market', u'start', u'trade', u'week', u'strong'] [u'singapor', u'plane', u'divert', u'bomb', u'threat'] [u'slovenian', u'conced', u'defeat'] [u'solomon', u'candid', u'stress', u'parti', u'differ'] [u'space', u'ship', u'prize', u'win', u'flight'] [u'spotlight', u'carr', u'trade', u'underway'] [u'student', u'exam'] [u'studi', u'highlight', u'student', u'board', u'anxieti'] [u'sudan', u'consid', u'tribal', u'troubl', u'darfur'] [u'sunday', u'trade', u'trial', u'nowra'] [u'minist', u'question', u'hypocrit', u'forestri'] [u'teacher', u'charg', u'child', u'porn', u'crackdown'] [u'test', u'telecast', u'right', u'deal', u'final', u'strike'] [u'toddler', u'desert', u'trek'] [u'chief', u'call', u'gaza', u'offens'] [u'strike', u'kill', u'fallujah'] [u'enjoy', u'sweet', u'smell', u'nobel', u'success'] [u'plan', u'strike', u'insurg', u'fallujah'] [u'ute', u'rewrit', u'muster', u'record', u'book'] [u'govt', u'reject', u'concern', u'gift', u'student'] [u'viduka', u'join', u'socceroo', u'sick', u'list'] [u'charg', u'possess', u'child', u'pornographi'] [u'world', u'screen', u'product'] [u'photograph', u'reward'] [u'water', u'author', u'highlight', u'cost', u'water', u'move'] [u'trial', u'electron', u'prison', u'track'] [u'weekend', u'bank', u'expect', u'boost', u'region'] [u'western', u'farmer', u'welcom', u'rain'] [u'woman', u'remand', u'attempt', u'doubl', u'murder', u'charg'] [u'women', u'wheatbelt', u'crash'] [u'youni', u'malik', u'lead', u'pakistan', u'narrow'] [u'youth', u'custodi', u'armidal', u'break'] [u'arrest', u'sydney', u'real', u'estat', u'fraud'] [u'boost', u'plan', u'electr', u'suppli'] [u'abbott', u'give', u'tweed', u'hour', u'clinic'] [u'academ', u'predict', u'dawson', u'hold', u'seat'] [u'academ', u'predict', u'livermor'] [u'accus', u'shoebomb', u'accomplic', u'face', u'trial'] [u'protest', u'ralli', u'canadian', u'asbesto'] [u'aerial', u'spray', u'oppon', u'seek', u'feder', u'probe'] [u'agenc', u'say', u'buyer', u'tell'] [u'criticis', u'vail'] [u'promis', u'dubbo', u'machin'] [u'review', u'steal', u'indigen', u'wag', u'issu'] [u'say', u'medicar', u'gold', u'plan', u'conceiv'] [u'anglican', u'church', u'vote', u'women', u'bishop'] [u'arab', u'nation', u'demand', u'isra', u'raid'] [u'arthur', u'japan', u'open', u'round'] [u'australian', u'injur', u'china', u'base', u'jump'] [u'australian', u'open', u'opt', u'night', u'final'] [u'australian', u'question', u'mysteri', u'land'] [u'bash', u'victim', u'say', u'assault', u'unprovok'] [u'bet', u'agenc', u'highlight', u'trend'] [u'push', u'market', u'higher'] [u'blair', u'africa', u'day', u'heart'] [u'blignaut', u'miss', u'tiger', u'match'] [u'boat', u'carri', u'illeg', u'immigr', u'sink', u'tunisia'] [u'bog', u'aircraft', u'free'] [u'bog', u'stump', u'airport', u'author'] [u'bosnian', u'muslim', u'command', u'face', u'crime', u'charg'] [u'kill', u'latest', u'east', u'violenc', u'medic'] [u'reveal', u'delay', u'detect', u'kwinana', u'spill'] [u'brack', u'accus', u'lie', u'freeway', u'toll'] [u'breath', u'test', u'declin', u'proof', u'polic', u'need'] [u'bull', u'sale', u'live'] [u'bunburi', u'urg', u'gear', u'head', u'influx'] [u'busi', u'confid', u'grow', u'despit', u'sale', u'slump'] [u'cahil', u'injuri', u'relief'] [u'continu', u'drought'] [u'cath', u'comment', u'spark', u'union', u'concern'] [u'cat', u'assist', u'lion'] [u'children', u'hospit', u'employe', u'question', u'porn'] [u'chines', u'industri', u'region', u'leav', u'cold'] [u'church', u'reject', u'regist', u'critic'] [u'clark', u'wait', u'test', u'debut'] [u'clijster', u'futur', u'peril', u'injuri', u'setback'] [u'criticis', u'latham', u'grant', u'comment'] [u'chief', u'highlight', u'amphetamin', u'concern'] [u'coalit', u'forc', u'peddl', u'comment'] [u'coalit', u'boost', u'galleri', u'fund'] [u'coalit', u'encourag', u'hydrogen', u'fuel', u'cell', u'usag'] [u'council', u'chang', u'beach', u'warn'] [u'council', u'chief', u'see', u'benefit', u'report'] [u'council', u'decid', u'phone', u'tower'] [u'court', u'approv', u'live', u'telecast', u'test', u'seri'] [u'court', u'hear', u'accus', u'struggl', u'backpack'] [u'crane', u'driver', u'refus', u'statement', u'coron'] [u'croc', u'wont', u'deter', u'tourist', u'say', u'industri', u'bodi'] [u'darwin', u'defend', u'iraq', u'troop', u'comment'] [u'delahunti', u'reject', u'moratorium', u'plan'] [u'demand', u'famili', u'contact', u'servic', u'leav', u'parent'] [u'democrat', u'polici', u'call', u'extra', u'educ'] [u'derbi', u'crime', u'drop', u'liquor', u'ban'] [u'develop', u'sign', u'hous', u'plan'] [u'disabl', u'scheme', u'starv', u'fund'] [u'docker', u'juggl', u'trade', u'option'] [u'drop', u'explor', u'concern', u'mine', u'industri'] [u'eagl', u'midfield', u'kerr', u'face', u'prescript'] [u'eagl', u'midfield', u'kerr', u'face', u'prescript', u'charg'] [u'electron', u'seat', u'driver', u'improv', u'road', u'safeti'] [u'elton', u'john', u'tirad', u'denounc', u'mime', u'madonna'] [u'farm', u'chief', u'question', u'nativ', u'veget', u'law'] [u'farmer', u'look', u'rain', u'boost'] [u'farrer', u'candid', u'outlin', u'prioriti'] [u'safeti', u'law', u'prove', u'cost', u'hotel', u'motel'] [u'fisher', u'seek', u'reef', u'licenc', u'out'] [u'fish', u'industri', u'concern', u'tuna'] [u'flow', u'good', u'river', u'prof'] [u'zimbabw', u'cricket', u'chief', u'drop', u'race'] [u'garden', u'barrier', u'spark', u'frogwatch', u'warn'] [u'ghost', u'ship', u'mysteri', u'remain'] [u'gippsland', u'independ', u'mcgauran', u'prefer'] [u'gippsland', u'support', u'women', u'bishop'] [u'govt', u'accus', u'encourag', u'greenpeac', u'legal', u'action'] [u'govt', u'pledg', u'small', u'busi'] [u'govt', u'promis', u'polic', u'crackdown', u'wayward', u'schooli'] [u'govt', u'urg', u'studi', u'result', u'rethink'] [u'greek', u'archaeologist', u'preserv', u'fruit'] [u'green', u'extra', u'indigen', u'health'] [u'group', u'upbeat', u'rail', u'return'] [u'group', u'want', u'defenc', u'area', u'test', u'radium', u'uranium'] [u'haas', u'defend', u'indigen', u'health', u'spend'] [u'hawker', u'stand', u'bypass', u'fund', u'offer'] [u'health', u'minist', u'hospit'] [u'hid', u'flag', u'chang', u'forest', u'polici'] [u'imag', u'help', u'studi', u'climat', u'chang'] [u'israel', u'call', u'agenc', u'head', u'remov'] [u'kangaroo', u'snap', u'thompson'] [u'kemp', u'apologis', u'miss', u'bendigo', u'visit'] [u'kewel', u'lead', u'prong', u'socceroo', u'attack'] [u'kumbl', u'chase', u'mileston', u'bangalor', u'crumbler'] [u'labor', u'candid', u'outlin', u'water', u'pipelin', u'plan'] [u'labor', u'lash', u'parti', u'forestri'] [u'labor', u'promis', u'fund', u'child', u'protect'] [u'labor', u'promis', u'halt', u'hec', u'increas'] [u'land', u'council', u'chairman', u'lose', u'close', u'elect'] [u'latham', u'expand', u'higher', u'educ', u'packag'] [u'latham', u'focus', u'nation', u'forestri'] [u'latham', u'say', u'document', u'discredit', u'rubbish'] [u'latham', u'slam', u'support', u'anti', u'muslim', u'comment'] [u'latham', u'leav', u'phone', u'hook'] [u'latt', u'sipper', u'hold', u'forest', u'ransom'] [u'lawri', u'hayden'] [u'lawyer', u'object', u'bushfir', u'report'] [u'lehmann', u'eye', u'happi', u'return', u'bangalor'] [u'liber', u'order', u'remov', u'mislead', u'campaign'] [u'liber', u'branch', u'stack', u'complaint'] [u'liver', u'diseas', u'epidem', u'sweep', u'australia', u'expert'] [u'local', u'govt', u'group', u'get'] [u'locust', u'fight', u'get', u'crucial'] [u'lyon', u'give', u'tour', u'squad', u'seal', u'approv'] [u'male', u'nurs', u'stand', u'child', u'porn', u'charg'] [u'accus', u'kill', u'wife', u'break', u'court'] [u'face', u'court', u'partner', u'assault'] [u'mayor', u'outrag', u'telstra', u'eyr', u'peninsula', u'decis'] [u'mayor', u'reject', u'opposit', u'elector', u'complaint'] [u'mayor', u'speak', u'fluorid', u'debat'] [u'megawati', u'accept', u'elect', u'result'] [u'mix', u'respons', u'anglican', u'regist'] [u'modest', u'gain', u'wall', u'price', u'slip'] [u'moor', u'add', u'farina', u'casualti', u'list'] [u'mortgag', u'broker', u'account'] [u'driver', u'heed', u'polic', u'traffic', u'blitz'] [u'motel', u'blaze', u'clean', u'continu'] [u'leav', u'elect', u'specul', u'booki'] [u'reject', u'industri', u'relat', u'polici', u'critic'] [u'dynamit', u'arrest', u'assault', u'alleg'] [u'poll', u'show', u'bush', u'kerri', u'dead', u'heat'] [u'tamworth', u'council', u'choos', u'mayor'] [u'charg', u'sydney', u'real', u'estat', u'fraud'] [u'complaint', u'priest', u'child', u'porn', u'swoop'] [u'fear', u'bangalor', u'track', u'say', u'gilchrist'] [u'cricket', u'domest', u'summer'] [u'review', u'anti', u'racism', u'law'] [u'ntfl', u'discuss', u'footbal', u'plan'] [u'surg', u'record', u'high'] [u'opposit', u'promis', u'dead', u'road'] [u'opposit', u'pursu', u'mackenroth', u'energex'] [u'opposit', u'say', u'govt', u'defenc', u'polici', u'outdat'] [u'palac', u'mark'] [u'parent', u'meet', u'teacher', u'charg', u'child', u'porn'] [u'park', u'candid', u'consid', u'elect', u'chanc'] [u'parmalat', u'consid', u'sell', u'warwick', u'factori'] [u'parti', u'propos', u'polic', u'reserv', u'gap'] [u'perth', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'philippoussi', u'flop'] [u'physic', u'nobel', u'go', u'theori', u'trio'] [u'pioneer', u'astronaut', u'die'] [u'pitcairn', u'island', u'plead', u'guilti', u'crime'] [u'play', u'poland', u'troop', u'pullout'] [u'releas', u'letter', u'thank', u'iraqi', u'govt'] [u'phone', u'messag', u'target', u'margin', u'voter'] [u'announc', u'intellig', u'plan'] [u'establish', u'school'] [u'poland', u'signal', u'iraq', u'troop', u'deploy'] [u'polic', u'bulldog', u'fan', u'bondi', u'stand'] [u'polic', u'discov', u'decapit', u'iraqi'] [u'polic', u'hold', u'drink', u'drive', u'blitz'] [u'polic', u'hope', u'reel', u'seafood', u'thiev'] [u'polic', u'lament', u'number', u'speed', u'driver'] [u'policeman', u'disciplin', u'take', u'bali', u'bomber'] [u'poll', u'put', u'coalit', u'ahead'] [u'pooch', u'power', u'rule', u'griffith'] [u'prefer', u'announc', u'kennedi'] [u'priest', u'sack', u'child', u'porn', u'arrest'] [u'privat', u'spacecraft', u'begin', u'prize', u'seek', u'flight'] [u'probe', u'underway', u'marin', u'protect', u'area'] [u'prosecut', u'say', u'pitcairn', u'guilti', u'plea', u'signific'] [u'public', u'water', u'plan'] [u'punter', u'flock', u'sheep', u'race', u'sheer'] [u'qanta', u'flight', u'attend', u'strike'] [u'rainfal', u'boost', u'hunter', u'region'] [u'rare', u'aborigin', u'photo', u'hammer'] [u'redknapp', u'charg', u'cahil', u'crunch', u'tackl'] [u'remot', u'communiti', u'opportun', u'vote'] [u'renmark', u'poll', u'vote', u'centr', u'open'] [u'rumsfeld', u'cast', u'doubt', u'saddam', u'qaeda', u'link'] [u'rural', u'doctor', u'urg', u'increas', u'fee'] [u'rural', u'women', u'lack', u'access', u'basic', u'servic', u'studi'] [u'scientist', u'warn', u'shrink', u'tibetan', u'glacier'] [u'servic', u'sector', u'activ', u'return', u'strong', u'level'] [u'sharehold', u'billiton'] [u'sienna', u'museum', u'uncov', u'centuri', u'fresco'] [u'singapor', u'airlin', u'end', u'cost', u'foray'] [u'spaceshipon', u'claim', u'million', u'flight', u'prize'] [u'speed', u'driver', u'defi', u'polic', u'warn'] [u'stanhop', u'spruce', u'footpath'] [u'starcraft', u'face', u'uphil', u'battl', u'plate'] [u'kilda', u'crash', u'claim', u'second', u'life'] [u'straw', u'meet', u'kurdish', u'leader', u'iraq'] [u'studi', u'reveal', u'high', u'level', u'atmospher', u'iron'] [u'teenag', u'girl', u'kill', u'gaza', u'strip'] [u'tendulkar', u'rule', u'test'] [u'tenni', u'boss', u'defend', u'open', u'price', u'hike'] [u'test', u'telecast', u'right', u'deal', u'final', u'strike'] [u'timber', u'guarante', u'offer', u'industri', u'relief'] [u'tougher', u'penalti', u'child', u'porn'] [u'court', u'rule', u'britain', u'guantanamo'] [u'understrength', u'socceroo', u'readi', u'solomon'] [u'studi', u'consid', u'drug', u'drive'] [u'unit', u'share', u'soar', u'takeov', u'specul'] [u'unit', u'oversuppli', u'caus', u'concern'] [u'grind', u'troop', u'iraq', u'bremer'] [u'scientist', u'prepar', u'volcano', u'erupt'] [u'soldier', u'charg', u'iraqi', u'general', u'death'] [u'troop', u'militia', u'clash', u'sadr', u'citi'] [u'urg', u'maximum', u'restraint', u'israel', u'palestinian'] [u'wiss', u'oppos', u'wast', u'plan'] [u'veteran', u'australian', u'pilot', u'ditch', u'pacif'] [u'polic', u'chief', u'sack', u'drug', u'squad', u'detect'] [u'video', u'show', u'milit', u'kill', u'italianturk'] [u'visa', u'chang', u'hurt', u'canberra'] [u'voter', u'happi', u'phone', u'messag'] [u'voyag', u'mark', u'start', u'antarct', u'research', u'program'] [u'wait', u'list', u'grow', u'water', u'tank'] [u'wilko', u'skipper', u'england'] [u'wit', u'tell', u'bushfir', u'inquiri', u'system', u'failur'] [u'abbott', u'leav', u'hospit', u'kidney', u'stone', u'surgeri'] [u'test', u'commentari', u'broadcast', u'time'] [u'hospit', u'bypass', u'figur'] [u'senat', u'candid', u'head', u'head', u'debat'] [u'clear', u'postal', u'vote', u'backlog'] [u'afghan', u'elect', u'candid', u'final', u'pitch'] [u'alleg', u'pitcairn', u'rapist', u'admit', u'have', u'consensu'] [u'candid', u'unimpress', u'phone', u'messag'] [u'reject', u'cost', u'claim'] [u'anderson', u'say', u'forest', u'plan', u'compens', u'worker'] [u'anim', u'welfar', u'group', u'honour', u'albani', u'woman'] [u'seiz', u'anti', u'hoon', u'law'] [u'arthur', u'stosur', u'japan'] [u'asbesto', u'hospit', u'site', u'deem', u'risk'] [u'chang', u'help', u'navi', u'contract'] [u'asic', u'probe', u'lose', u'invest', u'fund'] [u'aussi', u'toss', u'bangalor'] [u'aust', u'base', u'jumper', u'undergo', u'treatment', u'accid'] [u'australian', u'pilot', u'rescu', u'pacif', u'crash'] [u'australian', u'travel', u'risk', u'health', u'studi'] [u'aviat', u'polici', u'radar', u'nation'] [u'azaria', u'case', u'wont', u'open'] [u'azaria', u'death', u'certif', u'chang', u'request'] [u'babi', u'whale', u'death', u'spark', u'research'] [u'backpack', u'father', u'bundaberg', u'murder', u'trial'] [u'council', u'welcom', u'fund', u'increas'] [u'chang', u'seek', u'avoid', u'rise', u'doctor', u'fee'] [u'price', u'drop', u'capricorn', u'coast', u'properti'] [u'bishop', u'consid', u'ordain', u'women', u'despit', u'rule'] [u'blair', u'issu', u'sudan', u'list', u'demand'] [u'blaze', u'sweep', u'huge', u'properti'] [u'boat', u'safe', u'moor', u'despit', u'distress', u'court', u'tell'] [u'brack', u'deni', u'freeway', u'affect', u'feder'] [u'braidwood', u'resid', u'wari', u'develop', u'propos'] [u'break', u'hill', u'polic', u'join', u'argentina', u'rugbi', u'leagu'] [u'broom', u'ghost', u'ship'] [u'forestri', u'issu', u'rethink'] [u'effort', u'boost', u'polic', u'respons', u'time'] [u'effort', u'tackl', u'indigen'] [u'abandon', u'light', u'rail', u'studi'] [u'canadian', u'drift', u'powerless'] [u'cancer', u'group', u'question', u'travel', u'scheme'] [u'candid', u'apologis', u'endors', u'gaff'] [u'candid', u'address', u'wagga', u'forum'] [u'candid', u'endors', u'claim', u'draw', u'complaint'] [u'candid', u'view', u'higher', u'educ'] [u'cape', u'town', u'launch'] [u'bomb', u'kill', u'iraq'] [u'carr', u'consid', u'give', u'polic', u'power', u'tackl'] [u'cathol', u'justic', u'bodi', u'pan', u'come', u'elect'] [u'chang', u'say', u'address', u'shop', u'centr', u'traffic'] [u'chemistri', u'nobel', u'go', u'kiss', u'death', u'team'] [u'childer', u'timelin', u'decor', u'main', u'street'] [u'child', u'porn', u'accus', u'like', u'plead', u'guilti'] [u'child', u'porn', u'accus', u'releas', u'bail'] [u'find', u'zarqawi', u'saddam', u'link'] [u'clark', u'gilchrist', u'australia', u'control'] [u'clark', u'katich', u'steadi', u'australian', u'inning'] [u'cleaner', u'face', u'child', u'porn', u'charg', u'pass', u'polic'] [u'clijster', u'injuri', u'career', u'threaten', u'hewitt'] [u'comic', u'rodney', u'dangerfield', u'die'] [u'contract', u'woe', u'spark', u'beirut', u'hospit', u'claim'] [u'control', u'sar', u'easier', u'think'] [u'council', u'interven', u'earli', u'schooli'] [u'council', u'win', u'appeal', u'payout'] [u'court', u'halt', u'carlton', u'fail'] [u'court', u'hear', u'drug', u'traffick', u'doubl', u'agent'] [u'critic', u'attack', u'howard', u'forest', u'polici'] [u'crosisca', u'guid', u'north', u'ballarat', u'rooster'] [u'custom', u'crush', u'hong', u'kong', u'bank', u'bungl'] [u'death', u'prompt', u'parti', u'drug', u'warn'] [u'death', u'toll', u'climb', u'israel', u'continu', u'gaza'] [u'diabet', u'group', u'question', u'elect', u'fund'] [u'disengag', u'plan', u'freez', u'peac', u'process'] [u'drought', u'spark', u'nation', u'park', u'closur'] [u'eagl', u'kerr', u'fin', u'forg', u'valium', u'prescript'] [u'ellison', u'defend', u'govt', u'border', u'protect', u'polici'] [u'seek', u'sourc', u'slick'] [u'farmer', u'elect', u'yield', u'poor'] [u'farmer', u'strike', u'rent', u'deal'] [u'field', u'day', u'record', u'strong', u'start'] [u'time', u'lucki', u'malaysian', u'groom'] [u'figur', u'highlight', u'gippsland', u'visitor', u'boost'] [u'fli', u'doctor', u'promot', u'healthi', u'live'] [u'food', u'extract', u'enhanc', u'cancer', u'drug', u'studi', u'find'] [u'commission', u'voic', u'despair', u'land'] [u'policeman', u'plead', u'guilti', u'pervert'] [u'gold', u'coast', u'surfer', u'battl', u'stay', u'content'] [u'govt', u'promis', u'power', u'station', u'announc', u'soon'] [u'govt', u'staffer', u'order', u'scoresbi'] [u'access', u'worst', u'territorian', u'studi', u'reveal'] [u'clinic', u'fail', u'eas', u'pressur', u'emerg', u'ward'] [u'green', u'campaign', u'cleaner', u'pulp', u'mill'] [u'green', u'prefer', u'corangamit'] [u'group', u'unfaz', u'saleyard', u'announc'] [u'gunnedah', u'honour', u'gold', u'medal', u'winner'] [u'habib', u'releas', u'immin', u'lawyer'] [u'health', u'allianc', u'back', u'medicar', u'gold'] [u'heat', u'creat', u'crop', u'concern'] [u'hervey', u'step', u'recycl', u'centr'] [u'hop', u'deal', u'boost', u'creswick', u'develop'] [u'horsham', u'launch', u'visitor', u'guid'] [u'hostag', u'grant', u'irish', u'passport', u'releas'] [u'howard', u'unveil', u'tasmanian', u'forest', u'plan'] [u'inquest', u'launch', u'attack', u'death'] [u'rat', u'remain', u'steadi'] [u'iraq', u'domin', u'vice', u'presidenti', u'debat'] [u'iron', u'domin', u'spanish', u'surf'] [u'israel', u'arrest', u'worker', u'gaza'] [u'itali', u'halt', u'asylum', u'seeker', u'expuls'] [u'john', u'lennon', u'killer', u'deni', u'parol'] [u'joint', u'approach', u'need', u'address', u'homeless', u'plight'] [u'kalgoorli', u'campaign', u'enter', u'negat', u'phase'] [u'karzai', u'run', u'mate', u'escap', u'explos'] [u'kewel', u'doubt', u'solomon', u'clash'] [u'kewel', u'lead', u'attack'] [u'kimmorley', u'lead', u'kangaroo', u'nation', u'warm'] [u'kindi', u'teacher', u'delay', u'strike'] [u'labor', u'back', u'coastguard', u'illeg', u'fish'] [u'labor', u'plan', u'ocean', u'offic', u'real', u'author'] [u'labor', u'say', u'howard', u'phone', u'messag', u'unauthoris'] [u'labor', u'sign', u'kyoto', u'protocol', u'elect'] [u'latham', u'accus', u'bias', u'medicar', u'critic'] [u'latham', u'pitch', u'school', u'polici', u'margin', u'seat'] [u'latham', u'set', u'jobless', u'target'] [u'laxman', u'step', u'sachin', u'shoe'] [u'lead', u'milit', u'kill', u'isra', u'strike'] [u'liver', u'diseas', u'breath', u'test', u'showcas', u'brisban'] [u'local', u'govt', u'chief', u'enthusiast'] [u'logi', u'dump', u'windi', u'coach'] [u'lung', u'cancer', u'rat', u'high', u'kalgoorli'] [u'major', u'parti', u'urg', u'address', u'environ'] [u'burn', u'port', u'macquair', u'blast'] [u'die', u'electr', u'blanket', u'start'] [u'plead', u'guilti', u'murder', u'partner'] [u'continu', u'fight', u'extradit', u'order'] [u'mayor', u'oppos', u'lead'] [u'mayor', u'seek', u'calder', u'fund'] [u'minist', u'defend', u'plan', u'longtail', u'tuna'] [u'minist', u'tear', u'radio', u'interview'] [u'fund', u'seek', u'indigen', u'health'] [u'resourc', u'seek', u'highway', u'patrol', u'polic'] [u'taxi', u'licenc', u'fund', u'secur', u'camera'] [u'seek', u'north', u'newsradio', u'coverag'] [u'coot', u'signal', u'come'] [u'murali', u'sign', u'lancashir'] [u'muscat', u'intent', u'play', u'despit', u'injuri'] [u'nation', u'challeng', u'tight', u'result'] [u'nativ', u'bird', u'shoot', u'prove', u'cost'] [u'nativ', u'titl', u'claim', u'drop', u'lack', u'fund'] [u'news', u'corp', u'consid', u'retain', u'sharehold'] [u'news', u'corp', u'disgruntl', u'sharehold'] [u'newspap', u'close', u'ahead', u'plan', u'belarus'] [u'law', u'impact', u'folk', u'festiv', u'act'] [u'niue', u'popul', u'shrink', u'secret'] [u'safeti', u'alert', u'plane', u'mishap', u'report'] [u'polic', u'seiz', u'worth', u'cannabi'] [u'lift', u'statut', u'limit', u'child', u'porn'] [u'tasmanian', u'auxiliari', u'worker', u'honour'] [u'power', u'win', u'appeal', u'pawa'] [u'nurs', u'disput', u'hamper', u'mental', u'health'] [u'admit', u'vietnam', u'vet', u'expos', u'agent', u'orang'] [u'valley', u'recognis', u'townsvill', u'suburb'] [u'oat', u'releas', u'prison', u'face', u'retrial'] [u'price', u'higher', u'suppli', u'worri'] [u'price', u'rate'] [u'suppli', u'fear', u'weigh', u'heavi', u'market'] [u'opinion', u'emerg', u'respons', u'consult', u'odd'] [u'opposit', u'pledg', u'rewrit', u'canberra', u'master', u'plan'] [u'opposit', u'pledg', u'transport', u'fund'] [u'opposit', u'promis', u'flood', u'manag'] [u'opposit', u'say', u'govt', u'forest', u'polici', u'hoax'] [u'owen', u'track', u'crack', u'critic', u'wale'] [u'parti', u'urg', u'target', u'indigen', u'diabet'] [u'patchi', u'hewitt', u'stosur', u'bow'] [u'patienc', u'australia'] [u'patienc', u'australia', u'say', u'gilchrist'] [u'peopl', u'need', u'energi', u'effici', u'lee'] [u'perth', u'top', u'home', u'build', u'survey'] [u'pilot', u'land', u'water', u'unauthoris'] [u'formalis', u'famili', u'prefer', u'deal'] [u'promis', u'forest', u'polici', u'cost', u'job'] [u'boat', u'drama', u'sink', u'deeper', u'uncertainti'] [u'polic', u'continu', u'probe', u'unauthoris', u'land'] [u'polic', u'investig', u'attack', u'candid', u'offic'] [u'polic', u'raid', u'redfern', u'hous', u'child', u'porn', u'crackdown'] [u'polic', u'road', u'crackdown', u'prove', u'success'] [u'polic', u'stand', u'sniffer', u'oper'] [u'polic', u'search', u'miss'] [u'popul', u'declin', u'prove', u'tax', u'outback', u'town'] [u'princip', u'stand', u'child', u'porn', u'probe'] [u'push', u'continu', u'chees', u'factori', u'stay', u'open'] [u'nat', u'want', u'compulsori', u'jail', u'term', u'paedophil'] [u'rain', u'help', u'river', u'flow'] [u'rare', u'aborigin', u'photo', u'privat', u'collector'] [u'mitsubishi', u'blame', u'teenag', u'death'] [u'resid', u'happi', u'motorcycl', u'track', u'snub'] [u'rooney', u'fifa', u'player', u'year', u'award'] [u'rove', u'build', u'go', u'smoke'] [u'rule', u'redefin', u'nation', u'competit', u'polici'] [u'rural', u'group', u'threaten', u'action', u'lack', u'rural'] [u'sack', u'kodak', u'worker', u'accept', u'redund'] [u'compani', u'get', u'forc', u'contract'] [u'doctor', u'hope', u'boost', u'work', u'condit'] [u'school', u'cleaner', u'charg', u'child', u'porn', u'offenc'] [u'scientist', u'trawl'] [u'scud', u'guarante', u'open', u'wildcard'] [u'ship', u'owner', u'fin', u'slick'] [u'stage', u'short', u'cours', u'swim'] [u'stenglein', u'happi', u'eagl', u'nest'] [u'stenglein', u'eagl'] [u'strong', u'employ', u'growth', u'predict'] [u'sunroc', u'chief', u'highlight', u'road', u'fund', u'import'] [u'synod', u'support', u'women', u'anglican', u'bishop'] [u'talk', u'focus', u'port', u'geograph', u'work', u'concern'] [u'teenag', u'injur', u'cliff', u'fall'] [u'teen', u'court', u'high', u'speed', u'chase'] [u'telstra', u'news', u'corp', u'help', u'market', u'record', u'high'] [u'injur', u'perth', u'ride', u'accid'] [u'thompson', u'look', u'resurrect', u'career', u'roo'] [u'palestinian', u'thai', u'kill', u'gaza'] [u'timber', u'worker', u'ralli', u'visit'] [u'season', u'draw'] [u'tourism', u'award', u'honour', u'easter', u'festiv'] [u'treloar', u'name', u'tamworth', u'council', u'mayor'] [u'trial', u'begin', u'parmalat', u'collaps'] [u'trio', u'deputi', u'mayor', u'spot'] [u'youth', u'hospitalis', u'accid'] [u'union', u'consid', u'legal', u'action', u'polic', u'offic'] [u'say', u'sudan', u'take', u'action', u'violenc'] [u'block', u'gaza', u'offens'] [u'corpor', u'watchdog', u'urg', u'investig', u'jam'] [u'iraqi', u'troop', u'storm', u'rebel', u'hold', u'stronghold'] [u'reject', u'iraqi', u'administr', u'claim'] [u'target', u'zarqawi', u'safe', u'hous', u'strike'] [u'veto', u'resolut', u'gaza'] [u'vote', u'draft'] [u'gecko', u'puzzl', u'scientist'] [u'resid', u'urg', u'brace', u'high', u'wind'] [u'word', u'indi', u'health'] [u'wit', u'seek', u'teen', u'attack'] [u'wollongong', u'host', u'nrma', u'gather'] [u'woman', u'die', u'coast', u'crash'] [u'aborigin', u'remain', u'welcom', u'home'] [u'academ', u'predict', u'coalit'] [u'liber', u'promis', u'better', u'account'] [u'adelaid', u'unit', u'join', u'premier', u'leagu', u'comp'] [u'afghan', u'attack', u'spur', u'elect', u'violenc', u'fear'] [u'afghan', u'children', u'lose', u'high', u'court', u'battl'] [u'hand', u'pick', u'athlet', u'skeleton', u'winter'] [u'allawi', u'strike', u'deal', u'iraqi', u'milit'] [u'bodi', u'bosnian', u'grave'] [u'candid', u'question', u'drought', u'review', u'time'] [u'miss', u'green', u'prefer', u'eden', u'monaro'] [u'applebi', u'defend', u'titl'] [u'resum', u'talk', u'adelaid', u'unit'] [u'hit', u'fourth', u'consecut', u'record'] [u'australian', u'base', u'jumper', u'pronounc', u'brain', u'dead'] [u'australian', u'golf', u'cream', u'play', u'centenari', u'open'] [u'australia', u'secur', u'wheat', u'deal', u'iraq'] [u'australia', u'take', u'stranglehold', u'test'] [u'australia', u'stranglehold', u'test'] [u'austrian', u'jelinek', u'win', u'nobel', u'literatur', u'prize'] [u'author', u'monitor', u'brisban', u'fire'] [u'baker', u'break', u'hill', u'deputi', u'mayor'] [u'beatti', u'dismiss', u'mandatori', u'jail', u'term', u'child'] [u'beazley', u'spark', u'health', u'fund', u'debat'] [u'blast', u'prompt', u'refuel', u'warn'] [u'bodi', u'brighton', u'hous'] [u'bomb', u'kill', u'dozen', u'pakistani', u'ralli'] [u'british', u'save'] [u'british', u'ship', u'reach', u'strand'] [u'burk', u'shire', u'demand', u'emerg', u'poll', u'booth'] [u'bushfir', u'coordin', u'centr', u'brisban'] [u'bushfir', u'expert', u'accus', u'take', u'side'] [u'busi', u'chamber', u'form', u'council'] [u'higher', u'gold', u'coast', u'rat'] [u'elect', u'focus', u'rural', u'issu'] [u'train', u'incent'] [u'cambodian', u'king', u'threaten', u'quit'] [u'camera', u'improv', u'cabbi', u'secur'] [u'camera', u'offer', u'cabbi', u'secur', u'boost'] [u'candid', u'remov', u'univers'] [u'candid', u'odd', u'environ'] [u'carr', u'bateman', u'hospit', u'announc'] [u'child', u'pornographi', u'investig'] [u'clark', u'chalk', u'debut', u'australia', u'build'] [u'clark', u'make', u'dazzl', u'debut'] [u'clark', u'target', u'debut'] [u'clark', u'track', u'debut'] [u'coke', u'seal', u'crusta', u'fruit', u'juic', u'deal'] [u'cole', u'doubl', u'video', u'review'] [u'concern', u'rais', u'damag', u'flinder', u'rang', u'road'] [u'consult', u'consid', u'pool', u'heat', u'cost'] [u'coral', u'reef', u'fish', u'spawn'] [u'costello', u'hail', u'job', u'growth'] [u'council', u'back', u'offic', u'upgrad'] [u'council', u'give', u'unit', u'develop'] [u'councillor', u'attack', u'local', u'govt', u'report'] [u'council', u'oppos', u'tavern', u'poki', u'plan'] [u'council', u'seek', u'theatr', u'revamp', u'detail'] [u'council', u'meet', u'wind', u'farm', u'rat'] [u'council', u'spell', u'death', u'knell', u'tree'] [u'council', u'revamp', u'environ', u'plan'] [u'dairi', u'industri', u'sow', u'seed', u'doubt', u'cloud'] [u'dalla', u'plan', u'open', u'oswald', u'kill', u'site'] [u'damag', u'hamper', u'investig'] [u'davenport', u'destroy', u'molik', u'germani'] [u'disgrac', u'stockbrok', u'releas'] [u'docker', u'fin', u'drive', u'offenc'] [u'doctor', u'predict', u'crisi', u'loom', u'rural', u'area'] [u'attack', u'inquest', u'spark', u'crackdown'] [u'downpour', u'downsid', u'denman'] [u'drug', u'squad', u'detect', u'charg', u'traffic'] [u'firefight', u'tackl', u'hinterland', u'blaze'] [u'fisher', u'warn', u'oper', u'rule'] [u'resign', u'amid', u'briberi', u'investig'] [u'teacher', u'stand', u'child', u'porn'] [u'fuel', u'price', u'prompt', u'power', u'rethink', u'outback'] [u'fund', u'secur', u'hervey', u'tourist', u'road'] [u'gaddafi', u'join', u'call', u'british', u'hostag', u'releas'] [u'gash', u'apologis', u'support', u'claim'] [u'pipelin', u'decis', u'time'] [u'pipelin', u'work', u'begin'] [u'plan', u'oppon', u'unlik', u'chang', u'site'] [u'gerrard', u'oper', u'speed', u'recoveri'] [u'gillard', u'question', u'liber', u'leaflet', u'claim'] [u'giteau', u'player', u'year', u'gong'] [u'golf', u'club', u'flag', u'apart', u'complex', u'work'] [u'govt', u'blitz', u'focus', u'work', u'condit'] [u'govt', u'commit', u'hospit', u'stay', u'open'] [u'govt', u'stand', u'firm', u'cotton'] [u'grain', u'grower', u'lobbi', u'criticis', u'labor', u'polici'] [u'graingrow', u'discuss', u'chang'] [u'green', u'revers', u'eden', u'monaro', u'prefer', u'decis'] [u'guidelin', u'see', u'hurt', u'riverland', u'doctor'] [u'gunn', u'give', u'thumb', u'forestri', u'plan'] [u'histor', u'desert', u'prove', u'hard'] [u'hobart', u'council', u'consid', u'water', u'meter'] [u'howard', u'defend', u'growth', u'forest', u'plan'] [u'howard', u'visit', u'litmus', u'test', u'elector'] [u'howard', u'warn', u'latham', u'mean', u'chang', u'wors'] [u'hunter', u'candid', u'industri', u'relat', u'stoush'] [u'iraq', u'wmds', u'say', u'inspector'] [u'jackson', u'lead', u'storm', u'wnba', u'final'] [u'kewel', u'aloisi', u'qualifi'] [u'kewel', u'keen', u'embarrass', u'critic'] [u'kumbl', u'join', u'club'] [u'labor', u'plan', u'lower', u'electr', u'price'] [u'labor', u'promis', u'canberra', u'surgic', u'centr'] [u'labor', u'slam', u'liber', u'plan', u'propos'] [u'labor', u'reap', u'prefer', u'tasmanian', u'forest'] [u'labor', u'lower', u'unemploy', u'latham'] [u'land', u'agreement', u'defus', u'nativ', u'titl', u'litig'] [u'latham', u'predict', u'bennelong', u'elect'] [u'latham', u'promot', u'tafe', u'polici'] [u'latham', u'rais', u'race', u'issu', u'howard'] [u'local', u'ident', u'fear', u'dead', u'melbourn'] [u'local', u'media', u'ignor', u'issu', u'say', u'candid'] [u'locust', u'hatch', u'near', u'wentworth'] [u'long', u'drive', u'mother'] [u'major', u'support', u'intervent', u'boundari'] [u'mango', u'grower', u'support', u'propos', u'eas', u'worker'] [u'court', u'replica'] [u'manufactur', u'centr', u'plan', u'austoft'] [u'maranoa', u'candid', u'allot', u'prefer'] [u'market', u'optimist', u'despit', u'rocket', u'price'] [u'mayor', u'overjoy', u'xstrata', u'park', u'donat'] [u'metal', u'group', u'sign', u'china', u'iron', u'deal'] [u'minist', u'outlin', u'schooli', u'week', u'detail'] [u'minist', u'reject', u'border', u'secur', u'critic'] [u'echo', u'call', u'bail', u'supervis', u'scheme'] [u'fund', u'announc', u'calder', u'highway'] [u'reject', u'pork', u'barrel', u'claim'] [u'machin', u'promis', u'campaign', u'countdown'] [u'negoti', u'continu', u'coastal', u'patrol', u'futur'] [u'news', u'corp', u'strengthen', u'corpor', u'govern'] [u'chang', u'nation', u'prefer', u'capricornia'] [u'norther', u'pastur'] [u'polic', u'worker', u'charg', u'child', u'porn'] [u'opposit', u'unhappi', u'tape', u'evid'] [u'occi', u'knock', u'earli', u'spain'] [u'price', u'hit'] [u'opera', u'jetti', u'plan', u'streaki'] [u'owen', u'track', u'world', u'qualifi'] [u'pakistan', u'seri', u'final'] [u'parti', u'accus', u'fund', u'mental', u'health'] [u'parti', u'need', u'focus', u'rural', u'women', u'academ'] [u'pitcairn', u'councillor', u'court', u'assault', u'charg'] [u'phone', u'campaign', u'ring', u'alarm', u'bell'] [u'unapologet', u'despit', u'iraq', u'weapon', u'report'] [u'australia', u'pipelin', u'project', u'get', u'major', u'boost'] [u'polic', u'fear', u'firebug', u'pose', u'dead', u'threat'] [u'polic', u'offic', u'suspend', u'child', u'porn', u'probe'] [u'polic', u'upbeat', u'locat', u'assault', u'wit'] [u'port', u'agre', u'carr', u'trade'] [u'postal', u'vote', u'concern', u'spark', u'seat', u'challeng'] [u'pungent', u'smell', u'flower', u'expect', u'draw', u'crowd'] [u'puppet', u'theatr', u'aim', u'rais', u'profil'] [u'govt', u'get', u'tough', u'race', u'industri'] [u'treasur', u'energex', u'apolog', u'draw', u'critic'] [u'ratepay', u'slow', u'payment'] [u'resid', u'oppos', u'phone', u'tower', u'locat'] [u'resid', u'ralli', u'fluorid'] [u'retail', u'credit', u'card', u'scam', u'warn'] [u'rivkin', u'walk', u'free', u'complet', u'sentenc'] [u'rove', u'build', u'cost'] [u'brew', u'airport', u'upgrad'] [u'seaman', u'die', u'canadian', u'blaze'] [u'sharon', u'back', u'peac', u'road'] [u'shire', u'administr', u'lament', u'dept', u'closur'] [u'shire', u'seek', u'draft', u'wetland', u'polici', u'chang'] [u'sixer', u'sink', u'croc'] [u'socceroo', u'underestim', u'solomon'] [u'takeov', u'specul', u'spark', u'fear'] [u'storm', u'bring', u'littl', u'rain', u'goulburn', u'valley'] [u'stosur', u'lose', u'russian', u'japan', u'open'] [u'stricter', u'safeti', u'measur', u'slat', u'perth', u'royal'] [u'sulli', u'build', u'natur', u'galleri'] [u'supermarket', u'ordeal', u'trigger', u'manhunt'] [u'support', u'show', u'youth', u'driver', u'train'] [u'suprem', u'court', u'case', u'includ', u'verbal', u'verdict'] [u'green', u'labor', u'prefer'] [u'thousand', u'tip', u'attend', u'launceston'] [u'tiger', u'tie', u'knot'] [u'timmin', u'injur', u'kangaroo', u'crocker'] [u'townsvill', u'teacher', u'arrest', u'child', u'porn', u'charg'] [u'trap', u'sailor', u'free', u'crane'] [u'treasur', u'lose', u'control', u'budget', u'liber'] [u'troubl', u'surround', u'indigen', u'corp', u'unclear'] [u'turkey', u'step', u'closer', u'join'] [u'botch', u'train', u'exercis', u'coast'] [u'unemploy', u'fall', u'lift', u'rate', u'rise', u'expect'] [u'union', u'move', u'greater', u'school', u'asbesto', u'awar'] [u'union', u'say', u'ambul', u'truck', u'woe', u'ongo'] [u'urg', u'maintain', u'region', u'campus'] [u'univers', u'say', u'white', u'whale', u'male'] [u'staffer', u'want', u'iraq'] [u'alleg', u'habib', u'train', u'hijack'] [u'launch', u'iraqi', u'secur', u'forc'] [u'lower', u'volcano', u'warn'] [u'overhaul', u'agenc'] [u'soldier', u'kill', u'near', u'fallujah'] [u'vein', u'camera', u'design', u'eas', u'inject', u'pain'] [u'vettori', u'captain', u'squad'] [u'victoria', u'high', u'wind', u'flash', u'flood'] [u'villawood', u'detaine', u'hunger', u'strike'] [u'wage', u'wrangl', u'continu', u'despit', u'public', u'servant'] [u'water', u'chang', u'afoot', u'nimbin'] [u'woman', u'refus', u'bail', u'wild', u'chase'] [u'wentworth', u'club', u'forgo', u'race', u'meet'] [u'wine', u'bodi', u'take', u'wait', u'approach', u'govt'] [u'wit', u'seek', u'fatal', u'tweed', u'crash'] [u'woman', u'quintuplet', u'lanka'] [u'workshop', u'consid', u'mall', u'option'] [u'work', u'start', u'enhanc', u'lake', u'district', u'entranc'] [u'wrap', u'come', u'kalgoorli', u'bus'] [u'dead', u'egypt', u'hotel', u'blast'] [u'academ', u'forecast', u'tough', u'time', u'nation'] [u'assault', u'figur', u'rise'] [u'attempt', u'correct', u'postal', u'vote', u'mishap'] [u'airport', u'mishap', u'close', u'runway'] [u'alleg', u'crime', u'boss', u'arrest', u'sydney', u'raid'] [u'accus', u'blind', u'self'] [u'say', u'labor', u'health', u'plan', u'fall', u'short'] [u'amcor', u'plead', u'guilti', u'worker', u'death'] [u'analysi', u'find', u'medicar', u'gold', u'underfund'] [u'anderson', u'anger', u'rural', u'ballot', u'problem'] [u'appeal', u'court', u'extend', u'renmark', u'manslaught', u'sentenc'] [u'athlet', u'converg', u'coast', u'triathlon'] [u'atsb', u'offic', u'probe', u'port', u'hedland', u'train', u'death'] [u'aussi', u'india', u'fight'] [u'australia', u'breakthrough'] [u'australia', u'nervous', u'start', u'inning'] [u'australian', u'paedophil', u'suspect', u'arrest', u'vietnam'] [u'australian', u'princ', u'want', u'unauthoris', u'flight'] [u'australian', u'snooker', u'star', u'face', u'assault', u'charg'] [u'australia', u'philippin', u'build', u'counter', u'terror', u'tie'] [u'australia', u'philippin', u'boost', u'defenc', u'cooper'] [u'bankstown', u'resid', u'ralli', u'airport'] [u'barker', u'candid', u'upbeat', u'chanc'] [u'barra', u'track', u'beij', u'olymp'] [u'beazley', u'pledg', u'monitor', u'militari', u'compo'] [u'bendigo', u'chicken', u'farm', u'hatch', u'plan'] [u'crowd', u'turn', u'field', u'day', u'final'] [u'boost', u'marin', u'environ'] [u'blair', u'minist', u'say', u'sorri', u'iraq', u'intellig'] [u'blast', u'resort'] [u'blaze', u'claim', u'point', u'boat'] [u'bluescop', u'lose', u'money', u'strike', u'say'] [u'bomb', u'blast', u'rock', u'resort'] [u'boundari', u'chang', u'tip', u'chang', u'vote'] [u'british', u'hostag', u'bigley', u'behead', u'report'] [u'bulldog', u'masri', u'offer', u'tip', u'youngster'] [u'bull', u'kill', u'elder'] [u'bull', u'prepar', u'battl', u'blue'] [u'burk', u'slam', u'labor', u'radioact', u'wast'] [u'bush', u'defend', u'iraq', u'despit', u'report'] [u'campaign', u'countdown', u'begin', u'eden', u'monaro'] [u'campaign', u'enter', u'final'] [u'canberra', u'charg', u'child', u'porn'] [u'candid', u'enter', u'final', u'phase', u'campaign'] [u'candid', u'pitch', u'margin'] [u'carr', u'deliv', u'hospit', u'assur'] [u'carrol', u'take', u'bronz', u'australia'] [u'cat', u'secur', u'otten'] [u'cat', u'secur', u'otten', u'frenzi', u'trade', u'end'] [u'cazali', u'boost', u'effort', u'goldfield'] [u'centenari', u'celebr'] [u'central', u'queensland', u'prepar', u'vote'] [u'cfmeu', u'wont', u'independ', u'timber', u'lobbi', u'candid'] [u'chang', u'afoot', u'region', u'develop', u'commiss'] [u'chang', u'better', u'mental', u'health', u'servic', u'safeti'] [u'child', u'death', u'spark', u'warn', u'quad', u'bike'] [u'church', u'open', u'christian', u'ministri', u'centr'] [u'citrus', u'canker', u'strike'] [u'clark', u'debut', u'centuri', u'put', u'heat', u'lehmann'] [u'clean', u'need', u'hous', u'work', u'begin'] [u'club', u'continu', u'negoti', u'trade', u'deadlin', u'loom'] [u'club', u'continu', u'talk', u'trade', u'deadlin', u'loom'] [u'coast', u'fire', u'investig'] [u'communiti', u'emerg', u'respons', u'team'] [u'condit', u'worsen', u'crewman', u'stricken'] [u'confer', u'focus', u'illawarra', u'escarp'] [u'cooktown', u'jail', u'child', u'abus', u'video'] [u'costello', u'predict', u'close', u'race', u'ballarat'] [u'costello', u'credibl', u'tatter', u'labor', u'say'] [u'costello', u'stand', u'remark', u'despit', u'treasuri'] [u'council', u'back', u'hors', u'rid'] [u'council', u'push', u'speed', u'limit', u'chang'] [u'council', u'play', u'role', u'grey', u'water', u'control'] [u'council', u'oppos', u'poki', u'plan'] [u'council', u'fresh', u'look', u'heavi', u'vehicl', u'bypass'] [u'court', u'grant', u'access', u'abort', u'record'] [u'court', u'order', u'herald', u'return', u'backyard'] [u'court', u'rule', u'forc', u'doctor', u'prolong'] [u'crayfish', u'research', u'industri'] [u'darwin', u'barra', u'health', u'harbour'] [u'deadlin', u'pass', u'megawati', u'challeng'] [u'death', u'toll', u'mount', u'egypt', u'bomb', u'attack'] [u'democrat', u'loss', u'weaken', u'senat', u'warn', u'bartlett'] [u'democrat', u'prison', u'deni', u'vote', u'right'] [u'democrat', u'want', u'show', u'canberra'] [u'director', u'deni', u'cash', u'reef', u'mysteri'] [] [u'screen', u'help', u'diagnos', u'iron', u'diseas'] [u'dont', u'write', u'democrat', u'warn', u'ridgeway'] [u'doubt', u'rais', u'indigen', u'educ', u'plan'] [u'dress', u'code', u'tighten', u'member', u'adelaid', u'oval'] [u'drink', u'driver', u'jail', u'fatal', u'crash'] [u'driver', u'ask', u'avoid', u'roo'] [u'edmiston', u'eas', u'semi', u'final'] [u'educ', u'dept', u'defend', u'screen', u'procedur'] [u'baradei', u'favourit', u'nobel', u'peac', u'prize'] [u'elect', u'situat', u'patient', u'say'] [u'elect', u'fever', u'grip', u'antarctica'] [u'elector', u'offic', u'issu', u'postal', u'vote', u'remind'] [u'emus', u'accus', u'caus', u'crash'] [u'endeavour', u'get', u'fund', u'respit'] [u'explos', u'rock', u'indonesian', u'embassi', u'pari'] [u'welcom', u'memori', u'fund'] [u'priest', u'plead', u'guilti', u'teen', u'charg'] [u'farina', u'say', u'lose', u'option'] [u'farmer', u'say', u'trial', u'secret'] [u'farmer', u'chemic', u'help', u'locust', u'fight'] [u'fingleton', u'appeal', u'convict'] [u'crew', u'busi', u'south', u'east'] [u'crew', u'investig', u'suspici', u'death'] [u'firm', u'sell', u'horticultur', u'farm'] [u'flee', u'giraff', u'injur', u'tourist'] [u'forestri', u'polici', u'sure', u'coalit'] [u'austoft', u'site', u'offer', u'youth', u'train', u'boost'] [u'boss', u'blame', u'women', u'dumb', u'program'] [u'fruit', u'vege', u'group', u'rank', u'coalit', u'equal'] [u'fund', u'seek', u'riverina', u'airlin', u'plan'] [u'gather', u'fail', u'chang', u'fluorid', u'plan'] [u'gaza', u'violenc', u'continu'] [u'gilchrist', u'warn', u'complac'] [u'gold', u'coast', u'choos', u'film', u'marin'] [u'govt', u'lawyer', u'seek', u'withdraw', u'coron', u'comment'] [u'govt', u'pledg', u'newsradio', u'boost'] [u'govt', u'receiv', u'advic', u'jam', u'hardi', u'legal', u'action'] [u'govt', u'mental', u'health', u'fund'] [u'great', u'lake', u'fight', u'retain', u'ironman', u'event'] [u'green', u'criticis', u'church', u'marriag', u'decis'] [u'green', u'expect', u'million', u'vote'] [u'grey', u'elect', u'campaign', u'draw'] [u'gunmen', u'target', u'tahmoor', u'hotel'] [u'hanson', u'back', u'howard', u'elect'] [u'harvest', u'outlook', u'posit'] [u'hewitt', u'japan', u'open', u'semi'] [u'hewitt', u'reach', u'japan', u'quarter'] [u'higher', u'temperatur', u'toll', u'crop'] [u'high', u'tech', u'aim', u'boost', u'safeti'] [u'high', u'wind', u'toll', u'central', u'victoria'] [u'home', u'destroy', u'bushfir'] [u'howard', u'warn', u'undecid', u'voter', u'labor', u'risk'] [u'human', u'right', u'group', u'peac', u'plea', u'tamil'] [u'hunter', u'valley', u'drop', u'wine'] [u'immigr', u'thank', u'public', u'help', u'stay'] [u'india', u'aussi', u'horror', u'start'] [u'india', u'fight', u'troubl', u'australian'] [u'inquest', u'lead', u'tougher', u'law'] [u'investig', u'probe', u'port', u'hedland', u'train', u'exercis'] [u'iraq', u'rebel', u'pledg', u'disarm'] [u'carniv', u'time'] [u'land', u'council', u'celebr', u'year'] [u'latham', u'return', u'root', u'werriwa'] [u'leader', u'final', u'campaign', u'pitch', u'voter'] [u'legal', u'advic', u'open', u'hardi', u'proceed'] [u'liber', u'promis', u'support', u'age', u'care'] [u'licens', u'premis', u'scheme', u'look', u'boost', u'women'] [u'lonard', u'second', u'scotland'] [u'mackay', u'pair', u'charg', u'child', u'porn'] [u'major', u'parti', u'silent', u'kakadu', u'wast', u'storag'] [u'mango', u'grower', u'look', u'oversea', u'worker'] [u'market', u'snap', u'record'] [u'mayor', u'odd', u'popul', u'claim'] [u'mcgauran', u'await', u'gippsland', u'vote'] [u'medicar', u'gold', u'offer', u'littl', u'benefit', u'indigen'] [u'fund', u'invest', u'locust', u'battl'] [u'motor', u'histori', u'drive', u'plan', u'museum'] [u'murphi', u'lead', u'qualifi', u'bathurst'] [u'murphi', u'magic', u'continu', u'panorama'] [u'murphi', u'set', u'panorama', u'pace'] [u'muslim', u'lose', u'battl', u'absent', u'leav'] [u'nation', u'parti', u'attack', u'region', u'hospit', u'servic'] [u'nato', u'agre', u'plan', u'iraq', u'train', u'mission'] [u'tourism', u'bait', u'seek', u'centr'] [u'nigerian', u'email', u'scam', u'forfeit', u'asset'] [u'nigerian', u'offici', u'reveal', u'bloodi', u'toll'] [u'nippi', u'fear', u'market', u'share'] [u'nobel', u'peac', u'prize', u'go', u'kenyan'] [u'surpris', u'rural', u'voter'] [u'receiv', u'support', u'bargain', u'agreement'] [u'child', u'protect', u'debat', u'get', u'heat'] [u'nurs', u'plan', u'industri', u'action', u'offer'] [u'offic', u'face', u'court', u'divulg', u'data'] [u'ogilvi', u'touch', u'vega'] [u'hit', u'time'] [u'price', u'help', u'push', u'aussi', u'dollar'] [u'price', u'rise', u'hit', u'cattl', u'oper'] [u'orang', u'relax', u'water', u'ban'] [u'pair', u'refus', u'bail', u'sydney', u'girl', u'death'] [u'palestinian', u'shoot', u'dead', u'gaza'] [u'paterson', u'candid', u'look', u'secur', u'minut'] [u'peac', u'talk', u'resum', u'sudan'] [u'polic', u'investig', u'fatal', u'stab'] [u'polic', u'investig', u'inner', u'citi', u'assault', u'young', u'girl'] [u'polic', u'minist', u'back', u'child', u'protect', u'squad'] [u'polic', u'offic', u'arrest', u'russian', u'school', u'sieg'] [u'polic', u'offic', u'tip', u'child', u'porn', u'suspect'] [u'popov', u'confeder', u'qualifi'] [u'properti', u'threat', u'wind', u'fan', u'fire'] [u'rocket', u'attack', u'hit', u'kabul', u'embassi', u'area'] [u'rove', u'build', u'caus', u'rodent'] [u'russia', u'finish', u'kyoto', u'approv', u'year'] [u'sadr', u'aid', u'releas', u'detent'] [u'polic', u'refus', u'identifi', u'child', u'porn', u'suspect'] [u'schumach', u'quickest', u'rain', u'soak', u'suzuka'] [u'scienc', u'town', u'mosaic', u'make', u'cost', u'mistak'] [u'screen', u'process', u'work', u'children'] [u'second', u'plead', u'guilti', u'pitcairn', u'trial'] [u'secur', u'tighten', u'lead', u'bali', u'anniversari'] [u'look', u'forward', u'communiti', u'emerg', u'respons'] [u'strike', u'push', u'price', u'record'] [u'saharan', u'child', u'mortal', u'wors'] [u'superbug', u'emerg', u'perth', u'hospit'] [u'surf', u'photograph', u'drown', u'franc'] [u'sydney', u'hospitalis', u'stab', u'wind'] [u'test', u'legend', u'open', u'longreach', u'club'] [u'famili', u'member', u'die', u'sydney', u'hous'] [u'tiger', u'furious', u'fail', u'zantuck', u'trade'] [u'timor', u'support', u'green', u'plan', u'mango', u'picker'] [u'toowoomba', u'macabr', u'sign', u'stay'] [u'trade', u'minist', u'support', u'pipelin'] [u'face', u'charg', u'drug', u'death'] [u'suspect', u'arrest', u'spain'] [u'typhoon', u'threaten', u'japan'] [u'tyrel', u'take', u'drop', u'adelaid'] [u'govern', u'defend', u'invas', u'iraq'] [u'underground', u'water', u'offer', u'citi', u'suppli', u'hop'] [u'union', u'welcom', u'carer', u'rule'] [u'union', u'tell', u'worker', u'abandon', u'labor'] [u'union', u'threaten', u'scuttl', u'offshor', u'nuclear', u'wast'] [u'union', u'urg', u'kodak', u'distribut', u'worker'] [u'student', u'drive', u'home', u'road', u'safeti', u'messag'] [u'unusu', u'land', u'owner', u'jail'] [u'strike', u'hit', u'fallujah'] [u'journalist', u'jail', u'leak', u'probe'] [u'villawood', u'detaine', u'hunger', u'strike'] [u'villawood', u'hunger', u'strike', u'weaken'] [u'weather', u'outlook', u'good', u'firefight'] [u'webber', u'optimist', u'jaguar', u'futur'] [u'tipster'] [u'wildlif', u'offici', u'concern', u'toad', u'impact'] [u'woman', u'plead', u'guilti', u'murder', u'partner'] [u'woodgat', u'suffer', u'injuri', u'setback'] [u'work', u'normal', u'elect', u'candid'] [u'adelaid', u'raid', u'spate', u'continu'] [u'afghan', u'elect', u'end', u'confus', u'boycott'] [u'afghan', u'secur', u'foil', u'bomb', u'plot'] [u'alcoa', u'licenc', u'tighten', u'despit'] [u'conced', u'defeat', u'gippsland'] [u'aussi', u'close', u'test', u'victori'] [u'aussi', u'control', u'test'] [u'aussi', u'look', u'build', u'lead', u'fourth', u'resum'] [u'aussi', u'indian', u'fight'] [u'australia', u'hold', u'card'] [u'australia', u'kill'] [u'australian', u'poll'] [u'bartlett', u'sound', u'warn', u'senat', u'result'] [u'battl', u'line', u'draw', u'seat'] [u'bigley', u'escap', u'briefli', u'kill'] [u'bigley', u'wife', u'talk', u'agoni', u'death', u'iraq'] [u'brough', u'claim', u'longman'] [u'campaign', u'wentworth', u'give', u'king', u'satisfact'] [u'candid', u'halt', u'afghan', u'elect'] [u'candid', u'wait', u'margin', u'elector', u'vote'] [u'solomon', u'hold', u'lingiari'] [u'coalit', u'perform'] [u'coalit', u'increas', u'major'] [u'commiss', u'rule', u'breach', u'liber', u'forest'] [u'count', u'begin', u'tasmania'] [u'count', u'begin'] [u'crean', u'disappoint', u'result'] [u'democrat', u'fade', u'black'] [u'downer', u'talk', u'prospect', u'hang', u'parliament'] [u'earli', u'count', u'show', u'upset', u'south', u'west'] [u'earli', u'count', u'show', u'swing', u'liber'] [u'famili', u'confirm', u'british', u'hostag', u'death'] [u'famili', u'make', u'impact', u'senat', u'race'] [u'famili', u'coalit', u'control'] [u'famili', u'perform', u'dickson'] [u'farmer', u'worri', u'extens', u'plan'] [u'test'] [u'damag', u'smithton'] [u'vote', u'cast', u'afghan', u'poll'] [u'forest', u'bombshel', u'blame', u'labor', u'loss'] [u'green', u'leader', u'elect', u'senat'] [u'shoot', u'dead', u'gaza'] [u'face', u'court', u'organis', u'crime', u'probe'] [u'freedman', u'notch', u'group'] [u'gallop', u'green', u'sydney', u'premiership'] [u'gallop', u'predict', u'close', u'poll'] [u'garrett', u'victori', u'kingsford', u'smith'] [u'interven', u'postal', u'ballot', u'bungl'] [u'gilchrist', u'declin', u'follow', u'trap'] [u'govt', u'agre', u'reconsid', u'nurs', u'claim'] [u'shortag', u'affect', u'indigen', u'health', u'say', u'group'] [u'green', u'smile', u'despit', u'coalit'] [u'hanson', u'claim', u'gold', u'injur', u'phelp', u'pull'] [u'hewitt', u'mcleod', u'tokyo', u'underwear', u'dash'] [u'hewitt', u'sharapova', u'win', u'japan'] [u'hollywood', u'appeal', u'internet', u'file', u'share'] [u'hors', u'fail', u'olymp', u'dope', u'test'] [u'howard', u'claim', u'victori'] [u'howard', u'return', u'histor', u'fourth', u'term'] [u'increas', u'major', u'tip', u'coalit'] [u'india', u'claim', u'earli', u'australian', u'wicket'] [u'indian', u'polic', u'question', u'gibb', u'boje', u'match'] [u'rat', u'scare', u'campaign', u'hurt', u'labor', u'mcmullan'] [u'iraq', u'domin', u'second', u'presidenti', u'debat'] [u'iraqi', u'behead', u'barbar', u'downer'] [u'iraq', u'scrap', u'plan', u'elect', u'census'] [u'iraq', u'secur', u'boost', u'ahead', u'poll', u'rumsfeld'] [u'jaguar', u'webber', u'free', u'test', u'william'] [u'kangaroo', u'crush', u'kumul'] [u'kangaroo', u'readi', u'bounc', u'kumul'] [u'labor', u'conced', u'defeat', u'solomon'] [u'labor', u'confid', u'win', u'margin', u'seat'] [u'labor', u'hope', u'despit', u'fear', u'margin', u'seat', u'loss'] [u'labor', u'troubl', u'mcmillan'] [u'labor', u'like', u'hold', u'tassi', u'seat', u'pundit', u'say'] [u'labor', u'retain', u'brisban'] [u'labor', u'solomon', u'candid', u'quiet', u'confid'] [u'labor', u'victori', u'ballarat'] [u'latham', u'conced', u'defeat', u'vow', u'return'] [u'trobe', u'contest', u'tight'] [u'liber', u'claim', u'victori', u'mcmillan'] [u'liber', u'vote', u'card', u'anger', u'green'] [u'liber', u'seek', u'investig', u'phoney', u'elect'] [u'liber', u'bass', u'braddon', u'labor'] [u'liber', u'braddon', u'bass'] [u'liber', u'hasluck', u'can'] [u'lib', u'claim', u'seat'] [u'locust', u'warn', u'issu', u'riverland', u'resid'] [u'lonard', u'fade', u'howel', u'take', u'charg'] [u'escap', u'crash', u'bedroom'] [u'guilti', u'canberra', u'assault', u'case'] [u'martha', u'stewart', u'report', u'camp', u'cupcak'] [u'mcgauran', u'claim', u'victori', u'gippsland'] [u'mcgauran', u'face', u'threat', u'gippsland'] [u'molik', u'confirm', u'hopman', u'place'] [u'nobel', u'peac', u'laureat', u'claim', u'deliber'] [u'fight', u'potenti', u'locust', u'plagu'] [u'water', u'critic', u'despit', u'recent', u'rain'] [u'reveal', u'radioact', u'wast', u'detail'] [u'ogilvi', u'hang', u'vega'] [u'owen', u'henri', u'world', u'pressur'] [u'parti', u'close', u'seat'] [u'pirat', u'edg', u'tiger'] [u'make', u'plea', u'tasmanian', u'voter'] [u'polic', u'foil', u'man', u'attempt', u'wife'] [u'polic', u'investig', u'redfern', u'death'] [u'poll', u'divid', u'elect', u'outcom'] [u'crew', u'prepar', u'windi', u'afternoon'] [u'ranger', u'roll'] [u'rescuer', u'search', u'survivor', u'sinai', u'blast'] [u'resid', u'flee', u'author', u'fight', u'fire'] [u'richard', u'start', u'pole', u'bathurst'] [u'rocket', u'attack', u'hit', u'afghan', u'poll', u'booth'] [u'rossi', u'pole', u'malaysian'] [u'rural', u'vote', u'back', u'govt', u'say', u'anderson'] [u'sadr', u'militia', u'disarm', u'iraq', u'peac', u'deal'] [u'independ', u'foot', u'vote', u'card'] [u'snowdon', u'take', u'grant'] [u'socceroo', u'brace', u'honiara', u'heat'] [u'socceroo', u'honiara', u'goal', u'spree'] [u'socceroo', u'thrash', u'solomon', u'island'] [u'spanish', u'coach', u'henri', u'race', u'slur'] [u'lanka', u'thrash', u'zimbabw', u'seri'] [u'strongest', u'typhoon', u'decad', u'bear', u'tokyo'] [u'surveil', u'begin', u'second', u'citrus', u'canker'] [u'teen', u'kill', u'gaza', u'strike'] [u'tight', u'contest', u'seat'] [u'kill', u'warwick', u'crash'] [u'palestinian', u'kill', u'gaza', u'strike'] [u'typhoon', u'lash', u'tokyo'] [u'typhoon', u'shut', u'japanes', u'qualifi'] [u'exchang', u'messag', u'bigley', u'captor'] [u'council', u'adopt', u'anti', u'terror', u'resolut'] [u'judg', u'dismiss', u'suit', u'media', u'mogul'] [u'soldier', u'kill', u'northern', u'iraq'] [u'green', u'hope', u'senat', u'seat'] [u'voter', u'jostl', u'solomon'] [u'voter', u'complain', u'unauthoris', u'vote'] [u'wall', u'tumbl', u'pass'] [u'warmer', u'weather', u'spark', u'lizard', u'warn'] [u'wit', u'seek', u'dandenong'] [u'woman', u'detain', u'bali', u'alleg', u'drug', u'smuggl'] [u'worth', u'draper', u'troubl'] [u'yudhoyono', u'deliv', u'victori', u'speech'] [u'kill', u'plung', u'chines', u'river'] [u'aborist', u'scorn', u'council', u'tree'] [u'senat', u'return'] [u'afghan', u'prepar', u'count', u'vote', u'despit', u'boycott'] [u'aghan', u'vote', u'turnout', u'massiv', u'say'] [u'back', u'latham', u'despit', u'loss'] [u'argentina', u'underlin', u'world', u'challeng'] [u'aussi', u'close', u'victori'] [u'aussi', u'close', u'victori', u'indian', u'give'] [u'aussi', u'stolz', u'second', u'vega'] [u'aussi', u'swimmer', u'lead', u'world', u'fightback'] [u'aussi', u'wrap', u'test', u'despit', u'indian'] [u'aussi', u'women', u'smash', u'world', u'mark', u'short', u'cours'] [u'blind', u'pilot', u'make', u'outback', u'odyssey'] [u'bosnian', u'crime', u'suspect', u'surrend'] [u'breaker', u'king', u'razorback', u'shoot', u'bullet'] [u'bull', u'blue', u'kick', u'domest', u'comp'] [u'bull', u'season', u'open'] [u'bull', u'open', u'season', u'excit'] [u'bushwalk', u'stumbl', u'human', u'remain'] [u'busi', u'prepar', u'wishlist', u'govt'] [u'charg', u'lay', u'fatal', u'gold', u'coast', u'accid'] [u'child', u'kill', u'roma', u'hous'] [u'coalit', u'celebr', u'impend', u'senat'] [u'concern', u'miss', u'nigerian', u'trade', u'union', u'presid'] [u'cooler', u'weather', u'help', u'firefight'] [u'count', u'begin', u'afghan', u'elect'] [u'cricket', u'play', u'indian', u'fame', u'game'] [u'custom', u'offic', u'threaten', u'strike', u'action'] [u'democrat', u'rebuild', u'bartlett', u'say'] [u'donald', u'take', u'lead', u'link', u'titl', u'chase'] [u'economist', u'welcom', u'coalit', u'senat', u'result'] [u'eden', u'monaro', u'attribut', u'health', u'woe'] [u'eden', u'monaro', u'confid', u'retain', u'seat'] [u'egypt', u'place', u'bomb', u'suspect', u'surveil'] [u'elect', u'result', u'warn', u'labor', u'beatti', u'say'] [u'england', u'disast', u'euro', u'gun'] [u'famili', u'maul', u'toddler'] [u'famili', u'candid', u'undaunt', u'senat', u'role'] [u'famili', u'deni', u'rubber', u'stamp', u'critic'] [u'famili', u'rule', u'back', u'telstra', u'sale'] [u'fire', u'australia', u'close', u'victori'] [u'arrest', u'melbourn', u'nightclub', u'drug', u'raid'] [u'dead', u'typhoon', u'hit', u'japan'] [u'garrett', u'win', u'kingsford', u'smith', u'comfort'] [u'govt', u'eye', u'control', u'senat'] [u'govt', u'senat', u'control', u'hurt', u'bush', u'warn'] [u'green', u'accus', u'labor', u'betray', u'senat', u'voter'] [u'green', u'hope', u'gain', u'senat', u'seat'] [u'green', u'beat', u'despit', u'appar', u'seat', u'loss'] [u'haddin', u'lift', u'blue'] [u'hanson', u'fail', u'senat'] [u'hawk', u'bullet', u'tiger', u'bite', u'croc'] [u'healthi', u'live', u'fertil', u'expert'] [u'howard', u'win', u'histor', u'fourth', u'term'] [u'india', u'condemn', u'order', u'failur'] [u'jayasuriya', u'set', u'sight', u'play', u'scotland'] [u'salvag', u'world', u'point', u'wast', u'cameroon'] [u'kewel', u'aloisi', u'line', u'sydney', u'farina'] [u'khartoum', u'student', u'burn', u'build', u'riot', u'fee'] [u'kidnapp', u'threaten', u'kill', u'chines', u'engin'] [u'king', u'campaign', u'fail', u'unseat', u'liber', u'wentworth'] [u'labor', u'fight', u'hold', u'swan'] [u'labor', u'hope', u'victori', u'richmond'] [u'labor', u'prospect', u'brighter', u'cunningham'] [u'labor', u'senat', u'elect', u'disappoint', u'parti'] [u'liber', u'affect', u'elect', u'warn', u'barnett'] [u'lib', u'gain', u'margin'] [u'lownd', u'earli', u'leader', u'panorama'] [u'major', u'parti', u'consolid', u'lead', u'seat'] [u'charg', u'stab'] [u'charg', u'make', u'death', u'threat'] [u'drown', u'fall', u'yacht'] [u'melbourn', u'arrest', u'child', u'porn', u'offenc'] [u'midwiv', u'push', u'better', u'bush', u'matern', u'servic'] [u'blame', u'lennon', u'lose', u'seat'] [u'murphi', u'ahead', u'bathurst'] [u'murphi', u'kelli', u'lead', u'bathurst'] [u'murphi', u'kelli', u'repeat', u'bathurst'] [u'nation', u'confid', u'retain', u'richmond'] [u'nigerian', u'labour', u'leader', u'releas', u'union'] [u'novak', u'win', u'japan', u'open', u'titl'] [u'nrma', u'admit', u'overcharg', u'custom'] [u'dead', u'isra', u'aircraft', u'fire', u'hous'] [u'economi', u'fear', u'campaign', u'effect', u'martin'] [u'polic', u'concern', u'miss', u'man', u'safeti'] [u'polic', u'hunt', u'group', u'bolivar', u'robberi'] [u'polic', u'investig', u'attack', u'costello', u'offic'] [u'polic', u'investig', u'perth', u'stab'] [u'polic', u'rugbi', u'team', u'tackl', u'flight', u'disturb'] [u'senat', u'result', u'time'] [u'voter', u'swing', u'liber'] [u'rann', u'blame', u'rat', u'scare', u'campaign'] [u'result', u'disappoint', u'indigen', u'candid'] [u'rossi', u'win', u'malaysian', u'grand', u'prix'] [u'rumsfeld', u'arriv', u'iraq'] [u'sadr', u'militia', u'agre', u'ceas', u'baghdad'] [u'schumach', u'storm', u'victori', u'japan'] [u'sciacca', u'readi', u'conced', u'bonner'] [u'sciacca', u'refus', u'conced'] [u'scientist', u'search', u'chines', u'site', u'evid'] [u'sehwag', u'fin', u'misconduct'] [u'sehwag', u'haul', u'dissent'] [u'slim', u'margin', u'separ', u'candid'] [u'slow', u'minardi', u'joke', u'fear', u'stoddart'] [u'somali', u'begin', u'cast', u'ballot', u'presid'] [u'state', u'issu', u'irrelev', u'say', u'labor'] [u'sudan', u'pledg', u'work', u'panel', u'darfur'] [u'suicid', u'bomber', u'kill', u'baghdad'] [u'taiwanes', u'leader', u'call', u'talk', u'china'] [u'polic', u'attend', u'violent'] [u'teen', u'surviv', u'train'] [u'tender', u'receiv', u'antarct', u'adventur', u'site', u'sale'] [u'injur', u'crash'] [u'charg', u'backpack', u'bash'] [u'iraqi', u'kill', u'rocket', u'hit', u'central', u'baghdad'] [u'turban', u'confid', u'indian', u'fightback'] [u'blaze'] [u'kill', u'gaza', u'strike'] [u'victorian', u'voter', u'punish', u'labor'] [u'video', u'show', u'bigley', u'appeal'] [u'volunt', u'descend', u'adelaid', u'game'] [u'polic', u'believ', u'human', u'remain', u'hastili', u'conceal'] [u'webber', u'japan', u'grid'] [u'zarqawi', u'group', u'claim', u'iraq', u'bomb'] [u'aborigin', u'represent', u'fall', u'victim', u'elect'] [u'govt', u'accus', u'consult', u'cost', u'blow'] [u'adam', u'quit', u'leicest', u'manag'] [u'maintain', u'newcastl', u'domin'] [u'ararat', u'polic', u'probe', u'bomb', u'threat'] [u'ashfield', u'lead', u'asbesto', u'reform'] [u'asia', u'greet', u'aussi', u'elect', u'result', u'mix'] [u'australian', u'die', u'fiji', u'gang', u'attack'] [u'australian', u'face', u'year', u'jail', u'bali', u'drug', u'bust'] [u'australia', u'prepar', u'asian', u'militari', u'exercis'] [u'author', u'probe', u'weekend', u'hous', u'fire'] [u'baldwin', u'break', u'paterson', u'tradit'] [u'beamish', u'appeal', u'reli', u'serial', u'killer', u'confess'] [u'beatti', u'say', u'famili', u'present', u'state', u'threat'] [u'beazley', u'commit', u'term'] [u'bedouin', u'admit', u'help', u'egypt', u'bomber', u'offici'] [u'bedouin', u'detain', u'suspect', u'hotel', u'bomb'] [u'bennett', u'back', u'minichiello', u'despit', u'bowen', u'trick'] [u'bias', u'concern', u'rais', u'inquest'] [u'bloodsh', u'continu', u'rumsfeld', u'visit', u'iraq'] [u'hospitalis', u'attack'] [u'brack', u'deni', u'freeway', u'toll', u'impact', u'feder'] [u'brent', u'crude', u'hit', u'record'] [u'brothel', u'manag', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'buchan', u'grantvill', u'cert', u'team'] [u'go', u'blood', u'suppli', u'boost'] [u'campaign', u'highlight', u'croc', u'danger'] [u'campaign', u'pay', u'forrest'] [u'camp', u'leas', u'closer', u'realiti'] [u'canberra', u'veteran', u'furner', u'want', u'english', u'grand', u'final'] [u'candid', u'question', u'coverag', u'indigen', u'issu'] [u'cardiac', u'societi', u'predict', u'wait', u'list', u'blow'] [u'cash', u'boost', u'club'] [u'causley', u'increas', u'major', u'page'] [u'china', u'australia', u'militari', u'exercis', u'start'] [u'china', u'tune', u'tiger', u'match'] [u'coalit', u'candid', u'return', u'coast', u'wide'] [u'coalit', u'hold', u'famili', u'talk'] [u'coalit', u'riverina', u'park', u'hume'] [u'coalit', u'target', u'unfair', u'dismiss', u'law'] [u'coalit', u'fuel', u'market', u'record'] [u'cobb', u'home', u'easili', u'park'] [u'concern', u'rais', u'inform', u'murder', u'probe'] [u'confer', u'put', u'spotlight', u'burnett', u'river'] [u'confus', u'continu', u'afghan', u'poll', u'count'] [u'cooler', u'weather', u'bring', u'fighter', u'relief'] [u'coulthard', u'readi', u'retir'] [u'council', u'get', u'catch', u'vandal'] [u'count', u'begin', u'afghan', u'elect'] [u'count', u'continu', u'undecid', u'seat'] [u'crew', u'safe', u'stricken', u'dock', u'scotland'] [u'cricket', u'legend', u'miller', u'die'] [u'crocodil', u'attack', u'north', u'queensland'] [u'croc', u'find', u'feet', u'coach'] [u'crow', u'nest', u'resid', u'urg', u'boost'] [u'dancer', u'guid', u'kookaburra', u'beij'] [u'davenport', u'close', u'spot'] [u'dead', u'fall', u'power', u'pole'] [u'debutant', u'deni', u'troop', u'burni'] [u'democrat', u'accus', u'govt', u'cover'] [u'democrat', u'fund', u'mental', u'health'] [u'disqualifi', u'driver', u'arrest', u'drink', u'drive'] [u'driver', u'urg', u'steer', u'clear', u'wander', u'roo'] [u'drug', u'increas', u'head', u'injuri', u'death', u'risk'] [u'elect', u'offer', u'hope', u'wind', u'farm', u'oppon'] [u'dope', u'tester', u'target', u'premiership', u'player'] [u'farrer', u'bolster', u'posit'] [u'father', u'charg', u'babi', u'death'] [u'festiv', u'offer', u'whale', u'watch', u'opportun'] [u'final', u'curtain', u'superman', u'star'] [u'danger', u'delay', u'nation', u'park', u'burn'] [u'firefight', u'race', u'time'] [u'firefight', u'refus', u'recycl', u'water'] [u'servic', u'warn', u'landown', u'bushfir', u'threat'] [u'flash', u'flood', u'kill', u'india'] [u'forest', u'plan', u'worri', u'hunter', u'develop'] [u'forestri', u'high', u'agenda', u'tasmanian', u'member'] [u'kangaroo', u'debut'] [u'kill', u'pakistan', u'suicid', u'bomb'] [u'gascoign', u'chang', u'escap', u'past'] [u'explos', u'injur'] [u'gash', u'surpris', u'elect', u'result'] [u'gilchrist', u'leap', u'warn', u'defenc'] [u'gold', u'rush', u'continu', u'hanson'] [u'govt', u'urg', u'stop', u'rise', u'fuel', u'price'] [u'grain', u'grower', u'discuss', u'plan', u'constitut'] [u'grandfath', u'face', u'charg'] [u'green', u'initi', u'launch', u'south', u'africa'] [u'green', u'hope', u'final', u'victorian', u'senat', u'seat'] [u'green', u'launch', u'health', u'polici'] [u'gregan', u'miss', u'camp', u'wallabi'] [u'group', u'stand', u'obstetr', u'unit', u'plan'] [u'guid', u'offer', u'youth'] [u'gunn', u'boss', u'high', u'hop', u'pulp'] [u'haas', u'pledg', u'pursu', u'reform'] [u'hair', u'salon', u'owner', u'rest', u'busi'] [u'hartsuyk', u'secur', u'cowper'] [u'heaven', u'plant', u'pose', u'risk', u'rare', u'shrub'] [u'honourari', u'doctor', u'make', u'helfgott', u'shine'] [u'hors', u'deliv', u'fatal', u'kick'] [u'hospit', u'extend', u'screen', u'superbug', u'number', u'rise'] [u'hous', u'financ', u'figur', u'weaker'] [u'hundr', u'protest', u'land', u'sale', u'plan'] [u'india', u'sweat', u'tendulkar', u'fit'] [u'india', u'posit', u'away', u'bangalor', u'defeat'] [u'indigen', u'program', u'aim', u'traffic', u'offenc'] [u'injur', u'motorcyclist', u'endur', u'long', u'rescu'] [u'input', u'seek', u'bendigo', u'plan'] [u'inquest', u'begin', u'polic', u'hang', u'death'] [u'inquiri', u'begin', u'polic', u'murder', u'convict'] [u'investig', u'continu', u'remain'] [u'iraq', u'sadr', u'militia', u'give', u'day', u'turn'] [u'kerri', u'attack', u'bush', u'middl', u'east', u'polici'] [u'kewel', u'sydney'] [u'kidnap', u'chines', u'tribe', u'embassi'] [u'labor', u'feder', u'poll', u'say', u'minist'] [u'labor', u'claim', u'cunningham'] [u'labor', u'fail', u'counter', u'scare', u'campaign', u'lawrenc'] [u'labor', u'launch', u'campaign'] [u'labor', u'launch', u'campaign', u'lib', u'heart'] [u'latham', u'say', u'poll', u'winnabl'] [u'latham', u'tell', u'support', u'want', u'remain', u'leader'] [u'lebanes', u'hostag', u'iraq', u'releas'] [u'lennon', u'say', u'polici', u'blame', u'tasmanian', u'loss'] [u'lentil', u'farmer', u'urg', u'spray', u'moth', u'pest'] [u'liber', u'look', u'forward', u'poll'] [u'liber', u'matuschka', u'give', u'away', u'ballarat'] [u'liber', u'suggest', u'forestri', u'deal', u'restart'] [u'lib', u'promis', u'polic', u'boost'] [u'lindsay', u'highlight', u'inform', u'vote', u'worri'] [u'livermor', u'retain', u'capricornia'] [u'lobster', u'manag', u'option', u'debat'] [u'local', u'member', u'return', u'central', u'west'] [u'vote', u'doesnt', u'deter', u'lingiari', u'independ'] [u'charg', u'mackay', u'murder'] [u'charg', u'polic', u'struggl'] [u'attempt', u'murder', u'charg', u'extradit'] [u'reappear', u'child', u'porn', u'charg'] [u'kill', u'mother', u'walk', u'free'] [u'mayor', u'lament', u'citrus', u'canker', u'outbreak'] [u'mcgauran', u'offer', u'telstra', u'sale', u'assur'] [u'minor', u'parti', u'decid', u'seat'] [u'tasmanian', u'look', u'oversea', u'adopt'] [u'tree', u'clear', u'investig'] [u'nairn', u'tradit', u'continu', u'eden'] [u'nation', u'member', u'oppos', u'telstra', u'sell'] [u'nauruan', u'elect', u'challeng', u'dismiss'] [u'nervous', u'wait', u'candid'] [u'bass', u'member', u'elect', u'push', u'pulp'] [u'fisheri', u'endang', u'shark', u'environ', u'group'] [u'norwegian', u'american', u'nobel', u'econom', u'prize'] [u'observ', u'endors', u'afghan', u'elect', u'despit'] [u'ogradi', u'close', u'europ'] [u'price', u'eas', u'treasuri', u'say'] [u'opposit', u'foreshadow', u'grow', u'public', u'hous', u'list'] [u'pain', u'relief', u'human', u'right'] [u'panopoulo', u'boost', u'indi', u'stronghold'] [u'parti', u'sign', u'north', u'west', u'nativ', u'titl'] [u'philosoph', u'jacqu', u'derrida', u'die'] [u'keen', u'work'] [u'polic', u'accus', u'crime', u'boss', u'public', u'stunt'] [u'polic', u'gather', u'evid', u'bash', u'murder'] [u'polic', u'hunt', u'assault', u'robberi'] [u'policeman', u'draw', u'blank', u'fake', u'raid'] [u'policeman', u'rubbish', u'kidnap', u'extort', u'talk'] [u'polic', u'probe', u'mosqu', u'arson', u'attack'] [u'port', u'hedland', u'focus', u'town', u'plan'] [u'publish', u'remov', u'swastika', u'german', u'book', u'releas'] [u'punter', u'vote', u'race', u'win', u'hoop'] [u'ralli', u'driver', u'plead', u'guilti', u'bourn', u'death', u'crash'] [u'rescu', u'travel', u'hospitalis', u'dehydr'] [u'return', u'gibbon', u'pressur', u'coalit'] [u'rice', u'defend', u'iraq', u'invas'] [u'richmond', u'result', u'day'] [u'roma', u'mourn', u'kill', u'hous'] [u'ronaldo', u'target', u'brazil', u'hammer', u'venezuela'] [u'defend', u'school', u'zone', u'speed', u'fin'] [u'sack', u'vogt', u'say', u'scotland', u'great', u'mcqueen'] [u'sadr', u'militia', u'begin', u'weapon', u'hand'] [u'sadr', u'militia', u'await', u'word', u'disarm'] [u'labor', u'attack', u'feder', u'focus'] [u'school', u'endur', u'second', u'blaze'] [u'schultz', u'win', u'term', u'hume'] [u'sciacca', u'hang', u'bonner', u'count', u'continu'] [u'scot', u'gallach', u'stun', u'andrew'] [u'secker', u'boost', u'support', u'barker'] [u'second', u'mass', u'break', u'brazilian', u'jail'] [u'senat', u'slam', u'labor', u'lack', u'indigen', u'focus'] [u'seneg', u'south', u'africa', u'race'] [u'seven', u'kill', u'pakistan', u'mosqu', u'attack'] [u'shepparton', u'enter'] [u'south', u'west', u'vote', u'reflect', u'nation', u'trend'] [u'spencer', u'join', u'black', u'sick', u'list'] [u'springborg', u'propos', u'conserv', u'reunif'] [u'lanka', u'final', u'rain', u'scupper', u'zimbabw'] [u'starcraft', u'pois', u'final', u'appear'] [u'state', u'issu', u'help', u'coalit', u'result', u'entsch'] [u'status', u'look', u'remain', u'england', u'gwydir'] [u'stephen', u'turn', u'attent', u'state', u'polit'] [u'stinger', u'close', u'strand'] [u'stone', u'consid', u'portfolio', u'opportun'] [u'strife', u'tear', u'somalia', u'elect', u'presid'] [u'strong', u'economi'] [u'stuttl', u'trial', u'focus', u'park', u'bench', u'graffiti'] [u'swing', u'fail', u'emerg', u'corangamit'] [u'tree', u'research', u'find', u'scabi', u'killer'] [u'technolog', u'help', u'polic', u'child', u'porn', u'oper'] [u'tent', u'attack', u'croc', u'shoot', u'dead'] [u'wound', u'fresh', u'jabaliya', u'strike'] [u'throsbi', u'lament', u'lose', u'opportun'] [u'train', u'ordeal', u'teen', u'transfer', u'brisban'] [u'tribut', u'flow', u'keith', u'miller'] [u'turkish', u'hostag', u'free', u'compani', u'halt', u'iraq'] [u'unherald', u'aussi', u'stolz', u'hit', u'vega', u'jackpot'] [u'vail', u'hold', u'seat', u'boost', u'major'] [u'victoria', u'remain', u'alp', u'mainland', u'stronghold'] [u'voter', u'return', u'katter', u'scott'] [u'voter', u'return', u'nation', u'hinkler', u'wide'] [u'elect', u'tip', u'februari', u'despit', u'power'] [u'wakelin', u'celebr', u'grey'] [u'polic', u'crack', u'gold', u'steal', u'ring'] [u'watch', u'keep', u'fire', u'high', u'danger', u'period'] [u'western', u'sydney', u'blaze', u'bright', u'howard'] [u'westfield', u'brogden', u'inquiri', u'tell'] [u'winchest', u'murder', u'trial', u'inquiri', u'adjourn'] [u'wineri', u'squeez', u'grape', u'grower', u'industri'] [u'wit', u'say', u'policeman', u'fake', u'raid', u'steal'] [u'woman', u'jail', u'steal', u'termin'] [u'women', u'rescu', u'strand', u'overnight'] [u'woodchip', u'export', u'plan', u'move', u'ahead'] [u'world', u'champion', u'johnson', u'miss', u'aussi', u'record'] [u'worshipp', u'insid', u'mosqu', u'arson', u'attack'] [u'bring', u'news'] [u'actu', u'prepar', u'fight', u'industri', u'relat', u'reform'] [u'adam', u'attack', u'latham', u'forestri', u'polici'] [u'adelaid', u'swelter', u'octob', u'heat'] [u'hero', u'peac'] [u'airport', u'plan', u'agn', u'water'] [u'alert', u'issu', u'blue', u'green', u'alga', u'outbreak'] [u'alfi', u'player', u'cancer', u'chariti'] [u'appoint', u'unlik', u'satisfi', u'doctor'] [u'asteroid', u'dinosaur', u'scientist'] [u'aussi', u'head', u'pari'] [u'aussi', u'market', u'hit', u'record'] [u'aussi', u'sheep', u'export', u'fall', u'china', u'pick'] [u'australian', u'gather', u'bali', u'bomb', u'memori'] [u'australia', u'good', u'outclass', u'solomon'] [u'beckham', u'admit', u'book', u'deliber'] [u'bodi', u'king', u'canyon'] [u'breakthrough', u'afghan', u'elect'] [u'break', u'glass', u'close', u'galleri'] [u'bushfir', u'remain', u'uncontrol'] [u'busi', u'confid', u'surg'] [u'crackdown', u'young', u'driver'] [u'canada', u'hold', u'inquiri', u'submarin'] [u'canberra', u'australia', u'youngest', u'citi'] [u'canegrow', u'chief', u'seek', u'ethanol', u'answer'] [u'carbon', u'dioxid', u'spike', u'renew', u'global', u'warm', u'fear'] [u'rego', u'rise'] [u'cemeteri', u'vandal', u'leav', u'trail', u'destruct'] [u'ceremoni', u'honour', u'bali', u'victim'] [u'china', u'develop', u'tast'] [u'china', u'sign'] [u'chines', u'girl', u'band', u'idea', u'worth'] [u'chines', u'compani', u'buy', u'southland', u'collieri'] [u'church', u'group', u'oppos', u'shop', u'plan'] [u'announc', u'shadow', u'cabinet', u'shake'] [u'comment', u'seek', u'narooma', u'plan'] [u'council', u'forgo', u'wild', u'levi', u'plan'] [u'councillor', u'challeng', u'tribun', u'rule'] [u'council', u'engin', u'student', u'plan'] [u'council', u'adopt', u'child', u'care', u'plan', u'build'] [u'council', u'urg', u'reject', u'hous', u'plan'] [u'court', u'hear', u'detail', u'break', u'hill', u'shoot', u'case'] [u'cricket', u'honour', u'miller'] [u'croc', u'attack', u'investig'] [u'cycl', u'great', u'armstrong', u'inspir', u'indian'] [u'deadlin', u'announc', u'reef', u'rainforest', u'crcs'] [u'debat', u'flare', u'locust', u'control', u'fund'] [u'delay', u'announc', u'hospit', u'work'] [u'democrat', u'robertson', u'take', u'heart', u'elect', u'result'] [u'department', u'fund', u'promis', u'lib'] [u'dinosaur', u'track', u'swiss', u'mountain'] [u'drug', u'research', u'alarm', u'ecstasi', u'survey'] [u'dubbo', u'rider', u'saddl', u'youth', u'olymp'] [u'ducati', u'dump', u'bayliss', u'report'] [u'eastman', u'trial', u'procedur', u'confus'] [u'energex', u'chairman', u'resign', u'person', u'alleg'] [u'energex', u'leav', u'custom', u'powerless'] [u'agre', u'plan', u'replac', u'nato', u'bosnia'] [u'call', u'isra', u'oper', u'palestin'] [u'lift', u'libyan', u'arm', u'embargo'] [u'expert', u'probe', u'coal', u'line', u'derail'] [u'fals', u'alarm', u'flood', u'shop', u'centr'] [u'faulkner', u'resign', u'labor', u'senat', u'leader'] [u'feedback', u'seek', u'natur', u'resourc', u'plan'] [u'feed', u'croc', u'attack', u'bushman', u'say'] [u'feel', u'high', u'gold', u'theft', u'probe'] [u'festiv', u'inject', u'childer', u'economi'] [u'fiji', u'militari', u'protect', u'iraq'] [u'finnish', u'consum', u'watchdog', u'hit', u'broadcast'] [u'firefight', u'battl', u'blaze', u'border'] [u'firefight', u'gain', u'upper', u'hand'] [u'firefight', u'take', u'control', u'coast', u'blaze'] [u'firefight', u'warn', u'bushfir', u'season', u'potenti'] [u'fire', u'toll', u'livestock'] [u'forestri', u'polici', u'rush', u'labor', u'presid', u'say'] [u'forrest', u'reject', u'retir', u'claim'] [u'charg', u'group', u'attack'] [u'gallop', u'elect', u'trail', u'bunburi'] [u'gold', u'coast', u'rememb', u'bali', u'blast', u'anniversari'] [u'group', u'leav', u'hospit', u'strand', u'ordeal'] [u'hanson', u'chase', u'number'] [u'hanson', u'mida', u'touch'] [u'hawker', u'comment', u'energis', u'ararat', u'mayor'] [u'high', u'price', u'slow', u'fuel', u'demand', u'growth'] [u'hill', u'galleri', u'get', u'offici', u'open'] [u'hobart', u'introduc', u'butt', u'subsidi'] [u'hope', u'questionnair', u'spark', u'daniel', u'morcomb'] [u'weather', u'put', u'crop', u'growth', u'doubt'] [u'howard', u'attend', u'bali', u'remembr', u'ceremoni'] [u'howard', u'pay', u'tribut', u'boyhood', u'hero', u'miller'] [u'icac', u'dismiss', u'sydney', u'water', u'corrupt', u'claim'] [u'independ', u'call'] [u'indonesia', u'confront', u'terror', u'outgo'] [u'injur', u'beckham', u'play', u'weekend', u'real', u'doctor'] [u'inquest', u'launch', u'death'] [u'iraq', u'weapon', u'handov', u'slow', u'start'] [u'judg', u'sentenc', u'despic', u'attack'] [u'king', u'canyon', u'walk', u'claim', u'victim'] [u'kookaburra', u'defend', u'pakistan', u'pull'] [u'kookaburra', u'pull', u'pakistan', u'trip'] [u'labor', u'urg', u'decid', u'futur', u'direct'] [u'landhold', u'urg', u'boost', u'readi'] [u'landhold', u'warn', u'readi'] [u'latham', u'conced', u'campaign', u'fail'] [u'latham', u'pay', u'tribut', u'faulkner'] [u'leicest', u'wilkinson'] [u'locust', u'number', u'rise'] [u'lone', u'bomber', u'think', u'respons', u'aust', u'embassi'] [u'charg', u'crash', u'hous'] [u'die', u'highway', u'crash'] [u'jail', u'testifi', u'detect'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'send', u'psychiatr', u'hospit', u'crime'] [u'face', u'sentenc', u'stadium', u'break'] [u'specul', u'schwarzer'] [u'marin', u'engag', u'heavili', u'mosqu', u'damag'] [u'mayor', u'push', u'ergon', u'centr'] [u'mental', u'health', u'advoc', u'fund'] [u'milosev', u'trial', u'resum'] [u'mirvac', u'make', u'friend', u'offer', u'jam', u'field'] [u'bodi', u'recov', u'india', u'north', u'east'] [u'mosul', u'suicid', u'bomb', u'kill', u'soldier', u'iraqi'] [u'mother', u'bali', u'blast', u'victim', u'forgiv', u'terrorist'] [u'mourner', u'rememb', u'bali', u'victim'] [u'mullumbimbi', u'resid', u'face', u'water', u'ban'] [u'mundin', u'readi', u'fight'] [u'mundin', u'talk', u'chanc'] [u'mysteri', u'earli', u'death', u'basebal', u'star'] [u'mystifi', u'bank', u'lose'] [u'nigerian', u'union', u'extend', u'fuel', u'strike'] [u'japanes', u'dead', u'suspect', u'suicid', u'pact'] [u'northam', u'fish', u'farm', u'lure', u'interst'] [u'push', u'commonwealth', u'kakadu', u'uranium', u'wast'] [u'nuclear', u'equip', u'miss', u'iraq', u'say'] [u'price', u'near'] [u'price', u'hold', u'steadi'] [u'opposit', u'want', u'green', u'light', u'give', u'school', u'zone'] [u'pakistan', u'test', u'fire', u'nuclear', u'capabl', u'missil'] [u'parramatta', u'give', u'leas', u'life'] [u'pitcairn', u'accus', u'secur', u'jurisdict', u'appeal'] [u'plan', u'begin', u'outback', u'celebr'] [u'playground', u'smoke', u'free', u'zone'] [u'polic', u'charg', u'drink', u'drive'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'airport', u'vandal'] [u'polic', u'prais', u'life', u'save', u'effort'] [u'polic', u'probe', u'miss', u'mysteri'] [u'polic', u'probe', u'letterbox', u'blast'] [u'polic', u'public', u'memori', u'assault'] [u'port', u'lincoln', u'mayor', u'issu', u'telstra', u'sale', u'warn'] [u'public', u'urg', u'join', u'anti', u'wast', u'dump', u'campaign'] [u'public', u'warn', u'avoid', u'snake', u'bite', u'victim'] [u'push', u'tackl', u'western', u'pest'] [u'qanta', u'merger', u'decis', u'expect'] [u'qanta', u'flag', u'fuel', u'surcharg', u'hike'] [u'qanta', u'move', u'allianc', u'idea'] [u'qanta', u'win', u'appeal', u'merger'] [u'govt', u'confid', u'canker', u'free', u'christma'] [u'miss', u'magnesium', u'project'] [u'rain', u'boost', u'level'] [u'renal', u'support', u'group', u'come'] [u'report', u'consid', u'hospit', u'futur'] [u'rude', u'wake', u'coma', u'patient'] [u'russia', u'plan', u'sale', u'yuko', u'asset'] [u'ryan', u'tip', u'omeley', u'bounc', u'select'] [u'brace', u'unusu', u'spring'] [u'debat', u'smoke'] [u'safeti', u'review', u'melbourn', u'landmark'] [u'salin', u'scheme', u'result', u'know', u'year'] [u'scriptwrit', u'sue', u'soni', u'film'] [u'chang', u'group', u'call', u'infrastructur', u'fund'] [u'search', u'miss', u'coupl', u'continu'] [u'season', u'tire', u'henin', u'hardenn'] [u'secker', u'maintain', u'telstra', u'sale', u'stanc'] [u'shannon', u'creek', u'review'] [u'sharon', u'cling', u'withdraw', u'plan'] [u'shear', u'hard', u'work', u'find', u'local', u'worker'] [u'shire', u'introduc', u'water', u'charg', u'scheme'] [u'kill', u'african', u'world', u'tragedi'] [u'socceroo', u'hammer', u'solomon', u'book', u'confeder'] [u'soccer', u'chang', u'oval', u'plan'] [u'solicitor', u'face', u'child', u'porn', u'charg'] [u'stab', u'put', u'hospit'] [u'stanhop', u'condemn', u'lib', u'jail', u'polici'] [u'state', u'issu', u'blame', u'drop', u'support'] [u'student', u'paramed', u'deliv', u'mackay', u'babi'] [u'studi', u'show', u'shift', u'kimberley', u'pilbara'] [u'superman', u'death', u'shock', u'gold', u'coast', u'friend'] [u'suspend', u'policeman', u'admit', u'accept', u'money'] [u'sydney', u'base', u'jumper', u'critic', u'condit'] [u'sydney', u'lord', u'mayor', u'defend', u'dual', u'role'] [u'tasmania', u'get', u'credit', u'rat'] [u'tasmania', u'implement', u'hoon', u'law'] [u'teen', u'face', u'drive', u'charg'] [u'thiev', u'adelaid', u'bank'] [u'thompson', u'leav', u'pool', u'golden', u'career'] [u'track', u'favour', u'elvstroem', u'say', u'trainer'] [u'track', u'favour', u'elvstroem', u'say', u'trainer'] [u'tribut', u'flow', u'keith', u'miller'] [u'tribut', u'flow', u'hors', u'breeder'] [u'turkish', u'contractor', u'translat', u'behead'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'unbeat', u'hanson', u'win', u'sixth', u'gold'] [u'unhappi', u'ratepay', u'consid', u'reject', u'council'] [u'union', u'hoteli', u'disagre', u'smoke'] [u'unit', u'fan', u'readi', u'beat', u'frazer', u'takeov'] [u'accus', u'breach', u'intern'] [u'invas', u'iraq', u'plagu', u'tech', u'glitch'] [u'precis', u'strike', u'hit', u'fallujah', u'restaur'] [u'throw', u'free', u'trade', u'deal', u'launch', u'doubt'] [u'vardi', u'hang', u'boot'] [u'victoria', u'announc', u'smoke', u'plan'] [u'wall', u'creep', u'despit', u'fear'] [u'mourner', u'rememb', u'bali', u'victim'] [u'wife', u'choker', u'plead', u'guilti'] [u'wildlif', u'servic', u'warn', u'snake', u'risk'] [u'wilkinson', u'england', u'action'] [u'woman', u'nake', u'detent', u'concern', u'ombudsman'] [u'workshop', u'damag', u'industri'] [u'wright', u'wait', u'bullet'] [u'ralli', u'melbourn', u'nowingi', u'wast', u'dump'] [u'power', u'sydney'] [u'evacu', u'sydney', u'substat'] [u'academ', u'question', u'state', u'liber', u'profil'] [u'accommod', u'lead', u'green', u'educ', u'polici'] [u'liber', u'releas', u'polici', u'cost'] [u'alinghi', u'take', u'thousand', u'guinea'] [u'athlet', u'australia', u'lose', u'head', u'coach'] [u'australia', u'good', u'outclass', u'solomon'] [u'author', u'monitor', u'hinterland', u'fire'] [u'bali', u'ceremoni', u'rememb', u'bomb', u'victim'] [u'bank', u'strengthen', u'market', u'record', u'break'] [u'beatti', u'plead', u'chang', u'govt', u'educ'] [u'beckham', u'face', u'captainci'] [u'beckham', u'foul', u'bring', u'england', u'disreput', u'hurst'] [u'bega', u'firm', u'seek', u'chees'] [u'bemax', u'move', u'miner', u'sand', u'product'] [u'beslan', u'end', u'mourn', u'amid', u'reveng', u'concern'] [u'reduc', u'poker', u'machin', u'number', u'step', u'closer'] [u'blackout', u'forc', u'melbourn'] [u'blast', u'baghdad', u'kill', u'soldier'] [u'blatter', u'blast', u'beckham', u'card', u'trick'] [u'bok', u'deni', u'arrog', u'claim'] [u'box', u'legend', u'hurt', u'crash'] [u'box', u'legend', u'hurt', u'gippsland', u'crash'] [u'brisban', u'tremor', u'rattl', u'resid'] [u'bushfir', u'contain', u'central', u'coast'] [u'bushfir', u'threat', u'prompt', u'total'] [u'busi', u'group', u'pleas', u'coalit'] [u'cahil', u'tip', u'earli', u'return'] [u'cairn', u'prepar', u'schooli', u'influx'] [u'calala', u'hous', u'plan', u'look', u'head', u'court'] [u'polic', u'stun', u'gun', u'wake', u'melbourn'] [u'camera', u'mobil', u'phone', u'ban', u'council'] [u'car', u'confisc', u'hoon', u'law'] [u'caufield', u'barrier', u'draw', u'go', u'favourit'] [u'chamber', u'back', u'alter', u'holiday', u'trade', u'hour'] [u'chamber', u'highlight', u'opposit', u'seven', u'trade'] [u'china', u'spurn', u'taiwan', u'peac', u'talk'] [u'chloe', u'return', u'hotel', u'home'] [u'club', u'fear', u'smoke', u'impact'] [u'cobar', u'court', u'child', u'charg'] [u'cole', u'myer', u'enter', u'bid', u'fray'] [u'concern', u'air', u'smoke', u'club', u'impact'] [u'concern', u'miss', u'iraq', u'weapon', u'part'] [u'convict', u'murder', u'guilt', u'unlik', u'court', u'hear'] [u'costello', u'keen', u'elect', u'promis', u'pass', u'soon'] [u'council', u'back', u'justic', u'precinct'] [u'councillor', u'put', u'brake', u'garag', u'consult', u'plan'] [u'council', u'allianc', u'save', u'thousand'] [u'council', u'seek', u'involv', u'govt', u'decis'] [u'council', u'consid', u'speed', u'limit'] [u'court', u'fin', u'owner', u'attack'] [u'court', u'finalis', u'land', u'right'] [u'crean', u'shadow', u'treasuri', u'role'] [u'crean', u'urg', u'calm', u'wake', u'elect', u'defeat'] [u'croc', u'attack', u'rescu', u'spark', u'govt', u'prais'] [u'sugar', u'test', u'worker', u'drug'] [u'defenc', u'open', u'case', u'backpack', u'murder', u'trial'] [u'delay', u'north', u'footi', u'brawl', u'report'] [u'democrat', u'push', u'youth', u'issu'] [u'dfat', u'investig', u'report', u'tourist', u'injur'] [u'doctor', u'group', u'urg', u'govt', u'rural', u'support'] [u'dolphin', u'kill', u'research', u'accid'] [u'talk', u'owner', u'infect', u'citrus', u'orchard'] [u'drug', u'raid', u'cannabi', u'haul'] [u'dump', u'protest', u'voic', u'concern', u'bendigo'] [u'elder', u'disabl', u'miss', u'home', u'care'] [u'emerg', u'equip', u'dedic', u'fall', u'firefight'] [u'energex', u'resign', u'fail', u'deter', u'beatti'] [u'energex', u'revel', u'overshadow', u'appoint'] [u'blame', u'caus', u'sonic', u'boom'] [u'famili', u'hop', u'contest', u'elect'] [u'famili', u'senat', u'role', u'worri', u'faulkner'] [u'farmer', u'urg', u'tackl', u'locust', u'earli'] [u'faulti', u'smoke', u'detector', u'spark', u'centr', u'evacu'] [u'fear', u'smoke', u'plan', u'news', u'club'] [u'impos', u'bushfir', u'threat', u'mount'] [u'firefight', u'boost', u'resourc', u'blaze', u'near'] [u'firefight', u'control', u'illawarra', u'blaze'] [u'firefight', u'watch', u'forest', u'scrub', u'blaze'] [u'firefight', u'watch', u'gippsland', u'wind', u'condit'] [u'fire', u'destroy', u'abandon', u'board', u'hous'] [u'charg', u'fiji', u'murder'] [u'kill', u'troop', u'clash', u'insurg'] [u'forum', u'focus', u'indigen', u'studi'] [u'gallop', u'hint', u'home', u'buyer', u'relief'] [u'connect', u'wait', u'frustrat', u'resid'] [u'german', u'tourist', u'lose', u'belong', u'berri', u'spring'] [u'govern', u'rule', u'croc', u'cull'] [u'govt', u'accus', u'public', u'fund', u'polit'] [u'govt', u'give', u'court', u'power', u'test', u'customari'] [u'grain', u'farmer', u'push', u'china'] [u'hama', u'milit', u'kill', u'strike', u'gaza'] [u'heat', u'spell', u'disast', u'crop'] [u'hepburn', u'council', u'reappoint', u'chief'] [u'heritag', u'centr', u'honour', u'mine', u'victim'] [u'hide', u'crack', u'blame', u'helicopt', u'crash'] [u'home', u'evacu', u'bushfir', u'rage', u'state'] [u'home', u'evacu', u'fire', u'rage'] [u'weather', u'spark', u'total'] [u'icac', u'clear', u'sydney', u'water', u'manag'] [u'icpa', u'prais', u'news', u'decis'] [u'dont', u'want', u'captainci', u'say', u'gilchrist'] [u'lose', u'bangalor', u'warn', u'admit'] [u'israel', u'admit', u'ambul', u'claim', u'wrong'] [u'jackson', u'bevilaqua', u'claim', u'wnba', u'titl'] [u'jackson', u'miss', u'second', u'award'] [u'judg', u'reserv', u'decis', u'eastman', u'inquiri'] [u'kewel', u'sydney', u'test'] [u'kiwi', u'ponder', u'hockey', u'pull'] [u'knight', u'premier', u'leagu', u'coach'] [u'labor', u'claim', u'victori', u'bendigo'] [u'labor', u'promis', u'water', u'strategi'] [u'labor', u'edward', u'closer', u'win', u'cowan'] [u'lawson', u'dodemaid', u'name', u'lilac', u'hill'] [u'lehmann', u'gilchrist'] [u'lehmann', u'readi', u'fall', u'sword'] [u'lennon', u'defend', u'forestri', u'stand'] [u'lennon', u'talk', u'pulp', u'prospect'] [u'lennon', u'warn', u'feder', u'colleagu', u'green'] [u'liber', u'defend', u'educ', u'polici'] [u'liber', u'pledg', u'meet', u'greenhous', u'emiss', u'target'] [u'liberia', u'coach', u'quit', u'destroy', u'home'] [u'littl', u'taibu', u'reveal', u'ambit'] [u'lobbi', u'group', u'cast', u'doubt', u'review', u'plan'] [u'alleg', u'anglican', u'priest', u'prostitut'] [u'die', u'crash', u'gympi', u'woolooga'] [u'kill', u'gyrocopt', u'crash'] [u'sentenc', u'year', u'theft'] [u'shoot', u'dead', u'polic', u'melbourn'] [u'market', u'continu', u'focus', u'price'] [u'mccoy', u'hope', u'return'] [u'michael', u'jackson', u'decri', u'eminem', u'video'] [u'miller', u'receiv', u'state', u'funer'] [u'minist', u'hit', u'plan', u'lobbi', u'group', u'scare'] [u'minist', u'order', u'probe', u'paramed', u'ambul'] [u'minist', u'probe', u'volunt', u'sack', u'claim'] [u'mitsubishi', u'commit', u'australian', u'oper'] [u'suffer', u'osteoporosi'] [u'seek', u'riverina', u'focus', u'health', u'servic'] [u'super', u'entitl'] [u'murray', u'coach', u'hockeyroo'] [u'nation', u'highlight', u'ballot', u'bungl', u'woe'] [u'nation', u'sound', u'warn', u'telstra', u'sale'] [u'nativ', u'titl', u'recognis', u'peopl', u'cape', u'york'] [u'energex', u'chairman', u'appoint'] [u'scan', u'detect', u'alzheim'] [u'team', u'bathurst', u'winner', u'murphi'] [u'warn', u'govt', u'chang'] [u'buffalo', u'demand', u'malaysia'] [u'outback', u'ordeal', u'fail', u'grind', u'coupl'] [u'outlook', u'improv', u'cane', u'grower'] [u'palestinian', u'secur', u'chief', u'surviv', u'bomb', u'attack'] [u'paralympian', u'receiv', u'warm', u'recept'] [u'parti', u'step', u'health', u'fund', u'campaign'] [u'phone', u'jam', u'appeas', u'french', u'filmgoer'] [u'plane', u'owner', u'strand', u'unauthoris', u'land'] [u'play', u'prospect', u'emptiv', u'strike'] [u'polic', u'hunt', u'serial', u'robber'] [u'polic', u'investig', u'melbourn', u'fatal', u'shoot'] [u'polic', u'crash', u'victim'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'probe', u'theori', u'penguin', u'murder'] [u'polic', u'child', u'porn', u'raid', u'possibl'] [u'polic', u'check', u'comput', u'child', u'porn'] [u'politician', u'ask', u'singl', u'desk', u'commit'] [u'power', u'sydney', u'north'] [u'elect', u'econom', u'predict', u'optimist'] [u'premier', u'say', u'standard', u'block', u'smelter'] [u'probe', u'launch', u'supermarket', u'blaze'] [u'prosecut', u'wrap', u'case', u'stuttl', u'murder', u'trial'] [u'public', u'urg', u'seek', u'bush', u'boost'] [u'public', u'warn', u'wari', u'door', u'door', u'tradesmen'] [u'firefight', u'rais', u'equip', u'concern'] [u'real', u'estat', u'agent', u'give', u'deposit', u'murder'] [u'record', u'nice', u'home', u'better', u'say'] [u'redback', u'gambl', u'youth'] [u'region', u'link', u'assess', u'price', u'impact'] [u'report', u'highlight', u'good', u'time', u'ahead', u'coal'] [u'research', u'uncov', u'stress', u'substanc', u'abus', u'link'] [u'resid', u'ask', u'gympi', u'bypass', u'rout'] [u'resid', u'meet', u'gold', u'theft', u'probe'] [u'richmond', u'outcom', u'week', u'away'] [u'richmond', u'hang', u'balanc'] [u'harvest', u'conserv', u'plan'] [u'rumsfeld', u'appeal', u'nato', u'help', u'iraq'] [u'saddam', u'undergo', u'hernia', u'oper'] [u'search', u'pipelin', u'custom'] [u'senat', u'chang', u'threaten', u'workplac', u'law', u'govt'] [u'smoke', u'ban', u'predict', u'small', u'pub', u'hardest'] [u'smoke', u'draw'] [u'snake', u'scorpion', u'seiz', u'perth', u'raid'] [u'socceroo', u'readi', u'fulfil', u'potenti', u'farina'] [u'stamp', u'duti', u'concess', u'boost', u'hous', u'market'] [u'stanhop', u'indigen', u'issu', u'democrat'] [u'state', u'funer', u'keith', u'miller'] [u'studi', u'reveal', u'asbesto', u'relat', u'lung'] [u'suspend', u'polic', u'offic', u'fake', u'raid', u'wit', u'say'] [u'sydney', u'swelter', u'hottest', u'octob', u'record'] [u'talk', u'focus', u'skill', u'shortag'] [u'tasmania', u'brace', u'possibl', u'danger', u'bushfir'] [u'tasmanian', u'polic', u'domest', u'violenc'] [u'relief', u'tip', u'home', u'buyer'] [u'tendulkar', u'chennai', u'hop', u'fade', u'black'] [u'hope', u'media', u'chang'] [u'report', u'million', u'profit'] [u'tougher', u'water', u'ban', u'possibl'] [u'trade', u'deal', u'ahead', u'time', u'vail'] [u'trapper', u'hunt', u'wild', u'dog', u'kosciuszko'] [u'trenorden', u'upbeat', u'biomass', u'plant', u'plan'] [u'convict', u'crimin', u'deport', u'vietnam'] [u'union', u'welcom', u'casual', u'worker', u'deal'] [u'uruguay', u'hold', u'precious', u'point', u'bolivia'] [u'criticis', u'loss', u'materi', u'iraq'] [u'forc', u'attempt', u'hostag', u'rescu', u'report'] [u'get', u'tough', u'guam', u'tree', u'snake'] [u'photograph', u'free', u'abduct'] [u'vandal', u'toll', u'local', u'school'] [u'venus', u'win', u'russian', u'domin', u'kremlin', u'action'] [u'govt', u'doubl', u'budget', u'surplus'] [u'govt', u'unmov', u'pipelin', u'fund'] [u'victoria', u'power', u'station'] [u'govt', u'speed', u'smoke', u'measur'] [u'shire', u'recycl', u'option'] [u'water', u'exempt', u'good', u'news', u'ballarat'] [u'weapon', u'inspector', u'welcom', u'iraq'] [u'weather', u'woe', u'affect', u'malle', u'crop'] [u'wind', u'hamper', u'firefight'] [u'wit', u'seek', u'aussi', u'tourist', u'mysteri', u'mishap'] [u'yambulla', u'forest', u'brew'] [u'investig', u'begin', u'follow', u'woman'] [u'soldier', u'kill', u'iraq', u'violenc'] [u'journalist', u'name', u'walkley', u'finalist'] [u'account', u'help', u'fight', u'problem', u'gambl'] [u'afghanistan', u'vote', u'count', u'begin'] [u'airlin', u'consid', u'respons', u'rise', u'price'] [u'staff', u'strike'] [u'ambul', u'servic', u'apologis', u'woman', u'death'] [u'angler', u'urg', u'worri', u'research', u'boat'] [u'anglican', u'bishop', u'distanc', u'dean'] [u'angri', u'go'] [u'labor', u'quit', u'frontbench'] [u'arthur', u'metz', u'tournament'] [u'associ', u'back', u'recycl', u'plan'] [u'aussi', u'determin', u'prevent', u'indian', u'fight'] [u'aussi', u'wealth', u'exceed', u'trillion'] [u'australian', u'death', u'solomon', u'suspici'] [u'award', u'honour', u'boulder', u'senior'] [u'axeman', u'hall', u'fame', u'upgrad', u'complet'] [u'bali', u'polic', u'charg', u'woman'] [u'bank', u'queensland', u'post', u'record', u'profit'] [u'beckham', u'apologis', u'deliber', u'book'] [u'blair', u'deni', u'misrepres', u'iraq', u'intellig'] [u'escap', u'jail', u'term', u'attack', u'croc'] [u'brisban', u'welcom', u'crew', u'reinforc'] [u'build', u'firm', u'ask', u'help', u'redress', u'skill'] [u'bushfir', u'spark', u'hous', u'safeti'] [u'bushfir', u'smoulder'] [u'byron', u'watch', u'crucial', u'beach', u'develop', u'talk'] [u'footbal', u'leagu', u'shake'] [u'probe', u'hospit', u'closur'] [u'cambodia', u'pick', u'king'] [u'camplin', u'world', u'titl', u'hop', u'dash'] [u'candid', u'claim', u'bias', u'shire', u'websit', u'articl'] [u'cane', u'blaze', u'land', u'hospit'] [u'carr', u'seek', u'probe', u'corrupt', u'offic', u'case'] [u'cattl', u'council', u'unfaz', u'vaccin', u'storag'] [u'choke', u'risk', u'prompt', u'fake', u'dummi'] [u'chopper', u'fatal', u'crash', u'unsaf', u'say', u'famili'] [u'christma', u'pageant', u'return'] [u'claremont', u'kill', u'task', u'forc', u'readi', u'disband'] [u'classif', u'process', u'concern', u'ruddock', u'wake'] [u'cocain', u'smuggl', u'journalist', u'jail'] [u'cocain', u'smuggl', u'trial', u'open'] [u'comeback', u'king', u'edg', u'tiger', u'wildcat', u'stay'] [u'commis', u'report', u'nomin', u'literari', u'award'] [u'complaint', u'delay', u'afghanistan', u'vote', u'count'] [u'connecteast', u'win', u'freeway', u'contract'] [u'conserv', u'group', u'releas', u'report', u'card'] [u'conserv', u'group', u'welcom', u'nuclear', u'dump'] [u'consum', u'protect', u'construct', u'law'] [u'corrupt', u'offic', u'deni', u'break'] [u'corrupt', u'offic', u'deni', u'take', u'cover', u'money'] [u'council', u'consid', u'main', u'street', u'alcohol'] [u'council', u'consid', u'super', u'bodi'] [u'council', u'case', u'merger'] [u'council', u'taxi', u'marshal', u'scheme'] [u'council', u'maintain', u'pressur', u'medic', u'centr'] [u'council', u'urg', u'mediat', u'histor', u'societi'] [u'council', u'decid', u'club', u'poki', u'plan'] [u'countri', u'take', u'prioriti', u'club', u'bennett'] [u'crop', u'despit', u'heat'] [u'davenport', u'world'] [u'dean', u'outburst', u'unhelp'] [u'develop', u'board', u'reject', u'water', u'plan', u'concern'] [u'distinct', u'caulfield'] [u'doubt', u'cast', u'child', u'porn', u'bungl', u'claim'] [u'draw', u'match', u'leav', u'south', u'american', u'race', u'wide', u'open'] [u'driver', u'face', u'murder', u'charg'] [u'drought', u'grip', u'illawarra', u'shoalhaven'] [u'drunken', u'talk', u'spark', u'parliamentari'] [u'dead', u'baghdad', u'blast'] [u'european', u'constitut', u'threaten', u'spell'] [u'exot', u'newt', u'seiz', u'melbourn', u'hous'] [u'fallujah', u'negoti', u'question', u'zarqawi', u'ultimatum'] [u'fear', u'asbesto', u'worker', u'win', u'landmark', u'rule'] [u'fear', u'global', u'warm', u'harm', u'wine', u'industri'] [u'ferrari', u'pope'] [u'amidst', u'rise', u'temperatur'] [u'crew', u'battl', u'blaze'] [u'forc', u'camper', u'evacu'] [u'fire', u'threaten', u'springbrook', u'home'] [u'fletcher', u'jone', u'shut', u'shop', u'gambier'] [u'foil', u'bank', u'robber', u'target', u'custom'] [u'media', u'boss', u'clear', u'improp', u'gain', u'charg'] [u'foster', u'clear', u'sell', u'stake'] [u'stand', u'trial', u'slave', u'ring'] [u'fund', u'increas', u'drop', u'properti', u'crime'] [u'gangren', u'cure', u'free', u'lunch', u'maggot'] [u'gibbin', u'refus', u'bendigo'] [u'firm', u'award'] [u'gold', u'coast', u'bushfir', u'threat', u'intensifi'] [u'govt', u'reject', u'saltwat', u'storag', u'basin', u'sit'] [u'gregan', u'play', u'world'] [u'gundagai', u'continu', u'pursu', u'fund'] [u'haddin', u'ask', u'blue', u'batsmen', u'stand'] [u'hama', u'leader', u'arrest', u'milit', u'kill', u'gaza'] [u'hama', u'milit', u'kill', u'renew', u'threat'] [u'hat', u'alinghi'] [u'hayden', u'langer', u'brilliant', u'start'] [u'heat', u'news', u'wimmera', u'malle', u'crop'] [u'heritag', u'list', u'recognis', u'bathurst', u'bell'] [u'histori', u'promis', u'memor', u'chennai', u'encount'] [u'hospit', u'say', u'chopper', u'chang', u'wont', u'affect', u'patient'] [u'weather', u'blame', u'sydney', u'blackout'] [u'howard', u'congratul', u'elect', u'victori'] [u'hundr', u'motorcycl', u'grand', u'prix'] [u'look', u'racism', u'alleg', u'program'] [u'ident', u'theft', u'expert', u'converg', u'canberra'] [u'indian', u'line', u'remain', u'mysteri'] [u'ingram', u'upbeat', u'health', u'servic', u'fund'] [u'insecticid', u'theft', u'spark', u'health', u'warn'] [u'investig', u'begin', u'dolphin', u'death'] [u'iraq', u'break', u'presidenti', u'debat'] [u'iraqi', u'issu', u'ultimatum', u'fallujah', u'milit'] [u'iraq', u'fuel', u'terror', u'say', u'weapon'] [u'isra', u'offic', u'criticis', u'gaza', u'oper'] [u'israel', u'overreact', u'palestinian', u'attack', u'straw'] [u'jam', u'tip', u'red', u'resurg'] [u'morgan', u'close', u'adelaid', u'oper'] [u'judg', u'highlight', u'long', u'road', u'nativ', u'titl'] [u'kaif', u'recal', u'bolster', u'indian', u'bat'] [u'kirner', u'want', u'women', u'frontbench'] [u'kumbl', u'get', u'martyn'] [u'lava', u'bubbl', u'volcano', u'surfac'] [u'lawyer', u'complain', u'guantanamo', u'trial'] [u'liber', u'accus', u'fraudul', u'polici', u'cost'] [u'locust', u'march', u'western'] [u'give', u'suspend', u'sentenc', u'poker', u'attack'] [u'kill', u'boat', u'hit', u'airport', u'runway'] [u'mayor', u'warn', u'water'] [u'mccoy', u'say', u'doohan', u'record', u'reach'] [u'meet', u'spark', u'matern', u'action', u'group'] [u'risk', u'osteoporosi'] [u'milit', u'kill', u'papua'] [u'minist', u'discuss', u'trade', u'shortag', u'solut'] [u'minor', u'injuri', u'australian', u'catch', u'cairo'] [u'mobil', u'phone', u'doubl', u'nerv', u'tumour', u'risk', u'studi'] [u'feedback', u'hospit', u'plan'] [u'motorcycl', u'death', u'spark', u'polic', u'safeti', u'warn'] [u'motorcyclist', u'accus', u'clock'] [u'question', u'council', u'appoint'] [u'mundin', u'earn', u'world', u'titl', u'fight'] [u'sell', u'irish', u'busi'] [u'nation', u'confid', u'senat', u'seat'] [u'princ', u'video', u'stir', u'controversi'] [u'night', u'redempt', u'world', u'hitmen'] [u'polic', u'minist', u'corrupt', u'polic'] [u'number', u'drought', u'declar', u'area', u'declin'] [u'ogradi', u'confirm', u'tour'] [u'price', u'increas', u'amid', u'suppli', u'fear'] [u'organis', u'claim', u'wast', u'dump', u'ralli', u'success'] [u'pakistan', u'allow', u'musharraf', u'uniform'] [u'pakistani', u'blast', u'kookaburra', u'pull'] [u'parti', u'trade', u'blow', u'polici', u'cost'] [u'parti', u'urg', u'address', u'chronic', u'staff'] [u'perilya', u'disagre', u'valuat'] [u'petit', u'seek', u'goldfield', u'juvenil', u'detent', u'centr'] [u'petit', u'seek', u'return', u'cross', u'servic'] [u'pickett', u'charg', u'accid'] [u'plan', u'underway', u'breakaway', u'rescu', u'chopper'] [u'plan', u'put', u'focus', u'koala', u'preserv'] [u'polic', u'accus', u'bungl', u'child', u'porn', u'crackdown'] [u'polic', u'boost', u'nimbin', u'effort'] [u'polic', u'deni', u'exist', u'infring', u'quota'] [u'polic', u'investig', u'volunt', u'firefight', u'death'] [u'polit', u'wrangl', u'surround', u'energex', u'controversi'] [u'pont', u'test'] [u'power', u'delist', u'trio'] [u'power', u'restor', u'sydney', u'blackout'] [u'probe', u'continu', u'fatal', u'lifeboat', u'mishap'] [u'psychiatrist', u'shortag', u'rais', u'treatment', u'fear'] [u'public', u'servic', u'accus', u'financi', u'mismanag'] [u'public', u'plan', u'health', u'chang'] [u'public', u'urg', u'avoid', u'skin', u'fungus'] [u'pupil', u'warn', u'gambl', u'danger'] [u'real', u'estat', u'chang', u'hurt', u'vendor', u'warn'] [u'recherch', u'secur', u'heritag', u'status'] [u'refineri', u'spill', u'anger', u'perth', u'resid'] [u'renew', u'hope', u'kidnap', u'french', u'journalist'] [u'research', u'focus', u'lower', u'indigen', u'crash', u'rate'] [u'resid', u'threaten', u'legal', u'action', u'govt'] [u'resid', u'urg', u'abandon', u'secess', u'plan'] [u'resourc', u'stock', u'halt', u'market', u'surg'] [u'review', u'critic', u'deet', u'central', u'aust', u'offic'] [u'review', u'probe', u'council', u'structur'] [u'rise', u'price', u'boost', u'travel', u'cost'] [u'riverina', u'care', u'provid', u'boost', u'profit'] [u'rocket', u'enter', u'orbit', u'space', u'station', u'mission'] [u'roof', u'tiler', u'strike', u'caus', u'build', u'delay'] [u'rossi', u'cautious', u'verg', u'fourth', u'titl'] [u'russia', u'name', u'seed', u'hopman'] [u'govt', u'chang'] [u'santo', u'readi', u'pipelin', u'work'] [u'second', u'tourist', u'die', u'trail'] [u'secret', u'oper', u'fail', u'north', u'korean', u'sub'] [u'secur', u'guard', u'media', u'money', u'hold', u'trust'] [u'injur', u'whitsunday', u'freak', u'wave'] [u'shultz', u'implant'] [u'silverston', u'get', u'date'] [u'slight', u'eas', u'water', u'ban'] [u'speed', u'camera', u'locat', u'leak'] [u'speed', u'retir', u'intern', u'soccer'] [u'strong', u'wind', u'tweed'] [u'studi', u'reveal', u'learn', u'languag', u'chang', u'brain'] [u'stuttl', u'juri', u'hear', u'close', u'argument'] [u'teen', u'accus', u'ram', u'polic'] [u'teen', u'die', u'cliff', u'fall'] [u'temperatur', u'hit', u'high', u'illawarra'] [u'tougher', u'water', u'ban', u'possibl', u'rain'] [u'trade', u'plan', u'spark', u'mini', u'mart', u'concern'] [u'trio', u'jail', u'heroin', u'distribut'] [u'lebanes', u'hostag', u'free', u'fallujah'] [u'agenc', u'demand', u'israel', u'apolog'] [u'union', u'offici', u'dump', u'elect', u'fallout'] [u'uranium', u'level', u'water', u'safe'] [u'hurrican', u'spell', u'cyclon', u'woe'] [u'charg', u'explos'] [u'vogt', u'get', u'vote', u'confid', u'scottish'] [u'warm', u'weather', u'trigger', u'earli', u'coral'] [u'warn', u'equal', u'record', u'kumbl', u'star'] [u'western', u'medicin', u'meet', u'altern', u'health'] [u'wide', u'firi', u'help', u'southern', u'counterpart'] [u'winemak', u'qualiti', u'quibbl'] [u'woman', u'murder', u'typic', u'serial', u'killer', u'cook'] [u'women', u'children', u'iraq', u'mass', u'grave'] [u'woodburn', u'blaze', u'control'] [u'work', u'expert', u'criticis', u'elect', u'campaign', u'focus'] [u'wound', u'radcliff', u'target', u'beij'] [u'present', u'remark', u'prompt', u'apolog'] [u'adelaid', u'conced', u'defeat'] [u'adler', u'lose', u'appeal', u'legal', u'action'] [u'aim', u'criticis', u'prison', u'suicid'] [u'airport', u'taxi', u'group', u'discuss', u'levi', u'propos'] [u'airport', u'locat'] [u'alburi', u'defend', u'brogden', u'polic', u'comment'] [u'candid', u'look', u'hard', u'work', u'ahead'] [u'ambul', u'servic', u'question', u'medic', u'agreement'] [u'amphibian', u'face', u'extinct', u'studi', u'warn'] [u'anaesthetist', u'quit', u'administr', u'arrog'] [u'annan', u'say', u'rich', u'nation', u'tackl', u'poverti'] [u'associ', u'call', u'assess', u'indigen'] [u'atapattus', u'vain', u'pakistan', u'beat'] [u'kill', u'iraq', u'violenc'] [u'aussi', u'davi', u'win', u'tour', u'piedmont'] [u'author', u'probe', u'boat', u'blaze'] [u'ballist', u'databas', u'hail', u'class'] [u'reduc', u'fulham', u'cole'] [u'bashir', u'face', u'terror', u'charg'] [u'bashir', u'face', u'terror', u'indict'] [u'bendigo', u'mayor', u'seek', u'elect'] [u'better', u'weather', u'aid', u'east', u'coast', u'firefight', u'effort'] [u'blue', u'bat', u'brisban'] [u'blue', u'lunch'] [u'close', u'can', u'petrol', u'sniff'] [u'brack', u'attack', u'toll', u'remov', u'promis'] [u'break', u'hill', u'host', u'tidi', u'town', u'gather'] [u'bull', u'inning', u'point'] [u'bull', u'inning', u'point'] [u'bull', u'look', u'blue', u'open'] [u'businessman', u'defend', u'tennant', u'creek', u'reput'] [u'caulfield', u'tip'] [u'chris', u'rock', u'host', u'oscar'] [u'coff', u'firefight', u'offer', u'respit', u'gold', u'coast'] [u'commod', u'price', u'caus', u'alarm', u'analyst', u'say'] [u'communiti', u'sink', u'teeth', u'fluorid', u'debat'] [u'communiti', u'back', u'plan', u'local', u'bank'] [u'communiti', u'rememb', u'chopper', u'crash', u'victim'] [u'control', u'line', u'help', u'fight', u'east', u'coast', u'fire'] [u'controversi', u'freeway', u'help', u'state', u'brack', u'say'] [u'council', u'back', u'nurs', u'home'] [u'council', u'govt', u'sign', u'indigen', u'land', u'agreement'] [u'council', u'reject', u'kemmiss', u'hill', u'wind', u'farm', u'plan'] [u'council', u'share', u'road', u'fund'] [u'council', u'discuss', u'veget', u'issu'] [u'council', u'form', u'econom', u'develop', u'unit'] [u'count', u'continu', u'perth', u'margin'] [u'cricket', u'australia', u'hail', u'warn', u'monument'] [u'crisi', u'meet', u'call', u'lobster', u'price', u'sink'] [u'date', u'klitschko', u'william', u'titl', u'fight'] [u'daw', u'grab', u'roll', u'cheapli'] [u'mark', u'rural', u'women', u'achiev'] [u'decis', u'pend', u'terror', u'suspect'] [u'dept', u'premier', u'take', u'aborigin', u'affair'] [u'doctor', u'warn', u'shortag', u'launceston'] [u'dolphin', u'death', u'go', u'unreport'] [u'driver', u'remind', u'indi', u'road', u'chang'] [u'dump', u'oppon', u'heart', u'wind', u'farm'] [u'dump', u'transform', u'marina'] [u'earli', u'intervent', u'scheme', u'announc', u'chang'] [u'elkington', u'touch', u'greensboro', u'classic'] [u'confirm', u'defenc', u'heineken', u'classic', u'titl'] [u'elvstroem', u'hors', u'beat'] [u'emerg', u'servic', u'quiz', u'communic'] [u'evid', u'proceed', u'jackson', u'case', u'judg'] [u'expert', u'say', u'child', u'porn', u'investig', u'iceberg'] [u'famili', u'optimist', u'senat', u'upset'] [u'final', u'presidenti', u'debat', u'close'] [u'firefight', u'brace', u'extrem', u'danger'] [u'firefight', u'expect', u'tough', u'northern'] [u'firefight', u'look', u'hunter', u'blaze'] [u'fletcher', u'jone', u'close', u'factori'] [u'foreign', u'poll', u'favour', u'kerri', u'bush'] [u'depart', u'head', u'resign', u'amid', u'scandal'] [u'drug', u'squad', u'offic', u'appear', u'drug', u'charg'] [u'teacher', u'walk', u'free', u'plead', u'guilti'] [u'treasur', u'defend', u'corpor', u'handout'] [u'franc', u'lead', u'push', u'syrian', u'troop'] [u'fundrais', u'aim', u'helipad', u'plan'] [u'gallop', u'highlight', u'mental', u'health', u'effort'] [u'girl', u'hurt', u'rockhampton', u'attack'] [u'goosen', u'sparkl', u'match', u'play', u'rain'] [u'govern', u'water', u'woe'] [u'govt', u'call', u'clarifi', u'child', u'porn', u'law'] [u'govt', u'urg', u'reveal', u'unfit', u'region', u'polic'] [u'avoid', u'jail', u'despit', u'suppli', u'drug', u'addict'] [u'green', u'doubt', u'win', u'tassi', u'senat', u'seat'] [u'green', u'seek', u'gallop', u'resign', u'chemic', u'compo'] [u'green', u'zone', u'bomb', u'toll', u'rise'] [u'gregan', u'point', u'perth', u'super', u'posit'] [u'hervey', u'growth', u'boom'] [u'houllier', u'reckon', u'wale'] [u'hous', u'boom', u'put', u'pressur', u'water', u'deliveri'] [u'hous', u'plan', u'hurt', u'battler', u'opposit', u'say'] [u'hunter', u'jobless', u'rate', u'rise'] [u'immigr', u'detain', u'visa', u'breach'] [u'india', u'produc', u'stun', u'turnaround'] [u'indigen', u'teach', u'scholarship', u'offer'] [u'industri', u'park', u'move', u'closer', u'realiti'] [u'inmat', u'assist', u'firefight', u'effort'] [u'iraqi', u'insurg', u'claim', u'turkish', u'hostag', u'behead'] [u'iron', u'titl', u'slater', u'crash'] [u'isra', u'offic', u'suspend', u'gaza', u'girl', u'kill'] [u'israel', u'scale', u'gaza', u'offens'] [u'jail', u'staff', u'inmat', u'expos', u'legionnair', u'diseas'] [u'jam', u'say', u'media', u'underr', u'ordinari'] [u'jazz', u'mildura', u'festiv'] [u'jobless', u'news', u'richmond', u'tweed', u'region'] [u'juri', u'retir', u'stuttl', u'murder', u'trial'] [u'kangaroo', u'finalis', u'prepar', u'kiwi', u'clash'] [u'kangaroo', u'sidestep', u'wada', u'drug', u'polici'] [u'katter', u'want', u'govt', u'help', u'combat', u'doctor', u'shortag'] [u'langer', u'stun', u'singh', u'world', u'match', u'play'] [u'larg', u'turnout', u'poll'] [u'liber', u'claim', u'polic', u'enforc', u'speed', u'camera', u'quota'] [u'lingiari', u'vote', u'count', u'continu'] [u'local', u'win', u'judg'] [u'woman', u'injur', u'gang', u'assault'] [u'market', u'price', u'hike'] [u'marsh', u'hit', u'tassi', u'beat', u'warrior'] [u'melbourn', u'attack', u'region', u'campus', u'plan'] [u'men', u'drink', u'spike', u'puzzl', u'polic'] [u'minist', u'disappoint', u'smoke', u'delay'] [u'minist', u'hear', u'health', u'merger', u'opposit'] [u'monaro', u'stock', u'water', u'short', u'suppli'] [u'moran', u'doubl', u'put', u'venezuela', u'world', u'hunt'] [u'booth', u'featur', u'electron', u'vote'] [u'pipelin', u'compo', u'claim', u'possibl'] [u'mother', u'plea', u'help', u'son', u'bodi'] [u'speak', u'chemic', u'comment'] [u'upset', u'financi', u'slug', u'volunt', u'group'] [u'nairn', u'claim', u'eden', u'monaro'] [u'consid', u'take', u'game', u'china'] [u'nerv', u'edg', u'field', u'prepar'] [u'northern', u'employ', u'figur', u'improv'] [u'child', u'porn', u'charg', u'proceed', u'despit', u'oppn'] [u'nurs', u'highlight', u'recent', u'attack'] [u'price', u'fail', u'dampen', u'ord'] [u'soar'] [u'onlin', u'telescop', u'put', u'focus', u'bathurst', u'night'] [u'opposit', u'question', u'salt', u'dispos', u'site'] [u'opposit', u'urg', u'govt', u'chang', u'campus', u'plan'] [u'opposit', u'want', u'plan', u'spell', u'grafton', u'jail'] [u'palau', u'airlin', u'suspend', u'darwin', u'servic'] [u'park', u'honour', u'westgat', u'bridg', u'collaps', u'victim'] [u'pioneer', u'winemak', u'die'] [u'poki', u'legisl', u'creat', u'fear'] [u'poland', u'iraq', u'troop', u'number'] [u'polic', u'drug', u'oper', u'spark', u'charg'] [u'polic', u'launch', u'arson', u'train', u'centr'] [u'polic', u'minist', u'face', u'energex', u'probe'] [u'polic', u'offer', u'protect', u'famili', u'follow', u'gang'] [u'polic', u'union', u'call', u'brogden', u'apolog'] [u'polit', u'leader', u'focus', u'attent', u'geraldton'] [u'previt', u'give', u'life', u'stuttl', u'murder'] [u'probe', u'continu', u'cliff', u'fall'] [u'properti', u'group', u'call', u'propos', u'prison', u'upgrad'] [u'push', u'rental', u'properti', u'smoke', u'alarm'] [u'push', u'south', u'west', u'road', u'boost'] [u'qanta', u'increas', u'fuel', u'surcharg'] [u'rail', u'author', u'stand', u'weekend', u'work'] [u'rain', u'help', u'eas', u'crop', u'concern'] [u'realiti', u'tear', u'british', u'eyesor'] [u'redback', u'bushrang', u'rememb', u'hook'] [u'reptil', u'park', u'owner', u'criticis', u'teen', u'attack', u'sentenc'] [u'rise', u'fuel', u'unlik', u'stop', u'caravan', u'trip'] [u'robinson', u'confirm', u'time', u'england', u'coach'] [u'rossi', u'take', u'provision', u'pole'] [u'rossi', u'take', u'provision', u'pole', u'phillip', u'island'] [u'rower', u'receiv', u'belat', u'bronz', u'medal'] [u'royal', u'lash', u'cheat', u'claim'] [u'russian', u'govt', u'undervalu', u'yuko', u'asset', u'bank', u'say'] [u'school', u'close', u'bushfir', u'near'] [u'school', u'concern', u'student', u'villawood'] [u'scientist', u'transfer', u'breakthrough'] [u'scientist', u'trial', u'major', u'advanc', u'malaria', u'vaccin'] [u'sculli', u'back', u'independ'] [u'second', u'darwin', u'tip', u'ghan'] [u'sehwag', u'aussi', u'strike'] [u'senat', u'face', u'charg', u'mislead', u'polic'] [u'sentenc', u'increas', u'culpabl', u'drive'] [u'bushfir', u'threaten', u'home'] [u'face', u'summer', u'blackout', u'opposit', u'say'] [u'seven', u'dead', u'cargo', u'plane', u'crash', u'canada'] [u'drug', u'mcenro', u'expos', u'tatum', u'tell'] [u'sharon', u'consid', u'cut', u'gaza', u'armi', u'deploy'] [u'silenc', u'best', u'eriksson', u'tell', u'sorri', u'beckham'] [u'simon', u'ax', u'protea', u'coach', u'jen', u'appoint'] [u'singapor', u'truck', u'water', u'exercis'] [u'respit', u'south', u'east', u'firefight'] [u'stanhop', u'play', u'major', u'govern', u'hop'] [u'strike', u'expect', u'minim', u'impact'] [u'student', u'enrol', u'scam', u'draw', u'icac', u'attent'] [u'surfer', u'stand', u'trial', u'relat', u'underworld'] [u'survey', u'tap', u'central', u'queensland', u'view'] [u'sydney', u'teen', u'plead', u'guilti', u'manslaught'] [u'syring', u'robber', u'give', u'year', u'sentenc'] [u'tafe', u'fee', u'increas'] [u'tall', u'skinni', u'teen', u'face', u'higher', u'breast', u'cancer', u'risk'] [u'shower', u'firefight'] [u'teen', u'appear', u'court', u'murder', u'charg'] [u'teen', u'stand', u'trial', u'monash', u'parti', u'bash'] [u'teller', u'laugh', u'attempt', u'robberi'] [u'tendulkar', u'leav', u'squad', u'treatment'] [u'thousand', u'voter', u'disenfranchis', u'union', u'say'] [u'thousand', u'protest', u'gaza', u'withdraw'] [u'thousand', u'attend', u'mine', u'expo'] [u'tight', u'race', u'continu', u'richmond'] [u'face', u'petrol', u'sniff', u'epidem'] [u'trucki', u'succumb', u'injuri'] [u'truck', u'ident', u'plan', u'corpor', u'retreat'] [u'trust', u'economi', u'domin', u'final', u'day'] [u'unit', u'anxious', u'close', u'titl', u'rival'] [u'agre', u'iraq', u'audit'] [u'strike', u'fallujah', u'continu'] [u'armi', u'worker', u'arrest', u'okinawa', u'rape'] [u'forc', u'arrest', u'fallujah', u'negoti', u'jihad'] [u'health', u'offici', u'attempt', u'restock', u'vaccin'] [u'investig', u'soldier', u'afghanistan', u'death'] [u'launch', u'strike', u'fallujah'] [u'retail', u'ban', u'australian', u'wool'] [u'want', u'gaza', u'oper', u'soon', u'possibl'] [u'util', u'lose', u'appeal', u'fine', u'worker', u'death'] [u'wide', u'wast', u'water', u'treatment', u'moot'] [u'virgin', u'blue', u'mull', u'follow', u'qanta', u'fuel', u'surcharg'] [u'visitor', u'urg', u'bunni', u'face', u'fine'] [u'volunt', u'group', u'disput', u'see', u'fund', u'pull'] [u'warn', u'eye', u'outright', u'record'] [u'warn', u'find', u'calm', u'world'] [u'warn', u'readi', u'claim', u'histori'] [u'warn', u'snare', u'record', u'india'] [u'warn', u'take', u'world', u'record'] [u'wave', u'mishap', u'consid', u'rare', u'event'] [u'wildcat', u'hawk', u'notch', u'win'] [u'wilkinson', u'declar', u'club', u'action'] [u'woman', u'walk', u'record'] [u'woolworth', u'block', u'rival'] [u'world', u'agoni', u'spur', u'gregan'] [u'youngster', u'dark', u'merci', u'dash', u'save'] [u'zimbabw', u'opposit', u'leader', u'acquit', u'treason'] [u'plung', u'river', u'northern', u'india'] [u'abandon', u'girl', u'famili', u'come', u'forward'] [u'accus', u'norfolk', u'murder', u'fli', u'sydney'] [u'poll', u'count', u'begin'] [u'african', u'union', u'send', u'soldier', u'quell', u'sudan'] [u'african', u'union', u'send', u'troop', u'darfur'] [u'anthoni', u'trail', u'richmond', u'count'] [u'author', u'swoop', u'illeg', u'worker'] [u'bashir', u'face', u'bali', u'charg'] [u'blue', u'fight', u'bull', u'inning'] [u'brown', u'hop', u'prefer', u'push', u'miln', u'quota'] [u'bull', u'inning', u'point'] [u'bull', u'trail', u'blue', u'lunch'] [u'bushrang', u'redback', u'lunch'] [u'canberran', u'head', u'poll'] [u'church', u'target', u'iraq', u'bomb', u'blast'] [u'club', u'gather', u'discuss', u'legisl'] [u'cook', u'tour', u'doubl'] [u'czar', u'paper', u'pass', u'melbourn', u'woman'] [u'danc', u'troup', u'help', u'suicid', u'prevent'] [u'darfur', u'demand', u'troop', u'envoy', u'say'] [u'davenport', u'kremlin', u'semi', u'william'] [u'doctor', u'plan', u'rise'] [u'downer', u'welcom', u'bashir', u'terror', u'charg'] [u'drug', u'addict', u'give', u'suspend', u'sentenc', u'robberi'] [u'dubai', u'team', u'debut'] [u'westwood', u'final', u'showdown'] [u'elvstroem', u'claim', u'caulfield'] [u'appeal', u'sugar', u'rule'] [u'court'] [u'fallujah', u'religi', u'leader', u'threaten', u'holi'] [u'farmer', u'accus', u'peta', u'emot', u'blackmail'] [u'faulti', u'parachut', u'link', u'genesi', u'crash'] [u'firefight', u'compet', u'honour'] [u'fire', u'threaten', u'popular', u'tourist', u'area'] [u'fire', u'control', u'northern'] [u'fishermen', u'die', u'sweep', u'rock'] [u'florida', u'voter', u'registr', u'case', u'begin'] [u'forecast', u'condit', u'help', u'bushfir', u'fight'] [u'gibernau', u'grab', u'pole', u'phillip', u'island'] [u'gould', u'auckland', u'heart', u'scare'] [u'greenspan', u'temper', u'shock', u'fear'] [u'grower', u'theyr', u'take', u'brunt', u'water', u'pain'] [u'hardi', u'chief', u'asset', u'seiz'] [u'hewitt', u'roddick', u'moya', u'feder', u'leav', u'madrid', u'master'] [u'higher', u'retail', u'sale', u'market', u'nudg'] [u'horniman', u'museum', u'fall', u'foul', u'smut', u'filter'] [u'independ', u'propos', u'region', u'rehabilit'] [u'india', u'warn', u'clean', u'tail'] [u'india', u'continu', u'build', u'lead'] [u'india', u'control', u'test'] [u'india', u'control', u'second', u'test'] [u'iran', u'reject', u'deal', u'uranium', u'enrich'] [u'iraqi', u'photograph', u'shoot', u'dead', u'iraq'] [u'israel', u'begin', u'troop', u'withdraw'] [u'beazley'] [u'jimenez', u'end', u'langer', u'match', u'play'] [u'jogger', u'best', u'foot', u'forward', u'trailblaz'] [u'kangaroo', u'kiwi', u'draw', u'open', u'test'] [u'kangaroo', u'kiwi', u'half', u'time'] [u'kiwi', u'prepar', u'warm', u'welcom', u'carrol'] [u'kumbl', u'star', u'india', u'seiz', u'control'] [u'labor', u'ahead', u'earli', u'count'] [u'labor', u'eye', u'major', u'poll'] [u'labor', u'tip', u'prepar', u'vote'] [u'leader', u'cast', u'vote', u'poll'] [u'liber', u'candid', u'cameron', u'conced', u'parramatta'] [u'liber', u'labor', u'victori', u'poll'] [u'jail', u'wife', u'kill'] [u'margaret', u'river', u'resid', u'upset', u'rate', u'rise'] [u'marshal', u'atol', u'sue', u'nuclear', u'damag'] [u'marsh', u'hit', u'tassi', u'beat', u'warrior'] [u'melbourn', u'lord', u'mayor', u'troop'] [u'myskina', u'down', u'davenport', u'reach', u'moscow', u'final'] [u'airlin', u'link', u'south', u'west', u'sydney'] [u'runner', u'domin', u'master', u'marathon'] [u'palestinian', u'pick', u'piec', u'isra', u'offens'] [u'parkinson', u'shadow', u'iron', u'spanish', u'surf', u'titl', u'hunt'] [u'perth', u'polic', u'seek', u'suspect', u'stab'] [u'pinochet', u'suffer', u'mild', u'dementia'] [u'polic', u'arrest', u'perth', u'stab', u'suspect'] [u'polic', u'investig', u'armidal', u'street', u'brawl'] [u'polic', u'search', u'girraween', u'miss'] [u'polic', u'identifi', u'dump', u'girl'] [u'razorback', u'dodg', u'bullet'] [u'razorback', u'dodg', u'bullet', u'tiger', u'edg', u'king'] [u'real', u'estat', u'predict', u'differ'] [u'redback', u'fight', u'bushrang'] [u'relentless', u'close', u'match', u'play', u'record'] [u'report', u'reveal', u'shame', u'abus', u'queensland', u'home'] [u'rescu', u'team', u'rush', u'rescu', u'fisherman'] [u'russian', u'craft', u'dock', u'space', u'station'] [u'scene', u'decis'] [u'sciacca', u'ponder', u'life', u'post', u'polit'] [u'sehwag', u'stand', u'overshadow', u'warn'] [u'leagu'] [u'smyth', u'conced', u'poll'] [u'soccer', u'boss', u'beckham', u'explain'] [u'stanhop', u'claim', u'unpreced', u'victori'] [u'tasmanian', u'govt', u'defend', u'tafe', u'hike'] [u'taxi', u'littl', u'relief', u'fare', u'increas'] [u'telstra', u'sale', u'unlik'] [u'tender', u'open', u'navi', u'shipbuild', u'contract'] [u'train', u'solo', u'ride', u'end', u'derail'] [u'trucker', u'pass', u'cost', u'custom'] [u'soldier', u'kill', u'afghanistan'] [u'consid', u'request', u'help', u'iraq'] [u'troop', u'baghdad'] [u'union', u'question', u'energex', u'chairman', u'role', u'disput'] [u'union', u'threaten', u'action', u'power', u'sack'] [u'report', u'arrest', u'fallujah', u'negoti'] [u'scrap', u'million', u'infect', u'vaccin', u'dose'] [u'soldier', u'refus', u'iraq', u'mission'] [u'tycoon', u'glazer', u'unit', u'share', u'swoop'] [u'vet', u'procedur', u'despit', u'wool', u'boycott'] [u'word', u'win', u'histori', u'prize'] [u'weather', u'aid', u'firefight'] [u'worksaf', u'investig', u'crane', u'death'] [u'young', u'peopl', u'warn', u'anti', u'depress', u'risk'] [u'zarqawi', u'order', u'disrupt', u'iraq', u'fuel', u'import'] [u'zimbabwean', u'govt', u'appeal', u'opposit', u'leader'] [u'aussi', u'competit', u'total'] [u'aussi', u'gritti', u'resist'] [u'bichel', u'symond', u'bull', u'charg'] [u'bishop', u'make', u'pitch', u'speaker'] [u'blind', u'pilot', u'complet', u'chariti', u'flight'] [u'blue', u'build', u'lead'] [u'brack', u'consid', u'anti', u'hoon', u'law'] [u'brack', u'fli', u'chines', u'market'] [u'brazil', u'allow', u'forc', u'target', u'drug', u'plan'] [u'british', u'polic', u'reopen', u'lord', u'lucan', u'case'] [u'buchanan', u'order', u'middl', u'order', u'stand'] [u'bull', u'close', u'victori', u'blue'] [u'bush', u'kerri', u'margin', u'state'] [u'bushrang', u'slow', u'steadi', u'adelaid'] [u'carr', u'admit', u'desalin', u'backflip'] [u'chennai', u'india', u'take'] [u'club', u'launch', u'code', u'practis'] [u'coastal', u'close', u'contain'] [u'court', u'decid', u'abandon', u'girl', u'fate'] [u'prize', u'caulfield', u'favourit'] [u'custom', u'thwart', u'anim', u'smuggler'] [u'darfur', u'troop', u'deploy', u'delay'] [u'dead', u'weekend', u'queensland', u'road'] [u'deco', u'keep', u'barca', u'fli', u'high', u'ronaldo', u'rescu'] [u'democrat', u'look', u'wipeout'] [u'dfat', u'staff', u'help', u'regener', u'bare', u'canberra', u'slop'] [u'down', u'pilot', u'worri', u'wait', u'rescu'] [u'down', u'lead', u'tour'] [u'down', u'lead', u'tour', u'evan', u'fourth', u'itali'] [u'drink', u'driver', u'blow', u'seven', u'time', u'legal', u'limit'] [u'egan', u'triumph', u'spanish', u'surf', u'parko', u'world', u'titl'] [u'westwood', u'squar', u'halfway', u'stage'] [u'erot', u'gherkin', u'take', u'design', u'gong'] [u'nomine', u'creat', u'stir', u'singl', u'mum'] [u'fallujah', u'bombard', u'continu'] [u'ferguson', u'look', u'anger', u'ahead', u'gunner'] [u'firefight', u'hone', u'high', u'tech', u'servic'] [u'flame', u'continu', u'win'] [u'crow', u'cat', u'pedal', u'chariti'] [u'gallop', u'extend', u'growth', u'invit', u'lennon'] [u'garden', u'hose', u'cool', u'power', u'substat'] [u'govt', u'outlin', u'telstra', u'sale', u'timet'] [u'govt', u'play', u'talk', u'free'] [u'govt', u'ponder', u'indon', u'secur', u'deal'] [u'gunner', u'extend', u'lead', u'blue', u'slump', u'citi'] [u'harbhajan', u'dent', u'aussi', u'fight'] [u'health', u'warn', u'swan', u'river', u'sewag', u'spill'] [u'israel', u'launch', u'oper', u'gaza', u'strip'] [u'jayasuriya', u'lead', u'lanka', u'victori'] [u'karzai', u'take', u'earli', u'lead', u'afghan', u'elect'] [u'kerri', u'promis', u'lift', u'stem', u'cell', u'research'] [u'king', u'ban', u'liber', u'parti'] [u'king', u'shoot', u'bullet'] [u'kiwi', u'british', u'base', u'player'] [u'kosciuszko', u'wildlif', u'bounc'] [u'labor', u'look', u'right', u'frontbench'] [u'lacklustr', u'juve', u'stretch', u'lead', u'itali'] [u'leed', u'hold', u'nerv', u'super', u'leagu', u'drought'] [u'liber', u'emptiv', u'merger'] [u'loeb', u'clinch', u'world', u'ralli', u'titl'] [u'malik', u'report', u'suspect', u'action'] [u'martyn', u'lead', u'australian', u'fight'] [u'martyn', u'set', u'thrill', u'final'] [u'attack', u'tennant', u'creek', u'financi', u'doubter'] [u'warn', u'postal', u'scam'] [u'myskina', u'captur', u'kremlin'] [u'mango', u'varieti', u'launch'] [u'hand', u'aborigin', u'remain'] [u'honour', u'emerg', u'servic', u'volunt'] [u'kill', u'wound', u'rogu', u'bear'] [u'polic', u'seek', u'inform', u'perth', u'stab'] [u'pope', u'look', u'ahead', u'anniversari'] [u'post', u'elect', u'violenc', u'spread', u'afghanistan'] [u'liber', u'reject', u'nation', u'merger', u'plan'] [u'record', u'field', u'chariti', u'ride'] [u'redback', u'bushrang'] [u'report', u'claim', u'gulf', u'syndrom', u'exist'] [u'resid', u'invit', u'tour', u'embassi'] [u'reward', u'offer', u'miss', u'toddler', u'case'] [u'richmond', u'slip', u'away', u'anthoni'] [u'rossi', u'wrap', u'world', u'championship'] [u'satellit', u'crush', u'hous', u'china'] [u'search', u'fisherman', u'bodi', u'continu'] [u'seventh', u'madrid', u'bomber', u'identifi'] [u'stanhop', u'celebr', u'histor'] [u'stoner', u'phillip', u'island'] [u'sydney', u'shop', u'centr', u'evacu', u'leak'] [u'tah', u'argentin', u'tour', u'winner'] [u'teen', u'catch', u'speed', u'twice', u'hour'] [u'thousand', u'stroll', u'diabet'] [u'tiger', u'lunch'] [u'tini', u'town', u'take', u'tidi', u'town', u'honour'] [u'bad', u'injur', u'melbourn', u'smash'] [u'dead', u'helicopt', u'crash', u'iraq'] [u'continu', u'assault', u'fallujah'] [u'deni', u'zarqawi', u'captur'] [u'forc', u'pound', u'fallujah'] [u'paper', u'split', u'presidenti', u'prefer'] [u'victorian', u'locust', u'watch'] [u'warrior', u'strike', u'tiger'] [u'warrior', u'tiger', u'share', u'honour'] [u'water', u'truck', u'armi', u'exercis'] [u'accus', u'draw', u'blank', u'fatal', u'accid'] [u'actu', u'criticis', u'elect', u'campaign'] [u'actu', u'expect', u'radic', u'workplac', u'chang'] [u'actu', u'fight', u'industri', u'relat', u'reform'] [u'tip', u'rais', u'fuel', u'surcharg'] [u'airport', u'forc', u'rule', u'land'] [u'alcohol', u'ban', u'boost', u'communiti', u'health'] [u'bid', u'battl', u'domin', u'market'] [u'alleg', u'lawnmov', u'thief', u'face', u'court'] [u'anglican', u'report', u'criticis', u'church', u'leader'] [u'anthoni', u'limbo', u'richmond', u'count', u'continu'] [u'anti', u'poverti', u'week', u'highlight', u'health', u'woe'] [u'arsenal', u'vieira', u'doubt', u'champion', u'leagu', u'trip'] [u'attack', u'prey', u'cereb', u'palsi', u'suffer'] [u'australia', u'reject', u'troop', u'request'] [u'australia', u'thump', u'dublin'] [u'asia', u'pacif', u'reject', u'parent', u'takeov'] [u'ballarat', u'wont', u'boost', u'offer', u'despit', u'strike'] [u'chang', u'urg', u'athlet', u'australia'] [u'blast', u'hit', u'cafe', u'near', u'aust', u'embassi'] [u'treat', u'snake', u'bite'] [u'brogden', u'stand', u'porn', u'charg', u'claim'] [u'break', u'hill', u'adelaid', u'servic', u'evalu', u'ongo'] [u'bull', u'notch', u'thrill', u'outright'] [u'bureau', u'look', u'loom', u'cyclon', u'season'] [u'burrup', u'peninsula', u'get', u'emerg', u'servic', u'boost'] [u'busi', u'welcom', u'internet', u'technolog'] [u'cat', u'delist', u'sprigg', u'foster'] [u'champion', u'leagu', u'get', u'gun', u'meet'] [u'chariti', u'urg', u'howard', u'tackl', u'poverti'] [u'colanda', u'complex', u'upgrad'] [u'cold', u'cross', u'blood', u'stock'] [u'consumpt', u'boost', u'wool', u'export', u'china'] [u'cook', u'claim', u'tour', u'stage'] [u'cooper', u'bribe', u'hear', u'begin'] [u'coron', u'report', u'teacher', u'death'] [u'council', u'blame', u'illeg', u'dump', u'increas'] [u'council', u'crack', u'water'] [u'council', u'fast', u'rail', u'scheme', u'brief'] [u'count', u'point', u'labor', u'major'] [u'court', u'hear', u'cash', u'claim', u'exchang'] [u'crash', u'claim', u'mundubbera', u'locum', u'pharmacist'] [u'crash', u'spark', u'polic', u'mobil', u'phone', u'warn'] [u'croc', u'coach', u'panic', u'weekend', u'loss'] [u'crown', u'lawyer', u'appear', u'eastman', u'inquiri'] [u'cunningham', u'result', u'declar'] [u'darwin', u'student', u'celebr', u'democraci'] [u'dean', u'jensen', u'say', u'comment', u'take', u'context'] [u'dentist', u'shortag', u'hit'] [u'dentist', u'support', u'fluorid', u'plan'] [u'dept', u'seek', u'communiti', u'input', u'futur', u'educ'] [u'develop', u'consid', u'latest', u'setback'] [u'doctor', u'defend', u'increas'] [u'doctor', u'rais', u'fee', u'despit', u'recommend'] [u'dump', u'child', u'stay', u'grandpar', u'care'] [u'dunda', u'warn', u'feder', u'territori', u'power', u'struggl'] [u'dust', u'fire', u'storm', u'blame', u'power', u'pole', u'fire'] [u'dutch', u'soldier', u'acquit', u'iraqi', u'death'] [u'emerg', u'servic', u'improv', u'communic'] [u'emerson', u'quit', u'frontbench'] [u'evan', u'conced', u'wakefield', u'liber'] [u'explos', u'caus', u'kenyan', u'airport', u'collaps'] [u'fallujah', u'fight', u'eas', u'troop', u'pull'] [u'fallujah', u'peac', u'talk', u'call'] [u'farmer', u'assembl', u'govt', u'bushfir'] [u'farmer', u'watch', u'locust'] [u'fatal', u'highway', u'crash', u'disrupt', u'sydney', u'traffic'] [u'firefight', u'effort', u'continu', u'east', u'coast'] [u'rip', u'venezuelan', u'skyscrap'] [u'fisher', u'angri', u'marin', u'park', u'zone', u'plan'] [u'milit', u'kill', u'opposit', u'gaza'] [u'rescu', u'boat', u'sink', u'torr', u'strait'] [u'footbal', u'analog', u'bring', u'indigen', u'firm', u'closer'] [u'forecast', u'tip', u'recess'] [u'worker', u'admit', u'skim', u'thousand'] [u'franc', u'consid', u'recherch', u'protect'] [u'fraser', u'accid', u'land', u'tourist', u'hospit'] [u'fuel', u'price', u'offer', u'mix', u'outlook', u'driver'] [u'fund', u'boost', u'disabl', u'scheme'] [u'garag', u'destroy', u'truck', u'crash'] [u'ghan', u'season', u'servic', u'doubl'] [u'ghan', u'servic', u'expans', u'prompt', u'accomod'] [u'gilchrist', u'rue', u'rain', u'ruin', u'chennai', u'classic'] [u'gold', u'coast', u'home', u'damag', u'downpour'] [u'good', u'weather', u'boost', u'floriad', u'visitor', u'number'] [u'govern', u'reach', u'carer'] [u'governor', u'tour', u'west'] [u'govt', u'happi', u'reef', u'fish', u'spawn', u'closur', u'respons'] [u'govt', u'urg', u'sack'] [u'govt', u'urg', u'probe', u'anaesthetist', u'resign'] [u'green', u'confid', u'win', u'assembl', u'seat'] [u'health', u'servic', u'minimis', u'nois', u'level'] [u'hussey', u'power', u'inning', u'point'] [u'clear', u'zimbabw', u'racism'] [u'say', u'plan', u'drop', u'nation', u'test', u'circuit'] [u'india', u'china', u'turn', u'crop', u'battl', u'fee'] [u'indonesia', u'step', u'secur', u'swear'] [u'industri', u'manslaught', u'gain', u'union', u'support'] [u'industri', u'face', u'increas', u'water', u'cost'] [u'infect', u'bear', u'spark', u'romania', u'rabi', u'alert'] [u'iraq', u'milit', u'confirm', u'qaeda', u'link', u'statement'] [u'iraq', u'plan', u'countrywid', u'arm', u'amnesti'] [u'iraq', u'protest', u'london', u'street'] [u'irish', u'women', u'keen', u'learn', u'agricultur'] [u'israel', u'kill', u'gaza', u'infiltr'] [u'itali', u'start', u'iraq', u'troop', u'pullout', u'elect'] [u'soar', u'aria'] [u'joli', u'vote', u'sexiest', u'woman', u'aliv'] [u'kangaroo', u'promis', u'lift', u'london'] [u'karzai', u'lead', u'afghan', u'vote'] [u'kidnapp', u'threaten', u'kill', u'say'] [u'knife', u'bandit', u'spark', u'polic', u'manhunt'] [u'landhold', u'urg', u'readi'] [u'landhold', u'urg', u'share', u'drought', u'experi'] [u'landmark', u'rule', u'clear', u'magazin', u'libel'] [u'societi', u'presid', u'vow', u'fight', u'govt', u'chang'] [u'lennon', u'stand', u'firm', u'forestri', u'job'] [u'like', u'father', u'like', u'tour'] [u'face', u'court', u'coolamon', u'blaze'] [u'mcmullan', u'quit', u'latham', u'frontbench'] [u'merger', u'shake', u'retir', u'sector'] [u'mildura', u'mayor', u'happi', u'council', u'structur'] [u'mildura', u'rider', u'put', u'strong', u'grand', u'prix', u'finish'] [u'miner', u'secur', u'miner', u'sand', u'fund'] [u'fund', u'seek', u'devonport', u'visitor', u'centr'] [u'rain', u'predict', u'northern', u'tableland'] [u'mount', u'welcom', u'olympian'] [u'say', u'telstra', u'sell', u'happen'] [u'murder', u'hear', u'tell', u'fail', u'suicid', u'attempt'] [u'servic', u'step', u'closer'] [u'newcastl', u'miss', u'chanc', u'fourth'] [u'inform', u'lead', u'polic', u'murder', u'victim', u'bodi'] [u'leas', u'life', u'seek', u'town', u'hall'] [u'news', u'bridg', u'makeov', u'welcom'] [u'theatr', u'compani', u'head', u'aim', u'high'] [u'altern', u'mules', u'farmer'] [u'guarante', u'bush', u'servic', u'telstra', u'sale'] [u'panic', u'say', u'croc', u'coach', u'stacker'] [u'consid', u'urban', u'renew', u'plan'] [u'price', u'surg'] [u'ombudsman', u'call', u'nation', u'credit', u'regul'] [u'opposit', u'question', u'govt', u'busi', u'polic'] [u'optic', u'bewild', u'galleri', u'goer'] [u'optometrist', u'child', u'sight', u'problem', u'go'] [u'outback', u'town', u'water', u'crisi', u'shame'] [u'paraglid', u'hurt', u'hit', u'powerlin'] [u'park', u'close', u'cattl', u'round'] [u'partnership', u'pay', u'seeta', u'award'] [u'pedestrian', u'die', u'truck', u'accid'] [u'pedestrian', u'car'] [u'pitcairn', u'accus', u'remain', u'free', u'month'] [u'welcom', u'liber'] [u'warn', u'parti', u'complac'] [u'polic', u'crack', u'cannabi'] [u'polic', u'memo', u'support', u'child', u'porn', u'concern', u'brogden'] [u'polic', u'promis', u'indi', u'crackdown'] [u'polic', u'seek', u'order', u'destroy'] [u'poll', u'bush', u'elect', u'edg'] [u'prison', u'encourag', u'offend', u'cell', u'mat'] [u'probe', u'launch', u'illeg', u'freshwat', u'fish'] [u'public', u'urg', u'water', u'week'] [u'qanta', u'flight', u'attend', u'talk', u'deadlock'] [u'qanta', u'head', u'strike', u'breaker'] [u'qanta', u'union', u'order', u'talk'] [u'race', u'face', u'interst', u'boycott'] [u'race', u'chief', u'dismiss', u'bet', u'claim'] [u'race', u'chief', u'dismiss', u'fix', u'claim'] [u'set', u'harsh', u'smoke', u'fin'] [u'radio', u'problem', u'polic', u'risk', u'opposit'] [u'rail', u'passeng', u'servic', u'delay'] [u'rain', u'eas', u'queensland', u'threat'] [u'rain', u'forc', u'draw', u'chennai'] [u'rain', u'prevent', u'bull', u'chase'] [u'rain', u'provid', u'relief', u'water', u'restrict', u'remain'] [u'rain', u'repriev', u'parch', u'wide', u'burnett'] [u'record', u'tumbl', u'master', u'game'] [u'redback', u'place', u'outright', u'victori'] [u'relentless', u'seal', u'record', u'sixth', u'match', u'play', u'titl'] [u'rescu', u'servic', u'attend', u'hors', u'fall', u'accid'] [u'riverina', u'town', u'clean', u'award'] [u'riverland', u'winemak', u'miss', u'gong'] [u'journalist', u'detain', u'iraq'] [u'second', u'string', u'milan', u'close', u'juve'] [u'sehwag', u'warn', u'final'] [u'selector', u'ban', u'criticis', u'umpir'] [u'senat', u'candid', u'gold', u'coast'] [u'settler', u'label', u'gaza', u'pullout', u'meet', u'disgrac'] [u'sewag', u'spill', u'close', u'swan', u'river', u'reach'] [u'shadow', u'cabinet', u'head', u'coast'] [u'shire', u'council', u'resist', u'confid', u'vote'] [u'korea', u'seek', u'astronaut', u'mission'] [u'smelter', u'death', u'investig'] [u'landown', u'delay', u'wild', u'dog', u'aerial', u'bait'] [u'sorenstam', u'vault', u'past', u'park', u'captur', u'lpga', u'event'] [u'spotlight', u'shine', u'norseman', u'social', u'issu'] [u'springborg', u'anticip', u'parti', u'merger', u'support'] [u'springborg', u'offer', u'evid', u'need', u'parti'] [u'strickland', u'famili', u'deni', u'suicid', u'rumour'] [u'student', u'prepar', u'exam'] [u'studi', u'determin', u'chemotherapi', u'effect'] [u'slow', u'cane', u'grower', u'bail', u'packag'] [u'talk', u'continu', u'broom', u'board', u'school'] [u'investig', u'road', u'worker', u'diseas', u'concern'] [u'task', u'forc', u'seek', u'help', u'maintain', u'colleg', u'servic'] [u'tasmania', u'await', u'approv', u'water', u'test'] [u'teacher', u'give', u'bail', u'child', u'porn', u'charg'] [u'telstra', u'broadband', u'growth', u'ahead', u'schedul'] [u'test', u'flow', u'encourag', u'santo'] [u'valencia', u'loss', u'let', u'barca', u'race'] [u'time', u'action', u'lobbi', u'group', u'tell', u'govt'] [u'toddler', u'disappear', u'prompt', u'polic', u'reward'] [u'tourism', u'boost', u'south', u'coast'] [u'trial', u'date', u'bashir'] [u'trucki', u'road', u'train', u'record'] [u'tune', u'begin', u'road', u'red', u'comeback'] [u'turkish', u'delight', u'greek', u'world', u'record', u'holder'] [u'separ', u'road', u'crash'] [u'academi', u'condemn', u'bush', u'clone'] [u'deni', u'troop', u'deploy', u'shore', u'bush'] [u'union', u'highlight', u'teacher', u'hous', u'woe'] [u'union', u'dismay', u'hardi', u'attitud'] [u'univers', u'union', u'question', u'deregul', u'cours', u'fee'] [u'lift', u'foie', u'gras', u'import'] [u'valv', u'blame', u'swan', u'sewag', u'spill'] [u'polic', u'sound', u'mini', u'motorbik', u'warn'] [u'victorian', u'town', u'select', u'site', u'children', u'film'] [u'victoria', u'put', u'telco', u'notic'] [u'warn', u'mission', u'stop', u'india'] [u'water', u'compani', u'push', u'effluent'] [u'water', u'conserv', u'sacrific', u'profit'] [u'weed', u'want', u'dead', u'aliv'] [u'william', u'take', u'lewi', u'tip', u'titl', u'showdown'] [u'wit', u'tell', u'victim', u'alcohol', u'induc', u'violenc'] [u'wool', u'boycott', u'fail', u'gain', u'rspca', u'support'] [u'youth', u'arrest', u'steal', u'spree'] [u'accommod', u'develop', u'meet', u'ghan', u'demand'] [u'acupunctur', u'boost', u'arthriti', u'relief'] [u'celebr', u'anniversari'] [u'agreement', u'reach', u'veteran', u'wall'] [u'alleg', u'bird', u'smuggler', u'charg'] [u'allianc', u'pressur', u'govt', u'toxic', u'wast', u'dump'] [u'bicker', u'faction', u'influenc'] [u'altern', u'energi', u'machin'] [u'amnesti', u'challeng', u'singapor', u'execut'] [u'arid', u'call', u'compulsori', u'rain', u'water', u'tank'] [u'arni', u'wife', u'termin', u'bush', u'speech'] [u'arrest', u'foil', u'spain', u'court', u'attack', u'sourc'] [u'artifici', u'heart', u'win', u'approv'] [u'fatal', u'rate', u'concern', u'coron'] [u'australia', u'join', u'exercis', u'japan', u'despit', u'north', u'korea'] [u'australian', u'injur', u'cairo', u'crash'] [u'australia', u'shift', u'baghdad', u'embassi'] [u'author', u'investig', u'fatal', u'plane', u'crash'] [u'ballarat', u'staff', u'strike'] [u'bangladeshi', u'order', u'demolish', u'session'] [u'bank', u'sector', u'help', u'lift', u'market'] [u'bevan', u'clear', u'injuri'] [u'brother', u'bash', u'screen', u'brawl'] [u'biosecur', u'help', u'prevent', u'cane', u'toad', u'spread'] [u'bolton', u'mentor', u'reward', u'year', u'deal'] [u'british', u'troop', u'iraq', u'tip', u'help'] [u'bulldog', u'strength', u'england'] [u'burmes', u'hous', u'arrest'] [u'bushfir', u'coron', u'dismiss'] [u'bushrang', u'troubl', u'final'] [u'bush', u'sign', u'north', u'korea', u'law'] [u'bush', u'grudg', u'accept', u'islam', u'state', u'iraq'] [u'busi', u'council', u'concern', u'water', u'plan', u'cost'] [u'tourism', u'bodi', u'demis'] [u'cancer', u'council', u'get', u'smoke', u'ban'] [u'cattl', u'mishap', u'prompt', u'wharf', u'safeti', u'boost'] [u'acquir', u'macquari', u'wool', u'hedg', u'busi'] [u'chariti', u'director', u'jail', u'rig', u'raffl'] [u'chef', u'free', u'inquiri'] [u'chelsea', u'striker', u'admit', u'cocain'] [u'clinic', u'facil', u'inadequ', u'coron', u'tell'] [u'coal', u'termin', u'charg'] [u'communiti', u'urg', u'pressur', u'govt', u'machin'] [u'communiti', u'worker', u'receiv', u'rise'] [u'confer', u'consid', u'region', u'medic', u'crisi'] [u'confid', u'high', u'despit', u'skill', u'shortag'] [u'cop', u'defeat', u'light', u'soccer', u'team'] [u'corretja', u'davenport', u'warn', u'tenni', u'burnout'] [u'council', u'mine', u'river', u'damag'] [u'council', u'defer', u'water', u'decis'] [u'council', u'push', u'ahead', u'beach', u'walk', u'plan'] [u'council', u'seek', u'walk', u'track', u'fund'] [u'council', u'decid', u'legal', u'represent'] [u'court', u'hear', u'land', u'valuat', u'disput'] [u'bet', u'suspend', u'shes', u'archi', u'specul'] [u'custom', u'strike', u'travel'] [u'davenport', u'number', u'open'] [u'deal', u'expect', u'boost', u'dairi', u'industri', u'profit'] [u'democrat', u'polic', u'badg', u'explan'] [u'design', u'push', u'recycl', u'water', u'campaign'] [u'doubt', u'rais', u'rural', u'exhibit', u'centr', u'plan'] [u'driver', u'seek', u'adelaid', u'shoot'] [u'begin', u'fuel', u'reduct', u'burn'] [u'nino', u'threat', u'fade', u'summer', u'loom'] [u'england', u'wagg', u'ban', u'cocain'] [u'english', u'cricket', u'plead', u'guilti', u'paralymp'] [u'english', u'hors', u'face', u'carniv'] [u'escap', u'king', u'leav', u'dummi', u'jail', u'break'] [u'exhibit', u'celebr', u'raphael'] [u'famili', u'payment', u'rich', u'poor', u'steadi'] [u'inform', u'court', u'accus', u'afford', u'trial'] [u'fear', u'higher', u'fish', u'fee', u'drive', u'oper'] [u'fire', u'coron', u'presid', u'debat', u'futur'] [u'fitzgibbon', u'line', u'face', u'kiwi'] [u'kill', u'injur', u'iraq', u'attack'] [u'fleme', u'support', u'struggl', u'bangladesh'] [u'flood', u'busi', u'north', u'coast'] [u'delay', u'perth', u'flight'] [u'archiv', u'director', u'admit', u'financi', u'decept'] [u'forum', u'focus', u'crime', u'prevent'] [u'fund', u'enhanc', u'experi'] [u'gibbin', u'close', u'conced', u'bendigo'] [u'glazer', u'rais', u'manchest', u'unit', u'stake', u'sourc'] [u'govern', u'fund', u'transfer', u'warrant', u'inquiri'] [u'govt', u'consid', u'urban', u'sprawl', u'plan'] [u'grazier', u'fear', u'ongo', u'drought'] [u'green', u'group', u'air', u'concern', u'island', u'plan'] [u'guilti', u'verdict', u'bring', u'closur', u'bundaberg', u'mayor'] [u'gulf', u'syndrom', u'remain', u'mysteri'] [u'gympi', u'school', u'name', u'qlds', u'school'] [u'hail', u'storm', u'rock', u'southern'] [u'heritag', u'list', u'mason', u'lodg'] [u'howard', u'play', u'indonesian', u'emptiv', u'strike'] [u'hull', u'rule', u'confisc', u'driver', u'phone'] [u'hundr', u'look', u'narooma', u'plan'] [u'iaea', u'prepar', u'brazil', u'inspect'] [u'tip', u'econom', u'boom', u'iraq'] [u'india', u'want', u'bandit', u'kill', u'shoot'] [u'indonesian', u'volcano', u'awaken'] [u'indi', u'buff', u'prepar', u'buck', u'track'] [u'injur', u'crouch', u'fli', u'home'] [u'inquest', u'fatal', u'polic', u'shoot', u'adjourn'] [u'inquiri', u'prompt', u'submiss', u'portabl', u'goal', u'post'] [u'iron', u'produc', u'expand', u'oper'] [u'jaguar', u'solv', u'webber', u'seat', u'problem'] [u'japanes', u'firm', u'accus', u'whale', u'aust', u'water'] [u'jone', u'say', u'tour', u'decis', u'gregan'] [u'kakadu', u'tourism', u'plan', u'complet'] [u'kenya', u'rule', u'terror', u'airport', u'blast'] [u'labor', u'pull', u'ahead', u'richmond'] [u'lawyer', u'testifi', u'eastman', u'unfit', u'plead'] [u'leas', u'loophol', u'cost', u'local', u'council'] [u'leed', u'skipper', u'drop', u'lion'] [u'liber', u'await', u'child', u'abus', u'report'] [u'liber', u'extend', u'lead', u'bonner'] [u'liverpool', u'spaniard', u'edg', u'say', u'irureta'] [u'local', u'govt', u'group', u'urg', u'support', u'jam', u'hardi'] [u'love', u'lose', u'injuri', u'replac', u'nash'] [u'malfunct', u'prompt', u'search', u'rescu', u'mission'] [u'injur', u'boat'] [u'margin', u'seat', u'wire'] [u'mass', u'murder', u'ban', u'legal', u'action'] [u'meet', u'consid', u'hall', u'safeti'] [u'miner', u'glimps', u'melbourn'] [u'miner', u'restructur', u'divis', u'amid', u'takeov', u'offer'] [u'mine', u'town', u'thrive', u'export', u'price'] [u'minist', u'accept', u'disallow', u'white', u'limit'] [u'minist', u'offer', u'shoalhaven', u'river', u'assur'] [u'minist', u'push', u'upper', u'hous', u'clear', u'backlog'] [u'miss', u'hunter', u'safe'] [u'molik', u'zurich'] [u'polic', u'combat', u'goonellabah', u'crime'] [u'rain', u'forecast', u'england'] [u'say', u'local', u'issu', u'hurt', u'port', u'hedland', u'vote'] [u'gambier', u'hotel', u'win', u'best', u'award'] [u'murder', u'lawyer', u'court', u'set', u'danger'] [u'mutu', u'agent', u'confirm', u'posit', u'drug', u'test'] [u'myskina', u'look', u'eras', u'olymp', u'nightmar'] [u'nation', u'decid', u'dubbo', u'candid'] [u'nehra', u'replac', u'injur', u'pathan', u'nagpur', u'test'] [u'beef', u'feedlot', u'get', u'green', u'light'] [u'drug', u'give', u'hope', u'mesothelioma', u'patient'] [u'equip', u'help', u'firefight'] [u'law', u'jam', u'hardi', u'investig'] [u'newmont', u'seek', u'releas', u'detain', u'staff'] [u'nile', u'return', u'parliament'] [u'korea', u'crisi', u'talk', u'resum'] [u'nois', u'alert', u'sleep', u'woman', u'hous'] [u'back', u'child', u'porn', u'loophol'] [u'float', u'emir', u'export', u'hop'] [u'nurs', u'criticis', u'lack', u'job', u'graduat'] [u'ogradi', u'shadow', u'armstrong', u'world', u'rank'] [u'price', u'boost', u'market'] [u'origin', u'plan', u'ramp', u'power', u'generat'] [u'overexpos', u'britney', u'wont', u'year'] [u'parti', u'unchang', u'elect', u'count', u'progress'] [u'perth', u'fuel', u'price', u'remain', u'competit', u'despit', u'rise'] [u'phone', u'thrower', u'prove', u'talk', u'cheap'] [u'pittman', u'remain', u'titl', u'hope'] [u'plan', u'wind', u'help', u'gassi', u'cow'] [u'declin', u'peacekeep', u'request'] [u'deni', u'gatecrash', u'sbys', u'parti'] [u'visit', u'embassi', u'bomb', u'site'] [u'polic', u'offic', u'acquit', u'danger', u'drive'] [u'polic', u'support', u'anti', u'hoon', u'legisl', u'plan'] [u'polic', u'urg', u'communiti', u'join', u'drug', u'fight'] [u'polic', u'visibl', u'help', u'lower', u'crime'] [u'pont', u'get', u'thumb', u'fourth', u'test'] [u'pont', u'give', u'thumb', u'fourth', u'test'] [u'port', u'lincoln', u'foster', u'care', u'famili', u'need'] [u'public', u'help', u'tackl', u'weed', u'pest'] [u'public', u'help', u'seek', u'catch', u'escap'] [u'public', u'servant', u'warn', u'rise', u'delay'] [u'public', u'murray', u'plan'] [u'public', u'urg', u'storm', u'readi'] [u'qanta', u'accus', u'safeti', u'train', u'shortcut'] [u'budget', u'surplus', u'exceed', u'expect'] [u'plane', u'crash', u'claim', u'pilot', u'life'] [u'quarantin', u'rule', u'disadvantag', u'darwin', u'port'] [u'question', u'rais', u'rail', u'servic', u'timet'] [u'race', u'cronj', u'join', u'harlequin'] [u'radic', u'cleric', u'face', u'charg'] [u'rain', u'hail', u'blackout', u'wide', u'burnett'] [u'rain', u'help', u'eas', u'ban'] [u'reduc', u'crop', u'affect', u'canegrow', u'incom'] [u'region', u'public', u'health', u'consult', u'cancel'] [u'region', u'benefit', u'nation', u'senat', u'power'] [u'reject', u'muslim', u'forc', u'joint', u'decis'] [u'resid', u'urg', u'railway', u'station'] [u'reject', u'claim', u'lack', u'support'] [u'rise', u'fuel', u'cost', u'blow', u'line', u'budget'] [u'riverland', u'tourism', u'rise'] [u'sack', u'iraqi', u'judg', u'liken', u'govt', u'saddam'] [u'consid', u'tough', u'drink', u'drive', u'law'] [u'sciacca', u'lose', u'grip', u'bonner'] [u'scientist', u'sail', u'greenhous', u'studi'] [u'search', u'begin', u'miss', u'deer', u'hunter'] [u'secur', u'beef', u'fijian', u'mutini', u'trial'] [u'sever', u'weather', u'warn', u'issu', u'hunter'] [u'shake', u'plan', u'council', u'audit', u'committe'] [u'shanghai', u'secur', u'guard', u'suicid', u'watch'] [u'shire', u'back', u'childcar', u'centr', u'plan'] [u'smelter', u'death', u'spark', u'union', u'safeti', u'pledg'] [u'spur', u'portsmouth'] [u'starcraft', u'rail', u'plate'] [u'starcraft', u'pull', u'clear', u'plate', u'bet'] [u'starcraft', u'readi', u'savabeel'] [u'stevedor', u'claim', u'port', u'plan', u'jeopardis', u'growth'] [u'storm', u'sweep', u'central'] [u'strategi', u'curb', u'year', u'antisoci', u'woe'] [u'surcharg', u'fuel', u'ticket', u'price', u'rise'] [u'sydney', u'water', u'plan', u'focus', u'reduc', u'demand'] [u'tait', u'spree', u'see', u'victoria', u'bushwhack', u'redback'] [u'tanner', u'join', u'labor', u'frontbench', u'exodus'] [u'accept', u'antarct', u'adventur'] [u'tassi', u'fight', u'warrior'] [u'relief', u'tip'] [u'telstra', u'sale', u'boost', u'infrastructur'] [u'telstra', u'job', u'offshor'] [u'tendulkar', u'resum', u'train'] [u'money', u'spend', u'terror', u'protect'] [u'worker', u'kidnap', u'iraq'] [u'tough', u'time', u'leav', u'commerci', u'fisher', u'reel'] [u'toyn', u'prove', u'good', u'master'] [u'train', u'program', u'address', u'skill', u'shortag'] [u'truck', u'accid', u'caus', u'highway', u'delay'] [u'trust', u'bodi', u'maintain', u'recherch', u'campaign'] [u'hold', u'mysteri', u'flight'] [u'unemploy', u'help', u'fruit', u'picker', u'shortag'] [u'strike', u'fallujah'] [u'vaccin', u'shortag', u'strain', u'canadian', u'suppli'] [u'vandal', u'target', u'council', u'car'] [u'victoria', u'bushwhack', u'redback'] [u'vieira', u'greek', u'trip'] [u'watchdog', u'cool', u'aircondition', u'claim'] [u'week', u'put', u'weed', u'woe', u'spotlight'] [u'western', u'greater', u'risk', u'iraq', u'report'] [u'whitak', u'rule', u'wallabi', u'tour'] [u'william', u'break', u'tasmania'] [u'mind', u'florida', u'resid', u'vote', u'earli'] [u'worksaf', u'find', u'safeti', u'breach'] [u'govt', u'properti', u'post'] [u'vote', u'finalis', u'week'] [u'call', u'firefight', u'overhaul'] [u'agforc', u'air', u'concern'] [u'worker', u'husband', u'make', u'plea', u'kidnapp'] [u'airasia', u'eye', u'australian', u'market'] [u'crash', u'expert', u'arriv', u'georg'] [u'increas', u'fuel', u'surcharg'] [u'alderman', u'defend', u'decis', u'withdraw', u'group'] [u'candid', u'conced', u'defeat', u'eden', u'monaro'] [u'alpha', u'perman', u'stock', u'inspector'] [u'increas', u'lead', u'perth', u'seat'] [u'alvin', u'follow', u'calvin', u'dope', u'oblivion'] [u'anim', u'group', u'interven', u'aerial', u'bait'] [u'land', u'aborigin', u'caus', u'citi'] [u'applic', u'seek', u'villag', u'redevelop'] [u'asia', u'pacif', u'face', u'aid', u'crisi', u'warn'] [u'asic', u'keep', u'close', u'watch'] [u'associ', u'say', u'sight', u'hous', u'woe'] [u'determin', u'solut', u'darfur', u'crisi'] [u'aussi', u'tour', u'squad', u'remain', u'unchang'] [u'aust', u'apparatchik', u'tori', u'campaign'] [u'aust', u'polic', u'investig', u'spanish', u'terror', u'link'] [u'australian', u'help', u'eas', u'nauru', u'crisi'] [u'australian', u'cano', u'overhaul', u'head', u'coach'] [u'australian', u'lose', u'singapor', u'death', u'sentenc', u'appeal'] [u'australian', u'miner', u'secur', u'china', u'steel', u'deal'] [u'babi', u'killer', u'get', u'life', u'sentenc'] [u'beatti', u'join', u'carr', u'call', u'health'] [u'bellingen', u'coff', u'harbour', u'declar', u'disast', u'area'] [u'bellingen', u'say', u'fluorid'] [u'bendigo', u'frontbench', u'run'] [u'bias', u'claim', u'halt', u'canberra', u'inquest'] [u'birth', u'scandal', u'highlight', u'hospit', u'woe', u'say'] [u'blair', u'undecid', u'iraq', u'troop', u'movement'] [u'lose', u'famili', u'injuri'] [u'britain', u'warn', u'iran', u'stop', u'uranium', u'scheme'] [u'brother', u'bump', u'year', u'apart'] [u'burrup', u'back', u'reef', u'heritag', u'list'] [u'bush', u'kerri', u'trade', u'blow', u'vaccin', u'shortag'] [u'canberra', u'driver', u'danger'] [u'care', u'suspend', u'oper', u'iraq'] [u'carlton', u'continu', u'delist', u'cull'] [u'carr', u'float', u'trade', u'power'] [u'casa', u'review', u'qanta', u'safeti', u'train'] [u'cathol', u'archbishop', u'criticis', u'politician'] [u'cavort', u'coupl', u'careen', u'cliff'] [u'group', u'fear', u'crew', u'safeti'] [u'citrus', u'canker', u'inspect', u'bring', u'forward'] [u'club', u'group', u'say', u'anti', u'smoke', u'timefram', u'borderlin'] [u'coff', u'harbour', u'storm', u'fell', u'tree', u'powerlin'] [u'coff', u'mayor', u'thrill', u'livabl', u'citi', u'award'] [u'collett', u'wont', u'recontest', u'mayor', u'spot'] [u'communiti', u'smoke', u'ban', u'say', u'govern'] [u'condello', u'deni', u'bail', u'underworld', u'case'] [u'confer', u'consid', u'boom', u'south', u'west', u'industri'] [u'confer', u'hear', u'price', u'tip', u'stabilis'] [u'confer', u'target', u'assault', u'prevent'] [u'construct', u'delay', u'govt', u'employe', u'hous'] [u'consum', u'confid', u'dip', u'year', u'high'] [u'control', u'burn', u'respons', u'smoke'] [u'cook', u'tour'] [u'cool', u'reaction', u'health', u'reform', u'propos'] [u'cooper', u'need', u'attack', u'wild', u'woe', u'minist'] [u'coron', u'releas', u'fatal', u'crash', u'find'] [u'corridor', u'work', u'expect', u'hamper', u'grain'] [u'council', u'crack', u'mossi'] [u'councillor', u'air', u'local', u'govt', u'polit', u'fear'] [u'councillor', u'happier', u'revis', u'signag', u'plan'] [u'councillor', u'play', u'caravan', u'park', u'revamp'] [u'council', u'reveget', u'reserv', u'poison'] [u'croc', u'face', u'crunch', u'road', u'trip', u'stacker'] [u'crop', u'home', u'damag', u'central', u'hail', u'storm'] [u'long', u'crawl', u'featur', u'master', u'game'] [u'disgrac', u'bosnich', u'target', u'soccer', u'comeback'] [u'dokic', u'comeback', u'trail'] [u'eccleston', u'end', u'silverston', u'hop', u'report'] [u'ecstasi', u'tablet', u'discoveri', u'rais', u'perth', u'polic', u'fear'] [u'evacu', u'underway', u'floodwat', u'rise'] [u'export', u'warn', u'wild', u'ride', u'ahead'] [u'ban', u'eas', u'cooloola', u'kilkivan', u'shire'] [u'firefight', u'reviv', u'macaw'] [u'firm', u'urg', u'wari', u'fake', u'money'] [u'florida', u'vote', u'strong', u'presidenti', u'race'] [u'forecast', u'predict', u'hotter', u'southern', u'summer'] [u'policeman', u'escap', u'jail', u'term', u'stupid'] [u'fund', u'skate', u'park', u'work'] [u'deal', u'pave', u'pipelin', u'sale'] [u'novel', u'win', u'booker', u'prize'] [u'govt', u'ask', u'throw', u'insur', u'lifelin'] [u'govt', u'urg', u'address', u'basic', u'human', u'servic'] [u'govt', u'unveil', u'reef', u'marin', u'park', u'plan'] [u'govt', u'urg', u'boost', u'vline', u'perform'] [u'green', u'criticis', u'fine'] [u'green', u'seek', u'cyanid'] [u'tree', u'prompt', u'nativ', u'parrot', u'concern'] [u'gutsi', u'ashra', u'keep', u'bangladesh', u'fight'] [u'high', u'fuel', u'cost', u'blame', u'fewer', u'race', u'nomin'] [u'summer', u'spark', u'firefight', u'boost'] [u'hunter', u'valley', u'prepar', u'wild', u'weather'] [u'titl', u'bout', u'toughest', u'tszyu'] [u'indonesian', u'leader', u'finalis', u'cabinet'] [u'industri', u'action', u'loom', u'darwin', u'univers'] [u'iran', u'test', u'fire', u'long', u'rang', u'missil'] [u'judg', u'label', u'condello', u'jail', u'condit'] [u'kennedi', u'fitzgibbon', u'kangaroo'] [u'kenteri', u'case', u'journalist', u'stab', u'beat', u'athen'] [u'outlet', u'win', u'appeal', u'neglig'] [u'kookaburra', u'goalkeep', u'call'] [u'latham', u'downplay', u'frontbench', u'exodus'] [u'latham', u'ministri', u'woe', u'disappoint', u'carr'] [u'lead', u'scientist', u'advoc', u'nation', u'diseas', u'centr'] [u'lennon', u'face', u'revolt', u'forest', u'polici'] [u'lennon', u'reserv', u'decis', u'carr', u'health', u'propos'] [u'liber', u'ask', u'explain', u'call', u'silent'] [u'mallacoota', u'lake', u'level', u'fall'] [u'malle', u'poll', u'result', u'near', u'finalis'] [u'rescu', u'hike', u'mishap'] [u'rush', u'hospit', u'nail', u'emb', u'heart'] [u'melbourn', u'drug', u'traffick', u'learn', u'fate', u'today'] [u'mildura', u'teen', u'plead', u'guilti', u'case'] [u'miner', u'weigh', u'market'] [u'minist', u'interven', u'rate', u'rise'] [u'model', u'ball', u'girl', u'madrid'] [u'gold', u'theft', u'charg', u'come'] [u'rain', u'possibl', u'central', u'week'] [u'storm', u'like', u'mackay', u'area'] [u'mourner', u'farewel', u'cricket', u'great', u'miller'] [u'move', u'employ', u'teacher', u'support', u'offic'] [u'hit', u'council', u'plan', u'rerout', u'rail', u'line'] [u'murrayland', u'build', u'export', u'scheme'] [u'nail', u'remov', u'gold', u'coast', u'man', u'heart'] [u'nanotechnolog', u'centr', u'open', u'adelaid'] [u'nation', u'confid', u'keep', u'cabinet', u'posit'] [u'nation', u'elect', u'anderson', u'vail'] [u'festiv', u'high', u'note', u'juli'] [u'indonesian', u'presid', u'flag', u'strengthen', u'anti'] [u'law', u'remedi', u'obstetr', u'shortag'] [u'newmont', u'indonesia', u'detent'] [u'studi', u'link', u'coffe', u'cardiovascular'] [u'prospect', u'scrap', u'paper', u'shortag', u'yuendumu'] [u'norfolk', u'island', u'head', u'poll'] [u'rumbl', u'jungl', u'frazier'] [u'fast', u'track', u'plan', u'pacif', u'upgrad'] [u'reject', u'carr', u'health', u'care', u'propos'] [u'tell', u'apologis', u'roadsid', u'weapon', u'check'] [u'nurs', u'health', u'propos', u'riski'] [u'control', u'franklin', u'trick'] [u'oliv', u'unsur', u'runner', u'distinct'] [u'oliv', u'unsur', u'distinct', u'decis'] [u'olymp', u'scandal', u'journalist', u'stab', u'beat', u'athen'] [u'outrag', u'releas', u'teen', u'rapist'] [u'pacif', u'dancer', u'win', u'geelong'] [u'paedophil', u'supervis', u'say', u'minist'] [u'pair', u'plead', u'guilti', u'ballan', u'train', u'crash', u'case'] [u'pakistani', u'action', u'malik', u'deliveri'] [u'perth', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'perth', u'melbourn', u'fight', u'super', u'place'] [u'petrol', u'boost', u'woolworth', u'sale'] [u'polic', u'disciplin', u'alic', u'brawl'] [u'polic', u'mobil', u'catch', u'drink', u'driver'] [u'polic', u'urg', u'address', u'drug', u'drive', u'problem'] [u'port', u'problem', u'trade', u'risk'] [u'power', u'station', u'plan', u'involv', u'communiti'] [u'power', u'station', u'worker', u'stop', u'work', u'asbesto'] [u'presid', u'say', u'iran', u'readi', u'talk', u'nuclear', u'issu'] [u'probe', u'launch', u'onesteel', u'blaze'] [u'public', u'urg', u'panic', u'water', u'discolour'] [u'race', u'tight', u'seat'] [u'rain', u'deepen', u'fear', u'miss'] [u'rain', u'help', u'boost', u'hinz'] [u'rat', u'rise', u'slay', u'incom', u'home', u'owner'] [u'reform', u'group', u'welcom', u'prison', u'vote', u'move'] [u'report', u'offer', u'hope', u'better', u'water', u'suppli'] [u'report', u'releas', u'entertain', u'centr', u'futur'] [u'report', u'suggest', u'silenc', u'wit'] [u'report', u'urg', u'develop', u'countri', u'grip'] [u'restor', u'raphael', u'work', u'church', u'audit'] [u'rider', u'prepar', u'gruell', u'tour'] [u'riot', u'break', u'western', u'china'] [u'riverina', u'immun', u'road', u'rage', u'incid'] [u'robot', u'sale', u'boom', u'labour', u'cost', u'rise'] [u'robot', u'saddl', u'camel', u'jockey'] [u'rspca', u'say', u'prosecut', u'resort'] [u'rudd', u'deni', u'threat', u'leav', u'frontbench'] [u'russian', u'town', u'blacklist', u'languag'] [u'saff', u'chief', u'stanc'] [u'govt', u'warn', u'travel', u'measl', u'risk'] [u'samaraweera', u'lead', u'lankan', u'recoveri'] [u'mental', u'health', u'disgrac'] [u'trucker', u'defend', u'fuel', u'levi'] [u'truck', u'compani', u'charg', u'fuel', u'levi'] [u'scheme', u'focus', u'construct', u'skill', u'shortag'] [u'scientist', u'hail', u'dengu', u'breakthrough'] [u'seventh', u'latham', u'frontbench', u'jump', u'ship'] [u'shadow', u'cabinet', u'embark', u'south', u'east', u'tour'] [u'shire', u'push', u'ahead', u'justic', u'precinct', u'plan'] [u'smoke', u'clear', u'upper', u'hous'] [u'soldier', u'plead', u'guilti', u'ghraib', u'charg'] [u'south', u'bulga', u'coal', u'close'] [u'speed', u'teen', u'cop', u'fine'] [u'stanhop', u'back', u'carr', u'power', u'trade', u'plan'] [u'storm', u'inund', u'tweed', u'region'] [u'storm', u'flood', u'northern'] [u'strong', u'riverway', u'develop'] [u'super', u'bid', u'viabl', u'say'] [u'super', u'contend', u'unveil'] [u'survey', u'highlight', u'need', u'better', u'town', u'plan'] [u'swiss', u'scientist', u'bone', u'breakthrough'] [u'talk', u'focus', u'showground', u'revamp'] [u'firefight', u'rise'] [u'green', u'road', u'worker', u'health'] [u'teen', u'suicid', u'prompt', u'doc', u'question'] [u'telstra', u'defend', u'move', u'job', u'offshor'] [u'telstra', u'lift', u'revenu', u'mobil', u'internet', u'growth'] [u'tenterfield', u'consid', u'fluorid'] [u'tile', u'compani', u'close', u'melbourn', u'door'] [u'timefram', u'announc', u'tare', u'elect'] [u'tougher', u'penalti', u'racist', u'crime', u'clear', u'hurdl'] [u'walk', u'walk', u'question'] [u'truck', u'industri', u'feel', u'pinch', u'price'] [u'typhoon', u'pound', u'japan', u'dead'] [u'consid', u'region', u'option', u'shake'] [u'union', u'warn', u'airport', u'delay', u'custom', u'strike'] [u'raid', u'report', u'kill', u'iraqi', u'famili'] [u'criticis', u'oust', u'burmes', u'leader'] [u'group', u'revers', u'decis', u'kerri', u'documentari'] [u'plane', u'crash', u'kill'] [u'member', u'urg', u'permit'] [u'victorian', u'parent', u'opposit', u'teacher'] [u'virgin', u'hold', u'fuel', u'surcharg', u'steadi'] [u'vline', u'rule', u'bendigo', u'echuca', u'rail', u'boost'] [u'govt', u'reject', u'carr', u'health', u'care', u'pitch'] [u'wall', u'street', u'stock', u'lose', u'grind'] [u'mine', u'compani', u'resum', u'congo', u'oper'] [u'polic', u'promis', u'skyshow', u'crackdown'] [u'warrior', u'cruis', u'victori', u'tiger'] [u'wool', u'boycott', u'gain', u'australian', u'group', u'support'] [u'woomera', u'escape', u'trial', u'hear', u'year'] [u'zarqawi', u'network', u'add', u'terror', u'list'] [u'zimbabw', u'racism', u'verdict', u'joke', u'carlisl'] [u'aerial', u'bait', u'wild', u'dog', u'continu', u'snowi'] [u'african', u'union', u'increas', u'darfur', u'deploy'] [u'regain', u'hindmarsh', u'lead'] [u'altern', u'water', u'suppli', u'consider'] [u'amnesti', u'join', u'fight', u'save', u'drug', u'traffick', u'life'] [u'anderson', u'doubt', u'coalit', u'futur', u'chanc'] [u'anderson', u'want', u'apolog', u'roadsid', u'weapon', u'check'] [u'antibiot', u'breakthrough', u'boost', u'alchemia', u'share'] [u'anti', u'kerri', u'film', u'wont'] [u'aplin', u'offer', u'qualifi', u'support', u'health', u'plan'] [u'aust', u'iraq', u'work', u'hassan', u'releas'] [u'australia', u'leagu', u'stay', u'wrap'] [u'australia', u'tibet', u'right', u'program'] [u'author', u'offer', u'locust', u'drug', u'assur'] [u'bail', u'renew', u'biki', u'gang', u'member'] [u'bangladesh', u'face', u'defeat', u'mccullum', u'maiden'] [u'better', u'ordin', u'aid', u'cane', u'toad', u'fight'] [u'maintain', u'record', u'product', u'level'] [u'chang', u'afoot', u'kotara', u'shop', u'complex'] [u'crowd', u'farewel', u'legend'] [u'black', u'face', u'lengthi', u'stint', u'sidelin'] [u'blair', u'pressur', u'iraq', u'troop', u'deploy'] [u'bomb', u'wound', u'soldier', u'afghan'] [u'bowen', u'basin', u'catchment', u'work', u'begin'] [u'brain', u'dead', u'diver', u'return', u'australia'] [u'britain', u'agre', u'iraq', u'troop'] [u'british', u'organis', u'meet', u'save', u'race'] [u'builder', u'licens', u'need', u'lobbi'] [u'bullet', u'look', u'turn', u'season'] [u'button', u'bar', u'go', u'william'] [u'go', u'bendigo', u'council', u'nomin'] [u'canberra', u'doctor', u'trial', u'herp', u'vaccin'] [u'catch', u'releas', u'studi', u'improv', u'surviv', u'rat'] [u'chamber', u'echo', u'call', u'devonport', u'visitor'] [u'charg', u'lay', u'bali', u'drug'] [u'chequ', u'scam', u'organis', u'good', u'intent'] [u'children', u'depart', u'worker', u'charg', u'porn'] [u'china', u'coal', u'blast', u'kill'] [u'china', u'blast', u'toll', u'reach'] [u'computershar', u'pois', u'corner', u'market'] [u'coulthard', u'farewel', u'mclaren', u'brazil'] [u'council', u'chang', u'speedway', u'nois', u'plan'] [u'council', u'consid', u'boot', u'camp'] [u'cours', u'choos', u'adventur', u'race'] [u'court', u'hand', u'pair', u'suspend', u'jail', u'term', u'rail'] [u'court', u'rule', u'move', u'south', u'korean', u'capit'] [u'court', u'rule', u'whale', u'dolphin', u'bush'] [u'custom', u'strike', u'caus', u'airport', u'delay'] [u'cycl', u'tour', u'wentworth', u'question'] [u'dentist', u'back', u'fluorid', u'push'] [u'digit', u'qaeda', u'hideout', u'make', u'turner', u'shortlist'] [u'disgrac', u'flee', u'agricultur'] [u'doctor', u'accus', u'medic', u'board', u'bulli'] [u'dont', u'expect', u'besnard', u'warn'] [u'doubt', u'rais', u'mildura', u'futur'] [u'downer', u'renew', u'attack', u'journalist'] [u'downer', u'want', u'clemenc', u'condemn'] [u'annoy', u'juror', u'forc', u'trial'] [u'drought', u'spark', u'sheep', u'sell'] [u'elder', u'back', u'cyanid'] [u'elder', u'sentenc', u'assault', u'suppli'] [u'english', u'stayer', u'doubt', u'melbourn'] [u'enrol', u'restrict', u'forc', u'close', u'campus'] [u'threaten', u'speci'] [u'esso', u'contract', u'worker', u'disput', u'widen'] [u'execut', u'buttiglion'] [u'issu', u'chanc', u'iran', u'nuclear', u'plan'] [u'express', u'seek', u'aurukun', u'bauxit'] [u'boss', u'vote', u'qualifi', u'plan'] [u'faction', u'snub', u'crean', u'frontbench', u'reshuffl'] [u'fall', u'castro', u'reassur', u'sob', u'support'] [u'feder', u'back', u'carr', u'hospit', u'plan'] [u'feder', u'polic', u'honour', u'ceremoni'] [u'ferrero', u'lead', u'spanish', u'slump', u'madrid'] [u'fiji', u'protect', u'iraq', u'mission'] [u'firefight', u'test', u'championship'] [u'instal', u'game', u'villag', u'open'] [u'fisheri', u'dept', u'lure', u'angler', u'research', u'scheme'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'flood', u'close', u'waterfal'] [u'minist', u'kill', u'suspect', u'rebel'] [u'fossil', u'feather', u'weight', u'evolut', u'theori'] [u'kill', u'baghdad', u'attack'] [u'freeway', u'request', u'scrutini'] [u'french', u'student', u'expel', u'wear', u'headscarv'] [u'fund', u'help', u'rehabilit', u'mine'] [u'gambl', u'survey', u'examin', u'famili', u'impact'] [u'get', u'help', u'home', u'come', u'luck'] [u'gippsland', u'lake', u'host', u'marsh', u'experi'] [u'govt', u'back', u'salt', u'intercept', u'scheme'] [u'govt', u'criticis', u'bushfir', u'inquest', u'action'] [u'govt', u'like', u'mortlak', u'power', u'station', u'plan'] [u'govt', u'maintain', u'winegrow', u'subsidi'] [u'govt', u'resum', u'talk', u'democrat'] [u'green', u'friend', u'hous', u'assess'] [u'gregan', u'tour', u'europ'] [u'group', u'endeavour', u'worker', u'job'] [u'group', u'worri', u'marin', u'park', u'fish'] [u'guantanamo', u'detaine', u'right', u'privat', u'meet'] [u'guyra', u'hydropon', u'farm'] [u'escap', u'fine', u'trampolin', u'fall'] [u'hawk', u'perfect', u'start', u'continu'] [u'health', u'handov', u'plan', u'arous', u'suspicion'] [u'high', u'commiss', u'petit', u'malaysia', u'boy', u'return'] [u'hobart', u'organis', u'consid', u'overhaul'] [u'hotlin', u'help', u'seafood', u'industri', u'futur'] [u'howard', u'consid', u'essenti', u'servic', u'strike'] [u'human', u'gene', u'number', u'slash'] [u'idea', u'flow', u'water', u'forum'] [u'indo', u'relat', u'minist', u'list'] [u'indi', u'driver', u'take', u'busi', u'approach', u'championship'] [u'inject', u'chip', u'destroy', u'cancer', u'cell'] [u'inquest', u'electrician', u'death', u'end'] [u'inquiri', u'fail', u'confirm', u'weed', u'chemic', u'death', u'link'] [u'inquiri', u'probe', u'race', u'concern'] [u'iron', u'deal', u'seal', u'analyst', u'say'] [u'israel', u'destroy', u'milit', u'west', u'bank', u'home'] [u'jail', u'term', u'thief', u'destroy', u'friend', u'busi'] [u'cours', u'wont', u'begin', u'earli'] [u'judgment', u'loom', u'pitcairn', u'accus'] [u'kangaroo', u'lightn', u'unusu'] [u'karzai', u'cours', u'afghanistan'] [u'koscuiszko', u'bait', u'program', u'review'] [u'labor', u'faction', u'carv', u'frontbench'] [u'labor', u'frontbench', u'see', u'swing', u'away', u'mortgag', u'belt'] [u'labor', u'want', u'rethink', u'boundari'] [u'latham', u'call', u'anderson', u'resign'] [u'latham', u'hint', u'crean'] [u'lennon', u'confid', u'forestri', u'compens'] [u'lightn', u'blame', u'restaur'] [u'macadamia', u'produc', u'happi', u'rain'] [u'arrest', u'thai', u'slave', u'charg'] [u'remand', u'sexual', u'assault', u'charg'] [u'medic', u'staff', u'health', u'reform'] [u'meet', u'focus', u'region', u'campus', u'shake'] [u'meet', u'highlight', u'land', u'council', u'financi', u'woe'] [u'milan', u'club', u'chelsea', u'stage'] [u'milosev', u'trial', u'stall', u'defenc', u'argument'] [u'mine', u'school', u'danger', u'close'] [u'minist', u'confid', u'miner', u'problem'] [u'minist', u'open', u'high', u'school', u'redevelop'] [u'molik', u'upset', u'zvonareva', u'zurich'] [u'council', u'pleas', u'boundari', u'decis'] [u'disappoint', u'elector', u'boundari', u'decis'] [u'question', u'carr', u'hospit', u'plan'] [u'nation', u'buoy', u'hope', u'worker', u'releas'] [u'unfair', u'state'] [u'sale', u'speed'] [u'nikol', u'clear', u'plate', u'ride'] [u'evid', u'charg', u'granni', u'basher'] [u'clear', u'jam', u'hardi', u'probe'] [u'polic', u'give', u'greater', u'anti', u'terror', u'power'] [u'remain', u'undef', u'netbal', u'championship'] [u'rule', u'tighter', u'cyanid', u'law'] [u'nurs', u'face', u'influx', u'violent', u'patient'] [u'lacklustr', u'profit', u'subdu', u'wall', u'street'] [u'price', u'rise', u'tip', u'econom', u'growth'] [u'ignor', u'sydney', u'water', u'crisi'] [u'opposit', u'air', u'hospit', u'fear'] [u'opposit', u'spit', u'chip', u'carr', u'snack', u'attack'] [u'pack', u'shed', u'offer', u'boost', u'fruit', u'export'] [u'parent', u'tell', u'school', u'kid'] [u'parliament', u'rememb', u'dubbo'] [u'paul', u'gazza'] [u'pilot', u'kill', u'black', u'hawk', u'crash'] [u'pilot', u'lose', u'plane', u'releas'] [u'pint', u'size', u'greco', u'paint', u'auction'] [u'polic', u'investig', u'drive', u'shoot'] [u'polic', u'appeal', u'disciplinari', u'action'] [u'polic', u'resolv', u'unfair', u'dismiss', u'case'] [u'pollut', u'studi', u'finish', u'barramundi', u'sampl'] [u'pont', u'urg', u'chin'] [u'prefer', u'count', u'begin'] [u'prison', u'embrac', u'jail', u'educ', u'program'] [u'protest', u'shut', u'indian', u'state'] [u'qanta', u'rais', u'approv', u'despit', u'union', u'mischief'] [u'qanta', u'readi', u'union', u'stoush', u'dixon'] [u'allow', u'communiti', u'home', u'brew'] [u'quarantin', u'screen', u'step', u'xmas'] [u'queensland', u'urg', u'year', u'term', u'referendum'] [u'dismiss', u'call', u'speed', u'limit', u'cut'] [u'rain', u'expect', u'clear', u'wide'] [u'rainfal', u'fail', u'eas', u'sydney', u'water', u'woe'] [u'record', u'manag', u'team', u'announc', u'lion', u'tour'] [u'record', u'petrol', u'price', u'prompt', u'hold'] [u'redsox', u'beat', u'yanke', u'creat', u'histori'] [u'reluct', u'guest', u'sell', u'wed', u'invit', u'onlin'] [u'rescu', u'work', u'underway', u'typhoon', u'toll', u'rise'] [u'resid', u'warn', u'expect', u'tighter', u'water'] [u'farewel', u'great', u'firefight'] [u'riesl', u'challeng', u'boost', u'wine', u'industri'] [u'robberi', u'plan', u'fall', u'apart'] [u'robinson', u'signal', u'start'] [u'russian', u'armi', u'bulli', u'irrelev', u'report', u'find'] [u'sadr', u'citi', u'buyback', u'program', u'hand'] [u'saff', u'chief', u'defend', u'comment'] [u'warn', u'cabinet', u'graft'] [u'search', u'unmin', u'lead', u'deposit'] [u'shark', u'bite', u'surfer', u'foot'] [u'shire', u'consid', u'communiti', u'bank', u'plan'] [u'small', u'compani', u'star', u'market', u'rise'] [u'snake', u'bite', u'schoolgirl', u'excurs'] [u'question', u'licenc', u'father', u'kill', u'freeway'] [u'speed', u'restrict', u'save', u'live', u'studi', u'say'] [u'speedway', u'seek', u'licenc', u'expans'] [u'springborg', u'introduc', u'phone'] [u'lanka', u'bowler', u'fight', u'pakistan'] [u'stab', u'occur', u'self', u'defenc', u'court', u'tell'] [u'steelwork', u'prove', u'cost'] [u'storm', u'damag', u'million'] [u'strategi', u'clean', u'tamar', u'valley', u'releas'] [u'strike', u'threat', u'fail', u'univers'] [u'student', u'muck', u'warn'] [u'suspend', u'policeman', u'face', u'murder', u'charg'] [u'telstra', u'welcom', u'govt', u'review', u'phone', u'tower'] [u'thousand', u'lose', u'power', u'thunderstorm', u'strike'] [u'toadbust', u'discuss', u'strategi'] [u'tougher', u'water', u'ban', u'like', u'warwick', u'shire'] [u'tourism', u'industri', u'watch', u'ministeri', u'chang'] [u'train', u'servic', u'resum', u'reduc', u'speed'] [u'treasur', u'defend', u'qlds'] [u'typhoon', u'leav', u'japan', u'kill'] [u'uganda', u'open', u'groundbreak', u'hivaid', u'treatment'] [u'unit', u'approach', u'seek', u'boost', u'river', u'health'] [u'univers', u'put', u'weight', u'penguin', u'research'] [u'soap', u'opera', u'actor', u'superman', u'cape'] [u'victoria', u'back', u'push', u'save', u'condemn', u'man', u'life'] [u'virgin', u'offer', u'extra', u'holiday', u'period', u'flight'] [u'wallac', u'continu', u'ax', u'richmond', u'list'] [u'waratah', u'thump', u'tucuman'] [u'enact', u'worker', u'compens', u'chang'] [u'welcom', u'rain', u'caus', u'traffic', u'chao', u'sydney'] [u'wheatbelt', u'rain', u'littl', u'late'] [u'whitlam', u'open', u'student', u'photo', u'collect'] [u'william', u'clear', u'ligament', u'damag'] [u'wine', u'industri', u'drink', u'expert', u'advic'] [u'wit', u'robberi', u'seek'] [u'woman', u'charg', u'babi', u'hospit', u'death'] [u'woman', u'fall', u'melbourn'] [u'woman', u'suffer', u'suspect', u'insecticid', u'poison'] [u'younger', u'worker', u'money', u'drive', u'confer', u'tell'] [u'crash', u'close', u'sydney', u'freeway'] [u'year', u'woodlawn', u'worker', u'collect', u'entitl'] [u'reject', u'kingston', u'count', u'request'] [u'age', u'care', u'nurs', u'approv', u'rise'] [u'organis', u'call', u'help', u'fee', u'north', u'korea'] [u'worker', u'plead', u'british', u'troop', u'withdraw'] [u'arsenal', u'trio', u'injuri', u'race', u'trafford', u'summit'] [u'asst', u'princip', u'face', u'child', u'porn', u'charg'] [u'astronom', u'proof', u'einstein', u'theori'] [u'auditor', u'general', u'air', u'concern'] [u'aussi', u'price', u'equal', u'second', u'madrid'] [u'australia', u'live', u'mean'] [u'australian', u'travel', u'head', u'oversea'] [u'barolo', u'melbourn'] [u'beatl', u'interview', u'uncov', u'year'] [u'beckham', u'escap', u'action', u'deliber'] [u'bega', u'offer', u'train', u'boost', u'canberra', u'surgeon'] [u'bevan', u'mat'] [u'urg', u'leav', u'nepean', u'river'] [u'billabong', u'surf', u'profit', u'rise'] [u'blair', u'accus', u'endang', u'kidnap', u'worker'] [u'bourdai', u'provision', u'indi', u'pole'] [u'bourdai', u'take', u'provision', u'pole', u'indi'] [u'bowen', u'face', u'fruit', u'picker', u'shortag'] [u'bowen', u'tri', u'corral', u'joyc'] [u'hospit', u'throw'] [u'brisban', u'airport', u'busi', u'usual', u'despit', u'custom'] [u'brisban', u'airport', u'cop', u'custom', u'strike'] [u'button', u'kiss'] [u'chang', u'water', u'alloc'] [u'focus', u'indigen', u'fisher', u'right'] [u'call', u'generat', u'stop', u'blackout'] [u'cardin', u'secur', u'world', u'seri', u'showdown'] [u'carr', u'defend', u'polic', u'terror', u'law'] [u'castro', u'undergo', u'surgeri', u'fall'] [u'china', u'arrest', u'journalist', u'resign', u'report'] [u'china', u'provid', u'product', u'boost'] [u'colbeck', u'welcom', u'secretari', u'posit'] [u'conflict', u'report', u'hama', u'milit', u'death'] [u'cooper', u'stand', u'trial', u'charg'] [u'coron', u'conclud', u'babi', u'death', u'inquiri'] [u'coulthard', u'pin', u'hop', u'william'] [u'council', u'consid', u'shop', u'submiss'] [u'council', u'push', u'rat', u'reform'] [u'council', u'urg', u'resolv', u'har', u'race', u'club', u'woe'] [u'court', u'challeng', u'imped', u'packag'] [u'plate', u'tip'] [u'crean', u'secur', u'frontbench', u'posit'] [u'cricket', u'chief', u'didnt', u'support', u'race'] [u'cricket', u'give', u'suspend', u'sentenc', u'assault'] [u'crop', u'grub', u'rampag'] [u'custom', u'strike', u'affect', u'cairn', u'flight'] [u'death', u'toll', u'climb', u'accid'] [u'defenc', u'chief', u'head', u'townsvill'] [u'doctor', u'air', u'hospit', u'admiss', u'concern'] [u'dozen', u'claimant', u'join', u'ward', u'state', u'abus', u'case'] [u'driver', u'report', u'high', u'level', u'harass'] [u'drought', u'urg', u'malle', u'farmer'] [u'eccleston', u'get', u'tough', u'silverston'] [u'elder', u'lead', u'gold', u'protest'] [u'embassi', u'bomber', u'second', u'choic', u'keelti'] [u'emerald', u'grower', u'citrus', u'tree', u'remov'] [u'engin', u'fall', u'plane', u'flight'] [u'ergon', u'move', u'skill', u'worker'] [u'esso', u'contractor', u'protest'] [u'aborigin', u'polic', u'liaison', u'offic', u'guilti'] [u'expert', u'inspect', u'waterfal', u'damag'] [u'fail', u'investor', u'guilti', u'mislead', u'conduct'] [u'famili', u'reunion', u'excit', u'carr'] [u'farmer', u'search', u'bandit', u'king', u'fortun'] [u'ban', u'loom', u'grip', u'bendigo'] [u'firefight', u'monitor', u'blaze'] [u'food', u'plan', u'look', u'lift', u'export', u'job'] [u'frenchman', u'kill', u'iraq', u'insurg', u'name'] [u'fund', u'bolster', u'crime', u'victim', u'support'] [u'funer', u'close', u'twin', u'fall'] [u'gayndah', u'citrus', u'grower', u'count', u'hail', u'damag', u'cost'] [u'geolog', u'cadetship', u'boost', u'mine', u'industri'] [u'gold', u'coast', u'fin', u'child', u'abus', u'game'] [u'googl', u'profit', u'sale', u'doubl'] [u'govern', u'measur', u'slow', u'china', u'growth'] [u'govt', u'consult', u'indigen', u'communiti', u'bauxit'] [u'govt', u'demonstr', u'fast', u'train'] [u'govt', u'dept', u'wont', u'appeal', u'maleni', u'supermarket', u'rule'] [u'govt', u'releas', u'scalefish', u'plan', u'chang'] [u'govt', u'rate', u'rise'] [u'govt', u'sewerag', u'woe'] [u'govt', u'urg', u'deliv', u'bushfir', u'recoveri', u'fund'] [u'green', u'group', u'loggerhead', u'govt', u'rare', u'frog'] [u'green', u'threaten', u'legal', u'challeng', u'senat'] [u'hama', u'vow', u'sever', u'repli', u'assassin'] [u'hamm', u'olymp', u'round', u'gold'] [u'hardi', u'men', u'payout', u'victim'] [u'head', u'collis', u'kill'] [u'health', u'servic', u'take', u'blanket', u'approach'] [u'heavi', u'machineri', u'blaze', u'prove', u'cost'] [u'height', u'treatment', u'impair', u'women', u'fertil', u'studi'] [u'help', u'avail', u'storm', u'batter', u'banana', u'grower'] [u'hensbi', u'hend', u'orlando'] [u'hewitt', u'clijster', u'love', u'match'] [u'hospit', u'fund'] [u'howard', u'shuffl', u'public', u'servic', u'chief'] [u'howard', u'unveil', u'cabinet'] [u'huge', u'crowd', u'enjoy', u'indi', u'second'] [u'illawarra', u'experi', u'weather'] [u'indonesian', u'terror', u'chief', u'resign'] [u'industri', u'back', u'furnitur', u'export', u'crackdown'] [u'inquiri', u'begin', u'tassi', u'devil', u'suspici', u'death'] [u'investig', u'train', u'collis', u'begin'] [u'iran', u'nuclear', u'talk', u'reason'] [u'jackson', u'choos', u'wnba', u'aussi', u'leagu', u'mother'] [u'jam', u'hardi', u'appoint', u'interim'] [u'jam', u'hardi', u'resign', u'cheer', u'union'] [u'justic', u'minist', u'defend', u'record', u'crime'] [u'kangaroo', u'prepar', u'match'] [u'kerri', u'hunt', u'gees', u'vote'] [u'kirbi', u'attack', u'system', u'detractor'] [u'labor', u'claim', u'victori', u'swan', u'cowan'] [u'labor', u'win', u'hindmarsh'] [u'latham', u'shoulder', u'blame', u'reveal', u'frontbench'] [u'lismor', u'flush', u'water', u'save', u'success'] [u'literaci', u'flag', u'bush'] [u'local', u'hors', u'featur', u'silver', u'citi'] [u'lyon', u'take', u'australian', u'rugbi', u'gong'] [u'maiden', u'gulli', u'natur', u'boost'] [u'major', u'delay', u'avert', u'custom', u'offic', u'continu'] [u'malaysia', u'join', u'battl', u'best', u'foreign', u'film', u'oscar'] [u'convict', u'wife', u'murder', u'time'] [u'jail', u'con', u'elder'] [u'jail', u'australia', u'post', u'theft'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'mayor', u'prais', u'previous', u'council', u'minim', u'flood'] [u'mayor', u'want', u'proof', u'indi', u'econom', u'benefit'] [u'medic', u'emerg', u'delay', u'devonport', u'sydney', u'ferri'] [u'melbourn', u'airport', u'run', u'smooth', u'despit', u'strike'] [u'meteor', u'shower', u'light', u'night'] [u'mexico', u'plan', u'race'] [u'midwiv', u'seek', u'back', u'law', u'protest'] [u'mine', u'neighbour', u'seek', u'blast', u'guarante'] [u'mine', u'expo', u'weather', u'storm', u'heat'] [u'minist', u'highlight', u'colleg', u'financi', u'fear'] [u'missil', u'hit', u'milit', u'leader', u'home'] [u'industri', u'fund', u'seek', u'tackl', u'fruit'] [u'morient', u'sale', u'defiant', u'real'] [u'mornington', u'council', u'retent', u'spotlight'] [u'call', u'sign', u'dredg', u'elliott', u'river', u'mouth'] [u'murrumbidge', u'give', u'carr', u'finger', u'salut'] [u'navi', u'goodwil', u'visit', u'spark', u'fals', u'alarm'] [u'newcastl', u'boro', u'notch', u'uefa', u'win'] [u'lebanes', u'wont', u'promis', u'miracl'] [u'korean', u'seek', u'asylum', u'beij', u'school'] [u'nurs', u'right', u'cours', u'renew'] [u'oliv', u'face', u'tough', u'choic', u'melbourn'] [u'kill', u'sydney', u'freeway', u'crash'] [u'opposit', u'question', u'campus', u'consult'] [u'passeng', u'fin', u'rage', u'incid'] [u'pentagon', u'dump', u'guantanamo', u'tribun', u'offic'] [u'perilya', u'experi', u'product', u'fall'] [u'perth', u'airport', u'carri', u'despit', u'strike'] [u'phone', u'call', u'renew', u'year', u'murder', u'inquiri'] [u'pilot', u'plead', u'guilti', u'land', u'charg'] [u'piraci', u'tip', u'cost', u'film', u'industri', u'billion'] [u'plung', u'fail', u'dent', u'starcraft', u'favourit'] [u'confid', u'keep', u'elect', u'promis'] [u'talk', u'relat', u'malaysia'] [u'polic', u'brush', u'domest', u'violenc', u'law'] [u'polic', u'prepar', u'esper'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'speak', u'street', u'assault'] [u'postal', u'vote', u'loosen', u'grip', u'swan'] [u'prosecut', u'ask', u'polic', u'verifi', u'newmont', u'evid'] [u'public', u'get', u'detail', u'candid', u'donat'] [u'queanbeyan', u'council', u'accus', u'develop', u'backflip'] [u'raid', u'uncov', u'illeg', u'worker'] [u'redback', u'chang', u'bull', u'clash'] [u'region', u'hold', u'prosper', u'kerin'] [u'research', u'confirm', u'alcohol', u'risk', u'pregnanc'] [u'resourc', u'stock', u'return', u'centr', u'stage'] [u'ruddock', u'stand', u'guantanamo', u'trial'] [u'russian', u'armi', u'reject', u'bulli', u'critic'] [u'journo', u'clarifi', u'iraq', u'kidnap', u'comment'] [u'school', u'offer', u'counsel', u'porn'] [u'sciacca', u'conced', u'bonner'] [u'search', u'begin', u'perfect', u'toad', u'trap'] [u'searcher', u'miss', u'nurs', u'home', u'resid'] [u'second', u'sydney', u'charg', u'drink', u'spike'] [u'shower', u'bare', u'regist', u'canberra'] [u'skiff', u'steroid', u'favourit', u'sydney', u'hobart'] [u'skywest', u'oper'] [u'sport', u'arbitr', u'judg', u'olymp'] [u'lanka', u'take', u'slender', u'lead', u'pakistan'] [u'starcraft', u'connect', u'wari', u'aggress', u'tactic'] [u'student', u'master', u'virtual', u'tourism'] [u'student', u'target', u'whoop', u'cough', u'fight'] [u'surfer', u'warn', u'shark', u'attack', u'risk'] [u'surviv', u'hop', u'dwindl', u'bodi', u'recov'] [u'tamworth', u'clean', u'flash', u'flood'] [u'chang', u'tip', u'curb', u'vineyard', u'develop'] [u'tech', u'stock', u'boost', u'ebay'] [u'tertiari', u'educ', u'applic', u'fall'] [u'test', u'dayer', u'stay'] [u'test', u'subject'] [u'thousand', u'expect', u'flock', u'sale'] [u'charg', u'haul'] [u'danish', u'soldier', u'injur', u'iraq', u'blast'] [u'timber', u'group', u'critic', u'delay', u'forest', u'decis'] [u'lead', u'immigr', u'illeg', u'worker'] [u'tobacco', u'smuggler', u'avoid', u'jail'] [u'toll', u'fast', u'track', u'pacif', u'highway', u'upgrad'] [u'traci', u'kelli', u'lead', u'indi', u'practic'] [u'tuckey', u'wont', u'past', u'speaker'] [u'jail', u'term', u'fatal', u'attack', u'famili'] [u'chief', u'back', u'therapeut', u'clone'] [u'underworld', u'figur', u'wife', u'await', u'sentenc'] [u'union', u'voic', u'concern', u'onesteel', u'repair', u'work'] [u'unit', u'look', u'birthday', u'rooney', u'halt', u'arsenal'] [u'univers', u'staff', u'threaten', u'industri', u'action'] [u'armi', u'want', u'femal', u'combat', u'zone'] [u'deni', u'involv', u'mosqu', u'violenc'] [u'kill', u'fallujah', u'girl', u'rescuer'] [u'warn', u'asean', u'summit', u'plot'] [u'vettori', u'spin', u'zealand', u'inning', u'victori'] [u'violenc', u'break', u'mosqu', u'raid'] [u'violent', u'escape', u'extradit'] [u'deni', u'damag', u'agent', u'orang', u'kill', u'worker'] [u'word', u'erupt', u'albani'] [u'water', u'price', u'complex'] [u'webber', u'make', u'light', u'button', u'undo'] [u'whan', u'defend', u'resort', u'endors'] [u'winter', u'rain', u'fail', u'eas', u'threat'] [u'winton', u'soak', u'movi', u'make', u'experi'] [u'wither', u'return', u'raider'] [u'woman', u'face', u'court', u'babi', u'son', u'murder'] [u'woodlawn', u'miner', u'entitl'] [u'yudhoyono', u'hold', u'cabinet', u'meet', u'amid', u'media'] [u'yudhoyono', u'shock', u'tactic', u'corrupt'] [u'hop', u'rhino', u'embryo', u'effort', u'deliv', u'result'] [u'kill', u'bomb', u'attack', u'iraq', u'polic', u'academi'] [u'accc', u'vow', u'crack', u'decept', u'practition'] [u'acoss', u'cautious', u'human', u'servic', u'ministri'] [u'seek', u'countri', u'club', u'buyer'] [u'agassi', u'face', u'safin', u'madrid', u'semi'] [u'arson', u'squad', u'probe', u'target', u'blaze'] [u'kill', u'injur', u'japan', u'quak'] [u'australia', u'warn', u'travel', u'philippin', u'terror'] [u'author', u'confid', u'avert', u'water', u'qualiti'] [u'backbench', u'pleas', u'latham', u'rebuild'] [u'baird', u'take', u'halfway', u'lead', u'florida'] [u'barrichello', u'delight', u'home', u'crowd', u'practic'] [u'base', u'jumper', u'die', u'injuri'] [u'bashar', u'second', u'test'] [u'bono', u'find', u'long', u'lose', u'lyric'] [u'bourdai', u'pick', u'leav'] [u'brack', u'china', u'trade', u'mission'] [u'britain', u'foreign', u'minist', u'distress', u'kidnap'] [u'bullet', u'king'] [u'bull', u'outclass', u'redback', u'gabba'] [u'burma', u'scrap', u'militari', u'intellig', u'power'] [u'bush', u'sign', u'billion', u'corpor'] [u'sensit', u'approach', u'indigen'] [u'calzagh', u'win', u'brawl'] [u'care', u'plead', u'hostag', u'releas'] [u'search', u'lead', u'ecstasi', u'charg'] [u'chainsaw', u'attack', u'leav', u'serious', u'injur'] [u'child', u'safeti', u'organis', u'face', u'financi', u'crisi'] [u'china', u'arrest', u'york', u'time', u'research'] [u'china', u'toll', u'rise', u'dead', u'miss'] [u'withdraw', u'iraq', u'claim'] [u'confer', u'consid', u'human', u'right', u'decad'] [u'confer', u'tell', u'health', u'fail', u'refuge'] [u'dead', u'award', u'honour', u'indigen', u'achiev'] [u'elder'] [u'blaze', u'control'] [u'financ', u'half', u'african', u'mission'] [u'expert', u'meet', u'suspect', u'bowl', u'action'] [u'fire', u'threaten', u'home', u'south', u'east'] [u'freeway', u'reopen', u'fatal', u'pile'] [u'gaze', u'honour', u'basketbal', u'australia'] [u'girl', u'die', u'fall', u'power', u'station'] [u'take', u'life', u'snail', u'pace'] [u'govt', u'probe', u'taint', u'polio', u'jab', u'report'] [u'govt', u'unsway', u'russia', u'kyoto', u'lead'] [u'gunmen', u'kill', u'turkish', u'truck', u'driver', u'iraq'] [u'hardi', u'execut', u'tell', u'clean', u'victim', u'bedpan'] [u'heat', u'ambros', u'extend', u'seri', u'lead'] [u'hird', u'receiv', u'death', u'threat', u'test'] [u'indian', u'cricket', u'game', u'have', u'not'] [u'investig', u'begin', u'hamilton', u'store'] [u'iraqi', u'say', u'deal', u'care', u'hostag'] [u'luck', u'oliv'] [u'jayasuriya', u'put', u'lanka', u'command'] [u'karzai', u'lead', u'slip', u'afghan', u'elect'] [u'keegan', u'readi', u'quit'] [u'kosovo', u'vote', u'begin'] [u'labor', u'liber', u'secur', u'seat'] [u'arrest', u'woman', u'death'] [u'arrest', u'internet', u'charg'] [u'charg', u'man', u'shoot'] [u'detain', u'stab'] [u'shoot', u'polic', u'offic'] [u'media', u'savvi', u'nazi', u'worri', u'german', u'polic', u'report'] [u'mehrten', u'shin', u'canterburi', u'titl'] [u'mesothelioma', u'scientist', u'win', u'premier', u'award'] [u'molik', u'sharapova', u'zurich'] [u'mortar', u'blast', u'hear', u'central', u'baghdad'] [u'mortar', u'blast', u'kill', u'central', u'baghdad'] [u'music', u'industri', u'face', u'radio', u'playlist', u'probe'] [u'mysteri', u'potteri', u'show', u'true', u'face'] [u'liber', u'vagu', u'pyramid', u'scheme', u'role'] [u'win', u'long', u'await', u'netbal', u'titl'] [u'predict', u'record', u'cruis', u'season'] [u'microsoft', u'push', u'year'] [u'price', u'surg', u'higher'] [u'dead', u'smash'] [u'opposit', u'union', u'offic', u'defenc', u'fund'] [u'pakistan', u'record', u'chase'] [u'pakistan', u'sami', u'doubt', u'second', u'test'] [u'palestinian', u'collabor', u'kill', u'hama'] [u'passeng', u'face', u'delay', u'freight', u'train'] [u'polic', u'loss', u'explain', u'fatal', u'fern', u'crash'] [u'polic', u'investig', u'cherbourg', u'death'] [u'polic', u'second', u'arrest', u'man', u'shoot'] [u'reev', u'appear', u'stem', u'cell', u'campaign'] [u'revitalis', u'broadhurst', u'lead', u'spain'] [u'russia', u'move', u'ratifi', u'kyoto', u'protocol'] [u'savabeel', u'cruis', u'stun', u'plate'] [u'secur', u'tighten', u'hird', u'receiv', u'death'] [u'serb', u'refuge', u'boycott', u'kosovo', u'vote'] [u'pill', u'posit', u'drug', u'test', u'mutu'] [u'somalia', u'ask', u'peacekeep'] [u'starcraft', u'connect', u'stay', u'confid'] [u'strong', u'quak', u'aftershock', u'northern', u'japan'] [u'suicid', u'bomber', u'hit', u'kabul', u'market', u'injur'] [u'suicid', u'bomber', u'kill', u'iraqi', u'checkpoint'] [u'support', u'network', u'open', u'door', u'famili', u'busi'] [u'suspect', u'islamist', u'milit', u'kill', u'algeria'] [u'timber', u'group', u'eye', u'forestri', u'merger'] [u'tendulkar', u'play', u'test'] [u'traci', u'set', u'second', u'gold', u'coast', u'titl'] [u'train', u'servic', u'return', u'normal'] [u'truck', u'driver', u'question', u'fatal', u'freeway', u'crash'] [u'turkish', u'hostag', u'escap', u'help', u'captor'] [u'macedonian', u'confirm', u'execut', u'iraq'] [u'appeal', u'forc', u'return', u'iraqi', u'refuge'] [u'union', u'offici', u'face', u'forestri', u'polici'] [u'odd', u'alli', u'human', u'clone'] [u'captur', u'senior', u'zarqawi', u'member'] [u'claim', u'guantanamo', u'prison', u'return'] [u'reject', u'north', u'korean', u'condit', u'talk'] [u'vote', u'begin', u'nauru'] [u'govern', u'play', u'rail', u'project', u'delay'] [u'wanga', u'robert', u'mundin', u'dead', u'honour'] [u'wilkinson', u'hold', u'hope', u'novemb', u'test'] [u'woman', u'critic', u'condit', u'cliff', u'fall'] [u'woman', u'emerg', u'surgeri', u'cliff', u'fall'] [u'wwii', u'fighter', u'squadron', u'honour'] [u'kill', u'ambush', u'iraqi', u'armi', u'recruit'] [u'ambros', u'murphi', u'clash', u'race'] [u'american', u'woman', u'afghan', u'girl', u'kabul', u'blast'] [u'anti', u'gambl', u'campaign', u'plan'] [u'australian', u'mine', u'offici', u'free', u'indonesian'] [u'australian', u'servic', u'honour'] [u'australia', u'target', u'antarct', u'poach'] [u'awar', u'week', u'highlight', u'plight', u'refuge'] [u'bangladesh', u'journalist', u'shoot', u'dead'] [u'barrichello', u'grab', u'brazil', u'pole'] [u'bellhorn', u'homer', u'give', u'boston', u'world', u'seri', u'lead'] [u'brack', u'hail', u'fruit', u'china', u'trip'] [u'brazil', u'launch', u'space', u'rocket'] [u'british', u'arm', u'forc', u'recognis', u'satanist'] [u'commission', u'demand', u'human', u'right'] [u'coron', u'tackl', u'unaccept', u'workplac', u'death', u'toll'] [u'crane', u'oper', u'face', u'skill', u'review'] [u'croc', u'festiv', u'aim', u'point', u'student', u'right'] [u'death', u'toll', u'mount', u'japan', u'quak'] [u'defenc', u'confirm', u'drug', u'soldier', u'sick'] [u'earli', u'result', u'favour', u'govern', u'nauru', u'poll'] [u'fallujah', u'insurg', u'deni', u'hold', u'worker'] [u'gillard', u'favourit', u'treasuri', u'portfolio'] [u'gold', u'coast', u'expect', u'indi', u'turnout'] [u'govt', u'toughen', u'anti', u'terror', u'law'] [u'gudjohnsen', u'trick', u'fire', u'blue', u'victori'] [u'gutwein', u'claim', u'polic', u'traffic', u'offenc', u'quota', u'witch'] [u'hardi', u'face', u'protest', u'execut', u'payout'] [u'headless', u'bodi', u'float', u'north', u'iraq', u'river'] [u'hotlin', u'target', u'seafood', u'label'] [u'indonesian', u'polic', u'patrol', u'stop', u'muslim', u'nightclub'] [u'iran', u'reject', u'nuclear', u'propos'] [u'iraqi', u'milit', u'behead', u'collabor', u'websit'] [u'iraq', u'milit', u'lebanes', u'child', u'hostag'] [u'iraq', u'suicid', u'bomb', u'kill', u'zarqawi', u'aid'] [u'nomine', u'giteau', u'tout', u'team', u'mat'] [u'isra', u'cabinet', u'approv', u'compens', u'gaza'] [u'isra', u'forc', u'enter', u'nablus', u'refuge', u'camp'] [u'japan', u'quak', u'kill', u'injur', u'hundr'] [u'japan', u'quak', u'leav', u'dead', u'injur', u'polic'] [u'junqueira', u'win', u'indi', u'besnard', u'seventh'] [u'karzai', u'campaign', u'team', u'claim', u'victori', u'afghan', u'vote'] [u'king', u'edg', u'pirat', u'croc', u'flog', u'bullet'] [u'light', u'shed', u'mysteri', u'caucasian', u'communiti'] [u'lockyer', u'injuri', u'mar', u'kangaroo'] [u'macklin', u'rule', u'treasuri', u'post'] [u'die', u'accident', u'stab', u'self'] [u'molik', u'reach', u'zurich', u'final'] [u'stromlo', u'reopen', u'public'] [u'health', u'centr', u'redfern'] [u'water', u'plant', u'pilbara'] [u'apolog', u'princ', u'harri', u'nightclub'] [u'observ', u'disappoint', u'serb', u'shun', u'kosovo', u'poll'] [u'ogilvi', u'touch', u'florida'] [u'owen', u'get', u'leagu', u'goal', u'real', u'madrid'] [u'pair', u'share', u'quilti'] [u'perth', u'pride', u'parad', u'draw', u'record', u'crowd'] [u'pitcairn', u'abus', u'verdict', u'week'] [u'polic', u'injur', u'nowra', u'brawl'] [u'pont', u'hope', u'end', u'india', u'drought'] [u'premier', u'urg', u'date', u'dubbo', u'elect'] [u'protest', u'block', u'sheep', u'deliveri', u'fremantl'] [u'rain', u'fail', u'eas', u'farmer', u'pain'] [u'rogerson', u'shonki', u'salesman', u'genius'] [u'rumford', u'readi', u'pounc', u'madrid'] [u'safin', u'overpow', u'agassi', u'reach', u'madrid', u'final'] [u'scotti', u'govern', u'win', u'landslid', u'nauru', u'elect'] [u'senat', u'control', u'hold'] [u'senior', u'offic', u'make', u'speedi', u'camera', u'share', u'sale'] [u'sever', u'storm', u'warn', u'darl', u'down', u'boonah'] [u'sixer', u'storm', u'home', u'breaker'] [u'hurt', u'turkish', u'bomb', u'blast'] [u'kill', u'strike', u'fallujah'] [u'skipper', u'night', u'adrift'] [u'space', u'station', u'crew', u'return', u'earth'] [u'lanka', u'complet', u'crush', u'pakistan'] [u'lanka', u'control', u'jayasuriya', u'doubl'] [u'suicid', u'bomber', u'kill', u'iraqi', u'secur', u'offic'] [u'surviv', u'nazi', u'crimin', u'flush'] [u'sweden', u'ljungblad', u'reign', u'suprem', u'victoria'] [u'taiwan', u'presid', u'hope', u'talk', u'china'] [u'taliban', u'suicid', u'bomber', u'hit', u'kabul'] [u'teenag', u'charg', u'kill', u'smash'] [u'teenag', u'leav', u'steal', u'crash'] [u'teenag', u'question', u'fatal', u'smash'] [u'tendulkar', u'mcgrath', u'light', u'test'] [u'thiev', u'hotel', u'cleaner'] [u'rescu', u'swim'] [u'tiger', u'blue', u'remain', u'unbeaten'] [u'hors', u'endur', u'race'] [u'palestinian', u'milit', u'kill', u'isra'] [u'secur', u'council', u'hold', u'special', u'sudan', u'session'] [u'diplomat', u'kill', u'iraq', u'attack'] [u'rail', u'delay', u'surpris', u'opposit'] [u'watchdog', u'warn', u'psychic', u'offer'] [u'wild', u'boar', u'maul', u'hong', u'kong', u'golf', u'cours'] [u'woman', u'arrest', u'stab'] [u'zarqawi', u'group', u'renam', u'qaeda', u'pledg'] [u'academ', u'issu', u'environ', u'warn'] [u'accus', u'plead', u'guilti', u'fatal'] [u'reject', u'child', u'porn', u'list', u'alleg'] [u'year', u'arko', u'fli', u'eagl', u'coop'] [u'agreement', u'reach', u'bougainvill', u'draft'] [u'crash', u'hit', u'nascar', u'team'] [u'alic', u'spring', u'darwin', u'rail', u'oper', u'defend'] [u'oppos', u'pharmacist', u'expans', u'plan'] [u'ambros', u'cop', u'fine', u'post', u'race', u'brake'] [u'architect', u'assess', u'govt', u'hous', u'ceil', u'collaps'] [u'aussi', u'readi', u'tendulkar', u'return'] [u'australian', u'driver', u'give', u'start', u'champ', u'seri'] [u'aust', u'troop', u'join', u'intercept', u'drill'] [u'author', u'recal', u'showbag', u'drink', u'bottl'] [u'satisfi', u'onesteel', u'respons'] [u'aziz', u'visit', u'india', u'region', u'tour'] [u'barca', u'stay', u'spain'] [u'deni', u'report', u'workforc', u'cut'] [u'beatti', u'urg', u'push', u'tourism'] [u'bega', u'chees', u'win', u'export', u'award'] [u'crowd', u'celebr'] [u'fundrais', u'effort', u'boost', u'oncolog', u'unit'] [u'blaze', u'claim', u'emmavill', u'hous'] [u'blaze', u'claim', u'properti', u'fee'] [u'bollywood', u'head'] [u'bomb', u'explod', u'near', u'aust', u'embassi', u'baghdad'] [u'busi', u'plan', u'promot', u'push'] [u'busi', u'urg', u'custom', u'safe'] [u'butcher', u'catch', u'meat', u'substitut', u'crackdown'] [u'cabinet', u'leak', u'polic', u'matter'] [u'bomb', u'kill', u'tribal', u'leader'] [u'crash', u'leav', u'trap', u'vehicl'] [u'wipe', u'fenc', u'adelaid', u'smash'] [u'cat', u'excit', u'snare', u'ablett'] [u'causley', u'miss', u'ministeri', u'posit'] [u'cessnock', u'medic', u'centr', u'open', u'door'] [u'chalet', u'worker', u'find', u'bodi'] [u'cherbourg', u'princip', u'get', u'accolad'] [u'china', u'rebuff', u'powel', u'taiwan', u'recommend'] [u'clarenc', u'council', u'introduc', u'perman', u'water', u'ban'] [u'clean', u'begin', u'storm'] [u'climat', u'expert', u'meet', u'hobart'] [u'clinton', u'bypass', u'recuper', u'join', u'campaign'] [u'coach', u'say', u'prove', u'croc', u'structur', u'work'] [u'code', u'chang', u'indigen', u'women', u'peac', u'mind'] [u'commission', u'unveil', u'organis', u'crime', u'squad'] [u'concern', u'rais', u'possibl', u'polio', u'vaccin'] [u'confer', u'aim', u'improv', u'crime', u'fight', u'network'] [u'confer', u'consid', u'age', u'popul', u'need'] [u'confer', u'tackl', u'student', u'wellb', u'issu'] [u'coulthard', u'leav', u'mclaren', u'disappoint', u'fashion'] [u'council', u'defend', u'substat', u'asbesto', u'decis'] [u'council', u'turn', u'area', u'dairi', u'process'] [u'credit', u'windfal', u'give', u'health', u'boost'] [u'custom', u'lodg', u'fewer', u'bank', u'complaint'] [u'deal', u'reach', u'delay', u'test', u'drill'] [u'debat', u'loom', u'gaza', u'pull', u'plan'] [u'democrat', u'consid', u'refin', u'senat', u'role'] [u'democrat', u'founder', u'devast', u'parti', u'perform'] [u'democrat', u'leader', u'face', u'possibl', u'challeng'] [u'disabl', u'iraqi', u'hassan', u'releas'] [u'disgrac', u'hammer', u'thrower', u'hand', u'olymp', u'gold'] [u'district', u'isol', u'anthrax', u'outbreak'] [u'downer', u'urg', u'nauruan', u'reform'] [u'downer', u'welcom', u'indonesian', u'counterpart', u'secur'] [u'dozen', u'injur', u'thai', u'protest', u'turn', u'violent'] [u'draft', u'bushfir', u'manag', u'plan', u'releas'] [u'earli', u'detect', u'best', u'mean', u'tackl', u'breast'] [u'eastman', u'inquiri', u'hear', u'inadmiss', u'evid'] [u'guerrouj', u'map', u'retir', u'plan'] [u'emerg', u'chief', u'demand', u'action', u'inquiri'] [u'energex', u'scandal', u'claim', u'scalp'] [u'suspend', u'trade', u'sanction'] [u'evi', u'dominikov', u'win', u'rocki', u'tenni', u'tournament'] [u'expert', u'say', u'iraqi', u'elect', u'time'] [u'fewer', u'cane', u'farm', u'predict', u'burnett', u'region'] [u'firefight', u'monitor', u'coast', u'blaze'] [u'aborigin', u'senat', u'wife', u'die'] [u'fish', u'parti', u'issu', u'warn', u'reef', u'review', u'deal'] [u'arrest', u'hotel', u'bomb'] [u'seek', u'address', u'hous', u'woe'] [u'fletcher', u'retir', u'polit'] [u'prosecutor', u'maintain', u'eastman', u'plead'] [u'foster', u'defend', u'pub', u'sale'] [u'fresh', u'blood', u'northern', u'land', u'council'] [u'fuel', u'hike', u'forc', u'balanc', u'taxi', u'fare'] [u'fuel', u'price', u'spark', u'outback', u'tourism', u'fear'] [u'fund', u'compo', u'foundat', u'asbesto', u'victim', u'group', u'plead'] [u'gallop', u'promis', u'sustain', u'econom', u'growth'] [u'gillard', u'wont', u'contest', u'treasuri', u'posit'] [u'govt', u'announc', u'boat', u'grant'] [u'govt', u'pump', u'cash', u'tackl', u'child', u'obes'] [u'govt', u'stand', u'sewerag', u'rank'] [u'govt', u'urg', u'pressur', u'asylum', u'seeker', u'leav'] [u'govt', u'urg', u'suspend', u'fuel'] [u'group', u'look', u'lake', u'albert', u'project'] [u'grower', u'group', u'welcom', u'tree', u'cull', u'plan'] [u'heavi', u'rain', u'spark', u'sewerag', u'concern'] [u'hotel', u'group', u'claim', u'inequ', u'poki', u'plan'] [u'index', u'regist', u'inflat', u'leap'] [u'india', u'level', u'seri', u'nagpur'] [u'india', u'look', u'nagpur', u'level', u'seri'] [u'indonesian', u'polic', u'uncov', u'bomb', u'cach'] [u'iraq', u'lose', u'tonn', u'explos'] [u'iraq', u'benefici', u'philippin'] [u'ireland', u'complet', u'intern', u'rule', u'seri', u'sweep'] [u'isra', u'forc', u'kill', u'gaza', u'incurs'] [u'isra', u'incurs', u'kill', u'crucial', u'vote'] [u'offici', u'platypus', u'weird'] [u'jam', u'hardi', u'discuss', u'compens', u'fear'] [u'japanes', u'director', u'win', u'grudg'] [u'jungl', u'rumbl', u'talk', u'turn'] [u'karzai', u'main', u'rival', u'conced', u'defeat', u'afghan', u'poll'] [u'kelli', u'ministeri', u'appoint', u'consid', u'good'] [u'labor', u'look', u'reveng', u'leak', u'freeway'] [u'lawyer', u'slam', u'tasmanian', u'asbesto', u'compens', u'law'] [u'lawyer', u'push', u'record', u'damag', u'botch'] [u'letter', u'highlight', u'hospit', u'budget', u'shortfal'] [u'lib', u'silent', u'unlist', u'number', u'elect', u'call'] [u'lobster', u'fisher', u'boost', u'zone', u'sustain'] [u'lockyer', u'fitzgibbon', u'rule', u'kangaroo'] [u'long', u'swim', u'spark', u'boat', u'rescu'] [u'admit', u'girlfriend', u'murder'] [u'drown', u'near', u'nowra'] [u'escap', u'burn'] [u'rescu', u'boat', u'mishap'] [u'sentenc', u'plastic', u'explos'] [u'talk', u'glazer'] [u'shoot', u'gunner', u'record'] [u'maryborough', u'man', u'movement', u'mysteri'] [u'mcgrath', u'aim', u'mark', u'test'] [u'industri', u'urg', u'invest', u'diesel', u'fuel'] [u'miner', u'take', u'heart', u'kangaroo', u'flat', u'approv'] [u'mine', u'issu', u'featur', u'state', u'elect'] [u'minist', u'upbeat', u'privat', u'hospit', u'servic'] [u'charg', u'lay', u'fatal', u'sydney', u'crash'] [u'moseley', u'come', u'short', u'euro', u'tour', u'card'] [u'motorist', u'warn', u'fuel', u'price', u'hike'] [u'murdoch', u'give', u'key', u'adelaid'] [u'museum', u'goer', u'quiz', u'brain', u'surgeon'] [u'music', u'label', u'site', u'owner'] [u'muslim', u'threaten', u'indonesian', u'nightclub', u'attack'] [u'nagpur', u'test', u'fit', u'mileston', u'mcgrath'] [u'nairn', u'get', u'parliamentari', u'secretari', u'appoint'] [u'narrogin', u'student', u'attend', u'gallipoli', u'anzac'] [u'nauru', u'observ', u'declar', u'vote', u'free', u'fair'] [u'medic', u'school', u'start', u'accept', u'student'] [u'scheme', u'seek', u'check', u'illeg', u'worker'] [u'super', u'team', u'need', u'wallabi', u'jone'] [u'hit', u'high', u'norwegian', u'labour', u'disput'] [u'trafford', u'injustic', u'stronger', u'wenger'] [u'opposit', u'reject', u'school', u'drug', u'search', u'claim'] [u'pair', u'riverina', u'crash'] [u'pair', u'road', u'crash'] [u'papa', u'wemba', u'face', u'peopl', u'smuggl', u'charg'] [u'perilya', u'look', u'cash', u'boost'] [u'perth', u'court', u'hear', u'franchis', u'test', u'case'] [u'pharmacist', u'look', u'extend', u'role'] [u'pipe', u'mishap', u'prompt', u'effluent', u'dispos', u'warn'] [u'polic', u'hope', u'club', u'curb', u'youth', u'crime'] [u'polic', u'hunt', u'syring', u'bandit'] [u'polic', u'investig', u'counterfeit', u'note'] [u'polic', u'probe', u'orient', u'point', u'brawl'] [u'polic', u'reject', u'claim', u'forc', u'strength'] [u'polic', u'search', u'miss'] [u'polic', u'trim', u'violent', u'crime', u'task', u'forc'] [u'polic', u'gold', u'arrest'] [u'polic', u'want', u'braveri', u'award', u'wollongong', u'offic'] [u'probe', u'begin', u'target', u'store', u'blaze'] [u'probe', u'launch', u'fatal', u'loader', u'accid'] [u'protest', u'delay', u'livestock', u'shipment', u'fremantl'] [u'public', u'quiz', u'dengu', u'fever'] [u'public', u'urg', u'water', u'safe'] [u'push', u'femal', u'councillor'] [u'opposit', u'back', u'canker', u'compo', u'propos'] [u'list', u'nation', u'child', u'offend'] [u'ranger', u'lose', u'grind', u'celtic'] [u'record', u'field', u'vie', u'book', u'prize'] [u'lead', u'cardin'] [u'relay', u'rais', u'cancer', u'research', u'fund'] [u'report', u'rat', u'best', u'perform', u'state'] [u'rescu', u'effort', u'continu', u'follow', u'japan', u'quak'] [u'resid', u'worri', u'wildlif', u'protest'] [u'rooki', u'win', u'event', u'hensbi', u'tie', u'sixth'] [u'rspca', u'distress', u'chicken', u'case', u'dismiss'] [u'russian', u'station', u'tell', u'parti', u'line'] [u'sachin'] [u'safin', u'close', u'houston', u'spot'] [u'prepar', u'night', u'poki', u'debat'] [u'investig', u'fund', u'transfer'] [u'savabeel', u'elvstroem', u'unlik'] [u'searcher', u'man', u'bodi'] [u'secker', u'offici', u'recognis', u'barker'] [u'seven', u'goal', u'thriller', u'give', u'souness', u'palpit'] [u'shire', u'presid', u'pour', u'cold', u'water', u'bushfir', u'plan'] [u'singl', u'vehicl', u'crash', u'claim', u'casino'] [u'site', u'worker', u'die', u'cut', u'live', u'wire'] [u'pitcairn', u'guilti', u'crime'] [u'socceroo', u'strength', u'norway', u'clash'] [u'soldier', u'join', u'malaria', u'drug', u'lawsuit'] [u'space', u'probe', u'close', u'titan'] [u'spi', u'suspect', u'iraq', u'polic', u'massacr'] [u'starcraft', u'connect', u'weigh', u'oversea', u'option'] [u'starcraft', u'connect', u'weigh', u'oversea', u'option'] [u'steal', u'plane', u'report', u'spark', u'emerg', u'respons'] [u'strong', u'quak', u'shake', u'northern', u'japan'] [u'strong', u'wind', u'hamper', u'firefight', u'effort'] [u'student', u'die', u'embassi', u'bomb', u'injuri'] [u'survey', u'find', u'staff', u'stifl'] [u'task', u'forc', u'upbeat', u'bait'] [u'tasmania', u'trail', u'state', u'state', u'report'] [u'teen', u'clear', u'anim', u'cruelti', u'charg'] [u'teen', u'grant', u'bail', u'fatal', u'crash'] [u'telstra', u'move', u'restor', u'phone', u'servic'] [u'australian', u'soldier', u'wound', u'baghdad', u'blast'] [u'palestinian', u'kill', u'hurt', u'missil'] [u'toll', u'rise', u'isra', u'missil', u'strike'] [u'trainer', u'hop', u'privat', u'steer', u'autumn'] [u'transport', u'cost', u'fuel', u'smaller', u'grower', u'return'] [u'trawl', u'river', u'entranc'] [u'central', u'road'] [u'union', u'air', u'redund', u'fear'] [u'union', u'urg', u'step', u'hardi', u'disput'] [u'beef', u'menu', u'japan'] [u'pay', u'hefti', u'reward', u'terror', u'inform'] [u'visit', u'restart', u'north', u'korea', u'weapon', u'talk'] [u'vinni', u'doubt', u'melbourn'] [u'violent', u'offend', u'law', u'amend'] [u'wall', u'street', u'drag'] [u'watchdog', u'confirm', u'theft', u'iraqi', u'high', u'explos'] [u'water', u'author', u'probe', u'reservoir', u'claim'] [u'water', u'ban', u'longreach'] [u'water', u'tank', u'prompt', u'school', u'safeti', u'concern'] [u'webber', u'gut', u'jaguar', u'collid'] [u'western', u'power', u'sign', u'contract'] [u'westfield', u'funer', u'workplac', u'death'] [u'wineri', u'region', u'export', u'push'] [u'woman', u'die', u'crash'] [u'work', u'begin', u'darwin', u'jail', u'wing'] [u'yunkingcol', u'prove', u'good'] [u'agreement', u'reach', u'botch', u'birth', u'case'] [u'seek', u'end', u'esso', u'picket', u'line'] [u'albani', u'join', u'chang', u'task', u'forc'] [u'halt', u'share', u'trade'] [u'alic', u'confer', u'put', u'focus', u'crime', u'fight'] [u'criticis', u'nurs', u'poach'] [u'amnesti', u'plan', u'illeg', u'child', u'care', u'oper'] [u'anim', u'right', u'activist', u'threaten', u'farm', u'minist'] [u'announc', u'record', u'profit'] [u'appeal', u'fund', u'avail', u'victim'] [u'arafat', u'minor', u'exploratori', u'surgeri'] [u'ashle', u'simpson', u'take', u'sync', u'blame'] [u'asio', u'head', u'say', u'invas', u'help', u'qaeda'] [u'aussi', u'edmond', u'bag', u'french', u'rugbi', u'award'] [u'australia', u'bat', u'nagpur'] [u'australia', u'mini', u'collaps', u'nagpur'] [u'australia', u'suffer', u'mini', u'collaps', u'nagpur'] [u'bank', u'seek', u'casino', u'atm'] [u'beach', u'plan', u'subject', u'council', u'develop'] [u'beatti', u'pay', u'tribut', u'export', u'award', u'winner'] [u'billiton', u'expand', u'pilbara', u'oper'] [u'border', u'boost', u'aim', u'curb', u'weed', u'spread'] [u'brisban', u'refineri', u'step', u'green'] [u'bulloch', u'lead', u'scotland', u'australia'] [u'bushfir', u'inquiri', u'hold', u'year'] [u'busi', u'manag', u'cast', u'doubt', u'seven', u'trade'] [u'busi', u'optim', u'rid', u'high'] [u'tough', u'stanc', u'citrus', u'canker'] [u'canberra', u'fare', u'rise'] [u'canefarm', u'consid', u'futur', u'post', u'harvest'] [u'centuri', u'stand', u'put', u'australia'] [u'chamber', u'back', u'suppli', u'contract'] [u'child', u'porn', u'investig', u'hit', u'school', u'moral'] [u'china', u'mine', u'accid', u'death', u'toll', u'hit'] [u'china', u'releas', u'prison', u'figur'] [u'church', u'fail', u'abus', u'concern'] [u'colonel', u'say', u'armi', u'train', u'save', u'soldier', u'live'] [u'coron', u'drown', u'report'] [u'council', u'consid', u'desalin', u'solut'] [u'council', u'face', u'develop', u'boom'] [u'council', u'seek', u'inform', u'tree', u'remov'] [u'council', u'sniff', u'opportun', u'improv', u'sewerag'] [u'council', u'urg', u'plan', u'age', u'popul'] [u'council', u'view', u'wind', u'farm', u'plan'] [u'court', u'order', u'seizur', u'murder', u'gangland', u'figur'] [u'court', u'sentenc', u'hambali', u'brother', u'marriott'] [u'crash', u'probe', u'find', u'plan', u'wing', u'fell'] [u'cricket', u'australia', u'confirm', u'taster'] [u'cuba', u'circul', u'dollar'] [u'custom', u'offic', u'seiz', u'fill', u'candl'] [u'custom', u'seiz', u'radioact', u'kitchen', u'handl'] [u'cycl', u'star', u'adelaid', u'showcas'] [u'dajka', u'disqualifi', u'drive'] [u'darwin', u'resid', u'warn', u'dodgi', u'door', u'door'] [u'death', u'spark', u'union', u'question', u'workplac', u'safeti'] [u'death', u'toll', u'explod', u'thai', u'protest'] [u'doctor', u'pioneer', u'umbil', u'cord', u'blood', u'cancer'] [u'dont', u'michael', u'real', u'coach'] [u'doubt', u'cast', u'china', u'goat', u'deal'] [u'doubt', u'cast', u'indigen', u'fund', u'maleni', u'site'] [u'downer', u'float', u'media', u'scenario', u'baghdad'] [u'dust', u'settl', u'leinster', u'storm'] [u'east', u'timor', u'ant', u'border', u'disput'] [u'educ', u'campaign', u'target', u'child', u'welfar', u'offici'] [u'rooki', u'black', u'squad'] [u'elect', u'surgeri', u'rat', u'wait', u'rise'] [u'energex', u'board', u'posit', u'fill', u'beatti'] [u'expert', u'confid', u'nation', u'water', u'initi'] [u'expert', u'discuss', u'tasmania', u'biotech', u'futur'] [u'crew', u'expos', u'danger', u'chemic'] [u'mainten', u'crew', u'push', u'compo'] [u'fair', u'trade', u'chief', u'meet', u'council', u'fuel', u'fear'] [u'feder', u'govt', u'consid', u'citrus', u'remov', u'plan'] [u'ferri', u'servic', u'push', u'port', u'profit', u'higher'] [u'fever', u'put', u'turban', u'doubt'] [u'ban', u'follow', u'downpour'] [u'destroy', u'brisban', u'restaur', u'kitchen'] [u'gut', u'print', u'factori'] [u'bull', u'coach', u'tip', u'west', u'indi', u'post'] [u'deputi', u'lord', u'mayor', u'enter', u'mayor', u'elect'] [u'prosecutor', u'say', u'eastman', u'enter', u'plea'] [u'formula', u'mexican', u'return'] [u'fuel', u'reduct', u'burn'] [u'boost', u'plan', u'camperdown', u'port', u'fairi'] [u'glimmer', u'twin', u'lead', u'labor', u'econom', u'charg'] [u'glitch', u'wren', u'repriev', u'deal'] [u'govt', u'announc', u'chang', u'juvenil', u'parol', u'board'] [u'govt', u'deni', u'cruis', u'facil', u'inadequ'] [u'govt', u'stand', u'reef', u'fish', u'closur'] [u'govt', u'unlik', u'reduc', u'workcov', u'premium'] [u'govt', u'urg', u'boost', u'access'] [u'green', u'sixth', u'senat', u'seat'] [u'high', u'hop', u'nation', u'livestock', u'scheme'] [u'hors', u'trainer', u'fin', u'ban', u'substanc'] [u'iaea', u'inform', u'miss', u'iraq', u'explos'] [u'maiden', u'track'] [u'administr', u'seek', u'unpaid', u'fund'] [u'india', u'snare', u'late', u'wicket', u'martyn'] [u'indonesian', u'fish', u'boat', u'nab'] [u'infrastructur', u'upgrad', u'need', u'coastal', u'mine'] [u'inzamam', u'savag', u'pakistan', u'batsmen'] [u'isra', u'forc', u'withdraw', u'gaza'] [u'isra', u'suprem', u'court', u'demand', u'armi', u'justifi'] [u'israel', u'resum', u'gaza', u'pull', u'debat'] [u'japan', u'earthquak', u'toll', u'rise'] [u'japan', u'quak', u'death', u'toll', u'push', u'higher'] [u'juvenil', u'detent', u'centr', u'manag', u'stand'] [u'juventus', u'offici', u'face', u'jail', u'dope'] [u'kangaroo', u'bounc', u'admit', u'coach'] [u'plead', u'privaci', u'hewitt', u'split'] [u'labor', u'ministri', u'earn', u'busi', u'group', u'prais'] [u'labor', u'parti', u'member', u'hit', u'latham', u'leadership'] [u'latham', u'unveil', u'labor', u'frontbench'] [u'firm', u'ahead', u'malaria', u'drug', u'class', u'action'] [u'leader', u'porn', u'gang', u'sentenc', u'year', u'jail'] [u'lifesav', u'make', u'boost', u'support', u'base'] [u'lovelorn', u'japanes', u'gangster', u'offer', u'sever', u'pinki'] [u'jail', u'record', u'fraud'] [u'martyn', u'give', u'australia', u'upper', u'hand'] [u'mcgradi', u'warn', u'swim'] [u'melbourn', u'firm', u'announc', u'tassi', u'splurg'] [u'melbourn', u'strand', u'spain', u'seek', u'help'] [u'melbourn', u'mayor', u'candid', u'begin', u'campaign'] [u'melbourn', u'mum', u'track', u'south', u'pole'] [u'minist', u'lobster', u'season', u'announc'] [u'molik', u'leap', u'rank'] [u'candid', u'nomin', u'council', u'poll'] [u'locust', u'hatch', u'emerg'] [u'polic', u'workmat'] [u'murali', u'hop', u'bowl', u'doosra'] [u'musharraf', u'call', u'approach', u'kashmir', u'disput'] [u'nagpur', u'track', u'play', u'aussi', u'hand', u'ganguli'] [u'nasa', u'craft', u'pass', u'close', u'saturn', u'moon'] [u'nation', u'confid', u'secur', u'final', u'senat', u'spot'] [u'nativ', u'veget', u'legisl', u'debat'] [u'nauru', u'parliament', u'elect', u'presid'] [u'author', u'clean', u'redfern'] [u'howard', u'ministri', u'take', u'oath'] [u'judg', u'appoint', u'counti', u'court'] [u'news', u'corp', u'begin', u'adelaid'] [u'news', u'corp', u'close'] [u'news', u'corp', u'lead', u'market', u'rebound'] [u'news', u'corp', u'sharehold', u'support'] [u'nomin', u'seek', u'council', u'spot'] [u'north', u'korea', u'rat', u'world', u'worst', u'nation', u'press'] [u'total', u'central', u'west'] [u'trial', u'domest', u'violenc', u'court'] [u'seek', u'role', u'greater', u'sunris', u'process'] [u'number', u'boost', u'predict', u'saff', u'power'] [u'price', u'push', u'perth', u'petrol', u'record', u'high'] [u'project', u'expect', u'green', u'impact'] [u'opposit', u'claim', u'violent', u'crime', u'chang'] [u'opposit', u'grill', u'govt', u'doc', u'oper'] [u'opposit', u'polic', u'commission'] [u'optus', u'seal', u'deal', u'dfat'] [u'organis', u'world', u'longest', u'golf', u'cours'] [u'oust', u'polynesian', u'leader', u'begin', u'hunger', u'strike'] [u'oyster', u'death', u'prompt', u'health', u'concern'] [u'pacif', u'highway', u'plan', u'ahead'] [u'pakistan', u'adopt', u'death', u'penalti', u'honour', u'kill'] [u'parent', u'urg', u'monitor', u'children', u'swim'] [u'promis', u'sharehold', u'strong', u'growth'] [u'petit', u'seek', u'return', u'free', u'park'] [u'pink', u'add', u'colour', u'french', u'media', u'scene'] [u'plan', u'afoot', u'time', u'aussi', u'indi', u'driver'] [u'polic', u'suspect', u'murder', u'victim', u'vehicl'] [u'polic', u'investig', u'maidston', u'bodi'] [u'polic', u'ramadan', u'violenc', u'suspect'] [u'polic', u'recaptur', u'berrima', u'escap'] [u'polic', u'seek', u'help', u'miss', u'babi', u'case'] [u'polic', u'urg', u'club', u'street', u'crime'] [u'posit', u'result', u'vaccin'] [u'power', u'sydney'] [u'power', u'restor', u'sydney'] [u'privat', u'surgeri', u'centr', u'prompt', u'matern'] [u'problem', u'aris', u'polic', u'station', u'plan'] [u'program', u'target', u'aborigin', u'domest', u'violenc'] [u'public', u'open', u'space', u'plan'] [u'rag', u'bull', u'remov', u'communiti'] [u'rann', u'renew', u'threat', u'boycott', u'jam', u'hardi'] [u'record', u'break', u'fleme', u'put', u'kiwi', u'command'] [u'rise', u'diesel', u'cost', u'fuel', u'uncertainti', u'fisher'] [u'rise', u'fuel', u'cost', u'impact', u'busi'] [u'rise', u'petrol', u'cost', u'fuel', u'tourism', u'fear'] [u'roadwork', u'chang', u'park', u'boundari'] [u'rogerson', u'savabeel', u'push'] [u'rosedal', u'blaze', u'threaten', u'home'] [u'rucker', u'award', u'player', u'week'] [u'rural', u'lesse', u'welcom', u'draft', u'bushfir', u'plan'] [u'ruud', u'plead', u'guilti', u'attack'] [u'sale', u'soldier', u'injur', u'baghdad', u'blast'] [u'move', u'toughen', u'child', u'porn', u'law'] [u'scheme', u'aim', u'boost', u'communiti', u'safeti'] [u'scotland', u'boss', u'decid', u'vogt', u'futur'] [u'serial', u'speedster', u'get', u'jail', u'term', u'fatal', u'accid'] [u'shes', u'archi', u'face', u'fit', u'deadlin'] [u'shire', u'aim', u'retain', u'ward'] [u'shire', u'name', u'hospit', u'concern'] [u'shire', u'plan', u'long', u'term', u'energi', u'save'] [u'shoalhaven', u'water', u'ban', u'remain'] [u'sister', u'tell', u'fear', u'injur', u'soldier'] [u'korea', u'alert', u'possibl', u'border', u'breach'] [u'south', u'east', u'rain', u'welcom', u'need'] [u'south', u'korea', u'lower', u'infiltr', u'alert'] [u'statist', u'highlight', u'indigen', u'road', u'death'] [u'studi', u'find', u'school', u'spic', u'span'] [u'swan', u'river', u'open', u'massiv', u'sewag', u'spill'] [u'sydney', u'driver', u'arrest', u'twice', u'hit'] [u'sydney', u'hospit', u'face', u'surgeri', u'chang'] [u'talk', u'bundaberg', u'train', u'facil'] [u'tasmanian', u'green', u'introduc', u'chemic', u'trespass'] [u'fast', u'track', u'pulp'] [u'taxi', u'council', u'flag', u'price', u'rise'] [u'drink', u'help', u'alzheim', u'fight'] [u'test', u'reveal', u'seiz', u'tablet', u'dont', u'contain', u'dead'] [u'thousand', u'turn', u'flemington', u'breakfast'] [u'thwait', u'defend', u'suppress', u'princip'] [u'trap', u'catch', u'cranki', u'croc'] [u'tribut', u'album', u'launch', u'burma'] [u'charg', u'nimbin', u'drug', u'bust'] [u'unregist', u'truck', u'involv', u'fatal', u'mooney', u'mooney'] [u'appli', u'geneva', u'except', u'iraq'] [u'beef', u'expect', u'bring', u'price', u'volatil'] [u'claim', u'zarqawi', u'alli', u'kill', u'fallujah', u'strike'] [u'face', u'fight', u'japanes', u'beef'] [u'tighten', u'fallujah'] [u'charg', u'probe', u'trafford', u'controversi'] [u'employ', u'seek', u'lower', u'worker', u'comp', u'premium'] [u'wall', u'street', u'stock', u'slight'] [u'water', u'author', u'hold', u'merger', u'talk'] [u'webber', u'champion', u'wait', u'say', u'jaguar', u'boss'] [u'white', u'hous', u'play', u'lose', u'iraq', u'explos'] [u'william', u'sister', u'shoot', u'gangster', u'defend', u'crack'] [u'woman', u'serv', u'home', u'detent', u'bank', u'theft'] [u'woohoo', u'homer', u'simpson', u'win', u'presidenti', u'race'] [u'yacht', u'crash', u'near', u'sydney', u'opera', u'hous'] [u'yarrawonga', u'run', u'hour', u'polic', u'station'] [u'yudhoyono', u'convinc', u'exist'] [u'gabor', u'sonni', u'chiba', u'join', u'movi', u'hall', u'fame'] [u'year', u'bega', u'resid', u'die'] [u'elect', u'result', u'declar', u'friday'] [u'action', u'group', u'want', u'residenti', u'plan', u'shelv'] [u'refus', u'swan', u'recount'] [u'age', u'care', u'fund', u'question', u'rais'] [u'agreement', u'reach', u'island', u'nativ', u'titl'] [u'akhtar', u'doubt', u'second', u'test', u'lanka'] [u'frontbench', u'vers', u'local', u'issu', u'say'] [u'qaeda', u'prais', u'zarqawi', u'allegi', u'pledg'] [u'ambul', u'criticis', u'respons', u'indigen'] [u'amnesti', u'condemn', u'tortur', u'tactic'] [u'aussi', u'quartet', u'india', u'foot'] [u'australia', u'boss', u'dismiss', u'breakaway', u'group'] [u'australia', u'bowler', u'terroris', u'india'] [u'news', u'boss', u'slam', u'media', u'bias'] [u'bendigo', u'count', u'complet'] [u'propos', u'jail', u'neglig', u'employ'] [u'blueprint', u'growth', u'releas'] [u'british', u'radio', u'john', u'peel', u'die'] [u'british', u'tourist', u'dead', u'outback'] [u'buderus', u'warn', u'roo', u'watch', u'mcguir'] [u'build', u'applic', u'rise'] [u'bush', u'accus', u'hide', u'iraq', u'news'] [u'independ', u'probe', u'campus'] [u'nambucca', u'valley', u'natur', u'disast'] [u'chief', u'minist', u'urg', u'inquest', u'delay'] [u'child', u'surviv', u'day', u'quak', u'rubbl'] [u'child', u'worker', u'screen', u'law', u'pass', u'lower', u'hous'] [u'china', u'issu', u'sar', u'caution'] [u'chines', u'polic', u'foil', u'korean', u'asylum'] [u'church', u'gag', u'abus', u'victim'] [u'citrus', u'canker', u'forc', u'farmer', u'sell'] [u'communiti', u'servic', u'child', u'porn', u'owner'] [u'concern', u'air', u'natur', u'resourc', u'fund'] [u'concern', u'remain', u'propos', u'surfer', u'tower'] [u'confer', u'examin', u'region', u'plan'] [u'cooma', u'host', u'rural', u'counsellor'] [u'costello', u'reject', u'budget', u'figur', u'delay', u'claim'] [u'council', u'consid', u'committe', u'merger'] [u'council', u'play', u'park', u'rezon', u'concern'] [u'council', u'reject', u'seven', u'trade', u'plan'] [u'council', u'crack', u'illeg', u'worker', u'camp'] [u'darwin', u'jail', u'drug', u'make'] [u'long', u'search', u'fail', u'miss', u'seaman'] [u'deadlock', u'threaten', u'timor', u'deal'] [u'dicker', u'rival', u'hawk', u'challeng', u'head'] [u'doctor', u'group', u'air', u'obstetr', u'servic', u'fear'] [u'doubl', u'breakthrough', u'india', u'nagpur'] [u'dravid', u'india', u'continu', u'slide'] [u'driver', u'slam', u'citylink', u'charg', u'drop'] [u'drug', u'dealer', u'deduct'] [u'drunk', u'defenc', u'wipe'] [u'east', u'coast', u'storm', u'busi'] [u'elvstroem', u'delzao', u'melbourn'] [u'elvstroem', u'chase', u'caulfield', u'melbourn', u'doubl'] [u'email', u'fail', u'dent', u'aust', u'post', u'profit'] [u'energi', u'centr', u'make', u'solar', u'resourc'] [u'england', u'recal', u'world', u'winner'] [u'errat', u'latham', u'caus', u'labor', u'loss', u'liber'] [u'esso', u'worker', u'step', u'roster', u'demand'] [u'presid', u'elect', u'withdraw', u'team'] [u'hunter', u'policeman', u'braveri', u'recognis'] [u'farmer', u'group', u'support', u'breakaway', u'firefight'] [u'farmer', u'prayer', u'rain', u'answer'] [u'feder', u'critic', u'push', u'recruit', u'oversea'] [u'feder', u'face', u'fit', u'race'] [u'feedlot', u'cattl', u'sale', u'increas'] [u'period', u'bring', u'forward'] [u'fleme', u'smack', u'doubl', u'kiwi', u'declar'] [u'flemington', u'unsaf', u'race', u'say'] [u'florida', u'revisit', u'grappl', u'elector'] [u'jockey', u'award', u'damag', u'race', u'fall'] [u'public', u'servant', u'appear', u'court'] [u'frustrat', u'drive', u'mcclure'] [u'gallop', u'announc', u'cut'] [u'plant', u'busi'] [u'gaza', u'withdraw', u'road'] [u'money', u'take', u'wizard', u'home', u'loan'] [u'gibb', u'unavail', u'india', u'tour'] [u'goat', u'produc', u'highlight', u'export', u'hurdl'] [u'godolphin', u'chase', u'elus', u'melbourn'] [u'gold', u'miner', u'play', u'pollut', u'fear'] [u'govt', u'make', u'effort', u'assist', u'strand'] [u'govt', u'quiz', u'lose', u'birth', u'unit'] [u'govt', u'role', u'inquest', u'delay', u'question'] [u'govt', u'urg', u'declar', u'muswellbrook', u'natur', u'disast'] [u'graham', u'leav', u'cat', u'career'] [u'grain', u'receiv', u'depot', u'boost', u'busi'] [u'green', u'govt', u'loggerhead', u'pulp'] [u'griev', u'relat', u'besieg', u'thai', u'armi', u'base'] [u'heavi', u'rain', u'caus', u'power', u'commut', u'delay'] [u'hewitt', u'recov', u'break', u'say', u'team'] [u'high', u'court', u'reject', u'peopl', u'smuggler', u'appeal'] [u'india', u'earli', u'troubl', u'chase'] [u'india', u'troubl'] [u'india', u'test', u'nuclear', u'capabl', u'missil'] [u'insur', u'stock', u'lead', u'market', u'ralli'] [u'intercept', u'drill', u'wind'] [u'investig', u'promis', u'thai', u'protest', u'death'] [u'investor', u'warn', u'awar', u'fraudster'] [u'iraq', u'deni', u'explos', u'disappear'] [u'iraq', u'rous', u'terrorist', u'asio', u'say'] [u'israel', u'approv', u'gaza', u'pullout'] [u'jackson', u'undergo', u'ankl', u'surgeri'] [u'jail', u'term', u'attack', u'appal', u'case'] [u'jam', u'hardi', u'say', u'compens', u'agreement', u'close'] [u'japan', u'fail', u'budg', u'hostag', u'threat'] [u'japan', u'televis', u'appeal', u'hostag', u'releas'] [u'jockey', u'get', u'licenc', u'suspend', u'northam', u'race'] [u'judg', u'deni', u'bias', u'onetel', u'case'] [u'katherin', u'council', u'ban', u'plastic', u'bag'] [u'labor', u'aim', u'cours'] [u'labor', u'polici', u'scare', u'pulp', u'backer'] [u'labor', u'agenda', u'econom', u'polici'] [u'latham', u'begin', u'promot', u'team'] [u'law', u'chang', u'expand', u'paedophil', u'regist'] [u'law', u'clear', u'mine', u'explor'] [u'lebanon', u'adopt', u'syrian', u'govern'] [u'legal', u'servic', u'critic', u'forens', u'delay'] [u'lehmann', u'return', u'home', u'treatment'] [u'limit', u'chang', u'benefit', u'asbesto', u'victim'] [u'lobster', u'fishermen', u'welcom', u'season', u'extens'] [u'local', u'govern', u'rail', u'servic', u'upgrad'] [u'local', u'govt', u'firefight', u'plan'] [u'long', u'lose', u'picasso', u'arrest'] [u'lord', u'mayor', u'want', u'block', u'futur', u'address'] [u'malign', u'martyn', u'rise', u'challeng'] [u'rescu', u'marin', u'accid'] [u'meet', u'air', u'mine', u'shift', u'worri'] [u'meet', u'support', u'council', u'confid', u'motion'] [u'meet', u'address', u'water', u'suppli', u'myth'] [u'melbourn', u'mop', u'year', u'rain'] [u'melbourn', u'motorist', u'warn', u'windi', u'weather'] [u'memori', u'program', u'boost', u'happi', u'studi', u'find'] [u'mental', u'health', u'group', u'happi', u'clubhous', u'approv'] [u'milosev', u'lawyer', u'leav', u'case'] [u'mine', u'industri', u'get', u'guidelin', u'sustain'] [u'miss', u'explos', u'prove', u'bush', u'incompet', u'kerri'] [u'motorcycl', u'bomber', u'kill', u'iraq', u'convoy', u'attack'] [u'mullumbimbi', u'water', u'ban', u'eas'] [u'nasa', u'cassini', u'close', u'encount', u'titan'] [u'chang', u'water', u'ban'] [u'nrma', u'stronger', u'financi', u'grind', u'sharehold', u'tell'] [u'price', u'inflat', u'costello'] [u'opposit', u'point', u'report', u'competit', u'reform'] [u'panther', u'inquiri', u'tell', u'contract', u'confus'] [u'petrol', u'price', u'expect', u'weigh', u'inflat'] [u'pilbara', u'benefit', u'chines', u'growth'] [u'pilot', u'error', u'blame', u'crash'] [u'pipelin', u'sale', u'secur', u'electr', u'suppli'] [u'plan', u'afoot', u'plastic', u'free', u'alic', u'spring'] [u'polic', u'boost', u'plan', u'warburton'] [u'polic', u'chase', u'earn', u'driver', u'suspend', u'jail', u'term'] [u'polic', u'chief', u'charg', u'beslan', u'sieg'] [u'policewoman', u'play', u'braveri', u'award'] [u'prize', u'money', u'affect', u'australasian', u'tour', u'say'] [u'product', u'commiss', u'call', u'health', u'review'] [u'product', u'commiss', u'urg', u'telstra', u'review'] [u'public', u'warn', u'threat'] [u'putin', u'signatur', u'bring', u'kyoto', u'protocol', u'forc'] [u'urban', u'plan', u'blueprint', u'draw', u'mix', u'respons'] [u'radcliff', u'look', u'forget', u'athen', u'heartbreak'] [u'read', u'prove', u'tasmanian', u'student', u'strong', u'point'] [u'redback', u'unchang', u'line', u'bushrang'] [u'away', u'world', u'seri', u'titl'] [u'report', u'find', u'financ', u'stretch'] [u'report', u'support', u'daintre', u'develop', u'mayor'] [u'rockhampton', u'tri', u'attract', u'coal', u'busi'] [u'santo', u'profit', u'increas', u'product'] [u'program', u'provid', u'choic', u'termin'] [u'satellit', u'help', u'scientist', u'pinpoint', u'algal', u'bloom'] [u'school', u'get', u'clear', u'reservoir'] [u'search', u'begin', u'miss', u'torr', u'strait'] [u'search', u'underway', u'miss', u'british', u'tourist'] [u'senat', u'control', u'hing', u'prefer'] [u'senior', u'hend', u'head', u'field'] [u'senior', u'hend', u'head', u'field'] [u'sharon', u'reject', u'pullout', u'referendum', u'call'] [u'shes', u'archi', u'elvstroem'] [u'shes', u'shes', u'archi'] [u'sinclair', u'stay', u'kangaroo'] [u'singapor', u'defenc', u'minist', u'visit', u'rockhampton'] [u'south', u'korea', u'call', u'search'] [u'storm', u'lash', u'southern', u'queensland'] [u'strong', u'wind', u'caus', u'havoc'] [u'strong', u'wind', u'power', u'suppli'] [u'studi', u'consid', u'kalgoorli'] [u'sullivan', u'name', u'paralympian', u'year'] [u'surfer', u'get', u'tough', u'butt'] [u'survey', u'reveal', u'child', u'health', u'improv'] [u'tailor', u'risk', u'fish', u'report', u'warn'] [u'tare', u'council', u'seek', u'flood', u'damag', u'fund'] [u'temperatur', u'rise', u'western'] [u'test', u'time', u'ahead', u'princip'] [u'thailand', u'say', u'muslim', u'die', u'armi', u'custodi'] [u'thing', u'wors'] [u'timber', u'group', u'welcom', u'veget', u'manag', u'code'] [u'timor', u'east', u'timores', u'agenda'] [u'toddler', u'dead', u'bath'] [u'honour', u'whitsunday', u'cours'] [u'townsvill', u'honour', u'olympian'] [u'tuna', u'farm', u'trial', u'delay'] [u'ukrain', u'journalist', u'hunger', u'strike'] [u'union', u'criticis', u'garden', u'australia'] [u'union', u'threaten', u'zimbabw', u'blockad', u'deport'] [u'student', u'warn', u'fund', u'risk'] [u'ask', u'clarifi', u'taiwan', u'polici'] [u'introduc', u'passport', u'restrict'] [u'reprimand', u'general', u'christian', u'battl', u'remark'] [u'nistelrooy', u'accept', u'match'] [u'veget', u'drug', u'help', u'inflat'] [u'govt', u'reject', u'road', u'fund', u'critic'] [u'villa', u'suffer', u'upset'] [u'busi', u'leader', u'labor', u'appoint'] [u'wait', u'final', u'senat', u'seat'] [u'wall', u'generat', u'market', u'record'] [u'warn', u'brace', u'storm'] [u'wast', u'water', u'studi', u'chees', u'compani'] [u'water', u'ban', u'remain', u'despit', u'downpour'] [u'water', u'merger', u'idea', u'spark', u'resign'] [u'wed', u'come', u'clean', u'invit', u'sale'] [u'wenger', u'deni', u'knowledg', u'food', u'fight'] [u'wenger', u'extend', u'arsenal', u'contract'] [u'west', u'brom', u'approach', u'robson', u'manag'] [u'west', u'brom', u'manag', u'sack', u'refus', u'sign'] [u'wild', u'weather', u'hit', u'south', u'east'] [u'wind', u'damag', u'keep', u'busi'] [u'wind', u'farm', u'plan', u'woodlawn'] [u'wine', u'industri', u'form', u'peak', u'bodi'] [u'wound', u'soldier', u'return', u'home'] [u'question', u'minist', u'reef', u'claim'] [u'yudhoyono', u'order', u'ratio', u'hike'] [u'zarqawi', u'group', u'threaten', u'japanes', u'hostag', u'iraq'] [u'confirm', u'dead', u'russian', u'blast'] [u'crew', u'dead', u'aboard', u'drift', u'trawler'] [u'miner', u'trap', u'russian', u'blast'] [u'inject', u'seek', u'industri'] [u'acn', u'drug', u'contribut', u'teen', u'depress'] [u'technolog', u'help', u'remot', u'emerg', u'respons'] [u'adelaid', u'host', u'amateur', u'championship'] [u'algeria', u'nab', u'milit', u'want', u'kidnap'] [u'alic', u'spring', u'jail', u'child', u'offenc'] [u'amcor', u'fin', u'worker', u'death'] [u'arafat', u'critic', u'condit'] [u'arafat', u'sick'] [u'armi', u'muslim', u'claim', u'kabul', u'kidnap'] [u'arson', u'target', u'store', u'blaze'] [u'aussi', u'look', u'earli', u'wicket'] [u'aussi', u'cusp', u'histori'] [u'aussi', u'test'] [u'author', u'defend', u'kimberley', u'nurs', u'withdraw'] [u'autopsi', u'carri', u'british', u'tourist'] [u'ballestero', u'assault', u'investig'] [u'bashir', u'plead', u'innoc', u'terror', u'charg'] [u'bashir', u'trial', u'open', u'jakarta'] [u'bass', u'strait', u'worker', u'threaten', u'strike'] [u'bendigo', u'gear', u'swap', u'meet'] [u'bank', u'pay', u'heritag', u'boss', u'say'] [u'hail', u'hit', u'taroom'] [u'bjorkman', u'battl', u'past', u'arthur'] [u'bomb', u'kill', u'southern', u'thailand'] [u'bowden', u'stay', u'dog'] [u'brack', u'impos', u'height', u'restrict'] [u'brazilian', u'player', u'die', u'collaps', u'pitch'] [u'britain', u'consid', u'forc', u'marriag'] [u'buderim', u'babi', u'keen', u'enter', u'world'] [u'driver', u'refus', u'fare', u'disput'] [u'bush', u'dismiss', u'critic', u'miss', u'explos'] [u'bush', u'websit', u'inaccess', u'australia'] [u'extra', u'suprem', u'court', u'judg'] [u'cambodia', u'begin', u'swear', u'king'] [u'camel', u'food', u'bait', u'fish', u'hook'] [u'care', u'urg', u'locust', u'control'] [u'carolin', u'kennedi', u'tell', u'bush', u'stop', u'invok'] [u'cat', u'felin', u'stress', u'studi', u'say'] [u'cat', u'disappoint', u'graham', u'take', u'punt'] [u'chief', u'minist', u'open', u'gillen', u'club'] [u'china', u'rate', u'rise', u'year'] [u'clean', u'begin', u'storm'] [u'wad', u'process', u'debat'] [u'complaint', u'icac', u'rise'] [u'coron', u'shock', u'doctor', u'bedsid', u'bicker'] [u'council', u'renew', u'freehold', u'land', u'worri'] [u'council', u'seek', u'wind', u'farm', u'environ', u'probe'] [u'council', u'want', u'dental', u'servic', u'trial', u'asap'] [u'courtney', u'love', u'pinch', u'woman', u'court', u'tell'] [u'crash', u'survivor', u'kill', u'second', u'accid'] [u'currumbin', u'tallebudgera', u'creek', u'healthi', u'report'] [u'death', u'toll', u'pass', u'china', u'mine', u'disast'] [u'death', u'toll', u'rise', u'russian', u'blast'] [u'desper', u'seek', u'singl'] [u'develop', u'play', u'plan', u'blueprint', u'concern'] [u'doctor', u'consid', u'hospit', u'arafat'] [u'document', u'cast', u'doubt', u'miss'] [u'doubt', u'rais', u'lighthous', u'tourism'] [u'egan', u'defend', u'util', u'fund'] [u'england', u'clear', u'tour', u'zimbabw'] [u'investig', u'sugar', u'syrup', u'spill'] [u'turmoil', u'execut', u'team', u'withdraw'] [u'expert', u'warn', u'grow', u'speed'] [u'explor', u'group', u'welcom', u'law'] [u'investig', u'violenc'] [u'fleme', u'doubl', u'put', u'victori', u'path'] [u'flight', u'attend', u'rais', u'cosmic', u'radiat', u'fear'] [u'fli', u'health'] [u'forestri', u'manag', u'eucalypt', u'woe'] [u'judg', u'head', u'icac'] [u'foskey', u'welcom', u'cross', u'bench', u'role'] [u'fund', u'support', u'accommod'] [u'ganguli', u'doubt', u'fourth', u'test'] [u'germani', u'play', u'world', u'open'] [u'gillespi', u'katich', u'continu', u'australia', u'domin'] [u'global', u'premium', u'cask', u'wine'] [u'govt', u'appoint', u'anti', u'discrimin', u'commission'] [u'govt', u'clear', u'kidney', u'transplant'] [u'govt', u'hous', u'worker', u'comp', u'claim', u'prompt', u'question'] [u'govt', u'outlin', u'health', u'advisori', u'council', u'plan'] [u'govt', u'pledg', u'ring', u'road'] [u'govt', u'stand', u'nurs', u'home', u'decis'] [u'govt', u'drought', u'affect', u'farmer'] [u'govt', u'scrutini', u'develop', u'roadsid'] [u'govt', u'urg', u'alter', u'workcov', u'arrang'] [u'govt', u'work', u'hour', u'guidelin'] [u'greec', u'attack', u'asylum', u'seeker', u'treatment'] [u'greek', u'sprinter', u'kenteri', u'switch', u'coach'] [u'green', u'accus', u'govt', u'collus', u'pulp'] [u'green', u'tourism', u'group', u'meet'] [u'group', u'form', u'matern', u'action', u'group'] [u'group', u'consid', u'citrus', u'canker', u'plan'] [u'group', u'warn', u'petrol', u'sniff', u'danger'] [u'growth', u'spark', u'need', u'sport', u'land'] [u'gunn', u'studi', u'back', u'pulp'] [u'hackett', u'join', u'deleg', u'beij'] [u'hawk', u'razorback', u'toppl', u'taipan'] [u'health', u'servic', u'advisori', u'council'] [u'high', u'school', u'placement', u'test', u'bring', u'forward'] [u'high', u'wind', u'caus', u'havoc', u'south', u'east'] [u'hockeyroo', u'lose', u'major', u'sponsor'] [u'hospit', u'boost', u'medic', u'access'] [u'hous', u'loan', u'underpin', u'credit', u'union', u'build', u'societi'] [u'howard', u'govt', u'win', u'senat', u'major'] [u'husband', u'guilti', u'wife', u'death'] [u'impact', u'statement', u'step', u'gunn', u'pulp'] [u'india', u'aussi', u'stranglehold'] [u'indigen', u'group', u'plan', u'roebourn', u'cultur', u'centr'] [u'injur', u'shoaib', u'miss', u'lanka', u'test'] [u'injuri', u'forc', u'aussi', u'bear', u'mower', u'retir'] [u'iraqi', u'doctor', u'find', u'life', u'famili', u'grenfel'] [u'iraqi', u'news', u'anchor', u'kill', u'drive', u'attack'] [u'jackson', u'undergo', u'ankl', u'reconstruct'] [u'japan', u'enlist', u'intern', u'help', u'save', u'hostag'] [u'karzai', u'await', u'offici', u'declar', u'landslid'] [u'katich', u'miss', u'aussi'] [u'katich', u'push', u'australia', u'lead'] [u'faith', u'telstra', u'chief', u'tell', u'investor'] [u'kimmorley', u'star', u'anzac', u'victori'] [u'leagu', u'match', u'accord', u'script'] [u'learn', u'grind', u'propos', u'druitt', u'school'] [u'local', u'govt', u'law', u'stay', u'despit', u'shire', u'presid'] [u'mackay', u'crack', u'water'] [u'jail', u'cinema', u'murder'] [u'threaten', u'controversi', u'elect'] [u'market', u'hit', u'high'] [u'meatwork', u'expans', u'boost', u'job'] [u'media', u'report', u'surfac', u'leed', u'takeov'] [u'melbourn', u'council', u'test', u'height', u'restrict'] [u'mental', u'health', u'chief', u'killer', u'jail'] [u'merced', u'get', u'board', u'gold', u'coast', u'firm'] [u'miner', u'offer', u'spill', u'clean', u'assur'] [u'minist', u'reject', u'fish', u'studi', u'claim'] [u'minist', u'urg', u'patienc', u'polic', u'station', u'start'] [u'miss', u'teen', u'parent', u'head', u'north'] [u'miss', u'teen', u'parent', u'urg', u'airport', u'campaign'] [u'mix', u'respons', u'develop', u'plan'] [u'air', u'poultri', u'litter', u'power', u'station', u'concern'] [u'question', u'highway', u'toll', u'idea'] [u'seek', u'support', u'transport', u'plan'] [u'nation', u'food', u'reject', u'takeov'] [u'nation', u'park', u'remain', u'identifi'] [u'newborn', u'babi', u'drop', u'relat'] [u'law', u'bolster', u'polic', u'integr', u'commiss'] [u'sign', u'recognis', u'kalkadoon', u'peopl'] [u'risk', u'graham'] [u'case'] [u'consid', u'law', u'pursu', u'jam', u'hardi', u'compo'] [u'nurs', u'home', u'resid', u'tell', u'pack'] [u'firm', u'target', u'nation', u'food', u'takeov'] [u'price', u'plung', u'wild', u'trade'] [u'opposit', u'queri', u'rise', u'govt', u'hous', u'cost'] [u'opposit', u'welcom', u'vail', u'free', u'trade', u'statement'] [u'outdat', u'raptor', u'go', u'servic'] [u'outgo', u'chair', u'tune', u'attack', u'govt'] [u'parent', u'warn', u'child', u'porn', u'threat'] [u'plan', u'propos', u'state', u'wide', u'infrastructur', u'plan'] [u'plan', u'afoot', u'boost', u'ballina', u'boat'] [u'plung', u'price', u'good', u'news', u'inflat'] [u'poker', u'machin', u'number', u'shock', u'confer', u'hear'] [u'poker', u'machin', u'number', u'long', u'debat'] [u'polic', u'defend', u'underworld', u'murder', u'reward'] [u'polic', u'investig', u'melbourn', u'death'] [u'polic', u'issu', u'teen', u'flasher', u'warn'] [u'polic', u'british', u'tourist', u'autopsi', u'forward'] [u'polic', u'suspect', u'serial', u'offend', u'sydney'] [u'polic', u'shed', u'light', u'bone', u'discoveri'] [u'prohibit', u'notic', u'remov', u'arthur', u'seat'] [u'public', u'nurs', u'home', u'design'] [u'public', u'urg', u'water', u'wise'] [u'public', u'urg', u'report', u'chain', u'letter'] [u'consid', u'citrus', u'tree', u'remov', u'plan'] [u'question', u'rais', u'rail', u'servic'] [u'question', u'rais', u'plan', u'malle', u'wast', u'site'] [u'rain', u'offer', u'boost', u'water', u'storag'] [u'rain', u'prompt', u'plung', u'european', u'hors'] [u'rain', u'prompt', u'plung', u'european', u'raider'] [u'razzaq', u'haul', u'inspir', u'pakistan', u'reviv'] [u'world', u'seri', u'curs'] [u'wine', u'protect', u'lung', u'cancer', u'studi'] [u'refineri', u'emiss', u'possibl', u'caus', u'chemic'] [u'report', u'highlight', u'murrurundi', u'council', u'mismanag'] [u'report', u'reveal', u'train', u'fall', u'death', u'tragic', u'accid'] [u'resid', u'protest', u'mindil', u'beach', u'develop'] [u'revis', u'tour', u'offer', u'armstrong', u'rival', u'glimmer'] [u'reward', u'offer', u'murder', u'inform', u'wife'] [u'rodent', u'caus', u'china', u'plagu', u'outbreak'] [u'runaway', u'truck', u'crash', u'hous'] [u'smoke', u'ban', u'final', u'approv'] [u'scheme', u'aim', u'indigen', u'youth', u'best', u'start'] [u'schwarzenegg', u'find', u'happi', u'medium', u'bush', u'campaign'] [u'search', u'miss', u'caravan', u'park'] [u'senat', u'prompt', u'warn', u'power'] [u'senat', u'salut', u'unsuccess', u'elect', u'rival'] [u'plan', u'increas', u'wide', u'develop'] [u'serena', u'lose', u'qualifi', u'linz'] [u'shell', u'sorri', u'handl', u'servic', u'station', u'closur'] [u'shire', u'share', u'train', u'fund'] [u'singapor', u'hop', u'renew', u'shoalwat', u'contract'] [u'solarium', u'accus', u'disregard', u'skin', u'cancer'] [u'southcorp', u'name', u'qanta', u'chairman', u'board'] [u'stanhop', u'challeng', u'role'] [u'stanhop', u'consid', u'frontbench', u'team'] [u'african', u'rugbi', u'chief', u'slam', u'media', u'racist'] [u'african', u'rugbi', u'chief', u'slam', u'racist', u'media'] [u'storm', u'batter', u'victoria'] [u'storm', u'spark', u'muswellbrook', u'disast', u'declar'] [u'student', u'evict', u'box'] [u'studi', u'consid', u'hunter', u'age', u'process'] [u'suicid', u'gene', u'carp', u'infest'] [u'support', u'survey', u'extend', u'trade'] [u'swimmer', u'warn', u'algal', u'bloom'] [u'sydney', u'market', u'accus', u'cherri', u'pick'] [u'tasmania', u'record', u'whale', u'strand'] [u'teen', u'shoot', u'famili', u'sudden', u'idea', u'kill'] [u'telstra', u'chairman', u'dismiss', u'resign', u'call'] [u'telstra', u'chairman', u'face', u'hardi', u'heat'] [u'tenni', u'tour', u'roll', u'safe', u'supplement'] [u'don', u'home', u'expect', u'heritag', u'list'] [u'don', u'home', u'heritag', u'list'] [u'elect', u'worker', u'kidnap', u'afghanistan'] [u'kill', u'strike', u'fallujah'] [u'unknown', u'kidnap', u'group', u'hold', u'polish', u'woman'] [u'demand', u'thai', u'probe', u'protest', u'death'] [u'vail', u'offici', u'secur', u'lyne'] [u'vcat', u'green', u'light', u'oval', u'upgrad', u'stage'] [u'vettori', u'push', u'bangladesh', u'defeat'] [u'waratah', u'sweep', u'argentina', u'tour'] [u'slash', u'stamp', u'duti'] [u'water', u'commiss', u'heighten', u'pipelin', u'hop'] [u'watson', u'home', u'match', u'practic'] [u'declin', u'takeov', u'offer'] [u'woodgat', u'sewerag', u'august'] [u'woodsid', u'strike', u'suppli', u'deal'] [u'suicid', u'attack', u'train', u'target', u'russia'] [u'assembl', u'member', u'offici', u'declar'] [u'govt', u'urg', u'bushfir', u'report', u'find'] [u'honour', u'firefight'] [u'reject', u'critic', u'industri', u'manslaught'] [u'adelaid', u'internet', u'compani', u'tip', u'possibl', u'merger'] [u'qaeda', u'threaten', u'immin', u'attack'] [u'ambul', u'wider', u'impact'] [u'anthoni', u'reject', u'state', u'leadership', u'claim'] [u'arafat', u'head', u'franc', u'treatment'] [u'arafat', u'temporarili', u'relinquish', u'power'] [u'armstrong', u'keep', u'cycl', u'world', u'guess'] [u'asian', u'bodi', u'iraq'] [u'aussi', u'anderson', u'happi', u'tour', u'franc'] [u'aussi', u'pilkadari', u'sanya', u'open', u'lead'] [u'aussi', u'cusp', u'histori'] [u'aussi', u'india', u'mammoth', u'chase'] [u'australia', u'clinch', u'histor', u'seri'] [u'australian', u'lose', u'faith', u'local', u'film'] [u'austrian', u'firm', u'consid', u'narrandera', u'diesel', u'fuel'] [u'award', u'recognis', u'outback', u'tourism'] [u'bank', u'stock', u'lead', u'australian', u'market', u'higher'] [u'base', u'jumper', u'die', u'cliff', u'fall'] [u'beach', u'council', u'clear'] [u'beach', u'petroleum', u'post', u'quarter', u'revenu'] [u'beatti', u'urg', u'lobbi', u'harder', u'senat'] [u'bendigo', u'take', u'shoot', u'liber', u'candid'] [u'blackout', u'taroom'] [u'britain', u'polic', u'chief', u'make', u'anti', u'terror'] [u'british', u'tourist', u'autopsi', u'inconclus'] [u'british', u'troop', u'badland', u'posit', u'iraq'] [u'bullet', u'tiger', u'breaker', u'king', u'triumphant'] [u'bush', u'say', u'kerri', u'wrong', u'white', u'hous'] [u'busi', u'forum', u'focus', u'skill', u'worker', u'shortag'] [u'highway', u'patrol', u'number', u'boost'] [u'caloundra', u'council', u'recognis', u'financi', u'skill'] [u'candid', u'confid', u'websit', u'profil', u'remov'] [u'caus', u'chemic', u'leak', u'unknown'] [u'review', u'handl', u'store', u'blaze'] [u'chamber', u'see', u'posit', u'stamp', u'duti'] [u'chariti', u'worker', u'killer', u'guilti'] [u'chelsea', u'sack', u'disgrac', u'mutu'] [u'chemic', u'leak', u'affect', u'melbourn', u'worker'] [u'chequ', u'mail', u'year', u'late'] [u'china', u'woe', u'pressur', u'goat', u'produc'] [u'chines', u'rat', u'rise', u'sap', u'crude', u'price'] [u'citi', u'harm', u'children'] [u'conman', u'promis', u'money', u'fall', u'like', u'rain'] [u'coonan', u'aim', u'seal', u'telstra', u'deal'] [u'cosgrov', u'open', u'redback'] [u'costello', u'discount', u'nation', u'claim', u'balanc'] [u'costello', u'rule', u'fish', u'chang'] [u'council', u'leav', u'tidi', u'shire', u'financi', u'woe'] [u'covert', u'oper', u'rise'] [u'crisi', u'erupt', u'romanian', u'newspap', u'fire', u'boss'] [u'david', u'hasselhoff', u'sentenc', u'drink', u'drive'] [u'deal', u'aim', u'encourag', u'ghan', u'season', u'travel'] [u'derbi', u'tip'] [u'dibbler', u'home', u'nation', u'park'] [u'doubt', u'rais', u'develop', u'halt'] [u'drug', u'dealer', u'return', u'prompt', u'review'] [u'drug', u'block', u'alzheim'] [u'emot', u'gilchrist', u'salut', u'aussi', u'spirit'] [u'european', u'newspap', u'endors', u'candid'] [u'explos', u'go', u'miss', u'saddam', u'fall', u'iaea'] [u'fairfax', u'flag', u'horizon', u'media', u'chang'] [u'fairytal', u'start', u'dreamwork', u'share'] [u'fear', u'air', u'fish', u'quota', u'plan'] [u'fear', u'mount', u'miss'] [u'film', u'villain', u'year', u'georg', u'bush'] [u'caus', u'major', u'damag', u'blackburn', u'offic', u'block'] [u'firm', u'extend', u'tinto', u'pilbara', u'rail'] [u'flore', u'skeleton', u'keep', u'desk', u'draw'] [u'florida', u'counti', u'play', u'miss', u'ballot', u'scare'] [u'fonterra', u'fail', u'ardmona', u'takeov'] [u'forrest', u'stand', u'region', u'effort'] [u'news', u'present', u'settl', u'harass', u'suit'] [u'franchis', u'convict', u'illeg', u'trade'] [u'fund', u'rethink', u'tourism', u'plan'] [u'goolagong', u'cawley', u'quit', u'captain'] [u'goulburn', u'rain', u'eas', u'water', u'restrict'] [u'govt', u'admit', u'mistak', u'handl', u'refineri', u'fear'] [u'govt', u'plan', u'test', u'latham'] [u'green', u'fourth', u'senat', u'seat'] [u'gregan', u'welcom', u'wallabi', u'depth'] [u'group', u'worri', u'terror', u'crackdown', u'boost', u'farmer'] [u'gunn', u'consid', u'time', u'frame', u'pulp', u'plan'] [u'health', u'advisori', u'committe', u'detail', u'emerg'] [u'health', u'centr', u'renal', u'dialysi', u'machin'] [u'heart', u'boss', u'link', u'leicest'] [u'highway', u'reopen', u'dead', u'crash'] [u'holiday', u'time', u'worri', u'horticultur', u'group'] [u'slam', u'dirti', u'dozen', u'chemic', u'list'] [u'hostag', u'fate', u'unknown', u'deadlin', u'pass'] [u'hous', u'plan', u'healthier', u'option', u'consult'] [u'india', u'slide', u'crush', u'defeat'] [u'inexperi', u'blame', u'road', u'death'] [u'injuri', u'forc', u'norman', u'retir'] [u'inmat', u'earn', u'duke', u'edinburgh', u'award'] [u'invest', u'bikki', u'ballarat'] [u'iraq', u'bodi', u'unlik', u'japanes', u'hostag'] [u'iraqi', u'civilian', u'death'] [u'plan', u'polit', u'stunt', u'labor'] [u'plan', u'polit', u'stunt', u'say', u'labor'] [u'jazz', u'festiv', u'right', u'note', u'wangaratta'] [u'kabul', u'kidnapp', u'warn', u'rescu', u'attempt'] [u'kerri', u'bask', u'seri'] [u'kerri', u'write', u'star', u'astrolog'] [u'kimmorley', u'ryan', u'name', u'great', u'britain', u'clash'] [u'king', u'sihamoni', u'reign', u'begin'] [u'king', u'skip', u'tiger'] [u'kiwi', u'crush', u'bangladesh', u'wrap', u'seri'] [u'labor', u'challeng'] [u'labor', u'rule', u'contest', u'dubbo'] [u'labor', u'scrap', u'forest', u'polici'] [u'labor', u'caus', u'immigr', u'stir'] [u'labor', u'take', u'senat', u'seat'] [u'land', u'refug', u'admit', u'arafat', u'hospit'] [u'leader', u'sign', u'constitut'] [u'legal', u'group', u'join', u'forc', u'fight', u'polic', u'power'] [u'light', u'rail', u'plan', u'certainti', u'mayor'] [u'luna', u'park', u'lie', u'tree', u'remov', u'say', u'mayor'] [u'die', u'ralli', u'accid'] [u'jail', u'brisban', u'high', u'rise', u'fraud'] [u'show', u'hand', u'flinder'] [u'maroochi', u'river', u'degrad', u'continu'] [u'master', u'chief', u'angri', u'wave', u'withdraw'] [u'mayor', u'air', u'child', u'safeti', u'resourc', u'concern'] [u'mildura', u'moot', u'secess', u'wast', u'dump', u'plan'] [u'miner', u'rais', u'fund', u'xstrata'] [u'minist', u'defend', u'role', u'despit', u'iraq', u'toll'] [u'minist', u'name', u'special', u'forc', u'head'] [u'minist', u'seek', u'support', u'safeti', u'rep'] [u'mongia', u'replac', u'hodg', u'cleari', u'sign'] [u'releas', u'chemic', u'spill'] [u'move', u'afoot', u'regent', u'theatr', u'heritag', u'list'] [u'criticis', u'parti', u'delay', u'properti', u'deal'] [u'muralitharan', u'return'] [u'murder', u'face', u'extra', u'prison', u'time'] [u'murder', u'investig', u'welcom', u'gassi', u'sentenc'] [u'museum', u'urg', u'learn', u'shear', u'outback', u'woe'] [u'nation', u'urg', u'ponder', u'rais', u'legal', u'drink'] [u'network', u'urg', u'pool', u'news', u'resourc'] [u'hous', u'sale', u'slump'] [u'newton', u'volatil', u'reunion', u'kangaroo'] [u'weed', u'pest', u'report', u'tamworth'] [u'communiti', u'centr', u'woe'] [u'rossi'] [u'north', u'tri', u'lure', u'bollywood'] [u'murder', u'get', u'releas', u'approv'] [u'omalley', u'touch', u'spanish', u'leader'] [u'pampl', u'fight', u'tour', u'championship', u'spot'] [u'parliament', u'pass', u'offend', u'report'] [u'perth', u'citi', u'council', u'move', u'protect', u'hospit'] [u'perth', u'super', u'receiv', u'fund', u'boost'] [u'pire', u'criticis', u'franc', u'coach', u'domenech'] [u'pitcairn', u'jail', u'assault'] [u'plan', u'boost', u'natur', u'reserv', u'protect'] [u'spell', u'agenda', u'state'] [u'polic', u'camera', u'trial', u'snap', u'hundr', u'car'] [u'polic', u'hunt', u'airli', u'beach', u'attack'] [u'polic', u'hunt', u'liquor', u'store', u'knife', u'bandit'] [u'polic', u'hunt', u'attempt', u'jack'] [u'polic', u'teen', u'road', u'crash', u'victim'] [u'polic', u'search', u'miss', u'tourist'] [u'power', u'station', u'help', u'fight', u'exot', u'diseas'] [u'power', u'station', u'rule', u'set', u'greenhous', u'preced'] [u'press', u'council', u'uphold', u'slum', u'complaint'] [u'price', u'right', u'telstra', u'sale', u'costello', u'say'] [u'prison', u'psychologist', u'lose', u'appeal', u'suspens'] [u'probe', u'launch', u'prison', u'farm', u'drug'] [u'public', u'sector', u'train', u'regim', u'come'] [u'ract', u'demand', u'danger', u'road', u'fund'] [u'region', u'tie', u'terror', u'fight', u'keelti', u'say'] [u'renew', u'call', u'lockyer', u'valley', u'wast', u'water'] [u'report', u'back', u'brown', u'coal', u'mine'] [u'republican', u'list', u'inelig', u'florida', u'voter'] [u'resid', u'water', u'respit'] [u'resid', u'march', u'sexual', u'violenc'] [u'retir', u'villag', u'plan', u'clifton'] [u'russal', u'take', u'stake'] [u'savabeel', u'trainer', u'undecid', u'start'] [u'sawmil', u'fin', u'burn', u'breach'] [u'scientist', u'reject', u'reef', u'rezon', u'inquiri'] [u'senat', u'result', u'hasten', u'atsic', u'demis'] [u'shes', u'archi', u'face', u'hurdl'] [u'shes', u'archi'] [u'shire', u'share', u'flood', u'damag', u'fund'] [u'money', u'leed', u'tell', u'takeov', u'hope'] [u'soldier', u'home', u'iraq', u'train', u'mission'] [u'storm', u'damag', u'ancient', u'tree'] [u'strand', u'tourist', u'return', u'home'] [u'submiss', u'close', u'reef', u'plan'] [u'sudan', u'govt', u'reject', u'separ', u'religion', u'state'] [u'summer', u'blackout', u'expect', u'sydney'] [u'surgeri', u'success', u'say', u'jackson'] [u'talk', u'jordan', u'toyota'] [u'court', u'order', u'lawsuit', u'ransom', u'director'] [u'lawyer', u'criticis', u'limit', u'amend'] [u'deadlin', u'approach', u'fast'] [u'teacher', u'recruit', u'drive', u'begin'] [u'teen', u'die', u'trail', u'bike', u'truck', u'accid'] [u'test', u'confirm', u'canker', u'strain', u'second', u'outbreak'] [u'arrest', u'afghanistan', u'kidnap'] [u'timber', u'industri', u'back', u'ring', u'road'] [u'titan', u'rich', u'life', u'give', u'carbon', u'nasa', u'say'] [u'tourism', u'board', u'resign', u'spark', u'anger'] [u'troop', u'prepar', u'decis', u'assault', u'fallujah'] [u'truck', u'driver', u'refus', u'bail', u'fatal', u'crash'] [u'trucki', u'protest', u'industri', u'road', u'death'] [u'turkey', u'accus', u'violat', u'greek', u'territori'] [u'turkish', u'truck', u'driver', u'kill', u'mosul'] [u'twin', u'bomb', u'rock', u'southern', u'thailand'] [u'umbil', u'blood', u'predict', u'allergi'] [u'condemn', u'cuba', u'embargo', u'time'] [u'underworld', u'coupl', u'jail', u'drug', u'traffic'] [u'close', u'dairi', u'farm'] [u'union', u'use', u'teacher', u'highlight', u'exodus'] [u'unit', u'look', u'build', u'arsenal'] [u'dealer', u'top', u'poll', u'world', u'power'] [u'diplomat', u'injur', u'pakistani', u'hotel', u'blast'] [u'network', u'air', u'damn', u'iraqi', u'arm', u'video'] [u'vandal', u'attack', u'kokoda', u'memori'] [u'societi', u'question', u'drink', u'drive', u'law'] [u'warn', u'sydney', u'like', u'real', u'estat', u'price'] [u'watchdog', u'investig', u'uranium', u'incid'] [u'waterbird', u'number', u'lowest', u'year'] [u'water', u'guidelin', u'comment'] [u'expand', u'prison'] [u'weld', u'want', u'rain', u'flemington'] [u'wildlif', u'hospit', u'plan', u'gold', u'coast'] [u'windi', u'legend', u'back', u'king', u'coach'] [u'share', u'surg', u'takeov'] [u'woman', u'get', u'suspend', u'jail', u'term', u'facto', u'death'] [u'woman', u'jail', u'amphetamin', u'suppli'] [u'woodward', u'take', u'time', u'lion', u'skipper'] [u'youni', u'hit', u'pakistan', u'control'] [u'aborigin', u'issu', u'agenda', u'yunupingu'] [u'flip', u'somersault'] [u'agassi', u'overcom', u'verdasco', u'power'] [u'agassi', u'say', u'drug', u'cheat', u'imposs', u'tenni'] [u'jazeera', u'lade', u'tape'] [u'american', u'intimid', u'bush'] [u'arafat', u'diagnosi', u'day', u'away'] [u'arroyo', u'meet', u'hostag', u'famili', u'send', u'team', u'kabul'] [u'asda', u'chief', u'quit', u'post'] [u'aussi', u'exorcis', u'demon'] [u'australian', u'set', u'dive', u'record', u'find', u'skeleton'] [u'ban', u'chemic', u'food', u'crop'] [u'bennett', u'attack', u'appoint', u'kiwi', u'refere'] [u'berlusconi', u'back', u'justic', u'post'] [u'lade', u'roam', u'afghanistan', u'pakistan'] [u'lade', u'threaten', u'attack'] [u'blackout', u'hit'] [u'black', u'quit', u'post', u'strategi'] [u'bodi', u'iraq', u'unlik', u'japanes', u'hostag'] [u'bok', u'grand', u'slam', u'highlight', u'novemb'] [u'kill', u'guard', u'wound', u'west', u'bank', u'unrest'] [u'british', u'troop', u'begin', u'patrol', u'hostil', u'region'] [u'bushrang', u'control', u'redback'] [u'bush', u'reject', u'lade', u'threat'] [u'chelsea', u'boss', u'defend', u'mutu', u'sack'] [u'citi', u'board', u'suggest', u'cape', u'indigen'] [u'defenc', u'forc', u'hous', u'deal', u'caus', u'conflict'] [u'downer', u'welcom', u'thai', u'protest', u'death', u'inquiri'] [u'driver', u'pull', u'ralli', u'follow', u'death'] [u'environ', u'minist', u'unveil', u'protect', u'plan'] [u'fals', u'hoon', u'compens'] [u'foster', u'care', u'studi', u'focus', u'long', u'term', u'support'] [u'garcia', u'stag', u'stun', u'fight'] [u'growth', u'economist', u'expect'] [u'gibernau', u'set', u'pace', u'spain'] [u'grand', u'arme', u'end', u'gai', u'drought'] [u'hall', u'fame', u'financi', u'troubl'] [u'henman', u'fall', u'unseed', u'novak', u'basel'] [u'hundr', u'charg', u'thai', u'protest'] [u'hussey', u'lead', u'bushrang'] [u'iaea', u'offer', u'guarante', u'iran', u'nuclear', u'fuel', u'suppli'] [u'leed', u'money', u'say', u'sainsburi'] [u'india', u'feel', u'heat', u'aussi', u'celebr'] [u'india', u'wield', u'mumbai'] [u'injur', u'feder', u'confirm', u'pari'] [u'intern', u'assist', u'drought', u'stricken'] [u'itali', u'buttiglion', u'resign', u'eas', u'crisi'] [u'japanes', u'hostag', u'probabl', u'kill', u'iraq'] [u'jazeera', u'pakistan', u'bureau', u'receiv', u'lade', u'tape'] [u'latham', u'conced', u'forestri', u'polici', u'damag'] [u'latham', u'face', u'forestri', u'post', u'mortem', u'confer'] [u'launceston', u'cycl', u'classic', u'cancel'] [u'levein', u'confirm', u'leicest', u'boss'] [u'makyb', u'diva', u'draw', u'barrier', u'seven'] [u'die', u'brawl'] [u'sunbak', u'driveway'] [u'melbourn', u'factori', u'damag'] [u'molik', u'luxembourg', u'semi', u'final'] [u'montgomeri', u'gain', u'dope', u'case', u'postpon'] [u'mooney', u'mooney', u'crash', u'prompt', u'inquiri'] [u'motor', u'ralli', u'death', u'investig'] [u'moya', u'fifth', u'master', u'qualifi'] [u'nasa', u'aim', u'space', u'shuttl', u'launch'] [u'chang', u'travel', u'advic', u'despit', u'lade'] [u'govt', u'lobbi', u'patrick', u'white', u'resid'] [u'oldest', u'british', u'royal', u'die', u'age'] [u'injur', u'ultralight', u'crash'] [u'opera', u'singer', u'husband', u'arrest', u'take', u'baxter'] [u'pampl', u'florida'] [u'plaster', u'seal', u'derbi'] [u'offici', u'chair', u'meet', u'arafat'] [u'polic', u'rape', u'claim', u'investig'] [u'star', u'hop', u'video', u'prove', u'copyright'] [u'public', u'urg', u'oppos', u'kosciuszko', u'propos'] [u'ranger', u'stay', u'open', u'despit', u'yellowcak', u'spill'] [u'rioter', u'burn', u'liberian', u'school', u'church'] [u'road', u'reopen', u'truck', u'pile'] [u'rspca', u'probe', u'possibl', u'cattl', u'neglect'] [u'rude', u'awaken', u'brisban', u'hotel', u'guest'] [u'russia', u'clear', u'elector', u'chang'] [u'savabeel', u'silenc', u'critic'] [u'second', u'woman', u'go', u'miss', u'sydney'] [u'seiz', u'hostag', u'taker', u'famili', u'russian', u'general'] [u'lanka', u'fight', u'inzamam'] [u'swiss', u'radio', u'trade', u'wave'] [u'text', u'laden', u'messag', u'america'] [u'time', u'achangin'] [u'union', u'green', u'donat', u'herring', u'labor', u'offici'] [u'unitab', u'want', u'bet', u'exchang'] [u'strike', u'kill', u'fallujah'] [u'deploy', u'militari', u'satellit', u'jam'] [u'fail', u'suppress', u'lade', u'tape'] [u'say', u'munit', u'destroy', u'iraqi', u'complex'] [u'univers', u'move', u'adelaid'] [u'consid', u'harvey', u'norman', u'rule', u'appeal'] [u'wallabi', u'coach', u'want', u'consist'] [u'wall', u'street', u'slip', u'investor', u'elect'] [u'warn', u'issu', u'internet', u'worm'] [u'wenger', u'welcom', u'probe', u'trafford', u'food', u'fight'] [u'wicket', u'suit', u'australia', u'say', u'dravid'] [u'woman', u'stab', u'shoot', u'north'] [u'worksaf', u'warn', u'fake', u'inspector'] [u'adelaid', u'orchestra', u'feder', u'respons'] [u'afghan', u'hostag', u'taker', u'deadlin'] [u'agassi', u'face', u'johansson', u'stockholm', u'final'] [u'age', u'popul', u'blame', u'hospit'] [u'dig', u'forestri', u'polici'] [u'beat', u'elect', u'prospect'] [u'anwar', u'thank', u'malaysian', u'releas'] [u'warn', u'economi', u'turn'] [u'arafat', u'meal', u'check', u'hospit'] [u'arafat', u'ill', u'curabl'] [u'arafat', u'spokesperson', u'deni', u'leukaemia', u'possibl'] [u'launch', u'soccer', u'leagu', u'today'] [u'aussi', u'pilkadari', u'chase', u'chines', u'doubl'] [u'australia', u'free', u'status', u'polit', u'fiction'] [u'backpack', u'check', u'email'] [u'beatti', u'defend', u'main', u'road', u'probe'] [u'lade', u'video', u'nation', u'secur', u'remind'] [u'lade', u'video', u'inflam', u'elect', u'race'] [u'blair', u'elect', u'februari', u'report'] [u'breaker', u'regist', u'win'] [u'ciss', u'miss', u'rest', u'season'] [u'dampier', u'creek', u'croc', u'alert'] [u'decapit', u'bodi', u'iraq'] [u'doctor', u'rais', u'fee', u'poll'] [u'marin', u'kill', u'near', u'fallujah'] [u'criticis', u'alpin', u'graze'] [u'fergi', u'call', u'henri', u'investig'] [u'firefight', u'offer', u'counsel', u'colleagu'] [u'furor', u'fuhrer', u'costum', u'school', u'halloween'] [u'govt', u'urg', u'review', u'data', u'process', u'contract'] [u'govt', u'undermin', u'medicar', u'academ', u'say'] [u'gunner', u'hold', u'draw', u'unit', u'suffer', u'shock', u'loss'] [u'hewitt', u'brace', u'pari', u'storm'] [u'human', u'right', u'lawyer', u'blair', u'criticis'] [u'hundr', u'gatecrash', u'teen', u'birthday', u'parti'] [u'indigen', u'board', u'get', u'lukewarm', u'recept'] [u'iranian', u'parliament', u'back', u'nuclear', u'energi', u'drive'] [u'italian', u'ralli', u'iraq'] [u'japan', u'confirm', u'hostag', u'kill', u'troop', u'stay'] [u'japan', u'mourn', u'hostag', u'amid', u'spiral', u'iraq', u'violenc'] [u'japan', u'win', u'swiss', u'chees', u'prize'] [u'jayasuriya', u'lead', u'lankan', u'fight'] [u'jayasuriya', u'notch', u'centuri'] [u'johansson', u'pari', u'master'] [u'kangaroo', u'nation', u'thriller'] [u'king', u'appoint', u'west', u'indi', u'coach'] [u'labor', u'flunk', u'industri', u'relat', u'test'] [u'target', u'milit', u'muslim', u'jail'] [u'loud', u'blast', u'hear', u'central', u'baghdad'] [u'macgil', u'close', u'mileston'] [u'macgil', u'close', u'wicket', u'mileston'] [u'accident', u'run', u'infant'] [u'mauresmo', u'reach', u'linz', u'final'] [u'molik', u'eye', u'second', u'success', u'titl'] [u'respons', u'time', u'seek', u'perish', u'resort'] [u'mutu', u'consid', u'retir'] [u'nalbandian', u'face', u'novak', u'basel', u'final'] [u'natur', u'forestri', u'polici', u'mistak', u'labor'] [u'peacekeep', u'airlift', u'darfur'] [u'pirat', u'dodg', u'bullet', u'breaker', u'sixer'] [u'pitcairn', u'mayor', u'sack', u'follow', u'rape', u'convict'] [u'plaster', u'earn', u'rest', u'derbi'] [u'polic', u'enforc', u'coitus', u'interruptus', u'public'] [u'polic', u'follow', u'lead', u'miss', u'tourist', u'case'] [u'polish', u'hostag', u'plead', u'iraq', u'troop', u'pullout'] [u'poll', u'open', u'ukrain'] [u'princess', u'alic', u'die'] [u'probe', u'continu', u'ultralight', u'crash'] [u'ranger', u'maintain', u'unbeaten', u'record'] [u'research', u'muscular', u'dystrophi', u'breakthrough'] [u'respect', u'communiti', u'servic', u'worker', u'die', u'age'] [u'rival', u'plaster', u'champion'] [u'road', u'toll', u'continu', u'rise'] [u'secret', u'agenda', u'opera', u'singer', u'baxter', u'detent'] [u'secur', u'tight', u'elect'] [u'senat', u'major', u'worri', u'right', u'campaign'] [u'sharon', u'rule', u'jerusalem', u'burial', u'arafat'] [u'singh', u'song', u'florida'] [u'smullen', u'defend', u'ride', u'vinni'] [u'sydney', u'hobart', u'boast', u'strong', u'fleet'] [u'tamada', u'snare', u'valencia', u'pole'] [u'telstra', u'chairman', u'oblig', u'hardi'] [u'iraqi', u'kill', u'wound', u'ramadi', u'clash'] [u'thai', u'human', u'right', u'group', u'end', u'fact', u'find', u'trip'] [u'track', u'decid', u'vinni', u'roe', u'fate'] [u'track', u'seal', u'vinni', u'roe', u'fate'] [u'troop', u'stay', u'iraq', u'christma'] [u'tszyu', u'camp', u'confid', u'victori'] [u'unherald', u'scot', u'surg', u'clear', u'spain'] [u'law', u'open', u'aust', u'record'] [u'voge', u'smash', u'record', u'centuri'] [u'warrior', u'hold', u'thrill'] [u'youzhni', u'beck', u'saint', u'petersburg', u'final'] [u'abbott', u'concern', u'abort', u'epidem'] [u'aceh', u'violenc', u'ahead', u'militari', u'review'] [u'aceh', u'violenc', u'claim', u'live'] [u'adopt', u'case', u'hear', u'mother', u'sedat'] [u'alic', u'welcom', u'virgin', u'adelaid', u'flight'] [u'anniversari', u'race', u'attract', u'intern', u'competitor'] [u'announc', u'expect', u'cycl', u'race', u'futur'] [u'lead', u'market', u'high'] [u'arab', u'station', u'deni', u'bias', u'accus'] [u'arafat', u'condemn', u'dead', u'aviv', u'blast'] [u'arafat', u'stabl', u'curabl'] [u'arroyo', u'seek', u'help', u'free', u'kidnap', u'diplomat'] [u'launch', u'soccer', u'leagu', u'today'] [u'asio', u'mole', u'fear', u'reveal'] [u'asio', u'mole', u'sell', u'secret'] [u'australia', u'china', u'sign', u'olymp', u'agreement'] [u'bargara', u'tourist', u'centr', u'open', u'today'] [u'barra', u'closur', u'begin'] [u'beachport', u'blaze', u'claim', u'garag'] [u'bolton', u'regain', u'fourth', u'spot', u'newcastl', u'end'] [u'bore', u'flow', u'drought'] [u'braveheart', u'applaud', u'abduct', u'alert'] [u'brilliant', u'tasmanian', u'craft', u'fair', u'end'] [u'builder', u'want', u'contractor', u'licens'] [u'bushfir', u'spark', u'warn', u'camper'] [u'bush', u'kerri', u'hour', u'race', u'elect', u'finish'] [u'bush', u'kerri', u'finish', u'touch', u'campaign'] [u'canberra', u'rainfal', u'averag'] [u'car', u'push', u'trade', u'deficit'] [u'chariti', u'cherri', u'break', u'australian', u'record'] [u'cheap', u'microchip', u'offer', u'rockhampton'] [u'chelsea', u'italian', u'trio', u'pois', u'progress'] [u'chelsea', u'clinton', u'join', u'kerri', u'campaign', u'trail'] [u'chelsea', u'destroy', u'complain', u'mutu'] [u'clarif', u'seek', u'region', u'plan'] [u'coalit', u'comment', u'fuel', u'abort', u'debat'] [u'councillor', u'renew', u'call', u'close'] [u'councillor', u'legal', u'brief'] [u'councillor', u'suggest', u'schooli'] [u'council', u'reconsid', u'katherin', u'art', u'precinct', u'site'] [u'court', u'deni', u'meet', u'discuss', u'judg', u'futur'] [u'cricket', u'australia', u'begin', u'search', u'academi'] [u'cum', u'forc', u'chang', u'strasbourg', u'jockey'] [u'punter', u'expect', u'gambl', u'million'] [u'cycl', u'classic', u'kick', u'maryborough'] [u'darfur', u'rebel', u'group', u'threaten', u'quit', u'peac', u'talk'] [u'date', u'jam', u'hardi', u'compo', u'fund', u'case'] [u'death', u'threat', u'milat', u'famili', u'feud'] [u'delfin', u'mitchel', u'creek', u'develop'] [u'dettori', u'look', u'rain', u'improv', u'mamool', u'chanc'] [u'doctor', u'fee', u'increas'] [u'downer', u'condemn', u'iraqi', u'politician', u'assassin'] [u'driver', u'urg', u'steer', u'clear', u'wander', u'anim'] [u'drop', u'abort', u'polit', u'latham', u'say'] [u'drug', u'reform', u'group', u'critic', u'govt', u'polici'] [u'caus', u'grain', u'concern'] [u'deni', u'breach', u'privaci'] [u'fallujah', u'stand', u'enter', u'final', u'phase'] [u'famili', u'award', u'botch', u'birth'] [u'farmer', u'offer', u'extend', u'drought', u'hope'] [u'feedback', u'seek', u'develop', u'plan'] [u'pont', u'vow', u'india', u'bash'] [u'forest', u'agreement', u'offer', u'land', u'protect'] [u'forum', u'focus', u'abus', u'sport', u'parent'] [u'franc', u'call', u'resolv', u'french', u'polynesia'] [u'ganguli', u'miss', u'fourth', u'test'] [u'nearest', u'rival', u'substanti'] [u'activist', u'urg', u'revers'] [u'girl', u'kill', u'train', u'accid', u'die'] [u'girl', u'death', u'spark', u'ethnic', u'unrest', u'china'] [u'govt', u'confid', u'despit', u'miss', u'deadlin'] [u'govt', u'consid', u'workplac', u'death', u'law'] [u'govt', u'stand', u'nativ', u'titl', u'agreement'] [u'govt', u'consid', u'cruis', u'ship', u'termin', u'site'] [u'govt', u'tackl', u'skill', u'worker', u'shortag'] [u'govt', u'urg', u'hasten', u'drought', u'effort'] [u'govt', u'urg', u'offer', u'option', u'atsic', u'demis'] [u'govt', u'urg', u'tackl', u'shoalhaven', u'hous', u'shortag'] [u'govt', u'wont', u'reef', u'protect'] [u'group', u'ballarat', u'fluorid'] [u'group', u'welcom', u'billiton', u'pilbara', u'fund'] [u'grower', u'unlik', u'boost', u'water', u'alloc'] [u'gunnedah', u'rememb', u'light', u'hors', u'charg'] [u'hargreav', u'join', u'stanhop', u'frontbench'] [u'hick', u'close', u'lose', u'saniti', u'father', u'say'] [u'hope', u'meatwork', u'return', u'work'] [u'hospit', u'parti', u'set', u'challeng', u'sit'] [u'icac', u'investig', u'plagiar', u'claim', u'newcastl'] [u'incom', u'estim', u'advic', u'uncommon', u'centrelink'] [u'indonesian', u'fisherman', u'guilti', u'illeg'] [u'injur', u'aust', u'soldier', u'return', u'home'] [u'injuri', u'forc', u'grey', u'fava', u'australia'] [u'invest', u'construct', u'growth', u'put', u'canberra', u'ahead'] [u'iranian', u'parliament', u'want', u'nuclear', u'program'] [u'iraqi', u'kill', u'hotel', u'rocket', u'attack'] [u'curtain', u'picasso', u'parad'] [u'johansson', u'novak', u'youzhni', u'tenni', u'titl'] [u'judg', u'futur', u'review', u'crash'] [u'kaneria', u'spin', u'pakistan', u'victori'] [u'kenteri', u'deni', u'fake', u'bike', u'crash'] [u'kerri', u'bush', u'exchang', u'lade', u'video', u'barb'] [u'labor', u'work', u'govt', u'bali', u'marijuana', u'arrest'] [u'landhold', u'warn', u'loom', u'threat'] [u'landmark', u'adopt', u'case', u'begin'] [u'land', u'owner', u'protest', u'govt', u'zone', u'plan'] [u'latham', u'criticis', u'union', u'forestri', u'stanc'] [u'latham', u'shock', u'centrelink', u'claim'] [u'lennon', u'disput', u'latham', u'forestri', u'disput', u'claim'] [u'level', u'cross', u'safeti', u'report', u'draw', u'critic'] [u'liber', u'toll', u'plan', u'risk', u'budget', u'say', u'treasur'] [u'literaci', u'rate', u'indigen', u'communiti'] [u'liverpool', u'confirm', u'ciss', u'season'] [u'local', u'govt', u'consid', u'effici', u'boost'] [u'lockout', u'cut', u'servic', u'western', u'sydney'] [u'magazin', u'closur', u'see', u'sign', u'chang', u'time'] [u'die', u'goldfield', u'road', u'accid'] [u'manufactur', u'activ', u'increas'] [u'mari', u'tehan', u'die', u'age'] [u'master', u'class', u'poulter', u'beat', u'garcia', u'play'] [u'maykb', u'diva', u'better', u'year', u'boss'] [u'mayor', u'foreshadow', u'museum', u'plan'] [u'float', u'unemploy', u'hous', u'build', u'plan'] [u'mcmillan', u'miss', u'squad'] [u'mcrae', u'return', u'tourism', u'chief'] [u'meat', u'firm', u'beef', u'plant', u'facil'] [u'meet', u'tell', u'support', u'euthanasia', u'grow'] [u'melbourn', u'tip'] [u'miller', u'retir', u'shock', u'team', u'mat'] [u'molik', u'brink'] [u'molik', u'secur', u'titl'] [u'hospit', u'join', u'smoke'] [u'polic', u'seek', u'wangaratta'] [u'parmalat', u'worker', u'milk', u'redund', u'fund'] [u'move', u'afoot', u'stop', u'leather', u'factori', u'closur'] [u'stand', u'council', u'critic'] [u'nevill', u'humbl', u'support'] [u'drug', u'give', u'hope', u'heart', u'transplant', u'patient'] [u'evid', u'spark', u'plea', u'fire', u'inform'] [u'film', u'poke', u'bushism'] [u'flight', u'servic', u'expand'] [u'boundari', u'releas'] [u'report', u'rank', u'australian', u'hard', u'worker'] [u'transmitt', u'improv', u'firefight'] [u'nigerian', u'strike', u'rise', u'fuel', u'cost'] [u'nigerian', u'union', u'threaten', u'strike'] [u'charg', u'teacher', u'pornographi', u'claim'] [u'fund', u'rail', u'station', u'disabl', u'access'] [u'charg', u'child', u'porn'] [u'mayor', u'accus', u'beatti', u'time', u'zone', u'arrog'] [u'member', u'reject', u'call', u'indigen', u'board'] [u'oversea', u'visitor', u'boom', u'tip'] [u'owen', u'ronaldo', u'rescu', u'real'] [u'parent', u'greater', u'role', u'cathol', u'school'] [u'perth', u'record', u'averag', u'rainfal', u'octob'] [u'pilkadari', u'continu', u'good', u'form', u'asia'] [u'pilot', u'injur', u'helicopt', u'crash'] [u'polic', u'confer', u'scrutinis', u'high', u'tech', u'crime'] [u'polic', u'hunt', u'elder', u'woman', u'attack'] [u'polic', u'arrest', u'mildura', u'brawl'] [u'polic', u'seek', u'arm', u'robberi'] [u'polic', u'seek', u'traralgon', u'attack', u'wit'] [u'politician', u'shoot', u'dead', u'iraq'] [u'portland', u'highlight', u'wind', u'farm', u'benefit'] [u'pride', u'line', u'india'] [u'princip', u'support', u'teacher', u'polic', u'check'] [u'protest', u'clash', u'polic', u'china', u'land'] [u'public', u'help', u'seek', u'captur', u'serial', u'arm', u'robber'] [u'public', u'urg', u'heatwav', u'awar'] [u'public', u'urg', u'hospit', u'pressur'] [u'introduc', u'anti', u'terror', u'fertilis', u'restrict'] [u'senat', u'elect', u'defend'] [u'quarantin', u'servic', u'seek', u'consum', u'help', u'mango'] [u'race', u'fan', u'cheer', u'star'] [u'rain', u'heighten', u'mossi', u'virus', u'concern'] [u'recent', u'indonesian', u'unrest', u'deter', u'tourist'] [u'region', u'driver', u'urg', u'buckl'] [u'review', u'probe', u'attempt', u'jail', u'escap'] [u'rocket', u'attack', u'kill', u'tikrit'] [u'rossi', u'reign', u'spain', u'bayliss'] [u'rural', u'doctor', u'hint', u'rise', u'fee'] [u'ryan', u'discuss', u'disabl', u'fund'] [u'second', u'sewag', u'spill', u'anger', u'minist'] [u'face', u'water', u'crisi'] [u'shes', u'archi', u'give', u'clear'] [u'shop', u'ban', u'children', u'tag', u'racist'] [u'singh', u'golf'] [u'soccer', u'leagu', u'aim', u'sport', u'list'] [u'lankan', u'tail', u'frustrat', u'pakistan', u'victori'] [u'georg', u'post', u'record', u'profit'] [u'street', u'sweeper', u'secur', u'guard', u'billboard'] [u'studi', u'show', u'slow', u'growth', u'rate'] [u'submiss', u'seek', u'north', u'coast', u'polic', u'boost'] [u'sunbak', u'croc', u'caus', u'chao', u'cairn', u'road'] [u'support', u'saleyard', u'stay', u'open'] [u'talk', u'focus', u'communiti', u'centr', u'futur'] [u'task', u'forc', u'meet', u'minist', u'campus', u'futur'] [u'whale', u'sight', u'encourag', u'scientist'] [u'teenag', u'die', u'sydney', u'road', u'accid'] [u'telstra', u'propos', u'light', u'black', u'mountain', u'tower'] [u'tension', u'mount', u'tahitian', u'presidenti', u'stoush'] [u'thailand', u'king', u'urg', u'restraint', u'wake', u'muslim'] [u'road', u'crash'] [u'tourism', u'push', u'benefit', u'goldfield', u'esper'] [u'town', u'share', u'econom', u'fund'] [u'tree', u'branch', u'claim', u'boy', u'life'] [u'kill', u'isra', u'palestinian', u'trade'] [u'fertil', u'scientist', u'permit', u'hand', u'pick'] [u'give', u'green', u'light', u'embryo', u'screen'] [u'call', u'onlin', u'polic', u'presenc'] [u'ultralight', u'crash', u'probe', u'continu'] [u'ultralight', u'pilot', u'injur', u'crash'] [u'appeal', u'afghanistan', u'hostag', u'safeti'] [u'union', u'reaffirm', u'labor', u'support'] [u'unit', u'water', u'play', u'second', u'sewag', u'spill'] [u'uruguay', u'leftist', u'clinch', u'histor', u'presidenti'] [u'vandal', u'threaten', u'fish', u'access'] [u'voge', u'vogu', u'warrior'] [u'vogt', u'step', u'scottish', u'manag', u'report'] [u'cabinet', u'meet', u'bunburi'] [u'water', u'author', u'claim', u'support', u'conserv'] [u'weld', u'call', u'emerg'] [u'whale', u'museum', u'secur', u'tourism', u'encourag', u'award'] [u'widespread', u'violat', u'ukrain', u'elect'] [u'windi', u'coach', u'king', u'hop', u'reviv', u'flag', u'career'] [u'work', u'begin', u'port', u'expans'] [u'abalon', u'diver', u'jail', u'forg', u'docket'] [u'abus', u'forc', u'vogt', u'scotland'] [u'academ', u'examin', u'boost', u'plan'] [u'aid', u'arafat', u'improv', u'exhaust'] [u'alcohol', u'blame', u'stunt', u'kidney', u'aborigin'] [u'anti', u'smoke', u'group', u'crackdown'] [u'push', u'cambodian', u'market'] [u'armaguard', u'offer', u'reward', u'miss'] [u'armi', u'chopper', u'crew', u'stand', u'indi', u'lark'] [u'arson', u'blame', u'adelaid', u'school', u'blaze'] [u'australia', u'tough', u'test', u'pakistan', u'batsmen', u'coach'] [u'australian', u'punter', u'pick', u'bush'] [u'award', u'recognis', u'bushfir', u'recoveri', u'effort'] [u'bangladesh', u'crash', u'mill', u'pace'] [u'barra', u'introduc', u'fish', u'farm'] [u'beij', u'plan', u'tough', u'dope', u'regim'] [u'resort', u'plan', u'afoot', u'field'] [u'lade', u'vow', u'bankrupt'] [u'blue', u'lunch'] [u'board', u'school', u'late', u'indigen', u'literaci'] [u'british', u'soldier', u'iraq', u'die', u'gunshot', u'wind'] [u'build', u'boom', u'increas', u'vacanc', u'rat'] [u'burger', u'name', u'springbok', u'player', u'year'] [u'burston', u'injur', u'ankl', u'wildcat'] [u'bush', u'kerri', u'neck', u'neck', u'campaign', u'final'] [u'bush', u'kerri', u'wrap', u'campaign'] [u'bush', u'return', u'texa', u'elect'] [u'bush', u'win', u'midnight', u'voter', u'support'] [u'busi', u'truck', u'concern'] [u'busi', u'urg', u'bolster', u'china', u'effort'] [u'call', u'suitabl', u'birth', u'centr'] [u'canada', u'fresh', u'cannabi'] [u'canberra', u'delug', u'catch', u'guard'] [u'cervic', u'cancer', u'vaccin', u'trial', u'yield', u'posit'] [u'cheney', u'includ', u'hawaii', u'minut', u'campaign', u'stop'] [u'china', u'attack', u'foreign', u'polici', u'elect'] [u'china', u'ban', u'civet', u'cook', u'stop', u'sar', u'spread'] [u'chubb', u'confid', u'court', u'rule', u'wont', u'affect', u'busi'] [u'coalit', u'begin', u'forestri', u'polici', u'implement'] [u'command', u'sack', u'protest', u'death'] [u'controversi', u'film', u'maker', u'murder', u'amsterdam'] [u'council', u'air', u'wall', u'fear'] [u'council', u'fear', u'merger', u'relat', u'water', u'price', u'rise'] [u'council', u'finalis', u'puppi', u'farm', u'probe'] [u'council', u'look', u'reopen', u'lake'] [u'council', u'shoot', u'paintbal', u'plan'] [u'council', u'consid', u'methadon', u'clinic', u'plan'] [u'crash', u'spark', u'plea', u'better', u'mark', u'power', u'wire'] [u'cunderdin', u'hospit', u'health', u'director'] [u'fever', u'grip', u'eyr', u'peninsula'] [u'delfin', u'defend', u'mitchel', u'creek', u'develop'] [u'demolit', u'firm', u'fin', u'wast', u'dump'] [u'dettori', u'face', u'steward', u'inquiri'] [u'develop', u'board', u'reject', u'workforc', u'crisi', u'claim'] [u'resign', u'prompt', u'health', u'dept', u'critic'] [u'disabl', u'servic', u'play', u'supervis', u'hous'] [u'dive', u'oper', u'like', u'welcom', u'safeti', u'move'] [u'doctor', u'recal', u'take', u'lose', u'blood', u'sampl'] [u'downer', u'defend', u'support', u'bush'] [u'elit', u'club', u'leader', u'get', u'year', u'jail', u'gang', u'rap'] [u'energex', u'report', u'improv', u'network', u'reliabl'] [u'esso', u'contract', u'worker', u'work'] [u'europ', u'santa', u'compet', u'olymp', u'gold'] [u'fahrenheit', u'screen', u'fan', u'anti', u'bush', u'flame'] [u'farmer', u'lose', u'drought'] [u'govt', u'eye', u'total', u'univers', u'control'] [u'ferguson', u'hop', u'arsenal', u'action', u'fade'] [u'firefight', u'contain', u'wonanngatta', u'blaze'] [u'firefight', u'farewel', u'thursday'] [u'firm', u'high', u'hop', u'seahors', u'speci'] [u'kill', u'bomber', u'target', u'baghdad', u'ministri'] [u'foreign', u'seiz', u'baghdad', u'kidnap'] [u'champ', u'jone', u'link', u'seri'] [u'french', u'polynesian', u'govt', u'aim', u'crisi'] [u'fuge', u'star', u'campaign', u'peac', u'haiti'] [u'court', u'hear', u'bushfir', u'inquiri', u'bias', u'claim'] [u'gilli', u'game', u'great'] [u'gold', u'worker', u'strike', u'safeti'] [u'govt', u'pledg', u'dental', u'clinic', u'bunburi'] [u'govt', u'reject', u'malle', u'drought', u'claim'] [u'govt', u'urg', u'wharf', u'fund', u'shortfal'] [u'govt', u'correct', u'centrelink', u'overpay'] [u'govt', u'urg', u'rethink', u'school', u'staff', u'formula'] [u'griffith', u'chancellor', u'play', u'govt', u'reform'] [u'group', u'launch', u'hotlin', u'inform', u'british'] [u'health', u'region', u'audit', u'measur', u'save'] [u'health', u'servic', u'chief', u'announc'] [u'heart', u'specialist', u'better', u'servic'] [u'hickss', u'lawyer', u'seek', u'panel', u'decis'] [u'hopkin', u'craigi', u'england'] [u'icac', u'probe', u'soon'] [u'illeg', u'immigr', u'face', u'deport'] [u'india', u'attempt', u'regain', u'pride'] [u'indian', u'maker', u'put', u'slipper', u'govern'] [u'intern', u'shorten', u'rain', u'batter', u'flemington'] [u'israel', u'destroy', u'bomber', u'hous'] [u'isra', u'forc', u'kill', u'west', u'bank'] [u'athen', u'gold', u'collaps', u'lung', u'hackett'] [u'jail', u'polic', u'assault'] [u'jail', u'term', u'cape', u'alcohol', u'restrict', u'breach'] [u'jam', u'hardi', u'fund', u'provis'] [u'jone', u'tell', u'england', u'like', u'champion'] [u'journalist', u'arrest', u'outsid', u'florida', u'vote', u'offic'] [u'kerri', u'urg', u'voter', u'hold', u'bush', u'account'] [u'khatami', u'rule', u'halt', u'iran', u'uranium', u'enrich'] [u'kidnap', u'iraqi', u'guard', u'releas'] [u'labor', u'continu', u'attack', u'govt', u'plan'] [u'labor', u'council', u'push', u'legal', u'centr', u'fund'] [u'lake', u'macquari', u'plan', u'identifi', u'area', u'need'] [u'landhold', u'intensifi', u'effort', u'region'] [u'leas', u'detail', u'slow', u'bathhous', u'work'] [u'liberian', u'riot', u'leav', u'dead'] [u'lion', u'gold', u'coast', u'link'] [u'lodg', u'aim', u'loss', u'merger'] [u'main', u'road', u'finalis', u'malcolmson', u'report'] [u'makyb', u'diva', u'look', u'world', u'stage'] [u'makyb', u'diva', u'win', u'consecut', u'cup'] [u'malik', u'steer', u'pakistan', u'seri', u'level'] [u'die', u'highway', u'crash'] [u'jail', u'newcastl', u'shoot'] [u'sue', u'compani', u'injuri'] [u'march', u'start', u'date', u'like', u'gold'] [u'market', u'stabl', u'ahead', u'poll'] [u'mcewen', u'back', u'south', u'east'] [u'mcgrath', u'langer', u'give', u'black'] [u'melbourn', u'hospit', u'bypass', u'investig', u'underway'] [u'melbourn', u'tab', u'target', u'vandal', u'rampag'] [u'mental', u'assess', u'mother', u'accus', u'kill'] [u'miner', u'stress', u'need', u'avoid', u'fatigu'] [u'minist', u'tour', u'cape', u'york', u'gulf'] [u'minist', u'wont', u'comment', u'ground'] [u'miss', u'man', u'bodi'] [u'model', u'play', u'storm', u'surg', u'threat'] [u'fluorid', u'inform', u'seek'] [u'fund', u'need', u'mental', u'health', u'expert'] [u'frequent', u'aust', u'india', u'seri'] [u'warn', u'freeway', u'toll', u'remov'] [u'mutu', u'accept', u'lawyer'] [u'nader', u'defiant', u'elect'] [u'nation', u'play', u'deal', u'telstra', u'sale', u'support'] [u'nation', u'trust', u'staff', u'lodg', u'bulli', u'complaint'] [u'prospector', u'train', u'soon'] [u'speed', u'limit', u'childer'] [u'wast', u'servic', u'plan', u'wollondilli', u'shire'] [u'korea', u'accus', u'south', u'naval', u'provoc'] [u'korea', u'pose', u'challeng', u'say', u'nuclear'] [u'nobel', u'laureat'] [u'north', u'east', u'prepar', u'storm'] [u'north', u'west', u'hospit', u'get'] [u'norwich', u'draw', u'rise', u'foot'] [u'extradit', u'fatal', u'stab'] [u'polic', u'minist', u'concern', u'miss', u'blood'] [u'offic', u'arm', u'suspens'] [u'trader', u'kerri', u'drive', u'price', u'lower'] [u'pari', u'furious', u'agassi', u'pull'] [u'pepper', u'nbls', u'player', u'week'] [u'period', u'jail', u'term', u'dishonest', u'financ', u'director'] [u'perth', u'admit', u'arson', u'conspiraci'] [u'perth', u'plead', u'guilti', u'child', u'pornographi'] [u'shrug', u'journalist', u'detent'] [u'polic', u'issu', u'driver', u'safeti', u'remind'] [u'polic', u'probe', u'gun', u'theft'] [u'polic', u'probe', u'rail', u'station', u'attack'] [u'polic', u'probe', u'truck', u'school', u'crash'] [u'polic', u'voic', u'deton', u'danger'] [u'port', u'lincoln', u'hail', u'makyb', u'own', u'local'] [u'power', u'station', u'propon', u'rule', u'exot', u'diseas'] [u'privat', u'oper', u'alvernia', u'merci', u'hospit'] [u'probe', u'continu', u'school', u'asbesto'] [u'product', u'start', u'onesteel', u'plant'] [u'public', u'urg', u'report', u'turtl', u'breed', u'activ'] [u'qanta', u'flight', u'attend', u'settl', u'disput'] [u'hop', u'ride', u'high', u'warrior'] [u'lion', u'plan', u'gold', u'coast', u'match'] [u'quota', u'rise', u'pilchard', u'fisher'] [u'rabbitoh', u'look', u'recruit', u'british', u'test', u'star'] [u'racego', u'head', u'echuca'] [u'racego', u'rock', u'frock', u'flemington'] [u'rain', u'fail', u'spoil', u'flemington', u'parti'] [u'rainfal', u'woe', u'continu', u'albani'] [u'rare', u'dolphin', u'remain', u'kangaroo', u'island'] [u'rare', u'whale', u'byron', u'beach'] [u'record', u'rainfal', u'coff'] [u'reef', u'author', u'content', u'ship', u'aground', u'fine'] [u'report', u'slam', u'fail', u'mar', u'mission'] [u'resid', u'wait', u'compo'] [u'reuter', u'cameraman', u'kill', u'ramadi'] [u'rockhampton', u'hors', u'owner', u'hold', u'hop'] [u'erupt', u'council', u'travel'] [u'sabotag', u'threaten', u'weaken', u'suppli'] [u'govt', u'seek', u'look', u'propos', u'chang'] [u'sangakkara', u'fin', u'abus'] [u'schoolboy', u'queri', u'tax', u'british', u'offici', u'year'] [u'school', u'evacu', u'vineyard', u'blaze'] [u'scientist', u'mous', u'lean', u'gene'] [u'second', u'charg', u'child', u'porn'] [u'serial', u'offend', u'blame', u'sydney', u'break'] [u'shes', u'archi', u'look', u'strong', u'show', u'final'] [u'short', u'term', u'medic', u'transport', u'woe'] [u'singh', u'extend', u'lead', u'golf', u'rank'] [u'smyth', u'vow', u'cabinet', u'member', u'account'] [u'socceroo', u'group', u'germani'] [u'somersault', u'score', u'screen', u'music', u'accolad'] [u'stock', u'rid', u'high', u'despit', u'distract'] [u'strike', u'action', u'threat', u'plan'] [u'student', u'express', u'worri', u'privat', u'plan'] [u'substanc', u'abus', u'blame', u'crime'] [u'sink', u'ship', u'owner', u'get', u'salvag', u'extens'] [u'forestri', u'compens', u'uncertain'] [u'govt', u'introduc', u'curriculum'] [u'technolog', u'boost', u'cotton', u'plant'] [u'tendulkar', u'open', u'bowl'] [u'thai', u'villag', u'leader', u'decapit', u'retali'] [u'thorn', u'doubl', u'dig', u'blue', u'hole'] [u'train', u'worker', u'union', u'deni', u'caus', u'delay'] [u'tribun', u'hear', u'final', u'evid', u'misconduct', u'case'] [u'ukrain', u'elect', u'scratch'] [u'rat', u'indigen', u'health', u'poor'] [u'claim', u'journalist', u'kill', u'fight'] [u'increas', u'troop', u'iraq', u'ahead', u'poll'] [u'lawyer', u'prepar', u'elect', u'battl'] [u'soldier', u'kill', u'afghanistan'] [u'voter', u'poll'] [u'vazquez', u'claim', u'victori', u'uruguay', u'elect'] [u'vinni', u'catch', u'weight'] [u'vinni', u'contest'] [u'coalit', u'offer', u'pool', u'centr', u'fund'] [u'govt', u'accus', u'lack', u'leadership'] [u'opposit', u'doubt', u'premier', u'credenti'] [u'opposit', u'govt', u'scuffl', u'propos', u'polic'] [u'work', u'anti', u'terror', u'fertilis', u'licens'] [u'weather', u'success'] [u'weighti', u'problem', u'shearer', u'prompt', u'tranquillis'] [u'westbus', u'servic', u'return', u'normal'] [u'wild', u'woe', u'spark', u'nation', u'park', u'bait'] [u'wolv', u'jone'] [u'yudhoyono', u'rule', u'allow', u'emptiv', u'strike'] [u'abort', u'debat', u'divid', u'liber', u'parti'] [u'academ', u'await', u'finer', u'detail', u'plan'] [u'aceh', u'guerilla', u'clash', u'troop'] [u'coron', u'want', u'immedi', u'bushfir', u'safeti', u'audit'] [u'review', u'feder', u'elect', u'process'] [u'afford', u'hous', u'project', u'near', u'complet'] [u'alderman', u'censur', u'council', u'leak'] [u'black', u'confess', u'wear'] [u'ambros', u'remain', u'ford'] [u'warrior', u'owner', u'tackl', u'year'] [u'anti', u'hoon', u'legisl', u'declar', u'success'] [u'atsb', u'fail', u'uncov', u'caus', u'fatal', u'helicopt'] [u'australian', u'democrat', u'elect', u'leader'] [u'australia', u'strike', u'earli', u'hauritz', u'debut'] [u'author', u'back', u'land', u'releas', u'lake', u'protect'] [u'author', u'welcom', u'mersey', u'hospit', u'commit'] [u'beatti', u'highlight', u'import', u'nativ', u'titl'] [u'black', u'resign', u'holling'] [u'brigg', u'sign', u'king'] [u'british', u'soldier', u'face', u'trial', u'kill', u'iraqi'] [u'brumbi', u'pair', u'doubt', u'scottish', u'test'] [u'compani', u'reject', u'minist', u'blackmail', u'claim'] [u'bush', u'ahead', u'kerri', u'like', u'state'] [u'bush', u'camp', u'claim', u'victori'] [u'bush', u'tip', u'pick', u'florida'] [u'elect', u'nomin', u'open'] [u'cadetship', u'offer', u'kalgoorli', u'boulder', u'youth'] [u'hors', u'rider', u'help', u'control', u'kosciuszko'] [u'campus', u'chief', u'take', u'wait', u'approach'] [u'candid', u'say', u'lamington', u'fundrais', u'uncool'] [u'care', u'renew', u'appeal', u'worker', u'releas'] [u'carniv', u'selector', u'young', u'blood'] [u'centr', u'chemotherapi', u'treatment', u'long', u'time', u'come'] [u'chang', u'trainer', u'success', u'boss'] [u'chelsea', u'undef', u'champion', u'leagu'] [u'cherbourg', u'social', u'worker', u'call', u'alcohol'] [u'children', u'advoc', u'call', u'background', u'check'] [u'church', u'minist', u'plead', u'guilti', u'indec', u'behaviour'] [u'clash', u'titan', u'creat', u'race', u'age'] [u'win', u'fund', u'labor'] [u'club', u'welcom', u'gambl', u'research', u'result'] [u'emiss', u'melt', u'arctic', u'centuri', u'report'] [u'complaint', u'servic', u'aid', u'young', u'employe'] [u'council', u'author', u'test', u'court'] [u'council', u'look', u'fluorid', u'benefit'] [u'council', u'reject', u'methadon', u'clinic', u'plan'] [u'council', u'rethink', u'water', u'pip'] [u'council', u'refus', u'jam', u'hardi', u'item', u'vlga'] [u'council', u'work', u'region', u'promot'] [u'council', u'tackl', u'weed', u'woe'] [u'council', u'urg', u'boost', u'account'] [u'council', u'want', u'probe', u'corner', u'accid'] [u'court', u'allow', u'republican', u'challeng', u'ohio', u'voter'] [u'court', u'urg', u'lengthen', u'cabbi', u'killer', u'sentenc'] [u'crash', u'victim', u'forgo', u'seatbelt'] [u'croc', u'charg', u'strike', u'fear', u'offici'] [u'punter', u'flock', u'mackay', u'turf', u'club'] [u'delay', u'african', u'dentist', u'arriv'] [u'dettori', u'receiv', u'month', u'suspens'] [u'dirti', u'soil', u'affect', u'resid', u'home'] [u'condit', u'toll', u'wineri'] [u'place', u'plan', u'cherbourg'] [u'ead', u'put', u'dog', u'pace'] [u'edward', u'pledg', u'fight', u'vote'] [u'elton', u'john', u'marri', u'long', u'time', u'companion'] [u'meet', u'govt', u'forestri', u'polici'] [u'esso', u'offshor', u'worker', u'hold', u'mass', u'meet'] [u'famili', u'secur', u'senat', u'posit'] [u'farmer', u'celebr', u'rainfal'] [u'father', u'make', u'plea', u'inform', u'miss'] [u'feedback', u'seek', u'fluorid', u'plan'] [u'fifth', u'african', u'american', u'elect', u'senat'] [u'fisher', u'quiz', u'lobster', u'industri'] [u'fisher', u'urg', u'realist', u'licenc'] [u'florida', u'voter', u'report', u'minor', u'glitch'] [u'forest', u'area', u'remov', u'burn', u'program'] [u'weed', u'sprayer', u'press', u'right'] [u'fresh', u'violenc', u'hit', u'baghdad'] [u'marriag', u'ban', u'stem', u'cell', u'adopt'] [u'gender', u'issu', u'cost', u'australian', u'busi', u'studi'] [u'govt', u'commit', u'bega', u'hospit', u'replac'] [u'govt', u'seek', u'comment', u'older', u'workforc', u'plan'] [u'govt', u'urg', u'ramp', u'boat', u'facil', u'fund'] [u'greek', u'face', u'charg'] [u'green', u'wont', u'rule', u'challeng', u'senat', u'result'] [u'group', u'unveil', u'tourism', u'plan', u'today'] [u'gunmen', u'kidnap', u'american', u'contractor', u'baghdad'] [u'health', u'merger', u'offer', u'local', u'control'] [u'health', u'minist', u'tour', u'north', u'coast'] [u'heat', u'exchang', u'hick', u'militari', u'hear'] [u'heritag', u'take', u'swipe', u'card', u'skimmer'] [u'hewitt', u'round', u'pari'] [u'hollow', u'bullet', u'favourit', u'oak'] [u'home', u'urg', u'upgrad', u'train', u'patient'] [u'melt', u'aust', u'swamp'] [u'index', u'show', u'healthi', u'servic', u'sector'] [u'indigen', u'student', u'irrelev'] [u'injur', u'reidi', u'hurt'] [u'high', u'karumba', u'land'] [u'iran', u'offer', u'temporari', u'suspens', u'nuclear'] [u'iraqi', u'armi', u'offic', u'behead', u'video'] [u'isra', u'troop', u'kill', u'taxi', u'driver', u'gaza', u'wit'] [u'jenkin', u'plead', u'guilti', u'north', u'korea', u'defect'] [u'joint', u'team', u'log', u'boundari'] [u'jordanian', u'truck', u'driver', u'kidnap', u'iraq'] [u'karzai', u'win', u'afghan', u'poll'] [u'kerri', u'delusion', u'ohio', u'bush', u'aid'] [u'kerri', u'white', u'hous', u'dream', u'fade'] [u'kerri', u'win', u'state', u'close'] [u'kidnapp', u'threaten', u'hand', u'worker', u'zarqawi'] [u'latest', u'lade', u'tape', u'cheap', u'propaganda', u'say', u'asio'] [u'lawyer', u'urg', u'judg', u'withhold', u'blood', u'sampl'] [u'liber', u'seek', u'famili', u'preselect'] [u'life', u'ban', u'drug', u'cheat', u'hackett'] [u'makyb', u'diva', u'world', u'best', u'stayer', u'freedman'] [u'burn', u'canberra', u'hous'] [u'die', u'singl', u'vehicl', u'crash'] [u'jail', u'partner', u'kill'] [u'mark', u'declin', u'retail', u'hous', u'measur'] [u'mayor', u'join', u'critic', u'councillor', u'conduct'] [u'memori', u'honour', u'policeman', u'kill', u'duti'] [u'milit', u'extend', u'deadlin', u'captiv', u'worker'] [u'miner', u'move', u'bolster', u'collaps', u'wall'] [u'misfir', u'gunner', u'hold', u'draw'] [u'mitcham', u'freeway', u'contract', u'outlin', u'toll'] [u'soldier', u'leav', u'iraq'] [u'mourner', u'hold', u'noisi', u'wake', u'slay', u'film', u'maker'] [u'air', u'fear', u'arm', u'robber', u'releas'] [u'echo', u'phone', u'tower', u'review'] [u'rais', u'wangaratta', u'polic', u'station', u'concern'] [u'plead', u'guilti', u'daughter', u'kill'] [u'museum', u'lament', u'limit', u'public'] [u'museum', u'return', u'indigen', u'remain', u'object'] [u'magistr', u'start', u'week'] [u'person', u'test', u'help', u'farmer'] [u'cut', u'riverland', u'surgeri', u'obstetr'] [u'transfer', u'detent', u'centr', u'respons'] [u'observ', u'claim', u'monitor', u'bar'] [u'ohio', u'tight', u'elect'] [u'opposit', u'highlight', u'region', u'hospit', u'woe'] [u'orica', u'tripl', u'annual', u'profit'] [u'paramount', u'studio', u'chairman', u'step'] [u'partnership', u'help', u'forest', u'arson'] [u'patagonian', u'toothfish', u'pirat', u'fear', u'govt'] [u'make', u'peac'] [u'pilot', u'accus', u'govt', u'abandon', u'elect', u'promis'] [u'pilot', u'safe', u'emerg', u'plane', u'land'] [u'plan', u'move', u'ahead', u'smelter', u'demolit'] [u'polic', u'judg', u'hand', u'blood', u'sampl'] [u'polic', u'hunt', u'arm', u'bank', u'bandit'] [u'polic', u'investig', u'man', u'death', u'remot', u'station'] [u'polic', u'lack', u'court', u'support', u'union'] [u'polic', u'need', u'help', u'deal', u'homeless'] [u'polic', u'watchdog', u'probe', u'miss', u'blood', u'sampl'] [u'possibl', u'bush', u'victori', u'push'] [u'post', u'mortem', u'student'] [u'power', u'return', u'central', u'west'] [u'presidenti', u'elect', u'dampen', u'market'] [u'privat', u'develop', u'secur', u'jail'] [u'produc', u'reject', u'cheap', u'wine', u'claim'] [u'propos', u'prison', u'site', u'vulner', u'bushfir'] [u'public', u'remind', u'loom', u'ban'] [u'public', u'urg', u'help', u'control', u'beetl', u'pest'] [u'qanta', u'plan', u'bigger', u'craft', u'region', u'rout'] [u'queen', u'recognis', u'german', u'wartim', u'suffer'] [u'queensland', u'quiz', u'fish'] [u'rail', u'deal', u'provid', u'secur', u'maryborough'] [u'rain', u'halt', u'aussi', u'charg', u'mumbai'] [u'rain', u'help', u'eas', u'water', u'ban'] [u'rain', u'wash', u'session', u'mumbai'] [u'ranger', u'contamin', u'case', u'adjourn'] [u'ranger', u'oper', u'face', u'licenc', u'charg'] [u'rare', u'whale', u'excit', u'scientist'] [u'hold', u'cash', u'rate', u'steadi'] [u'republican', u'domin', u'hous', u'rep'] [u'republican', u'tip', u'control', u'senat'] [u'warn', u'farmer', u'fire'] [u'rise', u'debt', u'level', u'prompt', u'credit', u'reform'] [u'roadwork', u'fund', u'announc'] [u'saddam', u'famili', u'dismiss', u'lawyer'] [u'safeti', u'establish', u'heart', u'diseas', u'team'] [u'scheme', u'aim', u'boost', u'women', u'local', u'govt'] [u'seminar', u'consid', u'thai', u'export', u'opportun'] [u'senat', u'fin', u'firearm', u'charg'] [u'shooter', u'ask', u'help', u'control', u'fox'] [u'singapor', u'brisban', u'best', u'citi'] [u'sixer', u'look', u'maintain', u'win', u'form'] [u'small', u'wineri', u'continu', u'growth', u'apac'] [u'soldier', u'fin', u'replica', u'gun'] [u'spare', u'bullfight', u'charg', u'carmen'] [u'spotlight', u'fall', u'council', u'general', u'manag'] [u'stone', u'argu', u'restrict', u'abort'] [u'stosur', u'quebec', u'event'] [u'student', u'fold', u'shelter', u'homeless'] [u'student', u'group', u'foreshadow', u'lose', u'servic'] [u'studi', u'echo', u'earlier', u'youth', u'alcohol', u'find'] [u'studi', u'consid', u'plan', u'miner', u'plant'] [u'sydney', u'peac', u'prize', u'winner', u'urg', u'iraqi', u'resist'] [u'taiwan', u'posit', u'strengthen', u'vanuatu'] [u'wind', u'farm', u'develop', u'ceas'] [u'teen', u'injur', u'lightn', u'strike'] [u'telstra', u'budget', u'blowout', u'restrict', u'servic', u'union'] [u'telstra', u'deni', u'forc', u'staff', u'holiday'] [u'tender', u'call', u'line', u'load', u'asset'] [u'test', u'identifi', u'chemic', u'river'] [u'thai', u'politician', u'punch', u'colleagu'] [u'thornley', u'put', u'control'] [u'tidi', u'town', u'ponder', u'wast', u'dump', u'ironi'] [u'tight', u'race', u'kerri', u'win', u'state'] [u'tollner', u'push', u'control', u'indigen', u'land'] [u'trade', u'hall', u'council', u'asbesto', u'plan'] [u'troop', u'rebel', u'clash', u'kashmir', u'mosqu'] [u'north', u'west', u'crash'] [u'elect', u'littl', u'impact', u'surg', u'market'] [u'elect', u'close'] [u'network', u'accuraci', u'ahead', u'speed'] [u'poll', u'station', u'begin', u'close'] [u'senat', u'leader', u'daschl', u'lose', u'seat'] [u'soldier', u'escap', u'jail', u'term', u'ghraib', u'abus'] [u'util', u'vow', u'pipelin', u'failur', u'wont', u'interrupt', u'power'] [u'opposit', u'question', u'toll', u'cost'] [u'vicroad', u'worker', u'blame', u'speed', u'camera', u'fault'] [u'villa', u'charg', u'beatti', u'approach'] [u'violenc', u'hinder', u'sudan', u'effort'] [u'vote', u'specul', u'pull', u'price'] [u'govt', u'urg', u'lift', u'region', u'art', u'fund'] [u'wale', u'faith', u'jone', u'boy'] [u'warn', u'doubt', u'brisban', u'test'] [u'warn', u'fourth', u'test'] [u'warn', u'milk', u'price', u'hike', u'christma'] [u'warrior', u'forc', u'follow'] [u'wimmera', u'take', u'heart', u'govt', u'letter'] [u'work', u'continu', u'highway', u'landslip'] [u'work', u'bridg'] [u'young', u'politician', u'join', u'norfolk', u'assembl'] [u'abbott', u'renew', u'abort', u'debat'] [u'colleg', u'face', u'cash', u'flow', u'woe'] [u'aid', u'say', u'arafat', u'life', u'danger'] [u'analyst', u'rais', u'prospect', u'strike', u'iran'] [u'andren', u'renew', u'elect', u'fund'] [u'arafat', u'suffer', u'health', u'setback'] [u'asbesto', u'incid', u'disrupt', u'darwin', u'school'] [u'asian', u'leader', u'cautious', u'welcom', u'bush', u'victori'] [u'aussi', u'mumbai'] [u'aussi', u'control'] [u'aussi', u'summer', u'shin', u'vietnam'] [u'aust', u'democrat', u'focus', u'elect', u'debacl'] [u'australia', u'bowl', u'mumbai'] [u'australian', u'leader', u'congratul', u'bush'] [u'babi', u'death', u'prompt', u'child', u'servic', u'review'] [u'bait', u'program', u'cull', u'exot', u'number'] [u'balco', u'suppli', u'greek', u'sprinter'] [u'bashir', u'defiant', u'bomb', u'trial'] [u'beer', u'honour', u'black', u'senat'] [u'border', u'search', u'overdu', u'tourist'] [u'tech', u'fund', u'assist', u'canberra', u'project'] [u'blackout', u'spark', u'power', u'suppli', u'scrutini'] [u'blue', u'warrior', u'sword'] [u'boje', u'pull', u'indian', u'tour'] [u'book', u'royalti', u'benefit', u'tasmanian', u'devil'] [u'die', u'lightn', u'strike'] [u'brake', u'emerg', u'qanta'] [u'brekki', u'boost', u'men', u'relationship'] [u'burleigh', u'clean', u'beach', u'award'] [u'bush', u'flag', u'taxat', u'public', u'educ', u'chang'] [u'bush', u'spell', u'second', u'term', u'agenda'] [u'bush', u'boost', u'terror', u'fight'] [u'busi', u'accept', u'disrupt', u'long', u'term'] [u'nation', u'anti', u'corrupt', u'bodi'] [u'call', u'chang', u'irrespons', u'advertis'] [u'cana', u'win', u'battl', u'bruis', u'pari'] [u'central', u'highland', u'escap', u'major', u'storm', u'damag'] [u'chairman', u'reassur', u'staff', u'shake'] [u'chang', u'afoot', u'south', u'coast', u'fish', u'plan'] [u'charg', u'croc', u'reloc', u'breed', u'program'] [u'church', u'goer', u'forgiv', u'blaze'] [u'civil', u'libertarian', u'rais', u'concern', u'screen'] [u'competit', u'drain', u'lion', u'nathan', u'profit'] [u'conflict', u'report', u'arafat', u'condit'] [u'confus', u'surround', u'vanuatus', u'posit', u'taiwan'] [u'consum', u'affair', u'warn', u'pool', u'build', u'problem'] [u'coron', u'investig', u'sweat', u'lodg', u'death'] [u'costa', u'weigh', u'disput'] [u'coulthard', u'put', u'case', u'william', u'report'] [u'council', u'extend', u'rezon', u'consult', u'time'] [u'council', u'get', u'spend', u'warn'] [u'councillor', u'urg', u'partial', u'clear'] [u'council', u'toll', u'upgrad', u'road'] [u'council', u'investig', u'sport', u'field', u'sit'] [u'council', u'unhappi', u'boundari', u'plan'] [u'court', u'escape', u'get', u'increas', u'sentenc'] [u'court', u'order', u'govt', u'cooper', u'bomb', u'clean'] [u'crash', u'judg', u'provid', u'polic', u'statement'] [u'croc', u'calvari', u'cop', u'match'] [u'cull', u'cut', u'wild', u'number'] [u'democrat', u'search', u'clinton'] [u'desert', u'jenkin', u'give', u'dishonour', u'discharg'] [u'doctor', u'murder', u'charg', u'drop'] [u'doctor', u'mislead', u'medic', u'council', u'suspend'] [u'doomadge', u'get', u'perman', u'doctor'] [u'driver', u'jail', u'friend', u'death'] [u'drought', u'assist', u'extendend'] [u'drought', u'blame', u'disappoint', u'grain', u'harvest'] [u'drug', u'awar', u'campaign', u'target', u'young', u'peopl'] [u'prompt', u'greater', u'water', u'tank', u'demand'] [u'eccleston', u'back', u'south', u'african'] [u'endang', u'wallabi', u'releas', u'worri', u'farmer'] [u'european', u'leader', u'patch', u'divis', u'bush'] [u'famili', u'win', u'damag', u'husband', u'drown'] [u'farmer', u'seek', u'mine', u'concern', u'meet'] [u'farm', u'firm', u'fin', u'jackeroo', u'death'] [u'fast', u'eat', u'moroccan', u'wallet'] [u'favourit', u'win', u'photo', u'oak'] [u'ferguson', u'get', u'ruud', u'respons', u'plea', u'goal'] [u'financi', u'jail', u'client', u'cash', u'scam'] [u'stinger', u'strand'] [u'fisher', u'catch', u'quota', u'worri'] [u'florey', u'caus', u'unknown'] [u'kill', u'afghanistan', u'bomb', u'attack'] [u'french', u'recal', u'hooker', u'wallabi', u'test'] [u'french', u'rugbi', u'boss', u'bankrol', u'world', u'glori'] [u'talk', u'resum', u'elect', u'dust', u'settl'] [u'fund', u'help', u'event'] [u'garden', u'australia', u'staff', u'heel'] [u'leak', u'contain', u'wantirna'] [u'leak', u'repair'] [u'giteau', u'thorn', u'add', u'barbarian', u'squad'] [u'govt', u'consid', u'fund', u'plan'] [u'govt', u'sound', u'highway', u'safeti'] [u'govt', u'vet', u'protest'] [u'gracemer', u'host', u'quarter', u'hors', u'sale'] [u'greec', u'summon', u'ambassador', u'macedonia'] [u'group', u'maintain', u'lake', u'save', u'effort'] [u'gympi', u'water', u'woe', u'upset'] [u'harri', u'scarf', u'apologis', u'mislead'] [u'hauritz', u'look', u'forward', u'turn', u'pitch'] [u'hickss', u'lawyer', u'trial', u'delay'] [u'histor', u'cottag', u'owner', u'face', u'demolit', u'legal'] [u'hotel', u'charg', u'proper', u'mainten'] [u'import', u'keen', u'shanghai', u'darwin', u'trial'] [u'india', u'face', u'tough', u'chase', u'mumbai'] [u'india', u'skittl', u'mumbai', u'track', u'turn', u'nasti'] [u'show', u'sign', u'wind', u'monitor'] [u'irish', u'intern', u'cite', u'alleg', u'racial', u'abus'] [u'jail', u'offic', u'recognis', u'weapon', u'discoveri'] [u'judg', u'reserv', u'decis', u'volker', u'case'] [u'karzai', u'revamp', u'cabinet', u'poll'] [u'katter', u'warn', u'nation', u'compromis'] [u'kemosab', u'racist', u'court', u'rule'] [u'kerri', u'look', u'support', u'forward', u'uniti'] [u'reject', u'broom', u'land', u'deal', u'worri'] [u'kosovar', u'refuge', u'abl', u'appeal', u'visa', u'decis'] [u'krill', u'declin', u'threaten', u'antarct', u'wildlif'] [u'kyli', u'launch', u'line', u'leg'] [u'labor', u'time', u'latham', u'say'] [u'latham', u'urg', u'judg', u'provid', u'blood', u'sampl'] [u'launceston', u'mayor', u'say', u'debt', u'manag'] [u'lehman', u'name', u'ryder', u'captain'] [u'lockyer', u'return', u'franc'] [u'loss', u'squeez', u'citrus', u'properti'] [u'lotteri', u'fund', u'leisur', u'centr'] [u'lyon', u'ruud', u'star', u'perform'] [u'maher', u'predict', u'long', u'test', u'career', u'hauritz'] [u'marin', u'pois', u'fallujah', u'strike'] [u'martin', u'pressur', u'freightlink', u'price', u'rise'] [u'mayor', u'back', u'citrus', u'tree', u'remov', u'plan'] [u'middl', u'east', u'leader', u'offer', u'bush', u'cautious'] [u'milit', u'parad', u'kidnap', u'truck', u'driver', u'video'] [u'miner', u'offer', u'rescu', u'comp', u'safeti', u'assur'] [u'miner', u'park', u'plan', u'blackwat'] [u'minist', u'canva', u'juvenil', u'justic', u'concern'] [u'minist', u'probe', u'hospit', u'treatment', u'claim'] [u'miss', u'tourist', u'possibl', u'spot', u'outback'] [u'mitcham', u'frankston', u'freeway', u'debacl', u'take'] [u'molik', u'continu', u'win', u'form'] [u'moral', u'valu', u'see', u'drawcard', u'bush'] [u'needi', u'access', u'region', u'public', u'hous'] [u'approv', u'compens', u'gaza', u'settler'] [u'pursu', u'quarri', u'blast', u'complaint'] [u'nake', u'canadian', u'jump', u'move', u'qanta'] [u'nation', u'food', u'open', u'takeov'] [u'book', u'warn', u'quarantin', u'risk'] [u'love', u'nest', u'amor', u'wombat'] [u'campus', u'plan', u'richmond', u'vale'] [u'cours', u'promis', u'game'] [u'quick', u'evid', u'rail', u'disput'] [u'rule', u'council', u'author', u'test', u'case'] [u'retain', u'credit', u'rat'] [u'opposit', u'propos', u'develop', u'chang'] [u'oak', u'fashion', u'highlight', u'ladi'] [u'octob', u'profit', u'month', u'sale'] [u'boost', u'daili', u'product'] [u'opposit', u'consid', u'albani', u'convent', u'centr'] [u'opposit', u'hear', u'riverland', u'farm', u'issu'] [u'optus', u'post', u'quarter', u'profit'] [u'oust', u'presid', u'refus', u'leav', u'offic'] [u'pie', u'mcgough'] [u'plan', u'botan', u'garden', u'revamp', u'target', u'tourist'] [u'polic', u'paint', u'sniff'] [u'polic', u'warn', u'monkey', u'bike', u'rider'] [u'pool', u'builder', u'seek', u'water', u'polici'] [u'presid', u'oust', u'spark', u'strife', u'french'] [u'probe', u'launch', u'illeg', u'tree', u'clear'] [u'profit', u'rise', u'news', u'corp', u'move', u'offshor'] [u'proud', u'bush', u'call', u'trust', u'uniti'] [u'public', u'urg', u'book', u'train', u'travel', u'earli'] [u'public', u'urg', u'know', u'asbesto', u'danger'] [u'push', u'maintain', u'rugbi', u'leagu', u'presenc'] [u'qanta', u'emerg', u'land', u'prompt', u'investig'] [u'firi', u'want', u'recognit', u'fight', u'canberra'] [u'quota', u'help', u'boost', u'fish', u'sustain'] [u'ranger', u'safeti', u'audit', u'continu'] [u'region', u'airlin', u'seek', u'major', u'airport', u'access'] [u'region', u'airlin', u'discuss', u'airport', u'woe'] [u'rescu', u'chopper', u'group', u'form', u'trust', u'fund'] [u'research', u'uncov', u'ancient', u'roman', u'cosmet'] [u'retir', u'villag', u'blaze', u'claim', u'woman', u'life'] [u'road', u'seal', u'bring', u'benefit'] [u'roddick', u'safin', u'pari'] [u'roddick', u'plan', u'davi', u'assault', u'plug', u'grand', u'slam'] [u'name', u'ahead', u'lyon', u'scotland', u'test'] [u'saddam', u'evid', u'lose', u'taint', u'say', u'human', u'right'] [u'econom', u'outlook', u'tip', u'growth', u'slowdown'] [u'school', u'asbesto', u'accid', u'prompt', u'urgent', u'review'] [u'senat', u'stress', u'need', u'telstra', u'effici'] [u'seven', u'kill', u'thai', u'unrest'] [u'sever', u'storm', u'blow', u'central', u'australia'] [u'shake', u'increas'] [u'sit', u'day', u'rais', u'democrat'] [u'uae', u'found', u'father', u'assum', u'presid'] [u'south', u'australian', u'urg', u'prepar', u'earthquak'] [u'springbok', u'grand', u'slam'] [u'stanhop', u'hail', u'histor', u'govt'] [u'strong', u'earthquak', u'shake', u'northern', u'japan'] [u'strong', u'show', u'news', u'corp'] [u'studi', u'consid', u'tourism', u'heritag', u'link'] [u'studi', u'find', u'economi', u'withstand', u'steelwork', u'demis'] [u'sweat', u'lodg', u'man', u'condit', u'improv'] [u'sweat', u'lodg', u'survivor', u'deni', u'bizarr', u'practic'] [u'swimmer', u'seek', u'privat', u'prosecut', u'volker'] [u'sydney', u'polic', u'clear', u'serial', u'rap'] [u'sydney', u'polic', u'crack', u'ident', u'fraud', u'ring'] [u'taiwan', u'high', u'court', u'uphold', u'elect'] [u'takeov', u'rumour', u'put', u'demand'] [u'town', u'leav', u'place'] [u'teacher', u'abus', u'complaint', u'rise'] [u'teacher', u'admit', u'underag', u'student'] [u'tiger', u'bullish', u'bail', u'bushrang'] [u'time', u'run', u'oversea', u'adopt', u'applic'] [u'tourism', u'bodi', u'confid', u'improv', u'facil', u'ahead'] [u'tourism', u'campaign', u'gold', u'coast'] [u'track', u'work', u'affect', u'vline', u'servic'] [u'treasur', u'welcom', u'credit', u'rat'] [u'treasuri', u'promis', u'recruit', u'desk', u'work'] [u'ugandan', u'govt', u'agre', u'talk', u'rebel'] [u'scientist', u'propos', u'beagl', u'mission'] [u'union', u'agre', u'construct', u'work', u'long'] [u'union', u'fight', u'virgin', u'blue', u'roster', u'chang'] [u'ambassador', u'encourag', u'latham', u'visit', u'washington'] [u'ambassador', u'step', u'asid', u'year'] [u'elect', u'jitter', u'strengthen', u'aussi', u'dollar'] [u'farmer', u'defend', u'agricultur', u'spend'] [u'iraqi', u'troop', u'prepar', u'fallujah', u'assault'] [u'voter', u'marriag'] [u'buck', u'build', u'approv', u'trend'] [u'warn', u'half', u'chanc', u'play', u'brisban'] [u'warrior', u'clark', u'consid', u'retir'] [u'water', u'board', u'repair', u'swan', u'river', u'sewag', u'pipe'] [u'whale', u'boat', u'tour', u'oper', u'air', u'regul', u'worri'] [u'white', u'powder', u'forc', u'mail', u'centr', u'evacu'] [u'workshop', u'snub', u'plan', u'port', u'hedland'] [u'workshop', u'promot', u'femal', u'leadership'] [u'yachti', u'arriv', u'lord', u'howe', u'mishap'] [u'boost', u'plan', u'alic', u'shop', u'centr'] [u'charg', u'relat', u'dutch', u'film', u'maker'] [u'abetz', u'call', u'region', u'fund', u'inquiri'] [u'abort', u'debat', u'unsettl', u'counsel', u'client'] [u'afghan', u'kidnapp', u'grow', u'impati'] [u'unveil', u'uniform', u'defam', u'law'] [u'airport', u'close', u'plane', u'mishap'] [u'alcan', u'sign', u'deal', u'produc'] [u'clear', u'give', u'white', u'powder', u'scare'] [u'anderson', u'seek', u'futur', u'proof', u'ahead', u'telstra'] [u'crash', u'spark', u'highway', u'revamp', u'call'] [u'arafat', u'life', u'death'] [u'aspir', u'doctor', u'happi', u'doubl'] [u'asset', u'sale', u'blame', u'longer', u'public', u'hous', u'wait'] [u'aussi', u'touch', u'tour', u'championship'] [u'aust', u'hail', u'agreement', u'antarct', u'fish'] [u'aust', u'plane', u'remain', u'ground'] [u'australian', u'univers', u'world', u'best'] [u'weather', u'forecast', u'cray', u'season', u'start'] [u'banker', u'warn', u'person', u'risk', u'constrain', u'board', u'member'] [u'bore', u'arazi', u'ponder', u'retir'] [u'bowditch', u'lead', u'queensland', u'open'] [u'bridg', u'mishap', u'caus', u'traffic', u'chao'] [u'brother', u'acquit', u'armour', u'driver', u'murder'] [u'brundl', u'blundel', u'team', u'man'] [u'bullet', u'play', u'injur', u'feeman'] [u'burn', u'appoint', u'scotland', u'caretak', u'boss'] [u'bush', u'ponder', u'cabinet', u'chang'] [u'canadian', u'elect', u'marri', u'disgruntl', u'american'] [u'chairman', u'dismiss', u'union', u'propos'] [u'chelsea', u'face', u'everton', u'manchest', u'derbi'] [u'chelsea', u'slam', u'weak', u'mutu'] [u'china', u'ban', u'brain', u'surgeri', u'drug', u'addict', u'cure'] [u'citrus', u'canker', u'decis', u'need', u'today', u'truss'] [u'claremont', u'review', u'polic', u'feel', u'public', u'pressur'] [u'clark', u'leav', u'india', u'troubl'] [u'coal', u'group', u'get', u'boost', u'capac', u'distribut'] [u'comic', u'book', u'scene', u'come', u'life', u'movi'] [u'commission', u'cut', u'busi', u'disput', u'cost'] [u'compani', u'rep', u'cast', u'invest', u'forb'] [u'confer', u'focus', u'visitor', u'centr'] [u'constitut', u'chang', u'recognis', u'indigen'] [u'coron', u'flag', u'advers', u'casa', u'rule'] [u'councillor', u'want', u'exempt'] [u'council', u'mull', u'smoke'] [u'council', u'beat', u'water', u'merger', u'plan'] [u'court', u'fin', u'driver', u'hoon'] [u'court', u'grant', u'injuct', u'halt', u'student', u'deport'] [u'crash', u'judg', u'hand', u'blood', u'sampl'] [u'cruis', u'ship', u'limp', u'port'] [u'dairi', u'industri', u'urg', u'boost', u'campus', u'effort'] [u'darfur', u'brink', u'anarchi'] [u'death', u'spark', u'mutton', u'bird', u'protect', u'plan'] [u'defenc', u'say', u'deal', u'sign', u'weapon', u'test'] [u'democrat', u'green', u'merger', u'unlik', u'allison'] [u'dept', u'investig', u'caus', u'accid'] [u'doctor', u'palestinian', u'deni', u'arafat', u'die'] [u'doctor', u'scaremong', u'hospit', u'budget'] [u'doctor', u'border', u'pull', u'iraq'] [u'drug', u'traffick', u'give', u'year', u'jail', u'term'] [u'edwardss', u'wife', u'diagnos', u'cancer'] [u'elect', u'success', u'spark', u'reform'] [u'elland', u'road', u'stage', u'leagu', u'club', u'showpiec'] [u'emot', u'servic', u'farewel', u'minist'] [u'reject', u'blair', u'anti', u'bush', u'claim'] [u'farrel', u'succumb', u'virus', u'ahead', u'nation'] [u'father', u'unhappi', u'wife', u'jail', u'sentenc'] [u'feder', u'polic', u'receiv', u'award', u'bali', u'servic'] [u'fighter', u'pilot', u'mistaken', u'target', u'school'] [u'fire', u'bullet', u'look', u'razorback'] [u'firefight', u'death', u'felt', u'servic'] [u'fletcher', u'reappoint', u'rabbitoh', u'skipper'] [u'east', u'timor', u'governor', u'convict', u'overturn'] [u'forum', u'boost', u'polic', u'public', u'relat'] [u'freeway', u'speed', u'limit', u'chang', u'condit'] [u'fungus', u'threaten', u'tasmanian', u'frog'] [u'gold', u'coast', u'council', u'drop', u'artifici', u'reef', u'plan'] [u'hauritz', u'make', u'breakthrough'] [u'hawk', u'look', u'extend', u'ladder', u'lead'] [u'health', u'author', u'offer', u'water', u'assur'] [u'health', u'worker', u'offer', u'grant', u'boost', u'breast'] [u'help', u'avail', u'struggl', u'farmer'] [u'hewitt', u'reach', u'pari', u'quarter'] [u'hockey', u'plan', u'hurt', u'council', u'financ'] [u'hollywood', u'go', u'onlin', u'file', u'swapper'] [u'hundr', u'battl', u'firework', u'factori', u'blaze'] [u'hunter', u'valley', u'face', u'obes', u'epidem'] [u'iaea', u'chief', u'deni', u'damag', u'bush', u'campaign'] [u'immigr', u'dept', u'appeal', u'man', u'releas'] [u'independ', u'bodi', u'complet', u'ranger', u'audit'] [u'india', u'australia', u'even', u'pois', u'lunch'] [u'india', u'notch', u'memor', u'mumbai'] [u'indonesian', u'face', u'court', u'bomb', u'workshop'] [u'insur', u'council', u'criticis', u'govt'] [u'insur', u'report', u'offer', u'littl', u'support', u'premium'] [u'israel', u'continu', u'block', u'arafat', u'jerusalem', u'burial'] [u'isra', u'tank', u'shell', u'kill', u'gaza'] [u'israel', u'tighten', u'secur'] [u'ivori', u'coast', u'govt', u'bomb', u'rebel', u'hold', u'citi'] [u'jackson', u'lose', u'remov', u'prosecutor'] [u'jone', u'stump', u'scotland'] [u'kalgoorli', u'extend', u'christma', u'trade', u'hour'] [u'karzai', u'vow', u'stamp', u'afghan', u'militia'] [u'grow', u'sperm', u'father', u'babi', u'mice'] [u'labor', u'endors', u'hardi', u'asbesto', u'victim', u'legisl'] [u'labor', u'urg', u'govt', u'step', u'reconcili', u'effort'] [u'langer', u'hayden', u'rewrit', u'record', u'book'] [u'leader', u'pitch', u'job', u'south', u'australian'] [u'lebanes', u'hostag', u'free', u'return', u'home'] [u'lgaq', u'warn', u'council', u'exempt', u'scam'] [u'lightn', u'kill', u'nigerian', u'coach'] [u'locust', u'spray', u'continu', u'south'] [u'macedonia', u'recognit', u'infuri', u'greec'] [u'women', u'view', u'ultrasound', u'abort'] [u'sign', u'brown', u'deal'] [u'marin', u'await', u'order', u'fallujah', u'assault'] [u'market', u'finish', u'week', u'posit', u'note'] [u'martin', u'highlight', u'ghan', u'shortcom'] [u'melbourn', u'switch', u'doubl', u'book', u'crusad'] [u'jail', u'valley', u'bash'] [u'midwif', u'caus', u'babi', u'death'] [u'minist', u'promis', u'crackdown', u'develop', u'site'] [u'minist', u'reject', u'bushfir', u'claim'] [u'minist', u'wont', u'specul', u'schooli'] [u'mobil', u'internet', u'grow', u'telecom', u'profit'] [u'mogg', u'stay', u'canberra'] [u'molik', u'continu', u'unbeaten'] [u'question', u'moor', u'applic', u'reject'] [u'murder', u'charg', u'drop', u'shoot', u'case'] [u'mutu', u'suspend', u'seven', u'month'] [u'naturopath', u'sweat', u'lodg', u'warn', u'danger'] [u'newcastl', u'doubl', u'stop', u'dynamo'] [u'inshor', u'fish', u'zone', u'forc'] [u'north', u'open'] [u'vaccin', u'halt', u'spread'] [u'nicotin', u'sensit', u'mice', u'smoke', u'research'] [u'jail', u'term', u'kill', u'autist'] [u'fight', u'river', u'weed', u'infest'] [u'odd', u'centenarian', u'collect', u'birthday'] [u'price', u'slide', u'resum'] [u'opera', u'hous', u'trespass', u'face', u'penalti'] [u'opposit', u'accus', u'govt', u'reduc', u'parliament'] [u'opposit', u'call', u'polic', u'station', u'fund'] [u'opposit', u'bunburi', u'focus'] [u'palestinian', u'dismiss', u'fear', u'power', u'struggl'] [u'palestinian', u'secur', u'servic', u'alert'] [u'palestinian', u'pray', u'arafat', u'aqsa', u'mosqu'] [u'parkinson', u'go', u'brazil'] [u'parkinson', u'studi', u'shed', u'light', u'dopamin', u'learn'] [u'peugeot', u'citroen', u'ralli', u'race'] [u'polic', u'chase', u'grog', u'runner'] [u'polic', u'seek', u'suspect', u'church', u'blaze'] [u'politician', u'request', u'limit', u'icac', u'power'] [u'poll', u'show', u'brack', u'govt', u'lose', u'support'] [u'port', u'author', u'beat', u'bomb', u'compo', u'chanc'] [u'port', u'kembla', u'take', u'deliveri', u'wave', u'energi', u'power'] [u'powder', u'indentifi', u'navi', u'base', u'scare'] [u'power', u'author', u'kimberley', u'delay'] [u'problem', u'squeez', u'fruit', u'firm', u'profit'] [u'project', u'offic', u'boost', u'school', u'retent', u'rat'] [u'prolif', u'spammer', u'give', u'year', u'jail'] [u'public', u'urg', u'tree', u'vandal'] [u'puppi', u'farm', u'owner', u'reject', u'cruelti', u'claim'] [u'push', u'region', u'psychiatrist'] [u'putin', u'sign', u'kyoto', u'protocol'] [u'race', u'club', u'secur', u'melbourn', u'meet'] [u'rain', u'band', u'bring', u'good', u'fall', u'western'] [u'rain', u'delay', u'minist', u'visit', u'tarkin'] [u'rain', u'expect', u'worsen', u'farmer', u'prospect'] [u'rain', u'fail', u'lift', u'sydney', u'level'] [u'rainfal', u'fail', u'lift', u'water', u'suppli'] [u'rain', u'offer', u'relief', u'parch', u'farmer'] [u'rain', u'late', u'farmer'] [u'raul', u'close', u'record', u'real', u'relief'] [u'remot', u'road', u'give', u'facelift'] [u'rental', u'hous', u'expens', u'worker'] [u'rocket', u'kill', u'children', u'iraq'] [u'rspca', u'happi', u'cruelti', u'rule'] [u'africa', u'wide', u'protest', u'aid', u'drug'] [u'scot', u'leav', u'second', u'stringer', u'wallabi'] [u'search', u'miss', u'nurs', u'home', u'resid'] [u'secur', u'guard', u'charg', u'elder', u'man', u'death'] [u'sehwag', u'indian', u'reviv'] [u'seven', u'network', u'poor', u'rat', u'prompt', u'share', u'dive'] [u'smart', u'bomb', u'unwelcom', u'smart', u'state'] [u'smyth', u'shuffl', u'frontbench'] [u'snowi', u'angler', u'prize'] [u'social', u'plan', u'target', u'specialis', u'servic'] [u'stanhop', u'call', u'self', u'govern', u'review'] [u'state', u'jam', u'hardi', u'law'] [u'basil', u'scratch'] [u'kilda', u'pier', u'arsonist', u'jail'] [u'strand', u'highlight', u'need', u'servic'] [u'strike', u'gold', u'miner', u'work'] [u'tabcorp', u'consolid', u'casino', u'manag', u'effort'] [u'tah', u'sign', u'oyoung', u'cover', u'whitak'] [u'talk', u'avert', u'virgin', u'blue', u'strike'] [u'ferri', u'cut', u'cross'] [u'offic', u'net', u'near', u'crackdown', u'rorter'] [u'tendulkar', u'laxman', u'lead', u'recoveri'] [u'tesk', u'place', u'japan'] [u'dead', u'iraq', u'bomb'] [u'redeploy', u'troop', u'kill', u'iraq'] [u'tourism', u'impact', u'marin', u'mammal', u'prompt', u'review'] [u'track', u'declar', u'safe', u'close', u'spring', u'carniv'] [u'trial', u'help', u'address', u'farmer', u'frost', u'woe'] [u'truck', u'accid', u'claim', u'pedestrian', u'life'] [u'truck', u'crash', u'fatal', u'local', u'accid'] [u'trucki', u'get', u'suspend', u'jail', u'term'] [u'tszyu', u'aim', u'shut', u'sharmba'] [u'tourist', u'bodi', u'fli', u'home'] [u'approv', u'australian', u'resolut', u'weapon'] [u'uncertainti', u'surround', u'citrus', u'canker', u'plan'] [u'union', u'dump', u'labor', u'improv', u'imag'] [u'union', u'promis', u'coal', u'mine', u'accid', u'crackdown'] [u'union', u'want', u'esso', u'input', u'disput'] [u'trial', u'smart', u'bomb', u'aust', u'exercis'] [u'recognis', u'macedonia', u'offici'] [u'syria', u'embassi', u'temporarili', u'close'] [u'stock', u'rise', u'price', u'fall'] [u'warn', u'immin', u'terrorist', u'attack', u'uzbekistan'] [u'vanuatu', u'push', u'friendship', u'taiwan'] [u'venus', u'surviv', u'scare', u'philadelphia'] [u'villeneuv', u'check', u'sauber'] [u'voter', u'reject', u'english', u'devolut'] [u'farmer', u'welcom', u'drought', u'relief', u'plan'] [u'policeman', u'admit', u'possess', u'child', u'porn'] [u'propos', u'drought', u'relief', u'fund', u'overhaul'] [u'score', u'china', u'back', u'iron', u'project'] [u'watercolour', u'collect', u'excit', u'galleri'] [u'watson', u'keen', u'impress', u'bull'] [u'wheat', u'deal', u'boon', u'farmer'] [u'wilkinson', u'canada', u'match'] [u'woman', u'convict', u'hire', u'hitman', u'appeal'] [u'woman', u'die', u'wander', u'nurs', u'home'] [u'young', u'patriot', u'destroy', u'ivori', u'coast', u'media', u'offic'] [u'yudhoyono', u'pledg', u'action', u'illeg', u'logger'] [u'million', u'mice', u'invad', u'bulgarian', u'region'] [u'urg', u'garden', u'program'] [u'afghan', u'milit', u'hope', u'hostag', u'talk'] [u'ahm', u'claim', u'bangladesh', u'scare', u'kiwi'] [u'alcoa', u'record', u'eighth', u'refineri', u'spill'] [u'allawi', u'reject', u'annan', u'fallujah', u'warn'] [u'allawi', u'urg', u'nato', u'train', u'support'] [u'annan', u'warn', u'fallujah', u'attack', u'undermin'] [u'arafat', u'condit', u'deterior'] [u'atsic', u'attack', u'nation', u'indigen', u'council'] [u'aussi', u'squash', u'champ', u'british', u'final'] [u'aussi', u'lose', u'battl'] [u'australian', u'troop', u'shoot', u'baghdad'] [u'author', u'issu', u'rubella', u'vaccin', u'remind'] [u'beatti', u'disturb', u'liber', u'fraud'] [u'beck', u'comeback', u'trail'] [u'black', u'watch', u'relat', u'troop', u'withdraw'] [u'brando', u'link', u'jackson', u'alleg', u'abduct'] [u'carol', u'come', u'cost', u'year'] [u'chilean', u'militari', u'take', u'blame', u'human', u'right'] [u'china', u'coal', u'blast', u'kill'] [u'citi', u'boss', u'fin', u'refere', u'insult'] [u'crayfish', u'stock', u'remain', u'stabl'] [u'death', u'toll', u'rise', u'samarra', u'violenc'] [u'disillus', u'american', u'zealand'] [u'dutch', u'navi', u'seiz', u'million', u'cocain', u'haul'] [u'earli', u'inspect', u'clear', u'flemington', u'race'] [u'emerg', u'talk', u'expect', u'ivori', u'coast', u'violenc'] [u'farmer', u'group', u'anger', u'propos', u'landlin'] [u'fear', u'grow', u'hostag', u'afghanistan'] [u'financi', u'stabil', u'leagu', u'success', u'oneil'] [u'freeman', u'return', u'blunt', u'razor'] [u'communiti', u'brave', u'weather', u'march'] [u'georgia', u'commit', u'troop', u'iraq'] [u'govt', u'announc', u'indigen', u'council'] [u'govt', u'deni', u'aborigin', u'educ', u'crisi'] [u'govt', u'urg', u'tenant', u'collect', u'unclaim', u'bond', u'money'] [u'gregan', u'call', u'longer', u'break'] [u'haa', u'hold', u'halfway', u'lead', u'tiger', u'loom'] [u'readi', u'buri', u'feet'] [u'henri', u'say', u'wenger'] [u'hurrican', u'rebuild', u'fuel', u'growth'] [u'australia', u'admit', u'hewitt'] [u'intern', u'perspect', u'inform', u'stem', u'cell'] [u'investig', u'unearth', u'bosnian', u'mass', u'grave'] [u'iran', u'win', u'back', u'china', u'nuclear', u'stand'] [u'iraqi', u'rebel', u'kill', u'helicopt', u'strike'] [u'israel', u'fear', u'violenc', u'arafat'] [u'israel', u'say', u'troop', u'kill', u'gaza', u'milit'] [u'ivorian', u'militari', u'renew', u'attack', u'rebel', u'french'] [u'journalist', u'death', u'fault', u'armi'] [u'king', u'overcom', u'breaker', u'pirat', u'stun', u'hawk'] [u'kiwi', u'happi', u'wear', u'underdog'] [u'late', u'rain', u'harvest', u'difficult'] [u'legal', u'ecstasi', u'test', u'seek', u'danc', u'fest'] [u'local', u'govern', u'campaign', u'elect'] [u'kill', u'bundaberg', u'speed', u'boat', u'accid'] [u'mauresmo', u'oust', u'venus', u'philadelphia'] [u'merck', u'disput', u'vioxx', u'claim'] [u'midwiv', u'meet', u'discuss', u'crisi'] [u'moor', u'tell', u'democrat', u'look', u'bright'] [u'council', u'need', u'long', u'term', u'support', u'atsic'] [u'newspap', u'report', u'vote', u'error', u'ohio'] [u'opposit', u'back', u'shaw', u'judgement'] [u'palestinian', u'faction', u'meet', u'prevent', u'post'] [u'peruvian', u'maoist', u'trial', u'throw', u'chao'] [u'pitch', u'insult', u'player'] [u'polic', u'defend', u'dead', u'chase', u'record'] [u'polic', u'discov', u'bodi', u'miss', u'woman'] [u'polic', u'diver', u'girl', u'bodi'] [u'polic', u'investig', u'liber', u'fraud', u'alleg'] [u'policeman', u'die', u'accid', u'injuri'] [u'policeman', u'face', u'dismiss', u'child', u'porn'] [u'polic', u'releas', u'detail', u'fail', u'abduct', u'attempt'] [u'pont', u'blast', u'mumbai', u'pitch'] [u'pont', u'condemn', u'mumbai', u'pitch'] [u'radar', u'upgrad', u'assist', u'storm', u'predict'] [u'rare', u'bird', u'success', u'migrat', u'tasmania'] [u'rare', u'dolphin', u'autopsi', u'excit', u'scientist'] [u'rebel', u'attack', u'militari', u'camp', u'kashmir', u'dead'] [u'republican', u'seek', u'australian', u'vote'] [u'rocket', u'launch', u'satellit', u'florida'] [u'russian', u'nuclear', u'incid', u'caus', u'panic'] [u'russian', u'product', u'million', u'tonn'] [u'safin', u'hammer', u'hewitt', u'pari'] [u'samarra', u'bomb', u'kill', u'wind'] [u'santini', u'quit', u'tottenham'] [u'scientist', u'track', u'urban', u'crocodil', u'movement'] [u'search', u'girl', u'wash', u'road'] [u'seven', u'fresh', u'violenc', u'indian', u'minist'] [u'sharapova', u'exact', u'reveng', u'molik'] [u'cuddl', u'emir', u'stake', u'boilov'] [u'snowsil', u'prim', u'noosa', u'triathlon'] [u'socceroo', u'great', u'warren', u'die'] [u'sorenstam', u'streak', u'ahead', u'japan'] [u'spirit', u'tasmania', u'blame', u'airfar', u'cut'] [u'statement', u'call', u'hassan', u'releas'] [u'stem', u'cell', u'law', u'debat', u'intern', u'confer'] [u'sweat', u'lodg', u'facilit', u'deni', u'danger'] [u'tallest', u'build', u'hold', u'despit', u'object'] [u'terror', u'charg', u'expect', u'film', u'maker', u'death'] [u'tiger', u'score', u'easi', u'bushrang'] [u'tiger', u'hard', u'target'] [u'tszyu', u'readi', u'care', u'unfinish', u'busi'] [u'share', u'alic', u'prize', u'honour'] [u'confid', u'takeov', u'impact'] [u'union', u'demand', u'cut', u'consult'] [u'suspend', u'ivori', u'coast', u'oper', u'amidst', u'violenc'] [u'unvers', u'offici', u'miss'] [u'artilleri', u'pound', u'fallujah'] [u'counter', u'terror', u'chief', u'resign'] [u'detail', u'punish', u'guantanamo', u'interrog'] [u'give', u'guantanamo', u'human', u'right', u'deadlin'] [u'market', u'continu', u'post', u'bush', u'victori', u'surg'] [u'troop', u'tell', u'civilian', u'flee', u'fallujah'] [u'troop', u'urg', u'resid', u'leav', u'fallujah'] [u'oppos', u'ecstasi', u'test'] [u'victorian', u'town', u'mourn', u'polic', u'offic', u'death'] [u'victori', u'put', u'smile', u'indian', u'face'] [u'polic', u'expect', u'arrest', u'follow', u'drug', u'raid'] [u'window', u'close', u'fallujah', u'settlement', u'allawi'] [u'yass', u'matern', u'ward', u'close'] [u'decid', u'alic', u'broadcast', u'licenc', u'year'] [u'arafat', u'condit', u'critic', u'leader', u'urg', u'uniti'] [u'arafat', u'condit', u'unchang'] [u'arafat', u'death', u'peac', u'process'] [u'arm', u'gang', u'kill', u'policemen', u'iraq'] [u'armstrong', u'hint', u'miss', u'tour'] [u'atsic', u'figur', u'say', u'south', u'miss'] [u'aussi', u'squash', u'star', u'complet', u'open', u'doubl'] [u'australian', u'face', u'fire', u'squad', u'vietnam'] [u'australia', u'spearhead', u'seabird', u'protect', u'campaign'] [u'beachsid', u'council', u'owner', u'short', u'leash'] [u'beatti', u'move', u'quell', u'develop', u'fear'] [u'beckham', u'eager', u'play', u'shoot', u'owen'] [u'bird', u'research', u'hope', u'parrot', u'releas'] [u'black', u'watch', u'command', u'fear', u'baghdad'] [u'black', u'watch', u'move', u'insurg', u'suppli'] [u'boomer', u'cruis', u'victori', u'lynx'] [u'bull', u'destroy', u'redback', u'awesom', u'display'] [u'burma', u'accus', u'corrupt'] [u'bush', u'reach', u'foreign', u'leader'] [u'caravan', u'park', u'owner', u'prepar', u'boom'] [u'blast', u'kill', u'west', u'bank', u'milit'] [u'chariti', u'call', u'generos'] [u'chelsea', u'palac', u'hold', u'gunner'] [u'china', u'claim', u'panda', u'breed', u'breakthrough'] [u'cola', u'take', u'pest', u'indian', u'farmer'] [u'commonwealth', u'game', u'campaign', u'unveil'] [u'concern', u'rais', u'exclus', u'indigen'] [u'construct', u'crackdown', u'christma'] [u'councillor', u'launch', u'elect', u'campaign'] [u'cricket', u'home', u'histor', u'seri'] [u'death', u'toll', u'rise', u'train', u'derail'] [u'domest', u'violenc', u'program', u'see', u'jump', u'prosecut'] [u'domest', u'violenc', u'servic', u'tragic', u'state'] [u'downer', u'hint', u'troop', u'pull', u'iraqi', u'armi'] [u'downer', u'say', u'palestinian', u'need', u'control', u'milit'] [u'french', u'troop', u'kill', u'ivori', u'coast', u'violenc'] [u'chief', u'push', u'alarm', u'escap', u'blaze'] [u'destroy', u'motor', u'east', u'coast'] [u'fleme', u'link', u'match', u'claim', u'indian', u'booki'] [u'fond', u'memori', u'drought', u'break', u'tour'] [u'captain', u'join', u'pitch', u'inquiri'] [u'franc', u'send', u'troop', u'ivori', u'coast'] [u'french', u'reinforc', u'arriv', u'ivori', u'coast'] [u'french', u'school', u'expel', u'sikh'] [u'futur', u'australia', u'continu', u'bright'] [u'galleri', u'disappoint', u'artist', u'absenc'] [u'ganguli', u'return', u'pakistan', u'dayer'] [u'german', u'edg', u'hockeyroo'] [u'govt', u'challeng', u'reveal', u'abort', u'plan'] [u'govt', u'commit', u'redevelop', u'ocean', u'reef', u'marina'] [u'great', u'britain', u'fight', u'sink', u'kiwi'] [u'gunman', u'kill', u'isra', u'shoot'] [u'hakkinen', u'merced'] [u'hope', u'fade', u'wash', u'yarra', u'river'] [u'india', u'test', u'fire', u'nuclear', u'capabl', u'missil'] [u'insurg', u'invit', u'media', u'emb', u'offens'] [u'internet', u'near', u'record', u'level'] [u'investig', u'comb', u'wreckag', u'british', u'train', u'crash'] [u'iraqi', u'interim', u'govern', u'declar', u'martial'] [u'iraqi', u'offic', u'desert', u'fallujah', u'battl', u'plan'] [u'john', u'holland', u'secur', u'perth', u'mandurah', u'contract'] [u'want', u'spur', u'time'] [u'jone', u'slam', u'scottish', u'tactic'] [u'kidnapp', u'afghan', u'day', u'free', u'taliban'] [u'aim', u'reclaim', u'test', u'spot'] [u'locust', u'say'] [u'lightn', u'hit', u'qanta', u'jet'] [u'lobbi', u'seek', u'singl', u'public', u'work', u'unit'] [u'mandurah', u'get', u'tourism', u'gong'] [u'hospitalis', u'drive', u'shoot'] [u'martyn', u'move', u'test', u'rank'] [u'matern', u'coalit', u'pressur', u'govt', u'midwif'] [u'mauresmo', u'philli', u'final'] [u'mix', u'tourism', u'news'] [u'mutu', u'say', u'sorri', u'chelsea', u'fan'] [u'nomin', u'close', u'search', u'archbishop'] [u'scud', u'warn', u'coach'] [u'organis', u'extend', u'sydney', u'hobart', u'nomin'] [u'palestinian', u'leader', u'decid', u'order', u'plan'] [u'palestinian', u'urg', u'conflict'] [u'paralympian', u'offer', u'speedi', u'wheelchair'] [u'penguin', u'monitor', u'return', u'bicheno'] [u'pirat', u'scuttl', u'eminem', u'releas', u'plan'] [u'polic', u'appeal', u'help', u'attack', u'clergyman'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'recov', u'bodi', u'second', u'drown', u'girl'] [u'polic', u'search', u'yarra', u'miss'] [u'polic', u'identifi', u'drown'] [u'preliminari', u'nuclear', u'deal', u'reach', u'iran', u'say'] [u'liber', u'deni', u'fraud', u'investig'] [u'railcorp', u'train', u'worker', u'deal', u'passeng'] [u'rain', u'caus', u'havoc', u'road'] [u'rampant', u'itali', u'crush', u'canada'] [u'rare', u'dolphin', u'male', u'scientist'] [u'redback', u'struggl', u'bull'] [u'report', u'say', u'region', u'need', u'infrastructur', u'surviv'] [u'inspector', u'give', u'drug', u'bust', u'power'] [u'safin', u'eye', u'pari', u'titl'] [u'scientist', u'challeng', u'hobbit', u'theori'] [u'search', u'resum', u'bodi', u'drown', u'girl'] [u'secur', u'council', u'denounc', u'ivorian', u'attack'] [u'silver', u'line', u'south', u'east', u'get', u'drench'] [u'soccer', u'world', u'mourn', u'captain', u'socceroo'] [u'sorenstam', u'achiev', u'histor', u'peat', u'japan'] [u'springbok', u'edg', u'past', u'wale'] [u'statement', u'claim', u'dead', u'samarra', u'attack'] [u'student', u'identifi', u'cyclon', u'safe', u'tree'] [u'sudanes', u'govt', u'baulk', u'peac', u'protocol'] [u'territori', u'mango', u'ship'] [u'test', u'improv', u'cancer', u'surviv', u'rat'] [u'tiger', u'readi', u'pounc'] [u'torrenti', u'rain', u'hit', u'south', u'east'] [u'tour', u'oper', u'unconcern', u'ferri', u'cut'] [u'train', u'derail', u'kill', u'southern', u'england'] [u'tszyu', u'crush', u'mitchel', u'retain', u'world', u'titl'] [u'tyson', u'chase', u'fight'] [u'franc', u'demand', u'ivori', u'coast', u'violenc'] [u'forc', u'pound', u'fallujah', u'destroy', u'hospit'] [u'govt', u'warn', u'power', u'station', u'privatis'] [u'wallabi', u'scottish', u'challeng'] [u'walton', u'snowsil', u'claim', u'win', u'noosa'] [u'youth', u'drug', u'alcohol', u'program'] [u'gold', u'oper', u'soon'] [u'aborigin', u'murder', u'trial', u'get', u'websit', u'remembr'] [u'access', u'woe', u'hamper', u'bushfir', u'effort'] [u'account', u'jail', u'warn', u'illeg'] [u'actress', u'shock', u'ravag', u'darfur'] [u'act', u'workforc', u'skill', u'lead', u'countri'] [u'actu', u'say', u'costello', u'wrong', u'wage', u'rise', u'impact'] [u'actu', u'seek', u'minimum', u'wage', u'rise'] [u'allawi', u'ditch', u'fallujah', u'talk'] [u'marathon', u'runner', u'deserv', u'medal'] [u'qaeda', u'video', u'show', u'suicid', u'attack', u'british'] [u'amnesti', u'report', u'detail', u'solomon', u'abus'] [u'anger', u'plan', u'rat', u'fund', u'mayor'] [u'anti', u'nuclear', u'protest', u'train', u'franc'] [u'arafat', u'wife', u'critic', u'palestinian', u'deputi'] [u'asbesto', u'licens', u'guidelin', u'chang'] [u'australia', u'choos', u'grass', u'austrian'] [u'australian', u'divorc'] [u'australian', u'continu', u'domin', u'gillespi'] [u'australia', u'continu', u'domin', u'gillespi'] [u'ban', u'mutu', u'offer', u'romania', u'coach'] [u'bishop', u'say', u'elect', u'result', u'voter', u'want'] [u'boati', u'urg', u'cyclon', u'readi'] [u'bourdai', u'captur', u'champ', u'crown'] [u'critic', u'truck'] [u'bundi', u'beat', u'skin', u'cancer'] [u'bush', u'plan', u'marriag'] [u'bushrang', u'tiger'] [u'caligne', u'girl', u'design', u'coin'] [u'boost', u'region', u'council', u'infrastructur'] [u'govt', u'incent', u'draw', u'teacher'] [u'camera', u'rais', u'revenu', u'lower', u'road', u'toll'] [u'cane', u'farmer', u'cop', u'land', u'clear', u'fine'] [u'bomb', u'kill', u'baghdad'] [u'carr', u'interven', u'rail', u'disput'] [u'central', u'charl', u'perkin', u'carniv'] [u'child', u'safeti', u'worker', u'brush', u'counsel', u'skill'] [u'chines', u'offici', u'face', u'punish', u'babi', u'death'] [u'church', u'shock', u'attack', u'anglican', u'dean'] [u'council', u'impos', u'limit', u'mckenzi', u'river', u'bridg'] [u'council', u'eas', u'water', u'ban'] [u'council', u'jam', u'hardi', u'boycott'] [u'council', u'urg', u'delay', u'industri', u'plan'] [u'counsel', u'mundubbera', u'student', u'sister'] [u'countri', u'energi', u'announc', u'merger', u'plan'] [u'court', u'approv', u'esso', u'compens'] [u'crayfish', u'number', u'stabilis', u'concern', u'remain'] [u'croc', u'maintain', u'home', u'advantag'] [u'croc', u'warn', u'follow', u'fish', u'spot', u'captur'] [u'celebr', u'flow'] [u'dalla', u'star', u'howard', u'keel', u'die'] [u'darwin', u'mayor', u'disagre', u'council', u'hardi', u'boycott'] [u'depart', u'say', u'standard', u'test', u'limit', u'fine'] [u'detent', u'centr', u'chang', u'alter', u'detaine', u'behaviour'] [u'downpour', u'boost', u'novemb', u'rainfal', u'figur'] [u'downpour', u'wash', u'away', u'profit'] [u'dutch', u'islam', u'school', u'blast'] [u'east', u'coast', u'dredg', u'start', u'christma'] [u'economist', u'warn', u'rate', u'rise', u'like'] [u'effort', u'help', u'reduc', u'cherbourg', u'child', u'abus'] [u'email', u'scammer', u'jail', u'year'] [u'employe', u'urg', u'wari', u'work', u'agreement'] [u'make', u'footbal', u'blatter'] [u'ergon', u'readi', u'storm', u'challeng'] [u'eurobodalla', u'shin', u'train', u'award'] [u'farina', u'base', u'europ'] [u'farmer', u'hope', u'rain'] [u'farmer', u'need', u'greenhous', u'studi'] [u'feder', u'parliament', u'place', u'abort'] [u'firefight', u'battl', u'contain', u'nation', u'park', u'blaze'] [u'time', u'show', u'rope'] [u'fischer', u'want', u'camera', u'stuart', u'highway'] [u'foreign', u'fighter', u'parad', u'iraq', u'televis'] [u'forest', u'group', u'dismiss', u'call', u'scrap'] [u'forum', u'gaug', u'public', u'sentiment', u'educ'] [u'kill', u'south', u'african', u'prison', u'clash'] [u'freight', u'train', u'crash', u'abandon'] [u'gatton', u'mayor', u'see', u'benefit', u'ipswich', u'allianc'] [u'glori', u'snare', u'young', u'leagu'] [u'goal', u'unit', u'stumbl'] [u'golden', u'grove', u'win', u'underground', u'rescu', u'event'] [u'govt', u'quiz', u'speed', u'camera', u'revenu'] [u'govt', u'say', u'furnitur', u'plan', u'boost', u'job'] [u'locat', u'asbesto', u'dump'] [u'griffith', u'rip', u'bushrang'] [u'hauritz', u'confid', u'keep', u'test', u'spot'] [u'hawk'] [u'health', u'group', u'beat', u'govt', u'pledg'] [u'health', u'manag'] [u'henri', u'race', u'melbourn', u'world', u'meet'] [u'hezbollah', u'send', u'drone', u'israel'] [u'high', u'hop', u'latest', u'wild', u'bait', u'scheme'] [u'hockeyroo', u'suffer', u'second', u'champion', u'loss'] [u'hope', u'disput', u'notif', u'stop', u'ax', u'rural'] [u'hundr', u'home', u'damag', u'rainstorm'] [u'indigen', u'council', u'member', u'urg', u'stay', u'touch'] [u'indigen', u'hunt', u'spark', u'dugong', u'extinct', u'fear'] [u'internet', u'child', u'porn', u'fuel', u'abus'] [u'iraqi', u'financ', u'minist', u'surviv', u'bomb', u'attack'] [u'iraqi', u'give', u'ahead', u'fallujah', u'assault'] [u'ivorian', u'presid', u'appeal', u'calm'] [u'rise'] [u'john', u'train'] [u'like', u'spur', u'boss'] [u'jone', u'urg', u'wallabi', u'maintain', u'intens'] [u'kalgoorli', u'support', u'indigen', u'council'] [u'killer', u'request', u'lower', u'secur', u'studi'] [u'lehmann', u'keen', u'play', u'test', u'cricket'] [u'lennon', u'await', u'report', u'spirit', u'tasmania'] [u'librari', u'transact', u'centr', u'fund'] [u'lobbi', u'unhappi', u'possibl', u'landlin'] [u'local', u'public', u'educ'] [u'macgil', u'hope', u'test', u'recal'] [u'jail', u'attempt'] [u'man', u'suicid', u'threat', u'danger', u'polic'] [u'market', u'slip'] [u'mauresmo', u'retain', u'philadelphia', u'titl'] [u'mayor', u'lobbi', u'state', u'bathhous', u'fund'] [u'mayor', u'reject', u'councillor', u'rise'] [u'mayor', u'seek', u'defenc', u'minist', u'meet'] [u'mclinden', u'quit', u'raider'] [u'mechan', u'woe', u'fatal', u'speed', u'boat', u'mishap'] [u'melbourn', u'water', u'catchment', u'half'] [u'arrest', u'dutch', u'religi', u'tension', u'increas'] [u'milat', u'say', u'brother', u'innoc'] [u'manag', u'secur', u'award'] [u'minist', u'gather', u'nuclear', u'secur', u'talk'] [u'mitsubishi', u'motor', u'half', u'loss'] [u'montella', u'strike', u'roma', u'stall', u'milan'] [u'seek', u'black', u'river', u'water', u'fund'] [u'morgan', u'prepar', u'mayor', u'elect'] [u'nelson', u'fear', u'nation', u'literaci'] [u'pool', u'plan', u'offer', u'dongara', u'save'] [u'chang', u'iraq', u'commit', u'downer'] [u'loss', u'follow', u'credit', u'union', u'merger'] [u'plan', u'probe', u'tweed', u'shire', u'polit', u'donat'] [u'nuclear', u'watchdog', u'warn', u'global', u'danger'] [u'complet', u'bangladesh', u'sweep'] [u'welcom', u'surg', u'migrat'] [u'win', u'trade', u'disput'] [u'oakey', u'airport', u'passeng', u'flight'] [u'opposit', u'educ', u'question', u'literaci', u'review'] [u'owen', u'find', u'real', u'second'] [u'palestinian', u'chief', u'visit', u'arafat'] [u'palestinian', u'leader', u'visit', u'arafat'] [u'palestinian', u'isra', u'kill', u'fight'] [u'pirat', u'win', u'formula'] [u'pitcairn', u'get', u'femal', u'mayor'] [u'planet', u'urg', u'better', u'recycl', u'effort'] [u'polic', u'teen', u'crash', u'victim'] [u'polic', u'search', u'gunmen', u'random', u'shoot'] [u'polic', u'start', u'search', u'unsolv', u'doubl', u'murder'] [u'polic', u'capsicum', u'spray', u'outsid', u'mildura', u'nightspot'] [u'pollut', u'cold', u'snap', u'link', u'heart', u'death'] [u'price', u'rise', u'follow', u'fish', u'quota'] [u'euthanasia', u'group', u'plan', u'peac', u'pill', u'workshop'] [u'professor', u'propos', u'collect', u'fin'] [u'public', u'input', u'seek', u'educ', u'plan'] [u'quak', u'forum', u'consid', u'build', u'method'] [u'radcliff', u'bounc', u'marathon'] [u'radcliff', u'bounc'] [u'rail', u'station', u'work', u'derail', u'train', u'time'] [u'rain', u'affect', u'burn', u'off', u'time'] [u'see', u'press', u'need', u'rat', u'rise'] [u'reason', u'aust', u'soldier', u'shoot', u'iraqi', u'unclear'] [u'report', u'find', u'european', u'bird', u'speci', u'face', u'extinct'] [u'research', u'show', u'children', u'parent', u'sick'] [u'robinson', u'england', u'captainci', u'report'] [u'roger', u'investig', u'field', u'incid'] [u'russel', u'bomber', u'seek', u'transfer'] [u'safin', u'sweep', u'past', u'stepanek', u'pari', u'crown'] [u'screen', u'socceroo', u'game'] [u'scheme', u'consid', u'passiv', u'smoke', u'impact'] [u'scott', u'allenbi', u'confirm', u'australian', u'master'] [u'seventh', u'person', u'die', u'british', u'train', u'crash'] [u'shaw', u'carr'] [u'snooker', u'great', u'eddi', u'charlton', u'die'] [u'springborg', u'warn', u'beatti', u'street', u'deceit'] [u'stab', u'sentenc', u'short'] [u'storm', u'caus', u'hail', u'damag', u'power', u'loss', u'south', u'east'] [u'storm', u'lash', u'second'] [u'taiwan', u'stag', u'mock', u'invas', u'drill'] [u'aborigin', u'lack', u'represent'] [u'tent', u'embassi', u'observ', u'shellcov', u'work'] [u'test', u'selector', u'face', u'bat', u'line', u'dilemma'] [u'test', u'highlight', u'good', u'townsvill', u'qualiti'] [u'thousand', u'sign', u'petit', u'kuranda', u'road'] [u'weekend', u'accid', u'hunter', u'road'] [u'tiger', u'slip', u'goosen', u'surg', u'victori'] [u'toddler', u'die', u'truck'] [u'tourism', u'confer', u'consid', u'natur', u'asset'] [u'tree', u'plant', u'help', u'offset', u'plant', u'emiss'] [u'trenorden', u'demand', u'region', u'health', u'spend', u'answer'] [u'troop', u'warn', u'suicid', u'bomber', u'fallujah'] [u'tszyu', u'look', u'fight'] [u'shoot', u'carlton'] [u'uncertainti', u'surround', u'visit', u'arafat', u'aid'] [u'union', u'seek', u'minimum', u'wage', u'rise'] [u'union', u'wont', u'blame', u'policeman', u'death'] [u'delay', u'agricultur', u'cours', u'closur', u'opposit'] [u'iraqi', u'troop', u'storm', u'fallujah', u'hospit'] [u'plan', u'strike', u'fallujah'] [u'pound', u'fallujah', u'battl', u'insurg'] [u'troop', u'enter', u'leav', u'fallujah'] [u'opposit', u'suggest', u'report', u'includ', u'fit'] [u'victorian', u'armi', u'reservist', u'duti', u'malaysia'] [u'volunt', u'clean', u'scenic', u'gibb', u'river'] [u'politician', u'charg', u'mislead', u'polic'] [u'warn', u'right', u'brisban', u'pont'] [u'warren', u'leav', u'legaci', u'wont', u'forget'] [u'warren', u'receiv', u'state', u'funer'] [u'week', u'honour', u'volunt', u'effort'] [u'westpac', u'deliv', u'profit'] [u'whale', u'caus', u'slick'] [u'wigan', u'sign', u'aussi', u'moran'] [u'wine', u'corp', u'highlight', u'chemic', u'spray', u'impact'] [u'woman', u'expect', u'tribal', u'punish', u'partner', u'murder'] [u'star', u'long', u'declin', u'indigen', u'role'] [u'ahoy', u'pirat', u'preval', u'terrorist'] [u'takeov', u'see', u'lose', u'council', u'opportun'] [u'anim', u'right', u'group', u'maintain', u'mules', u'campaign'] [u'arafat', u'condit', u'worsen'] [u'arafat', u'lieuten', u'arriv', u'franc'] [u'arm', u'hold', u'rise', u'canberra'] [u'aust', u'govt', u'play', u'guantanamo', u'rule'] [u'australia', u'longer', u'classless', u'societi', u'research'] [u'ban', u'mutu', u'fire', u'romanian', u'agent'] [u'bigger', u'custom', u'budget', u'need', u'intern'] [u'respons', u'trust', u'fund', u'compo'] [u'ethic', u'meet', u'consid', u'moral', u'dilemma'] [u'bomb', u'blast', u'shake', u'gaza', u'citi'] [u'bomb', u'baghdad', u'fallujah', u'assault', u'begin'] [u'brack', u'call', u'speedo', u'limit'] [u'buddhist', u'behead', u'shoot', u'dead', u'southern'] [u'bush', u'clear', u'mandat', u'aggress', u'foreign'] [u'bushrang', u'control', u'tiger', u'clash'] [u'busi', u'condit', u'strong'] [u'greater', u'prioriti', u'bega', u'bypass'] [u'studi', u'toxic', u'wast', u'storag'] [u'go', u'albani', u'legal', u'offic'] [u'cattl', u'properti', u'price', u'rise'] [u'chancellor', u'admit', u'knowledg', u'plagiar', u'report'] [u'coastal', u'develop', u'assess', u'hold'] [u'coast', u'host', u'bulldog', u'home', u'match'] [u'competit', u'fierc', u'sydney', u'hobart'] [u'conflict', u'report', u'surround', u'lao', u'explos'] [u'council', u'consid', u'better', u'sign', u'creek', u'tragedi'] [u'councillor', u'proud', u'support', u'jam', u'hardi'] [u'council', u'move', u'playground', u'smoke'] [u'council', u'probe', u'bunker', u'hill', u'tree', u'clear'] [u'council', u'probe', u'meal', u'wheel', u'complaint'] [u'council', u'forc', u'rethink', u'hardi'] [u'council', u'show', u'apprenticeship'] [u'council', u'lead', u'highlight', u'asbesto'] [u'deliv', u'posit', u'share', u'price', u'result'] [u'date', u'announc', u'warren', u'state', u'funer'] [u'delay', u'announc', u'medic', u'degre'] [u'develop', u'institut', u'back', u'infrastructur', u'call'] [u'dictionari', u'aim', u'preserv', u'indigen', u'languag'] [u'earli', u'stag', u'timber', u'plantat', u'plan'] [u'economist', u'back', u'north', u'west', u'infrastructur', u'claim'] [u'energi', u'brix', u'probe', u'control', u'room'] [u'press', u'ahead', u'case', u'microsoft'] [u'execut', u'share', u'loss', u'costello'] [u'exhibit', u'show', u'concentr', u'camp', u'experi'] [u'expert', u'examin', u'shark', u'slick'] [u'fallujah', u'assault', u'justifi', u'sadr'] [u'fallujah', u'resid', u'clinic', u'bomb'] [u'farmer', u'acquit', u'dope', u'alleg'] [u'farmer', u'call', u'mass', u'citrus', u'tree', u'remov'] [u'farmer', u'escap', u'punish', u'docker'] [u'farmer', u'consid', u'drought', u'option'] [u'fear', u'region', u'lose', u'mine', u'benefit'] [u'ferrari', u'skip', u'meet'] [u'fisher', u'part', u'blame', u'fall', u'dugong', u'number'] [u'fish', u'blame', u'albatross', u'death', u'year'] [u'aussi', u'golf'] [u'fleme', u'tour', u'match'] [u'flood', u'damag', u'estim', u'reach', u'million', u'dollar'] [u'footbal', u'player', u'murder', u'trial', u'begin'] [u'waca', u'employe', u'jail'] [u'forum', u'hear', u'barra', u'feedback'] [u'franc', u'recal', u'marsh', u'face', u'australia'] [u'futur', u'look', u'brighter', u'wimmera', u'campus'] [u'gardin', u'event', u'tune'] [u'global', u'warm', u'affect', u'anim', u'migrat', u'breed'] [u'govt', u'reject', u'polic', u'station', u'delay', u'claim'] [u'govt', u'step', u'canker', u'inspect'] [u'grain', u'harvest', u'outlook', u'good'] [u'grampian', u'ambul', u'staff', u'boost'] [u'gregan', u'want', u'wallabi', u'think', u'like', u'cricket'] [u'group', u'want', u'peanut', u'tuckshop', u'menu'] [u'hardi', u'criticis', u'boycott', u'prematur'] [u'health', u'chief', u'oppos', u'cord', u'blood', u'storag'] [u'high', u'school', u'plan', u'move', u'ahead'] [u'hockey', u'revamp', u'underway'] [u'home', u'damag', u'storm'] [u'honour', u'share', u'redback', u'bull'] [u'hospit', u'anaesthetist'] [u'hospit', u'ward', u'reopen', u'bird', u'lice', u'woe'] [u'hoteli', u'hope', u'return', u'politician', u'improv'] [u'predict', u'growth', u'australia'] [u'indec', u'photo', u'spark', u'search', u'girl'] [u'industri', u'bodi', u'urg', u'tailor', u'secur', u'airport'] [u'ineffici', u'condition', u'ban'] [u'injur', u'aloisi', u'miss', u'norway', u'friend'] [u'injur', u'soldier', u'treat', u'hobart', u'barrack'] [u'insurg', u'violenc', u'escal', u'baquba'] [u'interst', u'buyer', u'flock', u'sale'] [u'iran', u'confirm', u'medium', u'rang', u'missil', u'product'] [u'iraq', u'violenc', u'claim', u'live'] [u'irrig', u'alloc', u'boost'] [u'islam', u'parti', u'pull', u'iraqi', u'govt'] [u'isra', u'sentenc', u'drug', u'bust'] [u'japan', u'world', u'frame'] [u'jetstar', u'spanner', u'forseen', u'spirit'] [u'confirm', u'spur', u'coach'] [u'jone', u'sack', u'long', u'time', u'coach'] [u'kashmir', u'rebel', u'attack', u'indian', u'politician', u'home'] [u'king', u'continu', u'win', u'streak'] [u'king', u'good', u'taipan'] [u'kirkuk', u'bomb', u'blast', u'kill'] [u'labour', u'shortag', u'affect', u'goldfield', u'growth'] [u'lawyer', u'hail', u'unlaw', u'rule', u'guantanamo', u'trial'] [u'legendari', u'hawk', u'contest', u'club', u'presid'] [u'lender', u'court'] [u'letterbox', u'bomb', u'trigger', u'polic', u'fear'] [u'long', u'await', u'woollen', u'mill', u'settlement', u'contract'] [u'cross', u'countri', u'kite', u'power', u'skateboard'] [u'jail', u'videotap', u'girl'] [u'manual', u'target', u'corrupt'] [u'mash', u'potato', u'casserol', u'soft', u'drink', u'shelv'] [u'mauresmo', u'davenport', u'fight', u'spot'] [u'medico', u'threaten', u'action', u'work', u'hour'] [u'melbourn', u'question', u'children', u'death'] [u'melbourn', u'music', u'festiv', u'get', u'revamp'] [u'miner', u'sand', u'explor', u'focus', u'west'] [u'minist', u'echo', u'bush', u'concern', u'landlin', u'futur'] [u'molik', u'set', u'sight', u'grand', u'slam', u'titl'] [u'cast', u'doubt', u'energi', u'plan'] [u'charg', u'shoot'] [u'sour', u'famili', u'dump'] [u'monitor', u'indigen', u'scheme', u'post', u'atsic'] [u'murray', u'dredg', u'long', u'haul'] [u'murray', u'report', u'consid', u'use'] [u'nauru', u'pass', u'act', u'combat', u'money', u'launder'] [u'network', u'snub', u'ash', u'seri'] [u'news', u'corp', u'drive', u'market', u'higher'] [u'nois', u'drive', u'fli', u'fox', u'batti'] [u'rail', u'worker', u'deliv', u'ultimatum', u'govt'] [u'govt', u'creat', u'asbesto', u'taskforc'] [u'number', u'region', u'phone'] [u'price', u'fluctuat', u'continu', u'say', u'chief'] [u'omeley', u'injur', u'ryle'] [u'palestinian', u'leadership', u'hing', u'arafat', u'fortun'] [u'palestinian', u'leader', u'discuss', u'arafat', u'condit'] [u'palestinian', u'offici', u'arriv', u'arafat', u'hospit'] [u'patient', u'travel', u'refund', u'wait', u'unaccept'] [u'phelp', u'face', u'possibl', u'jail', u'term'] [u'phelp', u'face', u'drink', u'drive', u'charg'] [u'plan', u'track', u'train', u'station', u'mural'] [u'polic', u'deploy', u'solomon'] [u'polic', u'defend', u'delay', u'assault', u'detail'] [u'polic', u'hunt', u'petrol', u'station', u'arm', u'bandit'] [u'polic', u'meet', u'nightspot', u'weekend', u'unrest'] [u'power', u'disput', u'spark', u'wide', u'outag'] [u'premier', u'seek', u'ferri', u'busi', u'answer'] [u'protest', u'rais', u'mine', u'chief'] [u'public', u'hear', u'probe', u'bash', u'case'] [u'public', u'urg', u'bendigo', u'industri'] [u'public', u'urg', u'care', u'near', u'flood', u'waterway'] [u'public', u'warn', u'illeg', u'firewood', u'collect'] [u'publish', u'win', u'court', u'battl', u'cross', u'inject'] [u'punter', u'saddl', u'bendigo'] [u'quarantin', u'servic', u'frustrat', u'region', u'report'] [u'question', u'rais', u'drink', u'voucher'] [u'race', u'finish', u'revamp', u'box', u'test'] [u'rain', u'doesnt', u'help', u'eas', u'drought', u'woe'] [u'rathbon', u'clear', u'french', u'clash'] [u'redback', u'bushrang', u'control'] [u'retail', u'group', u'criticis', u'box', u'plan'] [u'review', u'clear', u'controversi', u'mine', u'method'] [u'ricketson', u'lead', u'rooster'] [u'rilli', u'nbls', u'player', u'week'] [u'robinson', u'confirm', u'england', u'rugbi', u'captain'] [u'roger', u'field', u'incid', u'confirm'] [u'roger', u'investig', u'field', u'incid'] [u'ruddock', u'play', u'guantanamo', u'trial', u'unlaw', u'rule'] [u'rumsfeld', u'predict', u'civilian', u'death', u'toll'] [u'russian', u'bomb', u'kill'] [u'doctor', u'test', u'smoke', u'inhal', u'drug'] [u'sale', u'austoft', u'site', u'finalis'] [u'scandia', u'target', u'handicap', u'line', u'honour'] [u'school', u'get', u'bottl', u'water', u'amidst', u'bacteria', u'scare'] [u'scotland', u'captain', u'defend', u'narrow', u'pitch', u'polici'] [u'septemb', u'payout'] [u'servic', u'standard', u'power', u'compani'] [u'sewag', u'spill', u'prompt', u'concern', u'migratori', u'bird'] [u'shoot', u'death', u'prompt', u'review', u'law'] [u'shot', u'fire', u'policeman'] [u'snake', u'lose', u'charm', u'veteran', u'reptil', u'handler'] [u'south', u'american', u'qualifi', u'overhaul'] [u'south', u'west', u'face', u'water', u'ban'] [u'lanka', u'overlook', u'murali', u'dayer'] [u'state', u'funer', u'announc', u'warren'] [u'studi', u'highlight', u'high', u'river', u'sediment'] [u'studi', u'consid', u'plan', u'giant', u'wast', u'recycl'] [u'suez', u'canal', u'open', u'tanker', u'free'] [u'tafe', u'teacher', u'group', u'air', u'educ', u'forum', u'concern'] [u'tatiara', u'council', u'question', u'jam', u'hardi', u'product'] [u'telco', u'slam', u'fee', u'servic'] [u'telstra', u'hit', u'ombudsman', u'report'] [u'threaten', u'speci', u'worri', u'green', u'group'] [u'tourism', u'talk', u'expect', u'deliv', u'result'] [u'townsvill', u'enterpris', u'beat', u'lindsay', u'meet'] [u'travel', u'warn', u'ivori', u'coast', u'upgrad'] [u'tree', u'nativ', u'speci'] [u'tribal', u'payback', u'reduc', u'jail', u'time', u'woman'] [u'troop', u'fallujah', u'railway', u'station'] [u'trucki', u'gear', u'australia', u'trip'] [u'tszyu', u'hint', u'fight', u'gatti'] [u'turf', u'industri', u'seek', u'clariti', u'water', u'restrict'] [u'can', u'plan', u'region', u'campus', u'closur'] [u'head', u'hear', u'workplac', u'relat', u'chang'] [u'moot', u'gippstaf', u'cours', u'plan'] [u'univers', u'vice', u'chancellor', u'voic', u'fund', u'concern'] [u'unlaw', u'rule', u'delay', u'hick', u'trial'] [u'deni', u'chopper', u'fallujah'] [u'face', u'stiff', u'resist', u'fallujah'] [u'iraqi', u'forc', u'control', u'fallujah', u'marin'] [u'judg', u'halt', u'guantanmo', u'trial'] [u'market', u'focus', u'rat', u'weak', u'dollar'] [u'vanston', u'defend', u'indigen', u'council'] [u'opposit', u'slam', u'child', u'protect', u'delay'] [u'violenc', u'flare', u'ivori', u'coast', u'ahead'] [u'wallabi', u'jekyl', u'hyde', u'perform'] [u'warn', u'turkey', u'shortag', u'christma'] [u'wast', u'water', u'help', u'boost', u'lake', u'wendoure'] [u'water', u'plan', u'rais', u'river', u'life', u'concern'] [u'wenger', u'charg', u'post', u'unit', u'comment'] [u'west', u'brom', u'size', u'star', u'robson'] [u'wildlif', u'park', u'look', u'boost', u'financi', u'viabil'] [u'windeward', u'bind', u'trust', u'seek', u'berth'] [u'wool', u'industri', u'seek', u'stop', u'peta', u'call'] [u'wool', u'industri', u'stop', u'mules'] [u'wool', u'produc', u'criticis', u'mules', u'phase'] [u'workshop', u'brake', u'road', u'crash'] [u'zarqawi', u'call', u'jihad', u'attack', u'fallujah'] [u'abbott', u'admit', u'uncertainti', u'abort', u'figur'] [u'access', u'port', u'face', u'increas', u'terrorist', u'risk'] [u'accus', u'illeg', u'fisherman', u'clear'] [u'accus', u'evid', u'snowtown', u'hear'] [u'act', u'break', u'zellweg', u'life', u'experi'] [u'mortgag', u'high'] [u'strike', u'kill', u'civilian', u'ivori', u'coast'] [u'arafat', u'critic', u'egypt', u'offer', u'funer'] [u'arafat', u'suffer', u'brain', u'haemorrhag'] [u'arctic', u'thaw', u'open', u'ship', u'lane', u'risk', u'high'] [u'ashcroft', u'quit', u'bush', u'cabinet', u'shake', u'begin'] [u'asio', u'pay', u'refuge', u'bungl'] [u'atsic', u'chief', u'question', u'represent'] [u'aust', u'bank', u'face', u'foreign', u'exchang', u'proceed'] [u'baghdad', u'church', u'blast', u'wound', u'hospit'] [u'bali', u'investig', u'chief', u'tackl', u'polic'] [u'ballarat', u'ponder', u'partnership', u'plan'] [u'bank', u'teller', u'order', u'repay', u'money'] [u'batchelor', u'staff', u'strike', u'hour'] [u'beasti', u'boy', u'sampl', u'court', u'case'] [u'beckham', u'friend', u'sign', u'hollywood'] [u'boe', u'northrop', u'team', u'spaceship'] [u'bomb', u'kill', u'iraqi', u'nation', u'guard', u'soldier'] [u'borbidg', u'back', u'conserv', u'parti'] [u'box', u'shop', u'approv'] [u'burrow', u'win', u'australian', u'final'] [u'bushrang', u'bull'] [u'bushrang', u'cruis', u'victori', u'bull'] [u'byron', u'prepar', u'teen', u'invas'] [u'region', u'magistr', u'liais'] [u'region', u'play', u'role', u'indigen'] [u'calm', u'play', u'shark', u'algal', u'bloom', u'fear'] [u'campaign', u'seek', u'tourism', u'focus', u'mine'] [u'child', u'drown', u'hors', u'trough'] [u'china', u'trade', u'deal', u'increas', u'beef', u'export'] [u'civilian', u'kill', u'ivori', u'coast', u'protest'] [u'clark', u'katich'] [u'communiti', u'meet', u'hear', u'ambul', u'fear'] [u'consum', u'confid', u'elect'] [u'council', u'consid', u'rais', u'wall'] [u'council', u'critic', u'local', u'govt', u'gather'] [u'council', u'green', u'light', u'industri', u'develop'] [u'councillor', u'maintain', u'foreshor', u'referendum', u'push'] [u'councillor', u'adult', u'entertain'] [u'council', u'appoint', u'cultur', u'develop', u'offic'] [u'countri', u'race', u'overhaul', u'withdraw'] [u'crackdown', u'marin', u'misdemenour'] [u'cricket', u'australia', u'miss', u'point'] [u'curtain', u'fall', u'cinema', u'plan'] [u'jail', u'tortur', u'daughter'] [u'darl', u'down', u'homeless', u'hide', u'problem'] [u'databas', u'show', u'increas', u'beef', u'industri'] [u'date', u'clash', u'forc', u'cancel', u'women', u'open'] [u'delta', u'energi', u'wind', u'farm', u'give', u'green', u'light'] [u'dingo', u'stalk', u'babi', u'fraser', u'island'] [u'director', u'highlight', u'legal', u'option'] [u'diseas', u'asid', u'obes', u'weigh', u'heart'] [u'dodgi', u'ecstasi', u'schooli', u'risk'] [u'dolphin', u'hunt', u'junior', u'talent'] [u'dutch', u'polic', u'mount', u'major', u'anti', u'terror', u'raid'] [u'expert', u'criticis', u'dingo', u'death', u'sentenc'] [u'expert', u'urg', u'better', u'nation', u'water'] [u'extend', u'trade', u'hour', u'expect', u'hurt', u'region'] [u'fallujah', u'refuge', u'situat', u'dire', u'cross'] [u'farmer', u'urg', u'beat', u'drought', u'assist', u'deadlin'] [u'fatal', u'crash', u'close', u'picton'] [u'help', u'sydney', u'polic', u'catch', u'serial', u'rapist'] [u'fear', u'grow', u'diesel', u'cost', u'affect', u'good'] [u'fee', u'shouldnt', u'fund', u'student', u'polit', u'nelson'] [u'figur', u'drop', u'eurobodalla', u'jobless', u'rate'] [u'fisher', u'inshor', u'fish', u'zone', u'map'] [u'fleme', u'face', u'fit', u'race'] [u'fool', u'costa', u'wear', u'rail', u'anger'] [u'forecast', u'qlds', u'stormi', u'weather'] [u'england', u'captain', u'robson', u'confirm', u'baggi'] [u'fresh', u'talk', u'hold', u'afghan', u'hostag', u'taker'] [u'fund', u'shortfal', u'put', u'hydrotherapi', u'pool', u'doubt'] [u'general', u'appoint', u'fallujah', u'region', u'governor'] [u'golden', u'globe', u'embrac', u'passion', u'ignor', u'fahrenheit'] [u'good', u'condit', u'bendigo'] [u'govt', u'back', u'ranger', u'safeti', u'upgrad'] [u'govt', u'opposit', u'vote', u'cyanid'] [u'govt', u'quiz', u'toxic', u'wast', u'dump', u'plan'] [u'govt', u'uranium', u'mine', u'report'] [u'grey', u'nomad', u'unfaz', u'petrol', u'price'] [u'group', u'fight', u'tourism', u'levi', u'consid', u'legal', u'action'] [u'growth', u'pressur', u'bundaberg', u'infrastructur'] [u'hail', u'affect', u'farmer', u'urg', u'seek', u'compo'] [u'hawk', u'breaker'] [u'hockeyroo', u'keeper', u'nomin', u'world', u'gong'] [u'home', u'loan', u'fall', u'reflect', u'cool', u'market'] [u'hotel', u'room', u'dingo'] [u'houseboat', u'blaze', u'ruin', u'retir', u'plan'] [u'hunter', u'research', u'share'] [u'iag', u'success', u'financi'] [u'icrc', u'issu', u'humanitarian', u'warn', u'fallujah', u'battl'] [u'injuri', u'traill', u'tribul', u'franc'] [u'inquiri', u'announc', u'judg', u'miss', u'blood', u'sampl'] [u'inquiri', u'probe', u'tweed', u'corrupt', u'claim'] [u'interchang', u'mast', u'commemor', u'light', u'horsemen'] [u'islamist', u'threaten', u'kill', u'allawi', u'relat'] [u'isra', u'armi', u'shoot', u'islam', u'jihad', u'milit'] [u'israel', u'militari', u'issu', u'string'] [u'jail', u'impact', u'famili', u'bodi', u'prioriti'] [u'jail', u'wish', u'come', u'true', u'arm', u'bandit'] [u'jetstar', u'asia', u'prepar', u'launch'] [u'jone', u'track', u'say', u'coach'] [u'kangaroo', u'wont', u'soft', u'great', u'britain'] [u'keat', u'remain', u'lion'] [u'keat', u'remain', u'lion', u'caracella', u'depart'] [u'keith', u'urban', u'take', u'countri', u'music', u'prize'] [u'labor', u'offici', u'admit', u'campaign', u'fail', u'rat', u'debat'] [u'latham', u'back', u'femal', u'high', u'court', u'judg'] [u'lawyer', u'critic', u'famili', u'violenc', u'time'] [u'hop', u'avoid', u'carri', u'drink'] [u'lehmann', u'reliev', u'gabba'] [u'lehmann', u'reliev', u'gabba'] [u'liberti', u'friend', u'news', u'corp', u'sharehold'] [u'liverpool', u'legend', u'emlyn', u'hugh', u'die'] [u'lobster', u'catch', u'predict', u'rise', u'slight'] [u'local', u'knowledg', u'essenti', u'bushfir', u'plan'] [u'phase', u'fuel', u'price', u'rise', u'older', u'car'] [u'charg', u'woman', u'murder'] [u'deni', u'snowtown', u'murder', u'involv'] [u'media', u'bank', u'push', u'ord', u'record', u'territori'] [u'meet', u'debat', u'nativ', u'veget', u'plan'] [u'minardi', u'boss', u'say', u'british', u'french', u'save'] [u'miner', u'pleas', u'earli', u'sign', u'nickel', u'project'] [u'minist', u'deni', u'teenag', u'abort', u'rate', u'soar'] [u'model', u'downsiz', u'veteran', u'wall', u'display'] [u'backpack', u'ventur'] [u'mourner', u'farewel', u'chariti', u'legend'] [u'oppos', u'plan', u'halv', u'landlin', u'run', u'time'] [u'mules', u'heed', u'buyer', u'concern'] [u'nab', u'profit', u'unaccept'] [u'nation', u'food', u'merger', u'talk'] [u'petrol', u'provid', u'high', u'sniffer'] [u'tourism', u'appoint', u'boost', u'intern'] [u'nitschk', u'plan', u'peac', u'pill', u'retreat'] [u'euthanasia', u'arafat', u'minist'] [u'guarante', u'power', u'disput'] [u'nuclear', u'fusion', u'talk', u'agreement'] [u'price', u'drop', u'reach', u'adelaid', u'bowser'] [u'opposit', u'concern', u'follow', u'child', u'death', u'review'] [u'opposit', u'offer', u'extend', u'parliament', u'sit'] [u'petrol', u'sniffer', u'recov', u'brain', u'damag'] [u'pharmaci', u'board', u'dispens', u'region', u'warn'] [u'pilot', u'fin', u'inadequ', u'flight', u'record'] [u'pilot', u'narrowli', u'avoid', u'crash', u'port', u'phillip'] [u'pipelin', u'studi', u'profil', u'east', u'west'] [u'plan', u'council', u'flexibl'] [u'pledg', u'deal', u'abort'] [u'poison', u'program', u'step', u'war', u'escal'] [u'polic', u'help', u'steal', u'heroin', u'say', u'wit'] [u'polic', u'seek', u'help', u'find', u'hotel', u'attack'] [u'pont', u'blame', u'standard', u'mumbai', u'pitch'] [u'powercor', u'urg', u'readi'] [u'power', u'earthquak', u'shake', u'solomon'] [u'primari', u'industri', u'loss', u'surpris'] [u'settler', u'parti', u'abandon', u'sharon', u'coalit'] [u'public', u'communiti', u'bank', u'plan'] [u'public', u'fluorid', u'plan'] [u'futur', u'super', u'benefit'] [u'quarri', u'seek', u'extend', u'life'] [u'race', u'club', u'hop', u'secur', u'meet'] [u'racq', u'hop', u'driver', u'feel', u'eas', u'price'] [u'rain', u'pose', u'prawn', u'harvest', u'threat'] [u'ranger', u'chang', u'scientist'] [u'rebel', u'govt', u'sign', u'landmark', u'sudan', u'peac', u'deal'] [u'redfern', u'author', u'focus', u'job', u'growth'] [u'referendum', u'settl', u'shop', u'hour', u'debat'] [u'resid', u'worri', u'polic', u'station'] [u'respons', u'driver', u'road', u'toll'] [u'retail', u'oppos', u'holiday', u'period', u'closur', u'plan'] [u'retir', u'high', u'court', u'judg', u'want', u'femal', u'successor'] [u'riverina', u'airlin', u'plan'] [u'roger', u'assault', u'probe', u'hold'] [u'continu', u'speaker'] [u'rspca', u'urg', u'prison', u'sentenc', u'anim'] [u'ruddock', u'unveil', u'famili', u'propos'] [u'govt', u'toughen', u'law', u'seiz', u'crimin', u'asset'] [u'sale', u'talk', u'review', u'telstra', u'bush', u'servic'] [u'wind', u'farm', u'power'] [u'search', u'miss', u'tourist'] [u'signatori', u'consid', u'albatross', u'secretariat', u'offer'] [u'korea', u'warn', u'north', u'incurs'] [u'sleep', u'surviv', u'cliff', u'plung'] [u'smith', u'fisher', u'month', u'gong'] [u'spain', u'strength', u'davi', u'final'] [u'special', u'diet', u'dont', u'help', u'weight', u'loss', u'studi'] [u'speedo', u'limit', u'cautious', u'support'] [u'sport', u'communiti', u'group', u'benefit'] [u'spur', u'gunner', u'leagu', u'quarter'] [u'lankan', u'keeper', u'kaluwitharana', u'quit'] [u'statist', u'highlight', u'region', u'wealth', u'divid'] [u'storm', u'wreak', u'havoc', u'northern'] [u'student', u'villag', u'closur', u'doesnt'] [u'sunni', u'cleric', u'urg', u'iraq', u'poll', u'boycott'] [u'sunspot', u'explos', u'light', u'australian'] [u'support', u'govt', u'slump'] [u'surgeri', u'sidelin', u'donnelli', u'month'] [u'tap', u'prove', u'treasuri', u'bulli', u'energex', u'chief', u'nat'] [u'tare', u'elder', u'run', u'aust', u'year', u'award'] [u'teacher', u'avoid', u'jail', u'schoolboy'] [u'telstra', u'launch', u'mobil', u'internet', u'servic'] [u'thoroughbr', u'ray', u'prompt', u'cancer', u'fear'] [u'thousand', u'biker', u'thunder', u'snowi'] [u'iraqi', u'relat', u'kidnap'] [u'quarter', u'adhd', u'diagnos', u'wrong'] [u'tough', u'task', u'recruit', u'mental', u'health', u'worker'] [u'train', u'driver', u'strike', u'avert'] [u'trap', u'croc', u'kill'] [u'like', u'human'] [u'understrength', u'kiwi', u'remain', u'confid'] [u'chief', u'nelson', u'backdown', u'student', u'fee'] [u'union', u'challeng', u'firm', u'sack'] [u'unlucki', u'katich', u'miss', u'tour', u'match'] [u'reach', u'agreement', u'ivori', u'coast', u'sanction'] [u'expect', u'fallujah', u'fight', u'intensifi'] [u'market', u'steadi', u'ahead', u'meet'] [u'meet', u'fierc', u'resist', u'fallujah'] [u'mine', u'firm', u'reject', u'indonesian', u'arsenic', u'claim'] [u'polic', u'shoot', u'consul', u'hostag', u'taker'] [u'resum', u'assault', u'fallujah'] [u'suspect', u'zarqawi', u'flee', u'fallujah'] [u'work', u'arafat', u'successor', u'powel'] [u'vatican', u'probe', u'inquisit', u'horror'] [u'victim', u'group', u'slam', u'child', u'sentenc', u'teacher'] [u'wag', u'wimmera', u'malle'] [u'word', u'erupt', u'rock', u'remov'] [u'water', u'human', u'kind', u'keep', u'runner', u'hydrat'] [u'whistleblow', u'hospit', u'patient', u'victimis'] [u'windblown', u'tourist', u'surviv', u'highway', u'mishap'] [u'wind', u'farm', u'decis', u'expect', u'affect', u'gippsland'] [u'women', u'polic', u'hope', u'increas', u'number'] [u'advoc', u'cautious', u'welcom', u'mental', u'health', u'packag'] [u'group', u'warn', u'ivori', u'coast', u'humanitarian', u'crisi'] [u'alic', u'spring', u'say', u'citi', u'titl'] [u'highlight', u'shift', u'illawarra', u'wealth'] [u'aquarium', u'owner', u'warn', u'toxic', u'seawe'] [u'armi', u'klan', u'pictur', u'racist', u'say', u'photograph'] [u'armi', u'launch', u'review', u'soldier', u'death'] [u'arsonist', u'target', u'turkish', u'school'] [u'australia', u'get', u'wetter', u'csiro'] [u'australian', u'evacu', u'ivori', u'coast'] [u'ban', u'mutu', u'meet', u'juventus', u'offici'] [u'beatti', u'deni', u'vile', u'claim', u'treasuri'] [u'beckham', u'spain', u'friend'] [u'bellingen', u'shire', u'join', u'jam', u'hardi'] [u'beat', u'countri', u'energi', u'merger'] [u'gun', u'reach', u'leagu', u'quarter'] [u'turnout', u'brisban', u'remembr'] [u'black', u'cap', u'build', u'total', u'blue'] [u'black', u'cap', u'dismiss', u'sydney'] [u'black', u'cap', u'kick', u'tour', u'blue'] [u'blaze', u'destroy', u'classroom', u'turkish', u'school'] [u'bluescop', u'cost', u'port', u'kembla', u'job'] [u'boycott', u'slam', u'chuck', u'propos'] [u'brack', u'announc', u'memori', u'fund'] [u'british', u'futur', u'look', u'brighter'] [u'bulldoz', u'prepar', u'burial', u'site', u'arafat'] [u'bush', u'look', u'peac', u'arafat', u'near', u'death'] [u'bush', u'name', u'attorney', u'general'] [u'fund', u'model', u'review'] [u'central', u'crime', u'figur', u'drop'] [u'childcar', u'centr', u'sale', u'benefit', u'children', u'group'] [u'children', u'wreath', u'remembr', u'shrine'] [u'coalit', u'urg', u'stand', u'firm', u'iraq'] [u'coff', u'harbour', u'host', u'ban', u'photo', u'exhibit'] [u'cole', u'myer', u'track', u'profit'] [u'cole', u'sell', u'alcohol', u'supermarket'] [u'committe', u'form', u'deal', u'woe'] [u'communiti', u'group', u'welcom', u'tweed', u'council', u'probe'] [u'communiti', u'mourn', u'respect', u'polic', u'offic'] [u'compani', u'defend', u'addit', u'fee'] [u'compani', u'face', u'death', u'penalti'] [u'therapi', u'help', u'treat', u'depress'] [u'concern', u'rais', u'devil', u'cancer'] [u'cooler', u'weather', u'help', u'control', u'locust', u'number'] [u'council', u'reject', u'childcar', u'centr', u'plan'] [u'council', u'road', u'worker', u'expos', u'asbesto'] [u'council', u'seek', u'crime', u'plan', u'feedback'] [u'council', u'seek', u'greater', u'holiday', u'let', u'regul'] [u'coupl', u'catch', u'chase'] [u'court', u'allow', u'accus', u'terrorist', u'testifi'] [u'courtney', u'love', u'legal', u'woe', u'escal'] [u'court', u'order', u'wineri', u'grape', u'payment'] [u'court', u'reject', u'bashir', u'holiday', u'request'] [u'creek', u'get', u'clear', u'sewerag', u'spill'] [u'croc', u'warn', u'issu', u'take'] [u'dead', u'bomb', u'explod', u'baghdad'] [u'death', u'toll', u'rise', u'baghdad', u'bomb'] [u'desert', u'volleybal', u'plan', u'indigen', u'communiti'] [u'devil', u'diseas', u'appear', u'spread'] [u'dog', u'blame', u'sheep', u'death'] [u'dog', u'dragon', u'kick', u'start'] [u'probe', u'cage', u'placement'] [u'drug', u'haul', u'underl', u'jail'] [u'emerg', u'plan', u'utilis', u'volunt', u'knowledg'] [u'expert', u'debat', u'anti', u'salin', u'measur'] [u'extens', u'locust', u'spray', u'need'] [u'fail', u'entic', u'ambros'] [u'famili', u'lose', u'life', u'support'] [u'fan', u'flock', u'vivienn', u'westwood', u'exhibit'] [u'farm', u'theft', u'spark', u'warn'] [u'fear', u'rais', u'cyclon', u'build', u'standard'] [u'feder', u'polic', u'raid', u'indigen', u'paper', u'leak'] [u'lift', u'rat'] [u'fee', u'firm', u'sign', u'export', u'deal'] [u'sting', u'prompt', u'safeti', u'warn'] [u'franc', u'snub', u'surpris', u'pire'] [u'frost', u'take', u'toll', u'wine', u'grape', u'vine', u'damag'] [u'gippsland', u'flood', u'watch'] [u'govern', u'apologis', u'srebrenica', u'massacr'] [u'govt', u'announc', u'histor', u'shipwreck', u'protect'] [u'govt', u'opposit', u'wrangl', u'hospit', u'fund'] [u'green', u'light', u'give', u'foreshor', u'bait'] [u'green', u'fear', u'guantanamo', u'like', u'prison'] [u'green', u'happi', u'territori', u'perform'] [u'grower', u'assess', u'hail', u'damag', u'impact'] [u'hama', u'vow', u'attack'] [u'harri', u'like', u'miss', u'nation', u'clash'] [u'hear', u'expert', u'skill', u'develop', u'world'] [u'hewitt', u'clash', u'feder'] [u'historian', u'seek', u'decor', u'execut', u'pow'] [u'histori', u'judg', u'arafat', u'harsh', u'howard'] [u'hotel', u'urg', u'treat', u'schooli', u'fair'] [u'howard', u'warn', u'punish', u'smoker'] [u'hundr', u'brave', u'rain', u'remembr', u'servic'] [u'clear', u'murali', u'bowl', u'doosra'] [u'indigen', u'council', u'mandat'] [u'indigen', u'council', u'celebr', u'year'] [u'indigen', u'payment', u'link', u'behaviour'] [u'indigen', u'welfar', u'reform', u'step', u'backward'] [u'indonesian', u'polic', u'arrest', u'drug', u'possess'] [u'inquest', u'open', u'road', u'death'] [u'internet', u'link', u'age', u'patient'] [u'iraq', u'boost', u'remembr', u'attend'] [u'iraq', u'boost', u'remembr'] [u'iron', u'plant', u'face', u'uncertain', u'futur'] [u'israel', u'say', u'good', u'riddanc', u'arafat'] [u'ivori', u'coast', u'leader', u'deni', u'start', u'conflict'] [u'ivori', u'coast', u'unrest', u'toll', u'rise'] [u'jail', u'develop', u'consid', u'public', u'worri'] [u'japanes', u'deleg', u'tour'] [u'jobless', u'rate', u'hit', u'histor'] [u'job', u'growth', u'indic', u'wage', u'pressur'] [u'journalist', u'kill', u'nicaragua', u'vote', u'count', u'fight'] [u'kingaroy', u'question', u'club', u'disabl', u'access'] [u'kintor', u'celebr', u'dialysi', u'machin'] [u'latham', u'ponder', u'scari', u'spice', u'speaker'] [u'legal', u'princess', u'diana', u'fund', u'settl'] [u'liber', u'wast', u'facil', u'plan', u'fear'] [u'littl', u'long', u'term', u'popul', u'growth', u'tip'] [u'liverpool', u'order', u'kewel', u'work', u'fit'] [u'lomu', u'hope', u'black', u'return'] [u'lower', u'hous', u'pass', u'cut'] [u'luczak', u'win', u'open', u'wildcard'] [u'convict', u'stuttl', u'murder', u'appeal'] [u'die', u'rail', u'mishap'] [u'guilti', u'cocain', u'import'] [u'jail', u'child', u'porn', u'possess'] [u'kill', u'train', u'derail', u'bruce', u'highway', u'smash'] [u'plead', u'guilti', u'possess', u'child', u'porn'] [u'marathon', u'runner', u'wont', u'meet', u'athen', u'assail'] [u'mayor', u'present', u'histor', u'charter', u'parliament'] [u'meet', u'discuss', u'residenti', u'develop'] [u'melandri', u'leav', u'yamaha', u'honda'] [u'migrat', u'whale', u'number', u'dwindl'] [u'miner', u'identifi', u'gold', u'reserv'] [u'minist', u'endors', u'ambul', u'inquiri', u'recommend'] [u'minist', u'urg', u'address', u'busselton', u'school', u'concern'] [u'reject', u'ningaloo', u'marin', u'zone', u'plan'] [u'rain', u'need', u'boost', u'dam'] [u'nationwid', u'ceremoni', u'honour', u'soldier'] [u'newcastl', u'head', u'disappoint', u'plagar'] [u'lobster', u'firm', u'beat', u'futur'] [u'local', u'govern', u'law', u'approv'] [u'probe', u'launch', u'armi', u'racism', u'claim'] [u'tribun', u'hear', u'challeng', u'govt'] [u'luck', u'search', u'darwin', u'croc'] [u'surrend', u'bank', u'robber'] [u'nuclear', u'whistleblow', u'vanunu', u'arrest', u'jerusalem'] [u'offic', u'deni', u'corrupt', u'relationship', u'inform'] [u'open', u'sourc', u'browser', u'challeng', u'microsoft'] [u'palestinian', u'leader', u'arafat', u'die'] [u'palestinian', u'attack', u'settlement', u'arafat', u'die'] [u'palestinian', u'criticis', u'howard', u'funer', u'snub'] [u'pansi', u'wine', u'target', u'australian', u'gay'] [u'peacekeep', u'need', u'timor', u'annan'] [u'pilbara', u'iron', u'infrastructur', u'agreement', u'reach'] [u'pixi', u'plan', u'instant', u'live'] [u'player', u'disput', u'windi', u'tour'] [u'let', u'ash', u'coverag', u'debat', u'keeper'] [u'govt', u'split', u'telikom', u'sale'] [u'polic', u'arrest', u'chilean', u'apec', u'protest'] [u'polic', u'happi', u'bendigo', u'punter'] [u'polic', u'highlight', u'fall', u'gold', u'coast', u'prostitut'] [u'polic', u'offic', u'admit', u'involv', u'drug', u'robberi'] [u'pont', u'stun', u'like', u'ash', u'snub'] [u'star', u'name', u'peac'] [u'premier', u'urg', u'save', u'disabl', u'job', u'scheme', u'fund'] [u'prosecut', u'request', u'foreign', u'testifi'] [u'public', u'servic', u'stress', u'claim', u'tip', u'soar'] [u'govt', u'ban', u'sale', u'bong'] [u'ranger', u'owner', u'allay', u'radioact', u'incid', u'concern'] [u'remembr', u'crowd', u'reflect', u'terror'] [u'resourc', u'stock', u'fuel', u'ord', u'record'] [u'retir', u'sainz', u'ralli', u'australia'] [u'review', u'show', u'fall', u'northern', u'crime'] [u'road', u'benefit', u'shire', u'asset'] [u'rooney', u'escap', u'injuri', u'crash'] [u'presid', u'issu', u'warn', u'commit', u'troop'] [u'russian', u'hostel', u'kill'] [u'plant', u'anim', u'face', u'extinct'] [u'search', u'begin', u'unit', u'blaze', u'clue'] [u'search', u'underway', u'resort', u'dingo'] [u'shane', u'warn', u'chuck', u'plan', u'caus', u'confus'] [u'sharapova', u'deni', u'chang', u'ball'] [u'sharon', u'see', u'arafat', u'death', u'possibl', u'turn', u'point'] [u'silent', u'reflect', u'honour', u'dead'] [u'snowtown', u'accus', u'tell', u'move', u'bodi', u'barrel'] [u'socceroo', u'leap', u'world'] [u'soldier', u'avoid', u'jail', u'term'] [u'soldier', u'die', u'train', u'mission'] [u'soldier', u'accus', u'iraqi', u'prison', u'tortur', u'face'] [u'spotlight', u'herbicid', u'mango', u'product'] [u'stage', u'shock', u'court'] [u'state', u'fund', u'seek', u'tamworth', u'respit', u'centr'] [u'stress', u'trigger', u'miscarriag'] [u'strong', u'growth', u'secur', u'council', u'budget', u'surplus'] [u'studi', u'urg', u'expand', u'water', u'fluorid'] [u'sudanes', u'polic', u'raid', u'darfur', u'camp'] [u'survey', u'highlight', u'busi', u'tape', u'worri'] [u'talk', u'focus', u'teacher', u'transfer', u'concern'] [u'govt', u'pressur', u'feder', u'hotel', u'deal'] [u'threat', u'allawi', u'fail', u'halt', u'fallujah', u'attack'] [u'throw', u'rule', u'need', u'clarif', u'warn', u'say'] [u'thunder', u'storm', u'drench'] [u'tiger', u'frustrat', u'bushrang', u'rain', u'rule'] [u'timelin', u'life', u'yasser', u'arafat'] [u'tobacco', u'law', u'bong'] [u'legisl', u'name', u'interim', u'palestinian', u'presid'] [u'tourism', u'closur', u'forc', u'singapor', u'visit', u'cancel'] [u'travel', u'urg', u'heed', u'updat', u'travel', u'advic'] [u'tribut', u'flow', u'arafat'] [u'trucki', u'die', u'crash', u'freight', u'train'] [u'tweed', u'councillor', u'doesnt', u'want', u'blanket', u'sack'] [u'arrest', u'hagu', u'sieg', u'end'] [u'seek', u'callous', u'attack'] [u'union', u'offici', u'take', u'plane', u'alleg', u'bomb'] [u'unit', u'gunner', u'pair', u'leagu', u'quarter'] [u'lower', u'terror', u'alert', u'level', u'york'] [u'share', u'price', u'drop', u'rate', u'rise'] [u'tighten', u'grip', u'fallujah'] [u'valu', u'seasid', u'land', u'graze', u'properti', u'rise'] [u'vanuatu', u'withdraw', u'taiwanes', u'diplomat', u'tie', u'china'] [u'veteran', u'dignitari', u'rememb', u'australia', u'fall'] [u'vic', u'tassi', u'drought'] [u'victoria', u'back', u'plan', u'shift', u'smoke', u'cost'] [u'viduka', u'socceroo'] [u'wallabi', u'unchang', u'french', u'battl'] [u'warn', u'confid', u'thumb', u'recoveri'] [u'word', u'erupt', u'kangara', u'food', u'sack'] [u'water', u'corp', u'doubt', u'recoveri', u'plan', u'viabil'] [u'western', u'rememb', u'veteran'] [u'arafat', u'legaci'] [u'winemak', u'fear', u'water', u'cap', u'impact'] [u'urg', u'declar', u'roxbi', u'down', u'water', u'sourc'] [u'woman', u'critic', u'picton', u'crash'] [u'workplac', u'servic', u'investig', u'onesteel', u'accid'] [u'yasser', u'arafat', u'natur', u'leader', u'master', u'myth', u'maker'] [u'young', u'ban', u'life', u'second', u'dope', u'offenc'] [u'arriv', u'boost', u'creditor'] [u'help', u'grow', u'broccoli', u'technolog'] [u'aborigin', u'elder', u'attack', u'welfar', u'plan', u'racist'] [u'aborigin', u'group', u'back', u'fring', u'dweller', u'camp'] [u'job', u'figur', u'flaw', u'treasur'] [u'african', u'union', u'plan', u'ivori', u'coast', u'crisi', u'meet'] [u'albanes', u'reject', u'attack'] [u'alic', u'chef', u'win', u'scholarship', u'studi'] [u'ambul', u'staff', u'level', u'rais', u'safeti', u'fear'] [u'american', u'kidnap', u'iraq', u'report'] [u'offer', u'entrepreneur', u'cours'] [u'apec', u'leader', u'urg', u'support', u'exclus', u'free', u'trade'] [u'arafat', u'make', u'final', u'journey', u'home', u'west', u'bank'] [u'arsenic', u'dead', u'indonesian', u'right', u'campaign'] [u'asbesto', u'contamin', u'shock', u'council', u'worker'] [u'aussi', u'cricket', u'condemn', u'chuck', u'chang'] [u'aussi', u'champion', u'content'] [u'aust', u'pilot', u'save', u'chopper', u'attack', u'iraq'] [u'aust', u'pledg', u'bangladesh', u'flood', u'relief'] [u'australian', u'diplomat', u'attend', u'arafat', u'funer'] [u'australian', u'warn', u'israel', u'travel', u'risk'] [u'australian', u'warn', u'ivori', u'coast', u'strife'] [u'australia', u'offer', u'condol', u'palestinian'] [u'author', u'reject', u'devil', u'project', u'critic'] [u'baddaginni', u'upset', u'toxic', u'dump'] [u'barbaro', u'face', u'trial', u'drug', u'charg'] [u'battl', u'rag', u'near', u'fallujah', u'mosqu'] [u'bavaria', u'ban', u'teacher', u'wear', u'head', u'scarv'] [u'bichel', u'peer', u'test', u'bowl', u'crystal', u'ball'] [u'black', u'cap', u'fox', u'waugh', u'warn', u'aussi'] [u'blind', u'run', u'rais', u'fund'] [u'blood', u'donat', u'unit', u'return'] [u'blue', u'black', u'cap'] [u'boati', u'nautic', u'chart'] [u'boom', u'time', u'motogp', u'rossi', u'get', u'faster'] [u'bowl', u'alley', u'caus', u'damag'] [u'break', u'hill', u'aim', u'boost', u'tourism', u'link'] [u'break', u'hill', u'oliv', u'edg', u'competit'] [u'bronco', u'unhappi', u'draw'] [u'brothel', u'billboard', u'offend', u'council'] [u'bull', u'readi', u'finish', u'redback'] [u'bull', u'resist', u'south', u'australian', u'fightback'] [u'busi', u'time', u'ahead', u'colleg', u'task', u'forc'] [u'cairo', u'funer', u'await', u'arafat'] [u'better', u'murray', u'river', u'bridg', u'plan'] [u'west', u'includ', u'trade', u'hour'] [u'cancer', u'servic', u'focus', u'improv', u'surviv', u'rat'] [u'cartwheel', u'cop', u'suspend', u'student'] [u'casey', u'head', u'museum'] [u'err', u'arafat', u'broadcast'] [u'chamber', u'say', u'blackout', u'prove', u'cost', u'busi'] [u'children', u'hospitalis', u'school', u'crash'] [u'china', u'coal', u'blast', u'kill'] [u'coca', u'cola', u'launch'] [u'communiti', u'move', u'ahead', u'healthi', u'eat', u'plan'] [u'coron', u'urg', u'better', u'induct', u'volunt'] [u'council', u'ask', u'consid', u'main', u'street', u'speed'] [u'council', u'determin', u'build', u'town', u'squar'] [u'council', u'highlight', u'toowoomba', u'rang', u'worri'] [u'councillor', u'get', u'high', u'rank', u'local', u'govt', u'appoint'] [u'council', u'appeal', u'mitcham', u'develop'] [u'council', u'unhappi', u'flood', u'leve', u'meet', u'attend'] [u'darwin', u'wharfi', u'exot', u'snail'] [u'discrimin', u'common', u'militari', u'cultur', u'academ'] [u'doctor', u'misconduct', u'claim', u'complaint'] [u'dolphin', u'fish', u'trauma'] [u'doubt', u'rais', u'calder', u'fund'] [u'jone', u'settl', u'gutnick', u'action'] [u'drink', u'spike', u'report', u'spark', u'law', u'push'] [u'driver', u'blue', u'break'] [u'drought', u'end', u'heroin', u'make', u'comeback'] [u'dutch', u'arrest', u'fals', u'threaten', u'letter'] [u'elbow', u'bend', u'common', u'test', u'cricket', u'murali'] [u'electrolux', u'worker', u'strike', u'disput'] [u'electron', u'tag', u'monitor', u'young', u'offend'] [u'emerg', u'beacon', u'mandatori', u'fisher'] [u'employ', u'figur', u'boost', u'aussi', u'dollar'] [u'eric', u'rakim', u'greatest', u'album', u'list'] [u'tag', u'crimin', u'wont', u'work', u'say', u'expert'] [u'timor', u'travel', u'warn', u'issu', u'strong', u'quak'] [u'expert', u'stand', u'effort', u'manag', u'bedevil'] [u'factori', u'blaze', u'challeng', u'melbourn', u'firefight'] [u'factori', u'destroy', u'special', u'school', u'facil'] [u'fail', u'presidenti', u'candid', u'seek', u'recount'] [u'fallujah', u'assault', u'spark', u'iraq', u'wide', u'attack'] [u'fallujah', u'attack', u'kill', u'hundr', u'insurg'] [u'famili', u'mourn', u'dead', u'soldier'] [u'fear', u'adelaid', u'hospit', u'blow', u'hurt', u'region'] [u'fear', u'custom', u'crackdown', u'hurt', u'lobster', u'industri'] [u'fiji', u'lose', u'appeal', u'coup', u'jail', u'term'] [u'case', u'proceed', u'despit', u'inquest', u'suspens'] [u'fleme', u'chanc', u'gabba', u'test'] [u'fli', u'doctor', u'get', u'fund', u'boost'] [u'attack', u'target', u'middl', u'penguin'] [u'fraser', u'resort', u'dingo', u'kill'] [u'gippsland', u'popul', u'rise'] [u'glen', u'inn', u'famili', u'unit', u'church'] [u'global', u'factor', u'toll', u'wimmera', u'malle', u'farmer'] [u'govern', u'anderson', u'licenc', u'check', u'polic'] [u'govt', u'rule', u'freeway', u'toll'] [u'govt', u'crack', u'drink', u'spike'] [u'green', u'fear', u'threaten', u'speci'] [u'gronholm', u'lead', u'ralli', u'australia'] [u'gunner', u'spur', u'turmoil'] [u'hardi', u'picket', u'stay', u'compens', u'pay'] [u'highway', u'upgrad', u'feedback', u'session', u'start', u'tonight'] [u'drug', u'kill', u'malaria', u'parasit'] [u'hobart', u'host', u'albatross', u'conserv', u'centr'] [u'hockeyroo', u'break', u'lose', u'drought'] [u'hold', u'leongatha', u'pool', u'open'] [u'human', u'diseas', u'take', u'differ', u'form'] [u'iaea', u'confirm', u'south', u'korea', u'nuclear', u'experi'] [u'indian', u'announc', u'troop', u'reduct', u'kashmir'] [u'indigen', u'welfar', u'plan', u'breach', u'race'] [u'insurg', u'rampag', u'mosul'] [u'interpret', u'servic', u'get', u'state', u'contract'] [u'iran', u'nuclear', u'deal', u'definit'] [u'iraqi', u'prison', u'abus', u'trial', u'move'] [u'irrig', u'group', u'beat', u'abil'] [u'japan', u'finger', u'china', u'incurs'] [u'japan', u'send', u'research', u'whale', u'ship', u'antarct'] [u'japan', u'slow', u'growth', u'shock', u'economist'] [u'jet', u'hope', u'snare', u'venabl'] [u'jone', u'tip', u'return', u'attack', u'rugbi'] [u'judg', u'shaw', u'resign', u'health', u'problem'] [u'kiwi', u'french', u'challeng'] [u'labor', u'stick', u'forestri', u'principl'] [u'land', u'agreement', u'pave', u'opal', u'mine'] [u'leader', u'blast', u'welfar', u'plan'] [u'legal', u'action', u'threat', u'fraser', u'dingo', u'hunt'] [u'get', u'year', u'wife', u'bash', u'death'] [u'mangi', u'albanes', u'sack'] [u'jail', u'indefinit', u'offenc'] [u'chang'] [u'marantz', u'make', u'bright', u'start', u'qualifi', u'final'] [u'market', u'break', u'high'] [u'mauresmo', u'thrash', u'zvonareva'] [u'medicar', u'chang', u'boost', u'bulk', u'bill', u'abbott'] [u'microsoft', u'search', u'engin', u'ramp', u'internet'] [u'minist', u'say', u'anti', u'hoon', u'law', u'effect'] [u'minist', u'recommit', u'vanuatu', u'china', u'polici'] [u'citrus', u'canker', u'central'] [u'seek', u'list', u'telstra', u'benefit'] [u'trial', u'chang', u'point', u'rule'] [u'cereb', u'palsi', u'clinic', u'spenc'] [u'north', u'west'] [u'rise', u'railcorp', u'execut'] [u'urg', u'confront', u'player', u'exodus'] [u'polic', u'drug', u'amnesti', u'review'] [u'odorama', u'celebr', u'itali', u'white', u'diamond'] [u'price', u'lose', u'renew', u'declin'] [u'opposit', u'air', u'mental', u'health', u'fund', u'concern'] [u'oversea', u'worker', u'help', u'bush'] [u'palestinian', u'famili', u'welcom', u'yasser', u'arafat'] [u'palestinian', u'prepar', u'buri', u'arafat'] [u'peopl', u'smuggl', u'suspect', u'face', u'charg', u'perth'] [u'philip', u'morri', u'discov', u'passiv', u'smoke', u'risk'] [u'philippin', u'train', u'crash', u'kill'] [u'philippin', u'train', u'crash', u'ravin'] [u'pittman', u'join', u'race', u'save', u'wombat'] [u'pole', u'danc', u'class', u'children', u'ax'] [u'polic', u'charg', u'dash', u'rugbi'] [u'polic', u'custom', u'smash', u'duti', u'free', u'racket'] [u'polic', u'hold', u'fear', u'miss', u'teen'] [u'polic', u'hunt', u'basebal', u'thiev'] [u'polic', u'probe', u'yeppoon', u'stab'] [u'polic', u'chopper', u'drug', u'crackdown'] [u'post', u'mortem', u'trucker', u'train', u'crash'] [u'powerco', u'face', u'prosecut', u'mishap'] [u'power', u'station', u'report', u'expect', u'year'] [u'cannabi', u'group', u'cast', u'doubt', u'driver', u'drug'] [u'program', u'tackl', u'public', u'servic', u'stress', u'govt'] [u'push', u'attract', u'japanes', u'tourist'] [u'queen', u'elizabeth', u'lead', u'poignant', u'tribut', u'britain'] [u'report', u'highlight', u'olymp', u'potenti'] [u'head', u'gear', u'swap', u'meet', u'heaven'] [u'rider', u'descend', u'adelaid', u'hors', u'trial'] [u'robust', u'economi', u'hint', u'wage', u'pressur'] [u'roddick', u'lead', u'davi', u'final'] [u'rubbl', u'dump', u'distress', u'resid'] [u'saudi', u'arabia', u'releas', u'milit', u'siez'] [u'schofield', u'quit', u'power'] [u'school', u'condit', u'heat'] [u'search', u'aim', u'shed', u'light', u'reef', u'micro', u'organ'] [u'world', u'urg', u'fund', u'bear', u'facil', u'china'] [u'seven', u'candid', u'contest', u'tare', u'elect'] [u'shire', u'leader', u'see', u'merit', u'indigen', u'welfar', u'plan'] [u'sibl', u'death', u'prompt', u'foster', u'care', u'rule'] [u'silver', u'fern', u'faze', u'record', u'crowd'] [u'sinclair', u'shin', u'kiwi', u'toppl'] [u'snowi', u'work', u'boost', u'water', u'storag'] [u'sponsor', u'stick', u'phelp'] [u'springborg', u'releas', u'conserv', u'parti', u'plan'] [u'lanka', u'say', u'rule', u'buri', u'murali', u'controversi'] [u'storm', u'take', u'toll', u'dirranbandi'] [u'storm', u'wreak', u'havoc', u'bathurst'] [u'strong', u'quak', u'kill', u'indonesia'] [u'student', u'hostel', u'unabl', u'appeal', u'balconi', u'fall'] [u'support', u'west', u'doctor', u'plan'] [u'support', u'mooroopna', u'freight', u'centr', u'plan'] [u'support', u'show', u'milk', u'price', u'negoti'] [u'surgeon', u'catch', u'child', u'porn', u'continu', u'work'] [u'tamil', u'tiger', u'reviv', u'peac', u'talk'] [u'tanzania', u'like', u'coelacanth', u'spot', u'scientist'] [u'taser', u'trial', u'rais', u'communiti', u'concern'] [u'task', u'forc', u'beat', u'port', u'hedland', u'job'] [u'parliament', u'pass', u'raft', u'legisl'] [u'teach', u'plan', u'doesnt', u'faze'] [u'technolog', u'stock', u'lead', u'market', u'higher'] [u'tendulkar', u'dismiss', u'critic', u'style'] [u'tenni', u'australia', u'reject', u'call', u'overhaul'] [u'hospitalis', u'canberra', u'crash'] [u'hurt', u'south', u'coast', u'crash'] [u'toad', u'target', u'island', u'campaign'] [u'tourism', u'accolad', u'newcastl'] [u'track', u'studi', u'aim', u'learn', u'turtl'] [u'troop', u'evacu', u'expat', u'ivori', u'coast'] [u'truck', u'firm', u'random', u'drug', u'test'] [u'station', u'burn', u'nigeria', u'violenc'] [u'chief', u'appeal', u'calm', u'ivori', u'coast'] [u'union', u'time', u'job', u'need'] [u'launch', u'appeal', u'forget', u'tragedi'] [u'citrus', u'firm', u'suspend', u'oper'] [u'eye', u'complet', u'control', u'fallujah'] [u'forc', u'control', u'fallujah', u'saturday'] [u'vatican', u'prais', u'arafat', u'palestinian', u'vision'] [u'vaughan', u'look', u'forward', u'zimbabw', u'tour'] [u'polic', u'dismiss', u'stun', u'concern'] [u'violenc', u'crackdown', u'prompt', u'resourc', u'plea'] [u'govt', u'confid', u'win', u'super'] [u'warhol', u'mustard', u'draw'] [u'water', u'boost', u'plan', u'central', u'coast'] [u'welfar', u'plan', u'label', u'mission', u'mental'] [u'william', u'davenport', u'win', u'start'] [u'wineri', u'hefti'] [u'woman', u'avoid', u'jail', u'kill', u'husband'] [u'woman', u'hurt', u'orbost', u'crash'] [u'woodsid', u'energi', u'pioneer', u'search', u'bight'] [u'world', u'leader', u'farewel', u'arafat'] [u'world', u'leader', u'gather', u'arafat', u'funer'] [u'zimbabw', u'court', u'uphold', u'land', u'law'] [u'abus', u'victim', u'angri', u'govt', u'claim', u'payout'] [u'push', u'cinema', u'anti', u'smoke'] [u'reject', u'stamp', u'duti', u'reduct'] [u'deni', u'know', u'judg', u'alcohol', u'problem'] [u'ambros', u'quickest', u'symmon', u'plain', u'practic'] [u'amnesti', u'condemn', u'haitian', u'human', u'right', u'failur'] [u'arafat', u'lay', u'rest', u'ramallah'] [u'armi', u'green', u'ant', u'guard', u'mango', u'crop'] [u'asbesto', u'removalist', u'suspend', u'worksaf'] [u'ashcroft', u'derid', u'judici', u'meddl', u'terror'] [u'aussi', u'netbal', u'play', u'pride'] [u'aussi', u'soldier', u'save', u'black', u'watch', u'helicopt', u'iraq'] [u'aust', u'minist', u'risk', u'defam', u'action', u'terri', u'hick'] [u'australia', u'look', u'regain', u'lose', u'pride', u'elli'] [u'australia', u'upset', u'silver', u'fern'] [u'baghdad', u'airport', u'close', u'indefinit'] [u'beckham', u'leav', u'door', u'open', u'return'] [u'black', u'cap', u'collaps', u'blue', u'charg'] [u'black', u'cap', u'solid', u'start', u'second', u'inning'] [u'blair', u'attend', u'servic', u'murder', u'iraq', u'hostag'] [u'blue', u'rocket', u'blast', u'award'] [u'bodi', u'north', u'east', u'victoria'] [u'bootylici', u'dummi', u'fashion', u'debut'] [u'surviv', u'flight', u'hide', u'land', u'gear'] [u'bulgarelli', u'deni', u'drug', u'link'] [u'bush', u'blair', u'chanc', u'peac'] [u'canberra', u'bulk', u'bill', u'rat', u'increas'] [u'canberra', u'level', u'rise'] [u'canberra', u'host', u'home', u'brew', u'championship'] [u'chelsea', u'stick', u'mutu', u'bosnich'] [u'chemist', u'distanc', u'euthanasia'] [u'church', u'slam', u'abus', u'victim', u'repay', u'demand'] [u'compani', u'express', u'port', u'hedland', u'iron'] [u'secur', u'begin', u'home'] [u'corrupt', u'investig', u'air', u'bash', u'threat', u'claim'] [u'council', u'seek', u'garbolog', u'offic'] [u'council', u'weigh', u'fate'] [u'court', u'hear', u'berlusconi', u'briberi', u'claim'] [u'crowd', u'pack', u'adelaid', u'christma', u'pageant'] [u'custom', u'nab', u'alleg', u'parrot', u'smuggler'] [u'dane', u'protest', u'fallujah', u'attack'] [u'death', u'toll', u'indonesian', u'quak', u'rise'] [u'death', u'toll', u'rise', u'fallujah', u'battl'] [u'diaz', u'lead', u'alabama'] [u'disabl', u'pluck', u'rise', u'flood'] [u'dutch', u'troop', u'leav', u'iraq', u'march'] [u'elect', u'strategi', u'top', u'agenda'] [u'european', u'flee', u'ivori', u'coast', u'violenc'] [u'festiv', u'honour', u'young', u'film', u'maker'] [u'guantanamo', u'trial', u'postpon'] [u'fleme', u'clear', u'test'] [u'flesch', u'leonard', u'lead', u'napl', u'shoot'] [u'fourteen', u'hurt', u'bomb', u'rock', u'thailand'] [u'shanklin', u'fire', u'wale', u'past', u'sorri', u'romania'] [u'gastro', u'outbreak', u'prompt', u'nagambi', u'fish', u'warn'] [u'govt', u'call', u'feedback', u'train', u'initi'] [u'govt', u'parti', u'drug', u'test', u'kit'] [u'green', u'camp', u'hope', u'secur', u'titl', u'bout', u'perth'] [u'gronholm', u'set', u'sizzl', u'pace', u'ralli', u'australia'] [u'gronholm', u'spin', u'ralli', u'australia'] [u'haiti', u'issu', u'aristid', u'arrest', u'warrant'] [u'heavi', u'rain', u'strong', u'wind', u'melbourn'] [u'hezbollah', u'warn', u'israel', u'drone', u'attack'] [u'classroom', u'spark', u'teacher', u'threat'] [u'humanitarian', u'crisi', u'fallujah', u'crescent'] [u'india', u'open', u'kashmir', u'negoti'] [u'indonesia', u'tri', u'infiltr', u'asi', u'spymast', u'say'] [u'insurg', u'fight', u'fallujah', u'south'] [u'iran', u'respond', u'pressur', u'nuclear', u'activ'] [u'irregular', u'swab', u'prompt', u'plaster', u'investig'] [u'itali', u'anchor', u'remov', u'polit', u'pressur', u'fear'] [u'katich', u'hurt', u'test', u'ax'] [u'kelli', u'win', u'start', u'tasmania'] [u'labor', u'bicker', u'forest', u'trip'] [u'leed', u'sell', u'grind', u'deal', u'collaps'] [u'loeb', u'take', u'titl', u'gronholm', u'crash'] [u'lombard', u'continu', u'burn'] [u'lynx', u'remain', u'winless', u'ranger'] [u'magistr', u'worship', u'honour'] [u'charg', u'sick', u'partner', u'death'] [u'face', u'court', u'sick', u'partner', u'death'] [u'media', u'watchdog', u'deplor', u'iraq', u'govt', u'threat'] [u'milit', u'control', u'part', u'mosul'] [u'miln', u'accus', u'undermin', u'devil', u'diseas', u'effort'] [u'fund', u'need', u'mental', u'health', u'report'] [u'mourn', u'palestinian', u'pledg', u'vote', u'replac', u'arafat'] [u'myskina', u'down', u'davenport', u'champ'] [u'mysteri', u'surround', u'arafat', u'ill'] [u'nation', u'cautious', u'parti', u'merger', u'plan'] [u'base', u'respons', u'time'] [u'bowl', u'rule', u'increas', u'varieti', u'buchanan'] [u'news', u'corp', u'complet'] [u'barrist', u'lament', u'loss', u'shaw'] [u'face', u'christma', u'turkey', u'shortag'] [u'polic', u'union', u'drug', u'amnesti', u'abolit'] [u'cancel', u'asbesto', u'removalist', u'licenc'] [u'price', u'eas', u'despit', u'cold', u'snap'] [u'omeley', u'get', u'bench', u'spot'] [u'oram', u'mop', u'blue', u'tail'] [u'outrag', u'alcohol', u'relat', u'death', u'rat', u'criticis'] [u'park', u'ax', u'hugh', u'show', u'hard', u'nose', u'approach'] [u'phone', u'blitz', u'rais', u'public', u'transport', u'awar'] [u'quiet', u'judg', u'alcohol', u'read'] [u'polic', u'investig', u'dubbo', u'drive'] [u'polic', u'probe', u'toowoomba', u'murder'] [u'polic', u'reveal', u'second', u'attempt', u'abduct', u'detail'] [u'polic', u'interview', u'roger', u'alleg', u'assault'] [u'polic', u'welcom', u'increas', u'death', u'cover'] [u'problem', u'gambl', u'affect', u'salvo'] [u'beekeep', u'fear', u'industri', u'futur'] [u'busi', u'back', u'unifi', u'conserv', u'parti'] [u'liber', u'dismiss', u'nation', u'merger', u'plan'] [u'rain', u'eas', u'drought', u'situat'] [u'rogg', u'say', u'athen', u'standard', u'beij'] [u'sack', u'raider', u'player', u'deni', u'drug', u'link'] [u'sexual', u'abus', u'victim', u'face', u'repay', u'medicar', u'rebat'] [u'kill', u'peruvian', u'lightn', u'strike'] [u'south', u'korea', u'warn', u'hard', u'line', u'north'] [u'strong', u'wind', u'sydney', u'north', u'coast'] [u'taliban', u'leader', u'pledg', u'liber', u'afghanistan'] [u'record', u'residenti', u'lend'] [u'tender', u'process', u'begin', u'indigen', u'legal'] [u'toshack', u'appoint', u'wale', u'manag'] [u'toxic', u'agent', u'probabl', u'caus', u'gulf', u'syndrom'] [u'travel', u'plan', u'smart', u'opposit', u'say'] [u'arrest', u'adelaid', u'brawl'] [u'union', u'want', u'govt', u'step', u'wage', u'disput'] [u'claim', u'missil', u'shield', u'laser', u'test', u'success'] [u'deni', u'snub', u'arafat'] [u'polic', u'stun', u'year'] [u'video', u'reveal', u'french', u'hostag', u'good', u'health'] [u'wallabi', u'look', u'forward', u'french', u'test'] [u'wall', u'street', u'make', u'slim', u'gain'] [u'polic', u'offic', u'face', u'ecstasi', u'charg'] [u'research', u'spell', u'blood', u'glucos', u'prick'] [u'webster', u'eye', u'tassal', u'salmon', u'merger'] [u'woman', u'kill', u'fall', u'tree'] [u'workshop', u'focus', u'child', u'rear'] [u'zarqawi', u'tape', u'call', u'rebel', u'fight', u'forc'] [u'mazen', u'favourit', u'fatah'] [u'brew', u'blitz', u'championship'] [u'agreement', u'reach', u'volunt', u'group', u'disput'] [u'albanes', u'ignor', u'forestri', u'issu', u'union'] [u'vow', u'stand', u'firm', u'issu'] [u'chase', u'robson', u'houllier'] [u'beckham', u'consid', u'england', u'retir', u'world'] [u'beckham', u'return', u'spain', u'friend'] [u'bhopal', u'contamin', u'probe', u'find'] [u'hitter', u'smash', u'cricket', u'match'] [u'black', u'cap', u'capabl', u'test', u'boilov', u'say', u'fleme'] [u'black', u'cap', u'knuckl', u'heavi', u'defeat'] [u'blue', u'verg', u'victori'] [u'blue', u'thump', u'zealand'] [u'injur', u'play'] [u'boy', u'charg', u'veteran', u'murder'] [u'braidwood', u'get', u'radio', u'station'] [u'brave', u'butt', u'ruin', u'indian', u'parti', u'maiden', u'centuri'] [u'britain', u'shock', u'kangaroo', u'book', u'final', u'berth'] [u'fire', u'arafat', u'report', u'produc'] [u'cheney', u'hospit', u'short', u'breath'] [u'china', u'order', u'inspect', u'disast'] [u'church', u'concern', u'abus', u'compens', u'letter'] [u'communiti', u'develop', u'dugong', u'turtl', u'plan'] [u'councillor', u'death', u'shock'] [u'council', u'slam', u'domest', u'violenc'] [u'campaign', u'target'] [u'crimin', u'file', u'relat'] [u'cyprus', u'atlanti'] [u'dali', u'donofrio', u'seiz', u'stroke', u'lpga', u'lead'] [u'davenport', u'dismiss', u'open', u'door', u'mauresmo'] [u'dolphin', u'death', u'prompt', u'feder', u'action'] [u'drink', u'drive', u'blitz', u'pleas', u'polic'] [u'driver', u'flee', u'scene', u'fatal', u'accid'] [u'drought', u'blame', u'rise', u'chariti', u'request'] [u'egypt', u'hop', u'solv', u'king', u'riddl'] [u'eurostar', u'celebr', u'birthday'] [u'fate', u'iraqi', u'kidnap', u'relat', u'unknown'] [u'feder', u'focus', u'master', u'success'] [u'explos', u'rock', u'southern', u'thailand'] [u'fli', u'doctor', u'experi', u'surg', u'demand'] [u'dead', u'sailor', u'miss', u'violent', u'storm'] [u'ganguli', u'pathan', u'return', u'india', u'test', u'squad'] [u'goleo', u'lion', u'confirm', u'world'] [u'green', u'hope', u'melbourn', u'mayor', u'race'] [u'half', u'perth', u'year', u'old', u'suffer', u'asthma'] [u'trick', u'hero', u'robinson', u'star', u'canada', u'rout'] [u'histor', u'figur', u'greet', u'return', u'politician'] [u'hockeyroo', u'earn', u'crack', u'bronz'] [u'hospit', u'give', u'cheney', u'clear'] [u'howard', u'quiet', u'asi', u'bug', u'claim'] [u'ingal', u'take', u'tassi', u'tripl', u'challeng'] [u'iraq', u'eye', u'fallujah', u'fight'] [u'iraqi', u'crescent', u'convoy', u'enter', u'fallujah'] [u'ireland', u'wreck', u'bok', u'grand', u'slam', u'dream'] [u'ivori', u'coast', u'accus', u'franc', u'shoot', u'civilian'] [u'ivori', u'coast', u'leader', u'defiant', u'summit', u'conven'] [u'japanes', u'princess', u'marri', u'common'] [u'jellyfish', u'delay', u'troubl', u'cruis', u'ship', u'departur'] [u'joint', u'ventur', u'target', u'communiti', u'literaci', u'numeraci'] [u'jone', u'lament', u'wallabi', u'mistak', u'rate'] [u'journalist', u'death', u'toll', u'pass'] [u'kuehn', u'sluman', u'grab', u'share', u'florida', u'lead'] [u'laser', u'scan', u'provid', u'eye'] [u'liber', u'reject', u'merger', u'plan'] [u'live', u'sheep', u'export', u'tip', u'slide'] [u'loeb', u'equal', u'record', u'ralli', u'australia', u'victori'] [u'loeb', u'cours', u'record', u'equal', u'ralli', u'victori'] [u'loeb', u'cours', u'record', u'equal', u'victori'] [u'seek', u'attempt', u'abduct'] [u'marin', u'caucasian', u'woman', u'bodi', u'fallujah'] [u'martin', u'japanes', u'investor'] [u'melbourn', u'water', u'deni', u'health', u'risk', u'tast'] [u'milit', u'spread', u'fight', u'iraq'] [u'minist', u'prais', u'melbourn', u'winter', u'event', u'windfal'] [u'mourinho', u'mock', u'arsenal', u'disgrac', u'defenc'] [u'asbesto', u'risk', u'civic', u'squar', u'site', u'mayor'] [u'northern', u'irish', u'protest', u'group', u'pledg'] [u'angri', u'surgeon', u'train', u'place'] [u'artist', u'take', u'richest', u'landscap', u'prize'] [u'encourag', u'teacher', u'scholarship'] [u'pakistan', u'claim', u'border', u'milit'] [u'perth', u'turn', u'support', u'super'] [u'dismiss', u'push', u'abort', u'inquiri'] [u'polic', u'investig', u'hervey', u'assault'] [u'polic', u'record', u'ecstasi', u'bust'] [u'polic', u'releas', u'drug', u'hous', u'arrest', u'figur'] [u'polic', u'station', u'host', u'birth'] [u'polic', u'interview', u'collis', u'driver'] [u'powel', u'like', u'meet', u'palestinian', u'leader'] [u'power', u'return', u'lockyer', u'valley', u'plane', u'crash'] [u'merger', u'vote', u'springborg', u'urg', u'liber'] [u'rampant', u'black', u'outclass', u'itali'] [u'rise', u'fee', u'deter', u'student'] [u'sailor', u'stabl', u'condit', u'rescu'] [u'sailor', u'rescu', u'submarin', u'accid'] [u'scotland', u'rout', u'japan'] [u'secur', u'tight', u'apec', u'meet'] [u'spanish', u'separatist', u'peac'] [u'suntan', u'see', u'healthi'] [u'surgeon', u'colleg', u'blame', u'place', u'shortag', u'lack'] [u'thousand', u'european', u'protest', u'isra'] [u'train', u'worker', u'strike', u'fail', u'disrupt', u'pageant'] [u'tropic', u'wetland', u'threat', u'confer', u'tell'] [u'block', u'reach', u'fallujah', u'resid'] [u'plan', u'ambiti', u'wireless', u'militari', u'network'] [u'troop', u'tackl', u'rebel', u'redoubt', u'fallujah'] [u'demand', u'urgent', u'surgeon', u'train', u'talk'] [u'warrior', u'bat', u'shorten', u'clash'] [u'warrior', u'rain', u'reduc', u'match'] [u'tell', u'bite', u'bullet', u'water', u'project'] [u'warn', u'diabet', u'epidem'] [u'wildcat', u'break', u'sydney', u'drought'] [u'wildcat', u'complet', u'sydney', u'clean', u'sweep'] [u'abort', u'debat', u'touchi', u'subject', u'canberra'] [u'abus', u'victim', u'repay', u'medicar', u'rebat', u'govt'] [u'access', u'predict', u'budget', u'surplus', u'econom'] [u'emerg', u'servic', u'cooper'] [u'afghanistan', u'hostag', u'taker', u'renew', u'deadlin'] [u'airlin', u'stowaway', u'prove', u'hard', u'track'] [u'airnorth', u'say', u'decis', u'flight', u'take'] [u'airport', u'doubt', u'dragway', u'green', u'light'] [u'doubt', u'bishop', u'speaker'] [u'ambros', u'hail', u'symmon', u'plain', u'attend'] [u'amcor', u'fine', u'outrag', u'union'] [u'american', u'music', u'award', u'usher'] [u'assault', u'investig'] [u'astl', u'like', u'play', u'brisban'] [u'attorney', u'general', u'refus', u'weigh', u'magistr'] [u'aussi', u'pace', u'trio', u'bowl', u'illeg', u'say', u'murali'] [u'aussi', u'confid', u'lehmann', u'right', u'test'] [u'australia', u'get', u'hotter', u'warn', u'scientist'] [u'australia', u'waiv', u'ethiopian', u'debt'] [u'aust', u'join', u'fight', u'stamp', u'illeg', u'log'] [u'baildon', u'pay', u'tribut', u'robbin'] [u'barca', u'unbeaten', u'run', u'end', u'real', u'crush', u'albacet'] [u'beach', u'tragedi', u'prompt', u'uniform', u'signag'] [u'beer', u'gut', u'tick', u'time', u'bomb'] [u'bellevu', u'hotel', u'develop', u'plan', u'council'] [u'coffer', u'grow', u'amid', u'sale', u'discoveri'] [u'citi', u'chase', u'magic', u'formula'] [u'blaze', u'spark', u'warn'] [u'blind', u'predict', u'destroy', u'wallabi'] [u'burnett', u'busi', u'brainstorm', u'idea', u'growth'] [u'bush', u'nurs', u'win', u'recognit'] [u'bushrang', u'suit', u'armour', u'exhibit'] [u'cancer', u'council', u'remind', u'peopl', u'cover', u'home'] [u'candid', u'line', u'speaker'] [u'carr', u'green', u'credenti'] [u'chef', u'jail', u'heroin', u'traffic'] [u'china', u'plan', u'world', u'tallest', u'tower'] [u'china', u'say', u'taiwan', u'conflict', u'unavoid'] [u'civil', u'libertarian', u'question', u'famili', u'violenc'] [u'close', u'build', u'safer', u'cyclon', u'research'] [u'leak', u'spark', u'scare'] [u'communiti', u'get', u'number', u'plat'] [u'compani', u'confid', u'fitzroy', u'river', u'plan'] [u'confer', u'aim', u'improv', u'indigen', u'educ'] [u'confer', u'promot', u'hazelnut', u'grower'] [u'confer', u'show', u'refuge', u'cultur'] [u'conspiraci', u'rumour', u'abound', u'follow', u'arafat', u'death'] [u'coron', u'seek', u'help', u'famili', u'drown'] [u'council', u'tell', u'constitut', u'amend', u'requir'] [u'council', u'welcom', u'olymp', u'product', u'propos'] [u'court', u'hear', u'mokbel', u'money', u'cocain'] [u'court', u'tell', u'hook', u'throw', u'punch'] [u'crayfish', u'surfer', u'coast'] [u'croc', u'face', u'challeng', u'perform', u'away'] [u'croc', u'home', u'put', u'pressur', u'away'] [u'dali', u'donofrio', u'win', u'tournament', u'champion'] [u'david', u'hawker', u'name', u'speaker'] [u'defenc', u'offici', u'deni', u'lie', u'fatal', u'accid'] [u'piero', u'keep', u'juventus', u'clear'] [u'democrat', u'seek', u'limit', u'coalit', u'senat', u'control'] [u'detect', u'investig', u'fatal', u'road', u'rage', u'stab'] [u'disabl', u'group', u'ramp', u'club', u'access', u'complaint'] [u'doctor', u'surgeon', u'health', u'sector'] [u'dog', u'take', u'aback', u'croft', u'claim'] [u'dont', u'caus', u'headach', u'railcorp'] [u'jone', u'purchas', u'marketwatch'] [u'drought', u'condit', u'eas', u'region'] [u'drought', u'figur', u'improv'] [u'earli', u'start', u'bushfir', u'season', u'prevent', u'backburn'] [u'arrest', u'joint', u'polic', u'drug', u'oper'] [u'elli', u'rule', u'second', u'netbal', u'test'] [u'condemn', u'water', u'canal'] [u'environ', u'dept', u'pleas', u'spray', u'outcom'] [u'mobster', u'rejoin', u'communiti', u'pinki', u'time'] [u'expedit', u'head', u'coldest', u'spot', u'earth'] [u'farina', u'say', u'kewel', u'return', u'form'] [u'fewer', u'offend', u'catch', u'drink', u'drive', u'crackdown'] [u'destroy', u'hobart', u'hous'] [u'propos', u'tunnel', u'expect'] [u'fisher', u'adjust', u'submiss', u'today'] [u'fisher', u'concern', u'threat', u'beacon'] [u'fisher', u'suspect', u'weir', u'pollut'] [u'fish', u'surviv', u'day', u'iranian', u'fridg'] [u'fleme', u'prepar', u'play', u'fit'] [u'fli', u'visit', u'brighten', u'sick', u'kid'] [u'republ'] [u'seek', u'babi', u'bash', u'charg', u'stay'] [u'franc', u'ivori', u'coast', u'relat', u'worsen'] [u'french', u'polic', u'unwit', u'aid', u'jewelleri', u'thief'] [u'fresh', u'fight', u'break', u'fallujah'] [u'friend', u'famili', u'urg', u'confisc', u'key', u'drink'] [u'funer', u'director', u'call', u'regul'] [u'ganguli', u'ban', u'south', u'africa', u'test', u'slow'] [u'giggss', u'unit', u'futur', u'finalis'] [u'demonstr', u'heighten', u'awar'] [u'poppi', u'offer', u'anti', u'malari', u'hope'] [u'govern', u'fund', u'schooli', u'safeti'] [u'govt', u'urg', u'begin', u'work', u'highway', u'deviat'] [u'green', u'accus', u'referendum', u'dishonesti'] [u'gretley', u'disast'] [u'group', u'say', u'tape', u'threaten', u'candi', u'plant'] [u'hardi', u'compens', u'negoti', u'stall'] [u'hardwood', u'timber', u'busi', u'merg'] [u'hear', u'begin', u'hook', u'death'] [u'hear', u'tell', u'shaw', u'disappear', u'hospit'] [u'henman', u'seek', u'elus', u'titl', u'greatest', u'season'] [u'hewitt', u'prepar', u'moya', u'challeng'] [u'hockeyroo', u'miss', u'bronz', u'controversi', u'fashion'] [u'hop', u'rest', u'work', u'group', u'council', u'disput'] [u'horticultur', u'industri', u'legal', u'claim', u'increas'] [u'hospit', u'retain', u'surgeon', u'access', u'child', u'porn'] [u'hotel', u'redevelop', u'plan', u'like', u'reject'] [u'hundr', u'tribut', u'captain', u'socceroo'] [u'injuri', u'recoveri', u'easier', u'studi'] [u'inquest', u'expect', u'holt', u'investig'] [u'inquiri', u'hear', u'shaw', u'blood', u'sampl'] [u'inquiri', u'probe', u'judg', u'miss', u'blood', u'sampl'] [u'investig', u'begin', u'sexual', u'assault'] [u'investig', u'continu', u'violent', u'jack'] [u'iran', u'curb', u'uranium', u'program'] [u'iran', u'suspend', u'uranium', u'enrich'] [u'iraq', u'rift', u'threaten', u'nato', u'mission', u'say', u'chief'] [u'iraq', u'open', u'embassi', u'australia'] [u'ivori', u'coast', u'peac', u'talk', u'begin'] [u'judg', u'deni', u'take', u'blood', u'sampl'] [u'knowl', u'nestor', u'secur', u'year', u'rank'] [u'kuehn', u'sluman', u'defend', u'shoot', u'titl'] [u'labor', u'look', u'candid', u'contest'] [u'landown', u'struggl', u'tax', u'opposit'] [u'lehmann', u'deni', u'player', u'abus', u'night', u'hook', u'die'] [u'liber', u'promis', u'fairer', u'land'] [u'lion', u'record', u'straight', u'profit'] [u'live', u'singl', u'get', u'revamp'] [u'lobster', u'fisher', u'expect', u'good', u'season'] [u'die', u'truck', u'crash'] [u'get', u'year', u'attempt', u'murder'] [u'jail', u'hotel', u'murder'] [u'walk', u'free', u'admit', u'child', u'porn'] [u'martin', u'woo', u'japanes', u'investor'] [u'mayor', u'hope', u'croweat'] [u'mayor', u'urg', u'clarifi', u'defam', u'expens', u'comment'] [u'mcmanus', u'stay', u'docker'] [u'media', u'stock', u'enjoy', u'market', u'record'] [u'melbourn', u'stem', u'cell', u'line', u'freeli', u'avail'] [u'milit', u'releas', u'allawi', u'relat'] [u'darwin', u'soldier', u'affect', u'heat', u'stress'] [u'motorcyclist', u'die', u'head', u'collis'] [u'gather', u'sit', u'parliament'] [u'mutu', u'join', u'romania', u'squad', u'travel', u'armenia'] [u'negoti', u'continu', u'palm', u'island', u'alcohol'] [u'park', u'plan', u'stall'] [u'newcastl', u'souness', u'fight', u'improp', u'conduct', u'charg'] [u'council', u'general', u'manag', u'juggl', u'job'] [u'shop', u'complex', u'complement', u'citi', u'centr'] [u'train', u'program', u'unveil', u'rural', u'doctor'] [u'question', u'suitabl', u'drought', u'relief'] [u'robson', u'reviv', u'baggi', u'boro'] [u'face', u'critic', u'airnorth', u'servic', u'suspens'] [u'oper', u'gumbl', u'target', u'drunken', u'street'] [u'oyster', u'industri', u'expect', u'purler'] [u'padthaway', u'stag', u'success', u'festiv'] [u'pair', u'arrest', u'europ', u'record', u'ecstasi', u'haul'] [u'parent', u'defend', u'spend', u'abus', u'payout'] [u'perth', u'jail', u'child', u'porn', u'offenc'] [u'plan', u'highway', u'upgrad', u'caus', u'concern'] [u'leader', u'attack', u'elect', u'date'] [u'court', u'halt', u'legal', u'appoint'] [u'polic', u'associ', u'lobbi', u'earlier', u'retir'] [u'polic', u'follow', u'european', u'lead', u'record', u'aust'] [u'polic', u'probe', u'drive', u'shoot'] [u'polic', u'communiti', u'help', u'solv', u'crime'] [u'powel', u'hold', u'west', u'bank', u'talk'] [u'pump', u'iron', u'deliv', u'result', u'patient'] [u'rain', u'boost', u'water', u'storag', u'level'] [u'rain', u'prompt', u'locust', u'warn'] [u'redback', u'intent', u'make', u'strong', u'start'] [u'bull', u'boss', u'confirm', u'jaguar', u'takeov', u'report'] [u'bull', u'confirm', u'takeov', u'jaguar'] [u'region', u'busi', u'look', u'offshor'] [u'retail', u'close', u'box'] [u'cheer', u'profit', u'boost'] [u'rfds', u'take'] [u'rise', u'commod', u'spur', u'market', u'high'] [u'rooney', u'doubl', u'sink', u'newcastl'] [u'rural', u'children', u'learn', u'beach', u'safeti'] [u'saff', u'clarifi', u'mules', u'stanc'] [u'govt', u'say', u'link', u'citi', u'countri'] [u'school', u'take', u'stock', u'blaze'] [u'seashift', u'council', u'develop', u'industri', u'estat'] [u'seven', u'detaine', u'injur'] [u'shaw', u'deni', u'flee', u'blood', u'sampl'] [u'sibl', u'money', u'argument', u'spark', u'fatal'] [u'strict', u'water', u'limit', u'impos'] [u'sunshin', u'state', u'top', u'tourist'] [u'survey', u'illumin', u'cancer', u'myth'] [u'support', u'river', u'bank', u'develop'] [u'place', u'nation', u'trust', u'administr'] [u'telstra', u'complet', u'share'] [u'territori', u'showcas', u'mobil', u'preschool'] [u'thai', u'free', u'trade', u'treati', u'gain', u'support'] [u'think', u'tank', u'review', u'telstra', u'sale', u'issu'] [u'thorp', u'blast', u'offici', u'zimbabw', u'tour'] [u'timber', u'yard', u'protest', u'arrest'] [u'time', u'kind', u'word', u'not'] [u'titan', u'threaten', u'tourist', u'say', u'explor'] [u'toll', u'compani', u'driver', u'wont', u'rule'] [u'price', u'guid', u'win', u'nation', u'award'] [u'victorian', u'honour', u'braveri'] [u'injur', u'ultra', u'light', u'crash'] [u'uganda', u'declar', u'temporari', u'truce', u'rebel'] [u'triumphant', u'annual', u'aussi', u'rule', u'match'] [u'union', u'employ', u'wrangl', u'workplac', u'safeti', u'law'] [u'uralla', u'commemor', u'bushrang', u'death'] [u'death', u'number', u'decreas'] [u'death', u'toll', u'rise', u'fallujah'] [u'forc', u'fail', u'captur', u'zarqawi'] [u'hunt', u'fallujah', u'rebel', u'block'] [u'senat', u'slam', u'dysfunct', u'rogu'] [u'plan', u'target', u'iraq', u'rebel'] [u'weed', u'fallujah', u'resist'] [u'veteran', u'accus', u'murder', u'remain', u'custodi'] [u'consid', u'tough', u'workplac', u'safeti', u'law'] [u'mine', u'industri', u'boom'] [u'visitor', u'flock', u'nation', u'swap', u'meet'] [u'warn', u'name', u'fleme', u'brisban', u'target'] [u'warren', u'funer', u'hold', u'today'] [u'weve', u'definit', u'atlanti', u'research', u'say'] [u'william', u'hand', u'davenport', u'number'] [u'tang', u'star', u'dead'] [u'accc', u'call', u'increas', u'port', u'capac', u'invest'] [u'prepar', u'water', u'suppli'] [u'actu', u'critic', u'propos', u'workplac', u'law'] [u'european', u'base'] [u'alcohol', u'drug', u'chief', u'concern', u'youth'] [u'algal', u'bloom', u'creat', u'myrtleford', u'water', u'woe'] [u'anti', u'bush', u'sentiment', u'fuel', u'apec', u'protest'] [u'announc', u'incent', u'program', u'elit', u'athlet'] [u'appeal', u'athen', u'result'] [u'launch', u'roger', u'medal', u'appeal'] [u'applebi', u'predict', u'boom', u'australian', u'golf'] [u'armidal', u'airport', u'take'] [u'armi', u'farewel', u'trooper'] [u'dip', u'point'] [u'safeguard', u'supplement'] [u'attorney', u'general', u'defend', u'famili', u'violenc'] [u'aussi', u'dollar', u'gain', u'euro', u'sell'] [u'aussi', u'netbal', u'shoot', u'seri'] [u'australia', u'lodg', u'huge', u'seab', u'claim'] [u'ban', u'ganguli', u'play', u'protea'] [u'beckham', u'scotch', u'earli', u'retir', u'rumour'] [u'black', u'hole', u'discoveri', u'excit', u'scientist'] [u'bouncer', u'grab', u'hook', u'throat', u'wit'] [u'bowler', u'avoid', u'hayden'] [u'bushrang', u'consist', u'ambush'] [u'busi', u'prepar', u'return', u'shop', u'centr'] [u'defend', u'bowler', u'murali', u'chuck', u'claim'] [u'hepburn', u'dental', u'care', u'probe'] [u'ballina', u'bypass', u'fund'] [u'canal', u'plan', u'gain', u'liber', u'candid', u'support'] [u'cane', u'toad', u'close', u'darwin'] [u'chanc', u'lament', u'lobster', u'agreement'] [u'child', u'care', u'crisi', u'loom', u'roxbi', u'down'] [u'spi', u'quit', u'amid', u'reform'] [u'coliban', u'defend', u'eas', u'water', u'ban'] [u'communiti', u'angri', u'wind', u'farm', u'plan'] [u'confus', u'surround', u'fare', u'action'] [u'coomealla', u'club', u'lift', u'profit', u'year', u'high'] [u'council', u'consid', u'lake', u'fish', u'option'] [u'councillor', u'rais', u'doubt', u'plan', u'site'] [u'council', u'ponder', u'yarrawonga', u'rezon'] [u'council', u'weigh', u'develop', u'issu'] [u'court', u'case', u'test', u'indigen', u'fish', u'right'] [u'court', u'rule', u'soldier', u'sarin', u'death', u'unlaw'] [u'credit', u'card', u'fraud', u'earn', u'woman', u'longer', u'jail', u'term'] [u'crow', u'pair', u'give', u'fit', u'deadlin'] [u'cut', u'urg', u'person', u'rate'] [u'death', u'threat', u'target', u'sniffer'] [u'death', u'toll', u'rise', u'indonesian', u'quak'] [u'debat', u'rag', u'cotton', u'test'] [u'democrat', u'play', u'grain', u'export', u'fear'] [u'ring', u'strong', u'quarter'] [u'drink', u'drive', u'studi', u'show', u'parent', u'role'] [u'driver', u'die', u'crash', u'road', u'train'] [u'edmond', u'extend', u'contract', u'perpignan'] [u'england', u'recal', u'worsley', u'face', u'springbok'] [u'ethnic', u'food', u'industri', u'worth'] [u'european', u'probe', u'lunar', u'orbit'] [u'expert', u'evid', u'drown', u'inquest'] [u'fall', u'media', u'mogul', u'charg', u'fraud'] [u'famili', u'arafat', u'medic', u'record'] [u'farina', u'name', u'strong', u'line', u'norway', u'clash'] [u'februari', u'date', u'carnarvon', u'wharf', u'work'] [u'feder', u'elect'] [u'feder', u'open', u'master', u'defenc', u'victori'] [u'serious', u'injur', u'tilt', u'train', u'derail'] [u'flatley', u'lead', u'australia'] [u'focus', u'region', u'health', u'servic', u'deliveri'] [u'yeoval', u'student', u'villag', u'doctor'] [u'injur', u'accid'] [u'franc', u'rule', u'french', u'polynesia', u'elect', u'invalid'] [u'fund', u'hang', u'balanc', u'cane', u'plant'] [u'gebrselassi', u'target', u'februari', u'comeback'] [u'global', u'warm', u'aust', u'uninhabit'] [u'governor', u'general', u'open', u'parliament'] [u'govt', u'ask', u'consid', u'south', u'east', u'technic', u'colleg'] [u'govt', u'back', u'clemenc', u'kazakh', u'prison'] [u'govt', u'back', u'review', u'sexual', u'abus', u'investig'] [u'govt', u'undermin', u'nation', u'trust', u'say', u'opposit'] [u'govt', u'urg', u'speed', u'bridg', u'studi'] [u'grain', u'deliveri'] [u'grain', u'harvest'] [u'green', u'group', u'confid', u'whale', u'rule'] [u'group', u'reject', u'schooli', u'week', u'critic'] [u'group', u'want', u'buck', u'rodeo', u'trend'] [u'hank', u'crack', u'code'] [u'hast', u'council', u'ponder', u'chang'] [u'hayden', u'disappoint', u'murali', u'alleg'] [u'health', u'expert', u'visit', u'asbesto', u'contamin', u'site'] [u'health', u'group', u'welcom', u'fund'] [u'health', u'servic', u'aim', u'avert', u'hospit', u'board'] [u'holyfield', u'receiv', u'medic', u'suspens'] [u'hook', u'push', u'shove', u'bouncer', u'court', u'tell'] [u'hope', u'water', u'option', u'flow', u'talk'] [u'illeg', u'fish', u'land', u'indonesian', u'jail'] [u'indian', u'armi', u'kashmir', u'troop', u'number'] [u'indigen', u'patient', u'miss', u'medic', u'follow'] [u'industri', u'relat', u'report', u'prompt', u'opposit'] [u'injur', u'kalli', u'doubt', u'india', u'test'] [u'insurg', u'attack', u'iraq', u'pipelin'] [u'investig', u'comb', u'train', u'wreckag'] [u'iran', u'sanction', u'threat', u'eas', u'nuclear', u'report'] [u'japan', u'say', u'china', u'apologis', u'intrus'] [u'cut', u'help', u'electrolux', u'remain', u'competit'] [u'judg', u'criticis', u'william', u'hear', u'delay'] [u'judg', u'awar', u'blood', u'sampl', u'say'] [u'karzai', u'hope', u'hostag', u'releas'] [u'kiwi', u'declar', u'fit', u'gabba', u'test'] [u'labor', u'critic', u'tourism', u'chief', u'appoint'] [u'labor', u'rebel', u'kimberley', u'water', u'plan'] [u'labor', u'support', u'textil', u'assist', u'packag'] [u'labor', u'welcom', u'employ', u'group', u'reform', u'propos'] [u'lectur', u'warn', u'drought', u'stress'] [u'claim', u'world', u'broadband', u'multimedia', u'phone'] [u'lobster', u'industri', u'take', u'whale', u'precaut'] [u'lobster', u'season', u'beach', u'price', u'go'] [u'macedonian', u'quit'] [u'macquari', u'bank', u'lift', u'half', u'year', u'profit'] [u'await', u'sentenc', u'partner', u'attack'] [u'jail', u'infect', u'teen'] [u'mawson', u'pioneer', u'gather', u'year', u'reunion'] [u'recognis', u'braveri', u'plane', u'drama'] [u'migrat', u'whale', u'south'] [u'million', u'coast', u'motorway'] [u'miner', u'await', u'miner', u'sand', u'explor', u'approv'] [u'miner', u'urg', u'lift', u'apprentic', u'number'] [u'drought', u'assist', u'farmer'] [u'kill', u'mosul', u'clash'] [u'push', u'riverland', u'technic', u'colleg'] [u'nation', u'exclud', u'nation', u'merger', u'plan'] [u'newcastl', u'rent', u'like', u'higher'] [u'cattl', u'chief', u'seek', u'mend', u'split'] [u'drug', u'herald', u'breast', u'cancer', u'hope'] [u'law', u'combat', u'drink', u'spike'] [u'offens', u'begin', u'mosul'] [u'news', u'crew', u'find', u'miss', u'woman'] [u'speaker', u'swear', u'parliament', u'open'] [u'nigerian', u'strike', u'abandon'] [u'jail', u'convict', u'possess', u'child', u'porn'] [u'rest', u'british', u'hero', u'dead', u'match'] [u'nrma', u'back', u'cessnock', u'road', u'fund', u'push'] [u'ombudsman', u'probe', u'handl', u'abus', u'case'] [u'omeley', u'cite', u'brawl'] [u'opposit', u'air', u'health', u'budget', u'worri'] [u'optus', u'biggest', u'australia'] [u'oversea', u'prais', u'local', u'educ'] [u'paper', u'woodchip', u'help', u'forest', u'product', u'export', u'growth'] [u'parliament', u'reopen', u'speaker'] [u'enter', u'joint', u'game', u'ventur'] [u'pest', u'mistaken', u'promot', u'brochur'] [u'petit', u'oppos', u'hunt', u'zone', u'plan'] [u'plan', u'fuel', u'petrol', u'sniff'] [u'plan', u'begin', u'temora', u'festiv'] [u'ship', u'compani', u'deni', u'crew', u'mistreat'] [u'ship', u'crew', u'deni', u'basic', u'right', u'union'] [u'poker', u'face', u'kafelnikov', u'prove', u'card'] [u'polic', u'chief', u'deni', u'hush', u'money', u'claim'] [u'polic', u'chief', u'play', u'staff', u'concern'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'ponder', u'fatal', u'crash', u'caus'] [u'polic', u'seek', u'fatal', u'crash', u'wit'] [u'polic', u'urg', u'mirboo', u'north', u'contact', u'famili'] [u'post', u'mortem', u'bundarra', u'bodi'] [u'powel', u'work', u'hard', u'successor', u'confirm'] [u'power', u'return', u'sydney', u'home'] [u'protest', u'ralli', u'refuge', u'treatment'] [u'public', u'warn', u'explos', u'danger'] [u'qanta', u'worker', u'appeal', u'public', u'support'] [u'crash', u'spark', u'central', u'fast', u'rail', u'fear'] [u'govt', u'fingleton', u'compo', u'decis'] [u'train', u'accid', u'investig'] [u'quak', u'hit', u'colombian', u'coast'] [u'radio', u'broadcast', u'kill', u'philippin'] [u'rain', u'postpon', u'hewitt', u'moya', u'clash'] [u'rann', u'beat', u'biomass', u'power', u'station'] [u'crescent', u'fail', u'deliv'] [u'redknapp', u'stay', u'portsmouth'] [u'refuge', u'protest', u'gather', u'adelaid'] [u'report', u'highlight', u'region', u'legal', u'fear'] [u'report', u'show', u'tourism', u'econom', u'impact'] [u'review', u'help', u'shape', u'airport', u'futur'] [u'fear', u'gate', u'woe', u'hurt', u'futur', u'profit'] [u'rice', u'replac', u'powel', u'secretari', u'state'] [u'rilli', u'win', u'consecut', u'award'] [u'ring', u'cycl', u'earn', u'audienc', u'prais'] [u'runner', u'track', u'round', u'world', u'record'] [u'scholarship', u'help', u'young', u'artist'] [u'score', u'injur', u'train', u'derail'] [u'scotland', u'extend', u'squad', u'wallabi', u'match'] [u'chang', u'prove', u'cost', u'local'] [u'search', u'continu', u'miss', u'swimmer'] [u'seccomb', u'lay', u'month'] [u'senat', u'push', u'finish', u'atsic', u'abolit', u'hear'] [u'senior', u'look', u'world', u'challeng'] [u'serial', u'offend', u'plead', u'guilti', u'indec'] [u'sharapova', u'take', u'champ'] [u'slow', u'go', u'tiger', u'beller'] [u'snowtown', u'accus', u'tell', u'life', u'wife', u'death'] [u'snowi', u'restor', u'work', u'continu'] [u'south', u'african', u'woman', u'take', u'shark'] [u'speaker', u'hop', u'minist', u'account'] [u'stanhop', u'open', u'deal', u'pierc', u'creek', u'rebuild'] [u'steward', u'probe', u'symmon', u'plain', u'result'] [u'strong', u'build', u'activ', u'push', u'rinker', u'profit'] [u'sunshin', u'coast', u'join', u'premier', u'rugbi', u'comp'] [u'surgeon', u'fin', u'child', u'porn', u'face', u'medic', u'board'] [u'survey', u'highlight', u'good', u'hunter', u'economi'] [u'survey', u'highlight', u'local', u'firm', u'competit'] [u'surveyor', u'hunt', u'stone', u'formalis'] [u'sydney', u'unit', u'resid', u'lock', u'upgrad'] [u'amend', u'offenc'] [u'firm', u'hail', u'broadband', u'power', u'line'] [u'govt', u'order', u'construct', u'firm'] [u'polic', u'seek', u'lock', u'horn', u'thiev'] [u'teen', u'shoot', u'murder', u'charg', u'chang', u'plea'] [u'thorni', u'reef', u'problem', u'move', u'south'] [u'tiger', u'redback'] [u'tiger', u'collaps', u'redback'] [u'tiger', u'lunch', u'redback'] [u'tourism', u'chief', u'defend', u'appoint'] [u'townsvill', u'get', u'smart', u'state'] [u'train', u'crash', u'passeng', u'receiv', u'treatment'] [u'train', u'crash', u'probe', u'turn', u'black'] [u'union', u'question', u'temporari', u'mine', u'camp', u'condit'] [u'union', u'warn', u'cut'] [u'vote', u'impos', u'arm', u'embargo', u'ivori', u'coast'] [u'command', u'say', u'fallujah', u'percent', u'secur'] [u'forc', u'launch', u'assault', u'mosul'] [u'investig', u'kill', u'fallujah'] [u'network', u'footag', u'insurg', u'shoot'] [u'secretari', u'state', u'powel', u'quit'] [u'vend', u'machin', u'offer', u'music', u'download'] [u'victim', u'fail', u'mortgag', u'scheme', u'compens'] [u'wagner', u'ring', u'draw', u'groupi', u'adelaid'] [u'strike', u'hit', u'mandurah', u'rail', u'project'] [u'worker', u'readi', u'erad', u'dengu', u'mosquito'] [u'zarqawi', u'messag', u'tell', u'support', u'prepar'] [u'zimbabw', u'tour', u'import', u'step', u'stone', u'vaughan'] [u'abandon', u'safeti', u'chang', u'dick', u'smith', u'say'] [u'age', u'care', u'plan', u'offer', u'high', u'hop'] [u'albani', u'miss', u'chang', u'task', u'forc'] [u'jazeera', u'hold', u'hassan', u'kill', u'video'] [u'hail', u'virgin', u'mari', u'sandwich'] [u'anderson', u'question', u'windsor', u'claim'] [u'angri', u'aragon', u'defend', u'henri', u'remark'] [u'artist', u'take', u'roundabout', u'art', u'promot'] [u'aust', u'aim', u'aid', u'corrupt', u'apec', u'agenda'] [u'australia', u'put', u'barbarian', u'sword'] [u'barrist', u'testimoni', u'odd', u'shaw'] [u'unit', u'block', u'plan', u'civic'] [u'black', u'move', u'privatis', u'holling'] [u'bouncer', u'punch', u'hook', u'wit'] [u'bouncer', u'punch', u'hook', u'wit', u'tell'] [u'britain', u'unveil', u'anti', u'smoke', u'propos'] [u'bulldog', u'fan', u'delay', u'ambul'] [u'bush', u'appoint', u'rice', u'replac', u'powel'] [u'busi', u'scheme', u'incub', u'success'] [u'busi', u'survey', u'draw', u'mix', u'reaction'] [u'extend', u'drought'] [u'go', u'speedi', u'road', u'widen'] [u'call', u'govt', u'agenc', u'consolid'] [u'camera', u'monitor', u'dysart', u'crime'] [u'accid', u'victim', u'murder', u'polic'] [u'care', u'australia', u'mourn', u'hassan', u'murder'] [u'central', u'retain', u'drive', u'market', u'tourism', u'push'] [u'chamber', u'support', u'chang', u'unfair', u'dismiss', u'law'] [u'charter', u'tower', u'host', u'region', u'women', u'forum'] [u'chief', u'justic', u'meet', u'cape', u'york', u'indigen', u'leader'] [u'child', u'care', u'worker', u'clear', u'misconcept'] [u'chirac', u'doubt', u'world', u'safer', u'post', u'saddam'] [u'citrus', u'canker', u'inspect', u'extend', u'backyard'] [u'citylink', u'oper', u'offer', u'earli', u'payment'] [u'climber', u'rescu', u'trap', u'fall', u'rock'] [u'council', u'hop', u'head', u'phone', u'tower', u'disput'] [u'council', u'push', u'skill', u'worker'] [u'council', u'sell', u'break', u'hill', u'land'] [u'court', u'hear', u'evid', u'kane', u'mason', u'murder'] [u'court', u'reject', u'charg', u'theophan'] [u'crash', u'spark', u'level', u'cross', u'safeti'] [u'croc', u'king', u'prepar', u'settl', u'differ', u'court'] [u'croc', u'increas', u'darwin', u'harbour'] [u'davenport', u'top', u'rank'] [u'debat', u'aborigin', u'land', u'defer'] [u'dollar', u'push', u'cent'] [u'downer', u'condemn', u'appar', u'hassan', u'murder'] [u'driver', u'warn', u'road', u'reseal'] [u'kill', u'afghan', u'clash'] [u'emphysema', u'preval', u'think', u'research', u'say'] [u'ergon', u'stop', u'work', u'discuss'] [u'ergon', u'worker', u'vote', u'industri', u'campaign'] [u'esso', u'play', u'asbesto', u'fear'] [u'famili', u'call', u'ultrasound', u'abort'] [u'farina', u'rue', u'defens', u'error'] [u'farmer', u'extend', u'drought'] [u'farmer', u'urg', u'drought', u'offer'] [u'feder', u'minist', u'back', u'singl', u'conserv'] [u'firm', u'promis', u'reliabl', u'suppli'] [u'forestri', u'letter', u'fall', u'deaf', u'ear', u'adam', u'say'] [u'fraser', u'coast', u'get', u'fewer', u'intern', u'backpack'] [u'govt', u'agenc', u'urg', u'help', u'fight', u'youth', u'crime'] [u'govt', u'announc', u'research', u'fund'] [u'govt', u'move', u'implement', u'agenda'] [u'govt', u'prepar', u'deliv', u'elect', u'promis'] [u'govt', u'close', u'speed', u'camera', u'loophol'] [u'govt', u'urg', u'increas', u'midwiferi', u'servic', u'fund'] [u'group', u'deliv', u'rfds', u'fund'] [u'battl', u'erupt', u'kashmir'] [u'gunn', u'submit', u'formal', u'pulp', u'propos'] [u'hardi', u'commit', u'interim', u'compens', u'fund'] [u'hardi', u'fund', u'get', u'cautious', u'welcom'] [u'hatton', u'aim', u'tszyu', u'showdown'] [u'health', u'chief', u'continu', u'push', u'care'] [u'henri', u'celebr', u'award'] [u'hewitt', u'down', u'moya'] [u'high', u'speed', u'aircraft', u'patrol', u'northern', u'australia'] [u'holm', u'look', u'strong', u'caloundra', u'perform'] [u'hop', u'wane', u'miss', u'swimmer'] [u'hospit', u'board', u'defend', u'amidst', u'possibl', u'sack'] [u'hospit', u'meet', u'tip', u'volatil'] [u'hous', u'evacu', u'pool', u'blast'] [u'howard', u'latham', u'clash', u'rat'] [u'consult', u'captain', u'chuck', u'law'] [u'iemma', u'apologis', u'faulti', u'hospit', u'equip'] [u'index', u'point', u'strong', u'econom', u'growth'] [u'indigen', u'cricket', u'contest', u'expand'] [u'insurg', u'attack', u'iraqi', u'pipelin'] [u'seek', u'hunter', u'technic', u'colleg'] [u'intern', u'leader', u'condemn', u'hassan', u'murder'] [u'iraqi', u'hostag', u'hassan', u'probabl', u'kill', u'famili', u'say'] [u'hear', u'push', u'region', u'sunday', u'trade'] [u'japan', u'examin', u'chang', u'militari', u'limit', u'report'] [u'katich', u'blame', u'test', u'spot', u'loss'] [u'kean', u'strike', u'see', u'ireland', u'home'] [u'kiwi', u'yawn', u'test', u'taunt'] [u'latham', u'attack', u'abbott', u'abort', u'issu'] [u'lend', u'standard', u'remain', u'high', u'bank'] [u'lockyer', u'track', u'test', u'recoveri'] [u'hold', u'dead', u'shop', u'shoot'] [u'kill', u'street', u'sweeper', u'accid'] [u'face', u'mountain', u'landmark'] [u'stab', u'melbourn'] [u'stab', u'mele', u'award'] [u'marin', u'park', u'rais', u'indigen', u'fear'] [u'maritim', u'union', u'oppos', u'stevedor', u'firm'] [u'mark', u'thatcher', u'stand', u'trial'] [u'mcmillan', u'gabba', u'recal'] [u'media', u'stock', u'drive', u'market', u'rebound'] [u'migrat', u'agenc', u'set', u'vote', u'iraqi'] [u'minist', u'cautious', u'chang', u'tenanc', u'law'] [u'minist', u'hear', u'case', u'better', u'health', u'servic'] [u'delay', u'build'] [u'fund', u'avail', u'literaci', u'boost'] [u'talk', u'highway', u'construct'] [u'moseley', u'regain', u'european', u'berth'] [u'highlight', u'plight', u'special', u'need', u'child'] [u'push', u'local', u'medic', u'train'] [u'navi', u'patrol', u'boat', u'ram'] [u'user', u'greater', u'flexibl'] [u'head', u'swim', u'coach', u'aim', u'reclaim', u'spot'] [u'plane', u'offer', u'extrem', u'rid'] [u'news', u'corp', u'mark'] [u'zealand', u'detect', u'slow', u'earthquak'] [u'nightclub', u'odd', u'council', u'condit'] [u'chang', u'river', u'murray', u'water', u'alloc'] [u'govt', u'close', u'speed', u'fine', u'loophol'] [u'govt', u'union', u'join', u'forc', u'hardi', u'talk'] [u'move', u'ahead', u'child', u'offend', u'databas'] [u'ombudsman', u'back', u'prison', u'complaint', u'drug', u'fine'] [u'open', u'offer', u'glimps', u'council', u'spend'] [u'opposit', u'call', u'certainti', u'rehabilit'] [u'opposit', u'pay', u'tribut', u'powel', u'welcom', u'rice'] [u'orchardist', u'reject', u'takeov', u'worri'] [u'paintbal', u'game', u'give', u'green', u'light'] [u'pakistan', u'veteran', u'dump', u'australian', u'tour'] [u'papa', u'wemba', u'walk', u'free', u'peopl', u'smuggl'] [u'paper', u'giant', u'accus', u'illeg', u'log', u'china'] [u'parliament', u'debat', u'thai', u'free', u'trade', u'deal'] [u'concern', u'guidelin', u'govt'] [u'perk', u'juvenil', u'prison', u'rule', u'tighten'] [u'perth', u'breast', u'cancer', u'servic', u'upgrad'] [u'pharmaci', u'rob', u'polic', u'offic', u'metr', u'away'] [u'watch', u'video', u'footag', u'shaw', u'accid'] [u'plan', u'continu', u'ethanol', u'refineri'] [u'plaster', u'declar', u'derbi', u'winner', u'negat'] [u'boat', u'crew', u'deni', u'condit'] [u'polanski', u'wrap', u'oliv', u'twist'] [u'polic', u'hear', u'suburban', u'concern'] [u'polic', u'hunt', u'arm', u'robberi'] [u'polic', u'charg', u'drink', u'drive', u'crackdown'] [u'polic', u'seek', u'drink', u'spike', u'wit'] [u'polic', u'seek', u'help', u'probe', u'bendigo', u'crash'] [u'polic', u'hunt', u'armidal', u'carjack'] [u'polic', u'hous', u'away', u'schooli'] [u'pont', u'confid', u'boof', u'mental', u'readi'] [u'pont', u'confid', u'boof', u'mental', u'readi', u'black'] [u'pont', u'fleme', u'unsur', u'chuck', u'detail'] [u'port', u'delay', u'affect', u'toowoomba', u'firm'] [u'powel', u'deputi', u'armitag', u'quit', u'state', u'depart'] [u'powel', u'visit', u'israel', u'palestinian', u'territori'] [u'press', u'watchdog', u'criticis', u'indigen', u'newspap', u'raid'] [u'prison', u'chief', u'acknowledg', u'inmat', u'mental', u'health'] [u'public', u'warn', u'threat'] [u'economi', u'retain', u'rat'] [u'push', u'nation', u'child', u'abduct', u'alert'] [u'racist', u'attack', u'suspect', u'court'] [u'rail', u'accid', u'report', u'month', u'away'] [u'rail', u'group', u'echo', u'safeti', u'fear'] [u'rainforest', u'growth', u'sign', u'global', u'warm'] [u'rann', u'propos', u'magistr'] [u'warn', u'lower', u'lend', u'standard'] [u'redback', u'steadi', u'start', u'beller'] [u'refuge', u'advoc', u'seek', u'chang'] [u'report', u'examin', u'western', u'tourism', u'strategi'] [u'report', u'plant', u'closur', u'away'] [u'research', u'receiv', u'grant', u'teenag', u'motherhood'] [u'research', u'stimul', u'aid', u'antibodi'] [u'resid', u'campaign', u'save', u'wildlif', u'sanctuari'] [u'roddick', u'dispatch', u'henman'] [u'rural', u'skill', u'shortag', u'spark', u'oversea', u'search'] [u'russia', u'acquir', u'nuke', u'putin'] [u'ryan', u'air', u'calder', u'highway', u'duplic', u'concern'] [u'saboteur', u'cut', u'iraq', u'export'] [u'saint', u'south', u'africa'] [u'scheme', u'put', u'focus', u'matur', u'worker'] [u'school', u'close', u'door'] [u'school', u'uniform', u'plan', u'draw', u'critic'] [u'scramjet', u'near', u'mach', u'set', u'record'] [u'search', u'wwii', u'shipwreck', u'begin'] [u'search', u'nation', u'park', u'miss'] [u'seismic', u'test', u'prompt', u'firm', u'confus'] [u'shaw', u'lawyer', u'stop', u'hear'] [u'shire', u'welcom', u'northern', u'bypass', u'pledg'] [u'silver', u'fern', u'level', u'netbal', u'seri'] [u'singer', u'wife', u'charg', u'bathroom', u'beauti', u'clinic'] [u'soldier', u'face', u'punish', u'iraq', u'insubordin'] [u'soldier', u'remain', u'return'] [u'state', u'agre', u'nation', u'child', u'porn', u'law'] [u'state', u'urg', u'adopt', u'nation', u'abduct', u'alert'] [u'studi', u'focus', u'premmi', u'babi', u'oxygen', u'level'] [u'sturt', u'diari', u'expect', u'fetch'] [u'support', u'extend', u'drought'] [u'survey', u'determin', u'extent', u'fish', u'pest'] [u'tailend', u'lead', u'tiger', u'fightback'] [u'tasmanian', u'town', u'fight', u'public', u'phone'] [u'teen', u'driver', u'want', u'brake', u'curfew', u'plan'] [u'teen', u'plead', u'guilti', u'handl', u'madrid', u'explos'] [u'fin', u'catch', u'patagonian', u'toothfish'] [u'investig', u'probe', u'train', u'crash'] [u'tiger', u'second', u'honour', u'beller'] [u'tilt', u'train', u'speed', u'say'] [u'toilet', u'forget', u'human', u'right'] [u'extend', u'east', u'timor', u'mission', u'final', u'time'] [u'right', u'boss', u'urg', u'fallujah', u'abus', u'probe'] [u'armi', u'offic', u'charg', u'murder', u'iraq'] [u'inflat', u'push', u'market', u'greenback'] [u'forc', u'retak', u'mosul', u'polic', u'station'] [u'marin', u'ralli', u'round', u'comrad'] [u'govt', u'plan', u'sack', u'hospit', u'board'] [u'video', u'say', u'hassan', u'murder'] [u'virgin', u'blue', u'announc', u'profit'] [u'wage', u'index', u'growth', u'restrain', u'despit', u'record'] [u'waratah', u'unfaz', u'possibl', u'competit'] [u'school', u'secur', u'indigen', u'educ', u'award'] [u'watkin', u'reject', u'polic', u'number', u'claim'] [u'weather', u'favour', u'farmer'] [u'windsor', u'name', u'anderson', u'bribe'] [u'windsor', u'name', u'bribe', u'claim'] [u'woman', u'labour', u'birth', u'better', u'hospit'] [u'woman', u'shoot', u'dead', u'adelaid', u'myer', u'centr'] [u'woman', u'shoot', u'dump', u'rubbish'] [u'zimbabw', u'rebel', u'withdraw', u'disput', u'process'] [u'dead', u'nigerian', u'cholera', u'outbreak'] [u'score', u'school', u'care', u'place'] [u'alburi', u'wodonga', u'woo', u'retrench', u'mitsubishi', u'worker'] [u'ord', u'high'] [u'member', u'join', u'campaign', u'coal', u'plan'] [u'anderson', u'deni', u'windsor', u'bribe', u'claim'] [u'anderson', u'quiz', u'bribe', u'claim'] [u'anim', u'right', u'group', u'urg', u'better', u'understand'] [u'arsenal', u'player', u'charg', u'rape'] [u'defend', u'safeti', u'reform'] [u'chairman', u'say', u'drug', u'report', u'clear', u'cycl'] [u'atsic', u'abolit', u'caus', u'confus'] [u'aussi', u'dollar', u'reach', u'month', u'high'] [u'australia', u'take', u'honour'] [u'australia', u'tighten', u'grip', u'kiwi'] [u'aust', u'seal', u'trade', u'deal'] [u'author', u'welcom', u'fitzroy', u'cross', u'hospit', u'plan'] [u'baghdad', u'bomb', u'kill'] [u'beatti', u'consid', u'coal', u'mine', u'camp', u'concern'] [u'beeri', u'reward', u'offer', u'jesus', u'hostag', u'drama'] [u'fail', u'remov', u'board', u'director'] [u'bum', u'allow', u'human'] [u'black', u'cap', u'lose', u'franklin', u'gain', u'mcmillan'] [u'black', u'cap', u'reli', u'underdog', u'status'] [u'blue', u'great', u'franci', u'die'] [u'border', u'negat', u'respons'] [u'bouncer', u'upset', u'hook', u'fight'] [u'breakthrough', u'allow', u'hardi', u'talk'] [u'break', u'hill', u'rout', u'help', u'lift', u'profit'] [u'maroochi', u'bridg', u'work', u'includ', u'lane'] [u'probe', u'dairi', u'market', u'director'] [u'campaign', u'aim', u'boost', u'peopl', u'protect'] [u'children', u'writer', u'festiv', u'open'] [u'chilean', u'polic', u'protest', u'ahead', u'apec', u'summit'] [u'china', u'crash', u'world'] [u'citi', u'make', u'headway', u'headfram', u'plan'] [u'club', u'fear', u'govern', u'doubl'] [u'cole', u'myer', u'predict', u'strong', u'earn', u'growth'] [u'colleagu', u'anderson', u'windsor', u'claim'] [u'colleg', u'concern', u'hurt', u'student'] [u'comet', u'provid', u'cosmic', u'light'] [u'comment', u'seek', u'biosolid', u'storag', u'facil', u'trial'] [u'communiti', u'urg', u'consid', u'tourism', u'altern'] [u'communiti', u'hous', u'fund', u'investig'] [u'council', u'set', u'sight', u'bring', u'navi', u'ship', u'home'] [u'council', u'sign', u'cattl', u'feedlot'] [u'court', u'deni', u'pinochet', u'amnesti', u'crime'] [u'court', u'hear', u'threat', u'kill', u'hook'] [u'croc', u'snap', u'away', u'hoodoo'] [u'croc', u'snap', u'away', u'hoodoo', u'taipan', u'upset', u'tiger'] [u'crow', u'save', u'pick', u'preseason', u'draft'] [u'cycl', u'drug', u'scandal', u'storm', u'teacup'] [u'deal', u'aim', u'protect', u'saltmarsh', u'wetland'] [u'dinosaur', u'fossil', u'china'] [u'disabl', u'dolphin', u'get', u'artifici'] [u'dominion', u'mine', u'start', u'explor', u'program'] [u'drown', u'inquest', u'hear', u'dive', u'pressur'] [u'dylan', u'classic', u'roll', u'number'] [u'earli', u'indigen', u'artist', u'billiamook', u'honour'] [u'ecuador', u'stun', u'brazil'] [u'elli', u'half', u'chanc', u'test'] [u'energi', u'compani', u'project', u'comment', u'worri'] [u'european', u'choos', u'wool'] [u'fake', u'euro', u'circul', u'australia'] [u'famili', u'homeless', u'blaze'] [u'famili', u'walk', u'away', u'plane', u'crash'] [u'feder', u'thump', u'hewitt', u'continu', u'unbeaten'] [u'firefight', u'search', u'hospit', u'leak'] [u'firm', u'criticis', u'rescu', u'plane', u'plan'] [u'histor', u'deal', u'howard', u'say'] [u'fuel', u'tanker', u'crash', u'block', u'bruce', u'highway'] [u'futur', u'bleak', u'endang', u'frog'] [u'gippsland', u'unemploy', u'rise'] [u'girl', u'success', u'divorc', u'mother'] [u'gold', u'coast', u'urg', u'schooli', u'rein'] [u'gold', u'trader', u'reunit', u'lose', u'nugget'] [u'govt', u'defend', u'record', u'illeg', u'fish', u'fight'] [u'govt', u'deni', u'rehab', u'servic', u'shutdown'] [u'govt', u'hire', u'guard', u'protect', u'aborigin', u'hous'] [u'govt', u'futur', u'plan', u'sydney'] [u'govt', u'urg', u'commut', u'train', u'servic'] [u'govt', u'address', u'rural', u'surgeon', u'shortag'] [u'green', u'question', u'riebel', u'ningaloo', u'stanc'] [u'gunn', u'confid', u'pulp', u'plan', u'grant'] [u'high', u'wind', u'predict', u'north', u'east'] [u'hospit', u'focus', u'surgeri'] [u'howard', u'bush', u'hold', u'talk', u'apec'] [u'illeg', u'fish', u'get', u'tech'] [u'indian', u'take', u'peac', u'messag', u'kashmir'] [u'inquiri', u'urg', u'recognit', u'gulf', u'syndrom'] [u'investor', u'blow', u'wind', u'farm', u'sale'] [u'isra', u'soldier', u'accus', u'mistreat', u'bodi'] [u'isra', u'tank', u'kill', u'egyptian', u'troop'] [u'ivorian', u'presid', u'sue', u'peacekeep', u'death'] [u'japan', u'export', u'opportun', u'buckwheat', u'grower'] [u'kasper', u'gabba'] [u'kiwi', u'rope'] [u'kojonup', u'council', u'sack'] [u'labor', u'give', u'cautious', u'welcom'] [u'labor', u'question', u'windsor', u'bribe', u'investig'] [u'lawyer', u'mandatori', u'sentenc'] [u'lennon', u'vote', u'number', u'music', u'icon'] [u'liber', u'parti', u'merger'] [u'licens', u'urg', u'join', u'secur', u'patrol', u'plan'] [u'locust', u'hatch', u'report', u'rise'] [u'lyon', u'start', u'wallabi'] [u'magistr', u'call', u'abolit', u'mandatori'] [u'maitland', u'nurs', u'industri', u'unrest', u'hold'] [u'die', u'crash'] [u'face', u'court', u'myer', u'murder'] [u'hospit', u'truck', u'crash'] [u'melbourn', u'hospit', u'run'] [u'melbourn', u'charg', u'qaeda', u'link'] [u'melbourn', u'terror', u'suspect', u'remand', u'custodi'] [u'mercenari', u'testifi', u'thatcher', u'coup'] [u'minist', u'attend', u'west', u'tamar', u'highway', u'ralli'] [u'miss', u'fishermen', u'torr', u'strait'] [u'mitchel', u'keen', u'aust', u'super', u'coach'] [u'mitsubishi', u'secur', u'deal', u'report'] [u'mobil', u'phone', u'boost', u'outback', u'travel'] [u'moma', u'reopen', u'facelift'] [u'moya', u'keep', u'master', u'hop', u'aliv'] [u'muralitharan', u'censur', u'throw', u'remark'] [u'mutu', u'forc', u'chelsea', u'foot', u'appeal'] [u'myer', u'boss', u'express', u'sympathi', u'adelaid', u'shoot'] [u'nation', u'park', u'plan', u'spark', u'hors', u'rider', u'safeti', u'fear'] [u'nation', u'candid', u'say', u'deal'] [u'nato', u'approv', u'iraq', u'train', u'plan'] [u'newcastl', u'monitor', u'pollut'] [u'design', u'boost', u'green', u'power', u'plan'] [u'governor', u'swear', u'month'] [u'imag', u'plan', u'berridal'] [u'law', u'allow', u'midwiv', u'attend', u'home', u'birth'] [u'microsoft', u'search', u'engin', u'rival', u'googl'] [u'multi', u'million', u'dollar', u'saleyard', u'bathurst'] [u'korea', u'nuclear', u'capac', u'grow'] [u'north', u'west', u'await', u'locust', u'impact'] [u'word', u'possibl', u'health', u'board', u'sack'] [u'nurs', u'shortag', u'put', u'strain', u'retir', u'home', u'staff'] [u'lap', u'woman', u'special', u'attent'] [u'olymp', u'champion', u'confirm', u'tour'] [u'omeley', u'hear', u'delay'] [u'kill', u'bueno', u'air', u'bank', u'attack'] [u'opposit', u'highlight', u'highway', u'woe'] [u'palestinian', u'order', u'probe', u'arafat', u'death'] [u'parliament', u'hous', u'celebr', u'centenari'] [u'parliament', u'overtim', u'clear', u'elect'] [u'parliament', u'pass', u'thai', u'free', u'trade', u'deal'] [u'patrick', u'report', u'rise', u'profit'] [u'petit', u'seek', u'corowa', u'park', u'boost'] [u'hand', u'shaw', u'case', u'polic'] [u'plan', u'begin', u'courthous'] [u'poison', u'alcohol', u'kill', u'pakistan'] [u'polar', u'bear', u'cub', u'world', u'home'] [u'polic', u'station', u'staff', u'worri'] [u'polic', u'hunt', u'suspect', u'cape', u'york'] [u'polic', u'investig', u'echuca', u'attack'] [u'polic', u'seiz', u'ecstasi', u'bind', u'schooli'] [u'premier', u'wont', u'specul', u'tilt', u'train', u'compo'] [u'public', u'urg', u'report', u'farm', u'mistreat'] [u'push', u'greater', u'fuel'] [u'putin', u'promis', u'wave', u'missil'] [u'train', u'driver', u'strike', u'loom'] [u'reject', u'tilt', u'train', u'speed', u'limit'] [u'racist', u'taunt', u'spain', u'england'] [u'rain', u'frustrat', u'master', u'combat'] [u'refug', u'offer', u'shelter', u'homeless'] [u'report', u'find', u'corrupt', u'violenc', u'rife', u'polic'] [u'report', u'say', u'hospit', u'meet', u'benchmark'] [u'resid', u'tell', u'focus', u'solut', u'complaint'] [u'accus', u'lose', u'region', u'focus'] [u'rock', u'lobster', u'breed', u'hatcheri'] [u'rodeo', u'group', u'defend', u'sport'] [u'rural', u'australian', u'urg', u'fight', u'telstra', u'sale'] [u'schoolgirl', u'killer', u'bail', u'spark', u'opposit', u'outcri'] [u'search', u'widen', u'miss', u'torr', u'strait'] [u'world', u'take', u'polar', u'bear', u'orphan'] [u'secker', u'beat', u'vocat', u'train', u'talk'] [u'shield', u'aim', u'reduc', u'shark', u'death'] [u'shipwreck', u'search', u'plan', u'move', u'ahead'] [u'sidebottom', u'public', u'payrol'] [u'skate', u'park', u'get', u'council'] [u'smash', u'repair', u'insur', u'urg', u'patch'] [u'asbesto', u'victim', u'embark', u'marathon', u'ride'] [u'srebrenica', u'survivor'] [u'state', u'look', u'expand', u'offend', u'regist'] [u'street', u'fight', u'detail', u'emerg', u'murder', u'trial'] [u'stress', u'caus', u'pain', u'period', u'studi'] [u'strike', u'forc', u'seek', u'combat', u'hunter', u'hold'] [u'stripperg', u'engulf', u'canadian', u'govern'] [u'studi', u'probe', u'indigen', u'gambl'] [u'sudan', u'govt', u'rebel', u'pledg', u'peac', u'accord'] [u'suspect', u'silent', u'terror', u'charg', u'lay'] [u'swimmer', u'urg', u'bluebottl', u'wari'] [u'syring', u'fatal', u'accid', u'inquest', u'hear'] [u'telstra', u'stand', u'phone', u'tower', u'plan'] [u'thai', u'royal', u'famili', u'interven', u'southern', u'conflict'] [u'theatr', u'heritag', u'list', u'overturn'] [u'threaten', u'speci', u'status', u'seek', u'devil'] [u'tiger', u'build', u'healthi', u'lead'] [u'tiger', u'control', u'beller'] [u'tiger', u'verg', u'inning', u'point'] [u'tiger', u'inning', u'point'] [u'tini', u'town', u'pull', u'name', u'rock', u'festiv'] [u'hama', u'member', u'releas', u'jail'] [u'train', u'drag', u'truck', u'track', u'collis'] [u'train', u'driver', u'threaten', u'strike', u'speed'] [u'cocain', u'syndic', u'member', u'jail'] [u'ukrain', u'stun', u'turk', u'portug', u'goal', u'crazi'] [u'reject', u'iraq', u'civilian', u'death', u'estim'] [u'ultrasound', u'help', u'dissolv', u'dead', u'blood', u'clot'] [u'investig', u'iraq', u'abus', u'claim'] [u'union', u'join', u'sydney', u'fare'] [u'focus', u'rural', u'crime'] [u'request', u'protest', u'death', u'investig'] [u'secur', u'council', u'begin', u'nairobi', u'session'] [u'secur', u'council', u'member', u'arriv', u'kenya'] [u'dead', u'baiji', u'attack'] [u'court', u'expedit', u'guantanamo', u'appeal'] [u'pound', u'fallujah', u'violenc', u'flare'] [u'tackl', u'afghan', u'drug', u'problem'] [u'tour', u'unveil', u'schedul'] [u'vandal', u'deliv', u'letterbox', u'blast'] [u'opposit', u'air', u'corrupt', u'claim'] [u'virgin', u'mari', u'grill', u'sandwich', u'auction', u'draw', u'cheesi'] [u'lead', u'countri', u'resourc', u'project'] [u'warrior', u'ronchi', u'bull', u'clash'] [u'warwick', u'feel', u'build', u'inspector', u'shortag'] [u'widow', u'call', u'landmin'] [u'water', u'expert', u'research', u'sever'] [u'wiki', u'rule', u'kiwi'] [u'windsor', u'defend', u'messeng'] [u'woman', u'appeal', u'daughter', u'return'] [u'wood', u'take', u'earli', u'lead', u'japan'] [u'wool', u'produc', u'fight', u'boycott', u'threat'] [u'worcestershir', u'sign', u'shoaib'] [u'worksaf', u'probe', u'chicken', u'factori', u'death'] [u'academ', u'accept', u'rise', u'offer'] [u'adventur', u'close', u'glide', u'globe'] [u'annan', u'call', u'urgent', u'action', u'sudan'] [u'antiqu', u'store', u'sue', u'jackson', u'unpaid', u'bill'] [u'apec', u'tackl', u'north', u'korean', u'nuclear', u'issu'] [u'argument', u'break', u'sink', u'treasur'] [u'artist', u'masterpiec', u'launceston'] [u'aussi', u'launch', u'resist', u'black', u'cap'] [u'aussi', u'steadi', u'inning'] [u'australia', u'ireland', u'austria', u'grab', u'world'] [u'australian', u'cattl', u'strand', u'jordanian', u'port'] [u'australian', u'risk', u'long', u'work', u'hour'] [u'australia', u'rat', u'best', u'countri'] [u'aust', u'unlik', u'reduc', u'north', u'korea', u'downer'] [u'champ', u'name', u'tasmanian'] [u'banana', u'industri', u'worker', u'order', u'return'] [u'baro', u'injuri', u'blight', u'liverpool'] [u'bat', u'condit', u'eas', u'sinclair'] [u'bega', u'chees', u'record', u'profit'] [u'beslan', u'local', u'seek', u'action', u'putin'] [u'wind', u'farm', u'properti', u'stay', u'local', u'hand'] [u'bomb', u'blast', u'hit', u'venezuelan', u'offici'] [u'stab', u'sydney', u'school'] [u'brack', u'promis', u'stadium', u'super', u'team'] [u'british', u'parliament', u'ban', u'hunt'] [u'break', u'hill', u'firm', u'favourit', u'ghost', u'rider'] [u'bruton', u'add', u'king', u'sick', u'list'] [u'bull', u'target', u'waca'] [u'businessman', u'deni', u'offer', u'bribe'] [u'cabbi', u'licenc', u'grab', u'alic'] [u'camouflag', u'oust', u'cross', u'dress', u'school'] [u'canadian', u'sack', u'anti', u'rant'] [u'canberra', u'runway', u'extens'] [u'cane', u'toad', u'invad', u'northern', u'nation', u'park'] [u'canker', u'affect', u'properti', u'destroy', u'tree'] [u'warn', u'drug', u'cocktail', u'danger'] [u'coalit', u'call', u'windsor', u'resign'] [u'colleg', u'boost', u'surgic', u'train', u'place'] [u'communiti', u'seek', u'simpler', u'drought', u'scheme'] [u'conman', u'jail', u'promot', u'scam'] [u'coron', u'find', u'die', u'result', u'knee', u'surgeri'] [u'corrupt', u'polic', u'offic', u'sack'] [u'council', u'consid', u'wast', u'water', u'treatment', u'plan'] [u'court', u'rule', u'adler', u'trial', u'proceed'] [u'croc', u'look', u'clip', u'hawk', u'wing'] [u'detect', u'scour', u'waikeri', u'hous', u'murder'] [u'develop', u'urg', u'report', u'indigen', u'remain'] [u'doctor', u'back', u'beach', u'stinger', u'suit', u'sale'] [u'dollar', u'hold', u'near', u'month', u'high'] [u'drought', u'fund', u'caus', u'farmer', u'confus'] [u'snub', u'start', u'farmer', u'fear'] [u'elli', u'chanc', u'tran', u'tasman', u'decid'] [u'emerald', u'face', u'harsher', u'water', u'ban'] [u'energi', u'firm', u'west', u'explor'] [u'england', u'finish', u'wound', u'bok'] [u'estat', u'agent', u'doff', u'guilti', u'insid', u'trade'] [u'surgeon', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'famili', u'surviv', u'region', u'plane', u'crash'] [u'fatal', u'accid', u'underpass', u'open'] [u'feder', u'continu', u'hard', u'fight'] [u'fierc', u'clash', u'erupt', u'baghdad'] [u'fifa', u'launch', u'probe', u'spanish', u'racism'] [u'fight', u'fallujah', u'ongo', u'mosul', u'attack', u'plan'] [u'servic', u'train', u'home', u'owner'] [u'ford', u'issu', u'debat', u'challeng'] [u'premier', u'letter', u'critic', u'famili', u'violenc'] [u'sport', u'coach', u'jail', u'sexual', u'assault'] [u'fossil', u'ancestor', u'ape'] [u'futur', u'gun', u'test', u'skill', u'townsvill'] [u'gale', u'aflpa'] [u'ganguli', u'kalli', u'play', u'test'] [u'govt', u'dept', u'probe', u'sacr', u'site', u'destruct', u'claim'] [u'govt', u'urg', u'sexual', u'abus', u'victim', u'submit', u'stori'] [u'habib', u'lawyer', u'worri', u'egypt'] [u'health', u'merger', u'oppon', u'meet', u'minist'] [u'heat', u'respit', u'sight', u'western'] [u'high', u'rise', u'develop', u'boost', u'queanbeyan'] [u'highway', u'fund', u'claim', u'puzzl', u'brack'] [u'highway', u'reopen', u'multi', u'vehicl', u'crash'] [u'civil', u'action', u'hold'] [u'hook', u'punch', u'face', u'wit', u'say'] [u'human', u'error', u'blame', u'council', u'budget', u'blunder'] [u'icpa', u'want', u'claughton', u'hous', u'stay', u'open'] [u'indigen', u'leader', u'push', u'nativ', u'languag', u'food'] [u'junior', u'champ', u'perkin', u'cop', u'dope'] [u'kangaroo', u'meat', u'south', u'korean', u'market'] [u'issu', u'canvass', u'stem', u'cell', u'talk'] [u'kiwi', u'walk', u'gabba', u'treacl'] [u'kyoto', u'protocol', u'start', u'date'] [u'labor', u'dump', u'forest', u'medicar', u'polici'] [u'labor', u'polici', u'leadership', u'scrutini'] [u'labor', u'senat', u'critic', u'polici', u'releas', u'time'] [u'latham', u'outlin', u'econom', u'agenda'] [u'laureat', u'hear', u'australian', u'nativ', u'titl'] [u'lawyer', u'claim', u'qaeda', u'suspect', u'evid', u'taint'] [u'lee', u'welcom', u'nation', u'water', u'strategi'] [u'letter', u'arriv', u'year', u'late'] [u'lockyer', u'clear', u'face', u'franc'] [u'luca', u'urg', u'train', u'driver', u'stay'] [u'pose', u'assault', u'student'] [u'martyn', u'clark', u'lift', u'aussi', u'inning'] [u'measl', u'outbreak', u'spark', u'health', u'warn'] [u'member', u'seek', u'health', u'advisori', u'council'] [u'meningococc', u'insur', u'scheme', u'investig'] [u'merredin', u'back', u'recreat', u'centr', u'plan'] [u'microsoft', u'boss', u'world', u'spam', u'person'] [u'miner', u'urg', u'lift', u'explor', u'spend'] [u'minist', u'reject', u'opposit', u'health', u'claim'] [u'minist', u'sack', u'gippsland', u'health', u'board'] [u'minist', u'agre', u'nation', u'road', u'safeti', u'plan'] [u'miss', u'fishermen', u'bodi'] [u'mix', u'reaction', u'signag', u'issu'] [u'drought', u'upper', u'north'] [u'bushfir', u'compo', u'claim', u'settl'] [u'mother', u'jail', u'year', u'babi', u'death'] [u'air', u'health', u'servic', u'locat', u'worri'] [u'sharehold', u'urg', u'accept', u'takeov', u'offer'] [u'gambier', u'communiti', u'station'] [u'nation', u'trust', u'ditch', u'author', u'white'] [u'nativ', u'dingo', u'speci', u'threat'] [u'negat', u'submiss', u'dont', u'faze', u'albani', u'chief'] [u'nephew', u'arafat', u'medic', u'file'] [u'sale', u'percent'] [u'aim', u'improv', u'farm', u'safeti'] [u'polic', u'action', u'roger'] [u'north', u'korea', u'deni', u'leader', u'portrait', u'remov'] [u'north', u'stand', u'vain', u'bull', u'march'] [u'throw', u'william', u'suspens'] [u'govt', u'deni', u'suppress', u'kariong', u'evid'] [u'obelisk', u'step', u'closer', u'ethiopian', u'home'] [u'older', u'women', u'like', u'victim', u'crime'] [u'opposit', u'push', u'appropri', u'public'] [u'optus', u'vodafon', u'bind', u'network'] [u'oram', u'centuri', u'give', u'black', u'cap', u'hope'] [u'outkast', u'usher', u'prize', u'award'] [u'perth', u'apologis', u'child', u'porn', u'imag'] [u'plan', u'aim', u'address', u'wollongong', u'power', u'woe'] [u'discuss', u'trade', u'secur', u'apec'] [u'focus', u'trade', u'secur', u'apec'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'minist', u'confid', u'afp', u'abil'] [u'polic', u'drug', u'dealer'] [u'polic', u'seek', u'extradit', u'victorian', u'stab'] [u'polic', u'tight', u'lip', u'collin', u'investig'] [u'port', u'author', u'lift', u'profit'] [u'portland', u'lead', u'submarin', u'navig', u'test'] [u'powel', u'inform', u'iran', u'unverifi', u'report'] [u'power', u'deal', u'help', u'boost', u'pipelin', u'capac'] [u'prefer', u'fardel'] [u'prison', u'farm', u'rais', u'resid', u'concern'] [u'problem', u'gambler', u'say', u'hotel', u'send', u'voucher'] [u'profit', u'take', u'push', u'lower'] [u'industri', u'cautious', u'welcom', u'drink', u'law'] [u'public', u'ask', u'report', u'beach', u'pervert'] [u'public', u'servic', u'job', u'wont', u'senat', u'say'] [u'public', u'water', u'ban', u'respit'] [u'driver', u'concern', u'derail', u'inquiri'] [u'polic', u'search', u'stab', u'suspect'] [u'meet', u'train', u'driver', u'avert', u'hour', u'strike'] [u'question', u'rais', u'fair', u'work', u'rural', u'impact'] [u'racq', u'question', u'high', u'petrol', u'price'] [u'remorseless', u'driver', u'jail', u'passeng', u'death'] [u'retail', u'urg', u'employ', u'indigen', u'worker'] [u'revis', u'plan', u'allow', u'kitchen'] [u'ripper', u'talk', u'south', u'west'] [u'roddick', u'down', u'safin', u'claim', u'master', u'semi', u'spot'] [u'rodeo', u'rider', u'sight', u'goondiwindi'] [u'rogg', u'plan', u'australian', u'visit'] [u'runner', u'clock', u'kilometr', u'chariti'] [u'russia', u'confirm', u'yuko', u'break'] [u'sack', u'mitsubishi', u'worker', u'eastern', u'job'] [u'schoolgirl', u'strike', u'train', u'kill'] [u'schooli', u'celebr', u'loom', u'year', u'finish'] [u'schooli', u'urg', u'consid', u'resid'] [u'schooli', u'warn', u'drug'] [u'scientif', u'survey', u'draw', u'indigen', u'knowledg'] [u'senior', u'sadr', u'aid', u'arrest', u'iraq'] [u'seven', u'injur', u'mock', u'emerg', u'go', u'wrong'] [u'shaw', u'face', u'drink', u'drive', u'charg'] [u'singaporean', u'tourist', u'die', u'dive', u'near', u'ladi', u'musgrav'] [u'skill', u'shortag', u'threaten', u'mine', u'project'] [u'soccer', u'club', u'presid', u'take', u'road', u'rage', u'pitch'] [u'soldier', u'return', u'iraq'] [u'sport', u'coach', u'jail', u'abus', u'boy'] [u'stab', u'suspect', u'north'] [u'stab', u'suspect', u'extradit', u'delay'] [u'storm', u'cut', u'power', u'moranbah'] [u'strict', u'life', u'jacket', u'law', u'drown'] [u'strong', u'entri', u'magic', u'million'] [u'student', u'prepar', u'celebr', u'school', u'year'] [u'sudan', u'peac', u'pact', u'weak'] [u'super', u'bid', u'hand'] [u'swim', u'pool', u'sink', u'council', u'profit'] [u'sydney', u'commut', u'travel', u'free', u'monday'] [u'tare', u'reject', u'chang', u'group', u'membership'] [u'opposit', u'question', u'work', u'bacon', u'trust'] [u'resid', u'report', u'earth', u'tremor'] [u'agent', u'jail', u'fraudul', u'return'] [u'team', u'dynamik', u'penalti', u'increas'] [u'teenag', u'ignor', u'boom', u'gate', u'polic'] [u'teenag', u'strike', u'train', u'kill'] [u'teen', u'murder', u'jail', u'year'] [u'terror', u'suspect', u'arrest', u'washington'] [u'thailand', u'deport', u'german', u'centr', u'scare'] [u'thief', u'make', u'jesus', u'figur'] [u'thorp', u'miss', u'world', u'champ'] [u'tiger', u'keep', u'grip', u'lead', u'japan'] [u'tiger', u'outright', u'point'] [u'time', u'frame', u'moot', u'sawmil', u'boost'] [u'treasur', u'say', u'economi', u'good', u'shape'] [u'tremor', u'leav', u'tour', u'oper', u'shake'] [u'complain', u'alleg', u'iraq', u'abus'] [u'back', u'sudan', u'peac', u'promis'] [u'unemploy', u'fall', u'see', u'proof', u'stronger', u'economi'] [u'offer', u'child', u'protect', u'cours'] [u'dollar', u'weak', u'worri'] [u'expert', u'make', u'damn', u'vioxx', u'claim'] [u'report', u'give', u'beef', u'market', u'jitter'] [u'militari', u'blame', u'media', u'death', u'iraq'] [u'report', u'convict', u'contempt'] [u'suggest', u'world', u'style', u'attract'] [u'polic', u'abl', u'stun', u'gun'] [u'submit', u'super', u'nomin'] [u'vietnam', u'vet', u'unhappi', u'facil', u'loss'] [u'vindic', u'anderson', u'demand', u'apolog'] [u'look', u'oversea', u'mental', u'health', u'worker', u'shortag'] [u'nickel', u'miner', u'share', u'tripl'] [u'water', u'author', u'review', u'start', u'soon'] [u'whan', u'reject', u'opposit', u'polic', u'claim'] [u'william', u'retain', u'scot', u'second'] [u'windsor', u'call', u'handl', u'briberi', u'claim'] [u'wit', u'differ', u'hook', u'fight'] [u'wit', u'seek', u'school', u'blaze'] [u'woodcarv', u'industri', u'call', u'support'] [u'work', u'afoot', u'rice', u'owner'] [u'world', u'vision', u'aust', u'pull', u'iraq'] [u'world', u'vision', u'withdraw', u'indigen', u'communiti'] [u'wudinna', u'hospit', u'review'] [u'kill', u'philippin', u'strike', u'militari'] [u'kill', u'attack', u'iraq'] [u'kill', u'captur', u'mosul', u'raid'] [u'afghanistan', u'poppi', u'crop', u'jump', u'percent'] [u'afghan', u'kill', u'aust', u'journalist'] [u'african', u'leader', u'sign', u'peac', u'pact'] [u'alexand', u'great', u'bisexu', u'greek'] [u'elli'] [u'apec', u'wide', u'trade', u'deal'] [u'appeal', u'fund', u'save', u'devil'] [u'aussi', u'netbal', u'clinch', u'seri', u'thriller'] [u'aussi', u'tail', u'break', u'black', u'cap', u'spirit'] [u'aussi', u'tail', u'bring'] [u'aust', u'indonesia', u'enter'] [u'australian', u'arrest', u'gun', u'boat'] [u'australia', u'embarrass'] [u'australia', u'rat', u'near', u'world', u'high'] [u'band', u'demand', u'politician', u'africa'] [u'berlusconi', u'trial', u'hear', u'damag', u'claim'] [u'lade', u'zarqawi', u'attempt', u'communic'] [u'spear', u'head'] [u'brazil', u'legend', u'socrat', u'play', u'yorkshir'] [u'bribe', u'claim', u'owe', u'anderson', u'apolog'] [u'casey', u'donald', u'storm', u'clear', u'world'] [u'central', u'african', u'leader', u'urg', u'commit', u'peac'] [u'china', u'south', u'korea', u'urg', u'patienc', u'north', u'korea'] [u'citi', u'hall', u'sculptur', u'offend', u'indigen', u'australian'] [u'clark', u'gilli', u'go', u'make', u'ton'] [u'clark', u'test', u'euphoria', u'show', u'sign', u'abat'] [u'club', u'discuss', u'smoke', u'ban', u'problem', u'gambl'] [u'confus', u'surround', u'king', u'river', u'clean', u'deal'] [u'creditor', u'write', u'iraq', u'debt'] [u'hope'] [u'death', u'highlight', u'need', u'train'] [u'deegan', u'confirm', u'anti', u'corrupt', u'branch', u'inquiri'] [u'deledio', u'richmond', u'draft', u'begin'] [u'deledio', u'richmond', u'draft', u'number'] [u'dfat', u'confirm', u'egypt', u'habib'] [u'dont', u'mollycoddl', u'say', u'princ', u'william'] [u'drink', u'driver', u'share'] [u'dubbo', u'elect', u'vote'] [u'elli', u'declar', u'silver', u'fern', u'clash'] [u'england', u'veteran', u'gough', u'pledg', u'play'] [u'exoner', u'snaggletooth', u'killer', u'get', u'extrem'] [u'fardel', u'win', u'dubbo', u'elect'] [u'ferdinand', u'readi', u'walk', u'race', u'abus'] [u'crew', u'contain', u'mandurah', u'bushfir'] [u'fish', u'threaten', u'shark'] [u'contest', u'katherin', u'elect'] [u'fund', u'squeez', u'prevent', u'asbesto', u'hous', u'demolit'] [u'ginger', u'gadget', u'improv', u'antarct', u'transport'] [u'glover', u'paint', u'auction'] [u'grandfath', u'convict', u'tourism', u'law'] [u'hawk'] [u'heritag', u'protect', u'consid', u'pine', u'creek'] [u'hewitt', u'crush', u'gaudio', u'reach', u'master', u'semi'] [u'hewitt', u'face', u'roddick', u'master', u'semi'] [u'hezbollah', u'link', u'station', u'broadcast'] [u'home', u'threaten', u'mandurah', u'bushfir'] [u'honda', u'claim', u'stake', u'team'] [u'hunter', u'health', u'investig', u'meningococc', u'case'] [u'icrc', u'criticis', u'civilian', u'death', u'iraq'] [u'immigr', u'learn', u'european', u'valu'] [u'indigen', u'condem', u'welfar', u'reform', u'propos'] [u'hear', u'fail', u'halt', u'rail', u'strike'] [u'ivori', u'coast', u'appoint', u'provok', u'rebel', u'franc'] [u'japanes', u'research', u'develop', u'malaria', u'vaccin'] [u'kumbl', u'strike', u'earli', u'south', u'africa'] [u'labor', u'school', u'fund', u'polici', u'stay', u'latham'] [u'latham', u'seek', u'broaden', u'labor', u'appeal'] [u'latham', u'stick', u'medicar', u'gold', u'principl'] [u'london', u'unveil', u'olymp'] [u'loom', u'midwif', u'shortag', u'top', u'confer', u'agenda'] [u'loud', u'blast', u'rock', u'central', u'baghdad'] [u'dead', u'nightclub', u'stab'] [u'island', u'shelter', u'jesus', u'christ', u'bird'] [u'match', u'pois', u'black', u'cap'] [u'mcgrath', u'final', u'arriv'] [u'minist', u'play', u'propos', u'age', u'care', u'chang'] [u'murder', u'riverland', u'stab'] [u'murdoch', u'join', u'privat', u'univers', u'board'] [u'music', u'store', u'hide', u'eminem', u'world', u'view'] [u'drug', u'hope', u'kid'] [u'motiv', u'obvious', u'riverland', u'murder'] [u'schooli', u'arrest', u'festiv'] [u'north', u'stand', u'vain', u'bull', u'march'] [u'health', u'worker', u'face', u'drug', u'test'] [u'price', u'jump', u'suppli', u'worri'] [u'kill', u'baghdad', u'bomb'] [u'peepshow', u'star', u'steal', u'gnome', u'park'] [u'polic', u'investig', u'death', u'custodi'] [u'polic', u'seek', u'woman', u'stab'] [u'polic', u'target', u'apec', u'protest'] [u'pork', u'barrel', u'blame', u'bypass', u'delay', u'schultz'] [u'privat', u'school', u'deni', u'bulli', u'cover'] [u'promin', u'burmes', u'polit', u'prison', u'free'] [u'polic', u'investig', u'death', u'custodi'] [u'quiet', u'start', u'schooli', u'celebr'] [u'rapper', u'arrest', u'stab', u'music', u'award', u'brawl'] [u'renew', u'concern', u'shark', u'poach'] [u'riot', u'polic', u'disband', u'apec', u'protest'] [u'rural', u'doctor', u'seek', u'specialist', u'registr'] [u'rural', u'resid', u'challeng', u'hunt'] [u'schooli', u'festiv', u'begin'] [u'schu', u'vote', u'germani', u'star', u'centuri'] [u'punish', u'card', u'brawl'] [u'sorenstam', u'benefit', u'mother', u'shot'] [u'spanish', u'apologis', u'racist', u'fan'] [u'stem', u'cell', u'transplant', u'help', u'brazilian', u'walk'] [u'submarin', u'kill', u'prevent', u'wors', u'accid', u'report'] [u'taylor', u'find', u'fatal', u'ill', u'bore'] [u'teenag', u'charg', u'school', u'stab'] [u'tenni', u'australia', u'split', u'execut', u'role'] [u'thatcher', u'extradit', u'coup', u'trial', u'seek'] [u'kill', u'baghdad', u'clash'] [u'kill', u'overnight', u'road', u'accid'] [u'tilt', u'train', u'servic', u'track'] [u'clark', u'sizzl', u'gabba'] [u'battl', u'houston', u'semi'] [u'tuna', u'ranch', u'propos', u'worri', u'conserv', u'group'] [u'sydney', u'begin', u'broadcast', u'march'] [u'ugandan', u'rebel', u'match', u'govern', u'ceas'] [u'union', u'want', u'labor', u'econom', u'agenda'] [u'staff', u'commit', u'crime', u'congo', u'annan'] [u'staff', u'manag', u'annan'] [u'push', u'clone', u'crumbl'] [u'budget', u'declin', u'investor'] [u'stock', u'drop', u'currenc', u'movement'] [u'veteran', u'compos', u'coleman', u'die'] [u'violent', u'storm', u'caus', u'chao', u'europ'] [u'homeown', u'embrac', u'solar', u'power'] [u'region', u'road', u'fund', u'welcom'] [u'word', u'leav', u'warn', u'unscath'] [u'widow', u'obtain', u'arafat', u'medic', u'file'] [u'wilkinson', u'australia', u'match'] [u'windsor', u'stand', u'briberi', u'alleg'] [u'woodbridg', u'down', u'master', u'doubl'] [u'wood', u'step', u'away', u'japan'] [u'yuko', u'sell', u'draw', u'critic'] [u'alcan', u'gove', u'begin', u'recruit', u'drive'] [u'anderson', u'clear', u'briberi', u'alleg'] [u'anti', u'apec', u'demonstr', u'continu'] [u'arafat', u'overse', u'network', u'report'] [u'lover', u'queue', u'review', u'revamp', u'moma'] [u'asbesto', u'hamper', u'firefight', u'abattoir', u'blaze'] [u'astl', u'play', u'walk', u'debat'] [u'australia', u'philippin', u'boost', u'anti', u'terror'] [u'barca', u'humili', u'lacklustr', u'real'] [u'batter', u'wallabi', u'face', u'back', u'crisi'] [u'birt', u'bevan', u'lead', u'tiger', u'crush'] [u'blue', u'beat', u'bushrang', u'thrill', u'finish'] [u'blue', u'chase', u'junction', u'oval'] [u'britain', u'fight', u'kiwi'] [u'bush', u'meet', u'alli', u'north', u'korea', u'apec'] [u'carr', u'lobbi', u'lebanon', u'extradit', u'treati'] [u'carr', u'wrong', u'lebanon', u'extradit', u'treati', u'ellison'] [u'casey', u'win', u'idol', u'crown'] [u'dump', u'overwhelm', u'rspca'] [u'chelsea', u'arsenal', u'slip', u'premiership', u'banana', u'skin'] [u'chernobyl', u'fallout', u'rais', u'sweden', u'cancer', u'rat'] [u'china', u'await', u'stabil', u'free', u'yuan'] [u'china', u'plane', u'crash', u'kill'] [u'cooma', u'histor', u'display', u'restor'] [u'council', u'urg', u'appli', u'disast', u'fund'] [u'crespo', u'mark', u'milan', u'edg', u'palermo'] [u'crew', u'fight', u'melbourn', u'factori', u'blaze'] [u'curs', u'puma', u'hit', u'franc'] [u'derail', u'freight', u'train', u'narrowli', u'miss', u'home'] [u'detain', u'skipper', u'carri', u'gun', u'protect', u'famili'] [u'detain', u'skipper', u'hire', u'legal', u'team'] [u'develop', u'foot', u'chang'] [u'dubbo', u'prioriti', u'averag', u'person', u'need'] [u'eagl', u'aviari', u'shelter', u'speci'] [u'kill', u'itali', u'explos'] [u'elder', u'woman', u'death', u'deem', u'suspici'] [u'elvi', u'record', u'shake', u'auction'] [u'environ', u'centr', u'seek', u'clean', u'review'] [u'expand', u'emir', u'deni', u'unfair', u'advantag'] [u'extradit', u'plan', u'stab'] [u'fall', u'confid', u'fail', u'dent', u'land', u'sale'] [u'fear', u'prevent', u'sudanes', u'return', u'darfur'] [u'feder', u'triumph', u'break', u'marathon'] [u'caus', u'damag', u'perth', u'home'] [u'destroy', u'smash', u'repair', u'shop'] [u'trap', u'chines', u'miner'] [u'time', u'competitor', u'beat', u'race', u'favourit'] [u'fish', u'industri', u'deni', u'risk', u'shark', u'popul'] [u'bomb', u'explod', u'southern', u'thailand'] [u'democrat', u'leader', u'janin', u'hain', u'die'] [u'hostag', u'return', u'iraq'] [u'headless', u'bodi', u'mosul'] [u'injur', u'smash'] [u'googl', u'founder', u'offload', u'million', u'share'] [u'govt', u'offer', u'help', u'detain', u'sailor'] [u'grandmoth', u'earn', u'adult', u'learn', u'award'] [u'hall', u'frustrat', u'india', u'maiden'] [u'hall', u'lift', u'protea', u'kumbl', u'strike'] [u'hewitt', u'face', u'feder', u'master', u'final'] [u'hodgson', u'heroic', u'sink', u'bok'] [u'hong', u'kong', u'democrat', u'leader', u'resign'] [u'howard', u'add', u'voic', u'north', u'korea', u'critic'] [u'howard', u'call', u'action', u'aid'] [u'howard', u'talk', u'trade', u'liberalis'] [u'india', u'debat', u'man', u'space', u'flight'] [u'inform', u'seek', u'murder', u'man', u'movement'] [u'investig', u'begin', u'dead', u'chines', u'plane'] [u'iraq', u'elect'] [u'kiwi', u'verg', u'massiv', u'defeat'] [u'labor', u'judg', u'perform'] [u'lenton', u'clean', u'skin', u'meet'] [u'malaysia', u'rap', u'secur', u'focus', u'australia'] [u'injur', u'shoot'] [u'kill', u'follow', u'friend', u'train', u'roof'] [u'kill', u'dairi', u'farm', u'accid'] [u'children', u'dead'] [u'mcgrath', u'gillespi', u'watch', u'gabba', u'sky'] [u'mcgrath', u'warn', u'kiwi', u'rope'] [u'meet', u'fail', u'decid', u'yass', u'oper', u'theatr'] [u'melbourn', u'factori', u'blaze', u'caus', u'damag'] [u'hope', u'certainti', u'adelaid', u'recoveri'] [u'hop', u'phone', u'influenc', u'poki', u'debat'] [u'telstra', u'sale', u'howard'] [u'suspend', u'player', u'brawl'] [u'nelson', u'critic', u'labor', u'posit', u'educ'] [u'kill', u'china', u'blaze'] [u'nomin', u'open', u'palestinian', u'elect'] [u'crime', u'court', u'distract', u'say', u'opposit'] [u'nurs', u'hear', u'foreign', u'recruit', u'difficulti'] [u'spi', u'target', u'maori', u'leader', u'report'] [u'obstetr', u'unit', u'closur', u'skill', u'doctor'] [u'olymp', u'champion', u'manaudou', u'set', u'metr'] [u'partnership', u'smooth', u'indigen', u'fund', u'transit'] [u'pittman', u'set', u'busi', u'schedul', u'commonwealth', u'game'] [u'hose', u'voluntari', u'vote', u'debat'] [u'pohamba', u'win', u'namibia', u'elect'] [u'polic', u'probe', u'train', u'derail'] [u'polish', u'hostag', u'free', u'iraq'] [u'pont', u'hail', u'mighti', u'turnaround'] [u'princ', u'charl', u'deni', u'snobberi'] [u'ranger', u'firm', u'blow', u'titl', u'race', u'open'] [u'razorback', u'track'] [u'report', u'find', u'lack', u'support', u'releas', u'prison'] [u'restaur', u'owner', u'tackl', u'robber'] [u'return', u'date', u'uncertain', u'fallujah', u'resid'] [u'robinson', u'wari', u'wallabi'] [u'rocknrol', u'blast', u'frontier'] [u'govt', u'urg', u'seiz', u'winemak', u'properti'] [u'schooli', u'overdos', u'prompt', u'polic', u'warn'] [u'schooli', u'problem', u'alcohol'] [u'search', u'begin', u'miss', u'yacht'] [u'search', u'continu', u'miss', u'year'] [u'injuri', u'scot'] [u'seven', u'kill', u'shoot'] [u'sixer', u'edg', u'wildcat'] [u'wound', u'baiji', u'samarra', u'clash'] [u'sorenstam', u'threat', u'florida'] [u'spain', u'golf', u'world', u'lead'] [u'stab', u'suspect', u'nab', u'attempt', u'flee', u'countri'] [u'stem', u'cell', u'save', u'diseas', u'teeth'] [u'kilda', u'pavilion', u'upgrad', u'cost'] [u'storm', u'kill', u'philippin'] [u'swift', u'trawl', u'space', u'gamma', u'explos'] [u'task', u'forc', u'develop', u'crime', u'court'] [u'tassi', u'redback', u'massiv', u'chase'] [u'teenag', u'kill', u'nablus', u'clash'] [u'kill', u'separ', u'road', u'accid'] [u'togo', u'stamped', u'kill'] [u'athlet', u'event', u'melbourn', u'game'] [u'toss', u'decis', u'backfir', u'bull'] [u'troop', u'concern', u'snag', u'intellig', u'reform'] [u'crane', u'collaps', u'shop', u'centr'] [u'mummi', u'discov', u'croatia'] [u'govern', u'consid', u'tough', u'anti', u'terror', u'law'] [u'asian', u'nation', u'common', u'voic', u'north', u'korea'] [u'rule', u'trade', u'deal', u'chang'] [u'soldier', u'kill', u'baghdad'] [u'steward', u'revers', u'tasmanian', u'result'] [u'valiant', u'wale', u'pip', u'post', u'black'] [u'volunt', u'close', u'damp', u'revel'] [u'vote', u'begin', u'ukrain', u'presidenti', u'elect'] [u'warn', u'mcgrath', u'bowl', u'australia', u'massiv'] [u'warrior', u'bull'] [u'windsor', u'call', u'inquiri', u'bribe', u'claim'] [u'wood', u'seiz', u'strokeplay', u'titl', u'year'] [u'yuko', u'sharehold', u'challeng', u'asset', u'sell'] [u'zarqawi', u'harder', u'catch', u'saddam'] [u'nation', u'draft', u'list'] [u'stand', u'star', u'comment', u'gay'] [u'safeti', u'boost', u'road', u'lead', u'daylesford'] [u'accus', u'plead', u'guilti', u'forens', u'bomb', u'charg'] [u'author', u'welcom', u'rain'] [u'opposit', u'urg', u'restraint', u'wag'] [u'airport', u'attack', u'trale', u'estat', u'plan'] [u'apec', u'leader', u'russia', u'vietnam', u'membership'] [u'applebi', u'set', u'record', u'runway', u'drive', u'contest'] [u'arafat', u'nephew', u'get', u'medic', u'report', u'ill'] [u'arafat', u'widow', u'challeng', u'nephew', u'right', u'medic'] [u'architect', u'firm', u'stand', u'waterfront', u'develop'] [u'arsenal', u'face', u'champ', u'leagu', u'crunch'] [u'artifici', u'intellig', u'focus', u'hobart'] [u'asbesto', u'troubl', u'hardi', u'line'] [u'astl', u'play', u'walk', u'debat'] [u'atsb', u'probe', u'fatal', u'helicopt', u'crash'] [u'aust', u'nuclear', u'shipment', u'head', u'franc'] [u'australia', u'assist', u'bali', u'drug', u'investig'] [u'australian', u'polic', u'face', u'hard', u'work'] [u'clinch', u'tough', u'china', u'deal'] [u'baptista', u'strike', u'help', u'sevilla', u'climb'] [u'barbecu', u'blast', u'injur', u'woman'] [u'barcelona', u'larsson', u'week'] [u'basslink', u'burn', u'spark', u'bushfir'] [u'beachley', u'win', u'event', u'lose', u'titl'] [u'bend', u'case', u'prompt', u'warn', u'recreat', u'diver'] [u'bipartisan', u'support', u'urg', u'derail', u'wit'] [u'blatter', u'odd', u'england', u'walk'] [u'bouncer', u'stand', u'trial', u'hook', u'death'] [u'brazilian', u'gunmen', u'kill', u'land', u'activist'] [u'bridg', u'collaps', u'spark', u'detour'] [u'break', u'hill', u'get', u'time', u'deal', u'health'] [u'bull', u'fight', u'waca'] [u'busi', u'welcom', u'meatwork', u'job', u'boost'] [u'campbel', u'centuri', u'put', u'warrior', u'foot'] [u'canberra', u'hobart', u'home', u'australia', u'worst', u'litter'] [u'kill', u'lie', u'road'] [u'carr', u'talk', u'crime', u'statist'] [u'central', u'record', u'road', u'death'] [u'china', u'toll', u'reach'] [u'church', u'celebr', u'christian', u'servic', u'anniversari'] [u'churchil', u'jersey', u'go', u'hammer'] [u'probe', u'palm', u'death'] [u'coalit', u'attack', u'wetland', u'polici'] [u'committe', u'citrus', u'canker', u'recommend'] [u'communiti', u'upset', u'custodi', u'death'] [u'conflict', u'evid', u'hear', u'hook', u'case'] [u'consum', u'watchdog', u'block', u'origin'] [u'council', u'call', u'ratepay', u'cough', u'unpaid'] [u'council', u'consid', u'green', u'wast', u'recycl'] [u'council', u'consid', u'hors', u'restrict'] [u'council', u'push', u'great', u'ocean', u'extens'] [u'council', u'beat', u'hostel', u'pass', u'safeti', u'check'] [u'crime', u'fight', u'project', u'work', u'carnarvon'] [u'cultur', u'pressur', u'play', u'indigen', u'retail'] [u'danger', u'good', u'aboard', u'derail', u'freight', u'train'] [u'derail', u'prompt', u'call', u'rail', u'line'] [u'detain', u'sailor', u'famili', u'hope', u'releas'] [u'detain', u'skipper', u'deni', u'traffic', u'claim'] [u'develop', u'group', u'happi', u'shire', u'independ'] [u'dizzi', u'back', u'rotat', u'polici'] [u'driver', u'unlik', u'charg', u'pedestrian', u'death'] [u'drown', u'spark', u'perman', u'beach', u'patrol'] [u'drown', u'victim', u'name', u'releas'] [u'time', u'prompt', u'earli', u'ban'] [u'enrol', u'drop', u'uni', u'mildura', u'campus'] [u'entri', u'brisban', u'film', u'goer'] [u'offici', u'lose', u'bail', u'child'] [u'farmer', u'group', u'attack', u'govt', u'iraqi', u'debt', u'write'] [u'feder', u'polic', u'dismiss', u'windsor', u'bribe', u'claim'] [u'feder', u'stroll', u'past', u'hewitt', u'master', u'titl'] [u'feder', u'take'] [u'fergi', u'laud', u'nistelrooy', u'best'] [u'financ', u'shortcom', u'prompt', u'defenc', u'dept', u'overhaul'] [u'firefight', u'urg', u'safe', u'powerboard'] [u'fitzi', u'faith', u'free', u'fall', u'scud'] [u'offici', u'guilti', u'child', u'prostitut'] [u'franklin', u'join', u'black', u'cap', u'second', u'test'] [u'gene', u'discoveri', u'rett', u'syndrom', u'diagnosi'] [u'geologist', u'excit', u'discoveri'] [u'girl', u'kill', u'guadeloup', u'earthquak'] [u'gold', u'explor', u'worri', u'lorinna', u'resid'] [u'govt', u'back', u'eastern', u'rout', u'river', u'cross'] [u'govt', u'mistak', u'leav', u'hick', u'habib', u'oversea'] [u'govt', u'urg', u'boost', u'power', u'fund'] [u'govt', u'urg', u'chang', u'land', u'acquisit', u'legisl'] [u'govt', u'urg', u'continu', u'schooli', u'role'] [u'govt', u'urg', u'live', u'murray', u'plan'] [u'hawk', u'sign', u'coach', u'panel'] [u'health', u'servic', u'echo', u'call', u'play', u'centr'] [u'helicopt', u'crash', u'kill'] [u'highway', u'fear', u'spark', u'ministeri', u'council'] [u'hill', u'explain', u'defenc', u'budget', u'problem'] [u'driver', u'spend', u'time', u'jail'] [u'hop', u'fade', u'miss', u'filipino', u'fishermen'] [u'hors', u'remov', u'townsvill', u'amidst', u'welfar'] [u'howard', u'reject', u'briberi', u'senat', u'inquiri'] [u'illeg', u'tobacco', u'earn', u'jail', u'time'] [u'immigr', u'deni', u'detaine', u'deport'] [u'independ', u'seek', u'dubbo', u'seat', u'chang'] [u'india', u'cut', u'troop', u'number', u'srinagar'] [u'indonesian', u'schoolgirl', u'await', u'deport', u'rule'] [u'inmat', u'go', u'display'] [u'intellig', u'bill', u'failur', u'disappoint', u'bush'] [u'inter', u'hard', u'work', u'bologna'] [u'intern', u'group', u'join', u'fight', u'protect', u'burrup'] [u'iran', u'win', u'iaea', u'prais'] [u'iraqi', u'cousin', u'releas'] [u'iraq', u'welcom', u'creditor', u'decis', u'slash', u'debt'] [u'begin', u'hear', u'landmark', u'sever', u'claim'] [u'island', u'koala', u'home'] [u'isra', u'forc', u'kill', u'palestinian', u'milit'] [u'jetstar', u'fli', u'closer', u'launch'] [u'assassin', u'game', u'despic'] [u'kabul', u'home', u'raid', u'hunt', u'hostag'] [u'knife', u'waikeri', u'murder', u'weapon', u'search'] [u'konica', u'minolta', u'arriv', u'sydney', u'hobart'] [u'labor', u'probe', u'briberi', u'alleg'] [u'law', u'price', u'tell', u'apologis', u'ridicul', u'gay'] [u'lewi', u'bushrang'] [u'lifesav', u'effort', u'boost', u'schooli'] [u'litter', u'survey', u'find', u'hard', u'believ'] [u'long', u'fight', u'ahead', u'rail', u'improv'] [u'lung', u'diseas', u'patient', u'suffer', u'silenc'] [u'die', u'dairi', u'farm', u'tragedi'] [u'dead', u'unit', u'blaze'] [u'manufactur', u'tape', u'cost'] [u'marin', u'shoot', u'insurg', u'play', u'dead'] [u'martin', u'deni', u'wharf', u'high', u'rise', u'block', u'view'] [u'mayor', u'urg', u'greater', u'remot', u'relief'] [u'melbourn', u'water', u'restrict', u'stay', u'despit', u'rain'] [u'minist', u'say', u'underground', u'power', u'cure'] [u'bodi', u'iraqi', u'soldier', u'mosul'] [u'call', u'tackl', u'petrol', u'sniff'] [u'flight', u'seek', u'boost', u'tourist', u'sector'] [u'morwel', u'volunt', u'road', u'rescu', u'challeng'] [u'mose', u'pip', u'rickard', u'durban', u'pool'] [u'air', u'staff', u'concern'] [u'back', u'doctor', u'push'] [u'urg', u'minist', u'rethink', u'transport', u'plan'] [u'murrumbateman', u'bypass', u'deni', u'fund'] [u'brawler', u'hand', u'game', u'suspens'] [u'wont', u'action', u'alleg', u'head', u'butt'] [u'busi', u'seek', u'rice', u'site'] [u'newc', u'fitzi', u'slam', u'tenni', u'australia', u'youth', u'develop'] [u'fund', u'eas', u'tasmanian', u'land', u'degrad'] [u'site', u'seek', u'whoa'] [u'nicorett', u'receiv', u'mast'] [u'guarante', u'power', u'despit', u'substat'] [u'norwegian', u'die', u'mundubbera', u'crash'] [u'trace', u'poison', u'arafat', u'nephew'] [u'hall', u'champion', u'welcom', u'member'] [u'eye', u'export', u'boost', u'china', u'trade', u'deal'] [u'deni', u'agenc', u'target', u'maori'] [u'owner', u'look', u'reopen', u'damag', u'meatwork'] [u'parliament', u'consid', u'public', u'holiday'] [u'parliament', u'hear', u'letter', u'hospit', u'fear'] [u'pilot', u'advic', u'weather', u'storm'] [u'plan', u'continu', u'privat', u'surgeri', u'centr'] [u'plan', u'afoot', u'legal', u'lismor', u'brothel'] [u'play', u'bogey', u'bring', u'sorenstam', u'lpga', u'crown'] [u'flag', u'progress', u'china', u'trade', u'talk'] [u'prais', u'apec', u'summit'] [u'polic', u'ask', u'investig', u'billboard'] [u'polic', u'crime', u'figur', u'crown', u'casino'] [u'polic', u'boost', u'plan', u'youth', u'game'] [u'polic', u'concern', u'schooli'] [u'polic', u'consid', u'drive', u'penalti'] [u'polic', u'hope', u'question', u'miss', u'yacht', u'crew', u'member'] [u'polic', u'hunt', u'currimundi', u'stab'] [u'polic', u'greater', u'alcohol', u'confisc', u'power'] [u'polic', u'probe', u'murder', u'man', u'internet'] [u'polic', u'trace', u'elder', u'woman', u'hour'] [u'polic', u'search', u'waikeri', u'murder', u'weapon'] [u'polic', u'struggl', u'retriev', u'drown', u'sailor', u'bodi'] [u'powel', u'pledg', u'support', u'palestinian', u'elect'] [u'powel', u'win', u'isra', u'pledg', u'palestinian', u'vote'] [u'prize', u'win', u'book', u'distort', u'histori', u'aborigin'] [u'public', u'remind', u'vote', u'council', u'poll'] [u'public', u'respons', u'hearten', u'miss', u'boy', u'famili'] [u'public', u'brief', u'work'] [u'public', u'brief', u'handl', u'danger', u'good'] [u'public', u'highway', u'revamp', u'plan'] [u'push', u'intensifi', u'attract', u'sack', u'worker'] [u'push', u'waterfront', u'work'] [u'urg', u'consid', u'health', u'develop'] [u'rain', u'affect', u'grain', u'harvest'] [u'real', u'estat', u'institut', u'urg', u'stamp', u'duti', u'review'] [u'report', u'highlight', u'environment', u'pressur'] [u'report', u'highlight', u'health', u'crisi', u'concern'] [u'resid', u'final', u'shop', u'plan'] [u'rural', u'doctor', u'fear', u'bush', u'servic'] [u'govt', u'accus', u'abandon', u'transport', u'blueprint'] [u'sailor', u'kill', u'shore', u'leav'] [u'schooli', u'assault', u'investig'] [u'servic', u'honour', u'westralia', u'victim'] [u'settl', u'watch', u'profit', u'drop', u'union', u'tell', u'jam'] [u'shepherd', u'drive', u'flock', u'central', u'madrid'] [u'shire', u'plan', u'wild', u'strategi'] [u'skase', u'widow', u'arriv', u'australia'] [u'skywest', u'prepar', u'flight'] [u'stab', u'mar', u'schooli', u'celebr'] [u'stab', u'suspect', u'return', u'melbourn'] [u'state', u'govt', u'fund', u'asbesto', u'educ', u'program'] [u'stepfath', u'plead', u'guilti', u'abus', u'charg'] [u'strand', u'live', u'export', u'cattl', u'offload', u'jordan'] [u'strickland', u'statu', u'unveil'] [u'suburban', u'hous', u'caus', u'workmen'] [u'suburban', u'satellit', u'dish', u'prompt', u'council', u'action'] [u'sudanes', u'rebel', u'welcom', u'troop', u'plan'] [u'surf', u'music', u'produc', u'terri', u'melcher', u'die'] [u'survey', u'aim', u'inform', u'fish', u'trend'] [u'sydney', u'train', u'commut', u'travel', u'free'] [u'polic', u'urg', u'vigil', u'weekend', u'road', u'death'] [u'tiger', u'fan', u'patient'] [u'tortur', u'sit', u'fallujah', u'say'] [u'tourism', u'award', u'aplenti', u'limeston', u'coast'] [u'tuna', u'farm', u'propon', u'reject', u'environment', u'concern'] [u'year', u'jail', u'illeg', u'tobacco', u'salesman'] [u'action', u'puzzl', u'fish'] [u'child', u'offend', u'seek', u'home'] [u'ukrain', u'challeng', u'alleg', u'ballot', u'flaw'] [u'union', u'brand', u'opposit', u'claim', u'shallow'] [u'unlock', u'slide', u'door', u'foil', u'robberi', u'attempt'] [u'plan', u'troop', u'deploy', u'sudan'] [u'dollar', u'specul', u'boost', u'aussi', u'currenc'] [u'reject', u'egyptian', u'custodi', u'request', u'habib'] [u'boat', u'accid', u'kill'] [u'detect', u'step', u'extradit', u'attempt'] [u'victim', u'group', u'get', u'fund', u'pledg'] [u'wallabi', u'black', u'carri', u'southern', u'reput'] [u'wall', u'street', u'drop', u'hit', u'australian', u'share'] [u'waratah', u'recruit', u'psychologist', u'hunt', u'elus'] [u'senat', u'plead', u'guilti', u'drive', u'charg'] [u'weekend', u'win', u'elud', u'croc'] [u'york', u'spark', u'racist', u'controversi'] [u'youth', u'group', u'want', u'bigger', u'subsidi', u'high', u'free'] [u'detain', u'apec', u'chile'] [u'academ', u'urg', u'cooper', u'water', u'manag'] [u'nomin', u'raaf', u'offic', u'australian'] [u'opposit', u'clean', u'school', u'tender'] [u'airlin', u'put', u'schedul'] [u'amcor', u'flag', u'possibl', u'competit', u'breach'] [u'anderson', u'defend', u'elect', u'margin', u'seat', u'fund'] [u'land', u'inquest', u'begin'] [u'arrest', u'airli', u'beach', u'schooli'] [u'auditor', u'general', u'criticis', u'oversight', u'feder'] [u'australian', u'armi', u'chief', u'visit', u'kashmir'] [u'author', u'record', u'water', u'breach'] [u'baddeley', u'aim', u'aust', u'open'] [u'beatti', u'reject', u'indi', u'schooli', u'comparison'] [u'best', u'newcom', u'accolad', u'sonni'] [u'blore', u'hill', u'bushfir', u'accid'] [u'blue', u'bushrang', u'share', u'honour'] [u'blue', u'melbourn'] [u'bodi', u'brisban', u'creek'] [u'bogus', u'prey', u'asian', u'women'] [u'bomb', u'iraq', u'commerci', u'flight'] [u'bracewel', u'blame', u'media', u'walk', u'controversi'] [u'britain', u'launch', u'iraq', u'shoot', u'probe'] [u'buchanan', u'guard', u'bowler', u'rotat', u'plan'] [u'budget', u'airlin', u'boost', u'gold', u'coast', u'flight'] [u'bull', u'waca', u'batter', u'paradis'] [u'bull', u'secur', u'inning', u'point'] [u'burglar', u'steal', u'jewelleri', u'ozzi', u'osbourn', u'home'] [u'bush', u'deni', u'nuclear', u'bunker', u'buster', u'fund'] [u'bush', u'sceptic', u'iran', u'uranium', u'claim'] [u'feguson', u'park', u'reloc', u'support'] [u'milk', u'sponsorship', u'deal', u'year'] [u'campaign', u'push', u'afford', u'rural', u'hous'] [u'canada', u'talk', u'hepat', u'compens'] [u'canberra', u'hospit', u'wait', u'list', u'longer'] [u'cancer', u'drug', u'control', u'diseas'] [u'cancer', u'drug', u'restrict', u'concern', u'doctor'] [u'cane', u'toad', u'discoveri', u'prompt', u'warn'] [u'crash', u'victim', u'north'] [u'park', u'area', u'free'] [u'carr', u'tour', u'break', u'hill'] [u'census', u'find', u'plenti', u'fish'] [u'chanc', u'want', u'greater', u'nation', u'support', u'grain'] [u'charg', u'drop', u'william', u'sister', u'murder', u'case'] [u'child', u'abus', u'commiss', u'motion', u'caus', u'lib'] [u'china', u'talk', u'offer', u'potenti', u'australian'] [u'church', u'play'] [u'cleric', u'return', u'sydney', u'iraq', u'kidnap'] [u'cocoa', u'ingredi', u'provid', u'cough', u'remedi'] [u'commonwealth', u'game', u'campaign', u'launch', u'london'] [u'communiti', u'earn', u'prais', u'arson', u'affect'] [u'conserv', u'group', u'rebut', u'dingo', u'claim'] [u'head', u'lobster', u'meat', u'plan'] [u'coron', u'seek', u'licens', u'user'] [u'coroni', u'inquest', u'spark', u'danger', u'review'] [u'councillor', u'seek', u'chang', u'develop', u'fund'] [u'council', u'race', u'finish', u'riverscap', u'boardwalk'] [u'council', u'consid', u'park', u'option'] [u'council', u'rais', u'wall'] [u'cricket', u'australia', u'consid', u'rest', u'bowler'] [u'danc', u'train', u'go', u'microscop'] [u'death', u'demonstr', u'import', u'life', u'jacket'] [u'death', u'spark', u'call', u'lifesav', u'club', u'chang'] [u'deputi', u'mayor', u'beat', u'council', u'direct'] [u'desalin', u'plant', u'flow', u'olymp', u'plan'] [u'dog', u'croft', u'court', u'threat'] [u'dog', u'deal', u'croft', u'claim'] [u'dolphin', u'protect', u'lifeguard', u'great', u'white'] [u'drug', u'drive', u'studi', u'saliva', u'sampl'] [u'earthquak', u'hit', u'zealand'] [u'electr', u'fault', u'fatal', u'hous', u'blaze'] [u'electr', u'worker', u'threaten', u'strike', u'action'] [u'nino', u'unlik', u'say', u'bureau'] [u'energex', u'woe', u'continu', u'plagu', u'treasur'] [u'english', u'polic', u'launch', u'york', u'investig'] [u'harden', u'stanc', u'belarus'] [u'expert', u'criticis', u'nation', u'indigen', u'council'] [u'russian', u'blame', u'nato', u'kosovo', u'exodus'] [u'fall', u'jobless', u'rate', u'blame', u'centrelink', u'cut'] [u'fardel', u'reject', u'claim', u'windsor', u'help'] [u'farmer', u'blame', u'dingo', u'stock', u'loss'] [u'farmer', u'urg', u'join', u'class', u'action', u'fire'] [u'farm', u'group', u'support', u'china', u'wheat', u'contract'] [u'fatah', u'name', u'abba', u'presidenti', u'candid'] [u'feder', u'fund', u'devonport', u'fish', u'plan'] [u'fijian', u'chief', u'guilti', u'incit', u'mutini'] [u'free', u'melbourn'] [u'fli', u'doctor', u'australian', u'citizen'] [u'french', u'leagu', u'coach', u'predict', u'bright', u'futur'] [u'fund', u'help', u'improv', u'replica'] [u'bid', u'tip'] [u'generat', u'african', u'affect', u'aid'] [u'gladston', u'report', u'recommend', u'fitzroy', u'river', u'pipelin'] [u'govt', u'seek', u'feder', u'fund', u'road', u'project'] [u'govt', u'opinion', u'seek', u'illeg', u'whale', u'case'] [u'govt', u'stress', u'fund', u'marina', u'plan'] [u'govt', u'want', u'block', u'offend'] [u'gregan', u'close', u'world', u'record'] [u'hardi', u'win', u'intern', u'support'] [u'harsh', u'time', u'farmer', u'diversifi'] [u'helicopt', u'crash', u'prompt', u'review'] [u'hilton', u'lawyer', u'appeal', u'jail', u'term'] [u'hope', u'aborigin', u'return', u'bass', u'strait'] [u'hors', u'centr', u'committe', u'deni', u'condit'] [u'hors', u'rider', u'trot', u'protest', u'past', u'parliament', u'hous'] [u'hotel', u'deni', u'knowledg', u'cyclist', u'assault'] [u'hotel', u'deni', u'knowledg', u'french', u'bash'] [u'hundr', u'tuna', u'farm', u'plan'] [u'indigen', u'council', u'highlight', u'hous', u'shortag'] [u'inform', u'session', u'prospect', u'student'] [u'injur', u'mortlock', u'fli', u'home', u'flatley', u'larkham'] [u'inzamam', u'upbeat', u'despit', u'kiwi', u'gabba', u'meltdown'] [u'iraq', u'confer', u'call', u'inclus', u'elect'] [u'iraqi', u'govt', u'confid', u'januari', u'elect'] [u'jakarta', u'embassi', u'bomb', u'suspect', u'arrest'] [u'crash', u'pick', u'bush'] [u'labor', u'review', u'elect', u'loss'] [u'labor', u'overhaul', u'campaign', u'strategi'] [u'larsson', u'month', u'barca', u'doctor'] [u'lehmann', u'rule', u'retir'] [u'local', u'govt', u'group', u'cast', u'doubt', u'inquiri', u'impact'] [u'local', u'group', u'urg', u'appli', u'emerg', u'fund'] [u'lonard', u'hop', u'form', u'revers', u'aust', u'open'] [u'londonderri', u'inquiri', u'draw', u'close'] [u'long', u'walk', u'open', u'politician', u'ear'] [u'magistr', u'oshan', u'return', u'bench'] [u'maitland', u'nurs', u'consid', u'closur'] [u'malaysian', u'court', u'uphold', u'school', u'muslim', u'turban'] [u'escap', u'jail', u'term', u'secur', u'scuffl'] [u'mcdonald', u'chief', u'step', u'cancer', u'treatment'] [u'mcmillan', u'lash', u'righteous', u'gilli'] [u'measl', u'case', u'prompt', u'communiti', u'vaccin'] [u'meet', u'call', u'limit', u'macedon', u'rang'] [u'melbourn', u'train', u'night', u'year'] [u'opposit', u'adult', u'entertain', u'approv'] [u'jail', u'tobacco', u'traffic'] [u'michael', u'moor', u'name', u'intrigu', u'star'] [u'miner', u'see', u'problem', u'transport'] [u'mine', u'dept', u'highlight', u'good', u'indigen', u'relat'] [u'mine', u'sector', u'fuel', u'market', u'recoveri'] [u'minist', u'defend', u'hospit', u'christma', u'closur'] [u'minist', u'reject', u'resourc', u'firm'] [u'minist', u'reject', u'hospit', u'wait', u'list', u'critic'] [u'citrus', u'canker'] [u'time', u'health', u'consult', u'see'] [u'year', u'old', u'drink', u'alcohol'] [u'yeppoon', u'schooli', u'behav'] [u'mother', u'confess', u'daughter', u'murder'] [u'weigh', u'futur', u'ningaloo', u'reef', u'plan'] [u'mum', u'bear', u'brunt', u'child', u'care', u'duti', u'report'] [u'muslim', u'cleric', u'fight', u'deport', u'move'] [u'naura', u'face', u'sale', u'proceed'] [u'rehab', u'scheme', u'alburi'] [u'firm', u'date', u'alic', u'practic', u'match'] [u'gypsi', u'joker', u'inquest', u'need', u'court', u'tell'] [u'discuss', u'ambul', u'fund', u'shortfal'] [u'caravan', u'park', u'site', u'leas', u'life'] [u'paedophil', u'link', u'embarrass', u'footbal', u'club'] [u'palestinian', u'get', u'life', u'sentenc', u'kill'] [u'palmer', u'thomson', u'devlin', u'sydney'] [u'polic', u'crack', u'canberra', u'cannabi', u'syndic'] [u'polic', u'effort', u'lower', u'crime', u'rate'] [u'polic', u'probe', u'daniel', u'morecomb', u'lead'] [u'polic', u'inforc', u'maintain', u'palm', u'island', u'calm'] [u'polic', u'resum', u'search', u'miss', u'fisherman'] [u'polic', u'seek', u'help', u'find', u'attack'] [u'polic', u'confirm', u'durston', u'knife', u'link'] [u'power', u'grid', u'withstand', u'demand', u'perth', u'spell'] [u'program', u'aim', u'improv', u'drug', u'alcohol', u'treatment'] [u'propos', u'tuna', u'farm', u'boost', u'economi'] [u'protest', u'fail', u'stop', u'koala', u'reloc'] [u'parliament', u'round', u'final', u'legisl'] [u'random', u'drug', u'test', u'tip', u'driver'] [u'rare', u'collect', u'hammer'] [u'ratepay', u'group', u'air', u'albert', u'hall', u'concern'] [u'reef', u'rezon', u'consult', u'report', u'soon'] [u'reiwa', u'say', u'regul', u'address', u'dodgi', u'agent'] [u'resid', u'meet', u'seek', u'club', u'pub', u'curfew'] [u'resid', u'seek', u'urban', u'deer', u'cull'] [u'roger', u'clear', u'assault', u'probe'] [u'roger', u'wait', u'verdict', u'assault', u'claim'] [u'rural', u'land', u'ranger', u'surviv', u'dead', u'chopper', u'crash'] [u'ryan', u'maintain', u'support', u'health', u'board', u'sack'] [u'safeti', u'bureau', u'investig', u'helicopt', u'crash'] [u'govt', u'stop', u'offend'] [u'withdraw'] [u'school', u'use', u'scheme', u'water', u'bulli'] [u'scot'] [u'seahors', u'number', u'monitor'] [u'sehwag', u'gambhir', u'india'] [u'sehwag', u'regal', u'crowd', u'india', u'inflat', u'total'] [u'abus', u'victim', u'group', u'back', u'inquiri'] [u'sheryl', u'crow', u'recount', u'stalk', u'affair', u'trial'] [u'shire', u'say', u'tidal', u'power', u'plant'] [u'silent', u'major', u'oakaje', u'plan'] [u'korea', u'seek', u'extend', u'iraq', u'troop', u'deploy'] [u'snake', u'collect', u'caus', u'headach', u'firefight'] [u'state', u'funer', u'honour', u'democrat', u'leader'] [u'steal', u'generat', u'prompt', u'long', u'walk'] [u'steal', u'wag', u'payout', u'reach', u'near'] [u'stowaway', u'serpent', u'get', u'free', u'return'] [u'strong', u'demand', u'greet', u'connecteast', u'debut'] [u'sutherland', u'play', u'walk', u'debat'] [u'sydney', u'centr', u'help', u'problem', u'gambler'] [u'sydney', u'polic', u'join', u'hunter', u'hold', u'probe'] [u'tah', u'finalis', u'squad', u'red', u'head', u'gold', u'coast'] [u'teenag', u'jail', u'chapel'] [u'temporari', u'miner', u'villag', u'plan', u'west', u'wyalong'] [u'toxic', u'scare', u'prompt', u'care', u'centr', u'evacu'] [u'treat', u'yorker'] [u'ukrain', u'face', u'street', u'protest'] [u'ullrich', u'hit', u'lanc', u'lazi', u'jibe'] [u'clone', u'plan', u'empt', u'australian', u'debat'] [u'hostag', u'releas', u'afghanistan'] [u'union', u'ban', u'school', u'clean'] [u'question', u'campus', u'poll'] [u'revis', u'darfur', u'displac', u'estim'] [u'send', u'food', u'convoy', u'darfur', u'refuge'] [u'urg', u'support', u'timor'] [u'unwelcom', u'land', u'fine'] [u'await', u'final', u'nuclear', u'report', u'iran'] [u'deer', u'hunter', u'territori', u'shootout'] [u'dollar', u'stock', u'weather', u'pressur'] [u'soldier', u'wound', u'milit', u'kill', u'afghan', u'clash'] [u'villa', u'fifth', u'tumbl', u'tottenham'] [u'virgin', u'mari', u'sandwich', u'fetch'] [u'water', u'boost', u'good', u'news', u'eurobodalla', u'shire'] [u'water', u'safeti', u'plan', u'reduc', u'drown'] [u'webber', u'pois', u'william', u'out'] [u'weighti', u'woe', u'worsen', u'asthma', u'say', u'council'] [u'flatley', u'recal', u'world'] [u'william', u'maintain', u'water', u'stanc', u'despit', u'protest'] [u'windsor', u'defiant', u'bribe', u'claim'] [u'reject', u'xstrata', u'takeov'] [u'wood', u'close', u'singh'] [u'wool', u'factori', u'put', u'superfin', u'effort'] [u'wool', u'product', u'drop', u'sheep', u'number', u'fall'] [u'say', u'river', u'nation', u'icon'] [u'yacht', u'owner', u'hop', u'reunit', u'miss', u'craft'] [u'young', u'driver', u'safe', u'drive', u'advic'] [u'youth', u'bodi', u'link', u'death', u'petrol', u'sniff'] [u'power', u'station', u'open', u'today'] [u'accc', u'announc', u'cartel', u'crackdown'] [u'announc', u'tribun', u'overhaul'] [u'offic', u'face', u'court', u'inform', u'leak'] [u'urg', u'withdraw', u'suprem', u'court', u'judg', u'remark'] [u'airport', u'trial', u'soon'] [u'alcohol', u'factor', u'magistr', u'accid'] [u'black', u'ring', u'chang', u'franc', u'test'] [u'ord', u'record', u'form'] [u'want', u'shorter', u'elect', u'surgeri', u'shutdown'] [u'anderson', u'deni', u'region', u'fund', u'discrimin'] [u'atsic', u'move', u'closer', u'high', u'court', u'challeng'] [u'auditor', u'general', u'ask', u'probe', u'region', u'fund'] [u'aussi', u'test'] [u'author', u'intend', u'file', u'charg', u'brawl'] [u'award', u'come', u'marshal'] [u'award', u'speak', u'volum', u'indigen', u'languag'] [u'barca', u'sign', u'injur', u'larsson'] [u'closur', u'affect', u'elect', u'surgeri', u'union'] [u'benaud', u'go'] [u'roadwork', u'pave', u'develop'] [u'blair', u'target', u'crime', u'terror', u'elect'] [u'blue', u'look', u'katich', u'build', u'total'] [u'boat', u'mishap', u'spark', u'weather', u'warn'] [u'brack', u'await', u'report', u'magistr', u'park'] [u'british', u'media', u'deni', u'accredit', u'zimbabw'] [u'bull', u'happi', u'inning', u'point'] [u'bush', u'order', u'inquiri', u'paramilitari', u'oper'] [u'danger', u'tree', u'save'] [u'condit', u'basslink', u'burn'] [u'kyoto', u'protocol', u'action', u'save', u'reef'] [u'castrat', u'child', u'offend'] [u'canberran', u'save', u'recycl', u'water'] [u'career', u'advis', u'industri', u'lowdown'] [u'carr', u'reject', u'chemic', u'castrat', u'offend'] [u'casa', u'give', u'temora', u'runway'] [u'caterpillar', u'lobbi', u'bulldoz', u'sale', u'israel'] [u'consid', u'break', u'hill', u'boost'] [u'chang', u'seek', u'birth', u'servic', u'resourc'] [u'chappel', u'lament', u'lille', u'resign'] [u'charg', u'drop', u'footag', u'illeg', u'drink'] [u'chaudhri', u'lead', u'fiji', u'opposit'] [u'coal', u'owner', u'close', u'share', u'offer'] [u'coast', u'firm', u'run', u'export', u'award'] [u'committe', u'criticis', u'nepean', u'river', u'longwal', u'mine'] [u'communiti', u'invit', u'wind', u'farm', u'meet'] [u'compani', u'keen', u'brisban', u'tunnel', u'council', u'say'] [u'compani', u'urg', u'discuss', u'disput', u'rail'] [u'cooma', u'monaro', u'land', u'valu', u'skyrocket'] [u'council', u'move', u'ahead', u'palm', u'alcohol', u'plan'] [u'council', u'push', u'ahead', u'land', u'releas', u'plan'] [u'council', u'panel', u'beat', u'busi'] [u'council', u'want', u'plan', u'blueprint', u'extend'] [u'court', u'committ', u'date', u'barg', u'aground', u'case'] [u'court', u'hear', u'lade', u'recruit', u'thoma'] [u'court', u'uphold', u'defam', u'decis'] [u'crayfish', u'risk', u'log', u'say', u'expert'] [u'crew', u'battl', u'adelaid', u'blaze'] [u'crime', u'rat', u'climb', u'say', u'expert'] [u'cycl', u'australia', u'lose', u'high', u'perform', u'manag'] [u'death', u'prompt', u'perman', u'alexandria'] [u'democrat', u'wont', u'forc', u'windsor', u'inquiri'] [u'doctor', u'confirm', u'taxpay', u'fund', u'holiday'] [u'downer', u'give', u'latham', u'month'] [u'downer', u'seek', u'advic', u'plan', u'transfer'] [u'downer', u'warn', u'aussi', u'drug', u'possess'] [u'downer', u'welcom', u'embassi', u'bomb', u'arrest'] [u'dragway', u'increas', u'street', u'race', u'studi'] [u'farm', u'plan', u'bring', u'benefit'] [u'electron', u'barrier', u'away', u'shark', u'net'] [u'nino', u'absent', u'pacif'] [u'england', u'unchang', u'wallabi', u'clash'] [u'excav', u'plan', u'help', u'save', u'fish'] [u'farmer', u'brand', u'canola', u'failur'] [u'farmer', u'develop', u'green', u'guidelin'] [u'farmer', u'vent', u'regulatori', u'worri'] [u'ferguson', u'celebr', u'game', u'win', u'style'] [u'festiv', u'season', u'like', u'bring', u'elect', u'surgeri'] [u'fiji', u'high', u'chief', u'get', u'life', u'jail', u'incit'] [u'fiji', u'high', u'chief', u'guilti', u'incit', u'mutini'] [u'damag', u'adelaid'] [u'account', u'jail', u'fraud'] [u'chief', u'execut', u'remain', u'payrol'] [u'policeman', u'welcom', u'speed', u'camera', u'decis'] [u'winner', u'seek', u'sydney', u'hobart', u'success'] [u'forum', u'put', u'focus', u'gulf', u'fish', u'stock'] [u'arrest', u'jakarta', u'embassi', u'bomb'] [u'fund', u'boost', u'address', u'suburban', u'shortag'] [u'garcia', u'injuri', u'blow', u'liverpool'] [u'goosen', u'grab', u'grand', u'slam', u'lead'] [u'govern', u'urg', u'stop', u'children', u'smoke'] [u'govt', u'deni', u'trade', u'hour', u'referendum', u'compromis'] [u'govt', u'determin', u'disabl', u'pension'] [u'govt', u'probe', u'light', u'patrol'] [u'govt', u'stand', u'elect', u'surgeri', u'shutdown'] [u'govt', u'hold', u'probe', u'state', u'agreement', u'act'] [u'govt', u'age', u'care', u'invest'] [u'govt', u'urg', u'brake', u'plate', u'night', u'plan'] [u'gulf', u'plan', u'worri', u'seafood', u'group'] [u'haddin', u'katich', u'blue', u'lead'] [u'haddin', u'push', u'blue', u'lead'] [u'heritag', u'conserv', u'effort'] [u'hewitt', u'face', u'swedish', u'challeng', u'adelaid'] [u'vaccin', u'discoveri', u'distant', u'research'] [u'hospit', u'helipad', u'fund', u'hold'] [u'properti', u'clark', u'keep', u'ball'] [u'houllier', u'impress', u'chelsea'] [u'hull', u'talk', u'hostel', u'care'] [u'hunter', u'public', u'outlin', u'plan', u'issu'] [u'india', u'tour', u'bangladesh', u'decemb'] [u'indonesian', u'fishermen', u'rescu', u'shipwreck'] [u'indonesian', u'face', u'court', u'illeg', u'fish'] [u'inmat', u'help', u'clean', u'crime'] [u'inquiri', u'order', u'maori', u'spi', u'claim'] [u'inspect', u'mount', u'todd', u'gold'] [u'iranian', u'nuclear', u'program', u'stay'] [u'ireland', u'revert', u'beater', u'puma', u'test'] [u'iron', u'road', u'rage', u'incid'] [u'italian', u'team', u'lampr', u'caffita', u'head'] [u'judgment', u'delay', u'eccleston', u'legal', u'battl'] [u'kalgoorli', u'ask', u'court', u'jail', u'term'] [u'kanpur', u'test', u'end', u'draw'] [u'katich', u'blue', u'chase', u'inning', u'lead'] [u'knight', u'releas', u'wooden', u'fitzgerald'] [u'labor', u'call', u'indigen', u'hous', u'fund'] [u'labor', u'stick', u'close', u'root', u'hawk'] [u'labor', u'warn', u'analysi', u'paralysi'] [u'larder', u'want', u'payback', u'wallabi'] [u'latham', u'dismiss', u'leadership', u'rumour'] [u'latham', u'slam', u'govt', u'disabl', u'pension', u'propos'] [u'lehmann', u'rule', u'retir'] [u'libya', u'reward', u'reject', u'nuke'] [u'lille', u'walk', u'away', u'cricket', u'academi'] [u'lion', u'swan', u'lose', u'locat', u'allow'] [u'livingston', u'shire', u'releas', u'water', u'report'] [u'magistr', u'urg', u'job'] [u'charg', u'chermsid', u'bodi'] [u'charg', u'murder', u'melbourn', u'club'] [u'jail', u'attack'] [u'jail', u'kill', u'aunt'] [u'mayor', u'back', u'close', u'brief'] [u'mayor', u'defend', u'privat', u'fund', u'cotteslo', u'report'] [u'meatwork', u'promis', u'entitl'] [u'meet', u'aim', u'resolv', u'disabl', u'dilemma'] [u'melbourn', u'terror', u'suspect', u'deni', u'bail'] [u'melbourn', u'train', u'face', u'safeti', u'upgrad'] [u'like', u'smoke'] [u'miner', u'trap', u'chines', u'coal'] [u'miss', u'boy'] [u'charg', u'expect', u'shoplift', u'ring'] [u'mornington', u'alcohol', u'ban', u'review'] [u'question', u'region', u'fund', u'scheme'] [u'nation', u'park', u'blaze', u'continu', u'burn'] [u'airport', u'baggag', u'screen', u'unveil'] [u'mast', u'nicorett'] [u'decis', u'alcoholpetrol', u'outlet'] [u'north', u'western', u'tasmania', u'face', u'dentist', u'shortag'] [u'firefight', u'honour', u'canberra', u'fire'] [u'seek', u'oversea', u'skill', u'labour'] [u'tree', u'speci', u'conserv'] [u'boost', u'franklin', u'return'] [u'price', u'surg'] [u'olymp', u'mine', u'deposit', u'larger'] [u'ombudsman', u'seek', u'child', u'abus', u'review', u'extens'] [u'oneil', u'urg', u'aussi', u'talent', u'return', u'home'] [u'onlin', u'casino', u'buy', u'virgin', u'mari', u'sandwich'] [u'outlook', u'good', u'matur', u'bendigo', u'tree'] [u'palmer', u'take', u'aussi', u'great', u'exhibit', u'match'] [u'parent', u'urg', u'rotavirus'] [u'peac', u'india', u'hing', u'kashmir', u'pakistan', u'say'] [u'petrol', u'compani', u'urg', u'lower', u'price'] [u'plan', u'move', u'ahead', u'foreshor', u'referendum'] [u'plan', u'continu', u'busi', u'trader', u'group'] [u'plan', u'predict', u'boost', u'ocean', u'properti', u'price'] [u'plan', u'protocol', u'indigen'] [u'tropic', u'diseas', u'reappear', u'near', u'tedi'] [u'polic', u'investig', u'human', u'remain'] [u'polic', u'hous', u'victim'] [u'polic', u'renew', u'plea', u'help', u'catch', u'girl', u'attack'] [u'polic', u'search', u'miss', u'boy'] [u'polic', u'warn', u'schooli', u'drink', u'spike', u'threat'] [u'port', u'sign', u'rhode', u'mickan', u'backroom', u'staff'] [u'poverti', u'threaten', u'south', u'african', u'secur', u'tutu', u'say'] [u'powerlin', u'blaze', u'compo', u'offer'] [u'protea'] [u'public', u'urg', u'power', u'safe'] [u'public', u'urg', u'offer', u'cemeteri', u'idea'] [u'race', u'minist', u'hear', u'gladston', u'concern'] [u'rain', u'help', u'eas', u'water', u'ban'] [u'real', u'link', u'latest', u'brazilian', u'star'] [u'relief', u'avail', u'hailstorm', u'affect', u'farmer'] [u'reward', u'boost', u'unsolv', u'gold', u'coast', u'crime'] [u'legisl', u'hamper', u'age', u'care', u'plan'] [u'challeng', u'boof', u'battl', u'slow', u'poke'] [u'rise', u'freight', u'cost', u'upsid'] [u'rocki', u'coal', u'push', u'see', u'competit', u'mackay'] [u'russia', u'ditch', u'communist', u'holiday'] [u'russia', u'loom', u'overwhelm', u'favourit'] [u'rwanda', u'threaten', u'attack', u'rebel', u'congo'] [u'blackout', u'rise'] [u'sale', u'patrick', u'white', u'hous', u'postpon'] [u'scheme', u'help', u'youth', u'crime'] [u'schoolgirl', u'attack', u'claim', u'prove', u'fals'] [u'scientist', u'seek', u'unlock', u'reveget', u'secret'] [u'stress', u'quadrupl', u'asthma', u'risk', u'research'] [u'stuart', u'appl', u'booki', u'eye'] [u'tate', u'kennedi', u'expand', u'kangaroo', u'squad'] [u'telstra', u'target', u'wollongong', u'wireless', u'internet'] [u'test', u'suspect', u'murder', u'weapon'] [u'thatcher', u'face', u'south', u'african', u'court'] [u'help', u'power', u'ballarat'] [u'toodyay', u'firm', u'win', u'surg', u'wall', u'contract'] [u'twin', u'polar', u'bear', u'home', u'gold', u'coast'] [u'ukrain', u'demonstr', u'renew', u'street', u'protest'] [u'ukrainian', u'demonstr', u'continu', u'protest'] [u'ukrainian', u'protest', u'confront', u'polic'] [u'uluru', u'close', u'mourn'] [u'union', u'fear', u'suncorp', u'worker', u'health'] [u'iraqi', u'sweep', u'triangl', u'death'] [u'venezuelan', u'bomb', u'suspect', u'die', u'shoot'] [u'veteran', u'news', u'anchor', u'resign'] [u'volcano', u'threat', u'upgrad'] [u'go', u'motion'] [u'warrior', u'dour', u'draw'] [u'warrior', u'draw', u'immin'] [u'wenger', u'contest', u'improp', u'conduct', u'charg'] [u'wheat', u'export', u'reap', u'profit'] [u'survivor', u'work', u'album', u'year'] [u'woman', u'die', u'highway', u'crash'] [u'worker', u'die', u'truck', u'mishap'] [u'worksaf', u'concern', u'ferri', u'safeti'] [u'yachtsman', u'custodi', u'move', u'ship'] [u'yuendumu', u'servic', u'boost'] [u'arm', u'attack', u'teenag', u'polic'] [u'accc', u'revenu', u'transend', u'return'] [u'advoc', u'warn', u'detent', u'centr', u'riot', u'risk'] [u'african', u'nation', u'block', u'motion', u'sudan'] [u'albani', u'urg', u'match', u'govt', u'oval', u'fund'] [u'alcohol', u'relat', u'road', u'death', u'increas'] [u'alic', u'blackout', u'hard', u'prevent'] [u'jazeera', u'launch', u'english', u'languag', u'servic'] [u'ambul', u'servic', u'defend', u'road', u'crash'] [u'anti', u'discrimin', u'complaint', u'rise', u'north'] [u'anti', u'woolworth', u'protest', u'target'] [u'univers', u'melbourn', u'tertiari', u'studi'] [u'arctic', u'state', u'agre', u'small', u'step', u'slow', u'thaw'] [u'armi', u'play', u'soldier'] [u'attempt', u'abduct', u'trigger', u'polic', u'hunt'] [u'aussi', u'unchang', u'adelaid'] [u'australian', u'uni', u'unlik', u'world', u'leader'] [u'australia', u'kick', u'hors', u'race', u'sprint', u'seri'] [u'ballot', u'disput', u'edg', u'ukrain', u'civil'] [u'bank', u'outsourc', u'chequ', u'process'] [u'barn', u'surg', u'surpris', u'open', u'lead'] [u'barnett', u'pledg', u'stamp', u'duti', u'cut'] [u'better', u'fisheri', u'manag', u'timor', u'fisher'] [u'black', u'cap', u'hope', u'host', u'deliv'] [u'boost', u'plan', u'xstrata', u'copper', u'smelter'] [u'border', u'blitz', u'target', u'danger', u'drive'] [u'hurt', u'ambros', u'properti', u'accid'] [u'brack', u'reject', u'clemenc', u'jail', u'unionist'] [u'bradman', u'melbourn', u'wardrob'] [u'branson', u'sink', u'rat'] [u'brazil', u'win', u'approv', u'uranium', u'enrich'] [u'britney', u'beatl', u'memorabilia', u'auction', u'list'] [u'bug', u'enlist', u'fight', u'terror'] [u'bushrang', u'crash', u'embarrass', u'defeat'] [u'bushrang', u'struggl', u'blue'] [u'cabinet', u'kick', u'stockad', u'celebr'] [u'canberra', u'polic', u'trial', u'stun', u'gun', u'marshal'] [u'carr', u'ask', u'hellicar', u'stand', u'advisori'] [u'chalmer', u'forg', u'earli', u'lead'] [u'chariti', u'pocket', u'cash', u'leav', u'jacket'] [u'cholesterol', u'drug', u'benefit', u'outweigh', u'risk', u'doctor'] [u'clark', u'say', u'dollar', u'wind', u'farm', u'definit'] [u'club', u'clear', u'smoke', u'ban', u'impact'] [u'committe', u'investig', u'fadden', u'drug', u'centr'] [u'communiti', u'support', u'see', u'bank', u'open'] [u'concern', u'rais', u'osteopathi', u'cours'] [u'council', u'air', u'bendigo', u'bank', u'fear'] [u'council', u'defend', u'night', u'toilet', u'polici'] [u'council', u'surplus'] [u'council', u'increas', u'water', u'allow'] [u'council', u'remov', u'unsaf', u'lake', u'slide'] [u'council', u'want', u'bruce', u'highway', u'upgrad', u'soon'] [u'court', u'rule', u'bashir', u'trial', u'proceed'] [u'crash', u'prompt', u'rlpb', u'chopper'] [u'dept', u'work', u'contain', u'remot'] [u'desert', u'hold', u'solut', u'china', u'water', u'shortag'] [u'doctor', u'increas', u'fail', u'benefit', u'patient'] [u'doctor', u'speak', u'obstetr', u'servic', u'cut'] [u'domest', u'violenc', u'shelter', u'receiv', u'fund'] [u'downer', u'back', u'skipper', u'self', u'defenc', u'claim'] [u'energi', u'dept', u'coal', u'plan'] [u'england', u'cancel', u'zimbabw', u'flight', u'media'] [u'england', u'hold', u'emerg', u'talk'] [u'england', u'wallabi', u'top', u'weekend', u'final'] [u'kitchen', u'sink', u'council', u'sale'] [u'health', u'board', u'member', u'maintain', u'hospit'] [u'fin', u'ban', u'racial', u'abus', u'york'] [u'farmer', u'warn', u'terror', u'risk'] [u'film', u'industri', u'polic', u'combin', u'tackl', u'piraci'] [u'firefight', u'battl', u'blaze', u'north', u'west'] [u'firefight', u'contain', u'nation', u'park', u'blaze'] [u'firm', u'hop', u'spark', u'desalin'] [u'fisher', u'hear', u'drill', u'plan', u'detail'] [u'fish', u'firm', u'reject', u'tuna', u'farm', u'fear'] [u'flight', u'plan', u'includ', u'airport', u'sale'] [u'franc', u'crush', u'spain', u'reach', u'final'] [u'franc', u'russia', u'edg', u'showdown'] [u'friend', u'relat', u'farewel', u'train', u'accid', u'victim'] [u'fund', u'boost', u'north', u'west', u'hospit'] [u'gene', u'think', u'influenc', u'femal', u'infidel'] [u'gibbon', u'seek', u'senat', u'probe', u'feder', u'fund'] [u'canola', u'crop', u'threat', u'bayer'] [u'cotton', u'plan', u'north', u'west', u'victoria'] [u'gold', u'copper', u'shape'] [u'golden', u'day', u'return', u'telfer'] [u'govern', u'roadwork', u'updat'] [u'govt', u'defend', u'south', u'beach', u'develop', u'process'] [u'govt', u'stand', u'line', u'despit', u'loss'] [u'govt', u'consid', u'sell', u'spirit', u'tasmania'] [u'govt', u'urg', u'giant', u'trawler'] [u'govt', u'win', u'support', u'move', u'swiss', u'account'] [u'graincorp', u'black'] [u'green', u'group', u'join', u'road', u'talk'] [u'hanson', u'forc', u'short', u'cours', u'open'] [u'hardi', u'chief', u'dismiss', u'foundat', u'liquid'] [u'havilah', u'upgrad', u'valu', u'gold', u'copper', u'deposit'] [u'health', u'energex', u'domin', u'parliament'] [u'histor', u'headston', u'undergo', u'restor'] [u'hobbit', u'catch', u'academ', u'crossfir'] [u'holyfield', u'appeal', u'medic', u'suspens'] [u'hospit', u'demolit', u'begin'] [u'india', u'name', u'ganguli', u'appeal', u'permit'] [u'indian', u'charmer', u'threaten', u'unleash', u'snake'] [u'industri', u'continu', u'citrus', u'tree', u'destruct'] [u'intern', u'plaudit', u'coast', u'polar', u'bear'] [u'invest', u'pick', u'tip', u'despit', u'caution'] [u'iraq', u'sunni', u'muslim', u'parti', u'boycott', u'elect'] [u'jail', u'unionist', u'thank', u'protest', u'support'] [u'jone', u'tell', u'super', u'english', u'lesson'] [u'jordan', u'set', u'zarqawi', u'surrend', u'deadlin'] [u'land', u'clear', u'law', u'protect', u'environ', u'minist'] [u'landhold', u'urg', u'remain', u'vigil'] [u'latham', u'remind', u'detractor', u'disun', u'death'] [u'latham', u'tri', u'bulli', u'premier'] [u'law', u'enforc', u'liquor', u'accord', u'penalti'] [u'local', u'liquor', u'accord', u'compulsori'] [u'locust', u'wont', u'cure', u'diabet', u'saudi', u'tell'] [u'profit', u'forc', u'oper', u'south', u'east'] [u'research', u'rank', u'doesnt', u'faze'] [u'magnet', u'beak', u'lead', u'pigeon', u'home'] [u'die', u'kingscliff', u'road', u'crash'] [u'fin', u'illeg', u'fish', u'kakadu'] [u'fin', u'kill', u'croc'] [u'market', u'continu', u'record', u'high'] [u'mexican', u'polic', u'arrest', u'public', u'lynch'] [u'mickelson', u'snare', u'grand', u'slam'] [u'milan', u'barca', u'progress', u'champion', u'leagu'] [u'minist', u'promis', u'resourc', u'combat', u'child'] [u'moder', u'flood', u'like', u'weemelah'] [u'montoya', u'fastest', u'webber', u'fifth', u'test'] [u'mother', u'jail', u'babi', u'daughter', u'death'] [u'mother', u'top', u'survey', u'english', u'beauti', u'word'] [u'motorsport', u'council', u'disput', u'dragway', u'research'] [u'front', u'court', u'shoot'] [u'demand', u'swift', u'report', u'arafat', u'death'] [u'urg', u'support', u'random', u'drug', u'drive', u'test'] [u'urg', u'public', u'transit', u'centr'] [u'nato', u'agre', u'fund', u'train', u'mission', u'iraq'] [u'council', u'allianc', u'boost', u'resourc', u'share'] [u'game', u'figur', u'alarm', u'welfar', u'group'] [u'market', u'pool', u'poor', u'wheat', u'crop'] [u'north', u'korea', u'look', u'signal', u'talk'] [u'verdict', u'reach', u'babi', u'manslaught'] [u'seek', u'strengthen', u'tie', u'timor'] [u'detain', u'children', u'state'] [u'downgrad', u'solomon', u'travel', u'warn'] [u'opposit', u'call', u'answer', u'energex'] [u'opposit', u'question', u'power', u'station', u'viabil'] [u'opposit', u'communiti', u'foundat', u'plan', u'attack'] [u'peacock', u'recov', u'heart', u'surgeri'] [u'pension', u'medicar', u'plus', u'scrap'] [u'petrol', u'sniff', u'outbreak', u'fear', u'indigen'] [u'pinochet', u'asset', u'freez'] [u'pioneer', u'heart', u'diseas', u'research', u'die', u'age'] [u'plan', u'crash', u'land', u'investig'] [u'plan', u'begin', u'medic', u'centr', u'expans'] [u'polic', u'apologis', u'child', u'porn', u'email'] [u'polic', u'hunt', u'attempt', u'child', u'abduct'] [u'polic', u'schooli', u'arrest'] [u'polic', u'offic', u'accident', u'email', u'child', u'porn'] [u'polic', u'plea', u'action', u'prevent', u'domest', u'violenc'] [u'polic', u'reopen', u'probe', u'angela', u'meal', u'death'] [u'politician', u'quiz', u'geraldton', u'issu'] [u'pont', u'hope', u'best', u'windi', u'team', u'tour'] [u'pool', u'oper', u'hour', u'normal'] [u'postal', u'vote', u'flow', u'bendigo', u'poll'] [u'probe', u'continu', u'bendigo', u'stab'] [u'prostat', u'cancer', u'treatment', u'turn', u'gold'] [u'protein', u'help', u'heart', u'attack', u'damag', u'mice'] [u'public', u'hous', u'includ', u'land', u'releas'] [u'public', u'sussex', u'inlet', u'develop'] [u'public', u'vent', u'prison', u'farm', u'worri'] [u'push', u'grow', u'aborigin', u'radio', u'station'] [u'putin', u'meet', u'amid', u'tension', u'ukrain', u'vote'] [u'rail', u'cut', u'report', u'today'] [u'rank', u'put', u'near', u'global', u'research'] [u'rare', u'vase', u'smash', u'museum', u'accid'] [u'real', u'condemn', u'racism', u'deni', u'knowledg', u'chant'] [u'cross', u'make', u'fifth', u'visit', u'saddam'] [u'redknapp', u'quit', u'portsmouth', u'manag'] [u'renmark', u'earmark', u'cotton', u'releas'] [u'rescu', u'chopper', u'wont', u'remot', u'option'] [u'research', u'wave', u'goodby', u'technolog'] [u'resid', u'claim', u'victori', u'nepean', u'river', u'fight'] [u'restrict', u'save', u'month', u'water'] [u'robinson', u'target', u'aussi', u'doubl'] [u'rock', u'expert', u'join', u'death', u'investig'] [u'roger', u'confirm', u'tour'] [u'rooki', u'spinner', u'name', u'bull', u'squad'] [u'govt', u'pass', u'worker', u'right'] [u'secur', u'camera', u'crime'] [u'shire', u'say', u'suffer', u'councillor', u'overload'] [u'slingshot', u'vandal', u'spend', u'month', u'jail'] [u'soar', u'elect', u'cost', u'concern', u'shire'] [u'socceroo', u'pair', u'join', u'newcastl', u'jet'] [u'sorenstam', u'face', u'tiger', u'scott', u'skin', u'showdown'] [u'spain', u'seek', u'clemenc', u'convict', u'afghan', u'killer'] [u'sponsorship', u'disput', u'deplet', u'windi', u'line'] [u'lanka', u'board', u'caution', u'murali', u'comment'] [u'straw', u'hold', u'talk', u'west', u'bank'] [u'stricter', u'exclus', u'zone', u'worri', u'lobster', u'fisher'] [u'student', u'question', u'burn', u'kitten'] [u'swim', u'great', u'back', u'thorp', u'sabbat'] [u'tasmania', u'bailey', u'award', u'menzi', u'scholarship'] [u'taxi', u'reform', u'eas', u'oper', u'restrict'] [u'thatcher', u'trial', u'postpon'] [u'theatr', u'circus', u'featur', u'hobart', u'festiv'] [u'timber', u'firm', u'close'] [u'track', u'profil', u'whale', u'habit'] [u'trio', u'sentenc', u'nightclub', u'fight'] [u'trucki', u'hospit', u'roll'] [u'trundl', u'maintain', u'push', u'doctor', u'resid'] [u'arrest', u'schooli', u'gather'] [u'child', u'killer', u'want'] [u'join', u'effort', u'reviv', u'middl', u'east', u'peac', u'process'] [u'politician', u'launch', u'blair', u'impeach'] [u'troop', u'raid', u'rebel', u'stronghold', u'south', u'baghdad'] [u'unchart', u'rock', u'blame', u'ship', u'damag'] [u'union', u'await', u'find', u'fatal', u'truck', u'mishap'] [u'unionist', u'seek', u'pardon', u'jail', u'leader'] [u'union', u'discuss', u'educ', u'polici'] [u'plagiar', u'woe', u'spark', u'intern', u'debat'] [u'unlicens', u'driver', u'jail', u'crime', u'spree', u'fatal'] [u'probe', u'report', u'rwanda', u'attack'] [u'dollar', u'continu', u'slide'] [u'volcano', u'erupt', u'forc', u'evacu'] [u'chang', u'save'] [u'wallabi', u'match', u'english', u'muscl'] [u'warn', u'threat', u'loom', u'beleagu', u'kiwi'] [u'wast', u'dump', u'environment', u'effect', u'guidelin'] [u'woodward', u'watch', u'french', u'prepar'] [u'workshop', u'prepar', u'agenc', u'disast'] [u'work', u'start', u'rail', u'cross', u'bridg'] [u'zeffirelli', u'award', u'honorari', u'british', u'knighthood'] [u'zimbabw', u'lift', u'cricket', u'journalist'] [u'offer', u'communiti', u'base', u'project'] [u'kill', u'fallujah', u'offens'] [u'activist', u'accus', u'incit', u'detent', u'centr'] [u'releas', u'preseason', u'draw'] [u'claim', u'proper', u'approv', u'bush', u'centr'] [u'appeal', u'court', u'tell', u'babi', u'killer', u'sentenc', u'barbar'] [u'showcas', u'indigen', u'tourism'] [u'asean', u'host', u'lao', u'emerg', u'shadow'] [u'asean', u'pressur', u'emptiv', u'strike', u'polici'] [u'asean', u'treati', u'push', u'spark', u'word'] [u'aussi', u'lose', u'hayden'] [u'aussi', u'reach', u'lunch', u'loss'] [u'australia', u'bat', u'adelaid'] [u'australian', u'luxuri', u'properti'] [u'author', u'arthur', u'hailey', u'die'] [u'autopsi', u'driver'] [u'award', u'honour', u'effort', u'curb', u'domest', u'violenc'] [u'backpack', u'fin', u'shrine', u'vandal'] [u'backyard', u'explor', u'plan', u'upset', u'orbost'] [u'ballina', u'marina', u'plan'] [u'bayley', u'crown', u'stellar', u'year', u'oppi'] [u'beach', u'closur', u'spark', u'union', u'lifeguard', u'talk'] [u'benitez', u'face', u'role', u'model', u'wenger'] [u'bhoy', u'look', u'barcelona', u'bounc'] [u'billiton', u'river', u'mine'] [u'crowd', u'rememb', u'asbesto', u'victim'] [u'crowd', u'tip', u'wodonga'] [u'toughen', u'tasmania', u'famili', u'violenc', u'law'] [u'blix', u'play', u'chemic', u'laboratori', u'claim'] [u'bone', u'year', u'mysteri'] [u'british', u'radio', u'program', u'focus', u'bush', u'bachelor'] [u'break', u'hill', u'deposit', u'rais', u'hop'] [u'brush', u'tail', u'wallabi', u'program', u'get', u'recruit'] [u'burma', u'free', u'prison'] [u'bark', u'highway', u'revamp'] [u'campaign', u'target', u'bendigo', u'drink', u'drive'] [u'canberra', u'hous', u'price', u'downward', u'slide'] [u'cathol', u'church', u'weigh', u'abort', u'debat'] [u'centrelink', u'probe', u'albani', u'fraud'] [u'charg', u'drop', u'john', u'stalk', u'case'] [u'child', u'abus', u'investig', u'month'] [u'club', u'foot', u'court', u'stoush'] [u'cobar', u'face', u'dental', u'wait'] [u'colonel', u'add', u'sauc', u'award'] [u'council', u'invest', u'condamin', u'guid', u'boat', u'tour'] [u'council', u'finish', u'secess', u'plan'] [u'council', u'seek', u'oliv', u'grove', u'soil', u'sampl'] [u'counter', u'strike', u'robber', u'guilti', u'murder'] [u'countri', u'music', u'buff', u'prepar', u'launch', u'tamworth'] [u'coupl', u'offer', u'care', u'displac'] [u'court', u'dismiss', u'indonesian', u'girl', u'visa'] [u'court', u'reserv', u'decis', u'babi', u'killer', u'appeal'] [u'court', u'hear', u'truck', u'stop', u'opposit'] [u'croc', u'hope', u'turn', u'wildcat', u'record'] [u'darwin', u'rememb', u'cyclon', u'traci'] [u'dept', u'investig', u'alleg', u'boy', u'casino'] [u'develop', u'ask', u'excav', u'park'] [u'digger', u'club', u'plan', u'revamp'] [u'doctor', u'increas', u'fail', u'benefit'] [u'doctor', u'group', u'beat', u'litig', u'law'] [u'dog', u'determin', u'pay', u'graduat'] [u'driver', u'urg', u'shop', u'cheapest', u'fuel'] [u'worker', u'walk'] [u'kill', u'chines', u'high', u'school', u'knife', u'attack'] [u'einstein', u'essay', u'sell'] [u'england', u'arriv', u'zimbabw'] [u'question', u'impact', u'wind', u'farm'] [u'timor', u'lose', u'faith', u'talk'] [u'aim', u'ukrain', u'crisi'] [u'falconio', u'case', u'evid', u'examin'] [u'fallujah', u'rebel', u'claim', u'regroup'] [u'father', u'guilti', u'partner', u'murder'] [u'father', u'jail', u'lure', u'teen', u'internet'] [u'father', u'prais', u'son', u'abduct', u'fight'] [u'feder', u'fund', u'beef', u'meatwork', u'oper'] [u'fisher', u'propos', u'permit'] [u'fisher', u'discuss', u'loom', u'tabl', u'fish', u'shortag'] [u'ford', u'stand', u'elect', u'debat', u'challeng'] [u'freez', u'extend', u'fisheri', u'boat'] [u'prison', u'releas', u'slat', u'burma'] [u'gang', u'rapist', u'sentenc', u'year', u'jail'] [u'giardia', u'case', u'rise'] [u'gold', u'coast', u'pois', u'russian', u'invas'] [u'govt', u'close', u'finalis', u'narungga', u'compo'] [u'govt', u'get', u'activ', u'boost', u'student', u'fit'] [u'govt', u'push', u'ahead', u'airspac', u'plan'] [u'govt', u'urg', u'address', u'age', u'popul', u'impact'] [u'govt', u'urg', u'rail', u'servic', u'track'] [u'green', u'aust', u'secur', u'contract'] [u'hain', u'farewel', u'strain', u'strauss'] [u'henri', u'piersol', u'splash', u'melbourn'] [u'howard', u'reject', u'asean', u'aggress', u'treati'] [u'howard', u'forc', u'jam', u'hardi', u'carr'] [u'howard', u'warn', u'fall', u'dollar', u'export'] [u'hundr', u'film', u'lose', u'bangladesh'] [u'hunter', u'face', u'whoop', u'cough', u'outbreak'] [u'hurst', u'surf'] [u'icac', u'hold', u'orang', u'grove', u'public', u'hear'] [u'immigr', u'raid', u'net', u'illeg', u'worker'] [u'indonesia', u'free', u'australian', u'hold', u'death'] [u'indonesian', u'quak', u'rock', u'darwin', u'cairn'] [u'iran', u'seek', u'exempt', u'nuclear', u'deal'] [u'iraqi', u'minist', u'claim', u'troop', u'discov', u'chemic'] [u'iraq', u'canberra', u'embassi', u'open'] [u'israel', u'downplay', u'meet', u'hama'] [u'isra', u'soldier', u'kill', u'palestinian', u'milit'] [u'italian', u'race', u'shame', u'overshadow', u'uefa'] [u'jail', u'fatah', u'leader', u'palestinian'] [u'jone', u'blow', u'time', u'refere', u'talk'] [u'jone', u'break', u'commonwealth', u'record', u'melbourn'] [u'kalbarri', u'await', u'student', u'influx'] [u'bayley', u'eye', u'dutch', u'grudg', u'match'] [u'kilkenni', u'factori', u'caus', u'damag'] [u'labor', u'latham', u'rudd'] [u'langer', u'close', u'centuri'] [u'langer', u'lead', u'charg'] [u'langer', u'notch', u'aussi', u'build', u'total'] [u'langer', u'star', u'aussi', u'control'] [u'latham', u'expect', u'sack', u'conroy'] [u'latrob', u'name', u'tasmania', u'tidiest', u'town'] [u'liber', u'ask', u'explain', u'media', u'virus', u'plan'] [u'lightn', u'think', u'caus', u'nation', u'park'] [u'lion', u'scent', u'kangaroo', u'blood'] [u'littl', u'pebbl', u'face', u'assault', u'trial'] [u'locust', u'grind', u'aerial', u'display'] [u'long', u'term', u'care', u'disabl', u'review'] [u'profil', u'polic', u'help', u'control', u'schooli'] [u'maleni', u'resid', u'protest', u'woolworth'] [u'mandela', u'launch', u'anti', u'aid', u'concert', u'book'] [u'back', u'windi', u'ridicul', u'board'] [u'minist', u'reject', u'power', u'station', u'viabil', u'claim'] [u'minist', u'stay', u'papunya', u'disput'] [u'minist', u'beat', u'murray', u'flow'] [u'mobil', u'phone', u'boost', u'bellingen'] [u'moon', u'solv', u'earth', u'energi', u'crisi'] [u'mother', u'talk', u'realiti', u'teenag', u'pregnanc'] [u'myskina', u'stand', u'firm', u'sharapova', u'feud'] [u'natur', u'caus', u'fish', u'kill'] [u'armi', u'helicopt', u'undergo', u'test'] [u'board', u'member'] [u'gatton', u'look', u'forward', u'task'] [u'hospit', u'plan', u'draw', u'critic'] [u'nurs', u'accept', u'offer', u'hospit', u'workload'] [u'opposit', u'highlight', u'school', u'repair', u'woe'] [u'opposit', u'seek', u'resign', u'casino', u'boy'] [u'opsm', u'posit', u'remain', u'share'] [u'oversea', u'adopt', u'reach', u'year', u'high'] [u'pakistani', u'militari', u'find', u'sign', u'lade'] [u'pakistan', u'akhtar', u'optimist', u'australia', u'tour'] [u'palm', u'island', u'crisi', u'eas'] [u'pampl', u'take', u'halfway', u'lead'] [u'papua', u'earthquak', u'kill'] [u'papua', u'earthquak', u'kill'] [u'parliament', u'anti', u'kimberley', u'water', u'plan'] [u'peacock', u'recov', u'heart', u'surgeri'] [u'pedestrian', u'hurt', u'intersect', u'mishap'] [u'plan', u'continu', u'tree', u'supermarket'] [u'happi', u'meet', u'indigen', u'campaign', u'long'] [u'happi', u'meet', u'long'] [u'vow', u'hardi', u'meet', u'legal', u'oblig'] [u'podiatrist', u'shortag', u'impact', u'older', u'peopl'] [u'polic', u'associ', u'highlight', u'offic', u'shortag'] [u'polic', u'blunder', u'see', u'school', u'email', u'child', u'porn'] [u'polic', u'chief', u'clarifi', u'meet', u'absenc'] [u'polic', u'identifi', u'shoot', u'suspect'] [u'polic', u'issu', u'danger', u'drug', u'warn'] [u'polic', u'reflect', u'troubl', u'free', u'schooli'] [u'polic', u'scrutinis', u'schooli', u'celebr'] [u'polic', u'unhappi', u'public'] [u'poor', u'hous', u'spread', u'rheumat', u'fever', u'studi'] [u'port', u'neill', u'power'] [u'promis', u'outlook', u'late', u'rice', u'crop'] [u'promis', u'start', u'tiger', u'look', u'good'] [u'protest', u'nurs', u'vote', u'hunter', u'health', u'plan'] [u'public', u'upset', u'ambul', u'reloc', u'process'] [u'consid', u'port', u'charg', u'submiss'] [u'communiti', u'australian', u'militari'] [u'parliament', u'end', u'year', u'jolli', u'note'] [u'racist', u'chant', u'overshadow', u'lazio', u'draw'] [u'racv', u'question', u'speed', u'camera', u'accuraci'] [u'remot', u'hous', u'cost'] [u'report', u'highlight', u'hous', u'shortcom'] [u'research', u'tackl', u'holi', u'grail', u'code'] [u'research', u'highlight', u'biodivers', u'dampier'] [u'resourc', u'stock', u'lead', u'market', u'high'] [u'restrict', u'lift', u'ukrain', u'channel'] [u'rioter', u'burn', u'palm', u'polic', u'station'] [u'rise', u'dollar', u'cut', u'export', u'margin'] [u'rise', u'temperatur', u'rais', u'fear'] [u'road', u'upgrad', u'need', u'sugar', u'industri', u'deregul'] [u'russia', u'franc', u'storm', u'final'] [u'samarra', u'bomb', u'attack', u'kill', u'wind'] [u'schoolgirl', u'killer', u'parol', u'revok'] [u'schooli', u'celebr', u'troubl', u'free'] [u'schooli', u'urg', u'stay', u'behav'] [u'seafood', u'industri', u'critic', u'reef', u'closur'] [u'second', u'legionnair', u'settlement', u'approv'] [u'second', u'suspect', u'kill', u'venezuela', u'bomb', u'probe'] [u'secur', u'guard', u'charg', u'firearm', u'offenc'] [u'separatist', u'blow', u'line', u'soldier', u'injur'] [u'shire', u'back', u'resort', u'plan'] [u'sister', u'urg', u'murder', u'releas'] [u'smelli', u'blame', u'health', u'woe'] [u'spain', u'accus', u'guantanamo', u'style', u'detent'] [u'speargun', u'shoot', u'bring', u'suspend', u'jail', u'term'] [u'spirit', u'democraci', u'debat', u'eureka'] [u'state', u'territori', u'urg', u'disabl', u'care'] [u'state', u'urg', u'recommit', u'water', u'initi'] [u'streetscap', u'work', u'aim', u'boost', u'traffic', u'flow'] [u'student', u'effort', u'adorn', u'christma', u'card'] [u'swanbourn', u'school', u'suspici'] [u'tasmania', u'join', u'world', u'seed', u'program'] [u'technic', u'glitch', u'leav', u'public', u'dark'] [u'tender', u'seek', u'pump', u'station'] [u'test', u'vine', u'okay', u'class', u'wine'] [u'think', u'tank', u'want', u'warn', u'label'] [u'thousand', u'expect', u'kannamaroo', u'festiv'] [u'time', u'add', u'paedophil', u'sentenc'] [u'time', u'run', u'council', u'elect', u'vote'] [u'fish', u'limit', u'review'] [u'tourist', u'arduous', u'field'] [u'traffic', u'polic', u'investig', u'driverless'] [u'trucki', u'remind', u'interchang', u'limit'] [u'arrest', u'drug', u'bust'] [u'small', u'bomb', u'rock', u'lao'] [u'stab', u'liverpool', u'fight'] [u'uefa', u'probe', u'real', u'racism', u'claim'] [u'arrest', u'aid', u'hostag', u'releas'] [u'ukrain', u'opposit', u'support', u'surround'] [u'dollar', u'continu', u'slide'] [u'verdict', u'epilept', u'driver', u'serv'] [u'govt', u'adopt', u'inquiri', u'recommend'] [u'water', u'concern', u'flow', u'cotton', u'plan'] [u'water', u'fund', u'fight', u'delay', u'murray', u'project'] [u'westburi', u'hagley', u'bypass', u'disput', u'take', u'twist'] [u'woman', u'die', u'crash'] [u'woolworth', u'predict', u'profit', u'growth'] [u'yudhoyono', u'call', u'halt', u'aceh', u'violenc'] [u'charg', u'palm', u'island', u'riot'] [u'free', u'room', u'mari', u'joseph'] [u'aftershock', u'shake', u'papuan', u'provinc'] [u'concern', u'wait', u'list', u'prune'] [u'asian', u'minist', u'urg', u'howard', u'sign', u'treati'] [u'aussi', u'advanc', u'round', u'sunset', u'beach'] [u'aussi', u'massiv', u'total'] [u'australia', u'lag', u'onlin', u'geographi', u'quiz'] [u'australia', u'post', u'deni', u'rural', u'agenc', u'unviabl'] [u'baghdad', u'bomb', u'kill'] [u'bayley', u'crown', u'stellar', u'year', u'oppi'] [u'bird', u'see', u'greatest', u'pandem', u'risk'] [u'black', u'cap', u'face', u'mountain', u'challeng'] [u'black', u'cap', u'troubl', u'chase', u'begin'] [u'boy', u'bodi', u'lake'] [u'builder', u'consid', u'cross', u'train', u'apprentic'] [u'burma', u'prison', u'releas', u'complet', u'sourc'] [u'bushfir', u'sweep', u'hectar'] [u'bush', u'weigh', u'ireland', u'peac', u'process'] [u'china', u'approv', u'test', u'potenti', u'aid', u'vaccin'] [u'china', u'free', u'jail', u'dissid', u'earli'] [u'chines', u'polic', u'arrest', u'school', u'stab', u'suspect'] [u'chirac', u'urg', u'resumpt', u'ivori', u'coast', u'peac', u'talk'] [u'christma', u'parad', u'adopt', u'true', u'blue', u'theme'] [u'civic', u'rejuven', u'need', u'long', u'term', u'view', u'corbel'] [u'court', u'battl', u'loom', u'kazaa'] [u'cyclist', u'great', u'ocean', u'road'] [u'deceas', u'palm', u'island', u'man', u'famili', u'speak'] [u'depart', u'uphold', u'year', u'student', u'suspens'] [u'detain', u'yachtsmen', u'await', u'decis', u'fate'] [u'disgrac', u'bulgarian', u'face', u'olymp', u'expuls'] [u'elvi', u'live', u'canberra'] [u'england', u'tindal', u'battl'] [u'erupt', u'forc', u'island', u'flee'] [u'ansett', u'worker', u'renew', u'entitl', u'call'] [u'finit', u'fuel', u'threaten', u'life', u'know'] [u'destroy', u'power', u'transform'] [u'shanghai', u'shipment', u'darwin'] [u'fitzgibbon', u'bench', u'nation', u'crunch'] [u'flat', u'india', u'face', u'heat'] [u'flintoff', u'get', u'ring'] [u'secur', u'guard', u'kill', u'baghdad', u'attack'] [u'french', u'report', u'reach', u'hostag'] [u'garrett', u'collaps', u'sydney', u'beach'] [u'garrett', u'releas', u'hospit'] [u'general', u'advoc', u'bold', u'move', u'rout', u'terrorist'] [u'gilchrist', u'guid', u'australia'] [u'govern', u'deni', u'deal', u'driver', u'train'] [u'govt', u'rule', u'fish', u'quota', u'compens'] [u'group', u'say', u'mental', u'health', u'servic', u'miss', u'third'] [u'gulpilil', u'honour', u'australian', u'year'] [u'hanson', u'quit', u'short', u'cours', u'campaign'] [u'helicopt', u'ground', u'hamper', u'locust', u'fight'] [u'wit', u'seek'] [u'hospit', u'staff', u'treat', u'follow', u'chemic', u'spill'] [u'human', u'societi', u'seek', u'measur', u'protect'] [u'lift', u'ganguli'] [u'iran', u'say', u'honour', u'enrich', u'suspens'] [u'iraqi', u'parti', u'push', u'elect', u'delay'] [u'island', u'leader', u'prevent', u'riot', u'beatti'] [u'jail', u'fatah', u'leader'] [u'judg', u'beatl', u'esqu', u'rule', u'anger', u'famili'] [u'juventus', u'club', u'doctor', u'jail', u'dope'] [u'landmark', u'risk', u'love', u'death'] [u'langer', u'hit', u'doubl'] [u'langer', u'hit', u'doubl', u'aussi', u'build', u'total'] [u'langer', u'play', u'hayden', u'walk'] [u'leisel', u'set', u'commonwealth', u'record'] [u'lenton', u'take', u'fourth'] [u'lifesav', u'volunt', u'patrol'] [u'drown', u'perth', u'beach'] [u'martial', u'art', u'spar', u'golf', u'china', u'olymp'] [u'melbourn', u'win', u'head', u'yarra'] [u'motorcyclist', u'kill', u'collis'] [u'muslim', u'lifestyl', u'channel', u'launch'] [u'nauru', u'million', u'windfal'] [u'record', u'icon', u'pianist', u'unearth'] [u'ningaloo', u'marin', u'park', u'extend'] [u'nurs', u'aim', u'increas', u'organ', u'donat'] [u'price', u'stabilis', u'suppli', u'fear', u'remain'] [u'organ', u'report', u'card', u'predict', u'growth'] [u'pacif', u'student', u'celebr', u'homebush'] [u'palestinian', u'dismantl', u'death', u'group', u'militia'] [u'palm', u'island', u'help', u'identifi', u'rioter'] [u'pampl', u'hold', u'slender', u'aust', u'open', u'lead'] [u'polic', u'seek', u'help', u'miss'] [u'polic', u'seek', u'semi', u'trailer', u'fatal', u'accid'] [u'polic', u'suggest', u'island', u'riot', u'plan'] [u'polic', u'underestim', u'palm', u'island', u'crisi'] [u'rann', u'announc', u'health', u'boost'] [u'research', u'herald', u'recycl', u'water'] [u'resid', u'ask', u'prepar', u'plan', u'earli'] [u'riot', u'plan', u'palm', u'leader'] [u'govt', u'consid', u'energi', u'summit'] [u'schoolgirl', u'killer', u'abl', u'appeal', u'parol', u'decis'] [u'schooli', u'behaviour', u'win', u'prais'] [u'schooli', u'secur', u'satisfi', u'attack', u'victim', u'father'] [u'senat', u'urg', u'join', u'long', u'walk'] [u'senat', u'urg', u'join', u'reconcili', u'walk'] [u'senat', u'urg', u'prong', u'approach', u'health', u'care'] [u'korea', u'welcom', u'iaea', u'rule', u'atom', u'experi'] [u'south', u'african', u'jail', u'year', u'coup'] [u'sport', u'club', u'investig', u'poki', u'encourag'] [u'sprinter', u'prepar', u'queanbeyan', u'gift'] [u'steadi', u'pampl', u'hold', u'australian', u'open', u'lead'] [u'stiffer', u'fin', u'like', u'driver', u'mobil'] [u'student', u'sing', u'pink', u'floyd', u'chase', u'royalti'] [u'survey', u'deep', u'confirm', u'border'] [u'suspici', u'damag', u'factori'] [u'ferri', u'chief', u'confid', u'profit'] [u'tasmanian', u'bankruptci'] [u'teenag', u'crash', u'driver', u'blood', u'alcohol', u'limit'] [u'road', u'accid'] [u'tourism', u'award', u'reflect', u'queensland', u'divers'] [u'tourist', u'town', u'celebr', u'birthday'] [u'tragic', u'tale', u'win', u'inaugur', u'indigen', u'write', u'award'] [u'kill', u'light', u'plane', u'crash'] [u'ukrain', u'parliament', u'debat', u'disput', u'elect'] [u'ukrain', u'presidenti', u'contend', u'meet', u'mediat'] [u'ukrain', u'opposit', u'leader', u'push', u'fresh', u'vote'] [u'ukrain', u'call', u'mass', u'protest'] [u'ukrainian', u'candid', u'renounc', u'violenc'] [u'ukrainian', u'polic', u'join', u'protest'] [u'univers', u'music', u'trial', u'digit', u'servic'] [u'urg', u'review', u'foreign', u'suspect', u'detent'] [u'urin', u'caus', u'bridg', u'collaps'] [u'ambassador', u'stick', u'januari', u'iraq', u'poll', u'date'] [u'captur', u'insurg', u'suspect', u'south', u'baghdad'] [u'desert', u'releas', u'japanes', u'prison'] [u'stock', u'edg', u'higher', u'trade'] [u'visit', u'media', u'urg', u'expos', u'lao', u'right', u'abus'] [u'polic', u'offic', u'kill', u'smash'] [u'welsh', u'massacr', u'hapless', u'japan'] [u'wildcat', u'lose', u'croc'] [u'worker', u'stumbl', u'decompos', u'bodi'] [u'approv', u'trade', u'sanction'] [u'zimmer', u'break', u'backstrok', u'record'] [u'abba', u'frontrunn', u'replac', u'arafat'] [u'actor', u'vanessa', u'redgrav', u'launch', u'polit', u'parti'] [u'adventur', u'hillari', u'object', u'road'] [u'airlin', u'reconsid', u'freight', u'servic'] [u'aqsa', u'brigad', u'endors', u'abba', u'palestinian'] [u'ambul', u'servic', u'say', u'assault', u'pressur'] [u'anglican', u'urg', u'eas', u'critic'] [u'anniversari', u'parti', u'celebr', u'liber', u'success'] [u'asean', u'member', u'urg', u'tourist'] [u'asean', u'want', u'burma', u'membership', u'strip'] [u'aussi', u'hussein', u'lose', u'titl', u'fight'] [u'aussi', u'turn', u'heat'] [u'ballarat', u'crash', u'take', u'road', u'toll'] [u'barca', u'extend', u'spanish', u'lead'] [u'beach', u'drown', u'prompt', u'summer', u'warn'] [u'beatti', u'tour', u'palm', u'island'] [u'birdse', u'wed', u'dress', u'featur', u'darwin'] [u'black', u'cap'] [u'bok', u'dismantl', u'woeful', u'scot'] [u'arrow', u'smuggl', u'mobil', u'phone'] [u'breaker', u'snap', u'lose', u'streak', u'lightn', u'strike'] [u'bushland', u'spark', u'murder', u'investig'] [u'busi', u'leader', u'regular', u'darwin', u'trade'] [u'canadian', u'activist', u'polar', u'bear', u'export'] [u'carter', u'gun', u'french', u'black', u'romp'] [u'chelsea', u'gear'] [u'colombia', u'reveal', u'bush', u'assassin', u'plot'] [u'conroy', u'head', u'latham', u'apolog'] [u'cord', u'blood', u'stem', u'cell', u'cure', u'paralysi'] [u'costello', u'look', u'forward', u'long', u'meet'] [u'costello', u'promis', u'look', u'long'] [u'council', u'test', u'park', u'death'] [u'crafti', u'cassano', u'inspir', u'resurg', u'roma'] [u'cyclist', u'tackl', u'rid', u'toughest'] [u'darwin', u'convent', u'centr', u'work', u'begin', u'march'] [u'disabl', u'need', u'network', u'care'] [u'downer', u'expect', u'progress', u'asian', u'free', u'trade'] [u'driver', u'warn', u'watch', u'grain', u'vehicl'] [u'earthquak', u'let', u'volcano', u'blow', u'steam'] [u'edmiston', u'lead', u'final', u'aussi', u'charg', u'pool'] [u'england', u'teach', u'pain', u'lesson', u'say', u'robinson'] [u'explos', u'trap', u'chines'] [u'father', u'die', u'plane', u'crash'] [u'chang', u'victorian', u'council', u'elect'] [u'fleme', u'lead', u'fight'] [u'foresti', u'union', u'consid', u'blacklist', u'labor'] [u'frontbench', u'criticis', u'elect'] [u'rescu', u'china', u'explos'] [u'french', u'polynesia', u'hold', u'elect'] [u'girl', u'repeat', u'sexual', u'assault'] [u'gold', u'coast', u'athlet', u'shine', u'ironman'] [u'govt', u'deni', u'asian', u'tie', u'risk'] [u'govt', u'flag', u'possibl', u'trawl', u'fisheri', u'restructur'] [u'govt', u'pledg', u'rural', u'sight', u'hear'] [u'green', u'propos', u'hardi', u'share', u'levi'] [u'hike', u'counter', u'product', u'costello'] [u'hayden', u'reach', u'mileston', u'fourth', u'year'] [u'hostel', u'upgrad', u'improv', u'youth', u'servic'] [u'weather', u'spark', u'season', u'warn'] [u'hous', u'sector', u'predict', u'solid', u'growth'] [u'hurst', u'prove', u'ironman'] [u'india', u'south', u'africa', u'despit', u'kalli'] [u'indigen', u'leader', u'funer', u'prompt', u'uluru', u'closur'] [u'indonesian', u'ralli', u'fallujah', u'assault'] [u'indonesian', u'troop', u'kill', u'rebel', u'aceh', u'militari'] [u'iraqi', u'powerbrok', u'reject', u'elect', u'delay'] [u'iraq', u'raid', u'suspect', u'insurg'] [u'ireland', u'accus', u'argentina', u'player', u'goug'] [u'japan', u'win', u'back', u'secur', u'council'] [u'kangaroo', u'romp', u'seri'] [u'kangaroo', u'punish', u'patriot', u'punter', u'purs'] [u'kiwi', u'fight', u'warn', u'vettori'] [u'lenton', u'neethl', u'swimmer', u'meet'] [u'lonard', u'claim', u'australian', u'open', u'titl'] [u'lonard', u'take', u'control', u'australian', u'open'] [u'macklin', u'confid', u'labor', u'feud'] [u'die', u'truck', u'smash'] [u'melbourn', u'ukrainian', u'protest', u'elect', u'result'] [u'mexican', u'polic', u'chief', u'fire', u'agent', u'lynch'] [u'motorcycl', u'gunman', u'kill', u'philippin', u'photojournalist'] [u'murali', u'clear', u'resum', u'train'] [u'muslim', u'centr', u'offer', u'educ', u'social', u'activ'] [u'myilli', u'point', u'resid', u'maintain', u'develop', u'protest'] [u'myskina', u'keep', u'russian', u'hop', u'aliv'] [u'zealand', u'allow', u'minor', u'crimin', u'buri'] [u'beef', u'water', u'polic'] [u'mark', u'anniversari', u'antarct', u'plane', u'disast'] [u'ogara', u'seal', u'gasp', u'ireland'] [u'opposit', u'rais', u'concern', u'hospit', u'procedur'] [u'pacemen', u'australia', u'power', u'posit'] [u'pakistan', u'ban', u'hurt', u'public'] [u'palestinian', u'hold', u'legisl', u'poll', u'abba'] [u'palm', u'resid', u'criticis', u'polic', u'tactic'] [u'parisian', u'march', u'domest', u'violenc'] [u'plane', u'search', u'fail', u'miss'] [u'polic', u'deni', u'heavi', u'hand', u'approach', u'palm'] [u'polic', u'hunt', u'arm', u'robber'] [u'polic', u'investig', u'offic', u'death', u'smash'] [u'polic', u'investig', u'overnight', u'road', u'accid'] [u'policeman', u'kill', u'colleagu', u'kashmir'] [u'pope', u'return', u'steal', u'relic', u'ecumen', u'orthodox'] [u'port', u'arthur', u'walk', u'heritag', u'tourism', u'tightrop'] [u'rain', u'chanc', u'zealand'] [u'crescent', u'fight', u'offer'] [u'research', u'build', u'case', u'aneurysm', u'screen'] [u'research', u'earli', u'intervent', u'scheme'] [u'rise', u'dollar', u'hit', u'wool', u'produc'] [u'rival', u'camp', u'discuss', u'ukrainian', u'polit', u'crisi'] [u'robinson', u'win', u'queanbeyan', u'gift'] [u'rollerblad', u'compens', u'uphold'] [u'rspca', u'applaud', u'effort', u'livestock', u'heat', u'stress'] [u'float', u'marin', u'protect', u'blueprint'] [u'sar', u'vaccin', u'trial', u'near', u'complet'] [u'saudi', u'author', u'kill', u'suspect', u'milit'] [u'scienc', u'academi', u'seek', u'recherch', u'protect'] [u'senat', u'step', u'push', u'mandatori', u'class'] [u'sharon', u'abba', u'readi', u'meet'] [u'sixer', u'wildcat', u'share', u'second', u'spot'] [u'small', u'busi', u'advocaci', u'chang', u'good', u'sign'] [u'sorenstam', u'birdi', u'cost', u'scott', u'dear'] [u'speed', u'train', u'kill', u'central', u'india'] [u'spong', u'fish', u'bring', u'cultur'] [u'studi', u'collat', u'bird', u'impact', u'crop'] [u'sudan', u'lift', u'restrict', u'north', u'darfur'] [u'swiss', u'firefight', u'kill', u'park', u'collaps'] [u'tamil', u'tiger', u'threaten', u'violenc', u'deadlock'] [u'busi', u'welcom', u'plan', u'workplac', u'chang'] [u'tasmania', u'celebr', u'year', u'music'] [u'outlin', u'sport', u'spend'] [u'teenag', u'face', u'excav', u'damag', u'charg'] [u'teen', u'arrest', u'schooli', u'festiv'] [u'tidbinbilla', u'come', u'life'] [u'tight', u'budget', u'increas', u'wait', u'list', u'surgeon'] [u'toad', u'tip', u'indigen', u'food', u'sourc'] [u'trade', u'bloc', u'deal', u'benefit', u'busi'] [u'tradit', u'power', u'fuel', u'aid', u'epidem'] [u'parramatta', u'jailbreak'] [u'typhoon', u'flood', u'kill', u'vietnam'] [u'minist', u'blunkett', u'deni', u'fast', u'track', u'visa'] [u'ukrain', u'crisi', u'talk', u'stall', u'say', u'outgo'] [u'ukrainian', u'declar', u'vote', u'invalid'] [u'ukrainian', u'parliament', u'leader', u'propos', u'declar'] [u'coast', u'guard', u'battl', u'spill'] [u'forc', u'work', u'saddam', u'commando'] [u'vietnam', u'flood', u'toll', u'rise'] [u'govt', u'announc', u'smoke', u'ban'] [u'wallabi', u'twickenham', u'thriller'] [u'mart', u'warn', u'overshadow', u'holiday', u'sale', u'figur'] [u'walsh', u'hawaii', u'punter', u'stump'] [u'smoke', u'win', u'wide', u'prais'] [u'water', u'polic', u'upgrad', u'terror', u'fight'] [u'quit', u'meet', u'mugab', u'warn', u'england'] [u'quit', u'tour', u'meet', u'mugab', u'warn'] [u'whale', u'dolphin', u'coast'] [u'woolmer', u'talk', u'pakistan', u'chanc', u'australia'] [u'inject', u'generat', u'plant', u'plan'] [u'academ', u'question', u'age', u'report'] [u'water', u'restrict', u'stay'] [u'aggress', u'sehwag', u'lead', u'indian', u'repli'] [u'aid', u'awar', u'put', u'focus', u'women'] [u'albanes', u'urg', u'union', u'join', u'forestri', u'debat'] [u'albani', u'long', u'wait', u'dentist', u'near'] [u'algal', u'bloom', u'pose', u'danger', u'health', u'dept'] [u'angri', u'scene', u'palm', u'court', u'hear'] [u'anim', u'activist', u'want', u'live', u'like'] [u'arafat', u'death', u'certif', u'prompt', u'complaint'] [u'arch', u'rival', u'clash', u'leagu'] [u'asian', u'leader', u'press', u'aust', u'secur', u'pact'] [u'aussi', u'open', u'embrac', u'asia'] [u'aussi', u'build', u'lead', u'lose', u'open'] [u'aussi', u'massiv', u'total'] [u'australia', u'verg', u'clean', u'sweep'] [u'aust', u'share', u'record', u'high'] [u'award', u'recognis', u'whitsunday', u'tourism'] [u'backpack', u'face', u'deport', u'anzac'] [u'beatti', u'highlight', u'china', u'export', u'import'] [u'bell', u'guid', u'england', u'comfort'] [u'bendigo', u'colleg', u'energis', u'win', u'way'] [u'black', u'cap', u'stumbl', u'defeat'] [u'black', u'cap', u'deep', u'troubl'] [u'black', u'cap', u'stumbl', u'defeat'] [u'blaze', u'rip', u'hectar', u'bushland'] [u'blaze', u'affect', u'recycl', u'collect'] [u'bodi', u'river', u'miss', u'parti', u'goer'] [u'bok', u'domin', u'award'] [u'bowditch', u'upbeat', u'australian'] [u'british', u'home', u'secretari', u'deni', u'abus', u'posit'] [u'brogden', u'say', u'plan', u'water', u'polic', u'upgrad'] [u'break', u'hill', u'woman', u'die', u'crash'] [u'broom', u'celebr', u'histori'] [u'bull', u'start', u'steadili', u'tiger'] [u'bushrang', u'chang', u'warrior', u'clash'] [u'effort', u'boost', u'indigen', u'job'] [u'boost', u'age', u'care', u'accommod'] [u'cheaper', u'foreign', u'prawn', u'forc', u'market', u'rethink'] [u'chile', u'compens', u'tortur', u'victim'] [u'china', u'coal', u'blast', u'kill'] [u'coff', u'water', u'polic', u'boost'] [u'communiti', u'rememb', u'chopper', u'crash', u'victim'] [u'continu', u'growth', u'predict', u'hous', u'sector'] [u'councillor', u'say', u'local', u'snub', u'year'] [u'coupl', u'skin', u'tiger', u'scott'] [u'croc', u'coach', u'consid', u'line', u'chang'] [u'dogfight', u'skill', u'display'] [u'dollar', u'rise', u'hit', u'export', u'costello', u'say'] [u'doubt', u'cast', u'riverland', u'cotton', u'industri'] [u'downer', u'back', u'ukrain', u'protest'] [u'downer', u'meet', u'iraqi', u'ambassador'] [u'earthquak', u'hit', u'japan', u'northern', u'island'] [u'elect', u'cast', u'doubt', u'tourist', u'tramway', u'plan'] [u'emerg', u'servic', u'confid', u'season', u'near'] [u'escap', u'ladder', u'scale', u'prison', u'wall'] [u'eurobodalla', u'shire', u'newslett'] [u'extinct', u'fear', u'hold', u'fli'] [u'farmer', u'urg', u'prevent', u'livestock', u'theft'] [u'fear', u'hunger', u'strike', u'detaine'] [u'fear', u'smoke', u'hurt', u'region', u'pub'] [u'govt', u'threaten', u'forc', u'mental', u'health'] [u'fenc', u'farmer', u'quoll'] [u'kill', u'iraq', u'death', u'triangl', u'oper'] [u'fleme', u'face', u'test', u'realiti'] [u'fluctuat', u'price', u'rockmelon', u'grower'] [u'minist', u'head', u'asbesto', u'task', u'forc'] [u'guilti', u'bash', u'murder'] [u'french', u'hostag', u'iraq', u'good', u'spirit', u'report'] [u'fume', u'hamper', u'rescu', u'china'] [u'fund', u'bring', u'cool', u'school', u'plan', u'closer'] [u'furnac', u'problem', u'cost', u'onesteel'] [u'geraldton', u'join', u'graffiti', u'clean', u'scheme'] [u'gerrard', u'set', u'sight', u'premiership', u'surg'] [u'girl', u'claim', u'teacher', u'cover', u'gang', u'rape'] [u'govt', u'extend', u'darwin', u'waterfront', u'develop'] [u'govt', u'industri', u'forecast', u'trade', u'rout', u'success'] [u'govt', u'outlin', u'mine', u'buffer', u'zone', u'chang'] [u'govt', u'ask', u'murray', u'settl', u'water'] [u'govt', u'say', u'redfern', u'redevelop', u'forc'] [u'grain', u'farmer', u'learn', u'contamin', u'test'] [u'grass', u'spark', u'burn', u'warn'] [u'green', u'leader', u'back', u'region', u'fund', u'inquiri'] [u'gundaroo', u'post', u'offic', u'close'] [u'heart', u'break', u'ranger'] [u'high', u'hop', u'underground', u'reticul', u'trial'] [u'howard', u'govt', u'ask', u'help', u'fund', u'schooli'] [u'howard', u'say', u'asian', u'trade', u'aggress', u'separ'] [u'hurst', u'happi', u'ironman', u'qualifi'] [u'illeg', u'worker', u'detain', u'immigr', u'raid'] [u'imagist', u'artist', u'paschk', u'die'] [u'inter', u'fight', u'stall', u'juventus'] [u'iran', u'withdraw', u'nuclear', u'research', u'exempt', u'demand'] [u'isra', u'barrier', u'west', u'bank', u'land'] [u'isra', u'hit', u'gaza', u'strip'] [u'topsi', u'turvi', u'north', u'south', u'debat'] [u'ivori', u'coast', u'want', u'franc', u'world', u'court'] [u'jail', u'sentenc', u'child', u'abus', u'suspend'] [u'jordanian', u'crown', u'princ', u'strip', u'titl'] [u'kazaa', u'accus', u'global', u'music', u'piraci'] [u'labor', u'plan', u'region', u'fund', u'inquiri'] [u'landmin', u'summit', u'open', u'kenya'] [u'latham', u'apologis', u'labor', u'disun'] [u'lee', u'seek', u'windsor', u'alleg', u'probe'] [u'limeston', u'quarri', u'get', u'leas', u'life'] [u'liverpool', u'mellor', u'floor', u'arsenal'] [u'live', u'desert', u'boost', u'sculptur', u'number'] [u'lobbi', u'group', u'question', u'student', u'work', u'hour', u'plan'] [u'maher', u'hit', u'bull', u'control'] [u'maher', u'star', u'bull', u'tiger'] [u'jail', u'shoot', u'truck'] [u'mayor', u'attack', u'resourc', u'takeov', u'plan'] [u'medic', u'school', u'open'] [u'melbourn', u'line', u'formula', u'showcas'] [u'melbourn', u'secur', u'guard', u'die', u'shoot'] [u'minist', u'admit', u'progress', u'slow', u'indigen', u'justic'] [u'mitsubishi', u'pleas', u'plant'] [u'mother', u'visit', u'drug', u'accus', u'bali'] [u'dismiss', u'govt', u'palm', u'island', u'plan'] [u'predict', u'cut', u'polic', u'number'] [u'rule', u'quit', u'labor', u'reef', u'plan'] [u'ousley', u'blaze', u'immedi', u'threat'] [u'myskina', u'lead', u'russia', u'titl'] [u'nation', u'park', u'expans', u'plan', u'consider'] [u'needi', u'bank', u'gambier', u'food', u'facil'] [u'council', u'speak', u'public', u'hous', u'tenant'] [u'face', u'join', u'bendigo', u'council'] [u'technolog', u'allow', u'polic', u'come', u'face', u'face'] [u'restrict', u'plan', u'plate', u'driver'] [u'nrma', u'flag', u'challeng', u'driver', u'restrict'] [u'alert', u'ahead', u'scorcher'] [u'health', u'urg', u'region', u'doctor', u'plan'] [u'opposit', u'say', u'plate', u'curfew', u'unfair'] [u'nurs', u'student', u'clinic', u'experi'] [u'trap', u'china', u'blast'] [u'pair', u'walk', u'uninjur', u'chopper', u'crash'] [u'pakistan', u'test', u'nuclear', u'capabl', u'missil'] [u'palm', u'island', u'face', u'court'] [u'perth', u'beach', u'clear', u'alga', u'dissip'] [u'organis', u'confid', u'cours', u'readi'] [u'piggeri', u'protest', u'prompt', u'polic', u'presenc'] [u'head', u'asean'] [u'polic', u'probe', u'alic', u'spring', u'death'] [u'polic', u'probe', u'drink', u'spike', u'report'] [u'polic', u'probe', u'warragul', u'shop', u'blaze'] [u'polic', u'knowledg', u'onlin', u'crime'] [u'polic', u'unhappi', u'drink', u'driver'] [u'politician', u'tribut', u'janin', u'hain'] [u'pont', u'prolong', u'kiwi', u'agoni'] [u'poor', u'harvest', u'outlook', u'wimmera', u'farmer'] [u'public', u'urg', u'season', u'readi'] [u'push', u'citrus', u'diseas', u'agreement'] [u'real', u'crush', u'levant', u'second', u'half', u'salvo'] [u'rescuer', u'herd', u'surviv', u'whale', u'dolphin'] [u'rescuer', u'headway', u'whale', u'dolphin', u'rescu'] [u'rescu', u'worker', u'save', u'beach', u'whale'] [u'resid', u'urg', u'cyclon', u'awar'] [u'richardson', u'lehmann', u'adelaid', u'slowdown'] [u'william', u'bush', u'centr', u'propon', u'undet'] [u'roadsid', u'bomb', u'kill', u'samarra'] [u'robert', u'give', u'birth', u'twin'] [u'scientist', u'investig', u'whale', u'dolphin'] [u'scientist', u'track', u'footprint', u'thought'] [u'search', u'find', u'miss', u'group', u'safe'] [u'second', u'opinion', u'seek', u'palm', u'death'] [u'second', u'report', u'releas', u'fatal', u'plane', u'crash'] [u'second', u'whale', u'strand', u'report'] [u'second', u'yulara', u'resort', u'see', u'possibl'] [u'secur', u'guard', u'shoot', u'club', u'robberi'] [u'senat', u'candid', u'face', u'traffic', u'offenc'] [u'seventi', u'job', u'smorgon', u'steel', u'close', u'plant'] [u'sharp', u'spot', u'horticultur', u'threat'] [u'small', u'busi', u'remain', u'upbeat', u'survey'] [u'soar', u'deficit', u'econom', u'growth'] [u'speaker', u'support', u'broadcast', u'parliament', u'onlin'] [u'student', u'escap', u'injuri', u'crash'] [u'student', u'work', u'cap', u'concern', u'youth', u'group'] [u'studi', u'highlight', u'weighti', u'problem'] [u'stun', u'gun', u'palm', u'arrest'] [u'sudan', u'expel', u'repres', u'group'] [u'suicid', u'bomber', u'kill', u'iraq'] [u'swiss', u'voter', u'stem', u'cell'] [u'tabcorp', u'rid', u'melbourn', u'race', u'carniv', u'success'] [u'takeaway', u'hold', u'spark', u'plea', u'wit'] [u'talk', u'fail', u'resolv', u'rail', u'problem'] [u'swim', u'coach', u'hold', u'birchip', u'clinic'] [u'train', u'driver', u'charg', u'fail', u'suppli', u'breath'] [u'ukrain', u'rift', u'widen', u'parti', u'await', u'court', u'decis'] [u'ukrainian', u'court', u'conven', u'poll', u'crisi'] [u'union', u'upbeat', u'rail', u'talk'] [u'union', u'warn', u'action', u'staff', u'shortag'] [u'command', u'rais', u'iraq', u'elect', u'doubt'] [u'valencia', u'crop', u'demand'] [u'vet', u'weed', u'affect', u'fewer', u'hors'] [u'victoria', u'introduc', u'valu', u'school', u'curriculum'] [u'voter', u'return', u'south', u'west', u'councillor'] [u'doubl', u'fin', u'sell', u'smoke', u'kid'] [u'govt', u'awar', u'femal', u'prison', u'problem'] [u'sledg', u'right', u'warn', u'inzamam'] [u'westfield', u'chief', u'deni', u'improp', u'conduct'] [u'whale', u'dolphin', u'mass', u'strand'] [u'windi', u'meet', u'train', u'camp', u'amid', u'contract'] [u'windsor', u'call', u'fund', u'inquiri'] [u'women', u'group', u'air', u'brothel', u'patron', u'fear'] [u'woodbridg', u'choos', u'bhupathi', u'partner'] [u'work', u'continu', u'draft', u'resourc', u'oper', u'plan'] [u'world', u'junior', u'champ', u'end', u'aust', u'open', u'spot'] [u'young', u'driver', u'road', u'rule'] [u'govt', u'consid', u'health', u'hotlin', u'privatis'] [u'black', u'vintag', u'novemb'] [u'submiss', u'consid', u'marin', u'park'] [u'back', u'gold', u'coast', u'medic', u'school'] [u'welcom', u'medic', u'school'] [u'anti', u'berlusconi', u'strike', u'crippl', u'itali'] [u'arnhem', u'land', u'doco', u'competit', u'sundanc'] [u'asic', u'probe', u'insur', u'broker', u'disclosur'] [u'aussi', u'close', u'victori'] [u'aussi', u'readi', u'akhtar', u'antic', u'pont', u'say'] [u'aussi', u'rule', u'roost'] [u'aussi', u'sweep', u'seri'] [u'australia', u'close', u'victori'] [u'australian', u'chariti', u'target', u'poverti', u'aid'] [u'australian', u'spend', u'earn'] [u'australia', u'pressur', u'neighbour', u'landmin'] [u'australia', u'unleash', u'seri'] [u'award', u'name', u'gippsland', u'firm', u'chees'] [u'bank', u'resourc', u'push', u'market', u'higher'] [u'bashir', u'speak', u'attack', u'court', u'tell'] [u'bichel', u'rearguard', u'tiger', u'bite'] [u'discoveri', u'possibl', u'great', u'australian'] [u'botox', u'botul', u'link', u'investig'] [u'brain', u'abnorm', u'link', u'hyperact', u'disord'] [u'brisban', u'church', u'notic', u'unconvent'] [u'bull', u'control', u'tiger', u'collaps'] [u'bundaberg', u'mater', u'expand', u'nose', u'throat', u'surgeri'] [u'busi', u'struggl', u'staff'] [u'murray', u'water', u'measur', u'consist'] [u'showground', u'certainti'] [u'canal', u'estat', u'plan', u'goondiwindi'] [u'canberran', u'prais', u'water', u'conserv'] [u'bomb', u'kill', u'seven', u'iraq'] [u'manufactur', u'urg', u'instal', u'impact'] [u'central', u'weather', u'predict', u'stabilis'] [u'chelsea', u'rich', u'unbal', u'soccer', u'say', u'newcastl'] [u'chemic', u'cach', u'fallujah', u'say'] [u'chile', u'tortur', u'victim', u'compens', u'lack'] [u'citrus', u'canker', u'clear', u'spark', u'inspect'] [u'club', u'meet', u'smoke', u'poki', u'impact'] [u'call', u'probe', u'transit', u'centr', u'sale'] [u'cold', u'freight', u'rail', u'servic', u'stay'] [u'congo', u'base', u'rebel', u'repeat', u'incurs', u'claim'] [u'propos', u'whale', u'rescu', u'plan'] [u'coron', u'rule', u'inquest', u'fisherman', u'death'] [u'council', u'continu', u'plan', u'certifi'] [u'court', u'hear', u'truck', u'stop', u'wrangl'] [u'despit', u'fall', u'price', u'remain', u'expens'] [u'detaine', u'hunger', u'strike', u'take', u'hospit'] [u'detent', u'centr', u'escap', u'avoid', u'penalti'] [u'driver', u'test', u'drug'] [u'drive', u'rule', u'amnesti', u'end', u'trucki'] [u'east', u'timor', u'expel', u'indonesian', u'immigr'] [u'electrolux', u'improv', u'safeti', u'effort'] [u'eureka', u'flag', u'senat', u'chamber'] [u'eureka', u'flag', u'canberra'] [u'expert', u'investig', u'onesteel', u'furnac', u'problem'] [u'extra', u'staff', u'lake', u'creek', u'meatwork'] [u'farmer', u'harvest', u'tip'] [u'farmer', u'warn', u'labour', u'relat'] [u'fear', u'hold', u'lake', u'futur'] [u'festiv', u'organis', u'regret', u'river', u'death'] [u'expert', u'monitor', u'wilder', u'fire'] [u'fleme', u'exasper', u'australia', u'domin'] [u'fli', u'doctor', u'servic', u'claim', u'victimis'] [u'soldier', u'acquit', u'murder', u'charg'] [u'french', u'expert', u'probe', u'plane', u'crash'] [u'french', u'polynesia', u'crisi', u'talk', u'suspend'] [u'fund', u'intersect'] [u'detent', u'fail', u'dent', u'kyi', u'spirit'] [u'garrett', u'work', u'health', u'scare'] [u'global', u'economi', u'weather', u'headwind', u'oecd'] [u'godzilla', u'stomp', u'walk', u'fame'] [u'govt', u'bank', u'partnership', u'tackl', u'public', u'hous'] [u'govt', u'defend', u'anderson', u'elector', u'handout'] [u'govt', u'industri', u'sponsor', u'studi', u'back', u'crop'] [u'govt', u'save', u'forest', u'labor', u'say'] [u'govt', u'reject', u'claim', u'fast', u'rail', u'budget', u'track'] [u'govt', u'releas', u'detail', u'educ', u'inquiri'] [u'govt', u'support', u'uranium', u'enrich', u'research'] [u'govt', u'forc', u'releas', u'hardi', u'file'] [u'govt', u'miss', u'log', u'deadlin'] [u'govt', u'restrict', u'union', u'right', u'entri'] [u'govt', u'spend', u'ghost', u'remov'] [u'govt', u'urg', u'support', u'women', u'justic'] [u'grain', u'compani', u'expand', u'perth', u'plant'] [u'grain', u'crop', u'forecast', u'spell'] [u'gregan', u'prais', u'giteau', u'wallabi', u'touch'] [u'group', u'deliveri', u'transport', u'accommod'] [u'gundaroo', u'posti'] [u'gunner', u'fight', u'warn', u'vieira'] [u'high', u'temperatur', u'prompt', u'total'] [u'hill', u'warn', u'compani', u'possibl', u'export'] [u'investig', u'identifi', u'type'] [u'hospit', u'offer', u'holiday', u'surgeri', u'assur'] [u'hotel', u'icon', u'close'] [u'howard', u'hail', u'histor', u'asian', u'trade', u'pact'] [u'howard', u'warm', u'asean', u'meet'] [u'india', u'launch', u'second', u'missil', u'test'] [u'intern', u'firm', u'search', u'bass', u'strait'] [u'iran', u'say', u'nuclear', u'freez', u'wont'] [u'iran', u'welcom', u'nuclear', u'watchdog', u'resolut'] [u'downturn', u'hit', u'monash'] [u'jail', u'releas', u'loom', u'arm', u'bandit'] [u'john', u'holland', u'win', u'green', u'bridg', u'contract'] [u'judg', u'reject', u'legal', u'action', u'liber', u'parti'] [u'katich', u'name', u'squad'] [u'kazaa', u'say', u'law', u'intent'] [u'labor', u'back', u'workplac', u'legisl'] [u'labor', u'stick', u'privat', u'school', u'fund', u'cut'] [u'landown', u'win', u'build', u'height', u'legal', u'challeng'] [u'landslip', u'worri', u'prompt', u'road', u'link', u'think'] [u'latham', u'call', u'greater', u'uniti'] [u'liber', u'seek', u'mandatori', u'weapon', u'check'] [u'literaci', u'inquiri', u'attack', u'teacher'] [u'demand', u'good', u'news', u'north', u'west'] [u'log', u'blame', u'philippin', u'flood', u'toll', u'rise'] [u'long', u'walk', u'short', u'agre', u'meet'] [u'lower', u'build', u'approv', u'sustain', u'costello'] [u'releas'] [u'manganes', u'promis', u'econom', u'boost'] [u'plead', u'guilti', u'child', u'porn', u'offenc'] [u'martin', u'defend', u'waterfront', u'develop', u'view'] [u'mass', u'whale', u'strand', u'north', u'island'] [u'mayor', u'back', u'year', u'mayor', u'term'] [u'melbourn', u'perth', u'argu', u'case', u'super', u'spot'] [u'mother', u'confid', u'daughter', u'bali', u'drug'] [u'eject', u'region', u'fund', u'stoush'] [u'fear', u'local', u'nurs', u'shortag'] [u'mysteri', u'tremor', u'shake', u'hervey'] [u'agenda', u'seek', u'reconcili', u'plan'] [u'newcastl', u'join', u'anti', u'bulli', u'scheme'] [u'newmont', u'execut', u'face', u'pollut', u'charg'] [u'servic', u'offer', u'drunken', u'dialler'] [u'shire', u'exmouth'] [u'korea', u'consid', u'nuclear', u'talk', u'import', u'china'] [u'nation', u'claim', u'bill', u'jone'] [u'norman', u'defend', u'open'] [u'norman', u'tip', u'scott', u'golf', u'great'] [u'northern', u'french', u'locat', u'choos', u'louvr'] [u'citi', u'healthier', u'bush'] [u'prepar', u'scorcher'] [u'remain', u'alert'] [u'busi', u'profit', u'survey'] [u'nude', u'photo', u'blacken', u'snow', u'white', u'reput'] [u'look', u'posit', u'asean', u'treati'] [u'oecd', u'predict', u'rate', u'rise', u'growth'] [u'food', u'program', u'alleg', u'annan'] [u'onesteel', u'work', u'whyalla', u'shutdown'] [u'time', u'lotteri', u'conman', u'hit', u'jackpot'] [u'opposit', u'endors', u'textil', u'tariff', u'reduct'] [u'opposit', u'quiz', u'otway', u'log', u'polici'] [u'pakistan', u'enshrin', u'musharraf', u'dual', u'role'] [u'philippin', u'storm', u'kill'] [u'plantat', u'firm', u'begin', u'blue', u'harvest'] [u'polic', u'appeal', u'palm', u'funer', u'calm'] [u'polic', u'continu', u'probe', u'boat', u'theft'] [u'polic', u'search', u'miss'] [u'polic', u'tell', u'steer', u'clear', u'palm', u'funer'] [u'polic', u'union', u'play', u'firearm'] [u'polit', u'crisi', u'ukrain', u'continu'] [u'pont', u'defend', u'team', u'tactic'] [u'post', u'mortem', u'channel'] [u'project', u'focus', u'communiti', u'base', u'counter'] [u'publican', u'work', u'smoke', u'law'] [u'public', u'ask', u'help', u'toad', u'number'] [u'public', u'remind', u'backyard', u'oblig'] [u'public', u'highway', u'upgrad', u'brief'] [u'public', u'health', u'servic', u'plan'] [u'push', u'breakaway', u'emerg', u'chopper', u'servic'] [u'question', u'rais', u'darl', u'anabranch', u'pipelin'] [u'question', u'rais', u'driver', u'train'] [u'rann', u'defend', u'child', u'protect', u'perform'] [u'realiti', u'clear', u'bestial'] [u'reconcili', u'australia', u'see', u'opportun'] [u'region', u'doubt', u'cast', u'parent', u'support', u'scheme'] [u'research', u'call', u'studi', u'hec', u'debt'] [u'research', u'highlight', u'pollut', u'heart', u'attack', u'link'] [u'retail', u'join', u'forc', u'trade', u'hour', u'fight'] [u'retail', u'trade', u'debat', u'rage'] [u'review', u'deliv', u'region', u'birth', u'concern'] [u'secur', u'sydney', u'airport', u'termin', u'space'] [u'richardson', u'win', u'battl', u'slow'] [u'ronaldinho', u'shevchenko', u'henri', u'tussl', u'fifa', u'award'] [u'erupt', u'dubbo', u'staff', u'sack'] [u'rspca', u'call', u'stiff', u'bait', u'penalti'] [u'rudd', u'urg', u'govt', u'embrac', u'asian', u'trade', u'deal'] [u'consid', u'test', u'driver', u'drug'] [u'school', u'name', u'alleg', u'rape', u'cover', u'case'] [u'school', u'ostracis', u'girl', u'rape', u'court', u'hear'] [u'school', u'decid', u'issu'] [u'screensav', u'spammer', u'sit'] [u'search', u'continu', u'miss'] [u'search', u'miss', u'aircraft', u'continu'] [u'search', u'rescu', u'whale'] [u'search', u'show', u'sign', u'rescu', u'whale'] [u'seismic', u'test', u'halt', u'urg', u'whale'] [u'senat', u'call', u'alcohol', u'inquiri'] [u'servic', u'commiss', u'cut', u'power', u'bill'] [u'indigen', u'cultur', u'centr', u'plan'] [u'shire', u'maintain', u'opposit', u'reef', u'boat', u'plan'] [u'shock', u'fall', u'retail', u'turnov', u'hit', u'aust', u'dollar'] [u'shop', u'centr', u'oppon', u'question'] [u'socceroo', u'assist', u'coach', u'join', u'hall', u'fame'] [u'south', u'african', u'rule', u'pave', u'marriag'] [u'south', u'head', u'north'] [u'specialist', u'slam', u'public', u'hospit', u'manag'] [u'special', u'law', u'target', u'drink', u'spike'] [u'stem', u'cell', u'procedur', u'offer', u'incontin', u'suffer'] [u'sudanes', u'refuge', u'receiv', u'specif', u'assist'] [u'exposur', u'infant', u'year', u'blame', u'skin'] [u'support', u'grow', u'region', u'fund', u'inquiri'] [u'support', u'march', u'player', u'reconcili', u'walk'] [u'survey', u'highlight', u'support', u'driver', u'drug', u'test'] [u'sydney', u'ferri', u'fare', u'rise'] [u'tiger', u'troubl', u'gabba'] [u'tiger', u'stumbl', u'earli', u'chase'] [u'shop', u'take', u'heart', u'council'] [u'tourist', u'attract'] [u'mental', u'ill', u'drug', u'add', u'list'] [u'ukrain', u'presid', u'elect', u'offer', u'rival', u'post'] [u'defend', u'anim', u'welfar', u'effort'] [u'black', u'hawk', u'helicopt', u'crash', u'kill', u'seven'] [u'dollar', u'firm', u'ahead', u'growth', u'data'] [u'move', u'closer', u'har', u'hydrogen', u'power'] [u'vandal', u'leav', u'trail', u'damag'] [u'polic', u'trial', u'drug', u'test', u'program'] [u'wallabi', u'play', u'franc', u'south', u'africa', u'winter'] [u'walter', u'smith', u'offer', u'scotland', u'coach'] [u'word', u'erupt', u'scienc', u'precinct'] [u'trucki', u'threaten', u'strike'] [u'stream', u'provid', u'see', u'vantag', u'point'] [u'western', u'power', u'look', u'lower', u'risk'] [u'whale', u'meat', u'menu', u'japanes', u'school'] [u'whale', u'review', u'begin'] [u'wildlif', u'shelter', u'face', u'uncertain', u'futur'] [u'windi', u'train', u'camp', u'delay', u'contract'] [u'work', u'begin', u'polic', u'station'] [u'wwii', u'carrier', u'pigeon', u'medal', u'auction'] [u'youth', u'feedback', u'seek', u'road', u'safeti'] [u'plea', u'return', u'larri', u'monkey'] [u'abbott', u'defend', u'chang', u'prosthesi', u'insur'] [u'abbott', u'put', u'onus', u'aid', u'prevent', u'individu'] [u'aborigin', u'parent', u'urg', u'particip'] [u'abort', u'drama', u'sweep', u'independ', u'film', u'award'] [u'ghraib', u'tortur', u'complaint', u'name', u'rumsfeld'] [u'roof', u'appeal', u'dismiss'] [u'afghan', u'hostag', u'taker', u'disband', u'ransom', u'disput'] [u'afghan', u'grant', u'perman', u'visa'] [u'alleg', u'peopl', u'smuggler', u'face', u'charg'] [u'alston', u'post', u'rais', u'opposit', u'hackl'] [u'alston', u'tip', u'high', u'commission'] [u'art', u'centr', u'site', u'announc'] [u'asbesto', u'awar', u'campaign', u'launch'] [u'asbesto', u'victim', u'unit', u'compo', u'fund'] [u'australia', u'formal', u'launch', u'asean', u'trade'] [u'aust', u'scheme', u'target', u'spammer'] [u'aust', u'win', u'invit', u'year', u'asean', u'summit'] [u'awesom', u'aussi', u'happi', u'share', u'say', u'bracewel'] [u'beatti', u'outlin', u'polici', u'mine'] [u'better', u'servic', u'reduc', u'abort', u'rate', u'say'] [u'billiton', u'esso', u'lose', u'profit'] [u'esso', u'longford', u'explos'] [u'boom', u'boat', u'industri', u'reach', u'high', u'water', u'mark'] [u'brain', u'scan', u'abl', u'catch', u'liar'] [u'british', u'win', u'court', u'fight', u'help', u'wife'] [u'buddhist', u'leader', u'hear', u'nepal', u'peac', u'talk', u'offer'] [u'budget', u'endang', u'sharon', u'coalit'] [u'builder', u'unconcern', u'hous', u'drop'] [u'bull', u'enforc', u'follow'] [u'bull', u'need', u'beat', u'tiger'] [u'bull', u'complet', u'rout', u'tiger'] [u'bushrang', u'rain', u'warrior', u'parad'] [u'busi', u'confid', u'rid', u'high', u'region'] [u'campaign', u'aim', u'fish', u'safeti', u'cours'] [u'canberra', u'school', u'recov', u'damag'] [u'canberra', u'student', u'oxford'] [u'chemic', u'scare', u'close', u'nestl', u'factori'] [u'china', u'confirm', u'kill', u'explos'] [u'china', u'presid', u'shake', u'hand', u'aid', u'patient'] [u'church', u'deacon', u'plead', u'guilti', u'child', u'charg'] [u'club', u'discuss', u'futur', u'amidst', u'smoke', u'poki'] [u'club', u'want', u'clear', u'outsid'] [u'consortium', u'buy', u'build'] [u'consum', u'spend', u'forecast', u'econom', u'growth'] [u'council', u'buy', u'karuah', u'waterfront', u'land'] [u'council', u'critic', u'marina', u'develop', u'beach', u'effort'] [u'council', u'delay', u'hotel', u'plan', u'talk'] [u'council', u'develop', u'decis', u'worri', u'resid'] [u'council', u'look', u'open', u'lake', u'entranc', u'soon'] [u'councillor', u'approv', u'shop', u'centr', u'plan'] [u'council', u'move', u'shellcov', u'tent', u'embassi'] [u'council', u'urg', u'film', u'hunter'] [u'countri', u'zone', u'reappear', u'draft'] [u'crew', u'battl', u'fire'] [u'darwin', u'highris', u'approv'] [u'defenc', u'dept', u'hire', u'account', u'team'] [u'dental', u'ray', u'help', u'detect', u'osteoporosi'] [u'detain', u'australian', u'sailor', u'lose', u'bail'] [u'devonport', u'brawl', u'nightclub', u'hour'] [u'diouf', u'ban', u'match', u'spit'] [u'disabl', u'worker'] [u'dissid', u'congreg', u'stand', u'baptism', u'sacrament'] [u'dollar', u'dip', u'follow', u'econom', u'outlook'] [u'downer', u'wont', u'press', u'tortur', u'report'] [u'driver', u'get', u'suspend', u'jail', u'term'] [u'drug', u'firm', u'defend', u'trial', u'children', u'care'] [u'time', u'toll', u'grain', u'grower'] [u'econom', u'growth', u'grind', u'year'] [u'elect', u'promis', u'inquiri', u'polit', u'motiv'] [u'emerg', u'declar', u'bushfir', u'lick', u'alectown'] [u'farmer', u'safeti', u'warn'] [u'farmer', u'unhappi', u'milk', u'price'] [u'farmer', u'urg', u'branch', u'tree', u'farm'] [u'farmer', u'write', u'support', u'seek', u'class', u'action'] [u'father', u'face', u'contempt', u'charg'] [u'feral', u'turtl', u'threaten', u'waterway'] [u'ferrero', u'count', u'clay', u'hold', u'roddick'] [u'french', u'regul', u'seek', u'pull', u'hezbollah', u'link'] [u'frustrat', u'farmer', u'form', u'lobbi', u'group'] [u'gangland', u'foe', u'move', u'jail'] [u'gibbon', u'back', u'region', u'fund', u'probe'] [u'busi', u'discuss', u'main', u'street', u'upgrad', u'plan'] [u'googl', u'complicit', u'chines', u'internet', u'control'] [u'govt', u'fund', u'geraldton', u'mental', u'health', u'boost'] [u'govt', u'urg', u'appoint', u'aborigin', u'educ', u'post'] [u'green', u'warn', u'politicis', u'terror', u'trial'] [u'gregan', u'back', u'perth', u'super', u'race'] [u'work', u'coincid', u'season', u'start'] [u'group', u'want', u'site', u'heritag', u'list'] [u'guantanamo', u'tortur', u'claim', u'check', u'ruddock'] [u'hama', u'boycott', u'palestinian', u'elect'] [u'heat', u'rise', u'continu'] [u'hick', u'father', u'lead', u'ballarat', u'eureka', u'walk'] [u'high', u'hop', u'return', u'christma', u'pageant'] [u'hollywood', u'star', u'john', u'barrymor', u'die'] [u'iaea', u'rule', u'south', u'korea', u'disgust', u'north'] [u'icrc', u'find', u'guantanamo', u'tactic', u'like', u'tortur', u'report'] [u'illawarra', u'hospit', u'wait', u'list', u'expect', u'grow'] [u'india', u'begin', u'trial', u'vaccin', u'human'] [u'indigen', u'australian', u'face', u'alarm', u'murder', u'risk'] [u'indigen', u'repres', u'stage', u'hunger', u'strike'] [u'indonesian', u'plane', u'crash', u'kill'] [u'kangaroo', u'surviv', u'scare'] [u'kangaroo', u'statesid', u'foray'] [u'korean', u'parent', u'birth', u'memori', u'gold'] [u'kouta', u'keep', u'blue', u'captainci'] [u'labor', u'accus', u'speaker', u'doubl', u'standard'] [u'lake', u'bennett', u'resid', u'reach', u'compens'] [u'lampard', u'fire', u'chelsea'] [u'lawyer', u'urg', u'caution', u'roadsid', u'drug', u'test'] [u'leak', u'cross', u'report', u'alleg', u'tortur'] [] [u'jail', u'life', u'murder', u'childhood', u'friend'] [u'serv', u'jail', u'term', u'despit', u'murder', u'acquitt'] [u'martin', u'keep', u'darwin', u'waterfront', u'land', u'valu'] [u'mater', u'oncolog', u'facil'] [u'mayor', u'sympathis', u'speed', u'limit', u'woe'] [u'lead', u'beach', u'death', u'toll'] [u'militiaman', u'jail', u'east', u'timor', u'attack'] [u'mincor', u'look', u'product', u'boost'] [u'mine', u'sector', u'welcom', u'govt', u'rehabilit', u'plan'] [u'minist', u'attack', u'council', u'coral', u'stanc'] [u'minist', u'offer', u'polic', u'number', u'assur'] [u'miss', u'tourist', u'safe'] [u'mitsubishi', u'tackl', u'public', u'percept', u'problem'] [u'nation', u'unhappi', u'limit', u'detail', u'toxic'] [u'navig', u'cours', u'tour'] [u'date', u'consid', u'gold', u'carniv'] [u'norwegian', u'rat', u'invad', u'sweden', u'town'] [u'danger', u'remain', u'high'] [u'opposit', u'attack', u'loom', u'releas'] [u'agre', u'sign', u'asian', u'aggress', u'treati'] [u'oecd', u'tip', u'limit', u'price', u'drop'] [u'olymp', u'champion', u'hamilton', u'sack'] [u'opposit', u'promis', u'bolster', u'youth', u'advisori'] [u'opposit', u'want', u'compulsori', u'driver', u'educ'] [u'pair', u'admit', u'conceal', u'murder'] [u'palm', u'island', u'claim', u'polic', u'harass'] [u'palm', u'payback', u'emot', u'talk'] [u'parliament', u'sack', u'ukrain', u'govern'] [u'patient', u'dravid', u'put', u'india', u'ahead'] [u'payback', u'warn', u'wake', u'palm', u'riot'] [u'disput', u'threaten', u'emerg', u'surgeri'] [u'pilot', u'face', u'compulsori', u'secur', u'check'] [u'plan', u'focus', u'sugar', u'industri', u'viabil'] [u'accus', u'ditch', u'emptiv', u'strike', u'polici'] [u'economi', u'shrink', u'report'] [u'polic', u'investig', u'alleg', u'goondiwindi', u'assault'] [u'polic', u'look', u'forward', u'driver', u'drug', u'test'] [u'polic', u'case', u'malle', u'driver', u'drug', u'test'] [u'polic', u'search', u'miss', u'tourist'] [u'pont', u'play', u'lee', u'waca', u'chanc'] [u'premier', u'reject', u'call', u'electr'] [u'profit', u'take', u'drag', u'ord', u'lower'] [u'properti', u'boom', u'drive', u'incom', u'earner'] [u'push', u'navi', u'boat', u'port', u'hedland', u'home'] [u'pyne', u'confid', u'costello'] [u'polic', u'consid', u'action', u'aborigin'] [u'polic', u'terroris', u'kid', u'aborigin'] [u'raid', u'illeg', u'immigr'] [u'rape', u'victim', u'contact', u'famili', u'court'] [u'refer', u'group', u'tackl', u'sexual', u'diseas'] [u'refuge', u'group', u'back', u'woomera', u'escap', u'rule'] [u'relat', u'riot', u'china', u'death'] [u'research', u'want', u'screen', u'mother'] [u'research', u'probe', u'link', u'teen', u'drink'] [u'resid', u'face', u'power', u'woe'] [u'resid', u'sussex', u'inlet'] [u'resid', u'urg', u'look', u'injur', u'eagl'] [u'resid', u'warn', u'prepar', u'bushfir', u'risk'] [u'revamp', u'black', u'face', u'barbarian'] [u'crew', u'assess', u'hunter', u'valley', u'bushfir'] [u'rogerson', u'suffer', u'possibl', u'dementia'] [u'romanian', u'offici', u'confirm', u'poll', u'result'] [u'rwanda', u'hint', u'congo', u'assault'] [u'school', u'settl', u'gang', u'rape', u'case'] [u'scotland', u'smith', u'manag'] [u'scott', u'eye', u'major'] [u'screensound', u'put', u'archiv'] [u'seed', u'solv', u'throwaway', u'phone', u'problem'] [u'senat', u'debat', u'aborigin', u'death', u'custodi'] [u'senat', u'seek', u'limit', u'ocean', u'nois', u'whale', u'sake'] [u'serbian', u'presid', u'surviv', u'assassin', u'attempt'] [u'shire', u'hold', u'xstrata', u'talk', u'amidst', u'takeov', u'fear'] [u'shop', u'centr', u'revamp', u'open'] [u'american', u'kill', u'afghan', u'plane', u'crash'] [u'skin', u'cancer', u'expert', u'urg', u'parent', u'protect'] [u'smoke', u'chang', u'caus', u'hotel', u'concern'] [u'soap', u'opera', u'small', u'screen'] [u'softwar', u'reconstruct', u'extinct', u'anim'] [u'respit', u'loom', u'amidst', u'rise', u'temperatur'] [u'south', u'west', u'rock', u'look', u'lifesav', u'tourism', u'boost'] [u'strong', u'wind', u'batter', u'coast'] [u'sunshin', u'shoot', u'victim', u'deliber', u'target'] [u'swan', u'wallabi', u'resolv', u'schedul', u'clash'] [u'tamworth', u'businessman', u'reject', u'windsor', u'latest'] [u'govt', u'help', u'dairi', u'industri', u'meet', u'target'] [u'teen', u'face', u'gang', u'rape', u'charg'] [u'telstra', u'ahead', u'sale'] [u'telstra', u'chief', u'leav', u'earli', u'payout'] [u'temperatur', u'rise', u'summer', u'scorcher'] [u'termit', u'forc', u'childcar', u'centr'] [u'terror', u'suspect', u'lawyer', u'condemn', u'jail', u'condit'] [u'thorp', u'name', u'nswiss', u'athlet', u'year'] [u'thousand', u'welcom', u'youth', u'game'] [u'tiger', u'fold', u'bull', u'press', u'victori'] [u'transport', u'fare', u'increas'] [u'treasur', u'search', u'budget', u'save'] [u'women', u'charg', u'island', u'riot'] [u'wound', u'melbourn', u'shoot'] [u'minist', u'criticis', u'guantanamo'] [u'ukrain', u'court', u'meet', u'elect', u'crisi'] [u'ukrain', u'parliament', u'vote', u'yanukovich', u'motion'] [u'underag', u'gambler', u'lose', u'casino'] [u'union', u'call', u'singl', u'offic', u'ambul', u'crew'] [u'union', u'urg', u'resolv', u'hospit', u'secur'] [u'panel', u'propos', u'criteria', u'legitim', u'militari'] [u'spot', u'suspect', u'rwandan', u'troop'] [u'kill', u'philippin', u'storm'] [u'homeland', u'secur', u'chief', u'resign'] [u'know', u'ghraib', u'abus', u'report'] [u'continu', u'struggl', u'rain', u'melbourn'] [u'govt', u'deliv', u'albani', u'legal', u'fund'] [u'destroy', u'iraq', u'health', u'report'] [u'warn', u'issu', u'northern', u'tableland', u'blaze'] [u'water', u'author', u'review'] [u'water', u'polic', u'crack', u'drunken', u'boati'] [u'protect', u'australian', u'costello'] [u'whale', u'autopsi', u'result', u'month', u'away'] [u'whale', u'dump', u'plan', u'anger', u'abalon', u'diver'] [u'whale', u'strand', u'link', u'quak'] [u'wife', u'jail', u'hire', u'hitman'] [u'wild', u'weather', u'move', u'coast'] [u'wilko', u'european', u'comeback'] [u'young', u'peopl', u'warn', u'mobil', u'phone', u'debt', u'risk'] [u'abba', u'find', u'peac', u'deal', u'possibl'] [u'journalist', u'blitz', u'broadcast', u'award'] [u'resid', u'urg', u'water', u'wise'] [u'traffic', u'climb', u'steepli'] [u'want', u'osteoporosi', u'drug', u'wide', u'avail'] [u'ambassador', u'steer', u'clear', u'decis', u'recherch'] [u'anderson', u'wont', u'face', u'region', u'fund', u'inquiri'] [u'armi', u'revis', u'soldier', u'heat', u'exhaust', u'figur'] [u'arson', u'hous'] [u'asbesto', u'fund', u'win', u'repriev'] [u'aust', u'polic', u'begin', u'patrol', u'capit'] [u'australian', u'consortium', u'buy', u'broadcast', u'busi'] [u'aust', u'skipper', u'charg', u'say', u'famili'] [u'aust', u'snooker', u'star', u'charg', u'assault'] [u'aust', u'sign', u'live', u'anim', u'trade', u'agreement'] [u'baghdad', u'mortar', u'attack', u'kill'] [u'barghouthi', u'palestinian', u'presid', u'wife'] [u'bashir', u'play', u'marriott', u'bomb', u'inmat'] [u'bashir', u'trial', u'hear', u'lade', u'messag'] [u'bashir', u'visit', u'militari', u'train', u'camp', u'court', u'hear'] [u'basketbrawl', u'player', u'face', u'polic', u'charg'] [u'bean', u'grower', u'financi', u'incent'] [u'beekeep', u'hope', u'good', u'season'] [u'belconnen', u'welcom', u'art', u'centr'] [u'bendigo', u'cyclist', u'rid', u'youth', u'game', u'gold'] [u'blue', u'charg', u'bracken', u'rout', u'redback'] [u'bodi', u'iraq', u'margaret', u'hassan'] [u'bracken', u'destroy', u'redback'] [u'bracken', u'rip', u'redback'] [u'bull', u'cruis', u'gabba', u'victori'] [u'bungl', u'bungl', u'rang', u'reach', u'icon', u'status'] [u'bushrang', u'seat'] [u'bushrang', u'slump', u'inning', u'defeat'] [u'bystand', u'intervent', u'stop', u'bulli', u'studi'] [u'canberra', u'surgeri', u'wait', u'list', u'increas'] [u'child', u'abus', u'report', u'fall', u'cherbourg'] [u'coff', u'reap', u'benefit', u'greater', u'visitor', u'number'] [u'communiti', u'group', u'challeng', u'redfern', u'renov'] [u'condom', u'tight'] [u'costello', u'move', u'open', u'hardi', u'inquiri', u'document'] [u'council', u'await', u'govt', u'respons'] [u'councillor', u'want', u'snappi', u'decis', u'croc'] [u'council', u'play', u'hick', u'eureka', u'march', u'role'] [u'council', u'beat', u'job', u'zone'] [u'court', u'hear', u'asbesto', u'fund', u'liquid', u'case'] [u'court', u'reject', u'extend', u'paedophil', u'jail', u'term'] [u'crew', u'battl', u'contain', u'central', u'west'] [u'crowd', u'expect', u'flock', u'bird', u'exhibit'] [u'cyclist', u'die', u'truck', u'accid'] [u'action', u'palm', u'death'] [u'disabl', u'fund', u'consid', u'inadequ'] [u'disabl', u'fund', u'hunter'] [u'marker', u'track', u'shark', u'popul'] [u'pirat', u'fin'] [u'england', u'ash', u'say', u'wasim'] [u'england', u'hammer', u'zimbabw', u'second'] [u'environ', u'crisi', u'head', u'warn'] [u'est', u'lead', u'record', u'round'] [u'est', u'take', u'clubhous', u'lead', u'coolum'] [u'estrada', u'win', u'leav', u'knee', u'surgeri'] [u'take', u'control', u'bosnia', u'peacekeep', u'mission'] [u'goldfield', u'policeman', u'acquit', u'assault'] [u'farmer', u'cast', u'doubt', u'ban'] [u'farm', u'group', u'adopt', u'constitut'] [u'fatal', u'crash', u'close', u'western', u'highway'] [u'feder', u'fund', u'bolster', u'timber'] [u'feder', u'threat', u'grand', u'slam', u'record', u'sampra'] [u'feyenoord', u'steaua', u'reach', u'uefa'] [u'holden', u'plant', u'investig'] [u'ban', u'loom', u'central', u'victoria'] [u'fire', u'shoaib', u'throw', u'gauntlet'] [u'firefight', u'save', u'lakesid', u'estat', u'hous'] [u'leav', u'burn', u'asbesto', u'discoveri'] [u'footbal', u'leagu', u'say', u'player', u'bing', u'drink', u'limit'] [u'forget', u'famili', u'emerg', u'jungl'] [u'french', u'prime', u'minist', u'win', u'reduc', u'sentenc'] [u'feast', u'bite', u'hunt', u'debat'] [u'franc', u'defend', u'troop', u'ivori', u'coast', u'kill'] [u'ganguli', u'fin', u'dissent'] [u'gene', u'discoveri', u'schizophrenia', u'treatment'] [u'goodwin', u'lead', u'fight'] [u'govt', u'form', u'age', u'care', u'plan'] [u'govt', u'mock', u'labor', u'leadership', u'problem'] [u'govt', u'reviv', u'unfair', u'dismiss'] [u'govt', u'urg', u'engag', u'indigen', u'curb'] [u'govt', u'fund', u'matern', u'ward', u'improv'] [u'govt', u'bunburi', u'land', u'plan'] [u'govt', u'urg', u'indigen', u'secur', u'patrol'] [u'govt', u'urg', u'inject', u'fund', u'rural', u'rail', u'servic'] [u'govt', u'urg', u'delay', u'wage', u'case'] [u'grant', u'help', u'gympi', u'firm', u'boost', u'oper'] [u'groom', u'take', u'earli', u'lead', u'hong', u'kong', u'open'] [u'hackett', u'focus'] [u'harbhajan', u'clinch', u'seri', u'india'] [u'high', u'risk', u'central'] [u'high', u'hop', u'waikeri', u'limeston'] [u'hingi', u'comeback'] [u'hobart', u'lure', u'australian', u'open', u'star'] [u'holiday', u'unit', u'build', u'workingman', u'club'] [u'hope', u'inquest', u'help', u'combat', u'petrol', u'sniff'] [u'hous', u'price', u'fall', u'end', u'year'] [u'howard', u'deni', u'slush', u'fund', u'claim'] [u'howard', u'refus', u'rule', u'alston', u'plum', u'post'] [u'india', u'scent', u'victori', u'harbhajan', u'wreck'] [u'indonesian', u'scientist', u'borrow', u'flore', u'bone'] [u'injur', u'eagl', u'return', u'wild'] [u'injur', u'jockey', u'face', u'lengthi', u'wait', u'race'] [u'wasnt', u'ask', u'cancel', u'china', u'trip', u'haermey'] [u'jail', u'high', u'secur', u'visitor', u'centr', u'open'] [u'joint', u'ventur', u'optimist', u'long', u'term', u'prospect'] [u'juri', u'dismiss', u'toothfish', u'poach', u'trial'] [u'kakadu', u'entri', u'scrap'] [u'king', u'tale', u'stray', u'win', u'heart', u'thailand'] [u'kurdish', u'parti', u'join', u'forc', u'iraq', u'elect'] [u'labor', u'attack', u'nation', u'milk', u'link'] [u'labor', u'cast', u'doubt', u'latham', u'leadership'] [u'labor', u'seek', u'apolog', u'long', u'flag'] [u'latham', u'accus', u'journalist', u'unreason', u'conduct'] [u'latham', u'join', u'long', u'walk'] [u'latrob', u'flight'] [u'launceston', u'schoolgirl', u'name', u'junior', u'historian'] [u'lobster', u'fisher', u'view', u'seek', u'bank', u'futur'] [u'locust', u'control', u'effort', u'cover', u'huge', u'area'] [u'long', u'road', u'ahead', u'ravag', u'meatwork'] [u'long', u'want', u'howard', u'visit', u'indigen', u'communiti'] [u'long', u'want', u'visit', u'indigen', u'communiti'] [u'lord', u'mayor', u'look', u'forward', u'second', u'term'] [u'theft', u'rate', u'draw', u'neighbourhood', u'watch', u'prais'] [u'loyalti', u'take', u'backseat', u'men', u'tenni', u'doubl'] [u'hospitalis', u'tree', u'branch', u'lodg'] [u'jail', u'child', u'porn'] [u'jail', u'kill', u'mother'] [u'slash', u'machet', u'yeppoon'] [u'beat', u'arsenal', u'reach', u'leagu', u'semi'] [u'marin', u'plan', u'unlik', u'spark', u'compo'] [u'market', u'reach', u'record', u'high'] [u'marshal', u'look', u'forward', u'face', u'haka'] [u'mayor', u'maintain', u'retir', u'villag', u'push'] [u'mayor', u'challeng', u'govt', u'provid', u'better', u'transport'] [u'mayor', u'worri', u'portabl', u'pool', u'pose', u'safeti', u'risk'] [u'militari', u'kill', u'aceh', u'rebel'] [u'minist', u'play', u'contamin', u'threat'] [u'minist', u'respons', u'retail', u'trade', u'hour'] [u'caravan', u'buff', u'road'] [u'council', u'fund', u'target', u'vandal'] [u'peopl', u'need', u'say', u'busi'] [u'motorist', u'urg', u'care', u'smoki', u'highway'] [u'movi', u'tell', u'stori', u'disgrac', u'cricket', u'cronj'] [u'cast', u'doubt', u'anti', u'freeway', u'petit'] [u'unhappi', u'minist', u'respons', u'fisher'] [u'music', u'chair', u'fame', u'conductor'] [u'typhoon', u'hit', u'philippin'] [u'nicorett', u'test', u'water'] [u'noos', u'incid', u'fuel', u'racial', u'tension', u'fear'] [u'govt', u'fight', u'petrol', u'sniff'] [u'palmer', u'see', u'defend', u'squash', u'champ', u'shabana'] [u'paper', u'order', u'stop', u'publish', u'terrorist', u'sermon'] [u'patient', u'warn', u'emerg', u'dept', u'woe'] [u'peac', u'park', u'plan', u'get', u'fund', u'boost'] [u'petrol', u'phase', u'fuel', u'racv', u'concern'] [u'picasso', u'engrav', u'set', u'record', u'auction'] [u'pickett', u'plead', u'guilti', u'drive', u'offenc'] [u'pig', u'croc', u'sixth'] [u'oppos', u'merger', u'conserv', u'parti'] [u'polic', u'appeal', u'detail', u'secur', u'guard', u'death'] [u'polic', u'drop', u'child', u'porn', u'case'] [u'polic', u'investig', u'attempt', u'abduct'] [u'polic', u'issu', u'apolog', u'goondiwindi', u'assault'] [u'polic', u'probe', u'aborigin', u'bash', u'rope', u'claim'] [u'polic', u'shoot', u'arm', u'unit'] [u'port', u'volum', u'target'] [u'powel', u'safe', u'gunbattl', u'haiti', u'visit'] [u'power', u'author', u'seek', u'blackout', u'answer'] [u'presid', u'elect', u'challeng', u'ukrain', u'poll', u'result'] [u'princ', u'charl', u'rememb', u'queen', u'mother', u'song'] [u'print', u'factori', u'worker', u'walk', u'disput'] [u'public', u'time', u'reef', u'nation', u'park'] [u'public', u'urg', u'wari', u'solarium', u'danger'] [u'qanta', u'urg', u'improv', u'servic', u'disabl'] [u'race', u'relat', u'agreement', u'sign'] [u'radiolog', u'depart', u'makeov'] [u'region', u'fund', u'inquiri', u'ahead'] [u'region', u'pub', u'unlik', u'liquor', u'vend'] [u'report', u'give', u'lower', u'hunter', u'clean', u'health'] [u'retir', u'caus', u'coastal', u'plan', u'problem'] [u'crew', u'contain', u'blaze', u'near', u'park'] [u'rodd', u'face', u'lengthi', u'wait', u'race'] [u'rodeo', u'rider', u'saddl', u'toowoomba', u'event'] [u'rise', u'garden', u'open', u'parliament', u'hous'] [u'opposit', u'urg', u'attorney', u'general', u'step'] [u'scott', u'aim'] [u'sharon', u'oppos', u'syria', u'peac', u'talk'] [u'sharon', u'woo', u'labour', u'save', u'pullout', u'plan'] [u'shire', u'okay', u'review', u'outcom'] [u'singapor', u'airlin', u'offer', u'flight', u'broadband'] [u'snooker', u'star', u'hann', u'charg', u'assault'] [u'south', u'west', u'pacif', u'meet', u'concentr'] [u'sport', u'club', u'patron', u'drink', u'excess', u'survey'] [u'star', u'sing', u'sudan', u'refuge', u'supper'] [u'stock', u'rise', u'price', u'slump'] [u'student', u'anger', u'result', u'delay'] [u'swedish', u'minist', u'killer', u'jail', u'life'] [u'tafe', u'teacher', u'ministeri', u'blast', u'withhold'] [u'task', u'forc', u'put', u'focus', u'hous', u'shortag'] [u'task', u'forc', u'deliv', u'port', u'hedland', u'report'] [u'opposit', u'target', u'elder'] [u'technic', u'glitch', u'dri', u'drought', u'hop'] [u'team', u'line', u'season'] [u'contest', u'palestinian', u'elect'] [u'thief', u'pursu', u'unfair', u'dismiss', u'claim'] [u'thorp', u'name', u'nswis', u'athlet', u'year'] [u'timelin', u'disast', u'bhopal'] [u'tobacco', u'treati', u'pois', u'come', u'forc'] [u'toddler', u'save', u'call', u'ambul'] [u'toyota', u'issu', u'alert', u'hose', u'flaw'] [u'troop', u'target', u'baath', u'parti', u'retreat'] [u'trucki', u'surviv', u'crash'] [u'face', u'court', u'noos', u'claim'] [u'ukrain', u'head', u'closer', u'poll'] [u'underwood', u'swear', u'chief', u'justic'] [u'union', u'air', u'concern', u'travel', u'licens', u'deal'] [u'union', u'carbid', u'disast', u'haunt', u'bhopal'] [u'union', u'want', u'push', u'wage', u'case'] [u'argu', u'guantanamo', u'detaine'] [u'death', u'toll', u'fallujah', u'reach'] [u'delay', u'start', u'jenkin', u'life'] [u'rais', u'forc', u'level', u'iraq'] [u'vandal', u'attack', u'ambul', u'plan'] [u'vass', u'hous', u'lot', u'snap'] [u'inmat', u'number', u'rais', u'concern'] [u'whale', u'souvenir', u'earn', u'fine'] [u'wine', u'industri', u'checklist', u'aim', u'avoid', u'contract', u'woe'] [u'worker', u'critic', u'mine', u'accid'] [u'actu', u'outrag', u'govern', u'seek', u'wage', u'case', u'delay'] [u'age', u'disabl', u'resid', u'stretch', u'tweed', u'resourc'] [u'airlin', u'moot', u'alburi', u'flight', u'plan'] [u'airlin', u'urg', u'improv', u'treatment', u'disabl'] [u'angri', u'palmer', u'squash', u'world', u'open'] [u'case', u'citrus', u'canker', u'central'] [u'applebi', u'leader', u'citi'] [u'argyl', u'welcom', u'govt', u'pledg', u'support'] [u'armi', u'chopper', u'make', u'emerg', u'land'] [u'aussi', u'domin', u'cricket', u'rat'] [u'australian', u'fund', u'philippin', u'storm', u'relief'] [u'australia', u'team', u'protect', u'reef'] [u'autist', u'featur', u'govt', u'calendar', u'face'] [u'babe', u'go'] [u'baghdad', u'attack', u'claim', u'victim'] [u'bank', u'card', u'cut', u'credit', u'sabbath'] [u'bendigo', u'host', u'telstra', u'countri', u'wide', u'board'] [u'bigger', u'plan', u'care', u'centr'] [u'move', u'afoot', u'retir', u'villag'] [u'blue', u'crush', u'redback', u'underfoot'] [u'border', u'relat', u'delic', u'amidst', u'bash', u'claim'] [u'bore', u'woe', u'trigger', u'compo'] [u'brack', u'talk', u'youth', u'game'] [u'british', u'win', u'damag', u'saddam', u'slur'] [u'chief', u'beat', u'despit', u'servic', u'financi', u'woe'] [u'bushrang', u'face', u'uphil', u'battl'] [u'bushrang', u'massiv', u'chase'] [u'bush', u'refus', u'chief'] [u'busi', u'usual', u'administr', u'look'] [u'cain', u'return', u'tiger'] [u'busi', u'blackout', u'compo'] [u'drought', u'shake'] [u'go', u'volunt', u'firefight'] [u'camera', u'focus', u'state', u'forest', u'fire'] [u'bomb', u'gunmen', u'kill', u'iraq'] [u'carr', u'open', u'stun', u'shoot'] [u'carr', u'urg', u'introduc', u'guidelin', u'retir'] [u'cat', u'extend', u'thompson', u'contract'] [u'ceremoni', u'rememb', u'accid', u'victim'] [u'chelsea', u'preserv'] [u'claremont', u'killer', u'organis', u'method'] [u'clark', u'crash', u'indigen', u'affair', u'minist', u'meet'] [u'clark', u'expect', u'black', u'cap', u'dayer'] [u'clark', u'gatecrash', u'resolv', u'amic', u'vanston'] [u'clean', u'continu', u'post', u'bushfir'] [u'continu', u'interview', u'wit', u'palm'] [u'comment', u'seek', u'propos', u'asia', u'trade', u'deal'] [u'commod', u'fall', u'weigh', u'market'] [u'concern', u'rais', u'indigen', u'student', u'numeraci'] [u'coron', u'recommend', u'mental', u'health', u'assess', u'review'] [u'council', u'call', u'tourist', u'centr', u'applic'] [u'council', u'give', u'wast', u'dump', u'protest', u'right', u'advic'] [u'council', u'seek', u'good', u'relat', u'countri', u'energi'] [u'council', u'seek', u'toughen', u'bark', u'law'] [u'crash', u'spark', u'eas', u'pressur', u'trucki'] [u'crow', u'faith', u'steven', u'begley'] [u'dead', u'storm', u'leav', u'philippin', u'reel'] [u'disabl', u'worker', u'face', u'fear', u'unknown'] [u'doc', u'move', u'resolv', u'women', u'refug', u'crisi'] [u'doubt', u'cast', u'plan', u'second', u'econom', u'zone'] [u'doubt', u'surround', u'jam', u'hardi', u'compo', u'offer'] [u'jone', u'dip', u'investor', u'dump', u'energi'] [u'drop', u'hous', u'price', u'expect'] [u'dylan', u'play', u'prophet', u'label'] [u'near', u'australia', u'fruit', u'wineri'] [u'english', u'nation', u'ballet', u'mourn', u'founder', u'markova'] [u'eureka', u'stockad', u'rememb', u'solemn', u'ceremoni'] [u'eurobodalla', u'mayor', u'join', u'chang', u'task', u'forc'] [u'expo', u'beef', u'rocki', u'economi'] [u'fallujah', u'refuge', u'desper', u'need'] [u'farm', u'group', u'upset', u'deregul', u'fund'] [u'farm', u'worker', u'target', u'alic', u'raid'] [u'fertil', u'servic', u'boost', u'wimmera'] [u'fibreboard', u'plant', u'futur', u'doubt'] [u'firefight', u'extinguish', u'blaze'] [u'firefight', u'ravag', u'hous'] [u'fish', u'chang', u'protect', u'tuna', u'stock'] [u'flare', u'think', u'prank'] [u'fleme', u'confid', u'team', u'perform'] [u'flood', u'plan', u'includ', u'communiti', u'consult'] [u'kelli', u'staffer', u'deni', u'wrongdo', u'grant'] [u'frog', u'fungus', u'tasmania'] [u'gold', u'coast', u'host', u'special', u'olymp'] [u'govt', u'chang', u'school', u'tutori', u'fund', u'stupid'] [u'govt', u'investig', u'accid'] [u'greek', u'sprinter', u'face', u'drug', u'ban'] [u'gregan', u'win', u'medal', u'excel'] [u'hawk', u'head', u'kokoda', u'track'] [u'hobart', u'hospit', u'launch', u'neonat', u'support', u'group'] [u'hope', u'shark', u'fin', u'fine', u'stop'] [u'hospit', u'boost', u'orthopaed', u'surgeri'] [u'weather', u'worsen', u'alga', u'outbreak'] [u'hous', u'price', u'fall', u'gold', u'coast'] [u'hous', u'sale', u'wollongong'] [u'howard', u'urg', u'heed', u'long', u'messag'] [u'immigr', u'confus', u'review', u'vanston'] [u'india', u'pakistan', u'agre', u'reopen', u'second', u'rail', u'link'] [u'india', u'rise', u'australia', u'lead', u'test', u'rank'] [u'indigen', u'opposit', u'voic', u'dump', u'plan'] [u'inquiri', u'probe', u'windsor', u'briberi', u'claim'] [u'insur', u'chang', u'tip', u'swim', u'class', u'size'] [u'iran', u'arrest', u'fake', u'nuclear', u'compani'] [u'irrig', u'outrag', u'govt', u'water', u'figur'] [u'isra', u'troop', u'kill', u'islam', u'jihad', u'member'] [u'jaqu', u'power', u'blue', u'massiv', u'lead'] [u'jone', u'accus', u'drug', u'cheat'] [u'jone', u'tie', u'japan', u'lead'] [u'kakadu', u'entri', u'fee', u'scrap', u'sooner', u'expect'] [u'kakadu', u'owner', u'want', u'greater', u'consult'] [u'kelli', u'deni', u'breach', u'code', u'conduct'] [u'landown', u'warn', u'resurrect', u'bunburi', u'scheme'] [u'landslid', u'hit', u'mountain', u'villag', u'china'] [u'societi', u'back', u'albani', u'legal', u'boost'] [u'lawyer', u'request', u'delay', u'sexual', u'assault', u'trial'] [u'return', u'mcgrath', u'take', u'break'] [u'play', u'mcgrath', u'stay', u'sydney'] [u'librari', u'refus', u'hand', u'eureka', u'flag', u'fragment'] [u'locust', u'outbreak', u'threaten', u'peach', u'crop'] [u'long', u'say', u'journey'] [u'believ', u'nato', u'soldier', u'secur'] [u'die', u'ultralight', u'crash'] [u'guilti', u'macksvill', u'shoot'] [u'marin', u'life', u'plan', u'spark', u'tourism', u'fear'] [u'marion', u'jone', u'accus', u'drug', u'cheat'] [u'mayor', u'conced', u'elect', u'nerv'] [u'mayor', u'brainstorm', u'region', u'issu'] [u'mcgrath', u'rest', u'open', u'door'] [u'men', u'swim', u'stock', u'look', u'cotterel'] [u'mental', u'attack', u'stab', u'chines', u'children'] [u'minist', u'consid', u'disabl', u'boy', u'resid'] [u'minist', u'hand', u'council', u'fund'] [u'moomba', u'blast', u'loss', u'recover', u'say', u'santo'] [u'industri', u'woe', u'possibl'] [u'firm', u'suppli', u'vaccin'] [u'back', u'council', u'rail', u'plan'] [u'outrag', u'record', u'phone', u'convers'] [u'mugab', u'call', u'rule', u'parti', u'uniti'] [u'napster', u'founder', u'launch', u'music', u'firm'] [u'dinosaur', u'speci', u'go', u'display', u'brazil'] [u'richmond', u'air', u'gold', u'coast', u'concern'] [u'trial', u'order', u'blue', u'mountain', u'murder'] [u'typhoon', u'batter', u'philippin'] [u'wallabi', u'turn', u'barbarian'] [u'year', u'jail', u'brawl', u'killer'] [u'nitti', u'clubhous', u'leader'] [u'nitti', u'lead', u'scott', u'miss'] [u'nitti', u'clubhous', u'leader'] [u'quick', u'relief', u'fuel', u'price'] [u'northern', u'rail', u'bridg', u'recognis', u'heritag', u'site'] [u'hous', u'minist', u'fight', u'feder', u'fund'] [u'offici', u'sign', u'race', u'relat', u'agreement'] [u'price', u'tumbl', u'suppli', u'fear', u'fade'] [u'pakistan', u'humili', u'perth'] [u'parent', u'warn', u'domest', u'violenc', u'impact'] [u'peopl', u'urg', u'nativ', u'titl', u'claim'] [u'perilya', u'accid', u'probe', u'continu'] [u'pinochet', u'face', u'trial', u'general', u'death'] [u'polic', u'chief', u'role'] [u'polic', u'crack', u'driver'] [u'polic', u'hunt', u'knife', u'wield'] [u'polic', u'issu', u'christma', u'warn', u'shopper'] [u'polic', u'probe', u'fatal', u'sydney', u'shoot'] [u'polic', u'question', u'fatal', u'stab'] [u'polic', u'raid', u'european', u'champion', u'porto'] [u'polic', u'shoot', u'dog', u'tyre'] [u'polic', u'farewel', u'crash', u'victim'] [u'power', u'compani', u'launch', u'bushfir', u'probe'] [u'probe', u'darwin', u'crane', u'accid'] [u'probe', u'launch', u'freight', u'load', u'death'] [u'public', u'feedback', u'seek', u'coff', u'plan'] [u'public', u'invit', u'comment', u'tran', u'territori'] [u'public', u'servant', u'vow', u'tell', u'secret', u'hide'] [u'public', u'urg', u'fight', u'health', u'servic'] [u'public', u'urg', u'speak', u'region', u'partnership'] [u'public', u'warn', u'avoid', u'mossi', u'virus'] [u'resort', u'happi', u'jetstar', u'clientel'] [u'quarri', u'closur', u'protect', u'indigen', u'heritag'] [u'redback', u'slide', u'crush', u'defeat'] [u'region', u'cooper', u'high', u'agenda', u'south', u'west'] [u'resid', u'action', u'group', u'focus', u'wetland', u'polici'] [u'river', u'cross', u'death', u'result', u'huge', u'mistak'] [u'riverland', u'mental', u'health', u'resourc', u'question'] [u'rlpb', u'ranger', u'recov', u'chopper', u'crash'] [u'roger', u'give', u'warrior', u'advantag'] [u'rudd', u'back', u'latham', u'current', u'term'] [u'school', u'condit', u'debat', u'heat'] [u'second', u'autopsi', u'delay', u'palm', u'island', u'funer'] [u'servic', u'sector', u'activ', u'climb'] [u'slaveri', u'suspect', u'face', u'court'] [u'share', u'dealer', u'success', u'sue', u'pension'] [u'shark', u'spotter', u'return', u'adelaid', u'sky'] [u'skill', u'shortag', u'impact', u'southern', u'firm'] [u'sleepov', u'vital', u'parent', u'child', u'relat'] [u'close', u'charter', u'tower', u'mine'] [u'smith', u'confirm', u'scotland', u'manag'] [u'spain', u'bank', u'youth', u'davi', u'decid'] [u'special', u'olymp', u'torch', u'arriv', u'launceston'] [u'lanka', u'close', u'rebel', u'border', u'amid', u'safeti', u'fear'] [u'storm', u'caus', u'havoc', u'crow', u'nest'] [u'strike', u'print', u'group', u'employe', u'resum', u'work'] [u'strong', u'prospect', u'forecast', u'cane', u'farmer'] [u'sugar', u'chief', u'reject', u'page', u'richmond', u'pork', u'barrel'] [u'support', u'group', u'highlight', u'increas', u'domest'] [u'surfer', u'face', u'trial', u'murder', u'relat', u'charg'] [u'sydney', u'mayor', u'deni', u'play', u'christma', u'grinch'] [u'sydney', u'polic', u'shoot', u'dead'] [u'tafe', u'teacher', u'vote', u'withhold', u'student'] [u'thousand', u'flee', u'congo', u'clash'] [u'track', u'shed', u'light', u'fli', u'orchard', u'impact'] [u'train', u'crash', u'injur', u'itali'] [u'trust', u'account', u'inquiri', u'tell', u'public', u'servant'] [u'tumut', u'cootamundra', u'rail', u'line', u'futur'] [u'charg', u'slaveri', u'offenc'] [u'ukrainian', u'court', u'consid', u'verdict', u'elect'] [u'ukrainian', u'wait', u'court', u'rule'] [u'ultrasound', u'harm', u'babi'] [u'union', u'call', u'industri', u'manslaught', u'law'] [u'union', u'hail', u'dismiss', u'assault', u'charg'] [u'open', u'inquiri', u'pardon', u'offici'] [u'lawyer', u'want', u'inquiri', u'hick', u'trial', u'process'] [u'scientist', u'get', u'reef', u'name', u'honour'] [u'victim', u'hold', u'bhopal', u'plant', u'vigil'] [u'memori', u'unveil', u'latest', u'drysdal', u'paint'] [u'word', u'erupt', u'dredg', u'impact'] [u'warrior', u'grind', u'bushrang', u'defeat'] [u'whitak', u'retain', u'waratah', u'captainci'] [u'wilko', u'return', u'delay'] [u'wimmera', u'aim', u'dive', u'record', u'book'] [u'wireless', u'north', u'boost', u'mobil', u'phone', u'recept'] [u'woman', u'die', u'tewantin', u'crash'] [u'women', u'outshin', u'pool'] [u'yanner', u'lack', u'faith', u'palm', u'inquiri'] [u'youth', u'mentor', u'scheme', u'target', u'drink', u'woe'] [u'ziggi', u'say', u'telstra', u'board', u'instig', u'departur'] [u'dead', u'bomb', u'target', u'iraqi', u'polic'] [u'test', u'corbi', u'cannabi', u'haul'] [u'accus', u'fiddl', u'hous', u'woe'] [u'survey', u'highlight', u'doctor', u'shortag', u'fear'] [u'ambros', u'clinch', u'success', u'titl'] [u'applebi', u'break', u'lead', u'citi'] [u'aussi', u'sheehan', u'second', u'japan'] [u'australian', u'urg', u'russia', u'stay', u'ukrain'] [u'babe', u'ruth', u'hit', u'million', u'dollar', u'homer'] [u'dupe', u'cruel', u'bhopal', u'hoax'] [u'brazil', u'appeal', u'sugar', u'export', u'rule'] [u'briton', u'die', u'landmark', u'euthanasia', u'rule'] [u'bull', u'tiger', u'ring', u'chang'] [u'bull', u'total', u'tiger', u'reach'] [u'bull', u'travel', u'nice', u'elect'] [u'bush', u'name', u'homeland', u'secur', u'chief', u'rumsfeld', u'stay'] [u'busi', u'leader', u'threaten', u'liber', u'fund'] [u'california', u'cathol', u'dioces', u'settl', u'abus', u'case'] [u'carr', u'accus', u'break', u'guidelin', u'promis'] [u'cheap', u'land', u'sale', u'help', u'incom', u'earner'] [u'china', u'resum', u'landslid', u'rescu', u'effort'] [u'chocol', u'nativ', u'leav', u'italian', u'mouth', u'water'] [u'colombian', u'drug', u'kingpin', u'extradit', u'unit', u'state'] [u'communiti', u'discuss', u'palm', u'island', u'action'] [u'congest', u'port', u'choke', u'export', u'opposit'] [u'cont', u'say', u'montgomeri', u'drug', u'cheat'] [u'crazi', u'hors', u'spaceman', u'battl', u'sceptic'] [u'crazi', u'hors', u'spaceman', u'crash', u'earth'] [u'customari', u'evid', u'chang', u'slow', u'court'] [u'dead', u'fungus', u'threaten', u'frog'] [u'deaflymp', u'team', u'win', u'govern', u'fund'] [u'democrat', u'membership', u'rise'] [u'diseas', u'risk', u'rise', u'philippin', u'typhoon'] [u'dope', u'hors', u'cost', u'germani', u'jump', u'medal'] [u'drink', u'driver', u'charg', u'fatal', u'accid'] [u'elder', u'urg', u'peac', u'protest', u'custodi'] [u'elliott', u'close', u'vic', u'chase', u'victori'] [u'est', u'overtak', u'nitti'] [u'blame', u'madrid', u'explos'] [u'garbag', u'collector', u'threaten', u'strike', u'talk', u'stall'] [u'genet', u'test', u'reveal', u'shark', u'speci'] [u'giant', u'park', u'offer', u'vari', u'facil'] [u'govern', u'wont', u'oppos', u'tortur', u'evid'] [u'greenpeac', u'target', u'woolworth', u'anti', u'fight'] [u'guatemala', u'crash', u'kill'] [u'hama', u'leader', u'detain', u'raid', u'wit'] [u'hawk', u'thrash', u'breaker'] [u'hill', u'arriv', u'iraq', u'reconstruct', u'talk'] [u'hmas', u'adelaid', u'return', u'home'] [u'hobart', u'strike', u'affili', u'brisban', u'lion'] [u'hook', u'widow', u'sue', u'bouncer', u'hotel'] [u'imperialist', u'monitor', u'poll', u'mugab'] [u'iraq', u'attack', u'leav', u'seven', u'dead'] [u'ivorian', u'seek', u'french', u'troop', u'withdraw'] [u'japanes', u'face', u'court', u'hostel', u'murder'] [u'japanes', u'tourist', u'charg', u'stab'] [u'accid', u'leav', u'hospit'] [u'jone', u'cont', u'dope', u'claim'] [u'kidman', u'citizen', u'world'] [u'larsson', u'knee', u'surgeri', u'success', u'barca'] [u'lawyer', u'abandon', u'alexand'] [u'lead', u'sunni', u'cleric', u'condon', u'iraqi', u'resist'] [u'long', u'upbeat', u'meet'] [u'long', u'upbeat', u'meet'] [u'lucki', u'lotteri', u'number', u'dent', u'italian', u'treasuri'] [u'macgil', u'star', u'blue', u'crush', u'redback'] [u'magpi', u'unsettl', u'gigg', u'report'] [u'arrest', u'adelaid', u'stab'] [u'match', u'fix', u'claim', u'spark', u'uefa', u'inquiri'] [u'mcgrath', u'gillespi', u'leav', u'australian'] [u'mear', u'set', u'sibl', u'rivalri'] [u'nadal', u'nail', u'roddick', u'spain'] [u'nativ', u'indian', u'pursu', u'suit', u'canadian'] [u'newcastl', u'hope', u'venabl', u'deal'] [u'youth', u'polici', u'group', u'watchdog'] [u'nitti', u'hold', u'lead'] [u'nitti', u'hold', u'lead', u'final', u'hole', u'birdi'] [u'korea', u'await', u'bush', u'look', u'team'] [u'norgren'] [u'govt', u'deni', u'volunt', u'firefight', u'wait'] [u'palm', u'island', u'communiti', u'lose', u'faith', u'legal'] [u'disput', u'prompt', u'truck', u'driver', u'blockad', u'threat'] [u'perren', u'set', u'bull'] [u'phelp', u'beat', u'peirsol', u'thorp', u'swim', u'award'] [u'philippin', u'suspend', u'log', u'storm'] [u'plant', u'ferguson', u'stop', u'redback', u'slide'] [u'polic', u'raid', u'michael', u'jackson', u'neverland', u'ranch'] [u'pont', u'look', u'indoor', u'advantag', u'dockland'] [u'port', u'look', u'list', u'schofield', u'place'] [u'porto', u'presid', u'face', u'corrupt', u'charg'] [u'privat', u'caravan', u'park', u'land', u'exempt'] [u'progress', u'drought', u'reform', u'say', u'truss'] [u'rann', u'back', u'stash', u'cash', u'affair'] [u'shot', u'fire', u'sydney', u'polic', u'oper'] [u'springborg', u'confid', u'parti', u'back', u'merger', u'plan'] [u'springborg', u'win', u'execut', u'back', u'merger'] [u'supermarket', u'petrol', u'push', u'price', u'higher', u'ract'] [u'toddler', u'drown', u'famili'] [u'women', u'arrest', u'tree', u'protest'] [u'ukrain', u'court', u'order', u'vote'] [u'ukrain', u'prepar', u'poll'] [u'ukranian', u'communiti', u'call', u'elect', u'deleg'] [u'fee', u'deter', u'student', u'opposit'] [u'allow', u'evid', u'gain', u'tortur'] [u'declar', u'death', u'triangl', u'sweep'] [u'probe', u'detaine', u'abus', u'photo'] [u'polic', u'book', u'drink', u'driver'] [u'health', u'chief', u'reject', u'shortag', u'claim'] [u'warn', u'aim', u'year'] [u'warrior', u'hold', u'victorian', u'chase'] [u'warrior', u'hold', u'thrill'] [u'waterfront', u'author', u'recruit', u'begin'] [u'weak', u'job', u'data', u'leav', u'market', u'flat'] [u'western', u'power', u'clear', u'wheat', u'belt'] [u'western', u'power', u'wait', u'bushfir', u'investig'] [u'workcov', u'polic', u'investig', u'truck', u'leak'] [u'yanukovich', u'vow', u'ukrain', u'poll'] [u'zimmer', u'morrison', u'notch', u'win', u'korea'] [u'kill', u'kashmir', u'landmin', u'blast'] [u'million', u'devot', u'flock', u'saint', u'remain'] [u'insurg', u'target', u'iraqi'] [u'milan', u'late', u'ralli', u'keep', u'pressur', u'juve'] [u'resid', u'warn', u'renov', u'rush'] [u'airport', u'offici', u'detain', u'zimbabw', u'opposit', u'leader'] [u'alcohol', u'seiz', u'north'] [u'ambros', u'complet', u'clean', u'sweep'] [u'applebi', u'slip', u'westwood', u'take', u'citi', u'lead'] [u'arnhem', u'land', u'turtl', u'industri', u'expans'] [u'artist', u'put', u'collect', u'scholarship'] [u'author', u'warn', u'fairi', u'light', u'danger'] [u'barca', u'open', u'point', u'lead', u'spain'] [u'barnett', u'pledg', u'restor', u'censorship', u'power'] [u'black', u'cap', u'pull', u'thrill'] [u'black', u'cap', u'restrict', u'aussi'] [u'bok', u'eas', u'past', u'wound', u'puma'] [u'brisban', u'woman', u'pip', u'miss', u'world', u'titl'] [u'burn', u'specialist', u'honour', u'award'] [u'bomb', u'kill', u'iraqi', u'soldier'] [u'carr', u'accus', u'ignor', u'rural', u'rail', u'need'] [u'carr', u'seek', u'drive', u'commut', u'road'] [u'chelsea', u'jugular'] [u'child', u'die', u'highway', u'accid'] [u'china', u'approv', u'print', u'foreign', u'newspap'] [u'commut', u'unsur', u'wheelchair', u'access', u'bus'] [u'coulthard', u'hint', u'bull'] [u'croc', u'snap', u'match', u'lose', u'streak'] [u'darwin', u'head', u'gulf'] [u'darwin', u'high', u'rise', u'plan', u'worri'] [u'dob', u'program', u'deter', u'illeg', u'fish'] [u'drink', u'driver', u'concern', u'minist'] [u'drought', u'blame', u'teacher', u'loss'] [u'elder', u'injur', u'glider', u'accid'] [u'draw', u'near', u'north', u'south', u'fundrais', u'trek'] [u'est', u'stalk'] [u'explos', u'devic', u'injur', u'teenag'] [u'flood', u'kill', u'indonesia'] [u'foot', u'sever', u'tractor', u'accid'] [u'french', u'train', u'exercis', u'lead', u'explos', u'mistak'] [u'gale', u'injur', u'japan'] [u'hama', u'deni', u'truce', u'immin'] [u'hardman', u'muscat', u'violenc'] [u'hartson', u'doubl', u'fire', u'celtic', u'clear'] [u'hawthorn', u'stalwart', u'die'] [u'hickss', u'father', u'heckl', u'eureka', u'ceremoni'] [u'home', u'burn', u'famili', u'absenc'] [u'home', u'evacu', u'bushfir', u'rag'] [u'howard', u'invit', u'asian', u'summit', u'doubt'] [u'iaea', u'chief', u'deni', u'iran', u'influenc', u'report'] [u'india', u'seal', u'flashpoint', u'mosqu', u'town'] [u'iran', u'oblig', u'allow', u'militari', u'site', u'inspect'] [u'islam', u'group', u'threaten', u'kill', u'indian', u'cricket'] [u'accid', u'prompt', u'water', u'sport', u'warn'] [u'jimenez', u'seal', u'hong', u'kong', u'open'] [u'juve', u'ignor', u'down', u'oppon'] [u'kazakhstan', u'coal', u'blast', u'kill'] [u'kersten', u'world', u'titl'] [u'kewel', u'hit'] [u'kiev', u'hold', u'round', u'ukrain', u'crise', u'talk'] [u'king', u'upset', u'hawk'] [u'kumbl', u'laxman', u'annoy', u'rest'] [u'labor', u'accus', u'govt', u'condon', u'tortur'] [u'labor', u'leadership', u'talk', u'continu'] [u'labor', u'seek', u'petrol', u'price', u'probe'] [u'late', u'slim', u'dusti', u'nomin', u'golden', u'guitar'] [u'lawyer', u'argu', u'ghraib', u'guard', u'scapegoat'] [u'lonard', u'win', u'titl'] [u'malaysia', u'warn', u'fallout', u'asian', u'pact'] [u'charg', u'brisban', u'parti', u'stab'] [u'mcmullan', u'give', u'latham', u'februari'] [u'momentum', u'swing', u'australia'] [u'child', u'care', u'place', u'need', u'carr', u'say'] [u'mosul', u'suicid', u'bomb', u'hit', u'kurdish', u'fighter'] [u'muslim', u'gather', u'end', u'prayer', u'peac'] [u'nation', u'offici', u'talk', u'merger', u'plan'] [u'newmont', u'rule', u'deal', u'indonesian', u'pollut', u'case'] [u'observatori', u'prepar', u'season'] [u'observ', u'pressur', u'mozambiqu', u'poll', u'transpar'] [u'pakistan', u'admit', u'laden', u'trail', u'cold'] [u'pavin', u'snatch', u'lead'] [u'welcom', u'shift', u'aborigin', u'welfar'] [u'polic', u'probe', u'okin', u'beach', u'drown'] [u'polic', u'slow', u'emerg', u'opposit'] [u'power', u'deal', u'boost', u'renew', u'energi', u'invest'] [u'pow', u'sayonara', u'changi'] [u'pakistan', u'rebel', u'claim', u'kashmir', u'attack'] [u'public', u'back', u'katherin', u'art', u'precinct'] [u'radic', u'chang', u'need', u'indigen', u'affair', u'say'] [u'ranger', u'flame', u'score', u'victori'] [u'readi', u'steadi', u'wrap'] [u'reserv', u'black', u'crush', u'barbarian'] [u'retail', u'urg', u'present', u'love'] [u'right', u'group', u'urg', u'karzai', u'sidelin', u'warlord'] [u'senat', u'call', u'uniform', u'childcar', u'standard'] [u'sheehan', u'win', u'season', u'end', u'event', u'japan'] [u'solanki', u'lead', u'england', u'crush'] [u'soldier', u'rush', u'suppli', u'storm', u'filipino'] [u'spanish', u'polic', u'defus', u'bomb', u'blame'] [u'stoner', u'deni', u'leadership', u'challeng', u'report'] [u'thailand', u'tackl', u'unrest', u'origami', u'bird'] [u'dead', u'road'] [u'miss', u'remot'] [u'toowoomba', u'rang', u'accid', u'kill'] [u'command', u'rais', u'concern', u'iraqi', u'forc'] [u'touch', u'screen', u'trial', u'begin', u'emerg'] [u'trio', u'safe', u'outback', u'search'] [u'star', u'beat', u'ancient', u'beauti', u'miss', u'digit', u'titl'] [u'twin', u'davi', u'hop', u'aliv'] [u'treat', u'overdos', u'adelaid', u'rave'] [u'polic', u'chief', u'back', u'forc', u'intrud'] [u'ukrain', u'parliament', u'fail', u'agre', u'elect'] [u'russia', u'china', u'pressur', u'landmin'] [u'vanston', u'ask', u'approv', u'disabl', u'famili'] [u'secur', u'measur', u'prevent', u'forgeri'] [u'veteran', u'ralli', u'site', u'dump'] [u'join', u'forc', u'defenc', u'contract'] [u'join', u'forc', u'defenc', u'contract'] [u'women', u'firefight', u'target', u'onlin', u'survey'] [u'yellow', u'bowl', u'help', u'vision', u'impair', u'player'] [u'yushchenko', u'famili', u'hide', u'crisi', u'continu'] [u'zimbabw', u'elect', u'woman', u'vice', u'presid'] [u'water', u'plant', u'near', u'finish'] [u'aborigin', u'communiti', u'welcom', u'stanc', u'alcohol'] [u'aborigin', u'slam', u'curfew', u'alcohol', u'ban'] [u'abus', u'investig', u'compromis', u'opposit'] [u'accus', u'letter', u'bomber', u'face', u'court'] [u'accus', u'palm', u'island', u'rioter', u'return', u'court'] [u'accus', u'palm', u'riot', u'ringlead', u'bail'] [u'accus', u'rioter', u'miss', u'palm', u'island', u'funer'] [u'accus', u'teen', u'abus', u'suicid', u'watch'] [u'adelaid', u'sieg', u'end', u'peac'] [u'offer', u'park', u'victim'] [u'allianc', u'meet', u'unlik', u'hear', u'unfair', u'dismiss'] [u'anti', u'semit', u'incid', u'remain', u'high', u'australia'] [u'aquacultur', u'farm', u'plan', u'darwin', u'outskirt'] [u'armi', u'probe', u'cadet', u'drug', u'claim'] [u'asylum', u'seeker', u'protest', u'baxter', u'roof'] [u'olymp', u'chief', u'warn', u'jone', u'alleg'] [u'aussi', u'lead', u'fight', u'camel', u'race', u'slave'] [u'aust', u'target', u'meet', u'greenhous', u'target'] [u'australian', u'chase', u'tour', u'berth'] [u'australian', u'pick', u'lord', u'ring', u'book'] [u'award', u'jogger', u'babi', u'montana'] [u'bass', u'strait', u'island', u'lead', u'renew'] [u'beatti', u'urg', u'concentr', u'state', u'polit'] [u'beatti', u'warn', u'leadership', u'problem', u'hurt'] [u'join', u'forc'] [u'crowd', u'attend', u'lagoon', u'protest'] [u'grass', u'control'] [u'boat', u'capsiz', u'sydney', u'harbour'] [u'boilermak', u'buck', u'rodeo'] [u'breakthrough', u'floricultur', u'industri'] [u'canberra', u'nurs', u'home', u'trial', u'medic'] [u'candl', u'shed', u'light', u'iraq', u'casualti'] [u'accid', u'kill', u'passeng'] [u'chang', u'possibl', u'liquor', u'accord'] [u'child', u'abus', u'victim', u'receiv', u'compens'] [u'christma', u'busi', u'time', u'ambul', u'crew'] [u'christma', u'pageant', u'prove', u'popular'] [u'coastal', u'develop', u'plan', u'spark', u'mix', u'feel'] [u'communiti', u'group', u'share', u'poki', u'fund'] [u'communiti', u'support', u'mine', u'festiv'] [u'compani', u'move', u'mobil', u'phone', u'workplac'] [u'compani', u'bigger', u'slice', u'market'] [u'confirm', u'freighter', u'unchart', u'rock'] [u'coron', u'recommend', u'review', u'search', u'procedur'] [u'corpor', u'cash', u'swing', u'melbourn', u'super'] [u'council', u'face', u'pool', u'upkeep'] [u'councillor', u'oppos', u'kath', u'plan'] [u'council', u'rethink', u'beach', u'plan'] [u'council', u'reveal', u'water', u'price', u'plan'] [u'council', u'decid', u'brothel'] [u'count', u'continu', u'council', u'poll'] [u'court', u'seek', u'clemenc', u'bali', u'bomber'] [u'crane', u'work', u'stop', u'plant'] [u'dodson', u'attack', u'back', u'mutual', u'oblig'] [u'driver', u'fatigu', u'alarm', u'develop'] [u'duntroon', u'cadet', u'face', u'drug', u'investig'] [u'dwyer', u'defend', u'barbarian'] [u'bash', u'eminem', u'jackson', u'video'] [u'elect', u'date', u'achiev', u'world', u'help', u'iraqi'] [u'employ', u'remain', u'strong', u'despit', u'small', u'drop'] [u'eureka', u'organis', u'revel', u'event', u'success'] [u'european', u'urg', u'observ', u'ukrain', u'poll'] [u'festiv', u'season', u'fare', u'begin'] [u'dead', u'chines', u'accid'] [u'firefight', u'get', u'period', u'detent', u'arson'] [u'firefight', u'gain', u'control', u'blaze'] [u'fire', u'spark', u'bushfir', u'readi'] [u'fish', u'plant', u'see', u'great', u'catch', u'bermagui'] [u'free', u'ticket', u'benefit', u'remot', u'town'] [u'fund', u'boost', u'lifesav', u'club', u'effort'] [u'golf', u'cours', u'effluent', u'fish', u'kill'] [u'goosen', u'win', u'citi', u'titl', u'applebi', u'tie', u'second'] [u'govt', u'urg', u'eas', u'hear', u'backlog'] [u'govt', u'wont', u'blackmail', u'beatti', u'say'] [u'griffith', u'airport', u'crack', u'secur'] [u'gulf', u'river', u'studi', u'time'] [u'hewitt', u'cope', u'media', u'scrutini', u'say', u'sister'] [u'high', u'rank', u'fisheri', u'export'] [u'tech', u'gambler', u'allow', u'win'] [u'hospit', u'cleaner', u'strike', u'concern'] [u'hundr', u'miss', u'philippin', u'storm'] [u'iaaf', u'plan', u'joint', u'dope', u'research', u'wada'] [u'ibrahimov', u'complet', u'juve', u'recoveri'] [u'iceland', u'bath', u'warn', u'quak'] [u'indian', u'tour', u'hold', u'terror', u'threat'] [u'indigen', u'advis', u'call', u'look', u'land'] [u'internet', u'auction', u'eas', u'boy', u'haunt', u'fear'] [u'inventor', u'honour', u'water', u'save', u'devic'] [u'iraqi', u'crescent', u'order', u'fallujah'] [u'iraq', u'seek', u'help', u'train', u'intellig', u'offic'] [u'islam', u'group', u'threaten', u'kill', u'indian', u'cricket'] [u'jackson', u'give', u'sampl', u'polic', u'report'] [u'japan', u'plan', u'deploy', u'repel', u'spi', u'report'] [u'journalist', u'celebr', u'zimbabwean', u'minist', u'demot'] [u'judg', u'rule', u'windi', u'sponsorship'] [u'kasper', u'hop', u'forget', u'wayward'] [u'kasper', u'rest', u'second'] [u'kid', u'comp', u'australian', u'tenni', u'coach'] [u'kite', u'sail', u'debut', u'sydney', u'hobart'] [u'lacklustr', u'real', u'lose', u'grind'] [u'langer', u'happi', u'miss', u'rawalpindi', u'express'] [u'langer', u'reliev', u'shoaib', u'absenc'] [u'troubl', u'polic', u'earli', u'nightclub'] [u'lobster', u'fisher', u'see', u'back', u'bank', u'chang'] [u'local', u'coupl', u'hous'] [u'locust', u'invad', u'wagga', u'wagga'] [u'lonard', u'seek', u'medic', u'exempt', u'money', u'list'] [u'level', u'caus', u'concern'] [u'maitland', u'council', u'play', u'develop', u'concern'] [u'majest', u'moya', u'win', u'davi', u'spain'] [u'malaysian', u'face', u'credit', u'card', u'fraud', u'charg'] [u'jail', u'year'] [u'lose', u'foot', u'tractor', u'mishap'] [u'surrend', u'polic', u'negoti'] [u'face', u'court', u'nude', u'stroll'] [u'face', u'polic', u'assault', u'charg'] [u'market', u'hit', u'record', u'despit', u'mix', u'fortun'] [u'marshal', u'confid', u'kiwi', u'upset', u'aussi'] [u'mask', u'cover', u'sexual', u'health', u'issu'] [u'mayor', u'joint', u'approach', u'liquor', u'licens'] [u'metcash', u'make', u'foodland'] [u'mexican', u'rebel', u'debut', u'crime', u'writer'] [u'milan', u'awash', u'scala', u'fever'] [u'miner', u'outlin', u'miner', u'sand', u'time', u'frame'] [u'mix', u'opinion', u'need', u'ningi', u'bypass'] [u'fund', u'urg', u'assess', u'child', u'behaviour'] [u'mother', u'plead', u'guilti', u'drown', u'babi'] [u'mother', u'drown', u'babi', u'escap', u'jail', u'term'] [u'move', u'afoot', u'secur', u'mental', u'health', u'facil'] [u'fear', u'murray', u'find', u'hide'] [u'attack', u'labor', u'malcont'] [u'musician', u'split', u'file', u'share'] [u'muslim', u'believ', u'blair', u'creat', u'climat', u'fear'] [u'plan', u'manag', u'ski'] [u'smoke', u'law'] [u'coast', u'awak', u'mysteri', u'light', u'rumbl'] [u'govt', u'ponder', u'border', u'rail', u'line', u'plan'] [u'nurs', u'union', u'continu', u'fight', u'wage', u'deal'] [u'oper', u'vike', u'crack', u'dubbo', u'crime'] [u'origami', u'peac', u'bomb', u'fail', u'sooth', u'thai', u'violenc'] [u'oversea', u'tourism', u'rep', u'experi', u'outback'] [u'palac', u'rommedahl', u'sucker', u'punch'] [u'palm', u'riot', u'wasnt', u'alcohol', u'fuel', u'council', u'say'] [u'parliament', u'debat', u'coupl', u'right'] [u'disput', u'affect', u'result', u'darwin'] [u'petrol', u'station', u'sieg'] [u'plan', u'fire', u'power', u'station'] [u'polic', u'schooli', u'grip'] [u'polic', u'hunt', u'teen', u'attack'] [u'polic', u'leav', u'delay', u'harass', u'case'] [u'policeman', u'honour', u'lifesav', u'award'] [u'polic', u'crash', u'victim'] [u'polic', u'stage', u'drink', u'drive', u'blitz'] [u'polic', u'crack', u'drink', u'driver'] [u'polic', u'warn', u'explos', u'surpris', u'airlin'] [u'pont', u'defend', u'wayward', u'kasper'] [u'power', u'station', u'worker', u'ponder', u'offer'] [u'priest', u'guilti', u'abus'] [u'princ', u'highway'] [u'prison', u'exchang', u'enhanc', u'egypt', u'israel', u'tie'] [u'public', u'remind', u'ban'] [u'public', u'submiss', u'close', u'draft', u'plan'] [u'public', u'safe', u'boat', u'messag'] [u'public', u'transport', u'see', u'address'] [u'radcliff', u'call', u'tougher', u'drug', u'penalti'] [u'ranger', u'sting', u'thistl'] [u'receiv', u'appoint', u'blue', u'mountain', u'project'] [u'lonard', u'take', u'master'] [u'religi', u'leader', u'urg', u'join', u'terror', u'fight'] [u'report', u'flag', u'electr', u'levi', u'power', u'plant'] [u'report', u'highlight', u'need', u'doctor', u'boost'] [u'resid', u'urg', u'restrict', u'water'] [u'resid', u'worri', u'phone', u'tower', u'plan'] [u'retail', u'trade', u'slow', u'novemb'] [u'rich', u'countri', u'accus', u'reneg', u'promis'] [u'rival', u'ticket', u'drop', u'challeng', u'hawthorn'] [u'robot', u'afford'] [u'rocket', u'blast', u'injur', u'teen'] [u'roger', u'back', u'lion', u'beat', u'black'] [u'roger', u'great', u'turn', u'tenni', u'head'] [u'saudi', u'forc', u'kill', u'gunmen', u'mission', u'attack'] [u'school', u'lockdown', u'polic', u'surround', u'suspect'] [u'senat', u'queri', u'feder', u'kakadu', u'fund', u'pledg'] [u'senat', u'threaten', u'basebal', u'dope', u'crack'] [u'shark', u'number', u'increas', u'canal'] [u'soldier', u'plead', u'guilti', u'drink', u'drive'] [u'storm', u'leav', u'resid', u'dark'] [u'strong', u'reform', u'agenda', u'perform', u'economi'] [u'sudan', u'accus', u'rebel', u'break', u'ceas'] [u'sudan', u'agre', u'talk', u'darfur', u'rebel', u'group'] [u'exposur', u'cut', u'lymphoma', u'risk'] [u'support', u'region', u'fund', u'probe'] [u'support', u'mount', u'indonesian', u'islam', u'extremist'] [u'bandit', u'trigger', u'polic', u'hunt'] [u'tascoss', u'talk', u'aurora', u'late', u'fee'] [u'gonorrhoea', u'case', u'doubl'] [u'appear', u'parol', u'hear'] [u'teenag', u'nadal', u'beat', u'cash', u'davi', u'record'] [u'telstra', u'announc', u'intern', u'split'] [u'tomahawk', u'confirm', u'penguin', u'murder', u'weapon'] [u'tourism', u'award', u'winner', u'name'] [u'tree', u'fear', u'prompt', u'council', u'rethink'] [u'australian', u'guilti', u'safeti'] [u'ukrain', u'opposit', u'support', u'ralli'] [u'offici', u'warn', u'iraq', u'violent', u'elect'] [u'unseason', u'rain', u'forecast'] [u'marin', u'express', u'regret', u'romanian', u'rock', u'star'] [u'mission', u'saudi', u'citi', u'attack'] [u'sailor', u'deni', u'darwin', u'rape', u'charg'] [u'sailor', u'face', u'court', u'rape', u'charg'] [u'senat', u'threaten', u'basebal', u'dope', u'crack'] [u'vaughan', u'baffl', u'rebel', u'absenc'] [u'polic', u'want', u'civil', u'liberti', u'law', u'chang'] [u'villag', u'evacu', u'soldier', u'threaten', u'explos'] [u'bushfir', u'caus', u'minor', u'damag'] [u'govt', u'promis', u'boost', u'polic', u'number'] [u'weekend', u'blitz', u'nab', u'drink', u'driver'] [u'wheat', u'qualiti', u'better', u'expect'] [u'youth', u'game', u'inject', u'million', u'bendigo', u'coffer'] [u'abus', u'victim', u'give', u'option', u'testifi', u'ombudsman'] [u'accus', u'underworld', u'killer', u'fight', u'committ'] [u'govt', u'push', u'committe', u'structur'] [u'seek', u'power', u'interrog', u'terror'] [u'target', u'minist', u'region', u'grant'] [u'qaeda', u'claim', u'attack', u'consul'] [u'amcor', u'boss', u'resign', u'suspect', u'cartel'] [u'annan', u'food', u'program'] [u'asx', u'record', u'end'] [u'aust', u'doubl', u'anti', u'terror', u'fund', u'indonesia'] [u'australian', u'pair', u'guilti', u'safeti'] [u'australian', u'school', u'score', u'oecd', u'report'] [u'australia', u'prepar', u'crunch'] [u'aust', u'send', u'humanitarian', u'papua'] [u'aviat', u'industri', u'honour', u'canberra', u'scientist'] [u'award', u'recognis', u'policeman', u'lifesav', u'attempt'] [u'bash', u'pregnant', u'woman', u'spark', u'reform'] [u'baxter', u'detaine', u'continu', u'rooftop', u'protest'] [u'bayley', u'mear', u'lead', u'australia', u'world', u'charg'] [u'job'] [u'beatti', u'prepar', u'work', u'futur', u'mayor'] [u'beatti', u'reject', u'widow', u'plea', u'tap'] [u'win', u'case', u'asbesto', u'claim', u'hear'] [u'bid', u'gramp', u'ghost', u'skyrocket'] [u'blair', u'spin', u'king', u'get', u'lion', u'role'] [u'blue', u'ribbon', u'worker', u'lengthi', u'disput'] [u'bluescop', u'steel', u'expans', u'india'] [u'bodi', u'sydney', u'sand', u'pile'] [u'brack', u'urg', u'state', u'join', u'greenhous', u'scheme'] [u'bryon', u'teen', u'look', u'winter', u'paralymp'] [u'bundaberg', u'port', u'author', u'diversifi', u'invest'] [u'doctor', u'run'] [u'govt', u'dust', u'diseas', u'tribun'] [u'firm', u'appoint', u'administr'] [u'central', u'town', u'clean', u'fierc', u'hailstorm'] [u'chelsea', u'warn', u'porto'] [u'chief', u'minist', u'advis', u'join', u'legal'] [u'civil', u'libertarian', u'oppos', u'extra', u'polic', u'power'] [u'coke', u'pepsi', u'tell', u'print', u'pesticid', u'warn'] [u'coron', u'criticis', u'polic', u'search', u'miss'] [u'costello', u'say', u'state', u'tax'] [u'council', u'issu', u'tree', u'vandal', u'warn'] [u'councillor', u'highlight', u'water', u'breach'] [u'council', u'ponder', u'infrastructur', u'levi'] [u'courthous', u'take', u'action', u'combat', u'skateboard'] [u'crowd', u'rememb', u'daniel', u'morcomb'] [u'crunch', u'time', u'loom', u'europ', u'gun'] [u'cuthbert', u'coach', u'lay', u'rest'] [u'daniel', u'morcomb', u'rememb', u'year'] [u'defenc', u'associ', u'back', u'remov', u'cadet'] [u'doctor', u'perform', u'australia', u'liver', u'cell'] [u'doctor', u'testifi', u'sailor', u'rape', u'hear'] [u'downer', u'discuss', u'detain', u'pair', u'indonesian'] [u'drink', u'driver', u'jail', u'kill', u'best', u'friend'] [u'drug', u'baron', u'cocain', u'report'] [u'dutch', u'polic', u'arrest', u'alleg', u'link'] [u'eccleston', u'lose', u'board', u'court', u'case'] [u'effort', u'control', u'lightn', u'fire'] [u'enjoy', u'prawn', u'fishermen', u'warn'] [u'esper', u'harvest', u'near'] [u'evid', u'earli', u'winemak', u'china'] [u'execut', u'expect', u'sale', u'profit', u'drop'] [u'offic', u'admit', u'tip', u'suspect'] [u'expert', u'studi', u'method', u'monitor', u'anaesthetis'] [u'team', u'reject', u'ferrari', u'test', u'propos'] [u'famili', u'cliff', u'victim', u'devast', u'damag'] [u'fardel', u'investig', u'park', u'petrol', u'station', u'claim'] [u'farm', u'group', u'seek', u'earli', u'wheat', u'debt', u'payment'] [u'report', u'abus', u'guantanamo'] [u'fear', u'heritag', u'list', u'stifl', u'develop'] [u'fear', u'sugar', u'woe', u'sour', u'potenti', u'farmer'] [u'hike', u'blame', u'drop', u'applic'] [u'fergi', u'question', u'chelsea', u'titl', u'stamina'] [u'firearm', u'money', u'seiz', u'drug', u'raid'] [u'burn', u'scrap', u'metal', u'yard'] [u'firefight', u'struggl', u'contain', u'industri'] [u'blast', u'report', u'spain', u'threat'] [u'forecast', u'good', u'region', u'economi'] [u'austoft', u'site', u'prepar', u'multipl'] [u'pastor', u'guilti', u'charg'] [u'fugit', u'qaeda', u'member', u'sentenc', u'iran'] [u'fund', u'manilla', u'work'] [u'visit', u'solomon', u'east', u'timor'] [u'giteau', u'prepar', u'wait', u'half', u'role'] [u'governor', u'enjoy', u'gambier', u'hospit'] [u'govt', u'admit', u'tech', u'student', u'fee'] [u'govt', u'ask', u'boost', u'mental', u'health', u'worker', u'fund'] [u'govt', u'block', u'motion', u'stash', u'cash', u'inquiri'] [u'govt', u'introduc', u'free', u'pneumococc', u'vaccin'] [u'govt', u'appeal', u'rule', u'drug', u'test'] [u'govt', u'pledg', u'rais', u'plant', u'hop'] [u'govt', u'pledg', u'cover', u'veteran', u'specialist'] [u'govt', u'urg', u'kosciuszko', u'develop', u'plan'] [u'govt', u'urg', u'hasten', u'perman', u'water', u'suppli'] [u'govt', u'urg', u'indigen', u'communiti', u'polic'] [u'great', u'barrier', u'reef', u'world', u'healthiest', u'coral'] [u'green', u'energi', u'rise'] [u'hailstorm', u'caus', u'havoc', u'central', u'queensland'] [u'hawthorn', u'boss', u'peac', u'rebel'] [u'hend', u'scrap', u'school'] [u'high', u'hop', u'dogger', u'pest', u'number'] [u'hill', u'visit', u'indonesia'] [u'hoddl', u'take', u'wolv', u'manag'] [u'hunger', u'strike', u'fail', u'spark', u'baxter', u'asylum', u'review'] [u'indigen', u'polici', u'implement', u'criticis'] [u'inquest', u'spark', u'fisher', u'boost', u'safeti'] [u'rat', u'like', u'remain', u'unchang'] [u'ivori', u'coast', u'group', u'endors', u'peac', u'plan'] [u'judg', u'dismiss', u'cliff', u'collaps', u'damag', u'claim'] [u'juri', u'find', u'atsic', u'commission', u'guilti', u'defam'] [u'karzai', u'swear', u'afghan', u'leader'] [u'kosmina', u'lure', u'beltram', u'adelaid'] [u'labor', u'back', u'releas', u'hardi', u'document'] [u'langer', u'happi', u'miss', u'rawalpindi', u'express'] [u'latham', u'say', u'sorri', u'labor', u'voter'] [u'latham', u'warn', u'bicker'] [u'push', u'test', u'place'] [u'lennox', u'back', u'william', u'stop', u'klitschko'] [u'letter', u'bomber', u'await', u'court', u'decis'] [u'liber', u'accus', u'nation', u'pork', u'barrel'] [u'lightn', u'spark', u'nation', u'park', u'blaze'] [u'local', u'knowledg', u'seek', u'boost', u'break', u'hill', u'water'] [u'lonard', u'inelig', u'order', u'merit'] [u'loss', u'cost', u'australia', u'world', u'match'] [u'macarthur', u'cours', u'round', u'world', u'record'] [u'magistr', u'face', u'retrial', u'convict'] [u'hospit', u'dive', u'accid'] [u'injur', u'train', u'collid', u'tractor'] [u'argument', u'driver'] [u'manufactur', u'lead', u'econom', u'expans'] [u'manufactur', u'sector', u'skill', u'shortag', u'survey'] [u'mayor', u'caus', u'offenc', u'arafat', u'imperson'] [u'mayor', u'see', u'good', u'chang'] [u'melbourn', u'drench', u'overnight', u'storm'] [u'melbourn', u'storm', u'affect', u'transport', u'power'] [u'mexican', u'polic', u'chief', u'sack', u'lynch'] [u'mildura', u'leader', u'shed', u'light', u'solar', u'plan'] [u'miss', u'gerringong', u'safe'] [u'mitchel', u'stay', u'galleri', u'chief'] [u'council', u'worker', u'test', u'asbesto'] [u'motley', u'crue', u'reunit', u'world', u'tour'] [u'talk', u'industri', u'law', u'shake'] [u'unhappi', u'council', u'decis'] [u'murali', u'miss', u'zealand', u'tour'] [u'nativ', u'titl', u'proceed', u'faster', u'judg', u'say'] [u'canberra', u'polli', u'maiden', u'speech'] [u'farm', u'incom', u'forecast', u'promis', u'drought'] [u'poll', u'show', u'labor', u'support', u'wan'] [u'heat', u'respit', u'student'] [u'news', u'health', u'merger', u'cut'] [u'northern', u'japan', u'power', u'quak'] [u'parliament', u'approv', u'smoke'] [u'goanna', u'number', u'drop', u'cane', u'toad', u'arriv'] [u'price', u'rebound', u'fear', u'opec', u'output'] [u'opposit', u'disput', u'candid', u'evict'] [u'pakistan', u'win', u'toss', u'elect'] [u'parmalat', u'job', u'darwin'] [u'plan', u'marin', u'industri', u'precinct'] [u'attend', u'anzac', u'anniversari'] [u'polic', u'defend', u'action', u'catch', u'arsonist'] [u'polic', u'happi', u'seiz', u'hoon', u'car'] [u'polic', u'hunt', u'bowl', u'club', u'bandit'] [u'polic', u'probe', u'ballarat', u'vandal', u'attack'] [u'polic', u'probe', u'bathurst', u'woman', u'disappear'] [u'priest', u'guilti', u'teen', u'charg'] [u'probe', u'order', u'franc', u'search', u'explos'] [u'propaganda', u'text', u'reveal', u'phallus', u'tree'] [u'push', u'nation', u'drought', u'polici', u'decis'] [u'wool', u'industri', u'show', u'sign', u'recoveri'] [u'rain', u'pose', u'problem', u'farmer'] [u'rain', u'predict', u'central'] [u'rape', u'case', u'hear', u'condom', u'wrapper', u'bedroom'] [u'recycl', u'plant', u'cut', u'darwin', u'greenhous'] [u'remot', u'teacher', u'multi', u'media', u'boost'] [u'renew', u'gaza', u'fight', u'claim', u'victim'] [u'report', u'put', u'valu', u'region', u'tourism'] [u'resid', u'urg', u'turn', u'aircondition'] [u'restrict', u'lift', u'citrus', u'grower'] [u'retail', u'warn', u'soft', u'christma', u'sale'] [u'reward', u'launch', u'inform', u'miss', u'airman'] [u'reward', u'offer', u'case', u'murder'] [u'rich', u'countri', u'provid', u'relief', u'agenc'] [u'rumsfeld', u'say', u'stay'] [u'russia', u'reveal', u'missil', u'program'] [u'saddam', u'trial', u'iraq', u'poll', u'minist', u'say'] [u'salman', u'smash', u'centuri', u'pakistan'] [u'saudi', u'attack', u'show', u'terrorist'] [u'saudi', u'forc', u'mission', u'attack'] [u'saudi', u'blame', u'fallujah', u'brigad', u'embassi', u'attack'] [u'secur', u'tight', u'karzai', u'inaugur', u'loom'] [u'sentenc', u'increas', u'assault', u'pregnant', u'woman'] [u'seven', u'blast', u'report', u'spain', u'threat'] [u'abus', u'investig', u'resign'] [u'shanghai', u'lock', u'seven', u'year', u'moto', u'deal'] [u'singh', u'name', u'tour', u'player', u'year'] [u'skywest', u'accept', u'offshor', u'takeov'] [u'south', u'east', u'share', u'state', u'health', u'fund'] [u'speaker', u'refus', u'apologis', u'long', u'flag', u'incid'] [u'strong', u'back', u'age', u'care', u'centr'] [u'studi', u'highlight', u'rural', u'doctor', u'experi'] [u'veteran', u'interst', u'surgeri'] [u'test', u'begin', u'vex', u'malle', u'dump', u'site'] [u'texa', u'video', u'tour', u'win', u'turner', u'prize'] [u'think', u'control'] [u'rescu', u'moreton', u'boat', u'mishap'] [u'tink', u'accus', u'lobbi', u'offend'] [u'shop', u'get', u'longer', u'contract'] [u'tourism', u'industri', u'back', u'cane', u'toad', u'fight'] [u'townsvill', u'hous', u'market', u'tip', u'slow'] [u'train', u'track', u'storm'] [u'trucker', u'union', u'seek', u'revamp', u'forestri', u'contract'] [u'trucki', u'die', u'highway', u'crash'] [u'tulimbar', u'villag', u'hous', u'plan', u'releas'] [u'dead', u'rail', u'cross', u'crash'] [u'ukrain', u'leader', u'wont', u'sack', u'govt'] [u'ukrainian', u'foe', u'fail', u'reach', u'compromis'] [u'unemploy', u'rate', u'drop', u'southern'] [u'union', u'angri', u'cancel', u'china', u'talk'] [u'univers', u'sign', u'theft', u'disrupt', u'hawkin', u'tribut'] [u'honour', u'dame', u'joan', u'sutherland'] [u'market', u'close', u'lower', u'saudi', u'attack'] [u'resist', u'kyoto', u'talk', u'climat', u'summit', u'begin'] [u'vaughan', u'hint', u'zimbabw', u'stay', u'ban'] [u'ombudsman', u'examin', u'databas', u'abus', u'claim'] [u'viduka', u'doubl', u'sink', u'citi'] [u'volunt', u'thank', u'rescu', u'effort'] [u'liber', u'plan'] [u'warn', u'leav', u'comeback', u'open'] [u'watch', u'keep', u'park', u'fire'] [u'western', u'council', u'host', u'member'] [u'wildcat', u'king', u'singapor'] [u'wild', u'plan', u'near', u'complet'] [u'winter', u'harvest', u'near'] [u'consid', u'outsid', u'investor', u'expans'] [u'plan', u'uranium', u'train', u'darwin'] [u'world', u'urg', u'confront', u'root', u'caus', u'terror'] [u'zimbabw', u'get', u'femal', u'vice', u'presid'] [u'aborigin', u'artefact', u'cave', u'tasmania'] [u'accus', u'palm', u'rioter', u'custodi'] [u'catch', u'fresh', u'robbin', u'controversi'] [u'applebi', u'scott', u'defend', u'bore', u'golf'] [u'arab', u'isra', u'accus', u'spi', u'iran'] [u'artefact', u'tradit', u'owner'] [u'art', u'bodi', u'scrap', u'media', u'communiti', u'develop'] [u'aussi', u'prevail', u'thriller'] [u'australian', u'stock', u'close', u'lower'] [u'australia', u'push', u'victori'] [u'australia', u'recov', u'post'] [u'aust', u'strengthen', u'surveil', u'law'] [u'aust', u'spend', u'secur', u'embassi'] [u'author', u'consid', u'warn'] [u'bassendean', u'caus', u'traffic', u'delay'] [u'baxter', u'detaine', u'lip'] [u'bigger', u'babi', u'healthier', u'adult', u'studi'] [u'boag', u'open', u'packag', u'line'] [u'bushfir', u'inquiri', u'flare'] [u'busi', u'welcom', u'lake', u'entranc', u'reopen'] [u'businessman', u'seek', u'offset', u'alpin', u'probe'] [u'calvari', u'hospit', u'cleaner', u'strike'] [u'captiv', u'devil', u'insur', u'killer', u'diseas'] [u'central', u'town', u'lose', u'power', u'fierc', u'storm'] [u'chemic', u'compani', u'order', u'extend', u'grind', u'water'] [u'china', u'build', u'monument', u'unknown', u'mous'] [u'paint', u'bleak', u'pictur', u'iraq', u'report'] [u'coerciv', u'wit', u'protect', u'program', u'flaw'] [u'coulthard', u'test', u'bull', u'spain'] [u'council', u'give', u'motel', u'plan'] [u'council', u'give', u'rebat', u'water', u'friend', u'dishwash'] [u'council', u'rethink', u'jam', u'hardi'] [u'council', u'stick', u'coastal', u'ridegeway', u'option'] [u'council', u'decid', u'year', u'tram', u'extens'] [u'court', u'rule', u'put', u'defenc', u'drug', u'test', u'doubt'] [u'crematorium', u'seek', u'boost', u'bodi', u'process'] [u'definit', u'asthma', u'attack', u'unclear'] [u'develop', u'group', u'back', u'power', u'station', u'plan'] [u'diana', u'video', u'reveal', u'desir', u'flee', u'palac'] [u'dissent', u'calam', u'ann'] [u'downpour', u'need', u'restor', u'water', u'alloc'] [u'drainag', u'studi', u'determin', u'roadwork', u'impact'] [u'gippsland', u'blaze', u'near', u'control'] [u'employ', u'group', u'fear', u'emiss', u'trade', u'plan'] [u'energi', u'stock', u'fall', u'price', u'drop'] [u'game', u'wanga'] [u'offic', u'face', u'contempt', u'charg'] [u'fear', u'polit', u'threaten', u'ethanol', u'plan'] [u'ban', u'loom', u'south', u'west'] [u'flash', u'flood', u'busi'] [u'help', u'spread', u'meningococc'] [u'pastor', u'jail', u'abus'] [u'kookaburra', u'nomin', u'world', u'award'] [u'franc', u'move', u'lebanes', u'channel'] [u'free', u'public', u'transport', u'christma'] [u'fund', u'seek', u'perenjori', u'power', u'plan'] [u'ganguli', u'look', u'secur', u'fear'] [u'garrett', u'deliv', u'maiden', u'speech', u'parliament'] [u'ghost', u'sell', u'ebay'] [u'gillespi', u'remov', u'danger', u'cairn'] [u'gold', u'coast', u'flash', u'flood'] [u'gold', u'coast', u'mop', u'flash', u'flood'] [u'good', u'rain', u'fall', u'north', u'west'] [u'govt', u'accus', u'gag', u'indigen', u'council'] [u'govt', u'deni', u'indigen', u'council', u'gag'] [u'govt', u'investig', u'solar', u'power', u'uluru'] [u'govt', u'plan', u'land', u'clear', u'applic', u'shake'] [u'govt', u'promis', u'transpar', u'fuel', u'price'] [u'gracetown', u'famili', u'avoid', u'legal', u'bill'] [u'grazier', u'offer', u'parcel', u'land', u'avoid', u'jail'] [u'greek', u'farmer', u'uncov', u'roman', u'monument'] [u'group', u'call', u'constitut', u'chang', u'protect'] [u'gunmen', u'name', u'qaeda', u'strike', u'mission'] [u'hardi', u'want', u'annual', u'compens'] [u'hazard', u'item', u'remov', u'shop'] [u'healthi', u'reef', u'threat', u'loom'] [u'high', u'court', u'recognis', u'island', u'nativ', u'titl', u'right'] [u'sell', u'busi', u'chines', u'firm'] [u'idea', u'flow', u'save', u'ballarat', u'water', u'suppli'] [u'india', u'tour', u'secur', u'check'] [u'indigen', u'corp', u'want', u'fund', u'question', u'answer'] [u'indigen', u'educ', u'fund', u'chang', u'refer'] [u'insur', u'giant', u'face', u'massiv', u'payout', u'world'] [u'rat', u'stay', u'hold'] [u'investig', u'continu', u'gold', u'coast', u'shoot'] [u'launch', u'balco', u'probe'] [u'work', u'plant', u'open', u'rann'] [u'worker', u'face', u'uncertain', u'futur'] [u'worker', u'seek', u'assur', u'christma'] [u'iraq', u'head'] [u'italian', u'polic', u'swoop', u'napl', u'mafia'] [u'itali', u'scala', u'reopen', u'sparkl', u'gala'] [u'kalgoorli', u'expect', u'bumper', u'christma', u'trade'] [u'knocker', u'threaten', u'bendigo', u'sign'] [u'labor', u'potenti', u'leader', u'lawrenc'] [u'labor', u'prepar', u'continu', u'pressur', u'hawker'] [u'labor', u'slam', u'tuckey', u'hardi', u'comment'] [u'labor', u'turn', u'amateur', u'hour'] [u'leak', u'document', u'highlight', u'health', u'author', u'fund'] [u'lockyer', u'webck', u'tour', u'think'] [u'locust', u'hatch', u'wan'] [u'lonard', u'inelig', u'order', u'merit'] [u'lower', u'speed', u'bundaberg'] [u'releas', u'today'] [u'walk', u'free'] [u'magistr', u'dismiss', u'industri', u'manslaught', u'case'] [u'council', u'announc'] [u'die', u'tractor', u'accid'] [u'fin', u'forest', u'tree', u'clear'] [u'injur', u'hous'] [u'jail', u'attempt', u'murder', u'wife'] [u'rescu', u'trap', u'tractor'] [u'shoot', u'gold', u'coast'] [u'court', u'anim', u'cruelti', u'charg'] [u'mayor', u'talk', u'thuringowa', u'technic', u'colleg'] [u'mcewen', u'warn', u'tour', u'rival'] [u'readi', u'box', u'test'] [u'meet', u'canva', u'gate', u'stock', u'grid', u'plan'] [u'miner', u'energi', u'export'] [u'minist', u'acknowledg', u'mental', u'health', u'servic'] [u'minist', u'lash', u'nation', u'newspap'] [u'minist', u'shed', u'light', u'power', u'spend'] [u'minist', u'delay', u'grant'] [u'racist', u'citi', u'ink', u'harmoni', u'deal'] [u'lofti', u'power', u'woe', u'investig'] [u'murder', u'get', u'life', u'sentenc', u'reduc'] [u'nativ', u'titl', u'right', u'recognis', u'torr', u'strait'] [u'agreement', u'bolster', u'indigen', u'mine', u'relat'] [u'indigen', u'bodi', u'meet'] [u'smoke', u'law', u'pass', u'upper', u'hous'] [u'ningaloo', u'reef', u'manag', u'get', u'thumb'] [u'ireland', u'deal', u'hing', u'disarma'] [u'delay', u'bruce', u'highway', u'roadwork'] [u'north', u'coast', u'record', u'higher', u'averag', u'cancer', u'rate'] [u'govt', u'wont', u'oppos', u'uranium', u'train', u'trial'] [u'octob', u'home', u'loan', u'approv', u'fall'] [u'olymp', u'plan', u'prompt', u'uranium', u'transport', u'fear'] [u'opposit', u'expos', u'airport', u'secur', u'breach'] [u'orang', u'await', u'dentist'] [u'overnight', u'recreat', u'fish', u'ban'] [u'pakistan', u'test', u'second', u'nuclear', u'capabl', u'missil'] [u'piraci', u'investig', u'raid', u'jukebox', u'warehous'] [u'plan', u'continu', u'altern', u'rescu', u'chopper'] [u'plan', u'forum', u'hear', u'bunburi', u'scheme', u'appeal'] [u'plan', u'address', u'pilbara', u'youth', u'servic'] [u'back', u'hous', u'speaker'] [u'defend', u'public', u'servant', u'kelli', u'grant', u'affair'] [u'court', u'hear', u'challeng', u'immun', u'aust'] [u'polic', u'hunt', u'suspect', u'gold', u'coast', u'shoot'] [u'polic', u'investig', u'death', u'boot'] [u'polic', u'probe', u'riverina', u'rail', u'death'] [u'polic', u'warn', u'revel', u'drink', u'spike', u'danger'] [u'porto', u'stay', u'aliv', u'late', u'goal', u'arsenal', u'stroll'] [u'postman', u'hoard', u'letter'] [u'post', u'mortem', u'bowen', u'bodi'] [u'pressur', u'lonard', u'titl', u'allenbi'] [u'priest', u'convict', u'spark', u'appoint'] [u'probe', u'find', u'cadet', u'drug'] [u'properti', u'market', u'strong', u'architect'] [u'protea', u'cap', u'face', u'england'] [u'public', u'servant', u'blame', u'kelli', u'letter', u'controversi'] [u'govt', u'urg', u'boost', u'weed', u'control', u'fund'] [u'qpws', u'review', u'fraser', u'sign', u'tourist', u'death'] [u'racv', u'cast', u'doubt', u'fuel', u'reform', u'plan'] [u'rapper', u'kany', u'west', u'star', u'lead', u'grammi', u'nomine'] [u'report', u'highlight', u'hospit', u'posit'] [u'report', u'show', u'increas', u'school', u'absente'] [u'resid', u'fuel', u'kaniva', u'petrol', u'station', u'plan'] [u'saddam', u'loyalist', u'direct', u'insurg', u'syria'] [u'sadist', u'paedophil', u'abus', u'state', u'ward', u'inquiri'] [u'salman', u'press', u'test', u'case'] [u'salvo', u'seek', u'christma', u'gift', u'donat'] [u'jail', u'valley', u'stab'] [u'state', u'care', u'abus', u'inquiri', u'begin'] [u'scientist', u'develop', u'rapid', u'bird', u'test'] [u'scientist', u'salmon', u'take', u'sein', u'rout'] [u'scot', u'snare', u'world', u'eleph', u'polo', u'titl'] [u'scrap', u'metal', u'continu', u'burn'] [u'secur', u'concern', u'rais', u'propos', u'famili'] [u'secur', u'council', u'dismiss', u'annan', u'resign', u'call'] [u'sever', u'weather', u'warn', u'western'] [u'sign', u'waiver', u'cost', u'abus', u'victim', u'medicar'] [u'skipper', u'face', u'rbts'] [u'smart', u'add', u'crow', u'board'] [u'spotlight', u'fall', u'mayor', u'general', u'manag', u'relat'] [u'storm', u'leav', u'wide', u'burnett', u'resid', u'dark'] [u'studi', u'reveal', u'speci', u'live', u'water'] [u'support', u'separ', u'telstra', u'wholesal', u'busi'] [u'surpris', u'drop', u'consum', u'confid'] [u'survey', u'assess', u'possibl', u'wallaroo', u'declin'] [u'taliban', u'rank', u'file', u'heed', u'arm', u'amnesti'] [u'major', u'reach', u'norman', u'admit'] [u'toothless', u'let', u'cheat', u'hook'] [u'record', u'higher', u'popul', u'growth'] [u'torr', u'strait', u'singer', u'die'] [u'tougher', u'action', u'need', u'illeg', u'fish', u'labor'] [u'tuckey', u'tell', u'stop', u'pick', u'hardi'] [u'tweed', u'council', u'probe', u'begin', u'soon'] [u'teacher', u'sack', u'misconduct'] [u'ukrain', u'turmoil', u'agreement', u'crumbl'] [u'ukrain', u'parliament', u'break', u'elect', u'deadlock'] [u'union', u'air', u'fear', u'trucki', u'drive', u'condit'] [u'union', u'expect', u'labor', u'stand', u'firm', u'worker', u'right'] [u'union', u'fear', u'plan', u'close', u'hospit'] [u'union', u'govt', u'save', u'job'] [u'union', u'shock', u'asbesto', u'exposur', u'extent'] [u'union', u'threaten', u'industri', u'woe', u'hospit'] [u'union', u'vow', u'fight', u'save', u'job'] [u'death', u'toll', u'mount', u'iraqi', u'elect', u'near'] [u'document', u'report', u'abus', u'iraq', u'prison'] [u'hous', u'pass', u'intellig', u'reform'] [u'marin', u'claim', u'unit', u'kill', u'iraqi', u'civilian'] [u'sailor', u'stand', u'trial', u'rape', u'charg'] [u'south', u'korea', u'press', u'nuclear', u'talk'] [u'vandal', u'attack', u'memori'] [u'venabl', u'specul', u'ploy', u'jet'] [u'crime', u'suspect', u'karadz', u'surrend'] [u'weather', u'bureau', u'warn', u'thunderstorm'] [u'get', u'darfur'] [u'fund', u'crisi', u'put', u'sudanes', u'refuge', u'risk'] [u'wildlif', u'group', u'disagre', u'devil', u'plan'] [u'wit', u'call', u'tenterden', u'inquest'] [u'woolmer', u'say', u'pakistan', u'readi', u'field', u'team'] [u'worker', u'overhaul', u'age', u'care'] [u'boost', u'plan', u'wine', u'firm'] [u'abbott', u'dismiss', u'offici', u'claim', u'uneth'] [u'aborigin', u'offer', u'fuel', u'exchang', u'wash'] [u'seek', u'clarifi', u'fit', u'plead', u'law'] [u'director', u'surpris', u'departur'] [u'alleg', u'moran', u'hitman', u'name'] [u'alleg', u'hama', u'funder', u'order', u'kill'] [u'allenbi', u'make', u'earli', u'master', u'run'] [u'alli', u'engin', u'lay', u'worker'] [u'ancient', u'roman', u'artefact', u'steal'] [u'architect', u'want', u'mall', u'retain', u'focal', u'point'] [u'court', u'asia'] [u'auditor', u'general', u'concern', u'rugbi', u'world'] [u'aussi', u'unleash', u'prong', u'pace', u'attack'] [u'aust', u'dollar', u'dive', u'greenback', u'ralli'] [u'product', u'remain'] [u'barghouti', u'offer', u'withdraw', u'elect', u'nomin'] [u'chief', u'larger', u'share', u'stake'] [u'british', u'helicopt', u'carri', u'plung'] [u'broadband', u'subscript', u'doubl', u'month'] [u'brothel', u'owner', u'defend', u'billboard'] [u'busi', u'welcom', u'plan', u'canberra'] [u'butler', u'talk', u'difficult', u'day', u'governor'] [u'chamber', u'back', u'scienc', u'technolog', u'precinct'] [u'church', u'goer', u'face', u'lockout'] [u'church', u'leader', u'decri', u'celebr', u'worship'] [u'clijster', u'australian', u'open'] [u'clijster', u'hope', u'australian', u'open'] [u'candid', u'expel', u'indigen', u'communiti'] [u'compani', u'back', u'mildura', u'region', u'solar', u'citi', u'push'] [u'council', u'dementia', u'project', u'fund'] [u'council', u'vote', u'dump', u'tip'] [u'crew', u'battl', u'chemic', u'warehous'] [u'critic', u'gene', u'fight'] [u'detaine', u'urg', u'abandon', u'rooftop', u'protest'] [u'discoveri', u'coast', u'high', u'speed', u'internet', u'boost'] [u'dissent', u'labor', u'expel', u'union'] [u'code', u'reveal', u'chicken', u'odyssey'] [u'fight', u'caus', u'death'] [u'dwyer', u'crown', u'world', u'best', u'player'] [u'elect', u'surgeri', u'wait', u'list', u'fall', u'hunter'] [u'road', u'drink', u'driver'] [u'excav', u'uncov', u'histor', u'hotel', u'remain'] [u'expert', u'monitor', u'crazi', u'impact'] [u'famili', u'earlier', u'board', u'school', u'allow'] [u'fear', u'holiday', u'season', u'fuel', u'petrol', u'price', u'rise'] [u'feder', u'fund', u'leve', u'work'] [u'kill', u'shoot', u'heavi', u'metal'] [u'palestinian', u'kill', u'cross', u'gaza', u'egypt', u'border'] [u'player', u'fan', u'charg', u'brawl'] [u'forest', u'raid', u'weed', u'cannabi', u'haul'] [u'forgac', u'employe', u'work'] [u'admit', u'disclos', u'confidenti'] [u'sixer', u'avoid', u'jail'] [u'fuel', u'deal', u'idea', u'communiti', u'say'] [u'fund', u'crisi', u'cost', u'montreal', u'world', u'swim', u'titl'] [u'fund', u'seek', u'servic', u'trial'] [u'fund', u'seek', u'boost', u'hour', u'women', u'refug'] [u'fund', u'sustain', u'farm'] [u'belli', u'torvil', u'dean'] [u'galleri', u'offer', u'reward', u'boyd', u'paint', u'return'] [u'giant', u'move', u'closer', u'yuko', u'purchas'] [u'govt', u'ask', u'extend', u'world', u'heritag', u'area'] [u'govt', u'ask', u'provid', u'region', u'free', u'game'] [u'govt', u'direct', u'pacif', u'govern', u'secur'] [u'govt', u'offer', u'opposit', u'biosecur', u'brief'] [u'govt', u'reject', u'einem', u'prison', u'sexual', u'abus', u'claim'] [u'govt', u'resist', u'call', u'enter', u'jam', u'hardi', u'talk'] [u'govt', u'fibr', u'optic', u'technolog'] [u'govt', u'urg', u'continu', u'drought'] [u'graduat', u'flick'] [u'hamm', u'retir', u'greatest', u'women', u'player'] [u'hatton', u'sight', u'oliveira', u'tszyu'] [u'hayden', u'doubt', u'hamstr', u'strain'] [u'hayden', u'gabba', u'dayer'] [u'health', u'author', u'play', u'vmos', u'survey'] [u'health', u'servic', u'record', u'budget', u'deficit'] [u'homemad', u'plan', u'ground', u'wake', u'fatal', u'accid'] [u'hospit', u'staff', u'expect', u'face', u'disciplinari', u'action'] [u'hugh', u'lead', u'rain', u'mar', u'master'] [u'hundr', u'join', u'march', u'palm', u'island', u'death'] [u'india', u'clear', u'play', u'chittagong'] [u'inquiri', u'find', u'unfair', u'deal', u'centenari'] [u'inquiri', u'find', u'mislead', u'public', u'children'] [u'alburi', u'plant', u'sell', u'soon'] [u'asset', u'sell', u'begin'] [u'japan', u'extend', u'iraq', u'deploy'] [u'jellyfish', u'robot', u'practic', u'beauti'] [u'lag', u'applebi', u'master', u'assault'] [u'jobless', u'rate', u'fall', u'histor'] [u'journalist', u'condemn', u'cut'] [u'juri', u'find', u'guilti', u'mildura', u'murder'] [u'kasper', u'gabba'] [u'kidman', u'rank', u'number', u'dollar', u'stake'] [u'killer', u'provoc', u'defenc', u'spark', u'outcri'] [u'labor', u'take', u'kelli', u'parliament', u'wind'] [u'landhold', u'warn', u'flood', u'threat'] [u'landslid', u'survivor', u'rescu', u'day'] [u'region', u'ambul', u'communic', u'centr'] [u'latham', u'remain', u'oppos', u'awa'] [u'latham', u'want', u'branch', u'stack', u'issu', u'deal'] [u'leak', u'part', u'close', u'timor', u'oilfield'] [u'lewi', u'bushrang'] [u'long', u'wait', u'factori', u'blast', u'settlement'] [u'die', u'nimbin', u'road', u'crash'] [u'damag', u'payout', u'accid'] [u'asylum', u'seeker', u'scar', u'detent', u'report'] [u'market', u'drop', u'straight'] [u'mayor', u'defend', u'reduc', u'councillor', u'number'] [u'mccullum', u'styri', u'guilti', u'conduct', u'breach'] [u'mcgrath', u'danger', u'say', u'pakistan', u'yousuf'] [u'meet', u'discuss', u'bendigo', u'bank', u'redevelop'] [u'arrest', u'hair', u'beauti', u'arson', u'attack'] [u'merger', u'spark', u'childcar', u'price', u'rise', u'warn'] [u'miner', u'industri', u'tip', u'growth'] [u'mine', u'honour', u'safeti', u'effort'] [u'minist', u'reveal', u'teacher', u'sack'] [u'fund', u'wild', u'fight'] [u'properti', u'evacu', u'chemic'] [u'australian', u'health', u'improv', u'indigen'] [u'move', u'properti', u'drug', u'arrest'] [u'lament', u'timet', u'highway', u'work'] [u'worri', u'desalin', u'plant', u'futur'] [u'mutual', u'oblig', u'work', u'chief'] [u'mysteri', u'whale', u'song', u'baffl', u'biologist'] [u'nato', u'avoid', u'high', u'level', u'contact', u'ukrain'] [u'nato', u'russia', u'joint', u'appeal', u'fair', u'ukrain', u'poll'] [u'ncoss', u'worri', u'disabl', u'disput', u'impact'] [u'chief', u'maroochi', u'shire'] [u'drug', u'help', u'prevent', u'breast', u'cancer', u'relaps'] [u'law', u'tackl', u'truck', u'industri', u'safeti'] [u'mayor', u'put', u'focus', u'popul'] [u'mayor', u'maintain', u'bypass', u'push'] [u'newmont', u'execut', u'face', u'court', u'indonesia'] [u'rule', u'crackdown', u'violenc', u'health'] [u'irish', u'deal', u'stall', u'arm', u'photo'] [u'promis', u'shorter', u'tour'] [u'test', u'refere', u'interchang'] [u'govt', u'predict', u'volatil', u'hous', u'market'] [u'ombudsman', u'slam', u'doc', u'childhood', u'death'] [u'offer', u'reward', u'cane', u'toad', u'trap'] [u'recognis', u'partnership'] [u'offic', u'quit', u'escap', u'mickelberg', u'case'] [u'offic', u'investig', u'caus', u'chemic'] [u'oyster', u'leas', u'inspect', u'high', u'tech'] [u'paedophil', u'guilti', u'greenacr', u'assault'] [u'pakistan', u'shaki'] [u'pakistan', u'unconvinc'] [u'palestinian', u'elect', u'nomin', u'drop'] [u'palm', u'island', u'fail', u'bail'] [u'palm', u'ralli', u'peac', u'organis'] [u'panther', u'club', u'benefit', u'report'] [u'parent', u'urg', u'rememb', u'water', u'safeti'] [u'parliament', u'call', u'year', u'christma', u'wish'] [u'parliament', u'pass', u'govt', u'elect', u'promis'] [u'pirat', u'taipan', u'newcastl'] [u'admit', u'kelli', u'breach', u'code', u'conduct'] [u'back', u'push', u'encourag', u'indigen', u'land'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'investig', u'virgin', u'luggag', u'disappear'] [u'polic', u'keen', u'interview', u'hope', u'shoot', u'victim'] [u'polic', u'recov', u'bodi', u'flood'] [u'polic', u'releas', u'man', u'descript', u'attempt'] [u'polic', u'rescu', u'women', u'flood', u'road'] [u'pont', u'prais', u'brave', u'harri'] [u'music', u'icon', u'dick', u'clark', u'suffer', u'stroke'] [u'power', u'plan', u'wind', u'high', u'countri'] [u'prawn', u'fisher', u'look', u'rain'] [u'publican', u'remind', u'loom', u'smoke', u'ban'] [u'public', u'patienc', u'urg', u'sewerag', u'work'] [u'scrutini', u'spirit', u'measur'] [u'pygmi', u'chimpanze', u'brink', u'extinct'] [u'polic', u'alert', u'media', u'internet'] [u'real', u'liverpool', u'reach', u'champion', u'leagu'] [u'cross', u'meet', u'offici', u'detent'] [u'redknapp', u'join', u'club', u'arch', u'enemi'] [u'region', u'petrol', u'station', u'urg', u'pass', u'cheaper'] [u'report', u'give', u'thumb', u'hunter', u'coal', u'mine'] [u'resid', u'grid', u'gate'] [u'riverland', u'winemak', u'look', u'german', u'opportun'] [u'robinson', u'deni', u'indigen', u'bodi', u'miss', u'fund'] [u'ruddock', u'foreshadow', u'terror', u'law'] [u'sakata', u'factori', u'worker', u'expect', u'strike'] [u'jobless', u'rate', u'hit', u'record'] [u'seafood', u'group', u'plan', u'joint', u'effort'] [u'sermanni', u'return', u'coach', u'matilda'] [u'servic', u'spark', u'daniel', u'morecomb', u'call'] [u'demand', u'coast', u'downpour'] [u'sharon', u'defend', u'isra', u'armi', u'despit', u'civilian', u'death'] [u'silverston', u'secur', u'grand', u'prix', u'deal'] [u'smoke', u'cut', u'studi'] [u'snow', u'remain', u'treasuri', u'head'] [u'stanhop', u'criticis', u'govt', u'indigen', u'deal'] [u'state', u'fund', u'art', u'centr'] [u'stockland', u'residenti', u'properti'] [u'storm', u'affect', u'locust', u'fight'] [u'storm', u'toll', u'riverland'] [u'storm', u'wreak', u'havoc', u'melbourn'] [u'student', u'special', u'need', u'benefit'] [u'student', u'wont', u'appeal', u'deport', u'order'] [u'sydney', u'sign', u'marathon', u'great'] [u'sydney', u'unit', u'sign', u'marathon', u'great'] [u'tasmanian', u'wait', u'longest', u'elect', u'surgeri'] [u'teenag', u'young', u'warn', u'laptop', u'health', u'risk'] [u'tender', u'call', u'hervey', u'airport', u'work'] [u'thoma', u'reward', u'sport', u'inspir'] [u'arrest', u'york', u'racism', u'probe'] [u'traine', u'specialist', u'head', u'tamworth'] [u'transit', u'centr', u'ramp'] [u'troop', u'cheer', u'south', u'korean', u'presid', u'surpris', u'visit'] [u'trucki', u'threaten', u'action'] [u'union', u'support', u'teacher', u'code', u'conduct'] [u'commit', u'stronger', u'tie', u'india'] [u'congress', u'give', u'final', u'approv', u'intellig'] [u'congress', u'pass', u'intellig', u'reform'] [u'fight', u'geneva', u'protect', u'guantanamo', u'detaine'] [u'iraq', u'pledg', u'fund', u'rebuild', u'fallujah'] [u'soldier', u'punish', u'iraqi', u'prison', u'stun'] [u'troop', u'complaint', u'rumsfeld'] [u'vanston', u'defend', u'ask', u'aborigin', u'wash', u'fuel'] [u'govt', u'urg', u'releas', u'health', u'servic', u'report'] [u'ombudsman', u'suppress', u'report', u'region', u'health'] [u'warrior', u'expos', u'pakistani', u'batsmen'] [u'western', u'power', u'stand', u'inquest', u'effort'] [u'weather', u'put', u'gabba', u'match', u'doubt'] [u'wilkinson', u'weekend', u'comeback'] [u'william', u'question', u'klitschko', u'fight', u'spirit'] [u'wind', u'farm', u'promis', u'cost', u'cut', u'west', u'firm'] [u'predict', u'record', u'profit'] [u'say', u'move', u'busi', u'usual'] [u'wodonga', u'guilti', u'stab', u'murder'] [u'woman', u'die', u'cross', u'flood', u'creek'] [u'woman', u'lose', u'appeal', u'jail', u'sentenc'] [u'boost', u'centr'] [u'aaco', u'purchas', u'aim', u'domest', u'market'] [u'aborigin', u'skull', u'cast', u'return', u'tasmania'] [u'actu', u'head', u'lead', u'intern', u'union', u'bodi'] [u'adelaid', u'brace', u'storm'] [u'adler', u'fail', u'delay', u'crimin', u'trial'] [u'declar', u'rent', u'case', u'close'] [u'demand', u'answer', u'tourism', u'grant'] [u'amnesti', u'want', u'nation', u'plan', u'fight', u'domest'] [u'assess', u'secur', u'artefact', u'theft'] [u'arm', u'bandit', u'target', u'bottleshop'] [u'climb', u'amid', u'news', u'corp', u'rumour'] [u'ballarat', u'enrol', u'rise'] [u'bash', u'victim', u'famili', u'plead', u'inform'] [u'beatti', u'reject', u'ambul', u'levi', u'protest'] [u'beef', u'produc', u'extend', u'drought'] [u'black', u'cap', u'richardson', u'retir'] [u'bodi', u'believ', u'flood', u'victim'] [u'bomb', u'kill', u'pakistani', u'citi'] [u'bomb', u'scare', u'increas', u'taiwan', u'elect', u'tension'] [u'brisban', u'weather', u'rain', u'chappel', u'hadle', u'parad'] [u'british', u'safe', u'silverston'] [u'brumbi', u'open', u'gippsland', u'wineri', u'galleri'] [u'bullet', u'freeman', u'wright', u'deni', u'rift'] [u'bush', u'administr', u'back', u'annan'] [u'bush', u'defend', u'soldier', u'right', u'question', u'rumsfeld'] [u'bush', u'finalis', u'cabinet'] [u'busi', u'urg', u'hold', u'respons', u'christma'] [u'cabl', u'mishap', u'cut', u'phone', u'servic'] [u'indigen', u'recognit', u'constitut'] [u'calvari', u'nurs', u'urg', u'remain'] [u'canadian', u'court', u'pave', u'marriag'] [u'capit', u'good'] [u'cathol', u'bodi', u'call', u'baxter', u'protest'] [u'central', u'aust', u'artist', u'featur', u'interst'] [u'centrelink', u'investig', u'raid'] [u'chang', u'plan', u'supermarket', u'develop'] [u'chappel', u'hadle', u'decid', u'call'] [u'charg', u'lay', u'year', u'murder', u'case'] [u'cheech', u'chong', u'unit', u'art', u'festiv'] [u'chelsea', u'form', u'break', u'arsenal', u'jinx'] [u'china', u'accid', u'kill'] [u'church', u'youth', u'leader', u'jail', u'abus'] [u'clark', u'bolling', u'blue'] [u'communiti', u'brief', u'power', u'station', u'plan'] [u'condamin', u'bell', u'icon'] [u'council', u'air', u'drainag', u'delay', u'woe'] [u'council', u'look', u'fuel', u'spill', u'perpetr'] [u'council', u'push', u'hous', u'power', u'plan'] [u'council', u'seek', u'remov', u'shellharbour', u'tent', u'embassi'] [u'council', u'consid', u'wind', u'farm', u'plan'] [u'council', u'consid', u'lismor', u'brothel', u'plan'] [u'crech', u'care', u'shop', u'hubbi'] [u'crewmen', u'bodi', u'british', u'helicopt'] [u'crew', u'keep', u'busi', u'storm', u'lash'] [u'crocodil', u'hunter', u'win', u'tourism', u'gong'] [u'crowd', u'protest', u'aborigin', u'death', u'custodi'] [u'crowd', u'say', u'transit', u'centr', u'sale'] [u'dallaglio', u'eager', u'lion'] [u'doc', u'defend', u'handl', u'child', u'abus', u'case'] [u'doctor', u'close', u'book', u'patient'] [u'domest', u'tourist', u'spend'] [u'doomadge', u'bodi', u'releas', u'burial'] [u'drought', u'boost', u'eastern', u'malle', u'farmer'] [u'drown', u'spark', u'beach', u'safeti', u'warn'] [u'eidsvold', u'council', u'timber', u'suppli', u'concern'] [u'england', u'compound', u'south', u'africa', u'miseri'] [u'esten', u'kilroy', u'share', u'human', u'right', u'medal'] [u'invit', u'boost', u'embattl', u'chief'] [u'exclus', u'link', u'cours', u'open', u'tasmania'] [u'emerald', u'mayor', u'get', u'local', u'govt', u'spot'] [u'exhibit', u'pay', u'tribut', u'foodi'] [u'explos', u'trap', u'chines', u'miner'] [u'fair', u'zimbabw', u'elect', u'requir', u'judici', u'reform'] [u'farmer', u'happi', u'latest', u'drench'] [u'farmer', u'urg', u'monitor', u'mous', u'number'] [u'fear', u'govt', u'tape', u'hurt', u'farmer'] [u'flood', u'toll', u'north', u'west'] [u'govt', u'hold', u'account', u'leas'] [u'harri', u'scarf', u'boss', u'stand', u'trial'] [u'oper'] [u'foster', u'offload', u'properti', u'compani'] [u'fuel', u'deal', u'damag', u'indigen', u'relat'] [u'fund', u'help', u'impact', u'hedland', u'plant'] [u'furnitur', u'school', u'beat', u'futur'] [u'game', u'mark', u'year', u'alic', u'basebal', u'group'] [u'govt', u'accus', u'intellig', u'cover'] [u'govt', u'cast', u'doubt', u'hick', u'abus', u'claim'] [u'govt', u'releas', u'tugun', u'bypass', u'draft'] [u'govt', u'accus', u'fail', u'deliv', u'children'] [u'govt', u'support', u'network', u'referr'] [u'govt', u'urg', u'slow', u'develop', u'approv'] [u'hawk', u'suffer', u'second', u'straight', u'loss'] [u'health', u'merger', u'worri'] [u'health', u'plan'] [u'inquiri', u'chairman', u'stand', u'dissent', u'motion'] [u'hick', u'detail', u'abus', u'claim'] [u'high', u'hop', u'rain', u'boost', u'rambutan', u'crop'] [u'howard', u'dismiss', u'scrafton', u'inquiri', u'find'] [u'hugh', u'lead', u'allenbi', u'melbourn'] [u'indigen', u'council', u'head', u'hit', u'mutual'] [u'indigen', u'leader', u'prais', u'polic', u'effort'] [u'industri', u'estat', u'hous', u'work', u'depot'] [u'inquiri', u'back', u'armi', u'intellig', u'failur', u'claim'] [u'iraqi', u'shiit', u'exclud', u'sadr', u'elect', u'allianc'] [u'isra', u'strike', u'target', u'gaza', u'milit', u'home'] [u'japan', u'make', u'protest', u'chines', u'ship'] [u'japan', u'revis', u'defenc', u'guidelin'] [u'karzai', u'declar', u'jihad', u'poppi', u'cultiv'] [u'kashmiri', u'polic', u'detain', u'right', u'protest'] [u'katherin', u'resid', u'warn', u'vote'] [u'killer', u'whale', u'hamper', u'fishermen'] [u'king', u'call', u'progress', u'tour'] [u'offer', u'domest', u'violenc', u'educ'] [u'landcar', u'group', u'weed', u'bush', u'pest'] [u'lawrenc', u'demand', u'action', u'branch', u'stack'] [u'replac', u'batsman', u'perth', u'test'] [u'likud', u'hold', u'vote', u'israel'] [u'liverpool', u'millwal', u'charg', u'crowd', u'troubl'] [u'liverpool', u'gerrard'] [u'local', u'govt', u'keep', u'check', u'minist'] [u'local', u'winemak', u'win', u'export', u'gong'] [u'accus', u'slaveri', u'grant', u'bail'] [u'fin', u'eski', u'cannabi', u'crop'] [u'jail', u'abalon', u'poach'] [u'win', u'compens', u'infect'] [u'marin', u'hostag', u'charg', u'desert'] [u'gibson', u'buy', u'person', u'pacif', u'island', u'report'] [u'metal', u'industri', u'welcom', u'increas', u'tafe', u'place'] [u'west', u'focus', u'secur', u'telescop'] [u'minist', u'hear', u'lake', u'cathi', u'school'] [u'minist', u'notch', u'travel', u'expens'] [u'minist', u'urg', u'state', u'forest', u'plan'] [u'fire', u'broadsid', u'bendigo', u'licenc'] [u'nato', u'agre', u'boost', u'iraq', u'train', u'forc'] [u'netbal', u'pay', u'bonus', u'beat', u'silver', u'fern'] [u'hous', u'rep', u'speaker', u'heavi', u'scrutini'] [u'nhulunbuy', u'attempt', u'rape', u'convict', u'quash'] [u'nolan', u'stepdaught', u'lose', u'fight', u'paint'] [u'governor', u'undergo', u'surgeri'] [u'driver', u'ignor', u'road', u'safeti', u'messag', u'polic'] [u'opposit', u'grow', u'highway', u'plan'] [u'opposit', u'question', u'govt', u'school', u'retent', u'figur'] [u'rat', u'flow', u'council', u'coffer'] [u'pakistani', u'cleric', u'face', u'hundr', u'child', u'abus'] [u'pakistan', u'rope', u'tour', u'match'] [u'pathan', u'scalp', u'bangladesh', u'fall', u'cheapli'] [u'path', u'clear', u'bendigo', u'bank', u'redevelop'] [u'pearc', u'put', u'hand', u'citi'] [u'perth', u'melbourn', u'super', u'decis', u'today'] [u'perth', u'host', u'super', u'team'] [u'philippin', u'rescu', u'worker', u'halt', u'search'] [u'plan', u'put', u'focus', u'flood', u'prone', u'land'] [u'play', u'chanc', u'recess'] [u'polic', u'station', u'upgrad', u'pledg'] [u'polic', u'hunt', u'bottleshop', u'knife', u'bandit'] [u'polic', u'involv', u'shoot', u'return', u'clean', u'drug', u'test'] [u'polic', u'pleas', u'station', u'revamp', u'plan'] [u'polic', u'probe', u'urg', u'sack', u'hospit', u'board'] [u'polic', u'releas', u'photo', u'suspect', u'coast', u'shoot'] [u'polic', u'search', u'escape'] [u'polic', u'sight', u'drink', u'driver'] [u'polic', u'station', u'facelift'] [u'polic', u'tackl', u'sloppi', u'driver'] [u'psychologist', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'public', u'remind', u'cast', u'vote', u'kingaroy'] [u'push', u'boost', u'region', u'dentist', u'number'] [u'campaign', u'target', u'young', u'male', u'driver'] [u'race', u'club', u'har', u'fund'] [u'rain', u'news', u'stone', u'fruit', u'grower'] [u'rain', u'delay', u'start', u'decid'] [u'rain', u'doesnt', u'stop', u'water', u'ban'] [u'rain', u'help', u'boost', u'local', u'reservoir'] [u'rain', u'leav', u'eastern', u'central', u'australia', u'awash'] [u'rann', u'frustrat', u'anti', u'hoon', u'complaint'] [u'rejuven', u'hugh', u'grab', u'master', u'jump'] [u'resid', u'extend', u'recycl', u'option'] [u'resid', u'push', u'birth', u'servic', u'return'] [u'rickett', u'oust', u'power', u'pakistan', u'open', u'squash'] [u'rift', u'deni', u'bullet', u'freeman'] [u'riverland', u'avoid', u'major', u'storm', u'incid'] [u'road', u'safeti', u'crackdown', u'begin'] [u'roam', u'hippo', u'final', u'captur'] [u'robert', u'defend', u'commission', u'mint', u'swindl'] [u'rural', u'famili', u'group', u'get', u'fund', u'boost'] [u'schwab', u'head', u'match', u'review', u'committe'] [u'schwab', u'head', u'revamp', u'match', u'review', u'committe'] [u'scout', u'hall', u'sale', u'draw', u'mayor', u'anger'] [u'search', u'continu', u'woman', u'flood', u'mishap'] [u'seven', u'nomin', u'preseason', u'draft'] [u'seventh', u'person', u'arrest', u'hair', u'beauti', u'arson'] [u'sharon', u'invit', u'labour', u'coalit', u'talk'] [u'sharon', u'win', u'likud', u'vote'] [u'slow', u'start', u'turtl', u'lay', u'season'] [u'soldier', u'home', u'east', u'timor'] [u'south', u'australia', u'toughen', u'child', u'protect', u'law'] [u'spiritu', u'spam', u'make', u'inbox'] [u'steelwork', u'clean', u'plan'] [u'storm', u'pelt', u'melbourn'] [u'sunshin', u'coast', u'rain', u'return'] [u'super', u'size', u'astronaut', u'food', u'suppli'] [u'sydney', u'hold', u'northern', u'iraq'] [u'tafe', u'teacher', u'withhold', u'exam', u'result'] [u'tafe', u'wage', u'deal', u'seal'] [u'petrol', u'price', u'queri', u'wake', u'market'] [u'tast', u'tasmania', u'festiv', u'offer', u'flavour'] [u'milit', u'wound', u'isra', u'strike'] [u'tindal', u'miss', u'start', u'nation'] [u'torr', u'strait', u'island', u'return', u'indigen'] [u'tourist', u'spend', u'alic', u'spring'] [u'tractor', u'train', u'crash', u'spark', u'train', u'review'] [u'trade', u'deficit', u'widen'] [u'trawler', u'oper', u'hope', u'fuel', u'respit'] [u'trio', u'appear', u'court', u'york', u'racial', u'abus', u'charg'] [u'truck', u'disput', u'resolv', u'christma'] [u'truck', u'driver', u'confid', u'resolv', u'rat', u'disput'] [u'tweed', u'look', u'lure', u'film', u'maker'] [u'tyson', u'face', u'jail', u'term'] [u'underground', u'wall', u'design', u'steelwork'] [u'envoy', u'sceptic', u'resolut', u'talk', u'sudan'] [u'currenc', u'buy', u'continu'] [u'tool', u'monkey', u'busi', u'brazil'] [u'report', u'confin', u'home', u'refus'] [u'soldier', u'guilti', u'murder', u'wound', u'iraqi'] [u'verona', u'ask', u'visitor', u'pledg', u'love'] [u'vibrat', u'research', u'wake', u'trucki'] [u'visit', u'anwar', u'heap', u'prais', u'indonesia'] [u'creat', u'marin', u'park'] [u'warragamba', u'hit', u'lowest', u'level'] [u'warrior', u'pakistan', u'rope'] [u'warrior', u'pakistani', u'attack'] [u'welfar', u'group', u'call', u'overhaul', u'child'] [u'western', u'drench'] [u'william', u'tip', u'scale', u'record', u'weight'] [u'winemak', u'vine', u'diseas', u'advic'] [u'work', u'begin', u'bargara', u'unit'] [u'zimbabw', u'cricket', u'face', u'fresh', u'crisi'] [u'zimbabw', u'rein', u'right', u'group'] [u'venezuela', u'crash'] [u'tourism', u'bodi', u'target', u'queensland'] [u'afghan', u'milit', u'arrest'] [u'alaska', u'fear', u'massiv', u'spill', u'ship', u'snap'] [u'black', u'cowan', u'ban', u'roger', u'tackl'] [u'allenbi', u'predict', u'master', u'surg'] [u'amateur', u'astronom', u'return', u'observatori'] [u'anim', u'right', u'group', u'widen', u'attack', u'aussi', u'wool'] [u'anti', u'graft', u'offici', u'investig', u'suharto', u'daughter'] [u'armi', u'target', u'pakistan', u'bomb'] [u'australia', u'congratul', u'vanuatu'] [u'babi', u'white', u'rhino', u'make', u'debut', u'melbourn'] [u'berlusconi', u'alli', u'jail', u'mafia', u'associ'] [u'biker', u'cruis', u'hobart'] [u'black', u'watch', u'troop', u'home', u'christma'] [u'blue', u'chase', u'easi', u'target', u'canberra'] [u'blue', u'redback', u'clash', u'short'] [u'swamp', u'land'] [u'brazilian', u'polic', u'crack', u'tourist', u'attack'] [u'burrow', u'head', u'intern', u'union', u'group'] [u'bush', u'pick', u'homeland', u'secur', u'withdraw'] [u'rage', u'iron', u'mike'] [u'carr', u'govt', u'fail', u'howard', u'say'] [u'cat', u'headston', u'prove', u'centuri', u'artefact'] [u'chemic', u'spill', u'clean', u'continu'] [u'children', u'ban', u'scari', u'mari', u'poppin', u'play'] [u'clijster', u'hop', u'play', u'open'] [u'communiti', u'isol', u'flood', u'eastern'] [u'communiti', u'group', u'welcom', u'drop', u'insur', u'cost'] [u'count', u'begin', u'taiwan', u'elect'] [u'court', u'quash', u'berlusconi', u'corrupt', u'charg'] [u'take', u'player', u'year', u'award'] [u'democrat', u'weigh', u'univers', u'disput'] [u'doctor', u'urg', u'protect', u'abus', u'patient'] [u'dont', u'write', u'pakistan', u'say', u'lille'] [u'doomadge', u'bodi', u'arriv', u'palm', u'island'] [u'elder', u'hospit', u'road', u'rage', u'attack'] [u'elder', u'invit', u'inspect', u'custodi', u'program'] [u'kill', u'pakistan', u'bomb', u'blast'] [u'give', u'galileo', u'project', u'green', u'light'] [u'fair', u'trade', u'keep', u'close', u'club', u'pub'] [u'flood', u'clean', u'continu', u'eastern', u'state'] [u'sprint', u'champ', u'collin', u'get', u'year'] [u'french', u'troop', u'ivorian', u'crowd'] [u'futur', u'darwin', u'mall', u'spark', u'debat'] [u'game', u'organis', u'dismiss', u'complaint', u'villag'] [u'ghanian', u'presid', u'elect'] [u'global', u'right', u'pledg', u'consider', u'strain'] [u'global', u'vaccin', u'bank', u'fight', u'terror'] [u'golden', u'circl', u'sharehold', u'agre', u'board'] [u'govern', u'rebel', u'accus', u'break', u'darfur'] [u'govt', u'buyback', u'protect', u'reef'] [u'govt', u'fund', u'counsel', u'state', u'ward'] [u'greec', u'porto', u'success', u'memor'] [u'heidfeld', u'sizzl', u'race', u'william', u'place'] [u'driver', u'urg'] [u'hundr', u'attend', u'doomadge', u'funer'] [u'mammoth', u'flute', u'german', u'cave'] [u'india', u'draw', u'kiwi', u'meet', u'pakistan', u'bronz'] [u'iraqi', u'kidnapp', u'releas', u'south', u'asian', u'hostag'] [u'jam', u'brown', u'battl', u'cancer'] [u'journalist', u'death', u'highest', u'decad'] [u'journalist', u'deni', u'report', u'troop', u'risk'] [u'kashmir', u'rebel', u'kill', u'policemen'] [u'kenya', u'tunisia', u'seven', u'heaven', u'australia'] [u'lazio', u'stadium', u'real', u'fin', u'racism'] [u'lonard', u'make', u'huntingdal'] [u'charg', u'road', u'rage', u'incid'] [u'shoot', u'foil', u'robberi'] [u'marsh', u'quit', u'england'] [u'mckenzi', u'leap', u'master', u'lead'] [u'detaine', u'join', u'baxter', u'hunger', u'strike'] [u'mother', u'hospit', u'light', u'plane', u'crash'] [u'urg', u'local', u'leadership', u'share', u'respons'] [u'mugab', u'rise', u'zimbabwean', u'live', u'poverti'] [u'murray', u'bridg', u'home', u'flood', u'heavi', u'rain'] [u'nasa', u'telescop', u'planet', u'construct'] [u'law', u'forc', u'zimbabw', u'ngos', u'hide'] [u'nigerian', u'mother', u'escap', u'stone', u'sentenc'] [u'hospit', u'lack', u'resourc', u'opposit'] [u'minist', u'defend', u'depart'] [u'nurs', u'reject', u'govern', u'offer'] [u'price', u'drop', u'trader', u'brush', u'opec'] [u'opec', u'reassur', u'market', u'surplus', u'cut'] [u'opec', u'excess', u'suppli'] [u'pakistani', u'polic', u'arrest', u'bomb', u'suspect'] [u'pakistan', u'struggl', u'warrior'] [u'palm', u'island', u'farewel', u'cameron', u'doomadge'] [u'palm', u'island', u'prepar', u'funer'] [u'pearson', u'give', u'cautious', u'support', u'share'] [u'phelp', u'shin', u'brightest', u'biggest', u'stage'] [u'volcano', u'risk', u'eas'] [u'pont', u'wake'] [u'port', u'cooge', u'redevelop', u'fight', u'go', u'court'] [u'protestor', u'ralli', u'brisban', u'death'] [u'push', u'introduc', u'racial', u'vilif', u'law'] [u'attract', u'film', u'product'] [u'escap', u'jail', u'term', u'illeg', u'land'] [u'rattlesnak', u'hamper', u'effort', u'dous', u'film'] [u'redback', u'record', u'unlik', u'victori', u'blue'] [u'restor', u'world', u'beauti', u'urg', u'peac', u'prize', u'winner'] [u'school', u'need', u'smoke', u'detector', u'opposit'] [u'senden', u'earli', u'master', u'charg'] [u'shark', u'kill', u'spearfisherman', u'north'] [u'storm', u'continu', u'lash', u'victoria', u'clean'] [u'strong', u'turnout', u'katherin', u'elect'] [u'sydney', u'ibi', u'popul', u'monitor'] [u'taiwan', u'begin', u'vote', u'parliament'] [u'compani', u'look', u'build', u'wind', u'farm'] [u'tasmania', u'search', u'interst', u'prison', u'worker'] [u'teenag', u'arrest', u'polic', u'pursuit'] [u'tendulkar', u'equal', u'world', u'mark', u'india', u'domin'] [u'tendulkar', u'record', u'knock', u'cement', u'india', u'lead'] [u'tension', u'high', u'brisban', u'protest', u'ralli'] [u'test', u'spare', u'cancer', u'patient', u'chemo'] [u'thai', u'politician', u'urg', u'stop', u'show', u'riot', u'video'] [u'polic', u'injur', u'hervey', u'parti'] [u'tiger', u'hold', u'wildcat'] [u'turkey', u'silverston', u'race', u'calendar'] [u'charg', u'year', u'murder'] [u'face', u'court', u'year', u'murder'] [u'palestinian', u'kill', u'gaza'] [u'detaine', u'detail', u'guantanamo', u'abus', u'claim'] [u'union', u'warn', u'qanta', u'staff', u'shortag'] [u'court', u'hear', u'appeal', u'music', u'swap', u'copyright'] [u'soldier', u'jail', u'murder', u'iraqi', u'teenag'] [u'stock', u'slight'] [u'consid', u'treat', u'wast', u'water', u'drink'] [u'govt', u'target', u'cane', u'toad', u'campaign'] [u'warrior', u'thrash', u'pakistan', u'insid', u'day'] [u'wool', u'task', u'forc', u'play', u'boycott', u'claim'] [u'yacht', u'legend', u'polic', u'chase'] [u'yushchenko', u'hospit', u'test'] [u'yushchenko', u'stand', u'poison', u'claim'] [u'govt', u'look', u'prison', u'staff'] [u'grape', u'grower', u'fear', u'record', u'crop'] [u'alga', u'toxin', u'blame', u'tanzania', u'flamingo', u'death'] [u'arab', u'nation', u'resist', u'reform', u'call'] [u'australian', u'spend', u'billion', u'christma'] [u'barca', u'snatch', u'late', u'winner'] [u'betrand', u'wife', u'recov', u'jack'] [u'biker', u'ride', u'rememb', u'daniel', u'morcomb'] [u'bomb', u'explod', u'outsid', u'spanish', u'busi'] [u'bowden', u'call', u'gentleman', u'agreement'] [u'bruni', u'island', u'ferri', u'mark', u'year', u'servic'] [u'burma', u'free', u'prison'] [u'bushrang', u'tiger'] [u'bushrang', u'tame', u'tiger'] [u'child', u'sexual', u'abus', u'summit'] [u'clash', u'erupt', u'bangladeshi', u'form', u'human', u'chain'] [u'clean', u'continu', u'victoria', u'brace'] [u'committe', u'advis', u'govt', u'harbour', u'protect'] [u'communist', u'contest', u'iraq', u'elect'] [u'council', u'share', u'idea', u'beach', u'manag'] [u'crisi', u'call', u'expect', u'rise', u'christma'] [u'darfur', u'crisi', u'talk', u'resum'] [u'darwin', u'honour', u'east', u'timor', u'braveri'] [u'dental', u'wait', u'list', u'long', u'opposit'] [u'doctor', u'suspect', u'foul', u'play', u'yushchenko', u'poison'] [u'eckstein', u'take', u'open', u'round', u'ironman', u'seri'] [u'england', u'humbl', u'south', u'africa'] [u'everton', u'liverpool', u'derbi'] [u'famili', u'escap', u'injuri', u'light', u'plane', u'crash'] [u'fan', u'protest', u'hawk', u'evict'] [u'drown', u'malaysia', u'flood'] [u'funer', u'servic', u'honour', u'peacemak', u'hassan'] [u'gallop', u'govern', u'lose', u'patienc', u'nurs', u'union'] [u'gavaskar', u'tendulkar', u'test', u'centuri'] [u'govt', u'warn', u'youth', u'unpaid', u'work', u'trap'] [u'green', u'machin', u'german', u'titl', u'showdown'] [u'green', u'win', u'master', u'play', u'thriller'] [u'heavi', u'rain', u'eas', u'drought', u'condit'] [u'tszyu', u'warn', u'hatton'] [u'indonesian', u'volcano', u'blanket', u'town', u'villag'] [u'infight', u'grip', u'congo', u'armi'] [u'inmat', u'climb', u'human', u'ladder', u'freedom'] [u'insurg', u'target', u'high', u'rank', u'iraqi', u'polic'] [u'investig', u'begin', u'fatal', u'shark', u'attack'] [u'isra', u'troop', u'gaza'] [u'israel', u'releas', u'prison', u'ahead', u'palestinian'] [u'kiwi', u'japan', u'discuss', u'world', u'host', u'deal', u'report'] [u'klitschko', u'batter', u'william', u'retain', u'crown'] [u'labour', u'likud', u'israel', u'coalit', u'talk'] [u'post', u'sound', u'netherland', u'buri', u'princ'] [u'lead', u'sydney', u'restauranteur', u'die'] [u'arrest', u'polic', u'pursuit'] [u'bash', u'death', u'cricket'] [u'die', u'sydney', u'road', u'rage', u'attack'] [u'custodi', u'sydney', u'road', u'rage', u'death'] [u'mcewen', u'chase', u'surfer'] [u'mcgee', u'triumph', u'gold', u'coast'] [u'medic', u'exam', u'declar', u'bush', u'duti'] [u'memori', u'plan', u'shark', u'attack', u'victim'] [u'monti', u'move', u'closer', u'breakthrough', u'triumph'] [u'monti', u'tame', u'tiger', u'tournament'] [u'nanni', u'problem', u'derail', u'bush', u'homeland', u'secur'] [u'nephew', u'hand', u'arafat', u'medic', u'record'] [u'bridg', u'brisban', u'river'] [u'opposit', u'anger', u'jenolan', u'cave'] [u'govt', u'will', u'consid', u'racial', u'vilif'] [u'nurs', u'vote', u'govern', u'offer'] [u'opposit', u'call', u'road', u'safeti', u'legisl'] [u'origin', u'bridget', u'jone', u'diari', u'sale'] [u'paedophil', u'ferguson', u'releas'] [u'pere', u'authoris', u'begin', u'israel', u'coalit', u'talk'] [u'polic', u'chief', u'urg', u'calm', u'road', u'rage', u'death'] [u'polic', u'hunt', u'servic', u'station', u'robberi'] [u'polic', u'investig', u'attack'] [u'polic', u'investig', u'overnight', u'arm', u'robberi'] [u'polic', u'search', u'miss'] [u'portugues', u'govern', u'resign', u'ahead', u'elect'] [u'powel', u'say', u'arab', u'forum', u'success', u'despit', u'deleg'] [u'power', u'watchdog', u'head', u'resign'] [u'china', u'parti', u'major', u'taiwan', u'elect'] [u'rain', u'boost', u'coastal', u'dam', u'inland', u'miss'] [u'rain', u'leav', u'part', u'awash'] [u'ranger', u'dunde', u'demolit'] [u'rare', u'plant', u'bushland'] [u'report', u'eavesdrop', u'atom', u'agenc', u'chief'] [u'resid', u'sleep', u'easier', u'flood', u'water', u'subsid'] [u'road', u'crash', u'victim', u'rememb'] [u'rural', u'doctor', u'unhappi', u'indigen', u'health'] [u'govt', u'offer', u'flood', u'victim', u'assist'] [u'salman', u'readi', u'aussi', u'attack'] [u'search', u'continu', u'miss', u'fisherman'] [u'sixer'] [u'sixer', u'maintain', u'unbeaten', u'home', u'record'] [u'somali', u'parliament', u'dissolv', u'govern'] [u'studi', u'delv', u'mind', u'arsonist'] [u'busi', u'benefit', u'cruis', u'tourism'] [u'telstra', u'accus', u'direct', u'consum', u'pay'] [u'tendulkar', u'cement', u'place', u'histori'] [u'tendulkar', u'record', u'india', u'turn', u'screw'] [u'thirteen', u'dead', u'wound', u'philippin', u'bomb'] [u'tibetan', u'struggl', u'global', u'spotlight', u'dalai', u'lama'] [u'tiger', u'chase', u'victori'] [u'tough', u'topic', u'triumph', u'euro', u'oscar'] [u'kill', u'colombo', u'concert', u'blast'] [u'udines', u'cement', u'place', u'canio', u'inspir', u'lazio'] [u'ukrain', u'govern', u'silent', u'poison'] [u'ukrain', u'reopen', u'poison', u'probe'] [u'union', u'green', u'group', u'push', u'clean', u'job'] [u'lead', u'offens', u'taliban'] [u'militari', u'clarifi', u'iraq', u'death'] [u'soldier', u'kill', u'wound', u'iraq', u'fight'] [u'govt', u'buy', u'helicopt'] [u'wilkinson', u'match', u'winner', u'return'] [u'winner', u'emerg', u'katherin', u'eleciton'] [u'woolmer', u'defend', u'struggl', u'pakistan'] [u'yushchenko', u'poison', u'doctor'] [u'kill', u'malaysian', u'flood'] [u'abar', u'tip', u'record', u'commod', u'export'] [u'abba', u'apologis', u'kuwait', u'iraq', u'support'] [u'aborigin', u'remain', u'wind', u'farm', u'construct'] [u'abus', u'victim', u'ask', u'repay', u'compens'] [u'academ', u'claim', u'be', u'invad', u'remot'] [u'begin', u'review', u'plan', u'law'] [u'campaign', u'target', u'drink', u'driver', u'loser'] [u'australian', u'obes', u'drug', u'final', u'test'] [u'alleg', u'babi', u'kidnapp', u'elect', u'face', u'trial'] [u'ord', u'edg', u'higher'] [u'anaesthetist', u'contract', u'wont', u'renew'] [u'seek', u'compo', u'stromlo', u'bushfir', u'damag'] [u'appeal', u'launch', u'tent', u'embassi', u'evict'] [u'arab', u'actor', u'turn', u'hollywood', u'stereotyp'] [u'arm', u'hold', u'trigger', u'crime', u'forum'] [u'australian', u'generos', u'record', u'level'] [u'australia', u'wari', u'pakistan', u'say', u'gilchrist'] [u'aust', u'respond', u'iraqi', u'militari', u'train', u'request'] [u'aust', u'detain', u'illeg', u'fishermen', u'onshor'] [u'author', u'caus', u'scrap', u'yard'] [u'bangladesh', u'coach', u'lash', u'critic'] [u'ban', u'electrician', u'move'] [u'barghouti', u'withdraw', u'palestinian', u'elect'] [u'barn', u'fin', u'master', u'outburst'] [u'baxter', u'protest', u'deni', u'water', u'sleep'] [u'plan', u'ahead', u'limeston', u'mine'] [u'biker', u'hand', u'fund'] [u'blaze', u'claim', u'farm', u'hous'] [u'blind', u'use', u'sixth', u'sens', u'detect', u'emot'] [u'breakthrough', u'tafe', u'teacher'] [u'brisban', u'mayor', u'vote', u'disgrac'] [u'bullet', u'triumph', u'hawk'] [u'driver', u'secur', u'crowbar'] [u'driver', u'threaten', u'strike', u'safeti'] [u'busi', u'urg', u'fight', u'domest', u'violenc'] [u'busi', u'warn', u'christma', u'theft'] [u'calder', u'highway', u'duplic', u'year', u'away'] [u'calvari', u'help', u'croc', u'bite', u'taipan'] [u'cellar', u'door', u'sale', u'drop', u'wineri'] [u'celtic', u'regain', u'spot'] [u'chelsea', u'forc', u'draw', u'despit', u'henri', u'doubl'] [u'china', u'get', u'readi', u'artifici', u'beauti', u'contest'] [u'china', u'beauti', u'line'] [u'christma', u'spirit', u'take', u'communiti'] [u'church', u'outrag', u'devil', u'christma', u'grotto'] [u'cocain', u'smuggler', u'give', u'year', u'jail'] [u'communiti', u'farewel', u'rita', u'mill'] [u'condobolin', u'halt', u'develop', u'pend', u'flood', u'studi'] [u'consortium', u'choos', u'build', u'meander'] [u'corrupt', u'polic', u'offic', u'jail', u'theft'] [u'cotton', u'oversuppli', u'hit', u'aust', u'export'] [u'council', u'back', u'coastal', u'walk', u'plan'] [u'council', u'back', u'subdivis'] [u'councillor', u'claim', u'support', u'transit', u'centr', u'sale'] [u'count', u'tare', u'elect'] [u'cpsu', u'leader', u'tip', u'head', u'union', u'movement'] [u'crime', u'rate', u'fall', u'alic', u'spring', u'katherin'] [u'defeat', u'strike', u'belmont', u'world', u'hop'] [u'democrat', u'green', u'merger', u'tabl'] [u'detaine', u'access', u'food', u'water', u'immigr'] [u'develop', u'board', u'form', u'corpor', u'govern'] [u'downer', u'silent', u'nuke', u'offer'] [u'downer', u'turn', u'nuke', u'offer', u'report'] [u'driver', u'face', u'drug', u'test', u'regim'] [u'drought', u'grip', u'hunter'] [u'east', u'timor', u'turn', u'china', u'energi', u'explor'] [u'come', u'fever'] [u'elder', u'woman', u'lead', u'polic', u'chase'] [u'elliott', u'bankruptci', u'declar', u'loom'] [u'elliott', u'creditor', u'offer'] [u'email', u'show', u'region', u'program', u'slush', u'fund'] [u'england', u'danger', u'warm', u'defeat'] [u'etoo', u'okocha', u'drogba', u'african', u'award', u'shortlist'] [u'fan', u'cautious', u'welcom', u'child', u'abus', u'summit'] [u'fear', u'train', u'delay', u'derail', u'student', u'studi', u'plan'] [u'feder', u'fund', u'boost', u'bush', u'hostel'] [u'firefight', u'clean', u'ammunit', u'diesel', u'spill'] [u'fisherman', u'miracul', u'surviv'] [u'flood', u'make', u'work', u'aplenti'] [u'floodwat', u'bring', u'river', u'benefit'] [u'foot', u'surgeri', u'sidelin', u'buderus'] [u'franc', u'hopman'] [u'fund', u'women', u'refug', u'futur'] [u'decis', u'govt', u'hand'] [u'goldfield', u'arrest', u'murder'] [u'govt', u'clarifi', u'rise', u'number', u'assault'] [u'govt', u'prepar', u'spend', u'labor', u'say'] [u'govt', u'reef', u'fish', u'licenc'] [u'green', u'hail', u'dream', u'come', u'true'] [u'green', u'democrat', u'merger', u'card'] [u'grower', u'monitor', u'split', u'grape'] [u'grow', u'privat', u'health', u'option'] [u'hear', u'begin', u'underworld', u'murder', u'case'] [u'heat', u'wave', u'expect', u'drain', u'power', u'suppli'] [u'henri', u'award', u'shoo', u'wenger'] [u'hoon', u'rule', u'troop', u'commit'] [u'icac', u'focus', u'westfield', u'orang', u'grove', u'hear'] [u'illeg', u'tobacco', u'transport', u'incred', u'gullibl'] [u'immigr', u'dept', u'wont', u'sway', u'hunger', u'strike'] [u'india', u'cruis', u'victori', u'bangladesh'] [u'indigen', u'council', u'discuss', u'atsic', u'option'] [u'indonesian', u'soldier', u'shoot', u'separatist', u'aceh'] [u'investig', u'launch', u'timber', u'yard', u'blaze'] [u'fail', u'year', u'worker', u'tell'] [u'worker', u'condemn', u'bank', u'manag'] [u'iran', u'impend', u'nuclear', u'threat', u'baradei'] [u'isra', u'helicopt', u'gaza', u'missil', u'strike'] [u'isra', u'troop', u'kill', u'tunnel', u'bomb'] [u'katherin', u'council', u'consid', u'fin', u'voter'] [u'kindergarten', u'fee', u'year'] [u'kiwi', u'play', u'japan', u'host', u'report'] [u'lack', u'flight', u'hamper', u'antarct', u'research'] [u'lawyer', u'say', u'saddam', u'hunger', u'strike'] [u'mactier', u'win', u'pursuit', u'gold'] [u'charg', u'murder', u'follow', u'extradit'] [u'hold', u'custodi', u'road', u'rage', u'death'] [u'honour', u'east', u'timor', u'rescu', u'role'] [u'maui', u'surf', u'event', u'shape', u'australian', u'affair'] [u'mear', u'take', u'silver'] [u'mediat', u'finalis', u'agreement', u'evan', u'asset'] [u'meet', u'shed', u'light', u'alburi', u'worker', u'job'] [u'migrat', u'bird', u'arriv', u'byron'] [u'mine', u'explor', u'drop', u'prompt', u'break', u'push'] [u'indigen', u'public', u'servant'] [u'rain', u'riverland'] [u'motiv', u'philippin', u'market', u'explos', u'unclear'] [u'possibl', u'post', u'christma', u'pageant'] [u'echo', u'esso', u'roster', u'concern'] [u'renew', u'hospit', u'boost'] [u'nedv', u'strike', u'keep', u'juve', u'point', u'clear'] [u'korea', u'lash', u'hate'] [u'korea', u'want', u'south', u'answer', u'nuclear', u'question'] [u'noffk', u'defend', u'cricket', u'australia', u'contract'] [u'minist', u'visit', u'flood', u'damag', u'area'] [u'plan', u'levi', u'truck', u'sydney'] [u'nurs', u'union', u'stand', u'firm', u'despit', u'govt', u'mail'] [u'nurs', u'union', u'demand', u'wage', u'disput'] [u'offic', u'investig', u'appar', u'croc', u'attack'] [u'opposit', u'parti', u'begin', u'talk', u'coalit'] [u'paper', u'worker', u'hope', u'loss', u'rethink'] [u'paramed', u'challeng', u'judg', u'opinion', u'kelli'] [u'partnership', u'aim', u'boost', u'tourism', u'hospit'] [u'rise', u'deal', u'tafe', u'student', u'result'] [u'perman', u'suspens', u'nuclear', u'program'] [u'perth', u'look', u'grind', u'run'] [u'perth', u'close', u'tiger', u'snake'] [u'pilkadari', u'lose', u'asian', u'master', u'play'] [u'asic', u'urg'] [u'pocket', u'maxi', u'face', u'scratch', u'sydney', u'hobart'] [u'polic', u'theft', u'worri'] [u'polic', u'expand', u'search', u'miss', u'fisherman'] [u'polic', u'hold', u'road', u'safeti', u'crackdown'] [u'polic', u'injur', u'hervey', u'parti'] [u'polic', u'injur', u'tomahawk', u'attack'] [u'polic', u'search', u'miss', u'diver'] [u'polic', u'seek', u'theft'] [u'public', u'ask', u'help', u'subsidis', u'fee', u'transport'] [u'public', u'say', u'street', u'closur'] [u'public', u'urg', u'spread', u'christma', u'cheer'] [u'govt', u'defend', u'cost', u'anti', u'smoke'] [u'face', u'child', u'charg'] [u'ract', u'ask', u'member', u'petrol', u'price'] [u'ract', u'join', u'petrol', u'pump'] [u'rain', u'doesnt', u'chang', u'drought', u'status'] [u'rain', u'eas', u'drought', u'concern'] [u'real', u'madrid', u'stadium', u'evacu', u'bomb', u'scare'] [u'real', u'match', u'abandon', u'bomb', u'threat', u'valencia'] [u'region', u'hous', u'afford', u'wan'] [u'relief', u'canberra', u'home', u'buyer'] [u'report', u'highlight', u'lifeboat', u'safeti', u'issu'] [u'research', u'progress', u'psoriasi', u'caus'] [u'rilli', u'win', u'player', u'month', u'award'] [u'roadsid', u'drug', u'test', u'earli', u'result'] [u'romanian', u'opposit', u'head', u'score', u'upset', u'poll', u'victori'] [u'romanian', u'vote', u'close'] [u'sabotag', u'suspect', u'iraq', u'blackout'] [u'initi', u'target', u'adelaid', u'youth', u'unemploy'] [u'nation', u'trust', u'head', u'help', u'struggl', u'orchestra'] [u'school', u'happi', u'overal', u'result'] [u'search', u'call', u'take', u'croc'] [u'search', u'fail', u'miss', u'fisherman'] [u'search', u'miss', u'diver', u'resum', u'morn'] [u'seven', u'kill', u'baghdad', u'suicid', u'blast'] [u'seven', u'marin', u'kill', u'iraq'] [u'sever', u'storm', u'leav', u'travel', u'strand'] [u'sideway', u'snatch', u'film', u'award', u'marrakesh'] [u'soccer', u'ball', u'caus', u'build', u'evacu'] [u'south', u'east', u'malle', u'get', u'interim', u'drought'] [u'spain', u'dethron', u'dutch', u'champion', u'trophi'] [u'spanish', u'stadium', u'evacu', u'bomb', u'scare'] [u'stabl', u'rat', u'help', u'eas', u'hous', u'squeez'] [u'storm', u'bring', u'delug', u'western', u'victoria'] [u'storm', u'grind', u'plan', u'sydney', u'airport'] [u'storm', u'lash', u'part', u'sydney'] [u'storm', u'lash', u'sydney', u'hunter', u'valley'] [u'stroke', u'risk', u'greater', u'migrain', u'suffer', u'studi'] [u'student', u'accompani', u'lennon', u'european', u'tour'] [u'studi', u'claim', u'climat', u'chang', u'foster', u'reef', u'growth'] [u'studi', u'profil', u'aborigin'] [u'sudan', u'oxfam', u'head', u'leav', u'countri'] [u'swimmer', u'warn', u'summer', u'danger'] [u'sword', u'wield', u'bandit', u'hold', u'servo'] [u'tafe', u'teacher', u'student', u'result'] [u'retail', u'target', u'safeti', u'campaign'] [u'teen', u'help', u'rescu', u'famili', u'mishap'] [u'teen', u'remain', u'custodi', u'follow', u'jack'] [u'thiev', u'ruin', u'christma', u'sick', u'kid'] [u'town', u'remain', u'isol', u'floodwat', u'reced'] [u'tradit', u'custodian', u'fight', u'develop', u'plan'] [u'truck', u'crash', u'claim', u'victorian'] [u'truck', u'crash', u'block', u'highway'] [u'turtl', u'nest', u'season', u'begin'] [u'rescu', u'schouten', u'island'] [u'underworld', u'victim', u'corner', u'court', u'tell'] [u'union', u'seek', u'hospit', u'secur', u'boost'] [u'union', u'welcom', u'holden', u'offer'] [u'deni', u'saddam', u'hunger', u'strike'] [u'film', u'institut', u'pick', u'year', u'flick'] [u'missil', u'defenc', u'test', u'delay'] [u'virtual', u'build', u'test', u'develop', u'impact'] [u'move', u'major', u'conserv', u'plan'] [u'word', u'erupt', u'olymp'] [u'warwick', u'saddl', u'polocross'] [u'waterfront', u'develop', u'boost', u'economi'] [u'watson', u'symond', u'return', u'bull', u'line'] [u'wife', u'killer', u'get', u'year', u'bar'] [u'woman', u'jail', u'street', u'stab'] [u'wood', u'take', u'world', u'challeng', u'california'] [u'approv', u'iraq', u'afghan', u'bid', u'membership', u'talk'] [u'yushchenko', u'return', u'campaign', u'trail'] [u'zdrilic', u'sign', u'sydney'] [u'test', u'dead', u'hendra', u'virus'] [u'arrest', u'high', u'speed', u'chase'] [u'bian', u'quit', u'parti', u'chief', u'poll', u'loss'] [u'aborigin', u'communiti', u'seek', u'wash', u'fuel', u'deal'] [u'accus', u'underworld', u'killer', u'score', u'court'] [u'urg', u'touchi', u'feeli', u'indigen', u'affair'] [u'anderson', u'deni', u'telstra', u'sale', u'immin'] [u'anderson', u'dismiss', u'pork', u'barrel', u'evid', u'claim'] [u'anim', u'cell', u'transplant', u'decis', u'disappoint'] [u'babi', u'earli', u'xmas', u'present', u'democrat', u'senat'] [u'beckham', u'nativ', u'scene', u'attack', u'london'] [u'beef', u'milk', u'earn', u'tip', u'rise'] [u'birth', u'servic', u'see', u'crucial', u'rural', u'area'] [u'blackout', u'hamper', u'christma', u'trade'] [u'board', u'uphold', u'complaint', u'corner'] [u'boorowa', u'ponder', u'wind', u'farm', u'plan'] [u'plan', u'hunter', u'fuel', u'project'] [u'busi', u'confid', u'drop', u'despit', u'strong', u'economi'] [u'cadet', u'clear', u'drug', u'claim', u'graduat'] [u'cheaper', u'local', u'govt', u'elect'] [u'cathol', u'church', u'apologis', u'abus', u'victim'] [u'see', u'posit', u'council', u'demis'] [u'chilean', u'judg', u'charg', u'pinochet'] [u'chinatown', u'site', u'decis', u'like', u'defer'] [u'clean', u'continu', u'backpack'] [u'climat', u'research', u'help', u'predict', u'coral', u'bleach'] [u'colleg', u'surpris', u'hors', u'talk', u'snub'] [u'communiti', u'pray', u'palm', u'reconcili'] [u'cook', u'council'] [u'coulthard', u'edg', u'closer', u'bull', u'deal'] [u'council', u'floor', u'brake', u'transit', u'centr', u'poll'] [u'council', u'hervey', u'industri', u'estat', u'plan'] [u'council', u'put', u'focus', u'drain', u'mainten'] [u'council', u'question', u'nation', u'park', u'plan'] [u'council', u'see', u'benefit', u'rat', u'respit'] [u'council', u'consid', u'charlestown', u'develop'] [u'court', u'offer', u'repriev', u'disabl', u'carer'] [u'court', u'recognis', u'torr', u'strait', u'nativ', u'titl'] [u'croc', u'rilli', u'score', u'player', u'month', u'award'] [u'darl', u'down', u'form', u'local', u'govt', u'super', u'group'] [u'date', u'gold', u'unlik', u'chang'] [u'deadlin', u'multipli', u'risk', u'heart', u'attack'] [u'death', u'babi', u'girl', u'accid', u'coron', u'find'] [u'debrief', u'consid', u'storm', u'fallout'] [u'doctor', u'agre', u'rise'] [u'doubt', u'cast', u'crop', u'land', u'rehab'] [u'downer', u'arriv', u'talk'] [u'downer', u'interest', u'iaea', u'post'] [u'dozen', u'kill', u'indian', u'train', u'crash'] [u'eckstein', u'look', u'forward', u'hurst', u'challeng'] [u'egypt', u'israel', u'partial', u'free', u'trade', u'deal'] [u'eighteen', u'dead', u'china', u'disast'] [u'elliott', u'plan', u'sale'] [u'journalist', u'face', u'rape', u'charg'] [u'famili', u'face', u'deport', u'son', u'disabl'] [u'fergi', u'rue', u'miss', u'catch', u'chanc'] [u'spark', u'better', u'power', u'author'] [u'safeti', u'blitz', u'target', u'busi'] [u'fish', u'farmer', u'save', u'seahors', u'exhibit'] [u'hayden', u'relish', u'pakistani', u'pace', u'challeng'] [u'flood', u'littl', u'boost', u'dam'] [u'aussi', u'globe', u'race'] [u'fourteen', u'execut', u'bodi', u'iraq'] [u'franc', u'unveil', u'world', u'tallest', u'bridg'] [u'french', u'court', u'ban', u'hezbollah', u'satellit'] [u'fund', u'slide', u'away', u'jetti'] [u'fund', u'tackl', u'bushfir', u'threat'] [u'furnitur', u'worker', u'sack', u'compani', u'collaps'] [u'leak', u'prompt', u'refineri', u'evacu'] [u'gatto', u'fire', u'self', u'defenc', u'court', u'tell'] [u'georgeson', u'down', u'fellow', u'aussi', u'hawaii', u'final'] [u'giant', u'sculptur', u'sydney', u'year'] [u'gilchrist', u'say', u'pace', u'battl', u'good', u'game'] [u'govt', u'agenc', u'urg', u'boost', u'wiluna', u'effort'] [u'govt', u'heed', u'advic', u'intellig', u'appoint'] [u'govt', u'issu', u'travel', u'warn'] [u'govt', u'plan', u'thousand', u'home', u'sydney'] [u'govt', u'reconsid', u'telstra', u'foreign', u'ownership'] [u'govt', u'sack', u'embattl', u'health', u'fund', u'board'] [u'govt', u'seek', u'suppress', u'order', u'terror', u'case'] [u'govt', u'urg', u'reinstat', u'petrol', u'watchdog', u'report'] [u'govt', u'want', u'slow', u'global', u'warm'] [u'govt', u'wont', u'negoti', u'protest', u'asylum', u'seeker'] [u'great', u'aust', u'bight', u'search', u'pose', u'challeng'] [u'green', u'catapult', u'golf', u'rank'] [u'gregan', u'jersey', u'auction', u'rais'] [u'group', u'critic', u'prison', u'expans', u'plan'] [u'group', u'urg', u'prosecut', u'prison', u'death'] [u'grower', u'hope', u'sugar', u'predict', u'signal', u'recoveri'] [u'gunn', u'sue', u'green', u'leader', u'environ', u'group'] [u'high', u'temp', u'pressur', u'power', u'suppli'] [u'hinz', u'level', u'rise'] [u'hobart', u'look', u'defin', u'nuisanc', u'bark'] [u'hospit', u'equip', u'handl', u'christma', u'toyn'] [u'hospit', u'join', u'snake', u'bite', u'research', u'effort'] [u'hostel', u'blaze', u'spark', u'evacu'] [u'weather', u'drain', u'power', u'suppli'] [u'howard', u'defend', u'region', u'fund', u'scheme'] [u'human', u'victim', u'longer', u'termin'] [u'hunter', u'club', u'urg', u'boost', u'secur'] [u'iaea', u'assum', u'spi', u'listen'] [u'consid', u'away', u'lord'] [u'inquiri', u'call', u'trail', u'near', u'kosciuszko'] [u'need', u'cash', u'creditor', u'tell'] [u'iraq', u'elect', u'bodi', u'say', u'bloc', u'enter', u'poll'] [u'iraqi', u'presid', u'say', u'armi', u'dismantl', u'huge'] [u'iraq', u'press', u'elect', u'help'] [u'israel', u'pull', u'palestinian', u'elect'] [u'jobless', u'rate', u'drop'] [u'keelti', u'confid', u'polic', u'issu', u'resolv'] [u'kyoto', u'stanc', u'hurt', u'aust', u'reput', u'say'] [u'labor', u'critic', u'intellig', u'appoint'] [u'late', u'fulham', u'level', u'stun', u'unit'] [u'latham', u'keep', u'visit'] [u'levi', u'boost', u'port', u'kembla', u'plan'] [u'licenc', u'buyout', u'expect', u'inund', u'boat', u'market'] [u'long', u'spell', u'stormi', u'weather'] [u'major', u'blackout', u'mercuri', u'rise', u'brisban'] [u'malik', u'free', u'play', u'perth', u'test'] [u'arrest', u'tomahawk', u'attack'] [u'get', u'month', u'child', u'porn'] [u'get', u'suspend', u'jail', u'term', u'chop', u'chop', u'cargo'] [u'injur', u'chainsaw', u'accid'] [u'jail', u'child', u'porn'] [u'maritim', u'colleg', u'increas', u'student', u'number'] [u'mayor', u'pleas', u'airport', u'upgrad'] [u'mercuri', u'rise', u'perth'] [u'microsoft', u'launch', u'desktop', u'search', u'tool'] [u'minist', u'back', u'address', u'indigen', u'health'] [u'minist', u'inspect', u'afp', u'work'] [u'miss', u'water', u'wont', u'spark', u'reprimand'] [u'mossad', u'accus', u'syrian', u'bomb'] [u'fear', u'futur', u'train', u'servic'] [u'muralitharan', u'smile', u'setback'] [u'announc', u'irish', u'bank', u'sale'] [u'nasa', u'chief', u'resign'] [u'nation', u'park', u'plan', u'crack', u'pest'] [u'nation', u'school', u'holiday', u'chang'] [u'newcastl', u'boss', u'hand', u'match'] [u'rule', u'begin', u'today'] [u'page', u'open', u'tamworth', u'histori'] [u'servic', u'lift', u'adelaid', u'airport', u'profit'] [u'north', u'coast', u'storm', u'bring', u'clean'] [u'trace', u'miss', u'fisherman'] [u'boati', u'help', u'search', u'miss', u'fisher'] [u'face', u'budget', u'blow'] [u'treasur', u'accus', u'cook', u'book'] [u'offic', u'focus', u'attent', u'erad', u'noxious'] [u'pakistan', u'india', u'talk', u'avert', u'nuclear', u'havoc'] [u'park', u'anim', u'shelter', u'state'] [u'penguin', u'protect', u'make', u'inroad'] [u'perth', u'admit', u'rathbon'] [u'plan', u'put', u'focus', u'indigen', u'consum', u'right'] [u'turn', u'hall', u'fame', u'honour'] [u'want', u'downer', u'stay'] [u'disintegr', u'think', u'tank', u'warn'] [u'polic', u'diver', u'complet', u'cyclon', u'traci', u'wreck'] [u'policeman', u'award', u'compo'] [u'polic', u'probe', u'high', u'school', u'blaze'] [u'polic', u'probe', u'highway', u'death'] [u'polic', u'seiz', u'drug', u'properti'] [u'polic', u'station', u'technolog', u'upgrad'] [u'polic', u'forc', u'holiday'] [u'polic', u'unhappi', u'break', u'driver'] [u'politician', u'ask', u'apologis', u'youth', u'group'] [u'princip', u'see', u'reason', u'good', u'result'] [u'program', u'target', u'weighti', u'problem'] [u'properti', u'council', u'look', u'canberra', u'role'] [u'public', u'urg', u'readi', u'blackout'] [u'push', u'boost', u'north', u'number'] [u'storm', u'damag', u'million', u'dollar'] [u'rail', u'safeti', u'add', u'cost', u'blow'] [u'ask', u'aust', u'read', u'riot'] [u'real', u'finish', u'bomb', u'hoax', u'game', u'januari'] [u'recov', u'bodi', u'believ', u'miss', u'policeman'] [u'redback', u'head', u'right', u'direct'] [u'redfern', u'waterloo', u'author', u'board', u'name'] [u'reduc', u'forest', u'access', u'baffl', u'kilkivan', u'shire'] [u'refere', u'defend', u'decis', u'henri', u'free', u'kick'] [u'refuge', u'darl', u'down', u'home'] [u'rescu', u'fisherman', u'go', u'tough', u'time'] [u'rescuer', u'home', u'strand', u'student'] [u'resourc', u'push', u'aust', u'market', u'higher'] [u'reward', u'seek', u'catch', u'rock', u'thrower'] [u'roddick', u'split', u'coach'] [u'saddam', u'trial', u'start', u'year'] [u'safe', u'drive', u'scheme', u'target', u'plate', u'driver'] [u'wont', u'tougher', u'milit', u'presid', u'warn'] [u'scandal', u'mitsubishi', u'delay', u'reviv', u'plan'] [u'school', u'join', u'healthi', u'live', u'scheme'] [u'scratch', u'sniff', u'test', u'detect', u'alzheim'] [u'second', u'string', u'protea', u'thump', u'complac', u'england'] [u'shevchenko', u'milan', u'secret', u'weapon'] [u'shevchenko', u'net', u'golden', u'ball'] [u'shopper', u'offer', u'chanc', u'lord'] [u'sign', u'lure', u'north', u'angler'] [u'supermarket', u'open', u'christma'] [u'spirit', u'find', u'evid', u'martian', u'water'] [u'storm', u'disrupt', u'south', u'coast', u'train', u'travel'] [u'storm', u'power', u'dampen', u'danger'] [u'strand', u'dolphin', u'rescu'] [u'strike', u'parent', u'continu', u'protest'] [u'student', u'enjoy', u'result'] [u'studi', u'predict', u'major', u'earthquak', u'japan'] [u'suicid', u'bomb', u'kill', u'wound', u'baghdad'] [u'survey', u'highlight', u'confid', u'rural'] [u'sydney', u'mop', u'sever', u'storm'] [u'taliban', u'leader', u'secur', u'chief', u'captur'] [u'taxpay', u'foot', u'opposit', u'leader', u'legal', u'bill'] [u'teacher', u'charg', u'alleg', u'student', u'relationship'] [u'telstra', u'sale', u'move', u'step', u'closer'] [u'terror', u'case', u'open', u'sydney', u'court'] [u'tiger', u'select', u'knobel', u'pie', u'claim', u'caracella'] [u'tiger', u'snatch', u'knobel'] [u'tourism', u'group', u'flag', u'support', u'beach', u'safeti'] [u'tram', u'derail', u'squar'] [u'ray', u'detect', u'wmds', u'cancer'] [u'tszyu', u'deni', u'deal', u'fight', u'hatton'] [u'tszyu', u'fight', u'hatton', u'manchest', u'promot', u'claim'] [u'tszyu', u'win', u'russian', u'sport', u'gong'] [u'baxter', u'detaine', u'hospitalis'] [u'sign', u'leagu', u'glori'] [u'marin', u'kill', u'iraq'] [u'hall', u'fame', u'class'] [u'court', u'back', u'probe', u'iraqi', u'death'] [u'right', u'leader', u'hold', u'racial', u'hatr', u'case'] [u'ukrainian', u'deni', u'knowledg', u'poison'] [u'union', u'seek', u'greater', u'timber', u'commit'] [u'urg', u'swift', u'halt', u'congo', u'fight'] [u'market', u'post', u'moder', u'gain'] [u'militari', u'confirm', u'afghan', u'death'] [u'vaccin', u'prevent', u'onset', u'diabet'] [u'hospit', u'wait', u'list', u'wors'] [u'compani', u'hand', u'record', u'fine', u'workplac', u'death'] [u'urg', u'export', u'safeti'] [u'western', u'power', u'confid', u'meet', u'demand'] [u'wilkinson', u'glad', u'year', u'torment'] [u'wolf', u'slither', u'write', u'award'] [u'worm', u'help', u'treat', u'crohn', u'diseas'] [u'youth', u'transport', u'issu', u'drive', u'forum'] [u'yowi', u'win', u'trademark', u'challeng'] [u'abba', u'call', u'palestinian', u'ceas'] [u'aim', u'greenhous', u'emiss'] [u'bounc', u'rule', u'save', u'ruckmen'] [u'agenc', u'appeal', u'philippin', u'flood'] [u'armi', u'defend', u'train', u'method'] [u'arsenal', u'ljungberg', u'neurologist'] [u'asia', u'fuel', u'global', u'boom'] [u'athen', u'hijack', u'threaten', u'blow'] [u'aussi', u'golfer', u'mark', u'world', u'stage'] [u'aussi', u'wood', u'win', u'junior', u'surf', u'titl'] [u'australian', u'arrest', u'indonesia', u'drug', u'charg'] [u'aust', u'reject', u'pngs', u'season', u'work', u'visa', u'request'] [u'bank', u'media', u'push', u'market', u'higher'] [u'baxter', u'detaine', u'face', u'drug', u'charg'] [u'beauti', u'exhibit', u'cancel'] [u'bevan', u'hope', u'return'] [u'bosnian', u'croat', u'plead', u'guilti', u'crime'] [u'cardiac', u'wait', u'list', u'report'] [u'respit', u'caravan', u'park', u'oper'] [u'chamber', u'fear', u'jobless', u'rise', u'actu', u'plan'] [u'chemic', u'tri'] [u'china', u'offer', u'tourism', u'potenti'] [u'chines', u'charg', u'import', u'illeg'] [u'chines', u'talk', u'ban'] [u'compassion', u'bush', u'wide', u'misunderstand', u'schieffer'] [u'concord', u'crash', u'caus', u'defect', u'plane', u'metal'] [u'consum', u'confid', u'jump'] [u'corrupt', u'polic', u'offic', u'give', u'year', u'jail'] [u'council', u'feel', u'leav', u'timber', u'plan'] [u'council', u'hop', u'boost', u'year', u'profit'] [u'council', u'media', u'campaign', u'seek', u'mine', u'royalti'] [u'council', u'continu', u'transpac'] [u'council', u'say', u'water', u'revenu', u'wont', u'rise', u'user'] [u'council', u'push', u'govt', u'manag', u'schooli'] [u'council', u'unfaz', u'icac', u'probe'] [u'council', u'vote', u'curfew'] [u'swear', u'governor'] [u'crime', u'frustrat', u'lennox', u'head', u'communiti'] [u'croc', u'darwin', u'harbour', u'increas'] [u'defend', u'fight', u'gunn', u'legal', u'action'] [u'democrat', u'fear', u'detent', u'centr', u'death'] [u'detox', u'clinic', u'offer', u'rang', u'drug', u'treatment'] [u'save', u'drown', u'babi'] [u'downer', u'condemn', u'mugab', u'anti'] [u'downer', u'confid', u'cooper', u'program'] [u'congo', u'armi', u'kill', u'rebel'] [u'driver', u'urg', u'stay', u'safe', u'christma', u'lead'] [u'drive', u'instructor', u'air', u'doubt', u'plate', u'scheme'] [u'drug', u'test', u'consid', u'sue', u'polic'] [u'drink', u'driver', u'give', u'year', u'kill'] [u'surviv', u'ultralight', u'plane', u'crash'] [u'eidsvold', u'mayor', u'fear', u'closur'] [u'elect', u'monitor', u'need', u'ukrain', u'politician', u'say'] [u'eurobodalla', u'get', u'water', u'respit'] [u'minist', u'appoint', u'york', u'commission'] [u'expert', u'play', u'hendra', u'virus', u'threat'] [u'face', u'recognit', u'discoveri', u'offer', u'treatment', u'hope'] [u'launch', u'inquiri', u'cech', u'comment'] [u'farmer', u'ask', u'spray', u'drift', u'care'] [u'farmer', u'unhappi', u'telstra', u'rural', u'progress'] [u'fenech', u'attack', u'jail'] [u'ansett', u'worker', u'share'] [u'wallabi', u'kafer', u'quit', u'saracen'] [u'corner', u'team', u'apologis', u'timber', u'group', u'say'] [u'ask', u'adopte', u'whos', u'daddi'] [u'fresh', u'reserv', u'bass', u'strait'] [u'report', u'mall', u'plan'] [u'gang', u'rapist', u'jail', u'sydney', u'murder'] [u'georg', u'michael', u'hit', u'elton', u'john'] [u'googl', u'librari', u'book', u'onlin'] [u'govt', u'accus', u'gag', u'nation', u'youth', u'bodi'] [u'govt', u'back', u'citi', u'rail', u'servic', u'shake'] [u'govt', u'grant', u'close', u'court', u'lodhi', u'terror', u'trial'] [u'govt', u'plan', u'secur', u'zone', u'port'] [u'govt', u'warn', u'indon', u'terrorist', u'attack'] [u'green', u'group', u'question', u'plan', u'scheme'] [u'green', u'leader', u'defiant', u'gunn', u'writ'] [u'group', u'form', u'drive', u'giant', u'golf', u'cours', u'plan'] [u'groyn', u'work', u'see', u'harbour', u'plus'] [u'gunmen', u'hijack', u'greek'] [u'health', u'fund', u'member', u'benefit', u'assur'] [u'hezbollah', u'link', u'channel', u'stop', u'broadcast'] [u'high', u'number', u'youth', u'drug', u'drive', u'survey', u'find'] [u'highway', u'reopen', u'blaze'] [u'founder', u'plead', u'guilti', u'charg'] [u'home', u'firm', u'leas', u'depot'] [u'hospit', u'call', u'nation', u'drug', u'overdos', u'regist'] [u'howard', u'join', u'barnett', u'campaign', u'trail'] [u'hunt', u'continu', u'alic', u'escape'] [u'inact', u'shark', u'remain', u'richest'] [u'india', u'reserv', u'second', u'test'] [u'insur', u'woe', u'spark', u'council', u'pool', u'rethink'] [u'intens', u'care', u'chief', u'make', u'hospit', u'pledg'] [u'iraqi', u'polic', u'kill', u'ambush'] [u'iraq', u'seek', u'help', u'miss', u'peopl'] [u'jackson', u'seek', u'trial', u'delay'] [u'juri', u'consid', u'verdict', u'final', u'bodi'] [u'juri', u'retir', u'snowtown', u'trial'] [u'katich', u'urg', u'remain', u'patient'] [u'kelli', u'reject', u'improprieti', u'claim'] [u'wit', u'miss', u'australian', u'sierra', u'leon'] [u'kosciuszko', u'fire', u'report', u'spark', u'mix', u'respons'] [u'kournikova', u'enriqu', u'report'] [u'kyoto', u'refus', u'damag', u'australia', u'minist', u'say'] [u'landcar', u'fund', u'target', u'northern'] [u'landhold', u'warn', u'fever', u'threat'] [u'latham', u'head', u'goldfield'] [u'lawyer', u'want', u'baxter', u'detaine', u'releas', u'treatment'] [u'select', u'pont'] [u'legal', u'threat', u'remain', u'marina'] [u'lennon', u'consid', u'steal', u'generat', u'apolog', u'compo'] [u'liber', u'stand', u'murchison', u'eyr', u'effort'] [u'lobbi', u'group', u'back', u'fast', u'rail', u'safeti', u'boost'] [u'locust', u'unlik', u'pose', u'north', u'west', u'woe'] [u'magnet', u'shark', u'bite', u'compass', u'theori'] [u'give', u'year', u'rape', u'murder'] [u'jail', u'melbourn', u'servic', u'station', u'sieg'] [u'face', u'court', u'drug', u'raid'] [u'mcgrath', u'tip', u'drink', u'duti'] [u'melbourn', u'polic', u'look', u'reduc', u'assault'] [u'minist', u'deni', u'zone', u'oper', u'plan'] [u'mobil', u'blood', u'perman', u'fixtur'] [u'phone', u'market', u'irrelev'] [u'mother', u'give', u'babi', u'methadon', u'court', u'tell'] [u'fear', u'hospit', u'specialist', u'chang'] [u'fight', u'join', u'eastern', u'time', u'zone'] [u'feud', u'extend', u'age', u'care', u'plaqu'] [u'neglig', u'blame', u'indian', u'train', u'crash'] [u'internet', u'worm', u'disguis', u'christma', u'card'] [u'law', u'tackl', u'launceston', u'qualiti', u'problem'] [u'life', u'possibl', u'convent'] [u'roster', u'anger', u'centrelink', u'staff'] [u'team', u'bolster', u'darl', u'down', u'competit'] [u'quebec', u'trip', u'tour', u'franc'] [u'north', u'korea', u'furious', u'possibl', u'japan', u'sanction'] [u'decid', u'plat', u'fast', u'car', u'dont'] [u'pledg', u'repay', u'indigen', u'wag'] [u'frog', u'eat', u'cane', u'toad'] [u'town', u'ban', u'plastic', u'bag'] [u'objection', u'game', u'earn', u'communiti', u'servic'] [u'opposit', u'defend', u'night', u'patrol', u'youth', u'servic'] [u'pakistan', u'bowl', u'waca', u'toss'] [u'parramatta', u'jail', u'escape', u'catch'] [u'perth', u'compani', u'tiwi', u'island'] [u'owner', u'storm', u'advic'] [u'petrol', u'price', u'come', u'martin', u'say'] [u'pickett', u'lose', u'licenc', u'drive', u'offenc'] [u'plan', u'put', u'focus', u'reduc', u'bushfir'] [u'platypus', u'tree', u'tribun', u'judgement'] [u'unhappi', u'techno', u'nation', u'anthem'] [u'polic', u'impound', u'car', u'drag', u'race', u'incid'] [u'polic', u'children', u'kill', u'hous'] [u'polic', u'probe', u'result', u'breach'] [u'polic', u'question', u'student', u'bomb', u'school'] [u'polic', u'seek', u'fresh', u'lead', u'murder', u'investig'] [u'polic', u'tell', u'babi', u'bird', u'golf', u'club'] [u'polic', u'monitor', u'convict', u'paedophil', u'movement'] [u'polish', u'soldier', u'kill', u'iraq', u'chopper', u'crash'] [u'portsmouth', u'share', u'point', u'liverpool'] [u'power', u'bush', u'bond', u'camp'] [u'plate', u'passeng', u'restrict', u'save', u'live'] [u'plater', u'extra', u'train'] [u'christma', u'rush', u'delay', u'surgeri'] [u'premier', u'leagu', u'back', u'refere', u'henri', u'free', u'kick'] [u'privat', u'steer', u'race'] [u'protea', u'fit', u'race', u'england', u'test'] [u'turn', u'film', u'product', u'woe'] [u'rain', u'littl', u'lift', u'water', u'storag'] [u'region', u'storm', u'relief', u'fund'] [u'report', u'advis', u'meat', u'produc'] [u'report', u'pinpoint', u'merger', u'mistak'] [u'rescu', u'fisher', u'releas', u'hospit'] [u'reserv', u'bank', u'see', u'slow', u'growth'] [u'resid', u'give', u'summer', u'water', u'exempt'] [u'resid', u'score', u'lane', u'sale'] [u'rise', u'temp', u'creat', u'ideal', u'condit'] [u'saddam', u'aid', u'trial'] [u'sand', u'provid', u'beach', u'boost'] [u'school', u'get', u'help', u'hand'] [u'scud', u'stosur', u'hand', u'sydney', u'wildcard'] [u'search', u'doctor', u'continu', u'trundl'] [u'senior', u'zarqawi', u'aid', u'kill', u'iraqi', u'polic'] [u'get', u'storm', u'call'] [u'shark', u'attack', u'victim', u'rememb'] [u'shark', u'roam', u'wide', u'search', u'food'] [u'shark', u'victim', u'group', u'fish', u'legal'] [u'sheep', u'trade', u'campaign', u'get', u'court', u'case', u'move'] [u'shire', u'upset', u'defenc', u'train', u'area', u'blaze'] [u'silverlea', u'govt', u'contract'] [u'sister', u'generos'] [u'skin', u'test', u'detect', u'earli', u'onset', u'alzheim'] [u'slater', u'near', u'perfect', u'pipelin', u'heat'] [u'star', u'war', u'missil', u'test', u'fail'] [u'storm', u'bring', u'flood', u'crop', u'insur', u'claim'] [u'student', u'access', u'result', u'earli'] [u'survey', u'highlight', u'murray', u'wetland', u'woe'] [u'teenag', u'steal'] [u'teen', u'drink', u'link', u'parent', u'exampl'] [u'children', u'kill', u'hous'] [u'timber', u'industri', u'crisi', u'deepen'] [u'tourist', u'rescu', u'remot', u'road'] [u'ukrain', u'deni', u'call', u'forc'] [u'uncertainti', u'surround', u'fatal', u'polic', u'pursuit'] [u'civilian', u'honour', u'award', u'offici'] [u'marin', u'iraqi', u'polic', u'kill'] [u'rat', u'rise'] [u'share', u'gain', u'wake', u'rat', u'rise'] [u'troop', u'mock', u'execut', u'electr', u'shock'] [u'vanuatu', u'reward', u'revok', u'taiwan', u'pact'] [u'govt', u'revis', u'budget', u'surplus'] [u'westpac', u'index', u'point', u'strong', u'growth'] [u'wetland', u'road', u'plan', u'spark', u'green', u'fear'] [u'wollongong', u'land', u'valu', u'rise'] [u'wurz', u'tall', u'mclaren'] [u'yuko', u'file', u'bankruptci'] [u'bushfir', u'plan', u'januari', u'releas'] [u'adam', u'scott', u'rat', u'high', u'sport', u'rich', u'list'] [u'affidavit', u'reveal', u'alleg', u'amcor', u'price', u'fix'] [u'discourag', u'travel', u'indonesia', u'follow'] [u'airservic', u'australia', u'appoint', u'chairman'] [u'allawi', u'confirm', u'candidaci', u'iraq', u'elect'] [u'amalgam', u'health', u'servic', u'januari', u'launch'] [u'anlezark', u'battl', u'post', u'olymp', u'ill'] [u'chief', u'begin', u'defam', u'action', u'jone'] [u'armidal', u'test', u'foot', u'mouth', u'prepared'] [u'dump', u'soccer', u'footbal'] [u'aust', u'help', u'philippin', u'bomb', u'investig'] [u'aust', u'maritim', u'zone', u'touch', u'coast'] [u'aust', u'defenc', u'forc', u'strengthen', u'tie'] [u'aust', u'solomon', u'polic', u'comission'] [u'bakhtiyari', u'famili', u'launch', u'stay'] [u'balanc', u'seek', u'polic', u'protest', u'plan'] [u'benetton', u'reject', u'protest', u'aussi', u'wool'] [u'oversea', u'magic', u'million'] [u'bird', u'bash', u'spark', u'secur', u'patrol'] [u'blackout', u'spark', u'power', u'probe'] [u'blue', u'chip', u'stock', u'push', u'market', u'record', u'high'] [u'blue', u'hold', u'tiger'] [u'blunkett', u'resign', u'blair', u'govern'] [u'boffin', u'build', u'smart', u'scarecrow'] [u'britain', u'profit', u'buri', u'foreign', u'wast'] [u'britain', u'warn', u'travel', u'indonesia', u'terror'] [u'bundaberg', u'isi', u'suggest', u'sugar', u'reform', u'plan'] [u'bush', u'wag', u'twin', u'deficit'] [u'busi', u'group', u'back', u'earli', u'alga', u'studi'] [u'bypass', u'fund', u'issu', u'rais'] [u'cadet', u'program', u'encourag', u'school', u'attend'] [u'stop', u'south', u'sister', u'log', u'plan'] [u'cambodian', u'guilti', u'wife', u'murder'] [u'cameron', u'doomadge', u'mother', u'die'] [u'help', u'fight', u'domest', u'violenc'] [u'chamber', u'back', u'safeti', u'export'] [u'christma', u'wont', u'disadvantag', u'client', u'centrelink'] [u'citrus', u'grower', u'vent', u'frustrat'] [u'commit', u'smoker', u'cremat', u'fag'] [u'committe', u'releas', u'final', u'report', u'redfern', u'riot'] [u'conserv', u'strategi', u'protect', u'tuart'] [u'costa', u'reject', u'interchang', u'claim'] [u'council', u'elect', u'offici'] [u'council', u'assess', u'hous', u'shop', u'centr', u'plan'] [u'council', u'celebr', u'staff', u'merger', u'effort'] [u'council', u'want', u'rail', u'freight', u'line', u'track'] [u'counsel', u'servic', u'critic', u'bankruptci', u'plan'] [u'csiro', u'play', u'role', u'bolster', u'alic', u'spring'] [u'dead', u'pet', u'threaten', u'beij', u'green', u'olymp'] [u'death', u'toll', u'rise', u'karbala', u'bomb'] [u'demand', u'grow', u'salvo', u'christma', u'servic'] [u'democrat', u'seek', u'urgent', u'inquiri', u'forest'] [u'dizzi', u'go', u'langer', u'fight'] [u'doubt', u'rais', u'fast', u'train', u'speed'] [u'downer', u'discuss', u'concern', u'vanuatu'] [u'dubbo', u'start', u'sofa'] [u'earli', u'photo', u'sell'] [u'england', u'coach', u'best', u'world', u'marsh'] [u'timor', u'threaten', u'campaign', u'aust'] [u'urg', u'begin', u'membership', u'talk', u'turkey'] [u'extra', u'crew', u'send', u'battl', u'bushfir'] [u'fear', u'wild', u'threat', u'spread'] [u'forest', u'contractor', u'gunn', u'lawsuit'] [u'offici', u'appeal', u'bail', u'refus'] [u'gorman', u'win', u'gold', u'china'] [u'govern', u'anger', u'ansett', u'worker'] [u'govt', u'appoint', u'minist', u'children'] [u'govt', u'unsway', u'secur', u'zone', u'concern'] [u'want', u'retrain', u'scheme', u'entic', u'doctor'] [u'greek', u'hijack', u'end'] [u'group', u'take', u'issu', u'rate', u'charg', u'chang'] [u'guantanamo', u'prison', u'clear', u'challeng', u'detent'] [u'gunmen', u'kill', u'senior', u'iraqi', u'ministri', u'offici'] [u'harper', u'name', u'sydney', u'chief'] [u'health', u'minist', u'hear', u'case', u'rescu', u'chopper'] [u'henman', u'upbeat', u'babi'] [u'hewitt', u'davenport', u'head', u'sydney', u'field'] [u'hewitt', u'rashe', u'book', u'doubl', u'date'] [u'homeswest', u'cop', u'flak', u'indigen', u'tenanc'] [u'hospit', u'beat', u'anaesthetist', u'appoint'] [u'hous', u'construct', u'rat', u'plummet'] [u'iceland', u'offer', u'sanctuari', u'chess', u'legend', u'fischer'] [u'industri', u'land', u'shortag', u'prompt', u'council', u'review'] [u'injur', u'eagl', u'releas', u'rehabilit'] [u'injur', u'harri', u'miss', u'lanka', u'dayer'] [u'iraqi', u'elect', u'campaign', u'begin'] [u'italian', u'kidnap', u'iraq', u'report'] [u'jackson', u'lawyer', u'seek', u'dismiss', u'charg'] [u'jakarta', u'hotel', u'play', u'terror', u'alert'] [u'japanes', u'steelmak', u'australian', u'coal', u'mine'] [u'jone', u'sue', u'drug', u'accus'] [u'juri', u'deliber', u'crash', u'trial'] [u'karbala', u'bomb', u'kill', u'wound'] [u'kewel', u'expect', u'miss', u'socceroo', u'friend'] [u'peopl', u'smuggl', u'convict', u'overturn'] [u'wit', u'bashir', u'trial', u'withdraw', u'confess'] [u'khartoum', u'agre', u'stop', u'darfur', u'militari', u'offens'] [u'kiwi', u'recal', u'tuffey'] [u'langer', u'gilchrist', u'ralli', u'australia'] [u'langer', u'gilchrist', u'turn', u'tide'] [u'langer', u'spoil', u'pakistan', u'pace', u'parti'] [u'lawyer', u'warn', u'mobil', u'phone', u'pitfal'] [] [u'play', u'say', u'chappel'] [u'lennon', u'reject', u'call', u'forestri', u'inquiri'] [u'liber', u'say', u'connecteast', u'share', u'profit'] [u'liber', u'prefer', u'solut', u'compo'] [u'lismor', u'expect', u'seek', u'storm', u'repair', u'fund'] [u'lodhi', u'lawyer', u'attempt', u'discredit', u'wit'] [u'long', u'term', u'unemploy', u'rate', u'dive'] [u'magnet', u'sewerag', u'treatment', u'plant'] [u'magnific', u'langer', u'rescu', u'australia'] [u'die', u'victoria', u'stab'] [u'get', u'life', u'murder', u'children'] [u'plead', u'guilti', u'kidnap', u'teen'] [u'martin', u'back', u'water', u'panel', u'appoint'] [u'master', u'champ', u'green', u'play', u'open'] [u'mayor', u'talk', u'childcar', u'centr', u'benefit'] [u'hotel', u'facelift'] [u'melbourn', u'bali', u'jail', u'offer', u'consular'] [u'west', u'iron', u'deposit', u'suppli', u'china'] [u'minist', u'defend', u'polic', u'driver', u'drug', u'test'] [u'missil', u'expert', u'cast', u'doubt', u'star', u'war'] [u'fear', u'telstra', u'privatis', u'region', u'impact'] [u'paranoid', u'phone', u'tap'] [u'ponder', u'nation', u'arsonist', u'regist'] [u'reject', u'feder', u'fund', u'bias', u'claim'] [u'rogu', u'trader', u'face', u'crimin', u'charg'] [u'newcastl', u'jobless', u'rate', u'rise'] [u'aquacultur', u'industri', u'expans'] [u'govt', u'plan', u'random', u'drug', u'test'] [u'say', u'telstra', u'improv', u'servic'] [u'minist', u'reject', u'australian', u'move', u'deport'] [u'okay', u'aust', u'maritim', u'secur', u'zone'] [u'regul', u'investig', u'packag', u'firm'] [u'oberon', u'rule', u'fluorid', u'water'] [u'price', u'wall', u'street', u'share', u'climb'] [u'spill', u'pollut', u'suez', u'canal'] [u'onesteel', u'furnac', u'action'] [u'paedophil', u'ferguson', u'arriv', u'brisban'] [u'pair', u'custodi', u'weapon', u'drug', u'charg'] [u'pakistan', u'coach', u'hit', u'miandad', u'critic'] [u'pakistani', u'give', u'year', u'jail', u'peopl', u'smuggl'] [u'palestinian', u'hardlin', u'reject', u'ceas', u'plea'] [u'palestinian', u'milit', u'kill', u'suspect', u'isra'] [u'paralymp', u'legend', u'rule', u'beij', u'appear'] [u'pasta', u'maker', u'kyabram', u'home'] [u'pilbara', u'fund', u'roll', u'shire', u'project'] [u'pilot', u'error', u'play', u'mackay', u'plane', u'scare'] [u'pitcairn', u'island', u'elect', u'mayor'] [u'plan', u'minist', u'assess', u'wind', u'farm', u'plan'] [u'plan', u'afoot', u'unit', u'colleg'] [u'polic', u'bust', u'luxuri', u'import', u'gang'] [u'polic', u'continu', u'health', u'servic', u'probe'] [u'polic', u'investig', u'adelaid', u'shark', u'attack', u'report'] [u'polic', u'launch', u'fatal', u'hous', u'probe'] [u'policeman', u'plead', u'guilti', u'possess', u'child', u'porn'] [u'prais', u'palm', u'polic', u'riot'] [u'probe', u'begin', u'tweed', u'council'] [u'product', u'ramp', u'timor', u'leak'] [u'promot', u'insist', u'tszyu', u'fight', u'hatton'] [u'public', u'servant', u'rais', u'concern', u'employ'] [u'public', u'urg', u'readi'] [u'public', u'urg', u'comment', u'propos', u'busway'] [u'purport', u'lade', u'tape', u'releas'] [u'qanta', u'offer', u'refund', u'ticket', u'indonesian'] [u'queen', u'plan', u'tour', u'mercuri', u'death'] [u'question', u'rais', u'biodri', u'plant', u'fund'] [u'rail', u'union', u'accept', u'deal', u'agreement'] [u'rain', u'prove', u'miss', u'grazier'] [u'ranger', u'exit', u'uefa'] [u'ratepay', u'council', u'consult'] [u'razorback', u'rout', u'understrength', u'wildcat'] [u'reef', u'fish', u'compo', u'enter', u'stage'] [u'report', u'show', u'rise', u'foster', u'care', u'bulli'] [u'resid', u'fear', u'casino', u'plan'] [u'resid', u'appeal', u'truck', u'depot'] [u'ridley', u'jacob', u'reveal', u'retir', u'plan'] [u'roddick', u'link', u'coach'] [u'rudd', u'back', u'govt', u'terror', u'warn'] [u'sami', u'strike', u'waca'] [u'scott', u'rat', u'high', u'sport', u'rich', u'list'] [u'sept', u'conspiraci', u'theorist', u'pose', u'challeng'] [u'shop', u'centr', u'upgrad'] [u'shoot', u'putter', u'recov', u'athen'] [u'singh', u'win', u'europ', u'award'] [u'sleep', u'habit', u'dead', u'jellyfish', u'reveal'] [u'lanka', u'urg', u'offer', u'support', u'norway'] [u'strong', u'trade'] [u'student', u'high', u'school', u'result', u'releas'] [u'studi', u'uncov', u'ant', u'degre', u'navig'] [u'sudan', u'govt', u'agre', u'stop', u'militari', u'offens'] [u'sydney', u'hobart', u'suffer', u'late', u'withdraw'] [u'sydney', u'terror', u'case', u'hear', u'wit'] [u'univers', u'play', u'role', u'saturn', u'mission'] [u'taylor', u'prompt', u'beach', u'fear'] [u'teen', u'kill', u'adelaid', u'shark', u'attack'] [u'temporari', u'heavi', u'haulag', u'rout', u'spark', u'blame', u'game'] [u'tenterden', u'fire', u'inquest', u'adjourn'] [u'test', u'combat', u'wage', u'speed'] [u'tiger', u'troubl', u'earli'] [u'tiger', u'make', u'slow', u'progress'] [u'time', u'warner', u'settl', u'fraud', u'charg'] [u'tourist', u'sting', u'irukandji', u'jellyfish'] [u'town', u'plan', u'woe', u'expect', u'worsen'] [u'toxicologist', u'call', u'drink', u'spike', u'evid'] [u'track', u'highlight', u'roam', u'hungri', u'shark'] [u'trundl', u'access', u'doctor', u'park'] [u'turtl', u'passeng', u'luggag'] [u'tweed', u'lose', u'movi'] [u'charg', u'ecstasi', u'haul'] [u'announc', u'world', u'wide', u'embassi', u'overhaul'] [u'court', u'reject', u'anti', u'terror', u'detent', u'polici'] [u'ukrain', u'vow', u'protest', u'poll', u'result'] [u'union', u'back', u'meatwork', u'revamp'] [u'deni', u'afghan', u'abus', u'despit', u'prison', u'death'] [u'eas', u'sanction', u'cuba', u'iran', u'sudan'] [u'embassi', u'indonesia', u'warn', u'increas', u'risk'] [u'warn', u'plan', u'milit', u'attack', u'kuwait'] [u'boost', u'miner', u'explor'] [u'film', u'delay', u'pipelin'] [u'wearabl', u'solar', u'panel', u'charg', u'mobil'] [u'werri', u'creek', u'more', u'rail', u'servic', u'return'] [u'western', u'power', u'admit', u'breach', u'regul'] [u'westpac', u'test', u'employe', u'fake', u'rogu', u'trade'] [u'wild', u'oat', u'sow', u'sydney', u'hobart', u'warn'] [u'woman', u'lose', u'prosecut', u'swim', u'coach'] [u'yass', u'water', u'restrict', u'lift'] [u'zarqawi', u'trial', u'begin', u'jordan'] [u'zimbabwean', u'charg', u'call', u'mugab', u'head'] [u'surplus', u'half', u'year', u'budget', u'review'] [u'campaign', u'target', u'christma', u'drink', u'driver'] [u'probe', u'schofield', u'west'] [u'alleg', u'lade', u'tape', u'target', u'saudi', u'ruler'] [u'allianc', u'breath', u'life', u'coal'] [u'ord', u'break', u'mark'] [u'alston', u'award', u'london', u'post'] [u'alston', u'welcom', u'london', u'challeng'] [u'amcor', u'settl', u'employe'] [u'increas', u'sudan', u'conting'] [u'aussi', u'atkinson', u'join', u'world', u'ralli', u'circuit'] [u'aussi', u'claim', u'earli', u'wicket'] [u'australia', u'ask', u'deeper', u'program'] [u'australian', u'barrack', u'iraq'] [u'bangladesh', u'small', u'target', u'ahead', u'second', u'india'] [u'bankruptci', u'wont', u'halt', u'yuko', u'asset', u'sale'] [u'bartlett', u'plan', u'hunger', u'strike', u'baxter', u'detaine'] [u'baxter', u'detaine', u'rooftop', u'protest'] [u'bhutan', u'ban', u'tobacco', u'sale'] [u'blue', u'tiger', u'even', u'pois'] [u'blue', u'tiger', u'lock', u'tight', u'clash'] [u'brown', u'vow', u'continu', u'growth', u'forest', u'campaign'] [u'bull', u'slump', u'defeat', u'season'] [u'bumbl', u'batsmen', u'pakistan'] [u'bushrang', u'face', u'undef', u'bull', u'gabba'] [u'extend', u'tamworth', u'rescu', u'chopper', u'servic'] [u'campaign', u'aim', u'fight', u'newcastl', u'drink', u'drive'] [u'campaign', u'highlight', u'famili', u'violenc', u'law'] [u'central', u'west', u'student', u'cream', u'crop'] [u'chariti', u'makeshift', u'rubbish'] [u'chelsea', u'look', u'clip', u'canari', u'wing'] [u'chopper', u'pilot', u'surviv', u'ipswich', u'crash', u'land'] [u'secret', u'detent', u'camp', u'guantanamo'] [u'clean', u'bosnich', u'target', u'lower', u'leagu', u'comeback'] [u'clergymen', u'face', u'court', u'abus', u'alleg'] [u'coast', u'put', u'focus', u'sustain', u'tourism'] [u'competit', u'prompt', u'chief', u'increas'] [u'connor', u'boost', u'british', u'tenni'] [u'coonan', u'deni', u'telstra', u'cut', u'link'] [u'correct', u'offic', u'begin', u'work', u'women'] [u'cosmet', u'surgeri', u'compani', u'back', u'surgeon', u'warn'] [u'councillor', u'question', u'tweed', u'council', u'probe'] [u'council', u'want', u'carr', u'meet', u'rail'] [u'counsellor', u'hand', u'listen', u'christma', u'time'] [u'coupl', u'poison', u'sofa', u'award', u'damag'] [u'court', u'throw', u'cash', u'lifelin', u'kay', u'victim'] [u'crew', u'stretch', u'bushfir', u'rage', u'esper'] [u'darchinyan', u'say', u'goodnight', u'iren'] [u'darwin', u'storm', u'ground', u'qanta'] [u'dept', u'consid', u'support', u'accommod', u'option'] [u'dismal', u'pakistan', u'rope'] [u'downer', u'deni', u'indonesia', u'terror', u'snub'] [u'downer', u'hail', u'franc', u'role', u'pacif'] [u'downer', u'posit', u'meet', u'vanuatu'] [u'draper', u'dilemma', u'tenni', u'golf'] [u'draper', u'show', u'sport', u'specialist'] [u'dravid', u'gambhir', u'plunder', u'bangladesh'] [u'driver', u'urg', u'christma', u'statist'] [u'drive', u'regist', u'exil', u'iraqi', u'elect'] [u'educ', u'plan', u'help', u'road', u'crash'] [u'kill', u'afghan', u'prison', u'sieg'] [u'ellison', u'welcom', u'year', u'sentenc', u'peopl'] [u'esper', u'fire', u'continu', u'burn'] [u'timor', u'cabinet', u'pass', u'landmark', u'petroleum'] [u'offer', u'octob', u'date', u'turkey', u'talk'] [u'exot', u'moth', u'combat', u'mimosa', u'infest'] [u'fin', u'wenger', u'ruud', u'comment'] [u'farmer', u'urg', u'photograph', u'dodgi', u'power', u'pole'] [u'fast', u'consid', u'answer', u'plater', u'woe'] [u'feder', u'minist', u'flag', u'rate', u'hike'] [u'fiji', u'reshuffl', u'cabinet'] [u'final', u'give', u'armidal', u'polic', u'station'] [u'victim', u'injuri', u'consid', u'suspici'] [u'charg', u'man', u'bodi'] [u'french', u'algerian', u'jail', u'plot', u'market', u'bomb'] [u'fish', u'licenc', u'buyout', u'unlik'] [u'gambhir', u'dravid', u'steadi', u'india'] [u'germani', u'overwhelm', u'japan', u'tour', u'open'] [u'govt', u'encount', u'websit', u'problem'] [u'govt', u'rais', u'power', u'compani'] [u'govt', u'bluefin', u'tuna', u'conserv'] [u'grazier', u'fin', u'clear', u'heritag', u'list', u'land'] [u'group', u'jail', u'strasbourg', u'bomb', u'plot'] [u'amnesti', u'deadlin', u'trigger', u'remind'] [u'happi', u'tune', u'eager', u'super', u'return'] [u'hawk', u'halt', u'slide', u'sixer', u'narrowli'] [u'henin', u'hardenn', u'play', u'exhibit', u'match'] [u'hill', u'defend', u'maritim', u'secur', u'zone'] [u'hill', u'tri', u'sooth', u'indonesian', u'concern'] [u'homeless', u'shelter', u'unabl', u'cope', u'demand'] [u'hous', u'committe', u'call', u'independ', u'board'] [u'student', u'urg', u'consid', u'option'] [u'icac', u'clear', u'corrupt', u'alleg'] [u'indonesian', u'polic', u'bomb'] [u'indonesia', u'reject', u'maritim', u'secur', u'zone'] [u'iraq', u'poll', u'contest', u'bloc'] [u'iraq', u'crime', u'tribun', u'flaw', u'right', u'group'] [u'kasper', u'kill', u'pakistan', u'hop'] [u'kempsey', u'council', u'look', u'chang'] [u'langer', u'eye', u'doubl', u'aussi', u'push'] [u'langer', u'eye', u'doubl', u'australia', u'push'] [u'gasp', u'foul', u'king', u'past', u'pirat'] [u'latham', u'ponder', u'japanes', u'offer'] [u'latham', u'seek', u'brief', u'terrorist', u'warn'] [u'latham', u'talk', u'industri', u'relat', u'miner'] [u'lennon', u'encourag', u'respons', u'abus', u'payout'] [u'liverpool', u'step', u'hunt', u'morient'] [u'locust', u'threat', u'predict', u'increas', u'summer'] [u'long', u'wait', u'rescu', u'chopper'] [u'disabl', u'council', u'announc'] [u'arrest', u'alleg', u'drug', u'sale'] [u'die', u'highway', u'crash'] [u'extradit', u'perth', u'drug', u'charg'] [u'fin', u'alcohol', u'sale', u'indigen'] [u'give', u'year', u'strangl', u'aunt'] [u'jail', u'fatal', u'crash'] [u'marion', u'jone', u'challeng', u'accus', u'detector'] [u'mar', u'mission', u'hail', u'breakthrough'] [u'maverick', u'smith', u'contest', u'eyr'] [u'melbourn', u'christian', u'group', u'vilifi'] [u'melbourn', u'terror', u'suspect', u'make', u'second', u'bail'] [u'outnumb', u'women', u'die', u'injuri'] [u'million', u'dollar', u'reward', u'offer', u'halvagi'] [u'minist', u'outlin', u'technic', u'colleg', u'plan'] [u'minist', u'yanner', u'plan'] [u'mitsubishi', u'motor', u'sell', u'japanes', u'report'] [u'mourinho', u'rule', u'januari', u'shop', u'spree'] [u'admit', u'lobbi', u'orang', u'grove', u'rezon'] [u'air', u'health', u'servic', u'debt', u'concern'] [u'attack', u'kosciuszko', u'fire', u'inquiri', u'find'] [u'review', u'agenc', u'power'] [u'beat', u'servic', u'success'] [u'technolog', u'address', u'flood', u'woe'] [u'polit', u'parti', u'monitor', u'develop'] [u'chang', u'water', u'alloc', u'cut'] [u'busi', u'oper', u'heed', u'terror', u'warn'] [u'murder', u'investig', u'turn'] [u'nundl', u'recognis', u'adventur', u'tourism'] [u'onlin', u'dictionari', u'breath', u'life', u'english'] [u'pakistan', u'disarray'] [u'pakistan', u'slide', u'continu'] [u'palm', u'island', u'want', u'accus', u'rioter', u'home'] [u'sell', u'televis', u'station'] [u'petit', u'put', u'case', u'highway', u'bypass', u'option'] [u'owner', u'warn', u'danger'] [u'pngs', u'futur', u'look', u'bright', u'chief', u'say'] [u'polic', u'arrest', u'major', u'drug', u'bust'] [u'polic', u'confirm', u'arsenic', u'indonesia', u'soup'] [u'polic', u'investig', u'latrob', u'death'] [u'polic', u'offic', u'charg', u'fatal', u'crash'] [u'polic', u'probe', u'fatal', u'cliff', u'crash'] [u'polic', u'search', u'miss'] [u'polic', u'worri', u'imperson', u'antic'] [u'hitler', u'spark', u'outrag'] [u'protea', u'coach', u'urg', u'kalli', u'gibb', u'deliv'] [u'public', u'urg', u'avoid', u'christma', u'panic'] [u'record', u'industri', u'sue', u'hundr', u'onlin', u'song', u'swap'] [u'redund', u'continu', u'seven', u'network'] [u'report', u'say', u'wollongong', u'rescu', u'chopper'] [u'research', u'blow', u'whistl', u'complex', u'offsid', u'rule'] [u'ax', u'canberra', u'sydney', u'servic'] [u'river', u'sight', u'prompt', u'shark', u'warn'] [u'russian', u'analys', u'martian', u'soil'] [u'saddam', u'loyalist', u'direct', u'rebel', u'syria'] [u'saddam', u'meet', u'lawyer', u'time'] [u'saddam', u'tri'] [u'saliva', u'drug', u'test', u'come', u'critic'] [u'order', u'destruct', u'killer', u'shark'] [u'scientist', u'reason', u'declin', u'seal'] [u'search', u'resum', u'fatal', u'shark', u'attack'] [u'share', u'respons', u'deal', u'success'] [u'shark', u'attack', u'victim', u'famili', u'kill', u'order'] [u'shark', u'spot', u'near', u'attack', u'site'] [u'sharon', u'hail', u'breakthrough', u'year', u'peac'] [u'shoaib', u'fin', u'hayden', u'send'] [u'shop', u'centr', u'expans', u'council'] [u'sixer', u'hold', u'breaker', u'nail', u'bite'] [u'snowtown', u'murder', u'juri', u'retir', u'night'] [u'soldier', u'return', u'timor'] [u'south', u'africa', u'target', u'harmison'] [u'springbok', u'reviv', u'light', u'rugbi', u'year'] [u'georg', u'forecast', u'increas', u'home', u'lend'] [u'stop', u'order', u'leski', u'inquest'] [u'strict', u'danc', u'host', u'unrepent', u'gympi', u'gripe'] [u'sydney', u'beach', u'declar', u'smoke', u'free'] [u'tafe', u'staff', u'exorcis', u'budget', u'demon'] [u'tailend', u'hang', u'perth'] [u'tailend', u'spark', u'victorian', u'recoveri', u'bull'] [u'taroom', u'get', u'water', u'meter'] [u'telstra', u'slash', u'manag', u'job'] [u'terror', u'suspect', u'refus', u'access', u'materi'] [u'opposit', u'audit', u'offic'] [u'fan', u'ban', u'racial', u'abus', u'york'] [u'hold', u'melbourn', u'drug', u'raid'] [u'timber', u'giant', u'accus', u'intimid', u'tactic'] [u'surf', u'forc', u'pipelin', u'postpon'] [u'tottenham', u'keep', u'ambul', u'station'] [u'tourist', u'recov', u'stinger', u'attack'] [u'uefa', u'final', u'decid'] [u'warship', u'captain', u'lose', u'post', u'bulli', u'probe'] [u'investig', u'bug', u'european', u'headquart'] [u'offer', u'place', u'scholar'] [u'million', u'pay', u'elvi', u'presley', u'estat'] [u'dollar', u'climb', u'wake', u'deficit', u'data'] [u'marin', u'kill', u'near', u'baghdad'] [u'trade', u'deficit', u'hit', u'record', u'high'] [u'villa', u'boss', u'oleari', u'sign', u'contract', u'extens'] [u'violenc', u'answer', u'pope', u'say'] [u'violent', u'storm', u'caus', u'darwin', u'blackout'] [u'effort', u'stop', u'cane', u'toad', u'march'] [u'word', u'erupt', u'locust', u'control', u'effort'] [u'warrior', u'competit', u'total'] [u'shoot', u'suspect'] [u'water', u'author', u'probe', u'discharg'] [u'water', u'law', u'expect', u'hurt', u'local', u'shire'] [u'sour', u'william', u'injuri'] [u'west', u'indi', u'close', u'finalis', u'tour', u'squad'] [u'whaler', u'shark', u'blame', u'barrier', u'reef', u'attack'] [u'woman', u'jail', u'theft', u'employ'] [u'woman', u'jail', u'daughter', u'manslaught'] [u'women', u'centr', u'expect', u'yuletid', u'domest', u'violenc'] [u'thief', u'payout', u'restor'] [u'yacht', u'club', u'look', u'long', u'term', u'leas'] [u'actab', u'plan', u'gungahlin'] [u'activist', u'enrag', u'kenyan', u'allow', u'kill'] [u'agenc', u'shock', u'gambian', u'correspond', u'murder'] [u'arthriti', u'drug', u'link', u'heart', u'attack', u'risk'] [u'arthriti', u'drug', u'stay', u'aust', u'market'] [u'aussi', u'squash', u'oppon', u'world', u'doubl', u'champ'] [u'aussi', u'taylor', u'champ'] [u'australian', u'suspect', u'arrest'] [u'australia', u'tighten', u'grip', u'test'] [u'babi', u'womb', u'aliv'] [u'bakhtiyari', u'famili', u'move'] [u'barnett', u'leap', u'ahead', u'poll'] [u'bartlett', u'join', u'hunger', u'strike'] [u'beatti', u'defend', u'minist', u'accus', u'cover'] [u'blair', u'meet', u'palestinian', u'leadership', u'ramallah'] [u'blue', u'close', u'victori', u'tiger'] [u'blue', u'inning', u'point'] [u'british', u'billionair', u'doubl', u'band', u'profit'] [u'bull', u'slump', u'defeat', u'season'] [u'bush', u'approv', u'intellig', u'overhaul'] [u'busload', u'kid', u'visit', u'jackson', u'neverland', u'ranch'] [u'canberra', u'seek', u'jetstar', u'servic'] [u'captur', u'journalist', u'driver'] [u'celebrex', u'stay', u'sale'] [u'chelsea', u'draw', u'barca'] [u'china', u'crown', u'miss', u'plastic', u'surgeri'] [u'clark', u'palm', u'island', u'ticket', u'furor'] [u'climat', u'chang', u'confer', u'run', u'overtim'] [u'cuba', u'christma', u'decor'] [u'deadlin', u'issu', u'sudan', u'time', u'bomb'] [u'deal', u'reach', u'isra', u'coalit'] [u'deal', u'strike', u'negoti'] [u'depart', u'nasa', u'chief', u'defend', u'hubbl', u'decis'] [u'dippenaar', u'score', u'test', u'centuri'] [u'owner', u'warn', u'cane', u'toad', u'poison'] [u'dravid', u'ganguli', u'india', u'command'] [u'dubbo', u'firefight', u'honour', u'braveri'] [u'england', u'honour', u'port', u'elizabeth'] [u'journalist', u'appeal', u'assault', u'sentenc'] [u'father', u'kill', u'say'] [u'feral', u'reindeer', u'brisban', u'suburb', u'xmas'] [u'crew', u'battl', u'bushfir'] [u'firefight', u'battl', u'black', u'hill', u'blaze'] [u'firefight', u'contain', u'bushfir'] [u'test', u'go', u'accord', u'script'] [u'violent', u'french', u'storm'] [u'flame', u'turn', u'heat'] [u'freak', u'storm', u'kill', u'franc'] [u'futur', u'climat', u'talk', u'deal', u'agre'] [u'futur', u'australian', u'pop', u'orchestra'] [u'garden', u'guru', u'heinz', u'sign'] [u'gollum', u'precious', u'littl', u'regard', u'health'] [u'greek', u'sprinter', u'submit', u'dope', u'explan'] [u'green', u'bodi', u'want', u'polit', u'donat', u'chang'] [u'haddin', u'steer', u'blue', u'inning', u'point'] [u'hawk', u'halt', u'slide'] [u'histor', u'turkey', u'deal', u'welcom'] [u'hobart', u'get', u'public', u'cemeteri', u'space'] [u'hunt', u'killer', u'shark', u'continu'] [u'indigen', u'legal', u'servic', u'review'] [u'islamist', u'group', u'claim', u'kill', u'intellig'] [u'israel', u'declin', u'attend', u'london', u'confer'] [u'isra', u'troop', u'target', u'khan', u'yuni', u'milit'] [u'juri', u'deadlock', u'snowtown', u'murder', u'trial'] [u'juri', u'retir', u'snowtown', u'trial'] [u'long', u'wait', u'compo', u'say', u'western', u'power'] [u'swim', u'accid', u'die'] [u'involv', u'nedland', u'sieg', u'recaptur'] [u'sentenc', u'boy', u'rape'] [u'martyn', u'hit', u'aussi', u'declar'] [u'minist', u'warn', u'year', u'debt', u'hangov'] [u'monti', u'withdraw', u'ryder', u'captainci', u'race'] [u'murdoch', u'eye'] [u'musharraf', u'confirm', u'militari', u'role'] [u'win', u'tiger', u'king', u'cat', u'taipan'] [u'union', u'chief', u'slam', u'gunn', u'lawsuit'] [u'need', u'investig', u'airfar', u'scandal', u'beatti'] [u'offici', u'play', u'risk', u'deeper', u'port'] [u'palestinian', u'rescu', u'gaza', u'tunnel', u'collaps'] [u'patrol', u'step', u'search', u'killer', u'shark'] [u'polic', u'investig'] [u'policeman', u'burn', u'station', u'attack'] [u'polic', u'question', u'hous', u'stab'] [u'polic', u'search', u'involv', u'nedland', u'sieg'] [u'minist', u'accus', u'airfar', u'cover'] [u'ract', u'step', u'petrol', u'price', u'push'] [u'rafiqu', u'mortaza', u'strike', u'india', u'pass'] [u'reclus', u'austrian', u'writer', u'collect', u'nobel'] [u'bull', u'give', u'coulthard', u'wing'] [u'richmond', u'fan', u'endors', u'casey', u'ticket'] [u'russian', u'anti', u'terror', u'pass', u'hurdl'] [u'secur', u'video', u'travel'] [u'palestinian', u'kill', u'gaza', u'raid'] [u'korea', u'japan', u'urg', u'north', u'resum', u'nuclear', u'talk'] [u'snowtown', u'juri', u'undecid'] [u'soldier', u'sue', u'govern', u'alleg', u'abus'] [u'speaker', u'campaign', u'princ', u'visit'] [u'sport', u'rage', u'advic', u'offer', u'volunt', u'coach'] [u'sting', u'hop', u'continu', u'proud', u'tradit'] [u'sudan', u'govern', u'launch', u'darfur', u'offens'] [u'sudan', u'withdraw', u'troop', u'darfur'] [u'turkey', u'embark', u'road', u'entri'] [u'burundi', u'peacekeep', u'suspend'] [u'union', u'refus', u'repay', u'western', u'power', u'donat'] [u'formal', u'write', u'iraqi', u'debt'] [u'work', u'free', u'hostag', u'baghdad'] [u'vanston', u'defend', u'decis', u'bakhtiyari'] [u'appeal', u'homeless', u'fund', u'decis'] [u'wait', u'result'] [u'wall', u'street', u'slip', u'price', u'leap'] [u'sour', u'william', u'injuri'] [u'wind', u'farm', u'referr', u'plan', u'gain', u'council', u'support'] [u'woman', u'die', u'braybrook', u'stab'] [u'woolmer', u'slam', u'disgrac', u'bat', u'perform'] [u'adelaid', u'shark', u'patrol', u'continu'] [u'agent', u'fin', u'keep', u'hous', u'histori', u'buyer'] [u'alleg', u'tile', u'thrower', u'treat', u'appropri', u'mcginti'] [u'time', u'best', u'australian', u'bowl', u'figur'] [u'ancelotti', u'claim', u'moral', u'victori', u'juve', u'surviv'] [u'angri', u'sikh', u'storm', u'theatr', u'england'] [u'appeal', u'wit', u'brawl'] [u'ashra', u'defi', u'india', u'gutsi', u'half', u'centuri'] [u'ashra', u'slam', u'unbeaten', u'spur', u'bangladesh'] [u'aussi', u'close', u'victori'] [u'australia', u'constant', u'chang', u'year'] [u'aust', u'scientist', u'renew', u'call', u'antarct', u'link'] [u'bartlett', u'pledg', u'support', u'baxter', u'detaine'] [u'baxter', u'protest', u'wan', u'vanston'] [u'beckinsal', u'book'] [u'blast', u'hear', u'indonesia'] [u'blue', u'tiger', u'clash', u'end', u'draw'] [u'brisban', u'charg', u'wide', u'hotel'] [u'bull', u'boost', u'hop', u'centuri'] [u'bush', u'confid', u'isra', u'palestinian', u'peac'] [u'bomb', u'explod', u'karbala'] [u'carol', u'event', u'merri', u'success'] [u'centurion', u'hogg', u'save'] [u'chelsea', u'extend', u'premiership', u'lead'] [u'chemic', u'face', u'crime', u'hear'] [u'communiti', u'club', u'condemn', u'loan', u'magazin'] [u'communiti', u'devast', u'bakhtiyari', u'move'] [u'crew', u'contain', u'kangaroo'] [u'croc', u'sixer', u'home', u'streak'] [u'darfur', u'peac', u'deal', u'doubt'] [u'doctor', u'issu', u'warn', u'drive', u'tire'] [u'fight', u'resum', u'eastern', u'congo', u'say'] [u'fleme', u'continu', u'battl', u'virus'] [u'indian', u'cricket', u'captain', u'hazar', u'die'] [u'franc', u'launch', u'generat', u'satellit'] [u'fraser', u'court', u'resid', u'want', u'secur'] [u'french', u'home', u'power', u'dead', u'storm'] [u'fresh', u'violenc', u'throw', u'sudanes', u'ceas'] [u'gambian', u'journalist', u'strike', u'editor', u'death'] [u'greec', u'surpris', u'packet'] [u'green', u'group', u'unhappi', u'climat', u'chang', u'talk'] [u'green', u'taunt', u'beyer', u'rematch', u'loom'] [u'gunn', u'writ', u'free', u'speech', u'abetz'] [u'helicopt', u'search', u'miss', u'bushwalk'] [u'henin', u'hardenn', u'cautious', u'open', u'return'] [u'indian', u'onlin', u'auction', u'chief', u'hold', u'teen', u'tape'] [u'indonesia', u'blast', u'meteor', u'shower'] [u'injur', u'shoaib', u'hop', u'posit', u'news'] [u'iraq', u'facil', u'target', u'lade'] [u'isra', u'forc', u'withdraw', u'gaza', u'camp'] [u'israel', u'free', u'palestinian', u'prison'] [u'italian', u'soprano', u'renata', u'tebaldi', u'die'] [u'laundri', u'world', u'record', u'wash'] [u'lead', u'jazz', u'saxophonist', u'heckstal', u'smith', u'die'] [u'london', u'polic', u'moor', u'prison', u'ship', u'thame'] [u'malaysia', u'wari', u'australia', u'maritim', u'plan'] [u'arrest', u'brisban', u'newsag', u'assault'] [u'charg', u'fatal', u'geraldton', u'stab'] [u'charg', u'fatal', u'melbourn', u'stab'] [u'custodi', u'hour', u'stand'] [u'kill', u'tractor', u'accid'] [u'martyn', u'magic', u'aussi', u'kill'] [u'makeov', u'complet'] [u'mcgrath', u'hunt', u'scalp'] [u'mcgrath', u'rout', u'pakistan'] [u'mcgrath', u'take', u'test', u'scalp'] [u'melbourn', u'christma', u'sweat'] [u'melburnian', u'ride', u'free'] [u'migrant', u'wall', u'unveil'] [u'mine', u'compani', u'make', u'strong', u'gain'] [u'minist', u'sign', u'tran', u'tasman', u'secur', u'deal'] [u'minist', u'palm', u'island', u'airfar'] [u'miss', u'walker', u'bodi'] [u'motorcyclist', u'kill', u'central', u'coast'] [u'nation', u'museum', u'fight', u'fall', u'visitor', u'number'] [u'ncoss', u'seek', u'communiti', u'own', u'school', u'trial'] [u'perform', u'rais', u'chariti', u'fund'] [u'verdict', u'reach', u'final', u'snowtown', u'trial'] [u'polic', u'introduc', u'video'] [u'oliv', u'twist', u'voic', u'dub', u'girl', u'report'] [u'pair', u'behead', u'traffic'] [u'parent', u'warn', u'pocket', u'rocket', u'bike'] [u'perren', u'lead', u'bull', u'charg'] [u'pinochet', u'hospit', u'stroke'] [u'polic', u'appeal', u'wit', u'assault'] [u'polic', u'charg', u'alleg', u'tile', u'thrower'] [u'post', u'mortem', u'start', u'spineless', u'pakistan'] [u'opposit', u'issu', u'deadlin', u'govt', u'sack'] [u'queensland', u'sting', u'pride', u'wnsl', u'grand', u'final'] [u'real', u'seiz', u'gasp', u'barca', u'salvag', u'draw'] [u'restaur', u'leav', u'truffl'] [u'deni', u'ingor', u'volunt', u'opinion'] [u'royal', u'request', u'prompt', u'hypocrisi', u'claim'] [u'emerg', u'servic', u'discuss', u'shark', u'secur'] [u'scientist', u'target', u'cancer', u'drug', u'effect'] [u'scot', u'ralli', u'armi', u'shake'] [u'shark', u'sight', u'beach'] [u'small', u'quak', u'hit', u'eastern'] [u'south', u'africa', u'fight', u'test'] [u'strauss', u'centuri', u'give', u'england', u'edg'] [u'stun', u'gun', u'save', u'live', u'polic', u'union', u'say'] [u'sudan', u'govt', u'ignor', u'deadlin'] [u'syria', u'pull', u'troop', u'lebanon'] [u'tait', u'put', u'warrior', u'foot'] [u'task', u'forc', u'tackl', u'brisban', u'flood', u'woe'] [u'tender', u'open', u'garden', u'remembr'] [u'kill', u'iraq', u'blast'] [u'territorian', u'chase', u'alcan', u'job'] [u'thai', u'alleg', u'milit', u'train', u'malaysia'] [u'iraqi', u'elect', u'staff', u'kill'] [u'tiger', u'fight', u'blue'] [u'trial', u'extend', u'aborigin', u'court'] [u'turkish', u'hail', u'hero', u'talk'] [u'nistelrooy', u'face', u'long', u'injuri'] [u'victim', u'surpris', u'talk', u'deal'] [u'victoria', u'plant', u'seed', u'green', u'game'] [u'bushfir', u'threaten', u'home'] [u'crew', u'battl', u'bushfir'] [u'warrior', u'earli', u'troubl'] [u'warrior', u'rack', u'redback'] [u'weekend', u'detaine', u'turn', u'record', u'number'] [u'wenger', u'reignit', u'ruud'] [u'wild', u'storm', u'lash', u'sydney'] [u'woman', u'charg', u'babi', u'womb'] [u'women', u'shelter', u'expect', u'extra', u'demand'] [u'worst', u'speed', u'offend', u'expos'] [u'yuko', u'sale', u'expect', u'today'] [u'kill', u'chines', u'explos'] [u'detain', u'iraq', u'bomb'] [u'dead', u'latest', u'iraq', u'violenc'] [u'acoss', u'welcom', u'propos', u'welfar', u'overhaul'] [u'forc', u'buy', u'tanker'] [u'alleg', u'babi', u'kidnapp', u'face', u'committ', u'hear'] [u'armi', u'say', u'base', u'cultur', u'improv', u'soldier'] [u'aussi', u'crash', u'hawaii', u'surf'] [u'australia', u'focus', u'game', u'buchanan'] [u'australian', u'firm', u'launch', u'uranium', u'project', u'malawi'] [u'author', u'remov', u'fitzroy', u'river', u'croc', u'trap'] [u'autopsi', u'conduct', u'dead', u'hiker'] [u'bakhtiyari', u'make', u'fool', u'australian'] [u'bangladesh', u'face', u'defeat', u'despit', u'ashra'] [u'bank', u'pull', u'australian', u'market', u'lower'] [u'baptist', u'colleg', u'get', u'campus', u'fund'] [u'bartlett', u'continu', u'hunger', u'strike'] [u'beatti', u'get', u'robber', u'mix'] [u'beatti', u'tell', u'yanner', u'grow', u'airfar'] [u'benitez', u'back', u'kewel'] [u'biggenden', u'die', u'head', u'crash'] [u'blair', u'say', u'middl', u'east', u'peac', u'person', u'prioriti'] [u'blaze', u'leav', u'famili', u'homeless'] [u'bloomfield', u'host', u'orang', u'hospit'] [u'brack', u'govern', u'protest', u'welfar', u'cut'] [u'brand', u'contest', u'murchison', u'eyr'] [u'brawl', u'like', u'spark', u'polic', u'charg'] [u'brawl', u'prompt', u'secur', u'review'] [u'brisban', u'face', u'court', u'hotel', u'blaze'] [u'bull', u'enforc', u'follow'] [u'bull', u'enforc', u'follow', u'bushrang'] [u'burnett', u'shire', u'resid', u'town', u'plan'] [u'bushfir', u'spark', u'remind', u'readi'] [u'bush', u'name', u'magazin', u'person', u'year'] [u'bushrang', u'fight', u'bull'] [u'bushrang', u'struggl', u'brisban'] [u'busi', u'time', u'emerg', u'servic'] [u'butcher', u'beef', u'support', u'secur', u'mayor', u'spot'] [u'canberra', u'look', u'reviv', u'tourism'] [u'canberra', u'surgeri', u'wait', u'list', u'grow'] [u'cantona', u'come', u'glazer'] [u'capsicum', u'spray', u'prank', u'close', u'nightclub'] [u'clark', u'pay', u'palm', u'island', u'airfar'] [u'coal', u'termin', u'deni', u'expans', u'necessari'] [u'cole', u'issu', u'sultana', u'recal'] [u'congo', u'unrest', u'forc', u'thousand', u'home'] [u'consortium', u'propos', u'friend', u'pipelin', u'option'] [u'consum', u'urg', u'forgiv', u'perfect', u'produc'] [u'coron', u'rule', u'drown', u'death', u'unnatur'] [u'council', u'come', u'rescu', u'lifeguard', u'fund'] [u'council', u'maintain', u'highway', u'bypass', u'stanc'] [u'council', u'plan', u'servic', u'boost'] [u'council', u'combin', u'effort', u'weed', u'pest'] [u'council', u'assess', u'flood', u'feedback'] [u'cricket', u'australia', u'hop', u'box', u'crowd'] [u'custom', u'vessel', u'rescu', u'sick', u'fisherman'] [u'dinosaur', u'perman', u'home', u'queen'] [u'doubt', u'rais', u'student', u'public', u'hous', u'decis'] [u'downer', u'set', u'record', u'foreign', u'affair', u'minist'] [u'drink', u'driver', u'charg', u'polic', u'chase'] [u'driver', u'jail', u'friend', u'crash', u'death'] [u'driver', u'warn', u'river', u'cross', u'danger'] [u'echuca', u'student', u'seek', u'school', u'incent'] [u'electr', u'boss', u'defend', u'power', u'report'] [u'energex', u'boss', u'xmas', u'bonus', u'slash'] [u'espanyol', u'claim', u'second', u'place', u'sevilla', u'beat', u'beti'] [u'esso', u'shift', u'chang', u'safeti', u'risk', u'worker'] [u'famili', u'friend', u'say', u'bakhtiyari', u'remain', u'posit'] [u'fare', u'chang', u'cost', u'fair', u'costa'] [u'farmer', u'alert', u'locust', u'swarm'] [u'father', u'face', u'court', u'son', u'stab'] [u'fear', u'traffic', u'hurt', u'bird', u'rehab', u'effort'] [u'ferrari', u'boss', u'rev', u'revenu'] [u'fifa', u'approv', u'doubl'] [u'fifa', u'reject', u'mexican', u'club', u'request', u'sign', u'femal'] [u'fight', u'continu', u'sudan', u'despit', u'ceas'] [u'financ', u'director', u'beat', u'health', u'servic'] [u'crew', u'battl', u'blaze', u'outer', u'perth'] [u'firefight', u'warn', u'resid', u'alert'] [u'fluorid', u'plan', u'debat'] [u'charg', u'corrim', u'drug', u'raid'] [u'fraser', u'dingo', u'fenc', u'near', u'complet'] [u'fund', u'offer', u'natur', u'resourc', u'project'] [u'gallop', u'condemn', u'govt', u'control', u'uni'] [u'game', u'organis', u'confid', u'asia', u'tune'] [u'generat', u'come', u'line', u'year'] [u'govt', u'award', u'medal', u'long', u'term', u'canberran'] [u'govt', u'date', u'childcar', u'rebat'] [u'govt', u'defend', u'cut', u'emerg', u'support', u'servic'] [u'govt', u'delay', u'cash', u'phase', u'toll', u'road'] [u'govt', u'offer', u'support', u'mine', u'ventur'] [u'govt', u'say', u'compens', u'isnt', u'answer', u'steal'] [u'govt', u'warn', u'credit', u'card', u'danger'] [u'grant', u'help', u'showcas', u'tasmanian', u'technolog'] [u'grenad', u'jakarta', u'hilton', u'park'] [u'homicid', u'investig', u'death'] [u'jintao', u'public', u'slam', u'hong', u'kong', u'leader'] [u'hydrogen', u'power', u'posti', u'bike', u'tassi', u'trial'] [u'hide', u'say', u'iaea', u'chief'] [u'imran', u'deplor', u'pakistan', u'cricket', u'humili'] [u'india', u'complet', u'bangladesh', u'demolit'] [u'indonesian', u'polit', u'twist', u'see', u'oppon'] [u'israel', u'uniti', u'govern', u'talk', u'stall'] [u'jail', u'maximum', u'secur', u'wing', u'reopen'] [u'kakadu', u'entri', u'fee', u'scrap'] [u'kimberley', u'tourism', u'industri', u'continu', u'growth'] [u'hamstr', u'duti'] [u'stick', u'limbo'] [u'leisur', u'centr', u'get', u'fund', u'grant'] [u'local', u'group', u'disput', u'lobster', u'pot'] [u'long', u'term', u'save', u'see', u'cost', u'livestock', u'scheme'] [u'plate', u'supervisor', u'fail', u'breath', u'test'] [u'lump', u'payout', u'worker'] [u'mackay', u'doctor', u'face', u'practic', u'condit'] [u'charg', u'yuendumu', u'hous', u'blaze'] [u'dead', u'motorway', u'smash'] [u'jail', u'child', u'porn', u'imag'] [u'like', u'charg', u'stab'] [u'sledg', u'faulti'] [u'mayor', u'reject', u'pool', u'librari', u'closur', u'claim'] [u'mayor', u'stand', u'pend', u'corrupt', u'probe'] [u'melbourn', u'victori', u'coach'] [u'mine', u'tribun', u'settl', u'govt', u'land', u'disput'] [u'mitchel', u'put', u'hand', u'perth'] [u'moth', u'take', u'wing', u'threaten', u'weed'] [u'welcom', u'princ', u'highway', u'fund'] [u'nelson', u'propos', u'govt', u'control', u'univers'] [u'nelson', u'propos', u'count', u'state', u'fund'] [u'clubhous', u'target', u'boost', u'event'] [u'law', u'restrict', u'nitrat', u'fertilis', u'sale'] [u'advantag', u'local', u'smartcard', u'tender'] [u'north', u'west', u'surviv', u'storm'] [u'nowra', u'die', u'motorcycl', u'crash'] [u'appeal', u'sack', u'teacher', u'compens'] [u'ntini', u'burst', u'put', u'protea', u'content'] [u'worker', u'protest', u'roster', u'chang'] [u'orang', u'grove', u'develop', u'want', u'carr'] [u'organis', u'sing', u'public', u'prais', u'carol'] [u'pakistan', u'coach', u'seek', u'strategi'] [u'pakistan', u'scar', u'waca', u'massacr', u'pont'] [u'parent', u'urg', u'tackl', u'whoop', u'cough'] [u'patient', u'win', u'payout', u'health'] [u'pfizer', u'stop', u'advertis', u'painkil', u'report'] [u'pinochet', u'recov', u'stroke'] [u'pipelin', u'special', u'approv', u'process'] [u'plan', u'afoot', u'longer', u'council', u'term'] [u'polic', u'imperson', u'strike'] [u'polic', u'investig', u'doubl', u'stab'] [u'polic', u'issu', u'holiday', u'behaviour', u'remind'] [u'polic', u'cannabi', u'bust'] [u'polic', u'arrest', u'tennant', u'brawl'] [u'polic', u'probe', u'teen', u'death'] [u'polic', u'improv', u'respons', u'shark', u'sight'] [u'pompey', u'confirm', u'strachan', u'refus'] [u'propos', u'roll', u'chang', u'lock', u'indigen', u'voter'] [u'public', u'warn', u'blue', u'green', u'alga', u'outbreak'] [u'push', u'unifi', u'australia', u'evid', u'law'] [u'drought', u'status', u'remain', u'unchang', u'despit'] [u'rare', u'campbel', u'strike', u'keep', u'arsenal', u'touch'] [u'recycl', u'water', u'longer', u'grey', u'area', u'canberran'] [u'refuge', u'action', u'group', u'consid', u'hunger', u'strike'] [u'report', u'highlight', u'hospit', u'woe'] [u'unlik', u'ditch', u'countri', u'rout'] [u'roch', u'knock', u'feder', u'offer'] [u'rumsfeld', u'criticis', u'condol', u'letter'] [u'ryder', u'star', u'open'] [u'saddam', u'urg', u'iraqi', u'peopl', u'wari', u'elect'] [u'face', u'court', u'cannabi'] [u'polic', u'look', u'recruit'] [u'scientist', u'light', u'emit', u'diod', u'cost'] [u'senat', u'air', u'north', u'coast', u'jobless', u'rate', u'fear'] [u'continu', u'storm', u'clean'] [u'shark', u'sight', u'forc', u'gold', u'coast', u'beach', u'closur'] [u'shiit', u'urg', u'turn', u'cheek', u'iraq', u'attack'] [u'shire', u'presid', u'contest', u'elect'] [u'shoaib', u'urg'] [u'shoot', u'victim', u'famili', u'seek', u'mental', u'health'] [u'showcas', u'highlight', u'nolan', u'divers'] [u'soccer', u'reach', u'youth', u'leagu', u'goal'] [u'soldier', u'kill', u'nepal', u'unrest'] [u'soldier', u'communiti', u'servic', u'hors', u'shoot'] [u'stinger', u'incid', u'spark', u'time', u'warn'] [u'survivor', u'provid', u'entertain', u'cyclon'] [u'swan', u'hail', u'million', u'plus', u'turnaround'] [u'sydney', u'publican', u'die', u'hotel', u'brawl'] [u'sydney', u'publican', u'remain', u'critic'] [u'tasmania', u'reject', u'univers', u'power', u'grab'] [u'teen', u'jail', u'kill', u'homeless'] [u'test', u'regim', u'tri', u'reduc', u'grain', u'contamin'] [u'totti', u'break', u'record', u'udines', u'close'] [u'travel', u'warn', u'prompt', u'qanta', u'crew', u'chang'] [u'tszyu', u'meet', u'russian', u'presid', u'putin'] [u'separ', u'crash'] [u'ukrain', u'candid', u'debat'] [u'underworld', u'figur', u'father', u'face', u'traffic', u'charg'] [u'chief', u'fear', u'nelson', u'plan', u'divers'] [u'union', u'cut', u'deal', u'charl', u'darwin'] [u'union', u'urg', u'govt', u'game', u'contract', u'local'] [u'upgrad', u'announc', u'kariong', u'correct', u'centr'] [u'tie', u'australia', u'region', u'clout', u'downer'] [u'vanston', u'defend', u'time', u'bakhtiyari'] [u'waca', u'seek', u'govt', u'bail'] [u'govt', u'provid', u'hospit', u'equip'] [u'labor', u'candid', u'confid', u'govt', u'health', u'polici'] [u'opposit', u'pan', u'desper', u'medic', u'spend'] [u'warrior', u'redback'] [u'warrior', u'shaki', u'inning'] [u'warrior', u'charg', u'redback'] [u'water', u'bomber', u'limit', u'calm'] [u'west', u'coast', u'busi'] [u'wheat', u'board', u'say', u'test', u'reduc', u'contamin'] [u'woman', u'face', u'tamworth', u'court', u'murder', u'charg'] [u'wool', u'industri', u'win', u'support', u'peta', u'suit'] [u'woolmer', u'look', u'answer'] [u'xmas', u'sale', u'expect', u'push', u'retail', u'figur'] [u'yuko', u'core', u'asset', u'sell'] [u'thing', u'christma'] [u'abalon', u'compani', u'unit', u'boost', u'sale'] [u'accc', u'investig', u'price', u'fix', u'claim'] [u'accc', u'wont', u'stop', u'takeov', u'xstrata'] [u'govt', u'revis', u'civic', u'develop', u'plan'] [u'acupunctur', u'improv', u'arthrit', u'knee'] [u'patrol', u'appeas', u'shark', u'fear'] [u'albani', u'council', u'consid', u'hand', u'gull', u'rock', u'reserv'] [u'arnberg', u'lead', u'victoria', u'fight'] [u'aspir', u'ethiopian', u'footbal', u'darwin', u'debut'] [u'break', u'point', u'barrier'] [u'aurora', u'penalti', u'power', u'bill'] [u'australian', u'swim', u'offici', u'concern', u'thorp'] [u'author', u'plan', u'better', u'handl', u'mental', u'health'] [u'bank', u'charg', u'excess', u'penalti', u'fee', u'centr'] [u'basqu', u'parliament', u'vote', u'favour', u'autonomi', u'plan'] [u'benitez', u'reveal', u'kewel', u'help'] [u'hick', u'document', u'fail'] [u'gun', u'weigh', u'ahead', u'sydney', u'hobart'] [u'blair', u'make', u'surpris', u'visit', u'baghdad'] [u'blewett', u'redback', u'chanc'] [u'avoid', u'jail', u'hous', u'blaze'] [u'brake', u'appli', u'sale'] [u'brazil', u'fifa', u'world', u'rank', u'australia'] [u'broom', u'forc', u'mcdonald', u'furl', u'flag'] [u'brothel', u'owner', u'welcom', u'report'] [u'bush', u'conced', u'guantanamo', u'hurt', u'reput'] [u'bushrang', u'build', u'lead', u'bull'] [u'bushrang', u'fight', u'gabba'] [u'strathfield', u'mayor', u'stand', u'asid'] [u'brake', u'higher', u'fare'] [u'calm', u'take', u'step', u'avoid', u'spread', u'veget'] [u'camp', u'site', u'open', u'asbesto', u'scare'] [u'canberra', u'magistr', u'back', u'aborigin', u'court'] [u'children', u'chariti', u'pull', u'darfur'] [u'moot', u'innov', u'domest', u'violenc', u'reform'] [u'coastal', u'care', u'plan', u'includ', u'public', u'input'] [u'costello', u'howard', u'lead'] [u'council', u'approv', u'north', u'east', u'wind', u'farm', u'applic'] [u'council', u'leve', u'work', u'track'] [u'council', u'consid', u'park', u'sale', u'option'] [u'court', u'uphold', u'charg', u'pinochet'] [u'craigieburn', u'bypass', u'travel', u'time'] [u'cyclist', u'die', u'freeway', u'accid'] [u'decis', u'expect', u'kenteri', u'case'] [u'desert', u'come', u'citi', u'exhibit'] [u'donat', u'seek', u'separ', u'abandon', u'siames'] [u'doomadge', u'arrest', u'offic', u'transfer', u'gold'] [u'educ', u'reform', u'higher', u'educ'] [u'england', u'notch', u'record', u'break', u'victori'] [u'eros', u'problem', u'divid', u'citi', u'council'] [u'export', u'award', u'winner', u'see', u'benefit', u'stay'] [u'fatal', u'crash', u'driver', u'speed', u'polic'] [u'feder', u'fund', u'boost', u'research', u'centr'] [u'feder', u'myskina', u'world'] [u'filipino', u'guerilla', u'reciprocr', u'christma', u'ceas'] [u'author', u'shed', u'light', u'christma', u'danger'] [u'break', u'sydney', u'hous', u'complex'] [u'burn', u'bush', u'track', u'south', u'perth'] [u'damag', u'histor', u'build'] [u'fear', u'fuel', u'reservoir', u'studi'] [u'fire', u'continu', u'blaze', u'southern'] [u'minist', u'admit', u'lie', u'icac'] [u'fuel', u'price', u'climb'] [u'fund', u'target', u'outback', u'activ'] [u'turbin', u'deliveri', u'delay'] [u'gate', u'shut', u'final', u'time', u'beechworth', u'jail'] [u'gatto', u'stand', u'trial', u'murder'] [u'giant', u'salt', u'farm', u'look', u'unlik'] [u'glazer', u'line'] [u'govt', u'offer', u'disabl', u'fund'] [u'govt', u'predict', u'higher', u'surplus', u'slower', u'growth'] [u'govt', u'finalis', u'payment', u'worker'] [u'govt', u'updat', u'budget', u'forecast'] [u'govt', u'urg', u'olymp'] [u'govt', u'urg', u'canberra', u'tourism'] [u'greek', u'probe', u'hamilton', u'blunder'] [u'grenad', u'jakarta', u'hilton', u'inact'] [u'hall', u'name', u'wheelchair', u'tenniss', u'player'] [u'happi', u'valley', u'charlton', u'fulham'] [u'harbhajan', u'report', u'doosra'] [u'hardi', u'agre', u'year', u'compens', u'deal'] [u'hardi', u'ask', u'halt', u'share', u'trade'] [u'hardi', u'expect', u'sign', u'compens', u'deal'] [u'hardi', u'sign', u'record', u'compens', u'agreement'] [u'heritag', u'order', u'delay', u'plan'] [u'holiday', u'season', u'prompt', u'lose', u'warn'] [u'hope', u'feder', u'fund', u'beef', u'arthriti', u'drug'] [u'hop', u'organ', u'sugar', u'mackay', u'fade'] [u'hospit', u'elect', u'surgeri', u'hold'] [u'howard', u'achiev', u'polit', u'mileston'] [u'improv', u'wool', u'handl', u'skill', u'equal', u'bigger'] [u'inquiri', u'find', u'carr', u'interfer', u'orang', u'grove'] [u'inquiri', u'spark', u'call', u'orang', u'grove', u'rezon'] [u'interpret', u'troubl', u'hinder', u'terror', u'case'] [u'iraqi', u'forc', u'readi', u'bush'] [u'iraq', u'round', u'suspect'] [u'jail', u'sentenc', u'reduc', u'notori', u'paedophil'] [u'leader', u'tell', u'court', u'bashir', u'visit'] [u'jone', u'bowl', u'england', u'brink'] [u'judg', u'dismiss', u'quash', u'jackson', u'charg'] [u'kasper', u'come', u'shoaib', u'defenc'] [u'labor', u'critic', u'childcar', u'rebat', u'chang'] [u'throw', u'team', u'lifelin'] [u'lewi', u'surpris', u'hop', u'delight'] [u'lightn', u'strike', u'servic', u'station', u'retir'] [u'littl', u'movement', u'market'] [u'liverpool', u'face', u'battl', u'morient', u'agent'] [u'local', u'campaign', u'boost', u'littl', u'tern', u'number'] [u'jail', u'breach', u'alcohol', u'restrict'] [u'child', u'porn', u'charg'] [u'ministeri', u'meet', u'touch', u'palm', u'alcohol', u'plan'] [u'minist', u'sack', u'diari', u'shred'] [u'mouth', u'shot', u'display', u'tabocco', u'shop'] [u'predict', u'tougher', u'fight', u'nation'] [u'parent', u'tell', u'orang', u'grove', u'standov', u'tactic'] [u'nation', u'leader', u'critic', u'bypass', u'remov'] [u'nativ', u'fish', u'surviv', u'lake', u'forb', u'carp', u'kill'] [u'star', u'team', u'name'] [u'boat', u'ramp', u'eas', u'lake', u'kununurra', u'congest'] [u'websit', u'push', u'illawarra', u'invest'] [u'nigeria', u'determin', u'fate', u'falter', u'darfur', u'talk'] [u'progress', u'french', u'journalist', u'releas'] [u'report', u'back', u'player', u'educ'] [u'set', u'desalin', u'studi'] [u'ask', u'bakhtiyari', u'famili'] [u'reject', u'request', u'bakhtiyari', u'famili'] [u'offic', u'block', u'damag'] [u'older', u'australian', u'urg', u'step', u'melanoma', u'check'] [u'owner', u'beat', u'renison', u'mine', u'reopen'] [u'pakistan', u'court', u'cancel', u'bail', u'husband'] [u'pastor', u'charg', u'shop', u'centr', u'carol', u'stoush'] [u'person', u'trainer', u'hone', u'shearer', u'skill'] [u'peru', u'crash', u'kill'] [u'pest', u'devast', u'grape', u'grower'] [u'chief', u'hail', u'etern', u'arafat'] [u'favourit', u'celebr', u'mileston'] [u'polic', u'hunt', u'arm', u'hotel', u'robber'] [u'polic', u'search', u'miss', u'teen'] [u'polic', u'seek', u'attempt', u'sexual', u'assault', u'wit'] [u'polic', u'tight', u'lip', u'collin', u'inquiri', u'find'] [u'polic', u'unhappi', u'danger', u'driver'] [u'polic', u'urg', u'driver', u'belt'] [u'polic', u'warn', u'hotel', u'brawler', u'catch'] [u'power', u'plant', u'think', u'hous', u'boom'] [u'prosecutor', u'alleg', u'obsess', u'blake', u'shoot', u'wife'] [u'public', u'flood', u'advic'] [u'qanta', u'flight', u'crew', u'stay', u'darwin', u'indonesia'] [u'home', u'power', u'storm'] [u'redback', u'troubl', u'adelaid'] [u'region', u'miss', u'free', u'year'] [u'remain', u'year'] [u'repeat', u'offend', u'jail', u'theft'] [u'revamp', u'playhous', u'theatr', u'council', u'prais'] [u'review', u'brake', u'dodgi', u'drive', u'instructor'] [u'rhino', u'number', u'dwindl'] [u'robber', u'caus', u'headach', u'pharmaci', u'staff'] [u'ronaldinho', u'name', u'footbal', u'year'] [u'saboteur', u'crippl', u'iraqi', u'pip', u'ablaz'] [u'salvo', u'appeal', u'christma', u'hamper', u'donat'] [u'salvo', u'suppli', u'fail', u'meet', u'increas', u'demand'] [u'polic', u'search'] [u'sensi', u'acquir', u'lead', u'map', u'publish'] [u'settlement', u'reach', u'wrong', u'arrest', u'case'] [u'singer', u'cancel', u'indonesian', u'concert', u'terror'] [u'south', u'korean', u'minist', u'china', u'north', u'korea', u'talk'] [u'sport', u'broadcast', u'adelaid', u'airway'] [u'stockland', u'order', u'elder', u'court', u'cost'] [u'peter', u'basilica', u'serv', u'heaven', u'coffe'] [u'stray', u'dog', u'lead', u'villag', u'mass', u'grave', u'iraq'] [u'studi', u'find', u'youth', u'feel', u'disillus'] [u'studi', u'consid', u'mine', u'impact'] [u'subdivis', u'put', u'pressur'] [u'support', u'seek', u'countri', u'bakhtiyari'] [u'tare', u'council', u'reject', u'conserv', u'critic'] [u'tasmania', u'introduc', u'tougher', u'child', u'porn', u'penalti'] [u'teenag', u'die', u'melbourn', u'smash'] [u'teen', u'die', u'highway', u'crash'] [u'timber', u'bolster', u'process', u'capac'] [u'tourist', u'cancel', u'indonesian', u'holiday', u'terror'] [u'townsvill', u'record', u'better', u'averag', u'rain'] [u'travel', u'advis', u'avoid', u'fast', u'food'] [u'trial', u'end', u'reduc', u'scallop', u'size', u'limit'] [u'tuckey', u'seek', u'support', u'case', u'anim'] [u'turtl', u'nest', u'northern'] [u'move', u'closer', u'introduct', u'card'] [u'theatr', u'scrap', u'sikh', u'play', u'violent', u'protest'] [u'uncertain', u'christma', u'taxi', u'centr', u'worker'] [u'uncertainti', u'surround', u'drought', u'applic'] [u'boost', u'scholarship', u'scheme'] [u'univers', u'deal', u'seal', u'civic', u'west', u'develop', u'plan'] [u'unlicens', u'driver', u'involv', u'fatal', u'crash'] [u'unlicens', u'driver', u'jail', u'kill', u'motorcyclist'] [u'militari', u'find', u'mass', u'grave', u'northern', u'iraq'] [u'oppos', u'talk', u'commonwealth', u'control'] [u'compani', u'urg', u'employ', u'local', u'tradespeopl'] [u'govt', u'call', u'deliv', u'railway', u'promis'] [u'victim', u'warn', u'hardi', u'fight'] [u'victoria', u'popul', u'reach', u'million'] [u'govt', u'fund', u'probe', u'indigen', u'own', u'station'] [u'wallabi', u'stay', u'park', u'releas'] [u'warn', u'issu', u'ecstasi', u'pill'] [u'warrior', u'wrap', u'victori', u'redback'] [u'water', u'suppli', u'woe', u'prompt', u'council', u'advic'] [u'clear', u'bairnsdal', u'pipelin'] [u'woman', u'face', u'court', u'drug', u'charg'] [u'work', u'progress', u'wild', u'kill', u'devic'] [u'world', u'celebr', u'china', u'christma'] [u'youth', u'survey', u'highlight', u'communiti', u'issu'] [u'yushchenko', u'yanukovich', u'clash', u'presidenti', u'debat'] [u'abalon', u'poach', u'prompt', u'polic', u'crackdown'] [u'accus', u'gangland', u'killer', u'refus', u'bail'] [u'accus', u'greek', u'sprinter', u'learn', u'drug', u'fate'] [u'afghan', u'embassi', u'make', u'bakhtiyari', u'inquiri'] [u'appoint', u'tribun', u'head'] [u'tribun', u'panel', u'grade', u'offenc'] [u'oper', u'launch', u'fallujah'] [u'leagu', u'differ', u'say', u'despotovski'] [u'alic', u'newspap', u'encourag', u'youth', u'submiss'] [u'altern', u'seek', u'canberra', u'water', u'conserv'] [u'annan', u'admit', u'tough', u'year'] [u'asbesto', u'shop', u'centr', u'build', u'site'] [u'reach', u'high'] [u'attack', u'base', u'mosul', u'leav', u'dead', u'pentagon'] [u'aust', u'boost', u'solomon', u'forc'] [u'australian', u'kill', u'solomon'] [u'bank', u'staff', u'safe', u'heist'] [u'bartlett', u'end', u'hunger', u'strike'] [u'blunkett', u'speed', u'nanni', u'visa', u'applic', u'inquiri', u'find'] [u'brazil', u'robber', u'demand', u'impot', u'pill'] [u'bush', u'condem', u'mosul', u'attack'] [u'closer', u'examin', u'control', u'propos'] [u'tour', u'oper', u'licens', u'fatal', u'croc'] [u'campaign', u'plan', u'fight', u'duck', u'shoot', u'season'] [u'chang', u'alic', u'airport', u'master', u'plan'] [u'chief', u'justic', u'critic', u'court', u'facil'] [u'child', u'drown', u'prompt', u'safeti', u'warn'] [u'citrus', u'grower', u'berri', u'increas', u'payment'] [u'citrus', u'market', u'reopen', u'canker', u'scare'] [u'clark', u'reach', u'match', u'mileston'] [u'clean', u'continu', u'barcaldin', u'storm'] [u'coast', u'attract', u'backpack', u'market'] [u'communiti', u'group', u'form', u'opposit', u'bypass'] [u'concern', u'ramif', u'hick', u'failur'] [u'corn', u'brother', u'stay', u'power'] [u'council', u'consid', u'extern', u'disput', u'resolut'] [u'council', u'knock', u'oceanfront', u'subdivis'] [u'council', u'plead', u'guilti', u'sewag', u'spill'] [u'council', u'program', u'aim', u'reduc', u'hoon'] [u'council', u'urg', u'museum', u'sit'] [u'council', u'want', u'pulp', u'bell'] [u'decis', u'meat', u'processor', u'futur', u'loom'] [u'defenc', u'hous', u'spend', u'queanbeyan'] [u'depart', u'say', u'natur', u'reserv', u'sell', u'point'] [u'dermatologist', u'shortag', u'affect', u'region', u'area'] [u'design', u'driver', u'free', u'soft', u'drink'] [u'england', u'wait', u'say', u'gilchrist'] [u'ergon', u'centr', u'maintain', u'speedi', u'respons'] [u'esper', u'group', u'govt', u'fund'] [u'ethanol', u'blend', u'fuel', u'trial', u'extend'] [u'expert', u'say', u'sit', u'cultur'] [u'farmer', u'urg', u'govt', u'address', u'nativ', u'veget'] [u'email', u'reveal', u'guantanamo', u'abus', u'claim'] [u'fear', u'dungog', u'school', u'childcar', u'centr'] [u'feder', u'policeman', u'murder', u'honiara'] [u'fifa', u'spain', u'racial', u'abus', u'england'] [u'crew', u'bring', u'bushfir', u'control'] [u'damag', u'popular', u'orang', u'restaur'] [u'firefight', u'work', u'blaze', u'sydney', u'west'] [u'servic', u'contain', u'week', u'long', u'bushfir'] [u'femal', u'line', u'person', u'apprentic', u'hop'] [u'franc', u'deni', u'pay', u'ransom', u'free', u'journalist'] [u'franklin', u'award', u'judg', u'resign', u'disput'] [u'french', u'report', u'free', u'iraq'] [u'gang', u'steal', u'robberi'] [u'germani', u'wrap', u'asia', u'tour', u'thump', u'thailand'] [u'gilchrist', u'sure', u'thing', u'world', u'record', u'say'] [u'govt', u'call', u'costello', u'reject', u'xstrata'] [u'govt', u'criticis', u'region', u'hospit', u'shortag'] [u'govt', u'dedic', u'thousand', u'ravensthorp'] [u'govt', u'give', u'research', u'facil'] [u'govt', u'poki', u'deal', u'anti', u'competit'] [u'govt', u'say', u'island', u'riot', u'polic', u'matter'] [u'govt', u'seek', u'public', u'comment', u'water', u'manag'] [u'govt', u'support', u'sydney', u'canberra', u'flight'] [u'govt', u'urg', u'address', u'skill', u'worker', u'shortag'] [u'hardi', u'confid', u'sharehold', u'agre', u'deal'] [u'heroin', u'death', u'australia', u'drop'] [u'homeless', u'scheme', u'fund', u'outrag'] [u'hostel', u'improv', u'indigen', u'access', u'educ'] [u'imperson', u'polic', u'offic'] [u'incom', u'onesteel', u'chief', u'prais', u'workforc'] [u'india', u'upbeat', u'despit', u'harbhajan', u'report'] [u'indigen', u'leader', u'claim', u'cover', u'airfar'] [u'industri', u'group', u'council', u'lobbi', u'technic', u'colleg'] [u'industri', u'prop', u'govt', u'assist', u'report'] [u'insomnia', u'manag', u'honour', u'award'] [u'inzamam', u'shoaib', u'clear', u'box', u'test'] [u'iraqi', u'australia', u'vote', u'januari', u'elect'] [u'isra', u'polic', u'chief', u'warn', u'settler', u'thwart'] [u'israel', u'raid', u'gaza', u'camp', u'mortar', u'attack'] [u'jilt', u'bride', u'sue', u'runaway', u'groom'] [u'judg', u'uphold', u'penalti', u'microsoft'] [u'laughter', u'best', u'medicin', u'clown', u'doctor'] [u'lightn', u'strike', u'servic', u'station'] [u'lithgow', u'council', u'consid', u'religi', u'retreat'] [u'local', u'council', u'say', u'staff', u'problem'] [u'longreach', u'water', u'treatment', u'plant', u'run'] [u'loud', u'explos', u'shot', u'baghdad'] [u'retail', u'price', u'hinder', u'seafood', u'sale'] [u'macarthur', u'target', u'world', u'record'] [u'malaysia', u'close', u'thai', u'border'] [u'drown', u'lake', u'jindabyn'] [u'get', u'seven', u'year', u'jail', u'taxi', u'driver', u'assault'] [u'jail', u'abus', u'grandchildren'] [u'jail', u'help', u'conceal', u'murder'] [u'jail', u'sexual', u'assault', u'young', u'girl'] [u'jail', u'view', u'child', u'porn', u'cafe'] [u'kill', u'crash', u'brief', u'polic', u'chase'] [u'appear', u'court', u'fraud', u'charg'] [u'mcdonald', u'happi', u'remov', u'flag'] [u'mcgrath', u'world'] [u'media', u'appeal', u'assault', u'convict'] [u'middl', u'east', u'peac', u'process', u'continu', u'blair'] [u'minist', u'deni', u'involv', u'polic', u'direct'] [u'consult', u'need', u'alcohol', u'plan'] [u'morgan', u'withdraw', u'liverpool'] [u'mourner', u'goodby', u'forkin', u'cousin'] [u'movi', u'star', u'campaign', u'pig'] [u'call', u'extens', u'drug', u'court', u'trial'] [u'claim', u'polic', u'offic', u'abus', u'staff', u'member'] [u'urg', u'christma', u'blood', u'donat'] [u'mysteri', u'martian', u'clean', u'space', u'buggi'] [u'ahead', u'bank', u'sale', u'despit', u'robberi'] [u'neck', u'injuri', u'forc', u'wallabi', u'bond', u'retir'] [u'nineteen', u'soldier', u'kill', u'mosul'] [u'indemn', u'hardi', u'deal', u'say'] [u'continu', u'drug', u'drive', u'check'] [u'oakey', u'supermarket', u'construct', u'begin'] [u'parent', u'urg', u'supervis', u'children', u'play'] [u'park', u'leagu', u'club', u'save', u'amalgam', u'deal'] [u'pilot', u'forget', u'land', u'gear', u'tire', u'distract'] [u'vow', u'solomon', u'mission'] [u'polic', u'clamp', u'darl', u'down', u'crime'] [u'polic', u'closer', u'suspect', u'patton', u'murder'] [u'polic', u'hunt', u'arm', u'robberi'] [u'polic', u'investig', u'counterfeit', u'note'] [u'polic', u'prais', u'mental', u'health', u'patient', u'strategi'] [u'polic', u'inexperi', u'caus', u'denmark', u'crash'] [u'polic', u'subdu', u'capsicum', u'spray'] [u'polic', u'warn', u'festiv', u'season', u'fraudster'] [u'polit', u'erupt', u'homeless', u'problem'] [u'polit', u'diseas', u'continu'] [u'port', u'hedland', u'facelift'] [u'postal', u'vote', u'overhaul'] [u'pressur', u'mount', u'riverina', u'tech', u'colleg'] [u'program', u'deliv', u'extra', u'train', u'nurs'] [u'prosecutor', u'warn', u'resumpt', u'gangland', u'kill'] [u'protest', u'bakhtiyari', u'famili'] [u'public', u'submiss', u'flag', u'odour', u'land', u'impact'] [u'consid', u'reduc', u'scallop', u'size', u'limit'] [u'lose', u'maher', u'chase', u'vic'] [u'reliabl', u'drug', u'drive', u'test', u'doubt'] [u'research', u'offer', u'telephon', u'counsel', u'smoker'] [u'resid', u'fight', u'protect', u'boat', u'harbour', u'land'] [u'robot', u'help', u'scientist', u'predict', u'ocean', u'chang'] [u'ruddock', u'want', u'guantanamo', u'abus', u'claim', u'test'] [u'rugbi', u'secur', u'futur', u'news', u'deal'] [u'salt', u'plan', u'worri', u'lobbi', u'group'] [u'schoolboy', u'error', u'hurt', u'west', u'brom', u'say', u'robson'] [u'second', u'driver', u'clear', u'drug', u'take'] [u'shark', u'attack', u'victim', u'rememb'] [u'sixteen', u'graduat', u'join', u'fight'] [u'sixth', u'harri', u'potter', u'cast', u'spell', u'juli'] [u'stand', u'strauss', u'keep', u'enjoy', u'fairytal'] [u'sydney', u'hobart', u'favourit', u'measur', u'race', u'spec'] [u'sydney', u'hobart', u'favourit', u'dismiss', u'weight'] [u'sydney', u'hobart', u'favourit', u'overcom', u'weight'] [u'teen', u'get', u'suspend', u'jail', u'term', u'crash'] [u'telco', u'giant', u'featur', u'contest', u'game'] [u'thai', u'govt', u'claim', u'proof', u'malaysian', u'milit', u'camp'] [u'tiger', u'admit', u'frustrat', u'swing', u'struggl'] [u'tough', u'xmas', u'woman', u'hold', u'bali', u'drug', u'charg'] [u'townsvill', u'croc', u'player', u'name', u'star'] [u'toxic', u'packag', u'scare', u'forc', u'closur'] [u'trade', u'focus', u'global', u'currenc', u'market'] [u'transfield', u'buy', u'french', u'own', u'areva'] [u'union', u'optimist', u'worker', u'job'] [u'militari', u'enforc', u'curfew', u'mosul'] [u'vaughan', u'hail', u'record', u'england'] [u'veniamin', u'offer', u'kill', u'gatto', u'court', u'hear'] [u'defeat', u'histor', u'comeback'] [u'govt', u'consid', u'law', u'protect', u'feotus'] [u'pulp', u'wont', u'affect', u'gunn', u'analyst', u'say'] [u'vic', u'defeat', u'histor', u'comeback'] [u'vic'] [u'terror', u'suspect', u'remain', u'custodi'] [u'grain', u'harvest', u'exceed', u'expect'] [u'warrior', u'wrap', u'victori', u'redback'] [u'water', u'author', u'seek', u'resid', u'view', u'lake'] [u'webb', u'confirm', u'master', u'appear'] [u'western', u'hardwood', u'region', u'plan', u'fail'] [u'west', u'indi', u'tour', u'despit', u'contract'] [u'wildfir', u'threaten', u'pine', u'tree'] [u'willbriggi', u'face', u'court', u'drug', u'charg'] [u'wingecarribe', u'council', u'fear', u'delay', u'hinder'] [u'wit', u'nervous', u'council', u'inquiri', u'retribut'] [u'wit', u'scar', u'evid', u'road', u'rage'] [u'woman', u'kill', u'accid'] [u'woman', u'lose', u'compens', u'forc', u'adopt'] [u'women', u'refug', u'report', u'expect', u'soon'] [u'fault', u'europ', u'food', u'protect'] [u'xmas', u'angler', u'warn', u'unlicenc', u'fish'] [u'xstrata', u'unhappi', u'stanc'] [u'youth', u'help', u'select', u'indigen', u'communiti', u'project'] [u'zajec', u'confirm', u'pompey', u'manag'] [u'chines', u'miner', u'kill', u'poison'] [u'kill', u'indonesian', u'forc', u'helicopt', u'crash'] [u'aapt', u'skipper', u'play', u'weigh', u'woe'] [u'abba', u'see', u'israel', u'talk', u'palestinian', u'vote'] [u'aborigin', u'land', u'council', u'get', u'execut', u'offic'] [u'govt', u'propos', u'chang', u'child', u'protect'] [u'heroin', u'overdos', u'seven', u'year', u'high'] [u'adelaid', u'rape', u'suspect', u'arrest'] [u'albani', u'defer', u'gull', u'rock', u'reserv', u'decis'] [u'anim', u'tranquillis', u'mistak', u'ecstasi'] [u'australian', u'market', u'slide'] [u'australia', u'increas', u'presenc', u'solomon', u'island'] [u'austrian', u'koubek', u'dope'] [u'author', u'warn', u'ross', u'river', u'threat'] [u'bail', u'revok', u'charg', u'offenc'] [u'bank', u'robber', u'homework', u'heist'] [u'better', u'asthma', u'manag', u'lower', u'death', u'rate'] [u'binnington', u'take', u'athlet', u'coach'] [u'biosecur', u'vet', u'unavail', u'holiday', u'outbreak'] [u'bird', u'spread', u'human', u'japan'] [u'blair', u'host', u'palestinian', u'confer'] [u'bullet', u'hawk', u'clash'] [u'inclus', u'communiti', u'group'] [u'social', u'respons', u'corpor', u'law'] [u'call', u'attorney', u'general', u'resign'] [u'cambodian', u'polic', u'arrest', u'alleg', u'chines', u'drug'] [u'bomb', u'explod', u'iraq'] [u'carl', u'williamss', u'father', u'refus', u'bail'] [u'chopper', u'send', u'battl', u'blaze'] [u'cigar', u'land', u'citi', u'player', u'water'] [u'citi', u'west', u'plan', u'link', u'inner', u'brisban', u'sit'] [u'coke', u'worker', u'shoot'] [u'cole', u'readi', u'arsenal', u'talk', u'agent'] [u'concern', u'air', u'dairi', u'farm', u'futur'] [u'confid', u'yushchenko', u'address', u'mass', u'ralli'] [u'construct', u'worker', u'continu', u'action', u'asbesto'] [u'council', u'agre', u'origin', u'park', u'land', u'price'] [u'council', u'coastal', u'manag', u'plan', u'rais', u'communiti'] [u'council', u'face', u'backlash', u'plan', u'lift', u'water', u'ban'] [u'councillor', u'seek', u'disclosur', u'elect', u'fund'] [u'councillor', u'stand', u'firm', u'wetland', u'issu'] [u'council', u'say', u'hand', u'tie', u'boat', u'harbour', u'land', u'sale'] [u'council', u'prepar', u'age', u'onslaught'] [u'croc', u'unabl', u'bullet'] [u'current', u'sydney', u'hobart', u'fleet'] [u'deleg', u'appeal', u'nimbin', u'polic'] [u'dieback', u'spread', u'fund', u'calm', u'say'] [u'docker', u'clear', u'draft', u'tamper'] [u'reject', u'emerald', u'canker', u'spread'] [u'duck', u'hunt', u'protest', u'warn', u'risk'] [u'dugong', u'turtl', u'hunt', u'restrict'] [u'england', u'wait', u'say', u'gilchrist'] [u'english', u'unimpress', u'spanish', u'racism', u'fine'] [u'entir', u'cairn', u'team', u'ban', u'brawl'] [u'decri', u'fish', u'limit'] [u'fallujah', u'resid', u'prepar', u'return'] [u'fast', u'rail', u'servic', u'boost', u'welcom'] [u'feder', u'govt', u'accus', u'ignor', u'green', u'research'] [u'clue', u'ireland', u'polic', u'probe', u'bank', u'heist'] [u'firefight', u'finnish', u'sauna'] [u'firefight', u'sydney', u'blaze'] [u'fisherman', u'rescu', u'victorian', u'coast'] [u'forecast', u'predict', u'christma', u'break', u'farmer'] [u'forestri', u'deadlin', u'unlik'] [u'minist', u'fin', u'lie', u'icac'] [u'french', u'journalist', u'arriv', u'pari', u'hostag'] [u'fund', u'inject', u'region', u'research', u'facil'] [u'gallop', u'pan', u'opposit', u'budget', u'plan'] [u'gatto', u'investig', u'crimin', u'network', u'court', u'tell'] [u'gibb', u'boje', u'south', u'africa'] [u'break', u'say', u'woolmer'] [u'govern', u'accus', u'play', u'polit', u'cane'] [u'govt', u'expect', u'announc', u'ethanol', u'fund', u'boost'] [u'govt', u'get', u'tough', u'nativ', u'anim', u'pet'] [u'govt', u'opposit', u'odd', u'fast', u'train', u'work'] [u'govt', u'reject', u'call', u'reform', u'inquiri'] [u'govt', u'reject', u'drought', u'climat'] [u'govt', u'scrutinis', u'qantass', u'canberra', u'sydney', u'fare'] [u'govt', u'albani', u'jail', u'secur'] [u'greek', u'sprinter', u'provision', u'suspend'] [u'green', u'group', u'question', u'hous', u'develop'] [u'green', u'govt', u'soft', u'pollut'] [u'health', u'industri', u'benefit', u'japan', u'tech'] [u'health', u'team', u'fight', u'spread', u'stis', u'indigen'] [u'hepburn', u'pool', u'option', u'consider'] [u'hobart', u'lose', u'major', u'ship', u'servic'] [u'hotel', u'provid', u'free', u'soft', u'drink', u'design'] [u'indian', u'fishermen', u'miss', u'pirat', u'attack'] [u'indonesian', u'jail', u'illeg', u'fish'] [u'injuri', u'sidelin', u'kelli', u'devonport', u'carniv'] [u'insur', u'firm', u'urg', u'patienc', u'crop', u'claim'] [u'investig', u'begin', u'sydney', u'factori'] [u'irish', u'woman', u'keep', u'sexual', u'servitud', u'court', u'tell'] [u'jam', u'cook', u'ausaid', u'student', u'graduat'] [u'jone', u'elect', u'swan', u'hill', u'mayor'] [u'kangaroo', u'bushfir', u'control'] [u'keelti', u'reject', u'claim', u'militari', u'support', u'need'] [u'langer', u'doubt', u'second', u'test'] [u'launceston', u'airport', u'plan', u'take'] [u'letterhead', u'confus', u'continu', u'kelli'] [u'life', u'support', u'user', u'electr', u'rebat'] [u'local', u'govt', u'consid', u'lift', u'hardi'] [u'local', u'seafood', u'select', u'christma'] [u'locust', u'north'] [u'loggerhead', u'turtl', u'popul', u'stabilis'] [u'maher', u'dismiss', u'respect', u'claim', u'vic'] [u'accus', u'plot', u'kill', u'saddam', u'support'] [u'accus', u'death', u'partner', u'grant', u'bail'] [u'charg', u'cruelti', u'burglari'] [u'critic', u'injur', u'firework', u'accid'] [u'face', u'child', u'porn', u'charg'] [u'court', u'imperson', u'polic', u'offic'] [u'jail', u'year', u'bash'] [u'jail', u'year', u'gang', u'rape'] [u'medic', u'worker', u'kill', u'sudan', u'troop'] [u'microsoft', u'order', u'reveal', u'trade', u'secret'] [u'mildura', u'sport', u'centr', u'creditor', u'leav', u'want'] [u'mine', u'compani', u'fin', u'pollut'] [u'moor'] [u'motorcyclist', u'succumb', u'injuri'] [u'air', u'doubt', u'postal', u'vote', u'probe'] [u'seek', u'wagga', u'polic', u'station', u'detail'] [u'urg', u'govt', u'restor', u'disabl', u'servic', u'fund'] [u'welcom', u'govt', u'hospit', u'contract'] [u'nativ', u'titl', u'tribun', u'welcom', u'fish'] [u'fight', u'decis', u'trim', u'oneal', u'time'] [u'near', u'drown', u'prompt', u'beach', u'safeti', u'warn'] [u'tribun', u'head', u'talk'] [u'facil', u'meet', u'construct', u'skill', u'shortag'] [u'north', u'east', u'brace', u'locust', u'influx'] [u'polic', u'number'] [u'polic', u'probe', u'fatal', u'crash'] [u'prison', u'number', u'nation', u'averag'] [u'compani', u'slam', u'lack', u'info'] [u'dip', u'upgrad'] [u'dead', u'injur', u'london', u'stab', u'rampag'] [u'opposit', u'reject', u'claim', u'reduc', u'ambul'] [u'organis', u'expect', u'sydney', u'hobart', u'yacht', u'join'] [u'origin', u'seek', u'price', u'rise'] [u'pakistan', u'latif', u'seek', u'comeback', u'cricket'] [u'palestinian', u'teenag', u'kill', u'gaza'] [u'parker', u'blame', u'break', u'foot', u'stamford', u'bridg'] [u'pastor', u'charg', u'shop', u'carol', u'incid'] [u'pinochet', u'leav', u'hospit', u'treatment'] [u'plan', u'tamar', u'river', u'resort'] [u'polic', u'fatal', u'stab'] [u'polic', u'interrog', u'suspect', u'norwegian', u'heist'] [u'polic', u'investig', u'attempt', u'abduct'] [u'polic', u'investig', u'geelong', u'robberi'] [u'polic', u'drug', u'bust', u'follow', u'burglari'] [u'polic', u'forc', u'oper', u'safe', u'arriv'] [u'polic', u'target', u'countri', u'spot'] [u'polic', u'question', u'fatal', u'polic', u'chase'] [u'polic', u'urg', u'driver', u'care', u'crash', u'spot'] [u'polic', u'warn', u'driver', u'doubl', u'demerit', u'point'] [u'port', u'fairi', u'resid', u'celebr', u'park'] [u'port', u'stepen', u'council', u'adopt', u'plan'] [u'school', u'propos', u'concern', u'union'] [u'prison', u'escap', u'correct', u'centr'] [u'prison', u'number', u'rise'] [u'propos', u'timet', u'mean', u'train', u'gippsland'] [u'putin', u'defend', u'state', u'purchas', u'main', u'yuko', u'asset'] [u'reef', u'author', u'seek', u'public', u'help', u'identifi'] [u'relaid', u'readi', u'box', u'action'] [u'research', u'welcom', u'evolut', u'cane', u'toad'] [u'resid', u'denham', u'jetti', u'upgrad'] [u'resid', u'lobbi', u'wetland', u'polici'] [u'retail', u'figur'] [u'roadwork', u'put', u'live', u'risk', u'opposit', u'say'] [u'rumsfeld', u'say', u'iraq', u'elect', u'wont', u'quell', u'violenc'] [u'opposit', u'claim', u'elect', u'surgeri', u'figur'] [u'servic', u'rememb', u'young', u'hous', u'blaze', u'victim'] [u'slay', u'offic', u'bodi', u'return', u'canberra'] [u'smoke', u'haze', u'prompt', u'warn', u'motorist'] [u'socceroo', u'skipper'] [u'solomon', u'memori', u'servic', u'hold', u'slay', u'australian'] [u'solomon', u'prepar', u'slay', u'australian', u'memori'] [u'spacecraft', u'see', u'infant', u'galaxi', u'age', u'univers'] [u'spanish', u'polic', u'arrest', u'morrocan', u'terror', u'suspect'] [u'storm', u'leav', u'destruct', u'path', u'roma'] [u'suicid', u'bomber', u'think', u'respons', u'mosul', u'blast'] [u'suspect', u'insurg', u'arrest', u'iraq'] [u'tamworth', u'council', u'get'] [u'tanzanian', u'court', u'free', u'embassi', u'bomb', u'suspect'] [u'thiev', u'steal', u'bridg'] [u'thorp', u'guest', u'honour', u'year', u'time'] [u'firm', u'defenc', u'shipbuild', u'contract'] [u'timber', u'face', u'cut'] [u'titl', u'agreement', u'reach', u'land', u'right', u'birthplac'] [u'tourism', u'group', u'call', u'stricter', u'control'] [u'troop', u'head', u'solomon'] [u'tweed', u'council', u'inquiri', u'stoush', u'continu'] [u'explos', u'south', u'baghdad', u'kill'] [u'injur', u'crash', u'wall'] [u'kill', u'accid'] [u'unreleas', u'harri', u'potter', u'top', u'bestsel', u'list'] [u'transport', u'compani', u'pull', u'iraq'] [u'veteran', u'ambul', u'worker', u'sack', u'john'] [u'govt', u'warn', u'farmer', u'locust', u'plagu'] [u'victoria', u'rat', u'reaffirm'] [u'vodafon', u'face', u'fin'] [u'lung', u'transplant', u'hail', u'success'] [u'warn', u'confid', u'success', u'homecom'] [u'warren', u'insist', u'tszyu', u'fight', u'hatton'] [u'ash', u'say', u'stewart'] [u'weekend', u'detent', u'corrupt'] [u'western', u'landown', u'warn', u'locust', u'outbreak'] [u'sharehold', u'urg', u'ignor', u'xstrata', u'offer'] [u'wollongong', u'brisban', u'score', u'win'] [u'woman', u'face', u'attempt', u'murder', u'charg'] [u'woodford', u'gear', u'festiv'] [u'world', u'biggest', u'cockroach', u'discov', u'indonesian'] [u'young', u'yachti', u'talk', u'sydney', u'hobart', u'chanc'] [u'upgrad', u'orang', u'utan', u'exhibit'] [u'kill', u'nigerian', u'fuel', u'pipelin', u'blaze'] [u'kill', u'hondura', u'attack'] [u'abduct', u'alert', u'come', u'forc'] [u'accc', u'warn', u'occi', u'strap', u'danger'] [u'accid', u'delay', u'sydney', u'train'] [u'african', u'asylum', u'seeker', u'dead', u'spanish', u'coast'] [u'alexand', u'take', u'helm'] [u'back', u'water', u'fluorid'] [u'antarct', u'expedition', u'unscath', u'earthquak'] [u'archaeologist', u'uncov', u'remain', u'miracl', u'site'] [u'architect', u'design', u'home', u'hawk'] [u'arson', u'attack', u'destroy', u'famili', u'home'] [u'asthma', u'research', u'centr', u'get', u'feder', u'grant'] [u'aussi', u'soldier', u'christma', u'iraq'] [u'aust', u'diplomat', u'await', u'decis', u'child', u'porn', u'charg'] [u'australian', u'domin', u'good', u'game', u'mcgrath'] [u'australian', u'soldier', u'support', u'polic', u'solomon'] [u'aust', u'troop', u'celebr', u'christma', u'iraq'] [u'award', u'honour', u'best', u'british', u'comedi'] [u'aziz', u'refus', u'testifi', u'saddam'] [u'bacteria', u'level', u'prompt', u'swim', u'hole', u'closur'] [u'bakhtiyari', u'deport', u'weekend'] [u'balanc', u'tank', u'blame', u'wagga', u'water', u'loss'] [u'staff', u'show', u'door'] [u'biofuel', u'compani', u'beat', u'challeng'] [u'bishop', u'urg', u'australian', u'help', u'reliev', u'poverti'] [u'bishop', u'urg', u'reflect', u'unsettl', u'time'] [u'blackout', u'blue', u'mountain', u'central', u'coast'] [u'buddhist', u'thai', u'teacher', u'strike', u'death', u'fear'] [u'bumper', u'christma', u'sale', u'tasmanian', u'retail'] [u'common', u'sens', u'firework', u'explos'] [u'chess', u'champ', u'fischer', u'hop', u'iceland'] [u'christma', u'gift', u'hatch', u'earli', u'wildlif', u'park'] [u'christma', u'shopper', u'extend', u'hour'] [u'citi', u'star', u'hand', u'record', u'fine', u'xmas', u'parti', u'outrag'] [u'clash', u'return', u'fallujah', u'resid'] [u'consult', u'forecast', u'strong', u'hors', u'breed', u'industri'] [u'coron', u'deliv', u'open', u'find', u'drown'] [u'correct', u'servic', u'tip', u'declin', u'prison'] [u'council', u'consid', u'lennox', u'head', u'retir', u'plan'] [u'council', u'say', u'hand', u'tie', u'chemic', u'warehous'] [u'council', u'say', u'fund', u'need', u'propos'] [u'council', u'sound', u'lose', u'pet'] [u'court', u'rule', u'union', u'coal', u'strike', u'unlaw'] [u'court', u'decis', u'favour', u'newmont'] [u'crew', u'clean', u'perth', u'chemic', u'spill'] [u'open', u'weed', u'threat', u'eas'] [u'darwin', u'electrocut'] [u'darwin', u'pray', u'cyclon', u'traci', u'victim'] [u'delay', u'southland', u'collieri', u'close', u'christma'] [u'dirti', u'water', u'woe', u'south', u'east'] [u'driver', u'patienc', u'urg', u'crop', u'harvest'] [u'drug', u'support', u'group', u'urg', u'substitut', u'program'] [u'ecolog', u'declar', u'recognis', u'swamp'] [u'energex', u'settl', u'late', u'ceo', u'famili'] [u'expert', u'consid', u'locust', u'impact'] [u'expert', u'monitor', u'blue', u'green', u'alga', u'outbreak'] [u'explos', u'remov', u'sieg', u'hotel'] [u'fallujah', u'resid', u'return', u'home'] [u'famili', u'maintain', u'gracetown', u'cliff', u'compo', u'fight'] [u'farmer', u'want', u'govt', u'share', u'cost', u'fertilis'] [u'firefight', u'battl', u'suspici', u'swampland', u'blaze'] [u'servic', u'warn', u'christma', u'complac'] [u'death', u'begin', u'nation', u'road', u'toll'] [u'malaysian', u'crash'] [u'food', u'suppli', u'rush'] [u'forb', u'upgrad', u'matern', u'suit'] [u'diplomat', u'clear', u'child', u'porn', u'charg'] [u'sailor', u'win', u'abus', u'compens'] [u'kill', u'victorian', u'road'] [u'sight', u'prompt', u'monitor'] [u'fund', u'pledg', u'mark', u'theatr', u'year'] [u'activist', u'renew', u'right'] [u'gerrard', u'long', u'liverpool'] [u'gold', u'coast', u'sieg', u'end', u'peac'] [u'gold', u'coast', u'wildcard', u'hewitt', u'welford'] [u'govern', u'deni', u'cut', u'place'] [u'govern', u'miss', u'forestri', u'deadlin'] [u'govt', u'await', u'rail', u'studi', u'find'] [u'govt', u'confirm', u'tuna', u'cage', u'right', u'spot'] [u'govt', u'get', u'prais', u'duck', u'hunt', u'stanc'] [u'green', u'group', u'look', u'plantat', u'timber', u'pros'] [u'green', u'rais', u'burn', u'issu'] [u'greenwood', u'nation'] [u'gunmen', u'attack', u'baghdad', u'polic', u'station'] [u'high', u'temp', u'spark', u'safeti', u'warn'] [u'home', u'invad', u'hit', u'machet'] [u'hospit', u'record', u'extra', u'case'] [u'hospit', u'structur', u'crack', u'forc', u'road', u'closur'] [u'hungari', u'pull', u'troop', u'iraq'] [u'huygen', u'probe', u'titan', u'touchdown'] [u'indonesian', u'priest', u'surviv', u'machet', u'attack'] [u'injur', u'motorcyclist', u'stabl', u'condit'] [u'deni', u'involv', u'belfast', u'heist'] [u'iraq', u'blast', u'kill', u'marin'] [u'island', u'charg', u'solomon', u'shoot'] [u'island', u'mayor', u'call', u'electr', u'price', u'relief'] [u'time'] [u'japan', u'warn', u'north', u'korea', u'abduct', u'claim'] [u'judg', u'rise', u'outrag', u'govt'] [u'kaif', u'slam', u'india', u'scrape', u'past', u'bangladesh'] [u'karzai', u'remov', u'warlord', u'afghan', u'cabinet'] [u'land', u'disput', u'leav', u'dead', u'ivori', u'coast'] [u'landown', u'avoid', u'prosecut', u'demolit'] [u'langer', u'put', u'xmas', u'hold'] [u'larg', u'quak', u'strike', u'tasmanian', u'coast'] [u'minut', u'buyer', u'canberra', u'shop'] [u'lawrenc', u'hargrav', u'drive', u'cost', u'jump'] [u'truck', u'disput', u'roll'] [u'escap', u'melbourn', u'hous'] [u'critic', u'condit', u'firework', u'accid'] [u'question', u'gun', u'ammo'] [u'market', u'high', u'ahead', u'christma', u'break'] [u'martin', u'call', u'land', u'right', u'reform'] [u'massiv', u'sea', u'gale', u'pound', u'sydney', u'hobart', u'fleet'] [u'maxi', u'taxi', u'driver', u'strike'] [u'mayor', u'back', u'coastal', u'protect', u'plan', u'amidst'] [u'mayor', u'happi', u'blackal', u'hous', u'market'] [u'mayor', u'reject', u'water', u'warn'] [u'mcgrath', u'harmison', u'tumbl'] [u'minardi', u'dutchman', u'alber'] [u'minist', u'overse', u'power', u'station', u'plan'] [u'miss', u'defenc', u'gun', u'worri'] [u'miss', u'fear', u'drown'] [u'miss', u'medic', u'polic'] [u'motorist', u'continu', u'ignor', u'drink', u'drive', u'warn'] [u'mysteri', u'ill', u'stalk', u'world', u'rarest', u'penguin'] [u'negoti', u'continu', u'gold', u'coast', u'hotel', u'stand'] [u'newcastl', u'stock', u'exchang', u'say', u'asic', u'issu', u'address'] [u'england', u'north', u'west', u'escap', u'storm', u'damag'] [u'polic', u'urg', u'driver', u'care'] [u'upgrad', u'philippin', u'travel', u'warn'] [u'duti', u'polic', u'offic', u'assault'] [u'kill', u'karratha', u'crash'] [u'oper', u'safe', u'arriv', u'begin'] [u'origin', u'plan', u'roma', u'power', u'station'] [u'owner', u'get', u'copi'] [u'oxfam', u'urg', u'goat', u'christma'] [u'palestinian', u'vote', u'histor', u'council', u'elect'] [u'pari', u'hospit', u'open', u'door', u'troubl', u'teen'] [u'park', u'prepar', u'cricket', u'fever'] [u'plan', u'forward', u'wagga', u'hospit'] [u'urg', u'nation', u'rememb', u'fortun'] [u'polic', u'appeal', u'extra', u'care', u'remot', u'road'] [u'polic', u'charg', u'teenag', u'park', u'bash'] [u'polic', u'chief', u'satisfi', u'solomon', u'murder', u'probe'] [u'polic', u'examin', u'devic', u'gold', u'coast', u'sieg'] [u'polic', u'investig', u'poppi', u'crop', u'theft'] [u'polic', u'investig', u'stab', u'incid'] [u'polic', u'lock', u'gold', u'coast', u'hotel', u'stand'] [u'polic', u'negoti', u'barricad', u'hotel'] [u'polic', u'question', u'scream', u'suspect'] [u'polic', u'raid', u'uncov', u'drug'] [u'polic', u'uncov', u'major', u'cannabi', u'plot'] [u'polic', u'urg', u'driver', u'safeti', u'christma', u'break'] [u'prison', u'rule', u'chang', u'guard', u'gangland'] [u'ract', u'fuel', u'cheaper', u'petrol', u'station'] [u'refineri', u'grant', u'failur', u'blame', u'senat', u'inquiri'] [u'rescu', u'portugues', u'fisherman', u'take', u'hospit'] [u'retail', u'report', u'mix', u'xmas', u'trade', u'result'] [u'rumsfeld', u'make', u'surpris', u'visit', u'iraq'] [u'rumsfeld', u'visit', u'troop', u'fallujah'] [u'santo', u'sell', u'carpentaria', u'pipelin', u'stake'] [u'scheme', u'reward', u'safe', u'driver'] [u'seven', u'injur', u'ballina', u'crash'] [u'shark', u'spot', u'perth', u'beach'] [u'shoaib', u'showman', u'say', u'mcgrath'] [u'snow', u'storm', u'blanket', u'part'] [u'solomon', u'island', u'urg', u'shoot', u'inquiri'] [u'spinal', u'injuri', u'awar', u'campaign', u'launch'] [u'spot', u'fruit', u'inspect', u'target', u'travel'] [u'student', u'dig', u'secur', u'month'] [u'surf', u'lifesav', u'swimmer', u'help'] [u'surgeri', u'effect', u'diet', u'studi'] [u'swim', u'czar', u'popov', u'call'] [u'sydney', u'hobart', u'fleet', u'brace', u'bass', u'strait', u'past'] [u'sydney', u'polic', u'beef', u'number'] [u'sydney', u'refus', u'academ', u'redund'] [u'teacher', u'face', u'assault', u'stalk', u'charg'] [u'thai', u'general', u'face', u'probe', u'muslim', u'death'] [u'thailand', u'bomb', u'blast', u'kill', u'wound'] [u'prospector', u'train', u'track'] [u'tourism', u'industri', u'warn', u'plan', u'ahead'] [u'townsvill', u'soldier', u'spend', u'christma', u'solomon'] [u'train', u'centr', u'solv', u'skill', u'shortag'] [u'transport', u'bureau', u'highlight', u'plane', u'fuel', u'oversight'] [u'tullamor', u'kill', u'singl', u'vehicl', u'crash'] [u'kill', u'gaza', u'blast'] [u'govt', u'accus', u'excess', u'file', u'shred'] [u'union', u'probe', u'reason', u'sack'] [u'report', u'list', u'ivori', u'coast', u'atroc', u'daili'] [u'doctor', u'recommend', u'prescrib', u'celebrex'] [u'marshal', u'surpris', u'eas', u'arrest', u'adelaid'] [u'probe', u'iraq', u'armi', u'base', u'bomb'] [u'stock', u'edg', u'higher', u'light', u'xmas', u'trade'] [u'nistelrooy', u'week'] [u'court', u'refus', u'custodi', u'babi', u'father'] [u'polic', u'search', u'miss', u'woman'] [u'virgin', u'blue', u'win', u'samoa', u'tender'] [u'vline', u'reject', u'fast', u'rail', u'timet', u'attack'] [u'record', u'xmas', u'road', u'death'] [u'water', u'polic', u'urg', u'spectat', u'caution'] [u'water', u'price', u'doubl', u'tamworth', u'council'] [u'woman', u'injur', u'accid'] [u'woman', u'face', u'court', u'burglari', u'drug', u'charg'] [u'xmas', u'come', u'earli', u'katich'] [u'youth', u'kill', u'accid'] [u'zimbabw', u'farmer', u'cut', u'agricultur', u'land'] [u'adelaid', u'crew', u'celebr', u'christma'] [u'adelaid', u'sudanes', u'communiti', u'celebr', u'christma'] [u'afghan', u'cabinet', u'offici', u'swear'] [u'ail', u'pope', u'pray', u'peac', u'holi', u'land'] [u'alexand', u'hop', u'bigger', u'role', u'player'] [u'half', u'million', u'hous', u'bushfir', u'risk', u'studi'] [u'aust', u'forc', u'remain', u'vigil', u'despit', u'arrest'] [u'australia', u'block', u'brazilian', u'beef'] [u'bakhtiyari', u'famliy', u'pack', u'bag', u'deport'] [u'baxter', u'detaine', u'hunger', u'strike'] [u'bishop', u'send', u'condol', u'dun', u'famili'] [u'british', u'cardin', u'condemn', u'money', u'spend'] [u'accid', u'pakistan', u'kill', u'injur'] [u'bushfir', u'break', u'south', u'perth'] [u'bush', u'sign', u'sudan', u'sanction'] [u'independ', u'medic', u'review', u'baxter'] [u'canada', u'femal', u'world', u'veteran', u'die'] [u'church', u'leader', u'christma', u'uniti'] [u'resolv', u'palm', u'island', u'complaint'] [u'coalit', u'maintain', u'lead', u'labor'] [u'court', u'decis', u'affect', u'ukrain', u'elect'] [u'darwin', u'rememb', u'cyclon', u'traci'] [u'european', u'stock', u'close', u'higher', u'christma'] [u'crew', u'battl', u'blaze', u'grampian'] [u'firefight', u'save', u'christma', u'melbourn', u'famili'] [u'gang', u'link', u'hondura', u'massacr'] [u'penguin', u'japanes', u'aquarium'] [u'german', u'paper', u'print', u'good', u'news', u'xmas'] [u'green', u'speed', u'limit', u'reduct', u'truck'] [u'hurt', u'pakistan', u'bounc', u'say', u'woolmer'] [u'indonesian', u'forc', u'kill', u'aceh', u'rebel'] [u'investig', u'launch', u'newborn', u'death'] [u'israel', u'detain', u'nuclear', u'whistleblow'] [u'katich', u'readi', u'injur', u'langer'] [u'katich', u'readi', u'langer'] [u'critic', u'smash'] [u'hold', u'custodi', u'gold', u'coast', u'seig'] [u'kill', u'children', u'injur', u'marbl', u'crash'] [u'musharraf', u'attack', u'sentenc', u'death'] [u'najaf', u'bomber', u'arrest', u'governor'] [u'nation', u'road', u'toll', u'rise'] [u'dead', u'baghdad', u'fuel', u'tanker', u'blast'] [u'nuclear', u'whistleblow', u'free', u'charg'] [u'palestinian', u'leader', u'attend', u'christma', u'mass'] [u'polic', u'investig', u'adelaid', u'bash'] [u'polic', u'seek', u'public', u'assist', u'sydney', u'train', u'death'] [u'polic', u'target', u'bank', u'heist', u'investig'] [u'power', u'restor', u'blue', u'mountain', u'thunderstorm'] [u'plate', u'driver', u'condit', u'crash'] [u'queen', u'call', u'religi', u'toler'] [u'queen', u'send', u'christma', u'messag', u'troop'] [u'religi', u'leader', u'bush', u'christma', u'messag'] [u'rocker', u'climb', u'stairway', u'heaven'] [u'russia', u'launch', u'survey', u'satellit'] [u'salvo', u'provid', u'christma', u'lunch', u'countri'] [u'scientist', u'keen', u'studi', u'tassi', u'quak'] [u'senior', u'palestinian', u'milit', u'kill'] [u'slower', u'boat', u'bear', u'brunt', u'weather'] [u'soldier', u'enjoy', u'christma', u'lunch', u'baghdad'] [u'space', u'probe', u'head', u'titan'] [u'spiderman', u'climb', u'world', u'tallest', u'build'] [u'troop', u'honour', u'christma', u'messag'] [u'turk', u'ship', u'magnat', u'kidnap', u'iraq'] [u'drown', u'miss', u'waterfal'] [u'freez', u'asset', u'saudi', u'group', u'link', u'qaeda'] [u'armi', u'arrest', u'mosul'] [u'shell', u'kill', u'vietnam'] [u'yushchenko', u'confid', u'elect', u'victori'] [u'lankan', u'convict', u'escap', u'tsunami', u'destroy'] [u'dead', u'south', u'india', u'indonesian', u'quak'] [u'fear', u'dead', u'quak', u'tsunami', u'hit', u'southern'] [u'anglican', u'head', u'claim', u'nation', u'ignor', u'global'] [u'dead', u'aceh', u'quak'] [u'fear', u'dead', u'sumatran', u'quak'] [u'attack', u'kill', u'iraqi', u'bush', u'thank', u'troop'] [u'australian', u'urg', u'recycl', u'christma', u'card'] [u'australia', u'strike', u'late', u'wicket'] [u'bakhtiyari', u'departur', u'uncertain'] [u'blaze', u'perth', u'crew', u'busi'] [u'british', u'paper', u'christma'] [u'british', u'tourist', u'die', u'tidal', u'wave', u'devast'] [u'cairn', u'take', u'wicket', u'lanka', u'slump'] [u'bomb', u'kill', u'near', u'najaf'] [u'confess', u'reveal', u'gang', u'hondura', u'shoot'] [u'consum', u'urg', u'awar', u'refund', u'right'] [u'cost', u'forc', u'snow', u'white', u'dwarf', u'number'] [u'danger', u'drive', u'prompt', u'polic', u'warn'] [u'trip', u'homeless', u'boost', u'self', u'esteem'] [u'death', u'toll', u'near', u'quak', u'tsunami', u'strike'] [u'death', u'toll', u'rise', u'quak', u'tsunami', u'strike'] [u'dismiss', u'director', u'return', u'helm', u'river', u'queen'] [u'donat', u'salvo', u'black'] [u'driver', u'park', u'rev', u'road', u'rage'] [u'earthquak', u'tsunami', u'kill', u'thousand', u'asia'] [u'easi', u'start', u'sydney', u'hobart', u'fleet'] [u'economist', u'predict', u'share', u'market', u'rise'] [u'elector', u'law', u'overrul', u'ukrain', u'vote', u'loom'] [u'england', u'boost', u'jone', u'shrug'] [u'enrol', u'spark', u'skill', u'shortag', u'fear'] [u'urg', u'aust', u'embrac', u'export', u'opportun'] [u'fewer', u'tasmanian', u'need', u'chariti', u'salvo'] [u'crew', u'continu', u'grampian', u'blaze', u'battl'] [u'destroy', u'histor', u'guyana', u'church'] [u'drown', u'nation', u'park', u'rockpool'] [u'girl', u'die', u'motorbik', u'hit', u'tree'] [u'global', u'warm', u'bushfir', u'risk', u'investig'] [u'grief', u'hang', u'quak', u'mourn', u'end'] [u'gunmen', u'kill', u'baghdad', u'univers', u'dean'] [u'hous', u'market', u'tip', u'soften'] [u'investig', u'begin', u'unit'] [u'karzai', u'oppon', u'form', u'polit', u'parti'] [u'lara', u'lead', u'west', u'indi', u'australia'] [u'lifesav', u'urg', u'water', u'safeti', u'vigil'] [u'question', u'servic', u'station', u'incid'] [u'rescu', u'jump', u'ferri'] [u'maoist', u'blockad', u'prompt', u'anti', u'hoard', u'law'] [u'milit', u'tell', u'yemeni', u'court', u'lade', u'tie'] [u'minist', u'examin', u'penalti', u'polic', u'anim'] [u'minist', u'urg', u'buyer', u'bewar'] [u'miss', u'man', u'bodi', u'bribi', u'island'] [u'dead', u'quak', u'tsunami', u'indonesia'] [u'brand', u'sydney', u'polic', u'number', u'unfair'] [u'mum', u'divert', u'hospit'] [u'nake', u'german', u'freez', u'health'] [u'nepales', u'ralli', u'peac'] [u'zealand', u'thrash', u'lanka', u'seri', u'open'] [u'offici', u'investig', u'possibl', u'australian', u'quak'] [u'kill', u'lanka', u'tsunami'] [u'pakistan', u'return', u'form', u'box', u'test'] [u'palestinian', u'presidenti', u'contest', u'begin'] [u'pitch', u'improv', u'pakistan', u'chanc', u'pont'] [u'polic', u'search', u'stab', u'suspect'] [u'polic', u'urg', u'caution', u'congest', u'road'] [u'pope', u'express', u'concern', u'world', u'conflict'] [u'race', u'favourit', u'lead', u'bluewat', u'classic'] [u'rain', u'add', u'grazier', u'christma', u'cheer'] [u'record', u'turn', u'free', u'christma', u'lunch'] [u'retail', u'anticip', u'post', u'christma', u'splurg'] [u'retail', u'hope', u'box', u'success'] [u'rspca', u'warn', u'festiv', u'treat', u'pet'] [u'rushdi', u'condemn', u'lack', u'protect', u'playwright'] [u'safeti', u'campaign', u'reduc', u'marin', u'collis'] [u'shark', u'sight', u'prompt', u'beach', u'closur'] [u'shopper', u'warn', u'guard', u'thiev'] [u'specul', u'continu', u'bakhtiyari', u'deport'] [u'stand', u'skipper', u'pakistan'] [u'sumatra', u'quak', u'rais', u'richter', u'scale'] [u'suppli', u'ship', u'end', u'astronaut', u'food', u'crisi'] [u'support', u'fear', u'detaine', u'restart', u'hunger', u'strike'] [u'swimmer', u'ignor', u'flag', u'warn'] [u'sydney', u'hobart', u'fli', u'start'] [u'thousand', u'fear', u'dead', u'huge', u'asian', u'quak'] [u'tidal', u'wave', u'kill', u'south', u'india', u'home', u'minist'] [u'tight', u'squeez', u'charit', u'donor'] [u'toddler', u'drown', u'backyard', u'pool'] [u'reshuffl', u'british', u'agenc', u'report'] [u'tourist', u'diver', u'miss', u'south', u'thai', u'island'] [u'tsunami', u'flood', u'maldiv'] [u'tsunami', u'kill', u'malaysia'] [u'turkey', u'mobilis', u'kidnap', u'businessman'] [u'dead', u'hurt', u'wave', u'indian', u'island'] [u'father', u'right', u'group', u'target', u'queen'] [u'ukrainian', u'begin', u'vote', u'poll'] [u'forc', u'claim', u'captur', u'zarqawi', u'alli'] [u'weight', u'prove', u'safe', u'pari', u'resid', u'valuabl'] [u'woman', u'die', u'crash', u'darl', u'down'] [u'women', u'urg', u'heed', u'rubella', u'warn'] [u'youth', u'attack', u'greek', u'polic', u'station'] [u'kill', u'iraqi', u'bomb'] [u'kill', u'iraq', u'base', u'bomb', u'video', u'releas'] [u'kill', u'french', u'apart', u'blast'] [u'aceh', u'death', u'toll', u'spiral', u'tidal', u'wave'] [u'aceh', u'tsunami', u'death', u'toll', u'mount'] [u'adelaid', u'surviv', u'tsunami'] [u'agenc', u'launch', u'tsunami', u'appeal'] [u'alburi', u'bushfir', u'threaten', u'hous'] [u'appoint', u'announc', u'health', u'servic'] [u'arthur', u'gain', u'hardcourt', u'wildcard'] [u'asbestosi', u'suffer', u'tell', u'healthi'] [u'asbestosi', u'suffer', u'healthi', u'compo'] [u'aussi', u'cricket', u'safe', u'india'] [u'australia', u'safe', u'tidal', u'wave', u'threat', u'scientist'] [u'aust', u'seek', u'citizen', u'pledg', u'tsunami', u'relief'] [u'bangladesh', u'shock', u'india'] [u'post', u'christma', u'sale', u'tip'] [u'bodi', u'line', u'south', u'india', u'beach', u'killer'] [u'bowler', u'keep', u'pakistan', u'pictur'] [u'bureau', u'predict', u'year', u'rain'] [u'educ', u'ombudsman'] [u'cancer', u'council', u'welcom', u'fall', u'smoke', u'death'] [u'crash', u'put', u'toddler', u'hospit'] [u'celtic', u'finish', u'scotland'] [u'chelsea', u'arsenal', u'forg'] [u'chines', u'defenc', u'polici', u'aim', u'crush', u'taiwan'] [u'coastal', u'patrol', u'drama', u'end'] [u'court', u'hear', u'arm', u'destroy', u'build'] [u'cricket', u'australia', u'honour', u'pioneer', u'indigen'] [u'darwin', u'lankan', u'communiti', u'fear', u'relat'] [u'dead', u'wave', u'african', u'coast'] [u'death', u'come'] [u'demand', u'beef', u'cattl', u'genet'] [u'dfat', u'warn', u'maldiv', u'travel'] [u'diseas', u'fear', u'hold', u'tsunami', u'survivor'] [u'drink', u'drive', u'rat', u'disappoint', u'polic'] [u'drown', u'victim', u'famili', u'fenc', u'plea'] [u'emot', u'clark', u'take', u'latrob', u'wheelrac'] [u'england', u'smith', u'gambl', u'pay'] [u'exit', u'poll', u'yushchenko', u'ukrain'] [u'exit', u'poll', u'yushchenko', u'ukrain', u'vote'] [u'famili', u'wait', u'news', u'miss'] [u'fleet', u'mebourn', u'hobart', u'challeng'] [u'fleet', u'melbourn', u'hobart', u'challeng'] [u'australian', u'miss', u'tidal', u'wave'] [u'grampian', u'blaze', u'burn'] [u'grampian', u'drown', u'spark', u'water', u'safeti', u'review'] [u'india', u'look', u'aveng', u'bangladesh', u'loss'] [u'india', u'lanka', u'warn', u'tsunami'] [u'insurg', u'famili', u'kill', u'accident', u'bomb'] [u'iraqi', u'foreign', u'minist', u'signal', u'violenc'] [u'iraqi', u'kurd', u'petit', u'independ', u'poll'] [u'isra', u'woman', u'charg', u'collabor', u'enemi'] [u'israel', u'releas', u'palestinian', u'prison'] [u'kalli', u'pollock', u'south', u'africa', u'upper', u'hand'] [u'konica', u'minolta', u'skandia', u'neck', u'neck', u'approach'] [u'langer', u'relish', u'battl', u'shoaib'] [u'late', u'surg', u'see', u'tiger', u'past', u'pig'] [u'maldiv', u'declar', u'emerg', u'tsunami'] [u'die', u'jump', u'semi', u'trailer'] [u'mcewen', u'pois', u'launceston', u'defenc'] [u'honour', u'pioneer', u'indigen'] [u'melbourn', u'teen', u'miss', u'phuket', u'tsunami'] [u'melbourn', u'hobart', u'racer', u'stop', u'help', u'struggl'] [u'melbourn', u'race', u'organis', u'hop', u'better'] [u'merci', u'hospit', u'reopen', u'month'] [u'miss', u'girl', u'contact', u'parent'] [u'miss', u'girl', u'spark', u'polic', u'search'] [u'miss', u'tourist', u'bodi'] [u'retir', u'expect', u'bluewat', u'classic'] [u'nation', u'rise', u'garden', u'upgrad', u'consider'] [u'navratilova', u'play', u'hardcourt', u'championship'] [u'warn', u'place', u'tsunami'] [u'cane', u'toad', u'trap', u'prize', u'criticis'] [u'road', u'death', u'push', u'toll', u'higher'] [u'ogradi', u'mcewen', u'upstag', u'local', u'win', u'launceston'] [u'opposit', u'seek', u'shaw', u'blood', u'sampl', u'inquiri'] [u'pakistan', u'ahead', u'second', u'test'] [u'pakistan', u'australia'] [u'pakistan', u'put', u'heat', u'aussi', u'batsmen'] [u'paper', u'caus', u'damag'] [u'phuket', u'count', u'cost', u'tidal', u'wave', u'devast'] [u'offer', u'sympathi', u'tsunami', u'victim'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'investig', u'accid', u'death', u'caus'] [u'polic', u'maintain', u'road', u'crackdown'] [u'polic', u'prais', u'fall', u'crime', u'rat'] [u'polic', u'search', u'miss', u'japanes', u'tourist'] [u'post', u'christma', u'sale', u'spark', u'consum', u'warn'] [u'privat', u'road', u'decis', u'anger', u'station', u'owner'] [u'probe', u'launch', u'toddler', u'drown'] [u'race', u'leader', u'press', u'bass', u'strait'] [u'cross', u'set', u'target', u'tsunami', u'appeal'] [u'rough', u'sea', u'predict', u'melbourn', u'launceston'] [u'rough', u'weather', u'cut', u'bluewat', u'classic'] [u'rspca', u'issu', u'christma', u'leftov', u'warn'] [u'scientist', u'revis', u'dead', u'quak', u'rat'] [u'scientist', u'warn', u'tsunami', u'threat'] [u'search', u'mount', u'miss', u'tourist'] [u'south', u'africa', u'strike', u'send', u'england'] [u'lanka', u'appeal', u'food', u'medic', u'suppli'] [u'lankan', u'cricket', u'ponder', u'tour', u'pull'] [u'lanka', u'tidal', u'wave', u'toll', u'hit'] [u'lanka', u'tsunami', u'kill', u'million', u'affect'] [u'stinger', u'attack', u'leav', u'person', u'hospit'] [u'storm', u'caus', u'power', u'outag'] [u'summernat', u'hop', u'inquiri', u'communiti', u'support'] [u'sunni', u'muslim', u'parti', u'withdraw', u'iraq', u'januari'] [u'super', u'maxi', u'high', u'sea', u'duel'] [u'survivor', u'tell', u'wall', u'water'] [u'tasmania', u'appoint', u'assist', u'polic', u'commission'] [u'thousand', u'flock', u'woodford', u'folk', u'festiv'] [u'tidal', u'surg', u'coast'] [u'tidal', u'surg', u'prompt', u'polic', u'warn'] [u'tidal', u'wave', u'kill', u'thousand', u'asia'] [u'trucki', u'escap', u'injuri', u'fieri', u'crash'] [u'tsunami', u'kill', u'central', u'burma'] [u'australian', u'dead', u'phuket', u'tsunami'] [u'bodi', u'discov', u'sydney', u'home'] [u'horrif', u'crash'] [u'injur', u'brisban', u'blaze'] [u'snorkel', u'dead', u'rescu', u'thai', u'cave'] [u'seek', u'role', u'sunni', u'iraq', u'govern', u'report'] [u'team', u'see', u'sign', u'rig', u'vote', u'ukrain'] [u'victoria', u'lankan', u'contact', u'famili'] [u'economi', u'remain', u'strong', u'despit', u'slump', u'studi'] [u'weather', u'delay', u'locust', u'influx'] [u'weather', u'forc', u'melbourn', u'hobart'] [u'whale', u'tasmanian', u'beach'] [u'world', u'rush', u'offer', u'tidal', u'wave', u'victim'] [u'yushchenko', u'proclaim', u'ukrain'] [u'yushchenko', u'win', u'ukrain', u'poll'] [u'kill', u'tidal', u'wave', u'strike', u'tanzania'] [u'million', u'displac', u'tsunami', u'cross'] [u'facil', u'power', u'north', u'west'] [u'aceh', u'separatist', u'declar', u'ceasefir', u'tsunami'] [u'aceh', u'tsunami', u'victim', u'await'] [u'driver', u'earn', u'polic', u'prais'] [u'agenc', u'call', u'aust', u'tsunami'] [u'agenc', u'critic', u'govt', u'effort'] [u'alga', u'woe', u'deter', u'noosa', u'beach', u'goer'] [u'amazon', u'report', u'record', u'christma', u'sale'] [u'ambul', u'call', u'pakistan', u'team', u'hotel'] [u'amend', u'give', u'tasmanian', u'time'] [u'report', u'spam', u'declin'] [u'arrest', u'polic', u'chase'] [u'asian', u'offici', u'fear', u'miss'] [u'australia', u'lead', u'pakistan'] [u'australia', u'test'] [u'australia', u'rattl'] [u'australia', u'test', u'victori'] [u'australia', u'tighten', u'grip', u'second', u'test'] [u'australia', u'send', u'tsunami', u'clean'] [u'aust', u'welcom', u'record', u'tourist', u'visit'] [u'author', u'monitor', u'fire'] [u'author', u'prais', u'brave', u'hous', u'blaze', u'rescu'] [u'author', u'assist', u'famili', u'babi', u'girl'] [u'babi', u'float', u'safeti', u'mattress', u'tsunami'] [u'sheffield', u'come', u'home'] [u'beach', u'drown', u'prompt', u'safeti', u'warn'] [u'beach', u'whale', u'femal'] [u'beach', u'goer', u'time', u'safeti', u'remind'] [u'behead', u'video', u'show', u'japanes', u'rock', u'concert'] [u'beij', u'group', u'launch', u'olymp', u'newspap'] [u'lade', u'call', u'iraqi', u'poll', u'boycott'] [u'blood', u'bank', u'renew', u'donat', u'appeal'] [u'bodi', u'pile', u'india', u'govt', u'warn', u'toll'] [u'bogus', u'onlin', u'auction', u'catch', u'shopper'] [u'radiat', u'explod', u'boy', u'face'] [u'china', u'scrap', u'olymp', u'stadium', u'plan'] [u'coastal', u'patrol', u'monitor', u'whale', u'beach'] [u'coco', u'island', u'spar', u'dead', u'wave'] [u'commonwealth', u'countri', u'discuss', u'tidal', u'wave'] [u'crude', u'price', u'plung'] [u'damag', u'road', u'hinder', u'lankan', u'effort'] [u'darwin', u'role', u'tsunami', u'effort'] [u'diego', u'garcia', u'militari', u'base', u'undamag', u'tsunami'] [u'diseas', u'threaten', u'tsunami', u'stricken', u'countri'] [u'downer', u'defend', u'aust', u'tsunami', u'respons'] [u'drahm', u'answer', u'saint', u'prayer'] [u'eighth', u'australian', u'dead', u'tsunami'] [u'elder', u'woman', u'tsunami', u'dead'] [u'elect', u'fall', u'prompt', u'democrat'] [u'welcom', u'ukrain', u'elect', u'result'] [u'famili', u'prepar', u'return', u'tsunami', u'victim'] [u'fate', u'andaman', u'island', u'unknown'] [u'father', u'team', u'win', u'melbourn', u'launceston'] [u'fergi', u'defend', u'rooney', u'push', u'incid'] [u'injur', u'pacif', u'highway', u'collis'] [u'fund', u'allow', u'boost', u'scholarship'] [u'greenback', u'drag', u'share', u'price'] [u'hama', u'leader', u'zahar', u'reject', u'abba'] [u'health', u'servic', u'director', u'name', u'ahead', u'merger'] [u'high', u'wind', u'lash', u'melbourn', u'central', u'victoria'] [u'hmas', u'darwin', u'head', u'persian', u'gulf'] [u'hobart', u'festiv', u'prove', u'punter', u'tast'] [u'indian', u'bat', u'blitz', u'sink', u'bangladesh'] [u'india', u'pakistan', u'talk', u'breakthrough'] [u'indonesia', u'fear', u'death', u'toll', u'reach'] [u'indonesian', u'warn', u'death', u'toll', u'reach'] [u'indonesia', u'set', u'tsunami', u'relief', u'agenc'] [u'word'] [u'iraqi', u'expatri', u'allow', u'vote', u'abroad'] [u'israel', u'armi', u'blame', u'profession', u'failur'] [u'japan', u'test', u'tourism', u'guid'] [u'keel', u'damag', u'forc', u'skandia', u'retir'] [u'killer', u'quak', u'rattl', u'earth', u'orbit', u'scientist'] [u'konica', u'minolta', u'crew', u'disappoint', u'retir'] [u'konica', u'skandia', u'sydney', u'hobart'] [u'malaysian', u'villag', u'mourn', u'coupl', u'lose'] [u'melbourn', u'footbal', u'miss', u'thailand'] [u'melbourn', u'prepar', u'year', u'spectacular'] [u'minist', u'call', u'tsunami', u'warn', u'scheme'] [u'miss', u'spark', u'polic', u'fear'] [u'talk', u'north', u'coast', u'transport', u'servic'] [u'murali', u'lucki', u'aliv', u'tsunami', u'disast'] [u'nacho', u'sizzl', u'ranger', u'close'] [u'nicorett', u'close', u'hobart'] [u'nicorett', u'cruis', u'hobart'] [u'nicorett', u'lead', u'dash', u'hobart'] [u'northern', u'aust', u'tsunami', u'risk', u'expert'] [u'north', u'assist', u'polic'] [u'somali', u'fishermen', u'fear', u'kill', u'tsunami'] [u'pair', u'hurt', u'eyr', u'highway', u'crash'] [u'pakistan', u'stumbl', u'fail', u'pounc'] [u'palestinian', u'elect', u'candid', u'arrest'] [u'parishion', u'urg', u'offer', u'support', u'tsunami'] [u'peopl', u'gather', u'celebr', u'proclam'] [u'reject', u'critic', u'relief', u'effort'] [u'polic', u'behead', u'bodi', u'slum', u'turf'] [u'polic', u'hunt', u'hotel', u'bandit'] [u'polic', u'investig', u'aborigin', u'theft'] [u'polic', u'investig', u'engadin', u'death'] [u'polic', u'investig', u'stawel', u'bodi'] [u'polic', u'issu', u'holiday', u'crime', u'warn'] [u'polic', u'brake', u'young', u'speedster'] [u'polic', u'seek', u'wit', u'truck', u'jump', u'death'] [u'post', u'christma', u'sale'] [u'post', u'mortem', u'japanes', u'tourist'] [u'powel', u'push', u'sunni', u'presenc', u'iraqi'] [u'power', u'return', u'central', u'west', u'resid'] [u'pump', u'save', u'sink', u'trawler'] [u'store', u'regist', u'strong', u'sale'] [u'razzaq', u'rush', u'hospit', u'play', u'delay', u'melbourn'] [u'resid', u'brief', u'return', u'fallujah'] [u'road', u'crash', u'victim', u'hospit'] [u'roadsid', u'bomb', u'kill', u'soldier', u'iraq'] [u'bounc', u'stun', u'offic'] [u'search', u'continu', u'miss', u'gold', u'coast'] [u'search', u'continu', u'miss', u'woman'] [u'shoaib', u'malik', u'illeg', u'doosra'] [u'shoaib', u'take', u'australia', u'build', u'lead'] [u'shop', u'centr', u'blaze', u'investig'] [u'australian', u'confirm', u'kill', u'tsunami'] [u'skandia', u'crew', u'abandon', u'ship', u'konica'] [u'skandia', u'keel', u'damag'] [u'speed', u'driver', u'caus', u'polic', u'concern'] [u'lankan', u'clean', u'year'] [u'lankan', u'indian', u'communiti', u'plan', u'fundrais'] [u'lanka', u'postpon', u'match', u'tour', u'ahead'] [u'starvat', u'loot', u'report', u'aceh'] [u'storm', u'decim', u'fleet'] [u'swimmer', u'evacu', u'shark', u'sight'] [u'teenag', u'kill', u'road', u'crash', u'wasnt', u'wear', u'seat'] [u'thailand', u'appeal', u'tsunami'] [u'thailand', u'declar', u'day', u'mourn'] [u'thousand', u'seek', u'post', u'christma', u'bargain'] [u'tidal', u'surg', u'blame', u'tsunami'] [u'tourist', u'bear', u'brunt', u'tsunami', u'thailand'] [u'town', u'seek', u'famili', u'boost', u'kindi', u'class'] [u'traffic', u'stop', u'bypass', u'gridlock'] [u'trescothick', u'strauss', u'centuri', u'boost', u'england'] [u'tsunami', u'flight', u'leav', u'darwin'] [u'tsunami', u'disast', u'hit', u'economi', u'market'] [u'tsunami', u'expert', u'call', u'improv', u'warn'] [u'tsunami', u'survivor', u'criticis', u'aust', u'rescu', u'effort'] [u'kill', u'attack', u'iraqi', u'polic'] [u'ukrain', u'refus', u'conced', u'defeat'] [u'prepar', u'tsunami', u'effort'] [u'team', u'head', u'lanka', u'maldiv'] [u'britain', u'hold', u'prison', u'iraq'] [u'uzbek', u'elect', u'intern', u'standard'] [u'road', u'toll', u'hit'] [u'woman', u'stab', u'park', u'fight'] [u'woodford', u'folk', u'festiv', u'offici', u'begin'] [u'youth', u'face', u'court', u'school', u'blaze'] [u'yuko', u'default', u'miss', u'payment'] [u'yushchenko', u'say', u'time', u'need', u'rebuild', u'russia', u'tie'] [u'aapt', u'second', u'hobart'] [u'academ', u'question', u'redund', u'decis'] [u'adelaid', u'doctor', u'tsunami', u'devast'] [u'adelaid', u'charg', u'attempt', u'murder'] [u'identif', u'team', u'arriv', u'thailand'] [u'help', u'hand'] [u'alcohol', u'link', u'teen', u'death'] [u'american', u'win', u'launceston', u'cycl', u'race'] [u'angler', u'unabl', u'save', u'sink', u'boat'] [u'collect', u'tsunami', u'donat'] [u'asia', u'tsunami', u'leav', u'swede', u'miss'] [u'attenborough', u'granddaught', u'kill', u'quak'] [u'australia', u'boost', u'tsunami', u'effort'] [u'australia', u'clinch', u'seri', u'wicket'] [u'australia', u'cruis', u'fourth', u'victori'] [u'australian', u'doctor', u'assist', u'tsunami', u'victim'] [u'australian', u'survivor', u'arriv', u'darwin'] [u'australian', u'tsunami', u'toll', u'expect', u'rise'] [u'baghdad', u'blast', u'kill'] [u'baker', u'set', u'sight', u'devonport', u'gift'] [u'biologist', u'fear', u'water', u'suppli', u'maldiv'] [u'british', u'soldier', u'dead', u'iraq'] [u'broadbridg', u'miss', u'phuket'] [u'broadbridg', u'miss', u'thailand'] [u'caloundra', u'seek', u'polic', u'inform'] [u'canberra', u'rememb', u'tsunami', u'victim'] [u'cathol', u'counsel', u'abort', u'rate'] [u'chelsea', u'extend', u'lead', u'unit'] [u'china', u'spend', u'coal', u'safeti'] [u'christma', u'shopper', u'remind', u'refund', u'right'] [u'chronolog', u'tsunami', u'past', u'centuri'] [u'concern', u'rais', u'speed', u'tsunami'] [u'condit', u'hinder', u'identif', u'tsunami', u'victim'] [u'council', u'reduc', u'residenti', u'subdivis'] [u'court', u'hear', u'phnom', u'penh', u'bomb', u'plot'] [u'driver', u'caution', u'extra', u'traffic'] [u'drought', u'polit', u'frustrat', u'rural', u'counsellor'] [u'export', u'seek', u'suppli', u'tsunami', u'relief', u'plan'] [u'fear', u'thousand', u'tsunami', u'toll', u'mount'] [u'feder', u'polic', u'begin', u'identif', u'thai'] [u'crew', u'monitor', u'scene', u'bindoon', u'blaze'] [u'foreign', u'insur', u'tip', u'escap', u'tsunami', u'unscath'] [u'forestri', u'firm', u'accus', u'pollut', u'melvill', u'island'] [u'fourteen', u'tsunami', u'survivor', u'return', u'home'] [u'free', u'draw', u'wide', u'barrier', u'perth'] [u'friend', u'tribut', u'adelaid', u'tsunami', u'victim'] [u'general', u'face', u'crimin', u'probe', u'thai', u'muslim'] [u'girl', u'savag', u'north', u'attack'] [u'govt', u'hotlin', u'medico', u'offer', u'tsunami'] [u'grave', u'fear', u'thousand', u'aceh'] [u'hospit', u'pleas', u'nurs'] [u'hospit', u'cop', u'holiday', u'demand'] [u'readi', u'listen', u'lankan', u'concern'] [u'indian', u'event', u'ahead'] [u'indonesia', u'lanka', u'hardest', u'tsunami'] [u'ingval', u'warn', u'sydney', u'hobart'] [u'insur', u'travel', u'stock', u'drag', u'australian', u'market'] [u'intrud', u'break', u'wrong', u'hous', u'apologis'] [u'isra', u'airstrik', u'hit', u'palestinian', u'gaza'] [u'jam', u'lift', u'trap', u'super', u'keen', u'adelaid', u'shopper'] [u'japan', u'mull', u'femal', u'heir', u'throne'] [u'langer', u'go', u'chase', u'start'] [u'launceston', u'yachti', u'melbourn', u'launceston', u'line'] [u'lobbi', u'group', u'disput', u'transport', u'claim'] [u'charg', u'pizza', u'theft'] [u'charg', u'polic'] [u'plan', u'speed', u'riverina', u'gold', u'explor'] [u'martin', u'call', u'tsunami', u'warn'] [u'martyn', u'thank', u'aussi', u'selector'] [u'melbourn', u'lankan', u'collect', u'victim'] [u'mini', u'crash', u'central', u'aust'] [u'miracl', u'indian', u'girl', u'surviv', u'tsunami', u'wooden', u'door'] [u'molotov', u'cocktail', u'spark', u'hous'] [u'nasa', u'finish', u'redesign', u'shuttl', u'fuel', u'tank'] [u'navi', u'seal', u'publish', u'iraq', u'photo'] [u'govt', u'take', u'shape', u'romania'] [u'newmont', u'say', u'indonesian', u'civil', u'suit', u'withdraw'] [u'nicorett', u'take', u'sydney', u'hobart', u'line', u'honour'] [u'nicorett', u'contest', u'pittwat', u'coff', u'race'] [u'peopl', u'kill', u'kashmir', u'unrest'] [u'ninth', u'australian', u'confirm', u'dead', u'tsunami'] [u'govt', u'pledg', u'tsunami', u'victim'] [u'offici', u'monitor', u'plagu', u'locust', u'south', u'west'] [u'oldfield', u'leav', u'nation'] [u'kill', u'wollongong', u'crash'] [u'confirm', u'dead', u'thailand'] [u'bodi', u'beach', u'island'] [u'pakistan', u'fight', u'life'] [u'seek', u'comment', u'wagga', u'polic', u'claim'] [u'polic', u'alleg', u'plater', u'doubl', u'speed', u'limit'] [u'polic', u'hunt', u'pair', u'tulli', u'knife', u'attack'] [u'polic', u'investig', u'adelaid', u'fire'] [u'polic', u'probe', u'booral', u'crash'] [u'polic', u'recov', u'miss', u'man', u'bodi'] [u'polic', u'target', u'alcohol', u'relat', u'crime'] [u'pont', u'back', u'lehmann', u'sydney', u'test'] [u'pont', u'guid', u'australia', u'victori'] [u'post', u'tsunami', u'diseas', u'kill', u'thousand'] [u'power', u'station', u'deal', u'show', u'faith'] [u'quetzalcoatl', u'hold', u'slight', u'lead'] [u'quetzalcoatl', u'lead', u'melbourn', u'hobart', u'fleet', u'home'] [u'racv', u'prais', u'lower', u'petrol', u'price', u'christma'] [u'rain', u'fail', u'dampen', u'threat'] [u'razzaq', u'releas', u'hospit'] [u'reid', u'give', u'adelaid', u'wildcard'] [u'report', u'link', u'bank', u'robberi'] [u'rex', u'canberra', u'servic', u'finish'] [u'rotari', u'call', u'tsunami', u'donat'] [u'saudi', u'polic', u'kill', u'milit', u'riyadh', u'shootout'] [u'seminar', u'mean', u'busi', u'musician'] [u'shoaib', u'razzaq', u'fall'] [u'korea', u'defect', u'communist', u'north'] [u'lanka', u'buri', u'dead', u'mass', u'grave'] [u'lankan', u'tsunami', u'survivor', u'survey', u'devast'] [u'lanka', u'continu', u'tour'] [u'state', u'territori', u'pledg', u'tsunami'] [u'georg', u'sell', u'network'] [u'strong', u'consum', u'confid', u'boost', u'share'] [u'susan', u'sontag', u'battler', u'literatur', u'human'] [u'swimmer', u'warn', u'beach', u'danger'] [u'tasmania', u'pledg', u'tsunami', u'relief'] [u'telstra', u'rebat', u'cost', u'tsunami', u'victim'] [u'thailand', u'miss', u'tourist', u'offici'] [u'thai', u'looter', u'cash', u'tsunami', u'destruct'] [u'timelin', u'year', u'dead', u'tsunami'] [u'tire', u'novak', u'scratch', u'open'] [u'tour', u'oper', u'account', u'tsunami', u'region', u'client'] [u'trescothick', u'strauss', u'open', u'stand'] [u'tsunami', u'death', u'toll', u'near'] [u'tsunami', u'toll', u'maldiv', u'rise'] [u'tsunami', u'weigh', u'aust', u'stock'] [u'australian', u'safe', u'tsunami', u'zone'] [u'charg', u'chase', u'water'] [u'kill', u'vietnam', u'shell'] [u'charg', u'penguin', u'doubl', u'murder'] [u'ukrain', u'govern', u'cancel', u'meet', u'amid', u'protest'] [u'ukrain', u'pull', u'conting', u'iraq', u'minist'] [u'deni', u'stingi', u'tsunami'] [u'give', u'palestinian', u'author'] [u'medico', u'bind', u'tsunami', u'region'] [u'merchant', u'venic'] [u'student', u'receiv', u'high', u'school', u'result'] [u'wave', u'terror'] [u'whale', u'autopsi', u'continu'] [u'wildcard', u'confirm', u'hardcourt', u'champ'] [u'win', u'skipper', u'warn', u'speed', u'safeti'] [u'woman', u'hurt', u'roll'] [u'woodford', u'organis', u'plan', u'indigen', u'festiv'] [u'woolnorth', u'pastor', u'properti', u'tender'] [u'writer', u'critic', u'susan', u'sontag', u'die'] [u'xmas', u'road', u'toll', u'reach'] [u'yushchenko', u'call', u'govern', u'blockad'] [u'abba', u'press', u'remov', u'isra', u'barrier'] [u'aceh', u'toll'] [u'govt', u'pledg', u'tsunami', u'victim'] [u'aera', u'firm', u'handicap', u'favourit'] [u'aera', u'handicap', u'honour'] [u'group', u'overwhelm', u'tsunami', u'donat'] [u'shipment', u'begin', u'arriv', u'aceh'] [u'alaska', u'spill', u'wors', u'fear'] [u'qaeda', u'link', u'rebel', u'kill', u'seven', u'algeria'] [u'assist', u'offer', u'return', u'tsunami', u'victim'] [u'aussi', u'domin', u'world', u'rugbi', u'team'] [u'aust', u'forens', u'team', u'begin', u'work', u'thailand'] [u'aust', u'join', u'bush', u'tsunami', u'coalit'] [u'australian', u'effort', u'identifi', u'tsunami', u'dead'] [u'australia', u'send', u'navi', u'ship', u'chopper', u'indonesia'] [u'aust', u'send', u'suppli', u'expert', u'tsunami', u'zone'] [u'bakhtiyari', u'debat', u'beli', u'refuge', u'program', u'vanston'] [u'bakhtiyari', u'bind', u'pakistan'] [u'bishop', u'urg', u'tsunami'] [u'blue', u'welcom', u'warrior', u'clash'] [u'boati', u'urg', u'patient', u'year'] [u'rescu', u'cliff', u'face'] [u'break', u'hard', u'brain'] [u'burglari', u'suspect', u'catch', u'polic', u'chase'] [u'bush', u'vow', u'victim', u'tsunami'] [u'businessman', u'stick', u'riverina', u'airlin', u'plan'] [u'byron', u'traffic', u'woe', u'continu'] [u'cambodian', u'court', u'sentenc', u'terror', u'suspect', u'life'] [u'park', u'deal', u'seal', u'wollongong', u'hotel', u'develop'] [u'chariti', u'urg', u'think', u'lone', u'australian'] [u'children', u'bear', u'brunt', u'tsunami', u'disast'] [u'christma', u'road', u'toll', u'reach'] [u'cloncurri', u'water', u'suppli', u'get', u'boost'] [u'consum', u'warn', u'credit', u'card', u'crook'] [u'council', u'launch', u'tsunami', u'appeal'] [u'court', u'reject', u'south', u'west', u'rock', u'subdivis'] [u'cricket', u'donat', u'win', u'help', u'tsunami', u'victim'] [u'cricket', u'shock', u'india', u'disast'] [u'water', u'forc', u'household', u'bill'] [u'dept', u'promis', u'continu', u'water', u'licenc', u'crackdown'] [u'doctor', u'offer', u'servic', u'tsunami', u'victim'] [u'issu', u'tick', u'warn', u'hors', u'owner'] [u'driver', u'warn', u'polic', u'crackdown'] [u'dubbo', u'famili', u'safe', u'tsunami'] [u'fall', u'pilgrim', u'line', u'rout', u'festiv', u'site'] [u'north', u'resid', u'ask', u'help', u'tsunami', u'victim'] [u'feder', u'puzzl', u'tenni', u'dope'] [u'crew', u'contain', u'nation', u'park', u'blaze'] [u'firefight', u'urg', u'public', u'report', u'countri', u'blaze'] [u'million', u'need', u'food', u'water'] [u'fluoresc', u'polic', u'car', u'boost', u'road', u'safeti'] [u'socceroo', u'criticis', u'youth', u'develop'] [u'freight', u'train', u'mishap', u'block', u'passeng', u'line'] [u'fresh', u'resign', u'report'] [u'friend', u'wondai', u'shire', u'attract', u'famili'] [u'govt', u'deni', u'restrain', u'bakhtiyari'] [u'govt', u'surplus', u'tsunami'] [u'group', u'focus', u'polic', u'communic', u'centr'] [u'gunner', u'chelsea', u'sight'] [u'health', u'servic', u'job', u'uncertain', u'ahead', u'merger'] [u'healthi', u'holiday', u'book', u'whitsunday'] [u'helicopt', u'patrol', u'power', u'upgrad', u'program'] [u'heritag', u'bodi', u'administr'] [u'hewitt', u'slam', u'australian', u'open', u'organis'] [u'holiday', u'theft', u'rise'] [u'hundr', u'tribut', u'slay', u'polic', u'offic'] [u'hundr', u'protest', u'land', u'bill'] [u'hunter', u'famili', u'surviv', u'tsunami'] [u'hunter', u'substat', u'build', u'ahead', u'time'] [u'illawarra', u'group', u'fundrais', u'tsunami', u'victim'] [u'indian', u'author', u'search', u'aborigin', u'tribe'] [u'indian', u'death', u'toll', u'pass'] [u'india', u'spend', u'tsunami', u'warn', u'system'] [u'indonesia', u'death', u'reach', u'offici'] [u'injur', u'davenport', u'fight', u'sydney', u'fit'] [u'inzamam', u'razzaq', u'expect', u'play', u'sydney', u'test'] [u'iraq', u'clash', u'kill', u'insurg'] [u'iraq', u'say', u'senior', u'zarqawi', u'aid', u'captur', u'baghdad'] [u'israel', u'charg', u'relic', u'ring', u'fraud'] [u'jackson', u'case', u'potenti', u'juror', u'call'] [u'judg', u'challeng', u'postpon'] [u'kapow', u'superhero', u'food', u'fight', u'frenzi'] [u'katich', u'play', u'test', u'chanc'] [u'kingaroy', u'policeman', u'die', u'holiday'] [u'king', u'break', u'zealand'] [u'kmart', u'recal', u'kid', u'bike'] [u'larg', u'blast', u'hear', u'saudi', u'capit'] [u'launceston', u'runner', u'win', u'devonport', u'gift'] [u'order', u'star', u'jerri', u'orbach', u'die'] [u'lehmann', u'stay', u'macgil', u'drop'] [u'lightn', u'play', u'havoc', u'radio', u'recept'] [u'light', u'wind', u'hinder', u'melbourn', u'hobart', u'progess'] [u'light', u'wind', u'slow', u'yacht', u'melbourn', u'hobart'] [u'lismor', u'man', u'friend', u'avoid', u'tsunami'] [u'livestock', u'produc', u'adapt', u'market', u'demand'] [u'mackay', u'yachti', u'learn', u'sydney', u'hobart'] [u'maldiv', u'tsunami', u'death', u'toll', u'rise'] [u'court', u'hous', u'blaze'] [u'court', u'tavern', u'blaze'] [u'maoist', u'transport', u'blockad', u'nepal'] [u'market', u'finish', u'high', u'despit', u'light', u'trade'] [u'mayor', u'refus', u'year', u'celebr'] [u'melbourn', u'hobart', u'fleet', u'hamper', u'light', u'wind'] [u'melbourn', u'support', u'miss', u'team', u'mate'] [u'melbourn', u'tsunami', u'victim', u'parent', u'arriv', u'home'] [u'miliari', u'lead', u'lankan', u'relief', u'effort'] [u'mirza', u'get', u'aust', u'open', u'wildcard'] [u'molik', u'pair', u'sugiyama'] [u'aftershock', u'felt', u'aceh'] [u'more', u'sydney', u'rail', u'servic', u'track'] [u'time', u'comment', u'wauchop', u'masterplan'] [u'myall', u'lake', u'want', u'greater', u'polic', u'presenc'] [u'myskina', u'focus', u'win', u'hopman'] [u'newcastl', u'pray', u'tsunami', u'victim'] [u'measur', u'target', u'year', u'troubl'] [u'polic', u'unit', u'target', u'crime'] [u'turbin', u'boost', u'alic', u'power', u'suppli'] [u'nigeria', u'buy', u'patrol', u'boat', u'combat', u'theft'] [u'charg', u'expect', u'doubl', u'murder'] [u'famili', u'wait', u'hear', u'relat'] [u'price', u'jump', u'riyadh', u'bomb'] [u'pakistan', u'injuri', u'crisi'] [u'pantri', u'raid', u'forc', u'astronaut', u'sweet', u'bing'] [u'paraglid', u'look', u'break', u'record', u'manilla'] [u'pere', u'sharon', u'deputi', u'isra'] [u'phelp', u'probat', u'drink', u'drive'] [u'pierc', u'doubt', u'sydney', u'intern'] [u'prais', u'australian', u'tsunami', u'respons'] [u'poki', u'advertis', u'loom'] [u'polic', u'catch', u'speed', u'driver', u'christma'] [u'polic', u'investig', u'kill', u'penguin', u'parti'] [u'polic', u'lament', u'holiday', u'road', u'offenc'] [u'polic', u'link', u'solomon', u'murder', u'second', u'shoot'] [u'polic', u'kill', u'truck', u'ride'] [u'polic', u'probe', u'suspici', u'more', u'death'] [u'polic', u'search', u'miss'] [u'polic', u'warn', u'privat', u'year', u'firework'] [u'polic', u'warn', u'coast', u'driver', u'follow', u'rule'] [u'post', u'ukrain', u'elect', u'wrangl', u'continu'] [u'prepar', u'return', u'bodi'] [u'produc', u'urg', u'fever', u'vaccin'] [u'public', u'urg', u'recycl', u'christma', u'card'] [u'rain', u'counter', u'lightn', u'threat'] [u'rain', u'offer', u'hope', u'produc'] [u'record', u'dakar', u'ralli'] [u'rescuer', u'tsunami', u'survivor', u'thailand'] [u'road', u'toll', u'remain', u'zero', u'southern', u'road'] [u'road', u'toll', u'rise', u'newcastl', u'crash'] [u'robberi', u'victim', u'arrest', u'attack'] [u'rooney', u'charg', u'violent', u'conduct'] [u'salvo', u'urg', u'continu', u'christma', u'donat'] [u'saudi', u'capit', u'rock', u'twin', u'bomb'] [u'scientist', u'head', u'south', u'test', u'lightn', u'theori'] [u'seven', u'milit', u'kill', u'saudi', u'bomb'] [u'sharon', u'order', u'zero', u'toler', u'gaza', u'pullout'] [u'ship', u'bind', u'sumatra', u'stock', u'donat'] [u'shire', u'give', u'childcar', u'centr', u'leas', u'life'] [u'skandia', u'skipper', u'call', u'greater', u'yacht', u'safeti'] [u'skandia', u'handicap', u'contend', u'come', u'home'] [u'snake', u'guid', u'woman', u'children', u'safeti'] [u'speed', u'driver', u'worri', u'north', u'coast', u'polic'] [u'lanka', u'call', u'foreign'] [u'lankan', u'player', u'anxious', u'return', u'home'] [u'lanka', u'scrap', u'tour', u'tsunami'] [u'survivor', u'tsunami', u'difficult', u'accept'] [u'swimmer', u'warn', u'guard', u'stinger'] [u'sydney', u'polic', u'issu', u'year', u'warn'] [u'taiwan', u'court', u'reject', u'presidenti', u'elect', u'suit'] [u'tamworth', u'local', u'ask', u'blood'] [u'task', u'forc', u'investig', u'sight'] [u'technolog', u'aid', u'strand', u'tourist', u'rescu'] [u'result', u'nice', u'esper', u'student'] [u'tenth', u'australian', u'dead', u'tsunami'] [u'thiev', u'target', u'jewelleri', u'shop', u'time'] [u'thorp', u'put', u'england', u'power', u'posit'] [u'thousand', u'flock', u'rocki', u'year', u'celebr'] [u'airlift', u'troop', u'carrier', u'crash'] [u'stab', u'sydney', u'parti'] [u'time', u'work', u'christma', u'kilo'] [u'tourism', u'job', u'boost', u'matur', u'age', u'worker'] [u'townsvill', u'firework', u'fund', u'tsunami', u'victim'] [u'traffic', u'fine', u'issu', u'year', u'incid'] [u'travel', u'agent', u'staff', u'surviv', u'tsunami', u'client', u'fate'] [u'troubl', u'windi', u'leav', u'australia'] [u'tsunami', u'team', u'face', u'devast'] [u'tsunami', u'death', u'toll', u'thailand', u'near'] [u'tsunami', u'relief', u'effort', u'step'] [u'tsunami', u'toll'] [u'tsunami', u'toll', u'pass'] [u'tsunami', u'victim', u'malaysian', u'demand', u'quick'] [u'kill', u'gaza', u'strike'] [u'lebanes', u'businessmen', u'kidnap', u'baghdad'] [u'milit', u'kill', u'gaza', u'raid'] [u'uncertainti', u'remain', u'health', u'merger', u'loss'] [u'chief', u'overse', u'tsunami', u'relief'] [u'share'] [u'locust', u'plagu'] [u'polic', u'forc', u'year'] [u'vietnames', u'girl', u'contract', u'bird'] [u'volunari', u'code', u'improv', u'parti', u'safeti'] [u'water', u'level', u'sydney', u'main', u'drop'] [u'watson', u'hope', u'start', u'sydney', u'test'] [u'wave', u'sweep', u'camper'] [u'women', u'advoc', u'back', u'pregnanc', u'support', u'scheme'] [u'yemeni', u'qaeda', u'member', u'kill', u'riyadh', u'shootout'] [u'american', u'dead', u'tsunami'] [u'briton', u'dead', u'asia', u'tsunami', u'disast'] [u'extend', u'million', u'tsunami', u'countri'] [u'adelaid', u'revel', u'urg', u'public', u'transport'] [u'aera', u'secur', u'handicap', u'trophi'] [u'tip', u'fair', u'troubl', u'free', u'year'] [u'albani', u'ralli', u'offer', u'tsunami', u'relief'] [u'annan', u'warn', u'long', u'term', u'commit', u'need', u'asia'] [u'locust', u'outbreak'] [u'australian', u'generous', u'tsunami', u'victim'] [u'australian', u'warn', u'tsunami', u'toll', u'reach'] [u'light', u'thwart', u'england', u'durban'] [u'baghdad', u'refineri', u'alight'] [u'ban', u'malik', u'say', u'pakistan', u'lack', u'matur'] [u'beer', u'flow', u'wellshot', u'hotel'] [u'crowd', u'tip', u'enjoy', u'great', u'lake', u'year'] [u'boro', u'battl', u'schwarzer'] [u'bremer', u'polic', u'prepar', u'year'] [u'breweri', u'switch', u'bottl', u'water', u'tsunami'] [u'british', u'yacht', u'honour'] [u'broom', u'hop', u'clean', u'litter', u'woe'] [u'bush', u'crash', u'kill', u'pakistan'] [u'bushfir', u'pose', u'threat', u'endang', u'parrot'] [u'byron', u'polic', u'crack', u'public', u'drink'] [u'camp', u'area', u'reopen', u'asbesto', u'scare'] [u'canberra', u'light', u'year'] [u'chelsea', u'babayaro', u'move', u'newcastl'] [u'cherri', u'grower', u'push', u'picker', u'camp', u'grind'] [u'child', u'killer', u'jail', u'year', u'crime'] [u'chubb', u'fin', u'trade', u'practic', u'breach'] [u'commod', u'price', u'rise', u'tip'] [u'communiti', u'prais', u'support', u'meatwork', u'blaze'] [u'concern', u'mount', u'australian'] [u'concert', u'tsunami', u'devast', u'villag'] [u'council', u'offer', u'tsunami', u'fund'] [u'council', u'plan', u'orang', u'airport', u'revamp'] [u'council', u'combin', u'effort', u'help', u'tsunami', u'victim'] [u'court', u'reject', u'yanukovich', u'appeal'] [u'cricket', u'offici', u'plan', u'tsunami', u'fundrais'] [u'croc', u'take', u'breaker', u'grant'] [u'dairi', u'takeov', u'battl', u'push', u'share', u'price'] [u'dairi', u'takeov', u'benefit', u'farmer'] [u'desper', u'hamper', u'relief', u'work', u'aceh'] [u'drought', u'blame', u'tourism', u'declin'] [u'emot', u'scene', u'tsunami', u'survivor', u'return', u'home'] [u'england', u'boost', u'vickeri', u'comeback'] [u'europ', u'dig', u'deep', u'tsunami'] [u'lankan', u'resid', u'reflect', u'tsunami', u'impact'] [u'fan', u'ask', u'tsunami', u'appeal'] [u'fan', u'ask', u'tsunami', u'fundrais', u'drive'] [u'farmer', u'urg', u'tackl', u'locust', u'earli'] [u'lead', u'jewelleri', u'store', u'theft'] [u'firefight', u'tackl', u'bendigo', u'hous', u'blaze'] [u'see', u'backpack', u'hostel', u'evacu'] [u'folk', u'festiv', u'crowd', u'offer', u'tsunami', u'fund'] [u'food', u'drop', u'begin', u'aceh'] [u'free', u'bus', u'darwin', u'revel'] [u'freight', u'train', u'come', u'track'] [u'gay', u'lesbian', u'head', u'north', u'coast', u'year', u'parti'] [u'gazza', u'chase', u'leagu', u'coach', u'report'] [u'gold', u'coast', u'offer', u'tsunami', u'fund'] [u'golovin', u'look', u'rank'] [u'govt', u'boost', u'tsunami'] [u'govt', u'bakhtiyari', u'detent'] [u'govt', u'urg', u'match', u'public', u'tsunami', u'donat'] [u'govt', u'urg', u'target', u'underag', u'drink'] [u'grass', u'fire', u'think', u'work', u'arsonist'] [u'grave', u'fear', u'australian'] [u'green', u'group', u'unhappi', u'fisheri', u'certif'] [u'green', u'tell', u'tsunami', u'terror'] [u'humanitarian', u'respons', u'hamper', u'effort'] [u'hundr', u'kill', u'nightclub'] [u'hunter', u'health', u'profession', u'offer', u'tsunami'] [u'india', u'revis', u'tsunami', u'death', u'toll'] [u'indonesian', u'militari', u'resum', u'rebel', u'raid', u'aceh'] [u'indonesian', u'offici', u'acknowledg', u'toll', u'assess'] [u'indonesia', u'host', u'intern', u'relief', u'summit'] [u'injur', u'kewel', u'month'] [u'isra', u'strike', u'kill', u'gaza', u'gunmen'] [u'japan', u'north', u'korea', u'relat', u'worsen'] [u'jazz', u'giant', u'arti', u'shaw', u'die'] [u'jenner', u'back', u'twin', u'spin', u'scenario'] [u'judg', u'settl', u'custodi', u'disput', u'toss', u'coin'] [u'langer', u'kumbl', u'test', u'list'] [u'langer', u'issu', u'ash', u'warn'] [u'laser', u'track', u'commerci'] [u'local', u'road', u'death', u'compar'] [u'longreach', u'local', u'urg', u'offer', u'tsunami'] [u'luxemburgo', u'name', u'real', u'coach'] [u'charg', u'gold', u'coast'] [u'charg', u'riverland', u'slay'] [u'mansel', u'welcom', u'bicentenari'] [u'marin', u'life', u'centuri', u'recov'] [u'market', u'quiet', u'year', u'approach'] [u'mayor', u'issu', u'tsunami', u'challeng'] [u'molik', u'target', u'grand', u'slam', u'glori'] [u'australian', u'survivor', u'arriv', u'home', u'treatment'] [u'morient', u'plan', u'liverpool'] [u'murder', u'peacekeep', u'perman', u'memori'] [u'myskina', u'join', u'safin', u'race', u'number'] [u'nation', u'best', u'young', u'cricket', u'converg', u'hobart'] [u'navi', u'ship', u'leav', u'aceh'] [u'credit', u'growth', u'slow'] [u'year', u'time', u'spiritu', u'reflect', u'say'] [u'year', u'revel', u'rememb', u'tsunami', u'victim'] [u'year', u'parti', u'goer', u'invad', u'surfer'] [u'year', u'festiv', u'rememb', u'tsunami', u'victim'] [u'year', u'gong', u'british', u'olympian'] [u'year', u'usher', u'smoke'] [u'nightclub', u'kill', u'argentina'] [u'nightclub', u'toll', u'rise'] [u'kill', u'gaza', u'raid'] [u'polic', u'tell', u'expect', u'visit', u'princ', u'charl'] [u'slip', u'averag', u'higher'] [u'dead', u'tasmanian', u'hostel'] [u'pakistan', u'readi', u'spin', u'attack', u'woolmer'] [u'parliament', u'deadlock', u'delay', u'extend', u'south', u'korean'] [u'rise', u'loom', u'victorian', u'worker'] [u'penn', u'see', u'worth', u'stori', u'assassin'] [u'peopl', u'warn', u'check', u'chariti', u'collector', u'ident'] [u'philippoussi', u'reject', u'pressur'] [u'polic', u'fear', u'holiday', u'road', u'death'] [u'polic', u'promis', u'year', u'crackdown'] [u'polic', u'search', u'fatal'] [u'port', u'church', u'pray', u'tsunami', u'victim'] [u'probe', u'continu', u'fatal', u'hostel'] [u'public', u'donat', u'flow', u'tsunami', u'victim'] [u'public', u'get', u'boon', u'chariti', u'trek'] [u'public', u'warn', u'avoid', u'illeg', u'firework'] [u'minist', u'fear', u'worker', u'miss', u'phuket'] [u'smoker', u'remind', u'law'] [u'quetzalcoatl', u'retain', u'melbourn', u'hobart', u'lead'] [u'quiet', u'record', u'year', u'market'] [u'radic', u'iraqi', u'group', u'threaten', u'strike'] [u'rail', u'upgrad', u'melbourn', u'port'] [u'red', u'readi', u'chelsea', u'year', u'hangov'] [u'remov', u'firm', u'get', u'tsunami', u'effort'] [u'revel', u'paus', u'tsunami', u'victim'] [u'road', u'toll', u'gold', u'coast'] [u'rooney', u'match'] [u'safeti', u'regul', u'defend', u'uranium', u'transport', u'trial'] [u'saudi', u'forc', u'kill', u'suspect', u'qaeda', u'leader'] [u'scud', u'reject', u'pressur'] [u'servic', u'farewel', u'canberra', u'tsunami', u'victim'] [u'shire', u'tell', u'govt', u'woe'] [u'shire', u'fundrais', u'tsunami', u'victim'] [u'shoalhaven', u'get', u'tsunami', u'relief', u'effort'] [u'skandia', u'owner', u'face', u'repair'] [u'smoker', u'urg', u'butt', u'year'] [u'social', u'crisi', u'loom', u'tsunami', u'trauma', u'take', u'effect'] [u'sombr', u'vigil', u'replac', u'year', u'celebr'] [u'sore', u'bear', u'italian', u'smash'] [u'lanka', u'mourn', u'tsunami', u'toll', u'near'] [u'strauss', u'ash', u'threat', u'warn', u'langer'] [u'sydney', u'buyer', u'snap', u'south', u'coast', u'properti'] [u'sydney', u'polic', u'look', u'miss', u'tourist'] [u'taxi', u'compani', u'flag', u'rank', u'scheme'] [u'teen', u'die', u'horror', u'road', u'crash'] [u'thai', u'tsunami', u'death', u'toll'] [u'thousand', u'flock', u'newcastl', u'year', u'parti'] [u'tiger', u'dump', u'keeper', u'gambl'] [u'tourist', u'flock', u'coast', u'theme', u'park'] [u'townsvill', u'doctor', u'offer', u'tsunami', u'help'] [u'travel', u'agent', u'confirm', u'client', u'okay', u'tsunami'] [u'tsunami', u'death', u'toll', u'top'] [u'hospit', u'boat'] [u'stab', u'fight'] [u'unwant', u'pet', u'dump', u'shelter'] [u'uranium', u'ship', u'darwin', u'rail'] [u'deleg', u'assess', u'need', u'asia'] [u'public', u'donat', u'larg', u'sum', u'tsunami', u'victim'] [u'cyclon', u'watch'] [u'wheel', u'fortun', u'spin', u'kersten'] [u'wife', u'health', u'staffer', u'miss', u'phuket'] [u'wilkinson', u'hodgson', u'showdown'] [u'world', u'sport', u'ralli', u'help', u'tsunami', u'victim'] [u'youth', u'anti', u'cannabi', u'campaign', u'extend'] [u'youth', u'custodi', u'adelaid', u'chase'] [u'zimbabw', u'confid', u'success', u'test', u'return'] [u'kill', u'kashmir', u'year', u'parti', u'call'] [u'aftershock', u'continu', u'rattl', u'aceh'] [u'aceh', u'survivor', u'week', u'away'] [u'pour', u'indonesia'] [u'american', u'gordon', u'make', u'dakar', u'ralli', u'histori'] [u'ancic', u'llodra', u'hardcourt', u'champ'] [u'archiv', u'reveal', u'educ', u'boost'] [u'archiv', u'reveal', u'concern', u'colour'] [u'armi', u'chopper', u'relief', u'effort'] [u'aussi', u'runner', u'triumph', u'madrid'] [u'australian', u'effort', u'constant', u'review'] [u'australian', u'busi', u'urg', u'join', u'tsunami', u'relief'] [u'australia', u'free', u'trade', u'agreement', u'take', u'effect'] [u'australia', u'work', u'improv', u'intern'] [u'brave', u'polic', u'earn', u'prais', u'rescu'] [u'burma', u'rais', u'tsunami', u'toll'] [u'busi', u'welcom', u'trade', u'deal'] [u'cabinet', u'paper', u'brisban', u'flood', u'plan'] [u'canberra', u'resid', u'deep', u'tsunami', u'victim'] [u'clark', u'hop', u'test', u'bring', u'run'] [u'club', u'owner', u'arrest', u'dead', u'disco', u'blaze'] [u'conserv', u'group', u'call', u'uranium', u'mine', u'closur'] [u'crew', u'work', u'free', u'revel', u'stick', u'mineshaft'] [u'cyclon', u'traci', u'test', u'cabinet', u'experi', u'archiv'] [u'dalbi', u'death', u'push', u'road', u'toll', u'higher'] [u'darwin', u'airport', u'expans'] [u'death', u'toll', u'grow', u'world', u'rush', u'help'] [u'defiant', u'navratilova', u'say', u'barrier'] [u'director', u'deni', u'disco', u'ball', u'disappoint', u'revel'] [u'door', u'lock', u'dead', u'nightclub', u'blaze'] [u'dutch', u'secur', u'hopman', u'place'] [u'export', u'set', u'sail', u'tsunami', u'donat'] [u'hit', u'ferguson', u'rooney'] [u'fear', u'hold', u'miss', u'australian'] [u'lucki', u'escap', u'melbourn'] [u'gilbert', u'catch', u'guard', u'roddick', u'split'] [u'gile', u'say', u'england', u'improv'] [u'govt', u'archiv', u'reveal', u'whitlam', u'clash', u'treasuri'] [u'graphic', u'news', u'report', u'prompt', u'parent', u'warn'] [u'grief', u'mute', u'world', u'year', u'celebr'] [u'hewitt', u'hop', u'return', u'home', u'provid', u'tonic'] [u'hewitt', u'play', u'qualifi', u'adelaid'] [u'holiday', u'road', u'toll', u'rise'] [u'holiday', u'road', u'toll', u'rise'] [u'announc', u'tsunami', u'relief', u'match'] [u'amin', u'eye', u'northern', u'ireland', u'peac', u'role'] [u'india', u'bar', u'agenc', u'join', u'relief', u'effort'] [u'indian', u'toll', u'rais'] [u'indian', u'tsunami', u'survivor', u'lopsid'] [u'indonesia', u'enter', u'year', u'mourn'] [u'internet', u'site', u'aid', u'identif', u'tsunami'] [u'inzamam', u'miss', u'test'] [u'chief', u'want', u'dope', u'test'] [u'israel', u'kill', u'palestinian', u'gaza'] [u'jail', u'competit', u'aid', u'tsunami', u'appeal'] [u'leak', u'document', u'link', u'prozac', u'suicid', u'journal'] [u'impress', u'selector'] [u'lehmann', u'kasper', u'macgil', u'watson'] [u'die', u'fall', u'balconi'] [u'aliv', u'day', u'rubbl'] [u'marin', u'join', u'aceh', u'relief', u'effort'] [u'medicin', u'price', u'increas'] [u'melbourn', u'host', u'tsunami', u'fundrais', u'cricket', u'match'] [u'minist', u'laud', u'public', u'transport', u'success'] [u'nation', u'road', u'toll', u'continu', u'rise'] [u'navi', u'reach', u'devast', u'sumatran', u'town'] [u'law', u'address', u'water', u'recycl', u'problem'] [u'russian', u'dead', u'crash', u'latvia'] [u'korea', u'year', u'messag', u'urg', u'peac'] [u'north', u'warn', u'prepar', u'cyclon'] [u'road', u'toll', u'drop'] [u'aim', u'simplifi', u'tender', u'process'] [u'outlaw', u'henchoz', u'blast', u'benitez'] [u'plan', u'oper', u'ash', u'underway'] [u'expect', u'thai', u'tsunami', u'toll'] [u'prais', u'tsunami', u'generos', u'year', u'messag'] [u'polic', u'arrest', u'darwin', u'celebr'] [u'polit', u'erupt', u'power', u'price', u'hike'] [u'pollock', u'pass', u'test'] [u'pope', u'sadden', u'bueno', u'air', u'nightclub', u'death'] [u'pressur', u'build', u'lehmann'] [u'properti', u'price', u'boom', u'reach', u'rural', u'properti'] [u'qualifi', u'kick', u'hopman', u'action'] [u'queen', u'elizabeth', u'offer', u'sympathi', u'tsunami', u'victim'] [u'quetzalcoatl', u'claim', u'line', u'honour'] [u'record', u'year', u'prompt', u'brisban', u'airport', u'upgrad'] [u'rescuer', u'reach', u'revel', u'stick', u'mineshaft'] [u'rspca', u'call', u'desex'] [u'rule', u'chang', u'restrict', u'high', u'court', u'case'] [u'crowd', u'warn', u'best', u'behaviour'] [u'search', u'continu', u'caus', u'fatal', u'hostel'] [u'selector', u'dump', u'lehmann', u'test'] [u'seven', u'kill', u'iraqi', u'suicid', u'attack'] [u'seven', u'kill', u'somali', u'militia', u'clash'] [u'silica', u'exposur', u'halv', u'worker'] [u'sixer', u'stun', u'king'] [u'somali', u'tsunami', u'toll', u'climb'] [u'sombr', u'tone', u'year', u'celebr'] [u'souness', u'back', u'boumsong', u'king', u'defend'] [u'lanka', u'mourn', u'tsunami', u'victim'] [u'lanka', u'tsunami', u'refuge', u'camp', u'flood'] [u'strong', u'aftershock', u'record', u'sumatra'] [u'sudan', u'deal', u'pave', u'peac'] [u'sydney', u'hobart', u'scari', u'moment', u'say', u'veteran'] [u'aborigin', u'challeng', u'leader', u'issu'] [u'hotel', u'prepar', u'smoke', u'law'] [u'tasmanian', u'volunt', u'servic', u'tsunami', u'victim'] [u'kill', u'nepal', u'clash'] [u'thai', u'vigil', u'see', u'sombr', u'year'] [u'trust', u'administr', u'consid', u'heritag', u'build'] [u'tsunami', u'death', u'toll', u'near'] [u'arrest', u'drug', u'smuggl'] [u'behead', u'bodi', u'dump', u'baghdad'] [u'ugandan', u'presid', u'order', u'renew', u'attack', u'rebel'] [u'ukrain', u'resign'] [u'broaden', u'tortur', u'definit'] [u'increas', u'tsunami'] [u'marin', u'kill', u'iraq'] [u'sprinter', u'grime', u'suspend', u'year'] [u'stock', u'slip', u'post', u'second', u'year', u'gain'] [u'send', u'marin', u'lanka', u'relief', u'work'] [u'holiday', u'road', u'toll', u'reach'] [u'villa', u'everton', u'battl', u'beatti'] [u'volunt', u'polic', u'search', u'cairn'] [u'move', u'closer', u'smoke'] [u'whitlam', u'deni', u'support', u'militari', u'action'] [u'uranium', u'announc', u'shame'] [u'worker', u'charg', u'steal', u'hostel'] [u'world', u'class', u'rooney', u'get', u'better'] [u'kidnapp', u'narrowli', u'avoid', u'princesss', u'punch'] [u'allawi', u'predict', u'decis', u'year', u'iraq'] [u'alleg', u'robber', u'polic', u'chase'] [u'argentina', u'itali', u'hopman', u'round'] [u'armi', u'helicopt', u'leav', u'indonesia'] [u'armi', u'medic', u'head', u'tsunami', u'disast', u'zone'] [u'australia', u'grab', u'second', u'wicket'] [u'australian', u'tsunami', u'death', u'toll', u'rise'] [u'australia', u'pakistan', u'crumbl'] [u'condit', u'hamper', u'tsunami', u'worker'] [u'weather', u'hamper', u'lanka', u'effort'] [u'beach', u'visitor', u'urg', u'awar', u'nativ'] [u'broadbridg', u'wife', u'recount', u'moment', u'tsunami'] [u'brown', u'wheel', u'victori'] [u'bull', u'restrict', u'tiger', u'launceston'] [u'bull', u'thump', u'tiger', u'gain', u'doubl', u'bonus', u'point'] [u'bushfir', u'moreton', u'forc', u'camper'] [u'bush', u'order', u'flag', u'tribut', u'tsunami', u'victim'] [u'bushrang', u'bail', u'redback'] [u'canberra', u'doctor', u'prais', u'thai', u'medic', u'team'] [u'cancer', u'studi', u'bring', u'bleak', u'news', u'bush'] [u'bomb', u'attack', u'kill', u'iraqi', u'nation', u'guard'] [u'cole', u'keep', u'chelsea', u'titl', u'track'] [u'comedian', u'pick', u'peter', u'cook', u'world', u'comic'] [u'crew', u'volunt', u'scour', u'miss'] [u'crown', u'prosecutor', u'claim', u'perth'] [u'daniilidou', u'look', u'auckland'] [u'diseas', u'outbreak', u'lanka', u'india', u'watch'] [u'dog', u'sniff', u'drug', u'polic', u'oper'] [u'downer', u'polic', u'chief', u'visit', u'tsunami', u'area'] [u'dutch', u'secur', u'hopman', u'place'] [u'elbaradei', u'unchalleng', u'nuclear', u'watchdog', u'head'] [u'baradei', u'unoppos', u'nuclear', u'watchdog'] [u'fall', u'festiv', u'declar', u'success'] [u'farina', u'elia', u'make', u'solid', u'start', u'hardcourt', u'champ'] [u'festiv', u'folk'] [u'firefight', u'contain', u'bushfir', u'near', u'adelaid'] [u'firefight', u'monitor', u'overturn', u'fuel', u'tanker'] [u'firefight', u'save', u'perth', u'hous'] [u'footbal', u'wife', u'recount', u'moment', u'tsunami'] [u'drown', u'victorian', u'coast'] [u'fear', u'drown', u'victorian', u'coast'] [u'girl', u'seek', u'hijack'] [u'gazza', u'hospitalis', u'pneumonia', u'report'] [u'giza', u'pyramid', u'reopen', u'restor'] [u'govt', u'offici', u'kill', u'near', u'baghdad'] [u'grant', u'boost', u'chines', u'cultur', u'centr', u'develop'] [u'guantanamo', u'detaine', u'alleg', u'handcuff', u'tortur', u'report'] [u'hawk', u'thrash', u'pig', u'king', u'pirat', u'breaker'] [u'holiday', u'delay', u'ranger', u'audit'] [u'india', u'tsunami', u'death', u'toll', u'jump'] [u'insurg', u'crippl', u'iraqi', u'industri'] [u'isra', u'raid', u'undermin', u'palestinian', u'elect'] [u'isra', u'troop', u'pull', u'gaza', u'refuge', u'camp'] [u'japanes', u'princess', u'return', u'public'] [u'japan', u'pledg', u'million', u'tsunami', u'area'] [u'yacht', u'crawl', u'finish', u'line'] [u'lebanes', u'bakeri', u'deliber'] [u'lehmann', u'lead', u'redback', u'solid', u'total'] [u'charg', u'stand', u'polic'] [u'die', u'quad', u'bike', u'accid'] [u'recov', u'fall', u'shaft'] [u'martyn', u'win', u'mcgilvray', u'medal'] [u'want', u'milit', u'riyadh', u'suicid', u'bomber'] [u'murder', u'worker', u'hassan', u'award', u'irish', u'peac'] [u'deploy', u'boost', u'mosul', u'secur'] [u'word', u'island', u'tribe', u'fate'] [u'otway', u'fund', u'eas', u'log', u'phase'] [u'pakistan', u'bat', u'sydney'] [u'pakistan', u'collaps', u'australia', u'strike'] [u'pakistan', u'collaps', u'australia', u'strike'] [u'pakistan', u'implod'] [u'palestinian', u'accus', u'israel', u'poll', u'sabotag'] [u'player', u'pledg', u'chennai', u'win', u'tsunami', u'relief'] [u'urg', u'busi', u'deep', u'tsunami', u'victim'] [u'polic', u'catch', u'drink', u'diver', u'year'] [u'polic', u'continu', u'probe', u'fatal', u'hostel'] [u'polic', u'imperson', u'ransack', u'gold', u'coast', u'hous'] [u'polic', u'investig', u'assault'] [u'polic', u'minist', u'hail', u'drop', u'crime'] [u'polic', u'seek', u'help', u'fatal', u'dalbi'] [u'pont', u'back', u'spin', u'combin'] [u'pont', u'prais', u'matur', u'watson'] [u'port', u'macquari', u'death', u'bring', u'road', u'toll'] [u'rain', u'help', u'eas', u'reserv', u'threat'] [u'rebel', u'kill', u'colombia'] [u'road', u'safeti', u'panel', u'take', u'action', u'reduc', u'danger'] [u'russia', u'favourit', u'hopman'] [u'sieg', u'forc', u'peru', u'declar', u'state', u'emerg'] [u'singaporean', u'tsunami', u'convoy', u'leader', u'die'] [u'charg', u'drug', u'discoveri'] [u'lanka', u'confid', u'tourism', u'rebound'] [u'lankan', u'toll', u'near'] [u'alban', u'hous', u'damag', u'overnight', u'blaze'] [u'stosur', u'face', u'tough', u'task', u'sprem'] [u'sunshin', u'coast', u'charg', u'streak'] [u'sweden', u'finland', u'norway', u'hold', u'mourn'] [u'thailand', u'tsunami', u'death', u'toll', u'top'] [u'theft', u'forc', u'comt', u'dakar', u'stage'] [u'threaten', u'bird', u'risk'] [u'tiger', u'warrior', u'bushrang', u'host', u'clash'] [u'tourist', u'aliv', u'remot', u'indonesian', u'island'] [u'tsunami', u'grow', u'survivor', u'face', u'wait'] [u'tsunami', u'pledg', u'jump', u'billion'] [u'tsunami', u'caus', u'mental', u'health', u'catastroph'] [u'tsunami', u'recoveri', u'decad', u'annan'] [u'plan', u'lifetim', u'detent', u'terror', u'suspect'] [u'releas', u'detaine', u'iraq'] [u'soldier', u'kill', u'afghanistan'] [u'wakeboard', u'power', u'boat'] [u'warn', u'make', u'return', u'tsunami', u'chariti'] [u'warn', u'retir', u'tsunami', u'fundrais'] [u'wenger', u'warn', u'chelsea', u'gunner'] [u'windi', u'arriv', u'dayer'] [u'trial', u'doubl', u'uranium', u'transport'] [u'aceh', u'short', u'medic', u'equip'] [u'player', u'bodi', u'thailand'] [u'agenc', u'halt', u'tsunami', u'appeal'] [u'swimmer', u'rescu', u'perth', u'beach'] [u'seek', u'drug', u'donat', u'tsunami', u'victim'] [u'annan', u'visit', u'aceh', u'lanka'] [u'offer', u'tsunami', u'affect', u'student'] [u'aquaculturist', u'urg', u'cherabin', u'industri'] [u'argentinian', u'nightclub', u'blaze', u'toll', u'rise'] [u'arthur', u'baccanello', u'readi', u'adelaid', u'test'] [u'asia', u'begin', u'work', u'tsunami', u'warn'] [u'asian', u'economi', u'tip', u'endur', u'tsunami', u'turmoil'] [u'asian', u'tsunami', u'death', u'toll', u'pass'] [u'aussi', u'seat'] [u'aust', u'medic', u'begin', u'treat', u'tsunami', u'survivor'] [u'australia', u'seat', u'pakistan'] [u'australia', u'control', u'test'] [u'australia', u'pakistan'] [u'australian', u'kill', u'climb', u'accid'] [u'australian', u'bring', u'clean', u'water', u'aceh'] [u'australia', u'win', u'hopman', u'thriller'] [u'baccanello', u'arthur', u'adelaid'] [u'baccanello', u'bow', u'adelaid'] [u'bakhtiyari', u'famili', u'arriv', u'pakistan'] [u'beach', u'sign', u'review', u'drown'] [u'beatti', u'toffe', u'club', u'record', u'deal'] [u'blue', u'triumph'] [u'bomb', u'blast', u'near', u'allawi', u'baghdad', u'kill'] [u'breakthrough', u'centuri', u'skipper', u'pont'] [u'briton', u'birthday', u'earn', u'windfal'] [u'broadbridg', u'bodi', u'thailand'] [u'bushrang', u'strength', u'windi', u'match'] [u'cabbi', u'death', u'mark', u'grim', u'start', u'road', u'toll'] [u'cameraman', u'critic', u'wound', u'gaza', u'incurs'] [u'canada', u'confirm', u'second', u'case'] [u'canada', u'doubl', u'tsunami'] [u'cane', u'toad', u'infiltr', u'town'] [u'bomb', u'kill', u'near', u'allawi', u'baghdad'] [u'crash', u'put', u'hospit'] [u'celt', u'clear', u'scotland'] [u'child', u'traffic', u'fear', u'rais', u'aceh'] [u'contamin', u'risk', u'sydney', u'bore'] [u'cult', u'call', u'water', u'train', u'death'] [u'cyclon', u'raymond', u'cross', u'coast'] [u'demon', u'come', u'term', u'broadbridg', u'disappear'] [u'dept', u'defend', u'teacher', u'number'] [u'dfat', u'name', u'latest', u'tsunami', u'victim'] [u'downer', u'warn', u'toll', u'rise', u'despit', u'good', u'news'] [u'driver', u'surviv', u'collis', u'train'] [u'drop', u'catch', u'see', u'blue', u'scrape', u'home'] [u'emerg', u'servic', u'defend', u'chopper', u'safeti'] [u'experiment', u'treatment', u'save', u'rabi', u'patient'] [u'famili', u'struggl', u'cope', u'backpack', u'death'] [u'fear', u'hold', u'miss', u'cairn'] [u'ferdinand', u'leav', u'bolton'] [u'ban', u'place', u'await', u'weather'] [u'fire', u'rage', u'southern'] [u'pictur', u'leupung'] [u'fretign', u'win', u'stage', u'dakar', u'ralli', u'caldecott'] [u'frustrat', u'grow', u'effort', u'ramp'] [u'bottl', u'blame', u'shop'] [u'generous', u'fan', u'deep'] [u'girl', u'save', u'tourist', u'rais', u'tsunami', u'warn'] [u'golovin', u'cruis', u'gold', u'coast', u'victori'] [u'govt', u'urg', u'open', u'door', u'tsunami', u'victim'] [u'grant', u'help', u'long', u'term', u'unemploy'] [u'hectar', u'conserv', u'park', u'burn', u'scrub'] [u'hewitt', u'hit', u'dung', u'court'] [u'hewitt', u'plot', u'rank', u'charg'] [u'high', u'cut', u'women', u'marriag', u'prospect'] [u'hoaxer', u'arrest', u'tsunami', u'death', u'notif'] [u'holiday', u'road', u'toll', u'rise'] [u'hundr', u'suspect', u'insurg', u'detain', u'iraq'] [u'retir', u'monti'] [u'incumb', u'woman', u'croatian', u'presid'] [u'india', u'untouch', u'gather', u'tsunami', u'dead'] [u'indonesia', u'offer', u'thank', u'tsunami', u'donat'] [u'indonesia', u'discuss', u'foreign', u'troop', u'movement'] [u'isra', u'renew', u'incurs', u'rocket', u'attack'] [u'kalli', u'smith', u'south', u'africa', u'solid', u'start'] [u'kaneria', u'fin', u'match', u'obscen', u'languag'] [u'lara', u'clear', u'play', u'tsunami', u'relief', u'match'] [u'yacht', u'pull', u'hobart'] [u'lightn', u'blame', u'port', u'vincent', u'grassfir'] [u'macgil', u'prais', u'inspir', u'coach'] [u'road', u'statist'] [u'die', u'roll'] [u'miss', u'alic', u'boy', u'safe'] [u'miss', u'spark', u'polic', u'search'] [u'miss', u'footbal', u'team', u'mat', u'offer', u'counsel'] [u'molik', u'give', u'australia', u'earli', u'advantag'] [u'monsoon', u'chao', u'hamper', u'lankan', u'effort'] [u'like', u'downer', u'say'] [u'australian', u'team', u'tsunami', u'victim'] [u'moreton', u'island', u'forc', u'camper', u'evacu'] [u'women', u'like', u'undergo', u'smear', u'follow'] [u'motorcycl', u'accid', u'rais', u'road', u'toll'] [u'neurosurgeon', u'resign', u'put', u'govt', u'pressur'] [u'windi', u'coach', u'play', u'lara', u'clash'] [u'road', u'toll', u'reach', u'record'] [u'order', u'slowli', u'return', u'thai', u'beach', u'resort'] [u'pair', u'injur', u'boat', u'mishap'] [u'pakistan'] [u'pakistan', u'claim', u'second', u'wicket'] [u'peru', u'deni', u'attack', u'rebel', u'immin'] [u'polic', u'fear', u'miss', u'devonport'] [u'polic', u'investig', u'tsunami', u'websit'] [u'polic', u'return', u'holidaymak'] [u'polic', u'kill', u'peruvian', u'sieg', u'shoot'] [u'polic', u'probe', u'lyndhurst', u'explos'] [u'polic', u'probe', u'boat', u'blaze'] [u'polic', u'search', u'adelaid', u'home', u'intrud'] [u'polic', u'tackl', u'hoon'] [u'pont', u'reliev', u'break', u'centuri', u'drought'] [u'power', u'problem', u'put', u'monument', u'risk', u'say'] [u'power', u'restor', u'home'] [u'protest', u'ralli', u'gunnamatta', u'beach', u'sewag'] [u'public', u'servant', u'urg', u'infrastructur', u'spend'] [u'rain', u'flood', u'hinder', u'tsunami', u'relief', u'effort'] [u'ralli', u'demand', u'argentin', u'mayor', u'quit', u'dead'] [u'cross', u'plan', u'long', u'term', u'tsunami', u'relief'] [u'relief', u'effort', u'fall', u'indonesia'] [u'relief', u'worker', u'reach', u'indian', u'island'] [u'religi', u'leader', u'debat', u'god', u'role', u'tsunami'] [u'retail', u'decri', u'box', u'trade'] [u'relief', u'fund', u'generat'] [u'search', u'miss', u'boy'] [u'search', u'resum', u'miss', u'victorian'] [u'servic', u'rememb', u'thai', u'tsunami', u'victim'] [u'issu', u'sever', u'storm', u'warn'] [u'shark', u'hook', u'design', u'turtl', u'friend'] [u'shark', u'menac', u'south', u'coast'] [u'slovak', u'republ', u'level', u'australia'] [u'lanka', u'effort', u'gather', u'pace'] [u'lankan', u'fishermen', u'fear', u'tsunami'] [u'storm', u'power', u'home'] [u'stosur', u'hewitt', u'action', u'gold', u'coast'] [u'stosur', u'sink', u'fourth', u'seed', u'sprem'] [u'studi', u'consid', u'fish', u'releas', u'surviv'] [u'suicid', u'bomber', u'kill', u'iraqi', u'troop'] [u'sydney', u'priest', u'open', u'aceh', u'orphanag'] [u'tear', u'pae', u'survey', u'tsunami', u'damag'] [u'teen', u'drown', u'river', u'accid'] [u'territorian', u'begin', u'fundrais', u'tsunami', u'victim'] [u'thailand', u'cut', u'miss', u'person', u'list'] [u'aceh', u'rebel', u'clash', u'militari'] [u'shoot', u'dead', u'aceh', u'report'] [u'toddler', u'attack', u'rottweil'] [u'tsunami', u'fear', u'spark', u'panic', u'east', u'timor'] [u'tsunami', u'good', u'samaritan', u'arrest', u'return', u'home'] [u'tsunami', u'hurt', u'generat'] [u'hurt', u'york', u'peninsula', u'crash'] [u'concert', u'tsunami', u'victim'] [u'union', u'seek', u'meet', u'dairi', u'redund'] [u'unspectacular', u'year', u'tip', u'european', u'stock'] [u'helicopt', u'airlift', u'disast', u'survivor', u'aceh'] [u'soldier', u'kill', u'afghan', u'ambush'] [u'vaughan', u'take', u'hospit', u'finger', u'injuri'] [u'victoria', u'defend', u'rescu', u'system', u'drown'] [u'group', u'continu', u'collect', u'tsunami', u'victim'] [u'wasim', u'akram', u'back', u'england', u'ash', u'chanc'] [u'wilkinson', u'edg', u'battl', u'england', u'halv'] [u'prepar', u'uranium', u'rail', u'transport', u'trial'] [u'woman', u'die', u'intersect', u'crash'] [u'worker', u'slow', u'inroad', u'logjam'] [u'world', u'bank', u'chief', u'signal', u'reign'] [u'world', u'vision', u'reject', u'donat', u'club'] [u'zarqawi', u'follow', u'claim', u'nation', u'guard', u'attack'] [u'briton', u'fear', u'kill', u'tsunami', u'straw'] [u'abba', u'condemn', u'milit', u'rocket', u'attack'] [u'aceh', u'effort', u'hit', u'fresh', u'snag'] [u'aceh', u'airport', u'reopen', u'accid'] [u'aceh', u'refuge', u'camp', u'swell', u'trickl'] [u'acoust', u'sens', u'save', u'anim', u'tsunami'] [u'remain', u'despit', u'summer', u'rain'] [u'adelaid', u'woman', u'bodi', u'thailand'] [u'agricultur', u'firm', u'donat', u'tsunami', u'relief'] [u'agenc', u'work', u'reduc', u'overhead'] [u'effort', u'turn', u'health', u'rebuild'] [u'airport', u'bodi', u'question', u'merit', u'rapid', u'respons'] [u'albani', u'rainfal', u'hit', u'year'] [u'fin', u'sale', u'year', u'festiv'] [u'back', u'claim', u'kakadu', u'servic', u'suffer'] [u'warn', u'specialist', u'resign'] [u'annan', u'announc', u'manag', u'shake'] [u'aust', u'medic', u'team', u'aceh'] [u'armi', u'chopper', u'tsunami', u'sumatra'] [u'aussi', u'complet', u'control'] [u'aussi', u'thriller', u'hit', u'paydirt', u'debut'] [u'australia', u'control', u'test'] [u'australian', u'team', u'gather', u'deaflymp'] [u'australia', u'fast', u'track', u'visa', u'tsunami', u'victim'] [u'babi', u'unhurt', u'chase', u'crash'] [u'baghdad', u'governor', u'assassin'] [u'baker', u'finch', u'consid', u'comeback'] [u'bakhtiyari', u'vanish', u'arriv', u'pakistan'] [u'bendigo', u'polic', u'happi', u'start'] [u'birmingham', u'hand', u'savag', u'blow'] [u'blake', u'wrap', u'hopman'] [u'boy', u'death', u'prompt', u'polic', u'warn'] [u'boy', u'death', u'rais', u'road', u'toll'] [u'bremer', u'invas', u'prompt', u'polic', u'concern'] [u'bunburi', u'driver', u'clock'] [u'burma', u'tsunami', u'toll', u'question'] [u'bush', u'predecessor', u'lead', u'fundrais', u'drive'] [u'govt', u'ship', u'transport', u'tsunami', u'relief'] [u'worker', u'compo', u'review'] [u'call', u'crackdown', u'illeg', u'abalon', u'export'] [u'cancer', u'fund', u'beat', u'smoke', u'enforc'] [u'bomb', u'explod', u'baghdad'] [u'casa', u'consid', u'night', u'helicopt', u'flight', u'review'] [u'castlemain', u'miss', u'tsunami'] [u'child', u'traffic', u'concern', u'tsunami', u'woe'] [u'coast', u'helicopt', u'plan', u'unwork', u'minist'] [u'communiti', u'urg', u'nation', u'park'] [u'commut', u'travel'] [u'cowra', u'resid', u'fight', u'hour', u'polic', u'station'] [u'crush', u'injuri', u'pose', u'post', u'tsunami', u'challeng'] [u'dajka', u'fold'] [u'darwin', u'orchestra', u'await', u'fund', u'review'] [u'demon', u'griev', u'broadbridg'] [u'dent', u'down', u'ginepri', u'adelaid'] [u'downer', u'keelti', u'assess', u'tsunami', u'relief'] [u'downer', u'view', u'devast', u'thailand'] [u'drink', u'drive', u'messag', u'sink'] [u'dual', u'chamber', u'pacemak', u'worth', u'cost', u'studi'] [u'dusti', u'tourist', u'threaten', u'delic', u'david'] [u'elder', u'man', u'death', u'think', u'suspici'] [u'emerton', u'use', u'head', u'deni', u'charlton'] [u'export', u'hope', u'resum', u'saudi', u'sheep', u'trade'] [u'extra', u'polic', u'monitor', u'holiday', u'traffic'] [u'famili', u'pray', u'miss', u'mcgradi', u'staffer', u'return'] [u'famili', u'rescu', u'derwent', u'river'] [u'farewel', u'tsunami', u'relief', u'concert'] [u'farmer', u'feder', u'predict', u'tough', u'year', u'ahead'] [u'father', u'lace', u'jogger', u'cancer', u'fundrais'] [u'figur', u'highlight', u'club', u'plight'] [u'firefight', u'watch', u'moreton', u'blaze'] [u'firm', u'offer', u'donat', u'tsunami', u'sensor'] [u'flash', u'gordon', u'take', u'dakar', u'stage'] [u'forb', u'ambul', u'offic', u'reliev'] [u'charg', u'seizur'] [u'gallop', u'offer', u'expertis', u'effort'] [u'ganguli', u'lead', u'asian', u'murali'] [u'prais', u'australian', u'generos'] [u'gilchrist', u'blast', u'pakistan', u'punter', u'near', u'doubl'] [u'gilchrist', u'take', u'game', u'level'] [u'goulburn', u'valley', u'join', u'tsunami', u'effort'] [u'govt', u'offer', u'compens', u'privat', u'compani'] [u'govt', u'pledg', u'ongo', u'tsunami', u'australian'] [u'govt', u'reject', u'claim', u'servic', u'suffer', u'kakadu'] [u'govt', u'say', u'allow', u'adopt', u'tsunami'] [u'govt', u'urg', u'scrap', u'wetland', u'polici'] [u'govt', u'wari', u'terrorist', u'capitalis', u'tsunami'] [u'heatwav', u'warn', u'issu'] [u'heroin', u'traffick', u'jail', u'year'] [u'hewitt', u'put', u'court', u'gripe', u'asid'] [u'hewitt', u'start', u'summer', u'shaki', u'adelaid'] [u'holiday', u'road', u'toll', u'rise'] [u'holiday', u'road', u'toll', u'rise'] [u'illawarra', u'face', u'harsher', u'water', u'ban'] [u'indian', u'tribespeopl', u'chopper'] [u'india', u'turn', u'island'] [u'indonesia', u'tighten', u'secur', u'tsunami', u'meet'] [u'indonesia', u'town', u'inland'] [u'injur', u'pratt', u'pull', u'gold', u'coast'] [u'injur', u'pratt', u'pull', u'gold', u'coast', u'event'] [u'insurg', u'target', u'allawi', u'attack', u'increas'] [u'investig', u'continu', u'bondi', u'blast'] [u'invinc', u'danni', u'song', u'scotland'] [u'iraqi', u'truck', u'bomb', u'kill'] [u'isra', u'troop', u'kill', u'seven', u'palestinian'] [u'jankov', u'open', u'account', u'auckland'] [u'kakadu', u'entri', u'pressur', u'park', u'oper'] [u'kaneria', u'want', u'warn', u'game', u'best'] [u'katherin', u'doctor', u'lankan', u'villag', u'destroy'] [u'koizumi', u'flag', u'chang', u'japan', u'pacif'] [u'kuwait', u'hold', u'soldier', u'plan', u'attack'] [u'lebanes', u'hostag', u'iraq', u'plead', u'freedom'] [u'lennox', u'head', u'popular', u'year', u'parti', u'peopl'] [u'lifesav', u'expect', u'perth', u'beach', u'danger', u'eas'] [u'liverpool', u'clip', u'canari', u'wing'] [u'llewellyn', u'play', u'claim', u'crisi', u'royal'] [u'madonna', u'ritchi', u'renew', u'vow'] [u'safe', u'mimosa', u'rock', u'search'] [u'plead', u'guilti', u'hoax', u'email'] [u'remain', u'serious', u'bash'] [u'court', u'incid'] [u'manufactur', u'sector', u'receiv', u'year', u'boost'] [u'meander', u'river', u'irrig', u'restrict', u'place'] [u'mix', u'signal', u'weigh', u'stock'] [u'moral', u'high', u'solomon', u'mission'] [u'australian', u'arriv', u'aceh'] [u'moreton', u'island', u'bushfir', u'burn'] [u'napster', u'shed', u'pirat', u'imag', u'nasdaq', u'list'] [u'year', u'revel', u'drift', u'away', u'byron'] [u'need', u'say', u'powel'] [u'north', u'korea', u'sell', u'weapon', u'extremist', u'group'] [u'broker', u'deal', u'privat', u'compani'] [u'holiday', u'road', u'toll', u'hit'] [u'ntini', u'langeveldt', u'destroy', u'england'] [u'confirm', u'tsunami', u'death'] [u'ocean', u'polar', u'express', u'million'] [u'orang', u'council', u'say', u'water', u'contamin'] [u'oversea', u'adopt', u'unsuit', u'tsunami', u'orphan'] [u'peruvian', u'rebel', u'leader', u'arrest', u'negoti'] [u'peruvian', u'town', u'curfew', u'sieg', u'continu'] [u'play', u'final', u'underway'] [u'polic', u'appeal', u'bushfir', u'vigil'] [u'polic', u'appeal', u'inform', u'attack'] [u'polic', u'continu', u'tsunami', u'site', u'probe'] [u'polic', u'crash', u'victim'] [u'polic', u'pleas', u'driver', u'road'] [u'polic', u'seek', u'info', u'clair', u'assault'] [u'polic', u'seek', u'inform', u'dalbi'] [u'pont', u'gilchrist', u'drive', u'home', u'advantag'] [u'powel', u'reinforc', u'support', u'tsunami', u'relief'] [u'prayer', u'servic', u'reflect', u'tsunami', u'victim'] [u'protea', u'england', u'collaps'] [u'push', u'highlight', u'outback', u'tourism', u'benefit'] [u'quiet', u'start', u'year', u'south', u'east'] [u'quiksilv', u'eye', u'equip', u'maker'] [u'race', u'save', u'tsunami', u'trap', u'dolphin'] [u'rain', u'forc', u'delay'] [u'rain', u'hamper', u'locust', u'spot'] [u'rain', u'wash', u'morn', u'session'] [u'rapid', u'respons', u'team', u'strengthen', u'airport', u'secur'] [u'rare', u'fight'] [u'real', u'claim', u'brazil', u'star', u'robinho'] [u'redknapp', u'look', u'beat', u'drop'] [u'region', u'urg', u'tsunami', u'relief', u'effort'] [u'rescu', u'chopper', u'boss', u'defend', u'pilot'] [u'review', u'plan', u'drink', u'drive', u'campaign'] [u'river', u'death', u'prompt', u'polic', u'warn'] [u'riverland', u'pilot', u'join', u'push', u'night', u'vision'] [u'roch', u'coach', u'feder'] [u'rover', u'longev', u'extend', u'mar', u'explor'] [u'club', u'worker', u'await', u'news'] [u'rspca', u'take', u'duck', u'hunt'] [u'russia', u'down', u'safin', u'slump'] [u'lout', u'forc', u'beer', u'sale', u'rethink'] [u'search', u'fail', u'miss'] [u'search', u'resum', u'miss', u'victorian'] [u'second', u'townsvill', u'doctor', u'head', u'tsunami'] [u'renew', u'plea', u'storm', u'prepar'] [u'share', u'market', u'open', u'year', u'record', u'high'] [u'sheryl', u'crow', u'plan', u'album'] [u'shopper', u'benefit', u'harri', u'scarf', u'flood'] [u'children', u'miss', u'emot', u'cue'] [u'sikh', u'communiti', u'continu', u'tsunami', u'relief', u'effort'] [u'snitzel', u'draw', u'middl', u'barrier', u'magic', u'million'] [u'snitzel', u'shoo', u'magic', u'million', u'say', u'rival'] [u'somali', u'tsunami', u'victim', u'prove', u'hard', u'reach'] [u'south', u'east', u'dig', u'deep', u'tsunami', u'victim'] [u'lanka', u'cricket', u'tour', u'disast', u'zone'] [u'lankan', u'high', u'commission', u'prais', u'aust'] [u'lanka', u'rebuild', u'campaign', u'rais'] [u'stem', u'cell', u'revers', u'parkinson', u'symptom', u'monkey'] [u'storm', u'leav', u'thousand', u'power'] [u'stormi', u'condit', u'suit', u'sydney', u'hobart'] [u'student', u'defend', u'sell', u'tsunami', u'relief'] [u'student', u'assess', u'newcastl', u'prospect'] [u'suspect', u'thief', u'drive', u'polic'] [u'suspici', u'site', u'author', u'act', u'good', u'faith'] [u'teen', u'injur', u'breath', u'attempt'] [u'tenni', u'australia', u'hit', u'hewitt', u'critic'] [u'thailand', u'sack', u'chief', u'meteorologist'] [u'thorp', u'hurri', u'pool', u'return'] [u'thousand', u'protest', u'fatal', u'club'] [u'briton', u'kill', u'baghdad', u'blast'] [u'tilba', u'chip', u'tsunami', u'appeal'] [u'tram', u'extend', u'dockland', u'precinct'] [u'trot', u'club', u'financi', u'shatter'] [u'truck', u'collis', u'caus', u'delay'] [u'tsunami', u'donor', u'fulfil', u'pledg'] [u'tsunami', u'relief', u'gather', u'momentum'] [u'tsunami', u'victim', u'townsvill', u'suppli', u'medicin'] [u'uluru', u'host', u'australia', u'launch'] [u'union', u'air', u'doubt', u'teacher', u'boost'] [u'unit', u'telstra', u'sale', u'senat'] [u'hopman', u'rubber'] [u'wait', u'near', u'person', u'alarm'] [u'water', u'plant', u'problem', u'prompt', u'restrict'] [u'west', u'bank', u'settler', u'clash', u'isra', u'troop'] [u'western', u'athlet', u'prepar', u'deaflymp'] [u'western', u'dig', u'deep', u'tsunami', u'victim'] [u'west', u'indi', u'keen', u'blow', u'away', u'cobweb'] [u'wilcannia', u'welcom', u'liquid', u'gold'] [u'wildcat', u'coach', u'fin', u'courtsid', u'outburst'] [u'wild', u'oat', u'secur', u'pittwat', u'coff', u'line', u'honour'] [u'resourc', u'reject', u'takeov'] [u'wollongong', u'resid', u'pray', u'tsunami', u'victim'] [u'world', u'bank', u'coordin', u'long', u'term', u'tsunami'] [u'young', u'drink', u'driver', u'spark', u'polic', u'concern'] [u'firefight', u'battl', u'sydney', u'blaze'] [u'abandon', u'shaft', u'face', u'inspect', u'mishap'] [u'abba', u'denounc', u'zionist', u'enemi'] [u'academ', u'ponder', u'tsunami', u'polit', u'impact'] [u'accc', u'call', u'anti', u'dump', u'chang'] [u'accc', u'urg', u'investig', u'shipbuild', u'forg'] [u'accus', u'palm', u'island', u'rioter', u'jail', u'breach'] [u'aceh', u'clean', u'month'] [u'aceh', u'rebel', u'deni', u'attack', u'relief', u'convoy'] [u'african', u'mahogani', u'trial', u'plantat', u'plan'] [u'effort', u'australian', u'doctor', u'requir'] [u'algerian', u'milit', u'kill', u'ambush'] [u'allianc', u'foster', u'businesswomen', u'opportun'] [u'ambul', u'servic', u'consid', u'helicopt', u'tender'] [u'aussi', u'complet', u'whitewash'] [u'aust', u'quak', u'agenc', u'admit', u'limit'] [u'australia', u'verg', u'victori'] [u'aust', u'tsunami', u'base', u'malaysia'] [u'aust', u'tsunami', u'donat', u'pass'] [u'author', u'target', u'wagga', u'locust', u'hatch'] [u'bekel', u'strike', u'tragedi', u'fiance', u'die'] [u'shop', u'squeez', u'corner', u'store'] [u'board', u'stand', u'foreign', u'fruit', u'picker', u'plan'] [u'boss', u'determin', u'seiz', u'million', u'chanc'] [u'breakthrough', u'macgil', u'watson'] [u'builder', u'push', u'tsunami', u'barrow'] [u'burma', u'relat', u'unscath', u'say'] [u'burma', u'remain', u'quiet', u'tsunami', u'effect'] [u'burn', u'program', u'mind', u'bird', u'habitat'] [u'bushrang', u'thrash', u'rusti', u'windi'] [u'busi', u'usual', u'clinic', u'australian'] [u'busker', u'rais', u'fund', u'tsunami', u'victim'] [u'buyer', u'come', u'wide', u'esper', u'cattl'] [u'caldecott', u'win', u'dakar', u'stage', u'second', u'overal'] [u'canberra', u'univers', u'round', u'offer'] [u'bomb', u'target', u'iraq', u'polic', u'academi'] [u'casa', u'tighten', u'check', u'chopper', u'pilot'] [u'caus', u'nation', u'park', u'blaze', u'unknown'] [u'cave', u'enthusiast', u'flock', u'hobart', u'confer'] [u'church', u'collect', u'fund', u'tsunami', u'victim'] [u'club', u'tsunami', u'effort', u'reach', u'near'] [u'coastal', u'green', u'belt', u'protect', u'surg'] [u'concern', u'tsunami', u'generat', u'increas'] [u'coria', u'level', u'hopman'] [u'council', u'back', u'mobil', u'phone', u'base'] [u'council', u'offer', u'drink', u'water', u'assur'] [u'council', u'seek', u'tourism', u'board', u'member'] [u'court', u'rule', u'pimp', u'caption', u'complimentari'] [u'crocodil', u'countri', u'rescu', u'challeng', u'polic'] [u'crocodil', u'sight', u'scar', u'surfer'] [u'cycl', u'australia', u'appoint', u'high', u'perform'] [u'danc', u'showcas', u'piqu'] [u'danish', u'leav', u'dayer'] [u'darfur', u'rebel', u'threaten', u'commiss', u'boycott'] [u'dept', u'reject', u'perman', u'teacher', u'shortag', u'claim'] [u'dfat', u'lower', u'number', u'miss', u'australian'] [u'diet', u'prove', u'hard', u'stick'] [u'sampl', u'take', u'miss', u'victorian', u'home'] [u'test', u'confirm', u'rise', u'australian', u'toll'] [u'doctor', u'claim', u'africa', u'aid', u'drug', u'trial', u'flaw'] [u'driver', u'ask', u'rememb', u'tasman', u'bridg', u'disast'] [u'drogba', u'destroy', u'chelsea', u'pull', u'clear'] [u'drought', u'relief', u'moni', u'unspent'] [u'economist', u'offic', u'evacu'] [u'tree', u'safe', u'predatori', u'beetl'] [u'expert', u'urg', u'chicken', u'vaccin', u'adult'] [u'fan', u'snap', u'tsunami', u'fundrais', u'ticket'] [u'fatal', u'hous', u'suspici'] [u'fifield', u'plan', u'resum'] [u'firefight', u'save', u'tower', u'bushfir'] [u'foot', u'injuri', u'rule', u'clark', u'seri'] [u'forb', u'ralli', u'nation', u'caravan', u'event'] [u'forens', u'team', u'reopen', u'bodi', u'bag'] [u'freight', u'firm', u'cop', u'fuel', u'spill', u'fine'] [u'fund', u'help', u'realis', u'eudunda', u'growth', u'plan'] [u'gaudio', u'stun', u'french', u'prodigi'] [u'gayndah', u'mundubberra', u'canker', u'surveil', u'near'] [u'gere', u'urg', u'palestinian', u'vote'] [u'german', u'press', u'home', u'hopman', u'challeng'] [u'goldfield', u'join', u'tsunami', u'relief', u'effort'] [u'govt', u'overhaul', u'worker', u'compo', u'payment'] [u'grammi', u'honour', u'zeppelin', u'joplin'] [u'graphic', u'novel', u'pioneer', u'eisner', u'die'] [u'group', u'maintain', u'rescu', u'chopper', u'fight'] [u'group', u'monitor', u'coal', u'mine', u'green', u'effort'] [u'higher', u'price', u'eas', u'sugar', u'industri', u'woe'] [u'hospit', u'crisi', u'forc', u'patient', u'interst'] [u'hostel', u'manag', u'face', u'arson', u'murder', u'charg'] [u'howard', u'design', u'nation', u'mourn'] [u'howard', u'touch', u'jakarta', u'tsunami', u'summit'] [u'hunter', u'grape', u'crop', u'look', u'promis'] [u'hunter', u'medic', u'suppli', u'leav', u'lanka'] [u'indonesia', u'roll', u'heavi', u'secur', u'tsunami'] [u'indonesia', u'thank', u'tsunami', u'generos'] [u'iraq', u'commit', u'elect', u'date'] [u'iraqi', u'prison', u'abus', u'continu', u'scandal', u'break'] [u'iraqi', u'protest', u'poll', u'decis'] [u'iraqi', u'challeng', u'placement', u'aust', u'poll'] [u'israel', u'reprimand', u'offic', u'milit', u'death'] [u'katherin', u'elder', u'target', u'anti', u'social', u'behaviour'] [u'langeveldt', u'beat', u'pain', u'humbl', u'england'] [u'libya', u'order', u'telescop'] [u'local', u'want', u'tini', u'town', u'histor', u'open'] [u'mackay', u'council', u'tsunami', u'donat'] [u'charg', u'avondal', u'drug', u'raid'] [u'media', u'person', u'face', u'discrimin', u'complaint'] [u'melbourn', u'welcom', u'australia', u'deaflymp', u'team'] [u'mine', u'sector', u'drag', u'market'] [u'miss', u'coupl', u'dinghi'] [u'miss', u'safe', u'australia'] [u'mix', u'respons', u'council', u'work', u'hour', u'plan'] [u'monti', u'confirm', u'heineken', u'classic'] [u'monument', u'blunder', u'fire', u'video', u'decis'] [u'detail', u'emerg', u'miss', u'case'] [u'water', u'treatment', u'equip', u'go', u'indonesia'] [u'mother', u'honour', u'daughter', u'miss', u'tsunami'] [u'mourner', u'farewel', u'cricket', u'kill', u'lankan'] [u'mourner', u'farewel', u'cricket', u'kill', u'tsunami'] [u'eye', u'second', u'devonport'] [u'start', u'tsunami', u'appeal'] [u'yarra', u'boat', u'servic', u'begin'] [u'consid', u'tsunami', u'victim'] [u'sailor', u'beat', u'canberran', u'regatta'] [u'opposit', u'criticis', u'govt', u'park', u'plan'] [u'nurs', u'step', u'industri', u'action', u'disput'] [u'obes', u'decreas', u'children', u'qualiti', u'life'] [u'knievel', u'pimp', u'court', u'rule'] [u'kill', u'hous', u'blaze'] [u'paint', u'auction', u'rais', u'fund', u'hospit'] [u'pair', u'death', u'south', u'east', u'road'] [u'pakistan', u'australia', u'paltri', u'chase'] [u'pakistan', u'steadi'] [u'park', u'law', u'offer', u'nativ', u'titl', u'certainti'] [u'peru', u'sieg', u'end', u'rebel', u'leader', u'arrest'] [u'back', u'plan', u'saudi', u'live', u'sheep', u'trade', u'resumpt'] [u'pinochet', u'rule', u'face', u'right', u'charg'] [u'plan', u'afoot', u'weather', u'alic', u'airport', u'runway'] [u'hesit', u'asian', u'debt', u'freez'] [u'join', u'world', u'leader', u'tsunami', u'summit'] [u'urg', u'press', u'burma', u'tsunami', u'damag'] [u'polic', u'fake', u'loui', u'vuitton', u'canva'] [u'polic', u'hunt', u'servic', u'station', u'arm', u'bandit'] [u'polic', u'seek', u'shepparton', u'assault', u'wit'] [u'powel', u'hop', u'improv', u'imag', u'muslim'] [u'powel', u'shock', u'scale', u'destruct'] [u'polic', u'renew', u'plea', u'driver', u'obey', u'law'] [u'question', u'rais', u'council', u'tender', u'plan'] [u'racv', u'want', u'brake', u'countri', u'road', u'toll'] [u'rain', u'hamper', u'lanka', u'relief'] [u'rann', u'call', u'urgent', u'climat', u'chang', u'meet'] [u'region', u'hop', u'wetter', u'earli'] [u'remov', u'firm', u'inund', u'tsunami', u'relief'] [u'report', u'highlight', u'northern', u'river', u'incom', u'woe'] [u'research', u'focus', u'feral', u'deer', u'problem'] [u'rice', u'processor', u'consid', u'tsunami'] [u'riverina', u'search', u'phuket', u'miss', u'sister'] [u'russia', u'hopman'] [u'rusti', u'moya', u'paradorn', u'chennai'] [u'schu', u'donat', u'million', u'tsunami', u'fund'] [u'schumach', u'donat', u'million', u'tsunami', u'fund'] [u'search', u'resum', u'elder', u'coupl', u'miss'] [u'rescu', u'radio', u'vandal', u'draw', u'polic'] [u'seed', u'safe', u'gold', u'coast'] [u'sell', u'hit', u'technolog', u'stock'] [u'shift', u'halv', u'orang', u'electrolux', u'factori'] [u'shoaib', u'doubt', u'chariti', u'match'] [u'sister', u'town', u'plan', u'moot', u'tsunami', u'affect', u'region'] [u'sixer', u'shoot', u'bullet'] [u'smuggler', u'heroin', u'puppi', u'belli', u'polic'] [u'snake', u'drug', u'seiz', u'applecross', u'raid'] [u'south', u'africa', u'strike', u'earli', u'declar'] [u'spam', u'king', u'agre', u'suspend', u'bulk', u'email'] [u'spin', u'twin', u'shine'] [u'stage', u'spin', u'twin', u'shine'] [u'star', u'pledg', u'million', u'tsunami', u'victim'] [u'state', u'cooper', u'seek', u'stop', u'illeg', u'abalon'] [u'strong', u'respons', u'build', u'societi', u'tsunami', u'appeal'] [u'sunshin', u'coast', u'join', u'tsunami', u'relief', u'effort'] [u'swede', u'johansson', u'enqvist', u'advanc', u'adelaid'] [u'sydney', u'council', u'tsunami', u'effort'] [u'tassi', u'tiger', u'fossil', u'kimberley'] [u'tear', u'bartoli', u'overcom', u'pain', u'barrier', u'auckland'] [u'thai', u'govt', u'tsunami', u'effort'] [u'soldier', u'kill', u'iraq'] [u'seed', u'safe', u'gold', u'coast'] [u'townsvill', u'soldier', u'head', u'tsunami', u'devast'] [u'tsunami', u'effort', u'make', u'extraordinari', u'progress'] [u'tsunami', u'increas', u'threat', u'wildlif'] [u'tsunami', u'survivor', u'save', u'day', u'adrift'] [u'tuna', u'fisher', u'season', u'assess'] [u'want', u'debt', u'relief', u'tsunami', u'countri'] [u'deni', u'tsunami', u'respons', u'lack'] [u'express', u'concern', u'latest', u'gaza', u'kill'] [u'union', u'consid', u'redund', u'challeng'] [u'unstopp', u'stosur'] [u'monitor', u'children', u'aceh'] [u'seek', u'help', u'asian', u'fishermen'] [u'accident', u'drop', u'packag'] [u'lawmak', u'visit', u'north', u'korea'] [u'wolv', u'endang', u'list'] [u'valuat', u'prove', u'xstrata', u'offer'] [u'govt', u'focus', u'long', u'term', u'tsunami'] [u'offer', u'counsel', u'tsunami', u'victim'] [u'govt', u'attack', u'elect'] [u'water', u'woe', u'loom', u'horticultur', u'industri'] [u'weather', u'extrem', u'continu'] [u'west', u'indi', u'disappoint', u'bushrang'] [u'west', u'indi', u'bushrang'] [u'wind', u'farm', u'support', u'blame', u'govt', u'project', u'demis'] [u'wine', u'invest', u'fund', u'member', u'debat', u'shake'] [u'wollongong', u'see', u'tsunami', u'chao', u'hand'] [u'woodsid', u'allianc', u'focus', u'gulf', u'mexico'] [u'worker', u'compens', u'cover', u'tsunami', u'team'] [u'xstrata', u'stand', u'takeov', u'offer'] [u'youth', u'driver', u'train', u'scheme', u'propos'] [u'guerrilla', u'kill', u'nepal'] [u'iraqi', u'worker', u'dead', u'mosul'] [u'victim', u'die', u'sydney', u'hospit'] [u'record', u'road', u'death'] [u'adelaid', u'team', u'aceh', u'mission'] [u'adsl', u'access', u'england', u'resid'] [u'afghan', u'turn', u'fake', u'visa', u'ploy', u'minist'] [u'agassi', u'hungri', u'grand', u'slam', u'success'] [u'agenc', u'welcom', u'packag'] [u'group', u'want', u'tsunami', u'summit'] [u'alic', u'hospit', u'declar', u'babi', u'friend'] [u'alleg', u'polic', u'imperson', u'court'] [u'alleg', u'desert', u'hassoun', u'lebanon'] [u'annan', u'want', u'tsunami', u'pledg', u'honour'] [u'antibiot', u'prevent', u'nerv', u'damag'] [u'arsonist', u'target', u'merbein', u'polic', u'station'] [u'asic', u'ban', u'canberra', u'insur', u'agent'] [u'aussi', u'look', u'ash', u'challeng'] [u'aussi', u'teenag', u'give', u'sydney', u'wildcard'] [u'australia', u'tsunami', u'survivor'] [u'aust', u'ramp', u'trade', u'promot'] [u'aust', u'show', u'packag'] [u'aust', u'tsunami', u'death', u'toll', u'rise'] [u'babi', u'rhino', u'zoo', u'drawcard'] [u'bakhtiyari', u'support', u'ralli', u'adelaid'] [u'bangladesh', u'strong', u'start', u'zimbabw'] [u'bendigo', u'council', u'rais', u'tsunami', u'fund'] [u'bendigo', u'polic', u'target', u'drink', u'driver'] [u'bleak', u'futur', u'predict', u'capricorn', u'pineappl'] [u'brack', u'ask', u'explain', u'rescu'] [u'broom', u'artist', u'record', u'song', u'tsunami', u'victim'] [u'bush', u'donat', u'tsunami', u'relief'] [u'market', u'set', u'sale', u'record'] [u'chela', u'adelaid'] [u'church', u'servic', u'rememb', u'tsunami', u'victim'] [u'compass', u'aust', u'assist', u'aceh', u'relief', u'effort'] [u'consmin', u'announc', u'relianc', u'takeov', u'plan'] [u'council', u'govt', u'talk', u'focus', u'transport', u'fund'] [u'councillor', u'warn', u'shonki', u'tsunami', u'fundrais'] [u'council', u'push', u'favour', u'site', u'marin', u'project'] [u'council', u'seek', u'thwait', u'wast', u'dump', u'talk'] [u'council', u'seek', u'info', u'smoke', u'law'] [u'counsellor', u'urg', u'offer', u'free', u'tsunami', u'support'] [u'cricket', u'earn', u'break'] [u'fish', u'stock', u'appear', u'healthi'] [u'darwin', u'concert', u'plan', u'tsunami', u'fundrais'] [u'darwin', u'regiment', u'prepar', u'kanimbla', u'departur'] [u'data', u'point', u'bumper', u'christma', u'retail'] [u'dead', u'jackeroo', u'father', u'call', u'farm', u'safeti'] [u'dead', u'year', u'journalist'] [u'dementieva', u'upset', u'sharapova', u'open'] [u'dept', u'warn', u'summer', u'campfir', u'danger'] [u'diver', u'join', u'search', u'miss', u'coupl'] [u'doctor', u'recount', u'tsunami', u'grief'] [u'document', u'reveal', u'habib', u'tortur', u'alleg'] [u'down', u'hors', u'prove', u'good', u'silk', u'stock'] [u'duck', u'shooter', u'unfaz', u'rspca'] [u'elder', u'drown', u'fish', u'spot'] [u'nino', u'predict', u'bring', u'day'] [u'emerg', u'servic', u'prais', u'hostel', u'blaze'] [u'england', u'face', u'defeat', u'cape', u'town'] [u'esper', u'concert', u'organis', u'tsunami', u'victim'] [u'europ', u'pay', u'respect', u'tsunami', u'victim'] [u'famili', u'appeal', u'inform', u'year'] [u'farmer', u'want', u'grain', u'freight', u'servic', u'retain'] [u'feder', u'fire', u'qatar', u'quarter'] [u'fifa', u'set', u'fund', u'tsunami', u'victim'] [u'fifa', u'trial', u'ball', u'devic', u'amid', u'video', u'replay'] [u'firefight', u'contain', u'sydney'] [u'fire', u'threaten', u'properti', u'near', u'perth'] [u'freight', u'charg', u'increas', u'late'] [u'funer', u'tomorrow', u'teen', u'drown', u'victim'] [u'tsunami', u'victim', u'identif'] [u'gallop', u'hose', u'prospect', u'sprinkler'] [u'germani'] [u'govt', u'fund', u'tamworth', u'weed', u'erad'] [u'monitor', u'asbesto', u'orang'] [u'haan', u'sydney'] [u'habib', u'alleg', u'tortur', u'wit', u'govt'] [u'harbour', u'master', u'call', u'sailor', u'drug', u'alcohol', u'test'] [u'heat', u'rais', u'demand', u'gold', u'coast', u'water'] [u'hewitt', u'advanc', u'adelaid'] [u'hopman', u'wide', u'open', u'slovak'] [u'hospit', u'boost', u'resourc', u'festiv'] [u'hospit', u'staff', u'loss', u'prompt', u'renew', u'talk'] [u'weather', u'sign', u'global', u'warm'] [u'howard', u'outlin', u'detail', u'packag'] [u'howard', u'pledg', u'indonesian', u'recoveri'] [u'howard', u'rule', u'aceh', u'visit'] [u'hunter', u'chees', u'maker', u'vie', u'women', u'award'] [u'iceberg', u'reappear', u'zealand', u'water'] [u'indonesia', u'call', u'relief', u'coordin'] [u'indonesian', u'consul', u'close', u'door', u'donat'] [u'insur', u'broker', u'busi', u'western', u'storm'] [u'iraq', u'push', u'ahead', u'elect', u'plan'] [u'isi', u'shire', u'back', u'tsunami', u'appeal'] [u'jakarta', u'tsunami', u'summit', u'begin'] [u'cut', u'electrolux', u'effici', u'union'] [u'kuwaiti', u'soldier', u'charg', u'anti', u'plot'] [u'latham', u'confin'] [u'latrob', u'council', u'join', u'tsunami', u'donat', u'drive'] [u'launceston', u'show', u'fate', u'remain', u'undecid'] [u'liber', u'promis', u'boost', u'beach', u'access'] [u'accus', u'tsunami', u'collect', u'fraud'] [u'accus', u'tsunami', u'collect', u'fraud', u'grant'] [u'arrest', u'brisban', u'stab'] [u'charg', u'cannabi', u'plantat'] [u'mandela', u'die'] [u'face', u'attempt', u'murder', u'charg', u'stab'] [u'fin', u'girlfriend', u'phone', u'attack'] [u'give', u'year', u'jail', u'paedophil', u'ring'] [u'maradona', u'return', u'cuba', u'drug', u'treatment'] [u'mildura', u'air', u'concern', u'toxic', u'wast', u'facil'] [u'million', u'dollar', u'payout', u'attack'] [u'industri', u'focus', u'skill', u'worker'] [u'train', u'centr', u'plan', u'mackay'] [u'miss', u'victorian', u'safe', u'thailand'] [u'monk', u'offer', u'sell', u'templ', u'tsunami', u'relief'] [u'enjoy', u'irish', u'book', u'name'] [u'uranium', u'explor', u'plan'] [u'deni', u'power', u'plant', u'claim'] [u'fear', u'wyndham', u'hospit', u'closur'] [u'lament', u'rise', u'countri', u'road', u'toll'] [u'navi', u'ship', u'prepar', u'leav', u'sumatra'] [u'ncoss', u'seek', u'north', u'coast', u'fund'] [u'netherland', u'level', u'hopman'] [u'newcastl', u'build', u'industri', u'tip', u'remain', u'strong'] [u'green', u'corp', u'project', u'announc'] [u'home', u'sale', u'rebound'] [u'nkala', u'lead', u'zimbabwean', u'fight', u'test'] [u'north', u'boost', u'tsunami', u'appeal', u'effort'] [u'continu', u'wait', u'region', u'airport', u'secur'] [u'nuclear', u'element', u'arriv', u'reprocess', u'franc'] [u'look', u'world', u'seri', u'india', u'declin'] [u'oberon', u'quarri', u'get', u'ahead', u'court', u'battl'] [u'price', u'retreat'] [u'price', u'fall'] [u'perth', u'univers', u'test', u'shoaib', u'malik', u'action'] [u'owner', u'warn', u'slug', u'death'] [u'philippoussi', u'hope', u'play', u'australian', u'open'] [u'philippoussi', u'like', u'miss', u'australian', u'open'] [u'pinochet', u'hous', u'arrest'] [u'plan', u'continu', u'nation', u'park', u'hunt', u'plan'] [u'concern', u'burma', u'tsunami', u'toll'] [u'polic', u'continu', u'search', u'miss', u'cairn'] [u'polic', u'fear', u'miss', u'gulf'] [u'polic', u'hunt', u'gang', u'arm', u'robberi'] [u'polic', u'mount', u'search', u'sydney', u'prison', u'escap'] [u'polic', u'search', u'miss', u'czech', u'tourist'] [u'polic', u'search', u'river', u'miss'] [u'polic', u'union', u'unhappi', u'dump', u'month', u'station'] [u'port', u'macquari', u'feral', u'deer', u'cull', u'approv'] [u'port', u'macquari', u'pair', u'provid', u'medic', u'relief'] [u'produc', u'pick', u'incred', u'film'] [u'project', u'aim', u'prevent', u'wind', u'storm', u'damag'] [u'public', u'servant', u'ask', u'donat', u'hour', u'asia'] [u'public', u'urg', u'donat', u'lankan', u'appeal'] [u'public', u'urg', u'regist', u'dodgi', u'power', u'pole'] [u'rain', u'good', u'news', u'drought', u'western', u'grazier'] [u'rain', u'halt', u'play', u'auckland'] [u'ranatunga', u'hospitalis', u'heart', u'problem'] [u'real', u'madrid', u'snare', u'point', u'resum', u'match'] [u'bull', u'complet', u'driver', u'line'] [u'cross', u'begin', u'tsunami', u'survivor', u'regist'] [u'reign', u'dakar', u'champ', u'win', u'sixth', u'stage', u'mcrae'] [u'resid', u'opposit', u'fail', u'stop', u'bungendor'] [u'resid', u'warn', u'bewar', u'intrud'] [u'resourc', u'sector', u'drag', u'stock', u'market'] [u'retail', u'surviv', u'shop', u'centr', u'competit'] [u'richard', u'gere', u'elect', u'appeal', u'perplex'] [u'river', u'flow', u'boost', u'irrig', u'alloc'] [u'road', u'toll', u'rise'] [u'rower', u'rescu', u'yarra', u'river'] [u'safeti', u'fear', u'prompt', u'cattl', u'yard', u'remov'] [u'safeti', u'offic', u'consid', u'curb', u'road', u'toll'] [u'safeti', u'remind', u'issu', u'employ'] [u'samsung', u'unveil', u'speech', u'text', u'mobil'] [u'scientist', u'conduct', u'post', u'mortem', u'dead', u'whale'] [u'scud', u'hope', u'play', u'australian', u'open'] [u'scud', u'injuri', u'scuttl', u'australia', u'hopman'] [u'scud', u'injuri', u'scuttl', u'australia', u'hopman', u'chanc'] [u'search', u'continu', u'miss', u'boy', u'bodi'] [u'servic', u'reflect', u'tsunami', u'impact'] [u'servic', u'sector', u'record', u'growth'] [u'defend', u'tsunami', u'warn', u'decis'] [u'make', u'beelin', u'unusu', u'truck', u'crash', u'cargo'] [u'sharon', u'clinch', u'deal', u'gaza', u'pull', u'support'] [u'shoaib', u'rule', u'chariti', u'match'] [u'year', u'armidal', u'break', u'enter'] [u'slovak', u'republ', u'lead'] [u'slovak', u'republ', u'hopman'] [u'southcorp', u'tip', u'takeov', u'target'] [u'specialist', u'test', u'shoaib', u'malik', u'action'] [u'lanka', u'estim', u'tsunami', u'damag'] [u'lankan', u'cricket', u'launch', u'tsunami', u'relief', u'fund'] [u'stalem', u'leav', u'southhampton', u'root', u'releg'] [u'storm', u'claim', u'histor', u'woolsh'] [u'stosur', u'prepar', u'quarter', u'final', u'showdown'] [u'stosur', u'gold', u'coast', u'semi'] [u'strong', u'aussi', u'conting', u'contest', u'hawaiian'] [u'studi', u'throw', u'weight', u'snack', u'impact'] [u'stunt', u'sue', u'show', u'contest', u'eat'] [u'sydney', u'hottest', u'year', u'record'] [u'sydney', u'student', u'link', u'russian', u'internet', u'fraud'] [u'consid', u'halt', u'hospit', u'resign'] [u'job', u'growth', u'push', u'drive', u'skill', u'worker'] [u'teenag', u'footbal', u'hop', u'impress', u'england', u'elit'] [u'test', u'seaspray', u'good', u'qualiti'] [u'tourist', u'expect', u'flock', u'birdsvill', u'cattl'] [u'townsvill', u'troop', u'prepar', u'tsunami', u'worst'] [u'tsunami', u'victim', u'rememb', u'thailand'] [u'fee', u'blame', u'drop', u'student', u'number'] [u'say', u'darfur', u'rebel', u'threat', u'spell', u'disast'] [u'unseed', u'gimelstob', u'toppl', u'bjorkman', u'india'] [u'inspect', u'iran', u'site'] [u'warn', u'fight', u'tsunami', u'strike', u'area'] [u'urin', u'test', u'predict', u'pregnanc', u'complic'] [u'archaeologist', u'accus', u'plagiar'] [u'command', u'warn', u'militari', u'reserv', u'near', u'break'] [u'marin', u'kill', u'western', u'iraq'] [u'market', u'slide', u'inflat', u'fear'] [u'probe', u'guantanamo', u'abus', u'claim'] [u'studi', u'point', u'protein', u'role', u'heart', u'attack'] [u'versac', u'line', u'madonna'] [u'warn', u'gain', u'support', u'tsunami', u'summit'] [u'weather', u'bureau', u'scale', u'flood', u'warn'] [u'west', u'indi', u'prepar', u'australia', u'clash'] [u'wildlif', u'group', u'unsur', u'payout', u'appeal'] [u'offer', u'olymp', u'assur'] [u'women', u'tenni', u'clinch', u'major', u'sponsorship', u'deal'] [u'zarina', u'win', u'devonport'] [u'aerial', u'spray', u'group', u'join', u'plane', u'crash', u'probe'] [u'plead', u'patienc'] [u'agforc', u'warn', u'loom', u'locust', u'plagu'] [u'distribut', u'caus', u'lanka'] [u'effort', u'zero', u'sumatran', u'provinc'] [u'annan', u'stun', u'tsunami', u'destruct', u'indonesia'] [u'annan', u'survey', u'aceh', u'tsunami', u'devast'] [u'defend', u'excess', u'student', u'quota'] [u'appeal', u'launch', u'tsunami', u'industri'] [u'armi', u'target', u'summernat', u'fan', u'recruit', u'drive'] [u'aussi', u'win', u'shoot', u'silver', u'deaflymp'] [u'aussi', u'win', u'shoot', u'putt', u'silver', u'deaflymp'] [u'australian', u'tsunami', u'death', u'toll', u'offici'] [u'aust', u'troop', u'prepar', u'iraqi', u'elect'] [u'author', u'crash', u'pilot', u'bodi'] [u'author', u'investig', u'construct', u'worker', u'death'] [u'weather', u'slow', u'tsunami', u'effort'] [u'bail', u'grant', u'tsunami', u'donat', u'fraud', u'case'] [u'ballroom', u'transform', u'tsunami', u'donat', u'centr'] [u'bangladesh', u'captain', u'fall', u'short', u'centuri'] [u'barrow', u'fill', u'tsunami', u'victim'] [u'basebal', u'young', u'gun', u'converg', u'lismor'] [u'bash', u'prompt', u'polic', u'secur', u'remind'] [u'beach', u'whale', u'dead'] [u'blaze', u'damag', u'track', u'mainten', u'train'] [u'bodi', u'search', u'miss', u'coupl'] [u'boje', u'pollock', u'wreck', u'england', u'unbeaten'] [u'bradtk', u'star', u'tiger', u'escap', u'hunter'] [u'break', u'spark', u'polic', u'secur', u'remind'] [u'britain', u'outlin', u'marshal', u'plan', u'poverti'] [u'build', u'approv', u'declin'] [u'busi', u'night', u'alic', u'polic'] [u'camper', u'holiday', u'safeti', u'remind'] [u'camper', u'rescu', u'teenag', u'buri', u'sand'] [u'carr', u'popular', u'stay', u'year'] [u'ceremoni', u'urg', u'heal', u'tsunami', u'grief'] [u'probe', u'list', u'failur', u'report'] [u'claim', u'northern', u'river', u'woe'] [u'classmat', u'farewel', u'tsunami', u'victim'] [u'clijster', u'confirm', u'australian', u'open', u'withdraw'] [u'coalit', u'backbench', u'push', u'relief'] [u'concert', u'asia', u'broadcast', u'radio'] [u'contamin', u'concern', u'vanadium'] [u'council', u'offer', u'tsunami', u'relief', u'fund'] [u'counsellor', u'offer', u'tsunami', u'help'] [u'crash', u'wwii', u'plan', u'bounti', u'south', u'coast', u'water'] [u'crespo', u'trick', u'move', u'milan', u'closer', u'juve'] [u'croc', u'dethron', u'king', u'hawk', u'taipan', u'triumph'] [u'crowd', u'expect', u'cygnet', u'folk', u'festiv'] [u'csiro', u'join', u'virus', u'fight'] [u'czech', u'tourist', u'whereabout', u'remain', u'unknown'] [u'capac', u'drop', u'illawarra'] [u'danish', u'academ', u'slam', u'tsunami', u'warn', u'plan'] [u'davenport', u'hungri', u'grand', u'slam', u'success'] [u'death', u'renew', u'call', u'taxi', u'rank', u'secur'] [u'defend', u'champ', u'grab', u'stage', u'dakar', u'lead'] [u'denham', u'health', u'centr', u'get', u'plan', u'approv'] [u'dent', u'knock', u'hewitt', u'adelaid'] [u'depart', u'defend', u'albani', u'justic', u'complex', u'contract'] [u'dizzi', u'look', u'forward', u'ash', u'seri'] [u'epilepsi', u'gene', u'discoveri', u'peopl'] [u'door', u'manag', u'danni', u'sugerman', u'die'] [u'driver', u'face', u'court', u'policeman'] [u'drought', u'condit', u'favour', u'hang', u'glider'] [u'eastwood', u'scorses', u'director', u'award'] [u'elvi', u'fan', u'gyrat', u'park', u'festiv'] [u'europ', u'ask', u'clarif', u'tsunami', u'mass'] [u'famili', u'school', u'friend', u'farewel', u'tsunami', u'victim'] [u'farmer', u'face', u'mix', u'weather', u'fortun'] [u'fear', u'hold', u'rare', u'bird'] [u'feder', u'cruis', u'qatar', u'semi', u'final'] [u'femal', u'prison', u'escape', u'recaptur'] [u'ferrari', u'play', u'race', u'boycott', u'report'] [u'fewer', u'speedster', u'record', u'polic', u'oper'] [u'firefight', u'continu', u'battl', u'perth', u'blaze'] [u'fisheri', u'dept', u'warn', u'marron', u'limit'] [u'fish', u'farm', u'hop', u'lure', u'tourist'] [u'flood', u'cut', u'road'] [u'priest', u'plead', u'guilti', u'charg'] [u'frazier', u'reach', u'auckland', u'semi', u'final'] [u'french', u'journalist', u'miss', u'iraq'] [u'frustrat', u'councillor', u'bypass', u'regul'] [u'gene', u'determin', u'risk', u'hivaid'] [u'germain', u'greer', u'take', u'brother', u'challeng'] [u'glori', u'sign', u'leagu'] [u'cotton', u'kimberley'] [u'good', u'start', u'smoke', u'law'] [u'govt', u'ask', u'abandon', u'wag', u'tribun', u'plan'] [u'govt', u'hear', u'toxic', u'wast', u'dump', u'protest'] [u'govt', u'urg', u'fish', u'gear', u'tsunami'] [u'govt', u'urg', u'state', u'land', u'mossi', u'control'] [u'gunn', u'eye', u'histor', u'properti', u'wine', u'ventur'] [u'haa', u'injur', u'hopman'] [u'haa', u'injuri', u'put', u'argentina', u'perth'] [u'hawk', u'taipan', u'score', u'victori'] [u'health', u'chief', u'unsur', u'job'] [u'high', u'court', u'bring', u'forward', u'gang', u'rape', u'appeal', u'hear'] [u'hill', u'confirm', u'request', u'search'] [u'hill', u'jefferi', u'farewel', u'indonesia', u'bind', u'troop'] [u'hill', u'farewel', u'troop', u'indonesia', u'visit'] [u'hmas', u'kanimbla', u'set', u'sail', u'indonesia'] [u'horticultur', u'inject', u'million', u'coastal'] [u'hospit', u'reopen', u'aceh'] [u'howard', u'send', u'latham', u'wish'] [u'hurst', u'hop', u'swell'] [u'hurst', u'hop', u'wave', u'portsea'] [u'world', u'say', u'serena'] [u'indigen', u'council', u'back', u'student', u'retent', u'plan'] [u'injur', u'haa', u'expect', u'australian', u'open'] [u'iraq', u'extend', u'emerg', u'elect'] [u'jet', u'hope', u'convinc', u'venabl', u'stay'] [u'jet', u'work', u'longer', u'term', u'venabl', u'commit'] [u'johansson', u'adelaid', u'semi'] [u'kalgoorli', u'aim', u'rais', u'tsunami', u'victim'] [u'lake', u'boost', u'consid', u'fish', u'kill', u'cure'] [u'lara', u'concern', u'australia'] [u'leader', u'billion', u'work', u'tsunami', u'summit'] [u'expect', u'remain', u'gulf'] [u'magic', u'million', u'outgrow', u'turf', u'club'] [u'major', u'illeg', u'drug', u'uncov', u'sydney'] [u'charg', u'servic', u'station', u'hold'] [u'mandela', u'aid', u'fight', u'get', u'person'] [u'die', u'fall', u'backpack', u'hostel'] [u'drown', u'eildon'] [u'hold', u'tsunami', u'fraud', u'charg'] [u'injur', u'fight', u'perth'] [u'kill', u'taxi', u'rank', u'fight'] [u'marshal', u'sign', u'leed'] [u'microsoft', u'offer', u'spywar', u'protect'] [u'worker', u'consid', u'job', u'recommend'] [u'miner', u'await', u'diamond', u'search', u'result'] [u'monsanto', u'pay', u'fine', u'bribe'] [u'aust', u'assist', u'aceh', u'maldiv'] [u'troop', u'join', u'tsunami', u'mission'] [u'motorist', u'warn', u'hoon', u'summernat'] [u'call', u'insolv', u'law', u'chang'] [u'muralitharan', u'play', u'tsunami', u'chariti', u'match'] [u'fuel', u'tank', u'bring', u'nasa', u'closer', u'shuttl', u'launch'] [u'technolog', u'save', u'farmer', u'travel'] [u'troop', u'kill', u'iraq'] [u'polic', u'collect', u'data', u'tsunami', u'miss'] [u'nuclear', u'watchdog', u'seek', u'global', u'enrich', u'freez'] [u'number', u'slump', u'charl', u'darwin'] [u'opposit', u'attack', u'premium'] [u'opposit', u'fear', u'rat', u'chang', u'legal', u'problem'] [u'pair', u'charg', u'fraud'] [u'paradorn', u'roll', u'chennai', u'quarter'] [u'parliament', u'hear', u'kangaroo'] [u'parri', u'second', u'place', u'hawaii'] [u'chairman', u'back', u'woolmer', u'inzamam'] [u'perth', u'firefight', u'hope', u'better', u'condit'] [u'pilbara', u'iron', u'project', u'delay'] [u'pittman', u'split', u'coach', u'king'] [u'call', u'minut', u'silenc', u'mourn'] [u'pleas', u'world', u'tsunami', u'effort'] [u'polic', u'dog', u'drug'] [u'polic', u'hunt', u'driver', u'chase'] [u'polic', u'investig', u'woman', u'death', u'gulf', u'town'] [u'polic', u'prais', u'kimberley', u'motorist'] [u'polic', u'prepar', u'countri', u'music', u'influx'] [u'polic', u'rule', u'boat', u'hit', u'teen'] [u'polic', u'rule', u'sydney', u'attack', u'link'] [u'polic', u'target', u'driver', u'head'] [u'polyclin', u'work', u'begin', u'year'] [u'presidenti', u'public', u'premier'] [u'protest', u'fail', u'save', u'golden'] [u'public', u'urg', u'donat', u'legitim', u'tsunami'] [u'public', u'urg', u'help', u'miss'] [u'push', u'gum', u'nation', u'park'] [u'polic', u'assist', u'tsunami', u'victim', u'identif'] [u'rail', u'timet', u'plan', u'track'] [u'razzaq', u'replac', u'akhtar', u'chariti', u'match'] [u'realiti', u'find'] [u'religi', u'leader', u'gather', u'rememb', u'tsunami'] [u'resourc', u'sector', u'push', u'market', u'high'] [u'retail', u'figur', u'fall', u'short'] [u'rise', u'level', u'undo', u'post', u'tsunami'] [u'roadsid', u'blast', u'kill', u'soldier'] [u'rudd', u'defend', u'latham', u'silenc', u'tsunami'] [u'sandiland', u'extend', u'docker', u'contract'] [u'sarina', u'council', u'pledg', u'tsunami', u'fund'] [u'sartor', u'hold', u'water', u'restrict'] [u'crack', u'recycl', u'border', u'run'] [u'scientist', u'detect', u'massiv', u'space', u'explos'] [u'scientist', u'excit', u'antarct', u'servic'] [u'scientist', u'warn', u'tsunami', u'danger'] [u'sewerag', u'pipe', u'work', u'continu'] [u'sharehold', u'group', u'clarifi', u'tsunami', u'donat'] [u'sharehold', u'group', u'oppos', u'tsunami', u'donat'] [u'shire', u'look', u'better', u'year'] [u'sober', u'centr', u'prove', u'popular'] [u'south', u'africa', u'beat', u'england'] [u'south', u'africa', u'recal', u'boucher'] [u'lanka', u'ban', u'adopt', u'amid', u'child', u'snatch'] [u'stargaz', u'close', u'view', u'saturn'] [u'stosur', u'gold', u'coast', u'final'] [u'stray', u'hippo', u'find', u'unlik', u'mother'] [u'sunshin', u'coast', u'academ', u'enter', u'fee', u'debat'] [u'suppli', u'fear', u'spark', u'price', u'rise'] [u'suprem', u'court', u'throw', u'ukrain', u'elect', u'challeng'] [u'surat', u'basin', u'product', u'rise'] [u'sydney', u'avoid', u'water', u'restrict'] [u'teacher', u'retrain', u'plan', u'help', u'western', u'school'] [u'teen', u'charg', u'beach', u'assault'] [u'thailand', u'insist', u'foreign', u'mass', u'grave'] [u'thousand', u'expect', u'lavend', u'harvest'] [u'charg', u'hindmarsh', u'brawl'] [u'tini', u'organ', u'blame', u'fish', u'kill'] [u'trucki', u'deliv', u'tsunami', u'donat'] [u'trust', u'embarrass', u'close', u'properti'] [u'tsunami', u'add', u'woe', u'poverti', u'stricken', u'somali'] [u'tsunami', u'chariti', u'cricket', u'intern', u'sell'] [u'tsunami', u'death', u'toll', u'pass'] [u'tsunami', u'survivor', u'pick', u'piec'] [u'indonesia', u'plan', u'camp', u'tsunami', u'homeless'] [u'rais', u'tsunami', u'relief', u'fund'] [u'defeat', u'australia', u'hopman'] [u'soldier', u'accus', u'kill', u'iraqi', u'await'] [u'venus', u'struggl', u'open'] [u'airport', u'host', u'region', u'counter', u'terror'] [u'viduka', u'doubt', u'socceroo'] [u'volunt', u'doctor', u'urg', u'prepar'] [u'popul', u'approach', u'million'] [u'rule', u'uranium', u'mine'] [u'water', u'tower', u'inquest', u'begin', u'april'] [u'water', u'woe', u'prompt', u'swim'] [u'water', u'woe', u'plagu', u'bombala', u'shire'] [u'western', u'medic', u'staff', u'help', u'tsunami', u'victim'] [u'weather', u'leav', u'wide'] [u'wildcat', u'grace', u'miss', u'game'] [u'william', u'hail', u'inspir', u'webber'] [u'wintergarden', u'theatr', u'sale'] [u'attorney', u'general', u'grill'] [u'young', u'abattoir', u'rebuild'] [u'youth', u'support', u'scheme', u'like', u'help'] [u'zoellick', u'tip', u'state', u'dept', u'post'] [u'kill', u'italian', u'train', u'crash'] [u'achiev', u'offic', u'monitor', u'school'] [u'field', u'hospit', u'arriv', u'banda', u'aceh'] [u'afghan', u'judg', u'arrest', u'kabul', u'bomb'] [u'annan', u'tour', u'lanka', u'pledg', u'support'] [u'arafat', u'head', u'poll'] [u'armstrong', u'hint', u'sidestep', u'tour'] [u'australian', u'detain', u'desecr', u'argentin', u'flag'] [u'bangladesh', u'place', u'test'] [u'barrow', u'load', u'cash', u'boost', u'tsunami', u'appeal'] [u'beach', u'collaps', u'victim', u'remain', u'hospit'] [u'beach', u'dead', u'whale', u'pose', u'shark', u'attack', u'threat'] [u'brad', u'pitt', u'jennif', u'aniston', u'announc', u'split'] [u'british', u'tsunami', u'toll', u'doubl'] [u'build', u'approv', u'fall'] [u'burnley', u'postpon'] [u'canada', u'hasten', u'immigr', u'applic'] [u'canathon', u'promis', u'collector', u'beeri', u'good', u'time'] [u'church', u'seek', u'govt', u'help', u'deliv', u'tsunami'] [u'clark', u'injuri', u'watch', u'selector', u'resist'] [u'conflict', u'hamper', u'aceh', u'hill'] [u'cruis', u'ship', u'mishap', u'spark', u'search'] [u'dakar', u'ralli', u'ground'] [u'death', u'toll', u'rise', u'italian', u'train', u'crash'] [u'detent', u'centr', u'cost', u'blow'] [u'dfat', u'appeal', u'fresh', u'info', u'miss', u'peopl'] [u'elder', u'surviv', u'day', u'tsunami', u'rubbl'] [u'england', u'ash', u'gough'] [u'extra', u'cost', u'slow', u'hous', u'construct'] [u'famili', u'await', u'news', u'tsunami', u'zone'] [u'fifa', u'uefa', u'stage', u'tsunami', u'benefit'] [u'fifa', u'discuss', u'offsid', u'chang'] [u'flawless', u'feder', u'reach', u'qatar', u'final'] [u'french', u'journalist', u'urg', u'stay', u'away', u'iraq'] [u'nation', u'freez', u'tsunami', u'nation', u'debt'] [u'galleri', u'extend', u'hour', u'munch', u'exhibit'] [u'govt', u'build', u'compani', u'check', u'inadequ', u'opposit'] [u'govt', u'defend', u'student', u'hous', u'option'] [u'govt', u'doubl', u'servic', u'indigen', u'famili'] [u'group', u'form', u'help', u'prevent', u'dolphin', u'catch'] [u'henin', u'hardenn', u'australian', u'open', u'sydney', u'intl'] [u'hewitt', u'put', u'adelaid', u'loss'] [u'hiker', u'strand', u'marin', u'fall'] [u'hind', u'triangular', u'seri'] [u'hingi', u'ponder', u'tour', u'comeback'] [u'hopman', u'final', u'promis', u'tight', u'contest'] [u'hussey', u'lead', u'australia', u'fight'] [u'indian', u'visit', u'slow', u'tsunami', u'work'] [u'indonesia', u'revis', u'death', u'toll'] [u'indonesia', u'revis', u'tsunami', u'death', u'toll'] [u'inzamam', u'depress', u'imran', u'critic'] [u'bank', u'robberi', u'polic'] [u'iraq', u'turn', u'perth', u'poll', u'booth', u'fund', u'offer'] [u'israel', u'check', u'report', u'palestinian', u'shoot'] [u'israel', u'threaten', u'cancel', u'palestinian', u'elect'] [u'johansson', u'play', u'dent', u'adelaid', u'final'] [u'juri', u'select', u'ghraib', u'abus', u'trial'] [u'katherin', u'girl', u'tamworth', u'stage'] [u'kava', u'licenc', u'approv', u'croker', u'outlet'] [u'keith', u'urban', u'tour', u'australia'] [u'lara', u'turn', u'style'] [u'take', u'british', u'citizenship'] [u'malaysia', u'suvivor', u'rescu'] [u'arrest', u'drug', u'lab', u'uncov', u'sydney'] [u'kill', u'highway', u'crash'] [u'pledg', u'fund', u'rebuild', u'gall', u'stadium'] [u'organis', u'tsunami', u'fundrais', u'lord'] [u'million', u'pledg', u'tsunami', u'benefit', u'telethon'] [u'monfil', u'open', u'franc', u'name', u'wildcard'] [u'mortaza', u'put', u'bangladesh', u'zimbabw', u'test'] [u'motorcyclist', u'kill', u'truck', u'collis'] [u'moya', u'srichaphan', u'cours', u'final', u'match'] [u'asia', u'host', u'tsunami', u'relief', u'benefit'] [u'murder', u'charg', u'lay', u'taxi', u'queue', u'brawl'] [u'murder', u'beauti', u'queen', u'parent', u'lose', u'defam', u'suit'] [u'net', u'method', u'reduc', u'catch'] [u'road', u'reduc', u'citi', u'travel', u'time'] [u'road', u'toll', u'hit', u'decad'] [u'price', u'steadi', u'sharp', u'rise'] [u'palestinian', u'candid', u'eject'] [u'palestinian', u'candid', u'kick', u'jerusalem'] [u'patient', u'leav', u'wait', u'region', u'hospit'] [u'pedestrian', u'warn', u'headphon', u'risk'] [u'return', u'tsunami', u'summit'] [u'polic', u'continu', u'search', u'miss'] [u'polic', u'scale', u'search', u'miss', u'doctor'] [u'powel', u'tour', u'tsunami', u'devast', u'lanka'] [u'princ', u'william', u'harri', u'help', u'tsunami', u'effort'] [u'probe', u'fail', u'stop', u'abus', u'troop'] [u'rescu', u'mission', u'launch', u'injur', u'aust', u'seaman'] [u'hous', u'industri', u'remain', u'healthi', u'despit', u'trend'] [u'schnyder', u'edg', u'stosur', u'gold', u'coast', u'final'] [u'search', u'continu', u'miss', u'cruis', u'ship', u'passeng'] [u'search', u'suspend', u'overboard', u'cruis', u'ship'] [u'sharon', u'stone', u'repris', u'basic', u'instinct', u'role'] [u'singh', u'halfway', u'leader', u'hawaii'] [u'slovak', u'captur', u'second', u'hopman'] [u'slovak', u'hopman', u'advantag'] [u'slovak', u'second', u'hopman'] [u'srebotnik', u'prevail', u'classic', u'marathon'] [u'straw', u'tour', u'scene', u'thai', u'tsunami', u'disast'] [u'summernat', u'weekend', u'rev'] [u'superb', u'lara', u'inspir', u'windi', u'victori'] [u'suspect', u'member', u'plead', u'guilti', u'murder'] [u'tasmanian', u'cadet', u'compet', u'team', u'challeng'] [u'tasmania', u'fisheri', u'expertis', u'tsunami'] [u'tenant', u'urg', u'disregard', u'smoke', u'detector', u'advic'] [u'thousand', u'expect', u'attend', u'festiv', u'open'] [u'tindal', u'creek', u'resid', u'warn', u'possibl', u'flood'] [u'aust', u'diplomat', u'fiji', u'bash'] [u'train', u'good', u'drive', u'skill'] [u'tsunami', u'info', u'pack', u'help', u'student'] [u'tsunami', u'inspir', u'volunt', u'work'] [u'tsunami', u'relief', u'experi', u'chang', u'perth', u'medic'] [u'charg', u'street', u'race'] [u'injur', u'sydney', u'shoot'] [u'strand', u'hiker', u'rescu'] [u'chief', u'alarm', u'darfur', u'crisi'] [u'armi', u'sergeant', u'clear', u'kill', u'iraqi'] [u'claim', u'arrest', u'zarqawi', u'alli', u'mosul'] [u'job', u'data', u'point', u'steadi', u'growth'] [u'nuclear', u'run', u'aground', u'near', u'guam'] [u'space', u'mission', u'test', u'repair', u'procedur'] [u'review', u'iraq', u'militari', u'oper'] [u'venus', u'scrap', u'final', u'sharapova'] [u'victoria', u'road', u'toll', u'year'] [u'vietnam', u'confirm', u'bird', u'death'] [u'zoellick', u'name', u'deputi', u'secretari', u'state'] [u'abba', u'rival', u'claim', u'palestinian', u'vote', u'irregular'] [u'annan', u'seek', u'return', u'lanka'] [u'asian', u'tourism', u'industri', u'larg', u'unhurt', u'tsunami'] [u'atapattu', u'pull', u'tsunami', u'fundrais'] [u'team', u'fight', u'beat', u'windi'] [u'aussi', u'helper', u'return', u'home'] [u'aust', u'diver', u'presum', u'dead', u'african', u'cave'] [u'australia', u'fight', u'beat', u'windi'] [u'australian', u'diver', u'disappear', u'africa', u'cave'] [u'australia', u'releas', u'warn', u'world', u'seri'] [u'babi', u'good', u'news', u'tsunami', u'indian', u'tribe'] [u'bangladesh', u'close', u'histor'] [u'bat', u'claim', u'second', u'manchest', u'track'] [u'bewild', u'lankan', u'pull', u'tsunami', u'rubbl'] [u'boystown', u'offer', u'counsel', u'tsunami', u'victim'] [u'brisban', u'charg', u'rape'] [u'brother', u'find', u'miss', u'adelaid'] [u'caldecott', u'slip', u'dakar', u'place'] [u'cattlemen', u'seek', u'heritag', u'list', u'alpin', u'graze'] [u'cautious', u'trade', u'tip', u'dollar', u'steadi'] [u'charg', u'expect', u'north', u'west', u'fire'] [u'charg', u'lay', u'perth', u'robberi'] [u'china', u'growth', u'impact', u'aust', u'economi'] [u'critic', u'honour', u'million', u'dollar', u'babi', u'sideway'] [u'death', u'toll', u'italian', u'train', u'crash', u'rise'] [u'dellacqua', u'chase', u'open', u'wildcard'] [u'dementieva', u'stop', u'venus', u'hong', u'kong', u'titl'] [u'canio', u'face', u'probe', u'alleg', u'fascist', u'salut'] [u'diver', u'search', u'miss', u'year'] [u'dominikov', u'bow', u'hobart'] [u'drought', u'expect', u'continu', u'part'] [u'kill', u'storm', u'pound', u'northern', u'europ'] [u'electr', u'fault', u'blame', u'school'] [u'embarrass', u'fergi', u'say', u'sorri', u'fan'] [u'execut', u'target', u'broadcast', u'protest'] [u'fiji', u'polic', u'probe', u'aust', u'diplomat', u'bash'] [u'firefight', u'urg', u'parent', u'leav', u'kid'] [u'ferrero', u'fire', u'open'] [u'injur', u'crash'] [u'flawless', u'singh', u'retain', u'hawaii', u'lead'] [u'launceston', u'win', u'marathon'] [u'germani', u'offer', u'lead', u'tsunami', u'warn'] [u'govt', u'communiti', u'urg', u'help', u'needi'] [u'group', u'map', u'rare', u'pine', u'tree', u'popul'] [u'gunfir', u'report', u'banda', u'aceh'] [u'hang', u'glider', u'die', u'world', u'championship'] [u'hewitt', u'defend', u'coach', u'rashe'] [u'hezbollah', u'attack', u'isra', u'patrol'] [u'histor', u'peac', u'deal', u'sign', u'sudan'] [u'holiday', u'road', u'toll', u'continu', u'rise'] [u'hondura', u'claim', u'foil', u'plot', u'presid'] [u'hope', u'concert', u'rais', u'tsunami', u'fund'] [u'hopman', u'organis', u'target', u'feder'] [u'hurst', u'cameron', u'portsea', u'round'] [u'hussey', u'fall', u'beller'] [u'hussey', u'rescu', u'mission'] [u'indonesian', u'offic', u'blame', u'aceh', u'shoot'] [u'injur', u'bushwalk', u'rescu', u'near', u'lithgow'] [u'iraq', u'insurg', u'boost', u'power', u'explos'] [u'israel', u'launch', u'strike', u'hezbollah', u'attack'] [u'johansson', u'down', u'dent', u'adelaid', u'final'] [u'journalist', u'releas', u'bail', u'kuwait'] [u'kennedi', u'sibl', u'die'] [u'lara', u'second', u'dayer'] [u'leader', u'meet', u'ahead', u'sudan', u'peac', u'deal'] [u'light', u'plane', u'roll', u'melbourn', u'runway'] [u'malaysian', u'airport', u'boost', u'aceh', u'effort'] [u'charg', u'fatal', u'stab'] [u'charg', u'recreat', u'park'] [u'injur', u'hous', u'blaze'] [u'injur', u'skydiv', u'mishap'] [u'minist', u'apologis', u'teacher', u'student', u'comment'] [u'minnow', u'exet', u'defi', u'citi', u'villa', u'crash'] [u'motorcyclist', u'urg', u'chang', u'behaviour'] [u'moya', u'paradorn', u'chennai', u'final', u'rematch'] [u'seek', u'support', u'aceh', u'orphanag', u'project'] [u'use', u'greenpeac', u'ship', u'transport'] [u'music', u'light', u'herald', u'festiv', u'open'] [u'armi', u'cadet', u'rise', u'challeng'] [u'net', u'million', u'proceed', u'crime'] [u'admit', u'suppli', u'agent', u'orang'] [u'offici', u'aust', u'tsunami', u'death', u'toll', u'remain', u'unchang'] [u'offenc', u'overshadow', u'drink', u'drive', u'drop'] [u'palestinian', u'begin', u'vote', u'amid', u'access', u'disput'] [u'palestinian', u'claim', u'israel', u'break', u'elect'] [u'palestinian', u'prepar', u'vote', u'leader'] [u'pledg', u'ongo', u'tsunami'] [u'polic', u'appeal', u'info', u'miss', u'tourist'] [u'polic', u'diver', u'recov', u'bodi', u'miss', u'teenag'] [u'polit', u'muddi', u'tsunami', u'relief', u'effort'] [u'properti', u'quarantin', u'crazi', u'outbreak'] [u'ralf', u'see', u'toyota', u'better', u'william'] [u'russian', u'troop', u'kill', u'rebel', u'battl', u'near', u'chechnya'] [u'deploy', u'diseas', u'tsunami', u'zone'] [u'sailor', u'die', u'aboard', u'nuclear', u'accid'] [u'saudi', u'polic', u'kill', u'gunmen'] [u'scud', u'withdraw', u'sydney', u'intern'] [u'search', u'miss', u'cruis', u'passeng', u'suspend'] [u'search', u'resum', u'miss'] [u'shelter', u'help', u'summernat', u'spectat', u'sober'] [u'shot', u'fire', u'nimbin', u'stand'] [u'lankan', u'radio', u'retract', u'tiger', u'leadership', u'death'] [u'strong', u'wind', u'predict', u'cyclon', u'move'] [u'submarin', u'crew', u'injur', u'vessel', u'run', u'aground'] [u'taibu', u'miss', u'fight', u'zimbabw'] [u'tamil', u'tiger', u'deni', u'leader', u'dead', u'tsunami'] [u'telethon', u'donat', u'overwhelm', u'world', u'vision'] [u'terror', u'train', u'exercis', u'focus', u'railway'] [u'upset'] [u'tourist', u'rescu', u'spend', u'night'] [u'tszyu', u'sign', u'deal', u'fight', u'hatton', u'report'] [u'straight', u'feder'] [u'drown'] [u'underground', u'farm', u'plan', u'tokyo'] [u'untrain', u'volunt', u'urg', u'help'] [u'tsnuami', u'snub', u'harm', u'peac', u'process', u'tamil', u'tiger'] [u'militari', u'admit', u'bomb', u'wrong', u'hous', u'iraq'] [u'soldier', u'give', u'month', u'sentenc', u'iraq'] [u'soldier', u'kill', u'baghdad'] [u'troop', u'kill', u'iraqi', u'polic', u'civilian'] [u'valencia', u'straight'] [u'vibrat', u'record', u'indian', u'ocean'] [u'warn', u'plan', u'lankan', u'mission'] [u'warn', u'plan', u'travel', u'lanka'] [u'windi', u'chase'] [u'windi', u'toss', u'bowl'] [u'women', u'hospit', u'reopen', u'switchboard'] [u'xmas', u'road', u'campaign', u'fail', u'impact', u'darwin'] [u'injuri', u'wilkinson'] [u'kill', u'southern', u'philippin', u'clash', u'militari'] [u'year', u'later', u'quixot', u'rid'] [u'kill', u'crash', u'india'] [u'abba', u'claim', u'victori', u'palestinian', u'elect'] [u'abba', u'tip', u'palestinian', u'elect'] [u'aborigin', u'servic', u'begin', u'rout'] [u'aborigin', u'soul', u'group', u'reviv', u'sydney', u'festiv'] [u'aborigin', u'seek', u'licenc', u'export', u'nativ', u'anim'] [u'academ', u'lend', u'expertis', u'lankan', u'rebuild'] [u'accid', u'hous', u'claim', u'live'] [u'aceh', u'militari', u'role', u'pure'] [u'actor', u'newman', u'escap', u'daytona', u'smash'] [u'space', u'station', u'track', u'titan', u'probe'] [u'pledg', u'tsunami', u'appeal'] [u'queensland', u'consid', u'cairn', u'brawl', u'appeal'] [u'group', u'reach', u'aceh', u'west', u'coast'] [u'hit', u'road', u'beat', u'aceh', u'airport'] [u'amend', u'train', u'servic', u'oper', u'smooth'] [u'annan', u'urg', u'cooper', u'lanka'] [u'applebi', u'defend', u'hawaii', u'titl'] [u'arthur', u'claim', u'sydney', u'open'] [u'asian', u'chase', u'massiv', u'total'] [u'associ', u'back', u'aerial', u'night', u'spray', u'despit'] [u'attack', u'transmitt', u'leav', u'station'] [u'aussi', u'start', u'sydney', u'campaign'] [u'aussi', u'start', u'sydney', u'campaign'] [u'aust', u'medic', u'team', u'unconcern', u'aceh', u'tension'] [u'aust', u'see', u'irregular', u'palestinian', u'vote'] [u'author', u'examin', u'whale', u'carcass'] [u'baghdad', u'deputi', u'polic', u'chief', u'assassin'] [u'bangladesh', u'break', u'test'] [u'bowl', u'club', u'look', u'amalgam'] [u'brisban', u'sudanes', u'communiti', u'celebr', u'peac', u'deal'] [u'builder', u'finish', u'push', u'tsunami', u'barrow'] [u'build', u'compani', u'creditor', u'meet', u'administr'] [u'busi', u'group', u'chief', u'warn', u'region'] [u'busi', u'group', u'seek', u'rate', u'reduct'] [u'canathon', u'promis', u'collector', u'beeri', u'good', u'time'] [u'canberra', u'track', u'water'] [u'carr', u'defend', u'labor', u'tsunami', u'respons'] [u'celtic', u'firm', u'battl'] [u'citrus', u'canker', u'surveil', u'program', u'track'] [u'citycat', u'switch', u'greener', u'fuel'] [u'coalit', u'soldier', u'polic', u'kill', u'iraq'] [u'comic', u'chameleon', u'campbel', u'mccoma', u'die'] [u'cooper', u'set', u'forens', u'standard'] [u'council', u'wast', u'manag', u'cost'] [u'court', u'allow', u'beater', u'chicken'] [u'cyclon', u'kerri', u'move'] [u'cyclon', u'threat', u'lanka', u'dissip'] [u'darwin', u'coupl', u'share', u'tsunami', u'stori'] [u'demon', u'rememb', u'heart', u'broadbridg'] [u'niro', u'stiller', u'combin', u'prove', u'offic'] [u'diplomat', u'secur', u'review', u'fiji'] [u'doctor', u'girl', u'utero'] [u'doctor', u'urg', u'peopl', u'avoid', u'eat', u'larg', u'reef', u'fish'] [u'doctor', u'voic', u'anger', u'concess', u'card', u'valid'] [u'donat', u'tarpaulin', u'head', u'lanka'] [u'dont', u'compass', u'stop', u'gilchrist'] [u'dont', u'write', u'warn', u'injuri', u'wilkinson'] [u'dragon', u'play', u'trial', u'match', u'man'] [u'earli', u'childhood', u'program', u'fund', u'east', u'kimberley'] [u'elect', u'specul', u'continu'] [u'export', u'fight', u'propos', u'cartel', u'chang'] [u'farmer', u'hope', u'summer', u'plant', u'season'] [u'feder', u'jet'] [u'femal', u'prison', u'studi', u'highlight', u'crime', u'drug', u'link'] [u'caus', u'damag', u'outsid', u'perth'] [u'destroy', u'airli', u'beach', u'hous'] [u'firefight', u'battl', u'grass'] [u'firefight', u'battl', u'townhous', u'blaze'] [u'fourteen', u'storm', u'batter', u'europ'] [u'fresh', u'quak', u'rock', u'aceh'] [u'concert', u'rais', u'thousand', u'tsunami', u'relief'] [u'die', u'singl', u'accid'] [u'girl', u'burn', u'accident', u'polic'] [u'glori', u'hunt', u'coach'] [u'govt', u'award', u'gunn', u'hous', u'contract'] [u'govt', u'look', u'fish', u'group', u'tuna', u'farm', u'concern'] [u'green', u'group', u'oppos', u'lobster', u'fisheri', u'approv'] [u'green', u'seek', u'warn', u'rail', u'disput'] [u'group', u'appeal', u'council', u'adult', u'supermarket'] [u'gulf', u'victim', u'overpay', u'auditor'] [u'hewitt', u'reject', u'aust', u'open', u'choker'] [u'hospit', u'staff', u'receiv', u'similar', u'work', u'condit'] [u'ierodiaconou', u'lead', u'aerial', u'canada'] [u'immigr', u'year', u'high'] [u'indonesia', u'confirm', u'soldier', u'respons', u'aceh'] [u'indonesia', u'deni', u'limit', u'worker', u'movement'] [u'indonesian', u'death', u'toll'] [u'internet', u'figur', u'suggest', u'worker', u'demand'] [u'inzamam', u'shoaib', u'face', u'fit', u'race'] [u'revers', u'nation', u'trend'] [u'biggest', u'drop', u'month'] [u'johnson', u'make', u'long', u'await', u'return', u'bull'] [u'juve', u'extend', u'lead'] [u'keelti', u'warn', u'aust', u'tsunami', u'toll', u'rise'] [u'king', u'croc'] [u'latham', u'miss', u'labor', u'tsunami', u'brief'] [u'speed'] [u'legend', u'pilot', u'world', u'record', u'jump'] [u'light', u'plane', u'crash', u'melbourn', u'airport'] [u'local', u'council', u'critic', u'wast', u'standard'] [u'macqueen', u'dismiss', u'role', u'perth', u'team'] [u'magic', u'million', u'sale', u'record'] [u'arrest', u'aust', u'diplomat', u'bash'] [u'charg', u'stab'] [u'charg', u'polic', u'imperson'] [u'die', u'alburi', u'crash'] [u'hospitalis', u'incid', u'cape', u'barren'] [u'surviv', u'day', u'lose', u'bush'] [u'surviv', u'hang', u'glide', u'accid'] [u'maryborough', u'kick', u'anniversari', u'celebr'] [u'mayor', u'put', u'support', u'rail', u'transport', u'timber'] [u'meatwork', u'oper'] [u'monaro', u'drought', u'coastal', u'region', u'improv'] [u'mother', u'happi', u'longer', u'miss'] [u'moya', u'retain', u'chennai', u'open', u'titl', u'donat', u'prize'] [u'newman', u'make', u'narrow', u'escap', u'burn', u'race'] [u'tram', u'plan', u'bendigo', u'lake'] [u'upset', u'arsenal', u'newcastl'] [u'need', u'carer', u'law', u'review', u'find'] [u'shark', u'cull', u'gold', u'coast', u'canal'] [u'pharmacist', u'train', u'deal', u'depress'] [u'list', u'expect', u'boost', u'profil'] [u'donat', u'tonn', u'indonesia'] [u'livestock', u'export', u'jump'] [u'nurs', u'reject', u'govt', u'offer'] [u'compani', u'deni', u'agent', u'orang', u'claim'] [u'compani', u'blame', u'high', u'region', u'petrol'] [u'oliv', u'breast', u'cancer', u'fight', u'studi'] [u'opposit', u'seek', u'clariti', u'home', u'buyer'] [u'outback', u'hotel', u'sale', u'garner'] [u'penguin', u'fare', u'better', u'expect', u'iceberg'] [u'peplin', u'happi', u'drug', u'trial', u'result'] [u'pharmacist', u'join', u'rural', u'depress', u'crusad'] [u'polic', u'continu', u'search', u'miss', u'tourist'] [u'polic', u'follow', u'diver', u'request', u'rescu', u'mission'] [u'polic', u'investig', u'campsi', u'arm', u'robberi'] [u'polic', u'investig', u'cape', u'barren', u'island', u'shoot'] [u'polic', u'investig', u'disappear', u'coupl'] [u'polic', u'scale', u'search', u'miss'] [u'polic', u'seek', u'help', u'miss', u'woman'] [u'powel', u'urg', u'rethink', u'tsunami'] [u'press', u'amid', u'tsunami', u'devast'] [u'properti', u'owner', u'advis', u'obtain', u'permit'] [u'public', u'hous', u'rent', u'hike', u'notic', u'mistak'] [u'pub', u'close', u'follow', u'brawl'] [u'lib', u'govt', u'sell', u'airport', u'stake'] [u'radcliff', u'london', u'marathon'] [u'rain', u'eas', u'move', u'west'] [u'rat', u'demonstr', u'languag', u'skill'] [u'real', u'mark', u'barca', u'slump'] [u'record', u'tourism', u'caus', u'south', u'coast', u'strain'] [u'cross', u'overwhelm', u'tsunami', u'relief', u'respons'] [u'repeat', u'drink', u'drive', u'offend', u'get', u'month', u'sentenc'] [u'rise', u'sea', u'threaten', u'port', u'island'] [u'rotari', u'focus', u'rebuild', u'tsunami', u'devast'] [u'rural', u'polic', u'station', u'readi'] [u'diseas', u'expert', u'head', u'aceh'] [u'salvo', u'help', u'farm', u'children', u'return', u'school'] [u'probe', u'bird', u'death', u'olymp'] [u'scientist', u'declar', u'rice', u'trial', u'safe'] [u'scientist', u'rule', u'link', u'decemb', u'quak'] [u'search', u'resum', u'miss', u'cruis', u'ship', u'passeng'] [u'volunt', u'recognis', u'festiv', u'work'] [u'shire', u'defend', u'health', u'plan'] [u'sinn', u'fein', u'know', u'bank', u'heist', u'irish', u'say'] [u'skydiv', u'critic', u'condit', u'accid'] [u'stock', u'market', u'post', u'record', u'high'] [u'summernat', u'clean', u'begin'] [u'sydney', u'kill', u'north', u'west', u'crash'] [u'taskforc', u'track', u'fox'] [u'nurs', u'help', u'maldiv', u'tsunami', u'relief', u'effort'] [u'opposit', u'seek', u'smaller', u'class', u'size'] [u'teacher', u'compil', u'tsunami', u'resourc', u'student'] [u'teenag', u'die', u'bird'] [u'teen', u'critic', u'crash'] [u'thai', u'court', u'approv', u'extradit'] [u'thai', u'restart', u'identifi', u'tsunami', u'victim'] [u'thiev', u'strike', u'bowl', u'club'] [u'velodrom', u'gold', u'bat'] [u'lebanon', u'israel', u'border', u'clash'] [u'hunter', u'valley', u'road'] [u'townsvill', u'respond', u'tsunami', u'relief', u'appeal'] [u'tsunami', u'brief', u'labor', u'minus', u'latham'] [u'tsunami', u'support', u'concert', u'declar', u'success'] [u'kill', u'separ', u'road', u'accid'] [u'ukrain', u'plan', u'iraq', u'pullout', u'soldier', u'kill'] [u'concern', u'student', u'tsunami', u'affect'] [u'peacekeep', u'kill', u'lebanon', u'border', u'clash'] [u'seek', u'million', u'sudan'] [u'deni', u'troop', u'kill', u'iraqi', u'polic', u'civilian'] [u'helicopt', u'crash', u'aceh'] [u'mull', u'home', u'grow', u'militia', u'iraq'] [u'releas', u'prison', u'ghraib'] [u'vet', u'urg', u'help', u'tsunami', u'anim', u'victim'] [u'residenti', u'tower'] [u'stockbrok', u'ban', u'life'] [u'doctor', u'prais', u'tsunami', u'relief', u'work'] [u'warn', u'plan', u'lankan', u'mission'] [u'weather', u'bureau', u'keep', u'cyclon', u'kerri'] [u'weather', u'warn', u'issu', u'lanka'] [u'western', u'power', u'issu', u'profit', u'warn'] [u'westfield', u'group', u'acquir', u'shop', u'complex'] [u'white', u'spadea', u'embarrass', u'sanchez'] [u'woodsid', u'submit', u'plan', u'expans'] [u'worksaf', u'assess', u'shear', u'shed'] [u'world', u'team', u'charg'] [u'world', u'tsunami', u'chariti', u'match'] [u'promot', u'green', u'reconstruct', u'tsunami'] [u'xstrata', u'defend', u'shutdown'] [u'youth', u'input', u'seek', u'technic', u'colleg', u'need'] [u'youth', u'radio', u'come', u'broom'] [u'fund', u'tsunami', u'victim'] [u'abba', u'savour', u'victori', u'israel', u'urg', u'action'] [u'aborigin', u'death', u'custodi', u'case', u'return', u'court'] [u'aborigin', u'seek', u'role', u'fight', u'pest'] [u'ghraib', u'pyramid', u'like', u'cheerlead'] [u'accc', u'rule', u'primus', u'telstra', u'disput'] [u'convoy', u'reach', u'isol', u'indonesian', u'town'] [u'transport', u'cost', u'mount'] [u'albanes', u'tour', u'tarkin'] [u'alic', u'communiti', u'gather', u'tsunami', u'appeal'] [u'advoc', u'multipl', u'vaccin', u'infant'] [u'analyst', u'say', u'nurs', u'minor', u'factor', u'elect'] [u'antarct', u'conqueror', u'return', u'home'] [u'applebi', u'climb', u'world', u'rank'] [u'armstrong', u'set', u'deadlin', u'tour', u'decis'] [u'armi', u'confid', u'indonesian', u'protect', u'aceh'] [u'assist', u'cricket', u'coach', u'head', u'program'] [u'astronom', u'largest', u'know', u'star'] [u'team', u'confid', u'despit', u'loss'] [u'atlant', u'ocean', u'island', u'mail', u'send', u'south', u'america'] [u'aussi', u'wildcard', u'knock', u'hobart'] [u'aust', u'give', u'seychell'] [u'australian', u'share', u'market', u'end', u'record'] [u'aust', u'snooker', u'player', u'deni', u'assault', u'claim'] [u'black', u'hole', u'observ', u'astronom', u'spin'] [u'boati', u'warn', u'rough', u'sea'] [u'bureau', u'keep', u'watch'] [u'burnett', u'shire', u'place', u'chang'] [u'sack', u'erron', u'bush', u'stori'] [u'central', u'banker', u'global', u'growth'] [u'charg', u'drink', u'driver', u'seven', u'time'] [u'chilean', u'judg', u'grant', u'pinochet', u'bail'] [u'china', u'billionth', u'babi', u'pooh', u'pooh', u'commerci'] [u'commiss', u'dive', u'vessel', u'man', u'river'] [u'want', u'underwat', u'mountain'] [u'coria', u'rise', u'occas', u'zealand'] [u'corrug', u'iron', u'steal', u'roof', u'histor'] [u'sleep', u'beat', u'obes'] [u'council', u'look', u'clear', u'tyre'] [u'council', u'flag', u'rate', u'rise', u'fund', u'land', u'handback'] [u'pipelin', u'expect', u'boost', u'electr', u'suppli'] [u'crew', u'confid', u'contain', u'wangari'] [u'crew', u'fight', u'hobart', u'blaze'] [u'cricket', u'post', u'score', u'chariti'] [u'cyclon', u'kerri', u'make', u'presenc', u'felt'] [u'darl', u'water', u'wont', u'reach'] [u'deep', u'water', u'diver', u'own', u'more', u'properti'] [u'devaugh', u'head', u'devast', u'compani', u'collaps'] [u'diabet', u'doctor', u'acquit', u'danger', u'drive'] [u'deep', u'tsunami', u'anim', u'victim', u'rspca'] [u'doctor', u'hope', u'unborn', u'surgeri', u'success'] [u'downer', u'congratul', u'abba', u'victori'] [u'drop', u'rate', u'factor', u'enrol'] [u'drug', u'seiz', u'polic', u'raid', u'home'] [u'dulko', u'advanc', u'hobart'] [u'earli', u'disast', u'warn', u'island', u'meet', u'agenda'] [u'dead', u'bushfir'] [u'guerrouj', u'rare', u'cross', u'countri', u'appear'] [u'explos', u'steal', u'satellit', u'dish', u'bomb'] [u'windfal', u'exet'] [u'fals', u'passport', u'charg', u'withdraw', u'sydney'] [u'feder', u'emphasis', u'time', u'role', u'roch'] [u'guantanamo', u'intellig', u'valu', u'offici'] [] [u'declar', u'victoria'] [u'firefight', u'battl', u'grass', u'blaze'] [u'firefight', u'contain', u'mount', u'osmond', u'blaze'] [u'fire', u'caus', u'power', u'cut'] [u'fire', u'close', u'south', u'eastern', u'freeway'] [u'food', u'drop', u'bind', u'burketown'] [u'forens', u'team', u'face', u'daunt', u'task', u'thailand'] [u'forget', u'hrbati', u'fin', u'mandarin', u'mistak'] [u'bash', u'tavern', u'worker', u'basebal'] [u'gold', u'price', u'expect', u'bounc'] [u'govt', u'defend', u'focus', u'countri', u'road'] [u'govt', u'deni', u'generat', u'fund', u'claim'] [u'govt', u'hose', u'aceh', u'secur', u'concern'] [u'govt', u'increas', u'weed', u'fund', u'grant'] [u'govt', u'rebuk', u'staff', u'member', u'letter'] [u'govt', u'probe', u'council', u'fund', u'function'] [u'govt', u'put', u'commerci', u'crab', u'fish'] [u'govt', u'seek', u'public', u'comment', u'energi', u'polici'] [u'green', u'scheme', u'push', u'power', u'price'] [u'group', u'want', u'parti', u'environment', u'vision'] [u'guantanamo', u'translat', u'plead', u'guilti'] [u'hayden', u'rest', u'dayer'] [u'health', u'dept', u'warn', u'ross', u'river', u'threat'] [u'heat', u'kill', u'linger', u'locust'] [u'hewitt', u'breez', u'sydney', u'second', u'round'] [u'honda', u'complet'] [u'hospit', u'defend', u'traine', u'intak', u'number'] [u'hospit', u'disput', u'intensifi'] [u'hunter', u'hit', u'higher', u'countri', u'petrol', u'price'] [u'illawarra', u'health', u'chief', u'resign'] [u'imposs', u'mean', u'test', u'school', u'allow'] [u'india', u'crash', u'kill'] [u'indigen', u'leader', u'say', u'prison', u'answer'] [u'indonesia', u'ban', u'milit', u'group', u'offer'] [u'indonesian', u'armi', u'face', u'aceh'] [u'indonesia', u'warn', u'safeti', u'worker', u'aceh'] [u'injur', u'butcher', u'south', u'africa', u'tour'] [u'iraq', u'insurg', u'kill', u'string', u'attack'] [u'isra', u'parliament', u'approv', u'govern', u'coalit'] [u'italian', u'smoker', u'forc', u'outdoor'] [u'jordan', u'confid', u'readi', u'melbourn'] [u'kolkata', u'like', u'venu', u'return', u'game'] [u'labor', u'downplay', u'latham', u'resign', u'talk'] [u'lake', u'wetherel', u'soon', u'open', u'fisher'] [u'latham', u'offic', u'cagey', u'whereabout'] [u'life', u'save', u'grant', u'welcom'] [u'local', u'student', u'boost', u'hospit', u'servic'] [u'lower', u'eyr', u'peninsula', u'fire', u'burn', u'control'] [u'manag', u'team', u'appoint', u'health', u'servic'] [u'charg', u'cape', u'barren', u'island', u'shoot'] [u'manganes', u'assess'] [u'manganes', u'generat'] [u'surrend', u'polic', u'assault'] [u'face', u'court', u'fiji', u'diplomat', u'mug'] [u'acehnes', u'food', u'suppli'] [u'matthew', u'impress', u'aker', u'season', u'form'] [u'mildura', u'microscop'] [u'milit', u'musharraf', u'assassin', u'escap'] [u'minist', u'defend', u'travel', u'expens'] [u'molik', u'advanc', u'sydney'] [u'british', u'troop', u'bind', u'iraq'] [u'morn', u'pill', u'sale'] [u'myskina', u'bow', u'sydney'] [u'natur', u'come', u'onlin', u'launceston'] [u'navi', u'ship', u'reach', u'indonesia', u'friday'] [u'milit', u'attack', u'pose', u'earli', u'challeng', u'abba'] [u'news', u'corp', u'chase', u'stock'] [u'year', u'consult', u'strategi', u'pay'] [u'crew', u'alert', u'temperatur', u'rise'] [u'polic', u'continu', u'search', u'miss', u'tourist'] [u'opposit', u'critic', u'qlds', u'juvenil', u'offend', u'law'] [u'control', u'bushfir', u'kill'] [u'peterhansel', u'despr', u'prevail', u'dakar', u'stage'] [u'pilot', u'error', u'factor', u'hang', u'glider', u'death'] [u'player', u'avail', u'question', u'return', u'appeal'] [u'question', u'vanadium', u'closur'] [u'polic', u'prison', u'escape'] [u'polic', u'plaudit', u'driver'] [u'polic', u'suspect', u'miss', u'burni', u'murder'] [u'power', u'station', u'oper', u'confid', u'goldfield'] [u'pratt', u'bounc', u'canberra', u'classic'] [u'professor', u'advoc', u'cancer', u'research', u'aborigin'] [u'psychiatrist', u'wish', u'help', u'tsunami'] [u'ralli', u'hear', u'iranian', u'persecut'] [u'rebel', u'guarante', u'worker', u'safeti', u'aceh'] [u'research', u'monkey', u'gene', u'link', u'block'] [u'resid', u'complain', u'wine', u'compani', u'smell'] [u'right', u'wing', u'extremist', u'plead', u'guilti', u'arson'] [u'rilli', u'rule', u'player', u'week', u'award'] [u'rooney', u'chelsea', u'recal'] [u'ruddock', u'announc', u'habib', u'releas', u'guantanamo'] [u'aim', u'curb', u'organis', u'crime'] [u'seek', u'advic', u'aceh', u'conflict'] [u'want', u'indonesia', u'charg', u'relief'] [u'school', u'brace', u'traumatis', u'student', u'return'] [u'school', u'support', u'program', u'receiv', u'fund', u'boost'] [u'second', u'dun', u'murder', u'suspect', u'arrest'] [u'seven', u'kill', u'california', u'storm'] [u'sharon', u'issu', u'challeng', u'palestinian', u'leader'] [u'sink', u'swim', u'montreal', u'world', u'titl'] [u'korea', u'launch', u'mobil', u'satellit'] [u'springborg', u'campaign', u'parti'] [u'lanka', u'releas', u'quartet', u'world', u'seri'] [u'lanka', u'tour', u'zealand', u'april'] [u'standardis', u'medic', u'chart', u'patient'] [u'stawel', u'polic', u'station', u'reduc', u'open', u'hour'] [u'studi', u'look', u'type', u'diabet', u'prevent'] [u'submiss', u'seek', u'draft', u'coastal', u'manag'] [u'sudanes', u'communiti', u'celebr', u'peac', u'agreement'] [u'sydney', u'escap', u'drug', u'charg'] [u'tactic', u'crime', u'squad', u'start', u'post'] [u'tasmanian', u'firefight', u'alert'] [u'alic', u'give', u'local', u'industri', u'need', u'boost'] [u'kill', u'kuwait', u'citi', u'shootout'] [u'timber', u'worker', u'accept', u'loss'] [u'time', u'run', u'cert', u'volunt'] [u'tourism', u'flourish', u'east', u'gippsland'] [u'tourism', u'hous', u'develop', u'approv', u'tweed'] [u'tourist', u'number', u'increas'] [u'trade', u'deficit', u'widen', u'billion'] [u'tribut', u'honour', u'ambul', u'servic'] [u'trio', u'bail', u'trampl', u'argentin', u'flag'] [u'tsunami', u'domin', u'island', u'state', u'talk'] [u'tsunami', u'toll', u'rise', u'offici'] [u'charg', u'transmitt', u'attack'] [u'kill'] [u'ukrain', u'confirm', u'yushchenko', u'presid'] [u'ukrain', u'order', u'troop', u'iraq'] [u'soldier', u'face', u'iraq', u'abus', u'court', u'martial'] [u'unit', u'play', u'boro'] [u'court', u'uphold', u'klux', u'klan', u'appeal'] [u'marin', u'boost', u'aceh', u'relief', u'effort'] [u'releas', u'habib', u'charg'] [u'health', u'stress'] [u'vigil', u'urg', u'avoid', u'tsunami', u'relat', u'corrupt'] [u'volker', u'sexual', u'assault', u'case', u'drop'] [u'arriv', u'aceh'] [u'defend', u'arbitr', u'decis'] [u'wall', u'street', u'sneak', u'ahead'] [u'warn', u'leav', u'door', u'open'] [u'warn', u'anim', u'owner', u'temperatur', u'rise'] [u'warn', u'issu', u'offic', u'email', u'scam'] [u'weight', u'loss', u'warn', u'dementia'] [u'wit', u'seek', u'shepparton', u'assault'] [u'acknowledg', u'tail', u'danger', u'bird'] [u'women', u'tour', u'return', u'bell', u'beach'] [u'work', u'rail', u'upgrad', u'begin'] [u'wwii', u'monument', u'seek', u'canberra'] [u'year', u'look', u'bright', u'cattl', u'produc'] [u'kill', u'iraq', u'attack', u'elect', u'loom'] [u'aborigin', u'communiti', u'hold', u'tsunami', u'benefit'] [u'ghraib', u'detaine', u'testifi', u'prison', u'abus'] [u'accc', u'ask', u'probe', u'gambier', u'fuel', u'price'] [u'accc', u'clear', u'coke'] [u'accus', u'murder', u'releas', u'bail'] [u'emerg', u'servic', u'high', u'alert'] [u'adelaid', u'court', u'close', u'incid'] [u'aerial', u'search', u'miss', u'czech', u'tourist'] [u'aerial', u'search', u'miss', u'tourist', u'call'] [u'unveil', u'drug', u'rule'] [u'worker', u'face', u'aceh', u'restrict'] [u'alga', u'outbreak', u'threaten', u'eurobodalla', u'water', u'suppli'] [u'black', u'wilson', u'recal', u'cricket'] [u'apart', u'accus', u'run', u'facto', u'hotel'] [u'appl', u'launch', u'itsi', u'bitsi', u'ipod'] [u'australia', u'chase', u'competit', u'total'] [u'australia', u'celebr', u'plan'] [u'australian', u'arrest', u'cambodia', u'drug', u'charg'] [u'australian', u'offici', u'watch', u'habib'] [u'australia', u'role', u'provid'] [u'aust', u'tsunami', u'toll', u'rise'] [u'author', u'ponder', u'search', u'option'] [u'bashir', u'warn', u'long', u'term', u'deploy', u'aceh'] [u'gun', u'line', u'kooyong'] [u'tide', u'prove', u'troublesom', u'life', u'saver'] [u'blanchett', u'nomin', u'award'] [u'bok', u'boot', u'camp', u'whistleblow', u'dead'] [u'britain', u'revis', u'tsunami', u'toll'] [u'bundaberg', u'paramed', u'help', u'tsunami', u'victim'] [u'bush', u'allawi', u'discuss', u'elect', u'prepar'] [u'bush', u'nomin', u'homeland', u'secur', u'chief'] [u'cadet', u'tour', u'battl', u'field'] [u'canada', u'confirm', u'case', u'diseas'] [u'capriati', u'australian', u'open'] [u'intrus', u'make', u'rude', u'awaken'] [u'carl', u'williamss', u'father', u'bail', u'poor', u'health'] [u'chopper', u'servic', u'seek', u'govt', u'fund'] [u'christian', u'leader', u'urg', u'opposit', u'brothel'] [u'condom', u'crusad', u'rise', u'aid', u'fight'] [u'confid', u'rock', u'lobster', u'industri', u'meet', u'ecolog'] [u'consum', u'confid', u'get', u'year', u'bounc'] [u'council', u'await', u'anim', u'review'] [u'council', u'urg', u'unit', u'tsunami', u'effort'] [u'council', u'discuss', u'rebel', u'club', u'develop'] [u'council', u'work', u'open', u'hepburn', u'spring', u'pool'] [u'courier', u'put', u'parcel', u'destroy'] [u'crash', u'land', u'fear', u'prompt', u'emerg'] [u'cyclon', u'kerri', u'move', u'coast'] [u'cyclon', u'kerri', u'weaken'] [u'death', u'hit', u'dakar', u'ralli'] [u'dent', u'advanc', u'sydney'] [u'discount', u'store', u'damag'] [u'diseas', u'threat', u'lanka', u'small'] [u'dominikov', u'crash', u'canberra'] [u'drink', u'driver', u'escap', u'jail', u'term'] [u'miss', u'dead', u'bushfir'] [u'emerg', u'chief', u'inspect', u'damag'] [u'timor', u'nation', u'compani'] [u'european', u'wasp', u'nest', u'alic', u'spring'] [u'expert', u'warn', u'whoop', u'cough', u'epidem'] [u'farmer', u'forc', u'kill', u'stock', u'injur', u'fire'] [u'farmer', u'welcom', u'darl', u'river', u'flow'] [u'feder', u'open', u'kooyong', u'account'] [u'fiji', u'militari', u'challeng', u'govt', u'coup', u'fallout'] [u'firefight', u'battl', u'balmor', u'blaze'] [u'firm', u'audit', u'tsunami', u'relief', u'effort'] [u'gale', u'claim', u'kent', u'wooden', u'fielder'] [u'gallop', u'stick', u'state', u'issu'] [u'gaze', u'celebr', u'style'] [u'gerrard', u'give', u'liverpool', u'leagu', u'edg'] [u'giant', u'bank', u'import'] [u'govt', u'council', u'work', u'eros'] [u'govt', u'boost', u'flower', u'festiv', u'fund'] [u'govt', u'stand', u'highway', u'upgrad', u'plan'] [u'govt', u'follow', u'nation', u'trauma', u'centr'] [u'govt', u'urg', u'stop', u'crop', u'trial'] [u'govt', u'warn', u'travel', u'aceh'] [u'grandstand', u'destroy'] [u'grazier', u'face', u'jail', u'land', u'clear', u'case'] [u'group', u'call', u'councillor', u'code', u'conduct'] [u'group', u'seek', u'explan', u'indigen'] [u'harvey', u'norman', u'sale', u'growth', u'cool'] [u'hast', u'back', u'australia', u'celebr'] [u'heart', u'scrap', u'tynecastl', u'sale', u'liverpool', u'everton'] [u'hewitt', u'molik', u'lead', u'sydney', u'charg'] [u'hewitt', u'sydney', u'quarter'] [u'hickss', u'lawyer', u'claim', u'doubl', u'standard'] [u'high', u'demand', u'forc', u'colleg', u'close', u'cours'] [u'homicid', u'squad', u'investig', u'toronto', u'man', u'death'] [u'host', u'activ', u'australia'] [u'hotel', u'truck', u'crash', u'block', u'highway'] [u'howard', u'sadden', u'bushfir'] [u'hunter', u'valley', u'win', u'fetch', u'dollar'] [u'hussey', u'readi', u'answer', u'duti'] [u'indonesia', u'give', u'foreign', u'troop', u'exit', u'deadlin'] [u'injur', u'wilkinson', u'desper', u'tour', u'zealand'] [u'insur', u'compani', u'centr', u'storm'] [u'iraqi', u'plan', u'boost', u'secur', u'forc'] [u'itali', u'prepar', u'euro'] [u'johansson', u'underlin', u'slam', u'credenti'] [u'jone', u'name', u'squad'] [u'katich', u'clark', u'doubt'] [u'labor', u'launch', u'elect', u'blitz'] [u'landown', u'urg', u'control', u'locust', u'number'] [u'latham', u'consid', u'futur'] [u'council', u'urg', u'govt', u'leav', u'habib'] [u'lawyer', u'urg', u'govt', u'bring', u'hick', u'home'] [u'leather', u'compani', u'sell', u'oper'] [u'lobster', u'compani', u'confid', u'futur'] [u'local', u'fishermen', u'help', u'rebuild', u'fish', u'industri'] [u'dead', u'woman', u'injur', u'collis'] [u'jail', u'internet', u'bank', u'scam'] [u'kill', u'crash', u'adelong', u'hotel'] [u'masur', u'target', u'scud', u'davi'] [u'memori', u'servic', u'celebr', u'makgatho', u'mandela', u'life'] [u'mildura', u'sport', u'centr', u'creditor', u'miss'] [u'molik', u'stosur', u'continu', u'form'] [u'mountain', u'road', u'repair', u'start'] [u'call', u'gordon', u'estat', u'complaint'] [u'call', u'surf', u'lifesav', u'fund'] [u'stromlo', u'assist', u'space', u'blob', u'research'] [u'musician', u'miriam', u'hyde', u'die', u'age'] [u'narromin', u'offer', u'practic', u'help', u'tsunami'] [u'nasa', u'comet', u'probe', u'launch'] [u'neighbour', u'take', u'wind', u'develop', u'sail'] [u'mobil', u'shake', u'dial'] [u'plastic', u'help', u'surgeon', u'rebuild', u'face'] [u'nicorett', u'gold', u'coast'] [u'dead', u'fire'] [u'apolog', u'habib'] [u'northern', u'cyclon', u'watch'] [u'brace', u'bushfir', u'condit'] [u'central', u'coast', u'control'] [u'danger', u'continu', u'day'] [u'govt', u'fail', u'upgrad', u'danger', u'intersect'] [u'govt', u'readi', u'habib', u'return', u'carr'] [u'jail', u'assault', u'bundaberg', u'polic'] [u'offer', u'help', u'crew'] [u'plan', u'exclus', u'zone', u'dolphin'] [u'face', u'doctor', u'shortag'] [u'sniffer', u'dog', u'drug', u'bust'] [u'price', u'bubbl', u'higher'] [u'spill', u'follow', u'fatal', u'truck', u'crash'] [u'oil', u'silverchair', u'star', u'tsunami'] [u'ombudsman', u'reject', u'robertss', u'claim', u'lose', u'record'] [u'overwhelm', u'respons', u'tsunami', u'appeal'] [u'pakistan', u'bat', u'adelaid'] [u'pakistan', u'snatch', u'thrill'] [u'parent', u'program', u'prove', u'popular'] [u'peopl', u'urg', u'comment', u'coal', u'expans'] [u'picker', u'accommod', u'shortag', u'anger', u'grape', u'grower'] [u'suspend', u'abus', u'victim', u'repay'] [u'polic', u'dismiss', u'sight', u'miss'] [u'polic', u'pleas', u'great', u'southern', u'driver', u'conduct'] [u'polic', u'prepar', u'dismantl', u'forest', u'blockad'] [u'polic', u'question', u'suspect', u'secur', u'guard'] [u'polic', u'search', u'miss', u'fire'] [u'polic', u'urg', u'calm', u'miss'] [u'power', u'storm', u'kill'] [u'explor', u'mission', u'fail'] [u'marin', u'expert', u'help', u'rehabilit', u'maldiv'] [u'predict', u'budget', u'surplus'] [u'rain', u'eas', u'drought', u'condit'] [u'realiti', u'brother', u'greer'] [u'region', u'polic', u'chang', u'work', u'focus'] [u'report', u'urg', u'care', u'mobil', u'phone'] [u'retail', u'drag', u'ord'] [u'rich', u'jump', u'hospit', u'queue', u'opposit'] [u'rough', u'sea', u'forc', u'suspens', u'coast', u'search'] [u'roxon', u'fear', u'latham', u'sick', u'damag', u'labor'] [u'rumsfeld', u'dismiss', u'salvador', u'option', u'iraq'] [u'russian', u'repriev', u'public', u'beer'] [u'russian', u'wonder', u'happen', u'general', u'winter'] [u'santo', u'end', u'explor', u'hand'] [u'scientist', u'review', u'ramp', u'propos'] [u'second', u'death', u'hit', u'dakar', u'race'] [u'sharon', u'congratul', u'abba'] [u'softwar', u'firm', u'sue'] [u'spray', u'man', u'arrest'] [u'state', u'dental', u'health', u'western', u'mediev'] [u'steam', u'second', u'engin', u'refurbish'] [u'stosur', u'continu', u'form'] [u'student', u'deter', u'orang', u'campus', u'transfer'] [u'submiss', u'seek', u'public', u'boatsh'] [u'sudan', u'peac', u'pact', u'fail', u'stop', u'darfur', u'violenc'] [u'tamworth', u'water', u'restrict', u'continu'] [u'crew', u'fight', u'grass', u'fire'] [u'distilleri', u'export', u'vodka', u'russia'] [u'deliber'] [u'heritag', u'council', u'approv', u'develop'] [u'tasmanian', u'rememb', u'tsunami', u'dead', u'friday'] [u'team', u'head', u'lanka', u'assess', u'damag'] [u'team', u'save', u'burn', u'livestock'] [u'teen', u'fall', u'metr'] [u'temperatur', u'soar', u'south', u'east'] [u'tennant', u'dengu', u'inspect', u'continu'] [u'thailand', u'seek', u'speed', u'tsunami', u'recoveri', u'effort'] [u'theft', u'prompt', u'review', u'secur'] [u'court', u'drug'] [u'kill', u'miss', u'landslid'] [u'toddler', u'drown', u'belconnen', u'pool'] [u'tori', u'websit', u'conserv'] [u'tourist', u'escap', u'crash', u'minor', u'injuri'] [u'tour', u'worth', u'armstrong', u'doesnt', u'ride'] [u'travel', u'compani', u'appoint', u'administr'] [u'trust', u'believ', u'water', u'restrict', u'sustain'] [u'trust', u'propos', u'altern', u'tourist', u'tram', u'rout'] [u'tsunami', u'death', u'toll', u'revis'] [u'tsunami', u'leav', u'thousand', u'place'] [u'tsunami', u'boost', u'prawn', u'sale'] [u'brother', u'charg', u'secur', u'guard', u'death'] [u'wound', u'gaza', u'explos'] [u'guantanamo', u'detaine', u'free'] [u'univers', u'flat', u'rippl'] [u'turn', u'donor', u'attent', u'forget', u'crise'] [u'firm', u'portman'] [u'market', u'dip', u'amid', u'negat', u'profit', u'report'] [u'soldier', u'kill', u'western', u'iraq'] [u'vedder', u'grohl', u'tenaci', u'play', u'benefit'] [u'crew', u'continu', u'bushfir', u'battl'] [u'seek', u'rais', u'fund', u'vessel'] [u'admit', u'lack', u'offend', u'placement', u'protocol'] [u'nurs', u'seek', u'action', u'disput'] [u'opposit', u'promis', u'finish', u'freeway', u'extens'] [u'warn', u'murali', u'team', u'world'] [u'weather', u'chang', u'help', u'firefight', u'effort'] [u'webber', u'scorch', u'test', u'track'] [u'search', u'iraq', u'report'] [u'woman', u'good', u'behaviour', u'bond', u'centrelink', u'fraud'] [u'youth', u'charg', u'attack', u'train'] [u'zimbabw', u'press', u'regul'] [u'aceh', u'rebel', u'seek', u'ceas', u'talk'] [u'offer', u'help', u'bushfir', u'clean'] [u'agassi', u'injuri', u'crisi'] [u'aircraft', u'join', u'battl', u'fire'] [u'alleg', u'satellit', u'dish', u'bomber', u'court'] [u'annan', u'call', u'decis', u'action', u'climat', u'chang'] [u'anti', u'forestri', u'protest', u'blockad', u'weld', u'valley', u'road'] [u'assess', u'wetland', u'polici', u'welcom'] [u'atletico', u'fin', u'race', u'chant'] [u'aussi', u'ref', u'chase', u'world', u'spot'] [u'australia', u'romp', u'histor'] [u'australian', u'diver', u'bodi', u'recov', u'south', u'africa'] [u'burn', u'start', u'contain', u'west'] [u'box', u'promot', u'king', u'sue', u'espn'] [u'british', u'unveil', u'billion', u'dollar', u'plan', u'fight'] [u'broadband', u'plan', u'concern', u'radio', u'ham'] [u'bushfir', u'smoke', u'waft', u'melbourn'] [u'bushfir', u'team', u'talli', u'damag'] [u'caller', u'confirm', u'mount', u'osmond', u'deliber'] [u'chines', u'interest', u'hope', u'rail', u'boost'] [u'clark', u'volunt', u'fire', u'line'] [u'cloth', u'furnitur', u'donat', u'victim'] [u'coal', u'strategi', u'secur', u'industri'] [u'comet', u'crasher', u'probe', u'solar', u'system', u'origin'] [u'communiti', u'drive', u'tsunami', u'appeal', u'success', u'mayor'] [u'concern', u'express', u'skill', u'shortag'] [u'construct', u'start', u'gympi', u'polic', u'station'] [u'coria', u'auckland', u'open'] [u'council', u'consid', u'tough', u'water', u'control'] [u'councillor', u'donat', u'wag', u'tsunami', u'appeal'] [u'court', u'adjourn', u'policeman', u'neglig', u'drive', u'case'] [u'crash', u'pilot', u'suffer', u'heart', u'attack'] [u'crew', u'hope', u'contain', u'western', u'blaze'] [u'cricket', u'plan', u'walk', u'gall', u'relief', u'fund'] [u'crow', u'exhibit', u'innat', u'abil', u'tool'] [u'cyclon', u'kerri', u'move', u'slowli', u'south'] [u'cyclon', u'kerri', u'cross', u'coast', u'tomorrow'] [u'davenport', u'pull', u'send', u'stosur'] [u'death', u'toll', u'landslid', u'rise'] [u'dent', u'forc', u'sydney'] [u'depardieu', u'quiz', u'link', u'fugit', u'businessman'] [u'villier', u'post', u'stage', u'dakar', u'mourn', u'meoni'] [u'dodemaid', u'back', u'evolut'] [u'predict', u'citrus', u'restrict', u'lift', u'march'] [u'driver', u'escap', u'road', u'train', u'accid', u'minor'] [u'driver', u'charg', u'drug', u'offenc', u'roadsid'] [u'driver', u'death', u'prompt', u'fresh', u'call', u'intersect'] [u'dulko', u'hobart', u'final'] [u'ecstasi', u'dealer', u'place', u'good', u'behaviour', u'bond'] [u'engin', u'frustrat', u'aceh', u'secur'] [u'fairfax', u'assess', u'option', u'purchas'] [u'fairfax', u'quiet', u'network', u'rumour'] [u'fals', u'emerg', u'alarm', u'frustrat', u'author'] [u'famili', u'unharm', u'drive', u'shoot'] [u'farmer', u'receiv', u'assist', u'follow', u'sever'] [u'feder', u'govt', u'back', u'leve', u'bank', u'upgrad'] [u'feder', u'davenport', u'name', u'seed', u'open'] [u'fesa', u'urg', u'communiti', u'prepar', u'season'] [u'firefight', u'hope', u'bring', u'hobart', u'blaze'] [u'firefight', u'work', u'contain', u'great', u'lake', u'blaze'] [u'servic', u'fear', u'danger', u'season'] [u'fish', u'trawler', u'tow', u'safe', u'hervey'] [u'plead', u'guilti', u'burn', u'chicken'] [u'flintoff', u'bowl', u'fourth', u'test'] [u'forecast', u'warn', u'kerri', u'erod', u'beach'] [u'fergi', u'assist', u'line', u'sydney', u'post'] [u'head', u'bail', u'condit', u'modifi'] [u'fossil', u'fuel', u'cut', u'warm', u'earth'] [u'fossil', u'prove', u'mammal', u'lunch', u'babi', u'dinosaur'] [u'foster', u'renew', u'southcorp', u'specul'] [u'foul', u'smell', u'put', u'griffith', u'resid', u'nose'] [u'palestinian', u'isra', u'dead'] [u'fourth', u'bird', u'death', u'vietnam'] [u'gallop', u'reluct', u'wish', u'latham'] [u'gilchrist', u'hint', u'warn', u'return'] [u'gilchrist', u'sceptic', u'futur'] [u'gloucest', u'grant', u'improv', u'local', u'busi', u'websit'] [u'govern', u'tripl', u'fund', u'contribut'] [u'govt', u'ask', u'reassur', u'race', u'develop'] [u'govt', u'ask', u'industri', u'pitch', u'technic'] [u'govt', u'fund', u'fish', u'count'] [u'govt', u'discuss', u'habib', u'transfer'] [u'govt', u'face', u'nation', u'water', u'shortag'] [u'griev', u'mother', u'flower', u'tsunami', u'memori'] [u'health', u'servic', u'announc', u'execut'] [u'heritag', u'bodi', u'condit', u'approv', u'smith'] [u'hewitt', u'continu', u'sydney', u'titl', u'push'] [u'hewitt', u'sydney', u'semi'] [u'high', u'tech', u'surveil', u'gambier', u'prison'] [u'highway', u'wire', u'rope', u'barrier'] [u'hiker', u'warn', u'grampian', u'danger'] [u'hmas', u'kanimbla', u'arriv', u'banda', u'aceh'] [u'homecom', u'lucki', u'tourist'] [u'hong', u'kong', u'polic', u'seek', u'cash', u'wield', u'stranger'] [u'hous', u'livestock', u'lose'] [u'hubbl', u'help', u'astronom', u'star', u'hatcheri'] [u'hunter', u'hors', u'fetch', u'dollar', u'magic', u'million'] [u'indonesia', u'say', u'relief', u'effort', u'go'] [u'indonesia', u'send', u'troop', u'aceh'] [u'industri', u'experi', u'fast', u'track', u'program'] [u'inquiri', u'examin', u'support', u'option', u'depress'] [u'investor', u'confid', u'record', u'high'] [u'iranian', u'judiciari', u'summon', u'nobel', u'laureat'] [u'iran', u'school', u'kill'] [u'iraqi', u'minist', u'resign', u'protest'] [u'find', u'childcar', u'worker', u'deserv', u'rise'] [u'provid', u'need', u'servic', u'region', u'allianc'] [u'jakarta', u'readi', u'talk', u'aceh', u'rebel'] [u'jobless', u'rate', u'hit', u'histor'] [u'judd', u'sign', u'eagl'] [u'juventus', u'snap', u'chelsea', u'discard', u'mutu'] [u'kalgoorli', u'tourist', u'centr', u'state'] [u'kanimbla', u'arriv', u'aceh', u'today'] [u'kiss', u'offend', u'delay', u'sentenc', u'hear'] [u'laser', u'spark', u'sunshin', u'coast', u'airport', u'alert'] [u'latham', u'stay', u'despit', u'ill'] [u'lender', u'assess', u'tsunami', u'damag', u'tamil', u'area'] [u'lifesav', u'report', u'posit', u'start', u'smoke'] [u'liquid', u'consid', u'creeda', u'sell'] [u'littl', u'support', u'nationwid', u'speed', u'penalti'] [u'lobbi', u'group', u'demand', u'tight', u'safeti', u'check'] [u'log', u'resum', u'protest', u'arrest'] [u'arrest', u'camp', u'brawl'] [u'critic', u'condit', u'adelaid', u'court'] [u'mareeba', u'fear', u'dead', u'thailand', u'arriv', u'home'] [u'mayor', u'deni', u'councillor', u'influenc'] [u'measur', u'protect', u'urangan', u'beach', u'eros'] [u'mental', u'health', u'profession', u'urg', u'tsunami'] [u'merg', u'health', u'servic', u'restructur', u'workforc'] [u'motiv', u'hospit', u'break', u'unknown'] [u'back', u'govern', u'aborigin', u'trust'] [u'confid', u'albani', u'justic', u'complex', u'proceed'] [u'urg', u'fair', u'latham'] [u'sling', u'begin', u'elect', u'campaign'] [u'sydney', u'council', u'name'] [u'declar', u'ban'] [u'govt', u'defend', u'hospit', u'queue', u'jumper'] [u'govt', u'support', u'local', u'council', u'noxious', u'weed'] [u'opposit', u'rais', u'speed', u'camera', u'concern'] [u'prepar', u'bushfir', u'risk'] [u'film', u'maker', u'shine', u'sundanc'] [u'offici', u'count', u'cost', u'fire'] [u'price', u'rise'] [u'oneil', u'battl', u'celtic', u'star'] [u'oneil', u'resign'] [u'opposit', u'join', u'mental', u'health', u'debat'] [u'palestinian', u'kill', u'take', u'pregnant', u'woman'] [u'pari', u'club', u'agre', u'tsunami', u'debt', u'freez'] [u'peak', u'bodi', u'investig', u'hostel', u'escap', u'claim'] [u'polic', u'inform', u'man', u'assault'] [u'polic', u'incur', u'credit', u'card', u'fee'] [u'polic', u'investig', u'hospit', u'mismanag', u'claim'] [u'polic', u'investig', u'tweed', u'crash'] [u'polic', u'seek', u'oper', u'murder', u'suspect'] [u'polic', u'mull', u'grind', u'search', u'miss', u'tourist'] [u'polic', u'probe', u'death', u'local', u'crime', u'figur'] [u'polic', u'promis', u'inquiri'] [u'polic', u'seek', u'help', u'investig', u'hotel'] [u'polic', u'seek', u'wit', u'dubbo', u'shoot'] [u'polic', u'suspect', u'miss', u'murder'] [u'poll', u'put', u'carr', u'govt', u'support', u'time'] [u'pope', u'guard', u'bemoan', u'mission', u'imposs'] [u'portman', u'takeov', u'talk', u'prompt', u'foreign', u'ownership'] [u'power', u'failur', u'black', u'kuala', u'lumpur'] [u'power', u'struggl', u'grip', u'scottish', u'rugbi'] [u'princ', u'harri', u'apologis', u'nazi', u'fanci', u'dress'] [u'princip', u'train', u'program', u'opposit'] [u'prison', u'commiss', u'control', u'room'] [u'prostat', u'cancer', u'treatment', u'make', u'bone', u'brittl'] [u'public', u'help', u'seek', u'solv', u'fire', u'tasmania'] [u'wine', u'toast', u'korea'] [u'racq', u'anger', u'toowoomba', u'high', u'fuel', u'price'] [u'regul', u'prostitut', u'law', u'finalis'] [u'road', u'rage', u'leav', u'hospit'] [u'rower', u'begin', u'peru', u'tahiti', u'journey'] [u'russian', u'billionair', u'give', u'yuko', u'share'] [u'safeti', u'campaign', u'warn', u'railway', u'cross'] [u'sale', u'magic', u'million', u'auction'] [u'saudi', u'dissid', u'sentenc', u'prison', u'lash'] [u'schumach', u'love'] [u'scientist', u'urg', u'govt', u'weed', u'concern'] [u'scud', u'open'] [u'second', u'hospit', u'cut', u'surgeri'] [u'secur', u'scare', u'see', u'bind', u'plane', u'turn'] [u'shark', u'spotter', u'govern', u'fund'] [u'shell', u'refineri', u'leak', u'control'] [u'shoaib', u'seri', u'inzamam'] [u'celebr', u'mileston'] [u'skandia', u'skipper', u'sue', u'hydraul', u'failur'] [u'speed', u'cost', u'darwin', u'licenc'] [u'spielberg', u'bring', u'lincoln', u'biopic', u'screen'] [u'spiritu', u'vital', u'indigen', u'health'] [u'sprint', u'test', u'measur', u'cane', u'toad', u'toxic'] [u'lankan', u'envoy', u'deni', u'tamil', u'claim'] [u'lankan', u'militari', u'stop', u'deliveri', u'tamil'] [u'sting', u'send', u'thailand', u'world'] [u'stock', u'rise', u'despit', u'balloon', u'trade', u'deficit'] [u'strauss', u'notch', u'protea', u'toil'] [u'studi', u'show', u'busi', u'support', u'port', u'expans'] [u'sudanes', u'presid', u'promis', u'peac', u'darfur'] [u'support', u'gallop', u'govern', u'drop'] [u'support', u'swing'] [u'takeov', u'specul', u'fail', u'market'] [u'teenag', u'plead', u'guilti', u'light', u'bushfir'] [u'tenni', u'unit', u'rais', u'tsunami', u'cash'] [u'tenterfield', u'look', u'fluorid', u'water', u'suppli'] [u'thailand', u'seek', u'diver', u'pick', u'fall', u'reef'] [u'thatcher', u'plead', u'guilti', u'coup', u'role'] [u'thatcher', u'admit', u'coup', u'role', u'sourc', u'say'] [u'escap', u'dickson', u'hous'] [u'time', u'govt', u'admit', u'mistak', u'labor'] [u'toddler', u'drown', u'prompt', u'supervis'] [u'tree', u'lopper', u'admit', u'threaten', u'group', u'chainsaw'] [u'tribe', u'protector', u'demand', u'journalist', u'surrend'] [u'tsunami', u'project', u'increas', u'opportun'] [u'tsunami', u'predict', u'impoverish', u'million'] [u'tsunami', u'warn'] [u'turk', u'kidnap', u'seven', u'employe', u'kill'] [u'iraqi', u'shiit', u'cleric', u'aid', u'kill'] [u'uncompetit', u'gold', u'coast', u'cost', u'local', u'motorist'] [u'unit', u'hold', u'chelsea'] [u'give', u'hunt', u'iraq'] [u'pressur', u'indonesia', u'bashir', u'jail'] [u'vandal', u'target', u'tamworth', u'school'] [u'victorian', u'ask', u'donat', u'sperm'] [u'vietnames', u'fishermen', u'kill', u'territori', u'disput'] [u'doctor', u'send', u'suppli', u'lanka'] [u'warn', u'consid', u'world', u'comeback', u'pont'] [u'surf', u'break', u'close', u'crayfish', u'trawler'] [u'swimmer', u'warn', u'danger', u'condit'] [u'water', u'restrict', u'remain', u'ballarat'] [u'webber', u'fastest'] [u'west', u'indi', u'deserv', u'respect', u'say', u'pont'] [u'william', u'brim', u'confid', u'ahead', u'open'] [u'expect', u'strong'] [u'xstrata', u'sharehold', u'meet', u'takeov'] [u'youth', u'bail', u'assault', u'year'] [u'soldier', u'colombian', u'helicopt', u'crash'] [u'weed', u'erad', u'list'] [u'actu', u'fear', u'child', u'care', u'rise', u'hurt', u'parent'] [u'woman', u'help', u'bushfir', u'recoveri', u'centr'] [u'adelaid', u'dethron', u'king'] [u'administr', u'beat', u'nation', u'trust', u'futur'] [u'african', u'refuge', u'bind', u'australia'] [u'agassi', u'test', u'injur', u'practic', u'match'] [u'albani', u'group', u'put', u'forward', u'altern', u'hospit', u'site'] [u'albani', u'resid', u'mark', u'tsunami', u'remembr'] [u'alic', u'spring', u'magistr', u'pleas', u'appeal'] [u'risk', u'riot', u'rodeo'] [u'altern', u'water', u'sourc', u'actew'] [u'annan', u'appoint', u'special', u'envoy', u'tsunami', u'relief'] [u'arson', u'suspect', u'spate'] [u'asian', u'tsunami', u'toll', u'reach'] [u'asic', u'mull', u'vessel', u'buyout', u'tsunami', u'victim'] [u'attack', u'forc', u'gaza', u'cross', u'closur'] [u'aussi', u'motorcyclist', u'win', u'second', u'dakar', u'stage'] [u'australia', u'record', u'histor'] [u'australia', u'face', u'execut', u'skill', u'shortag'] [u'australia', u'grab', u'wicket', u'lara'] [u'australian', u'open', u'celebr', u'year'] [u'australian', u'need', u'tsunami', u'victim'] [u'australian', u'telescop', u'track', u'huygen', u'descent'] [u'australia', u'tsunami', u'death', u'toll', u'rise'] [u'australia', u'thrash', u'windi', u'seri', u'open'] [u'burn', u'continu', u'grampian', u'blaze'] [u'ball', u'gam', u'court', u'govern', u'make', u'contact'] [u'bank', u'outlook', u'drag', u'market'] [u'bendigo', u'servic', u'rememb', u'tsunami', u'victim'] [u'bevan', u'lead'] [u'biki', u'link', u'suspect', u'mogriguy', u'shoot'] [u'bomb', u'threat', u'jakarta', u'embassi'] [u'boot', u'scooter', u'converg', u'tamworth'] [u'britain', u'lower', u'tsunami', u'toll'] [u'british', u'embassi', u'bomb', u'threat', u'hoax'] [u'bundaberg', u'leak', u'prompt', u'evacu'] [u'bushfir', u'victim', u'receiv', u'gratia', u'payment'] [u'calcul', u'risk', u'let', u'prison', u'attend', u'daughter'] [u'caldecott', u'win', u'second', u'dakar', u'stage'] [u'park', u'decis', u'anger', u'cabarita', u'resid'] [u'car', u'impound', u'wollongong', u'street', u'race'] [u'cataract', u'gorg', u'host', u'extrem', u'kayak', u'event'] [u'chainsaw', u'vandal', u'trash', u'access', u'bridg'] [u'chariti', u'promis', u'account', u'tsunami'] [u'contract', u'problem', u'blame', u'station', u'construct'] [u'cooler', u'weather', u'help', u'boost', u'hunter', u'tourism', u'say'] [u'cosgrov', u'say', u'aceh', u'deadlin', u'concern'] [u'council', u'announc', u'australia', u'program'] [u'council', u'servic', u'reflect', u'tsunami', u'tragedi'] [u'council', u'urg', u'affect', u'landhold', u'seek'] [u'cowra', u'investig', u'emerg', u'water', u'suppli', u'option'] [u'bundaberg', u'campus', u'regist', u'decreas', u'offer'] [u'cray', u'fishermen', u'protest', u'surf', u'break', u'ban'] [u'cream', u'world', u'soccer', u'play', u'tsunami', u'benefit'] [u'czink', u'advanc', u'canberra', u'final'] [u'darl', u'flow', u'wilcannia'] [u'darwin', u'troop', u'threat', u'aceh'] [u'detect', u'head', u'tourist', u'search'] [u'down', u'power', u'line', u'hinder', u'driver', u'escap'] [u'driver', u'escap', u'train'] [u'condit', u'prompt', u'bushfir', u'warn'] [u'dubbo', u'doctor', u'quit', u'frustrat'] [u'elect', u'delay', u'nurs', u'disput'] [u'push', u'hear'] [u'eurobodalla', u'water', u'woe', u'draw', u'govt', u'respons'] [u'father', u'brother', u'visit'] [u'feder', u'beat'] [u'feder', u'face', u'roddick', u'kooyong', u'final'] [u'final', u'challeng', u'ukrain', u'poll', u'file'] [u'caus', u'traffic', u'delay', u'pacif', u'highway'] [u'destroy', u'more', u'home'] [u'firefight', u'continu', u'battl', u'southern', u'blaze'] [u'firefight', u'contain', u'grampian', u'blaze', u'overnight'] [u'victim', u'mother', u'tell', u'heartbreak'] [u'year', u'girl', u'latest', u'dakar', u'ralli', u'death'] [u'folk', u'gather', u'tamar', u'valley', u'festiv'] [u'financ', u'offic', u'jail', u'chariti', u'theft'] [u'arrest', u'simultan', u'drug', u'raid'] [u'honolulu', u'flounder'] [u'wicket', u'ntini', u'rock', u'england', u'gloom'] [u'fruit', u'treatment', u'caus', u'concern'] [u'fume', u'incid', u'prompt', u'smelter', u'investig'] [u'gallop', u'defend', u'health', u'polici'] [u'gaza', u'milit', u'defi', u'peac'] [u'general', u'cheer', u'andaman', u'island', u'relief', u'effort'] [u'gerrard', u'demand', u'improv', u'unit'] [u'gold', u'coast', u'teen', u'win', u'gold', u'pac'] [u'gold', u'coast', u'return', u'aceh', u'devast'] [u'gondola', u'leav', u'high', u'venic'] [u'governor', u'tour', u'zone', u'burn', u'continu'] [u'govt', u'pledg', u'elder', u'home'] [u'grant', u'fund', u'tropic', u'research', u'laboratori'] [u'grind', u'search', u'continu', u'miss', u'tourist'] [u'group', u'welcom', u'barrington', u'top', u'rule'] [u'group', u'welcom', u'surg', u'tourism'] [u'grower', u'hope', u'lift', u'grape', u'price'] [u'gunnedah', u'hospit', u'close', u'chemic', u'scare'] [u'gunn', u'invest', u'fingal', u'valley', u'properti'] [u'haqu', u'restrict', u'zimbabw', u'second', u'test'] [u'hervey', u'teen', u'charg', u'tsunami', u'fraud'] [u'hervey', u'hold', u'memori', u'servic', u'tsunami'] [u'hewitt', u'bigger', u'meaner'] [u'hewitt', u'fight'] [u'hewitt', u'racquet', u'rais', u'money', u'tsunami', u'appeal'] [u'hewitt', u'stosur', u'sydney', u'final'] [u'hewitt', u'sydney', u'final'] [u'high', u'commiss', u'staff', u'rob', u'fiji'] [u'holiday', u'period', u'see', u'rise', u'prison', u'contraband'] [u'weather', u'news', u'servic'] [u'hypertens', u'case', u'increas', u'year'] [u'indigen', u'star', u'ooz', u'talent', u'say', u'long'] [u'indigen', u'star', u'ooz', u'talent', u'say', u'long'] [u'indonesia', u'want', u'perman', u'ceas', u'rebel'] [u'interim', u'bushfir', u'plan', u'releas'] [u'ioc', u'appeal', u'reject'] [u'isra', u'coalit', u'bolster', u'peac', u'process', u'abba'] [u'skier', u'drown'] [u'judd', u'stay', u'eagl', u'nest'] [u'kabbalah', u'centr', u'holocaust'] [u'kimberley', u'archiv', u'project', u'gain', u'support'] [u'kimberley', u'servic', u'mourn', u'tsunami', u'victim'] [u'kraft', u'pull', u'aim', u'kid'] [u'kyabram', u'sieg', u'end', u'peac'] [u'labor', u'look', u'depos', u'latham'] [u'lake', u'wetherel', u'remain', u'close'] [u'land', u'sale', u'expect', u'eas', u'snowi', u'hous', u'pressur'] [u'languag', u'teacher', u'vote', u'offer', u'week'] [u'latham', u'didnt', u'plan', u'reveal', u'ill'] [u'latham', u'sign', u'red'] [u'latham', u'successor', u'talk', u'respons'] [u'lawyer', u'seek', u'accompani', u'habib', u'home'] [u'leav', u'harri', u'fergi', u'say'] [u'lightn', u'caus', u'fire'] [u'littl', u'know', u'iraqi', u'group', u'claim', u'cleric', u'kill'] [u'llewellyn', u'focus', u'health', u'portfolio', u'opposit'] [u'locust', u'spray', u'risk', u'export', u'agforc', u'warn'] [u'lowan', u'tour', u'region'] [u'arrest', u'water', u'rage', u'incid'] [u'meninde', u'region', u'record', u'tourism', u'boom'] [u'north', u'coast', u'share', u'disast', u'mitig', u'fund'] [u'miller', u'profit', u'warn', u'cut', u'stock', u'valu'] [u'mine', u'group', u'reject', u'foreign', u'ownership', u'critic'] [u'miss', u'tourist', u'behaviour', u'unusu'] [u'mobil', u'phone', u'stalk', u'rise', u'polic'] [u'molik', u'hewitt', u'boost', u'open', u'draw'] [u'molik', u'hewitt', u'stosur', u'prepar', u'face', u'heat'] [u'molik', u'set', u'australian', u'final'] [u'molik', u'shoulder', u'weight', u'expect'] [u'morient', u'wrap', u'liverpool'] [u'motorist', u'save', u'monto', u'accid'] [u'mourinho', u'face', u'wrath', u'fergi'] [u'offer', u'pick', u'fundrais'] [u'seek', u'certainti', u'health', u'servic', u'amalgam'] [u'network', u'reveal', u'testimoni', u'jackson', u'case'] [u'feral', u'bait', u'develop'] [u'kill', u'russian', u'plane', u'crash'] [u'korea', u'resum', u'nuclear', u'talk'] [u'norseman', u'polic', u'increas', u'beat'] [u'locust', u'threaten', u'victoria'] [u'polic', u'shoot', u'break'] [u'polic', u'welcom', u'home', u'phuket'] [u'telescop', u'play', u'role', u'space', u'probe'] [u'offic', u'shoot', u'sydney', u'jewel', u'robberi'] [u'opinion', u'poll', u'cost', u'latham', u'leadership', u'alli'] [u'opposit', u'defend', u'privat', u'health', u'care', u'comment'] [u'palm', u'island', u'bail', u'applic', u'adjourn'] [u'payrol', u'increas', u'fuel', u'region', u'fear'] [u'physic', u'attack', u'rise'] [u'pitt', u'press', u'confer', u'japanes', u'eye'] [u'polar', u'bear', u'count', u'find', u'arctic', u'europ'] [u'polic', u'appeal', u'inform', u'miss'] [u'polic', u'hunt', u'suspect', u'agn', u'water', u'death'] [u'polic', u'investig', u'belconnen', u'death'] [u'policeman', u'courag', u'prais', u'melbourn', u'chase'] [u'polic', u'return', u'tsunami', u'mission'] [u'polic', u'seiz', u'worth', u'ecstasi'] [u'port', u'hedland', u'second', u'polic', u'station'] [u'plate', u'fasten', u'caus', u'dashboard', u'burn'] [u'princ', u'harri', u'rule', u'auschwitz', u'visit'] [u'probe', u'make', u'descent', u'titan'] [u'project', u'shed', u'light', u'coastal', u'water', u'qualiti'] [u'protea', u'strauss', u'centuri'] [u'banana', u'tip', u'compet', u'lismor', u'market'] [u'survey', u'household', u'spend', u'habit'] [u'prepar', u'western', u'fire'] [u'road', u'fatal', u'figur', u'drop'] [u'rochus', u'gonzalez', u'meet', u'auckland', u'final'] [u'fire', u'devast', u'nativ', u'speci'] [u'grant', u'help', u'develop', u'loxton', u'riverfront'] [u'sale', u'hospit', u'clear', u'financi', u'mismanag'] [u'serial', u'rapist', u'link', u'attack'] [u'shark', u'warn', u'issu', u'fleurieu', u'peninsula'] [u'kill', u'taliban', u'attack'] [u'south', u'burnett', u'begin', u'vintag', u'harvest'] [u'stock', u'lose', u'grind', u'price', u'jump'] [u'strawberri', u'field', u'forev'] [u'surfer', u'gather', u'mourn', u'tsunami', u'victim'] [u'swell', u'pump', u'cyclon', u'kerri', u'wont', u'cross'] [u'tasmanian', u'gather', u'rememb', u'tsunami', u'victim'] [u'teen', u'charg', u'sheep', u'kill'] [u'thai', u'tsunami', u'trauma', u'spark', u'foreign', u'ghost', u'sight'] [u'thousand', u'expect', u'riverland', u'rodeo'] [u'thousand', u'turn', u'coonawarra'] [u'timor', u'talk', u'seek', u'sunris', u'project', u'shelv'] [u'total'] [u'treatment', u'plant', u'address', u'water', u'qualiti', u'woe'] [u'troop', u'arriv', u'home', u'iraq'] [u'tsunami', u'effort', u'unit', u'australian', u'howard'] [u'tsunami', u'vessel', u'hit', u'shipwreck'] [u'museum', u'return', u'indigen', u'remain'] [u'underground', u'cabl', u'failur', u'cut', u'shop', u'centr'] [u'union', u'warn', u'nurs', u'exodus', u'region', u'payment'] [u'nuclear', u'team', u'visit', u'iran'] [u'abus', u'undermin', u'intern', u'report'] [u'make', u'round', u'offer'] [u'support', u'aceh', u'exit', u'deadlin'] [u'wagga', u'hear', u'investig', u'polic', u'brutal'] [u'wait', u'list', u'tip', u'increas', u'theatr'] [u'nation', u'launch', u'elect'] [u'terrorist', u'jail', u'sentenc', u'uphold'] [u'wetland', u'blame', u'strong', u'smell'] [u'windi', u'chase'] [u'xstrata', u'sharehold'] [u'young', u'liber', u'reject', u'queensland', u'merger', u'plan'] [u'zheng', u'win', u'hobart', u'titl'] [u'zimbabw', u'bright', u'start', u'bangladesh'] [u'year', u'retriev', u'antarct'] [u'act', u'labor', u'leader', u'ask', u'privaci', u'latham'] [u'adelaid', u'darwin', u'railway', u'pull', u'weight'] [u'agassi', u'cours', u'aust', u'open'] [u'ancient', u'babylon', u'wreck', u'forc', u'british'] [u'annan', u'urg', u'iraqi', u'leader', u'encourag', u'sunni', u'vote'] [u'anxious', u'girlfriend', u'embassi', u'bomb', u'threat'] [u'arm', u'robber', u'target', u'food', u'store'] [u'atheist', u'lose', u'presidenti', u'prayer', u'protest'] [u'australia', u'play', u'role', u'titan', u'probe', u'mission'] [u'backburn', u'threat'] [u'bangladesh', u'haqu', u'youngest', u'seven'] [u'bichel', u'kill', u'blue', u'final', u'hop'] [u'bodi', u'iraqi', u'roadsid'] [u'britain', u'pledg', u'eas', u'develop', u'countri'] [u'licens', u'overhaul', u'crane', u'oper'] [u'canadian', u'politician', u'resign', u'stripperg'] [u'carr', u'urg', u'quick', u'resolut', u'leadership', u'woe'] [u'cash', u'boost', u'hobart', u'intern'] [u'cole', u'rule', u'spain', u'racial', u'abus'] [u'colombian', u'soldier', u'kill', u'sleep', u'comrad'] [u'consum', u'watchdog', u'record', u'festiv', u'period'] [u'council', u'uncertain', u'propos', u'tech', u'colleg'] [u'crew', u'contain', u'goulburn', u'bushfir'] [u'canio', u'salut', u'polit', u'racist', u'italian'] [u'driver', u'suspect', u'accident', u'start', u'fire'] [u'easi', u'blue'] [u'educ', u'minist', u'order', u'report', u'school'] [u'iraqi', u'kill', u'tank', u'collis'] [u'electr', u'worker', u'basslink', u'project', u'disput'] [u'seek', u'donat', u'fight', u'gunn'] [u'feder', u'beat', u'hewitt'] [u'feder', u'roll', u'roddick', u'kooyong', u'final'] [u'fergi', u'hit', u'mourinho'] [u'film', u'historian', u'unveil', u'year', u'soccer'] [u'chines', u'leader', u'coma'] [u'geraldton', u'control'] [u'geraldton', u'resid', u'evacu', u'bushfir', u'approach'] [u'gilchrist', u'gillespi', u'miss', u'dayer'] [u'gonzalez', u'captur', u'titl'] [u'govt', u'blame', u'brain', u'drain'] [u'govt', u'claim', u'deliveri', u'elect', u'indigen'] [u'govt', u'play', u'lobster', u'fish', u'ban'] [u'gravesen', u'complet', u'real', u'madrid'] [u'heidfeld', u'quicker', u'william', u'test'] [u'henman', u'quit', u'british', u'davi', u'team'] [u'hewitt', u'triumph', u'earli', u'scare'] [u'home', u'evacu', u'california', u'seep'] [u'hondo', u'check', u'bangladesh', u'haqu', u'clean'] [u'hondo', u'handl', u'bangladesh'] [u'hornsbi', u'train', u'station', u'upgrad'] [u'hundr', u'gather', u'funer', u'mandela'] [u'icac', u'investig', u'patient', u'inform'] [u'iceberg', u'collis', u'good', u'news', u'penguin'] [u'ierodiaconou', u'finish', u'second'] [u'indonesia', u'clarifi', u'aceh', u'relief', u'deadlin', u'comment'] [u'indonesia', u'seek', u'peac', u'talk', u'aceh', u'rebel'] [u'insur', u'urg', u'encourag', u'bushfir', u'safeti'] [u'iraqi', u'govern', u'announc', u'elect', u'secur'] [u'iraqi', u'prison', u'escap', u'ghraib', u'transfer'] [u'ivanov', u'win', u'canberra', u'classic'] [u'jazz', u'lover', u'ask', u'public', u'transport'] [u'kiwi', u'hold', u'nation', u'revamp', u'leagu', u'boss'] [u'labor', u'leav', u'downplay', u'latham', u'leadership', u'talk'] [u'lightn', u'strike', u'put', u'hospit'] [u'macklin', u'expect', u'latham', u'healthi', u'return'] [u'face', u'court', u'polic', u'chase'] [u'kill', u'coupl', u'serious', u'injur', u'collis'] [u'marley', u'remain', u'stay', u'jamaica'] [u'maruyama', u'grab', u'hawaii', u'lead', u'miss'] [u'mcewen', u'win', u'road', u'race', u'championship'] [u'melbourn', u'park', u'form', u'guid'] [u'molik', u'set', u'australian', u'final'] [u'molik', u'win', u'aussi', u'battl', u'sydney', u'crown'] [u'palestinian', u'presid', u'swear'] [u'danger', u'tsunami', u'region', u'fish'] [u'prison', u'time', u'teenag', u'counterfeit'] [u'north', u'casson', u'steer', u'warrior', u'victori'] [u'price', u'rise', u'suppli', u'worri'] [u'olymp', u'rower', u'break', u'silenc', u'slap', u'suspens'] [u'opposit', u'critic', u'yarra', u'river', u'health'] [u'opposit', u'leader', u'shock', u'bushfir', u'devast'] [u'opposit', u'seek', u'action', u'patient', u'record'] [u'pacifist', u'stage', u'anti', u'protest', u'bush'] [u'palestinian', u'presid', u'swear'] [u'polic', u'associ', u'prais', u'offic', u'action'] [u'polic', u'concern', u'miss'] [u'polic', u'continu', u'search', u'murder', u'firearm'] [u'polic', u'enlist', u'help', u'search', u'miss'] [u'polic', u'murder', u'weapon', u'roadsid'] [u'polic', u'python', u'crocodil', u'bondi', u'unit'] [u'polic', u'releas', u'murder', u'victim'] [u'princ', u'harri', u'reject', u'demand', u'apolog'] [u'safeti', u'equip', u'bind', u'china'] [u'road', u'histor', u'jetti', u'upgrad'] [u'victim', u'consid', u'legal', u'action'] [u'saturn', u'moon', u'probe', u'reveal', u'possibl', u'shorelin'] [u'schneider', u'take', u'golden', u'guitar'] [u'sharon', u'sever', u'contact', u'palestinian', u'govt'] [u'singapor', u'airlin', u'beef', u'flight', u'schedul'] [u'lankan', u'peac', u'hop', u'elev'] [u'supertrawl', u'ban', u'water'] [u'sweden', u'halv', u'number', u'miss', u'tsunami'] [u'sydney', u'kill', u'explos'] [u'tamworth', u'countri', u'music', u'festiv'] [u'thai', u'shop', u'kill'] [u'save', u'boat', u'blaze'] [u'tidbinbilla', u'lend', u'hand', u'titan', u'mission'] [u'titan', u'probe', u'transmit', u'data'] [u'trade', u'deleg', u'leader', u'die', u'darwin'] [u'agenc', u'celebr', u'millionth', u'intern'] [u'unit', u'film', u'air', u'time'] [u'soldier', u'guilti', u'ghraib', u'abus'] [u'soldier', u'guilti', u'murder', u'iraqi', u'teenag'] [u'troop', u'shoot', u'dead', u'seven', u'iraqi'] [u'vaughan', u'hit', u'umpir', u'light', u'decis'] [u'venezuela', u'cut', u'colombian', u'tie', u'kidnap'] [u'wall', u'street', u'rebound', u'inflat', u'news'] [u'wheel', u'problem', u'caldecott', u'dakar', u'challeng'] [u'women', u'championship', u'shape', u'open'] [u'bodi', u'dump', u'iraq', u'roadsid'] [u'ghraib', u'abus', u'give', u'year', u'jail'] [u'assist', u'aceh', u'hospit', u'repair'] [u'african', u'sniff', u'mozambiqu', u'landmin'] [u'afridi', u'lift', u'pakistan', u'competit', u'total'] [u'agassi', u'confirm', u'starter', u'open'] [u'algeria', u'berber', u'sign', u'peac', u'deal'] [u'urg', u'cultur', u'awar', u'train'] [u'ansar', u'islam', u'post', u'deni', u'kill', u'iraqi', u'cleric'] [u'aussi', u'prevail', u'hobart'] [u'aust', u'open', u'worth', u'slam', u'hewitt'] [u'australian', u'open', u'worth', u'slam', u'say', u'hewitt'] [u'australian', u'troop', u'paus', u'relief', u'work', u'reflect'] [u'australia', u'prevail', u'hobart'] [u'australia', u'rememb', u'tsunami', u'victim'] [u'booni', u'put', u'feet', u'chariti', u'walk'] [u'booni', u'put', u'feet', u'chariti', u'walk'] [u'bosnian', u'serb', u'crime', u'suspect', u'surrend'] [u'die', u'camp', u'accid'] [u'brack', u'urg', u'labor', u'resolv', u'leadership', u'woe'] [u'brisban', u'mourner', u'hope', u'good', u'come', u'tsunami'] [u'bushfir', u'threat', u'prompt', u'develop', u'applic'] [u'bushrang', u'troubl', u'warrior'] [u'caldecott', u'dakar', u'sixth', u'overal'] [u'crash', u'bedroom', u'injur', u'sleep', u'coupl'] [u'chelsea', u'sight', u'glori', u'gunner', u'stumbl'] [u'cherri', u'orchard', u'close', u'tsunami', u'donat'] [u'china', u'comment', u'leader', u'health'] [u'china', u'push', u'steel', u'industri', u'record', u'output'] [u'colombia', u'refus', u'apologis', u'venezuelan'] [u'compass', u'servic'] [u'concert', u'church', u'servic', u'tsunami', u'victim'] [u'worri', u'busway'] [u'convict', u'ghraib', u'abus', u'make', u'final', u'plea'] [u'cosgrov', u'tight', u'lip', u'length', u'aceh', u'deploy'] [u'council', u'propos', u'camera', u'bondi'] [u'darwin', u'church', u'hit', u'snag', u'distribut'] [u'davenport', u'australian', u'open'] [u'mourn', u'tsunami', u'victim'] [u'death', u'toll', u'asian', u'tsunami', u'disast', u'pass'] [u'dehydr', u'kill', u'bog', u'driver', u'polic'] [u'dementieva', u'doubt', u'open'] [u'denomin', u'unit', u'rememb', u'tsunami', u'disast'] [u'educ', u'union', u'critic', u'colleg', u'plan'] [u'elect', u'victori', u'ratifi', u'iraq', u'stanc', u'bush'] [u'consid', u'talk', u'spanish', u'govern'] [u'feder', u'wari', u'hewitt', u'threat'] [u'crew', u'monitor', u'uluru', u'blaze'] [u'servic', u'chief', u'criticis', u'reckless', u'driver'] [u'servic', u'warn', u'eyr', u'flare', u'danger'] [u'victim', u'urg', u'access', u'relief', u'fund'] [u'russian', u'commando', u'kill', u'stand'] [u'garden', u'polici', u'worri', u'disabl'] [u'gibb', u'hammer', u'centuri', u'england', u'wilt'] [u'govt', u'defend', u'indigen', u'cancer', u'treatment', u'abil'] [u'govt', u'join', u'council', u'protect', u'bird', u'habitat'] [u'gunmen', u'kill', u'philippin'] [u'hang', u'glider', u'die', u'sorrento', u'crash'] [u'heat', u'wave', u'hit', u'west'] [u'hollywood', u'music', u'star', u'join', u'forc', u'tsunami'] [u'honour', u'tsunami', u'dead', u'commit', u'futur'] [u'hous', u'explos', u'investig', u'continu'] [u'huygen', u'reveal', u'titan', u'creme', u'brule', u'centr'] [u'investig', u'launch', u'tree', u'crush'] [u'inzi', u'warn', u'shoaib', u'speed', u'showdown'] [u'iranian', u'nobel', u'peac', u'laureat', u'snub', u'summon'] [u'iraq', u'govt', u'announc', u'elect', u'restrict'] [u'iraqi', u'guard', u'worker', u'kill'] [u'israel', u'disappoint', u'abba', u'speech'] [u'isra', u'armi', u'give', u'free', u'rein', u'tackl', u'milit'] [u'isra', u'helicopt', u'fire', u'weapon', u'workshop'] [u'kava', u'licenc', u'control', u'black', u'market'] [u'land', u'water', u'asset', u'separ', u'difficult', u'issu'] [u'point', u'hous', u'develop', u'give', u'ahead'] [u'malaga', u'snatch', u'moral', u'boost', u'sevilla'] [u'die', u'boat', u'accid'] [u'drown', u'gold', u'coast', u'beach'] [u'maruyama', u'hawaii'] [u'milit', u'storm', u'stadium', u'complex', u'indian', u'kashmir'] [u'minibus', u'plummet', u'ditch', u'injur'] [u'nervous', u'night', u'firefight'] [u'opera', u'soprano', u'victoria', u'angel', u'die'] [u'opposit', u'welcom', u'govt', u'accept', u'program'] [u'palestinian', u'vote', u'offici', u'resign', u'alleg', u'cheat'] [u'perth', u'mourner', u'cast', u'grief', u'adrift'] [u'physicist', u'count', u'einstein', u'relat'] [u'pig', u'slump'] [u'pole', u'vault', u'record', u'fall'] [u'polic', u'arrest', u'uluru', u'bushfir'] [u'polic', u'charg', u'shoot', u'murder'] [u'polic', u'detain', u'shoot', u'death'] [u'polic', u'bodi', u'adelaid'] [u'polic', u'investig', u'stab', u'death'] [u'polic', u'investig', u'suspici', u'warehous'] [u'polic', u'rescu', u'burn', u'build'] [u'politician', u'seek', u'european', u'swastika'] [u'portug', u'withdraw', u'forc', u'iraq'] [u'ranger', u'scotland'] [u'ranger', u'triumph'] [u'rebel', u'group', u'claim', u'abduct', u'iraqi', u'nation'] [u'right', u'interven', u'rwanda', u'iraq'] [u'rome', u'polic', u'claim', u'christi', u'auction', u'paint', u'steal'] [u'rudd', u'assur', u'indonesia', u'support', u'effort'] [u'safin', u'look', u'breez', u'earli', u'round'] [u'saudi', u'arabia', u'deploy', u'secur'] [u'serena', u'feder', u'centr', u'court'] [u'sharapova', u'play', u'feud', u'talk'] [u'taibu', u'taylor', u'zimbabw', u'hop', u'aliv'] [u'indigen', u'communiti', u'seek', u'return', u'ancestr'] [u'tasmanian', u'join', u'nation', u'mourn'] [u'tasmanian', u'urg', u'reflect', u'tsunami', u'victim'] [u'reggina', u'frustrat', u'inter'] [u'thai', u'embassi', u'host', u'tsunami', u'servic'] [u'theft', u'polic', u'investig'] [u'thousand', u'join', u'mandela', u'son', u'funer'] [u'tractor', u'roll', u'kill'] [u'tsunami', u'memori', u'hold', u'brisban'] [u'tsunami', u'mourner', u'strength'] [u'tsunami', u'relief', u'effort', u'macklin', u'say'] [u'injur', u'parti', u'brawl'] [u'target', u'tsunami', u'victim', u'remot', u'indonesia'] [u'flag', u'aceh', u'militari', u'relief', u'effort'] [u'investig', u'claim', u'prison', u'abus'] [u'releas', u'detaine', u'afghanistan'] [u'vaughan', u'fin', u'match', u'umpir', u'outburst'] [u'victorian', u'reflect', u'tsunami', u'disast'] [u'bushfir', u'forc', u'home', u'evacu'] [u'warrior', u'bushrang'] [u'wilkinson', u'face', u'nation', u'wipe'] [u'young', u'liber', u'dismiss', u'amalgam', u'nation'] [u'zimbabw', u'second', u'test'] [u'charg', u'albani', u'drug', u'blitz'] [u'abba', u'order', u'halt', u'anti', u'israel', u'attack'] [u'consid', u'cancel', u'militari', u'exercis'] [u'administr', u'appoint', u'indigen', u'communiti'] [u'africa', u'unpay', u'debt', u'wipe'] [u'agassi', u'record', u'easi'] [u'alic', u'darwin', u'train', u'celebr', u'anniversari'] [u'anti', u'smoke', u'law', u'impact', u'game', u'venu'] [u'arson', u'suspect', u'toilet', u'block'] [u'aussi', u'doctor', u'head', u'aceh'] [u'australia', u'chase', u'africa', u'windi', u'test', u'tour'] [u'australian', u'iraqi', u'regist', u'histor'] [u'australian', u'offici', u'tell', u'habib', u'hell', u'free'] [u'australian', u'open', u'worth', u'slam', u'say', u'hewitt'] [u'author', u'patrol', u'north', u'west', u'forest', u'area'] [u'babi', u'injur', u'fall', u'train'] [u'backlash', u'agenc', u'possibl'] [u'bafta', u'nomin', u'winslet', u'winslet'] [u'ballina', u'council', u'promis', u'fund', u'tsunami', u'relief'] [u'bangkok', u'subway', u'crash', u'injur'] [u'bangladesh', u'posit', u'start', u'chase'] [u'bat', u'depth', u'aussi', u'domin', u'say', u'lehmann'] [u'beatti', u'tire', u'watch', u'labor', u'bleed'] [u'beazley', u'best', u'latham', u'go', u'beatti'] [u'beazley', u'capabl', u'polit', u'comeback'] [u'bendigo', u'rememb', u'tsunami', u'victim'] [u'bird', u'number', u'coorong', u'drop'] [u'bluescop', u'disput', u'put', u'job', u'risk'] [u'bomb', u'southern', u'thailand', u'kill'] [u'boon', u'keen', u'chariti', u'walk'] [u'british', u'conserv', u'defect', u'labour', u'parti'] [u'brochur', u'highlight', u'problem', u'worker', u'face'] [u'bronco', u'premiership', u'say', u'lockyer'] [u'broom', u'rememb', u'tsunami', u'victim', u'flower'] [u'bumblebe', u'infiltr', u'tasmania'] [u'busi', u'answer', u'help', u'farmer'] [u'button', u'pledg', u'commit', u'track'] [u'elect', u'loom', u'councillor', u'quit'] [u'cahil', u'equalis', u'earn', u'everton', u'draw'] [u'extra', u'fund', u'hospit', u'probe'] [u'input', u'age', u'care', u'plan'] [u'quick', u'action', u'propos'] [u'call', u'independ', u'inquiri', u'mine', u'debacl'] [u'carr', u'support', u'hospit', u'review'] [u'carr', u'urg', u'feder', u'labor', u'problem'] [u'central', u'australian', u'fire', u'bring', u'control'] [u'defend', u'firefight'] [u'cleari', u'miss', u'rest', u'season'] [u'closer', u'actor', u'earli', u'golden', u'globe'] [u'claim', u'hous', u'figur', u'slow', u'economi'] [u'coach', u'carter', u'score', u'offic'] [u'communiti', u'support', u'candelo', u'festiv'] [u'communiti', u'walkathon', u'boost', u'tsunami'] [u'concern', u'african', u'fish', u'infest'] [u'contamin', u'scare', u'forc', u'kindi', u'closur'] [u'council', u'seek', u'solut', u'stink', u'alga'] [u'coupl', u'return', u'home', u'sumatra', u'tsunami', u'ordeal'] [u'croatian', u'voter', u'return', u'presid', u'offic'] [u'crowd', u'number', u'folk', u'festiv'] [u'cruis', u'boat', u'look', u'tsunami'] [u'montreal', u'world', u'champ'] [u'deal', u'reach', u'jetti', u'manag', u'plan'] [u'denmark', u'warn', u'threat', u'tsunami', u'worker'] [u'depress', u'go', u'unnot', u'elder'] [u'detail', u'habib', u'return', u'negoti'] [u'develop', u'optimist', u'scamand', u'bridg', u'project'] [u'dubbo', u'bat', u'world', u'record', u'inning'] [u'dust', u'cover', u'western'] [u'earthquak', u'regist', u'micronesia'] [u'eighteen', u'iraq', u'attack'] [u'elvi', u'king', u'number'] [u'emerg', u'servic', u'unit', u'black'] [u'etoo', u'bail', u'sluggish', u'barcelona'] [u'cyclon', u'fail', u'deliv', u'rain'] [u'extra', u'crew', u'send', u'eyr', u'peninsula'] [u'farmer', u'ask', u'help', u'curb', u'noxious', u'weed'] [u'probe', u'premier', u'leagu', u'brawl'] [u'crew', u'battl', u'blaze'] [u'firefight', u'watch', u'arsonist'] [u'trainload', u'uranium', u'arriv'] [u'kill', u'mosul', u'clash'] [u'flight', u'attend', u'furious', u'qanta', u'foreign'] [u'chines', u'communist', u'parti', u'head', u'die'] [u'storm', u'player', u'receiv', u'scotland'] [u'foster', u'launch', u'southcorp'] [u'foster', u'wont', u'answer'] [u'french', u'secur', u'dakar', u'doubl', u'caldecott', u'sixth'] [u'gallop', u'sunday', u'trade', u'backflip', u'astound'] [u'gayl', u'injuri', u'cloud', u'pakistan', u'clash'] [u'gene', u'invers', u'make', u'iceland', u'fertil'] [u'gippsland', u'kick', u'tsunami', u'appeal'] [u'gold', u'rush', u'geoffrey', u'globe'] [u'govt', u'consid', u'fund', u'anti', u'prostitut', u'brochur'] [u'govt', u'consid', u'health', u'warn', u'plan', u'yarra'] [u'grain', u'harvest', u'predict', u'grim'] [u'great', u'lake', u'council', u'set', u'hotlin'] [u'griffith', u'council', u'plan', u'chang', u'tourism', u'scheme'] [u'group', u'gain', u'fund', u'control', u'weed', u'damag'] [u'group', u'urg', u'bendigo', u'line', u'stay', u'open'] [u'hawk', u'croc', u'stop', u'tiger'] [u'heritag', u'railway', u'second', u'locomot'] [u'hobart', u'airport', u'woe', u'prompt', u'apolog'] [u'hous', u'financ'] [u'hussey', u'help', u'warrior', u'lead'] [u'ierodiaconou', u'second'] [u'impress', u'safin', u'open', u'melbourn', u'account'] [u'indigen', u'youth', u'circus', u'fund', u'boost'] [u'indonesia', u'clarifi', u'aceh', u'relief', u'deadlin', u'comment'] [u'indonesian', u'vice', u'presid', u'thank', u'gold', u'coast'] [u'inquiri', u'hear', u'killer', u'manipul', u'trial'] [u'iraqi', u'australia', u'prepar', u'vote'] [u'isra', u'troop', u'kill', u'gaza', u'gunmen', u'clash'] [u'jakarta', u'grate', u'aust', u'troop', u'hill'] [u'japan', u'continu', u'devour', u'australian', u'beef'] [u'japanes', u'photojournalist', u'die'] [u'japan', u'rememb', u'earthquak', u'victim', u'year'] [u'kuznetsova', u'denounc', u'dope', u'claim'] [u'labor', u'tell', u'consid', u'leadership', u'decis'] [u'lake', u'resid', u'face', u'water', u'suppli', u'shortag'] [u'lomu', u'miracl', u'comeback'] [u'charg', u'seri', u'burglari'] [u'charg', u'yulara'] [u'critic', u'rock', u'throw'] [u'face', u'court', u'polic', u'assault', u'alleg'] [u'front', u'court', u'shoot', u'murder', u'charg'] [u'court', u'dramat', u'melbourn', u'chase'] [u'face', u'danger', u'drive', u'charg'] [u'face', u'mildura', u'court', u'brawl'] [u'mayor', u'defend', u'public', u'park', u'leas'] [u'mcdonald', u'die', u'cancer'] [u'mickelberg', u'want', u'polic'] [u'mine', u'compani', u'strike', u'workforc', u'deal'] [u'minist', u'promot', u'coal', u'export', u'mexico'] [u'miss', u'bushwalk', u'safe'] [u'motorcyclist', u'fall', u'bike'] [u'doctor', u'head', u'west'] [u'ecosystem', u'map', u'releas'] [u'firefight', u'helicopt', u'unveil'] [u'home', u'assess', u'bushfir', u'risk'] [u'nation', u'galleri', u'chief', u'start'] [u'nixon', u'greet', u'tsunami', u'relief', u'team'] [u'nordic', u'urg', u'tsunami', u'warn', u'probe'] [u'govt', u'widen', u'alga', u'alert'] [u'oakey', u'armi', u'team', u'provid', u'support', u'aceh'] [u'ogradi', u'face', u'vintag', u'challeng', u'tour'] [u'open', u'move', u'familiar', u'rhythm'] [u'peopl', u'urg', u'continu', u'tsunami', u'donat'] [u'perth', u'juri', u'decid', u'stab', u'justifi'] [u'philippin', u'cast', u'blanket', u'jaywalk'] [u'pipe', u'theft', u'music', u'health', u'offici', u'ear'] [u'call', u'attack'] [u'wife', u'undergo', u'medic', u'test'] [u'polic', u'rebel', u'sieg', u'indian', u'kashmir'] [u'polic', u'investig', u'teen', u'attack'] [u'polic', u'search', u'tourist', u'nimbin', u'drug', u'oper'] [u'politician', u'criticis', u'eyr', u'fight'] [u'pressur', u'mount', u'latham'] [u'probe', u'begin', u'kingscliff', u'construct', u'death'] [u'public', u'meet', u'tackl', u'crime', u'west', u'dubbo'] [u'qanta', u'confirm', u'plan', u'job', u'offshor'] [u'opposit', u'resum', u'clark', u'assault'] [u'woman', u'face', u'traffic', u'trial', u'bali'] [u'hit', u'govt', u'technic', u'colleg', u'plan'] [u'rain', u'fuel', u'power', u'pole', u'fire'] [u'rann', u'urg', u'ratepay', u'remov', u'hazard'] [u'regular', u'open', u'gabba', u'return'] [u'research', u'build', u'bot'] [u'resid', u'lobbi', u'western', u'bypass', u'plan'] [u'resid', u'voic', u'concern', u'chicken', u'farm', u'approv'] [u'riverina', u'resid', u'demand', u'truck', u'bypass', u'crash'] [u'road', u'work', u'begin', u'waterfal'] [u'rock', u'lobster', u'wont', u'affect', u'industri', u'govt'] [u'romanian', u'woman', u'give', u'birth'] [u'rooney', u'fate', u'polic', u'hand'] [u'rudd', u'doubt', u'tsunami', u'bring', u'aceh', u'peac'] [u'polic', u'lookout', u'rock', u'thrower'] [u'search', u'continu', u'miss', u'tourist'] [u'search', u'miss', u'bushwalk', u'continu'] [u'serena', u'cruis', u'second', u'round'] [u'servic', u'plan', u'program', u'bundaberg', u'youth'] [u'sharapova', u'straight', u'set'] [u'singh', u'hold', u'honolulu'] [u'smoke', u'alarm', u'save', u'stroke', u'victim', u'life'] [u'somali', u'mayor', u'plead'] [u'southcorp', u'reject', u'foster', u'offer'] [u'lankan', u'govt', u'reloc', u'displac', u'famili'] [u'lanka', u'rais', u'tsunami', u'death', u'toll'] [u'lanka', u'build', u'town', u'tsunami', u'zone'] [u'stosur', u'match', u'mauresmo'] [u'stosur', u'readi', u'upset', u'mauresmo'] [u'student', u'express', u'desir', u'help', u'tsunami', u'victim'] [u'surf', u'condit', u'remain', u'wild'] [u'surgic', u'servic', u'closur', u'communiti', u'best'] [u'sydney', u'ferri', u'price', u'slash'] [u'taibu', u'taylor', u'boost', u'zimbabw', u'hop', u'record'] [u'takeov', u'push'] [u'target', u'recal', u'hamper'] [u'defi', u'nation', u'hous', u'trend'] [u'technolog', u'tsunami', u'relief', u'work'] [u'teen', u'math', u'whiz', u'get', u'immers', u'liquid', u'anim'] [u'teen', u'trio', u'surviv', u'roll'] [u'kill', u'separ', u'accid'] [u'tiger', u'strike', u'earli', u'bull'] [u'toowoomba', u'join', u'elit', u'list'] [u'tourist', u'room', u'occup', u'rat', u'whitsunday'] [u'townsvill', u'health', u'worker', u'boost', u'tsunami', u'effort'] [u'townsvill', u'host', u'ceremoni', u'tsunami', u'victim'] [u'traffic', u'woe', u'expect', u'bridg', u'upgrad'] [u'trescothick', u'half', u'centuri', u'build', u'england', u'lead'] [u'trescothick', u'hit', u'centuri', u'england', u'build', u'advantag'] [u'true', u'believ', u'roll', u'riverland', u'rodeo'] [u'tsunami', u'relief', u'team', u'welcom', u'home'] [u'tsunami', u'relief', u'worker', u'offer', u'counsel'] [u'charg', u'theft', u'tsunami', u'donat', u'bucket'] [u'dead', u'miss', u'cargo', u'ship', u'sink'] [u'testifi', u'sexual', u'assault', u'trial'] [u'forc', u'secret', u'mission', u'iran', u'report'] [u'eas', u'militari', u'restrict', u'indonesia'] [u'minist', u'criticis', u'cull', u'place'] [u'victim', u'rememb', u'tsunami', u'fundrais', u'concert'] [u'wagga', u'land', u'council', u'reopen', u'door'] [u'wagga', u'look', u'special', u'court', u'open'] [u'labor', u'urg', u'quick', u'feder', u'woe'] [u'warwick', u'offic', u'aceh', u'clean'] [u'teen', u'accus', u'light', u'scrub', u'blaze'] [u'water', u'expert', u'visit', u'kimberley', u'area'] [u'waterfal', u'report', u'find', u'lack', u'safeti', u'cultur'] [u'water', u'restrict', u'unlik', u'level', u'hold'] [u'weather', u'hamper', u'firefight', u'effort', u'perth'] [u'wentworth', u'welcom', u'improv', u'internet', u'servic'] [u'west', u'indi', u'intent', u'gabba', u'victori'] [u'wind', u'drop', u'help', u'perth', u'firefight'] [u'wine', u'tempt', u'hollywood', u'visit', u'hunter', u'region'] [u'woman', u'charg', u'sydney', u'man', u'murder'] [u'woodsid', u'energi', u'invest', u'gulf', u'mexico'] [u'report', u'urg', u'greater', u'govern', u'involv'] [u'zarqawi', u'follow', u'renew', u'threat', u'secur'] [u'zola', u'give', u'milan', u'help', u'hand', u'titl', u'race'] [u'journalist', u'kill'] [u'injur', u'bangkok', u'subway', u'crash'] [u'kill', u'poll', u'violenc'] [u'accc', u'probe', u'bakeri', u'price', u'deal'] [u'aceh', u'rebuild', u'cost'] [u'deni', u'culpabl', u'report', u'delay'] [u'actress', u'virginia', u'mayo', u'die'] [u'admin', u'cut', u'boost', u'region', u'hospit', u'servic'] [u'airbus', u'unveil', u'overweight', u'superjumbo'] [u'airli', u'concert', u'rais', u'thousand', u'tsunami', u'caus'] [u'ambul', u'offic', u'fresh'] [u'anderson', u'wish', u'latham', u'quick', u'recoveri'] [u'aspir', u'countri', u'music', u'star', u'make', u'grand', u'final'] [u'aurora', u'australi', u'spectacular', u'light'] [u'australia', u'report'] [u'australia', u'sign', u'energi', u'deal', u'mexico'] [u'bangladesh', u'post', u'seri'] [u'bank', u'stock', u'market', u'record'] [u'beach', u'camera', u'issu', u'state', u'govt'] [u'beazley', u'readi', u'lead'] [u'beazley', u'tight', u'lip', u'leadership'] [u'bendigo', u'back', u'latham'] [u'bendigo', u'univers', u'offer', u'extra', u'place', u'student'] [u'bleak', u'outlook', u'darl', u'river'] [u'blue', u'bat', u'redback'] [u'blue', u'redback', u'match', u'even', u'pois'] [u'bore', u'provid', u'extra', u'water', u'lachlan', u'shire'] [u'bosnian', u'serb', u'jail', u'srebrenica', u'massacr'] [u'escap', u'abduct', u'attempt'] [u'trial', u'stepfath', u'stab', u'death'] [u'broadbridg', u'bodi', u'arriv', u'home'] [u'bull', u'troubl', u'lunch'] [u'bull', u'control', u'hobart'] [u'bushrang', u'struggl', u'hussey', u'doubl'] [u'bush', u'trail', u'place', u'say'] [u'donat', u'post', u'help', u'farmer'] [u'tighten', u'harvest', u'rule'] [u'toughen', u'stock', u'steal', u'law'] [u'canberran', u'rebuild', u'bushfir'] [u'casa', u'confirm', u'complaint', u'griffith', u'airport'] [u'cathol', u'priest', u'kidnap', u'iraq'] [u'child', u'death', u'highlight', u'problem', u'hospit'] [u'chilean', u'spook', u'fals', u'tsunami'] [u'china', u'asia', u'predict', u'increas', u'demand'] [u'coastal', u'group', u'rais', u'conflict', u'concern'] [u'commiss', u'dismiss', u'complaint'] [u'communiti', u'invit', u'step', u'cabinet', u'visit'] [u'communiti', u'rememb', u'bushfir'] [u'concern', u'cours', u'accredit'] [u'cooloola', u'council', u'plan', u'industri', u'estat', u'expans'] [u'cooma', u'dedic', u'servic', u'wwii', u'veteran'] [u'face', u'forc', u'child', u'porn'] [u'coria', u'make', u'confid', u'start'] [u'cosgrov', u'retir', u'juli'] [u'councillor', u'disagre', u'tsunami', u'fund'] [u'council', u'plan', u'water', u'reservoir'] [u'council', u'push', u'tourism', u'market', u'plan'] [u'custom', u'seiz', u'potenti', u'harm', u'collar'] [u'date', u'polic', u'offic', u'arriv'] [u'davenport', u'thrash', u'martinez', u'venus', u'advanc'] [u'dechi', u'dementieva', u'overcom', u'drug', u'taint', u'advanc'] [u'design', u'bushfir', u'memori', u'unveil'] [u'develop', u'continu', u'plan', u'site'] [u'dhaka', u'test', u'even', u'pois', u'taibus', u'maiden'] [u'disney', u'play', u'stori', u'script'] [u'dominikov', u'aussi', u'second', u'round'] [u'dust', u'haze', u'increas', u'risk', u'asthma', u'suffer'] [u'elder', u'woman', u'murder'] [u'emerg', u'equip', u'fail', u'despit', u'upgrad'] [u'exet', u'gear', u'sequel', u'greatest'] [u'extradit', u'order', u'murder', u'suspect'] [u'extra', u'polic', u'crack', u'speed', u'driver'] [u'extra', u'polic', u'guard', u'court', u'face', u'assault'] [u'famili', u'alleg', u'drug', u'runner', u'criticis', u'govt'] [u'reveal', u'posit', u'dope', u'test'] [u'farmer', u'urg', u'continu', u'fight', u'locust'] [u'feder', u'swap', u'tenni', u'racquet', u'cricket'] [u'ferrari', u'honour', u'pole', u'posit', u'pope'] [u'firefight', u'battl', u'blaze', u'near', u'perth'] [u'firefight', u'abil', u'untouch', u'power', u'outag'] [u'caus', u'pile', u'poland'] [u'foodbank', u'centr', u'get', u'feder', u'fund', u'boost'] [u'bank', u'manag', u'jail', u'fraud'] [u'rescu', u'sink', u'houseboat'] [u'fraud', u'squad', u'handl', u'alleg', u'health', u'servic'] [u'fresh', u'outbreak', u'test', u'perth', u'firefight'] [u'glastonburi', u'break', u'cow', u'rest'] [u'global', u'market', u'quiet', u'holiday'] [u'gold', u'coast', u'stosur', u'look', u'futur'] [u'golf', u'club', u'land', u'develop', u'get', u'green', u'light'] [u'govt', u'deni', u'ignor', u'bali', u'drug', u'accus'] [u'govt', u'inform', u'communiti', u'propos', u'pulp'] [u'govt', u'blame', u'waterfal', u'disast', u'survivor', u'say'] [u'grafton', u'teen', u'win', u'starmak', u'titl'] [u'grape', u'expect', u'shatter', u'barossa', u'grower'] [u'hantuchova', u'battl', u'past', u'morigami'] [u'harvey', u'strike', u'warrior', u'lead'] [u'heavi', u'smoke', u'hinder', u'fight'] [u'hec', u'blame', u'drop', u'applic', u'govt'] [u'hoggard', u'magnific', u'seven', u'give', u'england', u'victori'] [u'howard', u'honour', u'fast', u'food', u'chief'] [u'indian', u'embassi', u'guard', u'shoot', u'colleagu'] [u'form', u'mcewen', u'sprint', u'stage'] [u'ingham', u'matern', u'ward', u'close'] [u'investig', u'yacht', u'ferri', u'collis'] [u'iraqi', u'patriot', u'excit', u'vote'] [u'iraq', u'close', u'border', u'elect'] [u'slam', u'drug', u'test', u'out', u'kuznetsova'] [u'janett', u'howard', u'releas', u'hospit'] [u'janett', u'howard', u'test', u'caus', u'concern'] [u'janett', u'howard', u'take', u'hospit'] [u'jaqu', u'thorn', u'lift', u'blue'] [u'jetstar', u'push', u'plan', u'townsvill', u'rout'] [u'jordan', u'talk', u'sale', u'russian', u'billionair'] [u'kean', u'admit', u'titl', u'chelsea', u'lose'] [u'kidnapp', u'free', u'iraqi', u'archbishop'] [u'kingscliff', u'worker', u'strike', u'fatal', u'accid'] [u'kuwait', u'arrest', u'suspect', u'milit'] [u'kuznetsova', u'reject', u'drug', u'claim'] [u'labor', u'farewel', u'latham', u'look', u'futur'] [u'lara', u'issu', u'mcgrath', u'world', u'warn'] [u'latham', u'decis', u'close', u'say', u'carr'] [u'latham', u'soon', u'carr'] [u'latham', u'quit'] [u'latham', u'break', u'silenc'] [u'laver', u'miss', u'aust', u'open', u'trophi', u'present'] [u'lawyer', u'unlik', u'join', u'habib', u'flight', u'home'] [u'local', u'compani', u'win', u'contract', u'runway', u'expans'] [u'mackay', u'build', u'industri', u'jump'] [u'appear', u'court', u'drug', u'import'] [u'arrest', u'capsicum', u'spray', u'scuffl'] [u'arrest', u'sydney', u'murder'] [u'charg', u'offic', u'trap'] [u'convict', u'caus', u'death', u'neglig', u'drive'] [u'hospitalis', u'accident', u'stab'] [u'mayor', u'push', u'garden', u'develop'] [u'minist', u'refus', u'apologis', u'kuznetsova', u'drug'] [u'mix', u'respons', u'gallop', u'sunday', u'trade', u'backflip'] [u'molik', u'home', u'centr', u'court'] [u'molik', u'make', u'bright', u'start'] [u'molik', u'rubbish', u'dope', u'furor'] [u'molik', u'open', u'campaign', u'begin', u'victori'] [u'black', u'player', u'includ', u'super', u'squad'] [u'dump', u'babi', u'hospit'] [u'murder', u'conduct', u'reduc', u'chanc', u'acquitt'] [u'myskina', u'reach', u'second', u'round'] [u'furnac', u'boost', u'smelter', u'effici'] [u'highway', u'stop', u'plan', u'releas', u'public', u'comment'] [u'countri', u'attack', u'iran', u'say'] [u'promot', u'whirlwind', u'afridi'] [u'treasur', u'bow', u'polit'] [u'labor', u'figur', u'latham', u'resign'] [u'host', u'eel', u'home', u'game'] [u'pakistan', u'bank', u'spin', u'coin'] [u'parent', u'welcom', u'educ', u'allow', u'boost'] [u'pentagon', u'slam', u'iran', u'raid', u'report'] [u'perth', u'firefight', u'battl', u'outbreak'] [u'philipson', u'nash', u'lead', u'bull', u'fight'] [u'pike', u'pleas', u'publicis', u'medic', u'mistak'] [u'plan', u'berri', u'event', u'address', u'financi'] [u'pocket', u'rocket', u'spark', u'complaint'] [u'polic', u'face', u'tortur', u'charg'] [u'polic', u'investig', u'melbourn', u'man', u'death'] [u'polic', u'probe', u'rock', u'throw', u'incid'] [u'polic', u'releas', u'drown'] [u'polic', u'superintend', u'appoint'] [u'polic', u'thank', u'volunt', u'crew'] [u'probe', u'tilt', u'train', u'derail', u'continu'] [u'protest', u'scuffl', u'outsid', u'noos', u'attack', u'hear'] [u'protest', u'scuffl', u'outsid', u'court'] [u'rain', u'mar', u'world', u'record', u'inning', u'attempt'] [u'rain', u'keep', u'bushfir', u'threat'] [u'redback', u'exorcis', u'demon', u'blue'] [u'redback', u'restrict', u'blue', u'adelaid'] [u'redund', u'talk', u'continu', u'merg', u'health'] [u'region', u'resourc', u'stretch', u'perth', u'fire', u'rage'] [u'repeat', u'tsunami', u'effort', u'combat', u'hunger', u'food'] [u'report', u'demand', u'council', u'enforc', u'dog', u'polici'] [u'research', u'offer', u'sage', u'advic', u'drinker'] [u'resid', u'voic', u'concern', u'highway', u'bypass'] [u'river', u'flow', u'flush', u'alga', u'lake'] [u'roddick', u'bludgeon', u'georgian', u'submiss'] [u'rspca', u'temporarili', u'close', u'door', u'devonport'] [u'rudd', u'committ', u'leadership', u'aspir'] [u'ruddock', u'move', u'protect', u'tsunami', u'victim', u'famili'] [u'rusedski', u'exorcis', u'demon', u'bjorkman'] [u'rychart', u'win', u'week', u'gong'] [u'count', u'cost', u'bushfir'] [u'fire', u'burn'] [u'drought', u'affect', u'farmer', u'forget'] [u'satellit', u'glitch', u'cut', u'island'] [u'school', u'rank', u'meaningless'] [u'school', u'author', u'downplay', u'rank', u'concern'] [u'scientist', u'work', u'impact', u'natur', u'wrath'] [u'second', u'person', u'charg', u'sydney', u'man', u'murder'] [u'slide', u'rais', u'teen', u'drug', u'awar'] [u'blood', u'bank', u'servic'] [u'springborg', u'want', u'detail', u'energex', u'payout'] [u'state', u'figur', u'beazley'] [u'steadi', u'number', u'sale', u'rockhampton', u'research'] [u'steel', u'disput', u'affect', u'custom'] [u'studi', u'link', u'gene', u'mutat', u'parkinson'] [u'sugar', u'produc', u'assess', u'option'] [u'suicid', u'bomber', u'target', u'shiit', u'parti', u'offic'] [u'swimmer', u'warn', u'mullet', u'season', u'draw', u'shark'] [u'sydney', u'prepar', u'launch', u'massiv', u'airlin'] [u'play', u'australia', u'match'] [u'temporari', u'villag', u'construct', u'begin'] [u'territorian', u'generous', u'tsunami', u'appeal'] [u'thailand', u'tsunami', u'warn', u'month'] [u'tight', u'secur', u'surround', u'hajj', u'pilgrim'] [u'tour', u'franc', u'chief', u'say', u'australia', u'yellow'] [u'tourism', u'council', u'welcom', u'cheaper', u'ferri', u'fare'] [u'tourist', u'number'] [u'tsunami', u'collect', u'tin', u'steal', u'servo'] [u'tsunami', u'commemor', u'propos'] [u'tsunami', u'donat', u'steal', u'roadhous', u'counter'] [u'charg', u'drug', u'raid'] [u'find', u'rich', u'lack', u'generous'] [u'union', u'consid', u'action', u'rural', u'nurs', u'sack'] [u'univers', u'offer', u'small', u'gain'] [u'lift', u'self', u'impos', u'aceh'] [u'unawar', u'aceh', u'terrorist', u'threat'] [u'valuer', u'assess', u'carpentaria', u'shire', u'asset'] [u'violenc', u'continu', u'ahead', u'iraq', u'poll'] [u'coalit', u'split', u'referendum'] [u'polic', u'send', u'team', u'phuket'] [u'warrior', u'round', u'bushrang'] [u'watchdog', u'queri', u'consum', u'protect', u'law'] [u'weed', u'damag', u'grape', u'vine'] [u'western', u'urg', u'cover', u'sandfli'] [u'white', u'wipe', u'star', u'match'] [u'wildcat', u'grace', u'father', u'death'] [u'woman', u'charg', u'stab'] [u'woman', u'hurt', u'snatch'] [u'wright', u'flyer', u'replica', u'launch'] [u'yacht', u'sink', u'coast'] [u'zhao', u'famili', u'forgo', u'state', u'funer'] [u'kill', u'injur', u'highway', u'smash'] [u'year', u'bicycl', u'roll', u'display'] [u'abba', u'fire', u'dozen', u'arafat', u'advis'] [u'engin', u'head', u'maldiv'] [u'advis', u'thank', u'gold', u'coast', u'communiti', u'tsunami'] [u'agassi', u'crush', u'schuettler', u'open', u'final', u'repeat'] [u'airlin', u'worri', u'drag', u'stock'] [u'alleg', u'palm', u'rioter', u'consid', u'legal', u'action'] [u'develop', u'earthi', u'water', u'purifi'] [u'astronaut', u'warn', u'radiat', u'risk'] [u'audit', u'offic', u'find', u'taxpay', u'money', u'misspend'] [u'aussi', u'dollar', u'firm', u'overnight'] [u'australia', u'ask', u'kiribati', u'support', u'whale'] [u'australia', u'urg', u'help', u'liberian', u'refuge'] [u'aust', u'seek', u'renew', u'timor', u'boundari', u'talk'] [u'caramba', u'strike', u'threaten', u'spanish', u'simpson'] [u'barossa', u'valley', u'host', u'cycl', u'event'] [u'beazley', u'remain', u'sole', u'labor', u'contend'] [u'beckham', u'contempl', u'unit', u'return'] [u'belgian', u'minist', u'slam', u'rotten'] [u'bird', u'claim', u'vietnames', u'victim'] [u'blue', u'bat', u'rout', u'redback'] [u'blue', u'head', u'point', u'adelaid'] [u'bomb', u'target', u'aust', u'barrack'] [u'escap', u'punish', u'kill', u'stepfath'] [u'break', u'hill', u'hospit', u'bring', u'smoke', u'polici'] [u'broom', u'welcom', u'dozen', u'cruis', u'ship', u'visit'] [u'bull', u'inning', u'point'] [u'bull', u'remov', u'tasmanian', u'open'] [u'bushfir', u'blanket', u'perth', u'smoke'] [u'bushfir', u'threaten', u'township', u'near', u'perth'] [u'bush', u'nomine', u'attorney', u'general', u'condemn', u'tortur'] [u'california', u'execut', u'prison', u'year'] [u'cross', u'reconsid', u'blood', u'bank'] [u'carr', u'appoint', u'refshaug', u'treasur'] [u'carr', u'host', u'west', u'dubbo', u'meet'] [u'cathol', u'church', u'consid', u'funer', u'music'] [u'chainsaw', u'moranbah', u'break'] [u'china', u'seek', u'releas', u'kidnap', u'build', u'worker'] [u'cinema', u'complex', u'plan', u'lithgow'] [u'coal', u'wast', u'clean', u'program', u'begin'] [u'congo', u'capsiz', u'kill'] [u'congo', u'ferri', u'accid', u'kill'] [u'cooma', u'jail', u'capac'] [u'cosgrov', u'rule', u'career', u'polit'] [u'council', u'make', u'motorhom', u'park', u'free', u'wynyard'] [u'council', u'promis', u'fund', u'bushfir', u'appeal'] [u'council', u'rule', u'referendum', u'plan'] [u'council', u'set', u'deadlin', u'servic', u'fund'] [u'coupl', u'recognis', u'communiti', u'work'] [u'sell', u'bioscienc'] [u'cudal', u'showjump', u'repres', u'australia'] [u'davenport', u'strength'] [u'develop', u'prove', u'tiananmen', u'action', u'right', u'china'] [u'diamond', u'unearth', u'mine', u'potenti'] [u'digger', u'wound', u'iraq', u'attack'] [u'doubl', u'aussi', u'silver', u'stockholm', u'pool'] [u'downer', u'surpris', u'latham', u'resign'] [u'drought', u'condit', u'continu', u'region'] [u'town', u'hop', u'search', u'water'] [u'dust', u'storm', u'caus', u'panic', u'eyr', u'peninsula'] [u'economi', u'look', u'good', u'survey'] [u'educ', u'union', u'pan', u'tech', u'colleg'] [u'emerton', u'henri', u'ronaldo', u'invit', u'tsunami', u'game'] [u'eros', u'forc', u'car', u'beach'] [u'bomb', u'quash', u'ceas', u'hop'] [u'bank', u'manag', u'jail', u'fraud', u'convict'] [u'pastor', u'front', u'court', u'child', u'charg'] [u'charg', u'everton', u'boro', u'brawl'] [u'farmer', u'look', u'market'] [u'farmer', u'welcom', u'financi', u'help'] [u'feder', u'overcom', u'spirit', u'suzuki'] [u'ferguson', u'shoulder', u'hop'] [u'fewer', u'australian', u'miss', u'tsunami'] [u'fight', u'ferguson', u'fall', u'short'] [u'fingleton', u'appeal', u'convict', u'high', u'court'] [u'crew', u'battl', u'blaze', u'near', u'perth'] [u'crew', u'contain', u'danger', u'perth', u'break'] [u'firefight', u'rescu', u'burn', u'hous'] [u'homebuy', u'flood', u'market', u'research', u'show'] [u'flintoff', u'face', u'possibl', u'ankl', u'surgeri'] [u'idol', u'star', u'plead', u'guilti', u'drink', u'drive'] [u'riverina', u'candid', u'support', u'rudd'] [u'fraser', u'coast', u'tourist', u'room', u'book', u'highest'] [u'gaddafi', u'lead', u'libyan', u'tour', u'australia'] [u'gallop', u'hold', u'poll'] [u'gaudio', u'reel', u'fish', u'round'] [u'gayl', u'hind', u'windi', u'underway'] [u'gillespi', u'clear', u'gabba', u'clash'] [u'gillespi', u'medic', u'watch', u'gilli', u'hayden'] [u'glen', u'inn', u'seek', u'ident'] [u'goondiwindi', u'communiti', u'divid', u'noos', u'attack'] [u'govt', u'finalis', u'habib', u'repatri'] [u'grape', u'grower', u'fear', u'impact', u'southcorp', u'takeov'] [u'great', u'keppel', u'famili', u'market'] [u'grower', u'urg', u'object', u'grape', u'price', u'offer'] [u'hairdress', u'train', u'counsellor'] [u'health', u'centr', u'construct', u'begin'] [u'heat', u'wind', u'hamper', u'perth', u'firefight', u'effort'] [u'hemp', u'parti', u'seek', u'support'] [u'highway', u'reopen', u'fatal', u'accid'] [u'hospit', u'begin', u'chemotherapi', u'servic'] [u'hospit', u'board', u'wont', u'reinstat', u'pike', u'say'] [u'hous', u'destroy'] [u'india', u'face', u'loss', u'commonwealth', u'game'] [u'indonesia', u'plan', u'peac', u'talk', u'aceh', u'rebel'] [u'indonesia', u'seek', u'tsunami', u'relief', u'packag', u'detail'] [u'insurg', u'attack', u'spark', u'ramadi', u'fight'] [u'deni', u'bank', u'robberi'] [u'iranian', u'asylum', u'seeker', u'face', u'deport'] [u'iraqi', u'expat', u'enrol', u'poll'] [u'island', u'look', u'coconut', u'price', u'rise'] [u'isra', u'offic', u'kill', u'gaza', u'attack'] [u'japanes', u'sea', u'normal', u'despit', u'tsunami', u'warn'] [u'japan', u'lift', u'tsunami', u'warn'] [u'kamran', u'star', u'pakistan', u'victori'] [u'kuznetsova', u'chase', u'shadow'] [u'kuznetsova', u'serena', u'cruis', u'round'] [u'labor', u'leadership', u'hope', u'count', u'number'] [u'labor', u'split', u'leader'] [u'latham', u'exit', u'remov', u'elect', u'hurdl', u'gallop'] [u'light', u'plane', u'make', u'emerg', u'land', u'carnarvon'] [u'light', u'plane', u'make', u'forc', u'land', u'near', u'adelaid'] [u'littl', u'shire', u'make', u'donat', u'tsunami', u'appeal'] [u'lloyd', u'webber', u'empir', u'song'] [u'malaysian', u'women', u'charg', u'heroin', u'traffic'] [u'malaysia', u'honour', u'aust', u'servicemen', u'women'] [u'challeng', u'stepson', u'kill', u'court', u'hear'] [u'charg', u'bodi'] [u'extradit', u'murder'] [u'coma', u'rock', u'attack'] [u'hospit', u'sieg', u'end', u'peac'] [u'plead', u'guilti', u'food', u'case'] [u'refus', u'bail', u'cold', u'case', u'murder'] [u'rob', u'gold', u'coast', u'bank'] [u'appear', u'court', u'indec', u'exposur'] [u'matern', u'ward', u'closur', u'signal', u'declin', u'head', u'say'] [u'mauresmo', u'surviv', u'scare'] [u'mcewen', u'prepar', u'yellow', u'jersey'] [u'measur', u'place', u'protect', u'justic', u'staff', u'dept'] [u'melbourn', u'prepar', u'superjumbo'] [u'innat', u'edg', u'scienc', u'chief'] [u'mine', u'memori', u'fund', u'get', u'donat'] [u'minnow', u'burnley', u'dump', u'liverpool'] [u'molik', u'step', u'ring'] [u'montagu', u'island', u'lighthous', u'open', u'visitor'] [u'mother', u'help', u'help', u'son', u'avoid', u'arrest', u'prosecut'] [u'mayor', u'outlin', u'xstrata', u'issu'] [u'multipl', u'drown', u'prompt', u'water', u'safeti', u'scheme'] [u'modifi', u'tackl', u'rule'] [u'hospit', u'score', u'rat'] [u'offici', u'inspect', u'kingscliff', u'site', u'fatal'] [u'blotchi', u'fame', u'spot'] [u'outcri', u'senior', u'polic', u'transfer', u'plan'] [u'paedophil', u'plan', u'live', u'toowoomba'] [u'palestinian', u'milit', u'halt', u'attack', u'israel'] [u'palestinian', u'warm', u'state', u'solut'] [u'parent', u'seek', u'answer', u'child', u'care', u'centr'] [u'poet', u'win', u'tamworth', u'bush', u'vers', u'competit'] [u'polic', u'hunt', u'post', u'offic', u'robber'] [u'polic', u'investig', u'belconnen', u'murder'] [u'polic', u'investig', u'taxi', u'driver', u'stab'] [u'polic', u'offic', u'hospitalis', u'chase'] [u'polic', u'probe', u'fruit', u'shop'] [u'polic', u'seiz', u'ecstasi'] [u'port', u'hedland', u'hous', u'project', u'get', u'green', u'light'] [u'probe', u'continu', u'smelter', u'fume', u'exposur'] [u'protest', u'escap', u'tree', u'canopi'] [u'puerto', u'rican', u'name', u'world', u'oldest'] [u'punter', u'award', u'move', u'owen', u'closer', u'bond', u'role'] [u'ranger', u'face', u'final', u'audit'] [u'rare', u'success', u'british', u'women', u'melbourn', u'park'] [u'redback', u'rope'] [u'remot', u'health', u'servic', u'staff', u'boost'] [u'research', u'track', u'squid', u'movement'] [u'reward', u'offer', u'inform', u'lunat', u'arsonist'] [u'rice', u'pledg', u'focus', u'democraci'] [u'rice', u'say', u'middl', u'east', u'peac', u'goal'] [u'richmond', u'look', u'futur'] [u'tinto', u'report', u'uranium', u'product', u'boost'] [u'road', u'close', u'continu', u'burn'] [u'rubbish', u'dump', u'near', u'reef', u'stun'] [u'ruddock', u'count', u'cost', u'habib', u'return'] [u'rudd', u'view', u'aceh', u'reconstruct', u'effort'] [u'rural', u'school', u'access', u'nurs'] [u'safin', u'sweep', u'open', u'round'] [u'crew', u'high', u'alert'] [u'santo', u'grant', u'victorian', u'licenc'] [u'sarwan', u'gayl', u'guid', u'windi', u'competit', u'total'] [u'sarwan', u'guid', u'windi', u'competit', u'total'] [u'schroeder', u'launch', u'einstein', u'year'] [u'sharapova', u'dig', u'deep', u'advanc', u'round'] [u'shock', u'murali', u'call', u'tsunami'] [u'solar', u'flare', u'set', u'stage', u'aurora', u'australi'] [u'solomon', u'chief', u'collector', u'charg', u'fraud'] [u'sell', u'storag', u'centr'] [u'special', u'author', u'overse', u'aceh', u'reconstruct'] [u'spray', u'begin', u'limit', u'locust', u'swarm'] [u'stage', u'reflect', u'etern', u'man', u'legaci'] [u'strong', u'earthquak', u'shake', u'japan'] [u'student', u'eager', u'await', u'tertiari', u'offer'] [u'suicid', u'blast', u'near', u'aust', u'embassi', u'baghdad'] [u'suicid', u'bomb', u'cloud', u'abba', u'visit'] [u'switch', u'stop', u'collect', u'beauti', u'go', u'unseen'] [u'sydney', u'host', u'north', u'south', u'chariti', u'rugbi', u'match'] [u'tamworth', u'singer', u'win', u'nation', u'countri', u'music'] [u'musician', u'perform', u'world', u'expo'] [u'scientist', u'help', u'understand', u'jewfish'] [u'teenag', u'drown', u'maribyrnong', u'river'] [u'teen', u'critic', u'brutal', u'bash'] [u'teen', u'face', u'trial', u'fatal', u'crash'] [u'tiger'] [u'toddler', u'kill', u'cobram', u'crash'] [u'tonga', u'polic', u'chief', u'join', u'democraci'] [u'tsunami', u'forens', u'team', u'record', u'earli', u'success'] [u'tsunami', u'survivor', u'look', u'futur'] [u'soldier', u'deni', u'iraq', u'abus', u'charg'] [u'underworld', u'killer', u'jail', u'secret', u'hear'] [u'develop', u'biodegrad', u'mozzi', u'trap'] [u'union', u'want', u'labor', u'leader', u'support', u'forestri'] [u'place'] [u'unstopp', u'mcewen', u'rule', u'tour'] [u'citizen', u'border', u'patrol', u'hand'] [u'court', u'dismiss', u'charg', u'saudi', u'govt'] [u'court', u'sidestep', u'guantanamo', u'detaine', u'case'] [u'keep', u'locat', u'iraqi', u'vote', u'booth', u'secret'] [u'oppos', u'climat', u'refer', u'disast', u'talk'] [u'vacant', u'gold', u'coast', u'block', u'fetch'] [u'watch'] [u'resum', u'drug', u'drive', u'test'] [u'victorian', u'urg', u'look', u'ant'] [u'vietnam', u'ban', u'poultri', u'import', u'bird', u'fight'] [u'virgin', u'blue', u'issu', u'profit', u'warn'] [u'virgin', u'blue', u'passeng', u'arrest', u'bomb', u'claim'] [u'virgin', u'blue', u'passeng', u'face', u'court', u'explos'] [u'warn', u'exot', u'plant', u'cost', u'cane', u'toad'] [u'tertiari', u'offer', u'releas', u'today'] [u'white', u'supremacist', u'lawyer', u'dismiss', u'charg'] [u'wind', u'chang', u'eas', u'perth', u'bushfir', u'risk'] [u'woodsid', u'benefit', u'price', u'hike'] [u'rebel', u'kill', u'aceh', u'general'] [u'averag', u'temperatur', u'predict', u'mackay'] [u'accc', u'keep', u'close', u'wagga', u'fuel', u'price'] [u'address', u'hinder', u'emerg', u'crew'] [u'afghan', u'strongman', u'surviv', u'assassin', u'attempt'] [u'agforc', u'fear', u'sorghum', u'price', u'fall'] [u'alic', u'facil', u'reduc', u'anti', u'social', u'behaviour'] [u'alic', u'hostel', u'get', u'upgrad'] [u'alic', u'play', u'featur', u'sydney', u'festiv'] [u'anderson', u'rule', u'iraq', u'troop', u'withdraw'] [u'call', u'swim', u'champ', u'financ', u'rethink'] [u'appl', u'size', u'hail', u'hammer', u'adelaid'] [u'asic', u'make', u'inroad', u'financi', u'report'] [u'continu', u'tumbl'] [u'attempt', u'guinea', u'presid', u'life', u'fail'] [u'aussi', u'healey', u'bow', u'open'] [u'aussi', u'rider', u'lead', u'tour', u'head', u'south'] [u'australia', u'challeng', u'movi', u'piraci', u'fight'] [u'australia', u'rule', u'swim', u'world'] [u'aust', u'suppli', u'iraq', u'elect', u'ballot', u'paper'] [u'author', u'back', u'expans'] [u'bali', u'bomber', u'deni', u'cleric', u'attack', u'role'] [u'barnett', u'attack', u'industri', u'action', u'claim'] [u'bendigo', u'council', u'rule', u'tram', u'project'] [u'offer', u'women', u'revolut'] [u'blake', u'walkov', u'hewitt'] [u'blue', u'chase', u'outright', u'point', u'adelaid'] [u'blue', u'dock', u'slow', u'rate'] [u'blue', u'total', u'control'] [u'bodi', u'river'] [u'british', u'soldier', u'prison', u'abus', u'trial', u'halt'] [u'broadbridg', u'farewel', u'privat', u'servic'] [u'break', u'hill', u'oliv', u'grower', u'save', u'water'] [u'broom', u'blood', u'bank', u'plead', u'donor'] [u'budget', u'constrain', u'polic', u'opposit', u'say'] [u'bull', u'claim', u'inning', u'point'] [u'bushfir', u'smoke', u'pose', u'perth', u'health', u'risk'] [u'busi', u'ask', u'comment', u'bateman', u'retail'] [u'govern', u'improv', u'south', u'coast', u'school'] [u'local', u'candid', u'latham', u'seat'] [u'upgrad', u'patrol', u'bruce', u'highway'] [u'call', u'grow', u'rudd', u'step'] [u'canberra', u'die', u'aboard', u'divert', u'plane'] [u'candid', u'bicker', u'work', u'practic'] [u'carter', u'holt', u'harvey', u'report', u'profit', u'turnaround'] [u'showcas', u'townsvill', u'lifestyl'] [u'charlott', u'come', u'australia'] [u'china', u'consid', u'south', u'pole', u'post', u'offic'] [u'china', u'hold', u'funer', u'depos', u'leader', u'zhao'] [u'comment', u'invit', u'break', u'hill', u'plan'] [u'communiti', u'polic', u'smoke', u'rule', u'council'] [u'compani', u'fail', u'address', u'aid', u'risk', u'survey'] [u'coonawarra', u'face', u'rationalis'] [u'corpor', u'america', u'pay', u'bush', u'parti'] [u'council', u'consid', u'border', u'road', u'plan'] [u'council', u'plan', u'opal', u'tourist', u'rout'] [u'council', u'ask', u'support', u'volunt', u'plan'] [u'council', u'revis', u'dog', u'polici'] [u'court', u'dismiss', u'challeng', u'road', u'extens'] [u'court', u'reject', u'telco', u'tower', u'applic'] [u'cyclon', u'develop', u'near', u'cape', u'york'] [u'dalbi', u'hospit', u'gain', u'doctor'] [u'darl', u'river', u'peak', u'earli'] [u'defenc', u'exercis', u'affect', u'tsunami'] [u'depart', u'sorri', u'pass', u'away', u'letter'] [u'doctor', u'embryo', u'select', u'prevent', u'rhesus'] [u'doctor', u'learn', u'fever', u'outbreak'] [u'drug', u'accus', u'danger', u'bail'] [u'drug', u'user', u'curs', u'popular', u'lubric'] [u'dubbo', u'plead', u'guilti', u'cattl', u'theft'] [u'eagl', u'mcdougal', u'knife'] [u'educ', u'cite', u'child', u'abus', u'report', u'rise'] [u'embryo', u'test', u'prevent', u'rhesus', u'factor', u'diseas'] [u'emot', u'schett', u'bow', u'world', u'tenni'] [u'north', u'cyclon', u'watch'] [u'fiji', u'releas', u'coup', u'plotter', u'despit', u'militari'] [u'firefight', u'test', u'techniqu'] [u'worldcom', u'chief', u'fraud', u'trial', u'begin'] [u'fossil', u'help', u'human', u'evolut'] [u'gallop', u'prais', u'firefight', u'volunt'] [u'gillard', u'consult', u'leadership', u'prospect'] [u'gillespi', u'clear', u'gabba', u'clash'] [u'gillespi', u'medic', u'watch', u'gilchrist'] [u'tsunami', u'dollar', u'local', u'actu'] [u'govt', u'vow', u'consult', u'open', u'rout'] [u'green', u'warn', u'protest', u'energi'] [u'hafeez', u'report', u'bowl', u'action'] [u'helicopt', u'oper', u'accus', u'council', u'vendetta'] [u'henman', u'cruis', u'round'] [u'hewitt', u'stop', u'blake', u'comeback'] [u'hewitt', u'overcom', u'blake', u'advanc', u'round'] [u'hewitt', u'overcom', u'tenaci', u'blake'] [u'driver', u'acquit', u'conceal', u'evid'] [u'hous', u'crack', u'canadian', u'cold', u'spell'] [u'rank', u'offici'] [u'illeg', u'dump', u'anger', u'fisher'] [u'indian', u'collector', u'threaten', u'tsunami', u'fundrais'] [u'indigen', u'leader', u'criticis', u'palm', u'island', u'alcohol'] [u'indonesia', u'hope', u'peac', u'talk'] [u'indonesian', u'effort', u'hamper', u'flood'] [u'indonesian', u'wont', u'increas', u'despit', u'revis', u'toll'] [u'inform', u'shed', u'light', u'gangland', u'kill'] [u'investig', u'begin', u'industri', u'accid'] [u'isra', u'palestinian', u'resum', u'talk'] [u'juri', u'prais', u'manslaught', u'acquitt'] [u'kearn', u'return', u'storm', u'captainci'] [u'kuznetsova', u'belgian', u'minist'] [u'late', u'winner', u'see', u'heart'] [u'lead', u'asbesto', u'campaign', u'die'] [u'liber', u'decid', u'stirl', u'candid'] [u'local', u'doctor', u'return', u'aceh'] [u'magistr', u'seek', u'prison', u'altern', u'remot'] [u'maher', u'centuri', u'put', u'queensland', u'seat'] [u'major', u'think', u'bush', u'make', u'world', u'danger', u'poll'] [u'drown', u'melbourn', u'river'] [u'drown', u'save'] [u'kill', u'industri', u'accid'] [u'kill', u'singl', u'accid'] [u'marron', u'warn', u'issu', u'fishermen'] [u'matilda', u'down', u'shanghai'] [u'mcguigan', u'grower', u'urg', u'protest', u'price'] [u'meet', u'discuss', u'golf', u'cours', u'develop', u'plan'] [u'merger', u'plan', u'springborg', u'anderson', u'say'] [u'minist', u'disagre', u'embassi', u'bomb'] [u'mix', u'reaction', u'mine', u'agreement', u'chang'] [u'molik', u'storm', u'round'] [u'montreal', u'strip', u'world', u'swim', u'championship'] [u'moran', u'friend', u'clear', u'drug', u'involv'] [u'mourner', u'farewel', u'broadbridg'] [u'myskina', u'round'] [u'nadal', u'oust', u'youzhni', u'epic'] [u'nasa', u'rover', u'find', u'meteorit', u'mar'] [u'nation', u'eye', u'open', u'rang', u'enclosur'] [u'sale', u'drop', u'record'] [u'newcastl', u'grain', u'export', u'doubl'] [u'newcastl', u'group', u'seek', u'hous', u'african', u'refuge'] [u'sponsor', u'bathurst', u'race'] [u'year', u'race', u'stay', u'longford'] [u'alcohol', u'beer', u'show', u'potenti', u'cancer', u'shield'] [u'polic', u'welcom', u'minist'] [u'investig', u'join', u'tsunami', u'team', u'phuket'] [u'farm', u'committe', u'shock', u'sack'] [u'olymp', u'champion', u'massu', u'limp', u'open'] [u'passeng', u'uninjur', u'crash'] [u'polic', u'clear', u'sudanes', u'refuge', u'crime', u'wave', u'claim'] [u'polic', u'fear', u'miss', u'mother'] [u'polic', u'probe', u'lennox', u'sexual', u'assault'] [u'polic', u'probe', u'luxuri', u'boat'] [u'polic', u'seek', u'coward', u'tortur', u'kitten'] [u'polic', u'provid', u'industri', u'liaison', u'offic'] [u'pont', u'say', u'unresolv', u'deal', u'wont', u'distract'] [u'pont', u'welcom', u'suspect', u'action', u'report'] [u'poor', u'profit', u'report', u'drive', u'market', u'lower'] [u'popular', u'campsit', u'vandalis'] [u'priest', u'admit', u'indec', u'assault', u'parishion'] [u'qanta', u'reaffirm', u'profit', u'outlook'] [u'qanta', u'rub', u'salt', u'virgin', u'wound'] [u'cattl', u'live', u'export', u'expect', u'year'] [u'rape', u'sentenc', u'matter', u'stirl'] [u'rare', u'giant', u'panda', u'comeback'] [u'record', u'sale', u'show', u'waterfront', u'gold'] [u'record', u'student', u'offer', u'wollongong'] [u'refshaug', u'busi'] [u'region', u'worker', u'safeti', u'risk', u'cfmeu'] [u'relief', u'effort', u'get', u'eyr', u'peninsula'] [u'report', u'look', u'posit', u'outback', u'live'] [u'restaur', u'shut', u'food', u'poison', u'outbreak'] [u'return', u'digger', u'tell', u'iraq', u'attack'] [u'rockhampton', u'struggl', u'attract', u'doctor'] [u'roma', u'council', u'oppos', u'feedlot', u'plan'] [u'ronaldo', u'rooney', u'sink', u'brave', u'exet'] [u'rural', u'doctor', u'crisi', u'link', u'intak'] [u'safeti', u'inspector', u'lack', u'special', u'knowledg', u'audit'] [u'focus', u'shift', u'relief', u'effort'] [u'fire'] [u'sanchez', u'turn', u'heat', u'tour'] [u'savag', u'saga', u'end', u'blackburn'] [u'school', u'holiday', u'blame', u'festiv', u'chang'] [u'scottish', u'golfer', u'unveil', u'centuri'] [u'scottish', u'golfer', u'unveil', u'centuri'] [u'search', u'miss', u'tourist', u'call'] [u'secondari', u'student', u'school', u'cape', u'barren'] [u'serial', u'rock', u'thrower', u'strike', u'rann', u'offer', u'reward'] [u'shaki', u'davenport', u'advanc', u'round'] [u'shark', u'spot', u'robe'] [u'shire', u'offer', u'volunt', u'tsunami', u'caus'] [u'shortag', u'forc', u'resid', u'cart', u'water'] [u'slow', u'year', u'ahead', u'live', u'sheep', u'trade', u'associ'] [u'snapshot', u'reveal', u'educ', u'economi', u'improv'] [u'stalin', u'imag', u'return', u'moscow', u'street'] [u'stone', u'marley', u'work', u'enter', u'grammi', u'hall', u'fame'] [u'sudanes', u'inquiri', u'deni', u'darfur', u'genocid'] [u'super', u'tail', u'prompt', u'licenc', u'review'] [u'surf', u'life', u'save', u'competit', u'begin', u'today'] [u'swimmer', u'urg', u'heed', u'warn'] [u'talk', u'continu', u'burnett', u'head', u'boat', u'harbour'] [u'child', u'abus', u'notif', u'increas'] [u'tasmania', u'chase', u'victori', u'beller'] [u'river', u'monitor', u'plan'] [u'test', u'begin', u'wild', u'spray'] [u'thai', u'banker', u'jail', u'crisi', u'trigger', u'fraud'] [u'thailand', u'confirm', u'bird', u'outbreak'] [u'thirteen', u'year', u'driver', u'passeng', u'kill', u'crash'] [u'thousand', u'celebr', u'festiv', u'sacrific'] [u'tiger', u'warrior', u'confirm', u'clash'] [u'tote', u'tasmania', u'say', u'delorain', u'race', u'safe'] [u'tourism', u'group', u'upbeat', u'despit', u'lower', u'market'] [u'tourism', u'industri', u'welcom', u'rise', u'japanes', u'visitor'] [u'tradesmen', u'shortag', u'delay', u'hervey', u'develop'] [u'tsunami', u'survivor', u'eat', u'leav'] [u'appear', u'court', u'mayfield', u'murder'] [u'offer'] [u'upgrad', u'renmark', u'hospit', u'begin', u'oper'] [u'judg', u'dismiss', u'guantanamo', u'legal', u'challeng'] [u'landlord', u'slam', u'guantanamo', u'violat'] [u'offer', u'renew', u'tie', u'aceh', u'conflict', u'resolv'] [u'scale', u'tsunami', u'relief', u'effort'] [u'victoria', u'scrap', u'provoc', u'defenc', u'murder'] [u'govt', u'fear', u'environment', u'cost', u'bushfir'] [u'liber', u'criticis', u'govt', u'propaganda'] [u'south', u'west', u'face', u'tougher', u'water', u'restrict'] [u'watkin', u'awar', u'difficult', u'task', u'ahead'] [u'western', u'power', u'face', u'prosecut', u'child', u'death'] [u'whitsunday', u'support', u'project'] [u'wild', u'storm', u'lash'] [u'william', u'overcom', u'peng', u'second'] [u'woman', u'charg', u'ararat', u'stab'] [u'worker', u'consid', u'option', u'fatal', u'accid'] [u'work', u'resum', u'fatal', u'accid'] [u'xstrata', u'consid', u'deadlin', u'extens'] [u'xstrata', u'extend', u'offer'] [u'yachti', u'mourn', u'sydney', u'hobart', u'veteran'] [u'young', u'peopl', u'seek', u'govt', u'advis'] [u'yushchenko', u'clear', u'offic'] [u'zimbabw', u'file', u'suit', u'coup', u'plot', u'claim'] [u'releas', u'popul', u'outlook'] [u'get', u'answer', u'liber', u'silent', u'number', u'access'] [u'cricket', u'suspend', u'posit', u'drug', u'test'] [u'agassi', u'face', u'tough', u'test'] [u'agassi', u'move', u'fourth', u'round'] [u'alburi', u'polic', u'investig', u'woman', u'death'] [u'anti', u'terror', u'equip', u'roll'] [u'asbesto', u'campaign', u'lay', u'rest'] [u'asbesto', u'sit', u'pose', u'increas', u'health', u'risk', u'report'] [u'aust', u'team', u'survey', u'tsunami', u'damag', u'maldiv'] [u'aust', u'send', u'nuclear', u'wast'] [u'beazley', u'woo', u'victorian'] [u'bega', u'specialist', u'workload'] [u'assist', u'tsunami', u'victim'] [u'bird', u'evolv', u'epidem'] [u'blue', u'claim', u'outright', u'point', u'adelaid'] [u'blue', u'close', u'outright', u'point'] [u'brisban', u'prison', u'worker', u'strike'] [u'brochur', u'aim', u'discourag', u'teen', u'prostitut'] [u'brothel', u'owner', u'plan', u'expans'] [u'builder', u'attack', u'govt', u'devaugh', u'collaps'] [u'bull', u'near', u'victori', u'beller'] [u'bull', u'point', u'tasmania'] [u'bush', u'take', u'oath', u'pledg', u'spread', u'freedom'] [u'busi', u'win', u'liber', u'endors', u'stirl'] [u'canberra', u'popul', u'tip', u'approach'] [u'canberra', u'surgeri', u'wait', u'list', u'grow'] [u'candid', u'fail', u'address', u'social', u'crisi', u'say'] [u'caperte', u'die', u'accid'] [u'cape', u'york', u'cyclon', u'watch', u'cancel'] [u'cape', u'york', u'intensifi'] [u'bomb', u'target', u'shiit', u'iraqi'] [u'carr', u'tout', u'econom', u'record', u'minist', u'swear'] [u'centr', u'expect', u'iraqi', u'regist'] [u'chlorin', u'kununurra', u'plant'] [u'church', u'defrock', u'olymp', u'marathon', u'pest'] [u'communiti', u'adopt', u'school', u'pool', u'rule'] [u'jail', u'child', u'porn', u'collect'] [u'council', u'claim', u'rat', u'issu'] [u'council', u'question', u'bushfir', u'zone'] [u'council', u'revolt', u'smoke', u'patrol'] [u'counterpart', u'hope', u'dialogu', u'bush', u'second', u'term'] [u'crash', u'command', u'reassign'] [u'crew', u'applaud', u'hard', u'work', u'fight', u'perth', u'fire'] [u'custodian', u'continu', u'develop', u'protest'] [u'dairi', u'farmer', u'expect', u'profit', u'rise'] [u'disput', u'continu', u'hardwar', u'store', u'develop'] [u'downer', u'welcom', u'bush', u'inaugur', u'speech'] [u'drag', u'race', u'organis', u'hope', u'thousand'] [u'earli', u'sign', u'posit', u'takeov'] [u'earthquak', u'shake', u'capit'] [u'ebay', u'result', u'hit', u'market'] [u'elder', u'step', u'defus', u'brawl'] [u'embassi', u'face', u'difficulti', u'iraq'] [u'defend', u'phone', u'test'] [u'extra', u'fund', u'ensur', u'power', u'line', u'underground'] [u'extra', u'terrestri', u'squid', u'wash', u'beach'] [u'eyr', u'peninsula', u'visitor', u'catch', u'emot', u'bind'] [u'feder', u'cruis', u'fourth', u'round'] [u'feder', u'enter', u'fourth', u'round', u'walkov'] [u'fergi', u'wenger', u'buri', u'hatchet'] [u'ferguson', u'back', u'gillard', u'labor', u'leader'] [u'firework', u'warn', u'ahead', u'australia'] [u'flood', u'guyana', u'disast', u'zone'] [u'forestri', u'associ', u'fear', u'fibreboard', u'plant'] [u'forestri', u'group', u'concern', u'fibreboard', u'compani'] [u'french', u'probe', u'armstrong', u'dope', u'claim'] [u'fund', u'flow', u'eyr', u'bushfir', u'farmer'] [u'gallop', u'chastis', u'desert', u'campaign'] [u'gender', u'bend', u'tajik', u'snow', u'queen', u'ballet'] [u'global', u'warm', u'link', u'great', u'die'] [u'govt', u'accus', u'delay', u'habib', u'repatri'] [u'govt', u'accus', u'isol', u'indigen', u'public'] [u'grant', u'money', u'help', u'catchment', u'protect'] [u'group', u'watch', u'south', u'west', u'rock'] [u'guard', u'shoot', u'prison', u'face', u'charg'] [u'gulf', u'readi', u'cyclon'] [u'health', u'author', u'close', u'sourc', u'food'] [u'heartfelt', u'thank', u'alic', u'tsunami', u'fundrais'] [u'histor', u'seedl', u'sale'] [u'hondo', u'burst', u'fire', u'zimbabw', u'victori'] [u'hrbati', u'outlast', u'gaudio', u'epic', u'duel'] [u'ident', u'plan', u'australia', u'card', u'ruddock'] [u'iluka', u'resid', u'catch', u'illeg', u'fish', u'dump'] [u'indonesian', u'armi', u'take', u'hard', u'line', u'aceh', u'rebel'] [u'inquiri', u'hear', u'call', u'eastman', u'psychopath'] [u'name', u'oneil', u'replac'] [u'iran', u'prepar', u'defend', u'interest', u'attack'] [u'iraqi', u'hostag', u'taker', u'offer', u'china', u'deal'] [u'jail', u'term', u'unchang', u'predatori', u'scout', u'master'] [u'kalgoorli', u'hospit', u'get', u'staff'] [u'king', u'pirat', u'croc', u'triumph'] [u'kirra', u'group', u'take', u'heart', u'minist', u'visit'] [u'kuznetsova', u'battl', u'fourth', u'round'] [u'latham', u'make', u'resign', u'formal'] [u'lehman', u'fire', u'lead', u'diego'] [u'liber', u'urg', u'commit', u'poison', u'victim'] [u'liquid', u'bodi', u'odour', u'repel', u'mosquito'] [u'love', u'nest', u'build', u'platypus'] [u'lucki', u'escap', u'south', u'coast', u'storm', u'lash'] [u'magic', u'nanni', u'lead', u'olivi', u'award', u'nomin'] [u'magistr', u'reserv', u'decis', u'dugong', u'cruelti', u'case'] [u'charg', u'onlin', u'role', u'teen', u'suicid'] [u'convict', u'rap', u'teenag', u'girl'] [u'die', u'adelaid', u'boat', u'accid'] [u'drown', u'peregian'] [u'matilda', u'fleec', u'go', u'chariti'] [u'mauresmo', u'second', u'tussl'] [u'media', u'caution', u'british', u'prison', u'abus', u'case'] [u'arrest', u'steal', u'sale'] [u'question', u'overnight', u'assault'] [u'molik', u'storm', u'round'] [u'urg', u'public', u'join', u'ambul', u'letter', u'campaign'] [u'safin', u'rumbl'] [u'bombard', u'hit', u'kashmir'] [u'look', u'cabinet', u'swear'] [u'medal', u'honour', u'malaysian', u'veteran'] [u'british', u'soldier', u'injur', u'basra', u'blast'] [u'nobl', u'call', u'leagu', u'nation', u'rethink'] [u'donat', u'tsunami'] [u'govt', u'monitor', u'citizen', u'collect'] [u'nurs', u'permit', u'conduct', u'smear', u'test'] [u'discoveri', u'boost'] [u'outlook', u'grape', u'grower', u'appear', u'brighter'] [u'overhead', u'cabl', u'inappropri', u'mayor', u'rule'] [u'pakistan', u'manag', u'say', u'rape', u'claim', u'comment', u'take'] [u'pakistan', u'team', u'boss', u'probe', u'rape', u'claim'] [u'palestin', u'exhibit', u'draw', u'complaint'] [u'palestinian', u'forc', u'deploy', u'gaza'] [u'palestinian', u'offer', u'plan', u'halt', u'attack', u'israel'] [u'palm', u'deflect', u'attent', u'townsvill'] [u'perth', u'firefight', u'blaze'] [u'perth', u'fire', u'affect', u'fruit', u'crop'] [u'pilbara', u'wast', u'treatment', u'plant'] [u'pirat', u'plunder', u'breaker'] [u'polic', u'search', u'fake', u'chariti', u'worker'] [u'polic', u'seek', u'public', u'help', u'deliber'] [u'polic', u'reveal', u'youth', u'tortur', u'kitten'] [u'polit', u'imped', u'tsunami', u'warn', u'plan'] [u'prison', u'abus', u'trial', u'judg', u'caution', u'comment'] [u'protest', u'target', u'bush', u'inaugur'] [u'prove', u'your', u'worth', u'hugh', u'tell', u'savag'] [u'public', u'urg', u'watch'] [u'govt', u'vet', u'consid', u'industri', u'action'] [u'queensland', u'beatti'] [u'raaf', u'pilot', u'return', u'sumatra'] [u'rain', u'rob', u'windi', u'victori'] [u'rann', u'outlin', u'proviso', u'takeov', u'support'] [u'ravensthorp', u'water', u'woe', u'worri', u'author'] [u'redford', u'kick', u'sundanc', u'polit', u'note'] [u'region', u'busi', u'econom', u'outlook', u'confid'] [u'research', u'diabet', u'drug', u'studi'] [u'resid', u'meet', u'field', u'plan'] [u'resid', u'urg', u'stand', u'race', u'hate'] [u'riverina', u'resid', u'inspect', u'storm', u'damag'] [u'roddick', u'down', u'rusedski', u'serv', u'battl'] [u'roller', u'coaster', u'real', u'look', u'recov', u'shock'] [u'roulett', u'crash'] [u'rudd', u'consult', u'colleagu', u'leadership'] [u'rural', u'clinic', u'boost', u'intern', u'number'] [u'russia', u'congratul', u'ukrain', u'presid'] [u'safin', u'surviv', u'injuri', u'scare', u'advanc', u'round'] [u'govt', u'cut', u'fee', u'victim'] [u'sanchez', u'lead', u'tour', u'head', u'hill'] [u'santo', u'share', u'surg', u'discoveri'] [u'urg', u'shatter', u'aceh', u'rebuild'] [u'second', u'tsunami', u'match', u'confirm', u'kolkata'] [u'begin', u'clean', u'storm'] [u'call', u'storm', u'prepar'] [u'firefight', u'assist', u'narrabri', u'clean'] [u'sharapova', u'breez', u'fourth', u'round'] [u'shaw', u'fail', u'drink', u'drive', u'charg'] [u'smith', u'rule', u'labor', u'leadership'] [u'sole', u'omagh', u'bomb', u'convict', u'overturn'] [u'solomon', u'soldier', u'rotat', u'week'] [u'south', u'coast', u'bear', u'brunt', u'storm'] [u'southcorp', u'investor', u'hop', u'recoup', u'loss'] [u'south', u'korean', u'soldier', u'alleg', u'forc'] [u'spongebob', u'song', u'offend', u'christian', u'group'] [u'lanka', u'clear', u'drunken', u'misconduct'] [u'lanka', u'includ', u'rebel', u'area', u'reconstruct'] [u'steal', u'wag', u'submiss', u'lodg', u'mackenroth'] [u'stone', u'satan', u'end', u'hajj', u'pilgrimag'] [u'storm', u'power'] [u'sugar', u'leader', u'fail', u'embrac', u'reform', u'say', u'kelli'] [u'suspect', u'court', u'secur', u'guard', u'death'] [u'sydney', u'resid', u'encourag', u'conserv', u'water'] [u'symond', u'line', u'promot'] [u'hous', u'price', u'increas', u'faster', u'averag'] [u'tasmanian', u'devil', u'tumour', u'diseas', u'spread'] [u'teen', u'turn', u'kitten', u'tortur'] [u'territori', u'get', u'gillard'] [u'theft', u'prompt', u'warn', u'properti', u'owner'] [u'thiev', u'sacrific', u'loot', u'mythic', u'getaway'] [u'thirsti', u'patron', u'antic', u'land', u'court'] [u'train', u'accus', u'spark', u'bushfir'] [u'travel', u'advisori', u'hamper', u'lanka', u'tourism', u'plan'] [u'trust', u'call', u'review', u'tram', u'project'] [u'tsunami', u'decim', u'aceh', u'child', u'popul'] [u'custodi', u'murder', u'charg'] [u'calcul', u'tsunami', u'massiv', u'environment', u'cost'] [u'union', u'safeti', u'audit', u'inaccur', u'workcov', u'say'] [u'union', u'swing', u'beazley'] [u'univers', u'look', u'rectifi', u'math'] [u'univers', u'report', u'high', u'demand', u'psycholog'] [u'asbestosi', u'victim', u'die', u'proud'] [u'blood', u'stock', u'unaffect', u'blood', u'bank', u'closur'] [u'voter', u'registr', u'extend', u'expat', u'iraqi'] [u'warn', u'murali', u'loom'] [u'watchdog', u'consid', u'nuclear', u'wast', u'deal'] [u'welfar', u'group', u'seek', u'live', u'export'] [u'west', u'indi', u'provid', u'tough', u'resist'] [u'west', u'indi', u'suffer', u'contenti', u'decis'] [u'west', u'indi', u'control'] [u'wild', u'storm', u'lash', u'western'] [u'say', u'xstrata', u'deadlin', u'extens', u'predict'] [u'woolgrow', u'join', u'action', u'anim', u'right', u'group'] [u'zarqawi', u'warn', u'insurg', u'victori', u'year'] [u'zone', u'plan', u'releas', u'propos', u'marin', u'park'] [u'food', u'poison', u'case', u'confirm'] [u'south', u'african', u'face', u'travel', u'rort', u'charg'] [u'akhtar', u'fli', u'home', u'treatment'] [u'zarqawi', u'loyalist', u'behead', u'iraqi', u'soldier'] [u'armstrong', u'assist', u'dope', u'investig'] [u'arson', u'attack', u'caus', u'million', u'damag'] [u'kill', u'baghdad', u'bomb', u'attack'] [u'australian', u'prepar', u'tough', u'battl'] [u'bardot', u'decri', u'polar', u'bear', u'hunt'] [u'beslan', u'resid', u'ralli', u'sieg', u'cover'] [u'race', u'promot', u'albatross', u'awar'] [u'bird', u'kill', u'vietnam'] [u'blogger', u'world', u'storm'] [u'brisban', u'ambul', u'bind'] [u'burn', u'dinner', u'prompt', u'backpack', u'evacu'] [u'canada', u'pass', u'legisl', u'marriag'] [u'canberra', u'stadium', u'go'] [u'chines', u'media', u'report', u'hostag', u'releas'] [u'chisel', u'star', u'stop', u'thief'] [u'expect', u'jump', u'enrol'] [u'clijster', u'confirm', u'antwerp', u'return'] [u'call', u'timor', u'memorandum'] [u'confer', u'draw', u'disast', u'action', u'plan'] [u'coria', u'swat', u'lacklustr', u'mosquito'] [u'curious', u'student', u'damag', u'dali', u'homag', u'newton'] [u'damp', u'patch', u'concern', u'water'] [u'dane', u'charg', u'prison', u'abus', u'iraq'] [u'davenport', u'strong', u'teenag', u'vaidisova'] [u'davydenko', u'thrash', u'lame', u'henman'] [u'dementieva', u'battl', u'past', u'hantuchova'] [u'dial', u'trial', u'weston', u'creek'] [u'see', u'posit', u'sign', u'bush', u'inaugur', u'speech'] [u'eyr', u'student', u'prepar', u'return', u'school'] [u'father', u'warn', u'copi', u'rock', u'thrower'] [u'fear', u'devil', u'diseas', u'affect', u'ecolog'] [u'iraqi', u'aust', u'regist', u'vote'] [u'firefight', u'battl', u'perth', u'blaze'] [u'fleme', u'blitz', u'murali', u'romp', u'home'] [u'windi', u'star', u'battl', u'cancer'] [u'gebrselassi', u'london', u'marathon'] [u'gilchrist', u'give', u'game', u'break'] [u'global', u'bank', u'apologis', u'slaveri', u'link'] [u'govt', u'quiz', u'rail', u'project'] [u'gypsi', u'joker', u'founder', u'die', u'age'] [u'hewitt', u'advanc', u'russian', u'storm', u'melbourn'] [u'hewitt', u'take', u'lead'] [u'hmas', u'ballarat', u'run', u'aground'] [u'iceland', u'apologis', u'iraqi', u'invas'] [u'imposs', u'protect', u'iraq', u'elect', u'allawi', u'say'] [u'indian', u'miss', u'oxfam'] [u'iraq', u'arrest', u'elect', u'candid', u'chalabi'] [u'israel', u'welcom', u'effort', u'stem', u'palestinian', u'attack'] [u'italian', u'soldier', u'kill', u'iraq'] [u'kidnapp', u'china', u'citizen', u'iraq'] [u'labor', u'leadership', u'contend', u'shore', u'number'] [u'launceston', u'leav', u'million', u'dollar', u'damag'] [u'lehman', u'lead', u'lonard', u'trail'] [u'lonard', u'touch', u'diego'] [u'luxemburgo', u'lash', u'real', u'flop'] [u'macgil', u'captain', u'blue', u'haddin', u'get', u'australia'] [u'maher', u'motiv', u'select', u'snub'] [u'malawi', u'judg', u'strike', u'demand', u'wheel'] [u'arrest', u'wake', u'turn', u'ugli'] [u'market', u'jitter', u'prompt', u'late', u'sell'] [u'milit', u'israel', u'ceas'] [u'molik', u'set', u'clash', u'venus'] [u'motorist', u'surrend'] [u'myskina', u'advanc', u'raymond', u'withdraw'] [u'navi', u'launch', u'patrol', u'boat'] [u'slam', u'bush', u'report'] [u'newcastl', u'resid', u'ralli', u'racism'] [u'gunner', u'deal', u'campbel', u'lauren'] [u'newspol', u'show', u'beazley', u'prefer', u'leader'] [u'nimbin', u'tour', u'oper', u'warn', u'drug', u'tour'] [u'govt', u'slug', u'farmer', u'locust', u'levi', u'increas'] [u'lead', u'lifesav', u'comp'] [u'medic', u'student', u'fire', u'bike', u'ride'] [u'older', u'mother', u'push', u'caesarean', u'birth', u'rate'] [u'pari', u'sight', u'star', u'vinci', u'code', u'film'] [u'peacekeep', u'disput', u'delay', u'sudan', u'mission'] [u'polic', u'charg', u'alleg', u'kitten', u'tortur'] [u'polic', u'injur', u'brisban', u'brawl'] [u'polic', u'investig', u'ambul', u'servic', u'employe'] [u'polic', u'offic', u'sack', u'duti', u'fight'] [u'polic', u'pour', u'cold', u'water', u'scam'] [u'polic', u'probe', u'death', u'brisban'] [u'polic', u'probe', u'samurai', u'sword', u'attack'] [u'polic', u'search', u'prison', u'escap'] [u'polic', u'seek', u'canberra', u'jacker'] [u'polic', u'union', u'criticis', u'offic', u'sack'] [u'power', u'storm'] [u'price', u'taxi', u'driver', u'knowledg', u'open', u'negoti'] [u'council', u'wont', u'enforc', u'smoke', u'ban'] [u'queanbeyan', u'mother', u'turndown', u'pain', u'killer', u'birth'] [u'rain', u'delay', u'start', u'centurion', u'test'] [u'roddick', u'breez'] [u'roulett', u'aust', u'appoint'] [u'rudd', u'decid', u'soon', u'leadership'] [u'scheiffer', u'leav', u'ambassador', u'post', u'tokyo'] [u'second', u'youth', u'charg', u'kitten', u'tortur'] [u'sensat', u'sanchez', u'end', u'ogradi', u'hop'] [u'singh', u'nomin', u'hall', u'fame'] [u'storm', u'power', u'south', u'east'] [u'storm', u'wine', u'harvest'] [u'tamworth', u'festiv', u'hail', u'success'] [u'bushfir', u'threaten', u'shack'] [u'sight', u'plummet'] [u'govt', u'urg', u'sell', u'spirit'] [u'thorp', u'back', u'indigen', u'swim', u'scheme'] [u'minut', u'labour', u'leav', u'hold', u'babi'] [u'tiger', u'enter', u'theatrett', u'cruelti'] [u'titan', u'probe', u'reveal', u'flammabl', u'world'] [u'tsunami', u'relief', u'effort', u'enter', u'second', u'phase'] [u'tunarama', u'kick', u'port', u'lincoln'] [u'send', u'data', u'collect', u'ship', u'aceh', u'epicentr'] [u'union', u'secur', u'work', u'parti', u'public', u'sector'] [u'unit', u'face', u'mammoth', u'task', u'titl', u'admit', u'fergi'] [u'prais', u'palestinian', u'secur', u'effort'] [u'author', u'investig', u'food', u'poison', u'outbreak'] [u'extradit', u'rape', u'charg'] [u'waterhous', u'bushfir', u'threaten', u'shack'] [u'white', u'break', u'year', u'drought'] [u'white', u'hous', u'scrap', u'coalit', u'will', u'list'] [u'world', u'bank', u'call', u'africa'] [u'world', u'stutter', u'tsunami', u'appeal', u'match'] [u'yarra', u'contamin', u'stir', u'polit', u'stink'] [u'dead', u'iraq', u'hospit'] [u'abba', u'fail', u'talk', u'hama', u'leader', u'join'] [u'agassi', u'set', u'feder', u'clash'] [u'agassi', u'wari', u'johansson', u'serv'] [u'age', u'public', u'servic', u'problem', u'opposit', u'say'] [u'alcohol', u'target', u'tourist'] [u'alic', u'get', u'world', u'tourism', u'talk'] [u'qaeda', u'link', u'group', u'claim', u'kill', u'iraqi'] [u'armi', u'help', u'bushfir', u'clean'] [u'australia', u'cours', u'victori'] [u'australia', u'tighten', u'grip'] [u'backburn', u'continu', u'waterhous', u'reserv'] [u'backpack', u'flee', u'hostel', u'blaze'] [u'barca', u'extend', u'lead'] [u'beazley', u'backer', u'run', u'smear', u'campaign', u'gillard'] [u'beazley', u'remain', u'unchalleng'] [u'berlusconi', u'empir', u'buy', u'radio', u'group'] [u'bevan', u'power', u'tiger', u'victori'] [u'music', u'lover'] [u'blair', u'call', u'labour', u'faith', u'occupi', u'polit'] [u'blewett', u'lead', u'redback', u'victori'] [u'blewett', u'put', u'good', u'posit'] [u'blue', u'take', u'gong', u'french', u'music', u'award'] [u'boati', u'fewer', u'risk', u'tsunami'] [u'brisban', u'child', u'attack', u'offend'] [u'brisban', u'unit', u'price', u'report'] [u'bungendor', u'educ', u'need', u'survey'] [u'crash', u'kill', u'passeng', u'nepal'] [u'bush', u'pledg', u'push', u'fight', u'terror'] [u'celtic', u'point', u'clear'] [u'chela', u'fin', u'spit', u'spat'] [u'chelsea', u'record', u'seventh', u'straight'] [u'children', u'dead', u'miss', u'ugandan'] [u'china', u'confirm', u'hostag', u'releas', u'iraq'] [u'clark', u'centuri', u'steer', u'australia', u'victori'] [u'communic', u'compani', u'develop', u'navi'] [u'concern', u'number', u'birth', u'ambul'] [u'confus', u'middl', u'east', u'ceas'] [u'council', u'say', u'dope', u'damag', u'communiti'] [u'court', u'recognis', u'aust', u'woman', u'rape', u'serviceman'] [u'cricket', u'walk', u'tsunami', u'victim'] [u'crowd', u'expect'] [u'death', u'link', u'pot'] [u'expat', u'iraqi', u'wari', u'elect'] [u'eyr', u'phone', u'fulli', u'reconnect', u'bushfir'] [u'feder', u'march', u'baghdati', u'win', u'heart'] [u'film', u'screen', u'tsunami', u'appeal'] [u'crew', u'high', u'alert'] [u'firefight', u'continu', u'battl', u'blaze'] [u'firefight', u'control', u'waterhous', u'reserv', u'blaze'] [u'flintoff', u'lead', u'england', u'fight'] [u'flood', u'restrict', u'traffic', u'near', u'townsvill'] [u'flood', u'bruce', u'highway'] [u'fli', u'tuna', u'earn', u'windfal', u'bushfir', u'victim'] [u'councillor', u'relat', u'runner'] [u'road', u'weekend'] [u'gallop', u'call', u'poll'] [u'gallop', u'prepar', u'poll'] [u'gilchrist', u'break', u'open', u'door', u'clark'] [u'gillard', u'hold', u'leadership', u'declar'] [u'govt', u'push', u'elector', u'reform'] [u'hewitt', u'easiest', u'barrack'] [u'hewitt', u'play', u'chela', u'spit', u'spat'] [u'hewitt', u'histrion', u'upset'] [u'hubbl', u'fate'] [u'indonesia', u'tsunami', u'toll'] [u'injur', u'robinson', u'upbeat', u'nation', u'chanc'] [u'investig', u'say', u'carramar', u'deliber'] [u'iran', u'warn', u'attack'] [u'iraq', u'secur', u'increas'] [u'king', u'silent', u'briberi', u'claim'] [u'kuznetsova', u'win', u'russian', u'battl'] [u'liber', u'deni', u'offer', u'candid', u'oversea', u'post'] [u'lonard', u'second', u'stall', u'invit'] [u'lyon', u'refus', u'releas', u'player', u'tsunami', u'game'] [u'charg', u'alleg', u'rape'] [u'escap', u'sink', u'truck'] [u'hospitalis', u'home', u'invas'] [u'maningrida', u'resist', u'sell', u'kava'] [u'rescu', u'burn', u'unit'] [u'marin', u'park', u'protect', u'commerci', u'fish'] [u'mauresmo', u'beat', u'injuri', u'power', u'quarter'] [u'molik', u'readi', u'step', u'venus'] [u'monkey', u'busi', u'african', u'open'] [u'medic', u'head', u'aceh'] [u'navi', u'investig', u'ground', u'caus'] [u'prosecut', u'dutch', u'babi', u'euthanasia', u'studi'] [u'north', u'east', u'prepar', u'snow', u'storm'] [u'opera', u'crowd', u'rais', u'fund', u'tsunami', u'victim'] [u'opposit', u'seek', u'ambul', u'servic', u'theft'] [u'opposit', u'seek', u'public', u'hous', u'overhaul'] [u'opposit', u'welcom', u'traine', u'seek', u'hospit'] [u'piper', u'pip', u'mose', u'south', u'african', u'swimmer', u'record'] [u'polic', u'continu', u'search', u'prison', u'escap'] [u'polic', u'hunt', u'sexual', u'assault', u'case'] [u'polic', u'investig', u'drive', u'shoot'] [u'polic', u'investig', u'hous'] [u'polic', u'prais', u'confront', u'assault'] [u'polic', u'search', u'chase'] [u'polic', u'search', u'miss', u'albani', u'woman'] [u'polic', u'meet', u'gypsi', u'joker', u'funer', u'plan'] [u'polic', u'resum', u'search', u'miss'] [u'pope', u'say', u'abstin', u'fidel', u'best', u'stop', u'aid'] [u'star', u'unit', u'wale', u'tsunami', u'victim'] [u'produc', u'guild', u'name', u'aviat', u'best', u'film'] [u'queanbeyan', u'busi', u'communiti', u'form', u'lobbi', u'group'] [u'research', u'uncov', u'rare', u'smoke', u'posit'] [u'rosewal', u'lament', u'grass'] [u'ross', u'batman', u'post', u'qualifi', u'time'] [u'ross', u'batman', u'post', u'qualifi', u'time'] [u'rotten', u'wood', u'get', u'mushroom', u'cave', u'ordeal'] [u'rudd', u'remain', u'tight', u'lip', u'leadership'] [u'rusti', u'serena', u'overcom', u'petrova'] [u'safin', u'overcom', u'demon', u'reach', u'quarter'] [u'africa', u'commit', u'polic', u'darfur'] [u'like', u'extradit', u'thailand'] [u'sanchez', u'win', u'tour', u'mcewen', u'strike'] [u'search', u'suspend', u'miss', u'canyon'] [u'sharapova', u'come'] [u'ship', u'compani', u'play', u'strike', u'impact'] [u'solar', u'storm', u'disrupt', u'mobil', u'phone', u'televis'] [u'storm', u'batter', u'sydney'] [u'sudanes', u'rebel', u'leader', u'get', u'hero', u'welcom'] [u'surgeon', u'number', u'boost'] [u'sweet', u'symphoni', u'attract', u'crowd', u'thousand'] [u'dentist', u'tell', u'time', u'tsunami', u'devast'] [u'tasmanian', u'govt', u'defend', u'health', u'spend'] [u'tassi', u'rout', u'indonesia'] [u'thailand', u'rock', u'poll', u'violenc'] [u'thousand', u'comment', u'plan'] [u'tiger', u'restrict', u'warrior', u'devonport'] [u'tiger', u'hawk'] [u'tsunami', u'survivor', u'rescu', u'day'] [u'tullamarin', u'factori', u'investig'] [u'hospitalis', u'nightclub', u'violenc'] [u'tori', u'inspir', u'aust', u'immigr'] [u'expand', u'explor', u'alaska'] [u'wildcat', u'snap', u'lose', u'streak'] [u'wine', u'festiv', u'get', u'fruiti'] [u'wit', u'seek', u'jack'] [u'wood', u'catch', u'lehman', u'foggi', u'invit'] [u'young', u'hope', u'attack'] [u'yushchenko', u'call', u'uniti', u'ahead', u'inaugur'] [u'yushchenko', u'take', u'oath', u'ukrain', u'presid'] [u'zarqawi', u'declar', u'iraq', u'vote'] [u'abba', u'close', u'secur', u'milit', u'ceas'] [u'cameraman', u'catch', u'baghdad', u'blast'] [u'academ', u'warn', u'iraq', u'elect', u'difficulti'] [u'accc', u'investig', u'telstra', u'advantag', u'sport'] [u'packag', u'offer', u'boodari', u'worker'] [u'airport', u'passeng', u'number'] [u'alcohol', u'safeti', u'scheme', u'target', u'houseboat'] [u'allawi', u'confid', u'voter', u'wont', u'deter'] [u'anim', u'welfar', u'group', u'want', u'duck', u'plant', u'shut'] [u'arson', u'possibl', u'south', u'west', u'fire'] [u'art', u'festiv', u'hijack', u'oper', u'green'] [u'player', u'strike', u'deal'] [u'astl', u'centuri', u'anchor', u'zealand', u'inning'] [u'athlet', u'readi', u'dive', u'gold', u'coast', u'event'] [u'atsic', u'chairman', u'silent', u'asset', u'sale'] [u'award', u'tribut', u'documentari', u'maker', u'orourk'] [u'baghdad', u'bomb', u'wound'] [u'beach', u'goer', u'urg', u'disregard', u'sting'] [u'beatti', u'quiet', u'maddock', u'payout', u'detail'] [u'beazley', u'deni', u'dirti', u'trick', u'claim'] [u'bergkamp', u'strike', u'keep', u'gunner', u'hunt'] [u'blaze', u'forc', u'flat', u'evacu'] [u'booz', u'ban', u'busi', u'hard'] [u'brack', u'unveil', u'look', u'cabinet'] [u'british', u'navi', u'survey', u'tsunami', u'epicentr'] [u'brosnan', u'costner', u'career', u'turn', u'sundanc'] [u'burni', u'retail', u'develop'] [u'bushfir', u'report', u'highlight', u'need', u'nation'] [u'bushfir', u'inquest', u'continu'] [u'busi', u'baulk', u'main', u'street', u'fund'] [u'businessman', u'front', u'court', u'charg'] [u'busi', u'outlook', u'remain', u'restrain'] [u'byron', u'consid', u'tax', u'visitor', u'develop'] [u'candid', u'get', u'confid'] [u'carson', u'keep', u'american', u'late', u'year'] [u'celebr', u'chef', u'fin', u'drink', u'drive'] [u'chang', u'arrest', u'law', u'violat', u'redress', u'right'] [u'chariti', u'staff', u'posit', u'despit'] [u'chavez', u'claim', u'colombian', u'rebel', u'arrest'] [u'clark', u'happi', u'open', u'slot'] [u'coalit', u'backbench', u'push', u'welfar', u'reform'] [u'coalit', u'promis', u'kalgoorli', u'hospit', u'boost'] [u'coff', u'citi', u'centr', u'speed'] [u'commod', u'price', u'hop', u'push', u'market', u'higher'] [u'communiti', u'assist', u'polic', u'serial', u'rape', u'case'] [u'concern', u'tafe', u'servic', u'downgrad', u'western'] [u'council', u'elect', u'prefer', u'count', u'begin'] [u'council', u'drive', u'home', u'driveway', u'standard'] [u'councillor', u'want', u'food', u'drink', u'spend', u'detail'] [u'council', u'reject', u'smoke', u'enforc', u'role'] [u'crew', u'brace', u'bushfir', u'weather', u'loom'] [u'croc', u'cocki', u'play', u'off'] [u'davenport', u'march'] [u'davydenko', u'progress', u'quarter', u'final'] [u'dechi', u'stun', u'myskina', u'reach', u'quarter', u'final'] [u'diseas', u'threaten', u'aceh', u'warn'] [u'document', u'expos', u'nation', u'galleri', u'staff', u'cancer'] [u'attack', u'kill', u'famili', u'donkey'] [u'dog', u'audit', u'broadway', u'glori'] [u'downpour', u'spark', u'flood', u'woe'] [u'east', u'coast', u'step', u'closer'] [u'elton', u'john', u'play', u'pari', u'tsunami', u'victim'] [u'criticis', u'franc'] [u'ethanol', u'blend', u'fuel', u'flow', u'darl', u'down'] [u'expert', u'shed', u'light', u'indigen', u'tourism'] [u'famili', u'anger', u'shortag', u'prompt', u'patient'] [u'feder', u'agassi', u'sight'] [u'destroy', u'fleet'] [u'safeti', u'talk', u'track'] [u'firm', u'start', u'limeston', u'drill'] [u'flood', u'rain', u'put', u'north', u'author', u'alert'] [u'forecast', u'predict', u'econom', u'slowdown'] [u'forecast', u'predict', u'rain', u'queensland'] [u'franc', u'launch', u'pacif', u'reef', u'protect', u'plan'] [u'fraser', u'eye', u'nrma', u'presid'] [u'fruit', u'free', u'status', u'offer', u'greater', u'export'] [u'galleri', u'cancer', u'claim', u'need', u'investig'] [u'gallop', u'fail', u'fli', u'start'] [u'geraldton', u'consid', u'seat', u'elect'] [u'pledg', u'support', u'mentor', u'program'] [u'talk', u'reconcili', u'uluru', u'ceremoni'] [u'gillard', u'urg', u'parti', u'support', u'leader'] [u'glenelg', u'lake', u'clean', u'continu', u'fish', u'kill'] [u'govt', u'shell', u'turtl', u'display', u'fund'] [u'grant', u'control', u'tackl', u'communiti', u'woe'] [u'group', u'renew', u'call', u'communiti', u'liaison'] [u'group', u'share', u'export', u'push', u'fund'] [u'health', u'worker', u'consid', u'industri', u'action'] [u'heritag', u'council', u'support', u'preserv', u'public'] [u'hewitt', u'fight'] [u'hewitt', u'fight', u'fourth'] [u'hewitt', u'quarter', u'dramat'] [u'hewitt', u'prim', u'nadal', u'showdown'] [u'contest', u'predict', u'albani', u'bunburi'] [u'hundr', u'flee', u'kenyan', u'land', u'clash'] [u'impot', u'drug', u'reduc', u'heart', u'failur'] [u'incat', u'employe', u'return', u'work'] [u'indonesian', u'militari', u'urg', u'hand', u'effort'] [u'inspir', u'molik', u'upset', u'venus'] [u'intern', u'team', u'probe', u'filipino', u'journalist'] [u'iraqi', u'minist', u'fear', u'fraud', u'landmark', u'elect'] [u'israel', u'deputi', u'welcom', u'abba', u'peac', u'effort'] [u'japanes', u'militari', u'deploy', u'tsunami', u'indonesia'] [u'juve', u'extend', u'lead', u'livorno', u'stun', u'milan'] [u'kitten', u'attack', u'sicken', u'polic'] [u'labor', u'announc', u'katherin', u'candid'] [u'labor', u'backbench', u'throw', u'support', u'beazley'] [u'lee', u'slow', u'over', u'cost', u'money', u'boof'] [u'legal', u'servic', u'highlight', u'polic', u'interview', u'right'] [u'lifesav', u'standardis', u'surf', u'signag'] [u'lightn', u'blame', u'grafton', u'power', u'woe'] [u'lithgow', u'council', u'ponder', u'budget', u'blowout'] [u'lobster', u'fisher', u'tip', u'catch', u'plan'] [u'low', u'like', u'bring', u'central', u'rain'] [u'mackay', u'host', u'ethanol', u'workshop'] [u'magistr', u'exchang', u'program', u'begin'] [u'charg', u'tourist', u'theft'] [u'die', u'maaroom', u'crash'] [u'face', u'court', u'gang', u'stoush'] [u'surviv', u'slash', u'arteri'] [u'face', u'court', u'jail', u'break'] [u'marathon', u'polic', u'chase', u'end', u'safe'] [u'market', u'plan', u'delay', u'miss', u'tourist', u'visitor', u'peak'] [u'martyn', u'rest', u'katich', u'frame'] [u'miner', u'offer', u'creek', u'clean', u'plan'] [u'mine', u'firm', u'consid', u'marandoo', u'roster', u'option'] [u'minist', u'talk', u'traine', u'surgeon', u'plan'] [u'miss', u'toddler', u'reunit', u'famili'] [u'miss', u'woman', u'case', u'frustrat', u'polic'] [u'molik', u'quarter', u'final'] [u'molik', u'win', u'open', u'venus'] [u'geraldton', u'base', u'tsunami', u'victim'] [u'nation', u'bushfir', u'report', u'long', u'come'] [u'nation', u'galleri', u'reject', u'claim', u'cancer', u'cover'] [u'navi', u'investig', u'base', u'complaint'] [u'nbls', u'asian', u'push', u'gather', u'steam'] [u'netanyahu', u'reject', u'palestinian', u'truce', u'call'] [u'hope', u'osteoarthr', u'pain', u'suffer'] [u'resid', u'group', u'focus', u'crime', u'fight'] [u'echuca', u'bridg', u'debat'] [u'north', u'west', u'resid', u'prepar', u'poll'] [u'nrma', u'presid', u'oust', u'board', u'coup'] [u'scientist', u'head', u'aceh'] [u'kill', u'earthquak', u'spark', u'sulawesi', u'tsunami'] [u'opal', u'reactor', u'ramp', u'nuclear', u'product'] [u'opposit', u'want', u'waterfal', u'recommend'] [u'pair', u'charg', u'home', u'invas'] [u'pakistan', u'close', u'investig', u'rape', u'alleg'] [u'patriot', u'book', u'super', u'bowl', u'clash', u'eagl'] [u'petit', u'seek', u'armidal', u'hospit', u'boost'] [u'philli', u'break', u'super', u'bowl', u'drought'] [u'pike', u'issu', u'health', u'servic', u'probe', u'warn'] [u'plan', u'afoot', u'greater', u'waltz', u'matilda', u'centr'] [u'polic', u'appeal', u'help', u'catch', u'toddler'] [u'polic', u'arrest', u'drug', u'bust'] [u'polic', u'call', u'children', u'attack', u'crew'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'probe', u'port', u'germein', u'shoot'] [u'polic', u'search', u'arm', u'hold'] [u'polic', u'seek', u'clue', u'slay'] [u'princip', u'meet', u'educ'] [u'prison', u'farm', u'escap'] [u'probe', u'widen', u'roulett', u'crash'] [u'public', u'hous', u'head', u'defend', u'record'] [u'public', u'remind', u'danger'] [u'ranger', u'outlast', u'battl', u'don'] [u'real', u'return', u'form', u'valencia', u'lose'] [u'redevelop', u'plan', u'spark', u'green', u'concern'] [u'region', u'health', u'servic', u'alarm', u'number'] [u'report', u'find', u'economi', u'quieter', u'period'] [u'research', u'probe', u'dementia', u'fall'] [u'resourc', u'wast', u'miss', u'woman', u'ring', u'famili'] [u'retail', u'lobbi', u'longer', u'shop', u'hour'] [u'say', u'canberra', u'pull', u'posit', u'region'] [u'rise', u'land', u'valu', u'spark', u'rat', u'review'] [u'roddick', u'safe', u'quarter', u'final'] [u'rudd', u'delay', u'leadership', u'decis'] [u'rudd', u'wont', u'contest', u'labor', u'leadership'] [u'backbench', u'back', u'rudd', u'leadership', u'race'] [u'region', u'servic', u'doubt'] [u'scheme', u'boost', u'tourist', u'awar', u'alcohol', u'ban'] [u'school', u'base', u'apprenticeship', u'rise'] [u'school', u'return', u'student'] [u'search', u'resum', u'miss', u'canyon'] [u'servic', u'deliveri', u'see', u'issu', u'kimberley'] [u'shanghai', u'plan', u'space', u'citi'] [u'shattock', u'confid', u'port', u'success'] [u'shepparton', u'iraqi', u'defi', u'global', u'trend'] [u'singapor', u'claim', u'near', u'open', u'sky', u'deal'] [u'singer', u'secur', u'citizen', u'year', u'honour'] [u'snowstorm', u'caus', u'travel', u'chao'] [u'state', u'fund', u'cover', u'storm', u'damag'] [u'statist', u'highlight', u'fast', u'region', u'growth'] [u'storm', u'clean', u'keep', u'busi'] [u'strand', u'tourist', u'rescu', u'flood'] [u'strauss', u'thorp', u'weather', u'thwart', u'south', u'africa'] [u'strong', u'aftershock', u'shake', u'nicobar', u'island'] [u'student', u'school'] [u'student', u'readi', u'medic', u'school'] [u'sudanes', u'support', u'outnumb', u'anti', u'immigr'] [u'supermarket', u'shopper', u'avoid', u'crash'] [u'taiwan', u'cabinet', u'resign', u'pave', u'reshuffl'] [u'tara', u'drink', u'water', u'scheme'] [u'teacher', u'await', u'sentenc', u'affair', u'schoolgirl'] [u'teacher', u'plead', u'guilti', u'schoolgirl'] [u'teacher', u'suspend', u'polic', u'check'] [u'temperatur', u'rise', u'central'] [u'iraqi', u'kill', u'violenc', u'north', u'baghdad'] [u'test', u'measur', u'crash', u'damag', u'navi', u'ship'] [u'hospit', u'sydney', u'hous'] [u'tour', u'chase', u'offici', u'status'] [u'townsvill', u'land', u'sale'] [u'trade', u'tax', u'campaign', u'agenda'] [u'transport', u'firm', u'cop', u'heavi', u'fine', u'overload', u'truck'] [u'trochus', u'shell', u'harvest', u'continu'] [u'troop', u'near', u'home', u'solomon', u'stint'] [u'tsunami', u'aid', u'storm', u'surg', u'research'] [u'tsunami', u'toll', u'exceed'] [u'tuna', u'festiv', u'help', u'eas', u'woe'] [u'johnni', u'carson', u'die', u'age'] [u'bruce', u'highway', u'crash'] [u'hold', u'germani', u'iraq', u'bomb', u'plot'] [u'kill', u'bendigo', u'crash'] [u'women', u'plead', u'guilti', u'boy', u'assault'] [u'union', u'say', u'public', u'school', u'fund', u'fall'] [u'chang', u'unfair', u'student'] [u'accus', u'bulli', u'canada', u'defenc', u'plan'] [u'confirm', u'iraq', u'money', u'investig'] [u'enlist', u'robo', u'soldier'] [u'north', u'east', u'emerg', u'record', u'snowstorm'] [u'leader', u'campaign', u'trail'] [u'tear', u'afghanistan', u'give', u'help', u'hand', u'aceh'] [u'yachtsman', u'face', u'bali', u'court'] [u'yachtsman', u'appear', u'indonesian', u'court'] [u'weather', u'tip', u'wine', u'grape', u'harvest'] [u'wood', u'cruis', u'victori'] [u'world', u'beat', u'zealand', u'wicket'] [u'world', u'win', u'toss', u'bowl'] [u'young', u'smoker', u'quit'] [u'youth', u'meet', u'star', u'central', u'west'] [u'zarqawi', u'group', u'claim', u'kill', u'elect', u'candid'] [u'zarqawi', u'milit', u'execut', u'hostag', u'iraqi', u'street'] [u'guantanamo', u'detaine', u'attempt', u'suicid'] [u'resort', u'approv', u'agn', u'water'] [u'abba', u'order', u'demolit', u'illeg', u'build'] [u'abbott', u'deni', u'consum'] [u'accommod', u'shortag', u'prompt', u'roster', u'rethink'] [u'adelaid', u'film', u'festiv', u'program', u'unveil'] [u'aid', u'drug', u'test', u'cameroon', u'prostitut'] [u'alexand', u'catwoman', u'lead', u'razzi', u'nomin'] [u'annan', u'urg', u'intern', u'vigil', u'hate'] [u'arab', u'candid', u'pull', u'iraq', u'vote', u'kirkuk'] [u'atkinson', u'alleg', u'race', u'jibe'] [u'baghdad', u'embassi', u'shoot', u'investig'] [u'barnett', u'defend', u'fiscal', u'record'] [u'bash', u'woman', u'undergo', u'emerg', u'caesarean'] [u'beatti', u'didnt', u'order', u'gold', u'coast', u'home'] [u'beazley', u'welcom', u'rudd', u'support'] [u'beetl', u'nose', u'north'] [u'bega', u'face', u'doctor', u'shortag'] [u'belmont', u'vote', u'world', u'best', u'bowler'] [u'benefit', u'flow', u'noosa', u'river', u'plan', u'beatti'] [u'bird', u'like', u'jump', u'human'] [u'blaze', u'forc', u'man', u'flat', u'evacu'] [u'brack', u'attack', u'kitten', u'abus'] [u'british', u'media', u'blame', u'rise', u'anti', u'semit'] [u'bundaberg', u'celebr', u'australia'] [u'burn', u'doctor', u'name', u'australian', u'year'] [u'bush', u'seek', u'billion', u'militari', u'oper'] [u'businessman', u'name', u'gold', u'coast', u'citizen'] [u'candid', u'state', u'case', u'albani'] [u'childer', u'arsonist', u'plead', u'guilti', u'assault'] [u'china', u'measur', u'everest', u'amid', u'shrinkag', u'fear'] [u'christian', u'slater', u'escap', u'knife', u'attack', u'london'] [u'claim', u'govt', u'reject', u'bushfir', u'helicopt', u'rescu'] [u'cold', u'snap', u'grip', u'western', u'europ'] [u'commod', u'sale', u'expect', u'boost', u'market'] [u'contamin', u'hamper', u'stem', u'cell', u'research'] [u'costello', u'plan', u'beazley'] [u'costello', u'say', u'inflat', u'target', u'rang'] [u'council', u'defend', u'australia', u'balanc'] [u'council', u'endors', u'wind', u'farm'] [u'council', u'focus', u'launceston', u'infrastructur'] [u'council', u'hold', u'tourism', u'plan', u'talk'] [u'council', u'plan', u'residenti', u'land', u'boost'] [u'council', u'speak', u'wast', u'contract'] [u'council', u'motorcycl', u'event'] [u'council', u'cross', u'tsunami', u'debrief'] [u'council', u'lobbi', u'costa', u'highway', u'meet'] [u'darwin', u'council', u'consid', u'shower', u'dirti'] [u'darwin', u'delay', u'speed', u'chang', u'march'] [u'defenc', u'finish', u'assess', u'damag', u'frigat'] [u'democrat', u'claim', u'australia', u'council'] [u'democrat', u'sight', u'upper', u'hous', u'seat'] [u'canio', u'face', u'disciplinari', u'hear', u'fascist'] [u'diouf', u'steal', u'blackburn'] [u'doctor', u'urologist', u'resign'] [u'drug', u'industri', u'flag', u'concern'] [u'duck', u'lwrong', u'libber', u'claim', u'deni'] [u'dump', u'nrma', u'chief', u'prepar', u'face', u'board'] [u'educ', u'dept', u'offer', u'queenstown', u'tafe', u'assur'] [u'injur', u'melbourn', u'tram', u'collis'] [u'escap', u'catch', u'prison'] [u'expert', u'monitor', u'mango', u'diseas'] [u'explos', u'ronchi', u'lift'] [u'farm', u'accid', u'high'] [u'feder', u'humbl', u'agassi', u'reach', u'semi'] [u'feder', u'step', u'pressur', u'agassi'] [u'danger', u'eastern', u'tasmania'] [u'servic', u'back', u'claim', u'elvi', u'overr'] [u'dead', u'miss', u'thai', u'tourist', u'boat', u'tragedi'] [u'soldier', u'kill', u'iraq', u'accid'] [u'fli', u'fox', u'danger', u'despit', u'aerial', u'grid'] [u'food', u'poison', u'investig', u'finger', u'dip'] [u'freeway', u'work', u'like', u'boost', u'alburi', u'construct'] [u'french', u'actress', u'sign', u'vinci', u'code'] [u'gallop', u'govt', u'cough', u'sack', u'miner'] [u'gate', u'give', u'vaccin', u'fund', u'shoot'] [u'gold', u'coast', u'woman', u'face', u'indonesian', u'court'] [u'gorgon', u'tender', u'cost', u'job', u'green'] [u'govern', u'look', u'prevent', u'habib', u'sell', u'stori'] [u'govern', u'question', u'climat', u'chang', u'recommend'] [u'govern', u'unfurl', u'school', u'flagpol', u'plan'] [u'green', u'low', u'join', u'kimberley', u'contest'] [u'group', u'lobbi', u'boost', u'region', u'social', u'servic'] [u'grower', u'feder', u'drought'] [u'guard', u'fear', u'life', u'bash'] [u'gympi', u'gold', u'histori', u'shin', u'centenari'] [u'hervey', u'trawler', u'skipper', u'fin', u'illeg'] [u'hewitt', u'antic', u'good', u'tenni', u'say', u'nalbandian'] [u'hewitt', u'shrug', u'injuri', u'concern'] [u'hmas', u'adelaid', u'complet', u'persian', u'gulf', u'mission'] [u'hospit', u'mental', u'health', u'servic'] [u'hous', u'shortag', u'hinder', u'indigen', u'educ'] [u'howard', u'warn', u'elect', u'complac'] [u'best', u'say', u'beat', u'venus'] [u'incat', u'worker', u'stage', u'strike'] [u'indian', u'politician', u'murder', u'trigger', u'riot'] [u'indigen', u'communiti', u'eye', u'telescop', u'plan'] [u'indonesia', u'appoint', u'anti', u'money', u'launder', u'envoy'] [u'indonesia', u'send', u'team', u'rebel', u'talk'] [u'injur', u'flintoff', u'dayer'] [u'inquiri', u'chair', u'lament', u'lack', u'action', u'bushfir'] [u'grow', u'sheep', u'market'] [u'iran', u'rule', u'talk'] [u'iraqi', u'exil', u'littl', u'enthusiasm', u'vote'] [u'iraqi', u'forc', u'accus', u'tortur', u'detaine'] [u'iraqi', u'judg', u'assassin', u'baghdad'] [u'irrig', u'eas', u'water', u'ban'] [u'israel', u'consid', u'gaza', u'west', u'bank', u'train'] [u'girl', u'author', u'rowl'] [u'jilt', u'lover', u'admit', u'burn', u'girlfriend'] [u'johnson', u'retir', u'immens', u'reput', u'intact'] [u'katich', u'hogg', u'mcgrath', u'rotat', u'polici', u'continu'] [u'lack', u'specialist', u'servic', u'hinder', u'palsi'] [u'lion', u'roar', u'say', u'johnson'] [u'littl', u'show', u'skill', u'migrant', u'scheme'] [u'local', u'govt', u'reveal', u'elect', u'wish', u'list'] [u'lomu', u'hit', u'comeback', u'trail'] [u'fin', u'beckham', u'lose', u'head'] [u'mayor', u'open', u'wind', u'farm', u'plan'] [u'mayor', u'seek', u'releas', u'boost', u'creek'] [u'mcguigan', u'simeon', u'secur', u'mildara', u'wineri'] [u'mcmahon', u'bind', u'glori'] [u'mcmahon', u'bind', u'perth'] [u'meet', u'highlight', u'student', u'retent', u'fear'] [u'meet', u'discuss', u'oper', u'theatr', u'closur'] [u'melbourn', u'blitz', u'snare', u'drink', u'driver'] [u'mexico', u'seal', u'prison', u'murder'] [u'miner', u'hop', u'treasur', u'trash'] [u'minist', u'gloss', u'economi', u'warn'] [u'miss', u'expect', u'tsunami', u'toll', u'past'] [u'miss', u'man', u'bodi', u'river'] [u'miss', u'man', u'famili', u'happi', u'toowoomba', u'visit'] [u'seek', u'chang', u'lord', u'howe', u'visitor', u'law'] [u'murder', u'lose', u'parol', u'applic', u'shadow'] [u'trade', u'case', u'adjourn'] [u'netbal', u'unveil', u'busi', u'test', u'schedul'] [u'complex', u'focus', u'entertain'] [u'law', u'chang', u'communiti', u'base', u'sentenc'] [u'leas', u'life', u'possibl', u'nickel', u'project'] [u'minist', u'offer', u'rescu', u'chopper', u'hope'] [u'obes', u'mask', u'prostat', u'cancer', u'symptom'] [u'opera', u'great', u'bronhil', u'die'] [u'oper', u'resum', u'brisban', u'airport'] [u'orang', u'grove', u'inquiri', u'hear', u'corrupt'] [u'pakistan'] [u'palestinian', u'faction', u'fuel', u'optim', u'ceasefir'] [u'pentagon', u'offici', u'lift', u'veil', u'team'] [u'perilya', u'look', u'underground', u'develop'] [u'pilot', u'receiv', u'suspend', u'sentenc', u'safeti', u'breach'] [u'plan', u'begin', u'return', u'hospit', u'public', u'hand'] [u'player', u'associ', u'rais', u'leagu', u'concern'] [u'cut', u'citizenship', u'present', u'list', u'half'] [u'welcom', u'iraq', u'bomber', u'arrest'] [u'polic', u'alarm', u'yamba', u'attack'] [u'polic', u'hunt', u'wagga', u'hotel', u'bandit'] [u'polic', u'interview', u'kidman', u'bug', u'devic'] [u'polic', u'probe', u'drive', u'shoot'] [u'polic', u'seek', u'crash', u'wit'] [u'polic', u'vehicl', u'ram', u'perth', u'robberi'] [u'power', u'author', u'seek', u'inquest', u'answer'] [u'program', u'boost', u'option', u'indigen', u'school'] [u'public', u'warn', u'dodgi', u'chariti', u'collector'] [u'public', u'warn', u'loom', u'danger'] [u'cyclon', u'fear', u'dissip', u'move', u'south', u'east'] [u'rail', u'talk', u'consid', u'loss'] [u'rain', u'bring', u'dengu', u'fever', u'alert'] [u'rain', u'like', u'boost', u'locust', u'hatch'] [u'ranger', u'oper', u'confid', u'water', u'contamin'] [u'region', u'play', u'manag', u'growth'] [u'registr', u'chang', u'unqualifi', u'teacher'] [u'report', u'delay', u'trial', u'miner', u'death'] [u'report', u'admit', u'make', u'yahoo', u'babi', u'name'] [u'research', u'warn', u'age', u'popul', u'impact'] [u'restructur', u'north', u'west', u'vote', u'wide', u'rang'] [u'risk', u'factor', u'alzheim', u'heart', u'diseas', u'similar'] [u'roulett', u'pilot', u'clear'] [u'roulett', u'clear', u'australia'] [u'runaway', u'driver', u'face', u'court'] [u'runway', u'mishap', u'caus', u'brisban', u'airport', u'chao'] [u'rural', u'industri', u'workplac', u'accid', u'rise'] [u'safin', u'breez', u'past', u'hrbati'] [u'salvo', u'eyr', u'peninsula', u'donat', u'concern'] [u'speaker', u'avoid', u'bankruptci', u'action'] [u'taxpay', u'benefit', u'santo', u'share', u'price'] [u'remain', u'premier', u'wine', u'produc'] [u'second', u'teen', u'charg', u'bottl', u'shop', u'break'] [u'send', u'archbishop', u'draw', u'critic'] [u'senior', u'judg', u'shoot', u'dead', u'baghdad'] [u'senior', u'labor', u'colleagu', u'urg', u'gillard'] [u'serena', u'crush', u'mauresmo', u'reach', u'semi'] [u'sharapova'] [u'sharapova', u'semi'] [u'share', u'close', u'lower', u'wall', u'street'] [u'shark', u'set', u'sight', u'rifl', u'rang'] [u'snowi', u'mountain', u'tourism', u'boom', u'season'] [u'southwood', u'name', u'suprem', u'court', u'judg'] [u'squash', u'palmer', u'cop', u'year', u'long'] [u'lankan', u'cricket', u'help', u'darwin', u'tsunami'] [u'stab', u'put', u'woman', u'hospit'] [u'stanhop', u'back', u'emerg', u'servic', u'shift'] [u'surfer', u'want', u'surf', u'break', u'craypot'] [u'surf', u'signag', u'photo', u'plan', u'invad', u'privaci'] [u'survey', u'turn', u'sign', u'citrus', u'canker', u'spread'] [u'rescu', u'flood'] [u'thai', u'tourist', u'boat', u'capsiz', u'kill', u'miss'] [u'thai', u'tourist', u'boat', u'crash', u'kill', u'miss'] [u'thousand', u'expect', u'enjoy', u'australia'] [u'tibetan', u'monk', u'order', u'support', u'panchen', u'lama'] [u'tourism', u'bodi', u'say', u'council', u'lobbi', u'state'] [u'tourism', u'oper', u'ask', u'support', u'spirit'] [u'toxic', u'wast', u'activist', u'welcom', u'cabinet', u'reshuffl'] [u'trio', u'arrest', u'alleg', u'credit', u'card', u'scam'] [u'troop', u'shoot', u'suspici', u'outsid', u'baghdad', u'embassi'] [u'tsunami', u'brutal', u'warn', u'environment', u'crisi'] [u'tsunami', u'ship', u'arriv', u'townsvill'] [u'tsunami', u'countri', u'struggl', u'cope', u'dead'] [u'tune', u'determin', u'song', u'brumbi'] [u'ukrain', u'russian', u'leader', u'discuss', u'differ'] [u'student', u'outcom', u'rank'] [u'union', u'back', u'galleri', u'cancer', u'investig'] [u'union', u'concern', u'workplac', u'accid', u'probe'] [u'back', u'diplomaci', u'iran', u'straw', u'say'] [u'confirm', u'pentagon', u'intellig', u'team'] [u'troop', u'iraq'] [u'vettori', u'rule', u'world', u'match'] [u'opposit', u'cast', u'doubt', u'polic', u'minist'] [u'vic', u'outgo', u'polic', u'minist', u'defend', u'record'] [u'victoria', u'cabinet', u'swear'] [u'visi', u'consid', u'rail', u'invest'] [u'airlin', u'troubl', u'region', u'flight'] [u'contend', u'target', u'apprenticeship', u'child'] [u'nightclub', u'metal', u'detector', u'snub'] [u'weather', u'condit', u'boost', u'wine', u'grape', u'product'] [u'weird', u'worm', u'captur', u'attenborough', u'attent'] [u'western', u'queensland', u'bounc', u'idea'] [u'women', u'vote', u'right', u'reach', u'year'] [u'worker', u'oppos', u'plan'] [u'xstrata', u'drill', u'continu'] [u'xstrata', u'push', u'takeov', u'plan'] [u'xstrata', u'welcom', u'lobbi', u'takeov'] [u'youth', u'face', u'court', u'backpack', u'assault'] [u'australia', u'base', u'iraqi', u'vote'] [u'tasmanian', u'receiv', u'australia', u'award'] [u'govt', u'plan', u'reward', u'young', u'driver'] [u'aceh', u'tsunami', u'toll', u'continu', u'mount'] [u'can', u'alic', u'season', u'match'] [u'pour', u'rebuild', u'ravag', u'eyr', u'peninsula'] [u'alcan', u'investig', u'chemic', u'spill'] [u'allawi', u'reject', u'deadlin', u'foreign', u'troop'] [u'team', u'ferrari', u'sign', u'test', u'deal'] [u'ancient', u'indigen', u'remain'] [u'annan', u'question', u'food', u'program'] [u'arson', u'suspect', u'abattoir', u'site', u'blaze'] [u'aussi', u'sailor', u'abandon', u'round', u'world', u'race'] [u'aust', u'honour', u'journalist'] [u'aust', u'honour', u'recognis', u'central'] [u'australia', u'eas', u'victori', u'west', u'indi'] [u'australian', u'complac', u'democraci'] [u'australia', u'reli', u'tailend', u'stand'] [u'australia', u'victori'] [u'award', u'honour', u'ordinari', u'australian', u'beatti'] [u'award', u'win', u'fli', u'doctor', u'prais', u'troubl'] [u'weather', u'dampen', u'beachgoer', u'australia'] [u'weather', u'hamper', u'firefight'] [u'barnett', u'apologis', u'joke'] [u'barnett', u'cost', u'attack'] [u'bathurst', u'urg', u'govt', u'fund', u'elect'] [u'beach', u'close', u'rough', u'surf', u'pound', u'coast'] [u'beatti', u'cast', u'doubt', u'tacki', u'beach', u'sign'] [u'beazley', u'get', u'australia'] [u'beazley', u'shrug', u'drop', u'republ', u'support'] [u'beazley', u'take', u'gillard', u'advic', u'board'] [u'bike', u'ride', u'aim', u'boost', u'tsunami'] [u'blair', u'signal', u'secur', u'handov', u'iraq'] [u'blast', u'rock', u'india', u'republ', u'celebr'] [u'blue', u'deni', u'chase', u'carey', u'coach', u'role'] [u'bone', u'marrow', u'cell', u'restor', u'heart', u'function'] [u'british', u'guantanamo', u'detaine', u'return', u'home'] [u'break', u'hill', u'funer', u'honour', u'bronhil'] [u'break', u'hill', u'seek', u'return', u'opera', u'great', u'bodi'] [u'pacif', u'highway', u'fund', u'boost'] [u'boost', u'fund', u'speed', u'limit', u'awar'] [u'price', u'movi', u'snack'] [u'blaze', u'close', u'highway'] [u'carey', u'reunit', u'premiership', u'coach', u'pagan'] [u'cat', u'string'] [u'church', u'talk', u'controversi', u'farewel', u'plan'] [u'cole', u'celebr', u'local', u'hero', u'award'] [u'collin', u'wreck', u'australia', u'order'] [u'commission', u'oppos', u'sale', u'uluru', u'handov', u'poster'] [u'communiti', u'member', u'honour', u'australia'] [u'compos', u'australia', u'mark', u'proud', u'career'] [u'council', u'claim', u'palm', u'unrest', u'ignor'] [u'coupl', u'kill', u'attend', u'brother', u'wake'] [u'crew', u'save', u'woman', u'maroon', u'roof', u'flood'] [u'cricket', u'test', u'tenac', u'effort', u'bowl'] [u'darwin', u'welcom', u'citizen'] [u'davenport', u'overcom', u'brave', u'molik'] [u'davydenko', u'default', u'roddick', u'open'] [u'dechi', u'upset', u'schnyder', u'reach'] [u'detail', u'hold', u'habib', u'releas'] [u'deton', u'steal', u'maryborough', u'rail', u'depot'] [u'doctor', u'honour', u'work', u'disabl'] [u'doctor', u'reward', u'aust', u'honour'] [u'domest', u'disput', u'suspect', u'caus', u'immol'] [u'down', u'lead', u'british', u'open', u'qualifi'] [u'driver', u'urg', u'care', u'condit'] [u'drought', u'farmer', u'remind', u'loan', u'deadlin'] [u'dun', u'accus', u'killer', u'remand'] [u'earli', u'settler', u'fire', u'australian', u'desert'] [u'earthquak', u'kill', u'turkey'] [u'endang', u'bird', u'speci', u'return'] [u'england', u'year', u'drought', u'south', u'africa'] [u'eurobodalla', u'water', u'ban', u'relax'] [u'mayor', u'honour', u'aust', u'award'] [u'fan', u'join', u'australian', u'open', u'birthday', u'parti'] [u'farmer', u'remind', u'drought', u'offer'] [u'clean', u'volunt', u'tell', u'insur'] [u'firefight', u'tackl', u'blaze'] [u'fire', u'forc', u'closur', u'glenelg', u'highway'] [u'fischer', u'get', u'aust', u'honour'] [u'flood', u'water', u'inund', u'murray', u'bridg'] [u'politician', u'give', u'australia', u'award'] [u'wide', u'burnett', u'resid', u'oam'] [u'fowler', u'diaz', u'doyl', u'flanagan', u'open'] [u'music', u'chief', u'urg', u'better', u'film', u'tune'] [u'fund', u'help', u'boost', u'natur', u'refug'] [u'fund', u'boost', u'home', u'medic', u'care', u'access'] [u'gallop', u'talk', u'govt', u'geraldton', u'effort'] [u'gear', u'box', u'sacrific', u'australia', u'celebr'] [u'georg', u'bass', u'drive', u'roadwork', u'track'] [u'gerrard', u'fire', u'liverpool', u'leagu', u'final'] [u'giant', u'lamington', u'rais', u'tsunami', u'fund'] [u'gillard', u'give', u'beazley', u'clear'] [u'gillard', u'announc', u'leadership', u'intent'] [u'govt', u'tackl', u'rowdi', u'yandina', u'teen'] [u'govt', u'block', u'atsic', u'asset', u'sale'] [u'govt', u'urg', u'cane', u'toad', u'trap'] [u'green', u'seek', u'brief', u'hospit', u'staff', u'crisi'] [u'gunn', u'quell', u'pulp', u'site', u'specul'] [u'hawk', u'manag', u'fli', u'nest'] [u'hawk', u'manag', u'quit'] [u'hewitt', u'semi', u'thrill'] [u'hockey', u'champ', u'award', u'aust', u'medal'] [u'hope', u'region', u'rout', u'carrier'] [u'howard', u'prais', u'aust', u'troop', u'iraq'] [u'howard', u'welcom', u'citizen'] [u'hugh', u'biopic', u'top', u'oscar', u'nomin'] [u'hunter', u'rail', u'make', u'record', u'coal', u'haulag'] [u'illawarra', u'resid', u'join', u'aust', u'award'] [u'india', u'plan', u'lunar', u'mission', u'success'] [u'indigen', u'communiti', u'reflect', u'past', u'abus'] [u'insurg', u'continu', u'elect', u'drive', u'attack'] [u'invas', u'protest', u'highlight', u'injustic'] [u'iran', u'promis', u'astonish', u'respons', u'attack'] [u'iraq', u'elect', u'result', u'day'] [u'irrig', u'hail', u'reduct', u'water'] [u'isra', u'troop', u'kill', u'gaza', u'toddler', u'wit'] [u'israel', u'lift', u'peac', u'talk'] [u'israel', u'send', u'soldier', u'jail', u'defi'] [u'israel', u'stop', u'target', u'kill', u'calm', u'sector'] [u'italian', u'polic', u'arrest', u'major', u'mafia', u'oper'] [u'jordan', u'announc', u'russian', u'takeov'] [u'latrob', u'valley', u'plan', u'tsunami', u'effort'] [u'lizard', u'rescu', u'hong', u'kong', u'cook', u'pot'] [u'local', u'number', u'rise'] [u'local', u'featur', u'aust', u'award'] [u'arrest', u'alleg', u'stab', u'neighbour'] [u'die', u'ablaz'] [u'die', u'taxi', u'motorcycl', u'collid'] [u'face', u'extradit', u'charg'] [u'guilti', u'rap', u'daughter', u'bundaberg'] [u'face', u'court', u'drive', u'shoot'] [u'mawson', u'nation', u'heritag', u'site'] [u'mayor', u'honour', u'aust', u'medal'] [u'meteorit', u'arous', u'cambodian', u'superstit'] [u'mickelberg', u'lawyer', u'humbl', u'australia', u'award'] [u'north', u'resid', u'honour', u'aust', u'award'] [u'militari', u'reflect', u'australia', u'celebr'] [u'miner', u'safe', u'siberian', u'scare'] [u'minist', u'urg', u'jail', u'open'] [u'minor', u'flood', u'warn', u'belling', u'river'] [u'mishap', u'highlight', u'need', u'airport', u'extens'] [u'missil', u'protect', u'plan', u'cost', u'instal'] [u'miss', u'tourist', u'relat', u'head', u'thailand'] [u'mitsubishi', u'record', u'loss', u'report'] [u'molik', u'bow', u'thriller'] [u'molik', u'hewitt', u'determin', u'australia'] [u'molik', u'join', u'rank', u'valiant', u'vanquish'] [u'monarchist', u'heart', u'opinion', u'poll'] [u'resid', u'urg', u'join', u'rural', u'ambul'] [u'murali', u'name', u'train', u'squad', u'tour'] [u'navi', u'offic', u'iraq', u'servic', u'recognis', u'australia'] [u'navi', u'urg', u'personnel', u'lodg', u'beryllium', u'claim'] [u'australian', u'bask', u'warm', u'glow', u'citizenship'] [u'newcastl', u'fine', u'bellami', u'pound'] [u'citizen', u'embrac', u'life', u'australia'] [u'zealand', u'beat', u'world', u'chariti', u'seri', u'decid'] [u'govern', u'support', u'whale', u'case'] [u'north', u'coast', u'join', u'aust', u'award'] [u'flag', u'school', u'fund'] [u'retain', u'credit', u'rat'] [u'offici', u'probe', u'cargo', u'plane', u'steer', u'failur'] [u'oram', u'doubt', u'australia', u'seri'] [u'oscar', u'snub', u'michael', u'moor', u'gibson'] [u'oxfam', u'criticis', u'qualiti', u'tsunami'] [u'palestinian', u'forc', u'demolish', u'gaza', u'home'] [u'palestinian', u'forc', u'prevent', u'mortar', u'attack', u'israel'] [u'perth', u'fire'] [u'picnic', u'train', u'chug', u'life', u'year'] [u'plastic', u'campaign', u'declar', u'local', u'hero'] [u'jail', u'australian', u'smuggl', u'charg'] [u'polic', u'inform', u'sexual', u'assault'] [u'polic', u'river'] [u'polic', u'probe', u'elder', u'tourist', u'dive', u'death'] [u'polic', u'quiz', u'egyptian', u'indonesia', u'aust', u'entri'] [u'polic', u'suspect', u'kangaroo', u'steal', u'food'] [u'polic', u'tackl', u'cyber', u'child', u'crime', u'global', u'oper'] [u'polish', u'court', u'fin', u'editor', u'insult', u'pope'] [u'priest', u'urg', u'vatican', u'rethink', u'marriag'] [u'professor', u'polic', u'offic', u'honour'] [u'public', u'urg', u'stop', u'defenc', u'land', u'sale'] [u'rain', u'cloud', u'hang', u'adelaid', u'dayer'] [u'record', u'number', u'australian', u'citizenship'] [u'region', u'polic', u'offic', u'win', u'citizen', u'year'] [u'bushfir', u'victim', u'lay', u'rest'] [u'sad', u'loss', u'major', u'dairi'] [u'safin', u'dilemma', u'stop', u'runaway', u'feder'] [u'safin', u'set', u'test', u'sublim', u'feder'] [u'govt', u'mental', u'health', u'servic'] [u'scheme', u'boost', u'public', u'dental', u'servic'] [u'search', u'fail', u'miss', u'boat', u'passeng'] [u'senior', u'australian', u'year', u'keen', u'help'] [u'rescu', u'injur', u'bushwalk'] [u'shark', u'spot', u'close', u'beach'] [u'shire', u'seek', u'water', u'defici', u'declar'] [u'sibl', u'infect', u'protect', u'studi'] [u'sierra', u'leon', u'trial', u'resum', u'offic'] [u'chang', u'south', u'african', u'squad'] [u'sixer', u'good', u'tiger'] [u'small', u'island', u'win', u'britain', u'whitbread', u'award'] [u'snake', u'aliv', u'deliv', u'unwant', u'guest'] [u'social', u'servic', u'deputi', u'die', u'famili', u'holiday'] [u'southern', u'share', u'aust', u'honour'] [u'space', u'station', u'crew', u'ventur', u'outsid'] [u'speedboat', u'driver', u'charg', u'capsiz'] [u'lankan', u'mourn', u'tsunami', u'dead', u'silenc'] [u'stoll', u'miller', u'mark', u'waugh', u'name', u'honour', u'list'] [u'storm', u'caus', u'chao', u'south', u'western', u'victoria'] [u'studi', u'find', u'region', u'live', u'satisfi'] [u'sunshin', u'beach', u'surpris', u'aust', u'award'] [u'supermarket', u'recal', u'contamin', u'sausag'] [u'support', u'strong', u'ravag', u'citi', u'mission'] [u'sydney', u'doctor', u'work', u'mental', u'health', u'recognis'] [u'teen', u'charg', u'get', u'bail'] [u'thailand', u'want', u'separatist', u'arrest'] [u'injur', u'separ', u'boat', u'accid'] [u'tiger', u'review', u'blignaut', u'contract'] [u'toilet', u'vandal', u'upset', u'council'] [u'citizen', u'award', u'recognis', u'volunt', u'work'] [u'tourism', u'industri', u'strong', u'despit', u'reduc'] [u'tsunami', u'toll', u'count', u'continu', u'month'] [u'miss', u'thai', u'ferri', u'accid'] [u'union', u'air', u'nurs', u'hour', u'fear'] [u'union', u'welcom', u'health', u'worker', u'rise'] [u'helicopt', u'crash', u'iraq'] [u'open', u'introduc', u'electron', u'replay'] [u'crew', u'continu', u'fight', u'lightn', u'strike', u'fire'] [u'video', u'show', u'kidnap', u'american', u'iraq'] [u'wall', u'street', u'welcom', u'profit', u'report'] [u'warrior', u'match'] [u'western', u'featur', u'aust', u'honour'] [u'western', u'resid', u'honour', u'australia', u'list'] [u'aid', u'drug', u'goal'] [u'woman', u'charg', u'immol', u'murder'] [u'wool', u'scour', u'prove', u'popular'] [u'world', u'dismiss'] [u'wwii', u'veteran', u'return', u'darwin', u'bomb'] [u'xstrata', u'tri', u'sell'] [u'call', u'time', u'servic'] [u'acci', u'want', u'privaci', u'exempt', u'small', u'busi'] [u'accus', u'drug', u'traffick', u'face', u'bali', u'court'] [u'aceh', u'peac', u'talk', u'relaunch'] [u'opposit', u'question', u'wait', u'list', u'reduct'] [u'seek', u'fund', u'indigen', u'health'] [u'ancient', u'tablet', u'coin', u'greec'] [u'anti', u'monarchi', u'protest', u'hold', u'swaziland'] [u'anti', u'paedophil', u'unit', u'investig', u'websit'] [u'architect', u'philip', u'johnson', u'die'] [u'attenborough', u'flush', u'giant', u'earthworm'] [u'attract', u'invest', u'elect', u'issu', u'mine'] [u'audit', u'offic', u'find', u'medicar', u'databas', u'date'] [u'aust', u'kid', u'good', u'saver', u'survey'] [u'australia', u'honour', u'western'] [u'australia', u'honour', u'recognis', u'gippsland'] [u'australian', u'ferri', u'victim', u'bodi', u'recov'] [u'australian', u'troop', u'germani', u'treatment'] [u'aust', u'troop', u'specif', u'bomb', u'target', u'command'] [u'background', u'check', u'see', u'school', u'employe', u'suspend'] [u'ballarat', u'region', u'share', u'aust', u'honour'] [u'bashir', u'walk', u'terror', u'trial'] [u'beach', u'condit', u'danger'] [u'beagl', u'administr', u'face', u'challeng'] [u'beazley', u'prepar', u'caucus', u'meet'] [u'billiton', u'achiev', u'record', u'output'] [u'crowd', u'celebr', u'australia'] [u'tourism', u'plan', u'wind'] [u'bilbi', u'educ', u'centr', u'plan'] [u'bird', u'bega', u'valley', u'blackout'] [u'bishop', u'back', u'push', u'overhaul', u'celibaci', u'law'] [u'brack', u'deni', u'transurban', u'renegoti'] [u'british', u'research', u'predict', u'time', u'ahead'] [u'break', u'hill', u'share', u'australia', u'honour'] [u'buchanan', u'back', u'hayden'] [u'buchanan', u'back', u'sort', u'hayden'] [u'bulldog', u'captainci', u'grab'] [u'bush', u'encourag', u'iraqi', u'voter', u'defi', u'insurg'] [u'teacher', u'train', u'address', u'neglect', u'abus'] [u'york', u'communiti', u'work'] [u'cancel', u'match', u'prove', u'cost'] [u'cape', u'jaffa', u'marina', u'plan', u'move', u'ahead'] [u'chelsea', u'beat', u'leagu', u'final'] [u'child', u'abus', u'protect', u'websit', u'launch'] [u'child', u'killer', u'minimum', u'secur', u'status', u'question'] [u'china', u'crack', u'zhao', u'mourner', u'wit'] [u'chines', u'dive', u'star', u'sanction', u'chase'] [u'communiti', u'leadership', u'disput', u'see', u'tension', u'boil'] [u'communiti', u'rais', u'fund', u'hous', u'victim'] [u'concert', u'rais', u'tsunami', u'fund'] [u'convent', u'centr', u'hold', u'elect'] [u'corbi', u'trial', u'adjourn', u'ahead', u'wit', u'account'] [u'council', u'adopt', u'road', u'revamp', u'concept', u'plan'] [u'council', u'move', u'artifici', u'reef', u'plan'] [u'council', u'plan', u'traffic', u'flow', u'improv'] [u'council', u'citizen'] [u'court', u'hear', u'drink', u'cultur', u'build'] [u'defenc', u'forc', u'help', u'bushfir', u'clean'] [u'deporte', u'incid', u'caus', u'human', u'right', u'concern'] [u'dept', u'plan', u'worker', u'face', u'corrupt', u'charg'] [u'domino', u'bigger', u'slice', u'market'] [u'driver', u'salari', u'cost', u'cut', u'agenda'] [u'dubbo', u'cricket', u'bowl', u'record'] [u'eagl', u'give', u'damron', u'share', u'hope', u'lead'] [u'eastern', u'tullamarin', u'link', u'govt', u'agenda'] [u'ember', u'blame', u'grass'] [u'england', u'savour', u'victori', u'complac'] [u'entri', u'aplenti', u'desert', u'race'] [u'esper', u'enjoy', u'australia', u'activ'] [u'expert', u'discuss', u'global', u'warm', u'threat'] [u'eyr', u'peninsula', u'fire', u'spark', u'water', u'tank', u'plan'] [u'famili', u'face', u'council', u'wrangl', u'backyard', u'burial'] [u'feedlot', u'plan', u'divid', u'council'] [u'festiv', u'aplenti', u'australia'] [u'fire', u'near', u'casterton', u'contain'] [u'archbishop', u'cancel', u'farewel', u'public'] [u'teacher', u'plead', u'guilti', u'student'] [u'fraser', u'defend', u'open', u'line', u'call'] [u'fresh', u'roddick', u'loom', u'weari', u'hewitt'] [u'fund', u'eas', u'road', u'closur', u'impact'] [u'gold', u'rush', u'dig', u'includ', u'heritag', u'list'] [u'govt', u'approv', u'oakey', u'polic', u'station'] [u'govt', u'highlight', u'troop', u'risk', u'elect', u'lead'] [u'govt', u'urg', u'relax', u'nude', u'beach', u'law'] [u'green', u'health', u'polici', u'focus', u'prevent'] [u'gunn', u'mission', u'help', u'chariti'] [u'habib', u'wont', u'arrest', u'keelti'] [u'hardi', u'compenst', u'benefit', u'australian'] [u'heavi', u'storm', u'caus', u'damag', u'geelong'] [u'mogul', u'accus', u'money', u'launder'] [u'histor', u'gaff', u'tourism', u'brochur'] [u'hope', u'code', u'stop', u'council', u'snip'] [u'india', u'confer', u'award', u'australian', u'widow'] [u'inquiri', u'prompt', u'townsvill', u'prison', u'upgrad'] [u'inquiri', u'tell', u'eastman', u'mental', u'trial'] [u'insurg', u'iraqi', u'militari', u'convoy'] [u'investig', u'interview', u'mine', u'accid'] [u'iraqi', u'forc', u'control', u'year', u'general'] [u'iraqi', u'urg', u'vote'] [u'kalgoorli', u'australia', u'event', u'best'] [u'kidman', u'win', u'restrain', u'order', u'photograph'] [u'kimberley', u'sister', u'get', u'australia', u'honour'] [u'labor', u'faction', u'urg', u'unit', u'beazley'] [u'labor', u'figur', u'urg', u'uniti', u'beazley'] [u'labor', u'infight', u'continu', u'beazley', u'return'] [u'societi', u'welcom', u'communiti', u'sentenc', u'chang'] [u'life', u'jacket', u'save', u'yachtsman', u'life'] [u'lightn', u'spark', u'conserv', u'park', u'blaze'] [u'lightn', u'strike', u'continu', u'pose', u'threat'] [u'local', u'teen', u'get', u'young', u'citizen', u'gong'] [u'locust', u'pose', u'risk'] [u'lung', u'roll', u'orang'] [u'beg', u'wife', u'forgiv'] [u'die', u'fall', u'overboard', u'southern'] [u'give', u'month', u'child', u'pornographi'] [u'jail', u'pungent', u'morcomb', u'hoax'] [u'jail', u'underag', u'onlin', u'attempt'] [u'kill', u'pin', u'jetti'] [u'overboard', u'incid', u'spark', u'coroni'] [u'plead', u'guilti', u'pornographi', u'charg'] [u'market', u'jump', u'record', u'high'] [u'meet', u'focus', u'surgic', u'servic'] [u'mentor', u'scheme', u'founder', u'get', u'aust', u'honour'] [u'milat', u'mention', u'miss', u'woman', u'inquest'] [u'mildura', u'consid', u'timores', u'partnership'] [u'miner', u'charg', u'drug'] [u'minist', u'back', u'riverina', u'highland', u'invest'] [u'stall', u'launceston', u'festival'] [u'moscow', u'world', u'swim', u'titl'] [u'attack', u'locust', u'levi', u'plan'] [u'back', u'iraq', u'invas'] [u'criticis', u'lack', u'marin', u'park', u'consult'] [u'push', u'republican', u'caus'] [u'suggest', u'marin', u'park', u'fish', u'chang'] [u'tafe', u'get', u'director'] [u'neighbour', u'help', u'rescu', u'woman', u'catch', u'hous'] [u'plan', u'airport', u'bird', u'woe'] [u'newberi', u'task', u'mix', u'sport', u'studi'] [u'drug', u'hope', u'breast', u'cancer', u'suffer'] [u'nrma', u'boss', u'promis', u'financi', u'success'] [u'nightcliff', u'bash', u'put', u'teen', u'hospit'] [u'nimbin', u'smoker', u'ralli', u'polic', u'harass'] [u'bail', u'drive', u'shoot', u'accus'] [u'north', u'west', u'enjoy', u'australia', u'celebr'] [u'nrma', u'board', u'appoint', u'presid'] [u'govt', u'fund', u'famili', u'assist', u'program'] [u'govt', u'hail', u'child', u'offend', u'regist'] [u'labor', u'figur', u'say', u'gillard', u'treat', u'unfair'] [u'landcar', u'council', u'criticis', u'spend'] [u'opposit', u'back', u'flag', u'plan'] [u'nurs', u'strike', u'wage', u'deal', u'opposit'] [u'nurs', u'home', u'revamp', u'continu'] [u'zealand', u'ask', u'indonesia', u'probe', u'tsunami', u'flight'] [u'parent', u'need', u'vigil', u'watch', u'kid'] [u'parti', u'urg', u'state', u'agreement'] [u'portrait', u'men', u'semi', u'finalist'] [u'portrait', u'women', u'semi', u'finalist'] [u'pheromon', u'spray', u'post', u'menopaus', u'romanc'] [u'philippin', u'launch', u'strike', u'milit'] [u'pilot', u'odd', u'plane', u'crash', u'critic'] [u'pilot', u'deni', u'culpabl', u'whitsunday', u'crash'] [u'depart', u'world', u'econom', u'forum'] [u'polic', u'seiz', u'video', u'nightclub', u'gang', u'shoot'] [u'polic', u'tackl', u'wheatbelt', u'hoon'] [u'polic', u'warn', u'driver', u'school', u'speed'] [u'politician', u'weigh', u'hobart', u'hospit', u'crisi'] [u'port', u'chief', u'start'] [u'powerlin', u'promis', u'better', u'reliabl'] [u'power', u'offic', u'deni', u'respons', u'inquest'] [u'princess', u'mari', u'princ', u'tour'] [u'profit', u'report', u'push', u'market', u'higher'] [u'public', u'whitsunday', u'vision'] [u'public', u'urg', u'storm', u'safe'] [u'govt', u'studi', u'child', u'abus', u'report'] [u'quak', u'record', u'sumatra'] [u'queanbeyan', u'council', u'chase', u'unpaid', u'rat'] [u'radio', u'station', u'pull', u'tsunami', u'slur'] [u'rain', u'boost', u'northern', u'water', u'resourc'] [u'rain', u'soak', u'part', u'wide', u'burnett'] [u'report', u'highlight', u'region', u'busi', u'tape'] [u'resid', u'voic', u'religi', u'retreat', u'opposit'] [u'riverland', u'join', u'australia', u'celebr'] [u'rock', u'throw', u'victim', u'unawar', u'incid'] [u'ronaldo', u'iraq', u'hostag', u'appeal'] [u'rumsfeld', u'advis', u'quit', u'post'] [u'rumsfeld', u'warn', u'iraq', u'violenc', u'continu'] [u'russian', u'polic', u'launch', u'attack', u'suspect', u'milit'] [u'govt', u'accus', u'procrastin', u'rail', u'safeti'] [u'health', u'face', u'specialist', u'resign'] [u'saleyard', u'wont', u'rais', u'charg'] [u'santo', u'keen', u'futur', u'powerwat', u'suppli'] [u'scientist', u'discov', u'secret', u'venus', u'flytrap', u'snap'] [u'scuderi', u'help', u'cricket', u'toehold', u'itali'] [u'seafood', u'group', u'highlight', u'reef', u'rezon', u'mistak'] [u'search', u'overboard', u'antarct'] [u'seawal', u'protect', u'toogoom', u'shorelin', u'eros'] [u'seaworld', u'releas', u'snake'] [u'second', u'hous', u'blaze', u'investig'] [u'senat', u'want', u'cockfight', u'glove'] [u'serena', u'battl', u'past', u'sharapova'] [u'serena', u'face', u'davenport', u'open', u'final'] [u'seventeen', u'england', u'say', u'maynard'] [u'offend', u'extradit'] [u'sharon', u'satisfi', u'palestinian', u'measur'] [u'shire', u'seek', u'fund', u'danger', u'river', u'cross'] [u'sluggish', u'davenport', u'set', u'serena', u'final'] [u'springbok', u'cronj', u'month'] [u'stanhop', u'prais', u'australia', u'celebr'] [u'starbuck', u'plan', u'outlet'] [u'state', u'fail', u'help', u'women', u'victim', u'indian'] [u'stockyard', u'plain', u'fire', u'control'] [u'task', u'forc', u'aim', u'protect', u'children', u'onlin'] [u'teen', u'hacker', u'good', u'behaviour', u'bond'] [u'teen', u'rapist', u'avoid', u'jail', u'term'] [u'thailand', u'cull', u'pigeon', u'bird', u'fear'] [u'threat', u'diseas', u'tsunami', u'area'] [u'hostag', u'hold', u'iraq', u'offici'] [u'timber', u'industri', u'lament', u'region', u'lockout'] [u'time', u'run', u'health', u'servic', u'sack'] [u'tini', u'town', u'rais', u'thousand', u'tsunami', u'victim'] [u'toddler', u'leav', u'perth', u'skyshow'] [u'citizen', u'boyl', u'year', u'ahead'] [u'tsunami', u'fear', u'hold', u'bateman'] [u'turnbul', u'fail', u'retain', u'nrma', u'posit'] [u'free', u'guantanamo', u'detaine'] [u'look', u'student', u'quota'] [u'union', u'govt', u'hold', u'bell', u'plant', u'talk'] [u'union', u'prioritis', u'hardi', u'settlement'] [u'union', u'discuss', u'disput'] [u'soldier', u'shoot', u'dead', u'north', u'baghdad'] [u'govt', u'agre', u'freeway', u'upgrad', u'deal'] [u'medic', u'team', u'head', u'indonesia'] [u'vietnam', u'armi', u'helicopt', u'crash', u'dead'] [u'volunt', u'derinallum', u'victim'] [u'volunt', u'need', u'replica', u'whale', u'boat'] [u'charg', u'polic', u'stand'] [u'waterfal', u'train', u'derail', u'avoid'] [u'treasur', u'rip', u'barnett', u'cost'] [u'wellington', u'tourist', u'centr', u'home'] [u'wilkinson', u'hope', u'nation', u'return'] [u'woman', u'die', u'suspect', u'meningococc'] [u'wooli', u'lift', u'half', u'year', u'sale'] [u'world', u'leader', u'rememb', u'auschwitz', u'atroc'] [u'wrangl', u'continu', u'hospit', u'site'] [u'digger', u'die'] [u'zelic', u'tip', u'socceroo', u'return'] [u'abbott', u'reject', u'indigen', u'health', u'fund', u'appeal'] [u'abbott', u'unmov', u'hospit', u'fund'] [u'adelaid', u'urg', u'basic'] [u'advis', u'warn', u'orang', u'grove', u'inquiri', u'tell'] [u'aftershock', u'rattl', u'tsunami', u'ravag', u'island'] [u'agforc', u'releas', u'bush', u'blueprint'] [u'know', u'stash', u'cash', u'inquiri', u'tell'] [u'secur', u'downer', u'european', u'agenda'] [u'alga', u'outbreak', u'water', u'clear'] [u'govt', u'disagre', u'state', u'health', u'sector'] [u'anelka', u'turkey', u'citi', u'agre'] [u'author', u'closer', u'find', u'abandon', u'boy', u'famili'] [u'backbench', u'give', u'beazley', u'month', u'notic'] [u'barca', u'player', u'face', u'tough', u'test', u'sevilla'] [u'barnett', u'deni', u'nurs', u'deal', u'put', u'financ', u'risk'] [u'journalist', u'brand', u'ignor'] [u'beach', u'bone', u'evan', u'head'] [u'beazley', u'hop', u'unit', u'labor'] [u'beazley', u'order', u'colleagu', u'infight'] [u'beazley', u'rule', u'bench', u'shuffl'] [u'beazley', u'take', u'iraq'] [u'beazley', u'weigh', u'habib', u'media', u'debat'] [u'crowd', u'protest', u'hospit', u'surgeri', u'cut'] [u'billion', u'dollar', u'expans', u'moura'] [u'birthday', u'safin', u'stun', u'feder', u'great'] [u'blood', u'bank', u'panda'] [u'blue', u'steadi', u'start', u'bull'] [u'blue', u'bull'] [u'braham', u'stand', u'braitl'] [u'british', u'soldier', u'accus', u'iraq', u'abus'] [u'driver', u'hospit', u'crash'] [u'driver', u'concern', u'skyshow', u'secur'] [u'bushrang', u'bail', u'redback'] [u'bushrang', u'bowl', u'redback'] [u'businessman', u'fraud', u'earn', u'jail', u'time'] [u'elect', u'focus', u'indigen', u'health'] [u'greater', u'rail', u'prevent'] [u'cancel', u'archbishop', u'farewel', u'servic', u'spark'] [u'bomb', u'kill', u'iraqi', u'south', u'baghdad'] [u'caucus', u'pick', u'beazley', u'labor', u'leader'] [u'chelsea', u'quadrupl', u'cost', u'million', u'booki'] [u'child', u'protect', u'worker', u'face', u'challeng'] [u'china', u'process', u'tsunami', u'dead'] [u'cia', u'ghost', u'prison', u'spark', u'right', u'concern'] [u'member', u'deni', u'go', u'grind'] [u'coalit', u'make', u'hospit', u'revamp', u'pledg'] [u'councillor', u'suggest', u'residenti', u'develop', u'levi'] [u'council', u'urg', u'scrap', u'state', u'agreement'] [u'council', u'weigh', u'shop', u'centr', u'plan'] [u'court', u'order', u'extra', u'payment', u'cop', u'land'] [u'creditor', u'reject', u'elliott', u'repay', u'offer'] [u'crew', u'contain', u'fire'] [u'croft', u'captain', u'red', u'brumbi'] [u'conquest', u'give', u'lowli', u'atalanta', u'hope'] [u'success', u'wont', u'distract', u'mourinho', u'premier'] [u'custom', u'seiz', u'stun', u'gun', u'disguis', u'torch'] [u'detent', u'centr', u'construct', u'begin'] [u'direct', u'hear', u'hold', u'falconio', u'murder', u'trial'] [u'doco', u'focus', u'western', u'drought'] [u'downer', u'defend', u'legitimaci', u'iraq', u'vote'] [u'drive', u'record', u'enact', u'rais', u'fund'] [u'drought', u'farmer', u'face', u'levi', u'slug'] [u'eagl', u'send', u'ogilvi', u'clear', u'hope', u'classic'] [u'economi', u'secur', u'uniti', u'beazley', u'agenda'] [u'electrolux', u'boost', u'factori', u'safeti'] [u'elliott', u'vow', u'comeback', u'despit', u'bankruptci'] [u'esso', u'roster', u'unrest', u'near'] [u'health', u'servic', u'chief', u'sign', u'travel', u'cost'] [u'famili', u'prepar', u'habib', u'homecom'] [u'feder', u'fund', u'dri', u'fruit', u'grower'] [u'feder', u'pest', u'manag', u'inquiri', u'continu'] [u'fidget', u'studi'] [u'figur', u'farmer', u'road', u'recoveri'] [u'film', u'maker', u'pay', u'tribut', u'digger'] [u'firefight', u'hope', u'wind', u'help', u'manag', u'park', u'blaze'] [u'firefight', u'look', u'contain', u'ngarkat', u'blaze'] [u'fire', u'close', u'tassi', u'walk', u'track'] [u'fire', u'burn', u'gippsland'] [u'fisheri', u'servic', u'explain', u'oper', u'chang'] [u'flintoff', u'vow', u'time', u'ash'] [u'fli', u'doctor', u'say', u'bronhil', u'flight', u'fit'] [u'footag', u'brawl', u'releas'] [u'media', u'exec', u'critic'] [u'south', u'african', u'give', u'england', u'warm', u'victori'] [u'arrest', u'kill', u'rare', u'fresh', u'water'] [u'freeway', u'interchang', u'work', u'bring', u'driver', u'benefit'] [u'fund', u'boost', u'flood', u'damag', u'road'] [u'gallop', u'label', u'opposit', u'deal', u'nurs', u'reckless'] [u'gang', u'rape', u'case', u'blame', u'court', u'budget', u'blow'] [u'german', u'refere', u'admit', u'match', u'fix'] [u'goldfield', u'tourism', u'job', u'rise'] [u'govt', u'attack', u'crime', u'statist'] [u'govt', u'make', u'polic', u'pledg'] [u'govt', u'bushfir', u'report', u'delay'] [u'govt', u'urg', u'boost', u'riverina', u'polic'] [u'grazier', u'fin', u'cattl'] [u'habib', u'arriv', u'sydney', u'airport'] [u'habib', u'reunit', u'famili'] [u'hayek', u'robbin', u'sign', u'oscar'] [u'henri', u'launch', u'anti', u'racist', u'campaign', u'europ'] [u'hewitt', u'move', u'australian', u'open', u'final'] [u'hewitt', u'verg', u'open', u'dream'] [u'hingi', u'tipto', u'year', u'absenc'] [u'hospit', u'defend', u'meningococc', u'diseas', u'death'] [u'hous', u'price', u'rise'] [u'hubbard', u'step', u'union', u'spokesman'] [u'independ', u'probe', u'launch', u'nurs', u'sack'] [u'indonesia', u'probe', u'alleg', u'misus', u'tsunami', u'fund'] [u'iraqi', u'poll', u'australia'] [u'itali', u'return', u'ethiopian', u'obelisk', u'april'] [u'job', u'scheme', u'get', u'fund', u'lift'] [u'kidney', u'stone', u'appear', u'end', u'rescu'] [u'kimberley', u'shire', u'highlight', u'elect', u'want'] [u'landhold', u'angri', u'insect', u'levi', u'rise'] [u'lara', u'centuri', u'put', u'west', u'indi', u'control'] [u'lara', u'lead', u'west', u'indi', u'maiden', u'victori'] [u'warwick', u'chees', u'factori'] [u'lewi', u'put', u'redback', u'foot'] [u'louvr', u'pay', u'record', u'price', u'bust'] [u'mackay', u'properti', u'crime', u'fall'] [u'charg', u'brawl', u'death'] [u'die', u'truck'] [u'extradit', u'pitcairn', u'sexual', u'assault', u'charg'] [u'fin', u'suspend', u'fatal'] [u'jail', u'incest', u'offenc'] [u'market', u'stumbl', u'despit', u'virgin', u'flurri'] [u'mayor', u'seek', u'minist', u'meet', u'stop', u'rock', u'throw'] [u'media', u'blame', u'rise', u'sexual', u'offend'] [u'student', u'bush'] [u'meet', u'arrang', u'great', u'western', u'aloft'] [u'member', u'nrma', u'result'] [u'meningococc', u'death', u'unrel', u'health'] [u'microsoft', u'post', u'super', u'profit'] [u'middl', u'east', u'peac', u'breakthrough', u'immin'] [u'mildura', u'sydney', u'servic', u'boost'] [u'death', u'spark', u'billiton', u'safeti', u'boost'] [u'miner', u'say', u'drug', u'abus', u'communiti', u'issu'] [u'mitsubishi', u'australia', u'confirm', u'bail'] [u'mitsubishi', u'motor', u'scrambl', u'reviv', u'plan'] [u'molik', u'kuznetsova', u'women', u'doubl', u'titl'] [u'molik', u'face', u'davenport', u'doubl', u'final'] [u'montgomeri', u'charg', u'clear', u'singapor'] [u'moruya', u'get', u'obstetr', u'boost'] [u'mother', u'son', u'guilti', u'fraud'] [u'mother', u'daughter', u'escap', u'burn', u'hous'] [u'motorcyclist', u'tri', u'lure', u'girl', u'worri', u'polic'] [u'beat', u'inter', u'govt', u'agenc', u'gather'] [u'want', u'crackdown', u'street', u'drink', u'law'] [u'target', u'borroloola', u'dog'] [u'chief', u'elect'] [u'nrma', u'boss', u'promis', u'thing'] [u'ngarkat', u'blaze', u'raze', u'hectar'] [u'north', u'korea', u'buy', u'nuclear', u'bomb'] [u'back', u'indigen', u'health', u'fund'] [u'nurs', u'union', u'criticis', u'elect', u'deal'] [u'offici', u'discuss', u'tsunami', u'warn'] [u'slick', u'cover', u'baghdad', u'river'] [u'kill', u'french', u'avalanch'] [u'opposit', u'accus', u'hospit', u'ruin', u'doctor'] [u'opposit', u'highlight', u'declin', u'polic', u'number'] [u'opposit', u'seiz', u'educ', u'figur'] [u'pair', u'face', u'multipl', u'anim', u'cruelti', u'charg'] [u'pakistan', u'rope', u'adelaid'] [u'past', u'champion', u'progress', u'shoot', u'glori'] [u'patrick', u'launch', u'virgin', u'blue', u'takeov'] [u'patrick', u'make', u'perfect', u'virgin'] [u'pest', u'control', u'cost', u'soar'] [u'piper', u'doubl', u'silver', u'talli'] [u'pixi', u'skase', u'fight', u'citizenship', u'decis'] [u'congratul', u'beazley'] [u'australia', u'sign', u'media', u'develop', u'deal'] [u'polic', u'accus', u'harass', u'cannabi', u'user'] [u'polic', u'interview', u'crew', u'death'] [u'polic', u'investig', u'kitten', u'tortur', u'case'] [u'polic', u'investig', u'playground', u'photo', u'websit'] [u'polic', u'probe', u'kallangur', u'murder'] [u'polic', u'warn', u'fake', u'money'] [u'poppi', u'harvest', u'pick'] [u'power', u'outag', u'put', u'live', u'risk', u'katherin'] [u'elect', u'violenc', u'iraq', u'intensifi'] [u'prison', u'director', u'write', u'woman', u'deverel'] [u'produc', u'accommod', u'buyer', u'seek', u'unmules', u'wool'] [u'professor', u'director'] [u'public', u'opposit', u'like', u'caravan', u'park', u'plan'] [u'govern', u'upbeat', u'respons', u'smoke'] [u'team', u'fight', u'diseas', u'spread', u'aceh'] [u'quak', u'shake', u'tokyo'] [u'queanbeyan', u'stanhop'] [u'rain', u'bless', u'horticultur'] [u'redknapp', u'factor', u'spice', u'south', u'coast', u'clash'] [u'report', u'highlight', u'fall', u'road', u'death'] [u'research', u'pinpoint', u'schizophrenia', u'gene'] [u'retail', u'want', u'stop', u'flood', u'woe'] [u'roddick', u'stand', u'hewitt', u'open', u'final'] [u'salvo', u'defend', u'sack', u'time', u'frame'] [u'seafood', u'industri', u'back', u'great', u'sandi', u'fish'] [u'search', u'continu', u'miss'] [u'seychell', u'found', u'presid', u'quit', u'polit'] [u'ship', u'bring', u'drown', u'crewman'] [u'nation', u'favourit', u'fall', u'ireland'] [u'slow', u'respons', u'water', u'swim', u'record', u'hop'] [u'smoke', u'link', u'pancreat', u'cancer'] [u'snappi', u'croc', u'look', u'dodg', u'bullet'] [u'snowi', u'tourism', u'boom'] [u'see', u'chang', u'ticket', u'elect', u'success'] [u'southcorp', u'seek', u'outsid', u'help', u'squash', u'foster'] [u'spear', u'injuri', u'self', u'inflict', u'say'] [u'special', u'effort', u'bushfir', u'schoolchildren'] [u'lankan', u'panic', u'tsunami', u'alarm', u'confus'] [u'lanka', u'tiger', u'closer', u'deal', u'tsunami'] [u'stockyard', u'plain', u'blaze'] [u'strong', u'show', u'hama', u'gaza', u'local', u'poll'] [u'studi', u'find', u'calcium', u'cut', u'women', u'colorect', u'cancer'] [u'suspect', u'ghraib', u'abus', u'plea', u'bargain', u'deal'] [u'sydney', u'sentenc', u'ecstasi', u'suppli'] [u'lead', u'prison', u'escap', u'figur'] [u'teacher', u'jail', u'student', u'affair'] [u'team', u'review', u'townsvill', u'jail', u'upgrad'] [u'teenag', u'diver', u'spring', u'surpris', u'newberi'] [u'tenni', u'need', u'embrac', u'technolog'] [u'tiger', u'charg', u'hobart'] [u'tiger', u'slump', u'earli', u'warrior'] [u'toddler', u'miss', u'famili'] [u'level', u'talk', u'hold', u'bell', u'plant'] [u'truck', u'driver', u'injur', u'escap', u'approach'] [u'tsunami', u'victim', u'famili', u'return', u'wellington'] [u'tweed', u'council', u'solicitor', u'inquiri'] [u'unit', u'develop', u'plan', u'lithgow'] [u'market', u'falter'] [u'vanston', u'move', u'protect', u'atsic', u'asset'] [u'victim', u'group', u'question', u'teen', u'rapist', u'sentenc'] [u'vietnam', u'deploy', u'bird', u'riot', u'polic'] [u'virgin', u'blue', u'share', u'jump', u'patrick'] [u'virgin', u'share', u'high', u'takeov', u'news'] [u'wagga', u'bishop', u'back', u'marriag', u'debat'] [u'watkin', u'visit', u'casino', u'murwillumbah', u'rail', u'issu'] [u'william', u'charg', u'drug', u'ring'] [u'worksaf', u'review', u'aquacultur', u'project'] [u'zarqawi', u'group', u'kill', u'allawi', u'aid'] [u'zelic', u'readi', u'socceroo', u'comeback'] [u'kill', u'filipino', u'troop', u'battl', u'milit'] [u'iraqi', u'turn', u'vote', u'australia'] [u'polic', u'number', u'opposit'] [u'actu', u'back', u'beazley', u'uniti'] [u'afghan', u'right', u'watchdog', u'demand', u'crime', u'justic'] [u'agenc', u'watch', u'habib'] [u'antarct', u'plan', u'discov', u'frontier'] [u'australian', u'join', u'tsunami', u'alert', u'talk'] [u'beat', u'generat', u'muse', u'carr', u'die'] [u'beazley', u'retain', u'current', u'shadow', u'ministri'] [u'beazley', u'urg', u'avoid', u'iraq', u'civil'] [u'berlin', u'moscow', u'swim', u'world'] [u'bevan', u'marsh', u'record', u'stand', u'tiger'] [u'bird', u'claim', u'vietnames', u'victim'] [u'breast', u'cancer', u'cluster', u'link', u'crop', u'chemic'] [u'break', u'hill', u'farewel', u'outback', u'diva'] [u'brown', u'win', u'stage', u'tour', u'langkawi'] [u'bull', u'rope', u'jaqu', u'reign', u'suprem'] [u'bushrang', u'struggl'] [u'bushwalk', u'hike', u'nation', u'park', u'fire'] [u'databas', u'anim', u'abus'] [u'killer', u'feel', u'law', u'weight'] [u'china', u'stand', u'firm', u'zhao', u'legaci'] [u'claim', u'govt', u'plan', u'bomb', u'darfur'] [u'comment', u'period', u'energi', u'save', u'plan', u'extend'] [u'davenport', u'leav', u'ponder'] [u'davenport', u'serena', u'final'] [u'defenc', u'deni', u'star', u'war', u'report'] [u'destini', u'loom', u'larg', u'australian', u'open', u'final'] [u'dont', u'scapegoat', u'say', u'shoaib'] [u'eyr', u'peninsula', u'farewel', u'mother', u'children'] [u'famili', u'take', u'opera', u'great', u'home'] [u'fear', u'hama', u'influenc', u'abba', u'polici'] [u'ferrari', u'team', u'shun', u'meet'] [u'firefight', u'alert', u'lightn', u'spark', u'blaze'] [u'taiwan', u'china', u'flight', u'year', u'take'] [u'injur', u'stab', u'incid'] [u'friend', u'accident', u'shoot', u'hand'] [u'gallop', u'student', u'fare'] [u'gilli', u'confid', u'hayden', u'bounc'] [u'habib', u'strong', u'case', u'compens', u'lawyer'] [u'habib', u'spend', u'night', u'freedom', u'famili'] [u'habib', u'support', u'fight', u'justic'] [u'helicopt', u'crash', u'kill', u'soldier'] [u'henchoz', u'leav', u'liverpool', u'celtic'] [u'hewitt', u'verg', u'fulfil', u'lifelong', u'dream'] [u'hewitt', u'verg', u'open', u'dream'] [u'hewitt', u'wari', u'safin', u'threat'] [u'leav', u'pedestrian', u'injur'] [u'hors', u'doesnt', u'impress', u'shopper'] [u'howard', u'attack', u'wheat', u'subsidi'] [u'hundr', u'attend', u'gypsi', u'joker', u'founder', u'funer'] [u'iraq', u'closer', u'captur', u'zarqawi', u'arrest'] [u'iraqi', u'australian', u'turn', u'elect'] [u'iraqi', u'suicid', u'attack', u'kill'] [u'iraqi', u'urg', u'vote', u'despit', u'attack'] [u'iraqi', u'voter', u'display', u'mark', u'freedom'] [u'israel', u'handov', u'gaza', u'secur', u'oper'] [u'jackson', u'accus', u'face', u'star', u'court'] [u'jaqu', u'punish', u'bull'] [u'jaqu', u'reign', u'suprem', u'declar'] [u'secur', u'fear', u'deter', u'mother'] [u'king', u'singapor'] [u'lake', u'clair', u'park', u'facil', u'upgrad'] [u'lobbi', u'group', u'urg', u'barbar', u'shark', u'fin'] [u'lonard', u'grab', u'outright', u'second'] [u'diseas', u'goat'] [u'rescu', u'kayak', u'ordeal'] [u'matilda', u'upset', u'germani'] [u'meningococc', u'death', u'investig'] [u'miss', u'bind', u'gag', u'freeway'] [u'mitsubishi', u'sell', u'stockpil', u'adelaid'] [u'mourinho', u'improp', u'conduct', u'charg'] [u'nation', u'deni', u'branch', u'defect', u'member'] [u'nepal', u'shut', u'dalai', u'lama', u'offic'] [u'cautious', u'respons', u'farm', u'product', u'figur'] [u'afghan', u'polic', u'kill', u'blast', u'report'] [u'arrest', u'alleg', u'heroin', u'ring'] [u'mules', u'sheep', u'wool', u'make', u'sale', u'histori'] [u'duti', u'offic', u'help', u'drink', u'driver'] [u'opec', u'expect', u'maintain', u'product', u'level'] [u'passiv', u'smoke', u'tripl', u'children', u'cancer', u'risk'] [u'perth', u'player', u'hunt', u'disrupt', u'super', u'mckenzi'] [u'pole', u'problem', u'ring'] [u'polic', u'probe', u'tripl', u'fatal', u'victoria'] [u'elect', u'curfew', u'forc', u'iraq'] [u'rain', u'frustrat', u'struggl', u'bushrang'] [u'rain', u'prevent', u'play'] [u'rebel', u'chines', u'leader', u'lay', u'rest'] [u'recherch', u'decis', u'spineless', u'brown'] [u'roddick', u'unhappi', u'jackass'] [u'russian', u'offic', u'arrest', u'beslan', u'sieg'] [u'safin', u'upset', u'set', u'excit', u'year', u'say', u'vanquish'] [u'polic', u'fund', u'nation', u'averag', u'opposit'] [u'shoulder', u'surgeri', u'sidelin', u'capriati', u'indefinit'] [u'steal', u'cattl', u'truck', u'ablaz'] [u'stone', u'rais', u'million', u'net', u'minut'] [u'storm', u'hit', u'alic', u'spring'] [u'student', u'await', u'revamp', u'pass'] [u'sydney', u'gear', u'free', u'opera', u'perform'] [u'sydney', u'man', u'bodi', u'recov', u'speedboat', u'accid'] [u'prison', u'secur'] [u'teen', u'serious', u'injur', u'balconi', u'fall'] [u'thousand', u'turn', u'wave'] [u'pile', u'kill'] [u'detain', u'doubl', u'stab'] [u'tindal', u'miss', u'england', u'nation', u'campaign'] [u'tire', u'england', u'look', u'young', u'gun'] [u'toon', u'outcast', u'bellami', u'birmingham', u'switch'] [u'tsunami', u'devast', u'nation', u'divid', u'tsunami'] [u'tsunami', u'relief', u'worker', u'improv'] [u'hospit', u'stab', u'railway', u'station'] [u'troop', u'kill', u'baghdad', u'attack'] [u'coordin', u'asia', u'tsunami', u'warn', u'centr'] [u'econom', u'growth', u'slow', u'inflat'] [u'teen', u'sentenc', u'unleash', u'blaster', u'worm'] [u'versatil', u'draper', u'swap', u'tenni', u'raquet', u'golf', u'club'] [u'begin', u'inning'] [u'violenc', u'continu', u'iraq', u'poll'] [u'govt', u'irrig', u'scheme'] [u'warrior', u'chase', u'total'] [u'water', u'report', u'address', u'strategi', u'implement'] [u'william', u'fight', u'australian', u'open'] [u'xstrata', u'appeal', u'anger', u'victim', u'famili'] [u'zimbabwean', u'doubl', u'final'] [u'report', u'kill', u'sudan', u'ralli'] [u'abba', u'continu', u'talk', u'secur', u'palestinian'] [u'african', u'union', u'summit', u'open'] [u'armi', u'answer', u'eyr', u'peninsula', u'help'] [u'australia', u'breakthrough'] [u'australia', u'victori'] [u'author', u'attend', u'train', u'derail'] [u'author', u'probe', u'shop', u'mall'] [u'bangladesh', u'squar', u'seri'] [u'barca', u'tighten', u'grip', u'sevilla'] [u'beazley', u'hunt', u'east', u'coast', u'properti'] [u'beazley', u'want', u'aust', u'embassi', u'move', u'green', u'zone'] [u'bevan', u'continu', u'hobart', u'feast'] [u'bhutan', u'fear', u'nepal', u'insurg', u'escal'] [u'blue', u'control', u'despit', u'perren'] [u'bresciano', u'provid', u'parma', u'boost', u'surviv'] [u'brown', u'hold', u'slender', u'langkawi', u'lead'] [u'bull', u'chase', u'limp'] [u'bushfir', u'soot', u'caus', u'perth', u'black'] [u'boost', u'atroci', u'indigen', u'health'] [u'springborg', u'drop', u'singl', u'parti', u'idea'] [u'cancer', u'stricken', u'journalist', u'end', u'tumour', u'diari'] [u'chelsea', u'face', u'record', u'loss', u'report'] [u'china', u'boost', u'role', u'venezuela', u'sector'] [u'council', u'exercis', u'control', u'park'] [u'cpsu', u'seek', u'inform', u'famili', u'violenc', u'law'] [u'crocodil', u'clear', u'darwin', u'swim', u'pool'] [u'cultur', u'violenc', u'put', u'filipino', u'journalist'] [u'director', u'prize', u'boost', u'eastwood', u'oscar', u'hop'] [u'draper', u'stosur', u'mix', u'doubl'] [u'excit', u'build', u'open', u'final', u'loom'] [u'ferri', u'fear', u'unsettl', u'tasmanian', u'investor'] [u'fifth', u'want', u'doubl', u'stab'] [u'firefight', u'begin', u'cross', u'border', u'train', u'exercis'] [u'gut', u'hous', u'mundar'] [u'hospit', u'rollov'] [u'kill', u'kuwait', u'shootout'] [u'food', u'demand', u'aceh', u'rise', u'agenc'] [u'fourth', u'person', u'die', u'gippsland', u'accid'] [u'free', u'detaine', u'describ', u'guantanamo', u'tortur'] [u'freight', u'train', u'derail'] [u'gallop', u'plan', u'world', u'class', u'hospit'] [u'garrett', u'keep', u'polit', u'wave'] [u'gilchrist', u'wari', u'volatil', u'pakistan'] [u'goodwin', u'keep', u'warrior', u'afloat'] [u'govt', u'defend', u'measur', u'save', u'tassi', u'devil'] [u'govt', u'carpark', u'accid'] [u'grow', u'debt', u'reason'] [u'habib', u'famili', u'thank', u'support'] [u'hawk', u'fli', u'high'] [u'health', u'domin', u'elect', u'campaign'] [u'hewitt', u'fall', u'safin'] [u'hewitt', u'wari', u'safin', u'threat'] [u'hodg', u'harvey', u'victoria'] [u'hodg', u'warn', u'torment', u'redback'] [u'hop', u'african', u'summit', u'boost', u'health'] [u'hop', u'organ', u'donat', u'chang', u'wait', u'list'] [u'indonesia', u'aceh', u'peac', u'talk', u'posit', u'note'] [u'inquiri', u'probe', u'high', u'petrol', u'price'] [u'insurg', u'hold', u'embassi', u'attack'] [u'iraq', u'expat', u'vote', u'world'] [u'iraqi', u'expat', u'cast', u'vote'] [u'iraqi', u'vote', u'mortar', u'kill'] [u'iraqi', u'presid', u'say', u'peopl', u'wont', u'vote'] [u'iraqi', u'vote', u'amid', u'tight', u'secur'] [u'iraqi', u'voter', u'turnout', u'higher', u'predict', u'say'] [u'iraq', u'poll', u'mar', u'violenc'] [u'iraq', u'free', u'elect', u'begin'] [u'isra', u'troop', u'shoot', u'dead', u'palestinian'] [u'israel', u'readi', u'hand', u'west', u'bank', u'town'] [u'klitschko', u'rahman', u'showdown', u'firm', u'york'] [u'labor', u'distanc', u'habib', u'compens', u'talk'] [u'nation', u'consid', u'independ'] [u'lloyd', u'accus', u'vaughan', u'dismiss', u'rude'] [u'lonard', u'face', u'desert', u'shoot'] [u'plat', u'forc'] [u'apologis', u'parent', u'websit'] [u'arrest', u'walk', u'citi', u'street'] [u'charg', u'darwin', u'disturb'] [u'man', u'bodi', u'bridg', u'collaps'] [u'tsunami', u'victim', u'mortician'] [u'mass', u'potenti', u'juror', u'call', u'jackson', u'trial'] [u'minist', u'offend', u'releas'] [u'nation', u'play', u'candid', u'defect'] [u'beachgoer', u'warn', u'weekend', u'drown'] [u'dead', u'attack', u'near', u'iraq', u'poll', u'station'] [u'opec', u'chart', u'chang', u'output', u'limit'] [u'opec', u'keep', u'output', u'steadi'] [u'opposit', u'creat', u'hotlin', u'address', u'skill'] [u'opposit', u'warn', u'chang', u'coroni', u'process'] [u'pakistan', u'bowler', u'troubl', u'australia'] [u'pakistan', u'want', u'england', u'play', u'test'] [u'palestinian', u'polic', u'train', u'egypt'] [u'patrick', u'spark', u'virgin', u'share'] [u'pedestrian', u'kill', u'driver', u'die', u'wheel'] [u'adopt', u'wait', u'approach', u'iran'] [u'question', u'defend', u'econom', u'forum'] [u'polic', u'milit', u'exchang', u'gunfir', u'kuwait'] [u'polic', u'probe', u'adelaid', u'stab'] [u'polic', u'stand', u'drug', u'drive', u'statist'] [u'poverti', u'star', u'power', u'sidelin', u'busi'] [u'push', u'crack', u'competit'] [u'ranger', u'hammer', u'livingston'] [u'rebel', u'shoot', u'aceh', u'talk', u'progress'] [u'retail', u'donat', u'day', u'profit', u'tsunami', u'victim'] [u'rooney', u'shoot', u'boro', u'arsenal', u'edg', u'wolv'] [u'safin', u'crush', u'hewitt', u'dream'] [u'scientif', u'gather', u'assess', u'global', u'warm'] [u'suicid', u'bomber', u'attack', u'baghdad', u'poll', u'station'] [u'suicid', u'bomber', u'kill', u'iraq'] [u'sundanc', u'honour', u'polit', u'film'] [u'sydney', u'resid', u'turn', u'opera', u'domain'] [u'thailand', u'rais', u'number', u'tsunami', u'orphan'] [u'drown', u'savag', u'sea'] [u'tougher', u'child', u'porn', u'penalti', u'introduc'] [u'trade', u'fight', u'poverti', u'tell', u'forum'] [u'transmiss', u'upgrad', u'reduc', u'power', u'cut'] [u'tune', u'score', u'ballymor', u'comeback'] [u'dead', u'plane', u'crash'] [u'kill', u'baghdad', u'embassi', u'attack'] [u'third', u'expat', u'iraqi', u'vote', u'elect'] [u'umpir', u'bucknor', u'receiv', u'centurion', u'death', u'threat'] [u'name', u'asia', u'pacif', u'command', u'forc'] [u'urg', u'discuss', u'nuclear', u'issu', u'iran'] [u'vet', u'ralli', u'communiti', u'focus', u'anim', u'abus'] [u'voter', u'kill', u'iraq', u'elect', u'attack'] [u'warlord', u'trial', u'solomon'] [u'wave', u'rais', u'million', u'tsunami', u'victim'] [u'warn', u'temperatur', u'chang', u'year'] [u'young', u'make', u'histori', u'melbourn'] [u'civilian', u'work', u'iraq'] [u'abstract', u'landscap', u'scoop', u'bendigo', u'prize'] [u'govt', u'trial', u'household', u'debt', u'initi'] [u'complet', u'tribun', u'chang'] [u'african', u'union', u'condemn', u'darfur', u'attack'] [u'ahm', u'seal', u'bangladesh', u'seri'] [u'airlin', u'say', u'spirit', u'complement', u'servic'] [u'allianc', u'bolster', u'opportun'] [u'promis', u'pilbara', u'polic', u'complex'] [u'annan', u'appeal', u'iraqi', u'reconcili'] [u'annan', u'urg', u'africa', u'develop', u'goal'] [u'applebi', u'ripe', u'success'] [u'appl', u'brand', u'googl', u'jazeera', u'surpris'] [u'australian', u'kill', u'iraq', u'crash'] [u'aust', u'review', u'troop', u'baghdad', u'role'] [u'autopsi', u'dead', u'swan'] [u'school', u'student'] [u'bali', u'bomb', u'suspect', u'narrowli', u'escap', u'captur'] [u'bathurst', u'adopt', u'alcohol', u'free', u'zone'] [u'beatti', u'beazley', u'pledg', u'greater', u'cooper'] [u'beckham', u'target', u'real'] [u'swell', u'prompt', u'surf', u'safeti', u'warn'] [u'border', u'tip', u'martyn', u'medal'] [u'britain', u'prais', u'iraq', u'elect', u'effort'] [u'broadway', u'magic', u'hard', u'quantifi'] [u'broker', u'fin', u'thousand', u'luxuri', u'scam'] [u'bronhil', u'ash', u'scatter', u'break', u'hill'] [u'brown', u'lose', u'langkawi', u'lead'] [u'bull', u'blue'] [u'bull', u'tail', u'ender', u'deni', u'blue'] [u'bushrang', u'stay', u'aliv', u'redback', u'rout'] [u'busi', u'urg', u'cater', u'grow', u'tourist'] [u'review', u'polic', u'station', u'surveil'] [u'canberra', u'school', u'reopen', u'door'] [u'group', u'urg', u'rehab', u'tortur'] [u'china', u'crack', u'phone', u'soothsay'] [u'chines', u'local', u'offici', u'investig', u'corrupt'] [u'christma', u'detent', u'centr', u'condemn'] [u'clark', u'win', u'allan', u'border', u'medal'] [u'candid', u'float', u'fuel', u'reduct', u'idea'] [u'coastal', u'park', u'blaze', u'pose', u'problem'] [u'concern', u'suicid', u'rate', u'mental', u'health', u'patient'] [u'concern', u'rais', u'camera', u'propos'] [u'confus', u'mayor', u'accept', u'bribe', u'icac', u'hear'] [u'consmin', u'launch', u'relianc', u'takeov'] [u'council', u'aim', u'shake', u'griffith', u'drug', u'imag'] [u'council', u'consid', u'carer', u'role'] [u'council', u'defend', u'asia', u'invest', u'trip'] [u'council', u'drop', u'tanker', u'plan'] [u'councillor', u'question', u'transit', u'centr', u'consult'] [u'council', u'plan', u'woodgat', u'beach'] [u'council', u'urg', u'consid', u'rat', u'find'] [u'creditor', u'welcom', u'elliott', u'bankruptci'] [u'darfur', u'rebel', u'african', u'union', u'interven'] [u'darwin', u'rail', u'link', u'deem', u'uncompetit'] [u'dead', u'mushroom', u'public', u'garden'] [u'doctor', u'group', u'play', u'pesticid', u'cancer', u'risk'] [u'doubt', u'cast', u'north', u'west', u'drought'] [u'doubt', u'cast', u'wheat', u'incom'] [u'drop', u'gang', u'rape', u'charg'] [u'drink', u'like', u'fish', u'say', u'china', u'entrepreneur'] [u'remand', u'robberi', u'spree'] [u'exercis', u'consid', u'histor', u'bridg', u'preserv'] [u'export', u'potenti', u'remot', u'area', u'knowledg'] [u'extra', u'uranium', u'wont', u'extend', u'ranger', u'life', u'say'] [u'falconio', u'murder', u'trial', u'like'] [u'famili', u'flee', u'burn', u'hous'] [u'farmer', u'work', u'milk', u'price', u'agenc'] [u'fear', u'queenstown', u'hospit', u'downgrad'] [u'fierc', u'kununurra', u'storm', u'damag', u'properti'] [u'financi', u'woe', u'squeez', u'grape', u'grower'] [u'firefight', u'continu', u'battl', u'coastal', u'park'] [u'ravag', u'hous', u'alight'] [u'fishermen', u'push', u'year', u'round', u'access', u'mari', u'river'] [u'flight', u'centr', u'agre', u'drop', u'slogan'] [u'food', u'shortag', u'threaten', u'phillip', u'penguin'] [u'harri', u'scarf', u'chief', u'front', u'court'] [u'mayor', u'face', u'icac'] [u'forum', u'focus', u'leeton', u'crime'] [u'milit', u'kill', u'kuwait', u'clash'] [u'fund', u'help', u'drug', u'fight', u'darl', u'down'] [u'gaddafi', u'feel', u'betray', u'deal'] [u'glencor', u'pull', u'plug', u'henri', u'walker', u'eltin'] [u'govt', u'appoint', u'tasmania', u'femal', u'judg'] [u'govt', u'promis', u'coal', u'infrastructur', u'boost'] [u'govt', u'review', u'rail', u'safeti', u'law'] [u'govt', u'ask', u'childcar', u'centr', u'plan'] [u'govt', u'stand', u'elmor', u'health', u'chang'] [u'govt', u'hospit', u'renov', u'delay'] [u'govt', u'urg', u'leav', u'disabl', u'pension'] [u'govt', u'wont', u'local', u'elect'] [u'greek', u'sprinter', u'hope', u'escap'] [u'group', u'fight', u'retain', u'area', u'heritag', u'charact'] [u'grower', u'welcom', u'horticultur', u'code', u'conduct'] [u'habib', u'media', u'interview', u'lawyer', u'say'] [u'hardi', u'fund', u'liquid', u'dismiss'] [u'hayden', u'certainti', u'border'] [u'health', u'chief', u'highlight', u'corangamit', u'bing', u'drink'] [u'health', u'worker', u'head', u'home', u'offer', u'tsunami'] [u'hewitt', u'cartwright'] [u'high', u'commission', u'return', u'fiji'] [u'high', u'court', u'swear', u'near', u'barrist'] [u'high', u'turnout', u'regist', u'iraqi', u'expat'] [u'posit', u'charg', u'alleg', u'sexual'] [u'hope', u'traine', u'doctor', u'return', u'bundaberg'] [u'hotel', u'park', u'remain', u'unsurfac'] [u'human', u'stem', u'cell', u'nerv', u'cell', u'studi'] [u'illeg', u'fishermen', u'hous', u'vamp'] [u'incred', u'clean', u'cartoon', u'award'] [u'injur', u'digger', u'toll', u'climb'] [u'interim', u'derail', u'report', u'expect', u'month'] [u'investig', u'probe', u'train', u'derail'] [u'invinc', u'blunder', u'hand', u'celtic'] [u'iranian', u'hail', u'iraq', u'great', u'step'] [u'iraq', u'elect', u'blame', u'sydney', u'brawl'] [u'iraqi', u'coupl', u'marathon', u'vote', u'vain'] [u'iraq', u'lock', u'count', u'begin'] [u'iraq', u'poll', u'hail', u'success'] [u'irregular', u'northern', u'iraq', u'poll'] [u'isi', u'mill', u'cane', u'suppli', u'boost', u'grower', u'confid'] [u'islam', u'school', u'open', u'delay'] [u'jackson', u'trial', u'begin'] [u'juve', u'tighten', u'grip', u'titl', u'milan', u'slip'] [u'keke', u'front', u'court', u'solomon', u'island', u'murder'] [u'keke', u'prepar', u'face', u'court', u'solomon', u'island'] [u'koala', u'plan', u'aim', u'regul', u'develop'] [u'labor', u'pledg', u'specialist', u'teacher', u'high'] [u'lara', u'confid', u'claim', u'final', u'berth'] [u'profess', u'begin', u'court', u'year', u'church'] [u'lawyer', u'criticis', u'surveil', u'habib'] [u'leagu', u'rooki', u'behaviour', u'boot', u'camp'] [u'liber', u'reject', u'port', u'privatis', u'claim'] [u'liberti', u'concern', u'electron', u'bracelet'] [u'link', u'suspect', u'gang', u'violenc', u'woman'] [u'lobbi', u'group', u'say', u'rail', u'replac', u'nonsens'] [u'lonard', u'fourth', u'leonard', u'win', u'hope', u'classic'] [u'longreach', u'centrelink', u'offic'] [u'fli', u'flag', u'bureaucraci', u'go'] [u'remain', u'critic', u'condit', u'refineri'] [u'remand', u'custodi', u'alleg', u'gang', u'repris'] [u'remand', u'child', u'kidnap', u'pornographi', u'charg'] [u'face', u'court', u'photograph', u'children'] [u'feud', u'bitter', u'person', u'say', u'campbel'] [u'mayor', u'run', u'latham', u'seat'] [u'meet', u'focus', u'halliday', u'develop'] [u'miner', u'threaten', u'action', u'workplac', u'safeti', u'case'] [u'mine', u'group', u'launch', u'health', u'safeti', u'test', u'case'] [u'minist', u'back', u'hospit', u'return', u'public'] [u'minist', u'condemn', u'indigen', u'memori', u'vandal'] [u'minist', u'readi', u'releas', u'sandon'] [u'minist', u'vow', u'tugun', u'bypass', u'project', u'continu'] [u'monkey', u'hang', u'home', u'despit', u'damag'] [u'motorist', u'warn', u'extra', u'care', u'drive', u'past'] [u'motorway', u'takeov', u'bump'] [u'doubt', u'gordon', u'estat', u'secur', u'guard', u'plan'] [u'urg', u'come', u'good', u'elect', u'promis'] [u'nation', u'park', u'blaze', u'sixth'] [u'doctor', u'head', u'mudge'] [u'hook', u'reel', u'flathead'] [u'station', u'hop', u'rival', u'sydney'] [u'suprem', u'court', u'judg', u'swear'] [u'substanc', u'bucknor', u'death', u'threat', u'polic'] [u'nrma', u'ramp', u'princ', u'highway', u'effort'] [u'kill', u'tajikistan', u'bomb'] [u'opposit', u'say', u'region', u'look', u'chang'] [u'pakistan', u'declar', u'upper', u'hand', u'crunch', u'match'] [u'palestinian', u'girl', u'report', u'shoot', u'dead', u'gaza'] [u'park', u'begin', u'quest', u'save', u'tassi', u'devil'] [u'parti', u'splash', u'fund', u'hall', u'creek', u'pool'] [u'parti', u'urg', u'infrastructur', u'spend'] [u'patrick', u'challeng', u'match', u'virgin', u'blue', u'offer'] [u'perth', u'kalgoorli', u'line', u'reopen', u'weekend'] [u'petrol', u'price', u'inquiri', u'stunt', u'opposit', u'say'] [u'phoni', u'polic'] [u'physicist', u'gather', u'intern', u'brainstorm'] [u'pilot', u'kill', u'chopper', u'crash'] [u'polic', u'continu', u'maritim', u'death', u'investig'] [u'polic', u'interview', u'young', u'theft'] [u'polic', u'launch', u'probe', u'lake', u'macquari', u'death'] [u'polic', u'maintain', u'help', u'miss'] [u'polic', u'heroin', u'cocain', u'drug', u'bust'] [u'polic', u'probe', u'heritag', u'shed', u'blaze'] [u'polic', u'team', u'return', u'tsunami', u'relief', u'effort'] [u'pope', u'suffer', u'cancel', u'audienc'] [u'premier', u'play', u'ama', u'cancer', u'fear'] [u'privat', u'sector', u'credit', u'rise'] [u'privat', u'sector', u'nab', u'council', u'build', u'plan', u'job'] [u'public', u'servant', u'vote', u'union', u'workplac'] [u'question', u'ask', u'presenc', u'palm', u'secur'] [u'question', u'hang', u'futur', u'sit'] [u'retrench', u'mitsubishi', u'employe', u'job'] [u'review', u'recommend', u'inspector', u'icac', u'complaint'] [u'robinson', u'accus', u'gambl', u'public', u'moni'] [u'row', u'club', u'launch', u'clubhous', u'renov'] [u'rspca', u'prais', u'cockatoo', u'killer', u'sentenc'] [u'safin', u'celebr', u'melbourn'] [u'govt', u'delay'] [u'sediment', u'blame', u'dirti', u'water'] [u'self', u'confess', u'child', u'abductor', u'deni', u'indec'] [u'seminar', u'probe', u'motiv', u'kill'] [u'servic', u'usual', u'despit', u'compani', u'money', u'woe'] [u'shark', u'fisher', u'case', u'sustain'] [u'shark', u'spot', u'near', u'coff', u'beach'] [u'shiit', u'spiritu', u'leader', u'hail', u'iraq', u'elect'] [u'soldier', u'home', u'iraqi', u'train', u'mission'] [u'stanhop', u'say', u'percept', u'bias', u'bushfir'] [u'state', u'play', u'season'] [u'stinger', u'attack', u'forc', u'beach', u'closur'] [u'steal', u'distress', u'beacon', u'prompt', u'polic', u'search'] [u'studi', u'wont', u'endang', u'albani', u'tourism', u'fund'] [u'suspect', u'victim', u'die', u'hospit'] [u'join', u'fibr', u'optic', u'trial', u'outsid', u'japan'] [u'teen', u'rid', u'deep'] [u'timber', u'worker', u'shortag', u'spark', u'forestri', u'concern'] [u'treasur', u'silent', u'relief'] [u'tsunami', u'death', u'toll', u'pass'] [u'tsunami', u'countri', u'urg', u'tourist', u'return'] [u'tweed', u'council', u'probe', u'spark', u'submiss', u'influx'] [u'kill', u'crash'] [u'underworld', u'figur', u'front', u'court', u'drug', u'charg'] [u'union', u'barnett', u'hand'] [u'british', u'troop', u'kill', u'hercul', u'crash'] [u'cadet', u'pose', u'nazi', u'costum'] [u'mismanag', u'billion', u'iraq', u'fund', u'auditor'] [u'vandenberg', u'skipper', u'hawk'] [u'victoria', u'move', u'electron', u'track', u'paedophil'] [u'victori', u'safin', u'beat', u'demon'] [u'vietnames', u'girl', u'die', u'bird'] [u'vivienn', u'westwood', u'end'] [u'warrior', u'chase', u'outright', u'point'] [u'warrior', u'claim', u'spot', u'record', u'chase'] [u'water', u'cart', u'ravensthorp'] [u'waterfal', u'victim', u'rememb', u'year'] [u'weather', u'hamper', u'mozzi', u'control', u'effort'] [u'weather', u'woe', u'barrier', u'enjoy'] [u'sorri', u'chief', u'tell', u'sharehold'] [u'william', u'charg', u'second', u'moran', u'murder'] [u'woman', u'deni', u'own', u'alleg', u'danger'] [u'workcov', u'crack', u'retail'] [u'youni', u'head', u'home', u'famili', u'bereav'] [u'reward', u'halvagi', u'murder', u'inform'] [u'adelaid', u'jetstar', u'schedul'] [u'audit', u'famili', u'donat'] [u'africa', u'bore', u'geldof', u'say'] [u'jazeera', u'public'] [u'alp', u'werriwa', u'candid', u'wari', u'task', u'ahead'] [u'urg', u'look', u'wider', u'cancer', u'probe'] [u'anelka', u'move', u'istanbul'] [u'argentinian', u'nightclub', u'owner', u'charg', u'dead'] [u'armi', u'dig', u'eyr', u'peninsula'] [u'armi', u'short', u'bullet'] [u'atsic', u'hand', u'shop', u'centr', u'local'] [u'australia', u'seek', u'sanction', u'darfur', u'atroc'] [u'author', u'monitor', u'timor', u'dengu', u'outbreak'] [u'barnett', u'warn', u'independ', u'invit', u'join'] [u'bashir', u'criticis', u'islamist', u'attack', u'indonesia'] [u'beach', u'goer', u'safeti', u'warn'] [u'beatti', u'expos', u'nude', u'beach', u'fear'] [u'beazley', u'wont', u'rule', u'budget', u'deficit'] [u'bega', u'council', u'seek', u'holiday', u'leas', u'respons'] [u'beij', u'game', u'benefit', u'human', u'right', u'china'] [u'bendigo', u'hous', u'market', u'predict', u'grow'] [u'biki', u'gang', u'member', u'charg', u'grievous', u'bodili', u'harm'] [u'birdbrain', u'doesnt', u'equal', u'stupid', u'scientist', u'argu'] [u'bluescop', u'disput', u'wont', u'disrupt', u'assembl', u'plant'] [u'brack', u'attack', u'campaign', u'reduc', u'abort'] [u'britain', u'open', u'churchil', u'museum'] [u'britain', u'free', u'palestinian', u'terror', u'suspect'] [u'bump', u'crocodil', u'scar', u'beach', u'walker'] [u'bureau', u'reveal', u'high', u'kalgoorli', u'temp'] [u'busi', u'confid', u'wan'] [u'busi', u'fight', u'tourism', u'levi'] [u'businessman', u'sole', u'nomin', u'latham', u'seat'] [u'central', u'train', u'posit'] [u'canada', u'counter', u'patriot', u'data', u'report'] [u'cancer', u'convoy', u'particip', u'warn', u'obey', u'road'] [u'capit', u'consol', u'wnbl', u'award'] [u'secur', u'chip', u'crack', u'research'] [u'catchment', u'group', u'fear', u'river', u'health', u'swan'] [u'chief', u'justic', u'want', u'juri', u'involv', u'sentenc'] [u'chopper', u'crash', u'victim', u'identifi'] [u'clark', u'prepar', u'time'] [u'coach', u'safin', u'say', u'russian', u'chief'] [u'coalit', u'talk', u'workplac', u'agreement'] [u'confer', u'help', u'lure', u'fish', u'river'] [u'develop', u'unhappi', u'draft'] [u'council', u'like', u'reject', u'bottl', u'shop', u'plan'] [u'council', u'offer', u'drought'] [u'council', u'reveal', u'beach', u'resort'] [u'council', u'wait', u'hear', u'health', u'merger'] [u'counsellor', u'hop', u'court', u'case', u'wont', u'deter'] [u'court', u'tell', u'fingleton', u'immun'] [u'court', u'tell', u'robinson', u'place', u'bet'] [u'darl', u'down', u'landhold', u'score', u'valuat'] [u'demand', u'forc', u'cost', u'ghan'] [u'dept', u'urg', u'help', u'resolv', u'mental', u'health', u'nurs'] [u'derail', u'expect', u'hurt', u'prospector'] [u'distress', u'fingleton', u'take', u'hospit'] [u'electr', u'worker', u'receiv', u'increas'] [u'probe', u'river', u'chemic', u'spill'] [u'hop', u'extend', u'ranger', u'life'] [u'esso', u'contractor', u'celebr', u'roster'] [u'ethiopia', u'marley', u'inspir', u'rasta', u'invas'] [u'famili', u'declar', u'donat'] [u'farmer', u'warn', u'locust', u'return'] [u'final', u'vote', u'count', u'begin', u'iraq'] [u'firefight', u'control', u'tullamarin', u'blaze'] [u'flight', u'centr', u'chang', u'slogan'] [u'freez', u'develop', u'plan'] [u'french', u'govt', u'prop', u'struggl', u'wine', u'industri'] [u'fund', u'school', u'hors', u'rid', u'program', u'ensur'] [u'good', u'look', u'jobless', u'want', u'german', u'trade'] [u'goondiwindi', u'get', u'drug', u'fight', u'boost'] [u'govt', u'consid', u'icac', u'shake'] [u'govt', u'criticis', u'sugar', u'industri', u'reform', u'comment'] [u'govt', u'defend', u'tugun', u'bypass', u'environment', u'effort'] [u'govt', u'fast', u'track', u'albani', u'hospit', u'work'] [u'govt', u'commit', u'giant', u'marin', u'park'] [u'govt', u'broaden', u'elder', u'carer', u'scheme'] [u'greec', u'arrest', u'gang', u'peopl', u'smuggler'] [u'group', u'rais', u'flag'] [u'haitian', u'poll', u'novemb'] [u'hamilton', u'drop', u'australia'] [u'hardi', u'payout', u'review', u'complet', u'march'] [u'heavi', u'snow', u'hit', u'afghanistan', u'pakistan'] [u'hercul', u'crash', u'investig', u'continu'] [u'hick', u'lawyer', u'welcom', u'guantanamo', u'rule'] [u'high', u'demand', u'see', u'sport', u'field', u'share'] [u'hospit', u'staff', u'assur'] [u'howard', u'outlin', u'share', u'futur', u'asia'] [u'howard', u'reject', u'beazley', u'iraq', u'pullout'] [u'take', u'step', u'power', u'comput'] [u'ill', u'interrupt', u'milosev', u'trial'] [u'immigr', u'dept', u'blame', u'refuge', u'death'] [u'india', u'karthikeyan', u'histori'] [u'indonesia', u'cast', u'doubt', u'alleg', u'bali', u'bomber'] [u'insur', u'rebat', u'impact', u'hospit', u'wait', u'list'] [u'iraqi', u'politician', u'warn', u'civil', u'troop'] [u'iraq', u'vote', u'count', u'enter', u'second', u'phase'] [u'island', u'face', u'nation', u'giant'] [u'januari', u'rain', u'averag', u'sydney'] [u'keegan', u'dalglish', u'play', u'anfield', u'tsunami', u'benefit'] [u'kyoto', u'stop', u'global', u'warm', u'expert', u'say'] [u'leprosi', u'infect', u'stigma', u'persist'] [u'iraq', u'solv', u'problem', u'beazley', u'say'] [u'littl', u'rain', u'spark', u'tougher', u'water', u'ban'] [u'loser', u'forget', u'titl', u'warn', u'wenger'] [u'admit', u'kill', u'wife', u'daughter'] [u'plead', u'guilti', u'manslaught'] [u'rescu', u'hous'] [u'manufactur', u'growth', u'slow'] [u'market', u'challeng', u'tourism', u'industri'] [u'martin', u'stand', u'port', u'trade'] [u'mayor', u'defend', u'capricorn', u'coast', u'futur'] [u'mayor', u'want', u'fish', u'kill'] [u'maywald', u'will', u'work', u'govt'] [u'mediat', u'visit', u'ivori', u'coast', u'rebel'] [u'mildura', u'hospit', u'plan', u'servic'] [u'mildura', u'region', u'driver', u'undergo', u'drug', u'test'] [u'militari', u'funer', u'hold', u'kill', u'canyon'] [u'miner', u'beat', u'miner', u'sand', u'market'] [u'minist', u'echo', u'plan', u'health', u'shake'] [u'minist', u'pledg', u'chang', u'flag', u'fli', u'law'] [u'molik', u'crack'] [u'mooney', u'back', u'greater', u'council', u'account'] [u'fund', u'seek', u'tackl', u'indigen', u'health', u'woe'] [u'mother', u'angri', u'son', u'death', u'iraq'] [u'want', u'abort', u'decis', u'leav', u'women'] [u'gambier', u'await', u'timber', u'invest', u'news'] [u'cours', u'record', u'safe'] [u'natur', u'refug', u'creat'] [u'navratilova', u'edg', u'sele', u'exhibit', u'match'] [u'navi', u'ship', u'join', u'south', u'coast', u'exercis'] [u'nepal', u'king', u'sack', u'govern', u'assum', u'power'] [u'north', u'east'] [u'home', u'sale', u'decemb'] [u'leas', u'life', u'soon', u'nickel', u'tenement'] [u'nick', u'whitlam', u'take', u'action', u'retir', u'benefit'] [u'norman', u'embrac', u'rooki', u'status'] [u'begin', u'inquiri', u'juvenil', u'sentenc'] [u'cabinet', u'post', u'fill'] [u'odonnel', u'stick', u'cowboy'] [u'opposit', u'claim', u'hospit', u'servic', u'declin'] [u'outback', u'council', u'want', u'nation', u'smoke'] [u'paedophil', u'forc', u'town'] [u'pakistan', u'book', u'final', u'berth'] [u'pakistan', u'cruis', u'strong', u'total'] [u'parti', u'urg', u'crop'] [u'pegasus', u'director', u'stand', u'trial', u'alleg', u'fraud'] [u'appeal', u'life', u'convict', u'drug', u'traffick'] [u'visit', u'aceh'] [u'urg', u'calm', u'abort', u'debat'] [u'polic', u'continu', u'fatal', u'crash', u'probe'] [u'polic', u'investig', u'fatal', u'chopper', u'crash'] [u'polic', u'investig', u'letter', u'explos'] [u'polic', u'charg', u'south', u'more', u'riot'] [u'polic', u'safeti', u'prioriti', u'say', u'opposit'] [u'polic', u'station', u'stay', u'open', u'clock'] [u'polit', u'donat', u'lay', u'bare'] [u'polli', u'unifi', u'sale', u'hospit', u'support'] [u'power', u'chao', u'say', u'trenorden'] [u'pressur', u'mount', u'bendigo', u'polic', u'station', u'work'] [u'profession', u'canberra', u'danc', u'compani', u'possibl'] [u'protest', u'interrupt', u'howard', u'singapor', u'speech'] [u'public', u'urg', u'avoid', u'heat', u'stress'] [u'public', u'warn', u'blue', u'green', u'alga', u'concern'] [u'push', u'shoalhaven', u'emerg', u'specialist'] [u'barra', u'season', u'begin'] [u'rain', u'help', u'eas', u'water', u'ban'] [u'rann', u'faze', u'appoint', u'critic'] [u'rapper', u'snoop', u'dogg', u'accus', u'sexual', u'assault'] [u'ravensthorp', u'water', u'woe', u'highlight', u'year'] [u'receiv', u'call', u'lincraft'] [u'record', u'rain', u'adelaid'] [u'reev', u'get', u'star', u'walk', u'fame'] [u'rescu', u'chopper', u'protest'] [u'resourc', u'bank', u'stock', u'boost'] [u'revolutionari', u'nuclear', u'plant', u'card'] [u'rice', u'concentr', u'middl', u'east', u'peac'] [u'riot', u'high', u'secur', u'iraqi', u'prison', u'leav', u'dead'] [u'road', u'author', u'seek', u'remov', u'danger', u'tree'] [u'rooney', u'everton', u'return'] [u'erupt', u'feedlot', u'decis'] [u'ruddock', u'play', u'guantanamo', u'rule'] [u'sail', u'health'] [u'scientist', u'parlay', u'global', u'warm', u'crisi'] [u'scottish', u'rocker', u'award', u'nomin'] [u'search', u'continu', u'steal', u'yacht'] [u'senat', u'committe', u'probe', u'indigen', u'administr'] [u'sharapova', u'make', u'wimbledon', u'prioriti'] [u'shark', u'happi', u'wire', u'sound'] [u'shark', u'studi', u'aim', u'help', u'preserv', u'speci'] [u'shire', u'help', u'fund', u'wast', u'facil'] [u'sign', u'boost', u'fraser', u'tourist', u'safeti'] [u'singapor', u'consid', u'clemenc', u'melbourn'] [u'smoke', u'harm', u'women', u'studi'] [u'socceroo', u'strength', u'iraq', u'match', u'oneil'] [u'socceroo', u'confirm', u'iraq', u'fixtur'] [u'south', u'africa', u'japan', u'world'] [u'speaker', u'posit', u'guarante', u'martin'] [u'specialist', u'give', u'packag'] [u'springborg', u'urg', u'maintain', u'parti', u'plan'] [u'sterl', u'predict', u'return'] [u'steal', u'yacht', u'elud', u'polic'] [u'strand', u'dolphin', u'rescu'] [u'studi', u'get', u'jump', u'rage'] [u'studi', u'consid', u'iron', u'export', u'plan'] [u'studi', u'focus', u'bruce', u'highway', u'work'] [u'sudan', u'accus', u'systemat', u'abus', u'darfur'] [u'sunni', u'parti', u'urg', u'help', u'write', u'iraq', u'constitut'] [u'sunraysia', u'access', u'digit', u'channel'] [u'aquacultur', u'compani', u'merg'] [u'teenag', u'tait', u'pick', u'england', u'face', u'wale'] [u'telstra', u'custom', u'await', u'phone'] [u'telstra', u'rural', u'servic', u'improv', u'report', u'say'] [u'terri', u'hick', u'talk', u'habib'] [u'kill', u'georgia', u'explos'] [u'uninjur', u'light', u'plane', u'crash'] [u'marin', u'kill', u'south', u'baghdad'] [u'tourism', u'chief', u'back', u'road', u'renam'] [u'trade', u'deficit', u'stay'] [u'tsunami', u'rescuer', u'face', u'assault', u'charg'] [u'seek', u'shore', u'entitl', u'compani'] [u'call', u'world', u'support', u'iraq'] [u'tourism', u'bodi', u'open', u'emerg', u'session', u'thailand'] [u'outstrip', u'state', u'agricultur'] [u'vietnames', u'firm', u'offer', u'bird', u'insur'] [u'govt', u'promis', u'increas', u'hospit', u'bed'] [u'walk', u'theft', u'rise'] [u'wallabi', u'return', u'red'] [u'minist', u'deni', u'strike', u'claim'] [u'word', u'erupt', u'rail', u'line'] [u'warrior', u'ignit', u'final', u'charg'] [u'strike', u'capit', u'aust', u'andrew', u'say'] [u'william', u'tell', u'judg', u'hell', u'vindic'] [u'winemak', u'hold', u'price', u'talk'] [u'woman', u'get', u'probat', u'duff', u'beer', u'scam'] [u'women', u'lawyer', u'welcom', u'suprem', u'court', u'appoint'] [u'veteran', u'farewel'] [u'youhana', u'lead', u'pakistan', u'past'] [u'zimbabw', u'exil', u'launch', u'week', u'newspap'] [u'abba', u'meet', u'sharon', u'egypt'] [u'account', u'plead', u'guilti', u'fraud'] [u'landhold', u'pray', u'good', u'rain'] [u'alcohol', u'relat', u'injuri', u'caus', u'goldfield', u'worri'] [u'alic', u'spring', u'hospit', u'get', u'upgrad'] [u'waratah', u'red'] [u'ambul', u'offic', u'danger', u'union', u'say'] [u'anim', u'right', u'activist', u'sell', u'skin', u'chariti'] [u'armi', u'get', u'clear', u'peninsula', u'work'] [u'athen', u'firm', u'favourit', u'swim'] [u'australian', u'bali', u'drug', u'trial', u'delay'] [u'austrian', u'domin', u'empir', u'state', u'eldest', u'entrant'] [u'beatti', u'call', u'calm', u'paedophil', u'hunt'] [u'beazley', u'defend', u'eyr', u'peninsula', u'visit'] [u'benitez', u'bullish', u'reviv'] [u'brown', u'win', u'langkawi', u'stage'] [u'buchanan', u'step', u'hayden', u'defenc'] [u'bulldog', u'scope', u'talent'] [u'busi', u'usual', u'cockatoo'] [u'canada', u'unveil', u'plan', u'legalis', u'marriag'] [u'carmak', u'renault', u'boss'] [u'castl', u'add', u'heritag', u'regist'] [u'cattl', u'station', u'swelter', u'januari'] [u'cessnock', u'council', u'abandon', u'hous', u'plan'] [u'cheaper', u'fuel', u'price', u'predict'] [u'correct', u'iraq', u'assess'] [u'cmon', u'hit', u'tenni', u'circuit'] [u'communiti', u'fund', u'bank', u'feasibl', u'studi'] [u'consortium', u'appoint', u'build', u'student', u'dig'] [u'contrit', u'mutu', u'relish', u'juventus', u'challeng'] [u'convict', u'child', u'killer', u'quiz', u'unsolv'] [u'costello', u'deni', u'abort', u'debat', u'damag', u'coalit'] [u'council', u'crack', u'smelli', u'treatment', u'plant'] [u'council', u'hear', u'fall', u'rate', u'base'] [u'council', u'hop', u'ramp', u'harbour', u'dredg', u'fund'] [u'councillor', u'warn', u'privat', u'memo', u'comment'] [u'council', u'beat', u'technic', u'colleg'] [u'court', u'approv', u'food', u'poison', u'action', u'settlement'] [u'court', u'reserv', u'decis', u'fingleton', u'case'] [u'cream', u'reunion', u'ticket', u'fetch', u'huge', u'sum'] [u'crikey', u'mayn', u'take', u'life'] [u'develop', u'approv', u'spark', u'indigen', u'protest'] [u'develop', u'plan', u'consid', u'environ'] [u'dickov', u'doubt', u'chelsea', u'clash'] [u'test', u'order', u'custodi', u'battl', u'tsunami'] [u'drug', u'chief', u'hunt', u'trace', u'design', u'steroid'] [u'dust', u'storm', u'caus', u'havoc', u'western'] [u'earthquak', u'rule', u'caus', u'tremor'] [u'kill', u'iraq', u'insurg', u'attack'] [u'employe', u'warn', u'seek', u'super', u'advic'] [u'esso', u'roster', u'union'] [u'ethiopia', u'celebr', u'marley', u'birthday'] [u'fall', u'tree', u'kill', u'teen', u'school', u'camp'] [u'fan', u'brave', u'cold', u'ticket'] [u'farmer', u'ask', u'storm', u'damag'] [u'farmer', u'look', u'state', u'drought'] [u'fear', u'resid', u'continu', u'punish', u'free'] [u'feder', u'fund', u'probe'] [u'femal', u'coalit', u'dont', u'want', u'abort', u'debat'] [u'fergi', u'point', u'finger', u'vieira', u'tunnel'] [u'fifa', u'set', u'beach', u'soccer', u'world'] [u'final', u'submiss', u'hear', u'fingleton', u'appeal'] [u'crew', u'battl', u'booragoon', u'blaze'] [u'fishway', u'declar', u'success'] [u'execut', u'die', u'plane', u'crash'] [u'stoner', u'chief', u'staff'] [u'fourth', u'teen', u'charg', u'year', u'assault'] [u'fruit', u'outbreak', u'prompt', u'trap'] [u'futur', u'uncertain', u'construct', u'compani', u'worker'] [u'gavaskar', u'head', u'rest', u'world', u'select', u'panel'] [u'german', u'footbal', u'scandal', u'widen', u'includ', u'second'] [u'german', u'presid', u'lay', u'wreath', u'isra', u'holocaust'] [u'gold', u'coast', u'council', u'face', u'growth', u'challeng'] [u'govern', u'adopt', u'holist', u'approach', u'cross', u'media'] [u'govt', u'ask', u'bolster', u'worker', u'entitl'] [u'govt', u'deliv', u'sugar', u'reform', u'labor', u'say'] [u'govt', u'depart', u'review', u'water', u'shortag'] [u'govt', u'urg', u'spell', u'voluntari', u'school', u'fee'] [u'green', u'group', u'highlight', u'differ', u'report'] [u'grower', u'unhappi', u'citrus', u'canker', u'measur'] [u'hawk', u'visit', u'seat', u'girrawheen'] [u'health', u'centr', u'tender', u'call'] [u'heavi', u'rain', u'caus', u'flood', u'melbourn', u'area'] [u'help', u'away', u'rubbish', u'good'] [u'high', u'cost', u'bendigo', u'newspap', u'print'] [u'home', u'owner', u'wound', u'burglari'] [u'hope', u'facil', u'bring', u'graduat'] [u'hous', u'trust', u'chase', u'rent'] [u'gilchrist', u'say', u'england', u'jone'] [u'rat', u'remain'] [u'iraq', u'eas', u'secur', u'poll'] [u'iraqi', u'presid', u'fight', u'demand', u'pullout'] [u'kelli', u'defend', u'govt', u'withhold', u'sugar', u'fund'] [u'kelli', u'fast', u'track', u'elect', u'fund', u'request'] [u'knight', u'contest', u'dali', u'seat'] [u'labor', u'say', u'cartel', u'crackdown', u'overdu'] [u'landhold', u'urg', u'alert', u'burn'] [u'lara', u'tip', u'pakistan', u'beat', u'australia'] [u'larger', u'budget', u'surplus', u'forecast'] [u'lawyer', u'ask', u'client', u'wear', u'civilian', u'cloth'] [u'lightn', u'confid', u'flame'] [u'local', u'snap', u'broom', u'land', u'releas'] [u'lonard', u'share', u'lead', u'heineken'] [u'accus', u'make', u'fals', u'polic', u'report'] [u'front', u'court', u'bushfir'] [u'come', u'arsenal'] [u'maritim', u'museum', u'aim', u'return', u'visit'] [u'matilda', u'thrash', u'russia', u'lose', u'china'] [u'mayor', u'beat', u'river', u'develop'] [u'melbourn', u'shiver', u'temperatur', u'plung'] [u'microsoft', u'enter', u'search', u'engin', u'battl'] [u'ministeri', u'advic', u'withhold', u'rort', u'inquiri'] [u'minist', u'reveal', u'drop', u'abort'] [u'minist', u'talk', u'nativ', u'titl', u'agreement'] [u'miss', u'plane', u'wilder'] [u'miss', u'yacht'] [u'hear', u'caravan', u'park', u'concern'] [u'multicultur', u'festiv', u'spread', u'suburb'] [u'murali', u'injuri', u'think'] [u'nation', u'seek', u'high', u'school', u'driver', u'train'] [u'nepales', u'rebel', u'strike', u'king', u'assum'] [u'nepal', u'king', u'unveil', u'emerg', u'cabinet'] [u'newcastl', u'quarantin', u'manag', u'win', u'award'] [u'drug', u'confirm', u'sport', u'worst', u'fear'] [u'ngarkat', u'control'] [u'nightclub', u'tripl', u'murder', u'link', u'clash'] [u'sight', u'bun'] [u'sight', u'rescu', u'chopper'] [u'need', u'chang', u'abort', u'law', u'carr', u'say'] [u'resolut', u'taxi', u'centr', u'disput'] [u'overhaul', u'pain', u'manag', u'servic'] [u'review', u'petrol', u'price'] [u'announc', u'schedul', u'tsunami', u'delay'] [u'open', u'kill', u'duck', u'cull'] [u'firm', u'continu', u'multi', u'million', u'dollar', u'deal'] [u'opposit', u'highlight', u'legal', u'cost', u'blowout'] [u'opposit', u'question', u'poki', u'plan', u'job', u'impact'] [u'paedophil', u'protest', u'spark', u'polit'] [u'pentagon', u'want', u'bunker', u'buster', u'fund'] [u'perth', u'bushfir', u'contain'] [u'petit', u'seek', u'vietnam', u'memori', u'wall'] [u'phonak', u'allow', u'cycl', u'tour'] [u'pike', u'ask', u'sale', u'hospit', u'explain'] [u'pike', u'hear', u'hospit', u'concern', u'hand'] [u'pirat', u'road', u'spot'] [u'plane', u'land', u'safe', u'dump', u'fuel'] [u'plan', u'continu', u'tamworth', u'centr'] [u'player', u'donat', u'cash', u'broadbridg', u'memori'] [u'pledg', u'support', u'aceh'] [u'touch', u'aceh'] [u'polic', u'hunt', u'conveni', u'store', u'bandit'] [u'polic', u'investig', u'gordon', u'estat', u'child', u'attack'] [u'polic', u'shoot', u'woman'] [u'polic', u'search', u'miss', u'surfer'] [u'polic', u'station', u'cell', u'inquest', u'hear', u'evid'] [u'polic', u'uncov', u'bunker', u'hydropon'] [u'polic', u'identifi', u'pedestrian', u'victim'] [u'polli', u'damag', u'hand'] [u'pope', u'stabl', u'condit'] [u'pope', u'health', u'caus', u'alarm', u'say', u'vatican'] [u'pope', u'take', u'hospit', u'vatican', u'say'] [u'power', u'home'] [u'prawn', u'stock', u'spotlight'] [u'profit', u'report', u'push', u'wall', u'higher'] [u'proud', u'iraqi', u'get', u'elect', u'spirit'] [u'consid', u'tighter', u'paedophil', u'control'] [u'medic', u'team', u'arriv', u'home', u'indonesia'] [u'raaf', u'seek', u'foster', u'home', u'pup'] [u'rail', u'propos', u'boost', u'coal', u'industri'] [u'rain', u'boost', u'warragamba', u'level'] [u'rain', u'increas', u'fish', u'pest', u'threat'] [u'rain', u'put', u'dampen', u'heineken', u'classic'] [u'region', u'port', u'urg', u'effici', u'competit'] [u'region', u'rout', u'unlik', u'carrier'] [u'region', u'broadband', u'boost'] [u'reptil', u'seiz', u'golden', u'home'] [u'research', u'develop', u'biolog', u'pacemak'] [u'resid', u'creativ', u'develop'] [u'revamp', u'bridg', u'open'] [u'riverina', u'air', u'later', u'term', u'abort', u'worri'] [u'robinson', u'stand', u'patch', u'england'] [u'rumsfeld', u'consid', u'crime', u'prosecut', u'risk'] [u'warn', u'climat', u'chang', u'impact'] [u'schizophrenia', u'bipolar', u'drug', u'list'] [u'school', u'honour', u'iraq', u'plane', u'crash', u'victim'] [u'scrambl', u'world', u'ticket', u'begin'] [u'seller', u'charg', u'steal', u'good', u'ebay'] [u'begin', u'clean', u'wild', u'sydney', u'storm'] [u'clean', u'goulburn', u'valley', u'storm', u'damag'] [u'solomon', u'minist', u'describ', u'ramsi', u'overkil'] [u'marathon', u'legend', u'sign', u'sydney'] [u'south', u'pacif', u'island', u'report', u'volcan'] [u'specul', u'bacteria', u'death'] [u'spinal', u'cord', u'sexual', u'dysfunct'] [u'statist', u'highlight', u'high', u'indigen', u'sid', u'rate'] [u'stock', u'market', u'continu', u'record'] [u'storm', u'bring', u'damag', u'north', u'west', u'victoria'] [u'swiss', u'stargaz', u'spin', u'cosmic', u'monster'] [u'group', u'plead', u'child', u'abus', u'inquiri'] [u'test', u'chemic', u'spill'] [u'chaser', u'print'] [u'delay', u'mawson', u'station', u'suppli'] [u'thorp', u'unlik', u'nation', u'trial'] [u'thousand', u'power', u'storm', u'sweep', u'sydney'] [u'kill', u'iraq', u'insurg', u'attack'] [u'mark', u'townsvill', u'emerg', u'medicin'] [u'tour', u'oper', u'suspect', u'chemic', u'fish', u'kill'] [u'toyota', u'fli', u'steel', u'meet', u'order'] [u'treasur', u'threaten', u'cartel', u'jail', u'fin'] [u'treasur', u'consid', u'foe', u'tax', u'request'] [u'tsunami', u'prompt', u'visa', u'applic'] [u'turkish', u'runner', u'ayhan', u'dope'] [u'children', u'injur', u'smash'] [u'soldier', u'admit', u'ghraib', u'abus'] [u'choos', u'clinton', u'tsunami', u'envoy'] [u'colleg', u'form', u'wine', u'tourism', u'partnership'] [u'union', u'claim', u'teacher', u'oversuppli'] [u'union', u'outrag', u'meat', u'worker', u'limbo'] [u'host', u'natur', u'hazard', u'confer'] [u'tighten', u'ivori', u'coast', u'arm', u'embargo'] [u'hostag', u'doll'] [u'stand', u'firm', u'sudan', u'genocid', u'claim'] [u'vatican', u'delay', u'updat', u'pope', u'health'] [u'vendor', u'failur', u'say', u'properti', u'council'] [u'virgin', u'appoint', u'independ', u'director'] [u'govern', u'opposit', u'argu', u'drug', u'polici'] [u'govt', u'rego', u'fee'] [u'wallabi', u'reveal', u'novemb', u'tour', u'detail'] [u'veteran', u'label', u'flag', u'oppon', u'australian'] [u'water', u'qualiti', u'boost', u'bombala'] [u'western', u'power', u'expert', u'bushfir', u'inquest'] [u'night', u'central', u'victoria'] [u'forger', u'admit', u'fraud'] [u'winemak', u'payment', u'price'] [u'sharehold', u'ask', u'calm'] [u'woman', u'float', u'face', u'bondi', u'beach'] [u'woman', u'happi', u'suicid', u'inquest', u'hear'] [u'worker', u'train'] [u'worker', u'prais', u'fibreboard', u'plant', u'commit'] [u'world', u'potenti', u'bush', u'tucker', u'moot', u'alic'] [u'xstrata'] [u'power', u'melbourn'] [u'adelaid', u'rememb', u'late', u'chairman'] [u'airport', u'effici', u'manag', u'scheme'] [u'rat', u'hospit', u'staff', u'higher', u'build', u'woe'] [u'analyst', u'tinto', u'result'] [u'anim', u'clue', u'weather', u'watcher', u'trend'] [u'farewel', u'longest', u'serv', u'board', u'member'] [u'australian', u'admit', u'own', u'drug', u'wit'] [u'australian', u'coach', u'thompson', u'moscow', u'concern'] [u'australian', u'fisher', u'offer', u'tsunami'] [u'australian', u'flag', u'high', u'launceston'] [u'australian', u'bodi', u'recov', u'plane', u'wreck'] [u'aust', u'student', u'sing', u'wonderwal', u'pope'] [u'author', u'accus', u'plagiaris', u'agatha', u'christi'] [u'gate', u'present', u'european', u'research', u'plan'] [u'blunkett', u'lover', u'give', u'birth', u'babi'] [u'brack', u'stand', u'rail', u'closur'] [u'brawl', u'spark', u'polic', u'better', u'plan'] [u'break', u'threaten', u'pool', u'futur'] [u'brother', u'escap', u'trial', u'gang', u'rape', u'case'] [u'build', u'approv', u'rebound'] [u'telstra', u'sale', u'profit', u'boost', u'rural', u'appeal'] [u'carr', u'promis', u'tattoo', u'traffic', u'chao'] [u'chechen', u'rebel', u'leader', u'order', u'ceas', u'websit'] [u'chelsea', u'strengthen', u'titl', u'stranglehold'] [u'face', u'pressur', u'divulg', u'nazi', u'tie'] [u'clemenc', u'suffer', u'prostat', u'cancer'] [u'club', u'employe', u'charg', u'gang', u'violenc'] [u'coalit', u'promis', u'canal', u'solv', u'water'] [u'coke', u'takeov'] [u'cold', u'snap', u'hit', u'western'] [u'compani', u'fire', u'worker', u'present'] [u'conflict', u'reason', u'give', u'high', u'fuel', u'price'] [u'consist', u'need', u'feder', u'offenc', u'group'] [u'corrigan', u'criticis', u'virgin', u'blue', u'strategi'] [u'costello', u'claim', u'oecd', u'report', u'back', u'govt', u'polici'] [u'councillor', u'want', u'surf', u'hous', u'demolish'] [u'council', u'meet', u'chang', u'pressur'] [u'council', u'releas', u'afford', u'hous', u'plan'] [u'council', u'investig', u'anim', u'welfar'] [u'criminalis', u'petrol', u'sniff', u'say', u'communiti', u'worker'] [u'cyclon', u'season', u'return', u'north', u'coast'] [u'doctor', u'return', u'tsunami', u'work'] [u'dog', u'urg', u'grab', u'chanc', u'lifetim'] [u'drug', u'seiz', u'polic', u'raid'] [u'elliott', u'file', u'bankruptci', u'paper'] [u'famili', u'regain', u'custodi', u'abandon'] [u'fatigu', u'airport', u'near', u'miss', u'report', u'find'] [u'ferri', u'servic', u'cancel', u'wild', u'storm'] [u'rebuff', u'claim', u'favour', u'ferrari'] [u'damag', u'canberra', u'hous'] [u'fish', u'kill', u'remain', u'mysteri'] [u'local', u'charg', u'child', u'porn'] [u'frog', u'genit', u'deem', u'okay', u'british'] [u'steam', u'ahead', u'alic', u'civic', u'centr'] [u'georgia', u'prime', u'minist', u'dead'] [u'german', u'bind', u'australia'] [u'german', u'presid', u'declar', u'nazi', u'shame'] [u'german', u'radar', u'polic', u'stump', u'park', u'ticket'] [u'golden', u'bear', u'jet', u'pokolbin', u'resort', u'talk'] [u'golden', u'bowerbird', u'risk', u'global', u'warm'] [u'googl', u'amazon', u'deliv', u'stellar', u'profit'] [u'govt', u'offer', u'help', u'boost', u'lake', u'wendoure'] [u'govt', u'put', u'littl', u'emphasi', u'environ'] [u'govt', u'urg', u'approv', u'rail', u'safeti', u'legisl'] [u'govt', u'clarifi', u'caravan', u'park', u'tenant', u'right'] [u'govt', u'urg', u'rethink', u'polic', u'legal', u'protect'] [u'govt', u'ignor', u'rural', u'need', u'cherri', u'warn'] [u'gunnedah', u'host', u'timber', u'talk'] [u'harbour', u'park', u'walkway', u'plan'] [u'hear', u'aircraft', u'explos', u'claim', u'adjourn'] [u'help', u'hand', u'offer', u'lift', u'tourism'] [u'henri', u'seek', u'black', u'tsunami', u'match'] [u'high', u'wind', u'bring', u'cool', u'chang'] [u'high', u'wind', u'predict', u'accompani', u'downpour'] [u'hill', u'dous', u'specul', u'warship', u'tender'] [u'hotel', u'project', u'get', u'preliminari', u'develop', u'permit'] [u'hunter', u'escap', u'worst', u'storm'] [u'worker', u'abl', u'appli', u'govt', u'help'] [u'discuss', u'throw'] [u'immelman', u'maintain', u'lead', u'heineken'] [u'indonesia', u'deni', u'strike', u'kill', u'alleg', u'bali'] [u'indonesian', u'aceh', u'conflict'] [u'intern', u'divis', u'cannabi', u'law'] [u'inzamam', u'play', u'final', u'error'] [u'iraqi', u'soldier', u'replac', u'mosul'] [u'withdraw', u'offer', u'destroy', u'weapon'] [u'jetstar', u'asia', u'await', u'approv', u'rout'] [u'justic', u'adjourn', u'transfer', u'baxter', u'detaine'] [u'juve', u'lead', u'slash', u'sampdoria', u'defeat'] [u'kalbarri', u'seek', u'power'] [u'kidnap', u'swedish', u'businessman', u'aliv'] [u'labor', u'flag', u'plan'] [u'langer', u'go', u'hayden'] [u'langer', u'nighter', u'redback'] [u'lonard', u'share', u'lead', u'heineken'] [u'macarthur', u'battl', u'marathon', u'attempt'] [u'madrid', u'stop', u'olymp', u'inspector'] [u'magistr', u'dismiss', u'school', u'stab', u'charg'] [u'malle', u'farmer', u'financi', u'woe'] [u'fin', u'child', u'porn'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'face', u'court', u'carpark', u'accid'] [u'court', u'sheep', u'duf'] [u'maoist', u'tell', u'negoti', u'risk', u'altern', u'step'] [u'market', u'mute', u'rat', u'rise'] [u'master', u'builder', u'play', u'approv', u'figur'] [u'mayor', u'councillor', u'review', u'plan'] [u'melbourn', u'weather', u'eas'] [u'middl', u'east', u'peac', u'sight', u'bush'] [u'mini', u'crash', u'land', u'hospit'] [u'mitsubishi', u'sale', u'profit', u'record', u'strong'] [u'back', u'justic', u'complex', u'return', u'work'] [u'monsoon', u'trough', u'strengthen'] [u'time', u'comment', u'wind', u'farm', u'rezon'] [u'unhappi', u'drought', u'snub'] [u'want', u'port', u'hedland', u'council', u'administr'] [u'mundin', u'panamanian'] [u'napster', u'unveil', u'portabl', u'servic'] [u'nation', u'west', u'visit'] [u'trial', u'order', u'accus', u'prostitut', u'killer'] [u'appeal', u'plan', u'jail', u'driver'] [u'guarante', u'hayden', u'say', u'pont'] [u'probe', u'highburi', u'tunnel', u'bust'] [u'assess', u'storm', u'damag'] [u'govt', u'urg', u'reject', u'tugun', u'bypass', u'rout'] [u'join', u'german', u'backpack'] [u'polici', u'capitalis', u'cultur', u'divers'] [u'reject', u'abort', u'law', u'debat'] [u'nurs', u'shock', u'staff', u'status'] [u'host', u'lanka', u'april'] [u'oecd', u'report', u'expos', u'govern', u'fail'] [u'opposit', u'predict', u'spring', u'elect'] [u'optus', u'quarter', u'profit', u'increas'] [u'pair', u'rescu', u'swell', u'creek'] [u'pakistan', u'form', u'say', u'buchanan'] [u'paperboy', u'offload', u'gold', u'edit', u'copi'] [u'patterson', u'back', u'medicar', u'fund', u'abort'] [u'pietersen', u'hit', u'centuri', u'england', u'africa'] [u'pig', u'pirat'] [u'plan', u'maintain', u'therapi', u'pool', u'access'] [u'polic', u'follow', u'lead', u'rock', u'throw', u'case'] [u'polic', u'hunt', u'girl', u'attack'] [u'polic', u'investig', u'fatal', u'smash'] [u'polic', u'think', u'meatwork', u'blaze', u'insid'] [u'polic', u'probe', u'fatal', u'chopper', u'crash'] [u'pope', u'medic', u'test', u'satisfactori'] [u'port', u'test', u'youngster', u'intern', u'trial'] [u'port', u'cater', u'grow', u'demand'] [u'princ', u'charl', u'visit', u'australia'] [u'prison', u'donat', u'tsunami', u'appeal'] [u'privat', u'crisi', u'loom'] [u'public', u'ask', u'art', u'centr', u'plan'] [u'public', u'ask', u'help', u'cane', u'toad', u'popul'] [u'public', u'warn', u'wari', u'wasp'] [u'quarantin', u'requir', u'amend'] [u'rain', u'boost', u'level'] [u'rain', u'stretch', u'resourc'] [u'ranger', u'hope', u'catch', u'croc'] [u'rebel', u'ambush', u'kill', u'iraqi', u'soldier'] [u'record', u'breaker', u'riou', u'win', u'round', u'world', u'yacht', u'race'] [u'region', u'fund', u'inquiri', u'wit', u'oath'] [u'rescuer', u'tribespeopl', u'miss', u'tsunami'] [u'research', u'launch', u'dust', u'watch', u'websit'] [u'tinto', u'buyback', u'heighten', u'takeov', u'specul'] [u'tinto', u'share', u'uranium', u'iran'] [u'ripper', u'defend', u'brookton', u'time'] [u'robinson', u'trial', u'review', u'casino', u'record'] [u'rspca', u'rue', u'record'] [u'sand', u'sculptur', u'wash', u'away'] [u'school', u'bus', u'vandalis'] [u'second', u'person', u'die', u'fall', u'tree'] [u'serbian', u'crime', u'suspect', u'leav', u'hagu'] [u'servic', u'sector', u'growth', u'slow'] [u'crew', u'work', u'night', u'storm'] [u'flat', u'storm', u'lash', u'victoria'] [u'sharon', u'consid', u'goodwil', u'gestur', u'ahead', u'summit'] [u'shire', u'buy', u'land', u'futur'] [u'shire', u'look', u'catchment', u'author'] [u'shoaib', u'question', u'fit'] [u'lodg', u'approv', u'thredbo', u'disast', u'site'] [u'slow', u'rain', u'polic', u'warn'] [u'solomon', u'sack', u'confid', u'threat'] [u'solid', u'crew', u'rapper', u'face', u'murder', u'trial'] [u'south', u'east', u'cool', u'chang'] [u'south', u'consid', u'cross', u'town'] [u'sharehold', u'tip', u'accept', u'coke', u'offer'] [u'lanka', u'put', u'tsunami', u'babi', u'guard'] [u'sting', u'special', u'tsunami', u'victim'] [u'storm', u'damag', u'clean'] [u'storm', u'caus', u'widespread', u'blackout', u'tasmania'] [u'storm', u'leav', u'trail', u'damag', u'gippsland'] [u'storm', u'leav', u'widespread', u'damag', u'wake'] [u'strategi', u'launch', u'increas', u'wine', u'industri', u'revenu'] [u'strong', u'support', u'dalbi', u'pool', u'plan'] [u'student', u'honour', u'indigen', u'veteran'] [u'student', u'fractur', u'conservatorium'] [u'student', u'share', u'drug', u'experi', u'corbi', u'lawyer'] [u'sudan', u'plane', u'crash', u'kill'] [u'summer', u'snow', u'fall', u'thredbo'] [u'takeov', u'bid', u'drive', u'market', u'record'] [u'tamworth', u'airport', u'alert', u'plane', u'emerg'] [u'teenag', u'appear', u'court', u'babi', u'murder', u'charg'] [u'temperatur', u'plummet', u'england'] [u'thailand', u'elect', u'death', u'toll', u'rise'] [u'thorn', u'blue'] [u'tree', u'crash', u'bedroom', u'storm'] [u'tree', u'fall', u'classroom', u'injur'] [u'tribut', u'flow', u'lead', u'businessman'] [u'truck', u'crash', u'leav', u'driver', u'hang', u'waterway'] [u'trump', u'martha', u'stewart', u'your', u'hire'] [u'truss', u'support', u'call', u'agricultur', u'polici'] [u'tsunami', u'relief', u'troop', u'home', u'fair', u'soon'] [u'turin', u'winter', u'game', u'organis', u'short', u'cash'] [u'soldier', u'charg', u'iraqi', u'death'] [u'union', u'ask', u'blue', u'ribbon', u'reinstat', u'worker'] [u'hold', u'tropic', u'scienc', u'precinct', u'talk'] [u'judg', u'order', u'releas', u'guantanamo', u'record'] [u'tsunami', u'warn', u'need', u'repair', u'expert'] [u'vail', u'tip', u'coalit'] [u'victoria', u'quiet', u'child', u'killer', u'interrog'] [u'vietnam', u'appeal', u'help', u'bird', u'fight'] [u'violenc', u'rock', u'eastern', u'india', u'ahead', u'poll'] [u'liber', u'gag', u'canal', u'pledg'] [u'walter', u'construct', u'project', u'threat'] [u'waratah', u'releas', u'waugh', u'tsunami', u'fundrais'] [u'wild', u'weather', u'caus', u'landslip', u'flood'] [u'wild', u'weather', u'continu'] [u'windsor', u'accus', u'grant', u'inquiri', u'wit', u'lie'] [u'windsor', u'staffer', u'bribe', u'claim'] [u'wind', u'whip', u'sand', u'headland'] [u'wit', u'prais', u'apprehend', u'alleg'] [u'reject', u'latest', u'xstrata', u'takeov', u'offer'] [u'woman', u'horrifi', u'latest', u'child', u'abus', u'claim'] [u'work', u'harder', u'support', u'age', u'popul', u'oecd'] [u'world', u'vision', u'thank', u'australia', u'tsunami'] [u'yacht', u'theft', u'suspect', u'descript', u'releas'] [u'yacht', u'thief', u'experi', u'sailor', u'polic'] [u'young', u'sign', u'brumbi'] [u'youth', u'group', u'back', u'stronger', u'cannabi', u'law'] [u'zimbabw', u'halt', u'african', u'fact', u'find', u'mission'] [u'abbott', u'consid', u'kidney', u'donor', u'compo'] [u'abbott', u'want', u'abort', u'debat'] [u'busi', u'urg', u'bolster', u'recycl', u'effort'] [u'adelaid', u'clip', u'hawk'] [u'afghan', u'flight', u'miss', u'amid', u'winter', u'storm'] [u'chief', u'predict', u'touch', u'increas', u'help'] [u'airport', u'rule', u'rais', u'shop', u'centr', u'group'] [u'alcohol', u'dead', u'smoke', u'studi'] [u'annan', u'disciplin', u'food', u'program', u'head'] [u'australian', u'tsunami', u'death', u'confirm'] [u'armi', u'chopper', u'shoot', u'nepali', u'student', u'report'] [u'aust', u'pledg', u'volcano', u'victim'] [u'australia', u'lose', u'quick', u'wicket'] [u'australia', u'win', u'start', u'wellington', u'seven'] [u'australia', u'pakistan'] [u'australia', u'readi', u'strike', u'final'] [u'australia', u'steadi', u'inning', u'nervous', u'start'] [u'australia', u'play', u'indonesia', u'tsunami', u'chariti'] [u'australia', u'urg', u'nepal', u'return', u'democraci'] [u'australia', u'win', u'final'] [u'barca', u'close', u'championship'] [u'barnett', u'promis', u'drag', u'race', u'facil'] [u'beatti', u'back', u'coast', u'keep'] [u'beazley', u'call', u'anderson', u'face', u'bribe', u'inquiri'] [u'berni', u'lewiss', u'funer', u'hold', u'basketbal'] [u'briton', u'battl', u'save', u'round', u'world', u'dream'] [u'buckley', u'doubt', u'season'] [u'busi', u'urg', u'boost', u'apprentic', u'number'] [u'cambodian', u'opposit', u'leader', u'flee', u'countri'] [u'canal', u'plan', u'rais', u'nativ', u'titl', u'question'] [u'cancer', u'treatment', u'servic', u'coordin'] [u'candid', u'fear', u'canal', u'plan', u'threaten', u'work'] [u'candid', u'suggest', u'pipelin', u'eas', u'water', u'woe'] [u'carr', u'defend', u'sexual', u'assault', u'chang'] [u'central', u'australian', u'casual', u'approach'] [u'chelsea', u'host', u'sole', u'conqueror', u'manchest', u'citi'] [u'china', u'jail', u'journalist', u'watchdog'] [u'citrus', u'group', u'oppos', u'emerald', u'market'] [u'civic', u'leader', u'seek', u'restrict', u'telco', u'dig'] [u'class', u'move', u'tree', u'mishap'] [u'clydesdal', u'tough', u'armi', u'base', u'train'] [u'coastal', u'council', u'seek', u'chang', u'burden', u'fund'] [u'cold', u'weather', u'take', u'toll', u'stock'] [u'commonwealth', u'link', u'marijuana', u'law', u'organis'] [u'compani', u'collaps', u'prompt', u'site', u'picket'] [u'construct', u'firm', u'devaugh'] [u'contractor', u'like', u'lose', u'money', u'walter', u'demis'] [u'cooma', u'aid', u'sydney', u'storm', u'clean'] [u'corpor', u'australia', u'urg', u'maintain', u'tsunami'] [u'cosmonaut', u'wari', u'space', u'station', u'haven', u'plan'] [u'costello', u'wad', u'canal', u'debat'] [u'council', u'ask', u'subdivis'] [u'council', u'call', u'king', u'highway', u'safeti', u'action'] [u'council', u'defer', u'contract', u'decis'] [u'council', u'elect', u'wish', u'list'] [u'council', u'say', u'rail', u'agreement', u'loom'] [u'council', u'ongo', u'tsunami', u'donat'] [u'council', u'watch', u'park', u'meter', u'impact'] [u'countri', u'energi', u'review', u'imperi', u'lake', u'swim', u'plan'] [u'court', u'deni', u'rapist', u'question', u'victim'] [u'cyclon', u'sweep', u'past', u'american', u'samoa'] [u'cyclon', u'threat', u'loom', u'northern'] [u'davenport', u'encourag', u'hingi', u'comeback'] [u'deadlin', u'loom', u'council', u'speed', u'limit', u'decis'] [u'dengu', u'fever', u'hit', u'record', u'high', u'singapor'] [u'dfat', u'updat', u'nepal', u'travel', u'advic'] [u'doctor', u'urg', u'govt', u'regul', u'box'] [u'driver', u'die', u'highway', u'truck', u'crash'] [u'east', u'west', u'rail', u'line', u'track'] [u'econom', u'news', u'send', u'jitter', u'market'] [u'endang', u'wallabi', u'releas'] [u'england', u'trip', u'wale', u'tone', u'nation'] [u'eurobodalla', u'resid', u'help', u'water'] [u'fairymead', u'sugar', u'shut', u'door'] [u'fairi', u'penguin', u'wash', u'storm', u'wake'] [u'farmer', u'anxious', u'drought', u'uncertainti'] [u'fatal', u'crash', u'prompt', u'highway', u'fund', u'plea'] [u'liber', u'royal', u'snub'] [u'ferri', u'return', u'servic', u'high', u'sea', u'drama'] [u'victim', u'urg', u'watch', u'delay', u'stress'] [u'foster', u'parent', u'reconsid', u'role', u'associ', u'say'] [u'seal', u'popul', u'stabl'] [u'georgian', u'dead', u'leak'] [u'gippsland', u'road', u'crash', u'claim', u'live'] [u'gonzal', u'approv', u'attorney', u'general'] [u'govt', u'promis', u'walter', u'project', u'finish'] [u'govt', u'propos', u'screen', u'nightclub', u'patron'] [u'govt', u'help', u'shire', u'insur', u'shortfal'] [u'govt', u'urg', u'underground', u'rail', u'line'] [u'govt', u'urg', u'kidney', u'donor'] [u'habib', u'plan', u'tribun', u'fight', u'passport'] [u'hart', u'tame', u'wind', u'phoenix', u'open', u'lead'] [u'heater', u'warn', u'issu', u'mawson', u'hous'] [u'high', u'beef', u'price', u'predict'] [u'hospit', u'nurs', u'plan'] [u'hospit', u'upgrad', u'cancer', u'treatment', u'machin'] [u'target', u'fiction', u'claim', u'jackson', u'say'] [u'immelman', u'take', u'lead', u'royal', u'melbourn'] [u'immigr', u'dept', u'free', u'detain', u'australian'] [u'immigr', u'dept', u'swoop', u'swan', u'hill', u'worker'] [u'indonesia', u'revis', u'tsunami', u'death', u'toll'] [u'investig', u'iraq', u'hercul', u'crash', u'site', u'search'] [u'iran', u'attack', u'agenda', u'rice'] [u'iran', u'syria', u'deni', u'bush', u'accus'] [u'iraqi', u'villag', u'kill', u'insurg'] [u'irrig', u'deal', u'eas', u'perth', u'water', u'woe'] [u'isra', u'hurt', u'shoot', u'attack', u'armi', u'say'] [u'italian', u'journalist', u'abduct', u'baghdad'] [u'jandowa', u'goer'] [u'japan', u'charter', u'flight', u'touch', u'alic'] [u'japan', u'confirm', u'human', u'diseas', u'case'] [u'japanes', u'patient', u'test', u'diseas'] [u'judg', u'allow', u'appeal', u'guantanamo'] [u'lake', u'albert', u'fish', u'rescu'] [u'latham', u'turn', u'north', u'south', u'tsunami', u'match'] [u'littl', u'benefit', u'telstra', u'sale', u'foxtel', u'share'] [u'lonard', u'monti', u'share', u'heineken', u'lead'] [u'madrid', u'claim', u'inspect', u'boost'] [u'accus', u'kill', u'endang', u'shark', u'face'] [u'mandela', u'demand', u'freedom', u'slave', u'poverti'] [u'fin', u'sewag', u'dump'] [u'send', u'jail', u'kill'] [u'matur', u'cannabi', u'plant', u'nation', u'park'] [u'mayor', u'seek', u'catchment', u'author', u'levi'] [u'mayor', u'plan', u'china', u'trip', u'baffl'] [u'mckenzi', u'extend', u'waratah', u'contract'] [u'melbourn', u'flight', u'resum'] [u'melbourn', u'lightn', u'delay', u'flight'] [u'miner', u'collaps', u'spark', u'derbi', u'busi', u'fear'] [u'minist', u'defend', u'armi', u'base', u'bottl', u'shop'] [u'minist', u'reject', u'council', u'sack', u'call'] [u'minist', u'decid', u'evan', u'shire', u'asset'] [u'minist', u'green', u'snub'] [u'miss', u'matter', u'question', u'whim'] [u'monti', u'catch', u'royal', u'melbourn'] [u'larcom', u'hear', u'plan', u'huge', u'water', u'rat', u'rise'] [u'irrig', u'suspend', u'peak'] [u'york', u'factori', u'studio', u'close'] [u'rise', u'dairi', u'farmer'] [u'sign', u'miss', u'afghan', u'plane'] [u'riverina', u'farmer', u'share', u'drought'] [u'trial', u'light', u'lismor'] [u'opposit', u'leader', u'step'] [u'nurs', u'stand', u'elect', u'candid'] [u'nurs', u'home', u'resid', u'evacu', u'leak'] [u'olymp', u'contractor', u'fear', u'financi', u'slump'] [u'opposit', u'question', u'judiciari', u'appoint'] [u'opposit', u'urg', u'beatti', u'probe', u'staff', u'transfer'] [u'oversea', u'worker', u'fill', u'farm', u'job'] [u'pakistan', u'want', u'malik', u'clear', u'medic', u'ground'] [u'palm', u'await', u'coron', u'inquest', u'visit'] [u'parmalat', u'report', u'profit', u'hike'] [u'patriot', u'passer', u'brink', u'super', u'bowl', u'histori'] [u'perth', u'investor', u'push', u'properti', u'demand'] [u'pitcairn', u'challeng', u'crime', u'convict'] [u'plan', u'afoot', u'dunnart', u'icon', u'status'] [u'polic', u'consid', u'industri', u'unrest', u'staff', u'drain'] [u'polic', u'fall', u'tree', u'victim'] [u'polic', u'probe', u'girl', u'death', u'childcar', u'centr'] [u'polic', u'crack', u'yobbo'] [u'pope', u'appear', u'mend'] [u'pope', u'improv', u'eat', u'regular', u'vatican'] [u'posti', u'award', u'botch', u'inject'] [u'pottharst', u'consid', u'coach', u'futur'] [u'premier', u'consid', u'paedophil', u'hous', u'issu'] [u'prescript', u'drug', u'error', u'hospitalis', u'thousand'] [u'prison', u'quiz', u'unsolv', u'murder', u'canberra'] [u'prison', u'farm', u'stakehold', u'meet'] [u'propos', u'rape', u'retrial', u'evid', u'chang', u'flaw'] [u'public', u'divid', u'broule', u'pathway', u'plan'] [u'public', u'urg', u'avoid', u'beach', u'downpour'] [u'rain', u'take', u'toll', u'south', u'east', u'grapegrow'] [u'ramsay', u'health', u'buy', u'gippsland', u'age', u'care', u'home'] [u'ranger', u'oper', u'face', u'charg'] [u'robinson', u'guilti', u'fraud'] [u'rescu', u'packag', u'fail', u'stop', u'urologist', u'resign'] [u'retail', u'spend', u'weak', u'surpris', u'economist'] [u'rice', u'blair', u'discuss', u'middl', u'east', u'issu'] [u'road', u'worker', u'wipe', u'rare', u'wildflow'] [u'roar', u'intent', u'leagu', u'success'] [u'robben', u'scare', u'chelsea'] [u'robinson', u'fraud', u'trial', u'juri', u'retir'] [u'robinson', u'trial', u'juri', u'seek', u'redirect'] [u'rumsfeld', u'offer', u'resign', u'ghraib'] [u'rumsfeld', u'prais', u'iraqi', u'secur', u'forc'] [u'school', u'uni', u'rank', u'femal', u'friend', u'stake'] [u'remind', u'public', u'storm', u'plan'] [u'assault', u'task', u'forc', u'tour', u'north'] [u'worker', u'reinstat', u'strike', u'threat'] [u'small', u'tribut', u'pay', u'larger', u'life', u'rocker', u'kiss'] [u'spread', u'candid', u'council', u'spot'] [u'spud', u'attack', u'spark', u'polic', u'warn'] [u'lanka', u'free', u'prison', u'celebr', u'independ'] [u'lankan', u'rebel', u'free', u'child', u'soldier'] [u'stock', u'market', u'end', u'week', u'high'] [u'storm', u'clean', u'cost', u'insur'] [u'studi', u'say', u'blue', u'mountain', u'highway', u'bypass', u'viabl'] [u'studi', u'consid', u'coal', u'seam', u'plan'] [u'surviv', u'rat', u'improv', u'victorian', u'cancer'] [u'sydney', u'water', u'restrict', u'stay'] [u'tasmanian', u'devil', u'move', u'secur', u'area'] [u'tasmanian', u'premier', u'keep', u'royal', u'debat'] [u'storm', u'damag', u'million'] [u'teen', u'court', u'polic', u'pursuit'] [u'telecom', u'profit', u'exceed', u'expect'] [u'tennant', u'creek', u'face', u'long', u'wait', u'dengu'] [u'test', u'time', u'turin', u'year'] [u'lodg', u'hous', u'beazley'] [u'time', u'shift', u'save', u'daylight', u'democrat'] [u'tini', u'anim', u'spi', u'deep', u'trench'] [u'toowoomba', u'discount', u'store', u'lose', u'trade'] [u'treasur', u'back', u'longer', u'trade', u'hour'] [u'uefa', u'want', u'homegrown', u'player', u'quota'] [u'militari', u'open', u'mind', u'alien', u'visit'] [u'union', u'air', u'build', u'site', u'asbesto', u'worri'] [u'union', u'worri', u'colleg', u'bleed', u'exist'] [u'shelter', u'thousand', u'flee', u'congo', u'violenc'] [u'agenc', u'drive', u'publish', u'research', u'onlin'] [u'firm', u'process', u'major', u'bank', u'chequ'] [u'maintain', u'troop', u'number', u'iraq'] [u'releas', u'guantanamo', u'detaine'] [u'halt', u'adopt', u'sniper', u'fundrais'] [u'victorian', u'savag', u'storm'] [u'victorian', u'storm', u'damag', u'tip'] [u'water', u'boost', u'help', u'power', u'station', u'longev'] [u'waterg', u'journalist', u'note', u'public'] [u'woman', u'kill', u'prime', u'mover', u'accid'] [u'worker', u'continu', u'strike', u'dismiss'] [u'worker', u'happi', u'hous'] [u'nurs', u'miss', u'place', u'labor', u'say'] [u'wreck', u'barg', u'hous', u'tsunami', u'memori'] [u'writer', u'reject', u'plagiar', u'claim'] [u'dead', u'iraq', u'violenc'] [u'improv', u'phone'] [u'actor', u'ossi', u'davi', u'die'] [u'albani', u'lobbi', u'iron', u'worker'] [u'alleg', u'bash', u'wit', u'action'] [u'artist', u'chip', u'tsunami', u'relief'] [u'australian', u'baxter', u'detent', u'mental', u'health', u'care'] [u'beatti', u'urg', u'palm', u'calm'] [u'beckenbau', u'call', u'life', u'match', u'fix'] [u'beckham', u'want', u'career', u'real', u'madrid'] [u'behead', u'slow', u'iraqi', u'secur', u'forc', u'build'] [u'bite', u'incid', u'mar', u'seven'] [u'blackburn', u'chelsea', u'charg', u'ewood', u'park', u'brawl'] [u'british', u'newspap', u'group', u'journalist', u'job'] [u'chopper', u'rescu', u'camper', u'strand', u'flood'] [u'concert', u'open', u'sydney', u'mardi', u'gras'] [u'climb', u'langkawi', u'lead'] [u'decis', u'loom', u'gunn', u'pulp'] [u'doctor', u'highlight', u'rural', u'cancer', u'death', u'rate'] [u'rise', u'despit', u'weak', u'job', u'report'] [u'pressur', u'govt', u'assault', u'trial', u'law'] [u'driver', u'govt', u'meet', u'westbus', u'futur'] [u'drought', u'fund', u'decis', u'disappoint', u'farmer'] [u'drug', u'overdos', u'drop'] [u'dyson', u'join', u'royal', u'melbourn', u'lead'] [u'endang', u'cheetah', u'cub', u'debut'] [u'evolutionari', u'biologist', u'ernst', u'mayr', u'die'] [u'gadaffi', u'mix', u'footbal', u'polit', u'australia'] [u'gallop', u'want', u'power', u'imprison', u'paedophil', u'life'] [u'game', u'villag', u'decis', u'anger', u'resid', u'group'] [u'gilchrist', u'throw', u'support', u'dump', u'hayden'] [u'govt', u'look', u'promot', u'sport', u'indigen'] [u'govt', u'make', u'habib', u'terror', u'claim', u'report'] [u'green', u'minist', u'devil', u'list', u'deadlin'] [u'green', u'werriwa', u'candid'] [u'hall', u'chase', u'reveng', u'paralymp', u'defeat'] [u'harri', u'potter', u'battl', u'great', u'internet', u'scam'] [u'hayden', u'vow', u'comeback', u'cost'] [u'chang', u'chuck', u'law'] [u'indonesia', u'deliv', u'food', u'tsunami', u'area'] [u'intern', u'probe', u'clear', u'polic', u'assault', u'claim'] [u'iraq', u'demand', u'justic', u'wake', u'food', u'report'] [u'isra', u'embassi', u'quiet', u'diplomat', u'exit'] [u'itali', u'work', u'secur', u'releas', u'iraq', u'report'] [u'jacko', u'court', u'appear', u'cancel'] [u'kenyan', u'cricket', u'screech', u'halt', u'bank'] [u'labor', u'demand', u'brief', u'diplomat', u'expuls'] [u'latrob', u'ask', u'storm', u'clean', u'assist'] [u'mcgrath', u'stun', u'pakistan'] [u'lennon', u'surpris', u'lack', u'state', u'care', u'abus', u'claim'] [u'charg', u'polic', u'assault'] [u'mandela', u'tell', u'rich', u'nation', u'cancel', u'african', u'debt'] [u'mickelson', u'shoot', u'grab', u'share', u'lead'] [u'minist', u'blame', u'labor', u'campaign', u'drop'] [u'nato', u'suspend', u'search', u'miss', u'afghan', u'airlin'] [u'nigerian', u'upset', u'aussi', u'sprinter'] [u'nigerian', u'upset', u'aussi', u'sprint', u'hop'] [u'japan', u'suicid', u'pact'] [u'iraqi', u'kill', u'attack', u'north', u'baghdad'] [u'survivor', u'afghan', u'plane', u'wreckag'] [u'opposit', u'call', u'court', u'room', u'camera'] [u'opposit', u'prepar', u'replac', u'leader'] [u'ohern', u'surg', u'heineken', u'lead'] [u'opposit', u'seek', u'assault', u'trial', u'law', u'chang'] [u'outrag', u'mount', u'detent', u'centr', u'case'] [u'paedophil', u'make', u'stalk', u'complaint'] [u'pakistan', u'razzaq', u'clear', u'dissent'] [u'polic', u'wit', u'violent', u'disput'] [u'polic', u'concern', u'miss', u'woman'] [u'polic', u'discov', u'marijuana', u'crop', u'near'] [u'pope', u'deliv', u'sunday', u'bless'] [u'power', u'restor', u'enter'] [u'quinlan', u'confid', u'convent', u'centr', u'facelift'] [u'ranger', u'wnbl', u'final'] [u'record', u'number', u'candid', u'enter', u'poll'] [u'redback', u'bite', u'warrior'] [u'rhino', u'hold', u'bulldog'] [u'rhino', u'lead', u'bulldog'] [u'rice', u'press', u'russia', u'iran', u'nuke', u'fuel', u'deal'] [u'rice', u'use', u'europ', u'trip', u'tough', u'iran'] [u'right', u'group', u'seek', u'urgent', u'immigr', u'centr', u'review'] [u'ripper', u'admit', u'power', u'blackout', u'unaccept'] [u'robinson', u'welcom', u'legal', u'cost', u'claim'] [u'search', u'resum', u'miss', u'timber', u'creek'] [u'search', u'resum', u'miss', u'afghan', u'plane'] [u'secur', u'tight', u'lord', u'misrul', u'kick'] [u'shiit', u'coalit', u'maintain', u'lead', u'iraqi'] [u'smith', u'hit', u'maiden', u'south', u'africa'] [u'sport', u'beat', u'prejudic', u'farmer'] [u'springborg', u'pin', u'leadership', u'parti', u'merger'] [u'lanka', u'tsunami', u'survivor', u'protest', u'corrupt'] [u'stanhop', u'order', u'nurs', u'home', u'abus', u'claim', u'probe'] [u'orchard', u'clear', u'citrus', u'canker'] [u'teen', u'fin', u'late', u'night', u'cooki', u'drop'] [u'thailand', u'prepar', u'poll'] [u'thai', u'prime', u'minist', u'tip', u'second', u'term'] [u'tiger', u'blue', u'clash', u'abandon'] [u'time', u'warner', u'profit', u'rise', u'high', u'speed', u'subscrib'] [u'timoshenko', u'confirm', u'ukrain'] [u'toxic', u'detect', u'helen', u'river', u'catchment'] [u'tram', u'accid', u'talk', u'phone', u'polic'] [u'tribut', u'flow', u'german', u'boxer', u'defi', u'hitler'] [u'troop', u'wreckag', u'miss', u'afghan', u'plane'] [u'troop', u'search', u'afghan', u'plane', u'crash', u'site'] [u'trump', u'case', u'cost', u'robinson'] [u'hospitalis', u'wanniassa'] [u'kill', u'adelaid', u'final', u'hop'] [u'union', u'blame', u'hec', u'labor', u'slump'] [u'warn', u'guantanamo', u'worsen', u'terror'] [u'europ', u'fail', u'agre', u'develop'] [u'govt', u'lose', u'tobacco', u'cash'] [u'vanston', u'defend', u'handl', u'detain', u'woman'] [u'water', u'miser', u'tap', u'govt', u'fund'] [u'weather', u'caus', u'havoc', u'farmer'] [u'westbus', u'driver', u'fear', u'job'] [u'worri', u'davenport', u'call', u'shorter', u'season'] [u'yemen', u'court', u'sentenc', u'limburg', u'bomb', u'leader', u'death'] [u'zidan', u'quit'] [u'afghan', u'plane', u'wreckag', u'fear', u'dead'] [u'african', u'leader', u'hold', u'rainforest', u'summit'] [u'african', u'nation', u'protect', u'congo', u'rainforest'] [u'africa', u'longest', u'serv', u'leader', u'die'] [u'age', u'hubbl', u'telescop', u'spark', u'debat'] [u'airport', u'recycl', u'advoc'] [u'star', u'dog', u'darwin'] [u'argentinian', u'player', u'ban', u'bite', u'seven'] [u'athlet', u'chief', u'probe', u'freeman', u'comeback', u'report'] [u'aussi', u'skier', u'make', u'histori', u'japan'] [u'australia', u'victori'] [u'australia', u'wrap', u'seri'] [u'australia', u'wrap', u'seri'] [u'associ', u'dismiss', u'concern', u'princ', u'shooter'] [u'beazley', u'accus', u'liber', u'desert', u'werriwa'] [u'bennif', u'ring', u'resal'] [u'best', u'itali', u'carneval'] [u'blanchett', u'fli', u'award'] [u'bodi', u'victoria', u'river'] [u'brown', u'win', u'langkawi', u'stage'] [u'bureaucraci', u'blossom', u'victoria'] [u'bushrang', u'crush', u'bull'] [u'bushrang', u'face', u'crunch', u'match'] [u'bush', u'tucker', u'group', u'move', u'closer', u'realiti'] [u'cabinet', u'boss', u'visit', u'australian', u'polic'] [u'phone', u'abduct', u'italian'] [u'cambodia', u'govt', u'tri', u'elimin', u'opposit'] [u'captain', u'marvel', u'keep', u'unit', u'titl', u'hunt'] [u'congo', u'call', u'airlift', u'rare', u'white', u'rhino'] [u'cook', u'island', u'evacu', u'super', u'cyclon', u'approach'] [u'cours', u'expand', u'jackaroo', u'jillaroo'] [u'cyclon', u'harvey', u'grow', u'gulf'] [u'davenport', u'sharapova', u'fight', u'final'] [u'deak', u'set', u'australian', u'record'] [u'discharg', u'pose', u'threat', u'govt', u'say'] [u'dozen', u'power', u'storm'] [u'egyptian', u'engin', u'kidnap', u'baghdad'] [u'energex', u'ergon', u'worker', u'meet', u'deal'] [u'environment', u'commission', u'need', u'support'] [u'timor', u'ask', u'germani', u'lobbi', u'canberra', u'deal'] [u'firefight', u'battl', u'blaze', u'ipswich', u'hospit'] [u'firefight', u'contain', u'ipswich', u'hospit', u'blaze'] [u'ghraib', u'guard', u'jail'] [u'premier', u'claim', u'unfair', u'jail'] [u'franc', u'scrape', u'lucki', u'brave', u'scot'] [u'french', u'worker', u'protest', u'labour', u'law'] [u'debt', u'pledg', u'fall', u'short', u'demand'] [u'govt', u'snub', u'anger', u'devil', u'expert'] [u'henson', u'hero', u'wale', u'beat', u'england'] [u'hous', u'bushfir', u'resist'] [u'howard', u'leav', u'door', u'open', u'abort', u'debat'] [u'howard', u'pleas', u'iraq', u'elect'] [u'howard', u'target', u'industri', u'relat'] [u'incat', u'worker', u'walk'] [u'inquiri', u'promis', u'detent', u'centr', u'case'] [u'investig', u'fatal', u'smash'] [u'judah', u'stop', u'spink', u'seiz', u'titl'] [u'juror', u'shouldnt', u'sentenc', u'lawyer', u'say'] [u'labor', u'wari', u'flag', u'workplac', u'chang'] [u'libya', u'snub', u'brisban', u'rock', u'missionari'] [u'lifesav', u'flag', u'fund', u'problem'] [u'local', u'govt', u'lobbi', u'share', u'feder', u'revenu'] [u'lovesick', u'diseas', u'expert', u'say'] [u'luxuri', u'car', u'accid', u'studi'] [u'lyle', u'melbourn'] [u'charg', u'booz', u'incid'] [u'charg', u'cannabi', u'haul'] [u'charg', u'child', u'porn'] [u'mango', u'industri', u'unsustain', u'grower', u'group', u'say'] [u'train'] [u'kill', u'strike', u'train'] [u'mickelson', u'take', u'control', u'phoenix', u'open'] [u'mobil', u'phone', u'group', u'launch', u'anti', u'bulli'] [u'violenc', u'iraq', u'vote', u'count', u'continu'] [u'motorcyclist', u'kill', u'road', u'smash'] [u'secur', u'boost', u'expert', u'say'] [u'namadgi', u'road', u'close', u'year', u'bushfir'] [u'crackdown', u'cannabi', u'grower'] [u'move', u'combat', u'skill', u'worker', u'shortag'] [u'nurs', u'group', u'concern', u'agenc', u'chang'] [u'ohern', u'bullish', u'ahead', u'final', u'round'] [u'opposit', u'allud', u'plan'] [u'paedophil', u'move', u'away', u'school'] [u'pakistan', u'troubl', u'australia'] [u'palestinian', u'detain', u'milit', u'chief', u'gaza'] [u'parri', u'win', u'royal', u'melbourn', u'dogfight'] [u'wont', u'commit', u'canal'] [u'polic', u'launch', u'public', u'hous', u'crackdown'] [u'poll', u'open', u'thailand'] [u'pope', u'deliv', u'bless', u'hospit', u'window'] [u'power', u'firm', u'deni', u'respons', u'blackout'] [u'power', u'restor', u'continu'] [u'random', u'drug', u'test', u'plan', u'school'] [u'rann', u'urg', u'chang', u'prevent', u'detent', u'mistak'] [u'real', u'estat', u'agent', u'fin', u'auction', u'breach'] [u'real', u'hors', u'race'] [u'red', u'romp', u'tah'] [u'rice', u'press', u'russia', u'democrat', u'reform', u'prais'] [u'rice', u'readi', u'middl', u'east', u'tour'] [u'rice', u'scold', u'russia'] [u'secreci', u'blame', u'raus', u'ordeal'] [u'sharapova', u'dash', u'davenport', u'record', u'tokyo'] [u'sixer', u'fight', u'edg', u'taipan'] [u'sudan', u'agre', u'stop', u'antonov', u'flight', u'darfur'] [u'super', u'bowl', u'citi', u'struggl', u'deal', u'invad'] [u'taliban', u'deni', u'shoot', u'afghan', u'plane'] [u'thai', u'leader', u'poll'] [u'thai', u'head', u'landslid', u'victori'] [u'thai', u'poll', u'close', u'tip', u'thaksin'] [u'thaksin', u'claim', u'victori', u'thai', u'poll'] [u'thaksin', u'expect', u'domin', u'thai', u'elect'] [u'tiger', u'croc', u'notch', u'win'] [u'titl', u'race', u'throw', u'wide', u'open', u'juve', u'stumbl'] [u'togo', u'urg', u'elect', u'leader', u'presid'] [u'tsunami', u'death', u'toll', u'rise'] [u'coupl', u'arrest', u'child', u'tortur'] [u'drop', u'charg', u'ghraib', u'accus'] [u'vanston', u'seek', u'brief', u'detent', u'centr', u'case'] [u'weather', u'hamper', u'replica', u'whale', u'boat', u'departur'] [u'young', u'auction', u'talk', u'final'] [u'dead', u'iraq', u'violenc', u'north', u'south'] [u'accus', u'murder', u'threaten', u'kill', u'wit'] [u'aceh', u'relief', u'effort', u'hing', u'open', u'border', u'ausaid'] [u'govt', u'urg', u'reject', u'coron', u'appeal'] [u'adler', u'face', u'crimin', u'case'] [u'administr', u'sell', u'troubl', u'compani'] [u'alcoa', u'continu', u'investig'] [u'anim', u'right', u'campaign', u'target', u'sheep', u'shipment'] [u'arm', u'bosnian', u'lead', u'polic', u'countri'] [u'arrog', u'stall', u'action', u'case'] [u'atletico', u'shock', u'barca', u'throw', u'titl', u'race', u'open'] [u'aussi', u'super', u'bowl', u'come', u'adelaid'] [u'australia', u'welcom', u'farm', u'subsidi', u'cut'] [u'discuss', u'industri', u'relat', u'concern'] [u'ballarat', u'ceremoni', u'honour', u'pow'] [u'barnett', u'defend', u'canal', u'plan'] [u'barnett', u'outlin', u'vision'] [u'bassett', u'basin', u'face', u'green', u'assess'] [u'beatti', u'apologis', u'detain', u'australian'] [u'beatti', u'urg', u'patienc', u'coron', u'probe', u'death'] [u'blue', u'nativ', u'titl', u'claim', u'success'] [u'blue', u'look', u'gun', u'stop', u'bushrang'] [u'bolton', u'socceroo'] [u'boogeyman', u'climb', u'offic'] [u'bookmak', u'inflat', u'odd', u'benefit', u'inquiri'] [u'surviv', u'waterfal', u'mishap'] [u'britain', u'plan', u'chang', u'immigr', u'polici'] [u'british', u'make', u'guantanamo', u'abus', u'claim'] [u'broom', u'park', u'join', u'quoll', u'rescu', u'effort'] [u'brothel', u'madam', u'kalgoorli', u'candid'] [u'brown', u'streak', u'continu', u'tour', u'langkawi'] [u'buchanan', u'call', u'rethink'] [u'bundaberg', u'council', u'refus', u'polic', u'smoke', u'law'] [u'burk', u'return', u'opposit', u'leader'] [u'busker', u'festiv', u'number', u'year'] [u'servic', u'demis', u'end', u'free', u'transport', u'plan'] [u'canal', u'compani', u'assess', u'environment', u'issu'] [u'cancer', u'patient', u'travel', u'review', u'hold'] [u'cane', u'farmer', u'face', u'exit', u'grant', u'difficulti'] [u'carnley', u'maintain', u'women', u'bishop', u'stanc'] [u'catchment', u'author', u'focus', u'wild', u'weather'] [u'centrelink', u'fraud', u'earn', u'woman', u'good', u'behaviour', u'bond'] [u'chelsea', u'lose', u'fourth', u'point', u'citi'] [u'chicken', u'farm', u'bring', u'job', u'wellington'] [u'chines', u'scientist', u'develop', u'bird', u'vaccin'] [u'clean', u'teeth', u'link', u'slender', u'bodi'] [u'comet', u'smart', u'storm', u'thrash'] [u'confus', u'surround', u'spanish', u'consul', u'hostag', u'drama'] [u'cook', u'island', u'escap', u'worst', u'cyclon', u'meena'] [u'cool', u'sven', u'tell', u'rooney'] [u'costello', u'play', u'likelihood', u'cut'] [u'council', u'act', u'backyard', u'burial', u'law'] [u'council', u'highlight', u'water', u'bill', u'mistak'] [u'councillor', u'restrain', u'mayor'] [u'council', u'push', u'higher', u'speed', u'limit'] [u'council', u'consid', u'expo', u'boost', u'bush', u'appeal'] [u'council', u'stand', u'saleyard', u'sale'] [u'council', u'celebr', u'antarct', u'adventur'] [u'council', u'hold', u'meet', u'gordon', u'estat', u'woe'] [u'council', u'warn', u'boat', u'ramp', u'danger'] [u'crespo', u'clincher', u'put', u'heat', u'juve'] [u'cyclon', u'harvey'] [u'dairi', u'farmer', u'feel', u'drought', u'impact'] [u'deadlin', u'loom', u'drought', u'applic'] [u'deadlin', u'pass', u'elect', u'candid'] [u'dentist', u'urg', u'mudge', u'fluorid', u'water'] [u'dept', u'hop', u'fish', u'pest', u'plan', u'good', u'result'] [u'dept', u'rethink', u'south', u'hedland', u'public', u'hous'] [u'doubt', u'remain', u'launceston', u'societi'] [u'eighteen', u'spanish', u'teen', u'poison', u'accid'] [u'engin', u'demand', u'onlin', u'rise'] [u'eriksson', u'call', u'brown', u'england', u'squad'] [u'expert', u'enter', u'wine'] [u'farm', u'group', u'bolster', u'eyr', u'peninsula', u'presenc'] [u'fatah', u'call', u'ceas'] [u'father', u'european', u'space', u'program', u'die', u'age'] [u'feasibl', u'studi', u'hydro', u'power', u'plant'] [u'feder', u'govt', u'drink', u'power', u'beatti', u'say'] [u'truck', u'pizza', u'alarm', u'sound'] [u'longreach', u'court', u'rape', u'charg'] [u'presid', u'pitch', u'tsunami', u'relief'] [u'foster', u'owner', u'cliff', u'ordeal'] [u'gallop', u'launch', u'kimberley', u'cruis', u'ship'] [u'gallop', u'promis', u'comput', u'school'] [u'pipelin', u'potenti', u'strong'] [u'gaudio', u'overcom', u'gonzalez', u'chile', u'final'] [u'german', u'ministeri', u'visit', u'highlight', u'environment'] [u'gibb', u'centuri', u'set', u'target', u'england'] [u'global', u'demand', u'grow', u'indigen'] [u'golf', u'club', u'work', u'attack', u'arm', u'robberi'] [u'govt', u'keep', u'close', u'bali', u'drug', u'trial'] [u'govt', u'reject', u'intens', u'care', u'claim'] [u'govt', u'rule', u'random', u'school', u'drug', u'test'] [u'govt', u'port', u'macquari', u'hospit', u'deal'] [u'govt', u'reveal', u'educ', u'plan'] [u'govt', u'hospit', u'wait', u'list'] [u'govt', u'urg', u'follow', u'water', u'test', u'result'] [u'green', u'highlight', u'albani', u'mine', u'worri'] [u'grower', u'decid', u'citrus', u'canker', u'protest'] [u'gulf', u'coast', u'brace', u'cyclon', u'wind'] [u'habib', u'charg'] [u'hayden', u'kasper', u'turn', u'bull'] [u'health', u'dept', u'help', u'seek', u'hospit', u'nurs'] [u'health', u'scare', u'close', u'berri', u'pool'] [u'henri', u'walker', u'eltin', u'chairman', u'die', u'crash'] [u'high', u'tide', u'warn', u'harvey', u'near', u'northern', u'coast'] [u'histor', u'hospit', u'build', u'destroy'] [u'home', u'cigar', u'tell', u'smoker', u'butt'] [u'hull', u'seek', u'simpler', u'drought', u'review', u'process'] [u'icebreak', u'return', u'fail', u'resuppli', u'mission'] [u'indonesia', u'commit', u'account', u'tsunami'] [u'indonesian', u'worker', u'fin', u'talk', u'proper'] [u'inquest', u'look', u'gambier', u'asthma', u'death'] [u'rat', u'hing', u'law', u'costello'] [u'iran', u'reject', u'critic'] [u'iran', u'stand', u'firm', u'atom', u'program'] [u'iraqi', u'shia', u'leader', u'demand', u'sharia'] [u'hear', u'ambul', u'staff', u'issu'] [u'job', u'drop'] [u'kersten', u'claim', u'time', u'trial', u'victori'] [u'kersten', u'mear', u'claim', u'time', u'trial', u'victori'] [u'king', u'offer', u'nepales', u'rebel', u'uncondit', u'talk'] [u'knee', u'injuri', u'sidelin', u'eagl', u'rooki'] [u'labor', u'seek', u'judici', u'inquiri', u'case'] [u'laverton', u'pleas', u'prison', u'camp', u'approv'] [u'target', u'test', u'return'] [u'liverpool', u'rais', u'stake', u'gerrard'] [u'local', u'contractor', u'miss', u'school', u'revamp'] [u'lyle', u'gun', u'confirm', u'adelaid'] [u'macarthur', u'close', u'round', u'world', u'record'] [u'maliss', u'captur', u'elus', u'titl'] [u'charg', u'weapon', u'stash'] [u'fin', u'illeg', u'spud'] [u'man', u'bodi', u'recov', u'swell', u'river'] [u'face', u'charg', u'brawl'] [u'mcgauran', u'offic', u'ballarat'] [u'meet', u'focus', u'coast', u'transport'] [u'meet', u'focus', u'workplac', u'safeti', u'legisl'] [u'melbourn', u'storm', u'bring', u'comet'] [u'menz', u'return', u'galleri'] [u'mickelson', u'cruis', u'phoenix'] [u'mine', u'boost', u'geraldton', u'port', u'author'] [u'minist', u'ask', u'hospit', u'woe'] [u'minist', u'flag', u'move', u'standard', u'year', u'test'] [u'mourinho', u'pour', u'scorn', u'cole', u'inquiri'] [u'circul', u'abort', u'propos'] [u'look', u'expand', u'busi'] [u'nelson', u'accus', u'bulli', u'year', u'plan'] [u'nelson', u'educ', u'plan', u'unwork', u'say', u'labor'] [u'breed', u'crimin', u'spark', u'polic', u'review'] [u'nimmitabel', u'boost', u'visitor', u'number'] [u'sight', u'dairi', u'industri', u'woe'] [u'consid', u'challeng', u'govt', u'plan'] [u'ohern', u'look', u'europ', u'heartbreak', u'loss'] [u'orang', u'resign', u'amidst', u'corrupt', u'claim'] [u'peopl', u'face', u'drug', u'charg'] [u'pakistan', u'call', u'neutral', u'umpir'] [u'pastor', u'colleg', u'beat'] [u'patriot', u'titl', u'year'] [u'piallamor', u'subdivis', u'plan', u'draw', u'opposit'] [u'plan', u'continu', u'tarana', u'valley', u'natur', u'reserv'] [u'refus', u'apologis'] [u'polic', u'investig', u'break', u'habib', u'home'] [u'polic', u'probe', u'nightclub', u'slash'] [u'polic', u'probe', u'darl', u'down', u'crash'] [u'polic', u'unhappi', u'weekend', u'troublemak'] [u'polic', u'wait', u'question', u'road', u'racer'] [u'pope', u'improv', u'suffer', u'doctor'] [u'pope', u'hospit', u'stay', u'extend'] [u'prawn', u'fisher', u'beat', u'season'] [u'presid', u'order', u'probe', u'lanka', u'tsunami'] [u'priest', u'shortag', u'forc', u'merger', u'cathol', u'parish'] [u'probe', u'killer', u'violent', u'pic'] [u'psych', u'drug', u'trick', u'rat', u'cocain', u'addict'] [u'public', u'urg', u'flood', u'readi'] [u'public', u'urg', u'evid', u'race', u'inquiri'] [u'public', u'warn', u'penalti', u'break', u'ban'] [u'examin', u'challeng', u'feder', u'plan'] [u'find', u'nelson', u'year', u'plan', u'outdat'] [u'rann', u'bow', u'pressur', u'land'] [u'rat', u'rise', u'like', u'warn'] [u'case', u'highlight', u'neglect', u'mental', u'health'] [u'inquiri', u'public', u'labor'] [u'resid', u'batten', u'cyclon', u'harvey', u'approach'] [u'rice', u'begin', u'middl', u'east', u'peac', u'mission'] [u'rice', u'label', u'iran', u'obstacl', u'middl', u'east', u'peac'] [u'rice', u'meet', u'palestinian', u'leader'] [u'rice', u'urg', u'hard', u'decis', u'east', u'peac'] [u'roger', u'say', u'perth', u'interest', u'leagu'] [u'rural', u'resid', u'like', u'cervic'] [u'local', u'govt', u'group', u'seek', u'toxic', u'dump', u'talk'] [u'search', u'continu', u'riverina', u'bishop'] [u'seven', u'candid', u'nomin', u'geraldton'] [u'shark', u'sight', u'spark', u'swimmer', u'evacu'] [u'signal', u'boost', u'give', u'radio', u'station', u'edg'] [u'nation', u'grab', u'tens', u'open'] [u'south', u'east', u'jail', u'futur', u'undecid'] [u'spain', u'offer', u'illeg', u'migrant', u'amnesti'] [u'spanish', u'consul', u'surround', u'amid', u'sieg', u'fear'] [u'state', u'base', u'flexibl', u'opposit', u'say'] [u'sign', u'miss', u'uralla'] [u'strong', u'support', u'alcohol', u'manag', u'plan'] [u'superbowl', u'molecul', u'offer', u'size', u'advantag'] [u'surf', u'club', u'seek', u'fund', u'lifelin'] [u'swim', u'australia', u'reinstat', u'team', u'captain', u'role'] [u'teacher', u'mark', u'nelson', u'test', u'plan'] [u'telstra', u'news', u'corp', u'buoy', u'ord'] [u'tendulkar', u'sidelin', u'india', u'tune', u'pakistan'] [u'injur', u'drag', u'race', u'crash'] [u'thai', u'opposit', u'leader', u'resign'] [u'thirteen', u'kill', u'injur', u'pakistan', u'kite'] [u'thorp', u'hype', u'olymp', u'super', u'bowl'] [u'star', u'celt', u'doubl', u'dream', u'aliv'] [u'timor', u'bishop', u'oppos', u'crime', u'deal'] [u'transport', u'plan', u'aim', u'drunken', u'crime'] [u'troop', u'reach', u'afghan', u'plane', u'crash', u'site'] [u'tsunami', u'unlik', u'affect', u'econom', u'growth'] [u'tweed', u'turtl', u'sight', u'rise'] [u'pledg', u'debt', u'relief', u'countri'] [u'union', u'meet', u'bundaberg', u'sugar', u'closur'] [u'union', u'busi', u'odd', u'plan'] [u'union', u'want', u'asbesto', u'clear', u'build', u'site'] [u'pledg', u'palestinian'] [u'tycoon', u'unit', u'takeov'] [u'valuabl', u'parrot', u'target', u'theft'] [u'vatican', u'deni', u'pope', u'messag', u'record'] [u'victoria', u'brace', u'sever', u'wind'] [u'victoria', u'see', u'need', u'nelson', u'year', u'chang'] [u'govt', u'oppos', u'nelson', u'year', u'plan'] [u'govt', u'signal', u'opposit', u'plan'] [u'warn', u'deni', u'cricket', u'tire'] [u'whitlam', u'offer', u'condit', u'support', u'reform'] [u'wind', u'blow', u'slick', u'egyptian', u'coast'] [u'wit', u'sexual', u'assault', u'seek'] [u'wodonga', u'develop', u'boom', u'loom'] [u'woman', u'surviv', u'train', u'ordeal'] [u'york', u'return', u'intern', u'action'] [u'zarqawi', u'claim', u'dead', u'suicid', u'blast'] [u'garden', u'lure', u'tourist'] [u'kill', u'sayyaf', u'base', u'philippin'] [u'abattoir', u'recruit', u'reopen'] [u'accc', u'press', u'educ', u'compani'] [u'appoint', u'small', u'busi', u'commission'] [u'teacher', u'littl', u'support', u'year', u'plan'] [u'agassi', u'davi', u'return'] [u'agreement', u'reach', u'council', u'wage', u'talk'] [u'ord', u'dip', u'record', u'end'] [u'candid', u'upset', u'green', u'prefer'] [u'reject', u'costello', u'rat', u'claim'] [u'archaeolog', u'survey', u'preserv', u'jetti', u'sit'] [u'armi', u'investig', u'websit', u'link'] [u'clear', u'mitchel', u'perth'] [u'backpack', u'group', u'consid', u'coff', u'branch'] [u'barnett', u'deni', u'canal', u'cost'] [u'barnett', u'cost', u'cut', u'plan', u'risk', u'servic', u'gallop', u'say'] [u'barnett', u'trump', u'govern', u'tourism', u'pledg'] [u'beazley', u'demand', u'govt', u'apologis'] [u'bellami', u'name', u'countri', u'coach'] [u'betsen', u'twickenham', u'place', u'hang', u'disciplinari'] [u'bet', u'agenc', u'moot', u'australia', u'wide', u'bookmak'] [u'blair', u'brand', u'iran', u'sponsor', u'terror'] [u'blair', u'tour', u'benefit', u'promot', u'chariti'] [u'brogden', u'step', u'scrutini', u'mental', u'health', u'servic'] [u'bush', u'deliv', u'lean', u'budget'] [u'bush', u'seek', u'cash', u'bunker', u'buster', u'nuke'] [u'busi', u'survey', u'declin', u'surpris', u'economist'] [u'busi', u'upbeat', u'despit', u'inflat', u'worri'] [u'cahil', u'miss', u'durban', u'friend'] [u'camera', u'dysart', u'crime'] [u'canal', u'debat', u'prompt', u'water', u'audit'] [u'canal', u'plan', u'fantast', u'aborigin'] [u'cancer', u'council', u'clear', u'parent', u'smoke'] [u'carr', u'reject', u'hospit', u'comparison'] [u'cattlemen', u'forese', u'strong', u'demand'] [u'chemic', u'spill', u'forc', u'council', u'evacu'] [u'china', u'plan', u'pebbl', u'nuclear', u'reactor', u'report'] [u'china', u'welcom', u'year', u'rooster'] [u'citrus', u'grower', u'continu', u'tree', u'remov'] [u'citi', u'walk', u'upgrad', u'begin'] [u'communiti', u'rais', u'fund', u'poverti', u'stricken'] [u'communiti', u'group', u'attack', u'council', u'solicitor', u'gag'] [u'cook', u'island', u'tourism', u'sit', u'spar', u'cyclon', u'near'] [u'coron', u'rule', u'locat', u'death'] [u'council', u'approv', u'pambulong', u'forest', u'hous', u'estat'] [u'council', u'back', u'hold', u'peak', u'water'] [u'councillor', u'threaten', u'quit', u'meet', u'standard'] [u'council', u'rule', u'free', u'trial'] [u'council', u'reject', u'phone', u'tower', u'site'] [u'council', u'consid', u'free', u'pool', u'access'] [u'countri', u'music', u'impresario', u'merl', u'kilgor', u'die'] [u'court', u'hear', u'coron', u'field', u'trip', u'indic', u'bias'] [u'crime', u'drop', u'wellington', u'gippsland', u'polic'] [u'crisi', u'hous', u'servic', u'face', u'grow', u'demand'] [u'deadlin', u'loom', u'jail', u'tender'] [u'detent', u'centr', u'inquiri', u'open', u'refuge', u'group'] [u'detent', u'centr', u'privat', u'inquiri', u'condemn'] [u'devil', u'transfer', u'threaten', u'island', u'anim'] [u'disabl', u'servic', u'launch', u'industri', u'action'] [u'dongara', u'face', u'water', u'power', u'woe'] [u'drink', u'drive', u'blitz', u'find', u'women', u'worst', u'offend'] [u'driver', u'flip', u'roof'] [u'dubbo', u'council', u'urg', u'hire', u'aborigin', u'liaison'] [u'egypt', u'clean', u'tanker', u'crash', u'slick'] [u'egyptian', u'twin', u'skull', u'surgeri'] [u'energi', u'worker', u'seek', u'pariti', u'contract', u'talk'] [u'cyclon', u'impact', u'central', u'unclear'] [u'fall', u'gold', u'price', u'put', u'expans', u'plan', u'hold'] [u'farmer', u'group', u'back', u'subsidi'] [u'farmer', u'lung', u'punctur', u'accid'] [u'farm', u'group', u'back', u'subsidi', u'plan'] [u'fiji', u'govt', u'sell', u'share', u'local', u'daili'] [u'firefight', u'stop', u'hillston', u'blaze', u'spread'] [u'fisher', u'lake', u'wetherel', u'clear'] [u'fli', u'kangaroo', u'keep', u'european'] [u'polic', u'chief', u'head', u'inquiri'] [u'priest', u'convict', u'child', u'rape'] [u'foster', u'half', u'year', u'profit', u'slight'] [u'year', u'borrow', u'mum', u'rent', u'video', u'game'] [u'gallop', u'offer', u'better', u'region', u'cancer', u'patient', u'care'] [u'gangland', u'trial', u'wit', u'admit', u'hitman', u'experi'] [u'generos', u'recognis', u'tsunami', u'condol', u'motion'] [u'global', u'warm', u'ignor'] [u'gold', u'plan', u'promis', u'coolgardi', u'boost'] [u'govt', u'announc', u'tafe', u'boost'] [u'govt', u'rule', u'privatis', u'public', u'hospit'] [u'govt', u'urg', u'address', u'gippsland', u'unemploy', u'rate'] [u'govt', u'urg', u'reopen', u'council', u'probe'] [u'govt', u'urg', u'start', u'alstonvill', u'bypass'] [u'granni', u'plead', u'guilti', u'polic', u'pursuit'] [u'green', u'group', u'want', u'power', u'boat'] [u'gulf', u'communiti', u'avoid', u'cyclon', u'damag'] [u'owner', u'jail', u'steroid', u'import'] [u'henri', u'walker', u'eltin', u'chief', u'quit', u'troubl', u'firm'] [u'patient', u'plead', u'guilti', u'unprotect'] [u'hormon', u'combat', u'life', u'depress', u'studi', u'find'] [u'hospit', u'reject', u'patient', u'care', u'claim'] [u'human', u'right', u'group', u'monitor', u'palm', u'inquest'] [u'hundr', u'ralli', u'support', u'bushfir', u'coron'] [u'hussey', u'lead', u'warrior', u'bull'] [u'independ', u'issu', u'prefer', u'deal', u'warn'] [u'injuri', u'reliev', u'pressur', u'lehmann'] [u'injuri', u'worri', u'pile', u'sven'] [u'insur', u'uncertainti', u'cloud', u'riverwatch', u'patrol'] [u'iraq', u'captor', u'releas', u'egyptian', u'engin'] [u'iraq', u'group', u'releas', u'italian', u'websit'] [u'iron', u'sale'] [u'isol', u'cattl', u'station', u'use', u'internet', u'contact'] [u'jackson', u'trial', u'delay', u'week'] [u'join', u'oasi', u'tour'] [u'labor', u'reject', u'costello', u'rat', u'link'] [u'land', u'cut', u'disappear', u'properti', u'price'] [u'liber', u'plan', u'bendigo', u'assault'] [u'long', u'film', u'clear', u'misconcept'] [u'macarthur', u'break', u'solo', u'round', u'world', u'record'] [u'macarthur', u'sail', u'histori'] [u'macarthur', u'sail', u'record', u'book'] [u'macarthur', u'stay', u'cours', u'round', u'world'] [u'decapit', u'industri', u'accid'] [u'plead', u'guilti', u'give', u'teen', u'cannabi'] [u'tie', u'home', u'invas'] [u'maryborough', u'youth', u'crisi', u'accommod'] [u'medic', u'student', u'bush'] [u'medicin', u'polici', u'shift', u'reneg', u'elect', u'promis'] [u'meet', u'focus', u'kangaroo', u'flat', u'crime'] [u'meet', u'target', u'transport', u'job', u'prioriti'] [u'mehrten', u'hoeft', u'join', u'umaga', u'tsunami', u'chariti'] [u'mildura', u'jail', u'strangl', u'wife'] [u'miner', u'union', u'beat', u'despit', u'whyalla', u'fear'] [u'mine', u'merger', u'give', u'approv'] [u'minist', u'blame', u'vegetarian', u'anti', u'live', u'export'] [u'miss', u'toddler', u'return', u'mother'] [u'mitsubishi', u'motor', u'report', u'massiv', u'loss'] [u'molik', u'head', u'europ', u'overcom'] [u'doesnt', u'support', u'abort', u'debat'] [u'question', u'costello', u'xstrata'] [u'music', u'giant', u'slash', u'year', u'outlook'] [u'nation', u'heat', u'school', u'condit', u'debat'] [u'nelson', u'educ', u'plan', u'late', u'night', u'muse'] [u'guid', u'detail', u'indigen', u'tourism', u'experi'] [u'reason', u'habib', u'sell', u'stori', u'beazley'] [u'parliament', u'hold', u'sit'] [u'nurs', u'candid', u'question', u'union'] [u'omeley', u'confid', u'injuri', u'return'] [u'opposit', u'put', u'govt', u'notic', u'rat'] [u'paedophil', u'choos', u'treatment', u'jail'] [u'palm', u'island', u'host', u'death', u'custodi', u'inquest'] [u'paper', u'highlight', u'indigen', u'hous', u'fund', u'shortfal'] [u'parti', u'urg', u'clarifi', u'cotton', u'canal', u'link'] [u'pinochet', u'offer', u'million', u'tax'] [u'piquet', u'junior', u'test'] [u'pittman', u'readi', u'track', u'return'] [u'pittman', u'undecid', u'commonwealth', u'game', u'program'] [u'playstat', u'demonstr', u'concern', u'high', u'court'] [u'prais', u'australia', u'tsunami', u'respons'] [u'polic', u'charg', u'attack'] [u'polic', u'chief', u'ponder', u'revamp', u'station'] [u'polic', u'deni', u'releas', u'habib', u'address'] [u'polic', u'steal', u'yacht', u'dinghi'] [u'polic', u'evid', u'cell', u'death', u'inquiri'] [u'polic', u'monitor', u'flood', u'harvey', u'dissip'] [u'polic', u'driver', u'licenc'] [u'polic', u'plea', u'clue', u'wodonga', u'babi', u'death'] [u'polic', u'prepar', u'snow', u'season', u'strategi'] [u'polic', u'probe', u'huge', u'motorcycl', u'heist'] [u'polic', u'quiet', u'result', u'magistr', u'complaint'] [u'pont', u'tiger'] [u'port', u'author', u'sue', u'commonwealth', u'wwii', u'bomb'] [u'port', u'author', u'dredg', u'monitor'] [u'power', u'boat', u'churn', u'murray', u'river', u'eros', u'angst'] [u'plate', u'driver', u'charg', u'hit', u'policeman'] [u'pressur', u'mount', u'costello', u'oppos', u'xstrata'] [u'princip', u'defend', u'video', u'monitor', u'teacher'] [u'prosecutor', u'seek', u'year', u'jail', u'bashir'] [u'protest', u'delay', u'live', u'sheep', u'export'] [u'quak', u'shake', u'coast'] [u'question', u'mark', u'second', u'davi', u'place'] [u'question', u'rais', u'doctor', u'accredit'] [u'rain', u'lengthen', u'bushfir', u'season'] [u'rain', u'put', u'dampen', u'shoot', u'hollywood', u'film'] [u'rate', u'rise', u'squeez', u'hous', u'market'] [u'famili', u'open', u'inquiri'] [u'real', u'estat', u'institut', u'investig', u'claim'] [u'record', u'power', u'usag', u'swelter'] [u'resid', u'ask', u'prevent', u'fruit', u'spread'] [u'rise', u'hous', u'price', u'leav', u'famili', u'homeless'] [u'rocki', u'trial', u'nightclub', u'lockout', u'plan'] [u'promot', u'contain', u'deposit', u'law'] [u'schoolgirl', u'assault', u'rescu', u'young', u'child'] [u'secur', u'guard', u'tri', u'murder', u'charg'] [u'seven', u'dead', u'sin', u'fall', u'time'] [u'singapor', u'eye', u'open', u'sky', u'deal'] [u'sleep', u'hormon', u'affect', u'organ'] [u'smelter', u'demolit', u'soon'] [u'solar', u'power', u'park', u'meter', u'driver'] [u'spain', u'mourn', u'leak', u'victim'] [u'special', u'school', u'upset', u'fund', u'formula'] [u'state', u'ask', u'nation', u'miss', u'person'] [u'sting', u'think', u'global', u'perform', u'local', u'tsunami'] [u'strike', u'avert', u'burnett', u'river'] [u'studi', u'link', u'autism', u'mother', u'ill'] [u'studi', u'seek', u'young', u'peopl', u'whove', u'return', u'bush'] [u'stuntman', u'say', u'actor', u'robert', u'blake', u'want', u'wife', u'dead'] [u'suicid', u'bomb', u'blast', u'kill', u'baghdad'] [u'sydney', u'rule', u'cost', u'busi', u'centr', u'survey'] [u'symond', u'leav', u'space', u'lehmann'] [u'tafe', u'beat', u'xstrata', u'apprenticeship', u'scheme'] [u'talk', u'speed', u'timor', u'trial', u'process'] [u'teen', u'hit', u'right', u'note', u'roman', u'opera'] [u'teacher', u'escap', u'jail', u'cash', u'grade', u'case'] [u'technic', u'colleg', u'consult', u'success'] [u'thief', u'jail', u'steal', u'griev', u'widow'] [u'togo', u'presid', u'swear', u'amid', u'critic'] [u'toowoomba', u'draw', u'parallel', u'women'] [u'townsvill', u'see', u'benefit', u'ocean', u'cruis', u'ship'] [u'truce', u'hop', u'high', u'middl', u'east', u'peac', u'summit'] [u'turnbul', u'break', u'rank', u'apolog'] [u'twin', u'bear', u'month', u'apart'] [u'union', u'label', u'forestrysa', u'corrupt'] [u'union', u'prais', u'teacher', u'distanc', u'educ'] [u'union', u'fear', u'retrench', u'walter', u'worker'] [u'union', u'seek', u'worker', u'entitl', u'assur'] [u'union', u'surpris', u'barnett', u'public', u'sector', u'audit'] [u'unit', u'docker', u'determin', u'play', u'final', u'footi'] [u'suspend', u'head', u'food', u'program'] [u'keeper', u'friedel', u'announc', u'intern'] [u'tri', u'iraq', u'prison', u'mudwrestl', u'parti', u'goer'] [u'polic', u'launch', u'murder', u'investig'] [u'seek', u'road', u'fund', u'build', u'code', u'turnaround'] [u'wall', u'street', u'lack', u'direct'] [u'walter', u'administr', u'meet', u'creditor'] [u'walter', u'group', u'collaps', u'cost', u'job'] [u'parti', u'stamp', u'duti'] [u'warratah', u'airlin', u'hold'] [u'werriwa', u'elect', u'date', u'announc'] [u'william', u'murder', u'plot', u'wit', u'turn', u'inform'] [u'wit', u'evid', u'longreach', u'rape', u'case'] [u'wollongong', u'record', u'legionnair', u'case'] [u'woomera', u'detaine', u'escap', u'convict'] [u'work', u'visa', u'chang', u'immigr', u'overhaul'] [u'work', u'begin', u'charlevill', u'meatwork'] [u'work', u'scheme', u'help', u'drought', u'farmer'] [u'kill', u'truck', u'slam', u'crowd', u'angola'] [u'abort', u'debat', u'provok', u'educ', u'question'] [u'accus', u'speedster', u'face', u'court'] [u'adelaid', u'schedul', u'chariti'] [u'black', u'engulf', u'drink', u'cultur'] [u'audit', u'enhanc', u'visitor', u'experi'] [u'tour', u'toughen', u'pakistan'] [u'australasian', u'tour'] [u'babi', u'undergo', u'crucial', u'test'] [u'bat', u'edg', u'athen', u'champ', u'pursuit', u'victori'] [u'bat', u'edg', u'athen', u'champ', u'pursuit', u'victori'] [u'beazley', u'attack', u'elect', u'region', u'grant'] [u'bega', u'council', u'wont', u'oppos', u'land', u'claim'] [u'bega', u'lift', u'water', u'ban'] [u'biggenden', u'farmer', u'recov', u'stick', u'mishap'] [u'blair', u'hope', u'back', u'climat', u'chang'] [u'bodi', u'australian', u'kill', u'iraq', u'return'] [u'book', u'australian', u'architect', u'honour'] [u'bowden', u'deni', u'overaw', u'aussi'] [u'brack', u'say', u'foster', u'care', u'boy', u'assault', u'disturb'] [u'brickwork', u'owner', u'reject', u'union', u'attack'] [u'britain', u'welcom', u'dame', u'ellen', u'home'] [u'brumbi', u'wari', u'hungri', u'challeng', u'say', u'mortlock'] [u'bushfir', u'studi', u'prove', u'lifesav'] [u'bushfir', u'victim', u'face', u'slug'] [u'bushfir', u'victim', u'face', u'bill', u'emerg'] [u'go', u'studi', u'lake', u'yabbi', u'impact'] [u'carr', u'baulk', u'apec', u'secur', u'cost'] [u'carr', u'open', u'lithgow', u'librari'] [u'cassel', u'bushrang'] [u'fail', u'halt', u'market', u'fall'] [u'ceas', u'bring', u'isra', u'palestinian', u'closer'] [u'children', u'hospitalis', u'diseas', u'outbreak'] [u'china', u'see', u'signific', u'rise', u'execut'] [u'chines', u'welcom', u'lunar', u'year'] [u'chopper', u'pilot', u'take', u'home', u'deliveri', u'height'] [u'coalit', u'highlight', u'region', u'power', u'woe'] [u'commonwealth', u'bank', u'reveal', u'profit'] [u'communiti', u'help', u'polic', u'goonellabah', u'crime'] [u'confer', u'focus', u'remot', u'issu'] [u'consum', u'confid', u'remain', u'posit'] [u'corridor', u'dust', u'rais', u'health', u'fear'] [u'councillor', u'anna', u'hous', u'plan'] [u'councillor', u'defend', u'depart'] [u'councillor', u'seek', u'kirra', u'hill', u'consult'] [u'council', u'eas', u'mackay', u'water', u'ban'] [u'council', u'minist', u'odd', u'flag', u'controversi'] [u'council', u'need', u'fund', u'legal', u'fee'] [u'council', u'probe', u'attack', u'sheep'] [u'council', u'consid', u'conserv', u'base', u'rat'] [u'council', u'sell', u'fletcher', u'jone', u'site'] [u'crash', u'chook', u'ruffl', u'resid', u'feather'] [u'crash', u'spark', u'snowi', u'mountain', u'highway', u'safeti', u'boost'] [u'critic', u'intensifi', u'liber', u'canal', u'propos'] [u'dairi', u'union', u'meet', u'enterpris', u'agreement'] [u'debat', u'continu', u'memori', u'wall', u'site'] [u'derbi', u'gain', u'revitalis', u'boost'] [u'devil', u'survivor', u'research'] [u'doctor', u'boost', u'aim', u'surgeri', u'wait', u'list'] [u'doctor', u'give', u'evid', u'footbal', u'carniv', u'rape'] [u'doctor', u'hail', u'fund', u'boost', u'rural', u'cancer'] [u'dolli', u'creator', u'grant', u'human', u'clone', u'licenc'] [u'dominikov', u'india'] [u'dubbo', u'council', u'approv', u'aborigin', u'liaison', u'offic'] [u'emerg', u'staff', u'temperatur', u'hot'] [u'emerton', u'agostino', u'spearhead', u'socceroo'] [u'employ', u'angri', u'govt', u'long', u'servic', u'leav', u'plan'] [u'england', u'hit', u'rugbi'] [u'expert', u'help', u'beef', u'livestock', u'diseas', u'manag'] [u'famili', u'earli', u'bonus'] [u'farina', u'expect', u'strong', u'south', u'africa'] [u'farina', u'stay', u'posit', u'amid', u'familiar', u'injuri', u'woe'] [u'farmer', u'meet', u'sheep', u'profit'] [u'father', u'jail', u'drug', u'offenc'] [u'fear', u'medicin', u'hurt', u'toogoolawah', u'age', u'care'] [u'govt', u'deni', u'mislead', u'road', u'fund'] [u'disrupt', u'chines', u'year', u'celebr'] [u'fletcher', u'interest', u'south', u'african'] [u'foreign', u'fish', u'boat', u'cape', u'york'] [u'foreign', u'minist', u'elect', u'presid', u'greec'] [u'harri', u'scarf', u'chief', u'admin', u'offic', u'go'] [u'fund', u'boost', u'riverland', u'age', u'care'] [u'gallop', u'promis', u'renew', u'power', u'boost'] [u'gibbon', u'renew', u'calder', u'fund', u'critic'] [u'goorjian', u'eye'] [u'govt', u'call', u'nation', u'child', u'care', u'regul'] [u'govt', u'defend', u'remot', u'high', u'school', u'effort'] [u'govt', u'deni', u'fund', u'shortfal', u'palliat', u'care'] [u'govt', u'dismiss', u'public', u'sector', u'fraud', u'claim'] [u'govt', u'insur', u'public', u'servant', u'court'] [u'govt', u'make', u'splash', u'pool', u'fund'] [u'govt', u'call', u'releas', u'asylum', u'seeker'] [u'govt', u'studi', u'assess', u'telstra', u'privatis'] [u'govt', u'strap', u'seatbelt', u'law'] [u'govt', u'privat', u'inquiri'] [u'govt', u'urg', u'guarante', u'walter', u'worker', u'entitl'] [u'govt', u'urg', u'recognis', u'kiss'] [u'green', u'rais', u'wast', u'plant', u'expans', u'fear'] [u'grower', u'welcom', u'canker', u'loan', u'offer'] [u'gungahlin', u'drive', u'extens', u'return', u'court'] [u'hawk', u'reject', u'costello', u'industri', u'relat', u'claim'] [u'hick', u'sack', u'australian', u'lawyer'] [u'highway', u'reopen', u'fatal', u'crash'] [u'histor', u'cottag', u'restor'] [u'hobart', u'offic', u'space', u'vacanc', u'hit', u'year'] [u'howard', u'welcom', u'middl', u'east', u'ceas'] [u'knight', u'life', u'buderus'] [u'india', u'bow', u'anim', u'right', u'group', u'eleph'] [u'indonesian', u'pair', u'face', u'illeg', u'fish', u'charg'] [u'indonesian', u'tsunami', u'dead', u'miss'] [u'iraqi', u'journalist', u'fund', u'network', u'kill'] [u'israel', u'palestinian', u'declar', u'violenc'] [u'israel', u'plan', u'releas', u'palestinian', u'prison'] [u'labor', u'claim', u'govt', u'break', u'childcar', u'rebat', u'promis'] [u'labor', u'question', u'protect', u'abandon', u'embassi'] [u'labor', u'worri', u'onlin', u'medic', u'degre'] [u'leader', u'hope', u'middl', u'east', u'peac'] [u'tide', u'spark', u'tsunami', u'panic'] [u'madrid', u'bomb', u'blast', u'injur'] [u'charg', u'involv', u'omagh', u'explos'] [u'charg', u'premier', u'yacht', u'theft'] [u'die', u'farm', u'machineri', u'mishap'] [u'jail', u'stab', u'partner'] [u'stab', u'death', u'sydney'] [u'face', u'court', u'samurai', u'sword', u'attack'] [u'mayor', u'bridg', u'plan', u'draw', u'littl', u'support'] [u'mayor', u'talk', u'bypass', u'benefit'] [u'minist', u'apologis', u'vegetarian', u'follow'] [u'minist', u'reject', u'fund', u'rort', u'claim'] [u'minist', u'stay', u'portland', u'hospit', u'woe'] [u'minist', u'urg', u'council', u'rethink'] [u'moomba', u'gear', u'celebr', u'birthday'] [u'mourner', u'respect', u'fall', u'airmen'] [u'moya', u'down', u'luczak'] [u'accus', u'child', u'support', u'agenc', u'anti', u'male', u'bias'] [u'call', u'program', u'reduc', u'abort'] [u'seek', u'nimbin', u'polic', u'boost'] [u'support', u'anim', u'cruelti', u'task', u'forc'] [u'nation', u'archiv', u'make', u'migrat', u'record', u'avail'] [u'natur', u'pipelin', u'extens', u'doubt', u'labor'] [u'apprentic', u'start', u'ergon'] [u'lameroo', u'nurs', u'quit'] [u'owner', u'detail', u'plan'] [u'plan', u'scrap', u'select', u'polici', u'hohn'] [u'north', u'coast', u'face', u'age', u'plan', u'challeng'] [u'north', u'mackay', u'play', u'gabba', u'clash'] [u'polic', u'fear', u'miss', u'tourist'] [u'oberon', u'want', u'brake', u'drag', u'race'] [u'odriscol', u'darci', u'ireland', u'scotland'] [u'olymp', u'drug', u'hungrier', u'eadi'] [u'opposit', u'give', u'govt', u'poor', u'report', u'card'] [u'opposit', u'hit', u'rail', u'claim'] [u'opposit', u'promis', u'close', u'luxuri', u'style', u'women'] [u'opposit', u'put', u'waterfront', u'develop'] [u'opposit', u'say', u'maggot', u'case', u'show', u'disabl'] [u'outcast', u'star', u'escap', u'milki', u'galaxi'] [u'parent', u'worker', u'attend', u'asbesto', u'forum'] [u'parti', u'focus', u'health', u'campaign', u'hit', u'halfway'] [u'partner', u'question', u'woman', u'disappear'] [u'plan', u'fuel', u'emerg', u'prompt', u'investig'] [u'say', u'water', u'canal', u'bold', u'idea'] [u'support', u'improv', u'educ', u'reduc'] [u'offic', u'clear', u'illeg', u'gambl', u'charg'] [u'policeman', u'releas', u'hospit'] [u'polic', u'probe', u'begin', u'babi', u'assault', u'foster'] [u'polic', u'pursu', u'lead', u'suspect', u'murder'] [u'polic', u'raid', u'target', u'bike', u'gang', u'expans'] [u'polic', u'raid', u'uncov', u'pirat', u'oper'] [u'polic', u'uncov', u'south', u'east', u'cannabi', u'crop'] [u'poll', u'govt', u'support', u'slip'] [u'pont', u'snub', u'tiger'] [u'pope', u'miss', u'wednesday', u'prayer'] [u'prison', u'transcript', u'confirm', u'give', u'fals'] [u'probe', u'launch', u'disabl'] [u'probe', u'search', u'water', u'mar'] [u'public', u'help', u'seek', u'hold'] [u'public', u'keen', u'hear', u'wash', u'hospit', u'talk'] [u'public', u'meet', u'focus', u'marin', u'park', u'plan'] [u'public', u'warn', u'redback', u'bite'] [u'blood', u'product', u'firm', u'take', u'market'] [u'dismiss', u'separ', u'inquiri'] [u'releas', u'prison', u'interview', u'transcript'] [u'quadripleg', u'regain', u'compo', u'beach', u'accid'] [u'ordeal', u'prompt', u'separ', u'inquiri'] [u'recreat', u'angler', u'protest', u'marin', u'park'] [u'recycl', u'welcom', u'council', u'rat', u'decis'] [u'regular', u'tooth', u'brush', u'benefit', u'heart'] [u'rice', u'speech', u'aim', u'repair', u'europ', u'relat'] [u'road', u'fund', u'commut', u'corridor', u'freez'] [u'robben', u'blow', u'chelsea', u'barca', u'clash'] [u'roger', u'return', u'waratah', u'line'] [u'ronaldo', u'miss', u'brazil', u'hong', u'kong', u'mismatch'] [u'rotari', u'seek', u'lifeguard', u'tower', u'fund'] [u'rural', u'shire', u'oppos', u'merger'] [u'russian', u'blast', u'kill'] [u'sack', u'lawyer', u'vow', u'fight', u'hickss', u'freedom'] [u'farmer', u'tax', u'bushfir', u'relief', u'fund'] [u'samba', u'school', u'danc', u'rio', u'final', u'parad'] [u'school', u'compulsori', u'despit', u'heatwav'] [u'scott', u'focus', u'master', u'perform', u'augusta'] [u'selector', u'need', u'time', u'lehmann', u'declar'] [u'sharon', u'readi', u'meet', u'abba', u'ramallah'] [u'shoaib', u'face', u'pakistan', u'inquisit'] [u'launceston'] [u'small', u'busi', u'commission', u'urg', u'independ'] [u'socceroo', u'play', u'world', u'qualifi'] [u'solomon', u'front', u'court', u'facto', u'murder'] [u'southcorp', u'post', u'percent', u'jump', u'profit'] [u'strike', u'forc', u'investig', u'babi', u'death'] [u'student', u'charg', u'teacher', u'scissor', u'attack'] [u'studi', u'consid', u'wast', u'dump', u'export', u'impact'] [u'vinni', u'look', u'doorknock', u'appeal', u'volunt'] [u'sugar', u'slam', u'raid', u'lawyer', u'offic'] [u'superfin', u'wool', u'fetch', u'dollar', u'launceston'] [u'sydney', u'host', u'apec', u'talk'] [u'get', u'parliamentari', u'elect', u'bodi'] [u'tendulkar', u'play', u'pakistan'] [u'tour', u'promot', u'deni', u'cheri', u'blair', u'payment', u'deal'] [u'finalis', u'univers', u'place'] [u'underworld', u'trial', u'star', u'wit', u'seek', u'expos', u'drug'] [u'union', u'overse', u'collaps', u'compani', u'futur'] [u'free', u'french', u'guantanamo', u'detaine'] [u'soldier', u'kill', u'northern', u'iraq'] [u'blaze', u'destroy', u'mail'] [u'virus', u'strike', u'student', u'school', u'camp'] [u'vline', u'defend', u'ballarat', u'rail', u'line', u'effort'] [u'vline', u'play', u'near', u'miss', u'safe', u'procedur'] [u'vogt', u'german'] [u'wall', u'street', u'placid', u'ahead', u'profit', u'report'] [u'walter', u'contractor', u'seek', u'payment', u'guarante'] [u'opposit', u'launch', u'health', u'polici', u'amid', u'protest'] [u'watkin', u'highlight', u'rail', u'revamp'] [u'windsor', u'back', u'council', u'boost', u'plan'] [u'releas', u'billion', u'profit'] [u'woman', u'arrest', u'club', u'break'] [u'work', u'women', u'carri', u'burden', u'home', u'goward'] [u'wright', u'phillip', u'right', u'england'] [u'zimbabw', u'rebel', u'hold', u'talk', u'board'] [u'bodi', u'driver', u'near', u'baghdad'] [u'abba', u'issu', u'order', u'halt', u'attack', u'gaza'] [u'aborigin', u'know', u'feed', u'health', u'product', u'industri'] [u'accommod', u'shortag', u'leav', u'woman', u'camp'] [u'accus', u'plead', u'guilti', u'supermarket', u'arson', u'charg'] [u'actu', u'reject', u'water', u'comment'] [u'administr', u'revis', u'nation', u'trust', u'debt'] [u'footbal', u'commit', u'stand', u'trial'] [u'african', u'leader', u'slam', u'togo', u'coup'] [u'agoni', u'wright', u'phillip', u'dutch', u'hold', u'england'] [u'albani', u'host', u'energi', u'polici', u'unveil'] [u'alleg', u'boat', u'thief', u'charg', u'offenc'] [u'dissent', u'palm', u'island', u'surpris', u'beatti'] [u'make', u'goldfield', u'solar', u'generat', u'promis'] [u'admit', u'doctor', u'prescrib', u'adhd', u'drug'] [u'anglican', u'leader', u'endors', u'princ', u'charless', u'wed'] [u'kill', u'snow', u'avalanch', u'kashmir'] [u'arthriti', u'drug', u'carri', u'heart', u'warn'] [u'asbesto', u'foundat', u'seek', u'site', u'guarante'] [u'attitud', u'chang', u'need', u'prevent', u'youth', u'fatal'] [u'aussi', u'triathlet', u'return', u'posit', u'test'] [u'baghdad', u'bomb', u'kill'] [u'beatti', u'releas', u'interview'] [u'beryllium', u'coverag', u'prompt', u'govt', u'contact', u'veteran'] [u'betsen', u'free', u'play', u'england'] [u'blair', u'tour', u'prompt', u'fundrais', u'review'] [u'bomb', u'like', u'caus', u'hercul', u'crash', u'report'] [u'bookmak', u'admit', u'break', u'thoroughbr', u'race', u'rule'] [u'british', u'coupl', u'shower'] [u'broadband', u'help', u'push', u'telstra', u'profit'] [u'brogden', u'question', u'attack', u'footag', u'delay'] [u'broom', u'generos', u'tsunami', u'victim', u'hostel'] [u'brothel', u'owner', u'hop', u'author', u'bendigo', u'plan'] [u'brown', u'head', u'japan', u'kyoto', u'ratif'] [u'budget', u'increas', u'fail', u'improv', u'educ'] [u'bush', u'boost', u'tsunami', u'nation'] [u'bushfir', u'coron', u'close', u'wit', u'court', u'hear'] [u'busi', u'report', u'stress', u'custom', u'servic'] [u'feder', u'fund', u'calder', u'work'] [u'focus', u'region', u'prostat', u'cancer'] [u'canal', u'success', u'depend', u'dam', u'fitzroy', u'river'] [u'canberra', u'capac', u'host', u'apec', u'meet'] [u'changi', u'liber', u'bedsid', u'tabl'] [u'chines', u'chemist', u'give', u'crow'] [u'chopper', u'pilot', u'surviv', u'muster', u'crash'] [u'chopper', u'rescu', u'servic', u'seek', u'fund'] [u'citrus', u'industri', u'despair', u'packag', u'polit'] [u'clever', u'octopus', u'shed', u'light', u'evolut'] [u'claim', u'behaviour', u'program', u'fail'] [u'coal', u'corp', u'highlight', u'conserv', u'effort'] [u'coalit', u'promis', u'probe', u'port', u'sack'] [u'commonwealth', u'subsidis', u'age', u'care', u'place'] [u'coron', u'adjourn', u'inquest', u'newcrest', u'properti'] [u'costello', u'question', u'sustain', u'energex'] [u'council', u'choos', u'aquat', u'centr', u'site'] [u'council', u'group', u'back', u'bush', u'region', u'plan'] [u'countri', u'lobbi', u'save', u'electr', u'subsidi'] [u'court', u'hear', u'evid', u'snowtown', u'killer'] [u'creditor', u'extend', u'administr', u'launceston'] [u'deathb', u'confess', u'solv', u'year', u'robberi', u'case'] [u'demand', u'perth', u'offic', u'space', u'strong'] [u'doctor', u'begin', u'separ', u'mermaid', u'babi', u'leg'] [u'doctor', u'donat', u'rout', u'tsunami', u'victim'] [u'doctor', u'lookout', u'break', u'heart'] [u'dominikov', u'bow', u'india'] [u'drink', u'driver', u'jail', u'crash', u'death'] [u'dugong', u'cruelti', u'charg', u'strike'] [u'eager', u'nation', u'elect', u'trail'] [u'kill', u'venezuelan', u'flood'] [u'england', u'chang', u'franc', u'clash'] [u'enrol', u'overwhelm', u'wadey', u'school'] [u'eurobodalla', u'plan', u'develop', u'strategi', u'meet'] [u'wheat', u'refund', u'undermin', u'global', u'trade', u'talk'] [u'extra', u'worker', u'assist', u'storm', u'clean'] [u'famili', u'cell', u'death', u'victim', u'comfort', u'polic'] [u'feder', u'state', u'plan', u'boost', u'respit', u'care', u'servic'] [u'policeman', u'guilti', u'harass', u'colleagu'] [u'teacher', u'face', u'teen', u'assault', u'charg'] [u'freeman', u'comeback', u'unlik', u'athlet', u'offici'] [u'talk', u'malaysia', u'begin'] [u'gallop', u'promis', u'brake', u'road', u'rage'] [u'genet', u'barcod', u'identifi', u'world', u'speci'] [u'germani', u'argentina', u'play', u'draw'] [u'district', u'busi', u'form', u'organis'] [u'goorjian', u'stirl', u'retain', u'job'] [u'govt', u'accus', u'sneaki', u'famili'] [u'govt', u'accus', u'stall', u'senat', u'bill'] [u'govt', u'assess', u'oper', u'theatr', u'reopen'] [u'govt', u'depart', u'doctor'] [u'govt', u'subcontractor', u'delay'] [u'govt', u'consid', u'canal', u'propos', u'say', u'minchin'] [u'greener', u'albani', u'head', u'coalit', u'energi', u'polici'] [u'green', u'group', u'air', u'foreign', u'ownership', u'fear'] [u'green', u'group', u'cast', u'doubt', u'townsvill'] [u'green', u'choos', u'candid'] [u'guard', u'union', u'call', u'chang', u'jail'] [u'theft', u'alarm', u'polic', u'chief'] [u'hackett', u'back', u'team', u'captain', u'meet'] [u'hama', u'fire', u'mortar', u'gaza', u'settlement'] [u'hawk', u'come', u'dethron', u'king'] [u'high', u'level', u'group', u'monitor', u'work'] [u'hungri', u'hayden', u'confid', u'ahead', u'tour'] [u'hunter', u'highlight', u'lose', u'export', u'earn'] [u'hussey', u'thrill', u'join', u'squad'] [u'immigr', u'raid', u'spark', u'farmer', u'anger'] [u'incat', u'staff', u'accept', u'deal', u'halt', u'protest'] [u'inciner', u'plant', u'upgrad', u'plan', u'stage'] [u'indigen', u'leader', u'seek', u'canal', u'answer'] [u'inexperi', u'threaten', u'plan', u'councillor'] [u'injur', u'worker', u'releas', u'hospit'] [u'inquest', u'fail', u'determin', u'caus', u'board', u'hous'] [u'insur', u'fraud', u'earn', u'weekend', u'detent'] [u'iran', u'refus', u'nuclear', u'program'] [u'isra', u'palestinian', u'secur', u'talk', u'postpon'] [u'jazz', u'organ', u'pioneer', u'jimmi', u'smith', u'die'] [u'kate', u'moss', u'portrait', u'fetch'] [u'kempsey', u'make', u'colleg', u'plan'] [u'kennett', u'find', u'inquiri', u'want'] [u'labor', u'reveal', u'coral', u'power', u'plan'] [u'lehmann', u'drop', u'squad'] [u'lehmann', u'face', u'uncertain', u'futur'] [u'lehmann', u'face', u'uncertain', u'futur'] [u'liber', u'candid', u'unfaz', u'green', u'prefer'] [u'liber', u'promis', u'power', u'station', u'approv', u'review'] [u'life', u'saver', u'review', u'beach', u'accid', u'compo', u'rule'] [u'local', u'govt', u'group', u'echo', u'transport', u'fund', u'concern'] [u'long', u'term', u'studi', u'identifi', u'risk', u'factor'] [u'mackay', u'relax', u'water', u'ban'] [u'accus', u'attack', u'parent', u'court'] [u'charg', u'child', u'assault'] [u'take', u'hospit', u'ferri', u'blaze'] [u'marriag', u'wake', u'republican'] [u'mayor', u'defend', u'tumbi', u'creek', u'region', u'grant'] [u'media', u'challeng', u'secreci', u'jackson', u'case'] [u'mentor', u'scheme', u'aim', u'bolster', u'indigen', u'educ'] [u'miner', u'search', u'gold', u'base', u'metal'] [u'miner', u'urg', u'rethink', u'china', u'shipment'] [u'minist', u'defend', u'dredg', u'grant', u'email'] [u'minist', u'defend', u'govt', u'scrap', u'region', u'plan'] [u'ministeri', u'advis', u'yamba', u'crime', u'woe'] [u'minist', u'review', u'plan', u'creek'] [u'tasmanian', u'help', u'tsunami', u'aftermath'] [u'label', u'child', u'support', u'agenc', u'anti', u'male'] [u'question', u'kalgoorli', u'rail', u'line', u'safeti'] [u'seek', u'chang', u'charg', u'drop'] [u'murder', u'suspect', u'confess', u'polic', u'court', u'tell'] [u'nation', u'consid'] [u'camera', u'turn', u'night'] [u'corpor', u'park', u'threat', u'redfern', u'facil'] [u'law', u'allow', u'construct', u'worker', u'transfer'] [u'korea', u'deepen', u'isol', u'nuclear', u'stanc'] [u'korea', u'halt', u'nuclear', u'talk'] [u'opposit', u'cast', u'doubt', u'power', u'pledg'] [u'opposit', u'echo', u'yeppoon', u'hospit', u'delay', u'concern'] [u'orang', u'elect', u'tape', u'send', u'green'] [u'parent', u'alleg', u'remov', u'babi', u'brain'] [u'parent', u'warn', u'danger'] [u'parol', u'board', u'keep', u'schoolgirl', u'killer', u'bar'] [u'pentagon', u'deni', u'medic', u'complic', u'abus'] [u'perth', u'hospit', u'abus', u'alleg', u'spark', u'staff', u'check'] [u'seek', u'talk', u'ash', u'broadcast'] [u'unveil', u'commonwealth', u'game', u'relay', u'baton'] [u'polic', u'agre', u'speed', u'camera', u'monitor', u'increas'] [u'polic', u'apologis', u'bungl', u'rape', u'investig'] [u'polic', u'concern', u'miss', u'woman'] [u'polic', u'concern', u'speed', u'northern'] [u'polic', u'consid', u'temporari', u'taxi', u'rank', u'avoid'] [u'polic', u'miss', u'tourist'] [u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit'] [u'policeman', u'fin', u'access', u'child', u'porn'] [u'polic', u'probe', u'nabiac', u'man', u'death'] [u'pool', u'revamp', u'like', u'march'] [u'pope', u'readi', u'leav', u'hospit', u'vatican', u'say'] [u'power', u'station', u'unveil', u'busi', u'plan'] [u'princ', u'charl', u'camilla', u'marri'] [u'protest', u'firefight', u'wont', u'disciplin'] [u'public', u'comment', u'seek', u'heritag', u'studi'] [u'pull', u'dack', u'face', u'fine'] [u'health', u'probe', u'student', u'sick'] [u'race', u'gender', u'jumper'] [u'race', u'inquiri', u'hear', u'bookmak', u'recal'] [u'racq', u'want', u'road', u'fund', u'string', u'attach'] [u'rail', u'chief', u'deni', u'cityrail', u'siesta', u'claim'] [u'apolog', u'hard', u'deliv'] [u'region', u'resid', u'complain', u'phone'] [u'rescu', u'chopper', u'servic', u'move', u'sydney'] [u'research', u'accus', u'govt', u'smear', u'campaign'] [u'research', u'releas', u'open', u'sourc', u'technolog'] [u'riebel', u'beat', u'north', u'west', u'coastal', u'chanc'] [u'road', u'fund', u'law', u'break', u'spend', u'promis'] [u'ronaldinho', u'magic', u'brazil', u'trounc', u'hong', u'kong'] [u'cement', u'maker', u'report', u'profit'] [u'stop', u'releas', u'murder'] [u'saudi', u'arabia', u'poll', u'kick', u'riyadh'] [u'scientist', u'reveal', u'earth', u'natur', u'temperatur', u'swing'] [u'scissor', u'sister', u'steal', u'brit'] [u'search', u'find', u'strand', u'indonesian', u'fisher'] [u'second', u'rang', u'cross', u'move', u'closer'] [u'senat', u'probe', u'cancer', u'treatment'] [u'shield', u'repair', u'cost'] [u'shire', u'assess', u'hall', u'resort', u'plan'] [u'singapor', u'airlin', u'offer', u'travel', u'junket'] [u'smith', u'centuri', u'steer', u'protea', u'dramat'] [u'socceroo', u'attack', u'say', u'farina'] [u'south', u'coast', u'label', u'mental', u'health', u'black', u'hole'] [u'spray', u'make', u'better'] [u'steal', u'good', u'alleg', u'boat', u'thief', u'warehous'] [u'storm', u'cost', u'energi', u'firm'] [u'subdivis', u'plan', u'rais', u'green', u'fear'] [u'sydney', u'chase', u'york'] [u'talk', u'focus', u'walter', u'wollongong', u'job'] [u'consid', u'incent', u'live', u'export'] [u'arrang', u'satisfi', u'bushfir', u'relief', u'chief'] [u'tech', u'stock', u'push', u'market', u'lower'] [u'telstra', u'result', u'fail', u'lift', u'share', u'market'] [u'thoma', u'ask', u'qaeda', u'sleeper', u'court', u'hear'] [u'toll', u'affect', u'pakenham', u'bypass', u'fund'] [u'toowoomba', u'discuss', u'sunday', u'trade'] [u'town', u'brace', u'flood'] [u'show', u'tortur', u'realiti'] [u'navi', u'show', u'seab', u'ruptur', u'tsunami', u'quak'] [u'ban', u'peacekeep', u'congoles'] [u'unemploy', u'rate', u'remain', u'year'] [u'hold', u'inform', u'session', u'parent'] [u'urolog', u'clinic', u'succumb', u'hospit', u'staff', u'crisi'] [u'alli', u'voic', u'regret', u'north', u'korean', u'statement'] [u'aviat', u'author', u'receiv', u'warn'] [u'senat', u'introduc', u'shield', u'report'] [u'strategi', u'aim', u'outsourc', u'nuclear', u'strike'] [u'vanston', u'reject', u'smear', u'campaign', u'claim'] [u'vera', u'drake', u'actor', u'overwhelm', u'posit', u'reaction'] [u'vera', u'drake', u'clean', u'london', u'award'] [u'govt', u'announc', u'disabl', u'fund'] [u'villeneuv', u'suggest', u'chang', u'drive', u'style'] [u'volunt', u'seek', u'memori', u'loss', u'studi'] [u'industri', u'relat', u'basket', u'case'] [u'worker', u'head', u'creditor', u'list', u'insolv'] [u'yushchenko', u'probabl', u'poison', u'govern'] [u'advoc', u'report', u'highlight', u'disabl', u'home', u'concern'] [u'alic', u'host', u'princ', u'chuck', u'buck'] [u'ord', u'finish', u'week', u'slight', u'higher'] [u'ancient', u'bone', u'provid', u'evolutionari', u'insight'] [u'anti', u'porn', u'group', u'attack', u'brothel', u'plan'] [u'artist', u'touch', u'turn', u'central', u'park', u'gold'] [u'riewoldt', u'lead', u'saint'] [u'aussi', u'dollar', u'hit', u'high'] [u'aust', u'congratul', u'charl', u'camilla'] [u'australia', u'japan', u'consid', u'free', u'trade', u'agreement'] [u'author', u'press', u'concern', u'write'] [u'baldrick', u'want', u'blackadd', u'comeback'] [u'beatti', u'aim', u'shoot', u'chelsea'] [u'beatti', u'defend', u'blue', u'card', u'child', u'arrest'] [u'bellami', u'doubl', u'blast', u'critic'] [u'blair', u'brown', u'kick', u'elect', u'campaign'] [u'brack', u'see', u'victori', u'fair', u'navi', u'tender', u'process'] [u'breaker', u'women', u'final'] [u'brisban', u'rock', u'missionari', u'plan', u'return', u'trip', u'libya'] [u'offer', u'solut', u'spread', u'dengu'] [u'bulk', u'bill', u'hit', u'half', u'year', u'high'] [u'busi', u'want', u'replac', u'ax', u'advisori'] [u'busi', u'group', u'seek', u'action', u'skill', u'tasmanian'] [u'camden', u'hospit', u'matern', u'ward', u'downgrad'] [u'canberra', u'bushfir', u'inquest', u'farc'] [u'gippsland', u'murder', u'probe'] [u'centr', u'warn', u'whoop', u'cough', u'complac'] [u'chang', u'allow', u'pension', u'cheaper', u'region', u'rail'] [u'charg', u'drop', u'assault', u'accus'] [u'charg', u'recommend', u'camden', u'hospit', u'babi', u'death'] [u'charl', u'camilla', u'public', u'appear'] [u'chest', u'injuri', u'like', u'davico', u'career'] [u'child', u'support', u'agenc', u'reject', u'anti', u'claim'] [u'chinchilla', u'prepar', u'melon', u'mad'] [u'citrus', u'grower', u'welcom', u'canker', u'relief', u'packag'] [u'citi', u'wreck', u'unit', u'titl', u'hop'] [u'clarenc', u'valley', u'polic', u'consid', u'industri', u'action'] [u'execut', u'seat', u'iraq', u'claim'] [u'comment', u'seek', u'orang', u'revamp'] [u'commonwealth', u'reveal', u'canker', u'deal'] [u'communiti', u'input', u'seek', u'updat', u'educ', u'law'] [u'compani', u'pump', u'million'] [u'concert', u'take', u'sting', u'tsunami', u'impact'] [u'contamin', u'concern', u'prompt'] [u'corbi', u'urg', u'judg', u'view', u'airport', u'video', u'footag'] [u'coron', u'find', u'patient', u'overdos', u'death', u'prevent'] [u'coron', u'question', u'polic', u'cell', u'fund'] [u'costello', u'rubber', u'stamp', u'takeov'] [u'council', u'form', u'brothel', u'develop', u'agreement'] [u'council', u'launch', u'recycl', u'centr'] [u'council', u'ponder', u'rat', u'relief', u'plan'] [u'council', u'seek', u'fund', u'match', u'tourism', u'growth'] [u'council', u'polic', u'concern', u'govt'] [u'council', u'beat', u'bellambi', u'resolut'] [u'courtney', u'love', u'legal', u'saga', u'end'] [u'crespo', u'strike', u'fail', u'dampen', u'german', u'optim'] [u'croc', u'coach', u'highlight', u'shortcom'] [u'dajka', u'sprint'] [u'defenc', u'contract', u'promis', u'riverina', u'murray', u'busi'] [u'delay', u'mackay', u'water', u'scheme'] [u'dept', u'defend', u'immigr', u'raid', u'conduct'] [u'disabl', u'servic', u'strike', u'continu', u'despit', u'talk'] [u'dive', u'accid', u'victim', u'speedier', u'legal', u'process'] [u'dog', u'terror', u'battl'] [u'downer', u'urg', u'north', u'korea', u'return', u'talk'] [u'driver', u'jail', u'road', u'rage', u'incid'] [u'driver', u'prais', u'naracoort', u'crash'] [u'england', u'learn', u'curv', u'slipperi', u'slope'] [u'england', u'franc', u'longer', u'game', u'town'] [u'english', u'rugbi', u'link', u'swoop', u'leagu', u'superstar'] [u'environ', u'dept', u'happi', u'dust', u'control', u'effort'] [u'child', u'star', u'claim', u'jackson', u'show', u'nude', u'photo'] [u'springbok', u'skipper', u'krige', u'quit'] [u'fail', u'build', u'firm', u'sack', u'worker'] [u'farm', u'group', u'want', u'road', u'rent', u'rethink'] [u'fasth', u'lead', u'open'] [u'fear', u'hold', u'bird', u'coloni', u'leak'] [u'feder', u'fund', u'indigen', u'student', u'digit'] [u'fiji', u'armi', u'withdraw', u'secur'] [u'kill', u'north', u'west', u'iran'] [u'flotilla', u'get', u'wooden', u'boat', u'festiv'] [u'detect', u'stand', u'werriwa'] [u'satellit', u'group', u'jail', u'year'] [u'fund', u'turn', u'scientist', u'idea', u'busi'] [u'general', u'properti', u'trust', u'post', u'profit'] [u'gibson', u'soften', u'passion', u'easter', u'releas'] [u'govt', u'unveil', u'smoke', u'report'] [u'habib', u'fear', u'harass', u'campaign', u'break'] [u'hackett', u'readi', u'world'] [u'hayden', u'look', u'form', u'lehmann', u'leav', u'hop'] [u'hayden', u'strike'] [u'health', u'author', u'issu', u'legionnair', u'alert'] [u'hemp', u'diet', u'alpin', u'cow'] [u'herbal', u'extract', u'effect', u'remedi', u'depress'] [u'high', u'indigen', u'jail', u'rate', u'worri', u'legal', u'servic'] [u'hindu', u'fundamentalist', u'damag', u'test', u'pitch'] [u'hitler', u'mail', u'get'] [u'hoax', u'victim', u'rey', u'say', u'happi', u'arsenal'] [u'hotel', u'manag', u'murder', u'victim', u'asian'] [u'hous', u'figur', u'lend', u'weight', u'rate'] [u'howard', u'admit', u'habib', u'allow', u'sell', u'stori'] [u'howard', u'eye', u'budget', u'line'] [u'consid', u'pakistan', u'plea', u'neutral', u'umpir'] [u'indian', u'pakistani', u'govern', u'decid', u'test'] [u'inform', u'tell', u'underworld', u'trial', u'reloc', u'deal'] [u'home', u'meter', u'trial', u'seek', u'power', u'usag'] [u'injur', u'odriscol', u'ireland', u'face', u'scot'] [u'injur', u'seag', u'prepar', u'knight', u'return'] [u'inquest', u'prompt', u'safeti', u'recommend'] [u'inquiri', u'probe', u'school', u'safeti'] [u'board', u'call', u'vice', u'presid', u'expuls'] [u'iraq', u'alleg', u'smear', u'xstrata', u'takeov'] [u'iraq', u'group', u'demand', u'itali', u'pullout', u'save', u'hostag'] [u'isra', u'financ', u'minist', u'netanyahu', u'target'] [u'jail', u'robber', u'aim', u'babi'] [u'januari', u'memo', u'warn', u'bush', u'qaeda', u'threat'] [u'judg', u'clarifi', u'court', u'backlog', u'caus'] [u'justic', u'question', u'valid', u'bushfir', u'inquest'] [u'kasper', u'peg', u'warrior'] [u'kidman', u'photograph', u'tell', u'settl', u'court'] [u'kidman', u'reach', u'agreement', u'photograph'] [u'kyoto', u'protocol', u'come', u'forc'] [u'launceston', u'administr', u'explor', u'legal', u'action'] [u'say', u'rotat', u'polici', u'doesnt', u'work'] [u'liber', u'canal', u'plan', u'boost', u'pilbara', u'industri'] [u'local', u'knowledg', u'boost', u'wetland', u'conserv'] [u'life', u'thiev', u'plunder', u'victim', u'properti'] [u'number', u'order', u'open'] [u'luxuri', u'yacht', u'owner', u'reunit'] [u'magnetit', u'geraldton', u'pellet', u'plant'] [u'charg', u'drug'] [u'face', u'court', u'polic', u'pursuit'] [u'mayor', u'consid', u'pool', u'prospect'] [u'mcginti', u'promis', u'fund', u'surgeri', u'wait', u'list'] [u'mcgradi', u'talk', u'industri', u'area'] [u'mental', u'ill', u'overwhelm', u'prison', u'system'] [u'crew', u'battl', u'second', u'glass', u'factori'] [u'microsoft', u'pfizer', u'tackl', u'fake', u'viagra', u'sale'] [u'minist', u'heed', u'cerebr', u'palsi', u'suffer', u'plea'] [u'mix', u'news', u'zone', u'farmer'] [u'montreal', u'swim', u'world'] [u'mosley', u'blame', u'ferrari', u'rival', u'rubbish'] [u'moot', u'chang', u'oath'] [u'seek', u'stop', u'asbesto', u'tsunami'] [u'gambier', u'shortag', u'investig'] [u'murder', u'sentenc', u'outrag', u'victim', u'children'] [u'nasa', u'debat', u'space', u'shuttl', u'flight', u'repair'] [u'nation', u'leader', u'back', u'wind', u'farm', u'plan'] [u'nation', u'parti', u'plan', u'dead', u'buri'] [u'nation', u'seek', u'region', u'ambul', u'fund'] [u'nevill', u'queri', u'sponsor', u'anti', u'racism', u'motiv'] [u'newcastl', u'secur', u'jetstar', u'mainten', u'deal'] [u'staff', u'boost', u'cancer', u'support'] [u'kill', u'baghdad', u'bakeri', u'attack'] [u'ombudsman', u'analys', u'handl', u'sexual', u'assault'] [u'nation', u'candid', u'fight', u'indigen'] [u'opposit', u'reject', u'canal', u'link'] [u'pakistan', u'flash', u'flood', u'leav', u'dead'] [u'palm', u'island', u'member', u'urg', u'join', u'liber'] [u'patient', u'leav', u'emerg', u'ward', u'care'] [u'plan', u'age', u'care', u'facil', u'reveal'] [u'call', u'north', u'korea', u'bluff'] [u'polanski', u'win', u'right', u'testifi', u'video', u'british'] [u'polar', u'aviat', u'disput', u'casa', u'ground'] [u'polic', u'probe', u'fatal', u'hunter', u'crash'] [u'polic', u'releas', u'imag', u'bushfir', u'suspect'] [u'polic', u'seek', u'wit', u'toilet', u'attack'] [u'polic', u'seiz', u'chemic'] [u'port', u'author', u'deni', u'polit', u'involv'] [u'poultri', u'produc', u'fee'] [u'prawn', u'farm', u'redevelop', u'ahead', u'schedul'] [u'prize', u'win', u'embark'] [u'probe', u'launch', u'buderim', u'crash'] [u'public', u'help', u'seek', u'catch', u'serial', u'rapist'] [u'rann', u'hear', u'grape', u'grower', u'price', u'concern'] [u'record', u'breaker', u'pietersen', u'motiv', u'hostil'] [u'ref', u'ban', u'romp', u'train', u'camp'] [u'report', u'claim', u'sinn', u'fein', u'back', u'bank', u'raid'] [u'report', u'highlight', u'homeless', u'scheme', u'shortfal'] [u'rescu', u'chopper', u'decis', u'bring', u'disappoint'] [u'rey', u'eye', u'real'] [u'rivkin', u'associ', u'fin', u'insid', u'trade'] [u'rockhampton', u'hospit', u'servic', u'review'] [u'roddick', u'agassi', u'struggl', u'jose'] [u'rooney', u'want', u'world', u'centr', u'stage'] [u'russia', u'express', u'hope', u'north', u'korea', u'talk', u'resum'] [u'russia', u'iran', u'close', u'nuclear', u'agreement'] [u'sack', u'electr', u'worker', u'reflect', u'joh'] [u'safeti', u'statist', u'highlight', u'road', u'danger'] [u'schoolboy', u'steer', u'control', u'safeti'] [u'secur', u'firm', u'union', u'meet', u'industri'] [u'sept', u'warn', u'ignor', u'report'] [u'charg', u'magistr', u'drop'] [u'site', u'await', u'clear', u'chines', u'templ', u'work'] [u'snail', u'offer', u'astronaut', u'mental', u'support'] [u'somalia', u'vow', u'overcom', u'journalist', u'murder'] [u'pakistan', u'cricket', u'chief', u'eye', u'brisban'] [u'south', u'sign', u'faalogo', u'contract', u'extens'] [u'sport', u'figur', u'unit', u'eyr', u'peninsula'] [u'straight', u'talk', u'gillespi', u'dismiss', u'rotat'] [u'strong', u'red', u'line', u'tackl', u'crusad'] [u'suicid', u'bomb', u'shiit', u'mosqu', u'kill', u'iraqi'] [u'tape', u'add', u'weight', u'call', u'orang', u'council'] [u'teacher', u'arrest', u'child', u'porn', u'charg'] [u'teacher', u'union', u'wont', u'mandatori', u'child', u'abus'] [u'technolog', u'expo', u'benefit', u'disabl'] [u'telstra', u'talk', u'region', u'servic'] [u'thiev', u'target', u'farmer'] [u'thirti', u'fight', u'polic', u'station'] [u'togo', u'face', u'ultimatum', u'presid'] [u'trap', u'saltwat', u'crocodil', u'see', u'head', u'south'] [u'union', u'fear', u'hospit', u'witch', u'hunt', u'abus'] [u'union', u'seek', u'menstrual', u'leav', u'toyota', u'worker'] [u'mexico', u'captur', u'away', u'win', u'world'] [u'lawyer', u'convict', u'aid', u'terror'] [u'marin', u'charg', u'murder', u'iraqi'] [u'offer', u'guidelin', u'commerci', u'space', u'travel'] [u'virginia', u'withdraw', u'droopi', u'drawer'] [u'visit', u'bolster', u'albani', u'gallipoli', u'link'] [u'wall', u'street', u'trade', u'mix'] [u'nation', u'accus', u'tuckey', u'dirti', u'campaign'] [u'polit', u'parti', u'wari', u'takeov'] [u'warn', u'murali', u'help', u'lankan', u'tsunami', u'victim'] [u'warrior', u'bull'] [u'sell', u'decis', u'say', u'premier'] [u'water', u'legisl', u'spark', u'council', u'revenu', u'worri'] [u'waugh', u'back', u'india', u'pakistan'] [u'win', u'defenc', u'contract'] [u'western', u'council', u'fear', u'develop', u'restrict'] [u'wirrpunda', u'set', u'youth', u'foundat'] [u'sharehold', u'snub', u'xstrata', u'offer'] [u'work', u'begin', u'wharf', u'plan'] [u'work', u'condit', u'stress', u'baxter', u'guard', u'union'] [u'workcov', u'audit', u'find', u'littl', u'awar'] [u'worker', u'karumba', u'incent'] [u'yachtsman', u'packer', u'free', u'month'] [u'kill', u'attack', u'shiit'] [u'abba', u'urg', u'milit', u'abid', u'truce'] [u'absenc', u'tasmanian', u'famili', u'court', u'judg', u'caus'] [u'academ', u'fail', u'return', u'hobbit', u'bone'] [u'aceh', u'indonesia', u'peac', u'talk', u'head', u'second', u'round'] [u'actor', u'fail', u'drug', u'test', u'fake', u'peni'] [u'african', u'order', u'togo', u'compli', u'threaten', u'sanction'] [u'anger', u'talk', u'restart', u'bushfir', u'inquest'] [u'anna', u'win', u'battl', u'mear', u'sister'] [u'argentinian', u'prison', u'riot', u'leav', u'dead'] [u'australian', u'women', u'trail', u'world', u'lead'] [u'australia', u'wont', u'lobbi', u'china', u'arm', u'embargo'] [u'austria', u'melzer', u'upset', u'agassi', u'jose'] [u'blue', u'card', u'back', u'despit', u'arrest'] [u'bodi', u'charg', u'murder'] [u'broadbridg', u'widow', u'return', u'thailand'] [u'brumbi', u'chief'] [u'bulleen', u'wnbl', u'hop', u'flame'] [u'burger', u'avail', u'tsunami', u'match'] [u'burgess', u'set', u'pole', u'vault', u'record'] [u'burma', u'militari', u'leader', u'warn', u'colonialist'] [u'businessman', u'charg', u'firearm', u'offenc'] [u'review', u'compulsori', u'vote'] [u'canberra', u'prepar', u'multicultur', u'celebr'] [u'bomb', u'attack', u'kill', u'south', u'baghdad'] [u'cheri', u'blair', u'arriv', u'sydney', u'fundrais', u'tour'] [u'claim', u'homesick', u'send', u'doctor', u'home'] [u'execut', u'quit', u'iraq', u'remark'] [u'coastal', u'town', u'clash', u'coke', u'promot'] [u'cold', u'weather', u'claim', u'live', u'afghanistan'] [u'collector', u'cash', u'corni', u'quarter'] [u'congo', u'militia', u'forc', u'thousand', u'home'] [u'coupl', u'brace', u'kiss', u'record'] [u'court', u'rule', u'prison', u'releas'] [u'dutch', u'bring', u'sunb', u'rhino'] [u'elder', u'jail', u'molest', u'seven', u'year'] [u'elvstroem', u'triumph', u'superstar', u'field'] [u'farmer', u'plan', u'protest', u'greet', u'minist'] [u'ferrari', u'delay'] [u'fight', u'save', u'devil', u'step'] [u'arrest', u'servic', u'station', u'brawl'] [u'injur', u'hit', u'bystand'] [u'fourth', u'contract', u'legionnair', u'wollongong'] [u'french', u'polic', u'question', u'serena', u'stalker'] [u'french', u'polynesia', u'readi', u'poll'] [u'govt', u'bring', u'prescript', u'shop', u'hotlin'] [u'govt', u'extend', u'defenc', u'assist', u'bushfir', u'clean'] [u'govt', u'put', u'limit', u'coastal', u'high', u'rise', u'build'] [u'govt', u'roll', u'infrastructur', u'defenc', u'plan'] [u'green', u'group', u'oppos', u'propos', u'botani', u'treatment'] [u'gulpilil', u'releas', u'hospit', u'health', u'scare'] [u'gunmen', u'kill', u'senior', u'judg', u'southern', u'iraq'] [u'heavi', u'rain', u'pakistan', u'burst', u'dam'] [u'henri', u'blitz', u'field', u'pool', u'return'] [u'hobart', u'dock', u'swell', u'histor', u'boat', u'festiv'] [u'streak', u'lift', u'croc'] [u'india', u'race'] [u'indigen', u'communiti', u'band', u'conserv'] [u'indigen', u'youth', u'offer', u'swim', u'train'] [u'indonesian', u'navi', u'plan', u'fleet', u'expans'] [u'inform', u'seek', u'bash'] [u'investig', u'georgian', u'death'] [u'israel', u'exil', u'palestinian', u'milit', u'return'] [u'kean', u'quit', u'season'] [u'king'] [u'malaysian', u'offici', u'arrest', u'peopl', u'smuggl'] [u'die', u'crash', u'street', u'light'] [u'injur', u'brisban', u'plant', u'explos'] [u'mexican', u'report', u'hide', u'machin', u'attack'] [u'minist', u'defend', u'matern', u'ward', u'closur'] [u'canberran', u'servic'] [u'mugab', u'launch', u'zimbabw', u'elect', u'campaign'] [u'murali', u'chucker', u'warn'] [u'nation', u'museum', u'win', u'best', u'tourist', u'attract', u'award'] [u'neethl', u'continu', u'record', u'break'] [u'nepali', u'activist', u'hold', u'anti', u'king', u'protest', u'despit'] [u'opposit', u'urg', u'govt', u'action', u'rat'] [u'playwright', u'arthur', u'miller', u'die'] [u'polic', u'appeal', u'public', u'help', u'search'] [u'polic', u'arrest', u'internet', u'suicid', u'pact'] [u'polic', u'arrest', u'teen', u'attempt', u'murder'] [u'polic', u'charg', u'woman', u'pork', u'chop', u'assault'] [u'protea', u'seal', u'seri', u'rain', u'england', u'hop'] [u'protest', u'push', u'open', u'inquiri', u'detent'] [u'puerta', u'mow', u'seed', u'moya'] [u'rain', u'waterlog', u'venezuelan', u'state'] [u'redback', u'fall', u'short', u'despit', u'lehmann', u'half'] [u'redback', u'tame', u'tiger'] [u'rumsfeld', u'land', u'iraq', u'insurg', u'target', u'shiit'] [u'scottish', u'teen', u'murder', u'sentenc', u'year'] [u'script', u'drama', u'delay', u'eucalyptus', u'shoot'] [u'seven', u'hope', u'olymp', u'return'] [u'sexual', u'activ', u'queen', u'ant', u'enjoy', u'longer', u'life'] [u'spirit', u'level', u'women', u'cricket', u'final', u'seri'] [u'chief', u'join', u'raider', u'board'] [u'star', u'cricket', u'drop', u'asian', u'game'] [u'star', u'gather', u'british', u'film', u'award'] [u'student', u'enact', u'ride', u'indigen', u'freedom'] [u'swan', u'good', u'bomber'] [u'telstra', u'drop', u'lifelin', u'fund'] [u'togo', u'armi', u'kill', u'protest'] [u'troop', u'surround', u'rebel', u'southern', u'philippin'] [u'charg', u'palm', u'incid'] [u'troop', u'kill', u'vehicl', u'accid'] [u'ukrainian', u'presid', u'switzerland', u'check'] [u'union', u'boss', u'confirm', u'farrel', u'talk'] [u'unit', u'board', u'snub', u'latest', u'glazer', u'propos'] [u'refus', u'north', u'korea', u'demand', u'talk'] [u'stock', u'turn', u'higher'] [u'valentin', u'brand', u'cultur', u'corrupt'] [u'opposit', u'call', u'mental', u'health', u'fund'] [u'back', u'takeov'] [u'declar', u'farm', u'sector', u'powerhous'] [u'waratah', u'count', u'cost', u'trial', u'loss'] [u'warrior', u'bull'] [u'water', u'pollut', u'fear', u'curb', u'festiv', u'event'] [u'weather', u'devic', u'assist', u'pilot'] [u'wed', u'fever', u'cool', u'charl', u'camilla', u'retreat'] [u'wilson', u'open', u'seat'] [u'woman', u'hospit', u'stab'] [u'woman', u'lie', u'babi', u'toss'] [u'woolmer', u'face', u'umpir'] [u'worker', u'tool', u'asbesto', u'hospit'] [u'world', u'unit', u'fight', u'terror', u'rumsfeld', u'say'] [u'academ', u'disput', u'canal', u'price'] [u'collat', u'data', u'child', u'death'] [u'alic', u'spring', u'nurs', u'strike', u'loom'] [u'allardyc', u'hail', u'schwarzer', u'display'] [u'american', u'shoot', u'dead', u'brazil', u'amazon'] [u'anderson', u'ethanol', u'plant', u'grant'] [u'annan', u'rule', u'resign', u'food', u'scandal'] [u'record', u'mickelson', u'singh', u'miss'] [u'aussi', u'atkinson', u'sweden', u'ralli'] [u'aust', u'offici', u'wit', u'tortur', u'habib', u'say'] [u'australia', u'reach', u'seven', u'quarter'] [u'australia', u'singapor', u'discuss', u'open', u'sky', u'agreement'] [u'australia', u'women', u'world'] [u'barca', u'bounc'] [u'barnett', u'promis', u'tough', u'jail', u'sentenc'] [u'blair', u'renew', u'effort', u'persuad', u'climat'] [u'blanchett', u'win', u'best', u'support', u'actress', u'bafta'] [u'braveheart', u'founder', u'hand', u'paedophil', u'tape', u'polic'] [u'carr', u'reject', u'call', u'inquiri', u'hickey'] [u'china', u'push', u'round', u'north', u'korea', u'nuclear'] [u'chines', u'skier', u'extend', u'lead', u'ierodiaconou'] [u'church', u'damag', u'overnight', u'attack'] [u'coalit', u'infight', u'intensifi', u'labor'] [u'coastal', u'town', u'struggl', u'tidal', u'popul'] [u'cop', u'swoop', u'disgrac', u'german'] [u'costello', u'apologis', u'ordeal'] [u'crop', u'spray', u'review', u'second'] [u'cyclist', u'pedal', u'hobart'] [u'dead', u'ball', u'specialist', u'mihajlov', u'lift', u'inter'] [u'death', u'toll', u'rise', u'venezuela', u'rain'] [u'defo', u'brace', u'see', u'spur'] [u'effort', u'continu', u'protect', u'french', u'observatori'] [u'emerg', u'crew', u'clean', u'diesel', u'spill'] [u'england', u'webster', u'shoot', u'cours', u'record', u'open'] [u'farmer', u'confront', u'minist', u'charlevill'] [u'fasth', u'win', u'open', u'play'] [u'fear', u'collaps', u'ravag', u'huge', u'madrid'] [u'hurt', u'blast', u'hit', u'pari', u'theatr'] [u'injur', u'polic', u'chase', u'end', u'crash'] [u'franklin', u'lead', u'pirat', u'upset'] [u'gaudio', u'beat', u'martin', u'argentin', u'final'] [u'german', u'mark', u'anniversari', u'dresden'] [u'gough', u'doubt', u'england', u'final', u'dayer'] [u'govt', u'offer', u'public', u'inform', u'night'] [u'govt', u'support', u'random', u'drug', u'test', u'school'] [u'green', u'wont', u'prefer', u'labor', u'seat'] [u'gudjohnsen', u'fire', u'chelsea', u'point', u'clear'] [u'habib', u'unlik', u'passport', u'downer', u'say'] [u'haddin', u'put', u'blue', u'strong', u'posit'] [u'hall', u'win', u'australian', u'wheelchair', u'tenni', u'open'] [u'hama', u'promis', u'calm', u'ponder', u'ceas'] [u'hewitt', u'doubl', u'davi', u'fitzi'] [u'hill', u'admit', u'tortur', u'resist', u'train'] [u'human', u'rainbow', u'brighten', u'cancer', u'fundrais'] [u'human', u'remain', u'identifi'] [u'ill', u'hayden', u'doubt'] [u'india', u'mirza', u'make', u'tenni', u'histori'] [u'injuri', u'beset', u'black', u'cap'] [u'iran', u'refus', u'heavi', u'water', u'nuclear', u'reactor'] [u'ireland', u'surg', u'thump', u'scotland'] [u'israel', u'let', u'gaza', u'worker', u'cross', u'gestur'] [u'juri', u'select', u'start', u'jackson', u'case'] [u'knife', u'wield', u'want', u'attempt', u'robberi'] [u'labor', u'push', u'australia', u'join', u'kyoto', u'protocol'] [u'larg', u'central', u'madrid'] [u'lead', u'banker', u'downplay', u'rat', u'rise', u'fear'] [u'zeppelin', u'award', u'lifetim', u'achiev', u'grammi'] [u'lucki', u'hong', u'kong', u'tree', u'unlucki'] [u'arriv', u'britain', u'pakistan', u'charg'] [u'charg', u'attempt', u'murder'] [u'marcher', u'rememb', u'hickey'] [u'mauresmo', u'meet', u'safina', u'pari', u'final'] [u'mcgrath', u'macgil', u'victoria', u'final', u'hop'] [u'mear', u'continu', u'win'] [u'migrant', u'problem', u'domin', u'malaysia', u'indonesia'] [u'mine', u'propos', u'environment', u'scrutini'] [u'minist', u'hint', u'nation', u'teacher', u'train', u'inquiri'] [u'miss', u'woman', u'boot'] [u'nation', u'park', u'upgrad'] [u'neethl', u'finish', u'gold'] [u'netbal', u'enlist', u'union', u'push'] [u'note', u'provid', u'plain', u'english', u'version'] [u'opposit', u'call', u'action', u'surgeri', u'wait', u'list'] [u'pakistan', u'step', u'rescu', u'rain', u'casualti', u'mount'] [u'rule', u'workplac', u'rampag'] [u'polic', u'probe', u'babi', u'girl', u'death'] [u'polic', u'union', u'random', u'drug', u'test', u'offic'] [u'pope', u'call', u'iraqi', u'insurg', u'releas', u'hostag'] [u'pope', u'appear', u'sunday', u'angelus'] [u'star', u'christina', u'aguilera', u'engag', u'report'] [u'power', u'restor', u'perth', u'home'] [u'prso', u'put', u'ranger'] [u'govt', u'stand', u'firm', u'tree', u'clear'] [u'rain', u'humid', u'leav', u'thousand', u'power'] [u'rampant', u'wale', u'overwhelm', u'itali'] [u'refuge', u'prepar', u'sudan', u'return'] [u'rise', u'star', u'krogh', u'shin', u'canberra'] [u'roddick', u'meet', u'saulnier', u'jose', u'final'] [u'rossi', u'expect', u'tough', u'season'] [u'russia', u'urg', u'north', u'korea', u'remain', u'nuclear', u'talk'] [u'serbian', u'presid', u'make', u'landmark', u'visit', u'kosovo'] [u'teenag', u'recov', u'assault'] [u'teen', u'rape', u'victim', u'deni', u'special', u'exam', u'consider'] [u'telstra', u'chief', u'urg', u'board', u'successor'] [u'thiev', u'steal', u'firearm', u'hous'] [u'thousand', u'sail', u'australia', u'biggest', u'wooden'] [u'traffic', u'slow', u'trickl', u'nepal', u'rebel'] [u'treasur', u'ask', u'allow', u'super', u'hous', u'deposit'] [u'offic', u'assault', u'gold', u'coast', u'scuffl'] [u'unrest', u'shadow', u'french', u'polynesia', u'elect', u'result'] [u'warn', u'congo', u'crisi'] [u'upgrad', u'european', u'rocket', u'blast'] [u'democrat', u'vote', u'parti', u'chief'] [u'europ', u'agre', u'renew', u'secur', u'vow'] [u'fli', u'drone', u'iran', u'report'] [u'warn', u'drug', u'resist', u'strain'] [u'victoria', u'break', u'south', u'wale', u'spirit'] [u'victoria', u'break', u'south', u'waless', u'spirit'] [u'violenc', u'continu', u'iraq', u'await', u'elect', u'result'] [u'lead', u'nation', u'femal', u'execut'] [u'waratah', u'impress', u'crusad'] [u'welfar', u'reform', u'mobilis', u'russian'] [u'wodonga', u'babi', u'death', u'murder', u'investig'] [u'woman', u'stab', u'broomstick'] [u'zimbabwean', u'women', u'arrest', u'love', u'march'] [u'talk', u'ash', u'right'] [u'accident', u'caus', u'like', u'explos', u'pari'] [u'accus', u'bali', u'bomber', u'wife', u'remain', u'detent'] [u'milan', u'juve', u'sight'] [u'adelaid', u'princip', u'face', u'court', u'child', u'charg'] [u'deni', u'suggest', u'tokenist', u'propos'] [u'deni', u'token'] [u'agricultur', u'offici', u'seek', u'stop', u'spread', u'cane'] [u'alleg', u'chief', u'investig', u'air'] [u'anderson', u'examin', u'open', u'sky', u'request'] [u'atkinson', u'sweden', u'ralli'] [u'australia', u'brunei', u'sign', u'agreement', u'terror'] [u'australia', u'tsunami', u'death', u'toll', u'rise'] [u'author', u'investig', u'dead', u'fish', u'lachlan', u'river'] [u'bairnsdal', u'public', u'hous', u'list', u'continu', u'grow'] [u'bank', u'drag'] [u'barnett', u'target', u'region', u'train', u'strategi'] [u'control', u'resign'] [u'beatti', u'applaud', u'windorah', u'power', u'plant'] [u'beatti', u'call', u'palm', u'island', u'violenc'] [u'beatti', u'signal', u'chang', u'blue', u'card', u'law'] [u'beatti', u'wont', u'tree', u'clear', u'law'] [u'beirut', u'blast', u'hit', u'lebanes', u'motorcad'] [u'bell', u'western', u'derbi'] [u'blade', u'book', u'showdown', u'arsenal'] [u'blaze', u'damag', u'surfboard', u'shop'] [u'blaze', u'destroy', u'blackwat', u'caravan'] [u'drown', u'wheatbelt', u'farm'] [u'brack', u'track', u'despit', u'latest', u'poll'] [u'british', u'press', u'lash', u'hodger', u'bodger'] [u'british', u'report', u'kill', u'greek'] [u'brown', u'defend', u'decis', u'shun', u'senat', u'hear'] [u'brown', u'wag', u'anti', u'log', u'campaign', u'japan'] [u'brungl', u'fund', u'help', u'stop', u'sewag', u'problem'] [u'bundaberg', u'die', u'trail', u'bike', u'crash'] [u'bushrang', u'inconsist', u'season'] [u'busi', u'chamber', u'seek', u'geraldton', u'polic', u'boost'] [u'busi', u'look', u'chang', u'byron', u'parti', u'town', u'imag'] [u'cabinet', u'hear', u'ferri', u'recommend'] [u'cann', u'river', u'resid', u'ambul', u'assur'] [u'bomb', u'hit', u'central', u'beirut'] [u'crash', u'injur', u'trio'] [u'hit', u'supermarket'] [u'carr', u'overrid', u'sydney', u'speed', u'limit', u'plan'] [u'charlevill', u'step', u'wild', u'control', u'effort'] [u'chemic', u'biolog', u'attack', u'pose', u'real', u'danger', u'expert'] [u'chines', u'high', u'tech', u'espionag', u'grow'] [u'chopper', u'rescu', u'sick', u'ship'] [u'coalit', u'order', u'polici'] [u'coal', u'train', u'driver', u'walk'] [u'confer', u'focus', u'local', u'govt', u'merger'] [u'council', u'seek', u'public', u'feedback', u'bega', u'plan'] [u'council', u'face', u'hard', u'budget', u'decis'] [u'count', u'begin', u'french', u'polynesia', u'elect'] [u'cricket', u'boss', u'confirm', u'hayden', u'decis', u'today'] [u'croc', u'prove', u'good', u'breaker'] [u'cupid', u'arrow', u'hit', u'home', u'internet', u'studi'] [u'decis', u'loom', u'fibreboard', u'plant', u'futur'] [u'defenc', u'lawyer', u'want', u'polic', u'trial'] [u'demon', u'wait', u'play', u'list', u'request'] [u'dept', u'back', u'ruddock', u'denial', u'habib', u'tortur', u'claim'] [u'discard', u'recal', u'world'] [u'diseas', u'loom', u'pakistan', u'flood', u'kill'] [u'test', u'vindic', u'parent', u'tsunami', u'babi'] [u'dont', u'wast', u'time', u'drug', u'test', u'carr'] [u'drought', u'situat', u'eas', u'south', u'coast'] [u'effort', u'control', u'wasp', u'number'] [u'elect', u'balanc', u'french', u'polynesia'] [u'electr', u'rebat', u'boost', u'region', u'victoria'] [u'eucalyptus', u'film', u'delay', u'disappoint', u'local'] [u'expat', u'hail', u'elect', u'victori', u'iraq'] [u'expert', u'critic', u'hospit', u'woman', u'death'] [u'rooster', u'line', u'rabbitoh'] [u'famili', u'gather', u'hickey', u'memori', u'servic'] [u'farm', u'group', u'air', u'drought', u'worri'] [u'faulti', u'wire', u'spark', u'farm', u'suppli', u'blaze'] [u'feder', u'parliament', u'secur', u'upgrad', u'cost', u'million'] [u'fiat', u'billion', u'split'] [u'fifth', u'contract', u'legionnair', u'wollongong'] [u'shoot', u'shop', u'mall'] [u'fli', u'doctor', u'reject', u'meekatharra', u'pull', u'claim'] [u'archbishop', u'forc', u'offic', u'report'] [u'rugbi', u'leagu', u'player', u'illeg'] [u'face', u'court', u'hamilton', u'brawl'] [u'french', u'polynesian', u'poll'] [u'repriev', u'illeg', u'immigr', u'malaysia'] [u'gallop', u'open', u'drug', u'test', u'school'] [u'gallop', u'pledg', u'hospit', u'wait', u'list'] [u'gallop', u'promis', u'extra', u'wait', u'list'] [u'gaudio', u'clinch', u'second', u'titl', u'week'] [u'gippsland', u'port', u'slipway', u'upgrad'] [u'govt', u'commit', u'indigen', u'employ'] [u'govt', u'condemn', u'tortur'] [u'govt', u'defi', u'kyoto', u'ratif', u'call'] [u'govt', u'dark', u'habib', u'releas'] [u'govt', u'loos', u'truth', u'iraq', u'rudd', u'say'] [u'govt', u'urg', u'shift', u'fund', u'deer', u'park', u'bypass'] [u'grammi', u'honour', u'charl', u'prize'] [u'green', u'critic', u'xstrata', u'takeov', u'approv'] [u'habitat', u'caus', u'concern', u'endang', u'owl'] [u'hawk', u'dogfight', u'second', u'place'] [u'hayden', u'give', u'time', u'overcom', u'virus'] [u'hick', u'high', u'school', u'studi', u'guantanamo'] [u'highland', u'snowstorm', u'hit', u'celtic', u'game'] [u'hillari', u'clinton', u'receiv', u'german', u'media', u'prize'] [u'howard', u'await', u'report', u'consid', u'apolog'] [u'howard', u'talk', u'trade', u'zealand'] [u'husband', u'tell', u'away', u'wife', u'ordeal'] [u'illawarra', u'club', u'recognis', u'tsunami'] [u'indigen', u'student', u'complet', u'educ', u'local'] [u'inquiri', u'knock', u'jam', u'hardi', u'profit'] [u'internet', u'kill', u'video', u'store'] [u'islam', u'school', u'open', u'door'] [u'italian', u'foot', u'daytim', u'scooter'] [u'japan', u'take', u'women', u'world'] [u'johnson', u'look', u'crown'] [u'judg', u'uphold', u'mous', u'chew', u'fin'] [u'juri', u'dismiss', u'child', u'abus', u'trial'] [u'juri', u'visit', u'scene', u'worker', u'doubl', u'murder'] [u'koala', u'foundat', u'criticis', u'kangaroo', u'program'] [u'koala', u'sterilis', u'number', u'increas'] [u'labor', u'pledg', u'squad', u'region', u'citi'] [u'wit', u'fatima', u'apparit', u'die'] [u'leagu', u'player', u'sue', u'illeg', u'tackl'] [u'liber', u'sight', u'bendigo'] [u'licenc', u'chang', u'consid', u'curb', u'road', u'death'] [u'littl', u'show', u'vandal', u'reward'] [u'loretta', u'lynn', u'win', u'grammi', u'year'] [u'macedon', u'rang', u'council', u'oppos', u'poki'] [u'maker', u'illus', u'home', u'oscar'] [u'accus', u'steal', u'yacht', u'admit', u'mental'] [u'die', u'tare', u'hous', u'blaze'] [u'marin', u'park', u'plan', u'worri', u'aquacultur', u'aquarium'] [u'maroochi', u'mayor', u'withdraw', u'legal', u'threat'] [u'mcginti', u'criticis', u'opposit', u'plan', u'chang'] [u'mickelson', u'go', u'wire', u'wire', u'pebbl', u'beach'] [u'molik', u'wildcard', u'select', u'puzzl'] [u'molik', u'miss', u'qualifi'] [u'improv', u'plan', u'port', u'kembla'] [u'wollongong', u'patient', u'legionnair', u'symptom'] [u'mother', u'enter', u'mental', u'ill', u'plea', u'son', u'murder'] [u'moy', u'punish', u'beatti', u'galla', u'headbutt'] [u'want', u'servic', u'competit'] [u'newcastl', u'univers', u'signific', u'staff', u'cut'] [u'radar', u'improv', u'weather', u'forecast'] [u'zealand', u'claim', u'seven', u'titl'] [u'deadlin', u'chicken', u'fee'] [u'sign', u'port', u'hedland', u'croc'] [u'world', u'thorp'] [u'south', u'east', u'film', u'product', u'boost'] [u'korea', u'nuclear', u'weapon', u'state', u'seoul'] [u'nurs', u'group', u'chang', u'recognis', u'midwiferi'] [u'obstetrician', u'shortag', u'risk', u'live', u'doctor'] [u'offic', u'disciplin', u'jailbreak'] [u'shoot', u'shop', u'mall', u'york', u'state'] [u'pakistan', u'nawaz', u'fear', u'indian', u'spin', u'whitewash'] [u'palestinian', u'shoot', u'hebron'] [u'parti', u'negoti', u'iraq', u'govern'] [u'parti', u'urg', u'consid', u'rural', u'water', u'issu'] [u'perth', u'woman', u'jail', u'centrelink', u'fraud'] [u'petit', u'target', u'shack', u'ownership'] [u'urg', u'telstra', u'renew', u'lifelin', u'sponsorship', u'deal'] [u'polic', u'criticis', u'cage', u'transport'] [u'polic', u'examin', u'suspici', u'envelop'] [u'polic', u'identifi', u'float', u'bodi'] [u'polic', u'constitut'] [u'polic', u'motorcycl', u'accid', u'victim'] [u'polic', u'drug', u'bust', u'airport'] [u'polic', u'releas', u'photo', u'murder', u'victim', u'steal'] [u'polic', u'return', u'scene', u'kidnap'] [u'polic', u'seek', u'fatal', u'hous', u'wit'] [u'prais', u'aplenti', u'cross', u'border', u'bushfir', u'control'] [u'prefer', u'deal', u'spark', u'coalit', u'fight'] [u'public', u'ask', u'help', u'motel', u'bandit'] [u'public', u'help', u'seek', u'polic', u'attack'] [u'push', u'super', u'fund', u'deposit', u'home'] [u'question', u'rais', u'gallop', u'lower', u'hous', u'seat'] [u'racetrack', u'limit', u'underworld', u'figur'] [u'rag', u'bull', u'play', u'toothless', u'tiger'] [u'rain', u'littl', u'reliev', u'south', u'east', u'drought'] [u'rann', u'counter', u'attack', u'lucrat', u'navi', u'contract'] [u'ransom', u'pay', u'free', u'kidnap', u'woman'] [u'refuge', u'job', u'scheme', u'get', u'fund', u'boost'] [u'remot', u'communiti', u'vote'] [u'report', u'question', u'benefit', u'drug', u'test', u'school'] [u'right', u'group', u'issu', u'room', u'rental', u'warn'] [u'rise', u'stds', u'prompt', u'valentin', u'health', u'warn'] [u'riverina', u'farmer', u'seek', u'relief', u'fund'] [u'roddick', u'defend', u'jose', u'titl'] [u'stewart', u'final', u'win', u'grammi'] [u'ross', u'confirm', u'stawel', u'gift', u'return'] [u'rotari', u'number', u'fall', u'rural', u'victoria'] [u'ryan', u'voic', u'gippsland', u'wind', u'farm', u'opposit'] [u'saboteur', u'attack', u'pipelin', u'iraq'] [u'safina', u'upset', u'mauresmo', u'pari', u'titl'] [u'scientist', u'breed', u'life', u'endang', u'fish'] [u'secker', u'enter', u'winegrap', u'price', u'wrangl'] [u'seri', u'loss', u'give', u'fals', u'impress', u'vaughan'] [u'chechen', u'fighter', u'kill', u'russia', u'say'] [u'race', u'unrest', u'spark', u'arrest'] [u'snooker', u'chief', u'reject', u'sauci', u'chang'] [u'speed', u'hump', u'slow', u'polli'] [u'stanhop', u'say', u'court', u'bushfir', u'inquiri', u'comment'] [u'studi', u'warn', u'small', u'town', u'tourism', u'depend'] [u'sudan', u'criticis', u'darfur', u'intervent'] [u'supersub', u'owen', u'rescu', u'real'] [u'survey', u'expos', u'indigen', u'hous', u'woe'] [u'suspect', u'canker', u'expect', u'affect', u'area'] [u'swim', u'coach', u'play', u'russian', u'roulett'] [u'symond', u'hop', u'tour', u'zealand'] [u'symond', u'hop', u'tour'] [u'syria', u'deni', u'rendit'] [u'teen', u'arsonist', u'jail', u'bushfir'] [u'telstra', u'review', u'lifelin', u'pullout'] [u'terror', u'suspect', u'jack', u'thoma', u'grant', u'bail'] [u'thousand', u'flock', u'festival'] [u'southern', u'crash'] [u'injur', u'south', u'west', u'crash'] [u'tiger', u'claim', u'underdog'] [u'trade', u'hall', u'council', u'criticis', u'cut', u'bendigo'] [u'train', u'driver', u'strike'] [u'train', u'driver', u'meet', u'discus', u'speed', u'limit', u'plan'] [u'tribun', u'rule', u'allow', u'polar'] [u'tsunami', u'sap', u'african', u'food', u'say'] [u'uncertainti', u'remain', u'biomass', u'power', u'plant'] [u'meet', u'focus', u'financi', u'woe'] [u'union', u'reject', u'plan', u'teacher', u'train', u'inquiri'] [u'student', u'gear', u'week', u'kick'] [u'unit', u'hope', u'ruud', u'return'] [u'talk', u'seek', u'compromis', u'human', u'clone'] [u'soldier', u'kill', u'iraq', u'pipelin', u'ablaz'] [u'vanston', u'reject', u'farm', u'worker', u'card', u'plan'] [u'veteran', u'hope', u'heal', u'memori', u'wall', u'rift'] [u'volunt', u'firefight', u'pleas', u'meet', u'outcom'] [u'wagga', u'parent', u'celebr', u'quad', u'birth'] [u'walter', u'collaps', u'cast', u'doubt', u'tafe', u'cours'] [u'wind', u'take', u'clark', u'hill', u'plan'] [u'woman', u'boot', u'critic', u'condit'] [u'yacht', u'race', u'organis', u'close', u'boat', u'studi'] [u'yoga', u'help', u'gigg', u'beat', u'pain'] [u'arrest', u'goulburn', u'valley', u'immigr', u'raid'] [u'govt', u'defend', u'budget', u'credenti', u'surplus'] [u'opposit', u'seek', u'brief', u'feder'] [u'join', u'philippin', u'investig'] [u'hand', u'petit', u'reopen', u'hickey', u'inquest'] [u'aid', u'virus', u'hold', u'cancer', u'cure'] [u'amnesti', u'slam', u'govt', u'posit', u'trial'] [u'armi', u'cadet', u'declin', u'asbesto', u'exposur', u'counsel'] [u'arroyo', u'vow', u'crush', u'qaeda', u'group'] [u'arsenal', u'foreign', u'legion', u'palac', u'massacr'] [u'arsenal', u'foreign', u'legion', u'massacr', u'palac'] [u'asio', u'confirm', u'habib', u'hold', u'egypt'] [u'tri', u'advantag', u'rise', u'beatti'] [u'aust', u'post', u'christma', u'spirit', u'question'] [u'australia', u'brunei', u'agre', u'fight', u'terror'] [u'australia', u'return', u'hospit', u'indonesia'] [u'australia', u'abid', u'result', u'koubek', u'appeal'] [u'australia', u'urg', u'press', u'tortur', u'claim'] [u'bail', u'hear', u'cathol', u'cleric', u'adjourn'] [u'bald', u'hill', u'wind', u'farm', u'ahead', u'despit', u'protest'] [u'overnight', u'park', u'devonport', u'spot'] [u'beatti', u'open', u'palm', u'communiti', u'centr', u'despit'] [u'beazley', u'buoy', u'poll', u'rebound'] [u'bega', u'council', u'lift', u'jam', u'hardi'] [u'bell', u'skipper', u'docker'] [u'bendigo', u'bank', u'turn', u'profit'] [u'blame', u'game', u'emerg', u'brazil', u'beef'] [u'blogger', u'watch', u'journalist'] [u'brickbat', u'breakthrough', u'disput'] [u'briton', u'charg', u'bomb', u'plot'] [u'break', u'hill', u'anger', u'council', u'censorship'] [u'bureaucraci', u'hold', u'snowi', u'develop', u'mayor'] [u'call', u'public', u'probe', u'state', u'forest', u'log'] [u'camera', u'footag', u'fatal', u'assault', u'brisban'] [u'carr', u'disappoint', u'eucalyptus', u'delay'] [u'china', u'coal', u'blast', u'kill'] [u'chines', u'media', u'block', u'report', u'mine'] [u'coach', u'urg', u'caution', u'menzi', u'claim'] [u'cochlear', u'rais', u'profit', u'forecast'] [u'council', u'approv', u'north', u'wallarah', u'hous', u'plan'] [u'council', u'plan', u'servic', u'boundari', u'chang'] [u'council', u'say', u'exhibit', u'decis', u'censorship'] [u'council', u'eas', u'bite', u'pest', u'burden'] [u'court', u'fin', u'mackay', u'fishermen', u'breach'] [u'darl', u'down', u'ethanol', u'blend', u'fuel'] [u'death', u'put', u'polic', u'focus', u'speed', u'biker'] [u'democrat', u'propos', u'popul', u'shift'] [u'democrat', u'want', u'develop', u'candid'] [u'dept', u'pulp', u'chain', u'letter'] [u'disabl', u'group', u'seek', u'input', u'welfar', u'chang'] [u'evid', u'prompt', u'murder', u'plea', u'rethink'] [u'doubt', u'throw', u'qualiti', u'murder', u'tape'] [u'dust', u'trigger', u'librari', u'alarm'] [u'east', u'timor', u'want', u'spill', u'explan'] [u'link', u'blood', u'lead', u'level', u'smelter', u'licenc'] [u'european', u'court', u'back', u'activist', u'mclibel', u'case'] [u'councillor', u'stand', u'council'] [u'expert', u'look', u'fall', u'grape', u'price', u'impact'] [u'famili', u'minist', u'encourag', u'adopt', u'ralli'] [u'feasibl', u'studi', u'begin', u'chines', u'heritag', u'trail'] [u'feder', u'polic', u'discount', u'habib', u'tortur', u'claim'] [u'firm', u'face', u'action', u'healthier', u'cigarett'] [u'bodi', u'recov', u'afghan', u'crash'] [u'flatley', u'croft', u'sign', u'red', u'deal'] [u'flight', u'group', u'allow', u'gyroplan'] [u'foreign', u'invest', u'help', u'creat', u'charlevill', u'job'] [u'forest', u'compani', u'fibreboard', u'plant', u'remain', u'open'] [u'leagu', u'player', u'say', u'illeg', u'tackl'] [u'minster', u'defend', u'adelaid', u'shipbuild'] [u'franc', u'protest', u'villawood', u'detent', u'bungl'] [u'friend', u'testifi', u'woman', u'murder'] [u'fund', u'avail', u'protect', u'promot'] [u'fund', u'earmark', u'classroom', u'acoust'] [u'relief', u'measur', u'eyr', u'peninsula'] [u'futur', u'look', u'posit'] [u'shortag', u'hamper', u'tissu', u'product'] [u'gippsland', u'record', u'bulk', u'bill', u'boost'] [u'gladston', u'council', u'put', u'wrong'] [u'govt', u'accus', u'break', u'famili', u'elect', u'promis'] [u'govt', u'claim', u'strong', u'support', u'learner', u'driver', u'law'] [u'govt', u'join', u'council', u'bilbi', u'save', u'effort'] [u'govt', u'pressur', u'australian', u'hold', u'iraq'] [u'govt', u'respond', u'age', u'care', u'abus', u'claim'] [u'govt', u'say', u'coalit', u'confus', u'polic', u'station'] [u'govt', u'shell', u'bundaberg', u'turtl', u'centr', u'fund'] [u'govt', u'urg', u'address', u'region', u'obstetr', u'woe'] [u'govt', u'forc', u'telstra', u'cover', u'lifelin', u'cost'] [u'govt', u'urg', u'rethink', u'psych', u'patient', u'hospit', u'care'] [u'green', u'prepar', u'distanc', u'beyer'] [u'green', u'identifi', u'wrong', u'detent', u'case'] [u'green', u'want', u'uranium', u'mine'] [u'green', u'weigh', u'beyer', u'mind'] [u'offer', u'outlet', u'meekatharra', u'youth'] [u'hawk', u'join', u'mourner', u'businessman', u'funer'] [u'hayden', u'clear', u'tour'] [u'hayden', u'confid', u'pass', u'medic'] [u'health', u'council', u'back', u'parti'] [u'hibbert', u'name', u'leagu', u'star'] [u'hill', u'deni', u'australian', u'interrog', u'iraqi'] [u'hinchcliff', u'deni', u'wrongdo', u'contact'] [u'hodg', u'name', u'centr', u'bronco', u'trial'] [u'hornbi', u'lead', u'dragon', u'chariti', u'shield'] [u'howard', u'confid', u'lib', u'poll'] [u'hutchison', u'upbeat', u'despit', u'loss'] [u'hothead', u'say', u'rooney'] [u'indigen', u'communiti', u'interest', u'statehood'] [u'indigen', u'group', u'seek', u'altern', u'atsic'] [u'insect', u'levi', u'sting', u'dairi', u'farmer'] [u'investig', u'launch', u'shoot', u'death'] [u'israel', u'plan', u'west', u'bank', u'settlement'] [u'jackson', u'lawyer', u'reveal', u'star', u'stud', u'wit', u'list'] [u'kean', u'hint', u'retir', u'rethink'] [u'kewel', u'return', u'action', u'liverpool'] [u'labor', u'backbench', u'deni', u'power', u'rebat', u'stunt'] [u'labor', u'give', u'condit', u'back', u'uranium', u'export'] [u'labor', u'welcom', u'mcgauran', u'turn', u'public', u'fund'] [u'landmark', u'build', u'sell'] [u'land', u'kill', u'busi', u'opposit'] [u'langer', u'help', u'tsunami', u'relief'] [u'latest', u'australian', u'tsunami', u'victim', u'identifi'] [u'lawyer', u'deni', u'habib', u'kidnap', u'stori'] [u'leader', u'wish'] [u'lebanes', u'armi', u'mobilis', u'hariri', u'assassin'] [u'lebanes', u'mourn', u'death'] [u'hungri', u'test', u'return'] [u'lifelin', u'confid', u'mackay', u'servic', u'continu'] [u'lifelin', u'offer', u'assur', u'amidst', u'fund', u'doubt'] [u'lifelin', u'phone', u'counsel', u'continu', u'despit'] [u'lifelin', u'break', u'hill', u'door', u'open'] [u'local', u'govt', u'group', u'seek', u'better', u'region', u'public'] [u'lyle', u'cherish', u'moment', u'return'] [u'lyle', u'cherish', u'moment', u'return'] [u'mackay', u'resid', u'urg', u'report', u'park', u'vandal'] [u'macquari', u'buy', u'shop', u'centr'] [u'charg', u'illeg', u'weapon', u'seizur'] [u'maryborough', u'wont', u'enforc', u'smoke', u'law'] [u'mauresmo', u'leap', u'second', u'molik', u'hold'] [u'see', u'benefit', u'train', u'pledg'] [u'media', u'retail', u'stock', u'drive', u'market'] [u'meninga', u'deni', u'assault', u'charg'] [u'owner', u'promis', u'reduc', u'nois', u'dust', u'impact'] [u'mobil', u'phone', u'person', u'music', u'devic'] [u'mokbel', u'stand', u'trial', u'drug', u'traffic', u'charg'] [u'molik', u'absenc', u'problem', u'say', u'stosur'] [u'test', u'hold', u'fish', u'kill', u'site'] [u'defend', u'immigr', u'raid'] [u'reject', u'hospit', u'crisi', u'claim'] [u'urg', u'reef'] [u'museum', u'ditch', u'thylacin', u'clone', u'project'] [u'organ', u'come', u'embryo', u'studi'] [u'break', u'promis', u'famili', u'benefit', u'scullion'] [u'prosecut', u'ethanol', u'tank', u'blast'] [u'resolut', u'devaugh', u'subcontractor', u'wrangl'] [u'northern', u'airport', u'sale', u'boost', u'southern', u'link'] [u'like', u'corporatis', u'state', u'forest', u'carr'] [u'polic', u'warn', u'complac'] [u'ombudsman', u'investig', u'aborigin', u'youth'] [u'plane', u'crash', u'victim', u'farewel', u'adelaid'] [u'occi', u'retir', u'season'] [u'opposit', u'call', u'jail', u'smoke'] [u'opposit', u'deni', u'stall', u'crimin', u'neglect'] [u'opposit', u'question', u'rail', u'project'] [u'parliament', u'delay', u'businessman', u'funer'] [u'parti', u'call', u'address', u'aborigin', u'issu'] [u'parti', u'reject', u'xstrata', u'licenc'] [u'pirat', u'franklin', u'captur', u'week', u'best', u'award'] [u'quiet', u'iraq', u'abus', u'claim'] [u'urg', u'answer', u'iraq', u'interrog', u'claim'] [u'poki', u'maker', u'unveil', u'merger', u'plan', u'loss'] [u'polic', u'dont', u'consid', u'armidal', u'death', u'suspici'] [u'polic', u'hold', u'fear', u'miss', u'tourist'] [u'polic', u'pleas', u'justic', u'precinct', u'plan'] [u'polic', u'probe', u'death', u'boot', u'case'] [u'polic', u'seek', u'help', u'miss'] [u'polic', u'union', u'threaten', u'action', u'disarm', u'plan'] [u'port', u'stephen', u'look', u'develop', u'preced'] [u'poultri', u'produc', u'rethink', u'fee'] [u'privat', u'health', u'insur', u'year', u'high'] [u'prosecut', u'threat', u'deter', u'council', u'safeti'] [u'protest', u'shoot', u'dead', u'togo', u'ralli'] [u'public', u'deserv', u'answer', u'habib', u'beazley'] [u'public', u'help', u'seek', u'catch', u'eden', u'firebug'] [u'public', u'warn', u'internet', u'scam'] [u'quit', u'smoke', u'extend', u'life', u'hour'] [u'raaf', u'investig', u'fuel', u'tank', u'leak'] [u'rat', u'postpon', u'plan'] [u'regul', u'probe', u'leav', u'market', u'flat'] [u'report', u'highlight', u'council', u'administr', u'cost'] [u'rfds', u'escap', u'airport', u'rise'] [u'roo', u'prim', u'showdown', u'mentor', u'ead'] [u'ross', u'expect', u'peak', u'commonwealth', u'game'] [u'rspca', u'investig', u'death'] [u'sharehold', u'reap', u'reward', u'record', u'profit'] [u'shoaib', u'face', u'disciplinari', u'committe', u'india'] [u'hospit', u'pneumonia'] [u'parti', u'process', u'best', u'nuke', u'talk', u'downer'] [u'skipper', u'warn', u'sydney', u'hobart', u'arm', u'race'] [u'south', u'african', u'sheep', u'western'] [u'south', u'pacif', u'island', u'brace', u'twin', u'cyclon'] [u'springborg', u'demand', u'answer', u'energex', u'alleg'] [u'stosur', u'beat'] [u'studi', u'find', u'build', u'sit', u'unsaf'] [u'studi', u'find', u'north', u'western', u'farmer', u'vulner'] [u'summer', u'crop', u'boost', u'late', u'rain'] [u'coast', u'look', u'boost', u'visitor', u'number'] [u'sydney', u'expect', u'decis', u'york'] [u'sydney', u'unit', u'expect', u'decis', u'york'] [u'talk', u'continu', u'futur', u'walter', u'project'] [u'govt', u'reject', u'claim', u'inact', u'fibreboard'] [u'teenag', u'court', u'school', u'emerg'] [u'telfer', u'overcom', u'hurdl'] [u'tiger', u'assum', u'underdog', u'status'] [u'tiger', u'intent', u'restor', u'fight', u'spirit'] [u'treasur', u'uncov', u'dubious', u'account'] [u'truss', u'attack', u'canker', u'respons'] [u'line', u'boss', u'urg', u'speedi', u'decis', u'troubl'] [u'radio', u'suspend', u'burglari', u'stunt'] [u'union', u'reach', u'deal', u'walter', u'worker'] [u'union', u'manag', u'milk', u'disput'] [u'envoy', u'want', u'north', u'korea', u'nuclear', u'talk'] [u'float', u'peacekeep', u'plan', u'sudan'] [u'missil', u'shield', u'test', u'fail'] [u'soldier', u'kill', u'wound', u'iraq'] [u'vanston', u'defend', u'time', u'take', u'case'] [u'villawood', u'detaine', u'stage', u'hunger', u'strike', u'lobbi', u'group'] [u'water', u'author', u'clarifi', u'resign'] [u'water', u'prove', u'econom'] [u'uranium', u'limit', u'mine', u'gallop'] [u'waveaid', u'boost', u'chariti', u'coffer'] [u'westmar', u'resid', u'water', u'relief'] [u'wit', u'deni', u'offer', u'kill', u'drug', u'traffick'] [u'wollongong', u'record', u'suspect', u'legionnair'] [u'woman', u'die', u'truck', u'crash'] [u'academ', u'univers', u'financ', u'audit'] [u'accc', u'take', u'action', u'union', u'power', u'station'] [u'wont', u'chang', u'speed', u'law'] [u'adelaid', u'airport', u'mark', u'year', u'commerci'] [u'adelaid', u'host', u'climat', u'chang', u'confer'] [u'adler', u'plead', u'guilti', u'charg'] [u'alcohol', u'foundat', u'rais', u'bing', u'drink', u'concern'] [u'anglican', u'commiss', u'await', u'broom', u'school', u'land'] [u'annan', u'join', u'call', u'syria', u'leav', u'lebanon'] [u'armidal', u'rugbi', u'leagu', u'club', u'administr'] [u'armstrong', u'undecid', u'tour'] [u'asian', u'trade', u'talk', u'loom'] [u'australia', u'rank', u'second', u'shark', u'attack'] [u'austrian', u'friesach', u'sign', u'minardi'] [u'barnett', u'quiet', u'polici'] [u'bathurst', u'administr', u'hold', u'meet'] [u'beat', u'nalbandian', u'plead', u'colour', u'blind'] [u'boast', u'bumper', u'half', u'year', u'profit'] [u'fire', u'gender', u'debat'] [u'black', u'cap', u'fight'] [u'boe', u'unveil', u'long', u'rang', u'rival', u'airbus'] [u'bun', u'opposit', u'wan'] [u'bushfir', u'threaten', u'perth', u'home'] [u'jail', u'smoke', u'prompt', u'mix', u'reaction'] [u'campaign', u'protest', u'abort', u'fund'] [u'canberra', u'airport', u'expans', u'give', u'green', u'light'] [u'canberra', u'worker', u'report', u'highest', u'burnout', u'rate'] [u'boot', u'case', u'husband', u'girlfriend', u'hold'] [u'carey', u'reunit', u'pagan', u'carlton'] [u'steven', u'win', u'libel', u'case', u'british', u'paper'] [u'central', u'victoria', u'reflect', u'wednesday', u'fire'] [u'announc', u'perth', u'super', u'franchis'] [u'chariti', u'fin', u'asbesto', u'exposur'] [u'chines', u'rescuer', u'blast', u'survivor'] [u'clijster', u'make', u'light', u'work', u'comeback', u'match'] [u'club', u'expans', u'promis', u'thing', u'alburi'] [u'coalit', u'prefer', u'emerg'] [u'coastwatch', u'council', u'discuss', u'code', u'conduct'] [u'collingwood', u'leav', u'experi'] [u'council', u'await', u'resort', u'develop', u'applic'] [u'council', u'face', u'tender', u'process', u'question'] [u'councillor', u'push', u'wind', u'farm', u'rat'] [u'council', u'stay', u'clear', u'sunday', u'trade', u'debat'] [u'council', u'urg', u'stay', u'art', u'issu'] [u'court', u'hear', u'worker', u'throw', u'river', u'aliv'] [u'court', u'tell', u'tree', u'like', u'surviv', u'resort', u'plan'] [u'coward', u'bouncer', u'jail', u'hotel', u'attack'] [u'crow', u'cock', u'record', u'enrag', u'neighbour'] [u'cruis', u'passeng', u'break', u'bone', u'land', u'itali'] [u'custom', u'seiz', u'counterfeit', u'good', u'shipment'] [u'defenc', u'chief', u'share', u'abus', u'concern'] [u'dengu', u'death', u'toll', u'timor', u'climb'] [u'dental', u'group', u'push', u'fluorid'] [u'develop', u'team', u'north', u'coast', u'issu'] [u'disabl', u'appoint', u'rais', u'opposit', u'worri'] [u'doctor', u'stabl', u'frail'] [u'dollar', u'gain', u'rate', u'rise', u'specul', u'academ'] [u'doubt', u'cast', u'toll', u'road', u'contract', u'chang'] [u'appeal', u'terror', u'suspect', u'bail'] [u'earthquak', u'shake', u'tokyo', u'peopl', u'hurt'] [u'australian', u'interview', u'iraqi'] [u'elder', u'attack', u'home'] [u'england', u'readi', u'ash', u'trescothick'] [u'approv', u'mirambeena', u'rezon'] [u'etoo', u'retain', u'african', u'footbal', u'year', u'titl'] [u'fallon', u'flag', u'possibl', u'retir'] [u'famili', u'tsunami', u'death'] [u'famili', u'polic', u'boy', u'tell', u'reloc'] [u'famili', u'farewel', u'tsunami', u'victim'] [u'feder', u'polic', u'examin', u'wentworth', u'briberi', u'claim'] [u'finegan', u'join', u'burk', u'newcastl'] [u'finger', u'cross', u'hayden', u'pont'] [u'firebug', u'blame', u'perth', u'blaze'] [u'fisher', u'await', u'abrolho', u'island', u'camp', u'leas'] [u'fix', u'german', u'match', u'replay'] [u'forecast', u'factor', u'rat', u'rise'] [u'isra', u'soldier', u'win', u'aust', u'prize'] [u'tour', u'chief', u'warn', u'modern', u'gear', u'threaten'] [u'fund', u'boost', u'environ', u'project'] [u'fundrais', u'ahead', u'despit', u'sponsorship', u'woe'] [u'gallop', u'deni', u'turn', u'elector'] [u'garden', u'pest', u'threaten', u'bushland'] [u'german', u'say', u'penguin', u'stay'] [u'govern', u'offici', u'tell', u'avoid', u'hariri', u'funer'] [u'govt', u'defend', u'decis', u'detain', u'korean', u'woman'] [u'govt', u'expect', u'decid', u'airport', u'expans', u'plan'] [u'govt', u'extend', u'life', u'ferri', u'servic'] [u'govt', u'offer', u'shortag', u'assur'] [u'govt', u'take', u'step', u'open', u'sky', u'polici'] [u'govt', u'heavi', u'hand', u'approach'] [u'govt', u'urg', u'apologis', u'mistreat', u'armi', u'cadet'] [u'grape', u'grower', u'group', u'unhappi', u'price', u'result'] [u'green', u'group', u'ralli', u'support', u'kyoto', u'protocol'] [u'group', u'find', u'potenti', u'export', u'increas'] [u'guilti', u'plea', u'end', u'adler', u'investig'] [u'helmet', u'save', u'teen', u'shredder', u'mishap'] [u'hill', u'confirm', u'defenc', u'contract', u'adelaid', u'compani'] [u'hill', u'face', u'question', u'iraq'] [u'hill', u'stand', u'firm', u'interrog', u'disput'] [u'hop', u'fade', u'miss', u'miner', u'china'] [u'howard', u'attend', u'gallipoli', u'dawn', u'servic'] [u'hockey', u'leagu', u'face', u'shutdown', u'salari'] [u'india', u'pakistan', u'ahead'] [u'industri', u'group', u'back', u'call', u'import', u'skill'] [u'inquest', u'hear', u'dead', u'teenag', u'take', u'speed'] [u'inquest', u'hear', u'rail', u'cross', u'risk', u'take'] [u'inquest', u'tell', u'mother', u'poison', u'newborn'] [u'jackson', u'hospitalis'] [u'jackson', u'sign', u'capit', u'deal'] [u'japanes', u'economi', u'slide', u'recess'] [u'job', u'brick', u'plant', u'close'] [u'justic', u'complex', u'subcontractor', u'return', u'work'] [u'katter', u'seek', u'airport', u'explan'] [u'khmer', u'man', u'sentenc', u'stand', u'backpack', u'murder'] [u'kimberley', u'pilbara', u'candid', u'debat', u'issu'] [u'law', u'price', u'order', u'apologis'] [u'leav', u'dragway', u'head', u'autumn', u'legisl', u'program'] [u'lebanes', u'rest'] [u'legendari', u'spider', u'turn', u'fossil'] [u'leighton', u'hold', u'predict', u'healthi', u'result'] [u'lennon', u'defend', u'govt', u'poll', u'result'] [u'lifelin', u'pleas', u'telstra', u'fund', u'outcom'] [u'local', u'govt', u'group', u'continu', u'water', u'land', u'separ'] [u'luczak', u'shock', u'seed', u'gonzalez'] [u'hurt', u'grape', u'harvest', u'mishap'] [u'mayor', u'tweed', u'council', u'inquiri'] [u'mayor', u'reject', u'visitor', u'centr', u'sale', u'claim'] [u'medibank', u'cut', u'cost', u'patient', u'hospit', u'group'] [u'medic', u'tribun', u'consid', u'year', u'old', u'death'] [u'melbourn', u'apart', u'plan', u'reject'] [u'year', u'report', u'prompt', u'mini', u'budget', u'call'] [u'minist', u'distanc', u'director', u'general'] [u'seek', u'rail', u'freight', u'price'] [u'mourner', u'farewel', u'lebanes'] [u'ralli', u'howard', u'interrog', u'claim'] [u'help', u'form', u'palm', u'liber', u'parti', u'branch'] [u'urg', u'pneumococc', u'shot'] [u'mudge', u'park', u'smoker', u'face', u'fin'] [u'murray', u'entitl', u'rumour', u'spark', u'irrig', u'worri'] [u'nelson', u'corpor', u'parti'] [u'netbal', u'australia', u'stress', u'commit', u'player'] [u'north', u'west', u'identifi', u'child', u'abus'] [u'doctor', u'forc', u'surgeri', u'cancel'] [u'speed', u'fin', u'drop'] [u'wait', u'indigen', u'educ', u'scheme'] [u'oberon', u'take', u'look', u'fluorid'] [u'occi', u'readi', u'cold', u'turkey', u'surf'] [u'opposit', u'criticis', u'council', u'boundari', u'review'] [u'orchard', u'owner', u'await', u'canker', u'confirm'] [u'discoveri', u'add', u'shine', u'silver', u'citi'] [u'pay', u'weekend', u'park', u'delay', u'market', u'open'] [u'pair', u'face', u'charg', u'boot', u'case'] [u'palm', u'mayor', u'say', u'beatti', u'welcom', u'mourn'] [u'palm', u'pest', u'prove', u'problemat', u'north', u'coast'] [u'passer', u'quiz', u'woman', u'boot', u'investig'] [u'pastoralist', u'plan', u'kimberley', u'meatwork'] [u'pietersen', u'good', u'england', u'tour'] [u'defend', u'region', u'rail', u'grant'] [u'polic', u'charg', u'teen', u'gold', u'coast', u'man', u'murder'] [u'polic', u'hunt', u'pair', u'runcorn', u'school', u'blaze'] [u'polic', u'oper', u'spark', u'racist', u'claim'] [u'polic', u'probe', u'mountain', u'creek', u'stab'] [u'polic', u'transport', u'case', u'caus', u'procedur'] [u'popov', u'confirm', u'retir'] [u'power', u'station', u'reloc', u'improv', u'suppli'] [u'pregnant', u'women', u'prefer', u'healthi'] [u'pressur', u'remain', u'australia', u'kyoto', u'take', u'effect'] [u'psychiatrist', u'see', u'sign', u'habib', u'tortur'] [u'public', u'ask', u'help', u'catch', u'killer'] [u'public', u'outcri', u'stop', u'biosolid', u'storag', u'trial'] [u'public', u'vote', u'chang'] [u'push', u'second', u'kakadu', u'uranium'] [u'push', u'drive', u'flood', u'causeway'] [u'govt', u'label', u'incompet', u'coal', u'port'] [u'rail', u'industri', u'seek', u'nation', u'strategi'] [u'cross', u'allay', u'tsunami', u'donat', u'concern'] [u'reef', u'fisheri', u'closur', u'help', u'avail'] [u'report', u'find', u'speed', u'factor', u'tilt', u'train', u'crash'] [u'rescuer', u'send', u'strand', u'whale'] [u'rilli', u'sign', u'year', u'croc', u'deal'] [u'robinval', u'fluorid', u'plan', u'ahead'] [u'ronaldinho', u'etoo', u'turn', u'style', u'tsunami'] [u'rspca', u'duck', u'plant', u'probe', u'find'] [u'sand', u'excav', u'prove', u'cost'] [u'santo', u'share', u'slump', u'revel'] [u'pressur', u'higher', u'renew', u'energi', u'target'] [u'scallop', u'season', u'chang', u'boost', u'shark', u'catch'] [u'school', u'busi', u'close', u'cyclon', u'olaf', u'approach'] [u'scientist', u'consid', u'global', u'tsunami', u'warn'] [u'scud', u'fit', u'cloud'] [u'scud', u'warn', u'shape'] [u'senat', u'examin', u'approv', u'beef', u'import'] [u'sharon', u'determin', u'complet', u'gaza', u'pullout'] [u'shiit', u'firm', u'iraqi'] [u'sign', u'kyoto', u'virtual', u'worthless'] [u'smelter', u'commit', u'cut', u'blood', u'lead', u'level'] [u'speed', u'fin', u'put', u'focus', u'safeti'] [u'state', u'forest', u'fear', u'follow', u'corporatis'] [u'strike', u'indonesian', u'fisherman', u'send', u'jail'] [u'strong', u'result', u'boost', u'ord'] [u'strong', u'retail', u'sale', u'push', u'stock', u'higher'] [u'suppli', u'gather', u'cyclon', u'threaten', u'island'] [u'support', u'grow'] [u'support', u'grow', u'cricket'] [u'swan', u'reappoint', u'maxfield', u'captain'] [u'sydney', u'wait', u'news', u'york'] [u'tabcorp', u'singaporean', u'resort'] [u'tamworth', u'develop', u'step', u'closer'] [u'tasmanian', u'poll', u'survey', u'point', u'hang', u'parliament'] [u'tasmania', u'propos', u'plan', u'chang', u'paper'] [u'teacher', u'resign', u'offenc', u'reveal'] [u'legionnair', u'case', u'emerg', u'wollongong'] [u'train', u'scheme', u'benefit', u'coast'] [u'trucki', u'urg', u'miss', u'award', u'benefit'] [u'twin', u'cyclon', u'batter', u'south', u'pacif', u'island'] [u'twin', u'cyclon', u'bear', u'south', u'pacif', u'island'] [u'face', u'court', u'boot', u'case'] [u'hold', u'woman', u'boot', u'case'] [u'palestinian', u'kill', u'near', u'nablus'] [u'look', u'boost', u'age', u'care', u'worker', u'skill'] [u'union', u'angri', u'fund', u'drama'] [u'union', u'disagre', u'juvenil', u'justic', u'inquiri'] [u'union', u'fear', u'job', u'forest', u'corporatis'] [u'plead', u'innoc', u'train', u'crash', u'death'] [u'recal', u'ambassador', u'syria', u'hariri'] [u'report', u'face', u'jail', u'agent', u'case'] [u'senat', u'confirm', u'homeland', u'secur', u'chief'] [u'send', u'guantanamo', u'detaine', u'home'] [u'escap', u'remain'] [u'vanston', u'express', u'deep', u'regret', u'detent'] [u'vline', u'admit', u'melbourn', u'ballarat', u'rail', u'effort'] [u'parti', u'ignor', u'indigen', u'issu'] [u'water', u'report', u'underpin', u'fund', u'request'] [u'whistleblow', u'focus', u'studi'] [u'wigan', u'deni', u'sonni'] [u'wildcat', u'tiger', u'point', u'thriller'] [u'winemak', u'order', u'revis', u'price'] [u'wit', u'falter', u'sydney', u'terror', u'case'] [u'wood', u'chip', u'protest', u'log', u'advoc', u'face'] [u'woodsid', u'petroleum', u'doubl', u'profit'] [u'worker', u'compo', u'premium', u'council', u'budget'] [u'zimbabw', u'polic', u'raid', u'journalist', u'offic'] [u'cattl', u'dead', u'abandon', u'properti'] [u'abbott', u'refus', u'rule', u'privat', u'health', u'cover'] [u'accc', u'put', u'heat', u'potenti', u'cartel'] [u'elector', u'review'] [u'govt', u'break', u'energi', u'effici', u'promis'] [u'laud', u'child', u'protect', u'reform'] [u'accus', u'spi', u'defenc', u'forc'] [u'adler', u'driver', u'reprimand'] [u'sell', u'western', u'victoria', u'lifestyl'] [u'increas', u'size', u'commiss'] [u'highlight', u'unfulfil', u'elect', u'promis'] [u'amcor', u'profit', u'drop', u'search', u'continu'] [u'amnesti', u'call', u'suspens', u'militari'] [u'bounc', u'profit'] [u'armi', u'helicopt', u'return', u'tsunami', u'relief'] [u'arthur', u'press', u'davi', u'case'] [u'asio', u'offic', u'face', u'court'] [u'associ', u'defend', u'caravan', u'safeti'] [u'australia', u'china', u'uranium', u'sale', u'negoti'] [u'australian', u'killer', u'free', u'despit', u'court', u'rule'] [u'australia', u'histor', u'match'] [u'aust', u'soldier', u'alert', u'dengu', u'fever'] [u'babi', u'injur', u'preschool'] [u'barnett', u'face', u'storm', u'beachfront', u'build'] [u'baxter', u'detaine', u'receiv', u'acut', u'mental', u'health', u'care'] [u'beatti', u'defiant', u'palm', u'island', u'pcyc'] [u'beatti', u'stand', u'palm', u'island', u'itinerari'] [u'beatti', u'urg', u'enter', u'marin', u'park', u'issu'] [u'bega', u'offer', u'educ'] [u'bendigo', u'go', u'public', u'open', u'space', u'plan'] [u'bevan', u'shape', u'tiger'] [u'bowditch', u'kresg', u'share', u'lead', u'open'] [u'brack', u'say', u'opi', u'problem', u'resolv'] [u'british', u'hop', u'record', u'book'] [u'break', u'hill', u'pool', u'sit', u'identifi'] [u'bulki', u'good', u'land', u'rezon', u'near', u'approv'] [u'bureau', u'predict', u'warmer', u'autumn'] [u'bushfir', u'contain', u'northern', u'tasmania'] [u'price'] [u'call', u'halt', u'region', u'rail', u'declin'] [u'canal', u'plan', u'wash', u'barnett'] [u'canberra', u'local', u'consid', u'bulk', u'bill'] [u'candid', u'want', u'shelter', u'convert', u'child', u'safe'] [u'carr', u'blast', u'employ', u'penalti', u'rat'] [u'carr', u'criticis', u'work', u'hour', u'propos'] [u'cash', u'threat', u'wont', u'stop', u'code', u'jumper', u'player'] [u'chemic', u'accus', u'shiit', u'massacr'] [u'china', u'surpass', u'world', u'biggest', u'consum'] [u'christian', u'parti', u'want', u'answer', u'right', u'law'] [u'head', u'warn', u'continu', u'qaeda', u'threat'] [u'clijster', u'set', u'venus', u'showdown'] [u'deni', u'govern', u'hack', u'claim'] [u'voic', u'support', u'uranium'] [u'coalit', u'promis', u'region', u'health', u'boost'] [u'coast', u'council', u'clean', u'sewag', u'spill'] [u'coff', u'harbour', u'welcom', u'extra', u'virgin', u'flight'] [u'cole', u'myer', u'sale', u'rise'] [u'commonwealth', u'urg', u'victoria', u'replac'] [u'conlon', u'stand', u'firm', u'grid', u'cost'] [u'conserv', u'trust', u'admit', u'defeat', u'freycinet', u'dam'] [u'construct', u'worker', u'walk', u'walter'] [u'council', u'approv', u'mackay', u'apart'] [u'councillor', u'reject', u'transit', u'centr', u'develop'] [u'council', u'order', u'clean', u'contamin', u'dump'] [u'council', u'pleas', u'shire', u'shake', u'plan'] [u'council', u'seek', u'comment', u'streetscap', u'plan'] [u'council', u'flood', u'manag', u'fund'] [u'council', u'decid', u'fluorid'] [u'countri', u'labor', u'focus', u'troubl', u'dubbo', u'estat'] [u'court', u'cut', u'murder', u'mother', u'sentenc'] [u'creek', u'access', u'restrict', u'byfield', u'nation', u'park'] [u'defibril', u'cabl', u'replac', u'death'] [u'deliveri', u'driver', u'attack', u'sydney'] [u'dept', u'give', u'princip', u'control', u'teacher', u'hire'] [u'desalin', u'plant', u'plan', u'ahead'] [u'develop', u'take', u'council', u'court', u'resort', u'safeti'] [u'disturb', u'ban', u'worker', u'murder', u'trial'] [u'doctor', u'defend', u'earli', u'hospit', u'departur'] [u'doctor', u'deni', u'neglig', u'compo', u'decis'] [u'doyl', u'dismiss', u'liber', u'disun', u'claim'] [u'doyl', u'want', u'beggar', u'move', u'game'] [u'drug', u'rife', u'palm', u'beatti', u'tell'] [u'durum', u'wheat', u'offic', u'base', u'tamworth'] [u'eadl', u'appeal', u'elliot', u'head', u'develop'] [u'east', u'timor', u'move', u'independ', u'industri'] [u'educ', u'program', u'fund', u'scullion'] [u'stop', u'woodchip', u'blockad'] [u'farm', u'group', u'seek', u'rural', u'water', u'scheme', u'fund'] [u'feder', u'buri', u'australian', u'open', u'setback'] [u'fish', u'gear', u'seek', u'tsunami', u'victim'] [u'flight', u'centr', u'expand', u'india'] [u'policeman', u'plead', u'guilti', u'power', u'abus'] [u'umpir', u'warn', u'brownlow', u'rule', u'chang'] [u'fund', u'tackl', u'child', u'abus', u'western'] [u'gallop', u'deni', u'howard', u'deserv', u'credit', u'economi'] [u'gallop', u'detail', u'alloc', u'fund'] [u'gallop', u'push', u'nurs', u'strike', u'boycott'] [u'georg', u'michael', u'farewel', u'music', u'world'] [u'gippsland', u'smoke', u'death', u'averag'] [u'gippsland', u'voter', u'receiv', u'enrol', u'check'] [u'govt', u'accus', u'inact', u'environ', u'law'] [u'govt', u'downplay', u'leak', u'hospit', u'memo'] [u'govt', u'ask', u'help', u'fund', u'stormwat', u'project'] [u'govt', u'promis', u'juvenil', u'detent', u'centr'] [u'govt', u'help', u'grape', u'price', u'case'] [u'govt', u'suppli', u'unsniff', u'fuel'] [u'govt', u'urg', u'allow', u'candid', u'aborigin', u'land'] [u'govt', u'vet', u'decid', u'return', u'work'] [u'greenspan', u'comment', u'leav', u'market', u'flat'] [u'green', u'question', u'plan', u'shell', u'turtl', u'centr'] [u'grower', u'look', u'forward', u'bumper', u'grape', u'harvest'] [u'hariri', u'death', u'spark', u'polit', u'backlash'] [u'hobart', u'juri', u'convict', u'child', u'rape'] [u'hospit', u'put', u'patient', u'care', u'medibank', u'contract'] [u'hundr', u'endur', u'eurobodalla', u'dental', u'wait', u'list'] [u'illawarra', u'featur', u'tourism'] [u'india', u'pakistan', u'reach', u'link', u'deal'] [u'india', u'scrap', u'ahmedabad', u'pakistani', u'test'] [u'industri', u'urg', u'address', u'packag', u'wast'] [u'inquiri', u'find', u'brokenshir', u'unlaw', u'divert', u'fund'] [u'intel', u'make', u'silicon', u'laser', u'breakthrough'] [u'investor', u'cross', u'border', u'flee'] [u'israel', u'approv', u'gaza', u'compens', u'packag'] [u'italian', u'orchestr', u'conductor', u'die'] [u'jackson', u'home', u'hospit', u'stay'] [u'jetstar', u'consid', u'townsvill', u'flight'] [u'kean', u'hit', u'diver'] [u'kresg', u'grab', u'adelaid', u'lead'] [u'labor', u'declin', u'habib', u'offer', u'appear', u'senat'] [u'latham', u'expect', u'super', u'open'] [u'injuri', u'scare'] [u'legionnair', u'case', u'climb', u'wollongong'] [u'lennon', u'resist', u'pressur', u'spend', u'surplus'] [u'long', u'time', u'come', u'bendigo', u'clock'] [u'lung', u'visit', u'asbesto', u'worker'] [u'mackay', u'sport', u'precinct', u'plan', u'gather', u'support'] [u'marin', u'scientist', u'win', u'prestigi', u'fellowship'] [u'mayor', u'reject', u'council', u'industri', u'rule'] [u'mayor', u'nazi', u'jibe', u'overshadow', u'london', u'olymp'] [u'media', u'deni', u'access', u'skase', u'citizenship', u'document'] [u'melbourn', u'silo', u'clock', u'restor'] [u'mentor', u'encourag', u'student', u'studi'] [u'minist', u'deni', u'inquiri', u'attack', u'teacher'] [u'miss', u'tourist', u'search', u'uncov', u'bodi'] [u'council', u'claim'] [u'claim', u'australian', u'interrog', u'iraqi'] [u'mother', u'jail', u'attempt', u'murder', u'children'] [u'fear', u'lack', u'consult', u'charlestown'] [u'say', u'time', u'late', u'latrob', u'valley', u'train'] [u'tell', u'accus', u'killer'] [u'gateway', u'bridg', u'brisban', u'begin', u'year'] [u'accid', u'strike', u'china'] [u'zealand', u'encourag', u'start'] [u'elect', u'tasmania', u'lennon'] [u'opposit', u'seek', u'forest', u'plan', u'detail'] [u'nurs', u'plan', u'elect', u'strike'] [u'search', u'ship', u'miss', u'cyclon', u'olaf'] [u'obsess', u'grandfath', u'jail', u'child', u'abus'] [u'opposit', u'promis', u'esper', u'hospit', u'revamp'] [u'pair', u'fight', u'boot', u'case', u'charg'] [u'paper', u'ask', u'seek', u'feder', u'fund'] [u'pcyc', u'await', u'land', u'sale', u'decis'] [u'food', u'firm', u'fin', u'natur', u'conserv', u'breach'] [u'philippin', u'polic', u'releas', u'sketch', u'bomb'] [u'pittman', u'win', u'melbourn'] [u'plug', u'pull', u'farnham', u'gallipoli'] [u'lambast', u'opposit', u'hill', u'critic'] [u'polic', u'accus', u'pay', u'wit', u'underworld'] [u'polic', u'complaint', u'investig', u'redford'] [u'polic', u'probe', u'alburi', u'bash'] [u'polic', u'probe', u'fail', u'raid'] [u'polic', u'suspect', u'arson', u'patholog', u'centr', u'blaze'] [u'polic', u'want', u'brake', u'speed', u'driver'] [u'poor', u'decis', u'boost', u'council', u'legal', u'fee'] [u'port', u'augusta', u'author', u'bail', u'move'] [u'port', u'augusta', u'chief', u'accus', u'racist', u'comment'] [u'port', u'chief', u'claim', u'polit', u'bias', u'sack'] [u'profit', u'report', u'boost', u'share', u'market'] [u'protest', u'interrupt', u'corbi', u'drug', u'trial'] [u'push', u'second', u'river', u'cross', u'gundagai'] [u'qanta', u'profit', u'soar'] [u'govt', u'urg', u'rural', u'council', u'paperwork'] [u'woman', u'head', u'beef', u'export', u'review'] [u'refuge', u'centr', u'feel', u'rise', u'demand'] [u'report', u'find', u'unfulfil', u'health', u'promis'] [u'rescu', u'mission', u'wake', u'cyclon', u'olaf'] [u'resid', u'defend', u'domest', u'violenc', u'exhibit'] [u'resid', u'clean', u'wind', u'hail'] [u'royal', u'ancient', u'open', u'door', u'women'] [u'rspca', u'urg', u'releas', u'duck', u'plant', u'find'] [u'russia', u'lobbi', u'north', u'korea', u'resum', u'nuclear', u'talk'] [u'russian', u'advis', u'reject', u'yushchenko', u'poison', u'claim'] [u'ryan', u'take', u'windfarm', u'concern', u'govt'] [u'farmland', u'probe', u'sparkler'] [u'safeti', u'task', u'forc', u'seek', u'driver', u'care'] [u'schizophrenia', u'breakthrough', u'lead', u'earli'] [u'scientist', u'southern', u'ocean', u'cooler', u'salti'] [u'second', u'seal', u'shoot', u'crossbow'] [u'senat', u'want', u'govt', u'sell', u'medibank', u'privat'] [u'sharon', u'charg', u'campaign', u'fund', u'scandal'] [u'shire', u'upbeat', u'secur', u'flood', u'prevent', u'fund'] [u'singapor', u'set', u'timelin', u'open', u'sky', u'chang'] [u'soldier', u'charg', u'link', u'websit'] [u'southcorp', u'tell', u'sharehold', u'reject', u'foster'] [u'strong', u'aftershock', u'continu', u'shake', u'aceh'] [u'student', u'school', u'cape', u'barren', u'island'] [u'studi', u'find', u'organ', u'vege', u'bolster', u'immun'] [u'telstra', u'continu', u'lifelin', u'support'] [u'territori', u'beef', u'season', u'road', u'closur'] [u'thorn', u'expect', u'talli'] [u'thorn', u'expect', u'talli'] [u'cyclon', u'survivor'] [u'tiger', u'recent', u'form', u'irrelev', u'say', u'hauritz'] [u'tourist', u'die', u'surf', u'mishap'] [u'tsunami', u'babi', u'final', u'reunit', u'parent'] [u'tweed', u'mayor', u'see', u'conflict', u'develop', u'donat'] [u'charg', u'warragul', u'man', u'murder'] [u'dozen', u'twin', u'turn', u'school'] [u'fin', u'anti', u'terror', u'law'] [u'kill', u'smash'] [u'uefa', u'greec', u'implic', u'match', u'fix'] [u'union', u'reject', u'rise', u'claim'] [u'urgent', u'go', u'fruit', u'picker'] [u'accus', u'spi', u'iran', u'nuclear', u'sit'] [u'indec', u'progress', u'senat'] [u'plan', u'guantanamo', u'upgrad', u'intern'] [u'vaccin', u'tame', u'jack', u'jumper', u'sting'] [u'valencia', u'begin', u'uefa', u'defenc'] [u'vandal', u'damag', u'ergon', u'electr', u'equip'] [u'veteran', u'affair', u'establish', u'beryllium', u'hotlin'] [u'victim', u'hospitalis', u'brunswick', u'housefir'] [u'parti', u'major', u'abattoir', u'plan'] [u'wheatbelt', u'road', u'group', u'fund', u'return'] [u'wildcat', u'grace', u'announc', u'retir'] [u'woman', u'admit', u'offenc', u'lone', u'heart'] [u'woman', u'charg', u'stab'] [u'wood', u'chanc', u'regain', u'spot'] [u'work', u'start', u'rodeo', u'centr', u'bull'] [u'youth', u'captur', u'escapad'] [u'start', u'gunnedah', u'work'] [u'approv', u'channel', u'transmiss', u'upgrad'] [u'aborigin', u'site', u'offic', u'overse', u'roadwork'] [u'actu', u'push', u'wage', u'increas', u'pay', u'worker'] [u'adelaid', u'hotel', u'oper', u'warn', u'robberi'] [u'laud', u'indigen', u'film', u'maker', u'berlin', u'success'] [u'albani', u'await', u'cruis', u'ship'] [u'albani', u'play', u'greater', u'higher', u'educ', u'role'] [u'ambul', u'industri', u'action', u'stop', u'ahead'] [u'anthrax', u'kill', u'hippo', u'uganda'] [u'arnhem', u'thunder', u'rattl', u'katherin'] [u'ashura', u'attack', u'kill', u'wound'] [u'highlight', u'chop', u'chop', u'jail', u'sentenc'] [u'atsic', u'commission', u'criticis', u'land', u'privatis'] [u'aust', u'hotb', u'illicit', u'download'] [u'australia', u'draw', u'blood', u'tour', u'get'] [u'australian', u'urg', u'organ', u'donor'] [u'australian', u'yachtsman', u'walk', u'free', u'bali'] [u'aust', u'militari', u'train', u'examin', u'darwin'] [u'babi', u'hippo', u'name', u'yacht', u'star'] [u'badu', u'prawn', u'farm', u'plan', u'get', u'fund', u'boost'] [u'barnett', u'stay', u'lose', u'elect'] [u'beij', u'agenda', u'klim'] [u'age', u'care', u'centr', u'plan', u'inverloch'] [u'screen', u'deliv', u'game', u'action', u'ballarat'] [u'bowditch', u'clear', u'leader', u'open'] [u'bowditch', u'control', u'open'] [u'bowditch', u'earli', u'press', u'home', u'advantag'] [u'brazil', u'plan', u'vast', u'amazon', u'reserv', u'stem', u'log'] [u'brick', u'factori', u'demis', u'puzzl', u'mayor'] [u'bridg', u'plaza', u'facelift'] [u'brumbi', u'lock', u'chisholm'] [u'bullet', u'basic', u'tiger'] [u'bull', u'focus', u'form', u'bevan'] [u'bush', u'pressur', u'syria', u'pull', u'lebanon'] [u'busi', u'learn', u'reef', u'rezon'] [u'candid', u'decid', u'preferenc'] [u'cane', u'toad', u'waterway', u'make', u'presenc', u'felt'] [u'charl', u'camilla', u'chang', u'wed', u'venu'] [u'chelsea', u'like', u'face', u'barcelona', u'drogba'] [u'child', u'abus', u'alleg', u'skyrocket'] [u'chippi', u'set', u'record', u'biggest', u'order'] [u'coal', u'extens', u'plan', u'ahead'] [u'come', u'stay', u'london', u'tell', u'olymp', u'famili'] [u'commit', u'seek', u'serco', u'worker', u'job'] [u'committe', u'form', u'discuss', u'pulp', u'plan'] [u'conduct', u'committe', u'monitor', u'councillor', u'behaviour'] [u'cook', u'island', u'prepar', u'batter'] [u'council', u'hop', u'fast', u'fletcher', u'jone', u'site', u'sale'] [u'council', u'outlaw', u'public', u'gambl'] [u'council', u'discuss', u'local', u'issu', u'countri', u'labor'] [u'council', u'urg', u'adopt', u'uniform', u'beach', u'safeti', u'sign'] [u'council', u'urg', u'wider', u'distribut', u'unsniff'] [u'court', u'tell', u'murder', u'accus', u'trip', u'brisban'] [u'croc', u'look', u'snap', u'taipan'] [u'crunch', u'time', u'head', u'play', u'off'] [u'davi', u'seiz', u'earli', u'lead'] [u'demon', u'wari', u'understrength', u'lion'] [u'dentist', u'shortag', u'extend', u'north', u'west', u'wait', u'list'] [u'detect', u'happi', u'folbigg', u'sentenc', u'finalis'] [u'detect', u'stay', u'forc', u'despit', u'explos', u'threat'] [u'develop', u'keen', u'longreach', u'sport', u'facil'] [u'devil', u'quarantin'] [u'doctor', u'concern', u'hospit', u'review'] [u'doctor', u'identifi', u'broad', u'rang', u'bird', u'symptom'] [u'doubt', u'rais', u'uni', u'rural', u'campus', u'commit'] [u'confirm', u'canker', u'case'] [u'driver', u'bail', u'unlaw', u'kill', u'case'] [u'drought', u'cut', u'stock', u'number'] [u'dump', u'liber', u'backbench', u'blast', u'canal', u'plan'] [u'eddi', u'want', u'decid', u'play', u'light'] [u'take', u'trade', u'beef'] [u'everton', u'look', u'year', u'unit', u'itch'] [u'falconio', u'murder', u'trial', u'april'] [u'famili', u'reliev', u'settlement'] [u'fish', u'chip', u'help', u'power', u'communiti'] [u'charg', u'alleg', u'breach'] [u'hunt', u'go', u'forc', u'england', u'wale'] [u'gallop', u'wont', u'commit', u'prostitut', u'reform'] [u'genom', u'improv', u'treatment'] [u'govt', u'consid', u'extend', u'sniff', u'fuel', u'program'] [u'govt', u'deni', u'fashion', u'conserv', u'high', u'court'] [u'govt', u'detail', u'river', u'murray', u'flood', u'trial'] [u'govt', u'boost', u'jail', u'staff'] [u'govt', u'urg', u'recognis', u'bradman', u'birthplac'] [u'puzzl', u'baxter', u'injuri'] [u'grain', u'grower', u'board', u'member', u'surviv', u'remov'] [u'green', u'reject', u'vote', u'valu', u'concess', u'claim'] [u'group', u'say', u'smoke', u'doesnt'] [u'habib', u'offer', u'right', u'repli'] [u'hardwar', u'blame', u'star', u'war', u'test', u'failur'] [u'hobart', u'prison', u'author', u'criticis', u'inmat'] [u'hong', u'kong', u'enlist', u'australian', u'help', u'save', u'lucki'] [u'hop', u'inquiri', u'improv', u'mental', u'health', u'servic'] [u'hunter', u'wine', u'name', u'nation', u'drop'] [u'increas', u'casual', u'workforc', u'caus', u'concern'] [u'indigen', u'group', u'back', u'land', u'ownership', u'privatis'] [u'indonesia', u'say', u'journalist', u'seiz', u'iraq'] [u'inquiri', u'hear', u'councillor', u'didnt', u'report', u'conflict'] [u'inquiri', u'help', u'improv', u'teacher', u'qualiti', u'union'] [u'isra', u'reject', u'diplomat', u'post', u'controversi'] [u'israel', u'allow', u'palestinian', u'exil', u'return', u'home'] [u'israel', u'halt', u'polici', u'demolish', u'milit', u'home'] [u'judg', u'magistr', u'decid', u'fit', u'plead'] [u'kenyan', u'cricket', u'suffer', u'blow'] [u'koala', u'cull', u'public', u'relat', u'disast'] [u'labor', u'blame', u'complac', u'like', u'rate', u'rise'] [u'put', u'hand', u'test', u'berth'] [u'lennon', u'hold', u'land', u'hand', u'meet'] [u'lifesav', u'chopper', u'servic', u'retain', u'heliport', u'leas'] [u'macgil', u'advoc', u'doubl', u'delight'] [u'magpi', u'score', u'tiger'] [u'deni', u'murder', u'termin', u'partner'] [u'die', u'murray', u'valley', u'highway', u'crash'] [u'fli', u'wire', u'suffer', u'collaps', u'lung'] [u'market', u'slight', u'rate', u'rise', u'talk'] [u'martin', u'rule', u'action', u'parliament'] [u'melbourn', u'conductor', u'add', u'london', u'post', u'repertoir'] [u'melon', u'mad', u'grip', u'chinchilla'] [u'merger', u'lift', u'southern', u'cross', u'board', u'number'] [u'millar', u'year', u'drug', u'uphold'] [u'promis', u'break', u'hill', u'boost'] [u'minist', u'defend', u'road', u'fund', u'alloc'] [u'minist', u'accus', u'ignor', u'plea', u'raus'] [u'live', u'game', u'broadcast'] [u'molik', u'mauresmo', u'antwerp', u'quarter'] [u'monkey', u'tourism', u'resort', u'sale'] [u'australian', u'regist', u'organ', u'donor'] [u'moseley', u'pilkadari', u'tie', u'second', u'malaysia'] [u'call', u'extra', u'school', u'fund'] [u'remark', u'reignit', u'behaviour', u'debat'] [u'mussel', u'leas', u'plan', u'face', u'late', u'opposit'] [u'nepal', u'media', u'suffoc'] [u'promot', u'south', u'coast', u'tourism'] [u'newcastl', u'boro', u'sight', u'uefa'] [u'back', u'call', u'boost', u'rail', u'fund'] [u'miss', u'samoa', u'wake', u'cyclon', u'olaf'] [u'predict', u'townsvill', u'invest'] [u'long', u'servic', u'elder', u'casual', u'worker'] [u'real', u'distract', u'juve', u'emerson'] [u'north', u'flood', u'relief', u'fund'] [u'walter', u'strike', u'plan'] [u'announc', u'park', u'ownership', u'shake'] [u'nun', u'killer', u'elud', u'brazilian', u'author'] [u'nurs', u'accept', u'offer', u'actu', u'chief'] [u'tweak', u'like', u'brownlow'] [u'oscar', u'host', u'chris', u'rock', u'vow', u'clean'] [u'packer', u'await', u'sentenc', u'bali'] [u'pakistan', u'yield', u'use', u'lead', u'qaeda'] [u'pakistan', u'agre', u'play', u'dayer', u'ahmedabad'] [u'pakistan', u'akhtar', u'fin', u'australian', u'disco', u'jaunt'] [u'parent', u'disabl', u'dilemma', u'concern'] [u'parent', u'fear', u'school', u'violenc', u'spark', u'death'] [u'pension', u'smile', u'dental', u'appoint'] [u'pension', u'cop', u'council', u'fine', u'good', u'deed'] [u'pension', u'face', u'year', u'wait', u'dentur'] [u'perth', u'plead', u'guilti', u'sick', u'partner', u'murder'] [u'phillip', u'island', u'host', u'motogp'] [u'pilot', u'error', u'blame', u'near', u'miss'] [u'plan', u'dept', u'back', u'smaller', u'port', u'botani', u'expans'] [u'give', u'hope', u'ethanol', u'plant'] [u'pngs', u'crisi', u'shock', u'aid', u'bodi', u'chief'] [u'struggl', u'illeg', u'trade'] [u'polic', u'begin', u'murder', u'probe', u'hous', u'blaze'] [u'polic', u'kill', u'melbourn', u'raid'] [u'policeman', u'charg', u'trial', u'verdict', u'delay'] [u'polic', u'promis', u'continu', u'speed', u'crackdown'] [u'polic', u'reach', u'agreement', u'staff', u'concern'] [u'polic', u'seek', u'public', u'help', u'solv', u'toddler', u'death'] [u'post', u'mortem', u'lismor', u'park', u'bodi'] [u'prison', u'deni', u'kill', u'melbourn', u'crime', u'boss'] [u'project', u'manag', u'apologis', u'hous', u'wait'] [u'properti', u'council', u'say', u'asbesto', u'law', u'unclear'] [u'public', u'urg', u'bushfir', u'awar'] [u'push', u'chang', u'judgment'] [u'pyrmont', u'develop', u'disast', u'claim', u'reject'] [u'woman', u'take', u'rein', u'telstra', u'rural', u'board'] [u'governor', u'vagu', u'rate', u'rise', u'time'] [u'refuge', u'continu', u'enter', u'darfur', u'camp', u'worker'] [u'rehab', u'play', u'major', u'role', u'juvenil', u'centr', u'gallop'] [u'reserv', u'bank', u'chief', u'brief', u'parliamentari', u'committe'] [u'review', u'find', u'violent', u'media', u'affect', u'kid', u'behaviour'] [u'rogerson', u'jail', u'lie', u'corrupt', u'hear'] [u'ronaldo', u'injuri', u'blow', u'owen', u'real', u'chanc'] [u'ruddock', u'deni', u'diplomat', u'expuls', u'link'] [u'ruddock', u'link', u'isra', u'diplomat', u'expuls'] [u'rugbi', u'prepar', u'tough', u'game'] [u'rumsfeld', u'defend', u'sensibl', u'bunker', u'buster', u'studi', u'fund'] [u'ruud', u'readi', u'stay', u'unit'] [u'african', u'diamond', u'miner', u'explor', u'kimberley'] [u'pressur', u'chang', u'oversea', u'train', u'doctor'] [u'deepen', u'nepot', u'claim'] [u'scientist', u'global', u'warm', u'undeni'] [u'secur', u'agenda', u'aceh', u'peac', u'talk'] [u'abus', u'victim', u'seek', u'damag', u'anglican', u'church'] [u'shaw', u'plead', u'guilti', u'neglig', u'drive'] [u'shire', u'cast', u'doubt', u'safe', u'hous', u'plan'] [u'shoaib', u'pull', u'pakistan', u'india', u'tour'] [u'siren', u'joke', u'backfir', u'polic'] [u'mend'] [u'solomon', u'polic', u'minist', u'charg', u'theft'] [u'space', u'confer', u'explor', u'benefit', u'joint', u'project'] [u'spanish', u'footbal', u'embroil', u'racist'] [u'stanhop', u'wont', u'foot', u'airport'] [u'sydney', u'hobart', u'chang', u'increas', u'entri'] [u'sydney', u'mother', u'clear', u'son', u'murder'] [u'teen', u'sentenc', u'toddler', u'assault'] [u'terrorist', u'attack', u'wont', u'stop', u'govt', u'carr'] [u'thailand', u'arrest', u'bomb', u'suspect'] [u'thorp', u'need', u'flee', u'fish', u'bowl', u'beij'] [u'toddler', u'hospit'] [u'stand', u'offic', u'amidst', u'bash', u'claim'] [u'troop', u'timor', u'face', u'dengu', u'threat'] [u'truck', u'driver', u'ram', u'car', u'drag', u'race', u'anger'] [u'turnbal', u'tour', u'put', u'styx', u'spotlight'] [u'turnbul', u'set', u'prove', u'green', u'credenti'] [u'twin', u'baghdad', u'attack', u'kill', u'wind'] [u'ullrich', u'eager', u'armstrong', u'tour'] [u'union', u'claim', u'minist', u'offic', u'know', u'walter', u'woe'] [u'union', u'court', u'worsley', u'woe'] [u'armi', u'paper', u'abus', u'claim'] [u'limit', u'class', u'action', u'lawsuit'] [u'rat', u'outlook', u'drag', u'stock'] [u'readi', u'resum', u'militari', u'tie', u'indonesia'] [u'victorian', u'farmer', u'locust', u'watch'] [u'waratah', u'impress', u'super', u'warm'] [u'word', u'erupt', u'maitland', u'plan'] [u'warrumbungl', u'fluorid', u'town', u'water'] [u'wide', u'lender', u'post', u'near', u'half', u'year', u'profit'] [u'wildeloo', u'rock', u'victim'] [u'willi', u'nelson', u'cancel', u'region', u'victorian'] [u'wine', u'grower', u'join', u'forc', u'improv', u'busi'] [u'xstrata', u'extend', u'share', u'offer'] [u'youth', u'sentenc', u'brisban', u'street', u'brawl'] [u'yuschenko', u'phone', u'tap', u'elect', u'campaign'] [u'afghan', u'children', u'fear', u'dead', u'cold', u'snap'] [u'clear', u'question', u'lebanon', u'bomb'] [u'question', u'sydney', u'hariri', u'bomb'] [u'worker', u'aceh', u'warn', u'possibl', u'terrorist'] [u'allenbi', u'content'] [u'anderson', u'show', u'exit', u'door', u'wale'] [u'anzac', u'trade', u'howard', u'agenda'] [u'argentin', u'forc', u'chief', u'sack', u'amid', u'drug'] [u'armidal', u'rescu', u'seven', u'week'] [u'arsenal', u'stick', u'foreign', u'legion'] [u'atsic', u'move', u'away', u'asset'] [u'author', u'shortlist', u'intern', u'booker'] [u'bodi', u'miss', u'walker'] [u'bowditch', u'remain', u'cautious', u'open'] [u'bowditch', u'rid', u'rollercoast', u'lead', u'open'] [u'brisban', u'lord', u'mayor', u'felt', u'safer', u'york'] [u'bullet', u'grab', u'home', u'final'] [u'burgess', u'hit', u'high', u'spot', u'adelaid'] [u'bush', u'wont', u'rule', u'militari', u'action', u'iran'] [u'central', u'market', u'draw', u'crowd'] [u'centuri', u'dynam', u'robot', u'feet'] [u'champion', u'triathlet', u'final', u'race', u'hobart'] [u'charg', u'reduc', u'ghraib', u'guard', u'england'] [u'chines', u'offici', u'push', u'north', u'korea', u'talk'] [u'clean', u'storm', u'lash', u'sydney'] [u'council', u'tackl', u'alga', u'torren', u'lake'] [u'court', u'rule', u'doctor', u'overrid', u'patient', u'wish'] [u'croc'] [u'croc', u'king'] [u'darwin', u'rememb', u'japanes', u'bomb'] [u'dog', u'good', u'understrength', u'swan'] [u'eagl', u'earn', u'brag', u'right', u'west'] [u'eagl', u'western', u'derbi'] [u'leader', u'begin', u'tsunami', u'tour'] [u'flame', u'resist', u'ranger', u'wnbl', u'crown'] [u'forest', u'endang', u'list', u'concern', u'busi'] [u'kill', u'suicid', u'bomb', u'baghdad'] [u'french', u'polynesian', u'leader', u'oust'] [u'coat', u'wig', u'donat', u'lankan', u'tsunami'] [u'gallop', u'welcom', u'nurs', u'strike', u'repriev'] [u'govt', u'urg', u'assist', u'atsic', u'asset', u'transfer'] [u'healthi', u'devil', u'seek', u'breed', u'program'] [u'howard', u'deni', u'break', u'rat', u'promis'] [u'howard', u'touch'] [u'indonesia', u'appeal', u'journalist'] [u'inner', u'citi', u'light', u'concern', u'premier'] [u'iran', u'agre', u'putin', u'nuclear', u'weapon', u'demand'] [u'iran', u'nuclear', u'weapon', u'plan', u'russia'] [u'iraq', u'group', u'releas', u'video', u'abduct', u'indonesian'] [u'isinbayeva', u'break', u'world', u'indoor', u'record'] [u'kersten', u'claim', u'world', u'crown'] [u'kiwi'] [u'klien', u'name', u'bull', u'second', u'driver'] [u'luczak', u'brazil', u'open'] [u'magic', u'mcgrath', u'clean', u'kiwi'] [u'magpi', u'score', u'tiger'] [u'major', u'disast', u'declar', u'american', u'samoa'] [u'charg', u'mother', u'murder'] [u'die', u'tree', u'accid'] [u'dead', u'frankston'] [u'sever', u'burn', u'farm', u'accid'] [u'man', u'nose', u'bite', u'attempt', u'robberi'] [u'mcgrath', u'break', u'later', u'order', u'partnership'] [u'molik', u'antwerp', u'semi'] [u'monster', u'star', u'burst', u'detect'] [u'mosul', u'attack', u'kill', u'soldier'] [u'nasa', u'set', u'shuttl', u'launch', u'date'] [u'fuel', u'initi', u'welcom', u'indigen'] [u'york', u'diner', u'hang'] [u'chang', u'uranium', u'mine', u'gallop', u'say'] [u'look', u'nurs'] [u'kill', u'injur', u'perth', u'crash'] [u'packer', u'releas', u'bali', u'jail'] [u'patriot', u'bruschi', u'leav', u'hospit'] [u'pere', u'propos', u'sell', u'gaza', u'strip', u'settlement'] [u'polic', u'charg', u'amid', u'ireland', u'money', u'launder'] [u'polic', u'investig', u'apart', u'fire'] [u'polic', u'investig', u'gold', u'coast', u'park', u'attack'] [u'polic', u'link', u'money', u'launder', u'suspect'] [u'polic', u'melbourn', u'shoot', u'victim'] [u'polic', u'search', u'miss', u'walker'] [u'polic', u'hold', u'intern', u'investig'] [u'public', u'invit', u'view', u'water', u'suppli', u'solut'] [u'quak', u'caus', u'panic', u'indonesia'] [u'quak', u'hit', u'sulawesi', u'region', u'report'] [u'question', u'rais', u'ozon', u'legisl', u'delay'] [u'road', u'train', u'caus', u'highway', u'closur'] [u'africa', u'aid', u'death', u'rise'] [u'saint', u'classi', u'gutsi', u'hawk'] [u'score', u'kill', u'attack', u'iraq', u'shiit'] [u'secur', u'tighten', u'iraq', u'shiit', u'festiv'] [u'serco', u'driver', u'strike'] [u'serco', u'driver', u'hour', u'strike'] [u'servic', u'commemor', u'darwin', u'bomb'] [u'seven', u'kill', u'bomb', u'near', u'baghdad'] [u'sexi', u'scent', u'conquer', u'cockroach'] [u'situat', u'deterior', u'darfur', u'say'] [u'south', u'dragon', u'sword'] [u'teen', u'charg', u'taxi', u'robberi'] [u'tendulkar', u'comeback'] [u'thongchai', u'lead', u'malaysian', u'open'] [u'tourist', u'lightn', u'bolt'] [u'releas', u'melbourn', u'shoot', u'death'] [u'chief', u'embroil', u'scandal', u'vow'] [u'union', u'call', u'child', u'protect', u'worker'] [u'staff', u'agre', u'deal'] [u'unitab', u'announc', u'half', u'year', u'profit'] [u'panel', u'back', u'plea', u'human', u'clone'] [u'market', u'rise', u'despit', u'news', u'inflat'] [u'senat', u'russia', u'suspens'] [u'supermen', u'chelsea', u'boss', u'mourinho'] [u'rush', u'team', u'congo', u'plagu', u'outbreak'] [u'smith', u'pucker', u'journo'] [u'worker', u'celebr', u'mint', u'birthday'] [u'arrest', u'violenc'] [u'drown', u'ferri', u'accid'] [u'lose', u'power', u'increas'] [u'australia', u'owe', u'habib', u'beazley'] [u'aust', u'take', u'senior', u'command', u'post', u'iraq'] [u'babayaro', u'doubt', u'chelsea', u'clash'] [u'barca', u'boost', u'confid', u'madrid', u'moral', u'slump'] [u'barnett', u'flag', u'inmat', u'prison'] [u'beazley', u'demand', u'region', u'grant', u'program'] [u'beazley', u'insist', u'pretti'] [u'beehiv', u'vandal', u'concern', u'keeper'] [u'bird', u'pandem', u'potenti'] [u'bodi', u'wait', u'formal'] [u'boss', u'dutch', u'domin', u'world'] [u'bowditch', u'increas', u'royal', u'adelaid', u'lead'] [u'bowditch', u'lead', u'seven', u'royal', u'adelaid'] [u'bowditch', u'win', u'open'] [u'break', u'hand', u'sidelin', u'giteau'] [u'bull', u'halt', u'tiger', u'momentum'] [u'bush', u'clinton', u'aceh', u'damag'] [u'bush', u'clinton', u'land', u'lanka'] [u'bush', u'say', u'europ', u'pillar', u'free', u'world'] [u'busi', u'warn', u'scam'] [u'cabinet', u'consid', u'restructur'] [u'care', u'flood', u'restor', u'iraq', u'marsh'] [u'carlton', u'bomber', u'blue'] [u'carlton', u'hand', u'bomber', u'blue'] [u'clark', u'howard', u'agre', u'gallipoli', u'servic'] [u'clone', u'success', u'thailand'] [u'communiti', u'approach', u'urg', u'child', u'road', u'safeti'] [u'concern', u'rais', u'plan', u'law'] [u'coptic', u'manuscript', u'unearth', u'egyptian', u'tomb'] [u'demon', u'outgun', u'underman', u'lion'] [u'depos', u'haitian', u'offici', u'escap', u'prison'] [u'doctor', u'search', u'solut', u'rural', u'shortag'] [u'dozen', u'die', u'bangladesh', u'ferri', u'capsiz'] [u'earthquak', u'shake', u'central', u'japan'] [u'egyptian', u'doctor', u'oper', u'head', u'babi'] [u'eleph', u'fetch', u'jumbo', u'price'] [u'eleph', u'crush', u'keeper', u'austrian'] [u'everton', u'missil', u'thrower'] [u'ferguson', u'bank', u'guard', u'unit', u'titl', u'push'] [u'film', u'maker', u'return', u'berlin', u'festiv', u'award'] [u'form', u'doesnt', u'matter', u'tiger', u'bull', u'contest'] [u'player', u'smart', u'seek', u'select'] [u'haitian', u'offici', u'captur'] [u'presid', u'tour', u'tsunami', u'sumatra'] [u'gallop', u'base', u'campaign', u'launch', u'trust'] [u'girl', u'injur', u'smash', u'backyard'] [u'global', u'warm', u'worsen', u'pollut', u'report'] [u'govt', u'consid', u'nightclub', u'curfew', u'curb', u'violenc'] [u'green', u'seek', u'reduc', u'super'] [u'habib', u'centrelink', u'payment'] [u'highway', u'reopen', u'road', u'train'] [u'hill', u'warn', u'troop', u'protect', u'worker'] [u'hopkin', u'remain', u'undisput', u'middleweight', u'king'] [u'hull', u'win', u'alpg', u'player', u'championship'] [u'india', u'sport', u'star', u'lend', u'hand', u'tsunami', u'victim'] [u'investig', u'continu', u'melbourn', u'shoot'] [u'israel', u'cabinet', u'vote', u'gaza', u'withdraw'] [u'italian', u'ralli', u'iraq', u'hostag'] [u'japanes', u'studi', u'tsunami', u'warn'] [u'kiwi', u'prove', u'theyr', u'australia', u'class'] [u'krajicek', u'tell', u'dont', u'want', u'like', u'want'] [u'liber', u'wont', u'candid', u'werriwa'] [u'madonna', u'sue', u'consult'] [u'maher', u'steer', u'bull'] [u'charg', u'frankston', u'assault'] [u'die', u'tree'] [u'mauresmo', u'end', u'molik', u'antwerp'] [u'mclaren', u'tempt', u'rebel', u'championship'] [u'mear', u'win', u'second', u'gold', u'sydney'] [u'milan', u'overshadow', u'shevchenko', u'injuri'] [u'motorcyclist', u'hit', u'fenc', u'die'] [u'begin', u'drive', u'nurs'] [u'south', u'coast', u'lash', u'storm'] [u'warn', u'attack', u'aceh', u'worker'] [u'olymp', u'commiss', u'give', u'london', u'boost'] [u'opposit', u'call', u'radiologist'] [u'packer', u'quiet', u'releas', u'money'] [u'packer', u'speak', u'jail', u'ordeal'] [u'packer', u'wait', u'permiss', u'leav', u'bali'] [u'pair', u'injur', u'smash'] [u'pakistan', u'recal', u'khan', u'india', u'akhtar', u'pull'] [u'polic', u'confirm', u'cash', u'belfast', u'bank', u'robberi'] [u'polic', u'investig', u'adelaid', u'shoot'] [u'polic', u'investig', u'central', u'coast', u'death'] [u'polic', u'seek', u'help', u'secur', u'guard', u'robber'] [u'portugues', u'poll', u'socialist', u'expect'] [u'power', u'local', u'derbi'] [u'push', u'coordin', u'approach', u'tourism'] [u'doctor', u'campaign', u'safer', u'work', u'hour'] [u'race', u'inquiri', u'head', u'seek', u'extens'] [u'rain', u'wash', u'play'] [u'region', u'tour', u'aim', u'reduc', u'anim', u'cruelti'] [u'repair', u'indigen', u'hous', u'monitor'] [u'rooney', u'make', u'win', u'return', u'unit', u'march'] [u'roo', u'cat', u'canberra'] [u'ruddock', u'deni', u'daughter', u'relationship', u'lati'] [u'sack', u'worker', u'alleg', u'gorilla', u'breast'] [u'school', u'fear', u'fund', u'increas', u'truanci', u'rate'] [u'scud', u'davi', u'career', u'hang', u'balanc'] [u'secur', u'review', u'announc', u'australian', u'tour'] [u'continu', u'sydney', u'storm', u'clean'] [u'sever', u'storm', u'warn', u'sydney', u'southern'] [u'shiit', u'holi', u'bomb'] [u'someon', u'go', u'hurt', u'pont', u'tell', u'kiwi'] [u'african', u'carmen', u'win', u'berlin', u'golden', u'bear'] [u'storm', u'damag', u'drench'] [u'storm', u'sweep'] [u'tafe', u'look', u'teacher'] [u'taipan', u'sixer', u'thriller'] [u'thompson', u'take', u'hobart', u'triathlon'] [u'thongchai', u'cours', u'retain', u'malaysian', u'titl'] [u'thongchai', u'retain', u'malaysian', u'open', u'titl'] [u'thousand', u'attend', u'mardi', u'gras', u'fair'] [u'thousand', u'ralli', u'britain', u'hunt'] [u'iraqi', u'kill', u'twin', u'blast'] [u'tiger', u'snatch', u'long', u'await', u'trophi'] [u'timor', u'vet', u'rememb', u'fall', u'comrad'] [u'togo', u'face', u'sanction'] [u'dead', u'wagin', u'smash'] [u'rescu', u'catamaran', u'sink'] [u'marin', u'kill', u'combat', u'iraq'] [u'violenc', u'mark', u'iraq', u'shiit', u'festiv'] [u'woman', u'trap', u'collis'] [u'yudhoyono', u'play', u'aceh', u'terror', u'warn'] [u'zvonareva', u'defend', u'memphi', u'crown', u'roddick', u'withdraw'] [u'abbott', u'appeal', u'son', u'privaci'] [u'abbott', u'reunit', u'long', u'lose'] [u'acoss', u'target', u'high', u'incom', u'earner'] [u'govt', u'defend', u'crime', u'spend'] [u'women', u'urg', u'maintain', u'breast', u'screen'] [u'advertis', u'revenu', u'boost', u'fairfax'] [u'forc', u'plane', u'close', u'comfort'] [u'airport', u'fume', u'disrupt', u'thousand'] [u'airport', u'reopen', u'mysteri', u'leak'] [u'black', u'wilson', u'injur', u'styri'] [u'qaeda', u'leader', u'warn', u'attack', u'unstopp'] [u'ambul', u'servic', u'offic', u'recognis', u'bushfir'] [u'anzac', u'medic', u'team', u'exit', u'aceh', u'deadlin', u'near'] [u'appl', u'island', u'savour', u'fruit', u'victori'] [u'asian', u'invest', u'eat', u'axa', u'profit'] [u'assuncao', u'song', u'beti', u'streak'] [u'atsic', u'commission', u'slam', u'seizur'] [u'aust', u'asean', u'free', u'trade', u'talk', u'begin'] [u'australian', u'complaint', u'tactic', u'coach'] [u'australian', u'help', u'rehabilit', u'tsunami', u'damag', u'reef'] [u'bangladesh', u'ferri', u'capsiz', u'dead'] [u'basslink', u'damag', u'report', u'day'] [u'beatti', u'unhappi', u'race', u'inquiri', u'cost', u'blow'] [u'beckham', u'celebr', u'arriv'] [u'berri', u'relish', u'red'] [u'bodi', u'identifi', u'miss', u'german', u'backpack'] [u'brack', u'put', u'brake', u'reduc', u'drive', u'plan'] [u'brave', u'action', u'recognis'] [u'brave', u'polic', u'recognis', u'plane', u'crash', u'rescu'] [u'build', u'compani', u'tight', u'lip', u'safeti', u'concern'] [u'driver', u'strike'] [u'bush', u'say', u'europ', u'tie', u'surviv', u'iraq', u'disput'] [u'support', u'mental'] [u'canberra', u'secur', u'nation', u'teach', u'honour'] [u'canberra', u'water', u'hold', u'despit', u'bushfir'] [u'carlsen', u'stun', u'mirnyi', u'captur', u'memphi', u'titl'] [u'chalabi', u'claim', u'number', u'iraqi'] [u'claim', u'global', u'warm', u'threaten', u'australia', u'water'] [u'clinton', u'bush', u'visit', u'lanka', u'tsunami', u'damag', u'coast'] [u'coalit', u'promis', u'extra', u'polic'] [u'cole', u'recal', u'beef', u'rissol'] [u'colleg', u'warn', u'bush', u'birth', u'threat'] [u'costa', u'invit', u'hear', u'bypass', u'rout', u'fear'] [u'council', u'consid', u'cenotaph', u'secur', u'upgrad'] [u'council', u'urg', u'rethink', u'mussel', u'leas', u'motion'] [u'council', u'urg', u'rethink', u'water', u'plan', u'support'] [u'cowra', u'petit', u'seek', u'polic', u'number', u'boost'] [u'craigi', u'blacklock', u'shine', u'widn', u'hull'] [u'croc', u'attack', u'rescu', u'earn', u'pair', u'braveri', u'award'] [u'croc', u'coach', u'confid', u'play', u'off'] [u'death', u'toll', u'rise', u'bangladesh', u'ferri', u'capsiz'] [u'demolit', u'show', u'appreci', u'progress'] [u'develop', u'breath', u'life', u'dept', u'hous'] [u'dozen', u'treat', u'suspect', u'airport', u'leak'] [u'extinct', u'plant', u'reviv', u'seed'] [u'keep', u'possibl', u'nino', u'weather', u'pattern'] [u'fall', u'giant', u'leed', u'fight'] [u'fall', u'home', u'sale', u'match', u'fall', u'price'] [u'farm', u'group', u'take', u'telstra', u'sale', u'protest', u'region'] [u'fatal', u'rescu', u'earn', u'braveri', u'recognit'] [u'feder', u'reclaim', u'win', u'feel'] [u'out', u'panel'] [u'socceroo', u'foster', u'appoint', u'player', u'union'] [u'foster', u'revis', u'southcorp'] [u'sentenc', u'casino', u'brawl'] [u'freedom', u'recreat', u'histori'] [u'gaza', u'pullout', u'hardest', u'decis', u'career', u'sharon'] [u'gidget', u'actress', u'sandra', u'die'] [u'giteau', u'injuri', u'open', u'door', u'rooki'] [u'glori', u'coach', u'defend', u'son', u'sign'] [u'gonzo', u'journalist', u'hunter', u'thompson', u'die'] [u'govt', u'ask', u'hospit', u'plan'] [u'govt', u'criticis', u'confer', u'cost'] [u'govt', u'defend', u'aceh', u'travel', u'warn'] [u'govt', u'hop', u'support', u'collect', u'bargain'] [u'govt', u'move', u'send', u'workplac', u'death', u'coron'] [u'govt', u'pledg', u'tutor', u'program', u'track'] [u'govt', u'seek', u'jail', u'phone', u'trial', u'stop', u'terror', u'plan'] [u'govt', u'see', u'crack', u'opposit', u'parol', u'plan'] [u'govt', u'stand', u'indigen', u'jail', u'rat'] [u'govt', u'releas', u'paper', u'indigen', u'welfar'] [u'govt', u'subsidis', u'cattl', u'tag'] [u'govt', u'work', u'busi', u'manag', u'secur', u'risk'] [u'govt', u'urg', u'sack', u'minist', u'north', u'west', u'road'] [u'back', u'claim', u'rural', u'doctor', u'exploit'] [u'hadden', u'challeng', u'clarifi', u'independ', u'claim'] [u'harbhajan', u'benefit', u'chuck', u'law'] [u'harrass', u'alleg', u'claim', u'refuge', u'chief'] [u'harrison', u'back', u'best', u'perth'] [u'hear', u'begin', u'polic', u'misconduct', u'claim'] [u'henri', u'walker', u'eltin', u'administr', u'grant', u'extens'] [u'howard', u'clark', u'discuss', u'dignifi', u'anzac', u'commemor'] [u'howard', u'continu', u'econom', u'tour'] [u'hunt', u'hoax', u'accid'] [u'hunt', u'pharmaci', u'bandit'] [u'hussey', u'replac', u'katich', u'middl', u'order'] [u'hockey', u'game', u'make', u'record', u'book'] [u'run', u'scar', u'say', u'shoaib'] [u'inact', u'leav', u'kimberley', u'kid', u'wander', u'civic'] [u'indonesian', u'journalist', u'free', u'iraq'] [u'iraqi', u'present', u'abduct', u'mosul'] [u'israel', u'free', u'palestinian', u'prison'] [u'isra', u'cabinet', u'approv', u'gaza', u'plan'] [u'justic', u'complex', u'subbi', u'work'] [u'kewel', u'target', u'champion', u'leagu', u'return'] [u'knight', u'fine', u'player'] [u'knight', u'question', u'player', u'claim'] [u'labor', u'elect', u'promis', u'cost'] [u'landslid', u'rescu', u'earn', u'braveri', u'award'] [u'lennon', u'muse', u'sydney', u'devonport', u'ferri', u'futur'] [u'lennon', u'set', u'limit', u'hospit', u'rescu', u'packag'] [u'line', u'load', u'board', u'plan', u'lift', u'number'] [u'kill', u'china', u'skate', u'rink'] [u'plead', u'guilti', u'tram', u'rock', u'attack'] [u'market', u'record', u'slight', u'rise'] [u'mauresmo', u'deni', u'venus'] [u'mayor', u'defend', u'sydney', u'workshop', u'attend'] [u'mayor', u'fear', u'wine', u'merger', u'plan'] [u'mayor', u'question', u'basin', u'water', u'licenc', u'moratorium'] [u'mayor', u'beat', u'review'] [u'melbourn', u'host', u'region', u'convent'] [u'mental', u'health', u'expert', u'seek', u'support', u'fund', u'boost'] [u'minist', u'say', u'sinn', u'fein', u'leader', u'boss'] [u'mitchel', u'promis', u'help', u'australian', u'rugbi'] [u'moyn', u'council', u'consid', u'port', u'fairi'] [u'overse', u'start', u'highway', u'work'] [u'reveal', u'moruya', u'riot', u'fear'] [u'mysteri', u'ill', u'close', u'termin'] [u'napthin', u'pleas', u'rescu', u'chopper', u'plan'] [u'final', u'format', u'come', u'critic'] [u'burn', u'unit', u'unveil'] [u'sale', u'soar'] [u'newcastl', u'end', u'chelsea', u'quadrupl'] [u'tool', u'predict', u'benefit', u'mammogram'] [u'water', u'restrict', u'melbourn'] [u'nicholson', u'return', u'crunch', u'match'] [u'nightclub', u'curfew', u'see', u'resort'] [u'excus', u'queensland', u'say', u'maher'] [u'stop', u'mcgrath', u'comeback', u'bandwagon'] [u'victoria', u'clean', u'storm'] [u'play', u'polit', u'indigen', u'educ', u'fund'] [u'opposit', u'attack', u'draft', u'workplac', u'death'] [u'opposit', u'attack', u'gallop', u'educ', u'polici'] [u'opposit', u'claim', u'homeland', u'secur', u'fragment'] [u'opposit', u'say', u'high', u'hec', u'fee', u'deter', u'student'] [u'parti', u'offer', u'derbi', u'wharf', u'fund'] [u'hold', u'region', u'public', u'hear'] [u'pickett', u'send', u'direct', u'tribun'] [u'plan', u'welfar', u'overhaul'] [u'govt', u'warn', u'polic', u'stamp', u'corrupt'] [u'pocket', u'ashtray', u'campaign', u'target', u'butt', u'hazard'] [u'polic', u'charg', u'gold', u'coast', u'bouncer'] [u'polic', u'defend', u'action', u'case', u'miss', u'backpack'] [u'polic', u'evid', u'knight', u'probe'] [u'policeman', u'join', u'braveri', u'award', u'recognit'] [u'polic', u'plan', u'charg', u'driver'] [u'polic', u'seek', u'help', u'catch', u'flasher'] [u'portug', u'socialist', u'absolut', u'major'] [u'portugues', u'socialist', u'outright', u'major', u'exit'] [u'posthum', u'award', u'recognis', u'brother', u'braveri'] [u'price', u'squeez', u'anger', u'citrus', u'grower'] [u'protest', u'seek', u'north', u'east', u'log'] [u'fight', u'forest', u'corporatis'] [u'public', u'develop', u'idea', u'boost', u'tourism'] [u'public', u'brief', u'health', u'servic', u'chang'] [u'public', u'wall', u'silenc'] [u'quak', u'time', u'prove', u'hard', u'predict'] [u'question', u'rais', u'clean', u'arrest', u'scene'] [u'race', u'probe', u'cost'] [u'ract', u'back', u'road', u'rule'] [u'ranger', u'break', u'parkhead', u'jinx'] [u'record', u'half', u'year', u'profit', u'bluescop', u'steel'] [u'region', u'cooper', u'stop', u'bioterror', u'hill'] [u'report', u'pressur', u'govt', u'transport', u'fund'] [u'resid', u'emerg', u'phone', u'number', u'remind'] [u'rest', u'kalli', u'sole', u'absente', u'strong', u'squad'] [u'reward', u'offer', u'melbourn', u'loch', u'ness'] [u'road', u'fund', u'realloc'] [u'ruddock', u'busi', u'terrorist', u'warn'] [u'rule', u'get', u'player', u'knight'] [u'safeti', u'concern', u'rais', u'darwin', u'plant'] [u'sampdoria', u'press', u'champion', u'leagu', u'claim'] [u'scheme', u'address', u'bird', u'strike', u'blackout'] [u'scientist', u'warn', u'depriv', u'youngster'] [u'scott', u'claim', u'share', u'lead', u'raini'] [u'second', u'suspect', u'murder', u'arrest', u'brazil'] [u'senat', u'odd', u'colleagu', u'green', u'zone'] [u'sideway', u'win', u'writer', u'guild', u'award'] [u'remain', u'hospit'] [u'skill', u'centr', u'see', u'secur', u'defenc'] [u'earn', u'braveri', u'award', u'rescu', u'father'] [u'spain', u'say', u'constitut', u'exit', u'poll'] [u'spotlight', u'fall', u'employe', u'sharehold', u'scheme'] [u'stat', u'expos', u'seri', u'cheat'] [u'steel', u'giant', u'announc', u'record', u'profit'] [u'studi', u'consid', u'communiti', u'farm', u'plan'] [u'surfwear', u'icon', u'rid', u'profit', u'wave'] [u'telstra', u'repay', u'wholesal', u'broadband'] [u'tendulkar', u'pakistan', u'seri'] [u'test', u'begin', u'wild', u'control'] [u'thousand', u'sick', u'chile', u'seafood', u'bacteria', u'outbreak'] [u'milit', u'kill', u'russian', u'forc'] [u'tiger', u'arriv', u'home', u'hero', u'welcom'] [u'tissu', u'giant', u'help', u'eas', u'demand'] [u'trio', u'recognis', u'brave', u'effort'] [u'dead', u'indonesian', u'landslid'] [u'uni', u'fiji', u'campus', u'spark', u'door', u'claim'] [u'impos', u'curfew', u'rebelli', u'ramadi'] [u'militari', u'hold', u'secret', u'meet', u'iraqi'] [u'export', u'stop', u'bush', u'kill', u'chavez'] [u'victim', u'protest', u'onlin', u'bushfir', u'inquiri', u'delay'] [u'virgin', u'blue', u'termin', u'evacu', u'staff', u'fall'] [u'canal', u'wors', u'franklin', u'brown'] [u'elect', u'campaign', u'enter', u'final', u'week'] [u'waratah', u'prefer', u'palu', u'hoil'] [u'waratah', u'shed', u'blood', u'sweat', u'tear'] [u'watchdog', u'highlight', u'bigger', u'elector', u'slush', u'fund'] [u'watson', u'bull'] [u'wead', u'burn', u'bush', u'secret', u'dope', u'tap'] [u'weight', u'gain', u'link', u'dementia'] [u'whistleblow', u'question', u'xstrata', u'independ'] [u'william', u'hail', u'francou', u'comeback'] [u'worker', u'strike', u'submarin', u'manufactur'] [u'write', u'wall', u'age', u'lehmann', u'waugh'] [u'youth', u'curfew', u'plan', u'unlik'] [u'youth', u'help', u'revitalis', u'countri', u'show'] [u'zimbabw', u'opposit', u'launch', u'elect', u'race'] [u'kill', u'indonesian', u'plane', u'crash'] [u'abus', u'case', u'rise', u'news', u'payout'] [u'accc', u'target', u'spam', u'scam'] [u'aceh', u'peac', u'talk', u'struggl', u'autonomi', u'secur'] [u'seek', u'chang', u'mental', u'health'] [u'troop', u'return', u'home', u'african', u'mission'] [u'airport', u'leak', u'baffl', u'author'] [u'promis', u'high', u'school', u'revamp', u'fund'] [u'alp', u'hospit', u'plan', u'consid', u'overdu'] [u'arrest', u'follow', u'discoveri', u'cannabi', u'plant'] [u'drop', u'despit', u'bank', u'strength'] [u'aust', u'offic', u'jail', u'sierra', u'leon', u'indec'] [u'australian', u'chines', u'polic', u'join', u'forc'] [u'australia', u'step', u'iraq', u'commit'] [u'award', u'win', u'journalist', u'succumb', u'cancer'] [u'barnett', u'challeng', u'guarante', u'canal', u'cost'] [u'beazley', u'admit', u'tough', u'fight', u'loom'] [u'beazley', u'offer', u'albani', u'candid', u'support'] [u'beazley', u'popular', u'edg', u'poll'] [u'beazley', u'take', u'succour', u'poll', u'result'] [u'beirut', u'protest', u'pressur', u'syria', u'withdraw'] [u'benitez', u'blast', u'farina', u'kewel', u'claim'] [u'bomb', u'attack', u'kill', u'soldier', u'iraq'] [u'brighter', u'sign', u'hunter', u'jobless'] [u'brown', u'issu', u'upper', u'hous', u'warn'] [u'bushfir', u'affect', u'resid', u'start', u'legal'] [u'bush', u'push', u'europ', u'middl', u'east', u'democraci'] [u'busi', u'lose', u'centr', u'demis'] [u'californian', u'mudslid', u'kill'] [u'go', u'victorian', u'polic', u'offic'] [u'camera', u'equip', u'spec', u'restor', u'sight'] [u'canal', u'plan', u'spark', u'aborigin', u'opposit'] [u'bomb', u'kill', u'iraqi', u'soldier'] [u'cigarett', u'sale', u'kid', u'rise'] [u'conserv', u'group', u'call', u'marin', u'protect'] [u'council', u'back', u'summerhil', u'wast', u'plan'] [u'council', u'bicker', u'continu', u'tsunami', u'donat'] [u'council', u'consid', u'croc', u'concern'] [u'council', u'consid', u'hous', u'delay', u'compo', u'offer'] [u'council', u'consid', u'trademark', u'byron'] [u'council', u'debat', u'like', u'drink', u'water', u'plan'] [u'council', u'look', u'extend', u'alcohol', u'ban'] [u'council', u'look', u'restrict', u'aborigin', u'migrat'] [u'councillor', u'like', u'yarriambiack', u'council'] [u'council', u'polic', u'see', u'palm', u'youth', u'club'] [u'council', u'say', u'pool', u'cost', u'blowout'] [u'council', u'consid', u'increas', u'lake', u'water', u'level'] [u'council', u'crack', u'holiday', u'rental'] [u'council', u'follow', u'polic', u'station', u'worri'] [u'council', u'urg', u'rethink', u'rural', u'build', u'restrict'] [u'council', u'want', u'bypass', u'interchang'] [u'crew', u'contain', u'smithton'] [u'custom', u'seiz', u'fight', u'knife'] [u'cyclon', u'rush', u'american', u'samoa'] [u'dead', u'quak', u'rock', u'southern', u'iran'] [u'disabl', u'home', u'complet', u'year'] [u'disagr', u'emerg', u'iraq', u'wheat', u'debt'] [u'divid', u'opposit', u'get', u'readi'] [u'doubt', u'remain', u'aeropelican', u'futur'] [u'vet', u'prepar', u'strike'] [u'english', u'hooligan', u'jail', u'month'] [u'probe', u'perilya', u'blast'] [u'servicemen', u'benefit', u'coffe', u'deal'] [u'famili', u'mermaid', u'freak'] [u'farr', u'jone', u'tackl', u'global', u'game'] [u'feder', u'fund', u'alloc', u'eurobodalla', u'privat'] [u'feedlot', u'work', u'rais', u'sacr', u'land', u'fear'] [u'damag', u'timber'] [u'fish', u'parti', u'open', u'hervey', u'branch'] [u'digger', u'receiv', u'franc', u'highest', u'honour'] [u'forestri', u'deni', u'green', u'south', u'sister', u'log'] [u'foster', u'defend', u'southcorp', u'offer'] [u'fraser', u'remain', u'indigen'] [u'freedom', u'ride', u'head', u'bowravill'] [u'galleri', u'risk', u'worker', u'health', u'say', u'union'] [u'general', u'surrend', u'crime', u'tribun'] [u'geraldton', u'get', u'custom', u'boost'] [u'gibb', u'river', u'plan', u'see', u'tourism', u'plus'] [u'gilchrist', u'earli', u'christchurch'] [u'global', u'factor', u'contribut', u'wine', u'price'] [u'govt', u'accept', u'major', u'waterfal', u'recommend'] [u'govt', u'ask', u'boost', u'drought'] [u'govt', u'offer', u'earli', u'ring', u'road', u'compo'] [u'govt', u'plot', u'post', u'juli', u'strategi'] [u'govt', u'stand', u'parliamentari', u'sit'] [u'govt', u'implement', u'icac', u'review', u'recommend'] [u'govt', u'slow', u'address', u'nurs', u'shortag', u'say'] [u'govt', u'simplifi', u'seizur', u'rat', u'materi'] [u'govt', u'urg', u'fund', u'fish', u'permit', u'buyout'] [u'govt', u'urg', u'stick', u'devonport', u'sydney', u'ferri'] [u'help', u'eas', u'bendigo', u'doctor', u'shortag'] [u'green', u'demand', u'inquiri', u'council', u'misconduct'] [u'group', u'fear', u'power', u'station', u'refus'] [u'group', u'beat', u'meet', u'sugar', u'submiss'] [u'grower', u'ask', u'consid', u'buy', u'sell'] [u'growth', u'south', u'east', u'underestim', u'say', u'properti'] [u'gulf', u'marin', u'green', u'zone', u'fair'] [u'hayden', u'lift', u'aussi', u'massiv', u'total'] [u'hayden', u'star', u'aussi', u'victori'] [u'hepburn', u'spring', u'school', u'real', u'beauti'] [u'hill', u'reject', u'call', u'defenc', u'white', u'paper', u'rewrit'] [u'hospit', u'fill', u'anaesthetist', u'posit'] [u'hospit', u'stint', u'slow'] [u'hous', u'project', u'enhanc', u'prospect'] [u'hundr', u'kill', u'iran', u'quak'] [u'indigen', u'communiti', u'boycott', u'elect'] [u'indigen', u'work', u'program', u'reform', u'scrutini'] [u'infantri', u'get', u'combat', u'gear'] [u'inquest', u'hear', u'driver', u'drink', u'passeng', u'jump'] [u'iran', u'say', u'nuclear', u'capabl', u'sale'] [u'iraqi', u'interrog', u'didnt', u'happen', u'hill', u'say'] [u'iraq', u'wag', u'propaganda', u'interrog'] [u'japan', u'consid', u'women', u'imperi', u'throne'] [u'jetstar', u'offer', u'virgin', u'passeng', u'backlog', u'deal'] [u'journalist', u'leav', u'zimbabw', u'polic', u'probe'] [u'khmer', u'roug', u'backpack', u'killer', u'taunt', u'author'] [u'knight', u'player', u'sack', u'alleg'] [u'knight', u'scandal', u'kick', u'gut', u'leagu'] [u'knockout', u'round', u'reviv', u'champion', u'leagu', u'sparkl'] [u'labor', u'oppos', u'iraq', u'troop', u'increas'] [u'labor', u'question', u'accc', u'effect'] [u'labor', u'seek', u'tighter', u'regul', u'oversea'] [u'labor', u'urg', u'follow', u'remand', u'centr'] [u'landfil', u'site', u'spark', u'river', u'fear'] [u'legionnair', u'outbreak', u'appear', u'control'] [u'liabil', u'fear', u'limit', u'inquiri'] [u'liber', u'councillor', u'seek', u'audit', u'riverwalk', u'cost'] [u'liber', u'promis', u'goldfield', u'polic', u'boost'] [u'lion', u'generat', u'chang', u'leader'] [u'london', u'mayor', u'defiant', u'nazi', u'jibe'] [u'longreach', u'reveal', u'pool', u'plan'] [u'malaysian', u'bureaucrat', u'tell', u'mind', u'manner'] [u'die', u'perth', u'polic', u'chase'] [u'man', u'bodi', u'exhum'] [u'mar', u'subterranean', u'freez'] [u'rais', u'devaugh', u'question'] [u'meet', u'push', u'free', u'farm', u'loan'] [u'million', u'dollar', u'babi', u'pois', u'strike', u'oscar', u'blow'] [u'minist', u'rais', u'technic', u'colleg', u'question'] [u'mitsubishi', u'launch', u'press'] [u'molik', u'edg', u'rank'] [u'avalanch', u'kashmir'] [u'criticis', u'tax', u'properti', u'market', u'impact'] [u'pan', u'liber', u'parti', u'leadership', u'talk'] [u'urg', u'wind', u'farm', u'hear', u'venu', u'chang'] [u'wind', u'window', u'fin'] [u'snub', u'wollongong', u'hospit'] [u'nation', u'attack', u'stanc', u'tollway'] [u'nation', u'oppos', u'decis', u'scrap', u'freeway', u'toll'] [u'navi', u'frigat', u'ground', u'inquiri', u'begin'] [u'newcastl', u'knightmar', u'polic', u'matter'] [u'fli', u'doctor', u'plan', u'rockhampton'] [u'york', u'launch', u'olymp', u'pitch'] [u'korea', u'say', u'nuclear', u'talk', u'resum'] [u'grudg', u'rivalri', u'zealand', u'pont'] [u'north', u'west', u'prefer', u'decis', u'worri', u'chanc'] [u'player', u'liabl', u'spear', u'tackl'] [u'busi', u'confid', u'slump'] [u'govt', u'pressur', u'parliament', u'return'] [u'busi', u'confid', u'rise'] [u'onesteel', u'profit', u'soar', u'strong', u'demand'] [u'opposit', u'grill', u'clark', u'palm', u'island', u'visit'] [u'opposit', u'urg', u'releas', u'elect', u'cost'] [u'ozjet', u'select', u'adelaid', u'base'] [u'pacif', u'island', u'confirm', u'rugbi', u'test', u'schedul'] [u'pakistan', u'tour', u'doubt', u'indian', u'right'] [u'palestinian', u'revamp', u'cabinet'] [u'parent', u'face', u'court', u'stick', u'chase', u'claim'] [u'parliament', u'set', u'stage', u'togo', u'poll'] [u'pearson', u'help', u'develop', u'govt', u'welfar', u'plan'] [u'pickett', u'face', u'lone', u'trip', u'tribun'] [u'pickett', u'out', u'match'] [u'pilbara', u'technic', u'colleg', u'plan'] [u'pitt', u'aniston', u'separ'] [u'plan', u'afoot', u'paedophil', u'regist'] [u'player', u'wait', u'davi'] [u'govt', u'accus', u'sanction', u'illeg', u'fish'] [u'polic', u'investig', u'alleg', u'knight', u'assault'] [u'policeman', u'conced', u'mistak', u'violent', u'arrest'] [u'polic', u'offic', u'uninjur', u'drag'] [u'port', u'chairman', u'say', u'chief', u'sack', u'board'] [u'port', u'piri', u'smelter', u'help', u'boost', u'zinifex', u'profit'] [u'probe', u'launch', u'melbourn', u'airport', u'emerg'] [u'promina', u'profit', u'jump'] [u'promot', u'truth', u'trash', u'pope', u'tell', u'media'] [u'prosecutor', u'wrap', u'case', u'bashir'] [u'public', u'urg', u'wind', u'farm', u'develop'] [u'spot', u'interst', u'migrat'] [u'qualifi', u'worker', u'elud', u'small', u'busi', u'employ'] [u'rat', u'specul', u'loom', u'retail', u'outlook'] [u'rebel', u'blignaut', u'sign', u'zimbabw', u'deal'] [u'record', u'solo', u'sail', u'attempt', u'end', u'disappoint'] [u'rey', u'charg', u'violent', u'conduct'] [u'river', u'death', u'inquest', u'hear', u'evid'] [u'road', u'delay', u'develop', u'liber'] [u'royal', u'wed', u'open', u'public'] [u'rspca', u'organis', u'tour', u'focus', u'reduc', u'anim'] [u'rugbi', u'chief', u'aim', u'game', u'inclus'] [u'russian', u'metal', u'giant', u'clear', u'queensland'] [u'russia', u'ukrain', u'fail', u'relationship'] [u'birth', u'rate', u'lowest', u'countri'] [u'safin', u'lead', u'russian', u'davi', u'team'] [u'scott', u'rank', u'surg'] [u'scott', u'win', u'play'] [u'scud', u'davi'] [u'scud', u'snub', u'davi'] [u'senior', u'star', u'bronco', u'trial', u'match'] [u'offend', u'monitor', u'releas'] [u'sinn', u'fein', u'leader', u'chief'] [u'stock', u'loss', u'creat', u'eyr', u'peninsula', u'work', u'concern'] [u'strong', u'dollar', u'eat', u'fisheri', u'export', u'valu'] [u'student', u'face', u'committ', u'terror', u'charg'] [u'strike', u'drag', u'union', u'meet', u'abandon'] [u'survey', u'show', u'adequ', u'swan', u'hill', u'park'] [u'opposit', u'pressur', u'govt', u'delay'] [u'technic', u'colleg', u'year', u'start'] [u'teen', u'driver', u'accus', u'show', u'autopsi', u'photo'] [u'termit', u'toll', u'gladston', u'tree'] [u'face', u'court', u'gippsland', u'murder'] [u'time', u'run', u'plate', u'plan', u'comment'] [u'tissu', u'compani', u'boost', u'suppli'] [u'toll', u'hold', u'half', u'year', u'profit', u'jump'] [u'toowoomba', u'get', u'machin', u'relief'] [u'tune', u'red'] [u'turnbul', u'leav', u'shorthand', u'growth', u'forest'] [u'warn', u'afghanistan', u'slide', u'chao'] [u'fuel', u'aristocrat', u'record', u'profit'] [u'holiday', u'leav', u'market', u'flat'] [u'vanston', u'defend', u'atsic', u'seizur'] [u'venezuela', u'see', u'dirti', u'say', u'safe'] [u'virgin', u'compens', u'passeng', u'delay'] [u'warrnambool', u'host', u'refuge', u'settlement', u'scheme'] [u'say', u'knight', u'chairman'] [u'wildcat', u'elli', u'win', u'week', u'gong'] [u'woman', u'win', u'damag', u'bike', u'accid'] [u'year', u'wait', u'bendigo', u'machin'] [u'fear', u'dead', u'landslid'] [u'acceler', u'hous', u'blaze'] [u'alex', u'header', u'give', u'eindhoven', u'slender', u'advantag'] [u'alleg', u'palm', u'island', u'rioter', u'appli', u'bail'] [u'allenbi', u'want', u'match', u'play', u'move', u'soggi', u'diego'] [u'ord', u'finish', u'point'] [u'ambassador', u'defend', u'dutch', u'troop', u'withdraw', u'iraq'] [u'ancient', u'mangrov', u'forest', u'reef'] [u'arthur', u'upset', u'dent', u'arizona'] [u'australia', u'claim', u'upper', u'hand'] [u'australia', u'stand', u'iran', u'nuclear', u'plan'] [u'aust', u'readi', u'help', u'iranian', u'quak', u'victim'] [u'aust', u'deport', u'year', u'report'] [u'barcoo', u'centr', u'build', u'start'] [u'barnett', u'push', u'canal', u'plan', u'despit'] [u'basslink', u'act', u'minimis', u'damag', u'delay'] [u'beatti', u'anticip', u'misconduct', u'claim'] [u'beazley', u'press', u'iraq', u'plan'] [u'benitez', u'happi', u'kewel', u'return'] [u'bennett', u'coach', u'decis', u'captain'] [u'bennett', u'stay', u'kangaroo', u'coach'] [u'berlin', u'film', u'festiv', u'shine', u'spotlight', u'indigen'] [u'support', u'supermarket', u'alcohol', u'sale'] [u'bird', u'confer', u'open', u'vietnam'] [u'brambl', u'half', u'profit', u'jump'] [u'breast', u'cancer', u'death', u'rate', u'fall'] [u'breeder', u'plan', u'alpaca', u'extravaganza', u'showcas'] [u'brigad', u'readi', u'iraq', u'deploy'] [u'bucknor', u'umpir', u'test'] [u'bullet', u'readi', u'elimin', u'final'] [u'bush', u'arriv', u'germani', u'talk', u'schroeder'] [u'bushfir', u'rebuild', u'coordin', u'pass', u'baton'] [u'busi', u'chamber', u'freight', u'corridor', u'plan'] [u'camera', u'thorn', u'rise', u'thiev', u'side'] [u'campaign', u'happi', u'promis', u'establish'] [u'candid', u'back', u'communiti', u'elect', u'boycott'] [u'candid', u'furious', u'leak', u'polic', u'record'] [u'carr', u'announc', u'bridg', u'protect', u'packag'] [u'carr', u'deni', u'conflict', u'icac', u'decis'] [u'carr', u'reveal', u'land', u'option'] [u'cattl', u'drive', u'ensur', u'organ', u'beef', u'produc'] [u'centenni', u'austral', u'coal', u'merg'] [u'china', u'kill'] [u'chirac', u'cite', u'aust', u'exampl', u'china', u'arm', u'sale'] [u'citrus', u'grower', u'pest', u'free', u'status'] [u'coalit', u'pledg', u'southern', u'polic'] [u'compromis', u'seek', u'gorg', u'water', u'flow'] [u'council', u'look', u'sister', u'citi', u'benefit'] [u'councillor', u'get', u'miss', u'meet'] [u'councillor', u'scuttl', u'shire', u'plan'] [u'council', u'opt', u'bush', u'bursari', u'program'] [u'council', u'reject', u'limeston', u'quarri', u'plan'] [u'council', u'seek', u'safe', u'land', u'roadsid', u'sale'] [u'council', u'share', u'feder', u'fund'] [u'council', u'ask', u'confirm', u'visitor', u'centr'] [u'council', u'join', u'tribut', u'murder', u'german'] [u'court', u'award', u'super', u'nrma', u'chairman'] [u'dept', u'address', u'moruya', u'public', u'hous', u'woe'] [u'dept', u'deni', u'plan', u'deport', u'centenarian'] [u'deregul', u'forc', u'liquor', u'price'] [u'doubt', u'rais', u'darwin', u'waterfront', u'plan'] [u'downer', u'concern', u'halloran', u'case'] [u'vet', u'wide', u'strike'] [u'draw', u'help', u'west', u'brom', u'saint'] [u'dudek', u'slip', u'mar', u'liverpool', u'parti'] [u'lose', u'opera', u'hous', u'anti', u'protest', u'appeal'] [u'improv', u'person', u'safeti', u'awar'] [u'earthquak', u'rock', u'andaman', u'island'] [u'surviv', u'dead', u'plane', u'crash'] [u'employ', u'urg', u'offer', u'danger', u'leav'] [u'ethiopia', u'food', u'stock', u'run', u'warn'] [u'timor', u'seek', u'extens', u'peacekeep', u'mission'] [u'ferguson', u'keep', u'ruud', u'return'] [u'fiji', u'govt', u'clear', u'backdoor', u'student', u'claim'] [u'firm', u'keen', u'establish', u'trader', u'group'] [u'fisher', u'seek', u'marin', u'park', u'transit', u'lane'] [u'fossil', u'unearth', u'turtl', u'ancestor'] [u'gallop', u'distanc', u'underdog', u'label'] [u'leak', u'prompt', u'school', u'evacu'] [u'glue', u'pitch', u'great', u'tell'] [u'good', u'vibrat', u'rule', u'termit', u'world'] [u'govt', u'approv', u'eden', u'mussel', u'leas'] [u'govt', u'consid', u'chang', u'land', u'council'] [u'govt', u'consid', u'atsic', u'move', u'away', u'asset'] [u'govt', u'consid', u'speedier', u'coal', u'export'] [u'govt', u'deliv', u'step', u'curriculum'] [u'govt', u'make', u'wiluna', u'meekatharra', u'road', u'fund', u'pledg'] [u'govt', u'reject', u'detent', u'centr', u'claim'] [u'govt', u'beef', u'export', u'quota', u'question'] [u'govt', u'fluorid', u'stanc'] [u'govt', u'urg', u'reject', u'councillor', u'plan'] [u'hayden', u'confid', u'recoveri', u'chanc'] [u'health', u'servic', u'investig', u'surgeri', u'wait'] [u'hear', u'tell', u'public', u'crime', u'scene', u'clean'] [u'heavi', u'snow', u'close', u'pari', u'airport'] [u'hedland', u'polic', u'accus', u'petrol', u'steal'] [u'helguera', u'give', u'real', u'edg'] [u'high', u'hop', u'drainag', u'studi'] [u'high', u'price', u'fuel', u'santo', u'profit', u'jump'] [u'holden', u'hit', u'disloy', u'claim'] [u'holden', u'local', u'supplier'] [u'homeless', u'korean', u'step', u'style'] [u'howard', u'tightlip', u'canal', u'propos'] [u'icac', u'chang', u'allow', u'public', u'comment'] [u'india', u'ban', u'flag', u'sport', u'outfit'] [u'investig', u'tight', u'lip', u'melbourn', u'airport'] [u'iranian', u'quak', u'survivor', u'spend', u'night', u'cold'] [u'iran', u'jail', u'editor', u'year'] [u'iran', u'open', u'talk', u'nuclear', u'program'] [u'iraq', u'troop', u'link', u'trade', u'deal', u'brown', u'say'] [u'iron', u'price', u'skyrocket'] [u'isra', u'court', u'order', u'halt', u'ramallah', u'secur'] [u'italian', u'rocker', u'get', u'year', u'satan', u'kill'] [u'jackson', u'court', u'ill'] [u'junior', u'rugbi', u'leagu', u'launch', u'behaviour', u'campaign'] [u'kafer', u'pull', u'perth', u'race'] [u'kelli', u'pressur', u'investig'] [u'corp', u'record', u'profit', u'jump'] [u'drive', u'scott'] [u'lawyer', u'pose', u'health', u'risk', u'studi'] [u'lebanes', u'readi', u'resign'] [u'liber', u'toll', u'remov', u'decis'] [u'local', u'return', u'plain', u'leak'] [u'loch', u'ness', u'frighten', u'tourist'] [u'lord', u'mayor', u'keen', u'action', u'brisban', u'tunnel'] [u'lord', u'chief', u'time', u'tavern', u'drink'] [u'manilla', u'economi', u'paraglid'] [u'jail', u'charg'] [u'jail', u'syring', u'threat'] [u'face', u'committ', u'hear', u'terror'] [u'martin', u'avoid', u'back', u'iraq', u'troop', u'commit'] [u'masur', u'leav', u'door', u'open', u'scud'] [u'mayn', u'maintain', u'asset'] [u'memori', u'readi', u'anzac'] [u'migrant', u'disadvantag', u'childcar', u'place'] [u'miner', u'prehistor', u'croc'] [u'minist', u'criticis', u'govt', u'port', u'delay'] [u'monk', u'glue', u'eye', u'shut'] [u'call', u'costa', u'hear', u'highway', u'bypass', u'fear'] [u'reject', u'benefit'] [u'fight', u'asylum', u'seeker', u'wodonga'] [u'airlin', u'base', u'mainten', u'victoria'] [u'build', u'hous', u'aqi', u'staff'] [u'guidelin', u'croc', u'handler'] [u'model', u'lenton', u'bristl', u'confid'] [u'waterfront', u'unit', u'demand'] [u'parliament', u'hear', u'dubbo', u'concern'] [u'magistr', u'resign'] [u'nurs', u'claim', u'staff', u'shortag', u'hurt', u'alic', u'spring'] [u'tourist', u'stab', u'sydney'] [u'surg', u'push', u'dollar', u'month', u'high'] [u'onesteel', u'record', u'half', u'year', u'profit'] [u'opal', u'fever', u'grip', u'coober', u'pedi'] [u'opposit', u'see', u'ongo', u'problem', u'canberra'] [u'opposit', u'freight', u'plan', u'wont', u'work', u'gallop'] [u'pacif', u'dunlop', u'sale', u'slide'] [u'palac', u'deni', u'queen', u'snub', u'princ', u'wed'] [u'palestinian', u'parliament', u'delay', u'vote', u'cabinet'] [u'palm', u'island', u'council', u'rais', u'beatti'] [u'palm', u'island', u'petit', u'vanston', u'royal'] [u'palm', u'island', u'petit', u'hand', u'vanston'] [u'panda', u'skeleton', u'ancient', u'tomb'] [u'pentagon', u'probe', u'iraq', u'rape', u'claim'] [u'perilya', u'boost', u'profit'] [u'philippoussi', u'shock'] [u'pickett', u'appeal', u'hold', u'week'] [u'pickett', u'tribun', u'scapegoat', u'power'] [u'say', u'elect', u'tight', u'contest'] [u'polic', u'charg', u'tare', u'murder'] [u'polic', u'fear', u'miss', u'wiluna', u'woman'] [u'polic', u'investig', u'babi', u'death', u'orang'] [u'polic', u'raid', u'marijuana', u'plant'] [u'polic', u'receiv', u'fresh', u'lead', u'death', u'german'] [u'polic', u'remov', u'anti', u'log', u'protest'] [u'polic', u'boost', u'jigalong', u'presenc'] [u'polic', u'crack', u'speed', u'driver'] [u'poll', u'find', u'support', u'north', u'west', u'pulp'] [u'pope', u'book', u'assail', u'marriag', u'abort'] [u'power', u'launch', u'pickett', u'appeal'] [u'quak', u'shift', u'phuket'] [u'queen', u'wont', u'attend', u'charl', u'camilla', u'wed'] [u'rebuild', u'maldiv', u'cost', u'million'] [u'rescuer', u'continu', u'search', u'avalanch', u'survivor'] [u'resid', u'expect', u'dust', u'storm', u'relief'] [u'roger', u'throw', u'injuri', u'scare', u'tah', u'camp'] [u'round', u'world', u'yacht', u'dock', u'fremantl'] [u'row', u'club', u'reveal', u'renov', u'plan'] [u'rspca', u'open', u'dig'] [u'ruthless', u'bayern', u'expos', u'arsenal', u'flaw'] [u'safin', u'round', u'victim', u'dubai'] [u'resist', u'nationwid', u'plan'] [u'saturday', u'night', u'fever', u'dancefloor', u'sale'] [u'schultz', u'trip', u'seek', u'child', u'support', u'agenc'] [u'scud', u'breath', u'easier', u'final', u'earn'] [u'setback', u'state', u'electr', u'plan'] [u'sharehold', u'slowli', u'portman', u'takeov'] [u'shoulder', u'knock', u'hayden', u'doubt'] [u'home', u'hospit'] [u'iraq', u'violenc'] [u'soldier', u'kill', u'truck', u'rollov'] [u'solo', u'sailor', u'head', u'hobart', u'repair'] [u'souness', u'want', u'year', u'shearer'] [u'spotlight', u'fall', u'forster', u'tuncurri', u'high', u'rise'] [u'stockland', u'stand', u'firm', u'takeov', u'offer'] [u'worker'] [u'survey', u'show', u'wage', u'pressur', u'impact', u'busi'] [u'suspici', u'packag', u'danger', u'polic'] [u'teen', u'hurt', u'trail', u'bike', u'fall'] [u'thompson', u'want', u'ash', u'fire', u'cannon'] [u'tiger', u'termin', u'blignaut', u'contract'] [u'tiger', u'parti'] [u'tils', u'sack', u'drunken', u'rampag', u'hasti'] [u'trade', u'post', u'get', u'makeov'] [u'tradit', u'owner', u'give', u'kakadu'] [u'transfield', u'buy', u'stake', u'perth', u'power', u'station'] [u'transurban', u'reveal', u'citylink', u'toll', u'revenu', u'increas'] [u'tsunami', u'delay', u'frustrat', u'mayor'] [u'rescu', u'iran', u'rubbl', u'death', u'toll', u'rise'] [u'fear', u'iraq', u'illeg', u'report'] [u'union', u'back', u'owner', u'centr'] [u'union', u'fight', u'smelter', u'job'] [u'shoalhaven', u'campus', u'founder', u'die'] [u'univers', u'combin', u'effort'] [u'call', u'chavez', u'kill', u'plot', u'charg', u'ridicul'] [u'citizen', u'face', u'bush', u'assassin', u'plot', u'charg'] [u'market', u'knock', u'price'] [u'militari', u'deni', u'conduct', u'flight', u'iran'] [u'parliament', u'region', u'sit'] [u'virgin', u'count', u'cost', u'oper', u'return', u'normal'] [u'wage', u'creep', u'add', u'rat', u'chatter'] [u'wag', u'press', u'rat', u'opposit', u'say'] [u'wangaratta', u'feel', u'bite', u'grow', u'dental', u'wait'] [u'waratah', u'sign', u'fring', u'player'] [u'word', u'erupt', u'dubbo', u'machin'] [u'welcom', u'record', u'iron', u'price', u'deal'] [u'welcom', u'brutal', u'world'] [u'world', u'unprepar', u'biolog', u'attack'] [u'chelsea', u'lead', u'english', u'tale', u'champion'] [u'lockout', u'help', u'nightclub', u'violenc'] [u'aceh', u'peac', u'talk', u'breakthrough'] [u'actu', u'talk', u'overhaul', u'construct', u'andrew'] [u'advertis', u'revenu', u'lift', u'pbls', u'half', u'year', u'profit'] [u'aircon', u'innov', u'halv', u'energi', u'consumpt'] [u'earn', u'dive', u'competit'] [u'voss', u'lion'] [u'civilian', u'trap', u'kashmir', u'attack', u'rescu'] [u'alleg', u'killer', u'worker', u'phone', u'court'] [u'green', u'effort'] [u'anti', u'gunghalin', u'drive', u'group', u'provid'] [u'aussi', u'rule', u'club', u'appeal', u'coach'] [u'aussi', u'lead', u'world', u'share', u'ownership'] [u'australian', u'face', u'deport', u'botswana'] [u'aust', u'seek', u'defer', u'timor', u'boundari', u'rule'] [u'want', u'boost', u'goldfield', u'presenc'] [u'barnett', u'cost', u'blunder'] [u'barramundi', u'farmer', u'welcom', u'feder', u'guidelin'] [u'basslink', u'delay', u'spark', u'blackout', u'fear'] [u'bishop', u'rais', u'anglican', u'church'] [u'blackburn', u'admit', u'charg', u'chelsea', u'deni', u'breach'] [u'blaze', u'forc', u'preschool', u'evacu'] [u'blue', u'steadi', u'start'] [u'blue', u'slip', u'perth'] [u'book', u'sing', u'drug', u'smuggl', u'prais', u'withdraw'] [u'bowditch', u'lead', u'zealand'] [u'brisban', u'violenc', u'go', u'taxi', u'rank', u'govt', u'tell'] [u'brumbi', u'crusad', u'renew', u'super', u'hostil'] [u'bull', u'flop'] [u'busi', u'invest', u'remain', u'strong'] [u'businessman', u'offer', u'corbi', u'legal', u'help'] [u'cane', u'toad', u'menac', u'prompt', u'scienc', u'think', u'tank'] [u'bomb', u'kill', u'tikrit'] [u'carr', u'criticis', u'propos', u'chang'] [u'chamber', u'want', u'quick', u'refineri', u'strike'] [u'china', u'rais', u'qualiti', u'control', u'concern', u'produc'] [u'china', u'suspend', u'leader', u'dead', u'mine', u'disast'] [u'coalit', u'promis', u'gascoyn', u'servic', u'boost'] [u'coal', u'termin', u'restrain', u'prim', u'profit'] [u'colleg', u'win', u'damag', u'contamin', u'land'] [u'compani', u'fin', u'toxic', u'spill'] [u'compani', u'head', u'cook', u'organ', u'beef'] [u'consult', u'start', u'wast', u'dump', u'export', u'studi'] [u'council', u'allow', u'sign', u'trial'] [u'council', u'offer', u'revel', u'late', u'night'] [u'council', u'feel', u'feder', u'fund'] [u'court', u'dismiss', u'pipelin', u'legal'] [u'crash', u'probe', u'find', u'black', u'hawk', u'tree'] [u'critic', u'iraq', u'deploy', u'confus', u'howard'] [u'csiro', u'build', u'evacu', u'leak'] [u'dajka', u'recal', u'australian', u'team'] [u'decis', u'loom', u'rail', u'line'] [u'disabl', u'advocaci', u'group', u'ask'] [u'doyl', u'hit', u'liber', u'rat'] [u'consid', u'contempt', u'charg', u'articl'] [u'congo', u'plagu', u'outbreak', u'spread'] [u'driver', u'face', u'court', u'high', u'blood', u'alcohol'] [u'drogba', u'dismiss', u'sour', u'mourinho', u'barca', u'return'] [u'eagl', u'drop', u'cousin', u'welcom', u'gardin'] [u'excess', u'water', u'prove', u'cost'] [u'exil', u'somali', u'visit', u'homeland'] [u'farmer', u'feder', u'downgrad', u'field'] [u'fatal', u'tanker', u'crash', u'investig'] [u'fear', u'air', u'special', u'shop', u'impact'] [u'feder', u'struggl', u'past', u'qualifi', u'dubai'] [u'crew', u'clean', u'chemic', u'spill'] [u'fluorid', u'debat', u'intensifi'] [u'magistr', u'want'] [u'frail', u'pope', u'hospit', u'relaps'] [u'freez', u'bacterium', u'add', u'mar', u'specul'] [u'fund', u'approv', u'lake', u'eyr', u'basin', u'manag'] [u'fund', u'offer', u'save', u'bushland'] [u'gallop', u'defend', u'govt', u'mental', u'health', u'record'] [u'goalkeep', u'curs', u'return', u'haunt', u'unit'] [u'govt', u'ask', u'locust', u'levi', u'explain'] [u'govt', u'criticis', u'staff', u'decis'] [u'govt', u'deliv', u'attack', u'birth', u'suit', u'pledg'] [u'govt', u'ditch', u'plan', u'coorong', u'access'] [u'govt', u'maintain', u'goldfield', u'solar', u'power', u'push'] [u'govt', u'quiz', u'detent', u'centr', u'claim'] [u'govt', u'mussel', u'decis'] [u'green', u'happi', u'coalit', u'chemic', u'offer'] [u'griffith', u'council', u'rethink', u'loan', u'polici'] [u'group', u'bowl', u'blood'] [u'grower', u'winemak', u'profit', u'boost', u'hard'] [u'gunn', u'choos', u'bell', u'pulp', u'site'] [u'gunn', u'site', u'billion', u'dollar', u'pulp'] [u'haemophilia', u'drug', u'stroke', u'recoveri'] [u'head', u'wind', u'delay', u'solo', u'sailor', u'arriv'] [u'health', u'dept', u'say', u'hospit', u'staff', u'shortag', u'fix'] [u'victim', u'father', u'seek', u'chang', u'drug', u'test'] [u'hodg', u'put', u'bushrang'] [u'hollywood', u'actor', u'slater', u'divorc'] [u'hunter', u'divis', u'merg'] [u'wide', u'growth', u'doubl', u'half', u'year', u'profit'] [u'identif', u'sept', u'victim', u'finish'] [u'indian', u'right', u'resolv'] [u'indonesia', u'revis', u'tsunami', u'death', u'toll'] [u'investig', u'clear', u'real', u'estat', u'agent', u'improp'] [u'iran', u'quak', u'toll', u'reach'] [u'iran', u'reject', u'idea', u'talk'] [u'isol', u'major', u'hurdl', u'indigen', u'educ'] [u'jackson', u'stay', u'storm'] [u'john', u'admit', u'fear', u'knight', u'sponsorship', u'deal'] [u'johnston', u'barnett', u'loggerhead', u'canal'] [u'kakadu', u'proper', u'promot', u'report', u'say'] [u'karratha', u'pub', u'reopen', u'violent', u'brawl'] [u'kashmir', u'avalanch', u'death', u'toll', u'reach'] [u'khazal', u'jail', u'lebanon', u'bail', u'sydney'] [u'labor', u'attack', u'barnett', u'indian', u'ocean', u'drive'] [u'labor', u'question', u'safeti', u'troop', u'deploy'] [u'landcorp', u'reject', u'land', u'releas', u'delay', u'claim'] [u'polic', u'secur', u'inform', u'death'] [u'legionella', u'bacteria', u'iron'] [u'liabil', u'chang', u'endang', u'case', u'kirbi'] [u'liber', u'highlight', u'industri', u'woe'] [u'liverpool', u'depth', u'gerrard', u'say', u'kewel'] [u'lobbi', u'group', u'critic', u'plan', u'chang'] [u'local', u'author', u'condemn', u'dredg', u'applic'] [u'local', u'charg', u'await', u'australian', u'jail', u'lebanon'] [u'lockyer', u'happi', u'captainci', u'limbo'] [u'lukewarm', u'respons', u'lift', u'hardi'] [u'lyon', u'crush', u'bremen'] [u'jail', u'life', u'relat', u'murder'] [u'jail', u'teen', u'girl', u'shoot'] [u'jail', u'underag'] [u'releas', u'jail', u'sentenc', u'downgrad'] [u'surrend', u'polic', u'school', u'stand'] [u'court', u'murder', u'arm', u'robberi'] [u'marin', u'escap', u'charg', u'fallujah', u'shoot'] [u'market', u'end'] [u'meet', u'look', u'eas', u'port', u'augusta', u'racial', u'tension'] [u'melbourn', u'factori', u'evacu', u'chemic', u'spill'] [u'melbourn', u'freeway', u'open', u'tanker', u'blaze'] [u'melbourn', u'resid', u'face', u'game', u'secur', u'crackdown'] [u'charg', u'assault', u'outsid', u'parliament'] [u'milit', u'jail', u'indonesia', u'bomb'] [u'miner', u'urg', u'site', u'plan'] [u'miner', u'welcom', u'iron', u'price', u'rise'] [u'minist', u'confid', u'stay', u'timor'] [u'minotaur', u'opt', u'chang'] [u'miyazato', u'scorch', u'master', u'field'] [u'miyazato', u'show', u'class', u'ladi', u'master'] [u'soldier', u'face', u'iraq', u'abus', u'trial'] [u'mother', u'charg', u'murder', u'children'] [u'mother', u'evid', u'partner'] [u'highlight', u'fall', u'break', u'hill', u'popul'] [u'seek', u'disabl', u'park', u'permit'] [u'murder', u'trial', u'tell', u'miss', u'batteri'] [u'mushroom', u'factori', u'defend', u'feder', u'award'] [u'mutat', u'find', u'boost', u'vaccin', u'research'] [u'nation', u'candid', u'admit', u'hospit', u'embarrass'] [u'navi', u'come', u'drift', u'contain', u'ship'] [u'newcrest', u'find', u'profit', u'increas'] [u'newspap', u'columnist', u'appoint', u'board'] [u'normal', u'vline', u'timet', u'resum', u'soon'] [u'dead', u'trap', u'kashmir', u'milit', u'attack'] [u'opposit', u'introduc', u'complet', u'shaw'] [u'opposit', u'promis', u'land', u'review', u'elect'] [u'opposit', u'queri', u'public', u'servant', u'feder'] [u'outgo', u'liber', u'prais', u'labor'] [u'palestinian', u'parliament', u'give', u'overwhelm', u'back'] [u'palm', u'island', u'council', u'futur', u'uncertain'] [u'parent', u'ralli', u'child', u'care', u'shortag'] [u'partnership', u'focus', u'wheatbelt', u'health', u'need'] [u'patterson', u'wont', u'commit', u'childcar', u'rebat', u'chang'] [u'petit', u'seek', u'hospit', u'board', u'reinstat'] [u'pivot', u'class', u'match', u'begin'] [u'cautious', u'canal', u'plan'] [u'pipelin', u'project', u'push', u'ahead'] [u'polic', u'hunt', u'miss', u'jewelleri', u'move'] [u'polic', u'hunt', u'doubl', u'stab'] [u'polic', u'investig', u'tourist', u'slay', u'seek', u'man', u'help'] [u'polic', u'post', u'mortem', u'result', u'wrap'] [u'policeman', u'deni', u'crime', u'scene', u'cover'] [u'polic', u'stand', u'station'] [u'pool', u'centr', u'year', u'away'] [u'porto', u'share', u'honour', u'inter'] [u'possum', u'problem', u'hit', u'high', u'school'] [u'plate', u'driver', u'kill', u'crash'] [u'premier', u'say', u'water', u'price', u'rise', u'spread'] [u'withstand', u'tsunami', u'claim', u'report', u'profit'] [u'reef', u'reopen', u'angler'] [u'report', u'link', u'inform', u'death'] [u'rescu', u'chopper', u'fli', u'teen', u'burn', u'victim', u'hospit'] [u'rescu', u'chopper', u'propon', u'wont', u'confirm', u'woodsid'] [u'retail', u'trade', u'group', u'deni', u'superannu', u'rort'] [u'richmond', u'face', u'hard', u'traeger', u'park', u'decis'] [u'rock', u'attack', u'rattl', u'suburban', u'adelaid'] [u'safeti', u'upgrad', u'take', u'council', u'surpris'] [u'scan', u'clear', u'hayden', u'shoulder', u'bone', u'damag'] [u'school', u'evacu', u'enter', u'ground'] [u'schooli', u'urg', u'avoid', u'accommod', u'off'] [u'schu', u'suffer', u'self', u'doubt'] [u'scud', u'comeback', u'trail', u'end', u'arizona'] [u'seatbelt', u'possibl', u'factor', u'armi', u'truck', u'death'] [u'seatbelt', u'wear', u'fatal', u'crash', u'polic'] [u'seat', u'virgin', u'flight'] [u'secret', u'tap', u'give', u'bush'] [u'smoke', u'cost', u'year'] [u'snow', u'caus', u'chao', u'europ'] [u'speed', u'camera', u'rack', u'revenu'] [u'state', u'starv', u'mental', u'health', u'sector', u'fund'] [u'steadi', u'go', u'bushrang'] [u'strong', u'region', u'growth', u'share', u'ownership'] [u'strong', u'sale', u'boost', u'southern', u'cross', u'profit'] [u'studi', u'consid', u'longreach', u'rocki', u'servic'] [u'studi', u'examin', u'gambl', u'habit'] [u'subdivis', u'plan', u'expect', u'face', u'tough', u'water'] [u'suspend', u'sentenc', u'ecstasi', u'traffick'] [u'tabcorp', u'predict', u'futur', u'growth'] [u'tafe', u'sign', u'agreement', u'coff'] [u'talk', u'break', u'palestinian', u'cabinet', u'deadlock'] [u'avoid', u'scheme', u'crackdown', u'loom'] [u'teacher', u'miss', u'comput', u'despit', u'fund'] [u'telstra', u'protest', u'arriv', u'more'] [u'canker', u'outbreak', u'citrus', u'tree'] [u'thornley', u'help', u'blue', u'post', u'competit', u'total'] [u'time', u'run', u'meander', u'project', u'opposit'] [u'tote', u'ponder', u'rider', u'fall', u'consequ'] [u'toyn', u'urg', u'listen', u'alic', u'nurs'] [u'trenorden', u'see', u'potenti', u'address', u'power', u'woe'] [u'troop', u'help', u'aceh', u'resid', u'normal'] [u'tweed', u'council', u'probe', u'hear', u'slush', u'fund', u'detail'] [u'soldier', u'kill', u'north', u'baghdad'] [u'find', u'rape', u'murder', u'rife', u'congo'] [u'union', u'submarin', u'corp', u'begin', u'disput', u'avoid', u'scheme'] [u'germani', u'joint', u'environ', u'declar'] [u'welcom', u'australia', u'iraq', u'deploy'] [u'vanston', u'treat', u'centenarian', u'compass'] [u'vanuatu', u'govt', u'dismiss', u'mismanag', u'claim'] [u'vella', u'recov', u'cancer', u'surgeri'] [u'wag', u'growth', u'rise'] [u'wagga', u'polic', u'studi', u'chase', u'video'] [u'websit', u'seek', u'help', u'break', u'heart'] [u'wicket', u'tumbl', u'gabba'] [u'winemak', u'profit', u'leav', u'grower', u'bitter', u'tast'] [u'group', u'welcom', u'safer', u'croc', u'encount'] [u'afghan', u'troop', u'kill', u'gunmen'] [u'benefit', u'high', u'grain', u'product'] [u'actor', u'sizemor', u'tell', u'beat', u'drug', u'face', u'death'] [u'post', u'half', u'profit'] [u'airport', u'expans'] [u'alderman', u'step', u'happi', u'green', u'progress'] [u'anderson', u'continu', u'push', u'open', u'sky'] [u'anglican', u'church', u'face', u'split', u'issu'] [u'appoint', u'boost', u'region', u'busi'] [u'aquacultur', u'plant', u'plan', u'loxton'] [u'arson', u'hotel', u'blaze'] [u'aussi', u'boil', u'california'] [u'australia', u'cultur', u'gem', u'tour', u'world'] [u'australia', u'thump', u'england', u'netbal', u'test'] [u'barnett', u'take', u'blame', u'cost', u'mistak'] [u'bashir', u'trial', u'wrap', u'fieri', u'fashion'] [u'beatti', u'defend', u'action', u'palm', u'stoush'] [u'blue', u'knock', u'highland'] [u'book', u'tackl', u'rural', u'male', u'suicid'] [u'brack', u'welcom', u'crime', u'prevent', u'paper'] [u'brazilian', u'landown', u'pay', u'nun', u'murder', u'polic'] [u'breed', u'bat', u'stop', u'bridg', u'work'] [u'bulldog', u'bite', u'saint'] [u'bullet', u'book', u'showdown', u'king'] [u'bullet', u'progress', u'past', u'sixer'] [u'bull', u'hold', u'command', u'lead', u'gabba'] [u'bull', u'inning', u'point'] [u'driver', u'seek', u'updat', u'contract', u'negoti'] [u'bushrang', u'turn', u'screw'] [u'busi', u'chamber', u'lament', u'airport'] [u'canberra', u'prepar', u'record', u'crowd'] [u'driver', u'blame', u'sydney', u'crash'] [u'carer', u'disput'] [u'charg', u'drop', u'mother', u'babi', u'kill', u'case'] [u'chelsea', u'search', u'silver', u'line', u'week'] [u'climat', u'chang', u'expert', u'issu', u'plan', u'warn'] [u'coalit', u'pledg', u'kimberley', u'servic', u'boost'] [u'coke', u'plant', u'develop', u'optimist'] [u'communiti', u'elect', u'boycott', u'expect', u'hurt'] [u'confus', u'surround', u'public', u'servant', u'employ'] [u'cool', u'weather', u'see', u'water', u'restrict', u'eas'] [u'cost', u'move', u'central', u'kimberley', u'pilbara'] [u'council', u'move', u'tree', u'remov', u'recommend'] [u'council', u'seek', u'tender', u'kempsey', u'shire', u'recycl'] [u'council', u'union', u'prais', u'pulp', u'decis'] [u'council', u'discuss', u'measur', u'curb', u'unruli'] [u'court', u'ban', u'coupl', u'publish', u'magazin'] [u'croc', u'prepar', u'sudden', u'death', u'showdown'] [u'croc', u'prepar', u'tiger', u'sudden', u'death', u'showdown'] [u'cyclon', u'perci', u'threaten', u'tokelau'] [u'dallaglio', u'cohen', u'confirm', u'tsunami', u'match'] [u'danc', u'town', u'hall', u'vote'] [u'darwin', u'waterfront', u'revamp', u'detail', u'chang'] [u'democrat', u'urg', u'assist', u'corbi'] [u'doctor', u'support', u'coalit', u'poison', u'review', u'fund'] [u'refus', u'comment', u'rape', u'case'] [u'east', u'timor', u'ask', u'japan', u'support', u'continu'] [u'economi', u'suppli', u'problem', u'surpris'] [u'elli', u'celebr', u'australia', u'thump', u'england'] [u'sign', u'jabiluka', u'uranium', u'agreement'] [u'kalgoorli', u'policeman', u'fin', u'fraud'] [u'famili', u'servic', u'chief', u'defend', u'depart'] [u'farmer', u'drought', u'chang'] [u'farmer', u'water', u'trade', u'lesson'] [u'farm', u'group', u'unhappi', u'elect', u'bypass', u'agricultur'] [u'fear', u'deport', u'thai', u'student', u'futur'] [u'flood', u'indic', u'return'] [u'hancock', u'mansion', u'demolish'] [u'suspect', u'legionnair', u'case', u'discount'] [u'fraud', u'charg', u'wont', u'affect', u'secur', u'grand', u'prix'] [u'freight', u'withdraw', u'wake', u'govt'] [u'french', u'compani', u'eye', u'olymp'] [u'gallop', u'dark', u'accident', u'candid'] [u'gallop', u'question', u'coalit', u'west', u'promis'] [u'garden', u'investig', u'aquif', u'option'] [u'gassi', u'appeal', u'convict', u'health', u'boss'] [u'gladston', u'coal', u'termin'] [u'goalpost', u'mishap', u'father', u'welcom', u'standard'] [u'govt', u'cut', u'swath', u'ballina', u'council', u'fine'] [u'govt', u'help', u'region', u'tune'] [u'govt', u'opposit', u'wont', u'stop', u'fluorid', u'campaign'] [u'govt', u'pledg', u'cyclon', u'ravag', u'cook', u'island'] [u'govt', u'pledg', u'affect', u'farmer'] [u'govt', u'set', u'adopt', u'review', u'panel'] [u'grazier', u'win', u'cattl', u'price', u'court', u'confront'] [u'guidelin', u'chang', u'access', u'compo'] [u'haze', u'shroud', u'malaysian', u'capit', u'forest', u'burn'] [u'hid', u'call', u'lennon', u'ferri', u'futur', u'public'] [u'victim', u'father', u'welcom', u'chang'] [u'hobart', u'csiro', u'leak', u'remain', u'mysteri'] [u'hockeyroo', u'frustrat', u'lack', u'sponsorship'] [u'hodg', u'lead', u'vic', u'total'] [u'hong', u'kong', u'cover', u'smog'] [u'hospit', u'intern', u'research', u'centr', u'open'] [u'howard', u'puzzl', u'centenarian', u'visa', u'decis'] [u'howard', u'unfaz', u'leadership', u'specul'] [u'hydro', u'chief', u'ask', u'join'] [u'icac', u'accus', u'opportun', u'respond'] [u'indigen', u'train', u'boost', u'confid', u'research'] [u'injuri', u'put', u'line', u'koubek', u'davi'] [u'injuri', u'put', u'steven', u'trial', u'campaign', u'doubt'] [u'inquiri', u'tell', u'suspect', u'sabotag', u'beaudesert'] [u'insur', u'cold', u'comfort', u'wemen', u'region', u'grower'] [u'iraq', u'bind', u'troop', u'readi', u'hill'] [u'isra', u'presid', u'visit', u'australia'] [u'jackson', u'trial', u'begin', u'week'] [u'japan', u'consid', u'lift', u'beef'] [u'katich', u'injur', u'hayden'] [u'dinner', u'fridg'] [u'kiwi', u'boast', u'proud', u'sport', u'tradit'] [u'knight', u'sponsor', u'uneasi'] [u'labor', u'cast', u'doubt', u'ring', u'road', u'fund'] [u'lake', u'leas', u'end'] [u'land', u'council', u'crack', u'rock', u'thrower'] [u'langer', u'cruis', u'control', u'lunch'] [u'langer', u'lead', u'inning', u'point'] [u'langer', u'put', u'warrior', u'control'] [u'scala', u'fire', u'exec', u'amid', u'budget'] [u'lawyer', u'seek', u'court', u'appear', u'serial', u'killer'] [u'leonora', u'doctor', u'return', u'hospit'] [u'lord', u'mayor', u'keen', u'increas', u'secur'] [u'die', u'gippsland', u'log', u'mishap'] [u'get', u'jail', u'time', u'knife', u'attack'] [u'jail', u'ecstasi', u'traffic'] [u'martin', u'deni', u'threat', u'legal', u'action'] [u'mayor', u'play', u'council', u'role', u'tourist', u'train'] [u'mayor', u'offic', u'alcohol', u'free', u'zone'] [u'meatwork', u'stand', u'yanco'] [u'jail', u'diamond', u'ring', u'murder'] [u'mental', u'health', u'critic', u'unfound', u'say'] [u'mess', u'get', u'lucki', u'barrymor'] [u'million', u'dollar', u'babi', u'warm', u'oscar', u'knockout'] [u'minist', u'swamp', u'support', u'ambul', u'station'] [u'miyazato', u'hold', u'stroke', u'master', u'lead'] [u'mortgag', u'choic', u'post', u'profit', u'rise', u'despit', u'hous'] [u'mortlock', u'doubt', u'brumbi', u'open'] [u'want', u'ulladulla', u'school', u'announc'] [u'murder', u'tourist', u'famili', u'seek', u'justic'] [u'nation', u'maintain', u'unit', u'approach'] [u'board', u'member', u'deni', u'conflict'] [u'newcastl', u'boro', u'rescu', u'english', u'pride'] [u'year', u'outback', u'focus', u'youth'] [u'econom', u'crash', u'like', u'howard'] [u'sight', u'bun', u'wrangl'] [u'northlin', u'abandon', u'adelaid', u'darwin', u'railway'] [u'aborigin', u'cricket', u'hop', u'final', u'spot'] [u'omalley', u'lyle', u'share', u'lead'] [u'oneil', u'deni', u'rift', u'qualifi', u'venu'] [u'ramp', u'close', u'tanker', u'blaze'] [u'opal', u'excit', u'miner'] [u'open', u'plan', u'camberwel'] [u'opposit', u'blast', u'health', u'servic', u'sack'] [u'opposit', u'want', u'beatti', u'apologis', u'palm'] [u'oversea', u'demand', u'push', u'caltex', u'profit'] [u'parent', u'welcom', u'life', u'sentenc', u'daughter', u'killer'] [u'parkinson', u'diseas', u'increas', u'risk', u'ail', u'pope'] [u'passion', u'trust', u'twin', u'element', u'york'] [u'patient', u'threaten', u'kill', u'hospit', u'staff'] [u'peak', u'hour', u'crash', u'injur'] [u'pedestrian', u'kill', u'road', u'accid'] [u'plan', u'begin', u'class', u'autist', u'children'] [u'invit', u'royal', u'wed'] [u'polic', u'await', u'babi', u'post', u'mortem', u'result'] [u'polic', u'hunt', u'albani', u'bank', u'bandit'] [u'polic', u'increas', u'presenc', u'hindley', u'street'] [u'polic', u'investig', u'hospit', u'drug', u'theft'] [u'polic', u'charg', u'schooli', u'fake'] [u'polic', u'seek', u'investig', u'babi'] [u'polic', u'uncov', u'jewelleri', u'heist'] [u'polli', u'urg', u'address', u'pilbara', u'indigen'] [u'pope', u'condit', u'satisfi', u'doctor'] [u'pope', u'rest', u'advis', u'speak', u'day'] [u'portabl', u'weather', u'station', u'fuel', u'reduct'] [u'port', u'delay', u'hamper', u'miner', u'expans'] [u'port', u'hedland', u'want', u'dust', u'problem', u'solv'] [u'possum', u'put', u'teacher', u'sick', u'leav'] [u'profit', u'half', u'year', u'suncorp'] [u'protest', u'demand', u'growth', u'log'] [u'pulp', u'critic', u'unhappi', u'propos', u'bleach'] [u'urg', u'daylight', u'save'] [u'rail', u'project', u'sabotag', u'inquiri', u'tell'] [u'record', u'turnov', u'rev', u'adtran', u'profit'] [u'repair', u'delay', u'clune', u'water', u'suppli'] [u'repat', u'hospit', u'safe', u'servic'] [u'research', u'reveal', u'languag', u'skill', u'want'] [u'resid', u'timber', u'truck', u'bypass'] [u'result', u'resourc', u'lift', u'market'] [u'retent', u'reduc', u'flood', u'damag'] [u'rickett', u'make', u'final', u'tournament'] [u'rockhampton', u'hospit', u'surgeon'] [u'roger', u'star', u'waratah', u'away', u'lacklustr', u'chief'] [u'roger', u'star', u'waratah'] [u'set', u'adelaid', u'captainci', u'record'] [u'rural', u'resid', u'risk', u'beach', u'tragedi'] [u'russia', u'order', u'chechen', u'death'] [u'seven', u'network', u'announc', u'profit', u'rise'] [u'shark', u'net', u'stay', u'sydney', u'beach'] [u'go', u'despit', u'stab'] [u'sick', u'leav', u'affect', u'polic', u'number'] [u'sixteeen', u'nomin', u'werriwa', u'elect'] [u'state', u'fight', u'reform'] [u'statist', u'drop', u'state', u'school', u'enrol'] [u'lawrenc', u'celebr', u'year'] [u'storm', u'declar', u'natur', u'disast'] [u'storm', u'prompt', u'disast', u'assist', u'offer'] [u'student', u'burn', u'camp', u'accid'] [u'studi', u'cast', u'doubt', u'shot'] [u'summit', u'address', u'violenc', u'public', u'drunken'] [u'surf', u'girl', u'recognis', u'volunt', u'effort'] [u'sweet', u'victori', u'small', u'german', u'brewer'] [u'swift', u'gilsenan', u'netbal', u'test', u'debut'] [u'tandou', u'record', u'loss'] [u'tasmanian', u'turn', u'mental', u'health', u'help'] [u'tavern', u'manag', u'hop', u'shutdown', u'teach', u'lesson'] [u'teacher', u'jail', u'student'] [u'teen', u'health', u'improv', u'sand', u'mishap'] [u'teen', u'throw', u'prostitut', u'bridg', u'clear', u'drug'] [u'thai', u'teenag', u'fail', u'deport', u'repriev'] [u'thing', u'get', u'easier', u'black', u'cap'] [u'tracheotomi', u'surgeri', u'eas', u'breath'] [u'tradit', u'owner', u'give', u'veto', u'jabiluka'] [u'travel', u'warn', u'upgrad', u'diseas', u'hit', u'thailand'] [u'troop', u'leav', u'aceh'] [u'unit', u'gunner', u'crank', u'pressur', u'chelsea'] [u'extend', u'presenc', u'east', u'timor'] [u'court', u'dismiss', u'yuko', u'bankruptci'] [u'soldier', u'tri', u'iraqi', u'civilian', u'murder'] [u'vicroad', u'urg', u'address', u'black', u'spot', u'intersect'] [u'vietnam', u'confirm', u'bird', u'case'] [u'leader', u'pitch', u'voter'] [u'wallabi', u'genet', u'code', u'offer', u'human', u'insight'] [u'welfar', u'group', u'oppos', u'youth', u'dispers', u'plan'] [u'western', u'power', u'plan', u'blackout'] [u'wind', u'farm', u'plan', u'fuel', u'airstrip', u'concern'] [u'woman', u'plead', u'guilti', u'rape'] [u'worksaf', u'want', u'brake', u'trucki', u'fatigu'] [u'world', u'bank', u'increas', u'tsunami', u'lanka'] [u'world', u'respons', u'crisi', u'stingi', u'despit', u'tsunami'] [u'hurt', u'aviv', u'blast'] [u'abba', u'call', u'emerg', u'meet', u'aviv', u'blast'] [u'stand', u'chang'] [u'african', u'union', u'suspend', u'togo'] [u'bevan', u'keep', u'tiger', u'hop', u'aliv'] [u'arrest', u'aviv', u'bomb'] [u'arthur', u'arizona'] [u'aussi', u'seal', u'seri'] [u'australia', u'put', u'zarqawi', u'network', u'black', u'list'] [u'australia', u'set', u'competit', u'total'] [u'barnett', u'place', u'faith', u'lucki', u'cufflink'] [u'british', u'soldier', u'jail', u'iraq', u'abus', u'trial'] [u'brumbi', u'strong', u'crusad'] [u'brutal', u'afghan', u'winter', u'kill'] [u'budget', u'airlin', u'greyhound'] [u'accid', u'kill'] [u'busi', u'upbeat', u'chang'] [u'busi', u'night', u'polic'] [u'cabinet', u'consid', u'nightclub', u'lock', u'plan'] [u'cardin', u'declar', u'pope', u'seren'] [u'command', u'prais', u'aust', u'train', u'iraq', u'forc'] [u'communiti', u'win', u'review', u'sewag', u'infrastructur'] [u'council', u'pledg', u'land', u'health', u'centr', u'plan'] [u'count', u'begin', u'poll'] [u'croc', u'power', u'semi'] [u'cyclon', u'perci', u'continu', u'threaten', u'pacif', u'island'] [u'dalai', u'lama', u'attend', u'pakistan', u'india', u'tour', u'open'] [u'detaine', u'claim', u'treatment', u'transfer'] [u'detent', u'chang', u'real', u'solut'] [u'deterg', u'infect', u'risk', u'surgeri'] [u'diamond', u'steal', u'airport', u'heist'] [u'dog', u'rabbitoh', u'trial', u'match'] [u'domin', u'australia', u'search', u'trifecta'] [u'driver', u'question', u'freeway', u'accid'] [u'drug', u'traffick', u'overrun', u'ancient', u'mayan', u'citi'] [u'earli', u'result', u'boost', u'liber', u'hop'] [u'european', u'scientist', u'believ', u'life', u'mar'] [u'famili', u'jackson', u'death', u'grandmoth'] [u'fourth', u'cyclon', u'threaten', u'pacif', u'island'] [u'gallop', u'cast', u'vote'] [u'german', u'tip', u'sydney'] [u'govt', u'disput', u'mental', u'health', u'claim'] [u'green', u'confid', u'improv', u'perform'] [u'hobart', u'airport', u'upgrad', u'fast', u'track'] [u'hundr', u'evacu', u'tanker', u'accid'] [u'hunter', u'thompson', u'wife', u'hear', u'suicid'] [u'hurrican', u'muscl', u'red'] [u'hyde', u'park', u'anzac', u'memori', u'vandalis'] [u'israel', u'presid', u'visit', u'australia', u'amid'] [u'jackson', u'defenc', u'attack', u'accus', u'mother'] [u'japan', u'confirm', u'case', u'diseas'] [u'japan', u'launch', u'space', u'rocket'] [u'joey', u'save', u'knight'] [u'knight', u'experiment', u'mood'] [u'labor', u'deni', u'mislead', u'candid', u'stand'] [u'labor', u'elect', u'despit', u'swing'] [u'labor', u'pois', u'elect'] [u'late', u'error', u'cost', u'omalley', u'outright', u'lead'] [u'lehmann', u'launch', u'bat', u'onslaught'] [u'farmer', u'work', u'smarter', u'report', u'say'] [u'liber', u'director', u'shrug', u'poll'] [u'liber', u'ahead', u'bunburi'] [u'littbarski', u'coach', u'sydney'] [u'kill', u'injur', u'freeway', u'accid'] [u'mcrae', u'deni', u'fraudul', u'enrol', u'claim'] [u'medic', u'expert', u'fear', u'pope'] [u'melbourn', u'polic', u'stand', u'arm'] [u'melbourn', u'stand', u'end', u'arrest'] [u'miss', u'dead'] [u'mitchel', u'tip', u'perth'] [u'molik', u'dump', u'mauresmo', u'doha'] [u'nation', u'confid', u'strong', u'show'] [u'nation', u'council', u'decid', u'parti', u'merger', u'debat'] [u'insur', u'rule', u'protest', u'overkil'] [u'virus', u'come', u'monkey', u'expert'] [u'nickel', u'explor', u'flag', u'oper', u'studi'] [u'peacekeep', u'ambush', u'congo'] [u'north', u'korea', u'urg', u'nuclear', u'talk'] [u'ohern', u'down', u'tiger', u'quarter'] [u'ohern', u'dump', u'tiger'] [u'ombudsman', u'probe', u'land', u'valuat'] [u'ordinari', u'red', u'hurrican'] [u'polic', u'hunt', u'driver', u'chase', u'death'] [u'polic', u'investig', u'opiat', u'farm', u'product'] [u'polic', u'probe', u'gold', u'coast', u'street', u'parti'] [u'pont', u'say', u'pitch', u'favour', u'kiwi'] [u'pope', u'deleg', u'sunday', u'bless', u'duti', u'time'] [u'princess', u'mari', u'arriv', u'australia'] [u'govt', u'consid', u'distribut'] [u'nation', u'consid', u'anti', u'junki', u'vaccin'] [u'case', u'move', u'vanston', u'chang', u'detent', u'rule'] [u'record', u'bequest', u'bring', u'multi', u'million', u'chariti'] [u'redback', u'collaps', u'hand', u'bull', u'victori'] [u'relentless', u'brumbi', u'overpow', u'crusad'] [u'roo', u'eagl', u'clash', u'semi'] [u'russian', u'iran', u'nuclear', u'fuel', u'deal', u'hit', u'snag'] [u'sanction', u'lift', u'togo', u'presid', u'resign'] [u'singl', u'lone', u'women'] [u'south', u'africa', u'hammer', u'zimbabw'] [u'spous', u'nation', u'wife', u'carri', u'glori'] [u'springbok', u'wing', u'lead', u'stormer', u'victori'] [u'springborg', u'conced', u'merger', u'plan', u'dead', u'water'] [u'streak', u'end', u'zimbabw', u'exil'] [u'aviv', u'blast', u'shatter', u'truce'] [u'aviv', u'bomber', u'brother', u'arrest'] [u'injur', u'boat', u'explos'] [u'tiger', u'flog', u'bomber', u'lion', u'hammer', u'swan'] [u'togo', u'armi', u'instal', u'presid', u'resign'] [u'general', u'see', u'last', u'iraq', u'insurg'] [u'zarqawi', u'aid', u'captur', u'iraq'] [u'tsunami', u'relief', u'billion'] [u'charg', u'million', u'ecstasi', u'raid'] [u'china', u'accid', u'kill'] [u'polic', u'chase'] [u'hospit', u'suburban', u'shoot'] [u'teen', u'question', u'shoot', u'death'] [u'union', u'fear', u'tabcorp', u'centr', u'job'] [u'team', u'lebanon', u'probe', u'hariri', u'kill'] [u'urg', u'china', u'review', u'labour', u'camp'] [u'block', u'plan', u'environ', u'bodi'] [u'market', u'rise', u'growth', u'forecast'] [u'say', u'missil', u'shield', u'intercept', u'success'] [u'soldier', u'iraqi', u'die', u'attack'] [u'valencia', u'sack', u'ranieri', u'uefa', u'flop'] [u'vic', u'despit', u'bevan'] [u'elect', u'expect', u'wire'] [u'leader', u'cast', u'vote'] [u'poll', u'open', u'labor', u'tip'] [u'warrior', u'head', u'outright'] [u'warrior', u'pile', u'miseri', u'perth'] [u'webb', u'breath', u'miyazato', u'neck'] [u'wife', u'stepson', u'question', u'man', u'death'] [u'woodward', u'unveil', u'tsunami', u'squad'] [u'worker', u'kill', u'tractor', u'accid'] [u'yemen', u'uphold', u'cole', u'blast', u'death', u'sentenc'] [u'countri', u'sign', u'anti', u'smoke', u'treati'] [u'amnesti', u'intern', u'founder', u'die'] [u'arthur', u'arizona', u'final'] [u'australian', u'clergi', u'critic', u'north', u'american'] [u'australian', u'troop', u'open', u'iraq'] [u'barca', u'hold', u'numancia', u'real', u'slump'] [u'barnett', u'conced', u'defeat'] [u'barnett', u'ponder', u'futur', u'amid', u'elect', u'loss'] [u'barnett', u'step'] [u'beatti', u'vow', u'cooper'] [u'birney', u'return', u'kalgoorli'] [u'blue', u'exorcis', u'demon'] [u'bomb', u'kill', u'near', u'iraqi', u'town', u'mosul'] [u'botswana', u'crown', u'miss'] [u'bunburi', u'seat', u'wire'] [u'bush', u'berri', u'share', u'worst', u'film', u'honour'] [u'bushrang', u'final', u'hop', u'aliv'] [u'cahil', u'fire', u'everton', u'brink', u'champion', u'leagu'] [u'carr', u'anger', u'attack', u'polic'] [u'clean', u'continu', u'tanker', u'accid'] [u'clean', u'oper', u'continu', u'tanker', u'spill'] [u'cosgrov', u'confid', u'troop', u'return', u'year'] [u'countri', u'show', u'forc', u'polic', u'presenc'] [u'crew', u'continu', u'mop', u'tanker', u'spill', u'emerg'] [u'cyclon', u'perci', u'devast', u'tokelau'] [u'darl', u'rang', u'stay', u'liber'] [u'deflat', u'black', u'cap', u'dump', u'tuffey'] [u'disappoint', u'solo', u'sailor', u'arriv', u'hobart'] [u'earli', u'count', u'show', u'support', u'trade', u'hour'] [u'egypt', u'announc', u'landmark', u'democrat', u'reform'] [u'english', u'suspend', u'onlin', u'racehors'] [u'fear', u'govt', u'plan', u'push', u'workplac', u'agreement'] [u'feder', u'advis', u'gallop', u'consolid'] [u'feder', u'overwhelm', u'agassi', u'reach', u'dubai', u'final'] [u'british', u'troop', u'face', u'prosecut', u'crime'] [u'polic', u'chief', u'join', u'inquiri', u'team'] [u'gallop', u'claim', u'victori'] [u'gallop', u'flag', u'cabinet', u'reshuffl'] [u'goosen', u'restor', u'order', u'aussi', u'crash'] [u'govt', u'fail', u'promot', u'railway', u'opposit', u'say'] [u'greenpeac', u'stop', u'dolphin', u'kill', u'trawler'] [u'green', u'nomin', u'devil', u'threaten', u'speci'] [u'gregan', u'hail', u'gutsi', u'brumbi'] [u'greyhound', u'sustain', u'region', u'run'] [u'health', u'servic', u'urg', u'greater', u'communiti', u'consult'] [u'hezbollah', u'deni', u'involv', u'aviv', u'suicid'] [u'hop', u'elect', u'boost', u'feder', u'moral'] [u'hunt', u'violent', u'kilda', u'attack'] [u'hussey', u'shape', u'bevan', u'pont'] [u'indian', u'archaeologist', u'discov', u'ancient', u'port', u'citi'] [u'indian', u'villag', u'teen', u'nasa', u'claim', u'crash', u'earth'] [u'indigen', u'histori', u'project', u'aim', u'women'] [u'indonesian', u'soldier', u'kill', u'aceh', u'violenc'] [u'injur', u'pollock', u'second', u'dayer'] [u'islam', u'jihad', u'beirut', u'claim', u'aviv', u'bomb'] [u'island', u'overlook', u'world', u'windfal'] [u'japan', u'excit', u'satellit', u'success'] [u'job', u'slash', u'holden', u'ford', u'compon', u'contract'] [u'kiwi', u'issu', u'court', u'threat', u'beamer'] [u'labor', u'like', u'retain', u'albani'] [u'labor', u'retain', u'hold', u'state'] [u'labor', u'take', u'central', u'kimberley', u'pilbara'] [u'labor', u'tip', u'hold', u'mindari'] [u'land', u'ballot', u'net', u'million', u'sale'] [u'legendari', u'band', u'reform', u'melbourn', u'tsunami'] [u'consid', u'donat', u'polici', u'overhaul'] [u'liber', u'deni', u'labor', u'take', u'murray'] [u'littbarski', u'predict', u'bright', u'futur', u'leagu'] [u'macqueen', u'confid', u'team'] [u'mail', u'defi', u'warrior'] [u'charg', u'student', u'assault'] [u'die', u'stab', u'incid'] [u'give', u'ireland', u'murder'] [u'mari', u'sail', u'victori', u'ahead', u'princ'] [u'mcrae', u'hold', u'riverton', u'despit', u'trickeri', u'claim'] [u'melbourn', u'organis', u'hail', u'webber', u'sydney', u'drive'] [u'museum', u'extrem', u'exhibit', u'offer', u'desert', u'snapshot'] [u'nation', u'anti', u'junki', u'vaccin', u'plan', u'bizarr'] [u'nation', u'liber', u'greenough'] [u'polic', u'station', u'need', u'urgent', u'overhaul'] [u'ogilvi', u'grab', u'share', u'tucson', u'lead'] [u'omalley', u'claim', u'play'] [u'shoot', u'stab', u'melbourn', u'hous', u'attack'] [u'opposit', u'demand', u'brief', u'troop', u'deploy'] [u'pacemen', u'return', u'india', u'squad'] [u'palestinian', u'wipe', u'milit', u'group', u'sharon'] [u'polic', u'investig', u'steal', u'ballot', u'paper'] [u'polic', u'task', u'forc', u'form', u'violent', u'attack'] [u'pope', u'appear', u'hospit', u'window', u'bless'] [u'pretorius', u'lead', u'cat', u'bull'] [u'princ', u'charl', u'deserv', u'respect', u'costello'] [u'radisich', u'increas', u'swan', u'hill', u'margin'] [u'ranger', u'stretch', u'scottish', u'lead'] [u'red', u'tune'] [u'relentless', u'brumbi', u'overpow', u'crusad'] [u'riot', u'polic', u'arrest', u'clash'] [u'road', u'remain', u'close', u'tanker', u'spill', u'clean'] [u'rooney', u'doubl', u'keep', u'unit', u'hunt', u'arsenal', u'hold'] [u'saddam', u'half', u'brother', u'captur', u'iraq', u'govt'] [u'film', u'industri', u'get', u'fund', u'boost'] [u'sampdoria', u'beat', u'brescia', u'seri'] [u'scientist', u'produc', u'cancer', u'kill'] [u'scot', u'beat', u'itali', u'avoid', u'nation', u'whitewash'] [u'sehwag', u'wari', u'inexperienc', u'pakistan', u'pacer'] [u'serena', u'davenport', u'name', u'team'] [u'serial', u'killer', u'suspect', u'arrest', u'kansa'] [u'sharapova', u'tame', u'molik', u'doha', u'final'] [u'stranglehold', u'tighten', u'zarqawi', u'iraq', u'secur'] [u'syria', u'deni', u'role', u'aviv', u'bomb', u'blame', u'israel'] [u'taiwan', u'high', u'rise', u'blaze', u'kill'] [u'green', u'push', u'govt', u'cover', u'protest', u'liabil'] [u'tasmanian', u'urg', u'help', u'refuge', u'jail'] [u'tiger', u'deni', u'bushrang'] [u'tom', u'dimarco', u'book', u'american', u'match', u'play', u'final'] [u'treasur', u'downplay', u'rate', u'fear'] [u'case', u'polio', u'ethiopia'] [u'kill', u'suspect', u'murder', u'suicid', u'shoot'] [u'armi', u'unit', u'return', u'iraq'] [u'marin', u'kill', u'central', u'iraq'] [u'resum', u'indonesian', u'militari', u'train'] [u'vietnam', u'veteran', u'rememb', u'fall', u'friend'] [u'warrior', u'reclaim', u'competit', u'lead'] [u'warrior', u'easi', u'chase'] [u'webber', u'conced', u'home'] [u'webb', u'reel', u'miyazato', u'master'] [u'welsh', u'dethron', u'franc'] [u'woman', u'assault', u'sword', u'smash', u'window'] [u'zimbabw', u'author', u'shut', u'independ', u'week'] [u'abbott', u'urg', u'privat', u'sector', u'simplifi', u'charg'] [u'alcohol', u'free', u'prove', u'winner'] [u'ararat', u'hous', u'blaze', u'consid', u'suspici'] [u'aussi', u'cyclist', u'world', u'podium', u'clean', u'sweep'] [u'australia', u'china', u'join', u'forc', u'transnat', u'crime'] [u'australian', u'academ', u'fight', u'botswana', u'deport'] [u'action', u'confront'] [u'bali', u'bomber', u'move', u'java', u'jail'] [u'bellami', u'open', u'celtic', u'account'] [u'birney', u'tip', u'opposit', u'leader'] [u'blanchett', u'win', u'oscar', u'aviat'] [u'botswanan', u'court', u'hand', u'australian', u'academ', u'repriev'] [u'bowler', u'take', u'comfort', u'murchison', u'eyr'] [u'jab', u'play', u'kilda', u'beach'] [u'broom', u'stage', u'nation', u'anti', u'terror'] [u'bunburi', u'murray', u'count', u'prioriti'] [u'busi', u'chamber', u'beat', u'bridg', u'work'] [u'clark', u'sack', u'weekend', u'revel'] [u'greater', u'effort', u'curb', u'indigen', u'suicid'] [u'scientif', u'assess', u'bell'] [u'bomb', u'kill', u'iraqi', u'seeker'] [u'carr', u'accus', u'soft', u'soft', u'approach', u'rioter'] [u'resourc', u'profit', u'rise'] [u'chelsea', u'snatch', u'thriller'] [u'chief', u'minist', u'defend', u'freight', u'line'] [u'child', u'detent', u'polici', u'need', u'revis', u'activist'] [u'china', u'doctor', u'reveal', u'babi'] [u'class', u'size', u'increas', u'teacher', u'stress', u'leav', u'union'] [u'coast', u'lifesav', u'win', u'state', u'honour'] [u'communiti', u'disturb', u'riot', u'violenc'] [u'compani', u'profit', u'resourc', u'boost', u'market'] [u'concern', u'air', u'develop', u'tape'] [u'concern', u'hold', u'miss', u'german', u'tourist'] [u'congo', u'rush', u'defenc', u'chief', u'east', u'death'] [u'contracept', u'pill', u'link', u'depress'] [u'coonan', u'consid', u'region', u'phone', u'report'] [u'coron', u'probe', u'child', u'death'] [u'council', u'consid', u'pavilion', u'option'] [u'council', u'happi', u'longer', u'leas'] [u'councillor', u'seek', u'deficit', u'figur', u'remov'] [u'council', u'coke', u'project', u'brief'] [u'council', u'shame', u'tree', u'vandal'] [u'court', u'hear', u'murder', u'worker', u'seek', u'life'] [u'court', u'tell', u'gangland', u'victim', u'know'] [u'crime', u'stopper', u'help', u'victorian', u'crime'] [u'cyclist', u'complet', u'sustain', u'trip'] [u'cyclon', u'perci', u'pound', u'northern', u'cook', u'island'] [u'defenc', u'conting', u'return', u'aceh'] [u'dept', u'urg', u'southport', u'spit', u'plan'] [u'detain', u'australian', u'hold', u'explan'] [u'detaine', u'support', u'hop', u'dick', u'smith'] [u'develop', u'talk', u'merimbula', u'retail', u'plan'] [u'dick', u'smith', u'lobbi', u'detaine', u'releas'] [u'district', u'court', u'judg', u'swear'] [u'diver', u'scrabbl', u'guin', u'record'] [u'donnelli', u'bold', u'defeat'] [u'doomadge', u'call', u'help', u'watch', u'hous', u'wit'] [u'drop', u'assault', u'charg', u'caus', u'alarm'] [u'time', u'byrock'] [u'dust', u'mite', u'love', u'lismor', u'condit'] [u'dust', u'storm', u'engulf', u'tennant', u'creek'] [u'economi', u'slow', u'rat', u'tip', u'rise'] [u'ellison', u'thank', u'polic', u'tsunami', u'zone', u'tour'] [u'fairymead', u'worker', u'job', u'secur'] [u'fear', u'hold', u'sale', u'children', u'ward'] [u'fear', u'tassi', u'tiger', u'pic', u'return'] [u'fight', u'polio', u'launch', u'ivori', u'coast'] [u'finch', u'hand', u'stuart', u'preseason', u'select', u'poser'] [u'fingerprint', u'fail', u'link', u'victim', u'murder', u'accus'] [u'shroud', u'hobart', u'smoke'] [u'firework', u'whistleblow', u'face', u'court'] [u'folk', u'festiv', u'hit', u'right', u'note', u'crowd'] [u'food', u'liquor', u'sale', u'boost', u'woolworth', u'profit'] [u'german', u'tourist', u'bog'] [u'attend', u'armi', u'memori', u'servic'] [u'crop', u'locat', u'reveal'] [u'gold', u'coast', u'boost', u'webb', u'put', u'confid'] [u'govt', u'begin', u'talk'] [u'govt', u'enter', u'port', u'augusta', u'indigen'] [u'govt', u'classroom', u'delay'] [u'grant', u'boost', u'psoriasi', u'cure', u'research'] [u'grape', u'grower', u'look', u'boost', u'semillon', u'vine'] [u'green', u'eas', u'water', u'restrict'] [u'hay', u'escap', u'recaptur'] [u'heavi', u'snow', u'kill', u'japan'] [u'hilla', u'suicid', u'bomb', u'toll', u'rise'] [u'hill', u'win', u'close', u'contest', u'geraldton'] [u'hollywood', u'gear', u'oscar'] [u'hous', u'plan', u'puzzl', u'dorrigo', u'resid'] [u'hunt', u'serial', u'rapist', u'spark', u'safeti', u'forum'] [u'illeg', u'worker', u'attempt', u'leav', u'malaysia'] [u'india', u'congress', u'win', u'indian', u'agricultur', u'state'] [u'form', u'arthur', u'readi', u'fitzgerald'] [u'iran', u'open', u'nuclear', u'program'] [u'iran', u'want', u'compromis', u'nuclear', u'program'] [u'iraq', u'deploy', u'wont', u'chang', u'terror', u'threat'] [u'iraq', u'shoot', u'justifi', u'say', u'australian', u'command'] [u'irish', u'grand', u'slam', u'cours'] [u'isra', u'arrest', u'palestinian', u'land', u'scam'] [u'jack', u'russel', u'nurtur', u'england', u'keeper', u'jone'] [u'japan', u'consid', u'moon', u'research', u'base', u'report'] [u'juve', u'milan', u'neck', u'neck', u'itali'] [u'keen', u'show', u'timber', u'plantat', u'industri'] [u'knight', u'consid', u'reject', u'booz', u'cultur'] [u'knight', u'indec', u'assault', u'claim', u'drop'] [u'kouta', u'injur', u'fevola', u'report', u'blue'] [u'labor', u'prove', u'strong', u'north', u'west'] [u'lebanes', u'minist', u'deni', u'opposit', u'claim'] [u'letter', u'reveal', u'detail', u'bishop', u'year', u'affair'] [u'liber', u'hope', u'prepar', u'leadership', u'battl'] [u'liber', u'powerbrok', u'anoint', u'birney'] [u'local', u'pair', u'join', u'murray', u'darl', u'basin', u'committe'] [u'stab', u'brawl', u'outsid', u'restaur'] [u'court', u'weekend', u'stab'] [u'marina', u'develop', u'look', u'contractor'] [u'martin', u'like', u'retain', u'kimberley'] [u'martin', u'elect', u'date'] [u'media', u'surpris', u'princess', u'mari'] [u'meet', u'resolv', u'ambul', u'accommod'] [u'middlesbrough', u'snatch', u'late', u'draw', u'bolton', u'lose'] [u'minist', u'fear', u'emerg', u'accommod'] [u'miss', u'ballot', u'paper', u'intact'] [u'mitchel', u'confirm', u'perth', u'coach'] [u'mitchel', u'name', u'perth', u'coach'] [u'mitchel', u'super', u'sign'] [u'motiv', u'beachley', u'reclaim', u'titl'] [u'nation', u'sour', u'sugar', u'grant', u'decis'] [u'nation', u'moot', u'plan', u'region'] [u'needl', u'stick', u'injuri', u'prompt', u'beach', u'admiss'] [u'deploy', u'prepar', u'iraq', u'danger', u'command'] [u'interim', u'rescu', u'chopper', u'servic', u'lift'] [u'polic', u'station', u'unveil', u'humpti'] [u'recycl', u'bin', u'mark', u'recycl', u'mileston'] [u'safe', u'push', u'infect', u'rise'] [u'korea', u'rejoin', u'talk', u'june'] [u'vote', u'disappoint', u'retail'] [u'nrma', u'plate', u'driver', u'restrict'] [u'govt', u'ban', u'publish', u'peddl', u'fake'] [u'nurs', u'feder', u'work', u'return', u'govt'] [u'nurs', u'overtim', u'have', u'impact'] [u'ogilvi', u'win', u'titl'] [u'opposit', u'say', u'chang', u'sham'] [u'opposit', u'say', u'plan', u'process', u'faulti'] [u'oscar', u'honour', u'director', u'sidney', u'lumet'] [u'paedophil', u'take', u'resid', u'mackay'] [u'palm', u'island', u'coroni', u'inquest', u'begin'] [u'passeng', u'outback', u'track'] [u'pedestrian', u'die', u'accid'] [u'perth', u'run', u'final'] [u'plan', u'west', u'coast', u'boost', u'job', u'competit'] [u'plan', u'paper', u'focus', u'popul', u'chang'] [u'consid', u'palm', u'island', u'royal', u'commiss'] [u'pngs', u'cricket', u'step', u'away', u'world', u'final'] [u'pngs', u'cricket', u'step', u'closer', u'world', u'final'] [u'polic', u'increas', u'pressur', u'compo', u'scheme'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'investig', u'threat', u'multiplex'] [u'polic', u'issu', u'teen', u'parti', u'warn'] [u'polic', u'promis', u'speed', u'crackdown'] [u'polic', u'question', u'attack'] [u'polic', u'question', u'man', u'death', u'hotel'] [u'polic', u'reject', u'tourist', u'death', u'specul'] [u'polic', u'seek', u'wit', u'horsham', u'attack'] [u'polic', u'strike', u'forc', u'probe', u'suspici', u'babi', u'death'] [u'polic', u'continu', u'patrol', u'fourth', u'night'] [u'polic', u'rioter', u'carr', u'say'] [u'pont', u'defend', u'beamer'] [u'pont', u'hop', u'debut'] [u'pont', u'cork', u'thigh'] [u'pope', u'good', u'condit', u'vatican'] [u'portman', u'consid', u'revis', u'takeov', u'offer'] [u'princ', u'charl', u'tour', u'lanka', u'tsunami', u'ruin'] [u'prosthesi', u'oper', u'offer', u'hope', u'bone', u'cancer'] [u'public', u'support', u'need', u'boost'] [u'public', u'urg', u'boost', u'upper', u'hous', u'knowledg'] [u'push', u'disqualifi', u'bushfir', u'coron', u'continu'] [u'nation', u'liber', u'lock', u'horn', u'seat'] [u'rain', u'dous', u'forest', u'fire', u'lift', u'haze', u'malaysia'] [u'rann', u'ask', u'hold', u'offici', u'rat'] [u'rathbon', u'deni', u'go', u'west'] [u'record', u'jail', u'term', u'illeg', u'drug', u'maker', u'seller'] [u'wont', u'blue', u'footi', u'spend', u'say', u'collin'] [u'renown', u'french', u'collect', u'arriv', u'festiv'] [u'rice', u'grower', u'await', u'drought', u'fund', u'news'] [u'rodan', u'season', u'start'] [u'rucker', u'confid', u'bullet', u'test', u'king'] [u'schoolmast', u'plead', u'guilti', u'student'] [u'search', u'miss', u'port', u'macquari'] [u'second', u'tsunami', u'appeal', u'match', u'cancel'] [u'sevilla', u'valencia', u'final'] [u'citi', u'council', u'prove', u'issu'] [u'shed', u'blaze', u'claim', u'thousand', u'bale'] [u'shop', u'hour', u'plan', u'like', u'face', u'reject'] [u'slow', u'post', u'joke', u'bourk'] [u'smith', u'cite', u'grant', u'clear', u'review', u'panel'] [u'soccer', u'side', u'score', u'fund'] [u'steelmak', u'scope', u'philippin', u'opportun'] [u'stephen', u'seek', u'cabinet', u'spot'] [u'steal', u'ballot', u'paper', u'investig'] [u'studi', u'find', u'loneli', u'women'] [u'survey', u'find', u'job', u'growth', u'slow'] [u'swank', u'knock', u'oscar', u'competit'] [u'syria', u'link', u'captur', u'saddam', u'half', u'brother'] [u'team', u'counsel', u'player', u'death'] [u'tennant', u'creek', u'back', u'elder', u'council'] [u'test', u'show', u'sticki', u'rice', u'porridg', u'cement'] [u'thorough', u'apprenticeship', u'toughen', u'cricket'] [u'thousand', u'demonstr', u'beirut', u'defi', u'govt'] [u'thousand', u'rock', u'tsunami', u'concert'] [u'rescu', u'dingi', u'overturn'] [u'timber', u'industri', u'welcom', u'wood', u'suppli', u'agreement'] [u'titl', u'dream', u'come', u'true', u'arthur'] [u'togo', u'polic', u'break', u'protest', u'capit'] [u'tom', u'cruis', u'match', u'play'] [u'smith', u'zim', u'thrash'] [u'tournament', u'win', u'feder', u'nadal'] [u'trade', u'deficit', u'blow'] [u'train', u'cours', u'target', u'young', u'rural', u'driver'] [u'truanci', u'program', u'boost', u'attend', u'rate'] [u'darl', u'down', u'road', u'accid'] [u'lawyer', u'stand', u'trial', u'gangland'] [u'streaker', u'arrest', u'tropfest'] [u'union', u'want', u'timber', u'job', u'secur', u'blaze'] [u'govt', u'urg', u'tough', u'russia'] [u'virgin', u'urg', u'sharehold', u'reject', u'patrick'] [u'barrist', u'south', u'australia'] [u'watson', u'resum', u'bowl'] [u'weather', u'bureau', u'websit', u'win', u'popular', u'award'] [u'webb', u'look', u'form', u'bounc'] [u'wed', u'band', u'welcom', u'princess', u'mari'] [u'wellington', u'councillor', u'join'] [u'william', u'webber', u'need', u'race', u'experi', u'team', u'boss'] [u'william', u'drug', u'test', u'controversi'] [u'woman', u'charg', u'stab', u'murder'] [u'worker', u'protest', u'tenix', u'individu', u'contract', u'offer'] [u'charg', u'drug', u'raid'] [u'abar', u'predict', u'bumper', u'commod', u'earn'] [u'elect', u'surgeri', u'wait', u'list', u'grow'] [u'govt', u'back', u'wage', u'rise'] [u'action', u'group', u'seek', u'hastier', u'oper', u'theatr'] [u'hous', u'internet', u'porn', u'squad'] [u'agricultur', u'blueprint', u'involv', u'industri', u'govt'] [u'qaeda', u'urg', u'zarqawi', u'launch', u'attack'] [u'find', u'evid', u'bigger', u'north', u'east', u'cancer'] [u'ancient', u'perfumeri', u'reveal', u'scent', u'past'] [u'arthur', u'readi', u'davi', u'challeng'] [u'artist', u'plan', u'corps', u'plastin', u'factori', u'poland'] [u'ash', u'right'] [u'aussi', u'thrash', u'black', u'cap'] [u'aust', u'academ', u'win', u'right', u'stay', u'botswana'] [u'aust', u'archaeologist', u'ancient', u'mummi'] [u'aust', u'forc', u'return', u'tale', u'tsunami', u'aceh'] [u'australia', u'vital', u'role', u'timor', u'labor'] [u'australia', u'chase'] [u'author', u'uphold', u'complaint'] [u'averag', u'bloke', u'birney', u'contest', u'leadership'] [u'pleas', u'ferri', u'worker', u'agreement'] [u'baradin', u'grain'] [u'bathurst', u'region', u'medic', u'school'] [u'beachley', u'predict', u'tough', u'fight', u'world', u'champ'] [u'beatti', u'blast', u'costello', u'possibl', u'chang'] [u'beatti', u'reject', u'need', u'stand', u'asid', u'palm'] [u'beazley', u'launch', u'rat', u'attack', u'werriwa'] [u'beirut', u'protest', u'street', u'pressur', u'syria'] [u'bike', u'accid', u'leav', u'condit'] [u'black', u'cap', u'wors'] [u'blaze', u'damag', u'rockhampton', u'restaur'] [u'blue', u'mountain', u'derail', u'delay', u'train'] [u'die'] [u'brack', u'unimpress', u'costello', u'plan'] [u'brisban', u'enforc', u'nightclub', u'lock'] [u'british', u'approv', u'controversi', u'terror', u'law'] [u'bulldog', u'ponder', u'tribun', u'option'] [u'bullet', u'determin', u'conquer', u'king'] [u'maritim', u'pilot', u'head', u'ship'] [u'capricorn', u'coast', u'properti', u'valu', u'expect', u'rise'] [u'caravan', u'park', u'boom', u'capricorn', u'coast'] [u'carpet', u'cleaner', u'hard', u'sell', u'earn', u'fine'] [u'chamber', u'aim', u'shake', u'merimbula', u'oldi', u'imag'] [u'chamber', u'vote', u'sunday', u'trade', u'maryborough'] [u'china', u'experi', u'divorc', u'boom'] [u'clark', u'leav', u'cabinet', u'amid', u'inquiri'] [u'clinton', u'optimist', u'taiwan', u'china', u'relat'] [u'clinton', u'urg', u'tsunami', u'nation'] [u'communiti', u'seek', u'polic', u'station', u'fund'] [u'cook', u'island', u'count', u'cost', u'cyclon', u'perci'] [u'cool', u'head', u'prevail', u'india', u'ganguli'] [u'costello', u'stand', u'remark'] [u'council', u'confid', u'secur', u'airport', u'fund'] [u'council', u'consid', u'airport', u'hous', u'plan'] [u'council', u'seek', u'polic', u'staff', u'answer'] [u'council', u'consid', u'integr', u'tourism', u'market'] [u'council', u'will', u'review', u'mow', u'man', u'fine'] [u'council', u'win', u'rat', u'payment', u'case'] [u'count', u'continu', u'kimberley'] [u'court', u'hear', u'protest', u'massacr', u'site'] [u'cure', u'all', u'rush', u'indian', u'shelv'] [u'reject', u'costello', u'critic'] [u'current', u'account', u'deficit', u'blow'] [u'dark', u'cloud', u'hang', u'weather', u'observ', u'station'] [u'detail', u'reveal', u'terrorist', u'suspect', u'abus'] [u'develop', u'creat', u'uncertainti'] [u'dick', u'smith', u'arriv', u'baxter', u'visit'] [u'dick', u'smith', u'fli', u'baxter', u'detaine'] [u'dolphin', u'pleas', u'beatti', u'carrara', u'comment'] [u'domest', u'cricket', u'comp', u'deserv', u'better', u'crowd', u'support'] [u'doubt', u'air', u'bendigo', u'shop'] [u'drug', u'suspens', u'fuel', u'tumbl', u'wall'] [u'februari', u'prompt', u'save', u'water', u'remind'] [u'educ', u'see', u'vital', u'fix', u'trade', u'skill'] [u'elder', u'atsic', u'protest', u'canberra'] [u'explos', u'deton', u'macquari', u'field'] [u'famili', u'fear', u'miss'] [u'famili', u'urg', u'crash', u'driver', u'come', u'forward'] [u'farm', u'group', u'focus', u'vote', u'valu'] [u'west', u'share', u'feder', u'fund'] [u'father', u'right', u'group', u'stage', u'london', u'protest'] [u'februari', u'rain', u'boost', u'gippsland'] [u'femal', u'student', u'doubl', u'need', u'medicin', u'place'] [u'fight', u'kill', u'nepales', u'rebel'] [u'crew', u'patrol', u'goat', u'hill', u'bushfir'] [u'strathfield', u'mayor', u'resign'] [u'formula', u'fact', u'figur'] [u'formula', u'rule', u'chang'] [u'french', u'journalist', u'show', u'make', u'video', u'plea', u'help'] [u'frog', u'watch', u'launch', u'toad', u'trap', u'campaign'] [u'fuel', u'price', u'hike', u'spark', u'indonesian', u'protest'] [u'gambl', u'support', u'program', u'ignor', u'cultur', u'need'] [u'glen', u'ella', u'coach', u'aussi', u'seven'] [u'golden', u'circl', u'eye', u'bank', u'bail'] [u'govt', u'announc', u'plan', u'farm', u'white', u'paper'] [u'govt', u'urg', u'fulfil', u'gascoyn', u'promis'] [u'green', u'lose', u'balanc', u'power'] [u'group', u'meet', u'brigalow', u'belt', u'south', u'bioregion'] [u'gulf', u'home', u'brew', u'ban', u'forc'] [u'gunner', u'firepow', u'blunt', u'henri', u'rule'] [u'hear', u'continu', u'doomadge', u'death'] [u'henjak', u'play', u'hard'] [u'hippo', u'kill', u'australian', u'tourist', u'kenya'] [u'hyne', u'hope', u'face', u'blue'] [u'impress', u'king', u'thump', u'bullet'] [u'indonesian', u'fish', u'boat', u'hold', u'quarantin'] [u'injur', u'venus', u'fall', u'hurdl'] [u'invest', u'environment', u'sustain'] [u'iran', u'ask', u'cooper', u'nuclear', u'watchdog'] [u'iraq', u'bind', u'troop', u'readi', u'leahi'] [u'israel', u'court', u'order', u'probe', u'activist'] [u'isra', u'presid', u'prais', u'australian', u'support'] [u'israel', u'plan', u'detent', u'withdraw', u'oppon'] [u'jackson', u'charg', u'bogus'] [u'jackson', u'trial', u'begin'] [u'japan', u'scan', u'sky', u'alien', u'life'] [u'jitteri', u'fossett', u'begin', u'record', u'attempt'] [u'kingsliff', u'schoolgirl', u'shock', u'world', u'champ'] [u'kingsthorp', u'emerg', u'rais', u'fear'] [u'knight', u'welcom', u'drop', u'charg'] [u'knight', u'welcom', u'drop', u'claim'] [u'labor', u'back', u'state'] [u'land', u'acquisit', u'clear', u'northern'] [u'landmark', u'fowler', u'citi', u'beat', u'norwich'] [u'lebanes', u'govern', u'resign'] [u'lebanes', u'deni', u'govt', u'role', u'hariri', u'murder'] [u'lehmann', u'rule', u'tour'] [u'lincraft', u'sale', u'stitch', u'job'] [u'london', u'meet', u'discuss', u'palestinian', u'reform'] [u'accus', u'truck', u'assault', u'policeman'] [u'arrest', u'princ', u'charl', u'visit', u'fremantl'] [u'mang', u'threaten', u'wombat'] [u'plead', u'guilti', u'shoe', u'bomb', u'plot'] [u'manufactur', u'index', u'point', u'slow', u'growth'] [u'west', u'wind', u'farm', u'start', u'shape'] [u'sector', u'moot', u'scienc', u'technolog', u'precinct'] [u'molik', u'continu', u'rank', u'rise'] [u'iluka', u'unrest', u'possibl'] [u'back', u'land', u'remain', u'open', u'space'] [u'multiplex', u'extort', u'inquiri', u'continu'] [u'multiplex', u'threat', u'prompt', u'walkout'] [u'multiplex', u'work', u'continu', u'despit', u'sniper', u'threat'] [u'murder', u'inquiri', u'open', u'hotel', u'death'] [u'miner', u'buoy', u'australian', u'market'] [u'hollow', u'manag', u'envisag', u'expand', u'health'] [u'servic', u'address', u'indigen', u'domest', u'violenc'] [u'nicholson', u'blue', u'return', u'tiger'] [u'sight', u'indigen', u'leadership'] [u'england', u'return', u'wilkinson'] [u'stop', u'round', u'world', u'flight', u'take'] [u'offici', u'winner', u'greenough'] [u'north', u'coast', u'get', u'safe', u'messag'] [u'rape', u'offend', u'offenc'] [u'packer', u'arriv', u'australia'] [u'pair', u'charg', u'hammer', u'incid'] [u'pakistan', u'veto', u'dalai', u'lama', u'cricket'] [u'palm', u'island', u'inquest', u'adjourn', u'amid', u'bias', u'concern'] [u'founder', u'face', u'committ', u'septemb'] [u'parent', u'group', u'worri', u'telstra', u'privatis'] [u'perci', u'put', u'cook', u'state', u'emerg'] [u'perth', u'crane', u'driver', u'heed', u'multiplex', u'threat'] [u'place', u'squeez', u'forc', u'uni', u'degre'] [u'polic', u'consid', u'reward', u'help', u'catch', u'tourist'] [u'polic', u'deni', u'mistak', u'macquari', u'field'] [u'polic', u'griffith', u'attack', u'descript'] [u'polic', u'fear', u'children', u'miss', u'ammunit'] [u'polic', u'interview', u'sanctuari', u'fatal'] [u'polic', u'pleas', u'drug', u'distributor', u'year'] [u'polic', u'probe', u'biki', u'assault', u'claim'] [u'polic', u'respons', u'focus', u'macquari', u'field', u'meet'] [u'polic', u'search', u'miss'] [u'polic', u'urg', u'drinker', u'report', u'spike'] [u'polic', u'wait', u'interview', u'doubl', u'stab'] [u'pope', u'make', u'steadi', u'progress', u'say', u'vatican'] [u'pressur', u'india', u'claim', u'inzi'] [u'princ', u'charl', u'arriv', u'australia'] [u'princ', u'charl', u'prais', u'perth', u'medic', u'team'] [u'public', u'cycl', u'path', u'plan'] [u'relief', u'effort', u'begin', u'cook', u'island'] [u'reserv', u'bank', u'tip', u'rais', u'rat'] [u'resid', u'seek', u'intersect', u'safeti'] [u'retir', u'bird', u'make', u'unusu', u'highway', u'sight'] [u'riot', u'spectacl', u'hamper', u'arrest', u'polic'] [u'rock', u'thrower', u'victim', u'seek', u'compens'] [u'rotari', u'park', u'offer', u'communiti', u'asset'] [u'rumsfeld', u'face', u'prison', u'abus', u'suit'] [u'schumach', u'target', u'eighth', u'titl', u'crisi', u'season'] [u'sealink', u'defend', u'fuel', u'surcharg'] [u'selector', u'mull', u'test', u'option'] [u'sentenc', u'teenag', u'killer', u'uphold'] [u'shire', u'back', u'classroom', u'retent'] [u'sierra', u'leon', u'consid', u'australian', u'bail', u'plea'] [u'singl', u'board', u'manag', u'tasmanian', u'port'] [u'smith', u'give', u'week'] [u'smith', u'detaine', u'pledg', u'offer', u'fals', u'hope'] [u'smith', u'risk', u'tribun', u'appear'] [u'specul', u'mount', u'tassi', u'tiger', u'photo'] [u'sugar', u'grower', u'face', u'grant', u'wait'] [u'summit', u'weight', u'palestinian', u'secur'] [u'tasmanian', u'call', u'water', u'qualiti', u'initi'] [u'tassi', u'tiger', u'spotter', u'like', u'sad', u'mistak'] [u'macquari', u'field', u'rioter', u'bail', u'hold'] [u'timber', u'propon', u'confid', u'green', u'concern', u'address'] [u'earli', u'talk', u'loss', u'qanta', u'say'] [u'trucki', u'group', u'outlin', u'youth', u'train', u'plan'] [u'trundl', u'teacher', u'walk'] [u'line', u'predict', u'loss'] [u'tyson', u'comeback', u'australia'] [u'underag', u'driver', u'charg', u'high', u'speed', u'chase'] [u'uneasi', u'peac', u'return', u'macquari', u'field'] [u'union', u'question', u'hospit', u'hygien'] [u'union', u'say', u'truck', u'firm', u'fine', u'higher'] [u'unit', u'star', u'kean', u'court', u'assault', u'charg'] [u'examin', u'treatment', u'indigen', u'australian'] [u'aust', u'seek', u'peacekeep', u'east', u'timor'] [u'court', u'order', u'enemi', u'combat', u'free'] [u'lash', u'alli', u'human', u'right'] [u'ramp', u'guantanamo', u'probe'] [u'walter', u'bank', u'deal', u'secur', u'sydney', u'job'] [u'water', u'author', u'stand', u'water', u'relief'] [u'wayward', u'crow', u'land', u'cold', u'water'] [u'webber', u'shift', u'gear'] [u'west', u'coast', u'hous', u'investig'] [u'western', u'sink', u'teeth', u'dental', u'push'] [u'western', u'record', u'mild', u'summer'] [u'william', u'order', u'underworld', u'murder', u'wit'] [u'wodonga', u'heavi', u'storm'] [u'woman', u'jail', u'rape', u'charg'] [u'woodgat', u'foreshor', u'plan', u'step', u'closer'] [u'worker', u'defi', u'multiplex', u'sniper', u'threat'] [u'youth', u'leader', u'converg', u'adelaid'] [u'cholera', u'outbreak', u'nigeria'] [u'aborigin', u'remain', u'buri', u'ancestr', u'soil'] [u'academ', u'say', u'global', u'warm', u'debat', u'misguid'] [u'acoss', u'target', u'million', u'dollar', u'welfar', u'recipi'] [u'crack', u'cannabi', u'law'] [u'advis', u'urg', u'research', u'detent'] [u'agassi', u'davi', u'comeback'] [u'age', u'hous', u'challeng', u'face', u'council'] [u'condit', u'scheme', u'review'] [u'alleg', u'money', u'launder', u'face', u'court'] [u'alleg', u'rioter', u'allow', u'return', u'palm'] [u'american', u'good', u'longlea', u'firm'] [u'arsenal', u'scrape', u'quarter', u'final'] [u'arsenal', u'scrape', u'final', u'saint'] [u'ashley', u'cooper', u'hamstr', u'strain', u'brumbi', u'stock'] [u'asylum', u'seeker', u'drop', u'lowest', u'figur', u'year'] [u'auburn', u'hospit', u'unsaf', u'critic', u'surgeon'] [u'australian', u'surfer', u'march', u'quarter', u'final'] [u'austria', u'bullish', u'ahead', u'davi'] [u'averag', u'rain', u'predict', u'wide'] [u'baghdad', u'blast', u'kill', u'soldier'] [u'bank', u'chequ', u'fraudster', u'gold', u'coast'] [u'beatti', u'decid', u'clark', u'replac'] [u'beazley', u'outlin', u'infrastructur', u'prioriti'] [u'birney', u'warn', u'leadership', u'balanc'] [u'brack', u'back', u'water', u'deal'] [u'brisban', u'polic', u'blitz', u'nab', u'peopl'] [u'britain', u'stockpil', u'vaccin'] [u'brook', u'return', u'wave', u'injuri', u'goodby'] [u'burnett', u'river', u'worker', u'chang', u'walter'] [u'busi', u'tell', u'lower'] [u'chang', u'access', u'arrang'] [u'charl', u'unlik', u'attend', u'alic', u'buck', u'parti'] [u'civil', u'liberti', u'group', u'howl', u'beatti', u'sniffer'] [u'commission', u'appeal', u'driver', u'come', u'forward'] [u'compani', u'express', u'sympathi', u'follow', u'hippo', u'victim'] [u'concern', u'rais', u'overhaul', u'plan'] [u'coonan', u'flag', u'law', u'allay', u'telstra', u'sale'] [u'council', u'overturn', u'swim', u'pool', u'photo'] [u'council', u'rais', u'question', u'code', u'conduct', u'plan'] [u'council', u'renew', u'higher', u'speed', u'limit', u'push'] [u'court', u'hear', u'teen', u'tell', u'polic', u'kill', u'worker'] [u'court', u'tell', u'convict', u'killer', u'abus', u'child'] [u'cousin', u'eagl'] [u'cousin', u'eagl'] [u'cricket', u'world', u'mourn', u'luckhurst'] [u'croc', u'farmer', u'welcom', u'remov', u'plan'] [u'crowd', u'cheer', u'danish', u'royal', u'outsid', u'gala', u'dinner'] [u'darwin', u'waterfront', u'develop', u'ongo', u'problem'] [u'docker', u'lock', u'coach', u'connolli'] [u'downer', u'say', u'deal', u'liber', u'leadership'] [u'dozen', u'kill', u'congo', u'offens'] [u'driver', u'sentenc', u'highlight', u'court', u'delay'] [u'drop', u'knight', u'assault', u'case', u'surpris'] [u'eagl', u'rest', u'judd', u'embley', u'preseason', u'semi'] [u'earli', u'flight', u'trial', u'continu'] [u'earthquak', u'shake', u'darwin'] [u'electr', u'worker', u'consid', u'industri', u'campaign'] [u'embassi', u'staff', u'baghdad', u'green', u'zone'] [u'employ', u'urg', u'boost', u'safeti'] [u'espanyol', u'hold', u'barca', u'entertain', u'scoreless', u'draw'] [u'expert', u'prais', u'devil', u'diseas', u'research'] [u'extra', u'polic', u'pleas', u'council'] [u'farm', u'group', u'want', u'migrant', u'help', u'skill', u'shortag'] [u'father', u'bodi', u'part', u'artist', u'face', u'nazi', u'claim'] [u'fear', u'incom', u'earner', u'rate', u'rise'] [u'fish', u'settl', u'year'] [u'face', u'join', u'cabinet', u'stalwart'] [u'forest', u'firm', u'invest', u'pine', u'plantat'] [u'fossett', u'abort', u'mission'] [u'franc', u'press', u'syrian', u'withdraw'] [u'fund', u'alloc', u'help', u'protect', u'king', u'brand'] [u'slowdown', u'hit', u'dollar'] [u'gold', u'coast', u'surf', u'claim', u'sixth', u'drown', u'victim'] [u'govt', u'look', u'relax', u'sugar', u'packag', u'criteria'] [u'govt', u'ask', u'delay', u'land', u'water', u'valu'] [u'govt', u'propos', u'overhaul'] [u'govt', u'spend', u'spree', u'rate', u'rise', u'beazley', u'say'] [u'govt', u'indigen', u'hous'] [u'govt', u'urg', u'offer', u'help', u'isol', u'student'] [u'grisli', u'grafton', u'spark', u'polic', u'plea'] [u'habib', u'take', u'defam', u'action'] [u'herbicid', u'spray', u'drift', u'hit', u'crop'] [u'hewitt', u'strive', u'recaptur', u'intens'] [u'high', u'court', u'rule', u'australia', u'asylum', u'seeker'] [u'hill', u'defend', u'armour', u'iraq', u'bind', u'troop'] [u'hippopotamus', u'kill', u'australian', u'tourist'] [u'hodg', u'tour', u'kiwi', u'pick', u'newcom'] [u'hong', u'kong', u'leader', u'report', u'step'] [u'hope', u'kimberley', u'rain'] [u'hospit', u'close', u'bed', u'mental', u'health', u'patient'] [u'hous', u'lobbi', u'lam', u'govt', u'mainten', u'backlog'] [u'howard', u'urg', u'rate', u'rise', u'keep', u'perspect'] [u'incent', u'offer', u'facilit', u'land', u'transfer'] [u'indigen', u'leader', u'lament', u'clark', u'resign'] [u'indonesian', u'student', u'protest', u'fuel', u'price', u'rise'] [u'inquiri', u'clear', u'council', u'manag', u'misconduct'] [u'insurg', u'target', u'baghdad', u'militari', u'base'] [u'integr', u'energi', u'fin', u'bargo', u'accid'] [u'internet', u'sale', u'mind', u'alter', u'drug', u'surg'] [u'iran', u'block', u'nuclear', u'inspect'] [u'iraqi', u'judg', u'work', u'saddam', u'case', u'kill'] [u'ireland', u'wale', u'head', u'nation', u'showdown'] [u'isra', u'presid', u'declar', u'faith', u'abba'] [u'jackson', u'lawyer', u'say', u'star', u'tell', u'stori'] [u'jacob', u'claim', u'mcmeikan', u'conced'] [u'jetstar', u'asia', u'introduc', u'bangkok', u'rout'] [u'karzai', u'appoint', u'warlord', u'armi', u'chief', u'staff'] [u'keat', u'back', u'rat', u'rise'] [u'lake', u'eyr', u'basin', u'studi', u'begin'] [u'guarante', u'test', u'recal', u'hohn'] [u'lennon', u'howard', u'meet', u'discuss', u'forest', u'polici'] [u'lennon', u'upbeat', u'forest', u'plan', u'meet'] [u'liber', u'lobbi', u'detent', u'chang'] [u'liber', u'parti', u'delay', u'leadership', u'ballot'] [u'lobbi', u'group', u'upset', u'servic', u'tender'] [u'oxygen', u'level', u'prompt', u'fish', u'kill'] [u'macquari', u'field', u'arrest', u'send', u'strong', u'messag', u'carr'] [u'madrid', u'bomber', u'plan', u'york', u'attack', u'report'] [u'malaysia', u'crack', u'illeg', u'immigr'] [u'charg', u'toddler', u'electrocut', u'death'] [u'face', u'abalon', u'poach', u'charg'] [u'face', u'court', u'child', u'porn', u'charg'] [u'mclaren', u'raikkonen', u'hop', u'chang', u'fortun'] [u'melbourn', u'gear', u'parad'] [u'melbourn', u'lap', u'atmospher'] [u'question', u'child', u'porn', u'raid'] [u'miner', u'explor', u'site', u'near', u'break', u'hill'] [u'minist', u'attack', u'anim', u'right', u'group'] [u'minist', u'launch', u'polic', u'memori', u'design'] [u'minist', u'open', u'council', u'depot'] [u'mini', u'tornado', u'hit', u'wodonga'] [u'missil', u'spat', u'chill', u'canada', u'relat'] [u'molik', u'lose', u'dubai'] [u'mortlock', u'week'] [u'baxter', u'find', u'vanston'] [u'offer', u'inform', u'william', u'hear'] [u'multiplex', u'crane', u'driver', u'work'] [u'multiplex', u'worker', u'perth'] [u'murder', u'tourist', u'bodi', u'head', u'germani'] [u'murder', u'hostag', u'take', u'spree', u'end', u'jail', u'term'] [u'nation', u'food', u'endors', u'fonterra', u'share', u'offer'] [u'campus', u'open', u'today'] [u'law', u'simplifi', u'histor', u'site', u'registr'] [u'port', u'chief', u'start'] [u'submiss', u'fletcher', u'jone', u'site'] [u'consid', u'eas', u'salari', u'rule'] [u'govt', u'accus', u'rewrit', u'histori'] [u'govt', u'pressur', u'nation', u'park'] [u'trial', u'home', u'birth', u'servic'] [u'number', u'impoverish', u'australian', u'children', u'fall'] [u'opposit', u'back', u'financi', u'troubl', u'ferri'] [u'paedophil', u'alleg', u'disturb', u'politician'] [u'parent', u'face', u'trial', u'toddler', u'methadon', u'death'] [u'parliament', u'flare', u'case'] [u'penguin', u'starv', u'death'] [u'perman', u'servic', u'replac', u'mobil', u'dental'] [u'pickett', u'appeal', u'throw'] [u'pickett', u'appeal', u'suspens'] [u'pine', u'plantat', u'promis', u'job'] [u'play', u'school', u'lesbian', u'parent', u'lead', u'sydney', u'mardi'] [u'polic', u'continu', u'investig'] [u'polic', u'probe', u'fire'] [u'poor', u'rainfal', u'like', u'better'] [u'pope', u'talk', u'day', u'surgeri', u'cardin'] [u'princ', u'charl', u'farewel', u'perth', u'alic', u'spring'] [u'princess', u'mari', u'sit', u'portrait'] [u'princ', u'visit', u'fli', u'doctor', u'alic'] [u'privat', u'health', u'insur', u'premium', u'rise'] [u'produc', u'destock'] [u'protest', u'greet', u'isra', u'presid', u'visit'] [u'back', u'push', u'coal', u'termin', u'infrastructur'] [u'rate', u'rise', u'fail', u'dampen', u'share', u'market'] [u'rate', u'rise', u'tip', u'amid', u'growth', u'slowdown'] [u'rate', u'rise', u'tip', u'hurt', u'central', u'home', u'owner'] [u'rat', u'lift'] [u'rat', u'rise', u'despit', u'econom', u'slowdown'] [u'rat', u'rise', u'leav', u'cane', u'grower', u'bitter', u'tast'] [u'reckless', u'brogden', u'reveal', u'riot', u'investig', u'tactic'] [u'tape', u'hamper', u'servic', u'expans'] [u'report', u'criticis', u'indigen', u'hous', u'educ'] [u'research', u'look', u'lift', u'north', u'coast', u'economi'] [u'review', u'recommend', u'seatbelt', u'school', u'bus'] [u'round', u'world', u'yacht', u'seek', u'shelter', u'tasmania'] [u'rumsfeld', u'sue', u'iraq', u'afghan', u'abus'] [u'rural', u'counsel', u'servic', u'face', u'uncertain', u'futur'] [u'rural', u'miss', u'telstra', u'broadband'] [u'saint', u'rover', u'advanc', u'final'] [u'schoolgirl', u'surfer', u'knock', u'world', u'champ'] [u'school', u'urg', u'help', u'stop', u'drunken', u'behaviour'] [u'schu', u'focus', u'bigger', u'pictur', u'melbourn'] [u'selector', u'test', u'squad', u'today'] [u'share', u'recov', u'nyse'] [u'shire', u'say', u'forc', u'boundari', u'chang', u'cost'] [u'speaker', u'claim', u'involv', u'paedophilia'] [u'specul', u'bowler', u'offer', u'ministeri', u'role'] [u'steal', u'demon', u'memorabilia', u'return'] [u'submiss', u'focus', u'vacant', u'council', u'seat'] [u'suleman', u'face', u'charg'] [u'syria', u'pull', u'troop', u'month', u'assad'] [u'telstra', u'boss', u'vow', u'abandon', u'bush'] [u'tourism', u'oper', u'tell', u'look', u'futur'] [u'travel', u'tale', u'earn', u'biographi', u'prize'] [u'tweed', u'princess', u'meet', u'real', u'thing'] [u'twin', u'baghdad', u'attack', u'kill'] [u'ukrainian', u'polic', u'arrest', u'journalist', u'death'] [u'unborn', u'foetus', u'subject', u'protect', u'law'] [u'univers', u'plan', u'undermin', u'valu', u'degre'] [u'uruguayan', u'inaugur', u'signal', u'shift', u'leav'] [u'end', u'death', u'penalti', u'minor'] [u'brass', u'face', u'guantanamo', u'abus', u'investig'] [u'backbench', u'prepar', u'baxter', u'visit'] [u'victoria', u'sign', u'water', u'scheme', u'pressur'] [u'hospit', u'join', u'nation', u'mental', u'health', u'initi'] [u'water', u'qualiti', u'issu', u'forc', u'stop', u'forestri', u'work'] [u'wodonga', u'storm', u'damag', u'mount'] [u'woodend', u'project'] [u'wool', u'grower', u'address', u'wild', u'woe'] [u'woosnam', u'eye', u'histori', u'success'] [u'world', u'power', u'demand', u'palestinian', u'secur', u'crackdown'] [u'worsley', u'industri', u'woe', u'intensifi'] [u'wrigg', u'tucker', u'grubbi', u'princ', u'charl'] [u'xstrata', u'profit', u'surg', u'rise', u'commod', u'price'] [u'youth', u'guilti', u'fatal', u'umbrella', u'stab'] [u'youth', u'releas', u'question', u'macquari'] [u'abbott', u'laud', u'riverina', u'cancer', u'centr'] [u'accus', u'number', u'murder', u'victim', u'phone', u'court', u'hear'] [u'appeal', u'board', u'stand', u'firm', u'pickett'] [u'age', u'care', u'deal', u'streamlin', u'develop'] [u'back', u'call', u'econom', u'summit'] [u'alcohol', u'plan', u'polic', u'stop', u'cape', u'york', u'hell'] [u'certain', u'probe', u'children', u'ward', u'worri'] [u'anglican', u'suspend', u'dual', u'church', u'priest'] [u'appeal', u'court', u'tell', u'child', u'killer', u'sentenc', u'long'] [u'athlet', u'boss', u'admit', u'there', u'easi'] [u'australian', u'archaeologist', u'impress', u'mummi'] [u'australia', u'say', u'bashir', u'sentenc', u'inadequ'] [u'school', u'princ', u'charl'] [u'bashir', u'face', u'verdict', u'terror', u'charg'] [u'bashir', u'jail', u'bali', u'bomb', u'conspiraci'] [u'bbcs', u'govern', u'review'] [u'beatti', u'name', u'indigen', u'polici', u'minist'] [u'beatti', u'welcom', u'palm', u'inquest'] [u'beazley', u'back', u'foreign', u'labour', u'push'] [u'beazley', u'lobbi', u'nation', u'telstra', u'sale'] [u'beazley', u'want', u'proper', u'send', u'latham'] [u'bendigo', u'keen', u'colleg', u'oper'] [u'blaze', u'rip', u'alic', u'unit'] [u'british', u'schoolgirl', u'win', u'right', u'wear', u'islam', u'dress'] [u'brumbi', u'stretch', u'limit', u'bull', u'clash'] [u'bull', u'dent', u'vic', u'final', u'chanc'] [u'cairn', u'knock'] [u'call', u'homebuy', u'grant', u'increas'] [u'campes', u'tell', u'pom', u'stop', u'whing'] [u'bomb', u'kill', u'baghdad', u'checkpoint'] [u'explos', u'debri', u'rain', u'suburban', u'adelaid'] [u'carnarvon', u'leader', u'crime', u'prevent'] [u'carrara', u'upgrad', u'requir', u'dolphin', u'join'] [u'casa', u'check', u'region', u'passeng', u'plan', u'asbesto'] [u'cessnock', u'lead', u'threaten', u'speci', u'law'] [u'urg', u'rethink', u'uniform', u'choic'] [u'chamber', u'doesnt', u'predict', u'rat', u'rise', u'impact'] [u'charli', u'sheen', u'wife', u'file', u'divorc'] [u'chopper', u'rescu', u'servic', u'join', u'safeti', u'network'] [u'club', u'ponder', u'possibl', u'salari', u'cap', u'chang'] [u'ordeal', u'anger', u'woocoo', u'mayor'] [u'communiti', u'leader', u'like', u'bowler', u'ministeri'] [u'coron', u'stand', u'palm', u'inquest'] [u'coron', u'announc', u'decis', u'doomadge', u'inquest'] [u'cossington', u'smith', u'exhibit', u'open'] [u'costa', u'respond', u'bypass', u'invit'] [u'costello', u'brush', u'recess', u'talk'] [u'council', u'fight', u'physiotherapist', u'fund'] [u'council', u'inquiri', u'hear', u'public', u'land', u'sale', u'concern'] [u'councillor', u'odd', u'foreshor', u'action', u'group'] [u'councillor', u'say', u'elect', u'expens', u'cover'] [u'councillor', u'clarifi', u'pool', u'facil', u'fund'] [u'council', u'oppos', u'polic', u'station', u'land', u'claim'] [u'council', u'reject', u'wind', u'farm', u'applic'] [u'council', u'unsur', u'collect', u'unpaid', u'fin'] [u'court', u'approv', u'residenti', u'complex'] [u'crusher', u'failur', u'slow', u'gold', u'product'] [u'data', u'give', u'aust', u'dollar', u'bumpi', u'ride'] [u'davi', u'team', u'name', u'today'] [u'debat', u'flare', u'uranium', u'mine'] [u'deportivo', u'coruna', u'fin', u'fan', u'racist', u'jib'] [u'disabl', u'servic', u'lack', u'north'] [u'doc', u'answer', u'seek', u'murder', u'child', u'case'] [u'dog', u'employ', u'shock', u'tactic', u'wolv'] [u'domin', u'prove', u'thorn', u'tiger'] [u'dont', u'write', u'boof', u'say', u'langer'] [u'drive', u'begin', u'recruit', u'teacher'] [u'driver', u'urg', u'slow', u'near', u'school'] [u'eastman', u'lose', u'stay', u'canberra', u'inquiri'] [u'eye', u'dubai', u'crown', u'lyle'] [u'england', u'lose', u'robinson', u'week'] [u'exhaust', u'set', u'fossett', u'enter', u'final', u'stretch'] [u'explan', u'seek', u'drop', u'gang', u'rape', u'charg'] [u'fin', u'prutton', u'ugli', u'send'] [u'fall', u'illawarra', u'union', u'membership', u'surpris'] [u'famili', u'parti', u'lobbi', u'asylum', u'seeker', u'polici'] [u'farmer', u'prepar', u'rat', u'rise'] [u'farmer', u'consid', u'seek', u'drought'] [u'faur', u'stand', u'trail', u'underworld', u'figur', u'death'] [u'fear', u'fish', u'endang', u'shark'] [u'investig', u'consid', u'electr', u'fault'] [u'round', u'leav', u'iron', u'stitch'] [u'foley', u'lash', u'paedophilia', u'question'] [u'charg', u'publican', u'murder'] [u'arrest', u'sydney', u'riot'] [u'team', u'remain', u'class', u'cricket', u'content'] [u'frustrat', u'mount', u'telstra', u'phone', u'list'] [u'fuel', u'loss', u'fail', u'stop', u'fossett', u'round', u'world'] [u'fund', u'boost', u'communiti', u'radio', u'welcom'] [u'fund', u'avail', u'maryborough', u'art', u'centr'] [u'health', u'insur', u'hike', u'possibl', u'abbott'] [u'gaffney', u'join', u'wallabi', u'coach', u'staff'] [u'gallop', u'urg', u'sign', u'nation', u'water', u'deal'] [u'game', u'chequer', u'flag'] [u'globalfly', u'push', u'hawaii'] [u'golf', u'club', u'say', u'cull', u'roo', u'cours'] [u'govt', u'defend', u'educ', u'indigen', u'communiti'] [u'govt', u'drought'] [u'griffith', u'council', u'urg', u'spend'] [u'hanson', u'add', u'medley'] [u'health', u'chief', u'want', u'bega', u'valley', u'hospit'] [u'hewitt', u'open', u'davi', u'charg'] [u'hide', u'anti', u'piraci', u'messag', u'aim', u'music', u'scammer'] [u'homeless', u'accommod', u'crisi', u'loom'] [u'howard', u'deni', u'train', u'failur', u'migrant', u'plan'] [u'howard', u'flag', u'skill', u'migrant', u'worker', u'intak'] [u'clear', u'harbhajan', u'doosra'] [u'indigen', u'school', u'fund', u'chang', u'marginalis'] [u'wan', u'york', u'olymp'] [u'iranian', u'woman', u'seek', u'divorc', u'water', u'husband'] [u'isra', u'presid', u'dodg', u'protest', u'melbourn'] [u'itali', u'snap', u'central', u'croc', u'skin'] [u'jackson', u'aid', u'target', u'accus', u'mother', u'court', u'tell'] [u'johnston', u'move', u'ahead', u'martin', u'kimberley'] [u'jone', u'icac', u'orang', u'grove', u'comment'] [u'laidley', u'remain', u'kangaroo'] [u'latrob', u'passeng', u'servic', u'await', u'approv'] [u'launceston', u'colleg', u'decid'] [u'legionnair', u'outbreak', u'reach', u'unlucki', u'number'] [u'local', u'govt', u'group', u'share', u'boundari', u'concern'] [u'accus', u'stalk', u'gibson', u'say', u'send'] [u'market', u'reach', u'record', u'close', u'despit', u'rate', u'hike'] [u'mayor', u'launch', u'macleay', u'valley', u'tourism', u'plan'] [u'milit', u'deton', u'bomb', u'near', u'isra', u'troop'] [u'minist', u'comment', u'anim', u'right', u'group', u'welcom'] [u'mix', u'respons', u'rat', u'rise'] [u'mourinho', u'escap', u'warn'] [u'plan', u'stop', u'footbal', u'scandal'] [u'link', u'underworld', u'figur', u'court', u'hear'] [u'nephew', u'charg', u'bash', u'death'] [u'gladston', u'port', u'access', u'open'] [u'inquest', u'palm', u'death'] [u'sight', u'forestrysa'] [u'link', u'autism', u'tripl', u'vaccin', u'studi', u'find'] [u'nurs', u'right', u'pursu', u'industri', u'action'] [u'pakistan', u'arrest', u'pearl', u'murder', u'suspect'] [u'parramatta', u'upgrad', u'spark', u'child', u'health', u'fear'] [u'part', u'westgat', u'bridg', u'substandard'] [u'peopl', u'launch', u'australian'] [u'pig', u'sign', u'watkin'] [u'pilbara', u'artist', u'work', u'sydney'] [u'plan', u'falconio', u'murder', u'trial', u'continu'] [u'back', u'polic', u'riot', u'tactic'] [u'talk', u'workplac', u'reform'] [u'independ', u'faction', u'dismantl', u'roadblock'] [u'polic', u'await', u'report', u'hippo', u'victim', u'bodi'] [u'polic', u'hunt', u'supermarket', u'arm', u'bandit'] [u'pool', u'committe', u'chairman', u'quit'] [u'predict', u'product', u'woe', u'like', u'hurt', u'lobster'] [u'princ', u'charl', u'declar', u'good', u'bloke'] [u'princ', u'charl', u'inspect', u'healthi', u'lifestyl'] [u'princ', u'charl', u'show', u'melbourn', u'care'] [u'princess', u'mari', u'throw', u'support', u'suicid'] [u'proud', u'cabinet', u'posit'] [u'publican', u'murder', u'accus', u'remand', u'custodi'] [u'pulp', u'chlorin', u'content', u'caus', u'confus'] [u'push', u'albion', u'park', u'commerci', u'flight'] [u'quak', u'felt', u'kununurra'] [u'rann', u'urg', u'reconsid', u'festiv', u'broadcast'] [u'rarotonga', u'brace', u'cyclon', u'perci'] [u'rat', u'rise', u'curb', u'council', u'spend'] [u'rat', u'rise', u'expect', u'impact', u'home'] [u'rat', u'rise', u'predict', u'hurt', u'hous', u'sale'] [u'rat', u'rise', u'tip', u'hurt', u'region', u'export', u'firm'] [u'rat', u'rise', u'hous', u'price', u'check'] [u'hint', u'rate', u'rise'] [u'red', u'ax', u'give', u'huxley', u'blue'] [u'retail', u'figur', u'fall', u'short', u'market', u'expect'] [u'right', u'group', u'dismay', u'afghan', u'strongman', u'post'] [u'rise', u'cost', u'affect', u'privat', u'health', u'insur'] [u'withdraw', u'faulti', u'speed', u'camera', u'fin'] [u'russia', u'slam', u'human', u'right', u'report'] [u'safeti', u'boost', u'medic', u'chopper'] [u'govt', u'confirm', u'water', u'agreement', u'support'] [u'school', u'form', u'barricad', u'misplac', u'cross'] [u'schumach', u'say', u'minardi', u'shouldnt', u'race'] [u'scientist', u'silver', u'line', u'botch'] [u'scott', u'white', u'lion'] [u'senat', u'fin', u'drive', u'incid', u'suspend'] [u'servic', u'sector', u'contract', u'add', u'econom', u'fear'] [u'continu', u'wodonga', u'storm', u'repair'] [u'sewag', u'recycl', u'studi'] [u'worker', u'seek', u'prostitut', u'regul', u'talk'] [u'shaolin', u'templ', u'seek', u'world', u'heritag', u'list'] [u'sky', u'darker', u'astronom'] [u'korean', u'compani', u'help', u'worker', u'play'] [u'smelli', u'bomb', u'creat', u'stink', u'newspap', u'offic'] [u'soni', u'attack', u'beatl', u'outreach', u'project'] [u'spain', u'coach', u'criticis', u'fine', u'henri', u'comment'] [u'spur', u'trounc', u'forest', u'eas', u'quarter'] [u'lanka', u'receiv', u'tsunami', u'pledg'] [u'state', u'claim', u'public', u'health', u'starv', u'fund'] [u'storm', u'cost', u'aurora', u'compens'] [u'streak', u'heroic', u'fail', u'prevent', u'south', u'african', u'sweep'] [u'strong', u'voter', u'turnout', u'tip', u'clarenc', u'valley'] [u'studi', u'better', u'estim', u'chemic'] [u'swimmer', u'scoop', u'pool', u'nation', u'sport', u'award'] [u'teacher', u'watch', u'abus', u'sign', u'academ', u'say'] [u'teacher', u'stop', u'work'] [u'teacher', u'code', u'conduct'] [u'teen', u'suprem', u'court', u'babi', u'death'] [u'territorian', u'hope', u'need', u'rain'] [u'timber', u'firm', u'open', u'fifth', u'sawmil'] [u'tourism', u'group', u'back', u'break', u'hill', u'promot'] [u'treasur', u'blame', u'govt', u'fund', u'shortfal'] [u'treasur', u'dodg', u'leadership', u'specul'] [u'tree', u'hunter', u'resiz', u'gandalf', u'staff'] [u'trio', u'appeal', u'offset', u'alpin', u'document', u'releas'] [u'tsunami', u'spread', u'toxic', u'wast', u'somalia'] [u'tweed', u'council', u'want', u'recognit', u'plan'] [u'tyson', u'announc', u'june', u'return'] [u'probe', u'asylum', u'seeker', u'abus', u'claim'] [u'ukrain', u'troop', u'withdraw', u'iraq'] [u'chief', u'demand', u'strict', u'rule', u'foreign'] [u'union', u'threaten', u'chao', u'disput'] [u'untidi', u'site', u'draw', u'council', u'critic'] [u'children', u'dead', u'school', u'collaps'] [u'brush', u'north', u'korean', u'demand', u'apolog'] [u'court', u'rule', u'command', u'display'] [u'offici', u'say', u'iran', u'syria'] [u'polici', u'void', u'missil', u'moratorium', u'north', u'korea'] [u'drop', u'anti', u'abort', u'amend'] [u'vandal', u'attack', u'yard', u'club'] [u'vaughan', u'talk', u'pietersen', u'ash', u'chanc'] [u'crime', u'suspect', u'extradit', u'perth'] [u'warrior', u'waca'] [u'water', u'bomber', u'join', u'bushfir', u'fight'] [u'webber', u'feel', u'weight', u'expect'] [u'wool', u'award'] [u'wool', u'industri', u'declin', u'hurt', u'blackal'] [u'worker', u'warn', u'howard', u'plan'] [u'work', u'start', u'improv', u'north', u'east', u'power', u'suppli'] [u'xstrata', u'offer', u'fail', u'impress'] [u'yarraman', u'bank', u'long', u'term', u'support', u'lender'] [u'kill', u'thai', u'crash'] [u'comalco', u'alumina', u'refineri', u'open'] [u'nomin', u'histor', u'council', u'elect'] [u'accus', u'keep', u'murder', u'detail', u'accomplic', u'court'] [u'secur', u'navi', u'contract'] [u'administr', u'sell', u'engin'] [u'preseason', u'get'] [u'age', u'care', u'group', u'happi', u'fund', u'agreement'] [u'agreement', u'pave', u'explor', u'permit'] [u'ambul', u'servic', u'investig'] [u'anger', u'grow', u'lose', u'trot', u'meet'] [u'anti', u'social', u'parent', u'ban', u'state', u'school'] [u'archaeologist', u'solv', u'mysteri', u'ancient'] [u'armi', u'base', u'cleaner', u'lose', u'job'] [u'arthur', u'give', u'australia', u'lead'] [u'asbesto', u'probabl', u'confin', u'defenc', u'plan', u'casa'] [u'athlet', u'world', u'titl', u'place', u'line', u'sydney'] [u'atsic', u'commission', u'stand', u'labor', u'candid'] [u'auckland', u'red', u'blue'] [u'aurora', u'trial', u'broadband', u'power', u'line'] [u'aussi', u'act', u'triumph', u'award'] [u'fischer', u'visit', u'baffl', u'chess', u'master', u'friend'] [u'beckham', u'look', u'career', u'madrid'] [u'bevan', u'centuri', u'help', u'tiger', u'chase', u'blue'] [u'disput', u'near'] [u'crowd', u'tip', u'visit', u'cycl', u'carniv'] [u'firm', u'face', u'restrict'] [u'project', u'need', u'boost', u'wide', u'busi'] [u'thing', u'expect', u'indigen', u'polici'] [u'lade', u'top', u'bush', u'list'] [u'board', u'warn', u'build', u'mine'] [u'bodi', u'burn', u'remain', u'mysteri'] [u'bowler', u'get', u'cabinet', u'appoint'] [u'brazil', u'clear', u'crop'] [u'british', u'patient', u'risk', u'exhaust', u'drug', u'option'] [u'broom', u'recognis', u'women'] [u'brumbi', u'edg', u'gallant', u'bull'] [u'build', u'approv', u'climb'] [u'bullet', u'face', u'sudden', u'death', u'king'] [u'bushrang', u'bull', u'head', u'draw'] [u'campaign', u'increas', u'awar', u'road', u'speed'] [u'china', u'budget', u'militari', u'upgrad'] [u'china', u'condemn', u'human', u'right', u'record'] [u'china', u'restat', u'opposit', u'taiwanes', u'independ'] [u'china', u'urg', u'calm', u'north', u'korea', u'end', u'missil', u'moratorium'] [u'chocol', u'fail', u'hide', u'cocain', u'custom'] [u'coal', u'give', u'green', u'light'] [u'confer', u'examin', u'minimis', u'alcohol', u'drug', u'abus'] [u'consecr', u'south', u'east', u'bishop', u'suspend'] [u'cooper', u'plead', u'guilti', u'charg'] [u'coral', u'miner', u'shed', u'light', u'climat', u'chang'] [u'corbi', u'lawyer', u'plead', u'australian', u'help'] [u'councillor', u'seek', u'quick', u'action', u'extend'] [u'council', u'seek', u'greater', u'polic', u'station', u'access'] [u'council', u'sign', u'shop', u'centr', u'approv'] [u'council', u'crack', u'water', u'meter', u'cheat'] [u'council', u'school', u'safeti', u'fight'] [u'crown', u'take', u'heat', u'casino'] [u'democrat', u'join', u'call', u'rave', u'drug', u'research'] [u'dengu', u'fever', u'carri', u'mossi', u'move', u'south'] [u'dental', u'industri', u'decay', u'govt', u'warn'] [u'dinosaur', u'return', u'earth', u'courtesi', u'japanes'] [u'dirti', u'water', u'safe', u'leav', u'stand'] [u'face', u'pressur', u'drop', u'rape'] [u'drought', u'bring', u'portugues', u'town', u'wateri'] [u'eagl', u'thump', u'roo', u'reach', u'decid'] [u'earli', u'bird', u'vaccin', u'test', u'success'] [u'rail', u'worker', u'head', u'work'] [u'elect', u'chang', u'mean', u'greater', u'lobster'] [u'emerg', u'servic', u'rais', u'fund', u'cancer', u'unit'] [u'endeavour', u'foundat', u'close', u'door'] [u'expert', u'give', u'clean', u'health', u'pulp'] [u'extra', u'teacher', u'help', u'increas', u'student'] [u'falconio', u'trial', u'push'] [u'fan', u'wide', u'region', u'clash'] [u'farmer', u'turn', u'salin', u'problem', u'profit'] [u'ferrari', u'shut', u'minardi', u'bull', u'fastest'] [u'flag', u'conveni', u'endang', u'rare', u'fish', u'govt', u'say'] [u'ford', u'look', u'forward', u'strong', u'region', u'focus'] [u'forestri', u'timber', u'manag', u'student', u'graduat'] [u'detaine', u'cheer', u'review', u'case'] [u'priest', u'stand', u'trial', u'offenc'] [u'french', u'polynesia', u'elect', u'independ', u'presid'] [u'funer', u'prompt', u'critic', u'polic'] [u'gibson', u'face', u'accus', u'stalker', u'court'] [u'gold', u'coast', u'power', u'boost'] [u'govern', u'urg', u'appoint', u'chang', u'minist'] [u'govt', u'accus', u'neglig', u'evid', u'concern'] [u'govt', u'expect', u'roll', u'work'] [u'govt', u'fund', u'seek', u'indigen', u'secur', u'patrol'] [u'govt', u'promis', u'coal', u'port', u'expans'] [u'govt', u'greenhous', u'appoint'] [u'govt', u'upset', u'fund'] [u'grand', u'prix', u'practic', u'begin', u'today'] [u'hamstr', u'shoaib', u'eye', u'comeback', u'final', u'india', u'test'] [u'hayden', u'face', u'fit', u'battl', u'ahead', u'test'] [u'health', u'chief', u'want', u'batlow', u'medic', u'centr', u'sooner'] [u'health', u'servic', u'understand', u'need', u'hospit'] [u'health', u'team', u'assess', u'aborigin', u'miner', u'asbesto'] [u'hewitt', u'give', u'australia', u'davi', u'lead'] [u'hewitt', u'wari', u'austrian', u'challeng'] [u'histor', u'deal', u'give', u'life', u'river', u'gum'] [u'histor', u'plane', u'arriv', u'home'] [u'hobbit', u'confirm', u'speci'] [u'holist', u'healthcar', u'piqu', u'princ'] [u'weather', u'help', u'locust', u'number'] [u'howard', u'take', u'person', u'corbi', u'trial'] [u'huge', u'paedophil', u'trial', u'open', u'western', u'franc'] [u'hundr', u'resid', u'oppos', u'rail', u'timet', u'chang'] [u'hunter', u'valley', u'home', u'lose', u'power', u'wild', u'weather'] [u'indonesia', u'call', u'respect', u'bashir', u'sentenc'] [u'inject', u'fund', u'need', u'slash', u'newborn'] [u'injur', u'norman', u'withdraw', u'dubai'] [u'inquiri', u'launch', u'employ', u'hurdl'] [u'inquiri', u'order', u'polic', u'comment', u'leav', u'phone'] [u'intellig', u'agenc', u'continu', u'secur', u'review'] [u'interst', u'polic', u'raid', u'suspect'] [u'jackson', u'accus', u'sister', u'tell', u'fear'] [u'go', u'insist', u'spur'] [u'jone', u'apolog', u'head', u'icac', u'contempt', u'charg'] [u'kelli', u'accus', u'whistleblow', u'smokescreen'] [u'killer', u'abus', u'circl', u'prison', u'court'] [u'kimberlit', u'boost', u'diamond', u'mine', u'hop'] [u'king', u'track', u'tripl', u'treat'] [u'london', u'mayor', u'label', u'sharon', u'crimin'] [u'stock', u'number', u'forc', u'meatwork', u'closur'] [u'malfunct', u'heater', u'blame', u'children', u'death'] [u'accus', u'euthanasia', u'style', u'kill', u'refus'] [u'jail', u'rap', u'step', u'daughter'] [u'man', u'use', u'test', u'inform', u'train', u'method'] [u'manuscript', u'offer', u'dead', u'puppi', u'blood', u'pimpl', u'cure'] [u'martha', u'stewart', u'leav', u'prison'] [u'mclaren', u'quickest', u'melbourn', u'practic', u'session'] [u'mclaren', u'trump', u'ferrari', u'melbourn', u'practic'] [u'meal', u'wheel', u'receiv', u'fund', u'boost'] [u'messag', u'bank', u'comment', u'embarrass', u'polic'] [u'minardi', u'forc', u'compli', u'regul'] [u'minardi', u'take', u'legal', u'action', u'race', u'melbourn'] [u'miner', u'sand', u'explor', u'begin', u'year'] [u'miner', u'stop', u'explor'] [u'miss', u'port', u'macquari', u'dead'] [u'monkey', u'bid', u'rais', u'fund', u'nation', u'park'] [u'motorcyclist', u'kill', u'power', u'pole', u'crash'] [u'mourner', u'farewel', u'macquari', u'field', u'teen'] [u'call', u'fester', u'liber', u'parti', u'racism'] [u'seek', u'polic', u'chang', u'combat', u'abus'] [u'hire', u'murder', u'target', u'court', u'tell'] [u'money', u'murder', u'court', u'hear'] [u'cabinet', u'member', u'eas', u'minist', u'workload'] [u'crew', u'bring', u'help', u'fight', u'bushfir'] [u'news', u'corp', u'lead', u'market', u'high'] [u'news', u'corp', u'rais'] [u'workcov', u'fin', u'minor', u'safeti', u'breach'] [u'zealand', u'chang', u'final', u'dayer'] [u'nation', u'remain', u'oppos', u'telstra', u'sale'] [u'black'] [u'nurs', u'meet', u'minist', u'staff', u'shortag'] [u'occi', u'surviv', u'knockout', u'heat', u'gold', u'coast'] [u'odriscol', u'tsunami', u'match'] [u'oversea', u'child', u'protect', u'staff', u'begin', u'work'] [u'pakistan', u'court', u'overturn', u'rape', u'convict'] [u'palac', u'unit', u'fan', u'wear', u'cantona', u'face'] [u'perilya', u'encourag', u'high', u'grade', u'zinc'] [u'polic', u'enter', u'macquari', u'field', u'forc'] [u'polic', u'examin', u'hard', u'drive', u'alleg'] [u'polic', u'hunt', u'video', u'store', u'knife', u'bandit'] [u'polic', u'make', u'arrest', u'daylesford', u'blaze'] [u'polic', u'shoot', u'driver', u'chase'] [u'polic', u'steer', u'clear', u'macquari', u'field', u'funer'] [u'polic', u'union', u'continu', u'criticis', u'coron'] [u'polic', u'welcom', u'station', u'revamp', u'decis'] [u'polic', u'wont', u'jail', u'offic', u'sierra'] [u'politician', u'urg', u'stop', u'abus', u'public', u'servant'] [u'pope', u'aid', u'read', u'bless'] [u'press', u'council', u'find', u'cold', u'comfort', u'green'] [u'princ', u'charl', u'din', u'howard', u'beazley'] [u'princ', u'charl', u'embark', u'sydney', u'tour'] [u'princess', u'mari', u'visit', u'lead', u'heart', u'research'] [u'murder', u'accus', u'refus', u'bail'] [u'rail', u'work', u'lengthen', u'ballarat', u'melbourn', u'train'] [u'rat', u'rise', u'tip', u'hurt', u'small', u'busi'] [u'redback', u'build', u'total', u'warrior'] [u'bull', u'klien', u'look', u'race'] [u'red', u'face', u'tough', u'assign', u'blue'] [u'region', u'resid', u'urg', u'crime', u'wari'] [u'rescu', u'plan', u'consid', u'launceston', u'museum'] [u'round', u'world', u'sailor', u'rescu', u'break'] [u'rudd', u'go', u'alleg', u'drug', u'smuggler'] [u'ruddock', u'consult', u'self', u'extinguish', u'cigarett'] [u'safeti', u'bodi', u'recommend', u'runway', u'light', u'upgrad'] [u'salvat', u'armi', u'record', u'loss'] [u'wall', u'restor'] [u'shire', u'forum', u'consid', u'merger', u'issu'] [u'shooter', u'sight', u'duck', u'hunt', u'season'] [u'skill', u'shortag', u'delay', u'gold', u'plan'] [u'sound', u'engin', u'charg', u'steal', u'charl'] [u'southern', u'locust', u'threat', u'eas'] [u'student', u'nationwid', u'clean'] [u'super', u'leagu', u'fear', u'london', u'bronco', u'cash', u'plight'] [u'suprem', u'court', u'grant', u'minardi', u'injunct'] [u'terror', u'threat', u'review', u'bashir'] [u'arrest', u'british', u'terrorist', u'law'] [u'thwait', u'warn', u'wimmera', u'malle', u'pipelin'] [u'tini', u'earli', u'hobbit', u'human', u'smart', u'skull', u'show'] [u'drop', u'win', u'medal', u'north', u'coast', u'coffe'] [u'tourism', u'group', u'lower', u'fraser', u'speed', u'limit'] [u'transport', u'plan', u'put', u'bridg'] [u'tribun', u'consid', u'north', u'east', u'log'] [u'govern', u'project', u'boost', u'tourism'] [u'uefa', u'start', u'disciplinari', u'action', u'chelsea'] [u'ukrain', u'politician', u'link', u'murder', u'dead'] [u'underdog', u'redback', u'rope'] [u'underworld', u'boss', u'condello', u'grant', u'bail'] [u'union', u'back', u'truck', u'safeti', u'move'] [u'union', u'close', u'teacher', u'code', u'conduct'] [u'urg', u'honour', u'cleari', u'build', u'name'] [u'warn', u'aid', u'inact'] [u'urban', u'nashvill', u'award'] [u'armi', u'report', u'recruit', u'shortfal'] [u'disturb', u'bashir', u'sentenc'] [u'silent', u'afghan', u'warlord', u'promot', u'armi'] [u'vanston', u'allow', u'fresh', u'appeal', u'baxter', u'detaine'] [u'wall', u'ralli', u'despit', u'price'] [u'water', u'bomber', u'prove', u'bushfir', u'fight', u'tool'] [u'water', u'corp', u'rebat', u'scheme', u'extend'] [u'weaken', u'cyclon', u'perci', u'skirt', u'rarotonga'] [u'weight', u'gain', u'link', u'breast', u'cancer'] [u'world', u'boost', u'eriksson', u'final'] [u'yoga', u'stretch', u'thailand'] [u'show', u'zebra', u'babi'] [u'kill', u'chines'] [u'accus', u'prais', u'jackson', u'video'] [u'armstrong', u'top', u'protour', u'starter'] [u'armi', u'medic', u'home', u'tsunami', u'mission'] [u'atsic', u'chairman', u'stand', u'asset', u'decis'] [u'auckland', u'kaino', u'red', u'tackl'] [u'aussi', u'barr', u'lead', u'thailand', u'open'] [u'aussi', u'sweep', u'black', u'cap'] [u'australia', u'clinch', u'davi'] [u'blue', u'muzzl', u'bulldog'] [u'blue', u'trail', u'tiger', u'rain', u'wreak', u'havoc', u'hobart'] [u'brisban', u'ambul', u'crew', u'attend', u'assault'] [u'bull', u'claim', u'inning', u'point'] [u'bush', u'nomin', u'chief'] [u'bushrang', u'break'] [u'carr', u'want', u'rioter', u'clean'] [u'chimp', u'tear', u'man', u'face'] [u'china', u'continu', u'unif', u'effort', u'taiwan'] [u'china', u'parliament', u'discuss', u'taiwan', u'social', u'harmoni'] [u'china', u'slow', u'econom', u'growth'] [u'founder', u'back', u'daughter', u'labor'] [u'confid', u'crisi', u'threaten', u'peac', u'deal', u'sinn', u'fein'] [u'court', u'allow', u'lawsuit', u'american', u'airlin'] [u'crow', u'lose', u'torney', u'season', u'open'] [u'crusad', u'crush', u'chief'] [u'dont', u'mention', u'tension', u'barca', u'boy'] [u'drogba', u'claim', u'titl', u'chelsea'] [u'boss', u'threaten', u'drop', u'australian'] [u'father', u'save', u'pair', u'riverboat', u'inferno'] [u'fisichella', u'grab', u'provision', u'pole'] [u'injur', u'smash'] [u'fossett', u'scrap', u'record', u'book'] [u'german', u'plastic', u'surgeon', u'odd', u'advertis'] [u'gibson', u'stalker', u'convict'] [u'gilchrist', u'pont', u'lift', u'australia', u'massiv', u'total'] [u'green', u'group', u'urg', u'log', u'moratorium'] [u'hacker', u'offer', u'busi', u'school', u'result'] [u'hawk', u'swoop', u'croc'] [u'hawk', u'meet', u'king', u'final'] [u'holder', u'spain', u'face', u'davi', u'exit'] [u'hostil', u'roman', u'recept', u'await', u'capello'] [u'hussey', u'move', u'test', u'reckon'] [u'provid', u'emerg', u'assist', u'lanka'] [u'impress', u'blue', u'advanc', u'final'] [u'impress', u'blue', u'tame', u'bulldog'] [u'industri', u'mourn', u'winemak', u'death'] [u'alli', u'sinn', u'fein', u'suspend', u'seven', u'stab'] [u'iran', u'warn', u'crisi', u'nuclear', u'issu'] [u'italian', u'journalist', u'hold', u'iraq', u'free', u'italian'] [u'jackson', u'accus', u'sister', u'admit'] [u'kalli', u'cap', u'record', u'fastest'] [u'land', u'right', u'campaign', u'readi', u'long', u'haul'] [u'lara', u'drop', u'sponsorship'] [u'lib', u'pick', u'seat', u'south', u'western'] [u'face', u'bushfir', u'charg'] [u'mari', u'grace', u'danc', u'floor', u'sydney', u'ball'] [u'urg', u'seek', u'health', u'help'] [u'mickelson', u'seiz', u'shoot', u'lead', u'scott', u'miss'] [u'minardi', u'drop', u'legal', u'action', u'modifi', u'car'] [u'minardi', u'drop', u'legal', u'challeng'] [u'modern', u'addict', u'damag'] [u'motorcycl', u'bomb', u'wound', u'baghdad'] [u'call', u'transpar', u'politician', u'claim'] [u'netbal', u'extend', u'streak', u'south', u'africa'] [u'book', u'tell', u'stori', u'histor', u'homestead'] [u'refineri', u'help', u'tackl', u'trade', u'deficit', u'govt'] [u'object', u'lodg', u'charless', u'marriag'] [u'injur', u'berala', u'shoot'] [u'norway', u'see', u'salmon', u'clampdown'] [u'nova', u'peri', u'sell', u'olymp', u'memorabilia'] [u'wed', u'gift', u'charl', u'camilla'] [u'nowil', u'win', u'fifth', u'titl'] [u'cigarett'] [u'inform', u'renter', u'right'] [u'welcom', u'princ', u'charl'] [u'pakistan', u'kill', u'qaeda', u'suspect', u'arrest'] [u'peri', u'sell', u'olymp', u'memorabilia'] [u'pilot', u'surviv', u'brush', u'death'] [u'polic', u'tunnel', u'bank', u'vault'] [u'polic', u'investig', u'rock', u'throw', u'incid'] [u'polic', u'urg', u'emot', u'diari'] [u'poor', u'weather', u'frustrat', u'pakistan'] [u'princ', u'charl', u'wind', u'nation', u'visit'] [u'princ', u'wale', u'tour', u'canberra'] [u'princess', u'mari', u'read', u'sick', u'kid'] [u'princess', u'mari', u'read', u'sick', u'kid'] [u'protea', u'close', u'victori'] [u'domin', u'cane', u'toad', u'trap', u'competit'] [u'govt', u'urg', u'engag', u'indigen'] [u'queensland', u'crime', u'decreas'] [u'raider', u'beat', u'tiger', u'final', u'trial', u'match'] [u'raikonnen', u'fastest', u'ahead', u'qualifi'] [u'rain', u'hit', u'domest', u'match'] [u'rain', u'leav', u'thousand', u'power'] [u'rain', u'stop', u'doubl', u'rubber', u'sydney'] [u'ranger', u'look', u'point', u'clear'] [u'redback', u'compil', u'massiv', u'lead', u'warrior'] [u'region', u'aviat', u'play', u'asbesto', u'risk'] [u'rescuer', u'lift', u'crew', u'blaze', u'tanker', u'norway'] [u'research', u'examin', u'rural', u'teach', u'problem'] [u'ross', u'defend', u'titl'] [u'salvat', u'armi', u'warn', u'fund', u'shortfal'] [u'schumach', u'fastest', u'practic'] [u'schumach', u'chanc', u'wash', u'away', u'rain'] [u'scientist', u'unearth', u'world', u'oldest', u'bipe', u'skeleton'] [u'seven', u'iraqi', u'soldier', u'kill', u'attack'] [u'ship', u'visit', u'evok', u'cold', u'memori'] [u'sorenstam', u'make', u'modest', u'start', u'lpga', u'season'] [u'south', u'africa', u'creat', u'test', u'histori', u'record'] [u'sparkl', u'jimenez', u'overhaul', u'dubai'] [u'stamp', u'duti', u'exempt', u'encourag', u'home', u'buyer'] [u'stormer', u'snatch', u'draw', u'highland'] [u'strip', u'zimbabw', u'test', u'status', u'skipper'] [u'sydney', u'gear', u'mardi', u'gras'] [u'syria', u'expect', u'pull', u'troop'] [u'team', u'combat', u'dengu', u'fever', u'torr', u'strait'] [u'arrest', u'macquari', u'field'] [u'demand', u'half', u'measur', u'syria'] [u'draw', u'jeer', u'abort', u'comment'] [u'investig', u'itali', u'shoot'] [u'troop', u'shoot', u'free', u'italian', u'hostag'] [u'vanston', u'condemn', u'atsic', u'asset', u'giveaway'] [u'hospitalis', u'crash'] [u'vote', u'open', u'council'] [u'wall', u'street', u'revisit', u'peak'] [u'warrior', u'rope', u'redback'] [u'webber', u'believ', u'good', u'luck'] [u'wed', u'eulo', u'everyon', u'invit'] [u'wool', u'fan', u'blow', u'bothwel', u'spin'] [u'zimbabw', u'humili', u'record', u'total'] [u'adam', u'condemn', u'mccartney', u'murder'] [u'dead', u'thai', u'boat', u'capsiz'] [u'aussi', u'netbal', u'humbl', u'south', u'africa'] [u'aussi', u'snowboard', u'finish', u'sixth'] [u'aussi', u'sweep', u'davi'] [u'barr', u'compani', u'thai', u'lead'] [u'batman', u'take', u'final'] [u'blue', u'final', u'hop', u'aliv'] [u'blue', u'lunch'] [u'bodi', u'slay', u'italian', u'agent', u'return', u'home'] [u'brack', u'confid', u'futur', u'melbourn'] [u'brack', u'confid', u'futur', u'melbourn'] [u'brogden', u'question', u'polic', u'riot', u'tactic'] [u'builder', u'warn', u'rate', u'rise', u'impact'] [u'bull', u'track', u'home', u'final'] [u'bull', u'bushrang', u'victori', u'target'] [u'caley', u'stun', u'ranger'] [u'standardis', u'test', u'medic', u'graduat'] [u'chariti', u'tough', u'go', u'tasmania'] [u'chelsea', u'comfort', u'zone', u'unit', u'stumbl'] [u'china', u'call', u'arm', u'embargo'] [u'clark', u'seek', u'detail', u'anzac', u'remain', u'claim'] [u'costello', u'attack', u'victoria'] [u'crowd', u'gather', u'farewel', u'world', u'yachtsman'] [u'cyclon', u'develop', u'coral'] [u'dafydd', u'polit', u'goliath', u'join', u'mardi', u'gras', u'parti'] [u'darwin', u'readi', u'migrant', u'worker', u'trial', u'green'] [u'davenport', u'outlast', u'jankov', u'dubai', u'titl'] [u'piero', u'penalti', u'keep', u'juve', u'milan'] [u'dog', u'cost', u'owner', u'pretti', u'penni'] [u'dont', u'write', u'say', u'schumach'] [u'rescu', u'boat', u'accid'] [u'etoo', u'extend', u'barca', u'lead'] [u'fan', u'turn', u'hail', u'mari'] [u'fifth', u'cyclon', u'rise', u'batter', u'south', u'pacif'] [u'fisichella', u'grab', u'pole', u'webber', u'second'] [u'fisichella', u'lead', u'aussi'] [u'fisichella', u'throw', u'spanner', u'ferrari', u'work'] [u'fisichella', u'win', u'australian'] [u'fitzi', u'defend', u'davi', u'grass'] [u'hospitalis', u'boat'] [u'england', u'captain', u'sheppard', u'die', u'cancer'] [u'giant', u'board', u'rule', u'gold', u'coast', u'wave'] [u'govt', u'need', u'tighter', u'grip', u'purs', u'string'] [u'govt', u'urg', u'protect', u'gallipoli', u'remain'] [u'distract', u'tactic', u'beazley', u'say'] [u'harradin', u'suffer', u'minor', u'stroke'] [u'himalayan', u'gloom', u'curtail', u'pakistan', u'tour', u'open'] [u'holder', u'spain', u'fume', u'davi', u'humili'] [u'howard', u'welcom', u'syria', u'troop', u'announc'] [u'hurrican', u'blow', u'cat', u'cours'] [u'iraq', u'set', u'assembl', u'meet', u'date'] [u'israel', u'accus', u'syria', u'involv', u'terror'] [u'italian', u'ralli', u'friend', u'incid', u'iraq'] [u'jimenez', u'hold', u'firm', u'gun', u'close'] [u'kuchma', u'return', u'kiev', u'amid', u'murder', u'scandal'] [u'labor', u'accus', u'govt', u'misus', u'public', u'money'] [u'latham', u'star', u'south', u'crush', u'north'] [u'plead', u'case', u'test', u'select'] [u'macqueen', u'call', u'friend'] [u'malaysian', u'visit', u'australia'] [u'bash', u'confront', u'youth'] [u'crush', u'jack', u'collaps'] [u'die', u'polic', u'pursuit'] [u'maradona', u'stapl', u'diet'] [u'mickelson', u'wood', u'miami', u'showdown'] [u'minardi', u'scoff', u'threat'] [u'mitchel', u'turn', u'rugbi'] [u'moldova', u'go', u'poll'] [u'say', u'sensat', u'claim', u'tarnish', u'parliament'] [u'music', u'pirat', u'compens'] [u'netbal', u'continu', u'streak', u'south', u'africa'] [u'scheme', u'parent', u'work'] [u'niger', u'cancel', u'emancip', u'ceremoni'] [u'plan', u'servic', u'salvo'] [u'korea', u'shrug', u'damn', u'right', u'report'] [u'korea', u'will', u'return', u'talk', u'china'] [u'perth', u'polic', u'break', u'unruli', u'parti'] [u'pilot', u'brush', u'suburban', u'crash'] [u'play', u'iraq', u'friend', u'incid'] [u'backbench', u'wont', u'silenc'] [u'polic', u'defend', u'fatal', u'high', u'speed', u'chase'] [u'polic', u'youth', u'clash', u'darl', u'harbour'] [u'polic', u'fee', u'threaten', u'countri', u'show'] [u'pope', u'thank', u'jew', u'muslim', u'prayer'] [u'pope', u'silent', u'bless'] [u'primus', u'boil'] [u'princess', u'mari', u'frederik', u'welcom', u'danish', u'church'] [u'protest', u'disrupt', u'start', u'duck', u'hunt', u'season'] [u'issu', u'warn', u'free', u'booz', u'promot'] [u'polic', u'detain', u'follow', u'stand'] [u'queen', u'okay', u'charl', u'camilla', u'stamp'] [u'record', u'tumbl', u'south', u'africa', u'slaughter', u'zimbabw'] [u'resign', u'seek', u'follow', u'eighth', u'prison', u'escap'] [u'judiciari', u'member', u'offer', u'paedophil'] [u'save', u'shark', u'govt', u'say'] [u'schoolgirl', u'surfer', u'win', u'snapper', u'rock', u'event'] [u'sharon', u'abba', u'meet', u'bush', u'april'] [u'stanhop', u'back', u'gold', u'creek', u'heritag', u'list'] [u'stomach', u'ulcer', u'plagu', u'indigen', u'australian'] [u'studi', u'highlight', u'offshor', u'transplant', u'risk'] [u'sudan', u'militia', u'attack', u'threaten', u'peac', u'agreement'] [u'syria', u'troop', u'lebanon'] [u'tanker', u'sale', u'spark', u'fieri', u'debat'] [u'tasmania', u'look', u'lure', u'builder', u'home'] [u'teacher', u'decid', u'industri', u'action'] [u'thousand', u'help', u'clean', u'australia'] [u'charg', u'fund', u'terror'] [u'hospitalis', u'road', u'smash'] [u'join', u'dengu', u'fever', u'oper'] [u'treasur', u'reignit'] [u'tsunami', u'victim', u'prove', u'neglig'] [u'envoy', u'see', u'histor', u'mistak', u'sudan'] [u'scientist', u'battl', u'challeng', u'darwin'] [u'volunt', u'australia', u'clean'] [u'waratah', u'donnelli', u'injur', u'mackay'] [u'waratah', u'sink', u'shark'] [u'warrior', u'chanc', u'unlik', u'victori'] [u'warrior', u'fall', u'short', u'massiv', u'target'] [u'webber', u'disappoint', u'fifth', u'place'] [u'webb', u'content', u'mexico', u'citi'] [u'wed', u'bliss', u'slump', u'singapor'] [u'windi', u'turmoil', u'lara', u'face'] [u'winemak', u'welcom', u'export', u'clearanc'] [u'woman', u'charg', u'man', u'murder'] [u'woman', u'kill', u'road', u'accid'] [u'wound', u'journalist', u'tell', u'ordeal'] [u'kill', u'attack', u'iraqi', u'secur', u'forc'] [u'illeg', u'worker', u'region', u'victoria'] [u'year', u'footbal', u'readi', u'retir'] [u'abc', u'digit', u'altern', u'hit', u'airwav'] [u'aborigin', u'group', u'beat', u'koori', u'court'] [u'adelaid', u'festiv', u'organis', u'laud', u'success'] [u'review', u'panel', u'charg'] [u'centr', u'head', u'dairi', u'research', u'project'] [u'airlin', u'say', u'launceston', u'plane', u'incid', u'minor'] [u'alcohol', u'fuel', u'violent', u'weekend', u'rockhampton'] [u'leagu', u'draw', u'unveil'] [u'alic', u'nurs', u'vote', u'industri', u'action'] [u'allawi', u'refus', u'join', u'iraqi', u'coalit'] [u'move', u'senat', u'probe', u'interrog', u'claim'] [u'annan', u'tri', u'speed', u'darfur', u'deliber'] [u'asbesto', u'compens', u'report', u'near', u'complet'] [u'asic', u'suffer', u'setback', u'onetel', u'case'] [u'attack', u'leav', u'iraqi', u'dead'] [u'australia', u'justifi', u'grass', u'court', u'say'] [u'backpack', u'assail', u'jail', u'month'] [u'banker', u'wag'] [u'barbaro', u'plead', u'guilti', u'road', u'rage', u'incid'] [u'beatti', u'hit'] [u'beatti', u'put', u'homeless', u'hous'] [u'beazley', u'attack', u'school', u'comment'] [u'better', u'time', u'forecast', u'film', u'industri'] [u'merg', u'frankfurt', u'london', u'exchang', u'fail'] [u'blue', u'final', u'hop', u'aliv'] [u'bolivian', u'presid', u'resign', u'amid', u'protest'] [u'bono', u'rule', u'world', u'bank', u'chief'] [u'break', u'hill', u'wine', u'honour', u'cathol', u'priest'] [u'bushrang', u'chang', u'blue', u'clash'] [u'busi', u'group', u'seek', u'chang', u'distribut'] [u'businessman', u'die', u'sprint', u'smash'] [u'busi', u'survey', u'indic', u'uncertainti'] [u'cabinet', u'discuss', u'spirit', u'iii', u'futur'] [u'earlier', u'marina', u'decis'] [u'crash', u'victim', u'award', u'compo'] [u'carr', u'dismiss', u'leadership', u'specul'] [u'celtic', u'slash', u'ranger', u'lead'] [u'charman', u'doubt', u'lion', u'season', u'open'] [u'chelsea', u'european', u'hop', u'line'] [u'claim', u'snowtown', u'victim', u'abus', u'state', u'care'] [u'clean', u'success', u'fewer', u'volunt'] [u'comalco', u'weigh', u'refineri', u'expans'] [u'communiti', u'cabinet', u'blatant', u'self', u'promot'] [u'concess', u'quell', u'indonesian', u'fuel', u'protest'] [u'confer', u'address', u'doctor', u'shortag'] [u'convent', u'wisdom', u'milk', u'question'] [u'cotton', u'grower', u'subsidi', u'rule'] [u'councillor', u'criticis', u'gobbledygook', u'document'] [u'council', u'ponder', u'museum', u'rescu', u'plan'] [u'council', u'princ', u'highway', u'revamp'] [u'court', u'tell', u'wife', u'underworld', u'figur', u'list'] [u'croc', u'look', u'team', u'develop', u'season', u'end'] [u'cub', u'fix', u'quiet'] [u'cyclon', u'gain', u'strength'] [u'cyclon', u'ingrid', u'gather', u'strength'] [u'cyclon', u'ingrid', u'hover', u'coast'] [u'demand', u'boost', u'townsvill', u'flight'] [u'driver', u'face', u'higher', u'petrol', u'price'] [u'eagl', u'focus', u'premiership'] [u'accept', u'avert', u'power', u'station', u'strike'] [u'elder', u'driver', u'time', u'limit'] [u'elder', u'woman', u'driver', u'time', u'limit'] [u'emerg', u'servic', u'headquart', u'offici', u'open'] [u'espanyol'] [u'everton', u'lose', u'home', u'west', u'brom', u'climb'] [u'mayor', u'await', u'prefer', u'distribut'] [u'miner', u'undergo', u'asbesto', u'test'] [u'fan', u'down', u'garcia', u'fourth'] [u'farmer', u'smelli', u'solut', u'wild', u'woe'] [u'farmer', u'urg', u'share', u'landcar', u'fund'] [u'farm', u'group', u'member', u'unhappi', u'cattl', u'duf'] [u'farm', u'group', u'want', u'action', u'nation', u'competit'] [u'father', u'bash', u'home', u'invas'] [u'foster', u'extend', u'southcorp'] [u'funer', u'begin', u'italian', u'kill', u'iraq'] [u'garlic', u'lace', u'crop', u'ward', u'insect'] [u'cutback', u'concern', u'welfar', u'group'] [u'gilchrist', u'answer', u'select', u'puzzl'] [u'governor', u'attend', u'medic', u'research', u'centr', u'open'] [u'govt', u'defend', u'nation', u'park', u'resourc'] [u'govt', u'offer', u'free', u'chickenpox', u'jab', u'babi'] [u'govt', u'plan', u'substanc', u'abus', u'test', u'polic'] [u'govt', u'reject', u'hous', u'plan', u'push', u'price'] [u'govt', u'see', u'benefit', u'farm', u'subsidi', u'rule'] [u'govt', u'urg', u'boost', u'ethanol', u'blend', u'fuel'] [u'grand', u'prix', u'boss', u'turn', u'stoddart'] [u'grand', u'prix'] [u'harradin', u'rest', u'suspect', u'stroke'] [u'harrison', u'quit', u'australian', u'rugbi'] [u'health', u'servic', u'see', u'cannabi', u'mental', u'health', u'link'] [u'liquid', u'chase', u'invest', u'firm'] [u'leader', u'deni', u'resign', u'report'] [u'hope', u'remain', u'meatwork', u'reopen'] [u'hospit', u'get', u'age', u'care', u'wing', u'fund'] [u'household', u'urg', u'wage', u'cane', u'toad'] [u'hous', u'industri', u'critic', u'home', u'buyer', u'plan'] [u'howard', u'reinforc', u'iraq', u'troop', u'decis'] [u'indigen', u'communiti', u'ghost', u'net', u'clean'] [u'inspector', u'investig', u'girl', u'electrocut'] [u'intern', u'agreement', u'offer', u'local', u'winemak'] [u'internet', u'defi', u'newspap', u'slump'] [u'italian', u'honour', u'agent', u'kill', u'baghdad'] [u'kasper', u'deserv', u'select', u'say'] [u'kingaroy', u'youth', u'support', u'coordin'] [u'knowl', u'return', u'bathurst', u'council', u'elect'] [u'lack', u'fund', u'blame', u'turn', u'away', u'homeless'] [u'lara', u'ax', u'sponsorship'] [u'larg', u'wave', u'capsiz', u'boat', u'hervey'] [u'late', u'adriano', u'penalti', u'give', u'inter', u'victori'] [u'late', u'eagl', u'earn', u'dubai', u'crown'] [u'leader', u'emerg', u'clarenc', u'valley', u'poll'] [u'leav', u'taiwan', u'militari', u'tie', u'china'] [u'lebanon', u'syria', u'open', u'talk', u'troop', u'pullout'] [u'beat', u'barr', u'thai', u'titl'] [u'lehmann', u'unsur', u'injuri'] [u'lekka', u'recov', u'minor', u'stroke'] [u'ljubic', u'victori', u'give', u'croatia', u'davi'] [u'lobbi', u'group', u'blame', u'prison', u'manag', u'escap'] [u'loutish', u'violenc', u'stop', u'polic', u'chief'] [u'luck', u'play', u'hand', u'boat', u'capsiz', u'commodor'] [u'mackay', u'injuri', u'sour', u'tah'] [u'court', u'aborigin', u'relic', u'breach'] [u'kill', u'rid', u'tray', u'rollov'] [u'market', u'hit', u'seventh', u'consecut', u'high'] [u'melbourn', u'driver', u'assault', u'taxi', u'steal'] [u'mental', u'health', u'inquiri', u'rais', u'reform', u'hop'] [u'mildura', u'council', u'angri', u'har', u'race', u'plan'] [u'minist', u'ask', u'gippsland', u'sawlog', u'assur'] [u'minist', u'hit', u'greenpeac', u'attitud'] [u'minist', u'help', u'seek', u'baxter', u'case'] [u'minist', u'converg', u'castlemain'] [u'fund', u'seek', u'bass', u'highway', u'duplic'] [u'fund', u'seek', u'address', u'homeless', u'plight'] [u'munch', u'paint', u'steal'] [u'mountain', u'rubbish', u'clear'] [u'protect', u'barramundi'] [u'propos', u'infrastructur', u'council'] [u'murder', u'accus', u'admit', u'lie', u'hell', u'angel'] [u'murder', u'accus', u'claim', u'lie', u'protect', u'friend'] [u'murdoch', u'plead', u'guilti', u'falconio', u'murder'] [u'close', u'chines', u'student', u'killer', u'polic'] [u'nevill', u'saha', u'rule', u'milan', u'clash'] [u'newcastl', u'number'] [u'look', u'rooster', u'readi', u'life', u'freddi'] [u'oncolog', u'staff', u'shorten', u'wait', u'list'] [u'decis', u'adelaid', u'futur', u'maher', u'head'] [u'north', u'urg', u'prepar', u'cyclon', u'ingrid'] [u'clean', u'number', u'disappoint'] [u'nurs', u'worri', u'hospit', u'plan'] [u'price', u'rise', u'concern', u'opec'] [u'olympian', u'court', u'murder', u'charg'] [u'opposit', u'call', u'releas', u'spirit', u'report'] [u'osborn', u'secur', u'council', u'spot'] [u'palestinian', u'forecast', u'tulkarem', u'withdraw'] [u'pharmacist', u'help', u'crack', u'drug', u'product'] [u'wagga', u'hear', u'move', u'sydney'] [u'pilot', u'kill', u'plane', u'crash'] [u'plan', u'waterbomb', u'forest', u'blaze'] [u'planner', u'unveil', u'bloomfield', u'hospit', u'plan'] [u'plan', u'continu', u'heathcot', u'communiti', u'bank'] [u'plan', u'curb', u'walk', u'access', u'reserv'] [u'polic', u'fear', u'kidnap', u'victim'] [u'polic', u'offic', u'return', u'tsunami', u'mission'] [u'polic', u'search', u'hotel', u'bandit'] [u'polic', u'seek', u'wit', u'fatal', u'motorcycl', u'crash'] [u'polic', u'union', u'disclosur', u'plan'] [u'polic', u'road', u'crash', u'victim'] [u'prefer', u'vital', u'warrumbungl', u'council', u'poll'] [u'program', u'support', u'elder', u'home'] [u'race', u'bore', u'fifth', u'good', u'webber'] [u'rail', u'industri', u'need', u'eliot', u'ness', u'union', u'say'] [u'ralli', u'urg', u'speedi', u'hospit', u'revamp'] [u'rate', u'rise', u'basi', u'econom', u'attack', u'howard'] [u'region', u'consid', u'tourism', u'group', u'renam'] [u'report', u'identifi', u'grow', u'health', u'divid'] [u'roller', u'coaster', u'safin', u'lead', u'russia'] [u'royal', u'aussi', u'fairytal', u'ambassador'] [u'rural', u'busi', u'confid', u'rise'] [u'safeti', u'bodi', u'urg', u'incent', u'aircraft', u'upgrad'] [u'polic', u'reopen', u'paedophil', u'probe'] [u'school', u'give', u'prefer', u'local', u'children'] [u'school', u'teen', u'surfer', u'gilmor'] [u'school', u'tighten', u'mobil', u'phone', u'rule'] [u'search', u'continu', u'lankan', u'tsunami', u'victim'] [u'search', u'fail', u'centuri', u'murder', u'victim'] [u'sexual', u'basi', u'sack', u'minist', u'say'] [u'shelter', u'fund', u'fall', u'short', u'meet', u'demand'] [u'shooter', u'sight', u'duck', u'season'] [u'skill', u'report', u'show', u'apprentic', u'number', u'declin'] [u'southern', u'phone', u'demand', u'go', u'nation'] [u'special', u'armour', u'protect', u'troop', u'carrier', u'iraq'] [u'state', u'fight', u'howard', u'critic'] [u'steel', u'plant', u'product', u'resum', u'forklift'] [u'steven', u'decid', u'club', u'famili'] [u'student', u'stand', u'trial', u'terror', u'charg'] [u'studi', u'consid', u'region', u'citi', u'educ'] [u'sydney', u'student', u'commit', u'trial', u'terror'] [u'syria', u'begin', u'troop', u'pull'] [u'taiwan', u'elect', u'shoot', u'suspect', u'dead'] [u'govt', u'urg', u'stop', u'south', u'sister', u'log'] [u'taxi', u'author', u'protect', u'screen', u'cab'] [u'teacher', u'unanim', u'reject', u'govt', u'wage', u'offer'] [u'teenag', u'take', u'time', u'celebr', u'surf'] [u'telstra', u'roll', u'mobil', u'broadband', u'network'] [u'thousand', u'expect', u'break', u'hill', u'race', u'meet'] [u'thousand', u'turn', u'lion', u'maul', u'essendon'] [u'timor', u'boundari', u'talk', u'resum'] [u'toyota', u'open', u'melbourn', u'research', u'centr'] [u'tropic', u'research', u'institut', u'welcom', u'home'] [u'truck', u'driver', u'sentenc', u'year', u'jail'] [u'underworld', u'wit', u'brand', u'gossip'] [u'unemploy', u'parent', u'urg', u'volunt'] [u'honour', u'cleari', u'shoalhaven', u'campus', u'name'] [u'union', u'foreshadow', u'nation', u'strife', u'chang'] [u'union', u'lobbi', u'better', u'wage', u'deal', u'public'] [u'union', u'step', u'action', u'util'] [u'relief', u'boss', u'warn', u'sudanes', u'rebel'] [u'sailor', u'darwin', u'rape', u'charg', u'drop'] [u'troop', u'suspect', u'fatal', u'shoot', u'bulgarian'] [u'vail', u'anticip', u'lengthi', u'china', u'talk'] [u'vail', u'seek', u'consider', u'telstra', u'break'] [u'vandal', u'baffl', u'hotel', u'license'] [u'vatican', u'expect', u'pope', u'home', u'easter'] [u'effort', u'reviv', u'gallipoli', u'hero'] [u'vietnames', u'nurs', u'contract', u'bird'] [u'volunt', u'help', u'clean', u'newcastl'] [u'polic', u'union', u'say', u'resourc', u'stretch'] [u'webb', u'stop', u'charg', u'sorenstam'] [u'winemak', u'push', u'chang', u'restrict', u'liquor', u'law'] [u'wit', u'seek', u'accid'] [u'woman', u'plead', u'guilti', u'ecstasi', u'charg'] [u'wood', u'number'] [u'work', u'mother', u'urg', u'join', u'survey'] [u'worst', u'time', u'trial', u'career', u'armstrong', u'admit'] [u'year', u'woman', u'fin', u'polic', u'pursuit'] [u'abba', u'say', u'isra', u'delay', u'threaten', u'peac', u'effort'] [u'bomb', u'develop', u'beth', u'die'] [u'aborigin', u'arnhem', u'land', u'decreas', u'cannabi'] [u'abort', u'debat', u'featur', u'women', u'activ'] [u'accus', u'tell', u'court', u'worker', u'kill'] [u'anzac', u'prepar', u'sail', u'gallipoli'] [u'aramac', u'get', u'short', u'term', u'doctor'] [u'asbesto', u'inform', u'session'] [u'asia', u'burn', u'midnight', u'aust', u'get', u'beauti', u'sleep'] [u'aust', u'promis', u'help', u'aid', u'fight'] [u'aust', u'push', u'intern', u'fish', u'chang'] [u'australian', u'tsunami', u'toll', u'rais'] [u'author', u'probe', u'train', u'derail'] [u'bank', u'mull', u'tighter', u'secur', u'bank'] [u'bashir', u'appeal', u'bali', u'conspiraci', u'verdict'] [u'bega', u'bypass', u'spotlight'] [u'bendigo', u'bank', u'lift', u'rat'] [u'trump', u'xstrata'] [u'worker', u'continu', u'strike'] [u'bigger', u'orang', u'crop', u'loom'] [u'bishop', u'empathis', u'priest', u'abus', u'victim'] [u'blogger', u'win', u'white', u'hous', u'pass'] [u'bottleneck', u'prompt', u'port', u'export', u'chang'] [u'brack', u'duck', u'shoot'] [u'brogden', u'seek', u'explan', u'macquari', u'field'] [u'brown', u'seek', u'north', u'east', u'log', u'delay'] [u'brumbi', u'rooki', u'keen', u'impress', u'stormer'] [u'bush', u'approv', u'emptiv', u'strike', u'agenc'] [u'bush', u'call', u'fine', u'tune', u'nuclear', u'treati', u'rule'] [u'businesswoman', u'year', u'see', u'chang', u'sprout'] [u'camera', u'plan', u'concern', u'driver'] [u'speedier', u'hume', u'highway', u'duplic'] [u'carr', u'pledg', u'cut', u'revenu', u'give'] [u'cattl', u'thousand', u'sale', u'roma'] [u'china', u'ask', u'australia', u'stay', u'taiwan', u'disput'] [u'china', u'urg', u'compass', u'year'] [u'common', u'allergi', u'link', u'asthma', u'relaps'] [u'confus', u'surround', u'iraq', u'mission'] [u'contract', u'negoti', u'harrison', u'stall'] [u'cool', u'idea', u'prove', u'difficult', u'older', u'home'] [u'coonan', u'reject', u'telstra', u'break', u'call'] [u'costello', u'budget', u'surplus'] [u'council', u'dump', u'museum', u'entri'] [u'councillor', u'elect', u'warrumbungl', u'shire'] [u'council', u'maintain', u'belmont', u'airport', u'stanc'] [u'council', u'consid', u'discount', u'fuel', u'plan'] [u'council', u'unhappi', u'nation', u'heritag', u'list'] [u'coupl', u'fail', u'home', u'buyer', u'scam', u'case', u'drop'] [u'court', u'hear', u'brincat', u'wasnt', u'alleg', u'underworld', u'gunman'] [u'danish', u'royal', u'canberran'] [u'death', u'toll', u'rise', u'dominican', u'prison'] [u'decis', u'expect', u'cannon', u'perth'] [u'defenc', u'recruit', u'focus', u'indigen', u'youth'] [u'deputi', u'mayor', u'say', u'qualiti', u'councillor', u'hard'] [u'deputi', u'opposit', u'leader', u'eject'] [u'diouf', u'reignit', u'bolton', u'euro'] [u'downer', u'agre', u'help', u'corbi', u'lawyer', u'businessman'] [u'dress', u'bring', u'tourist', u'cost', u'kyoto'] [u'drive', u'shoot', u'kill', u'briton', u'afghanistan'] [u'earthquak', u'swarm', u'offer', u'insight', u'earth', u'crust'] [u'elder', u'chines', u'woman', u'lose', u'visa', u'appeal'] [u'electr', u'corridor', u'plan', u'rais', u'resid', u'fear'] [u'emerg', u'servic', u'prepar', u'cyclon', u'ingrid'] [u'employ', u'urg', u'know', u'workplac', u'safeti', u'chang'] [u'engin', u'complet', u'tsunami', u'relief', u'mission'] [u'etsa', u'worker', u'stage', u'strike'] [u'mayor', u'consid', u'lower', u'hous', u'seat'] [u'face', u'stormi', u'futur', u'minardi', u'furor'] [u'famili', u'feel', u'impact', u'western'] [u'fan', u'take', u'snapper', u'rock', u'titl'] [u'fan', u'face', u'iron'] [u'farmer', u'move', u'retain', u'trundl', u'teacher'] [u'farmer', u'protest', u'road', u'rent'] [u'farmer', u'warn', u'generat', u'locust', u'threat'] [u'north', u'prepar', u'cyclon'] [u'crew', u'battl', u'histor', u'warship', u'blaze'] [u'firefight', u'probe', u'potteri', u'factori', u'blaze'] [u'focus', u'turn', u'plight', u'women'] [u'fourth', u'race', u'code', u'plan', u'face', u'fund', u'challeng'] [u'fund', u'seek', u'fight', u'fish', u'pest'] [u'futur', u'coalit', u'brink'] [u'search', u'continu', u'south', u'east'] [u'gender', u'make', u'women', u'vulner', u'violenc', u'woat'] [u'german', u'hamster', u'parti'] [u'gold', u'coast', u'battl', u'lung', u'cancer'] [u'gold', u'council', u'urg', u'industri', u'break'] [u'golden', u'period', u'predict', u'darwin', u'real', u'estat'] [u'govern', u'urg', u'boost', u'rural', u'communic'] [u'govt', u'act', u'asbesto', u'review', u'recommend'] [u'govt', u'call', u'spend', u'surplus'] [u'govt', u'hypocrit', u'labor'] [u'govt', u'urg', u'brake', u'coastal', u'develop'] [u'grandmoth', u'baffl', u'young', u'driver', u'stop'] [u'group', u'concern', u'heritag', u'site', u'develop'] [u'guard', u'shoot', u'point', u'blank', u'rang', u'wit', u'say'] [u'gunmen', u'kill', u'interior', u'ministri', u'offici', u'baghdad'] [u'haas', u'back', u'skill', u'migrant'] [u'har', u'group', u'fear', u'race', u'meet', u'lose'] [u'harradin', u'remain', u'intens', u'care'] [u'hayden', u'play', u'test'] [u'hayson', u'bourk', u'mann', u'confid', u'victori'] [u'hobart', u'readi', u'royal', u'recept'] [u'hodg', u'wing', u'bronco'] [u'hotel', u'owner', u'daze', u'devast'] [u'hous', u'renov', u'slump', u'wake', u'rise'] [u'illawarra', u'busi', u'mentor', u'offer'] [u'india', u'send', u'pakistan', u'test'] [u'india', u'control', u'test'] [u'indigen', u'group', u'leader', u'drop', u'racist'] [u'run', u'high', u'pat', u'race'] [u'itali', u'demand', u'indentifi', u'punish', u'soldier'] [u'jackson', u'drink', u'hotel', u'court', u'hear'] [u'jail', u'chop', u'chop', u'transport'] [u'jail', u'term', u'drive', u'friend'] [u'kewel', u'leverkusen', u'clash'] [u'kidman', u'star', u'biographi', u'project'] [u'kidnapp', u'copi', u'soap', u'opera', u'plot'] [u'king', u'focus', u'win', u'financi', u'problem'] [u'kosovo', u'indict', u'crime'] [u'labor', u'claim', u'victori', u'albani'] [u'societi', u'hail', u'asbesto', u'compo', u'review'] [u'lawyer', u'want', u'broom', u'skimpi'] [u'liber', u'kimberley', u'candid', u'conced'] [u'livestock', u'theft', u'spark', u'crackdown'] [u'lord', u'cricket', u'fall', u'short', u'centuri'] [u'wine', u'grape', u'price', u'label', u'opportun'] [u'mackay', u'desper', u'regain', u'half', u'spot'] [u'convict', u'ram', u'incid'] [u'jail', u'kill', u'partner'] [u'jail', u'year', u'drunken', u'assault'] [u'man', u'convict', u'uphold', u'babi', u'daughter', u'murder'] [u'market', u'hit', u'high', u'amid', u'takeov', u'battl'] [u'mayor', u'fear', u'secur', u'overhaul', u'kill', u'region'] [u'mayor', u'receiv', u'tamworth', u'honour'] [u'mayor', u'reject', u'koala', u'kill', u'grind', u'claim'] [u'mayor', u'seek', u'militari', u'road', u'upgrad'] [u'stand', u'cricket', u'player'] [u'million', u'need', u'gold', u'coast', u'hospit', u'opposit'] [u'miner', u'urg', u'drop', u'convict', u'challeng'] [u'minist', u'beat', u'aldoga', u'futur'] [u'mix', u'market', u'follow', u'friday', u'high'] [u'move', u'afoot', u'protect', u'groundwat', u'resourc'] [u'urg', u'restrict', u'power'] [u'murder', u'weapon', u'like', u'brincat', u'wit'] [u'newli', u'name', u'cycl', u'tour', u'extend'] [u'rout', u'sunraysia', u'tour'] [u'trade', u'hall', u'secretari', u'look', u'closer', u'govt'] [u'north', u'queensland', u'cyclon', u'alert'] [u'govt', u'tightlip', u'xstrata', u'subsidi'] [u'polic', u'hunt', u'kidnapp', u'hostag', u'free'] [u'protest', u'flash', u'issu', u'princ', u'charl'] [u'oberon', u'timber', u'industri', u'link', u'communiti'] [u'olympian', u'humbl', u'row', u'championship'] [u'opposit', u'seek', u'clariti', u'troop', u'iraq', u'role'] [u'pakistan', u'earli', u'troubl', u'india'] [u'partner', u'slap', u'earn', u'jail', u'stint'] [u'hear', u'dolphin'] [u'polic', u'concern', u'increas', u'motorcycl'] [u'polic', u'expect', u'biki', u'problem', u'festiv'] [u'polic', u'probe', u'crane', u'truck', u'death'] [u'pope', u'deleg', u'easter', u'duti', u'aid'] [u'preliminari', u'falconio', u'hear', u'adjourn'] [u'premier', u'hit', u'union', u'money', u'launder'] [u'prospector', u'unearth', u'golden', u'goos', u'like', u'nugget'] [u'public', u'urg', u'watch', u'fake', u'note'] [u'push', u'servic', u'help', u'deal', u'parent', u'child'] [u'hit', u'feder', u'govt', u'revenu'] [u'qsia', u'seek', u'perman', u'burdekin', u'fish', u'inspector'] [u'question', u'rais', u'role', u'soldier'] [u'rambo', u'schumach', u'heidfeld', u'crash'] [u'record', u'chase', u'murali', u'miss', u'tour'] [u'recoveri', u'beach', u'yacht', u'attempt'] [u'tape', u'see', u'rural', u'show', u'face', u'uncertain', u'futur'] [u'reinforc', u'iraq', u'role', u'unclear'] [u'replac', u'atsic', u'elect', u'advisori', u'bodi', u'report'] [u'report', u'paint', u'portrait', u'modern', u'woman'] [u'report', u'seek', u'nation', u'elect', u'bodi', u'replac'] [u'research', u'prescrib', u'hearti', u'dose', u'laughter'] [u'resid', u'fear', u'quarri', u'plan', u'impact'] [u'resid', u'want', u'road', u'safeti'] [u'rijkaard', u'stay', u'cool', u'mourinho', u'turn', u'uefa'] [u'river', u'plan', u'worri', u'council'] [u'road', u'permit', u'rental', u'plan', u'draw', u'farmer'] [u'rooney', u'ferguson', u'face', u'probe'] [u'plant', u'jump', u'grow', u'asian', u'demand'] [u'rous', u'welcom', u'pakistani', u'fan', u'india'] [u'royal', u'dazzl', u'thousand', u'memori'] [u'rspca', u'probe', u'kitten', u'tortur', u'claim'] [u'rugbi', u'leagu', u'shield', u'hand', u'nation', u'museum'] [u'safer', u'stem', u'cell', u'solut', u'scientist'] [u'hope', u'specialist', u'accept', u'deal'] [u'hospit', u'oper', u'theatr', u'idl', u'opposit'] [u'saleyard', u'propon', u'lodg', u'develop'] [u'premier', u'defi', u'call', u'stand', u'alleg'] [u'scholarship', u'boost', u'devil', u'tumour', u'research'] [u'secur', u'guard', u'kill', u'attempt', u'bank', u'robberi'] [u'secur', u'guard', u'murder', u'cold', u'blood'] [u'discrimin', u'earn', u'newspap', u'fine'] [u'slow', u'economi', u'eas', u'rat', u'pressur'] [u'southcorp', u'report', u'rebut', u'foster', u'offer'] [u'speaker', u'paedophil', u'claim', u'spark', u'death', u'threat'] [u'speed', u'policeman', u'case', u'refer'] [u'steven', u'choos', u'club', u'famili'] [u'suspend', u'sentenc', u'seek', u'knife', u'bandit'] [u'swim', u'world', u'mourn', u'death', u'coach'] [u'syria', u'begin', u'lebanon', u'pullback'] [u'tcci', u'join', u'push', u'review'] [u'teacher', u'stage', u'stop', u'work', u'meet'] [u'teenag', u'charg', u'macquari', u'field', u'riot'] [u'telstra', u'highlight', u'broadband', u'access', u'woe'] [u'close', u'asbesto', u'contamin', u'probe'] [u'turkey', u'move', u'allay', u'gallipoli', u'construct', u'fear'] [u'union', u'fear', u'wage', u'health', u'servic', u'threat'] [u'union', u'hope', u'resolut', u'today'] [u'union', u'challeng', u'meatwork', u'closur'] [u'issu', u'world', u'fish', u'stock', u'warn'] [u'abus', u'whistleblow', u'send', u'psychiatr', u'test'] [u'deal', u'undermin', u'china', u'talk', u'labor'] [u'deni', u'deliber', u'shoot', u'free', u'italian'] [u'video', u'show', u'troop', u'abus', u'iraqi'] [u'labor', u'miss', u'absolut', u'major', u'upper'] [u'wallabi', u'wale', u'world', u'collis', u'cours'] [u'resort', u'taiwan', u'china', u'say'] [u'warn', u'attack', u'ridicul', u'bracewel'] [u'warrior', u'push', u'outright', u'result'] [u'west', u'indian', u'talk', u'fail', u'compromis'] [u'wit', u'refus', u'testifi', u'gangland', u'murder', u'trial'] [u'woman', u'arrest', u'macquari', u'field', u'crash'] [u'woman', u'convict', u'fifth', u'drink', u'drive', u'offenc'] [u'woman', u'die', u'metr', u'shop', u'centr', u'fall'] [u'woman', u'face', u'court', u'partner', u'stab'] [u'women', u'program', u'fund', u'boost'] [u'women', u'urg', u'council', u'posit'] [u'world', u'wallabi', u'welsh', u'collis', u'cours'] [u'world', u'want', u'darfur', u'annan'] [u'abalon', u'diver', u'plead', u'guilti', u'fish', u'offenc'] [u'accc', u'okay', u'foster', u'southcorp'] [u'call', u'chang', u'forens', u'centr', u'manag'] [u'bidder', u'emerg'] [u'anti', u'smoke', u'high'] [u'aquacultur', u'dept', u'defend', u'kingfish', u'stanc'] [u'auction', u'bring', u'tsunami', u'fund'] [u'aussi', u'dollar', u'near', u'cent'] [u'aussi', u'netbal', u'secur', u'seri', u'south'] [u'babcock', u'brown', u'bailout', u'golden', u'circl'] [u'babi', u'die', u'drug', u'overdos', u'inquest', u'hear'] [u'barca', u'unit', u'show', u'european', u'exit'] [u'bereav', u'wife', u'want', u'gutless', u'gunmen', u'catch'] [u'boss', u'hint', u'rival'] [u'trump', u'xstrata', u'resourc', u'offer'] [u'birney', u'elect', u'unoppos', u'opposit'] [u'blackburn', u'sail', u'strait'] [u'bolivian', u'presid', u'stay'] [u'bomb', u'hit', u'baghdad', u'headless', u'bodi'] [u'botham', u'call', u'pom', u'beat', u'convict'] [u'british', u'bather', u'warn', u'shark', u'risk'] [u'bruton', u'play', u'despit', u'injuri'] [u'busi', u'group', u'confid', u'town', u'recov'] [u'businessman', u'get', u'suspend', u'sentenc', u'child'] [u'teach', u'graduat', u'rural', u'aust'] [u'canberra', u'promot', u'intern', u'busi'] [u'candid', u'posit', u'bathurst'] [u'cannabi', u'grower', u'ask', u'jail', u'time'] [u'cape', u'york', u'communiti', u'alert', u'come'] [u'carr', u'tell', u'opposit', u'polic', u'riot'] [u'cassava', u'ball', u'poison', u'central', u'philippin'] [u'centrelink', u'tell', u'improv', u'custom', u'servic'] [u'chappl', u'want', u'focus', u'chemic', u'poison'] [u'chief', u'concern', u'lewi', u'comment', u'polic'] [u'child', u'abus', u'inquiri', u'head', u'urg', u'inform', u'come'] [u'chip', u'forecast', u'send', u'stock', u'lower'] [u'church', u'mull', u'repay', u'medicar', u'cost', u'abus'] [u'church', u'urg', u'abus', u'victim', u'speak'] [u'coal', u'miner', u'return', u'work'] [u'comeback', u'hope', u'wilkinson'] [u'commonwealth', u'game', u'prompt', u'season', u'rethink'] [u'communiti', u'prayer', u'answer', u'religi', u'retreat'] [u'consum', u'confid', u'record', u'fall'] [u'coron', u'lambast', u'polic', u'probe', u'men', u'death'] [u'costello', u'outlin', u'tsunami', u'relief', u'figur'] [u'council', u'name', u'prefer', u'site', u'saleyard'] [u'council', u'say', u'discount', u'fuel', u'plan'] [u'coupl', u'drown', u'catch'] [u'croc', u'newley', u'snap', u'award'] [u'cyclon', u'ingrid', u'continu', u'threaten', u'coast'] [u'cyclon', u'ingrid', u'lash', u'north'] [u'build', u'nation', u'water', u'polici'] [u'danish', u'royal', u'charm', u'politician'] [u'demon', u'test', u'motlop'] [u'draft', u'catchment', u'report', u'vindic'] [u'drought', u'keep', u'livestock', u'transport', u'busi'] [u'drug', u'squad', u'detect', u'threaten', u'crimin', u'court'] [u'dump', u'bowler', u'tuffey', u'face', u'misconduct', u'charg'] [u'plead', u'guilti', u'possess', u'child', u'pornographi'] [u'eagl', u'readi', u'carlton', u'forward'] [u'earth', u'move', u'young', u'resid'] [u'elder', u'refus', u'bail', u'alleg', u'cannabi'] [u'electranet', u'say', u'transmiss', u'line', u'rout', u'final'] [u'take', u'tiger'] [u'environ', u'group', u'impress', u'possibl'] [u'urg', u'probe', u'foreshor', u'concern'] [u'etoo', u'accus', u'chelsea', u'steward', u'race', u'abus'] [u'expert', u'address', u'rural', u'doctor', u'shortag'] [u'falun', u'gong', u'bar', u'human', u'right', u'talk'] [u'fan', u'rid', u'tall', u'snapper', u'rock'] [u'farm', u'gate', u'milk', u'price', u'like', u'rise'] [u'father', u'jail', u'assault', u'teenag', u'birthday'] [u'fear', u'lifesav', u'contest', u'number'] [u'feder', u'fund', u'help', u'south', u'east', u'age', u'care'] [u'feedlott', u'agist', u'role'] [u'foolish', u'fraudster', u'jail'] [u'storm', u'player', u'macdougal', u'scotland', u'squad'] [u'gareth', u'evan', u'tip'] [u'gateway', u'dwarf', u'gigant', u'cruis', u'ship', u'grace'] [u'gladston', u'mayor', u'deni', u'citi', u'control'] [u'golden', u'circl', u'offer', u'million', u'bailout'] [u'govt', u'accus', u'labor', u'snobberi'] [u'govt', u'add', u'world', u'anti', u'siphon', u'list'] [u'govt', u'announc', u'child', u'care', u'fund', u'boost'] [u'govt', u'deni', u'spirit', u'sydney', u'can'] [u'govt', u'flag', u'telstra', u'split'] [u'govt', u'push', u'restart', u'nation', u'water', u'initi'] [u'govt', u'reject', u'coastal', u'zone', u'moratorium'] [u'govt', u'tri', u'break', u'trade', u'union', u'movement'] [u'govt', u'urg', u'support', u'hous', u'plan'] [u'green', u'group', u'say', u'marin', u'park', u'plan', u'better'] [u'group', u'say', u'minist', u'sell', u'hous', u'avoid'] [u'habib', u'accus', u'asio', u'hand', u'info'] [u'habib', u'say', u'tortur', u'inform'] [u'health', u'profession', u'infant', u'train', u'updat'] [u'predict', u'renov', u'activ', u'bounc'] [u'home', u'renov', u'activ', u'plummet'] [u'horsham', u'keen', u'radio', u'plan'] [u'hotel', u'group', u'defend', u'skimpi'] [u'hundr', u'attend', u'depress', u'forum'] [u'hussey', u'target', u'ash', u'test', u'role'] [u'illeg', u'rabbit', u'prove', u'cost', u'mackay'] [u'indian', u'seamer', u'inspir', u'pakistan', u'woolmer'] [u'indigen', u'leader', u'unsur', u'minist'] [u'indonesia', u'timor', u'atroc', u'commiss'] [u'ingrid', u'threat', u'despit', u'downgrad'] [u'condemn', u'shoot', u'offer'] [u'irishman', u'head', u'british', u'airway'] [u'itali', u'reject', u'version', u'iraq', u'shoot'] [u'jackson', u'urg', u'boy', u'secret'] [u'morrison', u'surfac', u'door', u'short', u'film'] [u'jindabyn', u'film', u'offer', u'local', u'econom', u'boost'] [u'kalgoorli', u'council', u'say', u'tsunami', u'donat'] [u'khazal', u'lawyer', u'reject', u'inform', u'claim'] [u'knight', u'sponsorship', u'talk', u'stall'] [u'kosovo', u'leader', u'fli', u'hagu', u'crime', u'trial'] [u'labor', u'call', u'clariti', u'iraqi', u'detaine'] [u'land', u'justic', u'settlement', u'replac', u'nativ', u'titl'] [u'leagu', u'tsunami'] [u'liber', u'decid', u'leader'] [u'lobbi', u'group', u'hop', u'save', u'defenc', u'land'] [u'long', u'run', u'tourism', u'slogan', u'revamp'] [u'macquari', u'field', u'accus', u'refus', u'bail'] [u'malle', u'farmer', u'receiv', u'drought', u'assist'] [u'accus', u'stalk', u'steal', u'underwear'] [u'charg', u'fatal', u'polic', u'pursuit'] [u'die', u'boat', u'overturn'] [u'manou', u'attribut', u'turnaround', u'experi'] [u'sentenc', u'possess', u'child', u'pornographi'] [u'mayor', u'seek', u'rural', u'fund', u'boost'] [u'media', u'firm', u'fear', u'impact', u'internet', u'libel', u'claim'] [u'say', u'addict', u'poki', u'target', u'poor'] [u'north', u'coast', u'brief'] [u'miner', u'export', u'decemb', u'quarter'] [u'miner', u'move', u'acceler', u'nickel', u'explor'] [u'minist', u'confid', u'meet', u'calder', u'duplic'] [u'minist', u'seek', u'stronger', u'illeg', u'fish', u'law'] [u'action', u'help', u'sudan', u'need', u'annan'] [u'recognit', u'seek', u'health', u'worker'] [u'mount', u'helen', u'erupt'] [u'face', u'deport'] [u'suffer', u'lobbi', u'govt', u'maintain', u'disabl'] [u'mundin', u'line', u'titl', u'shoot'] [u'murder', u'accus', u'threaten'] [u'chief', u'warn', u'loom', u'super', u'crisi'] [u'nation', u'claim', u'histor', u'victori', u'greenough'] [u'navi', u'ship', u'visit', u'recognis', u'albani', u'anzac', u'role'] [u'council', u'repres', u'balanc'] [u'dentist', u'help', u'riverland', u'wait', u'time'] [u'north', u'east', u'women', u'effort', u'recognis'] [u'sale', u'nimbin', u'museum'] [u'look', u'alcohol', u'turn'] [u'olymp', u'legend', u'boyl', u'savag', u'hewitt'] [u'onlin', u'compani', u'blame', u'bank', u'control', u'theft'] [u'oversea', u'doctor', u'short', u'term', u'rural'] [u'paedophil', u'claim', u'make', u'life', u'difficult'] [u'paedophil', u'supervis', u'detent', u'centr'] [u'palestinian', u'milit', u'readi', u'ceasefir'] [u'pari', u'seduc', u'olymp', u'inspector'] [u'partial', u'smoke'] [u'partington', u'ponder', u'contest', u'albani'] [u'pathet', u'zimbabw', u'heat', u'bangladesh'] [u'peruvian', u'surf', u'enthusiast', u'seek', u'exposur'] [u'peta', u'wool', u'boycott', u'talk', u'breakdown'] [u'pharaoh', u'murder', u'victim'] [u'polic', u'chase', u'crash', u'victim', u'farewel', u'sydney'] [u'polic', u'commission', u'beat', u'palm', u'post'] [u'polic', u'fear', u'miss', u'father'] [u'polic', u'hunt', u'drug', u'thief'] [u'polic', u'offic', u'stand', u'macquari', u'field'] [u'polic', u'offic', u'warn', u'contain', u'aggress'] [u'polic', u'seiz', u'drug', u'make', u'chemic'] [u'polic', u'charg', u'trucki'] [u'pont', u'back', u'lee', u'psycholog', u'edg'] [u'pool', u'clean', u'precautionari', u'measur'] [u'pope', u'appear', u'hospit', u'window'] [u'potato', u'grower', u'chipper', u'price'] [u'princ', u'win', u'canberran', u'heart'] [u'probe', u'continu', u'fatal', u'crash'] [u'public', u'hous', u'condition', u'check'] [u'public', u'get', u'messag', u'park', u'dump'] [u'look', u'speedi', u'dalrympl', u'rule'] [u'queensland', u'brace', u'weaker', u'ingrid'] [u'queensland', u'eye', u'cyclon', u'ingrid'] [u'radcliff', u'absenc', u'give', u'johnson', u'boost'] [u'ralli', u'seek', u'fresh', u'hickey', u'hear'] [u'real', u'estat', u'agent', u'front', u'court', u'decept'] [u'real', u'madrid', u'arsenal', u'present', u'case', u'defenc'] [u'report', u'highlight', u'patient', u'wait', u'list'] [u'resid', u'fear', u'highway', u'work', u'harm', u'water', u'qualiti'] [u'resid', u'consult', u'magnet', u'wast'] [u'rocki', u'airport', u'passeng', u'number', u'doubl'] [u'russia', u'claim', u'kill', u'separatist', u'leader'] [u'safeti', u'concern', u'race', u'jump'] [u'salvat', u'armi', u'move', u'away', u'age', u'care'] [u'search', u'reveal', u'good', u'prospect'] [u'secur', u'camera', u'watch', u'toowoomba', u'cab'] [u'servic', u'farewel', u'farm', u'pioneer'] [u'shellharbour', u'council', u'back', u'runway', u'revamp'] [u'shoebox', u'put', u'indigen', u'languag', u'preserv'] [u'shooter', u'target', u'feral', u'anim'] [u'stock', u'despit', u'resourc', u'movement'] [u'suicid', u'bomber', u'kill', u'baghdad'] [u'support', u'nation', u'water', u'initi', u'decis'] [u'govt', u'repay', u'thousand', u'medicar', u'cost'] [u'temporari', u'repriev', u'drug', u'detox', u'unit'] [u'tent', u'offer', u'whitsunday', u'homeless'] [u'terror', u'confer', u'open', u'madrid', u'anniversari'] [u'thai', u'tsunami', u'studi', u'public', u'releas'] [u'thaksin', u'formal', u'elect', u'thai'] [u'thoma', u'bayley', u'share', u'award'] [u'thousand', u'touch', u'coff'] [u'climber'] [u'thurston', u'secur', u'cowboy', u'eighth', u'spot'] [u'townsvill', u'monitor', u'cyclon', u'activ'] [u'traffic', u'chang', u'kiama', u'shellharbour', u'stretch'] [u'trainer', u'consult', u'ax', u'har'] [u'tree', u'replant', u'end', u'expans', u'plan', u'green'] [u'tremor', u'outsid', u'blast', u'time'] [u'union', u'group', u'fear', u'chang', u'increas', u'wealth'] [u'intellig', u'lack', u'iran', u'weapon', u'report'] [u'vanston', u'reject', u'nation', u'elect'] [u'polic', u'seek', u'shoot', u'getaway'] [u'vietnam', u'detect', u'bird', u'patient'] [u'visit', u'parliament', u'danish', u'royal', u'coupl', u'agenda'] [u'walter', u'employe', u'lobbi', u'opposit'] [u'water', u'author', u'lay', u'chook', u'farm', u'concern'] [u'westbus', u'blue', u'ribbon', u'employe', u'pay'] [u'william', u'admit', u'kill', u'alleg', u'underworld', u'rival'] [u'aint', u'see', u'warn', u'aussi', u'netbal'] [u'zondeki', u'return', u'south', u'africa'] [u'hit', u'airwav'] [u'accus', u'softwar', u'pirat', u'face', u'extradit'] [u'aceh', u'need', u'help', u'indonesian', u'deadlin'] [u'agreement', u'benefit', u'indigen', u'mental', u'health'] [u'agenc', u'polit', u'campaign', u'sudan'] [u'altern', u'medicin', u'rule', u'tighten'] [u'appeal', u'anti', u'road', u'lobbi'] [u'armi', u'admit', u'barrack', u'secur'] [u'asbesto', u'scare', u'link', u'chile', u'plane'] [u'asio', u'want', u'habib'] [u'auditor', u'general', u'appoint'] [u'aust', u'policeman', u'bail', u'sierra', u'leon'] [u'aust', u'promis', u'neighbour', u'econom', u'help'] [u'australian', u'die', u'solomon', u'patrol', u'accid'] [u'baghdad', u'polic', u'chief', u'shoot', u'dead'] [u'ballarat', u'migrant', u'fund'] [u'bevan', u'set', u'domest', u'record'] [u'busi', u'requir', u'greenhous'] [u'birney', u'react', u'neglect', u'elector', u'fear'] [u'black', u'cap', u'pull', u'superman', u'effort'] [u'black', u'cap', u'honour'] [u'bradford', u'hudson', u'cop', u'year', u'stanozolol'] [u'bulgarian', u'soldier', u'death', u'blame', u'communic'] [u'burn', u'off', u'plan', u'south', u'coast'] [u'bush', u'urg', u'product', u'wildlif', u'reserv'] [u'cabbi', u'urg', u'temporari', u'rank'] [u'communiti', u'group', u'clean'] [u'independ', u'forens', u'centr'] [u'crash', u'victim', u'succumb', u'injuri'] [u'carlisl', u'stone', u'curs'] [u'cell', u'transplant', u'cure', u'diabet'] [u'chief', u'minist', u'seek', u'public', u'servic', u'clout'] [u'china', u'cover', u'sector'] [u'china', u'allow', u'citrus', u'import'] [u'chines', u'blast', u'kill'] [u'christian', u'order', u'discuss', u'resid', u'vanston'] [u'king'] [u'communiti', u'advoc', u'resign'] [u'cost', u'cut', u'measur', u'music', u'tasmanian'] [u'costello', u'dismiss', u'high', u'tax', u'claim'] [u'council', u'address', u'harbour', u'sewag', u'woe'] [u'council', u'get', u'road', u'pledg'] [u'council', u'hit', u'airwav', u'promot', u'break', u'hill'] [u'councillor', u'state', u'case', u'mayor', u'spot'] [u'countri', u'polic', u'review'] [u'court', u'hear', u'teen', u'admit', u'murder'] [u'increas', u'prompt', u'pension', u'rise'] [u'cyclon', u'close', u'north'] [u'cyclon', u'ingrid', u'blow', u'west'] [u'cyclon', u'ingrid', u'hit', u'coast'] [u'danish', u'royal', u'charm', u'politician'] [u'danish', u'royal', u'launch', u'video', u'link', u'project'] [u'vacat', u'throne'] [u'strike', u'pari', u'olymp'] [u'dept', u'monitor', u'eaglehawk', u'gastro', u'outbreak'] [u'disabl', u'servic', u'employe', u'strike'] [u'diseas', u'expert', u'help', u'control', u'yellow', u'fever'] [u'distress', u'signal', u'mysteri'] [u'dodgi', u'put', u'pay', u'unit'] [u'doubt', u'rais', u'atsic', u'replac'] [u'edenhop', u'polic', u'temporari', u'dig'] [u'evan', u'shire', u'councillor', u'join', u'bathurst', u'council'] [u'explos', u'near', u'australian', u'mission', u'malaysia'] [u'explos', u'near', u'australian', u'mission', u'threat'] [u'fall', u'tree', u'branch', u'prompt', u'kindi', u'safeti', u'audit'] [u'famili', u'relief', u'darl', u'down', u'coupl'] [u'farmer', u'detail', u'depress', u'impact'] [u'farmer', u'govt', u'crown', u'land', u'fee'] [u'fear', u'trap', u'south', u'african', u'miner'] [u'feder', u'govt', u'undecid', u'orchestra', u'futur'] [u'fisichella', u'dream', u'come', u'true', u'jordan'] [u'footi', u'club', u'council', u'stoush', u'souness', u'park'] [u'seek', u'uniti', u'lebanon', u'govern'] [u'fund', u'chang', u'spark', u'crisi', u'hous', u'concern'] [u'gallop', u'like', u'push', u'ahead', u'elector', u'reform'] [u'game', u'organis', u'dismiss', u'ticket', u'fear'] [u'garcia', u'doubl', u'liverpool', u'savour', u'bayer'] [u'garret', u'ban', u'contact', u'partner'] [u'blast', u'trap', u'miner', u'china'] [u'firm', u'look', u'bipartisan', u'stanc', u'power', u'reform'] [u'georg', u'sing', u'prais', u'mobil', u'phone', u'recycl'] [u'crash', u'suspect', u'fair', u'trial', u'polic', u'chief'] [u'gold', u'coast', u'plan', u'threaten', u'brisban', u'cruis', u'ship'] [u'gold', u'coast', u'roar', u'premiership', u'clash'] [u'golden', u'circl', u'rescu', u'plan', u'bring', u'relief'] [u'govt', u'quiz', u'gaff'] [u'govt', u'recognis', u'need', u'revamp', u'dental', u'clinic'] [u'govt', u'urg', u'boost', u'emerg', u'shelter', u'fund'] [u'govt', u'urg', u'address', u'rural', u'doctor'] [u'govt', u'urg', u'extend', u'life', u'atsic', u'council'] [u'govt', u'urg', u'focus', u'gambl', u'impact'] [u'grant', u'boost', u'public', u'transport', u'facil'] [u'griev', u'filipino', u'buri', u'poison', u'children'] [u'group', u'pleas', u'asbesto', u'forum', u'turnout'] [u'group', u'protest', u'phone', u'tower', u'prolifer'] [u'harradin', u'health', u'improv'] [u'hawk', u'confid', u'beat', u'king', u'sydney'] [u'health', u'servic', u'work', u'fewer', u'accid'] [u'henin', u'hardenn', u'readi', u'comeback', u'month'] [u'hill', u'extend', u'team', u'iraq', u'deploy'] [u'leader', u'quit', u'deputi'] [u'howard', u'defend', u'anzac', u'cove', u'list', u'delay'] [u'howard', u'reject', u'high', u'claim'] [u'fat', u'doubl', u'tempt', u'radcliff'] [u'return', u'expat', u'refus', u'medicar', u'card'] [u'impress', u'chelsea', u'fulfil', u'abramovich'] [u'indigen', u'hous', u'finish', u'wilcannia'] [u'ingrid', u'move', u'water'] [u'ingrid', u'weaken', u'path', u'cape'] [u'interst', u'citrus', u'market', u'reopen'] [u'iraq', u'polic', u'bodi', u'minist', u'attack'] [u'italian', u'urg', u'shoot'] [u'jackson', u'accus', u'give', u'evid'] [u'jobless', u'rate', u'steadi'] [u'kasper', u'claim', u'wicket'] [u'kelli', u'charg', u'manslaught'] [u'kelli', u'court', u'polic', u'chase', u'death'] [u'kelli', u'remand', u'custodi'] [u'kenya', u'dinosaur', u'yield', u'fossil', u'wealth'] [u'king', u'rule', u'fit'] [u'kosovo', u'leader', u'arriv', u'netherland', u'trial'] [u'labor', u'back', u'away', u'habib', u'claim', u'probe'] [u'lake', u'fountain', u'help', u'avoid', u'fish', u'kill'] [u'match', u'decid', u'class', u'finalist'] [u'law', u'hadley', u'face', u'icac', u'contempt', u'charg'] [u'kaspa', u'line', u'ball'] [u'money', u'pipelin', u'water', u'sewag', u'work'] [u'levi', u'help', u'fund', u'citi', u'safeti', u'accord'] [u'charg', u'cannabi', u'haul'] [u'injur', u'fast', u'food', u'brawl'] [u'jail', u'leav', u'wife', u'bodi', u'children'] [u'jail', u'barg', u'ground'] [u'marina', u'plan', u'spark', u'groundwat', u'fear'] [u'market', u'follow', u'stock', u'lower'] [u'mari', u'arriv', u'home'] [u'mayor', u'shed', u'light', u'citi', u'save'] [u'mcewen', u'itali'] [u'mckenzi', u'put', u'faith', u'reshuffl', u'line'] [u'meet', u'focus', u'nimbin', u'polic'] [u'melbourn', u'student', u'disappear', u'worri', u'famili'] [u'merg', u'media', u'regul', u'need', u'power', u'inquiri'] [u'meteorit', u'crater', u'mysteri', u'solv'] [u'migrant', u'urg', u'choos', u'north', u'south', u'east'] [u'miner', u'play', u'coal', u'export', u'concern'] [u'euro', u'heartbreak', u'gunner'] [u'murder', u'accus', u'save', u'victim', u'court', u'tell'] [u'mutant', u'sheep', u'solv', u'mules', u'problem'] [u'parti'] [u'ningaloo', u'reef', u'help', u'boost', u'whale', u'shark', u'research'] [u'nitschk', u'say', u'target', u'law'] [u'northern', u'adelaid', u'resid', u'relief'] [u'north', u'rid', u'cyclon', u'ingrid'] [u'woman', u'travel', u'sydney'] [u'oecd', u'report', u'critic', u'govt'] [u'oecd', u'report', u'highlight', u'grow'] [u'offic', u'distanc', u'decis', u'drop'] [u'offici', u'clarenc', u'valley', u'elect', u'result', u'loom'] [u'offset', u'alpin', u'probe', u'ahead'] [u'price', u'hit', u'high'] [u'worri', u'stock'] [u'olymp', u'rower', u'impress', u'nation'] [u'opposit', u'jump', u'intern', u'report'] [u'pagan', u'posit', u'kouta', u'fit'] [u'timer', u'clark', u'make', u'breakthrough'] [u'probe', u'hear', u'violent', u'arrest', u'frighten', u'policeman'] [u'pixi', u'skase', u'attempt', u'regain', u'citizenship'] [u'warn', u'econom', u'news', u'ahead'] [u'polic', u'inquir', u'sexual', u'assault', u'claim'] [u'polic', u'record', u'drug', u'haul'] [u'polic', u'investig', u'bloodi'] [u'polic', u'investig', u'suspect', u'steal', u'good'] [u'polic', u'probe', u'cobb', u'highway', u'death'] [u'polic', u'stage', u'road', u'safeti', u'blitz'] [u'polic', u'threaten', u'industri', u'unrest', u'insur'] [u'pope', u'hospit', u'holi', u'week'] [u'power', u'author', u'plan', u'price', u'rise'] [u'power', u'station', u'worker', u'forc', u'redund'] [u'power', u'worker', u'order', u'abandon', u'strike', u'plan'] [u'prepay', u'electr', u'offer'] [u'princess', u'mari', u'thrill', u'tasmanian', u'wisher'] [u'prosecutor', u'challeng', u'lenienc', u'bashir', u'sentenc'] [u'beat', u'monaco', u'book', u'quarter', u'final', u'spot'] [u'qanta', u'ozjet', u'compet', u'canberra', u'rout'] [u'question', u'rais', u'extent', u'asbesto', u'test'] [u'rain', u'help', u'lift', u'ban'] [u'rain', u'leav', u'perth', u'home', u'power'] [u'region', u'motorist', u'face', u'drug', u'test'] [u'rescu', u'helicopt', u'tender', u'announc'] [u'rescuer', u'free', u'south', u'african', u'miner'] [u'retail', u'battl', u'easter', u'sunday', u'trade'] [u'ronaldo', u'real', u'juve', u'bayern', u'liverpool', u'march'] [u'ryan', u'hope', u'sonni', u'stick', u'dog'] [u'saint', u'riewoldt', u'friend'] [u'salvo', u'relinquish', u'age', u'care', u'facil'] [u'usher', u'law'] [u'scheme', u'address', u'kimberley', u'doctor', u'shortag'] [u'scheme', u'help', u'stop', u'predat', u'join'] [u'schoolgirl', u'killer', u'face', u'assault', u'charg'] [u'senat', u'elect', u'seek', u'telstra', u'region', u'review'] [u'servic', u'station', u'bandit', u'get', u'suspend', u'sentenc'] [u'seven', u'mile', u'nation', u'park', u'facelift'] [u'smoke', u'mother', u'risk', u'babi', u'gene'] [u'southern', u'hemispher', u'helium', u'plant'] [u'speaker', u'safe', u'despit', u'paedophilia', u'alleg'] [u'support', u'polit', u'aspir', u'kilgariff', u'remain'] [u'support', u'group', u'reduc', u'bulli', u'studi'] [u'talk', u'rais', u'hop', u'chines'] [u'tasmania', u'welcom', u'princess', u'mari', u'home'] [u'terror', u'studi', u'inform', u'secur'] [u'thorp', u'absenc', u'negat', u'hackett'] [u'tibet', u'will', u'remain', u'china', u'dalai', u'lama'] [u'tornado', u'wreak', u'havoc', u'town'] [u'tourist', u'die', u'goulburn', u'valley', u'road', u'smash'] [u'traineeship', u'scheme', u'look', u'lift', u'skill', u'worker'] [u'tribut', u'flow', u'editor'] [u'tuckey', u'reject', u'blame', u'albani', u'loss'] [u'turkey', u'angri', u'anzac', u'destruct', u'claim'] [u'shoot', u'dead', u'iraq'] [u'surgeon', u'rockhampton'] [u'union', u'angri', u'govt', u'overrid', u'workplac'] [u'union', u'warn', u'howard', u'polici', u'worsen', u'skill'] [u'underestim', u'malaria', u'case'] [u'imag', u'problem', u'hinder', u'peac'] [u'footbal', u'recognis', u'latest', u'hero'] [u'waratah', u'stomach'] [u'weaker', u'ingrid', u'cut', u'path', u'west'] [u'western', u'cape', u'york', u'readi', u'cyclon'] [u'william', u'tri', u'gangland', u'murder'] [u'wind', u'farm', u'plan', u'creat', u'rift'] [u'windsor', u'vendetta', u'deputi'] [u'winmar', u'want', u'black', u'pride', u'jumper'] [u'woman', u'jail', u'australia', u'post', u'fraud'] [u'work', u'begin', u'mental', u'health', u'facil'] [u'work', u'parti', u'tee', u'plan', u'uniqu', u'golf'] [u'young', u'farmer', u'meet', u'dubbo'] [u'zalayeta', u'send', u'real', u'crash'] [u'fin', u'hand', u'gretley', u'disast'] [u'abductor', u'return', u'tweed', u'head', u'girl'] [u'agent', u'orang', u'lawsuit', u'dismiss'] [u'alleg', u'abduct', u'victim', u'reunit', u'famili'] [u'alleg', u'drug', u'boss', u'clear', u'sojourn'] [u'anim', u'welfar', u'group', u'target', u'south', u'east', u'duck'] [u'anzac', u'leav', u'gallipoli', u'peac', u'voyag'] [u'armi', u'investig', u'solomon', u'death'] [u'arsonist', u'hinder', u'fuel', u'reduct', u'effort'] [u'aust', u'look', u'tourism', u'tip'] [u'australian', u'doubt'] [u'australian', u'grand', u'prix', u'doubt'] [u'australian', u'rescu', u'snow', u'cave'] [u'bald', u'rock', u'bushwalk'] [u'beazley', u'launch', u'werriwa', u'elect', u'campaign'] [u'bell', u'ring', u'madrid', u'commemor', u'bomb'] [u'blue', u'control'] [u'bodi', u'prison', u'exhum'] [u'brack', u'welcom', u'swedish', u'princess'] [u'bradley', u'keho', u'doubl', u'scull'] [u'break', u'hill', u'get', u'health', u'institut'] [u'bronco', u'look', u'reveng', u'derbi'] [u'brumbi'] [u'build', u'evacu', u'electr'] [u'bulldog', u'team', u'beat', u'ryan'] [u'bull', u'remov', u'hussey', u'gabba'] [u'businessman', u'expat', u'cancer', u'patient', u'bill'] [u'cahil', u'return', u'socceroo'] [u'controversi', u'polic', u'databas'] [u'fund', u'shift', u'calder', u'highway'] [u'caravan', u'park', u'resid', u'reloc'] [u'carr', u'announc', u'mental', u'health', u'care', u'boost'] [u'carr', u'back', u'critic', u'defenc', u'barrist'] [u'cautious', u'investor', u'mix', u'result'] [u'central', u'face', u'water', u'price', u'rise'] [u'chariti', u'call', u'urgent', u'action', u'homeless'] [u'chess', u'master', u'kasparov', u'retir'] [u'citrus', u'grower', u'china', u'export', u'boom'] [u'claim', u'harbour', u'develop', u'hold', u'eden'] [u'club', u'urg', u'know', u'anti', u'smoke', u'law'] [u'communiti', u'look', u'health', u'issu', u'studi'] [u'confer', u'aim', u'standard', u'approach', u'infant'] [u'coonambl', u'seek', u'hospit'] [u'coron', u'blame', u'western', u'power', u'death'] [u'council', u'face', u'opposit', u'sewer', u'plan'] [u'council', u'move', u'paparo', u'case'] [u'council', u'outrag', u'govt', u'triathlon', u'support'] [u'council', u'talk', u'pacif', u'highway', u'fund'] [u'council', u'freez', u'airport', u'land', u'fee'] [u'council', u'review', u'terang', u'manag'] [u'countri', u'hospit', u'better', u'region'] [u'court', u'order', u'xstrata', u'cost'] [u'cowboy', u'excit', u'season', u'prospect'] [u'custom', u'find', u'fishi', u'luggag'] [u'cyclon', u'hover', u'coast'] [u'cyclon', u'willi', u'unlik', u'landfal'] [u'dane', u'bring', u'royal', u'tour'] [u'danger', u'drive', u'cost', u'father', u'licenc'] [u'date', u'start', u'work', u'fuel', u'plant'] [u'dead', u'tokyo', u'bomb', u'raid', u'rememb'] [u'debt', u'freez', u'increas', u'burden', u'indonesia'] [u'debt', u'freez', u'offer', u'tsunami', u'nation'] [u'deitz', u'centuri', u'put', u'redback', u'control'] [u'dentist', u'tsunami', u'experi', u'prove', u'emot'] [u'canio', u'fin', u'fascist', u'style', u'salut'] [u'diplomat', u'join', u'search', u'miss', u'aussi'] [u'damag', u'copyright', u'breach'] [u'dog', u'dragon', u'season', u'open'] [u'downer', u'urg', u'malaysian', u'free', u'trade', u'agreement'] [u'drop', u'charg', u'strangl', u'murder'] [u'driver', u'urg', u'care', u'long', u'weekend'] [u'dual', u'citizen', u'jail', u'child', u'porn'] [u'ell', u'carri', u'baton', u'game'] [u'upstag', u'qatar'] [u'emerald', u'sprinkler', u'extend'] [u'slam', u'turkey', u'women', u'violenc'] [u'khmer', u'roug', u'leader', u'face', u'charg'] [u'expat', u'cancer', u'suffer', u'trap', u'bureaucraci'] [u'factori', u'forc', u'road', u'closur'] [u'farm', u'group', u'vow', u'fight', u'vote', u'valu'] [u'fesa', u'agreement', u'face', u'opposit'] [u'firefight', u'control', u'renmark', u'blaze'] [u'firm', u'seek', u'region', u'partnership', u'explain'] [u'test', u'even', u'pois'] [u'fli', u'chemist', u'urg', u'travel', u'subsidi'] [u'teacher', u'jail', u'child', u'molest'] [u'steam', u'ahead', u'destroy'] [u'funer', u'favourit', u'reveal', u'nation', u'quirk'] [u'furnitur', u'factori', u'spark', u'evacu'] [u'shortag', u'forc', u'worker', u'stand'] [u'german', u'gather', u'high', u'tech', u'fair'] [u'gove', u'peninsula', u'prepar', u'ingrid'] [u'govern', u'pledg', u'game', u'athlet'] [u'govt', u'scheme', u'help', u'basin', u'recoveri'] [u'govt', u'stretch', u'hire', u'buyback', u'offer'] [u'govt', u'tell', u'come', u'clean', u'hospit', u'letter'] [u'govt', u'urg', u'boost', u'protect', u'polic'] [u'govt', u'urg', u'scrap', u'nation', u'indigen', u'bodi'] [u'govt', u'wont', u'reveal', u'fund', u'drug', u'detox', u'unit'] [u'green', u'want', u'rail', u'freight', u'audit', u'answer'] [u'gympi', u'get', u'govt', u'plan', u'assur'] [u'hayden', u'australia', u'continu', u'chase'] [u'health', u'merger', u'save', u'unclear'] [u'henri', u'play', u'swim', u'trial', u'chanc'] [u'henri', u'sidelin', u'calf', u'strain'] [u'hewitt', u'harbour', u'hard', u'feel', u'clijster'] [u'highland', u'crush', u'bull'] [u'highway', u'truck', u'crash', u'leav', u'dead'] [u'home', u'lend', u'trend', u'defi', u'expert'] [u'homeless', u'fund', u'meet', u'end', u'impass'] [u'howard', u'ambival', u'evan'] [u'howard', u'defend', u'polici'] [u'icac', u'delay', u'law', u'contempt', u'decis'] [u'predict', u'higher', u'expect', u'demand'] [u'indian', u'default', u'face', u'music'] [u'iran', u'seiz', u'british', u'boat', u'display', u'report'] [u'iraq', u'task', u'forc', u'command', u'name'] [u'commiss', u'defus', u'power', u'strike'] [u'jackson', u'molest', u'twice', u'say', u'teenag'] [u'kalgoorli', u'ratepay', u'poll'] [u'keegan', u'abandon', u'citi', u'contract'] [u'king', u'triumph', u'grand', u'final', u'open'] [u'kumbl', u'strike', u'india', u'victori'] [u'labor', u'push', u'senat', u'probe', u'telstra', u'sale'] [u'labor', u'seek', u'inquiri', u'delay'] [u'larkham', u'marshal', u'injuri', u'brumbi', u'brave'] [u'launceston', u'rare', u'show', u'french', u'master'] [u'lower', u'jobless', u'rate', u'pleas', u'busi', u'chamber'] [u'madrid', u'rememb', u'train', u'attack'] [u'charg', u'follow', u'ident', u'fraud', u'raid'] [u'maningrida', u'celebr', u'educ', u'mileston'] [u'jail', u'year', u'manslaught'] [u'jail', u'kidnap', u'plot'] [u'arsenal', u'fight', u'season', u'aliv'] [u'martin', u'excit', u'tourism', u'campaign'] [u'mari', u'tasmanian', u'tour', u'continu', u'thrill', u'fan'] [u'mayor', u'plan', u'label', u'ludicr'] [u'mcdonald', u'take', u'issu', u'rugbi', u'mcbrat', u'pack'] [u'mckellen', u'join', u'coron', u'street', u'cast'] [u'meat', u'suppli', u'glitch', u'caus', u'health', u'concern'] [u'meet', u'outlin', u'saleyard', u'decis'] [u'militari', u'struggl', u'skill', u'recruit'] [u'millmerran', u'get', u'age', u'care', u'boost'] [u'miner', u'welcom', u'gretley', u'disast', u'fine'] [u'minist', u'favour', u'cut', u'council', u'number'] [u'minist', u'reject', u'marin', u'park', u'plan', u'loss', u'claim'] [u'minist', u'investig', u'gladston', u'hospit', u'worri'] [u'mourinho', u'cheat', u'cheat', u'jibe', u'earn', u'fine'] [u'forecast', u'flap', u'corella', u'cull'] [u'pleas', u'crown', u'land', u'road', u'permit', u'review'] [u'upset', u'outback', u'servic'] [u'museum', u'demand', u'proof', u'sydney', u'discoveri'] [u'mushroom', u'picker', u'offer', u'job'] [u'nation', u'park', u'reopen', u'storm', u'damag'] [u'nation', u'candid', u'reject', u'tuckey', u'attack'] [u'breed', u'wont', u'stop', u'mules', u'anim', u'right', u'group'] [u'newcastl', u'sink', u'olympiako', u'uefa'] [u'evid', u'worker', u'case'] [u'focus', u'townsvill', u'tourism'] [u'properti', u'develop', u'guidelin', u'seek'] [u'obvious', u'motiv', u'abduct', u'polic'] [u'repriev', u'sack', u'teacher'] [u'club', u'respond', u'propos', u'chang'] [u'reach', u'conserv', u'mileston'] [u'resid', u'brace', u'ingrid', u'arriv'] [u'olymp', u'boss', u'treat', u'french', u'strike'] [u'opposit', u'demand', u'youth', u'justic', u'centr', u'probe'] [u'orchestra', u'warn', u'musician', u'cut'] [u'organis', u'urg', u'bare', u'nude', u'festiv', u'detail'] [u'paedophil', u'alleg'] [u'pentagon', u'chief', u'clear', u'prison', u'abus'] [u'phone', u'tower', u'support', u'see', u'safeti', u'benefit'] [u'hear', u'tell', u'offic', u'disciplin'] [u'pittman', u'head', u'australian', u'team', u'world', u'titl'] [u'plan', u'announc', u'canberra', u'revamp'] [u'defend', u'govt', u'record'] [u'invit', u'conserv', u'peac', u'summit'] [u'offer', u'sympathi', u'soldier', u'famili'] [u'tell', u'pilbara', u'train', u'resourc', u'shortag'] [u'pole', u'fire', u'blame', u'mass', u'blackout'] [u'polic', u'follow', u'lead', u'strobel', u'murder', u'case'] [u'polic', u'investig', u'babi', u'death'] [u'polic', u'investig', u'suspect', u'child', u'abduct'] [u'polic', u'investig', u'violent', u'attack'] [u'polic', u'crime', u'wave'] [u'prais', u'free', u'senior', u'week', u'travel'] [u'princess', u'mari', u'tell', u'press', u'emot', u'homecom'] [u'protest', u'demand', u'hickey', u'inquest'] [u'public', u'urg', u'crime', u'stopper'] [u'pyjama', u'cloth', u'jackson', u'narrowli', u'escap', u'jail'] [u'singapor', u'airlin', u'launch', u'joint', u'tourism', u'plan'] [u'team', u'help', u'fight', u'coal'] [u'rain', u'delay', u'bypass', u'open'] [u'rann', u'back', u'uranium', u'mine', u'polici', u'rethink'] [u'red', u'recal', u'mcmeniman', u'vedelago'] [u'resourc', u'stock', u'leav', u'market'] [u'reynold', u'hand', u'wallabi', u'coach', u'role'] [u'brew', u'aborigin', u'kosciuszko'] [u'royal', u'coupl', u'host', u'media', u'confer'] [u'rural', u'industri', u'urg', u'present', u'posit', u'imag'] [u'deputi', u'premier', u'seek', u'chang', u'uranium', u'mine'] [u'sanction', u'follow', u'shoot', u'offer'] [u'plan', u'chang', u'pitjantjatara', u'academ'] [u'search', u'continu', u'miss'] [u'sharehold', u'urg', u'accept', u'merger'] [u'shell', u'load', u'bonapart', u'gulf', u'interest'] [u'shoalhaven', u'mayor', u'unhurt', u'crash'] [u'singaporean', u'presid', u'visit', u'australia'] [u'australian', u'billionair', u'list'] [u'sourc', u'fish', u'kill', u'chemic', u'mysteri'] [u'south', u'africa', u'focus', u'test', u'zimbabw'] [u'spain', u'stop', u'silenc', u'rememb', u'madrid', u'attack'] [u'special', u'rwandan', u'court', u'start', u'genocid', u'trial'] [u'suspect', u'jakarta', u'embassi', u'bomber', u'identifi'] [u'sydney', u'sweatshop', u'investig', u'continu'] [u'thousand', u'tip', u'bendigo', u'clash'] [u'fieri', u'road', u'crash'] [u'tiger', u'voic', u'salari', u'concern'] [u'time', u'run', u'machin', u'answer'] [u'trial', u'aim', u'eas', u'contracept', u'effect'] [u'troop', u'protect', u'radiat', u'armi', u'chief'] [u'uefa', u'probe', u'chelsea', u'barca', u'fraca'] [u'extend', u'darfur', u'peac', u'mission'] [u'union', u'defend', u'teacher', u'stop', u'work', u'action'] [u'union', u'predict', u'heavi', u'sentenc', u'death'] [u'ponder', u'school', u'plan'] [u'warrior', u'close', u'inning', u'point'] [u'water', u'merger', u'week', u'away'] [u'water', u'cost'] [u'welfar', u'group', u'fear', u'budget', u'cut'] [u'western', u'look', u'tourism', u'season'] [u'delay', u'dougla', u'arteri', u'work'] [u'widow', u'request', u'exhum', u'husband', u'grant'] [u'woman', u'hospit', u'crash'] [u'women', u'cricket'] [u'wool', u'produc', u'await', u'peta', u'campaign', u'rule'] [u'firefight', u'battl', u'massiv', u'furnitur', u'factori'] [u'rescu', u'boat', u'capsiz'] [u'cent', u'album', u'rival', u'beatl'] [u'abduct', u'spark', u'renew', u'call', u'nation', u'alert'] [u'ambassador', u'find', u'evid', u'disturb'] [u'arm', u'stand', u'polic'] [u'australia'] [u'aust', u'warn', u'possibl', u'jakarta', u'bomb', u'attack'] [u'bichel', u'bowl', u'bull', u'final'] [u'black', u'cap', u'hold', u'slender', u'lead'] [u'blue', u'target', u'victori'] [u'bomber', u'face', u'lloyd', u'injuri', u'crisi'] [u'british', u'parliament', u'stalem', u'anti'] [u'bulgaria', u'say', u'admit', u'respons', u'death'] [u'bull', u'build', u'lead', u'secur', u'final', u'spot'] [u'bull', u'charg', u'home', u'final'] [u'bush', u'name', u'academ', u'head', u'nasa'] [u'bushrang', u'take', u'slow', u'steadi'] [u'stop', u'orchestra', u'downsiz'] [u'chief', u'break', u'blue'] [u'clean', u'begin', u'wake', u'cyclon', u'ingrid'] [u'clijster', u'reach', u'round', u'indian', u'well'] [u'comedian', u'dave', u'allen', u'die'] [u'crusad', u'thrash', u'winless', u'red'] [u'cyclon', u'willi', u'build', u'coast'] [u'darwin', u'prepar', u'ingrid', u'move', u'closer'] [u'defenc', u'struggl', u'skill', u'recruit'] [u'dog', u'dragon', u'season', u'open'] [u'dolphin', u'wave', u'artifici', u'admir'] [u'iran', u'face', u'nuke', u'enrich', u'resum'] [u'evan', u'second', u'pari', u'nice', u'stage'] [u'expert', u'gather', u'mull', u'restructur', u'implic'] [u'farina', u'welcom', u'asia'] [u'faulti', u'gene', u'link', u'blind'] [u'crew', u'battl', u'factori', u'blaze'] [u'expect', u'burn', u'night'] [u'german', u'player', u'arrest', u'rig', u'scandal'] [u'emerg', u'servic', u'worker', u'honour'] [u'flemington', u'doubl', u'freedman'] [u'flight', u'centr', u'fli', u'indian', u'market'] [u'free', u'italian', u'tell', u'mind', u'careless', u'talk'] [u'gilli', u'fall', u'vital', u'centuri'] [u'govt', u'accus', u'plan', u'chang', u'land', u'right'] [u'green', u'top', u'doha', u'leaderboard'] [u'group', u'claim', u'telstra', u'stori', u'poor', u'rural'] [u'hackett', u'triumph', u'thorp', u'absenc'] [u'hama', u'palestinian', u'elect'] [u'hurrican', u'super'] [u'impress', u'eel', u'slip', u'past', u'tiger'] [u'india', u'pois', u'kill'] [u'ingrid', u'batter'] [u'ingrid', u'continu', u'lash'] [u'ingrid', u'edg', u'close', u'gove', u'peninsula'] [u'ingrid', u'whip', u'categori'] [u'inquiri', u'examin', u'legalis', u'escort', u'servic'] [u'intel', u'trade', u'deficit', u'drag', u'stock'] [u'iran', u'say', u'incent', u'offer', u'insignific'] [u'jakarta', u'step', u'secur', u'terror', u'warn'] [u'judg', u'kill', u'rape', u'trial'] [u'katich', u'gilchrist', u'australia', u'lunch'] [u'leav', u'royal', u'lennon', u'warn'] [u'makyb', u'diva', u'elvstroem', u'renew', u'rivalri'] [u'hospit', u'meat', u'cleaver', u'attack'] [u'tri', u'polic', u'offic'] [u'melbourn', u'airport', u'shutdown', u'report', u'releas'] [u'milit', u'extend', u'death', u'threat', u'deadlin', u'filipino'] [u'mother', u'hold', u'custodi', u'poison', u'daughter'] [u'criticis', u'sydney', u'develop', u'plan'] [u'negoti', u'free', u'iraqi', u'swede', u'hostag'] [u'nepal', u'free'] [u'netbal', u'sweep', u'south', u'africa'] [u'prison', u'rais', u'question'] [u'indigen', u'minist', u'visit', u'aborigin'] [u'excus', u'inact', u'african', u'poverti', u'blair'] [u'offic', u'where'] [u'person', u'injur', u'blast', u'near', u'mission'] [u'organis', u'name', u'citizen', u'year'] [u'parent', u'charg', u'attempt', u'murder'] [u'polic', u'woman', u'seek', u'tweed', u'kidnap'] [u'polic', u'investig', u'death', u'babi', u'girl'] [u'pope', u'hear', u'speak', u'hospit', u'mass'] [u'port', u'power', u'hawk'] [u'prosecutor', u'claim', u'jackson', u'brink', u'bankruptci'] [u'protect', u'order', u'seek', u'poison', u'girl'] [u'redback', u'charg', u'adelaid'] [u'red', u'rope'] [u'relax', u'blue', u'readi', u'eagl'] [u'stewart', u'marri', u'model', u'girlfriend'] [u'roger', u'break', u'tah', u'train'] [u'rooster', u'rabbitoh'] [u'royal', u'coupl', u'offici', u'australian', u'tour'] [u'speaker', u'stand', u'firm', u'paedophil', u'claim'] [u'search', u'fail', u'melbourn', u'miss'] [u'shark', u'panther', u'tight', u'battl'] [u'arrest', u'fight', u'concert'] [u'soldier', u'fell', u'death', u'farewel'] [u'southern', u'painter', u'win', u'honour'] [u'stalin', u'secret', u'hitler', u'book', u'publish'] [u'stanhop', u'public', u'servic', u'chang'] [u'streak', u'blignaut', u'rescu', u'zimbabw'] [u'studi', u'look', u'lobster', u'health'] [u'sydney', u'factori', u'blaze', u'challeng', u'crew'] [u'syrian', u'quit', u'north', u'lebanon'] [u'taiwan', u'presid', u'call', u'ralli', u'china'] [u'kill', u'injur', u'vietnam', u'train', u'crash'] [u'thousand', u'attend', u'pat', u'parad'] [u'threat', u'forc', u'chelsea', u'quit'] [u'save', u'floodwat', u'mobil'] [u'tuckshop', u'target', u'help', u'reduc', u'child', u'obes'] [u'tung', u'name', u'advis', u'china', u'parliament'] [u'pass', u'anti', u'terror', u'free', u'suspect'] [u'union', u'lobbi', u'industri', u'manslaught', u'law'] [u'union', u'lobbi', u'save', u'spirit', u'servic'] [u'union', u'strike', u'threat'] [u'accus', u'north', u'korea', u'increas', u'drug', u'traffic'] [u'health', u'expert', u'hepat', u'drug'] [u'want', u'repatri', u'guantanamo', u'detaine', u'report'] [u'warn', u'terror', u'threat', u'jakarta', u'mall'] [u'venezuelan', u'court', u'revers', u'coup', u'rule'] [u'say', u'decis', u'australia', u'asia'] [u'africa', u'artist', u'stage', u'anti', u'malaria', u'concert'] [u'agassi', u'end', u'arthur', u'win', u'streak'] [u'akmal', u'maiden', u'guid', u'pakistan', u'draw'] [u'aussi', u'thrash', u'black', u'cap', u'wicket'] [u'barca', u'stretch', u'lead'] [u'beazley', u'call', u'protest', u'vote'] [u'beazley', u'offer', u'host', u'latham', u'dinner'] [u'black', u'cap', u'squad', u'second', u'test'] [u'blue', u'buoy', u'preseason'] [u'blue', u'secur', u'final', u'spot'] [u'blue', u'wait', u'final', u'fate'] [u'blue', u'preseason'] [u'bodi', u'burn', u'hous'] [u'bowler', u'black', u'cap', u'rope'] [u'british', u'mother', u'set', u'polar', u'trek'] [u'bronco', u'edg', u'cowboy', u'local', u'derbi'] [u'bull', u'track', u'home', u'final'] [u'bull', u'face', u'blue', u'final'] [u'busi', u'lobbi', u'damn', u'union', u'strike', u'plan'] [u'call', u'public', u'input', u'elector'] [u'canberra', u'invest', u'tourism', u'promot'] [u'canberran', u'turn', u'walk', u'want'] [u'carr', u'pledg', u'infrastructur'] [u'carr', u'stand', u'polic', u'chief', u'macquari', u'field'] [u'china', u'start', u'aid', u'vaccin', u'trial'] [u'clement', u'break', u'johnson', u'indoor'] [u'commonwealth', u'game', u'ticket', u'ballot', u'begin'] [u'cyclon', u'batter', u'croker', u'island'] [u'cyclon', u'ingrid', u'march', u'darwin'] [u'cyclon', u'march', u'tiwi', u'island'] [u'cyclon', u'willi', u'die', u'coast'] [u'darwin', u'prepar', u'cyclon', u'ingrid'] [u'darwin', u'prepar', u'ingrid'] [u'death', u'toll', u'hotel', u'shoot', u'rise'] [u'destroy', u'factori', u'unsaf', u'investig'] [u'drought', u'affect', u'farmer', u'seek', u'govt', u'loan'] [u'earthquak', u'shake', u'iran'] [u'elect', u'hong', u'kong', u'leader', u'juli'] [u'crew', u'battl', u'chemic'] [u'crew', u'contain', u'chemic'] [u'firefight', u'tri', u'extinguish', u'sydney'] [u'dead', u'hotel', u'shoot'] [u'french', u'kill', u'irish', u'grand', u'slam', u'hop', u'england'] [u'gandhi', u'salt', u'march', u'enact'] [u'german', u'fingerprint', u'supermarket'] [u'ginn', u'tomkin', u'keho', u'row', u'honour'] [u'girl', u'okay', u'alleg', u'poison', u'attempt'] [u'greec', u'swear', u'presid'] [u'green', u'fail', u'titl', u'shoot'] [u'green', u'lose', u'qatar', u'lead'] [u'gunman', u'hold', u'polic', u'hour'] [u'gunman', u'kill', u'church', u'servic'] [u'gunman', u'stand', u'firm', u'sieg', u'continu'] [u'hayden', u'aussi', u'chase'] [u'hewat', u'lift', u'waratah', u'super'] [u'hitler', u'cross', u'list', u'honour', u'citizen'] [u'howard', u'eye', u'chines', u'free', u'trade', u'deal'] [u'howard', u'say', u'skill', u'shortag', u'identifi', u'month'] [u'indonesian', u'presid', u'visit', u'australia'] [u'infrastructur', u'labour', u'shortag', u'natur', u'minchin'] [u'ingrid', u'weaken', u'rout', u'darwin'] [u'iran', u'vow', u'continu', u'nuclear', u'program'] [u'iraq', u'bomb', u'blast', u'kill', u'secur', u'worker'] [u'king', u'clip', u'hawk', u'lead'] [u'latest', u'spin', u'see', u'warn', u'england'] [u'lebanes', u'presid', u'warn', u'catastroph'] [u'accus', u'poison', u'children', u'alleg'] [u'kill', u'kayak', u'accid'] [u'pose', u'mother', u'year', u'pension'] [u'man', u'hand', u'fight'] [u'want', u'servic', u'station', u'robberi'] [u'want', u'tourist', u'bash'] [u'marathon', u'dive', u'aim', u'aquat', u'research'] [u'medic', u'treatment', u'delay', u'child', u'kidnap', u'probe'] [u'minist', u'see', u'better', u'regul', u'telstra', u'sale'] [u'motorcyclist', u'dead', u'oval'] [u'evid', u'anzac', u'grave', u'disturb', u'say'] [u'cut', u'govt', u'say'] [u'surpris', u'inter', u'draw'] [u'ogilvi', u'grab', u'share', u'lead'] [u'opposit', u'claim', u'poor', u'fund', u'rais', u'polic'] [u'deni', u'slowdown', u'weaken', u'economi'] [u'polic', u'hope', u'tattoo', u'help', u'identifi', u'dead'] [u'polic', u'breakthrough', u'arm'] [u'polic', u'negoti', u'sieg', u'gunman'] [u'polic', u'probe', u'attack', u'adelaid'] [u'polic', u'probe', u'cruis', u'boat', u'capsiz'] [u'pope', u'speak', u'hospit', u'window'] [u'pope', u'discharg', u'hospit'] [u'princ', u'centuri', u'bolster', u'south', u'africa'] [u'prison', u'die', u'hit', u'head'] [u'redback', u'tame', u'tiger', u'adelaid'] [u'resid', u'evacu', u'sieg', u'continu'] [u'road', u'fin', u'fund', u'black', u'spot', u'work'] [u'scud', u'round', u'arthur', u'meet', u'agassi'] [u'eagl', u'warrior'] [u'sea', u'eagl', u'warrior'] [u'sensat', u'celt', u'ranger', u'lead'] [u'shiit', u'kurdish', u'talk', u'form', u'iraq', u'govern', u'fail'] [u'singaporean', u'norwegian', u'leader', u'visit', u'australia'] [u'storm', u'rain', u'joey', u'comeback'] [u'suspect', u'arrest', u'tripl', u'slay', u'court'] [u'opposit', u'accus', u'mischief', u'spirit'] [u'polic', u'hope', u'peac', u'sieg'] [u'toilet', u'help', u'tsunami', u'ravag', u'banda', u'aceh'] [u'thousand', u'expect', u'walk', u'help', u'forget', u'peopl'] [u'teen', u'charg', u'arson', u'palm', u'island'] [u'tiwi', u'brace', u'ingrid'] [u'townhous', u'blaze', u'damag', u'top'] [u'train', u'derail', u'vietnam', u'kill'] [u'arrest', u'luxuri', u'hijack'] [u'charg', u'perth', u'jack'] [u'kill', u'suspect', u'milit', u'captur', u'jeddah'] [u'serious', u'injur', u'rollov'] [u'unit', u'arsenal', u'eas', u'semi'] [u'syria', u'understand', u'stage', u'pullout'] [u'miss', u'plung', u'canal'] [u'armi', u'report', u'soldier', u'kill', u'afghan'] [u'warn', u'take', u'kiwi'] [u'win', u'king'] [u'weather', u'intensifi', u'tiwi', u'brace', u'ingrid'] [u'windi', u'lara', u'cold'] [u'woman', u'arrest', u'alleg', u'attempt'] [u'woman', u'hospitalis', u'accid'] [u'iraqi', u'kill', u'attack', u'past', u'day'] [u'tram', u'get', u'leas', u'life'] [u'kill', u'fall', u'gorg', u'india'] [u'west', u'bank', u'settlement', u'outpost', u'dismantl'] [u'boost', u'plan', u'illawarra', u'geriatr', u'servic'] [u'recruit', u'join', u'polic', u'forc'] [u'charg', u'drink', u'drive', u'blitz'] [u'charg', u'drug', u'bust'] [u'accc', u'green', u'light', u'iron', u'joint', u'ventur'] [u'deni', u'hospit', u'list', u'scapegoat'] [u'adventur', u'interrupt', u'trek', u'royal', u'geograph'] [u'airport', u'tell', u'reduc', u'bird', u'strike', u'risk'] [u'airport', u'adopt', u'tougher', u'secur'] [u'alleg', u'poison', u'victim', u'improv'] [u'australian', u'polic', u'hear', u'polic', u'strategi'] [u'aviat', u'industri', u'face', u'skill', u'shortag'] [u'balaji', u'fin', u'excess', u'appeal'] [u'ballarat', u'line', u'track'] [u'barbaro', u'plead', u'guilti', u'drug', u'charg'] [u'batistuta', u'call', u'quit'] [u'bear', u'come', u'beat', u'wynnum'] [u'beatti', u'welcom', u'coke', u'propos'] [u'takeov', u'spark', u'fear'] [u'crowd', u'flock', u'communiti', u'fair'] [u'turnout', u'african', u'concert', u'fight', u'malaria'] [u'blackout', u'bring', u'halt'] [u'blue', u'want', u'final'] [u'bullet', u'hous', u'sieg', u'continu'] [u'bull', u'hop'] [u'commut', u'tell', u'lose'] [u'busi', u'want', u'shortag', u'detail'] [u'busi', u'lobbi', u'worri', u'china', u'trade', u'talk'] [u'cabbi', u'suspens', u'hamper', u'taxi', u'access'] [u'cabinet', u'approv', u'heritag', u'review'] [u'confid', u'warn', u'meet', u'oblig'] [u'rethink', u'adopt', u'polici'] [u'call', u'assist', u'drought', u'worsen'] [u'central', u'african', u'republ', u'vote', u'year', u'coup'] [u'chang', u'promis', u'better', u'reef', u'consult'] [u'chariti', u'fund', u'flow', u'clash'] [u'cherbourg', u'princip', u'get', u'art', u'board', u'appoint'] [u'china', u'pass', u'taiwan', u'anti', u'secess'] [u'claim', u'copper', u'chopper', u'come', u'cropper'] [u'club', u'face', u'expuls', u'brawl'] [u'communiti', u'star', u'cinema'] [u'corrupt', u'probe', u'target', u'fraudul', u'builder'] [u'council', u'back', u'green', u'bag'] [u'council', u'call', u'polic', u'beat'] [u'councillor', u'call', u'rat', u'rise'] [u'council', u'rethink', u'park', u'fund'] [u'council', u'overse', u'transport', u'servic'] [u'cowboy', u'loss', u'highlight', u'rusti', u'play'] [u'croker', u'island', u'reel', u'cyclon'] [u'cult', u'leader', u'face', u'chilean', u'court', u'abus'] [u'cyclist', u'face', u'challeng', u'second'] [u'darwin', u'alert', u'cyclon', u'hit', u'tiwi', u'island'] [u'darwin', u'spar', u'ingrid', u'furi'] [u'defenc', u'chief', u'offer', u'asbesto', u'assur'] [u'disney', u'appoint'] [u'downer', u'oppos', u'china', u'anti', u'secess'] [u'drought', u'take', u'toll', u'alic', u'tree'] [u'earthquak', u'rattl', u'mumbai', u'western', u'india'] [u'surg', u'qatar', u'titl'] [u'emerg', u'servic', u'deni', u'radio', u'outag'] [u'evict', u'threat', u'put', u'cloud', u'footi', u'club'] [u'kosovo', u'plead', u'guilti', u'crime'] [u'extra', u'polic', u'probe', u'solomon', u'death'] [u'famili', u'flee', u'burn', u'home'] [u'feedback', u'seek', u'dugong', u'turtl', u'harvest'] [u'firefight', u'monitor', u'renmark', u'blaze', u'site'] [u'fish', u'kill', u'spark', u'govt', u'probe'] [u'iraqi', u'civilian', u'wound', u'chopper', u'attack'] [u'forestri', u'worker', u'hold', u'ballot', u'hope', u'resolv'] [u'gangland', u'kill', u'link', u'polic', u'corrupt'] [u'shortag', u'blame', u'loss'] [u'geologist', u'orang', u'asbesto', u'belt'] [u'ghost', u'scare', u'malawi', u'presid', u'palac'] [u'gold', u'coast', u'design', u'receiv', u'wool', u'fashion', u'award'] [u'govt', u'forese', u'econom', u'growth', u'threat'] [u'govt', u'push', u'state', u'rework', u'super', u'choic', u'law'] [u'govt', u'reject', u'avoid', u'claim'] [u'govt', u'report', u'recommend', u'downsiz', u'orchestra'] [u'govt', u'wake', u'petrol', u'sniff', u'find'] [u'govt', u'china', u'free', u'trade', u'talk'] [u'govt', u'urg', u'focus', u'miner', u'infrastructur'] [u'govt', u'urg', u'help', u'cost', u'remot', u'flight'] [u'govt', u'urg', u'look', u'reform', u'increas'] [u'great', u'southern', u'minist', u'face', u'steep', u'learn', u'curv'] [u'group', u'seek', u'ballarat', u'disabl', u'access', u'boost'] [u'hackett', u'cruis', u'qualifi'] [u'harrington', u'win', u'florida', u'play'] [u'hawk', u'coach', u'reflect', u'loss', u'king'] [u'health', u'group', u'look', u'good', u'govern'] [u'heenan', u'out', u'match'] [u'heenan', u'face', u'super', u'judiciari'] [u'hewitt', u'outlast', u'ginepri', u'california'] [u'hewitt', u'begin', u'indian', u'well', u'campaign'] [u'hill', u'charg', u'temper', u'comeback'] [u'himalaya', u'melt', u'glacier', u'threaten', u'water', u'crisi'] [u'hughenden', u'kwon', u'champ', u'win', u'award'] [u'direct', u'boast', u'profit', u'jump'] [u'ingrid', u'head'] [u'ingrid', u'lash', u'tiwi', u'island'] [u'ingrid', u'track', u'away', u'darwin'] [u'inmat', u'die', u'lithgow', u'jail'] [u'jetstar', u'hervey', u'flight', u'announc', u'immin'] [u'jone', u'beat', u'hanson', u'breast', u'stroke', u'final'] [u'joyc', u'reflect', u'disappoint', u'perform'] [u'kempsey', u'mayor', u'tight', u'lip', u'road', u'seal'] [u'kennedi', u'cancel', u'adam', u'meet'] [u'labor', u'duck', u'lover', u'chase', u'bird', u'interst'] [u'labour', u'mark', u'warn'] [u'larkham', u'sidelin', u'follow', u'cancer', u'scare'] [u'latest', u'spin', u'see', u'warn', u'england'] [u'lebanon', u'opposit', u'ralli', u'draw', u'hundr'] [u'lenton', u'schipper', u'dead', u'heat'] [u'linesman', u'error', u'let', u'juve', u'hook'] [u'local', u'govt', u'seek', u'tourism', u'fund', u'revenu'] [u'local', u'walk', u'rais', u'fund', u'chariti'] [u'face', u'court', u'ricketi', u'vehicl'] [u'man', u'hand', u'near', u'northbridg', u'brawl'] [u'want', u'nightclub', u'fire'] [u'mayor', u'pleas', u'black', u'spot', u'fund'] [u'mileston', u'match', u'say', u'bucknor'] [u'millionair', u'push', u'incom', u'cut'] [u'miner', u'ralli', u'xstrata', u'lodg', u'appeal'] [u'train', u'scheme', u'begin'] [u'minist', u'push', u'road', u'summit', u'promis'] [u'misconduct', u'hear', u'ministeri', u'staffer'] [u'arrest', u'expect', u'soccer', u'riot'] [u'polic', u'join', u'search', u'miss', u'tourist'] [u'mother', u'road', u'crash', u'daughter', u'hurt'] [u'hint', u'resign'] [u'murchison', u'prove', u'popular', u'radio', u'astronomi'] [u'museum', u'wwii', u'plane', u'wreck'] [u'network', u'snare', u'actor', u'bollywood', u'sting'] [u'bishop', u'see', u'peopl', u'person'] [u'newcastl', u'blackburn', u'semi'] [u'evid', u'highlight', u'polic', u'corrupt'] [u'evid', u'gallipoli', u'roadwork', u'bungl', u'downer'] [u'report', u'damag', u'earthquak', u'hit'] [u'patient', u'blame', u'wait', u'list'] [u'opal', u'spark', u'mine', u'frenzi'] [u'opposit', u'dismiss', u'legal', u'advic', u'clear', u'beatti'] [u'overnight', u'burn', u'metal', u'yard'] [u'pakistan', u'high', u'ahead', u'second', u'test'] [u'palm', u'island', u'dysfunct', u'lack', u'leadership'] [u'parent', u'angri', u'bouncer', u'jail', u'sentenc', u'longer'] [u'parti', u'divid', u'timet', u'abolish', u'atsic'] [u'peter', u'take', u'captain', u'sequel'] [u'wagga', u'report', u'month'] [u'planner', u'leap', u'frog', u'dome'] [u'deflect', u'labor', u'jib', u'turnbul'] [u'begin', u'talk', u'china', u'free', u'trade'] [u'polic', u'begin', u'review', u'macquari', u'field', u'riot'] [u'polic', u'bust', u'hydropon', u'cannabi', u'syndic'] [u'polic', u'investig', u'woman', u'dead'] [u'polic', u'prais', u'south', u'east', u'driver', u'drink', u'drive'] [u'polic', u'probe', u'motorbik', u'fatal'] [u'polic', u'racial', u'taunt', u'spark', u'northbridg', u'brawl'] [u'polic', u'seek', u'fatal', u'accid', u'wit'] [u'polic', u'tight', u'sieg', u'continu'] [u'polic', u'studi', u'fatal', u'crash'] [u'pope', u'leav', u'hospit', u'stay'] [u'port', u'announc'] [u'post', u'mortem', u'find', u'toddler', u'die', u'heat', u'stress'] [u'princ', u'zondeki', u'tour', u'west', u'indi'] [u'syrian', u'demonstr', u'denounc', u'resolut'] [u'public', u'reject', u'harbour', u'pollut', u'claim'] [u'health', u'accus', u'light', u'medico'] [u'ranger', u'step', u'titl', u'pressur'] [u'rann', u'govern', u'deni', u'ignor', u'petrol', u'sniff'] [u'rebellion', u'secur', u'right', u'sayyaf', u'prison'] [u'report', u'back', u'cape', u'york', u'sustain', u'develop'] [u'report', u'find', u'agricultur', u'support', u'million', u'job'] [u'report', u'highlight', u'grow', u'dementia', u'case'] [u'resid', u'speak', u'rocki', u'violenc'] [u'resid', u'recognis', u'sandon', u'picket', u'anniversari'] [u'resourc', u'stock', u'prop', u'market'] [u'review', u'trigger', u'fear'] [u'staff', u'report', u'moral', u'orang'] [u'thank', u'region', u'communiti', u'airport'] [u'rice', u'say', u'ambit', u'presid'] [u'rider', u'night', u'forest'] [u'roger', u'mend', u'action'] [u'rugbi', u'obrien', u'blow', u'time', u'career', u'report'] [u'govt', u'deni', u'elect', u'surgeri', u'wait', u'list', u'claim'] [u'labor', u'spark', u'uranium', u'debat'] [u'opposit', u'blame', u'blackout', u'poor'] [u'industri', u'group', u'want', u'escort', u'servic', u'legalis'] [u'sieg', u'situat', u'control', u'polic'] [u'finalist', u'toad', u'trap', u'competit'] [u'skeleton', u'year', u'geneva'] [u'soccer', u'fan', u'arrest', u'fight', u'match'] [u'soldier', u'aim', u'gun', u'student', u'claim'] [u'south', u'africa', u'cull', u'eleph'] [u'state', u'orchestra', u'kemp'] [u'submiss', u'highlight', u'power', u'station', u'opposit'] [u'lover', u'ignor', u'skin', u'cancer', u'risk'] [u'survey', u'show', u'ratepay', u'pleas', u'council'] [u'talk', u'legal', u'action', u'blackout'] [u'govt', u'welcom', u'georg', u'river', u'test', u'result'] [u'teenag', u'sexual', u'assault', u'high', u'school'] [u'thousand', u'celebr', u'moomba', u'parad'] [u'thousand', u'enjoy', u'moomba', u'golden', u'anniversari'] [u'treat', u'drug', u'overdos', u'rave', u'parti'] [u'titl', u'dream', u'slip', u'away', u'real'] [u'tiwi', u'island', u'ingrid'] [u'tiwi', u'island', u'stock', u'ingrid', u'rampag'] [u'tough', u'child', u'porn', u'law', u'tasmania'] [u'tourism', u'industri', u'await', u'decis', u'spirit', u'iii'] [u'tulli', u'soccer', u'player', u'win', u'junior', u'sport', u'star', u'award'] [u'turnbal', u'call', u'reform'] [u'turnbul', u'call', u'reform'] [u'support', u'baggag', u'handler', u'action'] [u'chief', u'pleas', u'middl', u'east', u'peac', u'progress'] [u'union', u'face', u'lawsuit', u'worsley', u'industri', u'disput'] [u'union', u'fear', u'shortag', u'push'] [u'union', u'strike', u'deal', u'hospit', u'construct', u'work'] [u'union', u'threaten', u'shut', u'coal', u'mine', u'industri'] [u'union', u'worri', u'clarenc', u'valley', u'polic', u'number'] [u'press', u'ahead', u'talk', u'iran', u'nuclear'] [u'question', u'farm', u'water', u'meter', u'plan'] [u'victorian', u'dementia', u'case', u'forecast', u'rise'] [u'victoria', u'polic', u'admit', u'hodson', u'mistak'] [u'wale', u'close', u'nation', u'grand', u'slam'] [u'water', u'plan', u'hold', u'govern', u'bicker'] [u'warn', u'human', u'bird', u'mutat'] [u'wide', u'hospit', u'dispens', u'drug', u'twice'] [u'wilkinson', u'comeback', u'end', u'injuri'] [u'willi', u'die', u'categori', u'cyclon'] [u'women', u'cricket', u'clean', u'kiwi'] [u'xstrata', u'defend', u'gretley', u'appeal'] [u'yacht', u'capsiz', u'link', u'keel'] [u'zimbabw', u'crash', u'defeat'] [u'kill', u'kenya', u'militia', u'attack'] [u'accus', u'plead', u'guilti', u'chariti', u'camp', u'assault'] [u'actu', u'open', u'skill', u'migrant', u'plan'] [u'african', u'leader', u'ghost', u'fear', u'draw', u'mix', u'respons'] [u'alp', u'action', u'branch', u'stack', u'adequ', u'brack'] [u'anderson', u'angri', u'labor', u'bribe', u'question'] [u'play', u'derail'] [u'atsic', u'strong', u'clark', u'say'] [u'australian', u'wharfi', u'filipino', u'strike'] [u'aust', u'shoot', u'free', u'trade'] [u'avalon', u'prepar'] [u'baghdad', u'bind', u'troop', u'train', u'gun', u'motorist'] [u'beatti', u'back', u'rugbi', u'club', u'sponsorship'] [u'beazley', u'hail', u'labor', u'poll', u'surg'] [u'beckham', u'launch', u'footbal', u'academi'] [u'pilbara', u'rail', u'access'] [u'brain', u'bird', u'cope', u'better'] [u'bird', u'strike', u'problem', u'wors', u'rockhampton'] [u'birney', u'outlin', u'goldfield', u'plan'] [u'blue', u'face', u'bull'] [u'board', u'ahead', u'foreign', u'worker', u'fruit'] [u'bomb', u'tasmanian', u'sieg', u'site'] [u'bronco', u'win', u'formula', u'warrior', u'clash'] [u'driver', u'strike', u'action'] [u'bush', u'name', u'promot', u'envoy'] [u'cancer', u'drug', u'hop', u'lift', u'market'] [u'carter', u'holt', u'harvey', u'lose', u'worker'] [u'chamber', u'back', u'call', u'infrastructur', u'boost'] [u'chelsea', u'condemn', u'frisk', u'death', u'threat'] [u'child', u'porn', u'collector', u'spend', u'month', u'jail'] [u'child', u'welfar', u'group', u'welcom', u'tougher', u'porn', u'law'] [u'church', u'enter', u'parliamentari'] [u'coff', u'polic', u'meet', u'consid', u'industri', u'unrest'] [u'colour', u'debat', u'longer', u'delay', u'childcar', u'centr'] [u'communiti', u'foundat', u'look', u'rais'] [u'communiti', u'group', u'sway', u'offer'] [u'council', u'ask', u'crematorium', u'matter', u'court'] [u'council', u'highlight', u'poor', u'road'] [u'council', u'promis', u'beach', u'access', u'redevelop'] [u'council', u'set', u'sight', u'airport', u'deadlin'] [u'council', u'vote', u'queenstown', u'hospit'] [u'council', u'urg', u'rethink', u'entertain', u'centr', u'site'] [u'court', u'rule', u'californian', u'marriag'] [u'crash', u'pilot', u'lose', u'bear', u'report'] [u'crawford', u'name', u'nbls', u'improv', u'player'] [u'crow', u'send', u'sanfl', u'game', u'time'] [u'cyclon', u'repair'] [u'darbi', u'fall', u'resid', u'stick', u'tank', u'water'] [u'dentist', u'combat', u'anti', u'fluorid', u'campaign'] [u'develop', u'residenti', u'land', u'concern'] [u'develop', u'keen', u'defenc', u'land'] [u'doctor', u'nurs', u'number', u'spotlight'] [u'doctor', u'prioritis', u'vaccin', u'request', u'amid'] [u'doctor', u'work', u'ethiopia', u'honour'] [u'breeder', u'convict', u'anim', u'cruelti'] [u'drought', u'increas', u'wasp', u'sting', u'risk'] [u'drought', u'tighten', u'grip'] [u'drought', u'wool', u'woe', u'toll', u'region'] [u'drug', u'dealer', u'face', u'jail', u'appeal', u'fail'] [u'dugong', u'turtl', u'harvest', u'worri', u'rspca'] [u'elder', u'coupl', u'lose', u'drug', u'sentenc', u'appeal'] [u'electranet', u'dark', u'blackout', u'caus'] [u'employ', u'prospect', u'continu', u'rise', u'survey'] [u'environment', u'park', u'expand'] [u'exercis', u'diet', u'longev', u'studi'] [u'ironwoman', u'champ', u'oppos', u'lifesav', u'titl'] [u'ironwoman', u'champ', u'slam', u'perth', u'plan'] [u'fake', u'diploma', u'inquiri', u'hear', u'cours', u'syllabus'] [u'father', u'face', u'court', u'girl', u'remain', u'hospit'] [u'filipino', u'forc', u'storm', u'prison', u'revolt'] [u'charg', u'cannabi', u'haul'] [u'foreign', u'worker', u'plan', u'caus', u'hospit', u'wage'] [u'council', u'want', u'probe', u'action'] [u'fund', u'recommend', u'music', u'orchestra', u'director'] [u'global', u'hawk', u'adelaid'] [u'gold', u'oper', u'beat', u'futur'] [u'govt', u'ask', u'help', u'maintain', u'region', u'access'] [u'govt', u'invest', u'specialist', u'train', u'scheme'] [u'govt', u'rule', u'minist', u'north', u'coast'] [u'govt', u'maintain', u'size', u'orchestra'] [u'govt', u'urg', u'listen', u'lake', u'macquari'] [u'grazier', u'rais', u'cattl', u'duf', u'awar'] [u'green', u'golf'] [u'green', u'want', u'titl', u'shoot'] [u'hackett', u'win', u'titl'] [u'har', u'race', u'club', u'oppos', u'meet'] [u'harradin', u'recuper', u'home'] [u'henman', u'davenport', u'advanc', u'windi', u'california'] [u'henman', u'roddick', u'lead', u'indian', u'well'] [u'hill', u'confid', u'fighter', u'cost'] [u'hopoat', u'apologis', u'ball', u'remark'] [u'hospit', u'treat', u'expat', u'cancer', u'patient', u'free'] [u'hoteli', u'forese', u'conflict', u'problem', u'gambl'] [u'howard', u'dismiss', u'meaningless', u'poll'] [u'howard', u'warn', u'liber', u'heartburn'] [u'immigr', u'blitz', u'see', u'pair', u'face', u'deport'] [u'independ', u'seek', u'compens', u'super', u'chang'] [u'indigen', u'wellb', u'centr', u'plan'] [u'ingrid', u'intensifi', u'threaten', u'north'] [u'iron', u'coal', u'price', u'inject', u'billion', u'govt'] [u'israel', u'hand', u'jericho', u'report'] [u'sector', u'propos', u'famili', u'friend', u'work'] [u'sector', u'welcom', u'work', u'scheme'] [u'japanes', u'island', u'hold', u'secret', u'long', u'life'] [u'jihad', u'jack', u'tear', u'bail', u'uphold'] [u'johnson', u'lead', u'tiger'] [u'justic', u'group', u'move', u'unseat', u'palm', u'island', u'council'] [u'kelli', u'join', u'swan', u'board'] [u'kimmorley', u'cop', u'plea', u'nutley', u'face', u'judiciari'] [u'klim', u'lead', u'heat'] [u'knight', u'sign', u'smith'] [u'kosovan', u'famili', u'plead', u'vanston', u'intervent'] [u'labor', u'defend', u'riverwalk', u'despit', u'cost', u'claim'] [u'polic', u'chief', u'prais', u'australian', u'approach'] [u'larkham', u'sidelin', u'follow', u'cancer', u'scare'] [u'lawyer', u'confront', u'jackson', u'accus', u'school'] [u'liber', u'consid', u'esper', u'health', u'role'] [u'lion', u'face', u'season', u'hadley'] [u'local', u'govt', u'chief', u'seek', u'merger', u'feedback'] [u'market', u'dip', u'resourc', u'stock'] [u'martin', u'tour', u'croker', u'island', u'devast'] [u'mcewen', u'lose', u'sprint', u'king', u'petacchi'] [u'mental', u'detain', u'doubl', u'murder'] [u'milit', u'leader', u'kill', u'prison', u'assault'] [u'propon', u'announc', u'fundrais', u'plan'] [u'minist', u'ask', u'meet', u'highway', u'user'] [u'minist', u'call', u'dept', u'account', u'prison', u'escap'] [u'ban', u'implement', u'river', u'level', u'drop'] [u'cut', u'possiblepm'] [u'lose', u'licenc', u'drink', u'drive'] [u'mussolini', u'granddaught', u'begin', u'italian', u'hunger'] [u'nation', u'divid', u'telstra', u'sale'] [u'nation', u'search', u'escape'] [u'nation', u'say', u'har', u'odd', u'legisl'] [u'nazi', u'fell', u'nuke', u'historian', u'claim'] [u'backer', u'reinvigor', u'fast', u'rail', u'propos'] [u'newcastl', u'play', u'wilkinson', u'injuri'] [u'judg', u'offer', u'encourag', u'women'] [u'possibl', u'jubile', u'oval'] [u'norfolk', u'sieg', u'end'] [u'chang', u'lifeguard', u'hour'] [u'privat', u'driver', u'strike'] [u'babi', u'french', u'centr', u'cite', u'head', u'butt'] [u'oper', u'say', u'major', u'threat', u'fish'] [u'opposit', u'call', u'earli', u'return', u'vline', u'servic'] [u'orang', u'show', u'sign', u'vandal'] [u'orchestra', u'envisag', u'school', u'program'] [u'osullivan', u'confid', u'irish', u'claim', u'tripl', u'crown'] [u'oven', u'deal', u'heat', u'plan'] [u'owner', u'crew', u'break', u'ship', u'strike'] [u'pakistan', u'lade', u'trail', u'go', u'cold'] [u'palm', u'reject', u'leadership', u'critic'] [u'pentagon', u'data', u'iraq', u'forc', u'unreli'] [u'pie', u'lose', u'fraser', u'knee', u'injuri'] [u'pie', u'lose', u'fraser', u'knee', u'injuri'] [u'leav', u'door', u'open', u'cut'] [u'wont', u'specul', u'respons', u'taiwan', u'conflict'] [u'poke', u'land', u'gold', u'coast', u'mayor', u'court'] [u'polic', u'awar', u'sack', u'offic', u'see', u'crime', u'boss'] [u'polic', u'condemn', u'attack', u'morgan'] [u'polic', u'continu', u'crash', u'probe'] [u'polic', u'fear', u'miss'] [u'polic', u'hope', u'reward', u'help', u'catch', u'famili', u'killer'] [u'polic', u'link', u'fatal', u'robberi', u'hold'] [u'polic', u'offer', u'underworld', u'hit', u'cash', u'hodson'] [u'polic', u'probe', u'farm', u'death'] [u'polic', u'probe', u'shoot', u'firebomb', u'link', u'sydney'] [u'polic', u'probe', u'soccer', u'link', u'violenc'] [u'polic', u'question', u'wit', u'parti', u'death'] [u'polic', u'union', u'fear', u'riot', u'inquiri', u'witch', u'hunt'] [u'push', u'continu', u'bushfir', u'inquest', u'coron'] [u'queen', u'send', u'commonwealth', u'baton'] [u'race', u'communiti', u'farewel', u'wangaratta', u'jockey'] [u'rail', u'expans', u'connect', u'reedi', u'creek'] [u'rain', u'help', u'eas', u'drought', u'condit'] [u'rat', u'warn', u'push', u'home', u'lend'] [u'remot', u'school', u'teacher', u'strike'] [u'resid', u'await', u'asbesto', u'test', u'result'] [u'return', u'aborigin', u'tradit', u'lifestyl', u'egan'] [u'chief', u'play', u'talk'] [u'roadsid', u'bomb', u'target', u'kosovo', u'presid'] [u'russia', u'pay', u'bounti', u'maskhadov'] [u'govt', u'tell', u'land', u'tape'] [u'sapphir', u'princess', u'add', u'sparkl', u'darwin', u'economi'] [u'satan', u'tell', u'bordertown', u'bank'] [u'savag', u'quit', u'wale', u'toshack'] [u'scientist', u'identifi', u'green', u'tea', u'cancer', u'fighter'] [u'scoutmast', u'paedophilia', u'sentenc', u'reduc'] [u'seafood', u'industri', u'lament', u'late', u'reef', u'chang'] [u'secur', u'forc', u'arrest', u'close', u'saddam'] [u'senior', u'recognis', u'contribut', u'communiti'] [u'shire', u'presid', u'stand', u'council'] [u'sinn', u'fein', u'warn', u'mccartney', u'sister'] [u'sister', u'call', u'releas', u'ivori', u'coast'] [u'updat', u'boost', u'bus', u'appeal'] [u'snitzel', u'draw', u'bad', u'saturday', u'slipper'] [u'south', u'australian', u'sell', u'label'] [u'storm', u'blame', u'late', u'vline', u'train'] [u'stosur', u'bow', u'indian', u'well'] [u'sydney', u'danc', u'compani', u'fund', u'talk'] [u'sydney', u'host', u'world', u'motor', u'race', u'event'] [u'tasmanian', u'lower', u'hous', u'approv', u'land', u'return'] [u'teacher', u'criticis', u'countri', u'accommod', u'servic'] [u'thomass', u'support', u'meet', u'melbourn'] [u'thorp', u'swim'] [u'toowoomba', u'face', u'vomit', u'diarrhoea'] [u'tourism', u'benefit', u'ensur', u'spirit', u'iii', u'futur'] [u'truck', u'industri', u'ask', u'govt', u'relax', u'fuel', u'excis'] [u'tuna', u'tycoon', u'hop', u'howard', u'dinner'] [u'turban', u'eden', u'garden', u'return'] [u'drink', u'doctor', u'away', u'studi'] [u'pretend', u'join', u'rock', u'hall', u'fame'] [u'estim', u'darfur', u'death', u'soar'] [u'union', u'secur', u'payment', u'walter', u'contractor'] [u'put', u'pressur', u'sinn', u'fein'] [u'student', u'accus', u'child'] [u'vail', u'tip', u'trade', u'deal', u'unit', u'arab', u'emir'] [u'develop', u'wind', u'farm', u'polici'] [u'viergev', u'extend', u'bike', u'challeng', u'lead'] [u'communiti', u'evacu', u'ingrid', u'near'] [u'alert', u'ingrid', u'batter', u'coast'] [u'waratah', u'roger', u'april'] [u'water', u'suppli', u'drop'] [u'watson', u'work', u'overtim', u'prepar', u'gabba', u'final'] [u'wild', u'resourc', u'boost', u'urban', u'aborigin', u'live'] [u'william', u'death', u'threat', u'offhand', u'comment'] [u'william', u'mix', u'court'] [u'william', u'urg', u'scot', u'lift', u'time'] [u'wine', u'grape', u'grower', u'ask', u'consid', u'harvest'] [u'work', u'death', u'rais', u'bounti', u'hunt', u'fear'] [u'worker', u'urg', u'oppos', u'chang'] [u'wound', u'red', u'ring', u'chang'] [u'writer', u'apologis', u'secret', u'bush', u'record'] [u'trade'] [u'expans', u'assess', u'miss'] [u'tendulkar', u'dravid', u'boost', u'india'] [u'contract', u'boost', u'memori', u'space'] [u'kill', u'russian', u'plane', u'crash'] [u'defi', u'abolish', u'stamp', u'duti'] [u'action', u'group', u'fight', u'saleyard', u'plan'] [u'adriano', u'trick', u'end', u'porto', u'reign'] [u'accus', u'assist', u'corbi', u'lawyer'] [u'move', u'extinguish', u'smoke'] [u'amend', u'land', u'handback', u'face', u'final', u'hurdl'] [u'anti', u'duck', u'shoot', u'campaign', u'claim', u'grow'] [u'apprentic', u'jockey', u'succumb', u'injuri'] [u'asbesto', u'specialist', u'secur', u'cyclon', u'ravag'] [u'auditor', u'general', u'investig', u'line', u'board'] [u'auditor', u'urg', u'stash', u'cash', u'report', u'give'] [u'aust', u'expect', u'activ', u'pacif'] [u'aust', u'kuwait', u'sign', u'deal', u'live', u'anim', u'trade'] [u'australian', u'howard', u'replac', u'well', u'leicest'] [u'award', u'recognis', u'blogger'] [u'bank', u'sector', u'push', u'market', u'forward'] [u'barwon', u'stand'] [u'beatti', u'stand', u'firm', u'tugun', u'bypass', u'rout'] [u'beatti', u'want', u'bribe', u'tape', u'releas', u'unalt'] [u'bemax', u'record', u'profit'] [u'better', u'accommod', u'urg', u'lure', u'teacher'] [u'bevan', u'hop', u'name', u'player', u'year'] [u'blast', u'hit', u'newspap', u'offic', u'baghdad'] [u'boe', u'contract', u'creat', u'job'] [u'boost', u'willow', u'tree'] [u'brazil', u'launch', u'alcohol', u'power', u'plane'] [u'bucknor', u'crack', u'centuri'] [u'bundaberg', u'offer', u'support', u'maryborough', u'art'] [u'bush', u'call', u'hezbollah', u'arm'] [u'busi', u'chamber', u'urg', u'council', u'refocus'] [u'cancer', u'concern', u'prompt', u'pine', u'playground'] [u'capit', u'lose', u'maher', u'china'] [u'bomb', u'explod', u'baquba'] [u'cardin', u'decri', u'vinci', u'code', u'cheap', u'lie'] [u'carnarvon', u'grind', u'water', u'storag', u'get'] [u'ceo', u'look', u'bush', u'blueprint'] [u'chamber', u'reject', u'union', u'worker', u'claim'] [u'channel', u'push', u'broadcast', u'right'] [u'chelsea', u'clear', u'premier', u'leagu', u'point'] [u'chopper', u'crash', u'victim', u'famili', u'back', u'coordin'] [u'christian', u'democrat', u'support', u'crucial', u'macquari'] [u'chrome', u'put', u'chariti', u'pressur'] [u'church', u'say', u'pay', u'indonesian', u'militari'] [u'club', u'learn', u'smoke', u'ban'] [u'coast', u'rail', u'expans', u'cater', u'grow', u'demand'] [u'colleg', u'founder', u'admit', u'diploma', u'fraud'] [u'commonwealth', u'doubl', u'standard', u'nigerian'] [u'communiti', u'health', u'servic'] [u'corbel', u'escap', u'censur', u'hospit', u'manag'] [u'corbel', u'welcom', u'doctor', u'shortag', u'inquiri'] [u'council', u'confid', u'weed', u'control'] [u'council', u'quandari', u'factori', u'futur'] [u'councillor', u'contest', u'bathurst', u'mayoralti'] [u'councillor', u'seek', u'support', u'wind', u'farm'] [u'council', u'sign', u'nativ', u'titl', u'agreement'] [u'council', u'quiz', u'holiday', u'let'] [u'council', u'urg', u'boost', u'public', u'transport', u'fund'] [u'council', u'heliport', u'shut'] [u'council', u'win', u'build', u'permit', u'disput'] [u'court', u'rule', u'fuel', u'load', u'bushfir', u'inquiri'] [u'cowboy', u'look', u'quick', u'start', u'bulldog'] [u'critic', u'blast', u'voluntari', u'student', u'union'] [u'cyclon', u'ingrid', u'strike', u'kimberley'] [u'daili', u'chore', u'order', u'latest', u'mobil', u'robot'] [u'darwin', u'nurs', u'break', u'point', u'opposit'] [u'dementia', u'studi', u'trial', u'herbal', u'remedi'] [u'denial', u'answer', u'itali'] [u'diplomat', u'admit', u'fondl', u'women', u'train'] [u'dive', u'extend', u'knowledg', u'convict', u'jetti'] [u'doctor', u'group', u'back', u'matern', u'fund', u'boost'] [u'doctor', u'plan', u'everest', u'experi'] [u'downer', u'applaud', u'itali', u'commit', u'iraq'] [u'doyl', u'look', u'blood', u'liber', u'quit'] [u'driver', u'arrest', u'vietnam', u'train', u'derail'] [u'driver', u'urg', u'slow', u'hazard', u'burn'] [u'driver', u'warn', u'linger', u'alcohol', u'effect'] [u'drug', u'plant', u'corbi', u'lawyer'] [u'echidna', u'death', u'puzzl', u'rspca'] [u'econom', u'growth', u'tip', u'slow'] [u'effort', u'save', u'threaten', u'parrot', u'pay'] [u'egan', u'indigen', u'health', u'claim', u'embarrass', u'govt'] [u'embassi', u'bomb', u'suspect', u'trial', u'begin'] [u'england', u'rest', u'player', u'ahead', u'ash'] [u'exclud', u'orchestra', u'bean', u'count', u'player'] [u'motorway', u'review', u'opposit', u'support'] [u'fals', u'astron', u'trade', u'earn', u'fine'] [u'farmer', u'sick', u'mobil', u'phone', u'woe'] [u'feder', u'fund', u'wild', u'fight'] [u'aborigin', u'judg', u'die'] [u'turn', u'nurs', u'home', u'work'] [u'forens', u'centr', u'delay', u'drug', u'charg', u'drop'] [u'fund', u'shortfal', u'stop', u'greek', u'festiv'] [u'urg', u'quit', u'male', u'club'] [u'global', u'warm', u'agenda', u'environ', u'minist'] [u'goussi', u'stand', u'trial', u'underworld', u'figur'] [u'govt', u'call', u'jail'] [u'govt', u'crack', u'south', u'coast', u'rail', u'vandal'] [u'govt', u'introduc', u'legisl', u'outlaw', u'compulsori'] [u'govt', u'rule', u'bird', u'inquiri'] [u'govt', u'urg', u'boost', u'quilpi', u'shire', u'road', u'fund'] [u'grain', u'ship', u'strike', u'talk', u'progress'] [u'grey', u'clear', u'harrison', u'admit', u'racial'] [u'hackett', u'lead', u'miami', u'swim', u'histori'] [u'hackett', u'track', u'break', u'world', u'record', u'coach'] [u'hanson', u'urg', u'futur', u'olympian', u'plan'] [u'hewitt', u'overpow', u'llodra', u'reach', u'fourth', u'round'] [u'hohn', u'say', u'test', u'select', u'wont', u'fast', u'track'] [u'hoil', u'start', u'waratah'] [u'home', u'attack', u'upset', u'brother'] [u'hope', u'remain', u'bradman', u'birthplac', u'heritag'] [u'hors', u'rid', u'trail', u'plan', u'surpris'] [u'hostel', u'evacu'] [u'ibrahim', u'stand', u'trial', u'standov', u'man', u'murder'] [u'inflat', u'fear', u'stock', u'drop'] [u'ingrid', u'flatten', u'remot', u'resort'] [u'intern', u'educ', u'meet', u'hold'] [u'iraqi', u'parliament', u'meet', u'time'] [u'isra', u'troop', u'pull', u'jericho'] [u'israel', u'open', u'world', u'largest', u'holocaust', u'museum'] [u'ivori', u'coast', u'rebel', u'threat', u'kill'] [u'jacob', u'keen', u'opposit', u'health', u'spokesman'] [u'jockey', u'death', u'prompt', u'safeti', u'review'] [u'judg', u'sum', u'extraordinari', u'doubl', u'murder', u'case'] [u'kean', u'recal', u'irish', u'squad'] [u'korean', u'veteran', u'want', u'recognit'] [u'labor', u'committe', u'ask', u'investig', u'riot'] [u'labor', u'slam', u'chang', u'ideolog', u'go'] [u'landhold', u'reconsid', u'wind', u'turbin'] [u'land', u'sale', u'probe', u'put', u'spotlight', u'tweed', u'councillor'] [u'latest', u'canker', u'outbreak', u'prompt'] [u'coordin', u'wast', u'anti', u'petrol', u'sniff', u'fund'] [u'leas', u'delay', u'worri', u'ental', u'hous', u'volunt'] [u'liquor', u'licenc', u'toughen', u'despit', u'busi', u'concern'] [u'lloyd', u'inspect', u'cyclon', u'damag'] [u'mackay', u'swimmer', u'continu', u'win', u'way'] [u'maldiv', u'coral', u'reef', u'clean', u'health'] [u'arrest', u'alleg', u'cezann', u'theft'] [u'maryborough', u'council', u'revamp', u'airport'] [u'match', u'winner', u'gilchrist', u'continu', u'assault', u'record'] [u'mill', u'qualifi', u'fastest', u'freestyl', u'semi'] [u'minist', u'defend', u'pull', u'detaine', u'kid'] [u'minist', u'hear', u'local', u'busi', u'concern'] [u'minist', u'urg', u'councillor', u'resign'] [u'miss', u'trio', u'safe', u'cyclon', u'zone'] [u'cotton', u'plant', u'east', u'kimberley'] [u'mortlak', u'power', u'station', u'approv', u'fall', u'govt'] [u'motlop', u'name', u'broadbridg', u'replac'] [u'mourinho', u'step', u'uefa', u'feud'] [u'bash', u'outsid', u'elector', u'offic'] [u'welcom', u'indigen', u'fund', u'audit'] [u'multi', u'million', u'dollar', u'project', u'unveil', u'burni'] [u'mulvihil', u'name', u'perth', u'assist', u'coach'] [u'murder', u'victim', u'famili', u'accept', u'killer', u'sentenc'] [u'nelson', u'introduc', u'legisl', u'compulsori'] [u'rubbish', u'remov', u'plan', u'moot', u'fraser'] [u'northern', u'grampian', u'councillor', u'individu'] [u'north', u'korea', u'rule', u'nuclear', u'talk'] [u'flinder', u'take', u'blame', u'blackout'] [u'govt', u'urg', u'focus', u'cross', u'border'] [u'opec', u'boost', u'product'] [u'orchardist', u'fear', u'appl', u'contamin', u'council'] [u'outrag', u'school', u'raid', u'immigr', u'offici'] [u'parliament', u'seal', u'atsic', u'fate'] [u'patrick', u'extend', u'virgin', u'takeov'] [u'player', u'associ', u'reject', u'drug', u'code', u'propos'] [u'defend', u'manufactur', u'chines', u'worker', u'plan'] [u'polic', u'attack', u'tri', u'arrest'] [u'polic', u'chief', u'criticis', u'riot', u'respons'] [u'polic', u'investig', u'pregnant', u'woman', u'bash'] [u'policeman', u'accus', u'drug', u'traffic', u'face'] [u'polic', u'search', u'father', u'miss', u'babi'] [u'polic', u'thank', u'resid', u'sieg', u'patienc'] [u'post', u'mortem', u'margaret', u'river', u'doubl'] [u'prison', u'staff', u'inadequ', u'train', u'union'] [u'public', u'feedback', u'seek', u'marina', u'plan'] [u'public', u'broom', u'growth', u'blueprint'] [u'pulp', u'propon', u'market', u'deal'] [u'pwcs', u'beat', u'loader', u'chanc'] [u'polic', u'free', u'wrong', u'prison'] [u'question', u'remain', u'telstra', u'sale', u'plan'] [u'rabbitoh', u'confirm', u'homebush'] [u'rann', u'promis', u'tougher', u'paedophil', u'sentenc'] [u'reef', u'author', u'sink', u'pontoon', u'plan'] [u'respit', u'care', u'shortag', u'leav', u'famili', u'struggl'] [u'rivkin', u'associ', u'appeal', u'insid', u'trade'] [u'rockhampton', u'hous', u'consid', u'suspici'] [u'rock', u'thrower', u'attack', u'palm', u'polic'] [u'rooney', u'break', u'cwealth', u'record'] [u'ross', u'aim', u'stawel', u'honour'] [u'safin', u'indian', u'well', u'hop', u'dent'] [u'govt', u'rule', u'extra', u'orchestra', u'fund'] [u'sandown', u'rememb', u'race', u'fall', u'victim'] [u'sandown', u'rememb', u'race', u'fall', u'victim'] [u'season', u'worker', u'face', u'child', u'assist', u'woe'] [u'senat', u'delay', u'miss', u'seaman', u'report'] [u'seven', u'push', u'broadcast', u'right'] [u'shoalhaven', u'firm', u'score', u'militari', u'contract'] [u'sieg', u'accus', u'remand', u'custodi'] [u'speed', u'minist'] [u'stanhop', u'stand', u'commission', u'protocol'] [u'student', u'detent', u'prompt', u'challeng', u'immigr'] [u'student', u'ralli'] [u'sudan', u'demand', u'proof', u'darfur', u'death', u'toll'] [u'sunshin', u'coast', u'murder', u'victim', u'identifi'] [u'support', u'gunn', u'fight'] [u'taiwan', u'presid', u'repeat', u'protest'] [u'talk', u'secur', u'isra', u'armi', u'handov', u'jericho'] [u'student', u'look', u'dementia', u'epidem'] [u'teen', u'charg', u'rap', u'assault'] [u'teen', u'guilti', u'council', u'chamber', u'blaze'] [u'thredbo', u'stage', u'communiti', u'develop', u'confer'] [u'miss', u'ingrid', u'devast', u'kimberley'] [u'miss', u'cyclon', u'zone'] [u'fine', u'tune', u'financ', u'amid', u'fund', u'uncertainti'] [u'million', u'want', u'work', u'labor', u'claim'] [u'cut', u'tie', u'australian', u'policeman', u'sierra'] [u'underworld', u'murder', u'eyewit', u'charg'] [u'union', u'negoti', u'grain', u'ship', u'disput'] [u'sign', u'exchang', u'agreement', u'harmoni'] [u'unit', u'plan', u'face', u'resid', u'opposit'] [u'unnam', u'local', u'buy', u'mountain', u'valley', u'station'] [u'wrap', u'probe', u'hariri', u'assassin'] [u'bank', u'help', u'pinochet', u'hide', u'money'] [u'budget', u'unsustain', u'greenspan', u'say'] [u'vanston', u'investig', u'manufactur', u'chines'] [u'vitamin', u'harm', u'larg', u'dose', u'studi', u'find'] [u'wander', u'seal', u'die', u'captiv'] [u'warrant', u'issu', u'drug', u'dealer'] [u'watkin', u'challeng', u'visit', u'north', u'coast'] [u'wind', u'hamper', u'cyclon', u'relief', u'effort'] [u'wineri', u'staff', u'focus', u'vintag'] [u'woman', u'charg', u'melton', u'stab'] [u'women', u'like', u'marriag', u'studi', u'find'] [u'young', u'mother', u'die', u'north', u'west', u'crash'] [u'yugoslavia', u'crime', u'tribun', u'issu'] [u'poison', u'philippin'] [u'actor', u'robert', u'blake', u'guilti', u'wife', u'murder'] [u'player', u'competit', u'right'] [u'question', u'corbi', u'drug', u'plant', u'claim'] [u'say', u'investig', u'need', u'stash'] [u'airlin', u'urg', u'rethink', u'foreign', u'worker', u'polici'] [u'alcohol', u'restrict', u'predict', u'cape', u'caravan'] [u'amwu', u'vow', u'fight', u'chang'] [u'anderson', u'admit', u'discuss', u'windsor', u'meet'] [u'answer', u'seek', u'prison', u'sieg'] [u'atsic', u'demis', u'bring', u'sad'] [u'australia', u'look', u'pressur', u'black'] [u'australian', u'biki', u'gang', u'global'] [u'australian', u'make', u'mark', u'colleg'] [u'australian', u'lead', u'coalit', u'naval', u'forc'] [u'author', u'survey', u'cyclon', u'ingrid', u'impact'] [u'backyard', u'burn', u'off', u'coast', u'urban', u'area'] [u'ballarat', u'petrol', u'cartel', u'fin'] [u'barbaro', u'jail', u'drug', u'charg'] [u'barra', u'play', u'aussi', u'chanc', u'cycl', u'champ'] [u'bash', u'death', u'accus', u'face', u'charg'] [u'berlusconi', u'qualifi', u'iraq', u'troop', u'withdraw', u'stanc'] [u'billiton', u'reach', u'extens', u'deal'] [u'plan', u'bulong', u'nickel', u'plant'] [u'blackburn', u'frustrat', u'insipid', u'liverpool'] [u'breakthrough', u'reach', u'disabl', u'disput'] [u'brit', u'toast', u'mosaic', u'record'] [u'brogden', u'put', u'condit', u'riot', u'inquiri', u'appear'] [u'bulldog', u'william', u'keen', u'cowboy'] [u'explos', u'kill'] [u'bush', u'nomin', u'wolfowitz', u'lead', u'world', u'bank'] [u'butt', u'babi', u'hand', u'week'] [u'buyer', u'confirm', u'mine', u'giant', u'gold'] [u'cahil', u'name', u'oceania', u'best'] [u'autist', u'children', u'treat', u'home'] [u'cambodian', u'readi', u'home', u'cancer', u'surgeri'] [u'cannabi', u'cash', u'seiz', u'hous'] [u'carr', u'back', u'complaint', u'immigr'] [u'charg', u'lay', u'morgan', u'bash'] [u'chelsea', u'escal'] [u'cherri', u'grower', u'access', u'japanes', u'market'] [u'chopper', u'flight', u'propon', u'plan'] [u'circus', u'stunt', u'jakarta', u'patrol'] [u'citi', u'struggl', u'address', u'environment', u'issu'] [u'citi', u'entranc', u'roadwork', u'start'] [u'club', u'leav', u'salari', u'propos'] [u'confer', u'put', u'spotlight', u'social', u'growth'] [u'corbi', u'trial', u'adjourn', u'amid', u'evid', u'claim'] [u'coron', u'rule', u'drown', u'cyclon', u'traci'] [u'council', u'seek', u'disast', u'centr', u'fund'] [u'council', u'tell', u'reveal', u'saleyard', u'detail'] [u'council', u'vote', u'wind', u'farm', u'visibl'] [u'council', u'wont', u'respons', u'darwin', u'waterfront'] [u'court', u'battl', u'cost', u'millmerran', u'shire', u'ratepay'] [u'court', u'revers', u'child', u'support', u'damag', u'decis'] [u'bear', u'break'] [u'death', u'aborigin', u'judg', u'prompt', u'tribut'] [u'disput', u'expect', u'disrupt', u'footi', u'season'] [u'dog', u'sign', u'young', u'gun'] [u'doubl', u'murder', u'suspect', u'remand', u'custodi'] [u'time', u'spark', u'irrig', u'fear'] [u'easter', u'driver', u'fuel'] [u'ecofish', u'pleas', u'pontoon', u'plan', u'reject'] [u'england', u'player', u'auction', u'shirt', u'injur', u'prop'] [u'environment', u'rule', u'hinder', u'develop', u'alcoa'] [u'farina', u'fire', u'broadsid', u'liverpool'] [u'farmer', u'meet', u'prefer', u'meander', u'develop'] [u'farm', u'group', u'beat', u'kuwait', u'sheep', u'trade'] [u'farm', u'lose', u'worker', u'coal', u'industri', u'boom'] [u'fear', u'air', u'queenstown', u'hospit'] [u'fisheri', u'closer', u'agreement'] [u'fish', u'transport', u'trial', u'offer', u'wide', u'rang'] [u'flatley', u'sharp', u'captain', u'red'] [u'worker', u'award', u'near'] [u'control', u'plead', u'guilti', u'child'] [u'student', u'sue', u'govt', u'suspens'] [u'gervai', u'return', u'extra', u'star'] [u'attend', u'princ', u'charl', u'wed'] [u'govt', u'accus', u'shirk', u'indigen', u'educ', u'duti'] [u'govt', u'fund', u'seek', u'tram', u'work'] [u'govt', u'give', u'assur', u'convent', u'centr', u'wont'] [u'govt', u'overse', u'asbesto', u'remov', u'cyclon'] [u'govt', u'pressur', u'reveal', u'spirit', u'advic'] [u'govt', u'rule', u'chang', u'sack', u'corrupt'] [u'govt', u'seek', u'answer', u'lightfoot', u'iraq', u'claim'] [u'govt', u'tell', u'tackl', u'issu', u'bushfir', u'probe'] [u'grazier', u'win', u'rural', u'develop', u'award'] [u'green', u'light', u'give', u'hill', u'plain', u'develop'] [u'gulf', u'land', u'claim', u'mediat', u'start', u'soon'] [u'haddin', u'play', u'macgil', u'transfer', u'talk'] [u'haddin', u'rule', u'time'] [u'harrison', u'stand', u'stormer', u'clash'] [u'hewitt', u'advanc', u'indian', u'well', u'quarter'] [u'hop', u'airfar', u'canberra', u'drawcard'] [u'howard', u'defend', u'senat', u'lightfoot', u'claim'] [u'hugh', u'jackman', u'broadway', u'award'] [u'human', u'bone', u'footwear', u'seafloor'] [u'icpa', u'discuss', u'rural', u'school', u'staff', u'concern'] [u'imag', u'mar', u'fuel', u'specul', u'planetari', u'life'] [u'incorrect', u'axl', u'greas', u'blame', u'fire', u'plane'] [u'indonesia', u'pledg', u'tsunami', u'corrupt'] [u'investig', u'launch', u'servic', u'station'] [u'jackson', u'juror', u'show', u'porn', u'collect'] [u'joint', u'patrol', u'monitor', u'south', u'pacif', u'fish'] [u'joint', u'project', u'overse', u'tsunami', u'spend'] [u'judg', u'acquit', u'sikh', u'india', u'trial'] [u'kandahar', u'blast', u'kill'] [u'kilkivan', u'shire', u'move', u'greater', u'transpar'] [u'korean', u'veteran', u'wreath', u'memori'] [u'labor', u'fear', u'fresh', u'request', u'troop', u'itali', u'quit'] [u'lack', u'volunt', u'ambul', u'offic', u'prompt'] [u'land', u'hurt', u'north', u'coast', u'nation'] [u'larkham', u'clear', u'melanoma', u'complic'] [u'larri', u'anthoni', u'stir', u'conflict'] [u'lawyer', u'welcom', u'plan', u'forens', u'centr', u'backlog'] [u'lead', u'chines', u'dissid', u'releas'] [u'high', u'demand', u'english', u'counti'] [u'lender', u'urg', u'region', u'lenienc'] [u'lightfoot', u'mull', u'legal', u'action', u'cash', u'smuggl'] [u'lightfoot', u'satisfi', u'iraq', u'claim'] [u'lightfoot', u'cash', u'smuggl', u'denial', u'credibl'] [u'livestock', u'grip', u'western'] [u'local', u'iraqi', u'happi', u'parliament', u'meet'] [u'digit', u'scrutinis'] [u'macgil', u'lick', u'lip', u'prospect', u'gabba', u'strip'] [u'malawi', u'free', u'journalist', u'palac', u'ghost'] [u'appear', u'court', u'theft', u'charg'] [u'arrest', u'drug', u'bust'] [u'charg', u'school', u'stab'] [u'jail', u'home', u'invas', u'assault'] [u'mann', u'narrow', u'knowl', u'bathurst'] [u'court', u'coast', u'doubl', u'murder'] [u'mick', u'keelti', u'question', u'evid', u'releas'] [u'mill', u'upstag', u'favourit', u'final'] [u'miner', u'deni', u'corpor', u'aust', u'skill'] [u'minist', u'censur', u'question', u'time', u'comment'] [u'drug', u'steal', u'hospit'] [u'mother', u'power', u'compani', u'electrocut'] [u'director', u'look', u'child', u'carer'] [u'greater', u'hume', u'shire', u'mayor', u'call', u'uniti'] [u'websit', u'aim', u'boost', u'visitor', u'number'] [u'melbourn', u'hous', u'plan'] [u'place', u'home', u'away'] [u'appl', u'import', u'decis', u'flaw', u'report'] [u'obes', u'setback', u'life', u'expect', u'advanc'] [u'oecd', u'correct', u'report', u'costello'] [u'price', u'record', u'market', u'ignor', u'opec'] [u'organis', u'impress', u'adventur', u'race', u'cours'] [u'paedophil', u'priest', u'prison', u'sentenc', u'extend'] [u'palestinian', u'faction', u'extend', u'period', u'calm'] [u'parent', u'battl', u'school', u'closur'] [u'paul', u'wolfowitz', u'back', u'head', u'world', u'bank'] [u'petrol', u'price', u'hike', u'tip', u'surg'] [u'pine', u'manufactur', u'dismiss', u'cancer', u'warn'] [u'plane', u'crash', u'kill', u'russia'] [u'plan', u'union', u'chang', u'worri', u'student', u'group'] [u'plan', u'strategi', u'soon'] [u'seek', u'explan', u'lightfoot', u'iraq', u'trip'] [u'welcom', u'norwegian', u'leader'] [u'polic', u'attack', u'chase'] [u'polic', u'deal', u'save', u'drug', u'traffick', u'death'] [u'polic', u'investig', u'fail', u'bank', u'theft', u'plan'] [u'polic', u'investig', u'fieri', u'road', u'death'] [u'polic', u'look', u'palm', u'stone', u'attack'] [u'polic', u'outrag', u'swan', u'slaughter'] [u'polit', u'wrangl', u'emerg', u'macquari', u'field', u'probe'] [u'porn', u'sentenc', u'anger', u'communiti'] [u'port', u'disput', u'wind', u'accc', u'hand', u'costello'] [u'prais', u'effort', u'port', u'hedland', u'jobless'] [u'primus', u'lead', u'port', u'flag', u'defenc'] [u'privat', u'compani', u'pass', u'safeti', u'check'] [u'protest', u'rail', u'worker', u'demand', u'protect'] [u'public', u'airport', u'sale', u'plan'] [u'putin', u'pitch', u'athlet', u'power', u'russia', u'olymp', u'host'] [u'racial', u'slure', u'level', u'waratah'] [u'rann', u'tell', u'chang', u'law', u'quiet'] [u'record', u'high', u'price', u'stock'] [u'relief', u'fund', u'pledg', u'ingrid', u'damag', u'assess'] [u'renmark', u'council', u'cast', u'doubt', u'govt', u'transport'] [u'report', u'suggest', u'telstra', u'chang'] [u'rescu', u'chopper', u'rule', u'chang'] [u'research', u'obes', u'caus', u'prematur'] [u'review', u'find', u'biosecur', u'australia', u'rule', u'lack'] [u'review', u'find', u'case', u'banana', u'import'] [u'rival', u'reel', u'wild'] [u'road', u'spike', u'help', u'polic', u'high', u'speed', u'chase'] [u'rollercoast', u'leav', u'market'] [u'rspca', u'give', u'duck', u'clear'] [u'rspca', u'want', u'maximum', u'penalti', u'kitten', u'abus'] [u'russian', u'electr', u'boss', u'surviv', u'attack', u'unharm'] [u'transport', u'minist', u'resign'] [u'saturn', u'probe', u'find', u'atmospher', u'moon'] [u'school', u'ram', u'railway', u'overpass'] [u'schu', u'bounc', u'malaysia'] [u'scientist', u'fear', u'major', u'quak', u'strike'] [u'scientist', u'unravel', u'factor'] [u'see', u'problem', u'voluntari', u'student', u'union', u'fee'] [u'senat', u'committe', u'call', u'child', u'commission'] [u'senat', u'reveal', u'tot', u'iraq', u'mission'] [u'shearer', u'doubl', u'help', u'newcastl', u'crush', u'olympiako'] [u'soccer', u'defend', u'secur', u'method'] [u'sonni', u'keen', u'cowboy'] [u'spotlight', u'fall', u'powerlin', u'impact', u'artefact'] [u'stanhop', u'prepar', u'chang', u'coron'] [u'strong', u'sale', u'send', u'cole', u'myer', u'profit', u'higher'] [u'student', u'march', u'union', u'chang'] [u'student', u'union', u'plan', u'mean', u'servic'] [u'supermarket', u'serv', u'liquor', u'licenc', u'suspens'] [u'survey', u'consid', u'weighti', u'issu'] [u'swan', u'hill', u'council', u'support', u'fluorid', u'opposit'] [u'swank', u'contest', u'fruit', u'fine'] [u'syria', u'complet', u'pullout', u'phase'] [u'taxi', u'centr', u'worker', u'settl', u'unfair', u'dismiss'] [u'teen', u'accus', u'morgan', u'bash', u'refus', u'bail'] [u'theori', u'aris', u'higher', u'bombala', u'cancer', u'rate'] [u'think', u'tank', u'call', u'accc', u'review', u'telstra'] [u'kill', u'accid'] [u'tonga', u'poll', u'close'] [u'trucki', u'health', u'spotlight'] [u'tumour', u'buster', u'trial', u'fund', u'boost'] [u'tweed', u'council', u'probe', u'hear', u'mayor', u'deni', u'wrongdo'] [u'vehicl', u'rollov'] [u'ulyssess', u'club', u'upset', u'council', u'effort'] [u'chief', u'hail', u'open', u'iraqi', u'parliament'] [u'fear', u'loss', u'govt', u'student', u'union', u'plan'] [u'union', u'seek', u'probe', u'corbi', u'airport', u'drug', u'claim'] [u'uranium', u'inquiri', u'assess', u'export', u'prospect'] [u'armi', u'suspect', u'murder', u'detaine', u'death'] [u'leader', u'support', u'sister', u'victim'] [u'militari', u'deni', u'troop', u'kill', u'iraqi', u'general'] [u'senat', u'back', u'explor', u'alaskan'] [u'vampir', u'bat', u'nippi', u'runner', u'research'] [u'wolfowitz', u'world', u'bank', u'nomin', u'worri', u'oxfam'] [u'woman', u'stab', u'outsid', u'school'] [u'woodsid', u'deni', u'link', u'senat', u'iraq', u'trip'] [u'scheme', u'target', u'kalgoorli', u'alcohol', u'woe'] [u'journalist', u'quill', u'award'] [u'actor', u'startl', u'real', u'life', u'polic', u'raid'] [u'acupunctur', u'reliev', u'pelvic', u'pain'] [u'aftershock', u'caus', u'damag', u'aceh'] [u'accus', u'contempt', u'murder', u'court', u'report'] [u'alcan', u'near', u'decis', u'pipelin', u'tender'] [u'alleg', u'paedophil', u'summon', u'crime'] [u'allic', u'mill', u'take', u'freestyl', u'titl'] [u'anti', u'duck', u'shoot', u'group', u'plan', u'rescu'] [u'apathi', u'like', u'boost', u'inform', u'vote', u'werriwa'] [u'appl', u'grower', u'welcom', u'senat', u'report', u'import'] [u'energi', u'beat', u'search'] [u'attack', u'friend', u'end', u'jail', u'sentenc'] [u'attack', u'prompt', u'warn'] [u'auslink', u'progam', u'elect', u'slush', u'fund'] [u'aust', u'indonesia', u'develop', u'secur', u'treati'] [u'australand', u'drop', u'sydney', u'plan'] [u'australia', u'indonesia', u'close', u'make'] [u'baggaley', u'singl', u'surf', u'lifesav'] [u'baker', u'jail', u'caravan', u'park', u'shoot'] [u'expect', u'job'] [u'beatti', u'threaten', u'restrict', u'nightclub', u'licenc'] [u'benitez', u'seek', u'rebuild', u'bridg', u'kewel'] [u'blue', u'honour'] [u'board', u'decid', u'windida', u'station', u'leas'] [u'bolivian', u'presid', u'pledg', u'remain', u'offic'] [u'bowler', u'decid', u'inter', u'club', u'play'] [u'bridg', u'fall', u'leav', u'injuri'] [u'bronco', u'lose', u'civoniceva', u'carrol', u'warrior', u'clash'] [u'buchanan', u'confid', u'rain', u'wont', u'save', u'zealand'] [u'bulgaria', u'scale', u'iraq', u'presenc'] [u'driver', u'cast', u'doubt', u'rise', u'offer'] [u'bush', u'hold', u'talk', u'belfast', u'sister'] [u'busi', u'group', u'optimist', u'growth', u'despit', u'flat'] [u'strategi', u'region', u'doctor'] [u'calm', u'promis', u'swan', u'slaughter', u'prosecut'] [u'campaign', u'promot', u'speed', u'limit'] [u'chainsaw', u'wield', u'face', u'court'] [u'children', u'wild', u'jacko', u'ranch', u'housekeep'] [u'china', u'free', u'polit', u'prison', u'ahead', u'rice', u'visit'] [u'chlorin', u'leak', u'forc', u'barrack', u'evacu'] [u'defend', u'terror', u'suspect', u'transfer'] [u'ciobo', u'broadsid', u'beatti', u'cruis', u'termin', u'stanc'] [u'coach', u'confid', u'right', u'deal', u'wont', u'hurt'] [u'cobra', u'clear', u'swedish', u'apart', u'build'] [u'communiti', u'urg', u'work', u'author'] [u'communiti', u'group', u'move', u'closer', u'classroom', u'fund'] [u'compani', u'move', u'clinch', u'explor', u'deal'] [u'conservationist', u'relinquish', u'sanctuari', u'dream'] [u'convent', u'centr', u'delay', u'prove', u'cost'] [u'corbi', u'support', u'meet', u'polic', u'ruddock'] [u'coron', u'call', u'nation', u'domest', u'violenc'] [u'costello', u'back', u'wolfowitz', u'nomin'] [u'council', u'give', u'mildura', u'develop'] [u'council', u'saleyard', u'issu', u'draw', u'mix', u'respons'] [u'council', u'stay', u'prostitut', u'debat'] [u'council', u'retain', u'structur'] [u'council', u'workforc', u'continu', u'grow'] [u'court', u'find', u'guilti', u'child', u'rape'] [u'cowboy', u'rein', u'bulldog'] [u'cowboy', u'unfaz', u'bulldog', u'hype'] [u'croc', u'bungl', u'spark', u'swim', u'scare'] [u'cyclon', u'figur', u'forecast', u'stir'] [u'cyclon', u'ingrid', u'stir', u'wyndham', u'water'] [u'cypress', u'pine', u'replac', u'ban', u'product'] [u'darwin', u'guilti', u'drug', u'charg'] [u'abandon', u'wellington'] [u'decis', u'residenti', u'subdivis', u'hold'] [u'deep', u'yellow', u'moot', u'uranium'] [u'desalin', u'plant', u'ahead', u'despit', u'caution'] [u'discount', u'store', u'move', u'closer', u'realiti'] [u'disgrac', u'judg', u'fin', u'drink', u'drive'] [u'domest', u'violenc', u'concern', u'stop', u'bottl', u'shop'] [u'dorset', u'eye', u'forestri', u'school'] [u'doubl', u'murder', u'juri', u'retir'] [u'doubt', u'cast', u'nation'] [u'driver', u'warn', u'rise', u'region', u'fuel', u'price'] [u'duck', u'hunter', u'warn', u'safeti', u'risk'] [u'edmiston', u'upstag', u'hanson', u'breast', u'stroke', u'heat'] [u'emerg', u'talk', u'repriev'] [u'english', u'polic', u'blow', u'park', u'scooter'] [u'plan', u'lead', u'smelter', u'prosecut'] [u'epilept', u'driver', u'jail', u'crash', u'death'] [u'discus', u'champ', u'save', u'drown'] [u'exhibit', u'pay', u'tribut', u'day', u'go'] [u'judg', u'shaw', u'plead', u'guilti', u'drink', u'drive'] [u'theophan', u'face', u'conspiraci', u'charg'] [u'export', u'task', u'forc', u'investig', u'bottleneck'] [u'fear', u'violenc', u'forc', u'illawarra', u'footbal', u'clash'] [u'feral', u'anim', u'threaten', u'fairi', u'penguin'] [u'ferri', u'report', u'contradict', u'lennon', u'green'] [u'fingerl', u'boost', u'fish', u'stock', u'program'] [u'lead', u'polic', u'steal', u'atm'] [u'arrest', u'wild', u'brawl'] [u'hospit', u'chlorin', u'leak'] [u'fourth', u'liber', u'announc', u'retir'] [u'fund', u'shortfal', u'forc', u'frog', u'hospit', u'close'] [u'secur', u'breach', u'plagu', u'prison'] [u'governor', u'open', u'revamp', u'wellshot', u'hotel'] [u'govt', u'contact', u'russia', u'alleg', u'plane', u'hijack'] [u'govt', u'hit', u'union', u'build', u'industri', u'deal'] [u'govt', u'respons', u'report', u'slow', u'matern', u'group'] [u'govt', u'review', u'cityrail', u'offic', u'power'] [u'govt', u'warn', u'tree', u'clear', u'compo', u'backlash'] [u'green', u'group', u'seek', u'contamin', u'protocol'] [u'grey', u'say', u'clear', u'racist', u'slur', u'claim'] [u'grower', u'use', u'report', u'find', u'canker'] [u'tax', u'labor', u'say'] [u'gulf', u'river', u'yield', u'fish', u'speci'] [u'gyroscop', u'problem', u'space', u'station', u'threat', u'say'] [u'harrison', u'charg', u'misconduct', u'racial', u'abus'] [u'health', u'minist', u'defend', u'hospit', u'action'] [u'high', u'school', u'steer', u'cattl', u'competit'] [u'founder', u'await', u'sentenc', u'court'] [u'tech', u'equip', u'shark', u'boat'] [u'homeless', u'rise', u'australia', u'fund', u'fall'] [u'howard', u'criticis', u'lightfoot'] [u'hurley', u'name', u'nbls', u'coach'] [u'chang', u'mind', u'say', u'retir'] [u'independ', u'dismiss', u'telstra', u'report'] [u'indonesia', u'target', u'aust', u'travel', u'warn', u'visa'] [u'injuri', u'boro', u'fail', u'emul', u'newcastl'] [u'inquiri', u'tell', u'feral', u'anim', u'control', u'inhuman'] [u'iran', u'slam', u'unhcr', u'ignor', u'detaine', u'abus'] [u'iraq', u'hero', u'win', u'militari', u'honour'] [u'island', u'festiv', u'attract', u'worldwid'] [u'isra', u'arrest', u'fail', u'bank', u'theft', u'plot'] [u'jackson', u'win', u'restrain', u'order', u'stalker'] [u'jess', u'kelli', u'refus', u'bail'] [u'juri', u'find', u'stab', u'self', u'defenc'] [u'kelli', u'take', u'pole', u'adelaid'] [u'labor', u'faction', u'nomin', u'white', u'replac'] [u'lacklustr', u'close', u'stock'] [u'larkham', u'clear', u'play', u'cancer', u'scare'] [u'legal', u'teacher', u'strike', u'question'] [u'legal', u'woman', u'feed', u'tube', u'continu'] [u'lewi', u'clarifi', u'concern'] [u'lightfoot', u'didnt', u'know', u'cash', u'kurd'] [u'lightfoot', u'reject', u'money', u'claim'] [u'lightfoot', u'stand', u'iraq', u'statement'] [u'lightfoot', u'tight', u'lip', u'contradict'] [u'lismor', u'council', u'lose', u'club'] [u'local', u'govt', u'inspector', u'push', u'council', u'allianc'] [u'luca', u'call', u'apolog', u'spend', u'spree', u'claim'] [u'luxuri', u'hotel', u'accommod', u'increas', u'tourist'] [u'macfarlan', u'talk', u'uranium', u'boom', u'risk'] [u'appear', u'court', u'theft', u'charg'] [u'escap', u'jail', u'throw', u'rock', u'tram'] [u'martha', u'stewart', u'court', u'overturn', u'convict'] [u'mask', u'thiev', u'steal', u'easter', u'atm'] [u'mcgauran', u'back', u'telstra', u'report'] [u'media', u'resourc', u'stock', u'lead', u'market', u'ralli'] [u'melbourn', u'crash', u'leav', u'dead'] [u'miner', u'get', u'innov', u'grant'] [u'safeti', u'review', u'deliv', u'find'] [u'minist', u'face', u'tree', u'clear', u'critic'] [u'need', u'age', u'popul'] [u'echuca', u'bendigo', u'train', u'servic'] [u'head', u'rural', u'skill', u'train', u'probe'] [u'nation', u'databas', u'help', u'fight', u'child', u'abus'] [u'nativ', u'american', u'decri', u'alaska', u'explor', u'rule'] [u'nepal', u'head', u'humanitarian', u'crisi'] [u'laser', u'therapi', u'help', u'enlarg', u'prostat', u'suffer'] [u'sweeten', u'cane', u'grower'] [u'treatment', u'prostrat', u'diseas'] [u'nine', u'mcguir', u'slam', u'right', u'process'] [u'norfolk', u'murder', u'reward', u'extend'] [u'want', u'snappi', u'decis', u'croc', u'hunt'] [u'nurs', u'meet', u'campaign'] [u'mail', u'fruit', u'fine', u'rule', u'swank'] [u'high', u'predict', u'help', u'lift', u'cotton', u'price'] [u'older', u'wiser', u'motlop', u'aim', u'game'] [u'opposit', u'push', u'lightfoot', u'inquiri'] [u'opposit', u'turn', u'heat', u'bacon'] [u'parliament', u'go', u'bird'] [u'paul', u'samo', u'rest', u'brumbi'] [u'pedestrian', u'cycl', u'bridg', u'link', u'pathway'] [u'pilbara', u'artist', u'shine', u'sydney'] [u'plantagenet', u'stand', u'footi', u'club', u'stanc'] [u'player', u'associ', u'dismiss', u'club', u'rugbi', u'race'] [u'player', u'confid', u'secur', u'deal'] [u'player', u'confid', u'deal'] [u'polic', u'await', u'drug', u'drive', u'test', u'result'] [u'polic', u'consid', u'industri', u'unrest', u'death'] [u'polic', u'hunt', u'attack', u'man', u'bite'] [u'polic', u'politicis', u'mccartney', u'death', u'sinn', u'fein'] [u'polic', u'question', u'woman', u'girl', u'abduct'] [u'poppi', u'produc', u'number', u'wake', u'global', u'glut'] [u'popular', u'ball', u'scrap'] [u'premier', u'call', u'parent', u'respons'] [u'princ', u'harri', u'gaff', u'broaden', u'brit', u'wwii', u'knowledg'] [u'prison', u'escape', u'jail', u'extra', u'week'] [u'properti', u'owner', u'group', u'call', u'treasur'] [u'properti', u'violent', u'offenc', u'drop'] [u'proud', u'famili', u'farewel', u'jockey'] [u'push', u'timber', u'process', u'project'] [u'racial', u'slur', u'heap', u'pressur', u'super', u'leader'] [u'racism', u'threaten', u'rock', u'rugbi', u'foundat'] [u'rain', u'interrupt', u'class', u'cricket', u'final'] [u'rain', u'disrupt', u'class', u'cricket', u'final'] [u'rapper', u'guilti', u'conspiraci', u'perjuri'] [u'real', u'estat', u'squeez', u'comment', u'joke', u'quinlan'] [u'red', u'scalp', u'chief', u'zealand', u'rout'] [u'chang', u'resid', u'accus', u'expect'] [u'sieg', u'accus', u'label', u'model', u'inmat'] [u'sieg', u'prompt', u'prison', u'classif', u'review'] [u'skill', u'shortag', u'strong', u'dollar', u'manufactur'] [u'sleep', u'apnoea', u'rais', u'heart', u'attack', u'risk'] [u'solid', u'barrier', u'propos', u'stop', u'cane', u'toad', u'invas'] [u'solomon', u'rebel', u'keke', u'jail', u'life'] [u'south', u'coast', u'nurs', u'rise', u'call'] [u'statist', u'mark', u'decreas', u'unemploy'] [u'studi', u'lend', u'support', u'plan'] [u'sudan', u'slap', u'travel', u'restrict', u'diplomat'] [u'turf', u'club', u'beat', u'delorain', u'race'] [u'teacher', u'drug', u'alleg', u'shock', u'communiti'] [u'teen', u'question', u'southport', u'bash'] [u'tenant', u'push', u'crackdown', u'public', u'hous', u'lout'] [u'snub', u'sinn', u'fein', u'patrick'] [u'tree', u'plant', u'aim', u'save', u'threaten', u'possum'] [u'trundl', u'teacher', u'year'] [u'tsunami', u'meet', u'seek', u'plug', u'gap'] [u'tweed', u'mayor', u'face', u'sack', u'prospect'] [u'dismiss', u'staff', u'congo', u'abus', u'inquiri', u'continu'] [u'want', u'coach', u'head', u'coach', u'associ'] [u'water', u'treatment', u'plant', u'oper', u'delay'] [u'webb', u'shot', u'pace', u'arizona'] [u'whan', u'talk', u'polic', u'number'] [u'william', u'await', u'sentenc'] [u'windsor', u'hang', u'page', u'report'] [u'wine', u'industri', u'inquiri', u'consid', u'grape', u'price'] [u'winter', u'rain', u'tip', u'east', u'north', u'stay', u'warm'] [u'youth', u'game', u'give', u'bendigo', u'boost'] [u'zollo', u'white', u'posit'] [u'kill', u'pakistan', u'road', u'accid'] [u'miner', u'trap', u'explos'] [u'chopper'] [u'agassi', u'injuri', u'send', u'hewitt', u'semi'] [u'alonso', u'take', u'provision', u'pole', u'malaysia'] [u'ambros', u'take', u'race', u'adelaid'] [u'ancient', u'perfumeri', u'cyprus'] [u'athlet', u'coach', u'lose', u'job'] [u'aussi', u'trail', u'hill', u'lead'] [u'australian', u'accus', u'bomb', u'hoax', u'russian', u'flight'] [u'australia', u'lunch'] [u'brazilian', u'presid', u'seek', u'clemenc', u'drug'] [u'bridg', u'visa', u'leav', u'famili', u'limbo', u'migrat'] [u'bull', u'stamp', u'hurrican'] [u'bush', u'sharon', u'meet', u'texa'] [u'cahil', u'excit', u'merseysid', u'derbi'] [u'bomb', u'wound', u'beirut'] [u'charless', u'wed', u'bless', u'televis'] [u'china', u'criticis', u'interfer', u'taiwan'] [u'claim', u'seasprit', u'fleet', u'troubl'] [u'comatos', u'woman', u'feed', u'tube', u'remov'] [u'condoleezza', u'rice', u'arriv', u'seoul'] [u'council', u'want', u'uniform', u'pine', u'playground', u'plan'] [u'crusad', u'crush', u'blue'] [u'cultur', u'wast', u'cost', u'year'] [u'darwin', u'teen', u'guilti', u'worker', u'murder'] [u'deleg', u'refus', u'visa', u'stanc'] [u'disabl', u'group', u'embrac', u'taxi', u'servic', u'review'] [u'dutch', u'iraq', u'crime', u'case', u'open'] [u'emot', u'homecom', u'carey'] [u'russia', u'demand', u'syrian', u'pullout', u'lebanon'] [u'state', u'ward', u'need', u'support', u'network'] [u'feder', u'sharapova', u'reach', u'indian', u'well', u'semi'] [u'fli', u'kiwi', u'cours', u'world', u'seven'] [u'footbal', u'violenc', u'inquiri', u'seek', u'submiss'] [u'forens', u'scienc', u'upgrad', u'catch', u'crook'] [u'injur', u'smash'] [u'kill', u'kirkuk', u'bomb', u'blast'] [u'vow', u'action', u'log', u'climat', u'chang'] [u'geebung', u'investig'] [u'georg', u'sheep', u'come'] [u'greek', u'sprinter', u'clear', u'dope', u'charg'] [u'green', u'demand', u'ferri', u'submiss'] [u'green', u'urg', u'howard', u'discuss', u'democraci', u'china'] [u'health', u'union', u'link', u'privatis', u'dirti'] [u'hewitt', u'face', u'roddick', u'sharapova', u'thump'] [u'hill', u'deni', u'seasprit', u'fleet', u'troubl'] [u'historian', u'fear', u'record'] [u'hous', u'kill', u'children'] [u'iceland', u'grant', u'chess', u'champ', u'fischer', u'citizenship'] [u'iraqi', u'coalit', u'expect', u'week'] [u'israel', u'ban', u'gaza', u'settler', u'influx'] [u'japan', u'set', u'time', u'beef'] [u'juri', u'continu', u'deliber', u'doubl', u'murder'] [u'justic', u'risk', u'chang', u'evid', u'law'] [u'klim', u'break', u'butterfli', u'drought'] [u'kolkata', u'test', u'balanc'] [u'labor', u'claim', u'victori', u'werriwa', u'elect'] [u'labor', u'expect', u'retain', u'latham', u'seat'] [u'labor', u'want', u'lightfoot', u'probe'] [u'lebanon', u'presid', u'urg', u'talk'] [u'lebanon', u'pull', u'eurovis', u'isra'] [u'letterman', u'catch', u'kidnap', u'plot'] [u'liverpool', u'meet', u'juventus', u'champion', u'leagu'] [u'malaysia', u'anwar', u'call', u'corrupt', u'clamp'] [u'go', u'rampag', u'loader'] [u'kill', u'shark', u'attack'] [u'massa', u'put', u'sauber', u'malaysia'] [u'miner', u'council', u'seek', u'explor', u'incent'] [u'minist', u'attempt', u'fell', u'grazier', u'land', u'clear'] [u'minist', u'talk', u'result', u'prison', u'task', u'forc'] [u'mix', u'finish', u'stock'] [u'monti', u'python', u'shift', u'antic', u'stage'] [u'obes', u'link', u'diabet'] [u'suburb', u'construct', u'worker', u'demand'] [u'tradit', u'islam', u'servic', u'hold', u'despit'] [u'northern', u'farmer', u'easter', u'honour'] [u'resid', u'await', u'cyclon'] [u'teen', u'guilti', u'murder'] [u'number', u'child', u'worker', u'grow', u'eurpoean'] [u'price', u'hover', u'near', u'record', u'high'] [u'pakistan', u'success', u'test', u'long', u'rang', u'missil'] [u'parent', u'bulldoz', u'firm', u'gaza', u'death'] [u'parol', u'abscond', u'recaptur', u'interst'] [u'patrick', u'win', u'control', u'virgin', u'blue'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'seek', u'extrem', u'violent', u'attack'] [u'polic', u'tight', u'lip', u'alleg', u'imag'] [u'princess', u'mari', u'wave', u'tasmania', u'goodby'] [u'prison', u'comput', u'secur', u'despit', u'inmat', u'access'] [u'protest', u'hunter', u'urg', u'play', u'safe'] [u'protest', u'ralli', u'brisban', u'tunnel'] [u'quiet', u'ogradi', u'prepar', u'milan', u'remo'] [u'raider', u'continu', u'knight', u'miseri'] [u'reform', u'group', u'call', u'justic', u'dept', u'scrap'] [u'rescu', u'worker', u'search', u'survivor'] [u'rice', u'seek', u'chines', u'support', u'resum', u'north', u'korea'] [u'safeti', u'bureau', u'await', u'jetstar', u'incid', u'report'] [u'safeti', u'justic', u'minist'] [u'scoresbi', u'letter', u'lie', u'lie'] [u'scot', u'fuel', u'hatr', u'england', u'coach'] [u'person', u'famili', u'alleg', u'game', u'discrimin'] [u'soldier', u'hospitalis', u'townsvill'] [u'soldier', u'hospit', u'infect'] [u'soldier', u'recoveri', u'diseas', u'expert', u'say'] [u'south', u'african', u'politician', u'fin', u'travel', u'rort'] [u'storm', u'blow', u'dragon'] [u'stratum', u'streak', u'slipper', u'victori'] [u'struggl', u'bull', u'slim', u'lead'] [u'sturt', u'street', u'school', u'fund', u'gross', u'extravag'] [u'tasmanian', u'kit', u'world', u'women'] [u'texa', u'cheerlead', u'tell', u'clean', u'act'] [u'children', u'kill'] [u'martyn', u'domin', u'kiwi', u'attack'] [u'track', u'station', u'hit'] [u'tradit', u'gift', u'seal', u'japanes', u'princesss', u'betroth'] [u'transport', u'campaign', u'seek', u'tran', u'tasman', u'equal'] [u'tsunami', u'appeal', u'near'] [u'union', u'welcom', u'rule'] [u'court', u'alli', u'retain', u'emption', u'strategi'] [u'foreign', u'polici', u'architect', u'kennan', u'die'] [u'feel', u'pinch', u'labour', u'shortag'] [u'wale', u'gear', u'grand', u'slam', u'parti'] [u'mart', u'settl', u'crimin', u'charg'] [u'waratah', u'extend', u'undef'] [u'warrior', u'stun', u'bronco'] [u'werriwa', u'elect', u'count', u'begin'] [u'werriwa', u'voter', u'head', u'poll'] [u'windi', u'recal', u'lara', u'test', u'duti'] [u'wolfowitz', u'hit', u'inaccur', u'caricatur'] [u'work', u'inquiri', u'want', u'indigen', u'success', u'stori'] [u'zimbabw', u'opposit', u'seek', u'food'] [u'afghan', u'flood', u'claim', u'live'] [u'afghan', u'parliamentari', u'elect', u'place'] [u'alonso', u'pole', u'malaysia', u'webber', u'fourth'] [u'alonso', u'win', u'malaysia', u'webber', u'crash'] [u'ambros', u'make', u'perfect', u'start', u'season'] [u'anderson', u'back', u'pacif', u'highway', u'toll'] [u'unveil', u'cheaper', u'brain', u'monitor'] [u'barca', u'surg', u'clear', u'spain'] [u'beatti', u'dismiss', u'lawyer', u'forens', u'evid'] [u'beazley', u'see', u'labor', u'comeback', u'werriwa'] [u'bellami', u'fire', u'bhoy'] [u'black', u'cap'] [u'blair', u'back', u'nake', u'chef', u'school', u'meal', u'menu'] [u'blue'] [u'blue', u'pull', u'nail', u'bite', u'victori'] [u'blue', u'trio', u'face', u'super', u'hear'] [u'bomb', u'hit', u'crowd', u'pakistan', u'shrine'] [u'kill', u'road', u'accid'] [u'broader', u'base', u'vital', u'say', u'turnbul'] [u'centenarian', u'number', u'multipli'] [u'china', u'blast', u'death', u'toll', u'rise'] [u'china', u'implant', u'chip', u'panda'] [u'chines', u'explos', u'toll', u'doubl'] [u'church', u'commemor', u'year', u'worship'] [u'clijster', u'take', u'indian', u'well', u'titl'] [u'vow', u'return', u'mandatori', u'sentenc'] [u'club', u'closur', u'forc', u'digger'] [u'comatos', u'woman', u'husband', u'slam', u'govt', u'intervent'] [u'communiti', u'shock', u'death'] [u'control', u'burn', u'put', u'cloud', u'melbourn'] [u'coron', u'investig', u'tragic', u'blaze'] [u'costello', u'attack', u'state', u'tax', u'smokescreen'] [u'council', u'call', u'public', u'meet', u'tunnel'] [u'court', u'place', u'tree', u'clear', u'challeng', u'seeney'] [u'crocker', u'charg', u'cooge', u'arrest'] [u'piero', u'give', u'juve', u'edg'] [u'distress', u'shark', u'attack', u'wit', u'head', u'shore'] [u'dravid', u'heroic', u'rais', u'indian', u'victori', u'hop'] [u'england', u'good', u'scotland'] [u'split', u'remain', u'real', u'danger', u'warn', u'stoddart'] [u'farmer', u'press', u'brake', u'light', u'rule'] [u'figur', u'reveal', u'hous', u'shortfal'] [u'death', u'accid', u'polic'] [u'flounder', u'black', u'cap', u'mountain', u'climb'] [u'famili', u'murder', u'suicid'] [u'franc', u'steamrol', u'itali'] [u'french', u'tourist', u'miss', u'late', u'night', u'swim'] [u'gilchrist', u'martyn', u'punish'] [u'giteau', u'star', u'brumbi', u'edg', u'cat'] [u'govt', u'eye', u'privat', u'sector', u'fibr', u'optic', u'rollout'] [u'hackett', u'focus', u'break'] [u'half', u'crime', u'unreport', u'opposit'] [u'hay', u'credit', u'werriwa', u'rat', u'rise'] [u'hewitt', u'meet', u'feder', u'indian', u'well', u'final'] [u'howard', u'rule', u'major', u'detent', u'chang'] [u'consid', u'team', u'champion', u'trophi'] [u'illiter', u'student', u'abandon', u'govt'] [u'see', u'year', u'high', u'price'] [u'ingrid', u'clean', u'month'] [u'inmat', u'escap', u'bunburi', u'prison'] [u'jetstar', u'deni', u'malfunct', u'live', u'risk'] [u'johnson', u'fail', u'cross', u'countri', u'titl', u'defenc'] [u'kezman', u'doubl', u'see', u'chelsea', u'close', u'titl'] [u'king', u'complet', u'trick'] [u'kravitz', u'snub', u'brazilian', u'court'] [u'kumbl', u'bowl', u'india', u'massiv', u'victori'] [u'kyushu', u'earthquak', u'injur'] [u'lara', u'omit', u'contract', u'disput'] [u'lebanes', u'polit', u'divis', u'deepen', u'bomb'] [u'manila', u'bomb', u'terror', u'relat'] [u'man', u'romp', u'mar', u'hopoat', u'send'] [u'moral', u'high', u'troop', u'await', u'iraq', u'deploy'] [u'mulvihil', u'name', u'assist', u'coach'] [u'nigerian', u'minist', u'arrest', u'briberi', u'claim'] [u'problem', u'littl', u'progress', u'russia', u'ukrain'] [u'scheme', u'combat', u'skill', u'shortag'] [u'ogradi', u'fourth', u'remo'] [u'dead', u'train', u'collid'] [u'kill', u'injur', u'japan', u'quak'] [u'kill', u'blast', u'qatar', u'theatr'] [u'peacekeep', u'help', u'somalian', u'govt'] [u'perri', u'lead', u'round', u'hold'] [u'piper', u'lead', u'paddi', u'parad', u'time'] [u'plan', u'hitch', u'leav', u'shack', u'owner', u'limbo'] [u'play', u'underway', u'wellington'] [u'fear', u'lose', u'lightfoot', u'say'] [u'polic', u'charg', u'indonesian', u'pilot', u'activist', u'death'] [u'polic', u'investig', u'tip'] [u'polic', u'investig', u'random', u'sydney', u'shoot'] [u'polic', u'search', u'bodi', u'shark', u'attack'] [u'polic', u'seek', u'gang', u'steal', u'car', u'robberi'] [u'polic', u'suspect', u'brother'] [u'pope', u'make', u'silent', u'palm', u'sunday', u'appear'] [u'power', u'quak', u'injur', u'japan'] [u'protest', u'reiter', u'opposit', u'iraq'] [u'protest', u'mark', u'iraq', u'invas', u'anniversari'] [u'pub', u'shut', u'amid', u'grog', u'alleg'] [u'putin', u'visit', u'ukrain', u'leader'] [u'rabbitoh', u'past', u'eel'] [u'rain', u'kill', u'afghani', u'destroy', u'home'] [u'rann', u'press', u'need', u'driver', u'drug', u'test'] [u'refuge', u'camp', u'ambush', u'wound'] [u'rooster', u'panther'] [u'sarin', u'attack', u'rememb', u'tokyo'] [u'search', u'killer', u'shark', u'call'] [u'search', u'killer', u'shark', u'continu'] [u'senior', u'iraqi', u'policeman', u'kill', u'mosul'] [u'seventeen', u'kill', u'china', u'explos'] [u'shark', u'sink', u'trace'] [u'singl', u'woman', u'seek', u'uniform'] [u'spike', u'thief', u'high', u'speed', u'getaway'] [u'springborg', u'shrug', u'leadership', u'critic'] [u'star', u'turn', u'mandela', u'aid', u'drive'] [u'tasmanian', u'protest', u'ralli', u'iraq'] [u'teen', u'troubl', u'text', u'tendon'] [u'territori', u'woo', u'skill', u'migrant'] [u'thousand', u'ralli', u'support', u'gaza', u'pullout'] [u'tiwi', u'footbal', u'pioneer', u'enter', u'hall', u'fame'] [u'kill', u'road'] [u'polic', u'arrest', u'madrid', u'bomb', u'suspect'] [u'congress', u'fight', u'comatos', u'woman', u'aliv'] [u'desir', u'attack', u'north', u'korea', u'rice'] [u'studi', u'measur', u'human', u'exposur'] [u'fisheri', u'offici', u'hunt', u'killer', u'shark'] [u'wale', u'beat', u'ireland', u'histor', u'grand', u'slam'] [u'opposit', u'leader', u'name', u'shadow', u'cabinet'] [u'waugh', u'inspir', u'dravid', u'twin', u'centuri'] [u'webber', u'prais', u'driver', u'meet'] [u'youth', u'concert', u'benefit', u'tsunami', u'victim'] [u'year', u'jail', u'term', u'reinstat', u'lose', u'appeal'] [u'charg', u'coast', u'child', u'porn', u'crackdown'] [u'academ', u'urg', u'govt', u'open', u'transport'] [u'stop', u'racism'] [u'afghanistan', u'oper', u'begin', u'flood'] [u'fund', u'western', u'sydney', u'sport', u'centr'] [u'airport', u'secur', u'breach', u'prompt', u'investig'] [u'alleg', u'grog', u'lead', u'suspens'] [u'annan', u'urg', u'member', u'poverti', u'histori'] [u'anti', u'duck', u'shooter', u'maintain'] [u'appeal', u'launch', u'help', u'victim', u'parent'] [u'aquacultur', u'industri', u'fear', u'chemic', u'drift', u'impact'] [u'atsic', u'demis', u'see', u'treati', u'killer'] [u'attack', u'kill', u'year', u'iraq', u'invas'] [u'attorney', u'general', u'talk', u'immun', u'terror'] [u'aussi', u'dollar', u'climb', u'greenback'] [u'aust', u'artist', u'shine', u'sxsw', u'festiv'] [u'aust', u'urg', u'choos', u'mediat', u'juri'] [u'bali', u'court', u'jail', u'australian', u'month'] [u'predict', u'loss', u'offic'] [u'bike', u'rider', u'turn', u'forc', u'celebr'] [u'black', u'cap', u'rain', u'stop', u'play'] [u'bomb', u'squad', u'call', u'defus', u'hand', u'grenad'] [u'brazen', u'attack', u'teen', u'prompt', u'polic', u'concern'] [u'british', u'govt', u'back', u'retir'] [u'brogden', u'say', u'carr', u'govt', u'blame', u'death'] [u'bubbl', u'burst', u'illawarra', u'hous', u'price'] [u'bulk', u'bill', u'worri', u'emerg', u'kempsey'] [u'bush', u'disadvantag', u'privat', u'health', u'cover', u'studi'] [u'bush', u'readi', u'approv', u'schiavo'] [u'bush', u'sign', u'emerg', u'schiavo'] [u'cabinet', u'soften', u'polici', u'long', u'term', u'detent'] [u'medic', u'student', u'train', u'rethink'] [u'separ', u'detent', u'asylum', u'seeker'] [u'cambodian', u'polic', u'shoot', u'protest', u'land', u'disput'] [u'cannabi', u'policeman', u'home', u'court', u'hear'] [u'cat', u'dog', u'toll', u'penguin'] [u'centuri', u'close', u'week'] [u'charman', u'lappin', u'lion'] [u'church', u'award', u'armidal', u'woman'] [u'compani', u'defam', u'plan', u'wast', u'time', u'welford'] [u'councillor', u'talk', u'bega', u'plan'] [u'council', u'pool', u'site', u'delay', u'threaten', u'steel', u'offer'] [u'council', u'forc', u'merger', u'opposit'] [u'council', u'seek', u'role', u'fight', u'assault'] [u'council', u'seek', u'legal', u'advic', u'liabil'] [u'cours', u'offer', u'soldier', u'intens', u'train'] [u'cricket', u'talk', u'reach', u'stalem'] [u'darwin', u'assist', u'tiwi', u'clean'] [u'delorean', u'design', u'die', u'age'] [u'detaine', u'support', u'welcom', u'possibl', u'visa', u'chang'] [u'disabl', u'access', u'problem', u'mildura'] [u'test', u'show', u'abbott', u'father'] [u'domest', u'violenc', u'cost'] [u'domest', u'violenc', u'top', u'health', u'risk', u'women'] [u'duck', u'shoot', u'season', u'begin', u'unev'] [u'ellison', u'accus', u'state', u'nurtur', u'illeg', u'drug'] [u'campaign', u'uranium'] [u'environ', u'minist', u'cut', u'militari', u'exercis', u'green'] [u'euroa', u'resid', u'oppos', u'servic', u'station', u'plan'] [u'factori', u'spark', u'explos'] [u'father', u'rescu', u'boat', u'mishap'] [u'fear', u'algal', u'bloom', u'lead', u'fish', u'kill'] [u'feder', u'fund', u'more', u'galleri'] [u'feder', u'down', u'hewitt', u'indian', u'well', u'final'] [u'fiji', u'crush', u'zealand', u'world', u'seven'] [u'film', u'censorship', u'board', u'give', u'thumb'] [u'fishermen', u'urg', u'stay', u'clear', u'gulf', u'dolphin'] [u'forest', u'agreement', u'near', u'complet'] [u'minist', u'deni', u'knowledg', u'corrupt'] [u'forum', u'tell', u'cane', u'toad', u'spread', u'stop'] [u'policemen', u'report', u'kill', u'kyrgyz', u'protest'] [u'german', u'festiv', u'draw', u'grow'] [u'gold', u'coast', u'urg', u'offer', u'futur', u'propos'] [u'governor', u'talk', u'ilfracomb', u'effort'] [u'govt', u'boost', u'fund', u'children', u'cancer', u'servic'] [u'govt', u'plan', u'widen', u'travel', u'concess', u'scheme'] [u'govt', u'prepar', u'detent', u'review'] [u'govt', u'urg', u'support', u'land', u'migrat'] [u'govt', u'urg', u'relax', u'plan', u'volunt', u'polic'] [u'green', u'light', u'busker', u'blue', u'root', u'festiv'] [u'green', u'space', u'orang', u'sell'] [u'green', u'urg', u'govt', u'reconsid', u'nauru', u'detent'] [u'group', u'ponder', u'toxic', u'dump', u'plan', u'export', u'inquiri'] [u'group', u'stand', u'outback', u'highway', u'fund'] [u'gunn', u'boost', u'woodchip', u'output'] [u'hand', u'grenad', u'train', u'devic'] [u'harbhajan', u'receiv', u'report'] [u'herron', u'purchas', u'fuel', u'sigma', u'profit'] [u'heskey', u'recal', u'england', u'squad'] [u'higher', u'diesel', u'fuel', u'price', u'predict'] [u'high', u'land', u'tax', u'blame', u'rent', u'increas'] [u'home', u'intrus', u'theft', u'lowest', u'tasmania'] [u'hopoat', u'face', u'uncertain', u'futur'] [u'hopoat', u'head', u'long', u'list', u'boy'] [u'hospit', u'clarifi', u'fluorid', u'awar', u'scheme'] [u'hous', u'estat', u'pleas', u'bottl', u'shop', u'plan'] [u'hundr', u'gather', u'promot', u'racial', u'harmoni'] [u'hundr', u'protest', u'har', u'race', u'pullout'] [u'indonesian', u'woman', u'execut', u'tripl', u'murder'] [u'inter', u'hang', u'fiorentina'] [u'intern', u'legal', u'forum', u'debat', u'terror'] [u'irish', u'tourist', u'charg'] [u'isra', u'handov', u'tulkarm', u'delay'] [u'jacob', u'outlin', u'substanc', u'abus', u'stanc'] [u'japan', u'resid', u'spend', u'sleepless', u'night', u'quak'] [u'john', u'undergo', u'scan'] [u'judd', u'readi', u'life', u'brownlow'] [u'kenni', u'demand', u'releas', u'guantanamo', u'video'] [u'king', u'hawk', u'dream'] [u'kyrgyzstan', u'protest', u'burn', u'polic', u'station'] [u'landhold', u'warn', u'rise', u'valuat'] [u'lennon', u'celebr', u'anniversari'] [u'librari', u'go', u'high', u'tech'] [u'liverpool', u'claim', u'crucial', u'everton'] [u'lobbi', u'group', u'consid', u'tree', u'clear', u'challeng'] [u'log', u'decis', u'expect', u'south', u'sister', u'coup'] [u'mile', u'spark', u'safeti', u'fear'] [u'declar', u'jihad', u'court', u'hear'] [u'guilti', u'flatmat', u'murder'] [u'hurt', u'south', u'kalgoorli', u'home', u'invas'] [u'surviv', u'fieri', u'crash'] [u'court', u'hous', u'blaze'] [u'marina', u'develop', u'china', u'plan'] [u'market', u'climb', u'morn', u'trade'] [u'mayor', u'confid', u'council', u'inquiri', u'finish', u'earli'] [u'minist', u'reject', u'secur', u'threat', u'trio', u'break'] [u'oliv', u'plantat', u'possibl', u'break', u'hill'] [u'mother', u'blame', u'tripl', u'murder', u'suicid'] [u'fear', u'higher', u'region', u'power', u'cost'] [u'cancer', u'therapi', u'reduc', u'pain', u'effect'] [u'forb', u'water', u'suppli'] [u'offic', u'begin', u'remot', u'polic'] [u'program', u'catch', u'offend', u'truck', u'driver'] [u'technolog', u'help', u'improv', u'sustain'] [u'parliament', u'head', u'alic'] [u'ochoa', u'unravel', u'sorenstam'] [u'offic', u'award', u'compo', u'see', u'fellow'] [u'offic', u'alert', u'whale', u'strand'] [u'fuel', u'record', u'high', u'stock', u'market'] [u'price', u'tip', u'boost', u'stock'] [u'opposit', u'highlight', u'tire', u'touch', u'carr'] [u'opposit', u'call', u'review', u'amid', u'airport', u'secur'] [u'opposit', u'push', u'citrus', u'canker', u'rethink'] [u'opposit', u'say', u'kerin', u'polici', u'request'] [u'orang', u'roughi', u'catch', u'wake', u'stock'] [u'pacif', u'highway', u'truck', u'focus', u'summit'] [u'parent', u'seek', u'help', u'replac', u'treat', u'playground'] [u'peerless', u'bekel', u'complet', u'fourth', u'doubl'] [u'perri', u'break', u'drought'] [u'food', u'factori', u'get', u'boost'] [u'pirat', u'free', u'kidnap', u'japanes', u'tugboat'] [u'keep', u'distanc', u'coalit', u'detail'] [u'polic', u'hunt', u'lismor', u'attack'] [u'polic', u'investig', u'pedestrian', u'accid'] [u'polic', u'maintain', u'hunt', u'attack'] [u'polic', u'probe', u'murder', u'suicid'] [u'polic', u'probe', u'slaughter', u'site', u'shoot', u'report'] [u'polic', u'seek', u'motiv', u'tripl', u'murder', u'suicid'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'warn', u'public', u'letterbox', u'blast'] [u'school', u'want', u'road', u'safeti'] [u'protest', u'spread', u'kyrgyzstan'] [u'push', u'remain', u'shoalhaven', u'water', u'recycl'] [u'link', u'land', u'cut', u'talk'] [u'quinn', u'springborg', u'look', u'coalit', u'meet'] [u'racq', u'air', u'northern', u'fuel', u'price', u'concern'] [u'ranger', u'cruis', u'leagu', u'victori'] [u'real', u'madrid', u'narrow', u'barcelona'] [u'rebel', u'mutil', u'women', u'northern', u'uganda'] [u'refuge', u'group', u'seek', u'temporari', u'protect', u'visa'] [u'religion', u'factor', u'refuge', u'polici'] [u'research', u'fortifi', u'crop', u'fight', u'malnutrit'] [u'resid', u'fear', u'canneri', u'safeti', u'risk'] [u'resid', u'ralli', u'save', u'aeropelican'] [u'resid', u'valuat', u'refund'] [u'resign', u'unlik', u'hurt', u'waltz', u'matilda'] [u'rice', u'meet', u'chines', u'leader'] [u'rice', u'porridg', u'ritual', u'predict', u'japan', u'quak'] [u'rice', u'press', u'china', u'north', u'korea', u'nuclear', u'talk'] [u'right', u'group', u'govt', u'drag', u'heel', u'reform'] [u'rooster', u'crocker', u'pocket'] [u'ruddock', u'remain', u'tightlip', u'corbi', u'evid'] [u'saint', u'eager', u'turn', u'tabl', u'lion'] [u'scientist', u'search', u'bare', u'sheep', u'gene'] [u'second', u'jakarta', u'embassi', u'bomb', u'trial', u'begin'] [u'shark', u'search', u'call'] [u'shark', u'victim', u'father', u'thank', u'author'] [u'shepherd', u'call', u'account', u'late', u'night'] [u'shire', u'await', u'fenc', u'fund'] [u'judg', u'southern', u'district', u'exhibit', u'peopl'] [u'zealand', u'expand', u'codeshar', u'agreement'] [u'sibl', u'ironman', u'ironwoman', u'histori'] [u'smaller', u'uni', u'suffer', u'student', u'union', u'plan'] [u'sport', u'complex', u'receiv', u'fund', u'boost'] [u'staff', u'evacu', u'take', u'hold', u'industri'] [u'state', u'ask', u'rethink', u'countri', u'school', u'teacher'] [u'state', u'librari', u'go', u'high', u'tech'] [u'student', u'group', u'slam', u'univers', u'poki', u'plan'] [u'student', u'union', u'plan', u'prompt', u'servic', u'concern'] [u'suicid', u'bomb', u'kill', u'senior', u'iraqi', u'policeman'] [u'taint', u'fuel', u'leav', u'passeng', u'ground'] [u'tax', u'blame', u'high', u'rent', u'say', u'treasur'] [u'teacher', u'vote', u'continu', u'campaign'] [u'teenag', u'girl', u'face', u'charg', u'polic', u'pursuit'] [u'terror', u'court', u'littl', u'overboard', u'ruddock'] [u'test', u'continu', u'sick', u'soldier'] [u'thirteen', u'report', u'dead', u'bangladesh', u'storm'] [u'treasur', u'defend', u'qanta', u'travel', u'agenc', u'contract'] [u'trio', u'charg', u'child', u'steal'] [u'trio', u'court', u'man', u'murder'] [u'trucki', u'die', u'north', u'crash'] [u'separ', u'road', u'accid'] [u'shoot', u'bungl', u'arm', u'robberi'] [u'soldier', u'kill', u'haiti'] [u'polic', u'recruit', u'begin', u'local', u'train'] [u'union', u'maintain', u'teacher', u'strike', u'legal'] [u'union', u'slam', u'pacif', u'highway', u'toll', u'talk'] [u'union', u'want', u'rethink', u'teacher', u'crimin', u'record', u'law'] [u'rise', u'industri', u'unrest'] [u'univers', u'ponder', u'poki', u'plan', u'lose'] [u'senat', u'pass', u'brain', u'damag', u'woman'] [u'push', u'china', u'improv', u'human', u'right'] [u'vanston', u'defend', u'polici', u'asylum', u'seeker'] [u'villarr', u'eas', u'past', u'steaua', u'uefa', u'quarter'] [u'virgin', u'brace', u'chang', u'takeov', u'bed'] [u'virgin', u'sharehold', u'tip', u'patrick', u'offer'] [u'dump', u'ralli', u'australia'] [u'water', u'exceed', u'target'] [u'woman', u'die', u'south', u'west', u'highway', u'crash'] [u'woman', u'kill', u'train', u'collis'] [u'woman', u'struggl', u'age', u'care', u'blind'] [u'wood', u'cutter', u'win', u'titl', u'singl', u'hand'] [u'work', u'continu', u'bibbawarra', u'cross'] [u'workplac', u'accid', u'central', u'west'] [u'workplac', u'safeti', u'improv'] [u'wyndham', u'grappl', u'water', u'woe'] [u'yandilla', u'park', u'support', u'chiquita', u'takeov'] [u'young', u'doctor', u'blame', u'region'] [u'youth', u'charg', u'palm', u'rock', u'throw'] [u'dead', u'shoot', u'rampag'] [u'turn', u'canberra', u'festiv'] [u'abolish', u'land', u'depend', u'revenu', u'brack'] [u'clear', u'liber', u'misus', u'phone', u'data'] [u'accus', u'school', u'arsonist', u'acquit'] [u'accus', u'toddler', u'kidnap', u'plotter', u'deni', u'bail'] [u'govt', u'reject', u'park', u'revenu', u'claim'] [u'activist', u'arrest', u'power', u'station', u'protest'] [u'leader', u'dismiss', u'royal', u'commiss'] [u'deni', u'disput', u'seven'] [u'head', u'swim', u'coach', u'quit'] [u'anwar', u'call', u'asia', u'pacif', u'human', u'right', u'bodi'] [u'anwar', u'criticis', u'australia', u'terror', u'law'] [u'arrest', u'warrant', u'issu', u'teen', u'accus', u'sheep'] [u'jeev', u'flickr', u'snap'] [u'australia', u'keep', u'trophi', u'rain', u'ruin', u'second', u'test'] [u'australia', u'swim', u'debt', u'opposit', u'say'] [u'pain', u'latest', u'jackson', u'drama'] [u'bank', u'resourc', u'sector', u'drag', u'market'] [u'basebal', u'drug', u'loophol', u'close'] [u'bendigo', u'bank', u'plan', u'continu'] [u'slash', u'hundr', u'job'] [u'bogut', u'name', u'finalist', u'colleg', u'honour'] [u'injur', u'accid'] [u'brumbi', u'say', u'free', u'budget', u'despit', u'surplus'] [u'toughen', u'insur', u'industri', u'account'] [u'case', u'terri', u'schiavo', u'court'] [u'delight', u'comm', u'game', u'ticket', u'respons'] [u'chemist', u'condom', u'worri', u'hunter', u'town'] [u'chemist', u'surpris', u'drug', u'price', u'plan'] [u'child', u'obes', u'fight', u'launch', u'northern'] [u'china', u'explos', u'toll', u'hit'] [u'chirac', u'alli', u'face', u'corrupt', u'trial'] [u'church', u'pledg', u'cultur', u'chang', u'amid', u'abus', u'report'] [u'clear', u'ahead', u'airport', u'shop', u'precinct'] [u'climb', u'fuel', u'price', u'curb', u'easter', u'getaway'] [u'coal', u'compani', u'take', u'blame', u'dalrympl'] [u'communiti', u'back', u'plan', u'indigen', u'polit'] [u'communiti', u'shock', u'disbelief', u'follow', u'tripl'] [u'convict', u'rapist', u'deport'] [u'corra', u'linn', u'sale', u'ahead', u'despit', u'opposit'] [u'council', u'abandon', u'oasi', u'talk'] [u'council', u'consid', u'approach', u'deliv'] [u'councillor', u'predict', u'tweed', u'council', u'sack'] [u'councillor', u'walk', u'meet'] [u'council', u'oppos', u'quarri', u'plan'] [u'council', u'question', u'har', u'race', u'stanc'] [u'council', u'play', u'easter', u'road', u'safeti'] [u'council', u'urgent', u'seek', u'transport', u'plan'] [u'court', u'deni', u'terror', u'suspect', u'access', u'detaine'] [u'court', u'grant', u'bail', u'pair', u'accus', u'child', u'steal'] [u'crisi', u'hous', u'shortag', u'domest', u'violenc'] [u'cummin', u'deni', u'park', u'fine', u'claim'] [u'darwin', u'meet', u'lament', u'atsic', u'demis'] [u'david', u'jone', u'ring', u'profit'] [u'delay', u'legal', u'servic', u'replac'] [u'dept', u'urg', u'nurs', u'wag'] [u'detail', u'alic', u'spring', u'tourism', u'campaign'] [u'dick', u'smith', u'back', u'immigr', u'review'] [u'doctor', u'common', u'plastic', u'straighten', u'nose'] [u'donat', u'flow', u'tragedi', u'parent'] [u'dragon', u'hard', u'suspens'] [u'drought', u'impact', u'predict', u'long', u'last'] [u'duck', u'shooter', u'jump', u'season', u'start'] [u'kill', u'school', u'shoot'] [u'hearten', u'militari'] [u'exclus', u'men', u'club', u'vote', u'women'] [u'famous', u'wellshot', u'hotel', u'reopen'] [u'farmer', u'fin', u'power', u'pole', u'damag'] [u'fatal', u'crash', u'spark', u'rail', u'cross', u'safeti', u'debat'] [u'fear', u'log', u'decis', u'preced'] [u'investor', u'anxious'] [u'fire', u'claim', u'wide', u'hous'] [u'fire', u'central', u'victoria'] [u'forum', u'industri', u'miner', u'lowdown'] [u'face', u'court', u'trade', u'scandal'] [u'restrict', u'eas', u'firm'] [u'govt', u'accus', u'delay', u'wage', u'negoti', u'deal'] [u'govt', u'defend', u'human', u'right', u'record'] [u'govt', u'flag', u'oval', u'restor'] [u'govt', u'make', u'chang', u'immigr'] [u'govt', u'stand', u'firm', u'teacher', u'offer'] [u'govt', u'tell', u'invest', u'region'] [u'govt', u'releas', u'small', u'group', u'long', u'term', u'detaine'] [u'govt', u'urg', u'stamp', u'cigarett'] [u'govt', u'urg', u'action', u'oval', u'burnout'] [u'group', u'seek', u'answer', u'woodland', u'futur'] [u'harrison', u'learn', u'lesson', u'say', u'roger'] [u'heavyweight', u'preselect', u'safe', u'seat'] [u'high', u'hop', u'lagoon'] [u'high', u'theft', u'illawarra', u'see', u'dog', u'better', u'secur'] [u'highway', u'plan', u'take', u'toll', u'public'] [u'hopoat', u'sack', u'match'] [u'hopoat', u'sack', u'match', u'suspens'] [u'hospit', u'staff', u'hour', u'protest'] [u'hospit', u'welcom', u'budget', u'boost'] [u'howard', u'pledg', u'chang', u'wont', u'push', u'wag'] [u'howard', u'say', u'budget', u'boost', u'defenc', u'spend'] [u'hunt', u'continu', u'mistaken', u'releas', u'croc'] [u'iceland', u'grant', u'chess', u'champ', u'citizenship'] [u'indonesian', u'parliament', u'split', u'fuel', u'subsidi', u'cut'] [u'indonesia', u'work', u'nuclear', u'power', u'plan'] [u'infrastructur', u'task', u'forc', u'eye', u'farm'] [u'intrud', u'hospit', u'attack'] [u'island', u'camp', u'book'] [u'israel', u'finalis', u'handov', u'west', u'bank', u'town'] [u'japan', u'back', u'aust', u'invit', u'east', u'asia', u'summit'] [u'jihad', u'jack', u'unhappi', u'qaeda', u'method', u'court', u'tell'] [u'john', u'muscl', u'tear', u'confirm'] [u'jordanian', u'iraqi', u'diplomat', u'return', u'post'] [u'kalgoorli', u'council', u'quit'] [u'kerl', u'retir', u'butler', u'name', u'nbls'] [u'kidnap', u'mastermind', u'advertis', u'help'] [u'kyrgyz', u'elect', u'chief', u'declar', u'disput', u'poll', u'valid'] [u'kyrgyz', u'leader', u'rule', u'state', u'emerg'] [u'labor', u'urg', u'rethink', u'legisl', u'council'] [u'land', u'hand', u'legisl', u'reach', u'legisl'] [u'lennon', u'wont', u'releas', u'advic', u'retain', u'spirit'] [u'lismor', u'forum', u'hear', u'technic', u'colleg', u'plan'] [u'macquari', u'field', u'bash', u'victim', u'tell', u'polic'] [u'detain', u'china', u'death', u'famili'] [u'face', u'charg', u'attempt', u'murder', u'brother'] [u'jail', u'rifl', u'tot', u'kill', u'threat'] [u'man', u'board', u'decid', u'hopoat', u'futur'] [u'court', u'polic', u'assault'] [u'mayor', u'seek', u'continu', u'nation', u'park', u'wheel'] [u'melbourn', u'prize', u'money', u'pass', u'million'] [u'million', u'dollar', u'bounti', u'tasmanian', u'tiger'] [u'rescu', u'worker', u'return'] [u'minist', u'deni', u'plan', u'public', u'servic', u'job'] [u'mix', u'recept', u'skill', u'shortag', u'packag'] [u'resourc', u'cooper', u'need', u'protect'] [u'mother', u'charg', u'child', u'murder', u'seek', u'bail'] [u'mourner', u'honour', u'aborigin', u'judg', u'state'] [u'moyston', u'blaze', u'prove', u'cost'] [u'air', u'hospit', u'bypass', u'worri'] [u'plead', u'fuel'] [u'larcom', u'await', u'water', u'decis'] [u'murali', u'tie', u'knot', u'chennai'] [u'music', u'murray', u'hit', u'right', u'note', u'public'] [u'cut', u'reach', u'news'] [u'law', u'tougher', u'boat', u'safeti', u'requir'] [u'nose', u'research', u'offer', u'stem', u'cell', u'pathway'] [u'cut', u'horizon', u'treasur', u'warn'] [u'occi', u'consid', u'bell', u'farewel'] [u'land', u'black', u'hawk', u'school'] [u'onlin', u'ident', u'theft', u'soar', u'survey'] [u'opposit', u'rais', u'question', u'grenad', u'scare'] [u'origin', u'plan', u'power', u'station'] [u'paedophil', u'jail', u'abus', u'year'] [u'pair', u'surviv', u'truck', u'close', u'encount'] [u'parti', u'urg', u'bolster', u'safeti'] [u'peta', u'hail', u'court', u'wool', u'industri'] [u'plea', u'speed', u'camera', u'revenu', u'boost', u'countri'] [u'polic', u'foil', u'kidnap', u'plot'] [u'polic', u'investig', u'cemeteri', u'vandal'] [u'polic', u'probe', u'morgan', u'assault'] [u'polic', u'seek', u'motiv', u'school', u'rampag'] [u'polic', u'warn', u'cobram', u'attack'] [u'poofter', u'parliamentari', u'debat', u'spark', u'word'] [u'program', u'launch', u'devonport', u'revers', u'number'] [u'protect', u'circuit', u'fault', u'caus', u'blackout', u'report'] [u'publican', u'meet', u'grog', u'crackdown'] [u'quak', u'shake', u'zealand', u'lower', u'north', u'island'] [u'racq', u'doesnt', u'want', u'gympi', u'bypass', u'toll'] [u'rail', u'project', u'includ', u'habitat', u'endang', u'frog'] [u'rain', u'ruin', u'australia', u'victori', u'hop'] [u'ralli', u'australia', u'dump', u'cop', u'critic'] [u'ralli', u'highlight', u'river', u'protect'] [u'rann', u'appoint', u'transport', u'portfolio', u'conlon'] [u'report', u'give', u'away', u'littl', u'rat'] [u'record', u'entri', u'despit', u'drought'] [u'report', u'detail', u'zimbabw', u'intimid'] [u'rescu', u'young', u'whale', u'die'] [u'research', u'claim', u'revolutionari', u'burn', u'treatment'] [u'resid', u'rais', u'gold', u'plan', u'concern'] [u'robot', u'boost', u'polic', u'bomb', u'squad'] [u'roo', u'back', u'clarkson', u'rooki', u'season'] [u'rough', u'weather', u'hit', u'coast'] [u'rugbi', u'leagu', u'threat', u'wagga'] [u'safeti', u'review', u'follow', u'attack'] [u'search', u'miss', u'angler'] [u'serial', u'pest', u'order', u'away', u'london', u'marathon'] [u'setback', u'wool', u'claim', u'peta'] [u'sewerag', u'treat', u'wongarbon'] [u'shepherd', u'suspend', u'fin'] [u'shire', u'welcom', u'care', u'centr', u'fund'] [u'skippi', u'wildlif', u'park', u'owner', u'fin', u'thousand'] [u'small', u'retail', u'miss', u'plastic', u'messag'] [u'spanish', u'troop', u'depart', u'aceh'] [u'squabbl', u'continu', u'conserv'] [u'barbara', u'acquir', u'son', u'gwalia', u'gold', u'asset'] [u'step', u'father', u'jail', u'sexual', u'abus', u'twin'] [u'storm', u'leav', u'wide', u'dark'] [u'student', u'go', u'shoot', u'spree'] [u'submiss', u'seek', u'indigen', u'job'] [u'survey', u'find', u'north', u'coast', u'prone', u'theft'] [u'survey', u'find', u'jervi', u'grey', u'nurs', u'shark'] [u'survey', u'find', u'world', u'want', u'power'] [u'swiss', u'glacier', u'heat', u'shield'] [u'govt', u'deni', u'cover', u'elect', u'surgeri'] [u'teacher', u'foreshadow', u'strike', u'action'] [u'terror', u'accus', u'young', u'dreamer'] [u'test', u'beach', u'alga', u'harmless'] [u'thiev', u'bash', u'woman'] [u'tourism', u'committe', u'work', u'albani', u'brand'] [u'trio', u'court', u'sexual', u'slaveri', u'alleg'] [u'tsunami', u'appeal', u'match', u'announc', u'lord'] [u'arrest', u'kidnap', u'plot'] [u'uefa', u'action', u'chelsea', u'mourinho'] [u'expert', u'help', u'rail', u'track'] [u'univers', u'staff', u'rise'] [u'uranium', u'start', u'date'] [u'user', u'popul', u'age', u'say', u'labor'] [u'judg', u'refus', u'feed', u'schiavo', u'case'] [u'urg', u'farmer', u'flame', u'udder'] [u'waldron', u'push', u'health', u'prioriti'] [u'wallac', u'use', u'otten', u'geelong', u'tiger'] [u'walter', u'insolv', u'report', u'prompt', u'push', u'stricter'] [u'walter', u'worker', u'expect', u'return', u'work', u'tomorrow'] [u'public', u'urg', u'deep', u'cross'] [u'water', u'monitor', u'boost', u'oyster', u'cost'] [u'unlik', u'reform', u'tax'] [u'western', u'sydney', u'shoot', u'trigger', u'manhunt'] [u'wild', u'weather', u'warn', u'issu', u'sydney'] [u'williamss', u'scottish', u'futur', u'hang', u'balanc'] [u'windsor', u'keep', u'pressur', u'telstra', u'sale'] [u'winter', u'stawel'] [u'wollondilli', u'shire', u'launch', u'social', u'plan'] [u'woman', u'charg', u'partner', u'stab', u'death'] [u'woman', u'die', u'head', u'crash', u'truck'] [u'work', u'trial', u'worri', u'lawyer'] [u'year', u'tourist', u'murder', u'mysteri'] [u'kill', u'cambodian', u'jailbreak', u'attempt'] [u'abus', u'footbal', u'ref', u'workplac', u'bulli', u'say'] [u'accc', u'win', u'telco', u'pyramid', u'sell', u'case'] [u'player', u'surpris', u'anti', u'assault', u'plan'] [u'black', u'lock', u'ban', u'week'] [u'aloisi', u'consid', u'leagu'] [u'anti', u'assault', u'class', u'urg', u'club'] [u'anti', u'assault', u'urg', u'club'] [u'anwar', u'set', u'australia', u'tough', u'task'] [u'fertilis', u'sale', u'like', u'creat', u'strong'] [u'argyl', u'fin', u'driver', u'death'] [u'asia', u'consid', u'welcom', u'socceroo'] [u'astronom', u'distant', u'planet'] [u'suffer', u'morn', u'slide'] [u'aussi', u'domin', u'intern', u'surf', u'challeng'] [u'aust', u'market', u'tumbl', u'inflat', u'warn'] [u'aviat', u'question', u'airport', u'sale', u'plan'] [u'backpack', u'skip', u'canberra'] [u'bathurst', u'mourn', u'death', u'deputi', u'mayor'] [u'beazley', u'speak', u'latham'] [u'bell', u'beach', u'postpon'] [u'bishop', u'want', u'church', u'consid', u'ordain', u'marri'] [u'bougainvill', u'leader', u'hold', u'independ', u'ralli'] [u'brack', u'turn', u'eastlink', u'project'] [u'brazil', u'coach', u'parreira', u'back', u'ronaldo'] [u'brazilian', u'kidnapp', u'target', u'footbal', u'mother'] [u'bridgeston', u'accept', u'blame', u'ferrari', u'slow', u'start'] [u'bureaucrat', u'mistak', u'blame', u'hydrotherapi', u'pool'] [u'bureau', u'eas', u'wollongong', u'sever', u'weather', u'warn'] [u'byron', u'discuss', u'combat', u'attack'] [u'hospit', u'communiti', u'board'] [u'miner', u'explor'] [u'canberra', u'hop', u'educ', u'tourism', u'boost'] [u'carraro', u'deep', u'blood', u'test', u'refus'] [u'charl', u'sturt', u'academ', u'hold', u'stop', u'work'] [u'children', u'polic', u'curfew', u'crime', u'spree'] [u'china', u'arm', u'embargo', u'unjustifi', u'offici'] [u'church', u'urg', u'dictat', u'abus', u'procedur'] [u'coal', u'plan', u'get', u'share', u'float', u'windfal'] [u'communiti', u'group', u'attack', u'health', u'servic', u'legal', u'threat'] [u'concern', u'air', u'bulk', u'bill', u'clinic', u'plan'] [u'coonawarra', u'grape', u'harvest', u'look', u'good'] [u'corbi', u'wait', u'decis', u'wit'] [u'costello', u'break', u'deal', u'lee'] [u'council', u'act', u'feral', u'duck', u'number'] [u'councillor', u'seek', u'poultri', u'farm', u'zone'] [u'council', u'offic', u'voic', u'asbesto', u'concern'] [u'council', u'tight', u'lip', u'pulp', u'site'] [u'council', u'demolish', u'clubhous'] [u'critic', u'indian', u'depriv', u'million'] [u'crow', u'ricciuto'] [u'cummin', u'go', u'springborg'] [u'custom', u'uncov', u'stun', u'gun'] [u'cyclon', u'communiti', u'reel'] [u'darwin', u'base', u'soldier', u'return', u'iraq'] [u'darwin', u'troop', u'complet', u'iraq', u'deploy'] [u'debat', u'continu', u'aborigin', u'land', u'hand'] [u'derail', u'slow', u'coal', u'deliveri'] [u'door', u'open', u'socceroo', u'join', u'asia'] [u'driver', u'plead', u'guilti', u'acid', u'murder'] [u'driver', u'urg', u'avoid', u'easter', u'statist'] [u'easter', u'activ', u'aplenti', u'central', u'west'] [u'easter', u'protest', u'plan', u'baxter'] [u'effort', u'south', u'east', u'water', u'crisi', u'pay'] [u'engin', u'failur', u'caus', u'fatal', u'plane', u'crash'] [u'beat', u'bioregion', u'decis'] [u'express', u'wolfowitz', u'worri'] [u'unlik', u'block', u'wolfowitz', u'post', u'germani'] [u'excel', u'wont', u'walk', u'free', u'australia', u'mcginti'] [u'fall', u'demand', u'stop', u'apart'] [u'fantasi', u'island', u'creator', u'guilti', u'stalk'] [u'farmer', u'consid', u'meander', u'option'] [u'farmer', u'pessimist', u'outlook', u'surpris'] [u'farmer', u'warn', u'cattl', u'duf'] [u'north', u'sawmil', u'get', u'expans', u'fund'] [u'fear', u'hold', u'bunburi', u'hospit', u'number'] [u'feder', u'elect', u'probe', u'head', u'western'] [u'feder', u'chase', u'intrud', u'home'] [u'ferguson', u'wenger', u'thank', u'eriksson'] [u'fireman', u'hurt', u'battl', u'spring', u'blaze'] [u'road', u'hour'] [u'footbal', u'mother', u'threat', u'brazil'] [u'financi', u'advis', u'jail', u'year'] [u'foster', u'extend', u'southcorp', u'offer'] [u'franc', u'seek', u'reassur', u'china', u'arm', u'plan'] [u'freo', u'carr', u'readi', u'mat'] [u'fresh', u'concern', u'pope', u'health'] [u'gale', u'surpris', u'govern', u'action'] [u'garfish', u'stock', u'point', u'collaps', u'warn', u'fishermen'] [u'gold', u'coast', u'woman', u'face', u'court', u'child'] [u'govt', u'call', u'boost', u'tafe', u'fund'] [u'govt', u'scale', u'compens', u'scheme'] [u'govt', u'prais', u'rail', u'link', u'fast', u'track'] [u'govt', u'search', u'land', u'coordin'] [u'govt', u'soften', u'immigr', u'detent', u'law'] [u'govt', u'tell', u'accept', u'race', u'consult'] [u'govt', u'tell', u'bolster', u'histor', u'build', u'protect'] [u'govt', u'urg', u'encourag', u'boost', u'local', u'electr'] [u'griffith', u'poultri', u'farm', u'get', u'council'] [u'group', u'concern', u'mulbr', u'log'] [u'guild', u'back', u'chemist', u'condom'] [u'gunman', u'drive', u'polic', u'school'] [u'health', u'report', u'delay'] [u'health', u'servic', u'consolid', u'save', u'thousand'] [u'health', u'servic', u'fin', u'hospit', u'boiler', u'room'] [u'health', u'servic', u'respond', u'doctor', u'quit', u'threat'] [u'high', u'school', u'student', u'make', u'australian', u'team'] [u'highway', u'close', u'doubl', u'fatal'] [u'hobart', u'collect', u'sell'] [u'holiday', u'maker', u'urg', u'line', u'trailer'] [u'hopoat', u'career', u'seem'] [u'hous', u'debat', u'propos', u'macquari', u'field', u'inquiri'] [u'hous', u'afford', u'rise'] [u'indigen', u'filmmak', u'win', u'gong', u'doco'] [u'indonesian', u'call', u'caution', u'corbi', u'case'] [u'indonesian', u'polic', u'question', u'free', u'bali', u'bomb'] [u'inverel', u'council', u'wait', u'brothel', u'decis'] [u'investig', u'begin', u'depart', u'store', u'blaze'] [u'iran', u'stand', u'firm', u'enrich'] [u'king', u'miss', u'nomin'] [u'kiwi', u'drop', u'mcmillan', u'turn', u'second', u'marshal'] [u'kosciuszko', u'wild', u'campaign', u'pay'] [u'kyrgyzstan', u'polit', u'upheav', u'escal'] [u'larg', u'threaten', u'home'] [u'lazaridi', u'want', u'career', u'perth'] [u'liverpool', u'face', u'striker', u'crisi'] [u'magistr', u'say', u'murri', u'court', u'success'] [u'mahoney', u'reach', u'mileston'] [u'malaysia', u'pressur', u'burma', u'implement', u'reform'] [u'bash', u'break'] [u'jail', u'vietnam', u'crime'] [u'martyn', u'bat'] [u'minist', u'hospit', u'heart', u'attack'] [u'minist', u'hear', u'patholog', u'unit', u'privatis', u'plan'] [u'minist', u'name', u'hotel', u'hazard'] [u'miss', u'fisherman', u'bodi'] [u'local', u'school', u'fight', u'retain', u'teacher'] [u'terror', u'suspect', u'remain', u'free'] [u'motorist', u'warn', u'doubl', u'demerit', u'point', u'forc'] [u'mourinho', u'expect', u'uefa', u'charg', u'dismiss'] [u'morgan', u'railway', u'station', u'train', u'base'] [u'nasa', u'closer', u'fresh', u'shuttl', u'launch'] [u'nation', u'leader', u'hit', u'order', u'strategi'] [u'negat', u'headlin', u'link', u'cod'] [u'ferrari', u'get', u'thumb', u'barrichello'] [u'discourag', u'euthanasia', u'advic', u'nitschk'] [u'nimmitabel', u'water', u'effici', u'fund'] [u'good', u'news', u'aerial', u'water', u'survey'] [u'hope', u'repatri', u'visa', u'give', u'mix', u'recept'] [u'govt', u'introduc', u'help', u'pipelin', u'progress'] [u'nuclear', u'confer', u'boast', u'benefit', u'clean', u'energi'] [u'nurs', u'medicin'] [u'offic', u'injur', u'escap', u'driver', u'wont'] [u'opposit', u'want', u'inquiri', u'assault'] [u'pacif', u'plan', u'agenda', u'leader'] [u'petit', u'back', u'save', u'sugar', u'weir'] [u'lawyer', u'highlight', u'gender', u'equal', u'problem'] [u'polic', u'abandon', u'surgeri', u'evid', u'plan'] [u'polic', u'fear', u'miss', u'girl'] [u'polic', u'fear', u'thiev', u'hold', u'hostag', u'hotel'] [u'polic', u'offic', u'court', u'drug', u'charg'] [u'polic', u'seek', u'motiv', u'school', u'shoot'] [u'polic', u'storm', u'sydney', u'hotel'] [u'pope', u'appear', u'peter', u'squar'] [u'premier', u'wont', u'rule', u'public', u'servic', u'cut'] [u'public', u'servant', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'public', u'warn', u'possibl', u'easter', u'blood', u'shortag'] [u'rain', u'strike', u'women', u'world'] [u'rapist', u'deport', u'day'] [u'region', u'saleyard', u'step', u'closer'] [u'repatri', u'deal', u'free', u'detaine'] [u'resid', u'say', u'council', u'roadwork', u'caus', u'ill'] [u'resid', u'establish', u'ambul', u'servic'] [u'ross', u'confid', u'repeat', u'perform'] [u'see', u'easter', u'closur', u'pump', u'station'] [u'saint', u'welcom', u'clive', u'say', u'harri'] [u'scaffold', u'secur', u'storm', u'buffet', u'newcastl'] [u'scan', u'beckham', u'johnson', u'england'] [u'scheme', u'aim', u'promot', u'indigen', u'healthi', u'lifestyl'] [u'schiavo', u'famili', u'run', u'option'] [u'school', u'princip', u'charg', u'child', u'assault'] [u'scientist', u'battl', u'dark', u'energi', u'theori'] [u'search', u'find', u'surfer', u'cling', u'break', u'board'] [u'season', u'worker', u'passport', u'credenti'] [u'second', u'refus', u'bail', u'toddler', u'kidnap', u'plot'] [u'seek', u'list', u'stock', u'exchang'] [u'serial', u'offend', u'receiv', u'longer', u'sentenc'] [u'shop', u'centr', u'bomb', u'lebanon'] [u'kill', u'russian', u'chopper', u'crash'] [u'skill', u'vacanc', u'rise'] [u'smooth', u'road', u'predict', u'drug', u'driver', u'test'] [u'spanish', u'sect', u'leader', u'die'] [u'specialist', u'attract', u'rural', u'doctor'] [u'state', u'reject', u'costello', u'sweeten'] [u'stewart', u'hussain', u'life', u'member'] [u'stuart', u'feel', u'sorri', u'hopoat'] [u'student', u'protest', u'voluntari', u'union'] [u'studi', u'investig', u'impact', u'extend'] [u'surgeon', u'investig', u'hospit', u'death'] [u'hand', u'land', u'aborigin', u'communiti'] [u'teacher', u'strike', u'continu'] [u'industri', u'turn', u'pill', u'pop', u'solut'] [u'thompson', u'dismiss', u'comment', u'wallac'] [u'time', u'run', u'communiti', u'forum', u'involv'] [u'tourism', u'industri', u'expect', u'petrol', u'price'] [u'train', u'driver', u'job', u'spar', u'shake'] [u'transport', u'industri', u'reject', u'hume', u'highway', u'toll', u'plan'] [u'treasur', u'fail', u'agre'] [u'treasur', u'reject', u'deal'] [u'truck', u'industri', u'safeti', u'issu'] [u'tsunami', u'eat', u'council', u'communiti', u'fund'] [u'arrest', u'morgan', u'assault'] [u'take', u'hospit'] [u'admit', u'promis', u'legal', u'bill'] [u'harbhajan', u'need', u'india'] [u'unionist', u'ralli', u'industri', u'relat'] [u'union', u'attempt', u'stem', u'membership', u'declin'] [u'hold', u'stop', u'work', u'meet', u'secur'] [u'mark', u'world', u'water', u'action', u'plan'] [u'upper', u'hous', u'reject', u'brogden', u'probe', u'macquari'] [u'court', u'deni', u'schiavo', u'feed', u'tube', u'appeal'] [u'miner', u'closer', u'portman', u'takeov'] [u'seek', u'octob', u'trial', u'moussaoui'] [u'vainikolo', u'knock', u'union', u'stay', u'bradford'] [u'valu', u'disagr', u'see', u'slug', u'home', u'owner', u'rent'] [u'victorian', u'prison', u'testifi', u'corbi', u'trial'] [u'union', u'strike', u'howard', u'plan'] [u'wall', u'street', u'stagger', u'rat', u'rise'] [u'water', u'suppli', u'plan', u'avert', u'restrict'] [u'timber', u'firm', u'tiwi', u'island', u'plan'] [u'weir', u'rais', u'scheme', u'like', u'gum'] [u'forger', u'jail', u'year'] [u'windi', u'damag', u'hunter', u'storm'] [u'wine', u'industri', u'question', u'inquiri', u'valu'] [u'woman', u'face', u'court', u'child', u'abduct', u'charg'] [u'zollo', u'swear', u'govt', u'minist'] [u'promot', u'lifestyl', u'medic'] [u'govt', u'stanc'] [u'urg', u'chang', u'date', u'court', u'name'] [u'qualiti', u'approach', u'unhealthi', u'level'] [u'annan', u'flag', u'investig', u'lebanon'] [u'buy', u'vietnames', u'market'] [u'appal', u'prison', u'review'] [u'archer', u'charlevill'] [u'aussi', u'dollar', u'blue', u'chip', u'fall'] [u'aussi', u'women', u'woodchopp', u'competit'] [u'australian', u'death', u'sentenc', u'uphold'] [u'aust', u'troop', u'head', u'home', u'aceh'] [u'backbench', u'criticis', u'visa', u'chang'] [u'bass', u'coast', u'popul', u'grow', u'faster', u'state'] [u'bathurst', u'death', u'custodi', u'prompt', u'polit', u'stoush'] [u'beatti', u'ask', u'sugar', u'fund', u'explain'] [u'beatti', u'clear', u'palm', u'island', u'briberi', u'alleg'] [u'beckham', u'sick', u'paparazzi', u'harass'] [u'bendigo', u'look', u'easter', u'influx'] [u'berkeley', u'teacher', u'consid', u'return', u'work'] [u'crowd', u'tip', u'gospel', u'music', u'festiv'] [u'bilbi', u'releas', u'nation', u'park'] [u'bird', u'claim', u'second', u'victim', u'cambodia'] [u'blast', u'hit', u'massiv', u'texa', u'refineri'] [u'boati', u'warn', u'rough', u'easter', u'condit'] [u'bogut', u'stay', u'cool', u'hype', u'mount'] [u'booki', u'boost', u'turnov', u'pat', u'meet'] [u'bore', u'eleph', u'mimic', u'bird', u'truck'] [u'british', u'captain', u'farrel', u'switch', u'cod'] [u'british', u'attack', u'iraq', u'plan'] [u'break', u'hill', u'child', u'blood', u'lead', u'level', u'fall'] [u'buderus', u'injuri', u'crisi'] [u'build', u'project', u'benefit', u'mental', u'health', u'patient'] [u'bulgaria', u'pull', u'iraq', u'year'] [u'bullet', u'mackinnon'] [u'busi', u'back', u'council', u'graffiti', u'clean'] [u'busi', u'urg', u'lobbi', u'govt', u'tax'] [u'byron', u'develop', u'strategi', u'fight', u'assault'] [u'compani', u'accc'] [u'cahil', u'put', u'socceroo', u'ahead', u'everton'] [u'dubbo', u'colleg', u'plan', u'rethink'] [u'govt', u'budget', u'surplus', u'region'] [u'call', u'continu', u'palm', u'council'] [u'canker', u'affect', u'farm', u'set', u'record', u'straight'] [u'cannon', u'reload', u'tah'] [u'leav', u'train', u'track'] [u'centrelink', u'offer', u'payment', u'violent', u'spous'] [u'chamber', u'say', u'bundaberg', u'offer', u'busi'] [u'chelsea', u'unpreced', u'attack'] [u'chief', u'justic', u'want', u'bench', u'attract'] [u'citrus', u'grower', u'fruit', u'roadblock', u'concern'] [u'coal', u'concern', u'spark', u'port', u'author', u'visit'] [u'coal', u'industri', u'warn', u'immedi', u'relief'] [u'coal', u'termin', u'expect', u'endur', u'dalrympl'] [u'cole', u'chelsea', u'mourinho', u'charg'] [u'concert', u'kick', u'broom', u'festiv'] [u'corbi', u'lawyer', u'slow', u'organis', u'wit'] [u'corbi', u'take', u'stand', u'drug', u'trial'] [u'corbi', u'take', u'stand', u'bali', u'trial'] [u'coron', u'rule', u'sabotag', u'collis', u'hercul'] [u'council', u'consid', u'higher', u'sted', u'fee'] [u'council', u'cut', u'price', u'cooma', u'airport'] [u'council', u'hope', u'youth', u'centr'] [u'council', u'look', u'danc', u'parti', u'regul'] [u'council', u'consid', u'lighthous', u'develop', u'project'] [u'council', u'consid', u'reward', u'catch', u'grave', u'vandal'] [u'council', u'ahead', u'saleyard', u'deal'] [u'court', u'uphold', u'forestri', u'appeal', u'log', u'case'] [u'croesus', u'ahead', u'scotia', u'mine'] [u'cyclon', u'ravag', u'resort', u'oper', u'soon'] [u'dairi', u'farmer', u'receiv', u'drought', u'fund', u'boost'] [u'deplet', u'lion', u'gambl', u'lappin'] [u'dept', u'store', u'look', u'reopen', u'blaze'] [u'doctor', u'lose', u'appeal', u'careless', u'rule'] [u'dont', u'play', u'game', u'warn', u'state'] [u'appeal', u'porn', u'sentenc'] [u'driver', u'easter', u'road', u'safeti', u'remind'] [u'driver', u'warn', u'night', u'speed', u'camera'] [u'eagl', u'look', u'buck', u'adelaid', u'hoodoo'] [u'eagl', u'seek', u'buck', u'adelaid', u'hoodoo'] [u'easter', u'accommod', u'run', u'quick'] [u'elder', u'woman', u'give', u'dinosaur', u'secret'] [u'electranet', u'warn', u'south', u'east', u'power', u'shortag'] [u'england', u'zimbabw', u'cancel', u'test'] [u'europ', u'get', u'green', u'light', u'extens'] [u'fan', u'urg', u'tribut', u'broadbridg'] [u'farmer', u'optim', u'remain', u'mute'] [u'call', u'raaf', u'asbesto', u'hotlin'] [u'film', u'offer', u'communiti', u'super', u'benefit'] [u'financi', u'control', u'help', u'worker'] [u'western', u'land', u'leas', u'grant', u'lightn'] [u'fisher', u'face', u'high', u'easter', u'seafood', u'demand'] [u'focus', u'alic', u'spring', u'hospit', u'parliamentari'] [u'folk', u'festiv', u'promis', u'eclect', u'entertain'] [u'director', u'plead', u'guilti'] [u'champ', u'join', u'anti', u'dope', u'fight'] [u'fourteen', u'dead', u'refineri', u'blast'] [u'garuda', u'chief', u'face', u'investig', u'activist'] [u'gippsland', u'prove', u'popular', u'oversea', u'visitor'] [u'golf', u'hunt', u'scott', u'titl'] [u'govt', u'appal', u'school', u'apartheid', u'claim'] [u'govt', u'ask', u'final', u'saleyard'] [u'govt', u'assist', u'corbi', u'say'] [u'govt', u'reject', u'attack', u'countri', u'hospit'] [u'green', u'seek', u'public', u'input', u'expans', u'plan'] [u'green', u'beat', u'vote', u'valu'] [u'guard', u'kill', u'inmat', u'prison', u'break'] [u'hawk', u'look', u'young', u'brigad'] [u'health', u'servic', u'apologis', u'girl', u'hospit', u'snub'] [u'heritag', u'festiv', u'seek', u'broad', u'appeal'] [u'high', u'tech', u'solut', u'locat', u'coastal', u'hazard'] [u'highway', u'patrol', u'supervisor', u'fin', u'speed'] [u'holiday', u'driver', u'urg', u'care'] [u'howard', u'continu', u'talk', u'tough'] [u'howard', u'enter', u'debat'] [u'howard', u'play', u'advertis', u'spend'] [u'illawarra', u'hospit', u'chang', u'easter', u'elect', u'surgeri'] [u'illeg', u'worker', u'deport'] [u'inquest', u'find', u'miner', u'die', u'fix', u'equip'] [u'insurg', u'claim', u'control', u'raid', u'camp'] [u'investor', u'seek', u'holiday', u'park'] [u'iraqi', u'troop', u'raid', u'insurg', u'camp'] [u'jackson', u'lawyer', u'rush', u'hospit'] [u'japan', u'free', u'chess', u'champ', u'fischer'] [u'bush', u'question', u'schiavo', u'diagnosi'] [u'judg', u'rule', u'schiavo', u'appeal'] [u'kenyan', u'author', u'tortur', u'terror', u'suspect'] [u'kookaburra', u'brennan', u'bow'] [u'labor', u'emerg', u'prompt', u'win', u'cartoon'] [u'latham', u'sign', u'breaker', u'deal'] [u'give', u'hope', u'test'] [u'lennon', u'wont', u'overrid', u'pulp', u'decis'] [u'liber', u'moder', u'want', u'detent', u'chang'] [u'liber', u'sorri', u'attack', u'speaker'] [u'local', u'govt', u'stalwart', u'clarenc', u'valley', u'mayor'] [u'lollipop', u'highlight', u'fatigu', u'suck', u'polic'] [u'lyrebird', u'threaten', u'tasmania', u'rare', u'orchid'] [u'magazin', u'search', u'tiger'] [u'maitland', u'growth', u'boom', u'continu'] [u'shoot', u'polic', u'face', u'court'] [u'mening', u'outbreak', u'hit', u'sudanes', u'refuge', u'camp'] [u'mental', u'health', u'resourc', u'criticis', u'murder'] [u'minist', u'brief', u'macquari', u'field', u'polic', u'probe'] [u'minist', u'hit', u'propos', u'increas', u'park'] [u'minist', u'strike', u'chord', u'orchestra'] [u'minist', u'hear', u'council', u'har', u'race', u'concern'] [u'mix', u'result', u'region', u'popul', u'figur'] [u'develop', u'afoot', u'shellharbour', u'tent'] [u'call', u'ambul', u'staff', u'number', u'review'] [u'defend', u'name', u'surgeon', u'investig'] [u'want', u'apolog', u'campaign', u'claim', u'wife'] [u'want', u'continu', u'investig', u'polic'] [u'want', u'fairer', u'deal'] [u'home', u'sale', u'resili', u'februari'] [u'rape', u'alleg', u'surfac', u'notori'] [u'visa', u'oper', u'concern'] [u'toll', u'gympi', u'bypass', u'anderson'] [u'will', u'tax', u'time'] [u'price', u'blast', u'trigger', u'rise'] [u'opposit', u'demand', u'step'] [u'orchestra', u'kick', u'fund', u'fight'] [u'orchestra', u'meet', u'reassur', u'manag'] [u'pakistan', u'flash', u'flood', u'kill'] [u'perth', u'fin', u'airport', u'secur', u'breach'] [u'pike', u'make', u'sale', u'hospit', u'pledg'] [u'pilbara', u'star', u'film'] [u'pioneer', u'agricultur', u'town', u'celebr', u'centenari'] [u'say', u'govt', u'assist', u'corbi', u'case'] [u'polic', u'blame', u'parent', u'youth', u'crime', u'spree'] [u'policeman', u'shoot', u'dead', u'gold', u'coast'] [u'polic', u'oper', u'rais', u'communiti', u'concern'] [u'polic', u'forc', u'easter'] [u'poll', u'show', u'athen', u'wors', u'olymp'] [u'popul', u'growth', u'pose', u'urban', u'sprawl', u'challeng'] [u'pratt', u'stosur', u'florida'] [u'pregnanc', u'control', u'difficult', u'small', u'town', u'midwif'] [u'premier', u'studi', u'airport', u'scare', u'report'] [u'prison', u'rape', u'claim', u'delay', u'paedophil', u'releas'] [u'protest', u'storm', u'kyrgyz', u'govt', u'headquart'] [u'public', u'transport', u'boost', u'reveal', u'gold', u'coast'] [u'public', u'truste', u'fund', u'concern', u'air'] [u'qasim', u'deni', u'fail', u'cooper', u'immigr'] [u'rain', u'prevent', u'sydney', u'water', u'suppli', u'reach'] [u'ranger', u'remov', u'croc', u'swim', u'hole'] [u'support', u'express', u'whitewash', u'concern'] [u'refuge', u'group', u'seek', u'immigr', u'polici'] [u'resourc', u'bank', u'stock', u'continu', u'market', u'loss'] [u'riewoldt', u'injur', u'lion', u'reign', u'suprem'] [u'roar', u'mission', u'entertain', u'fan'] [u'rooney', u'england', u'place', u'safe', u'despit', u'polic', u'inquiri'] [u'brew', u'hospit', u'posit'] [u'rspca', u'polic', u'investig', u'cat', u'death'] [u'clarifi', u'coolac', u'rent'] [u'samaritan', u'welcom', u'fund', u'boost', u'crisi'] [u'scheme', u'allow', u'ballet', u'bush'] [u'schiavo', u'parent', u'lose', u'legal'] [u'schiavo', u'parent', u'court'] [u'schizophren', u'clear', u'girl', u'murder'] [u'serial', u'rapist', u'jail', u'indefinit'] [u'servic', u'demand', u'mean', u'tweed', u'rat', u'rise'] [u'sewag', u'treatment', u'plant', u'cost', u'increas'] [u'shark', u'sack', u'coach', u'open', u'door', u'macqueen'] [u'sharp', u'offer', u'perth', u'captainci'] [u'shire', u'ranger', u'council', u'burn', u'boat'] [u'short', u'rule', u'sumo'] [u'shot', u'fire', u'sydney'] [u'smell', u'filter', u'water'] [u'socceroo', u'like', u'spark', u'club', u'unrest'] [u'soldier', u'clear', u'bacteri', u'diseas'] [u'south', u'east', u'polic', u'warn', u'easter', u'road', u'crackdown'] [u'south', u'east', u'undergo', u'popul', u'explos'] [u'sunshin', u'state', u'top', u'popul', u'growth'] [u'support', u'plan', u'streamlin', u'cross', u'border'] [u'offer', u'xstrata', u'tell', u'sharehold'] [u'sweep', u'asia', u'pacif'] [u'thompson', u'reject', u'carcass', u'jibe'] [u'toddler', u'kill', u'truck', u'accid', u'near', u'school'] [u'inzamam', u'ball', u'test'] [u'tourist', u'flock', u'roma', u'easter'] [u'transport', u'corridor', u'face', u'hitch'] [u'tumbl', u'sharemarket', u'prompt', u'pakistani', u'riot'] [u'upper', u'hous', u'probe', u'funer', u'industri'] [u'armi', u'order', u'involuntari', u'troop'] [u'music', u'sale', u'piraci', u'bite'] [u'test', u'bird', u'vaccin', u'safeti'] [u'vanston', u'uncertain', u'visa', u'number'] [u'vatican', u'open', u'easter', u'ceremoni'] [u'vella', u'action', u'cancer'] [u'vote', u'hit', u'american', u'idol'] [u'driver', u'warn', u'easter', u'road', u'crackdown'] [u'wagga', u'policeman', u'fin', u'speed'] [u'shearer', u'aim', u'record'] [u'weed', u'challeng', u'rulebook'] [u'wether', u'name'] [u'wit', u'lie', u'underworld', u'murder', u'suspect', u'court'] [u'women', u'cricket', u'meet', u'zealand'] [u'woodchip', u'export', u'coal', u'plan'] [u'wright', u'step', u'india', u'coach'] [u'xstrata', u'expir'] [u'fear', u'dead', u'boat', u'capsiz', u'pakistan'] [u'abdul', u'probat', u'flee', u'crash', u'scene'] [u'aborigin', u'seek', u'return', u'tasmanian', u'land'] [u'afghanistan', u'creat', u'special', u'court', u'drug', u'lord'] [u'wrong', u'grant'] [u'aussi', u'eye', u'ash', u'pont', u'admit'] [u'australia', u'chang', u'travel', u'alert', u'philippin'] [u'australia', u'good', u'asian', u'footbal', u'iraqi', u'skipper'] [u'australian', u'octopus', u'walk', u'tentacl'] [u'baxter', u'protest', u'urg', u'remain', u'calm'] [u'beast', u'suburb', u'attack', u'london'] [u'chees', u'lanc', u'tour', u'franc', u'trail'] [u'brake', u'troubl', u'strand', u'plane', u'sydney', u'tarmac'] [u'brawl', u'kill', u'secur', u'guard', u'polic'] [u'brazil', u'polic', u'rescu', u'footbal', u'mother'] [u'bronco', u'hammer', u'rooster'] [u'bulldoz', u'link', u'rubber', u'tree', u'diseas'] [u'busi', u'urg', u'lennon', u'capitul'] [u'cahil', u'pass', u'socceroo'] [u'canada', u'reject', u'soldier', u'refuge'] [u'fire', u'spark', u'evacu', u'unit', u'block'] [u'carr', u'firm', u'futur', u'intent'] [u'christian', u'leader', u'reflect', u'love', u'triumph'] [u'competitor', u'fan', u'gather', u'peak', u'race'] [u'confer', u'develop', u'anti', u'child', u'abus'] [u'corbi', u'lawyer', u'give', u'time', u'produc', u'wit'] [u'death', u'toll', u'rise', u'texa', u'refineri', u'blast'] [u'diner', u'find', u'finger', u'fast', u'food'] [u'divorc', u'sheen', u'richard', u'fight', u'custodi'] [u'lobbi', u'kemp', u'recommend', u'fund'] [u'evan', u'await', u'interview'] [u'farrel', u'fast', u'track', u'england'] [u'deni', u'islam', u'group', u'refineri', u'blast'] [u'destroy', u'residenti', u'colleg'] [u'iraqi', u'women', u'shoot', u'dead', u'park'] [u'food', u'crisi', u'tsunami', u'zone', u'avert'] [u'open', u'champ', u'grab', u'lead'] [u'victorian', u'governor', u'mccaughey', u'die'] [u'frail', u'pope', u'miss', u'easter', u'ceremoni'] [u'game', u'chief', u'play', u'hardbal', u'canadian'] [u'golf', u'cours', u'kill', u'teenag'] [u'gopperth', u'kick', u'hurrican', u'victori'] [u'greec', u'dope', u'warehous', u'athlet', u'chief'] [u'health', u'author', u'issu', u'melioidosi', u'warn'] [u'horror', u'start', u'easter', u'road', u'toll'] [u'japan', u'issu', u'tsunami', u'alert', u'pacif'] [u'journalist', u'releas', u'hospit', u'iraq'] [u'wit', u'like', u'testifi', u'corbi', u'trial'] [u'king', u'battl', u'deplet', u'windi', u'squad'] [u'kmart', u'sear', u'sharehold', u'approv', u'merger'] [u'kyrgyz', u'opposit', u'leader', u'get'] [u'lawyer', u'wrangl', u'print', u'jackson', u'porn'] [u'stay', u'outer'] [u'lion', u'deni', u'victimis', u'riewoldt'] [u'major', u'build', u'undergo', u'energi', u'audit'] [u'charg', u'cruelti', u'cat', u'death'] [u'hospit', u'tram', u'accid'] [u'succumb', u'injuri', u'tram', u'accid'] [u'marburg', u'virus', u'claim', u'live'] [u'mear', u'releg', u'silver'] [u'minist', u'urg', u'speed', u'prison', u'inquiri'] [u'mayor', u'see', u'town', u'reviv', u'pulp'] [u'oliv', u'hospit', u'moone', u'valley', u'fall'] [u'oliv', u'easter', u'race', u'carniv'] [u'kill', u'crash', u'fraser', u'island'] [u'opposit', u'support', u'corbi', u'wit'] [u'pakistan', u'ignor', u'akhtar', u'seri'] [u'parent', u'moot', u'uniqu', u'number', u'student'] [u'pinochet', u'escap', u'investig', u'assassin'] [u'pipelin', u'syndic', u'respond', u'environment', u'fear'] [u'polic', u'helicopt', u'help', u'break', u'beachfront', u'parti'] [u'polic', u'kill', u'suspect', u'jacker'] [u'polic', u'undergo', u'counsel', u'kill', u'suspect'] [u'protest', u'converg', u'baxter'] [u'protest', u'settl', u'baxter'] [u'rain', u'fail', u'boost', u'canberra', u'level'] [u'charless', u'studio', u'museum'] [u'reckless', u'driver', u'amaz', u'perth', u'polic'] [u'refuge', u'activist', u'converg', u'baxter'] [u'refuge', u'advoc', u'march', u'vanston', u'home'] [u'riewoldt', u'month'] [u'river', u'campaign', u'call', u'mobil', u'dredg'] [u'road', u'crash', u'hospit', u'pressur'] [u'road', u'toll', u'prompt', u'black', u'friday', u'label'] [u'robinson', u'defend', u'farrel', u'raid'] [u'rooster', u'look', u'forward', u'hodg', u'reunion'] [u'runway', u'scarecrow', u'lose', u'translat'] [u'scientist', u'soft', u'tissu', u'bone'] [u'scud', u'surviv', u'test'] [u'secur', u'council', u'approv', u'sudan', u'peacekeep'] [u'secur', u'guard', u'die', u'street', u'brawl'] [u'seven', u'kill', u'afghanistan', u'firefight'] [u'shark', u'feed', u'frenzi', u'drift', u'north'] [u'shiit', u'kurd', u'delay', u'format', u'iraqi', u'govt'] [u'slingshot', u'lead', u'peak'] [u'small', u'retail', u'focus', u'plastic', u'campaign'] [u'sorenstam', u'teen', u'titan', u'chase', u'lead', u'trio', u'california'] [u'suicid', u'bomber', u'kill', u'iraqi', u'commando'] [u'suprem', u'court', u'stay', u'schiavo', u'case'] [u'suspect', u'gunman', u'arrest', u'shot', u'fire'] [u'tasmania', u'implement', u'legal', u'profess', u'reform'] [u'teenag', u'charg', u'rap', u'jogger'] [u'toddler', u'die', u'pool', u'accid'] [u'trio', u'jail', u'passport', u'fraud', u'law'] [u'tsunami', u'troop', u'pull'] [u'dead', u'crash', u'near', u'adelaid'] [u'approv', u'troop', u'sudan'] [u'chief', u'give', u'green', u'light', u'solv', u'hariri', u'death'] [u'see', u'checkmat', u'fischer'] [u'victorian', u'prison', u'evid', u'corbi'] [u'wall', u'street', u'avoid', u'risk', u'ahead', u'holiday'] [u'waratah', u'vickerman'] [u'weak', u'schiavo', u'show', u'sign', u'malnutrit'] [u'withhold', u'ground', u'separ', u'judg'] [u'woman', u'die', u'nation', u'park', u'cliff', u'fall'] [u'women', u'cricket', u'beat'] [u'world', u'bank', u'compil', u'staff', u'view', u'wolfowitz'] [u'youni', u'run', u'riot', u'bangalor'] [u'ail', u'pope', u'make', u'video', u'appear', u'cathol'] [u'dead', u'ghana', u'port'] [u'aussi', u'upper', u'hand', u'test'] [u'weather', u'hit'] [u'baxter', u'protest', u'clash', u'polic'] [u'baxter', u'protest', u'object', u'arrest', u'kite'] [u'black', u'cap', u'launch', u'stoic', u'resist'] [u'black', u'cap', u'lunch'] [u'bogut', u'hail', u'colleg', u'basketbal', u'best'] [u'british', u'opposit', u'dump', u'deputi', u'budget', u'remark'] [u'brook', u'bell', u'beach', u'final'] [u'carr', u'drive', u'docker', u'famous', u'victori'] [u'chief', u'minist', u'question', u'govt', u'motiv'] [u'coffe', u'shortag', u'brew', u'higher', u'price'] [u'conlon', u'promis', u'measur', u'respons', u'road', u'toll'] [u'culinari', u'ambassador', u'cook', u'intern'] [u'current', u'tax', u'fund', u'infrastructur', u'need'] [u'custom', u'keep', u'watch', u'illeg', u'fish', u'boat'] [u'daylight', u'save', u'end', u'tomorrow'] [u'democrat', u'want', u'detail', u'clone', u'law', u'review'] [u'demonstr', u'continu', u'baxter', u'protest'] [u'divorc', u'paper', u'finalis', u'aniston', u'pitt', u'split'] [u'drown', u'tragic', u'safeti', u'remind', u'parent'] [u'easter', u'road', u'toll', u'rise'] [u'elect', u'inquiri', u'begin', u'maranoa'] [u'elrich', u'save', u'socceroo', u'blush'] [u'emot', u'demon', u'crush', u'bomber'] [u'eremein', u'give', u'denham', u'success'] [u'excit', u'hold', u'highland', u'edg', u'cat'] [u'fake', u'tasmanian', u'tiger', u'sight', u'cost', u'taxpay'] [u'famili', u'euthanasia', u'plea', u'fail', u'sway'] [u'fatal', u'train', u'crash', u'report', u'recommend', u'warn', u'chang'] [u'troop', u'kill', u'blast', u'afghanistan'] [u'gospel', u'music', u'fan', u'bolster', u'toowoomba', u'economi'] [u'govt', u'urg', u'increas', u'ethanol', u'product'] [u'hospit', u'fundrais', u'break', u'record'] [u'howard', u'wont', u'extend', u'embryon', u'stem', u'cell', u'research'] [u'hundr', u'thousand', u'march', u'china', u'threat'] [u'impress', u'roo', u'bounc', u'blue'] [u'injur', u'charg', u'hotel', u'shoot'] [u'iraqi', u'forc', u'seiz', u'suspect', u'raid'] [u'jackson', u'juror', u'consid', u'fingerprint'] [u'judg', u'reject', u'attempt', u'reopen', u'schiavo', u'case'] [u'kelli', u'bat', u'pick', u'bronz'] [u'termin', u'plead', u'famili'] [u'liber', u'urg', u'jump', u'ship', u'springborg'] [u'lower', u'tax', u'attract', u'resid', u'stefaniak'] [u'mear', u'sister', u'track'] [u'middl', u'east', u'top', u'asian', u'world', u'qualifi'] [u'militiamen', u'work', u'restor', u'order', u'kyrgyzstan'] [u'molik', u'down', u'pratt', u'advanc', u'florida'] [u'monaco', u'princ', u'rainier', u'fight', u'life'] [u'mountain', u'biker', u'search'] [u'move', u'expand', u'mental', u'health', u'sector'] [u'approach', u'need', u'endem', u'infrastructur'] [u'kyrgyzstan', u'leader', u'appeal', u'calm'] [u'oliv', u'dark', u'return'] [u'oliv', u'easter', u'race', u'carniv'] [u'oliv', u'wait', u'news', u'spine'] [u'charg', u'high', u'speed', u'chase'] [u'oust', u'kyrgyz', u'presid', u'slam', u'coup'] [u'panther', u'leav', u'dragon', u'rock'] [u'philippin', u'high', u'alert', u'amid', u'easter', u'celebr'] [u'polic', u'defend', u'return', u'gun', u'murder', u'suicid'] [u'polic', u'prepar', u'baxter', u'protest'] [u'polic', u'search', u'test', u'case', u'rule', u'duti'] [u'polic', u'seek', u'driver', u'phone', u'exchang', u'inquiri'] [u'polic', u'seek', u'wit', u'belconnen', u'abduct'] [u'polic', u'identifi', u'victim'] [u'pope', u'health', u'overshadow', u'good', u'friday', u'celebr'] [u'port', u'wari', u'docker', u'defector'] [u'prankster', u'smuggl', u'museum'] [u'protest', u'clash', u'polic'] [u'public', u'help', u'seek', u'search', u'miss', u'teen'] [u'public', u'servic', u'honour', u'mccaughey'] [u'riewoldt', u'go', u'knife'] [u'riewoldt', u'surgeri', u'success', u'saint'] [u'ross', u'hail', u'gift', u'keep', u'give'] [u'sar', u'virus', u'spread'] [u'schiavo', u'hour', u'live', u'father'] [u'sehwag', u'ignit', u'india', u'explos'] [u'sexual', u'abus', u'rife', u'aceh', u'tsunami', u'camp'] [u'shark', u'bite', u'eel'] [u'slow', u'go', u'peak', u'field'] [u'socceroo', u'edg', u'iraq'] [u'somali', u'cleric', u'threaten', u'jihad', u'peacekeep'] [u'sorenstam', u'grab', u'share', u'california', u'lead'] [u'stagnant', u'popul', u'worri', u'busi', u'govern'] [u'storm', u'south', u'east'] [u'sublim', u'hewat', u'steer', u'waratah', u'victori'] [u'taiwanes', u'turn', u'ralli', u'china'] [u'tasmania', u'grant', u'miner', u'explor', u'licens'] [u'tennant', u'creek', u'look'] [u'tsunami', u'creat', u'gender', u'imbal', u'oxfam'] [u'sell', u'fighter', u'plan', u'pakistan'] [u'sell', u'fighter', u'jet', u'pakistan'] [u'whale', u'tangl', u'fish', u'gear', u'coast'] [u'women', u'surviv', u'dead', u'jellyfish'] [u'work', u'begin', u'prison', u'corbi', u'drug', u'trial'] [u'world', u'bank', u'wolfowitz', u'hold', u'construct', u'meet'] [u'wrist', u'injuri', u'halt', u'roddick', u'titl', u'defenc'] [u'abus', u'iraqi', u'go', u'ghraib', u'document'] [u'airlin', u'limit', u'crew', u'north', u'pole', u'exposur', u'amid'] [u'world', u'australia', u'women'] [u'arm', u'robberi', u'leav', u'victim', u'hospit'] [u'aussi', u'lose', u'centurion', u'pont'] [u'australian', u'charg', u'mine', u'pollut'] [u'bait', u'research', u'halt', u'cane', u'toad', u'spread'] [u'basketbal', u'accid', u'sever', u'boy', u'hand', u'foot'] [u'baxter', u'protest', u'forc', u'polic'] [u'bomb', u'defus', u'near', u'spanish', u'embassi', u'philippin'] [u'kill', u'driveway', u'accid'] [u'miss', u'lake', u'hume'] [u'brother', u'goanna', u'pull', u'championship'] [u'burmes', u'leader', u'talk', u'democrat', u'constitut'] [u'cairo', u'court', u'jail', u'spi', u'iran'] [u'bomb', u'rock', u'beirut', u'christian', u'district'] [u'cat', u'purr', u'tiger'] [u'chines', u'media', u'condemn', u'taiwanes', u'protest'] [u'clean', u'continu', u'savag', u'storm', u'lash', u'south'] [u'clock', u'sync', u'daylight', u'save', u'end'] [u'coordin', u'appoint', u'communiti', u'justic', u'group'] [u'cowboy', u'warrior', u'tight', u'clash'] [u'cricket', u'australia', u'probe', u'warn', u'phone', u'claim'] [u'date', u'kyrgyzstan', u'presidenti', u'vote'] [u'diouf', u'lead', u'premiership', u'goal', u'parad', u'seneg'] [u'disabl', u'group', u'urg', u'euthanasia'] [u'donkey', u'lead', u'melbourn', u'easter', u'march'] [u'eagl', u'late', u'swoop', u'crow'] [u'easter', u'road', u'toll', u'continu', u'climb'] [u'dead', u'caribbean', u'plane', u'crash'] [u'elder', u'drown', u'boat', u'incid'] [u'elvstroem', u'romp', u'dubai'] [u'embryo', u'research', u'ban', u'disappoint', u'church'] [u'england', u'turn', u'style'] [u'escap', u'tunnel', u'iraqi', u'prison'] [u'explos', u'rock', u'sydney', u'shop', u'strip'] [u'farina', u'tunnel', u'report'] [u'fear', u'rare', u'parrot', u'speci', u'declin'] [u'feder', u'round', u'biscayn'] [u'filipino', u'columnist', u'shoot', u'dead'] [u'destroy', u'canberra', u'hous'] [u'attack', u'teenag'] [u'british', u'jam', u'callaghan', u'die', u'age'] [u'wheel', u'drive', u'curb', u'park', u'easter'] [u'franc', u'falter', u'road', u'world'] [u'frenchwoman', u'row', u'solo', u'pacif'] [u'fresh', u'attack', u'palm', u'polic', u'station'] [u'govt', u'deni', u'propos', u'megamart', u'impact'] [u'govt', u'easter', u'sunday', u'trade', u'nile', u'say'] [u'group', u'welcom', u'govt', u'plan', u'updat', u'palliat'] [u'hawk', u'horror', u'start'] [u'hillbilli', u'creator', u'die'] [u'immigr', u'check', u'screen', u'crimin'] [u'israel', u'super', u'stun', u'irish'] [u'itali', u'sink', u'scotland'] [u'jetstar', u'asia', u'add', u'manila', u'rout'] [u'kaneria', u'hop', u'strike', u'spinner'] [u'kiwi', u'tail', u'fail'] [u'latest', u'rock', u'attack', u'possibl', u'random'] [u'laxman', u'thwart', u'pakistan', u'bangalor'] [u'lebanes', u'leader', u'pledg', u'work'] [u'mactier', u'bat', u'fight', u'track', u'gold'] [u'mactier', u'win', u'pursuit', u'world', u'titl'] [u'climb', u'roof', u'vatican', u'basilica'] [u'hold', u'hostag', u'newcastl', u'sieg'] [u'marriag', u'certif', u'chang', u'thwart', u'crimin'] [u'messag', u'hope', u'pope', u'easter', u'vigil'] [u'mickleberg', u'continu', u'fight', u'clear'] [u'million', u'north', u'korean', u'face', u'food', u'shortag'] [u'minist', u'urg', u'check', u'koongarra', u'polici'] [u'miss', u'sydney', u'man'] [u'call', u'referendum', u'year', u'term'] [u'assur', u'seek', u'hick', u'trial', u'ruddock'] [u'team', u'honour', u'basebal', u'shape'] [u'korea', u'confirm', u'bird', u'outbreak'] [u'need', u'review', u'alcohol', u'program', u'rupa'] [u'pilot', u'kill', u'glider', u'collid'] [u'polic', u'defend', u'action', u'baxter'] [u'polic', u'effort', u'amaz', u'baxter', u'protest'] [u'polic', u'drink', u'driver', u'twice'] [u'polic', u'search', u'shoot', u'stomach'] [u'pont', u'put', u'aussi', u'control'] [u'pope', u'attempt', u'easter', u'bless'] [u'princ', u'charl', u'apologis', u'camilla'] [u'princ', u'rainier', u'condit', u'worsen'] [u'prison', u'arriv', u'bali'] [u'prison', u'arriv', u'bali', u'corbi', u'trial'] [u'nerv', u'win', u'tough', u'brisban', u'gladston', u'race'] [u'resili', u'tiger', u'upset', u'bulldog'] [u'riewoldt', u'hold', u'grudg', u'lion', u'pair'] [u'right', u'case', u'import'] [u'ruddock', u'hit', u'corbi', u'lawyer'] [u'speaker', u'order', u'paedophil', u'claim'] [u'schiavo', u'near', u'death', u'legal', u'option'] [u'scud', u'injuri', u'blow'] [u'eagl', u'continu', u'perfect', u'start'] [u'search', u'begin', u'miss', u'raft', u'trip'] [u'search', u'locat', u'miss', u'rafter'] [u'seven', u'arrest', u'baxter', u'protest'] [u'shark', u'bounc', u'shock', u'brumbi'] [u'sizzl', u'sorenstam', u'take', u'control'] [u'slingshot', u'maintain', u'massiv', u'lead'] [u'slingshot', u'take', u'massiv', u'peak', u'lead'] [u'snowsil', u'quirk', u'nation', u'triathlon', u'titl'] [u'socceroo', u'give', u'glimps', u'what', u'store'] [u'stagnant', u'popul', u'growth', u'cyclic', u'forecast'] [u'strong', u'earthquak', u'record', u'eastern', u'indonesia'] [u'church', u'leader', u'condemn', u'embryon', u'stem', u'cell'] [u'task', u'forc', u'tackl', u'elder', u'abus'] [u'thai', u'railway', u'attack', u'injur'] [u'children', u'kill', u'nepal', u'explos'] [u'toll', u'rise', u'ebola', u'like', u'virus', u'outbreak'] [u'turkish', u'right', u'advis', u'resign'] [u'protest', u'offer', u'asylum', u'seeker', u'support'] [u'warn', u'claim', u'privat', u'matter', u'cricket', u'australia'] [u'westwood', u'durant', u'share', u'clubhous', u'lead'] [u'whale', u'rescu', u'continu', u'coast'] [u'wit', u'risk', u'life', u'corbi'] [u'word', u'whiz', u'spell', u'scrabbl', u'record'] [u'young', u'christian', u'begin', u'uluru', u'pilgrimag'] [u'power', u'adelaid'] [u'actew', u'boss', u'defend', u'report', u'delay'] [u'govt', u'urg', u'eas', u'public', u'servant', u'workload'] [u'showcas', u'electron', u'vote'] [u'investig', u'suspect', u'assault', u'garuda', u'flight'] [u'afridi', u'youni', u'bangalor', u'thriller'] [u'afridi', u'put', u'india', u'troubl', u'bangalor'] [u'airlin', u'passeng', u'injur', u'turbul'] [u'servic', u'expect', u'lift', u'high', u'countri'] [u'alic', u'spring', u'pistol', u'rang', u'target'] [u'annan', u'condemn', u'lebanon', u'bomb'] [u'australian', u'keen', u'foreign', u'polici', u'survey'] [u'backbench', u'back', u'costello'] [u'bakiyev', u'confirm', u'act', u'presid'] [u'baryulgil', u'tell', u'asbesto', u'compo', u'limit'] [u'battl', u'power', u'kyrgyzstan', u'prompt', u'warn'] [u'bauxit', u'tender', u'choos', u'year'] [u'baxter', u'protest', u'disturb', u'asylum', u'seeker'] [u'baxter', u'protest', u'violent'] [u'beatti', u'welcom', u'latest', u'poll', u'result'] [u'black', u'cap', u'struggl', u'test'] [u'blast', u'injur', u'diplomat', u'report'] [u'blood', u'circul', u'boy', u'limb', u'reattach'] [u'bodi', u'water', u'north', u'cronulla'] [u'bondi', u'search', u'call'] [u'bottl', u'messag', u'year', u'send'] [u'bundaberg', u'surgeon', u'resign', u'incompet', u'claim'] [u'driver', u'assault', u'prompt', u'restraint'] [u'chang', u'infrastructur', u'fund'] [u'accid', u'take', u'road', u'toll'] [u'chelsea', u'boss', u'coach', u'peac', u'israel'] [u'church', u'enjoy', u'higher', u'easter', u'patronag'] [u'cockatoo', u'hit', u'right', u'note', u'music', u'festiv'] [u'commonwealth', u'north', u'atsic', u'asset'] [u'coordin', u'expect', u'boost', u'communiti', u'justic'] [u'corbi', u'lawyer', u'speak', u'prison'] [u'corbi', u'lawyer', u'meet', u'wit'] [u'council', u'fear', u'famili', u'exposur', u'asbesto'] [u'council', u'see', u'worth', u'late', u'night', u'servic'] [u'crash', u'leav', u'boy', u'hospit'] [u'crowd', u'hous', u'drummer', u'die'] [u'defenc', u'personnel', u'home', u'aceh'] [u'democrat', u'vote', u'year', u'term'] [u'deputi', u'defend', u'infrastructur', u'spend'] [u'diver', u'join', u'search', u'miss'] [u'doctor', u'confid', u'boy', u'limb', u'attach'] [u'driver', u'remind', u'hand', u'hold', u'phone', u'danger'] [u'dual', u'qualif', u'offer', u'outback', u'govern'] [u'easter', u'driver', u'ask', u'care', u'come', u'home'] [u'easter', u'driver', u'urg', u'home', u'safe'] [u'easter', u'road', u'toll', u'rise'] [u'europ', u'attempt', u'kyrgyzstan', u'solut'] [u'famili', u'consid', u'civil', u'action', u'alleg'] [u'fatal', u'mar', u'weekend', u'road', u'record'] [u'fear', u'sectarian', u'unrest', u'grow', u'beirut', u'blast'] [u'fight', u'philippin', u'kill', u'rebel'] [u'firefight', u'want', u'fund', u'distribut', u'rethink'] [u'flatley', u'highland', u'clash'] [u'foreign', u'polici', u'focus', u'survey'] [u'crowd', u'hous', u'drummer', u'dead'] [u'girl', u'crush', u'kitchen', u'bench'] [u'time', u'rebuild', u'hawk', u'clarkson'] [u'gobi', u'yellow', u'dust', u'storm', u'north', u'korea'] [u'govt', u'ask', u'provid', u'home', u'care', u'option'] [u'govt', u'defend', u'homeless', u'strategi'] [u'govt', u'like', u'way', u'hous', u'corp'] [u'govt', u'urg', u'fight', u'alcohol', u'abus'] [u'govt', u'urg', u'offer', u'cut'] [u'great', u'lake', u'council', u'join', u'chang', u'task', u'forc'] [u'gunn', u'continu', u'monitor', u'bushfir'] [u'health', u'right', u'commiss', u'investig', u'teen', u'death'] [u'high', u'hop', u'controversi', u'rice'] [u'hospit', u'floor', u'option', u'unlik'] [u'hous', u'minist', u'deni', u'public', u'servic', u'nepot'] [u'investig', u'continu', u'pedestrian', u'cross'] [u'iranian', u'diplomat', u'dismiss', u'nuclear', u'weapon'] [u'islam', u'leader', u'meet', u'unrest', u'southern'] [u'japan', u'distribut', u'tsunami', u'warn', u'data'] [u'june', u'open', u'date', u'cultur', u'centr'] [u'kaka', u'seal', u'brazil'] [u'katich', u'gillespi', u'stand', u'firm'] [u'knesset', u'decid', u'gaza', u'pullout', u'referendum'] [u'kyrgyzstan', u'leader', u'avoid', u'spill'] [u'lewi', u'unrepent', u'paedophil'] [u'liber', u'switch', u'support', u'costello'] [u'local', u'polic', u'hope', u'fatal', u'free', u'easter'] [u'matthew', u'slam', u'mcguir', u'riewoldt', u'reaction'] [u'owner', u'consid', u'govt', u'wood', u'offer'] [u'miner', u'offer', u'moranbah', u'help', u'hand'] [u'minist', u'consid', u'school', u'plan'] [u'minist', u'hear', u'har', u'race', u'protest'] [u'miss', u'boy', u'bodi'] [u'miss', u'bushwalk'] [u'molik', u'set', u'henin', u'clash'] [u'foreign', u'fighter', u'enter', u'iraq', u'general'] [u'shower', u'possibl', u'north'] [u'mourinho', u'coach', u'peac', u'israel'] [u'year', u'term', u'draw', u'mix', u'respons'] [u'morgan', u'get', u'jump', u'track', u'plan'] [u'music', u'industri', u'mourn', u'pass', u'paul', u'hester'] [u'manildra', u'accid', u'victim', u'releas'] [u'nepal', u'arrest', u'anti', u'king', u'protest'] [u'confid', u'knight', u'sponsor'] [u'nundl', u'gold', u'mine', u'heritag', u'celebr'] [u'nurs', u'unhappi', u'offer'] [u'oxford', u'boat', u'race'] [u'pakistan', u'win', u'final', u'india', u'test'] [u'park', u'council', u'skittl', u'bowl', u'centr', u'support'] [u'peac', u'pill', u'workshop', u'draw', u'worldwid'] [u'perth', u'recov', u'limb', u'surgeri'] [u'polic', u'hoon', u'confisc'] [u'polic', u'hunt', u'prison', u'farm', u'escape'] [u'polic', u'investig', u'hardwar', u'store', u'blaze'] [u'polic', u'easter', u'speedster'] [u'polic', u'pedestrian', u'cross', u'victim'] [u'polic', u'plead', u'fatal', u'free', u'easter', u'monday'] [u'polic', u'prais', u'easter', u'driver'] [u'polic', u'cafe', u'suspici'] [u'polic', u'swoop', u'cannabi', u'plantat'] [u'polic', u'unhappi', u'easter', u'drink', u'driver'] [u'polic', u'warn', u'driver', u'care', u'come', u'home'] [u'pope', u'skip', u'easter', u'monday', u'bless'] [u'princ', u'rainier', u'stabl', u'condit'] [u'princ', u'rainier', u'condit', u'worri', u'doctor'] [u'prison', u'escape', u'remain', u'larg'] [u'probe', u'consid', u'speed', u'policeman', u'disciplin'] [u'rafter', u'plan', u'futur', u'trip', u'better'] [u'raider', u'unbeaten', u'defeat', u'rabbitoh'] [u'rain', u'hit', u'scott', u'close'] [u'cross', u'urg', u'blood', u'donat'] [u'restor', u'pleas', u'stain', u'glass', u'result'] [u'ross', u'confid', u'chanc', u'stawel', u'glori'] [u'ross', u'win', u'gift', u'scratch'] [u'meet', u'unit', u'church', u'funer'] [u'runway', u'revamp', u'take'] [u'schiavo', u'day', u'leav', u'live'] [u'scientist', u'research', u'contain', u'cane', u'toad'] [u'search', u'continu', u'involv', u'sieg'] [u'search', u'resum', u'miss', u'bushwalk'] [u'search', u'resum', u'miss', u'swimmer'] [u'seven', u'kill', u'kerbala', u'bomb', u'attack'] [u'shop', u'damag', u'ipswich', u'blaze'] [u'silver', u'bat'] [u'slingshot', u'head', u'peak'] [u'softwar', u'problem', u'blame', u'incorrect', u'speed'] [u'sorenstam', u'get', u'grand', u'slam', u'track'] [u'space', u'station', u'crew', u'complet', u'swift', u'spacewalk'] [u'space', u'station', u'crew', u'ventur', u'outsid'] [u'spirit', u'bulldog', u'magpi'] [u'storm', u'caus', u'power', u'disrupt'] [u'strand', u'fishermen', u'winch', u'safeti'] [u'struggl', u'farmer', u'tell', u'offer'] [u'sudan', u'crime', u'accus'] [u'suspect', u'heart', u'attack', u'kill', u'diver'] [u'suspect', u'murder', u'reduc', u'road', u'toll', u'count'] [u'taiwanes', u'opposit', u'begin', u'histor', u'china', u'visit'] [u'taskforc', u'probe', u'filipina', u'journalist', u'death'] [u'time', u'run', u'whale', u'rescu'] [u'tsunami', u'thought', u'boost', u'easter', u'church', u'servic'] [u'kill', u'road'] [u'compani', u'sue', u'soni', u'playstat', u'consol'] [u'consid', u'chang', u'militari', u'tribun'] [u'hold', u'militari', u'busi', u'brief', u'central'] [u'vail', u'upbeat', u'free', u'trade', u'prospect', u'farmer'] [u'govt', u'push', u'nation', u'cloth', u'standard'] [u'visitor', u'bolster', u'easter', u'church', u'servic'] [u'warrior', u'jackson', u'face', u'past', u'accus'] [u'water', u'centr', u'receiv', u'fund', u'boost'] [u'win', u'sculptur', u'water', u'save', u'messag'] [u'woman', u'charg', u'stab', u'death'] [u'work', u'inspector', u'target', u'legal', u'practic'] [u'young', u'resid', u'join', u'user', u'pay', u'water'] [u'accc', u'weigh', u'regul'] [u'driver', u'prais'] [u'govt', u'consid', u'boost', u'health', u'fund'] [u'resist', u'call', u'suicid', u'time', u'facil'] [u'adler', u'tell', u'court', u'stupid', u'error'] [u'agforc', u'fear', u'develop', u'lockout', u'river', u'plan'] [u'alectown', u'victim', u'help', u'polic', u'inquiri'] [u'amnesti', u'criticis', u'human', u'right', u'report'] [u'astl', u'lead', u'zealand', u'fight'] [u'suffer', u'easter', u'hangov'] [u'aussi', u'domin', u'round', u'phillip', u'island'] [u'aussi', u'lose', u'wicket', u'chase'] [u'aussi', u'thrash', u'black', u'cap', u'wrap', u'seri'] [u'aussi', u'unbeaten', u'women', u'world'] [u'aussi', u'wine', u'prove', u'corker'] [u'australian', u'team', u'compet', u'champ', u'seri'] [u'australia', u'respond', u'earthquak', u'crisi'] [u'babi', u'seal', u'hunt', u'resum', u'canada'] [u'barrett', u'return', u'dragon', u'line'] [u'barton', u'defend', u'interrog', u'claim'] [u'battl', u'parliament', u'kyrgyzstan', u'end'] [u'battl', u'wentworth', u'cost'] [u'beatti', u'warn', u'council', u'land', u'valu'] [u'bell', u'warn', u'eyesor'] [u'begin', u'takeov', u'mail'] [u'bicycl', u'bomber', u'kill', u'iraq'] [u'tourism', u'campaign', u'promot', u'central', u'victoria'] [u'boat', u'safeti', u'crackdown', u'net', u'breaker'] [u'bodi', u'identifi', u'miss', u'sydney', u'dealer'] [u'bogut', u'nomin', u'draft'] [u'bomber', u'bradley', u'nomin', u'rise', u'star', u'award'] [u'boost', u'plan', u'break', u'hill', u'radiolog', u'servic'] [u'expect', u'recoveri', u'limb'] [u'brigalow', u'belt', u'futur', u'uncertain', u'nation'] [u'burn', u'off', u'creat', u'mushroom', u'cloud', u'hobart'] [u'busi', u'chamber', u'maintain', u'daylight', u'save'] [u'cabonn', u'council', u'examin', u'limeston', u'quarri'] [u'talk', u'hous', u'author'] [u'canberra', u'hous', u'price', u'fall'] [u'carr', u'apolog', u'seek', u'dead'] [u'carr', u'concern', u'opinion', u'trend'] [u'charman', u'rub', u'match'] [u'club', u'fight', u'play', u'music', u'louder', u'longer'] [u'coat', u'arm', u'trial', u'open', u'canberra'] [u'corbi', u'innoc', u'victim', u'prison'] [u'corbi', u'wit', u'offer', u'incent', u'testimoni'] [u'coron', u'reserv', u'decis', u'leski', u'inquest'] [u'council', u'rethink', u'residenti', u'develop', u'opposit'] [u'council', u'say', u'dirti', u'water', u'health', u'risk'] [u'council', u'answer', u'airport', u'sale', u'question'] [u'court', u'adjourn', u'paedophil', u'priest', u'sentenc'] [u'damag', u'wave', u'hit', u'indonesian', u'island'] [u'delay', u'water', u'option', u'report', u'worri', u'opposit'] [u'detect', u'tight', u'lip', u'kilburn', u'murder'] [u'dozen', u'report', u'dead', u'indonesian', u'island'] [u'driver', u'fail', u'road', u'safeti', u'messag'] [u'drug', u'industri', u'agre', u'generic', u'price'] [u'earthquak', u'hit', u'indonesia'] [u'easter', u'tourism', u'boost', u'mildura', u'coffer'] [u'easter', u'traffic', u'choke', u'local', u'road'] [u'epilepsi', u'drug', u'offer', u'hope', u'headach', u'suffer'] [u'fear', u'hold', u'oyster', u'grower', u'futur'] [u'intent', u'resolv', u'disput'] [u'fish', u'crackdown', u'net', u'offenc'] [u'flegg', u'deni', u'asbesto', u'scare', u'tactic', u'claim'] [u'offici', u'blast', u'bolton', u'nomin'] [u'fruit', u'effort', u'microscop'] [u'fruit', u'grower', u'pressur', u'global', u'market'] [u'fund', u'seek', u'church', u'museum', u'plan'] [u'fund', u'black', u'spot', u'intersect'] [u'lover', u'tripl', u'murder', u'trial', u'open'] [u'geneticist', u'hunt', u'cancer', u'achill', u'heel'] [u'giant', u'panda', u'move', u'food', u'sourc'] [u'gift', u'confirm', u'ross', u'boss', u'coach'] [u'gilchrist', u'close', u'bat', u'world', u'record'] [u'govt', u'launch', u'region', u'directori'] [u'govt', u'region', u'help', u'wind'] [u'govt', u'seek', u'second', u'tweed', u'council', u'probe'] [u'govt', u'warn', u'lift', u'nurs'] [u'group', u'stage', u'parliament', u'power', u'station', u'protest'] [u'heart', u'diseas', u'patient', u'need', u'hospit', u'coron'] [u'help', u'cyclon', u'damag', u'school', u'hold'] [u'higher', u'valu', u'dont', u'necessarili', u'mean', u'rate', u'rise'] [u'hors', u'trampl', u'leav', u'woman', u'hospit'] [u'balloonist', u'plan', u'break', u'world', u'record'] [u'hunter', u'rain', u'boost', u'storag', u'level'] [u'hunter', u'thoroughbr', u'fetch'] [u'india', u'tsunami', u'island', u'hold', u'cultur', u'bash'] [u'indonesian', u'island', u'bear', u'brunt', u'quak'] [u'investig', u'launch', u'death'] [u'inzamam', u'ban', u'test'] [u'automot', u'sack', u'staff'] [u'iraqi', u'parliament', u'fail', u'agre', u'speaker'] [u'jackson', u'trial', u'hear', u'accus'] [u'jumbo', u'win', u'grand', u'nation', u'steepl'] [u'kimberley', u'water', u'plan', u'consult', u'begin'] [u'landfil', u'report', u'back', u'recycl', u'overhaul'] [u'land', u'valu', u'rise', u'north'] [u'land', u'valu', u'skyrocket', u'north'] [u'laxman', u'kumbl', u'drop', u'dayer'] [u'leichhardt', u'result', u'hing', u'court', u'case'] [u'liber', u'backbench', u'deflect', u'schultz', u'comment'] [u'liber', u'senat', u'urg', u'govt', u'forego', u'cut'] [u'macdougal', u'opt', u'match', u'suspens'] [u'macdougal', u'match'] [u'charg', u'karratha', u'sieg'] [u'tell', u'avoid', u'alcohol', u'plane', u'alterc'] [u'market', u'plan', u'central', u'west'] [u'mayor', u'highlight', u'public', u'transport', u'import'] [u'mayor', u'beat', u'castlemain', u'jail'] [u'media', u'warn', u'palm', u'island', u'hear'] [u'charg', u'heroin', u'smuggl'] [u'north', u'coast', u'group', u'air', u'quak', u'concern'] [u'minist', u'ask', u'delay', u'race', u'meet', u'decis'] [u'minist', u'wont', u'comment', u'grant'] [u'molik', u'fall', u'henin', u'hardenn'] [u'monaco', u'princ', u'rainier', u'fragil'] [u'morocco', u'releas', u'guantanamo', u'detaine'] [u'easter', u'driver', u'behav'] [u'mother', u'priest', u'twin', u'sue', u'church'] [u'nation', u'pledg', u'million', u'khmer', u'roug', u'trial'] [u'quak', u'spark', u'tsunami', u'fear'] [u'nomin', u'seek', u'region', u'achiev', u'award'] [u'intern', u'fund', u'need'] [u'plan', u'doubl', u'holiday', u'road', u'fin'] [u'north', u'west', u'team', u'win', u'peak', u'race'] [u'stop', u'econom', u'boom'] [u'charg', u'round', u'match'] [u'nufarm', u'deliv', u'profit', u'turnaround'] [u'nurs', u'strike', u'better', u'condit'] [u'nurs', u'wont', u'rule', u'industri', u'unrest'] [u'price', u'eas', u'dollar', u'firm'] [u'bone', u'provid', u'tourist', u'potenti'] [u'opposit', u'air', u'tick', u'fever', u'vaccin', u'concern'] [u'opposit', u'want', u'time', u'facil', u'reduc'] [u'pacif', u'hydro', u'board', u'back', u'spanish', u'takeov'] [u'pagan', u'sign', u'blue'] [u'pair', u'face', u'court', u'hold'] [u'palm', u'island', u'death', u'custodi', u'hear', u'begin'] [u'peterborough', u'sewag', u'prove', u'cost'] [u'phone', u'servic', u'return', u'normal'] [u'pledg', u'quak', u'indonesia'] [u'protest', u'shoe', u'insult'] [u'polic', u'baffl', u'easter', u'breaker'] [u'polic', u'believ', u'bodi', u'miss'] [u'polic', u'blame', u'baxter', u'protest', u'reduc', u'road'] [u'polic', u'concern', u'drink', u'drive', u'rise'] [u'polic', u'endur', u'violent', u'easter'] [u'polic', u'investig', u'corbi', u'wit', u'claim'] [u'policeman', u'bash', u'bremer'] [u'polic', u'easter', u'drink', u'driver'] [u'polic', u'presenc', u'avoid', u'easter', u'biki', u'troubl'] [u'polic', u'presenc', u'help', u'record', u'fatal', u'free', u'easter'] [u'polic', u'probe', u'lake', u'crash'] [u'polic', u'record', u'incid', u'free', u'easter'] [u'polic', u'search', u'clue', u'miss', u'businessman'] [u'polic', u'investig', u'garuda', u'flight', u'incid'] [u'polic', u'stock', u'disastr', u'easter', u'break'] [u'power', u'switch', u'lion', u'clash'] [u'pressur', u'deter', u'doctor', u'assault'] [u'previous', u'jackson', u'abus', u'claim', u'court'] [u'privat', u'patient', u'hospit', u'servic'] [u'pros', u'abandon', u'bell', u'search', u'surf'] [u'politician', u'remain', u'hospit'] [u'quak', u'caus', u'panic', u'tsunami'] [u'quak', u'delay', u'sbys', u'visit', u'australia'] [u'quak', u'hit', u'indonesian', u'island', u'sumatra'] [u'quak', u'prompt', u'tidal', u'warn'] [u'rabbitoh', u'promis', u'action', u'bottl', u'thrower'] [u'cross', u'call', u'blood'] [u'report', u'highlight', u'truck', u'industri', u'owner', u'driver', u'woe'] [u'research', u'consid', u'drug'] [u'restrict', u'unlik', u'week'] [u'robot', u'replac', u'battlefield', u'medic'] [u'rocker', u'geldof', u'sign', u'book', u'deal'] [u'roger', u'sidelin', u'week'] [u'roster', u'prompt', u'polic', u'confid', u'motion'] [u'santo', u'work', u'jeruk', u'field', u'explor'] [u'schiavo', u'autopsi', u'conspiraci', u'talk'] [u'school', u'get', u'fund', u'save', u'water'] [u'school', u'urg', u'accept', u'healthi', u'eat', u'fund'] [u'chang', u'blame', u'wide', u'valuat', u'rise'] [u'shack', u'owner', u'maintain', u'tenur', u'push'] [u'sharapova', u'plot', u'molik', u'collis', u'cours'] [u'shark', u'pickler', u'hirst', u'admit', u'silli', u'idea'] [u'shearer', u'delay', u'world', u'record', u'attempt'] [u'ship', u'usual', u'quak'] [u'slingshot', u'win', u'peak'] [u'small', u'quak', u'induc', u'wave', u'pass', u'coco', u'island'] [u'socceroo', u'ventur', u'unknown'] [u'lanka', u'issu', u'tsunami', u'warn'] [u'store', u'manag', u'bash', u'robberi'] [u'storm', u'bring', u'rain', u'relief', u'farmer'] [u'strohfeld', u'expect', u'meet', u'beatti'] [u'sudan', u'arrest', u'offici', u'darfur', u'crime'] [u'sumatra', u'quak', u'spark', u'tsunami', u'fear'] [u'govt', u'accus', u'neglect', u'water'] [u'teacher', u'jail', u'student'] [u'teacher', u'strike', u'action', u'roll'] [u'texa', u'fear', u'lose', u'school', u'servic'] [u'romanian', u'journalist', u'kidnap', u'iraq'] [u'feel', u'funk'] [u'tribun', u'face', u'busi', u'night'] [u'trio', u'face', u'gangland', u'murder', u'trial'] [u'troop', u'arriv', u'home', u'aceh'] [u'trucki', u'school', u'start'] [u'tsunami', u'warn', u'issu', u'southern', u'india'] [u'region', u'road', u'crash'] [u'backtrack', u'food', u'legal', u'fee'] [u'uncl', u'tobi', u'blaze', u'investig'] [u'union', u'reflect', u'teacher', u'strike', u'impact'] [u'union', u'seek', u'budget', u'fund', u'apprenticeship'] [u'set', u'qualifi', u'global', u'human', u'right', u'test'] [u'tourist', u'jail', u'year'] [u'stock', u'higher', u'fall'] [u'vandal', u'night', u'servic'] [u'victorian', u'prison', u'evid', u'corbi', u'trial'] [u'visitor', u'flock', u'outback', u'easter', u'event'] [u'murder', u'escap', u'minimum', u'secur', u'jail'] [u'tidal', u'warn', u'cancel'] [u'welfar', u'plan', u'includ', u'chang', u'disabl', u'rule'] [u'westfield', u'drop', u'legal', u'action', u'brogden'] [u'whale', u'trap'] [u'winemak', u'look', u'solid', u'barossa', u'grape', u'harvest'] [u'wollongong', u'plan', u'blueprint', u'council'] [u'woman', u'face', u'trial', u'montana', u'kidnap'] [u'wool', u'grower', u'support', u'court', u'case', u'peta'] [u'word', u'perfect', u'finish', u'scrabbl', u'expert'] [u'yemeni', u'civil', u'unrest', u'escal'] [u'zimbabw', u'govt', u'deni', u'withhold', u'food'] [u'accc', u'find', u'telstra', u'price', u'cap', u'stay'] [u'adelaid', u'polic', u'investig', u'gang', u'rape'] [u'adler', u'fight', u'tear', u'trial'] [u'probe', u'possibl', u'brisban', u'bite', u'charg'] [u'age', u'care', u'nurs', u'fight', u'pariti'] [u'plane', u'depart', u'indonesia'] [u'worker', u'earthquak'] [u'ax', u'volleybal', u'water', u'polo', u'program'] [u'alic', u'mayor', u'surviv', u'candidaci', u'condit'] [u'qaeda', u'link', u'group', u'post', u'iraq', u'execut'] [u'question', u'generic', u'drug', u'effect'] [u'anaesthetist', u'threaten', u'stop', u'treat', u'veteran'] [u'anderson', u'accept', u'match'] [u'angola', u'fight', u'contain', u'marburg', u'outbreak'] [u'ashdown', u'sack', u'bosnian', u'presid'] [u'dip', u'despit', u'late', u'ralli'] [u'atsb', u'recommend', u'chang', u'ship', u'incid'] [u'australian', u'rush', u'quak', u'island'] [u'australia', u'lead', u'nuclear', u'test', u'effort'] [u'barca', u'want', u'henri', u'dream', u'deal'] [u'beatti', u'wont', u'daylight', u'save'] [u'bendemer', u'shire', u'land', u'valuat', u'skyrocket'] [u'kosciuszko', u'hazard', u'reduct', u'burn', u'start'] [u'bloomsburi', u'bank', u'harri', u'potter', u'magic'] [u'blue', u'festiv', u'outgrow', u'venu', u'polic'] [u'bogut', u'head', u'award', u'list'] [u'bolivia', u'upset', u'venezuela', u'qualifi'] [u'breathalys', u'buster', u'cyclist', u'bring', u'polic', u'warn'] [u'burger', u'chain', u'ask', u'rapper', u'mcplug'] [u'bush', u'expect', u'iraqi', u'govern', u'soon'] [u'busi', u'beat', u'levi', u'fight'] [u'buyer', u'snap', u'million', u'foal'] [u'cabinet', u'weigh', u'welfar', u'option'] [u'call', u'annual', u'india', u'pakistan', u'showdown'] [u'crash', u'victim', u'murder', u'court', u'hear'] [u'carr', u'announc', u'region', u'polic', u'station', u'revamp'] [u'cascad', u'quak', u'possibl', u'scientist', u'say'] [u'centrelink', u'probe', u'christian', u'colleg', u'claim'] [u'charg', u'expect', u'follow', u'canadian', u'tourist', u'death'] [u'church', u'offer', u'support', u'wake', u'rape', u'claim'] [u'coast', u'jockey', u'readi', u'leav', u'hong', u'kong'] [u'colleg', u'open', u'gladston', u'year'] [u'command', u'centr', u'coastguard', u'ellison', u'say'] [u'commission', u'demand', u'serial', u'killer', u'record'] [u'committe', u'look', u'road', u'rail', u'infrastructur'] [u'communiti', u'support', u'ranger', u'damag', u'boat'] [u'competit', u'start', u'newcastl', u'surfest'] [u'conserv', u'group', u'welcom', u'altern'] [u'cost', u'blow', u'delay', u'dockland', u'ferri', u'wheel'] [u'cotton', u'grower', u'expect', u'bumper', u'harvest'] [u'council', u'air', u'concern', u'suburb'] [u'council', u'green', u'light', u'age', u'care', u'project'] [u'council', u'hop', u'rate', u'rise'] [u'councillor', u'expect', u'face', u'heavier', u'workload'] [u'council', u'reject', u'soun', u'park', u'hous', u'claim'] [u'council', u'rethink', u'pool', u'decis'] [u'council', u'work', u'pest'] [u'council', u'hear', u'pool', u'retir', u'villag', u'plan'] [u'council', u'consid', u'oval', u'rezon'] [u'counti', u'decis', u'pont'] [u'courtney', u'love', u'play', u'deep', u'throat', u'star'] [u'criminologist', u'convinc', u'corbi', u'innoc'] [u'cyber', u'crime', u'expert', u'hold', u'talk'] [u'cyclon', u'cut', u'plantat', u'firm', u'takeov', u'offer'] [u'darfur', u'toll'] [u'darwin', u'sentenc', u'child', u'offenc'] [u'death', u'threat', u'bring', u'kanout', u'home', u'london'] [u'democrat', u'seek', u'continu', u'patient', u'choic'] [u'denmark', u'council', u'consid', u'wind', u'farm', u'rezon'] [u'deplet', u'windi', u'face', u'challeng'] [u'dfat', u'seek', u'melbourn', u'quak', u'area'] [u'diplomat', u'place', u'offend', u'regist'] [u'doubt', u'cast', u'lead', u'smelter', u'crackdown', u'call'] [u'doubt', u'rais', u'shellfish', u'food', u'safeti', u'scheme'] [u'downer', u'admit', u'meet', u'iraq', u'weapon', u'offici'] [u'downer', u'expect', u'manipul', u'zimbabw', u'poll'] [u'downer', u'reject', u'disast', u'respons', u'unit'] [u'time', u'mackay'] [u'dubbo', u'council', u'hire', u'aborigin', u'liaison', u'offic'] [u'earth', u'suffer', u'irrevers', u'chang', u'studi', u'find'] [u'earthquak'] [u'easter', u'period', u'forc', u'polic', u'babysit', u'prison'] [u'electron', u'patient', u'chart', u'deem', u'success'] [u'endang', u'lynx', u'cub', u'bear'] [u'entsch', u'await', u'elect', u'probe', u'outcom'] [u'escap', u'prison', u'arrest', u'offic', u'alert'] [u'timor', u'tackl', u'dengu', u'fever', u'epidem'] [u'eurobodalla', u'council', u'look', u'rural', u'land', u'protect'] [u'expand', u'public', u'servic', u'concern', u'opposit'] [u'fame', u'simpson', u'lawyer', u'die'] [u'farmer', u'cast', u'doubt', u'wilder', u'societi', u'river'] [u'farmer', u'group', u'advoc', u'poison'] [u'farmer', u'want', u'clear', u'wind', u'farm', u'site', u'select'] [u'fear', u'abalon', u'farm', u'threaten', u'lion', u'coloni'] [u'pacif', u'cruis', u'cancel'] [u'champion', u'jone', u'head', u'australian'] [u'chaplain', u'extradit', u'child', u'charg'] [u'funer', u'friday', u'young', u'victim'] [u'govt', u'ask', u'explain', u'rail', u'revamp', u'plan'] [u'govt', u'award', u'scope', u'studi', u'telstra', u'privatis'] [u'govt', u'call', u'submiss', u'stanley', u'port'] [u'govt', u'warn', u'tweed', u'council', u'probe'] [u'green', u'unhappi', u'pulp', u'educ', u'plan'] [u'higher', u'land', u'valu', u'dont', u'mean', u'automat', u'rate', u'rise'] [u'holling', u'sue', u'black'] [u'name', u'hurd'] [u'hunt', u'continu', u'escap', u'killer'] [u'hunter', u'foal', u'score', u'price'] [u'icac', u'wit', u'arrest', u'tri', u'leav', u'countri'] [u'injur', u'sheppard', u'southern', u'name', u'knight'] [u'inquest', u'tell', u'teen', u'plead', u'driver', u'stop'] [u'inquiri', u'seek', u'maitland', u'murder', u'suicid'] [u'isra', u'ambassador', u'injur', u'ethiopia', u'shoot'] [u'japan', u'shake', u'richard', u'gere'] [u'job', u'see', u'suicid', u'rat'] [u'kanimbla', u'disast', u'area'] [u'labor', u'attack', u'downer', u'resign', u'claim'] [u'lake', u'develop', u'hold'] [u'landhold', u'unhappi', u'valuat', u'urg', u'object'] [u'land', u'valu', u'wont', u'dictat', u'rat', u'mayor'] [u'larkham', u'bounc', u'cancer'] [u'leagu', u'name', u'origin', u'great'] [u'levi', u'moot', u'murray', u'food'] [u'live', u'risk', u'neonat', u'shortag'] [u'local', u'divid', u'braidwood', u'heritag', u'list'] [u'macquari', u'airport', u'forecast', u'increas', u'dividend'] [u'accus', u'toilet', u'watch', u'face', u'court'] [u'assault', u'home', u'invas'] [u'jail', u'deli', u'syring', u'hold'] [u'maroochi', u'council', u'urg', u'lobbi'] [u'mathemat', u'solut', u'hospit', u'wait'] [u'mayor', u'valuat', u'wont', u'lead', u'rate', u'rise'] [u'mayor', u'want', u'major', u'region', u'project', u'identifi'] [u'mcginti', u'introduc', u'vote', u'valu', u'legisl'] [u'memo', u'show', u'general', u'approv', u'interrog'] [u'miner', u'urg', u'plan', u'port', u'hedland'] [u'minist', u'hear', u'lobster', u'issu', u'hand'] [u'miss', u'melbourn'] [u'jetstar', u'talk', u'townsvill', u'servic'] [u'mother', u'hors', u'rid', u'trek', u'rais', u'diseas', u'fight'] [u'motocross', u'death', u'spark', u'inquiri'] [u'mourner', u'attend', u'funer', u'murder', u'suicid', u'famili'] [u'defend', u'bushmast', u'abil'] [u'tri', u'chang', u'plan', u'nation', u'electr'] [u'slash', u'job'] [u'nation', u'earli', u'start', u'murray', u'darl'] [u'caledonia', u'politician', u'disagre', u'franc', u'tie'] [u'central', u'statist', u'releas'] [u'appoint', u'bundaberg', u'region'] [u'school', u'open', u'condobolin'] [u'bail', u'accus', u'arm', u'robberi'] [u'school', u'teacher', u'strike', u'remot', u'town'] [u'cultur', u'festiv', u'fund', u'boost'] [u'offic', u'refit', u'wast', u'taxpay', u'money', u'opposit'] [u'call', u'aust', u'polic', u'leav', u'bougainvill'] [u'onlin', u'gamer', u'kill', u'sell', u'cyber', u'sword'] [u'optus', u'lodg', u'phone', u'tower', u'appeal'] [u'orang', u'hospit', u'deliv', u'babi', u'manag'] [u'parri', u'accept', u'invit', u'master'] [u'pearl', u'farm', u'propon', u'scrap', u'plan'] [u'pie', u'reel', u'buckley', u'injuri', u'bombshel'] [u'pie', u'start', u'hunt', u'captain'] [u'polic', u'angri', u'stupid', u'jetti', u'jump'] [u'polic', u'appeal', u'help', u'miss', u'tweed', u'woman'] [u'polic', u'miss', u'man', u'bodi'] [u'polic', u'seek', u'help', u'find', u'countri', u'club', u'attack'] [u'polic', u'honour', u'medal'] [u'polic', u'investig', u'teen', u'abduct'] [u'porn', u'help', u'fund', u'hetti', u'johnston', u'senat'] [u'postcard', u'arriv', u'year', u'late'] [u'prevent', u'focus', u'cancer', u'facil'] [u'professor', u'overse', u'break', u'hill', u'campus', u'studi'] [u'public', u'ask', u'campaign', u'student'] [u'public', u'input', u'seek', u'wollongong', u'citi', u'centr', u'plan'] [u'public', u'warn', u'avoid', u'mossi', u'diseas'] [u'polic', u'seiz', u'drug', u'cash'] [u'quak', u'survivor', u'tell', u'incred', u'damag'] [u'question', u'rais', u'alcohol', u'manag', u'plan'] [u'refuge', u'status', u'grant', u'wodonga', u'famili'] [u'region', u'school', u'urg', u'lobbi', u'literaci'] [u'relianc', u'public', u'sector', u'weaken', u'opposit'] [u'renmark', u'die', u'north', u'crash'] [u'residenti', u'speed', u'limit', u'put', u'brake', u'motorist'] [u'reveal', u'webber', u'race', u'melbourn', u'fractur'] [u'asst', u'commission', u'play', u'fund'] [u'rider', u'warn', u'highway', u'delay'] [u'right', u'group', u'detail', u'revers', u'rendit', u'case'] [u'river', u'plan', u'anger', u'farmer'] [u'roebourn', u'get', u'readi', u'shire', u'offic', u'revamp'] [u'govt', u'seek', u'buyer'] [u'schiavo', u'parent', u'file', u'appeal'] [u'scientist', u'compil', u'protist', u'handbook'] [u'search', u'aussi', u'quak'] [u'seawe', u'spray', u'extend', u'shelf', u'life', u'appl'] [u'secur', u'council', u'approv', u'sanction', u'sudanes'] [u'secur', u'offic', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'assault', u'prompt', u'hospit', u'secur', u'concern'] [u'shire', u'plan'] [u'shortag', u'hamper', u'quak', u'rescu', u'effort'] [u'silent', u'pope', u'bless', u'faith'] [u'stanhop', u'want', u'summit', u'stopper'] [u'statist', u'highlight', u'south', u'east', u'growth'] [u'storm', u'whip', u'light', u'kalgoorli'] [u'support', u'council', u'smoke', u'stanc'] [u'sven', u'back', u'beckham'] [u'swank', u'fine', u'appl'] [u'syria', u'pull', u'troop', u'lebanes', u'elect'] [u'tasmanian', u'proud', u'orchestra', u'poll'] [u'teari', u'adler', u'tell', u'famili', u'shame'] [u'teen', u'remain', u'hospit', u'fatal', u'crash'] [u'temporari', u'hous', u'initi', u'launch'] [u'record', u'profit', u'jump'] [u'theft', u'trial', u'begin', u'tent', u'embassi', u'activist'] [u'tighter', u'rein', u'propos', u'battlefield', u'busi'] [u'chef', u'spoil', u'tasmania', u'broth'] [u'imprison', u'rate', u'highest', u'aust'] [u'tourist', u'hurt', u'rock', u'face', u'fall'] [u'trout', u'farmer', u'accus', u'council', u'environment'] [u'truck', u'industri', u'focus', u'road', u'fund'] [u'trust', u'say', u'nurs', u'rise', u'affect', u'servic'] [u'tszyu', u'readi', u'hatton', u'earli', u'morn', u'wake'] [u'tyre', u'reclam', u'river', u'bank', u'prompt', u'warn'] [u'unsaf', u'car', u'worri', u'mildura', u'polic'] [u'uruguay', u'threaten', u'kick', u'ronaldo', u'park'] [u'scout', u'offici', u'face', u'child', u'porn', u'charg'] [u'free', u'guantanamo', u'detaine'] [u'venus', u'down', u'serena', u'reach', u'florida', u'semi'] [u'compani', u'advertis', u'croc', u'hunt'] [u'plead', u'guilti', u'charg'] [u'lose', u'licenc', u'drink', u'drive'] [u'waaf', u'want', u'feder', u'fund', u'polish', u'live', u'export'] [u'court', u'tell', u'elder', u'unfit', u'stand', u'trial'] [u'wage', u'rebat', u'encourag', u'film', u'shoot'] [u'wage', u'rise', u'tip', u'hurt', u'small', u'nurs', u'home'] [u'justic', u'minist', u'keep', u'hand', u'prison', u'inquiri'] [u'walter', u'employe', u'fear', u'court', u'battl', u'entitl'] [u'nurs', u'disput', u'end'] [u'water', u'plan', u'come', u'critic'] [u'water', u'purif', u'equip', u'soon', u'nia'] [u'differ', u'concern', u'hill', u'say'] [u'woman', u'report', u'flasher', u'polic'] [u'yuko', u'secur', u'chief', u'get', u'year', u'murder'] [u'student', u'pledg', u'fundrais'] [u'dead', u'indonesian', u'quak'] [u'test', u'sydney'] [u'abba', u'order', u'crackdown', u'ramallah', u'milit'] [u'bushfir', u'season', u'offici', u'end'] [u'administr', u'say', u'nation', u'trust', u'bright', u'futur'] [u'target', u'rich', u'poor'] [u'agreement', u'aim', u'curb', u'alcohol', u'negat', u'impact'] [u'plane', u'leav', u'brisban', u'indonesia'] [u'jazeera', u'air', u'tape', u'kidnap', u'romanian'] [u'alleg', u'abduct', u'assault', u'investig'] [u'alleg', u'paedophil', u'face', u'court'] [u'alleg', u'abus', u'arriv', u'adelaid', u'court'] [u'angola', u'offici', u'put', u'marburg', u'virus', u'toll'] [u'antarct', u'tourist', u'face', u'tougher', u'regul'] [u'armstrong', u'prim', u'tour', u'defeat', u'ullrich'] [u'aussi', u'pair', u'plead', u'guilti', u'bank', u'robberi'] [u'australia', u'mediat', u'china', u'say'] [u'australian', u'injur', u'indonesian', u'earthquak'] [u'australian', u'virus', u'lead', u'cancer', u'vaccin'] [u'deni', u'iraq', u'wheat', u'contract', u'suspend'] [u'bacon', u'futur', u'doubt', u'analyst'] [u'bacon', u'secretari', u'quit', u'follow', u'breathalys'] [u'beatti', u'threaten', u'porn', u'viewer', u'sack'] [u'chief', u'return', u'home', u'state'] [u'bendigo', u'burglari'] [u'blackout', u'rebat', u'eas', u'power', u'problem', u'backlash'] [u'blaze', u'damag', u'leagu', u'club'] [u'bodi', u'tree', u'poison'] [u'bodi', u'airman', u'kill', u'iraq', u'arriv', u'home'] [u'boswel', u'urg', u'sale', u'ethanol', u'blend', u'fuel'] [u'box', u'quak', u'stronger', u'think'] [u'brazil', u'point', u'uruguay', u'bruiser'] [u'brisban', u'clear', u'alleg', u'bite', u'incid'] [u'break', u'hill', u'pool', u'locat', u'decid'] [u'brother', u'fin', u'cigarett', u'smuggl'] [u'brunswick', u'damag', u'hous'] [u'buoyant', u'pakistan', u'warm'] [u'bushfir', u'season', u'draw', u'close'] [u'food', u'price', u'rise', u'help', u'farmer'] [u'mildura', u'medicar', u'offic'] [u'wider', u'palm', u'inquest'] [u'canada', u'govt', u'meet', u'resist', u'indian', u'reserv', u'plan'] [u'crash', u'bedroom'] [u'casino', u'apologis', u'assault', u'cameraman'] [u'central', u'unemploy', u'rate', u'fall'] [u'china', u'complet', u'world', u'largest', u'botan', u'record'] [u'coat', u'arm', u'belong', u'indigen', u'peopl', u'court'] [u'communiti', u'dig', u'deep', u'tsunami', u'appeal'] [u'communiti', u'decid', u'cundletown', u'pool', u'futur'] [u'consular', u'offici', u'arriv', u'nia'] [u'cooloola', u'shire', u'oppos', u'sunday', u'trade'] [u'corrupt', u'trial', u'harm', u'pariss', u'olymp'] [u'council', u'act', u'stop', u'sewag', u'spill'] [u'council', u'ask', u'rate', u'increas'] [u'council', u'consid', u'dubbo', u'theatr', u'plan'] [u'council', u'crack', u'water'] [u'council', u'divid', u'platinum', u'approv'] [u'council', u'offer', u'reward', u'catch', u'cemeteri'] [u'council', u'consid', u'equit', u'tourism', u'levi'] [u'council', u'decid', u'park', u'meter'] [u'cruis', u'ship', u'termin', u'trigger', u'pollut', u'concern'] [u'cullendulla', u'creek', u'powerboat', u'restrict', u'lift'] [u'daihatsu', u'loss', u'unlik', u'toyota', u'say'] [u'dairi', u'appoint', u'chees'] [u'deadlin', u'reach', u'bioregion', u'decis'] [u'defenc', u'commit', u'drain', u'pool', u'skill', u'worker'] [u'disabl', u'support', u'worker', u'lose', u'job'] [u'disast', u'warn', u'need', u'work', u'downer'] [u'discoveri', u'centr', u'face', u'fund', u'woe'] [u'cull', u'wouldnt', u'solv', u'health', u'problem', u'vet'] [u'downer', u'urg', u'come', u'clean', u'iraq', u'meet'] [u'driver', u'die', u'culvert', u'crash'] [u'eagl', u'lose', u'cousin', u'mcdougal', u'geelong', u'clash'] [u'earli', u'bloomer', u'distress', u'japan', u'cherri', u'blossom', u'fan'] [u'econom', u'data', u'even', u'odd', u'rat', u'rise'] [u'employ', u'increas', u'staff', u'level', u'survey'] [u'ergon', u'issu', u'powerlin', u'warn'] [u'extra', u'cost', u'pressur', u'council', u'budget'] [u'bring', u'bling'] [u'fan', u'beat', u'victoria'] [u'brigad', u'defend', u'effort', u'save', u'boy'] [u'tragedi'] [u'launch', u'legal', u'action'] [u'teacher', u'guilti', u'child', u'porn', u'offenc'] [u'scout', u'offici', u'plead', u'guilti'] [u'french', u'polynesia', u'put', u'independ', u'backburn'] [u'giteau', u'clear', u'blue', u'clash'] [u'golf', u'cours', u'plan', u'expect', u'drive', u'tourist'] [u'govt', u'reject', u'rail', u'link', u'critic'] [u'govt', u'urg', u'boost', u'resourc', u'fight', u'school'] [u'greec', u'open', u'olymp', u'venu', u'privat', u'investor'] [u'green', u'threaten', u'brigalow', u'belt', u'log', u'blockad'] [u'hazard', u'wast', u'committe', u'tour', u'kalgoorli'] [u'highway', u'toll', u'save', u'truck', u'firm', u'anderson'] [u'hill', u'quit', u'knight', u'chairman'] [u'home', u'brew', u'kill', u'indian', u'blind'] [u'homeless', u'spotlight', u'north', u'west'] [u'horan', u'push', u'govern', u'crisi', u'hous'] [u'hutu', u'rebel', u'condemn', u'rwanda', u'genocid'] [u'illawarra', u'escarp', u'plan', u'label', u'discriminatori'] [u'contractor', u'seek', u'tougher', u'spray', u'rule'] [u'illeg', u'fish', u'earn', u'famili', u'fine'] [u'illeg', u'fish', u'measur', u'ignor', u'northern', u'water'] [u'indonesia', u'megawati', u'keep', u'polit', u'career', u'aliv'] [u'inquiri', u'probe', u'transport', u'infrastructur'] [u'show', u'esper', u'contain', u'facil'] [u'iran', u'mar', u'crowd', u'troubl', u'japan'] [u'iraq', u'suspend', u'wheat', u'contract'] [u'jackson', u'abus', u'claim', u'like', u'true', u'psychologist'] [u'jam', u'hardi', u'compens', u'deal', u'delay'] [u'japanes', u'firm', u'sale', u'australian', u'resort'] [u'japan', u'unveil', u'plan', u'futur', u'quak', u'loss'] [u'job', u'survey', u'offer', u'mix'] [u'joey', u'need', u'form', u'stuart'] [u'justic', u'minist', u'flag', u'tough', u'prison', u'inquiri'] [u'keech', u'deni', u'inact', u'public', u'drunken'] [u'kefu', u'take', u'testimoni', u'match'] [u'landscap', u'wast', u'water', u'concern', u'kingston'] [u'land', u'valuat', u'creat', u'rat', u'confus'] [u'doesnt', u'need', u'counti', u'stint', u'warn'] [u'leichhardt', u'elect', u'result', u'uphold'] [u'levi', u'moot', u'help', u'messag', u'stick'] [u'live', u'sheep', u'export', u'unlik', u'esper'] [u'local', u'govt', u'meet', u'focus', u'landfil', u'issu'] [u'long', u'wait', u'hous', u'build'] [u'mackay', u'council', u'urg', u'consid', u'rat'] [u'die', u'wish', u'bind', u'guardian', u'warn'] [u'martin', u'hint', u'elect', u'timefram'] [u'master', u'builder', u'slam', u'electr', u'water'] [u'mauresmo', u'meet', u'clijster', u'florida'] [u'mayor', u'hope', u'transport', u'probe', u'solut'] [u'mayor', u'want', u'water', u'suppli', u'assur'] [u'medic', u'research', u'earn', u'award'] [u'medic', u'team', u'head', u'indonesia'] [u'miller', u'lobbi', u'govt', u'western', u'hardwood', u'plan'] [u'children', u'starv', u'post', u'saddam'] [u'mother', u'child', u'escap', u'sink'] [u'question', u'drought', u'packag', u'effect'] [u'munro', u'lead', u'world', u'surf', u'rat'] [u'muralitharan', u'resum', u'bowl'] [u'nelson', u'propos', u'greater', u'feder', u'control', u'uni'] [u'attack', u'investig'] [u'tobacco', u'law', u'xenophon'] [u'studi', u'delay', u'port', u'phillip', u'dredg'] [u'nia', u'crisi', u'wors', u'think', u'downer'] [u'decis', u'refuge', u'court', u'sit'] [u'nurs', u'assault', u'spark', u'park', u'chang'] [u'nurs', u'home', u'demand', u'fund', u'updat', u'rise'] [u'nyngan', u'group', u'win', u'grain', u'grow', u'award'] [u'olymp'] [u'opposit', u'attack', u'speaker', u'action'] [u'organis', u'welcom', u'posit', u'summernat', u'report'] [u'patrick', u'refus', u'increas', u'virgin', u'offer'] [u'penguin', u'death', u'baffl', u'expert'] [u'petit', u'seek', u'region', u'blood', u'doner', u'servic', u'debat'] [u'phone', u'tap', u'law', u'success', u'ruddock'] [u'player', u'associ', u'wont', u'riewoldt', u'incid'] [u'demand', u'apolog', u'airport', u'search'] [u'polic', u'knife', u'road', u'rage', u'stab'] [u'polic', u'investig', u'home', u'theft'] [u'polic', u'recaptur', u'hunter', u'escap'] [u'polic', u'refus', u'comment', u'lewi', u'meet'] [u'polic', u'identifi', u'remain'] [u'port', u'premiership', u'flag'] [u'prison', u'charg', u'hostag', u'take'] [u'product', u'breakthrough', u'fish', u'farm'] [u'prosecutor', u'urg', u'time', u'jail', u'adler'] [u'public', u'stock', u'exchang', u'lesson'] [u'public', u'urg', u'bushfir', u'readi'] [u'rain', u'delay', u'work', u'knight', u'grandstand'] [u'rare', u'diseas', u'european'] [u'rat', u'stay', u'hold', u'report'] [u'relief', u'effort', u'hamper', u'quak', u'toll', u'hit'] [u'report', u'show', u'underground', u'iran', u'nuclear', u'plant'] [u'resourc', u'sector', u'end', u'market', u'negat'] [u'retir', u'urg', u'prepar', u'remot', u'travel'] [u'ribbon', u'idea', u'support', u'corbi', u'trial'] [u'richmond', u'lose', u'sponsor', u'drink', u'drive', u'charg'] [u'rooney', u'assault', u'claim', u'withdraw'] [u'rspca', u'seek', u'chang', u'live', u'sheep', u'export'] [u'russia', u'acknowledg', u'chechnyan', u'death', u'toll'] [u'safeti', u'review', u'freak', u'sandown', u'mishap'] [u'smoke', u'legisl', u'enter', u'phase'] [u'schu', u'hop', u'renault', u'beater'] [u'scientist', u'plan', u'embryo', u'project'] [u'search', u'miss', u'pair'] [u'help', u'yeast', u'adapt', u'situat'] [u'societi', u'killer', u'seek', u'pass', u'parent', u'estat'] [u'anaesthetist', u'begin', u'veteran', u'treatment'] [u'hervey', u'rat', u'rise'] [u'southern', u'star', u'humbl', u'lanka'] [u'state', u'territori', u'carbon', u'trade', u'scheme'] [u'strong', u'aftershock', u'rock', u'nia'] [u'student', u'die', u'nowa', u'nowa', u'crash'] [u'studi', u'find', u'church', u'import', u'region'] [u'stuttl', u'killer', u'await', u'appeal', u'decis'] [u'sudan', u'reject', u'darfur', u'death', u'toll'] [u'suicid', u'attack', u'kill', u'iraq'] [u'support', u'ralli', u'convict', u'sierra', u'leon'] [u'tait', u'hail', u'best'] [u'teacher', u'consid', u'strike', u'crime', u'resign'] [u'teen', u'rescu', u'hour', u'quak', u'strike', u'nia'] [u'telstra', u'abus', u'market', u'power'] [u'telstra', u'condemn', u'price', u'report'] [u'tenni', u'australia', u'select'] [u'thrash', u'time', u'wake', u'ricketson'] [u'dead', u'hamilton', u'highway', u'collis'] [u'tiger', u'lose', u'sponsor', u'drink', u'drive', u'charg'] [u'earli', u'forecast', u'nino', u'return'] [u'tourism', u'group', u'head', u'wagga'] [u'traralgon', u'await', u'race', u'announc'] [u'treasuri', u'chief', u'urg', u'action', u'terror', u'caus'] [u'arrest', u'fals', u'build', u'licens', u'hear'] [u'boy', u'perish', u'hous'] [u'union', u'claim', u'local', u'job'] [u'uruguay', u'eye', u'socceroo', u'match'] [u'ask', u'boycott', u'asean', u'burma'] [u'intellig', u'flaw', u'common', u'report', u'say'] [u'govt', u'ask', u'rethink', u'maffra', u'plan', u'decis'] [u'waratah', u'test', u'mettl', u'crusad'] [u'weaker', u'food', u'health', u'claim', u'rule', u'reject'] [u'westbus', u'administr', u'strong'] [u'whale', u'watch', u'law', u'review'] [u'whale', u'watch', u'review', u'spark', u'industri', u'concern'] [u'windi', u'scrap', u'sponsorship', u'deal'] [u'wine', u'industri', u'warn', u'suppli', u'action'] [u'wolfowitz', u'eager', u'tackl', u'world', u'bank'] [u'woman', u'safe'] [u'woman', u'hurt', u'attempt', u'robberi'] [u'work', u'begin', u'nia', u'rescu', u'trap', u'peopl'] [u'work', u'start', u'link', u'road'] [u'yudhoyono', u'join', u'prayer', u'earthquak', u'dead'] [u'zimbabw', u'opposit', u'confid', u'poll'] [u'zimbabw', u'poll', u'open'] [u'wait', u'sign', u'increas', u'patient', u'care'] [u'aeropelican', u'spread', u'wing', u'time'] [u'afghan', u'court', u'cut', u'vigilant', u'jail', u'term'] [u'ail', u'pope', u'suffer', u'heart', u'attack'] [u'aldermen', u'want', u'sister', u'citi', u'scheme', u'step'] [u'algerian', u'secur', u'disappear'] [u'ansett', u'sell', u'exceed', u'expect'] [u'art', u'group', u'say', u'servic', u'safe'] [u'australian', u'european', u'rescu', u'indonesian', u'isl'] [u'australian', u'plan', u'bring', u'closer', u'nia'] [u'australian', u'veteran', u'return', u'trophi', u'sword'] [u'australia', u'focus', u'malaysian'] [u'babi', u'bonus', u'cost', u'govt'] [u'bathurst', u'finalis', u'saleyard', u'revamp', u'plan'] [u'beatti', u'defend', u'keep', u'holli', u'investig'] [u'beazley', u'return', u'reformist', u'econom', u'polici'] [u'bega', u'council', u'appli', u'ongo', u'rate', u'rise'] [u'belgian', u'minist', u'regret', u'bush', u'chimp', u'comparison'] [u'berlusconi', u'hail', u'hairi', u'intern', u'role'] [u'beverford', u'brigad'] [u'bidder', u'barossa', u'drop'] [u'quak', u'predict', u'wide'] [u'blue', u'thriller', u'bomber'] [u'bore', u'boost', u'groundwat', u'monitor'] [u'boro', u'everton', u'fin', u'brawl'] [u'bottleneck', u'hamper', u'earthquak', u'relief', u'effort'] [u'bourk', u'man', u'death', u'consid', u'suspici'] [u'brain', u'damag', u'woman', u'terri', u'schiavo', u'die'] [u'branson', u'hold', u'virgin', u'stake'] [u'british', u'inspir', u'stoker', u'vampir', u'slayer'] [u'buckley', u'deserv', u'term', u'malthous'] [u'buckley', u'deserv', u'term', u'malthous'] [u'buckley', u'month', u'surgeri'] [u'compani', u'tell', u'organis', u'stop'] [u'bushfir', u'appeal', u'excess', u'good', u'sell'] [u'bush', u'pick', u'guantanamo', u'overs', u'defenc', u'post'] [u'extend', u'network'] [u'rethink', u'farm', u'practic'] [u'caloundra', u'council', u'look', u'econom', u'strategi'] [u'race', u'granit', u'belt', u'win'] [u'carr', u'voic', u'support', u'costa'] [u'cash', u'shortag', u'put', u'lawson', u'festiv', u'risk'] [u'cathol', u'australia', u'pray', u'pope'] [u'centuri', u'stoppag', u'cost'] [u'charg', u'recommend', u'aborigin', u'develop'] [u'chechen', u'leader', u'kill', u'russia'] [u'civil', u'liberti', u'group', u'rais', u'concern', u'raid'] [u'communiti', u'minist', u'undergo', u'cancer', u'treatment'] [u'communiti', u'urg', u'support', u'tragedi', u'famili'] [u'compani', u'give', u'fund'] [u'confer', u'put', u'focus', u'region', u'optometrist'] [u'corser', u'lead', u'superbik', u'qualifi'] [u'costello', u'eye', u'singl', u'mum', u'skill', u'shortag'] [u'costello', u'want', u'singl', u'parent', u'work'] [u'costello', u'welcom', u'build', u'approv'] [u'councillor', u'want', u'life', u'cemeteri', u'vandal', u'catch'] [u'council', u'replac', u'bridg', u'river', u'accid'] [u'count', u'zimbabw', u'elect'] [u'cricket', u'fight', u'fair', u'game'] [u'dandruff', u'particl', u'affect', u'climat'] [u'darwin', u'teen', u'probat', u'fondl', u'child'] [u'date', u'student', u'terror', u'trial'] [u'deal', u'allow', u'island', u'koala', u'research'] [u'detail', u'scant', u'har', u'race', u'meet'] [u'develop', u'baffl', u'citi', u'strategi', u'omiss'] [u'devic', u'turn', u'brain', u'chatter', u'movement'] [u'diabet', u'treatment', u'list'] [u'dinosaur', u'buff', u'seek', u'fossil', u'dig'] [u'doctor', u'claim', u'photojournalist', u'rap', u'tortur'] [u'doctor', u'fear', u'lose', u'foot', u'basketbal'] [u'downpour', u'mix', u'bless', u'great', u'southern'] [u'dragon', u'cooper', u'undergo', u'surgeri'] [u'drink', u'drive', u'charg', u'cost', u'richmond', u'sponsor'] [u'eel', u'slipperi', u'panther'] [u'elder', u'woman', u'rescu', u'hous'] [u'embattl', u'race', u'club', u'slip', u'halter'] [u'entsch', u'consid', u'legal', u'action', u'elect'] [u'expert', u'say', u'protect', u'nativ'] [u'export', u'drop', u'hit', u'manufactur', u'growth'] [u'farmer', u'urg', u'govt', u'hurri', u'approv', u'process'] [u'feder', u'sharapova', u'roll', u'florida'] [u'firefight', u'contain', u'geeveston', u'blaze'] [u'fishermen', u'start', u'tsunami', u'relief', u'committe'] [u'floss', u'support', u'block', u'tahiti', u'port'] [u'stand', u'iron', u'agreement', u'china'] [u'foreign', u'beef', u'solomon', u'high', u'court'] [u'fin', u'illeg', u'fish'] [u'game', u'torch', u'rout', u'draw', u'heywood', u'protest'] [u'govt', u'ask', u'proper', u'fund', u'forens', u'centr'] [u'govt', u'ask', u'rethink', u'land', u'valuat'] [u'govt', u'slam', u'bioregion', u'inact'] [u'govt', u'hear', u'hospit', u'closur', u'worri'] [u'graffiti', u'clean', u'histor'] [u'greater', u'effort', u'urg', u'tackl', u'tafe', u'staff', u'shortag'] [u'green', u'summernat', u'health', u'survey'] [u'gritti', u'highland', u'red'] [u'group', u'angri', u'brigalow', u'belt', u'decis'] [u'group', u'want', u'help', u'domest', u'violenc', u'victim'] [u'gutter', u'death', u'sorri', u'state', u'affair', u'coron'] [u'health', u'group', u'consid', u'wimmera', u'fluorid'] [u'health', u'insur', u'rebat', u'increas', u'come', u'effect'] [u'hill', u'see', u'afghanistan', u'deploy'] [u'hind', u'chanderpaul', u'ton', u'windi'] [u'hong', u'kong', u'reviv', u'fight', u'ritual'] [u'pope', u'elect'] [u'indigen', u'domest', u'violenc', u'figur', u'worri', u'polic'] [u'inquiri', u'look', u'freight', u'north', u'west'] [u'pressur', u'govern', u'sign', u'wada', u'code'] [u'itali', u'bulgaria', u'ukrain', u'advanc', u'iraq', u'pullout', u'plan'] [u'stop', u'misus', u'anim', u'imag', u'accus'] [u'japanes', u'court', u'refus', u'compens', u'wwii', u'rape'] [u'japan', u'plan', u'humpback', u'hunt'] [u'japan', u'busi', u'confid', u'drop', u'sharpli'] [u'kalgoorli', u'council', u'nomin', u'roll'] [u'kimberley', u'fisher', u'support', u'call', u'illeg'] [u'labor', u'urg', u'govt', u'focus', u'skill', u'singl', u'mum'] [u'lamb', u'roast', u'chocol', u'flavour'] [u'larkham', u'give', u'longer', u'prove', u'fit'] [u'licens', u'premis', u'ask', u'follow', u'liquor'] [u'link', u'road', u'work', u'expect', u'boost', u'harden', u'industri'] [u'lion', u'port', u'ring', u'chang', u'rematch'] [u'local', u'iraqi', u'polic', u'chief', u'kill'] [u'malaysian', u'critic', u'direct', u'aust'] [u'charg', u'suspici', u'packag'] [u'kill', u'lie', u'road'] [u'martin', u'elect', u'time'] [u'merg', u'health', u'servic', u'advisori', u'group', u'get', u'head'] [u'minist', u'confid', u'futur'] [u'minist', u'welcom', u'alter', u'river', u'plan'] [u'mix', u'respons', u'timber', u'auction', u'scheme'] [u'mother', u'accus', u'kill', u'children', u'bail'] [u'mother', u'call', u'health', u'overhaul'] [u'ask', u'clarifi', u'voluntari', u'student', u'union'] [u'suggest', u'townsvill', u'council', u'help', u'palm'] [u'loxton', u'polic', u'station', u'stanc'] [u'want', u'diesel', u'price', u'display'] [u'larcom', u'reliev', u'water', u'price', u'decis'] [u'mugab', u'hail', u'zimbabw', u'poll'] [u'murder', u'convict', u'quash', u'year'] [u'name', u'alleg', u'paedophil', u'infuri', u'govt'] [u'navi', u'chopper', u'test', u'toowoomba'] [u'drug', u'list'] [u'korea', u'say', u'pose', u'nuclear', u'threat'] [u'fals', u'premis', u'downer'] [u'water', u'licenc', u'bowen', u'irrig'] [u'approv', u'boe', u'workplac', u'discrimin'] [u'budget', u'decis', u'cost', u'murray', u'darl'] [u'nuisanc', u'sale', u'call', u'cost', u'busi', u'money'] [u'price', u'surg', u'boost', u'market'] [u'region', u'follow', u'high', u'school', u'merger'] [u'park', u'problem', u'mindil', u'market'] [u'parliamentari', u'committe', u'chair', u'inspir'] [u'pennant', u'releas', u'prison'] [u'peru', u'announc', u'amazon', u'protect', u'zone'] [u'plan', u'propos', u'ship', u'water', u'kimberley'] [u'plan', u'drum', u'tax', u'deem', u'success'] [u'protest', u'plan', u'close', u'aust', u'high', u'commiss'] [u'polic', u'clear', u'minist', u'breathalys', u'incid'] [u'polic', u'complet', u'initi', u'report', u'flinder'] [u'polic', u'easter', u'effort', u'monaro', u'command'] [u'polic', u'hope', u'model', u'slay', u'german', u'tourist', u'jog'] [u'polic', u'probe', u'possibl', u'robberi', u'link'] [u'polic', u'investig', u'cabbi', u'death'] [u'pope', u'warrior', u'freedom'] [u'pope', u'conscious', u'seren', u'vatican', u'say'] [u'pope', u'health', u'crisi', u'continu'] [u'pope', u'health', u'deterior'] [u'pope', u'suffer', u'heart', u'attack'] [u'possibl', u'solut', u'yuelamus', u'water', u'problem', u'flow'] [u'priest', u'stand', u'trial', u'child', u'charg'] [u'prison', u'sentenc', u'year', u'jail', u'term'] [u'probe', u'uncov', u'gold', u'fraud'] [u'protest', u'arrest', u'seal', u'hunter', u'confront'] [u'provinci', u'citi', u'group', u'step', u'telstra', u'sale'] [u'psychologist', u'confid', u'elect'] [u'public', u'nation', u'park', u'futur'] [u'public', u'remind', u'smoke', u'crackdown'] [u'public', u'warn', u'control', u'burn'] [u'consid', u'futur', u'olymp'] [u'quak', u'delay', u'rescu', u'effort', u'continu'] [u'quak', u'chang', u'indonesian', u'shorelin'] [u'rebel', u'damag', u'iraqi', u'nation', u'treasur'] [u'recherch', u'group', u'defend', u'land', u'sale', u'tactic'] [u'region', u'hospit', u'doctor', u'overwork', u'lack'] [u'rescu', u'effort', u'continu', u'nia'] [u'resel', u'sue', u'oscar', u'ticket', u'fetch'] [u'resid', u'home', u'evacu', u'chemic', u'spill'] [u'resid', u'hope', u'saleyard', u'site', u'rethink'] [u'resid', u'want', u'fluorid', u'referendum'] [u'retail', u'attack', u'blackout', u'compo', u'plan'] [u'ritual', u'mean', u'pope', u'close', u'death'] [u'road', u'safeti', u'council', u'call', u'speed', u'limit', u'review'] [u'rogg', u'call', u'unit', u'stand', u'dope'] [u'african', u'mine', u'giant', u'win', u'action', u'striker'] [u'school', u'bulli', u'turn', u'technolog'] [u'schoolgirl', u'killer', u'assault', u'charg', u'drop'] [u'seafood', u'industri', u'angri', u'pay', u'fish'] [u'search', u'northern'] [u'search', u'miss', u'teenag'] [u'senior', u'jail', u'welfar', u'fraud'] [u'repair', u'albani', u'storm', u'damag'] [u'shearer', u'cancel', u'retir', u'plan'] [u'shearer', u'postpon', u'retir', u'plan', u'report'] [u'skill', u'labour', u'shortag', u'blame', u'rise', u'cost'] [u'soda', u'bomb', u'suspect', u'rockhampton', u'blast'] [u'sombr', u'crowd', u'wait', u'word', u'pope', u'window'] [u'student', u'union', u'fee', u'stay'] [u'princ', u'rainier', u'duti'] [u'sport', u'star', u'splash', u'swim', u'centr', u'open'] [u'storm', u'bring', u'rain', u'south', u'east'] [u'strong', u'public', u'support', u'saleyard'] [u'student', u'work', u'melbourn'] [u'suspect', u'marburg', u'case', u'hospitalis', u'itali'] [u'teacher', u'check', u'expect', u'expos', u'taint', u'record'] [u'test', u'check', u'grenfel', u'road', u'safe', u'truck'] [u'thoma', u'stand', u'trial', u'terror', u'charg'] [u'timber', u'miller', u'reject', u'govt', u'offer'] [u'timber', u'urg', u'offer', u'redund'] [u'time', u'run', u'indonesian', u'quak', u'survivor'] [u'tough', u'time', u'expect', u'affect', u'bull', u'sale', u'price'] [u'adventur', u'begin', u'thailand', u'franc', u'drive'] [u'journalist', u'arrest', u'zimbabw', u'poll'] [u'union', u'back', u'sack', u'teacher', u'legisl'] [u'refer', u'darfur', u'crime'] [u'congo', u'militia'] [u'audit', u'find', u'missil', u'shield', u'capabl'] [u'soldier', u'accus', u'cocain', u'smuggl'] [u'vatican', u'deni', u'pope', u'coma'] [u'vatican', u'say', u'medic', u'stabilis', u'pope'] [u'visitor', u'flock', u'mackay', u'lifesav', u'event'] [u'visi', u'stand', u'execut', u'amid', u'price', u'fix', u'probe'] [u'clarifi', u'greenhous', u'plan'] [u'water', u'wastag', u'high', u'report'] [u'welfar', u'cheat', u'serv', u'sentenc', u'home'] [u'march', u'newcastl', u'region'] [u'work', u'studi', u'focus', u'abil', u'disabl'] [u'world', u'largest', u'iceberg'] [u'youth', u'region', u'wireless', u'broadband', u'servic'] [u'zimbabw', u'elect', u'denounc', u'mass', u'fraud'] [u'zimbabw', u'opposit', u'take', u'seat'] [u'aborigin', u'man', u'bodi', u'exhum', u'autopsi'] [u'accus', u'govt', u'shut', u'debat'] [u'eye', u'voss', u'ahead', u'rematch'] [u'australian', u'chopper', u'crash', u'indonesia'] [u'australia', u'meet', u'protea', u'world', u'group'] [u'busi', u'barcelona'] [u'beadman', u'pilot', u'mahtoum', u'sydney'] [u'beazley', u'industri', u'relat', u'stanc'] [u'blue', u'humbl', u'brumbi', u'auckland'] [u'blue', u'thriller', u'bomber'] [u'marley', u'interview', u'embarrass'] [u'burn', u'off', u'play', u'russian', u'roulett', u'environ'] [u'camper', u'evacu', u'bushfir', u'flare'] [u'bomb', u'kill', u'iraq'] [u'chang', u'weather', u'condit', u'worri', u'author'] [u'chelsea', u'look', u'saint'] [u'chines', u'ship', u'compani', u'eye', u'darwin', u'trade', u'rout'] [u'clijster', u'aim', u'continu', u'fairytal', u'return'] [u'colombia', u'probe', u'cocain', u'smuggl', u'troop'] [u'concern', u'rais', u'drink', u'spike', u'incid'] [u'concern', u'rais', u'school', u'asbesto'] [u'corser', u'provision', u'phillip', u'island', u'pole'] [u'cowboy', u'thrash', u'knight'] [u'crude', u'hit', u'high'] [u'crusad', u'waratah', u'unbeaten'] [u'decapit', u'bodi', u'near', u'brisban'] [u'demon', u'withstand', u'bulldog', u'fightback'] [u'dope', u'chief', u'warn', u'chelsea', u'blood', u'spin'] [u'eagl', u'swoop', u'cat'] [u'earthquak', u'rock'] [u'easter', u'island', u'fear', u'loss', u'cultur'] [u'emerg', u'distribut', u'nia'] [u'feder', u'face', u'nadal', u'biscayn', u'final'] [u'final', u'quarter', u'surg', u'give', u'roo', u'victori'] [u'foreign', u'plan', u'enter', u'australia', u'arrest'] [u'gorman', u'hous', u'theatr', u'close', u'roof', u'problem'] [u'govt', u'seek', u'extradit', u'chines', u'nation'] [u'gritti', u'highland', u'red'] [u'hackett', u'freeman', u'help', u'london'] [u'health', u'minist', u'deni', u'hospit', u'crisi'] [u'hind', u'chanderpaul', u'turn', u'screw', u'south'] [u'hundr', u'gather', u'peter', u'squar'] [u'hurrican', u'sweep', u'past', u'chief'] [u'iaaf', u'appeal', u'greek', u'dope', u'decis'] [u'india', u'defeat', u'pakistan', u'open', u'dayer'] [u'investig', u'continu', u'decapit', u'bodi'] [u'jackson', u'juror', u'hear', u'previous', u'child', u'claim'] [u'kagayama', u'take', u'pole', u'phillip', u'island'] [u'land', u'council', u'welcom', u'corrupt', u'investig'] [u'lebanon', u'syria', u'stay', u'form', u'govt'] [u'macgil', u'win', u'steve', u'waugh', u'medal'] [u'maestro', u'muti', u'quit', u'scala'] [u'seek', u'assault'] [u'mayor', u'support', u'brisban', u'olymp'] [u'migrat', u'whale', u'see', u'tasmanian', u'island'] [u'million', u'await', u'word', u'die', u'pope'] [u'million', u'pray', u'pope'] [u'compens', u'nazi', u'medic', u'guinea', u'pig'] [u'name', u'doctor', u'parliament'] [u'mugab', u'parti', u'secur', u'third', u'major'] [u'mugab', u'win', u'zimbabw', u'poll'] [u'neil', u'young', u'brain', u'oper'] [u'nepal', u'free', u'detent'] [u'minist', u'charg', u'drink', u'drive'] [u'dead', u'injur', u'boat', u'collis'] [u'opposit', u'clear', u'file', u'hack', u'alleg'] [u'million', u'world', u'ticket', u'sell'] [u'owner', u'defend', u'log', u'histor', u'site'] [u'pakistan', u'youni', u'miss', u'dayer'] [u'pell', u'prepar', u'rome', u'visit'] [u'polic', u'angri', u'paedophilia', u'claim'] [u'polic', u'believ', u'massacr', u'brazil'] [u'polic', u'clear', u'minist', u'secretari', u'flinder'] [u'polic', u'probe', u'sydney', u'stab'] [u'pope', u'see', u'touch', u'lord', u'say'] [u'pope', u'approv', u'flurri', u'church', u'appoint'] [u'pope', u'begin', u'lose', u'conscious', u'vatican'] [u'pope', u'near', u'death'] [u'pope', u'health', u'deterior'] [u'pope', u'health', u'deterior'] [u'power', u'hold', u'gallant', u'lion'] [u'pratt', u'overcom', u'injuri', u'play'] [u'pressur', u'mount', u'speaker', u'quit'] [u'consid', u'futur', u'olymp'] [u'raider', u'trampl', u'dragon'] [u'rain', u'caus', u'flood', u'damag', u'south', u'west'] [u'dust', u'cover', u'eyr', u'peninsula'] [u'retrial', u'order', u'stab', u'murder'] [u'russian', u'space', u'junk', u'caus', u'light'] [u'govt', u'say', u'slow', u'river', u'murray', u'program'] [u'sailor', u'clear', u'strike', u'charg'] [u'sailor', u'judiciari'] [u'search', u'miss', u'person', u'call'] [u'ship', u'return', u'success', u'suppli', u'voyag'] [u'hospitalis', u'balconi', u'collaps'] [u'southern', u'star'] [u'stargaz', u'attempt', u'identifi'] [u'storm', u'blow', u'bronco', u'away'] [u'strauss', u'keen', u'avoid', u'mcgrath', u'landmark'] [u'strong', u'aftershock', u'jolt', u'nia'] [u'sudan', u'govt', u'slam', u'darfur', u'rule'] [u'survivor', u'earthquak', u'rubbl'] [u'survivor', u'pull', u'earthquak', u'rubbl'] [u'tabcorp', u'staff', u'return', u'work'] [u'bushfir', u'continu', u'burn'] [u'tasmania', u'urg', u'consid', u'drug', u'court'] [u'tenant', u'high', u'hous', u'buy', u'scheme'] [u'thirti', u'kill', u'janeiro', u'worst', u'massacr'] [u'thousand', u'cathol', u'pray', u'pope'] [u'tourist', u'strand', u'bushfir', u'rag'] [u'titl', u'tussl', u'resum', u'itali'] [u'sight', u'like', u'satellit'] [u'admit', u'hold', u'citizen', u'iraq', u'suspect'] [u'armi', u'captain', u'dismiss', u'kill', u'iraqi'] [u'inflat', u'jitter', u'return'] [u'vatican', u'deni', u'pope', u'dead'] [u'woman', u'repres', u'aust', u'miss', u'univers'] [u'webber', u'top', u'final', u'practic', u'bahrain'] [u'wool', u'price', u'ralli'] [u'worker', u'battl', u'wilson', u'promontori'] [u'abba', u'order', u'secur', u'reform', u'fight', u'chao'] [u'ghraib', u'attack', u'wound', u'troop'] [u'health', u'job', u'focus', u'review'] [u'servic', u'rememb', u'pope'] [u'africa', u'cathol', u'mourn', u'pope', u'death'] [u'alonso', u'provision', u'pole'] [u'australian', u'cathol', u'mourn', u'pope'] [u'bodi', u'second', u'recov', u'river'] [u'bomb', u'squad', u'probe', u'perth', u'blast'] [u'bowyer', u'dyer', u'disgrac', u'newcastl'] [u'brumbi', u'grappl', u'injuri', u'player'] [u'compani', u'call', u'strike'] [u'cairn', u'group', u'call', u'agricultur', u'reform'] [u'carr', u'back', u'minist', u'charg', u'drink', u'drive'] [u'cash', u'inject', u'allow', u'golden', u'circl', u'upgrad'] [u'celtic', u'titl', u'tatter', u'loss', u'heart'] [u'china', u'giant', u'panda', u'broadband'] [u'chopper', u'crash', u'victim', u'name'] [u'chopper', u'engin', u'failur', u'wit'] [u'colour', u'cloth', u'inmat', u'smile'] [u'corser', u'claim', u'race'] [u'corser', u'complet', u'doubl', u'phillip', u'island'] [u'cowboy', u'thrash', u'knight'] [u'crowd', u'weep', u'pray', u'news', u'pope', u'death'] [u'crow', u'magpi'] [u'csiro', u'moor', u'help', u'warn', u'tsunami'] [u'denmark', u'celebr', u'han', u'christian', u'andersen'] [u'doctor', u'press', u'stop', u'surgeri'] [u'dozen', u'whale', u'strand'] [u'dragon', u'defeat', u'pile', u'pressur', u'brown'] [u'weather', u'worri', u'drought', u'committe'] [u'eagl', u'swoop', u'cat'] [u'explos', u'level', u'perth', u'unit'] [u'faith', u'mourn', u'pope', u'john', u'paul'] [u'faith', u'file', u'past', u'pope', u'bodi', u'burial'] [u'feverish', u'pope', u'close'] [u'fight', u'continu', u'save', u'strand', u'whale'] [u'firefight', u'battl', u'wilson', u'promontori', u'blaze'] [u'offic', u'monitor', u'nation', u'park', u'blaze'] [u'fire', u'burn', u'bushland', u'near', u'melbourn'] [u'charg', u'headless', u'bodi'] [u'fourteen', u'arrest', u'peopl', u'smuggl', u'oper'] [u'gorbachev', u'rememb', u'pope', u'number', u'humanist'] [u'govt', u'defend', u'cabooltur', u'redcliff', u'health', u'servic'] [u'headless', u'bodi', u'identifi'] [u'health', u'educ', u'prioriti', u'budget'] [u'helicopt', u'rescu', u'stricken', u'walker', u'mountain'] [u'hobart', u'runner', u'storm', u'mountain', u'event'] [u'weather', u'prompt'] [u'hundr', u'ralli', u'cruis', u'ship', u'termin'] [u'hundr', u'rememb', u'pope', u'patrick', u'cathedr'] [u'form', u'life', u'say', u'centurion', u'sehwag'] [u'iraqi', u'parliament', u'elect', u'speaker'] [u'isra', u'palestinian', u'mourn', u'pope', u'death'] [u'latest', u'defeat', u'pile', u'pressur', u'brown'] [u'charg', u'chase'] [u'charg', u'brisban', u'stab'] [u'charg', u'supermarket', u'robberi'] [u'critic', u'condit', u'perth', u'blast'] [u'port', u'river', u'bridg', u'toll', u'free'] [u'woolli', u'wonder', u'discov'] [u'aussi', u'dead', u'chopper', u'crash', u'report'] [u'australian', u'nia', u'chopper', u'crash'] [u'kill', u'heartbreak', u'chopper', u'crash'] [u'commonwealth', u'argu', u'murray', u'darl', u'fund'] [u'claim', u'success', u'worker', u'recruit', u'campaign'] [u'urg', u'contribut', u'papuan', u'research', u'centr'] [u'offici', u'spain', u'racist', u'countri'] [u'opposit', u'demand', u'drug', u'drive', u'law'] [u'peirsol', u'set', u'world', u'record'] [u'prais', u'pope', u'global', u'contribut'] [u'polic', u'fear', u'miss', u'fisherman'] [u'polic', u'probe', u'alleg', u'abduct', u'darwin'] [u'polic', u'seek', u'carjack', u'wit'] [u'polic', u'seek', u'wit', u'multipl', u'stab'] [u'pope', u'john', u'paul', u'die'] [u'pope', u'john', u'paul', u'die', u'rome'] [u'pope', u'bodi', u'lay', u'vatican'] [u'pope', u'hour', u'spend', u'polish', u'aid'] [u'power', u'aftershock', u'hit', u'nia'] [u'power', u'hold', u'gallant', u'lion'] [u'claim', u'pest', u'control', u'role'] [u'quak', u'rock', u'southern', u'iran'] [u'quak', u'shake', u'north', u'east', u'japan'] [u'queen', u'victoria', u'statu', u'get', u'makeov'] [u'raider', u'trampl', u'dragon'] [u'rain', u'help', u'contain', u'fire'] [u'rescuer', u'struggl', u'save', u'beach', u'whale'] [u'road', u'repair', u'begin', u'wake', u'flood'] [u'saint', u'snatch', u'narrow'] [u'speaker', u'defend', u'make', u'paedophil', u'claim'] [u'scuba', u'diver', u'die', u'gold', u'coast'] [u'second', u'straight', u'titl', u'comeback', u'queen', u'clijster'] [u'sever', u'weather', u'warn', u'issu'] [u'shark', u'surpris', u'bulldog'] [u'ship', u'cook', u'question', u'bloodi', u'fight'] [u'strong', u'wind', u'fuel'] [u'syria', u'set', u'date', u'leav', u'lebanon'] [u'tasmanian', u'urg', u'report', u'whale', u'sight'] [u'teenag', u'hospitalis', u'explos'] [u'teenag', u'kill', u'train'] [u'terri', u'schiavo', u'bodi', u'cremat'] [u'pope'] [u'tiger', u'roar', u'courag', u'hawk'] [u'trio', u'share', u'lead', u'rain', u'relent', u'georgia'] [u'arrest', u'brazil', u'massacr'] [u'troop', u'wound', u'iraq', u'jail', u'attack'] [u'valencia', u'grab', u'away', u'point'] [u'vatican', u'announc', u'pope', u'death'] [u'warrior', u'domin', u'rabbitoh'] [u'weather', u'condit', u'battl', u'fire'] [u'dont', u'want', u'sympathi', u'vote', u'york'] [u'west', u'upset', u'rooster'] [u'wilson', u'promontori', u'burn'] [u'windi', u'pacemen', u'leav', u'south', u'africa', u'reel'] [u'world', u'leader', u'tribut', u'pope'] [u'yudhoyono', u'arriv', u'canberra'] [u'yudhoyono', u'arriv', u'canberra', u'today'] [u'zarqawi', u'group', u'claim', u'ghraib', u'attack', u'report'] [u'accid', u'prompt', u'quad', u'bike', u'danger', u'warn'] [u'adapt', u'surviv', u'climat', u'chang'] [u'afghanistan', u'seek', u'control'] [u'qaeda', u'say', u'suicid', u'bomber', u'iraqi', u'prison'] [u'anderson', u'hear', u'border', u'water', u'issu'] [u'anzac', u'lifeboat', u'return', u'australian', u'memori'] [u'arm', u'hold', u'earn', u'correct', u'order', u'mackay'] [u'auction', u'fund', u'develop', u'fight'] [u'asbesto', u'law', u'effect'] [u'asylum', u'seeker', u'deni', u'medic', u'help', u'court', u'hear'] [u'australia', u'indonesia', u'work', u'secur', u'pact'] [u'avon', u'prove', u'popular', u'seek', u'rural', u'chang'] [u'backpack', u'hostel', u'market'] [u'weather', u'take', u'toll', u'sheep'] [u'ballarat', u'mourn', u'pope', u'pass'] [u'beach', u'whale', u'deep', u'water'] [u'beach', u'whale', u'free'] [u'beatti', u'begin', u'asian', u'trade', u'mission'] [u'bet', u'take', u'pope', u'successor'] [u'birney', u'ask', u'vote', u'valu'] [u'bishop', u'explain', u'pope', u'death'] [u'bodi', u'helicopt', u'crash', u'victim', u'fli'] [u'injur', u'basketbal', u'accid', u'lose', u'foot'] [u'boy', u'foot', u'amput', u'basketbal', u'accid'] [u'breast', u'screen', u'program', u'futur'] [u'bright', u'time', u'ahead', u'solar', u'energi', u'centr'] [u'britain', u'keep', u'wait', u'elect', u'date'] [u'budget', u'hamper', u'murray', u'project'] [u'busi', u'outlook', u'show', u'govt', u'stuff', u'swan'] [u'canberra', u'water', u'suppli', u'decis', u'loom'] [u'castlemain', u'festiv', u'prove', u'popular', u'visitor'] [u'cat', u'wojcinski', u'rule', u'season'] [u'central', u'mourn', u'pope'] [u'charl', u'push', u'ahead', u'wed', u'plan'] [u'chicken', u'farm', u'fund', u'hatch', u'job'] [u'chopper', u'crash', u'victim', u'break', u'hill', u'resid'] [u'chopper', u'ground', u'amid', u'crash', u'probe'] [u'seek', u'chang', u'polic', u'respons', u'domest'] [u'communiti', u'act', u'tree', u'vandal'] [u'coron', u'review', u'autist', u'boy', u'death'] [u'costello', u'approv', u'billiton'] [u'council', u'face', u'tough', u'northern', u'foreshor', u'decis'] [u'councillor', u'consid', u'water', u'chang'] [u'council', u'challeng', u'bridg', u'accid', u'compo'] [u'council', u'merger'] [u'council', u'urg', u'boost', u'schooli', u'fund'] [u'council', u'urg', u'chang', u'plan', u'saleyard', u'site'] [u'council', u'workshop', u'search', u'save'] [u'court', u'hear', u'evid', u'death'] [u'cowra', u'council', u'visit', u'japan'] [u'crash', u'victim', u'receiv', u'honour', u'medal'] [u'dairi', u'farmer', u'interim', u'drought'] [u'damag', u'water', u'pipe', u'close', u'highway'] [u'deleg', u'monitor', u'game', u'prepar'] [u'dignitari', u'respect', u'pope', u'lie', u'state'] [u'doctor', u'group', u'call', u'surgic', u'train'] [u'doctor', u'urg', u'perform', u'rape', u'examin'] [u'dragon', u'coach', u'seek', u'commit'] [u'driver', u'die', u'truck', u'mishap'] [u'dyer', u'bowyer', u'sack', u'player', u'chief'] [u'echidna', u'milk', u'spike', u'dairi', u'farmer'] [u'emerg', u'servic', u'keep', u'busi'] [u'escap', u'basslink', u'burn', u'spark', u'call', u'govt'] [u'warn', u'lift', u'china', u'arm', u'embargo'] [u'shire', u'presid', u'rethink', u'elect', u'nomin'] [u'famili', u'honour', u'helicopt', u'crash', u'victim'] [u'famili', u'surviv', u'fall', u'tree', u'branch'] [u'farm', u'undergo', u'health', u'safeti', u'audit'] [u'feder', u'down', u'nadal', u'dogfight'] [u'firefight', u'continu', u'sister', u'hill', u'bushfir', u'battl'] [u'firefight', u'specialist', u'tackl', u'power', u'station', u'blaze'] [u'appear', u'court', u'decapit'] [u'forecast', u'tip', u'rat', u'rise', u'economi', u'cool'] [u'forestrysa', u'disput', u'end'] [u'serbian', u'general', u'face', u'crime', u'tribun'] [u'forum', u'encourag', u'tasmanian', u'activ'] [u'foster', u'extend', u'hostil', u'southcorp'] [u'fourteen', u'marburg', u'virus'] [u'german', u'polic', u'free', u'inmat', u'hostag'] [u'govern', u'hear', u'darl', u'river', u'plan'] [u'grower', u'oust', u'golden', u'circl', u'board'] [u'hamish', u'hammer', u'lankan', u'attack'] [u'helicopt', u'crash', u'victim', u'return', u'aust'] [u'hobart', u'compani', u'cash', u'research', u'grant'] [u'hope', u'continu', u'farm', u'safeti'] [u'hospit', u'kick', u'smoke', u'habit'] [u'april', u'night', u'mildura'] [u'huge', u'wilson', u'promontori', u'blaze', u'burn'] [u'human', u'traffic', u'rival', u'illeg', u'drug', u'industri'] [u'hungri', u'wildlif', u'go', u'town', u'alic'] [u'illawarra', u'move', u'pope', u'death'] [u'incent', u'offer', u'reliabl', u'power'] [u'india', u'sack', u'offici', u'tiger', u'miss'] [u'indonesian', u'presid', u'thank', u'australia'] [u'indonesian', u'presid', u'tour', u'memori'] [u'injur', u'rathbon', u'hope', u'rapid', u'recoveri'] [u'inquest', u'begin', u'autist', u'boy', u'death'] [u'rate', u'fear', u'investor'] [u'iran', u'hope', u'nuclear', u'energi', u'deal'] [u'itali', u'prepar', u'pilgrim', u'influx'] [u'jail', u'killer', u'releas', u'wife', u'turn', u'aliv'] [u'juri', u'retir', u'consid', u'verdict', u'terror', u'case'] [u'kashmir', u'rule', u'parti', u'offici', u'shoot', u'death'] [u'kewel', u'liverpool', u'histor', u'juve', u'rematch'] [u'kidman', u'latest', u'film', u'take', u'centr', u'stage', u'sydney'] [u'kookaburra', u'look', u'face'] [u'lake', u'grace', u'farmer', u'appoint', u'waff', u'grain', u'chief'] [u'langer', u'back', u'haydo', u'maximus'] [u'lara', u'second', u'test'] [u'lewi', u'resign', u'speaker'] [u'local', u'respect', u'pope'] [u'loud', u'music', u'threat', u'ear', u'teen', u'tell', u'studi'] [u'convict', u'possess', u'child', u'porn', u'get', u'bail'] [u'man', u'face', u'home', u'invas'] [u'tri', u'leav', u'court', u'coat', u'arm'] [u'marburg', u'virus', u'toll', u'hit', u'angola'] [u'matthew', u'defend', u'voss', u'lappin', u'select'] [u'melbourn', u'airport', u'work', u'emerg', u'respons'] [u'mickelson', u'olazab', u'move', u'georgia'] [u'minist', u'welcom', u'educ', u'chang'] [u'mix', u'number', u'seeker'] [u'monaro', u'fire', u'brigad', u'busi'] [u'south', u'australian', u'seek', u'social'] [u'settler', u'wont', u'resist', u'gaza', u'pullout', u'offici'] [u'mugab', u'plan', u'constitut', u'chang'] [u'murray', u'darl', u'project', u'stall', u'govt', u'disput'] [u'navi', u'offer', u'support', u'famili', u'chopper', u'crash'] [u'name', u'grab'] [u'leader', u'announc', u'kapooka', u'train', u'centr'] [u'rotari', u'head', u'vow', u'continu', u'high', u'standard'] [u'million', u'chines', u'face', u'water', u'shortag'] [u'trucki', u'drug', u'union', u'say'] [u'decis', u'coast', u'cruis', u'ship', u'termin'] [u'nrma', u'highlight', u'high', u'princ', u'highway', u'crash', u'rate'] [u'price', u'high'] [u'dead', u'injur', u'collis'] [u'oral', u'safe', u'teen'] [u'oust', u'kyrgyz', u'leader', u'resign'] [u'oust', u'kyrgyz', u'presid', u'resign'] [u'panel', u'listen', u'water', u'concern'] [u'level', u'blame', u'communiti', u'servic'] [u'pell', u'expect', u'papal', u'stabil', u'live'] [u'pilbara', u'workshop', u'discuss', u'creativ', u'busi'] [u'plane', u'rout', u'collect', u'helicopt', u'crash', u'dead'] [u'plant', u'pest', u'reach', u'bowen'] [u'defend', u'king', u'dead', u'crash'] [u'polic', u'await', u'post', u'mortem', u'result', u'newcastl', u'bodi'] [u'polic', u'highlight', u'callous', u'attack', u'senior'] [u'polic', u'investig', u'cargo', u'ship', u'brawl'] [u'polic', u'offic', u'die', u'accid'] [u'polic', u'probe', u'suspici', u'school', u'blaze'] [u'polic', u'quiz', u'trawler', u'crew', u'illeg', u'fish'] [u'polic', u'search', u'miss'] [u'polic', u'seek', u'author', u'halvagi', u'email'] [u'polic', u'train', u'victim'] [u'pope', u'laud', u'indigen', u'right', u'campaign'] [u'pope', u'funer', u'hold', u'friday'] [u'pope', u'pass', u'bring', u'relief'] [u'power', u'boost', u'plan', u'south', u'east'] [u'probe', u'continu', u'perth', u'blast'] [u'probe', u'find', u'insuffici', u'evid', u'high'] [u'project', u'underway', u'record', u'disappear', u'indigen'] [u'properti', u'hurt', u'region', u'area', u'brogden', u'say'] [u'protest', u'hold', u'teacher', u'aid', u'hour'] [u'push', u'continu', u'separ', u'north', u'west', u'region'] [u'cotton', u'gin', u'open'] [u'quak', u'fear', u'forc', u'indonesian', u'home'] [u'quak', u'jolt', u'northern', u'japan'] [u'hop', u'adelaid', u'project', u'wont', u'affect', u'region'] [u'rabin', u'grave', u'desecr'] [u'race', u'cancel', u'high', u'speed', u'boat', u'crash'] [u'rain', u'hit', u'women', u'world'] [u'ranger'] [u'rann', u'ask', u'lewi', u'quit', u'speaker'] [u'disclos', u'true', u'ident', u'inmat'] [u'tell', u'guard', u'inmat', u'reveal'] [u'rawl', u'ban', u'match'] [u'region', u'victoria', u'mourn', u'pope', u'death'] [u'report', u'claim', u'economi', u'slow'] [u'report', u'highlight', u'high', u'econom', u'growth'] [u'resid', u'angri', u'telephon', u'servic', u'woe'] [u'resid', u'claim', u'buffer', u'zone', u'breach'] [u'restaur', u'licenc', u'suspend'] [u'retail', u'deni', u'push', u'trucki'] [u'riverina', u'cathol', u'mourn', u'pope', u'death'] [u'roadsid', u'bomb', u'kill', u'soldier', u'iraq'] [u'roger', u'return', u'hurrican'] [u'rome', u'prepar', u'influx', u'visitor'] [u'saudi', u'secur', u'forc', u'kill', u'gunmen', u'report'] [u'search', u'find', u'miss', u'safe'] [u'shatter', u'black', u'cap', u'pick', u'piec'] [u'sheen', u'play', u'pressur', u'west'] [u'shire', u'talk', u'admin', u'build'] [u'short', u'term', u'econom', u'prospect', u'good', u'tasmania'] [u'sibl', u'thaw', u'hour', u'freez'] [u'siddon', u'hill', u'coach', u'role'] [u'citi', u'top', u'offic'] [u'singapor', u'aust', u'hold', u'joint', u'maritim', u'exercis'] [u'sleep', u'teen', u'surviv', u'crash', u'hous'] [u'small', u'busi', u'minist', u'plead', u'hold', u'rat'] [u'south', u'east', u'sadden', u'pope', u'death'] [u'sport', u'complex', u'plan', u'reach', u'launceston', u'aldermen'] [u'station', u'owner', u'ambush', u'dead', u'tourist'] [u'surgeon', u'departur', u'blow', u'wait', u'list'] [u'sydney', u'meet', u'york'] [u'grape', u'honour', u'pope'] [u'teacher', u'union', u'hit', u'sick', u'leav', u'direct'] [u'team', u'mat', u'stand', u'schulz'] [u'team', u'launch', u'whale', u'rescu', u'plan'] [u'team', u'maintain', u'whale', u'rescu', u'effort'] [u'teenag', u'face', u'court', u'multipl', u'stab'] [u'teen', u'die', u'roll'] [u'tobruk', u'set', u'sail', u'middl', u'east'] [u'tougher', u'law', u'stop', u'flow', u'steal', u'good'] [u'town', u'lobbi', u'communiti', u'bank', u'branch'] [u'travel', u'warn', u'cityrail', u'chang'] [u'truck', u'blaze', u'consid', u'suspici'] [u'truck', u'crash', u'investig'] [u'turkey', u'script', u'win', u'comedi', u'screenplay', u'gong'] [u'tweed', u'council', u'review', u'youth', u'servic'] [u'third', u'chariti', u'forc', u'turn', u'needi', u'away'] [u'union', u'prepar', u'fight', u'chang'] [u'bronckhorst', u'earn', u'late', u'point', u'barca'] [u'firefight', u'face', u'nighter', u'clear'] [u'virgin', u'health', u'scare', u'prompt', u'emerg', u'servic'] [u'virgin', u'put', u'perth', u'kalgoorli', u'flight', u'hold'] [u'wagon', u'face', u'danger', u'throw'] [u'wagon', u'face', u'danger', u'throw'] [u'wine', u'market'] [u'webck', u'repres', u'career'] [u'west', u'brom', u'buoyant', u'toffe', u'come', u'unstuck'] [u'westpac', u'top', u'corpor', u'respons', u'review'] [u'wilson', u'promontori', u'spread', u'north'] [u'woman', u'die', u'accid'] [u'women', u'carriag', u'tackl', u'grope', u'subway'] [u'young', u'gun', u'shoot', u'bear', u'win', u'streak'] [u'yushchenko', u'meet', u'bush', u'washington'] [u'execut', u'amnesti'] [u'conduct', u'test', u'breast', u'cancer', u'case'] [u'activist', u'bring', u'aborigin', u'flag', u'court'] [u'campaign', u'expect', u'lift', u'region', u'tourism'] [u'angler', u'urg', u'know', u'rule'] [u'arson', u'school', u'blaze'] [u'austrian', u'right', u'leader', u'form', u'parti'] [u'autopsi', u'find', u'dead', u'man', u'injuri', u'self'] [u'bateman', u'resid', u'remind', u'burn'] [u'berlusconi', u'take', u'beat', u'region', u'elect'] [u'want', u'council', u'exclud', u'talk'] [u'black', u'cap', u'hold', u'command', u'advantag'] [u'blair', u'announc', u'british', u'elect'] [u'bodi', u'remov', u'polic', u'raid'] [u'boost', u'southern', u'mous', u'fight'] [u'breast', u'screen', u'servic', u'temporari', u'home'] [u'break', u'hill', u'face', u'child', u'porn', u'sentenc'] [u'bush', u'roll', u'carpet', u'yushchenko'] [u'coroni', u'inquiri', u'princ', u'highway'] [u'candid', u'question', u'lewi', u'conduct'] [u'cannon', u'pois', u'sign', u'perth'] [u'crash', u'restaur'] [u'carrol', u'return', u'eel'] [u'cat', u'byrn', u'reward', u'perform', u'eagl'] [u'caution', u'urg', u'death', u'custodi', u'autopsi', u'report'] [u'ceremoni', u'mark', u'return', u'helicopt', u'crash', u'victim'] [u'charg', u'solicitor', u'drop'] [u'charg', u'unlik', u'ship', u'brawl'] [u'china', u'oppos', u'reform', u'plan'] [u'church', u'killer', u'say', u'speak'] [u'coal', u'open'] [u'communiti', u'bushfir', u'manag', u'plan'] [u'compani', u'increas', u'wast', u'fire', u'power', u'program'] [u'convent', u'centr', u'host', u'hardwar', u'confer'] [u'council', u'await', u'virgin', u'postpon', u'flight', u'explan'] [u'council', u'back', u'farmer', u'crop', u'right'] [u'council', u'consid', u'green', u'levi'] [u'council', u'plan'] [u'council', u'urg', u'rethink', u'alcohol', u'free', u'zone', u'plan'] [u'crow', u'hart', u'miss', u'match'] [u'darwin', u'council', u'scrap', u'promot', u'levi'] [u'death', u'custodi', u'autopsi', u'find', u'sign', u'tortur'] [u'democrat', u'dont', u'want', u'olymp', u'expans', u'rush'] [u'deputi', u'get', u'wetland', u'tour'] [u'develop', u'ask', u'control', u'bird', u'pest'] [u'dhoni', u'centuri', u'help', u'india', u'victori'] [u'doubl', u'petrol', u'price', u'unlik', u'auto', u'group', u'say'] [u'dragon', u'welcom', u'gasnier'] [u'dravid', u'back', u'ganguli'] [u'gippsland', u'get', u'ambul', u'respons', u'team'] [u'elector', u'reform', u'centr', u'secret', u'talk', u'govt'] [u'explor', u'bring', u'good', u'news', u'ballarat', u'gold'] [u'famili', u'leader', u'griev', u'helicopt', u'crash'] [u'famili', u'wit', u'homecom', u'crash', u'victim'] [u'farmer', u'feel', u'sheep', u'loss', u'cost'] [u'father', u'appeal', u'driver', u'contact', u'polic'] [u'fisher', u'worri', u'cruis', u'ship', u'termin', u'plan'] [u'flood', u'tactic', u'wreck', u'game', u'wallac'] [u'ford', u'worker'] [u'forest', u'contractor', u'troubl', u'industri', u'group', u'say'] [u'fund', u'boost', u'donald', u'industri', u'estat'] [u'attend', u'pope', u'funer'] [u'giant', u'antarct', u'iceberg', u'head', u'west'] [u'govt', u'accus', u'uninterest', u'inquest'] [u'govt', u'challeng', u'debat', u'transport', u'issu'] [u'govt', u'defend', u'commit', u'mental', u'health'] [u'govt', u'support', u'wheat', u'market', u'review'] [u'group', u'oppos', u'bourk', u'weir', u'work'] [u'grudg', u'waratah', u'cannon'] [u'guardian', u'concern', u'killer', u'melbourn'] [u'hagan', u'includ', u'dragon', u'smith'] [u'harbour', u'export', u'develop', u'beat', u'live', u'cattl'] [u'hard', u'work', u'pay', u'kerang', u'dairi', u'apprentic'] [u'high', u'hop', u'proserpin', u'sugar'] [u'hill', u'back', u'vote', u'valu'] [u'histor', u'break', u'hill', u'serv', u'drink'] [u'victim', u'father', u'angri', u'juvenil', u'justic'] [u'hope', u'remain', u'australian'] [u'hors', u'skill', u'win', u'snowi', u'river', u'challeng'] [u'hospit', u'review', u'delay', u'treat', u'minist'] [u'hous', u'blaze', u'consid', u'suspici'] [u'hundr', u'evacu', u'bush', u'rag', u'south'] [u'independ', u'attack', u'birney', u'elector', u'reform'] [u'indigen', u'australian', u'rememb', u'pope'] [u'indonesian', u'leader', u'look', u'closer', u'secur', u'tie'] [u'inquest', u'tell', u'paddi', u'wagon', u'design', u'contribut'] [u'invest', u'confid', u'slide'] [u'iraqi', u'armi', u'general', u'kidnap', u'baghdad'] [u'italian', u'blame', u'region', u'elect', u'result'] [u'ivori', u'coast', u'govern', u'talk', u'rebel'] [u'joplin', u'band', u'hunt', u'pearl'] [u'labor', u'doubt', u'easi', u'access', u'east', u'asian', u'summit'] [u'lake', u'macquari', u'council', u'record', u'construct'] [u'landmark', u'name', u'historian'] [u'launceston', u'council', u'announc', u'sport', u'facil'] [u'laundri'] [u'life', u'sentenc', u'uphold', u'khmer', u'roug', u'leader'] [u'macgil', u'name', u'ash', u'squad'] [u'accus', u'speed', u'drink'] [u'jail', u'sexual', u'assault', u'stepdaught'] [u'maraud', u'camel', u'destroy', u'tap', u'toilet'] [u'mayor', u'surpris', u'chang', u'drought', u'status'] [u'melbourn', u'famili', u'face', u'multipl', u'charg'] [u'memori', u'hold', u'helicopt', u'crash', u'victim'] [u'mental', u'health', u'nurs', u'reject', u'zero', u'toler', u'polici'] [u'mickelson', u'win', u'play', u'tussl'] [u'minist', u'consid', u'recherch', u'heritag'] [u'minist', u'ask', u'overturn', u'plan', u'elector'] [u'minist', u'hear', u'sunshin', u'coast', u'green', u'concern'] [u'mitsubishi', u'record', u'percent', u'increas', u'sale'] [u'call', u'baxter', u'mental', u'patient'] [u'domest', u'violenc', u'educ', u'urg', u'polic'] [u'fund', u'seek', u'communiti', u'servic', u'agenc'] [u'wit', u'child', u'death', u'inquest'] [u'mourner', u'queue', u'glimps', u'pope'] [u'angri', u'mildura', u'rail'] [u'campaign', u'hospit', u'closur'] [u'plead', u'hospit'] [u'morgan', u'bash', u'charg', u'hear'] [u'murray', u'darl', u'basin', u'commiss', u'unhappi', u'fund'] [u'narnia', u'filmmak', u'face', u'fine'] [u'nasa', u'turn', u'mexican', u'lake', u'clue', u'alien', u'life'] [u'hous', u'regul'] [u'jail', u'put', u'focus', u'rehabilit'] [u'target', u'neglect', u'parent', u'carer'] [u'work', u'forc', u'orang', u'ridgeway'] [u'flag', u'drape', u'casket', u'arriv'] [u'date', u'conclav', u'elect', u'pope', u'vatican'] [u'beaut', u'scheme', u'region', u'romanc'] [u'judg', u'head', u'prison', u'inquiri'] [u'skill', u'worker', u'shortag', u'worsen'] [u'offic', u'alleg', u'polic', u'involv', u'fiji', u'coup'] [u'opposit', u'call', u'answer', u'drink', u'drive'] [u'opposit', u'push', u'sugar', u'releas'] [u'orang', u'council', u'plan', u'suburb'] [u'orion', u'energi', u'director', u'convict', u'charg'] [u'queue', u'pope', u'bodi'] [u'pacif', u'brace', u'freight', u'cost', u'hike'] [u'packer', u'meet', u'fuel', u'onlin', u'gambl', u'deal', u'fear'] [u'parent', u'disabl', u'student', u'fund', u'overhaul'] [u'park', u'resid', u'offer', u'help', u'road', u'seal'] [u'peopl', u'begin', u'farewel', u'pope'] [u'petit', u'urg', u'action', u'halt', u'cane', u'toad', u'march', u'west'] [u'pitcairn', u'welcom', u'generat'] [u'play', u'abus', u'cathol', u'church', u'win', u'pulitz'] [u'see', u'petrol', u'price', u'rat', u'factor'] [u'polic', u'chief', u'charg', u'nigerian', u'minist', u'sack'] [u'polic', u'clash', u'famili', u'shoot'] [u'polic', u'detain', u'ahead', u'kashmir', u'roll'] [u'polic', u'tough', u'unroadworthi', u'car'] [u'polic', u'intensifi', u'babi', u'death', u'investig'] [u'polic', u'shoot', u'dead', u'raid', u'hous'] [u'policeman', u'trial', u'rape'] [u'polic', u'station', u'owner', u'odd', u'tourist', u'death'] [u'polic', u'storm', u'canberra', u'tent', u'embassi'] [u'polic', u'surround', u'tent', u'embassi', u'canberra'] [u'pope', u'death', u'unit', u'communiti'] [u'pope', u'buri', u'beneath', u'peter', u'basilica'] [u'power', u'compani', u'gear', u'tree', u'trim'] [u'prison', u'strike', u'right', u'pump', u'iron'] [u'public', u'ask', u'help', u'stop', u'nativ', u'seed', u'scam'] [u'public', u'honour', u'chopper', u'crash', u'victim'] [u'push', u'intensifi', u'primari', u'school'] [u'rate', u'rise', u'talk', u'keep', u'investor', u'guard'] [u'report', u'urg', u'farmer', u'plan', u'retir'] [u'resid', u'campaign', u'better', u'power', u'suppli'] [u'retail', u'slump', u'surpris', u'chamber', u'commerc'] [u'rethink', u'need', u'fruit', u'campaign'] [u'riverina', u'get', u'support', u'health', u'council'] [u'road', u'damag', u'expect'] [u'pay', u'tribut', u'chopper', u'crash', u'victim'] [u'govt', u'attempt', u'truncat', u'parliamentari'] [u'govt', u'withdraw', u'parliamentari', u'privileg'] [u'predict', u'econom', u'growth'] [u'scenic', u'flight', u'moot', u'magnet'] [u'schooli', u'fund', u'decis', u'delay'] [u'school', u'mourn', u'loss', u'student', u'train', u'mishap'] [u'king', u'buyer', u'welcom', u'ground'] [u'search', u'continu', u'miss'] [u'search', u'businessman', u'custom'] [u'senat', u'confirm', u'launceston', u'sport', u'facil'] [u'servic', u'industri', u'figur', u'rise'] [u'shannon', u'noll', u'ban', u'drink', u'drive'] [u'shark', u'fight', u'town', u'icon'] [u'sharon', u'back', u'jewish', u'settlement', u'growth'] [u'shellharbour', u'council', u'consid', u'airport', u'passeng'] [u'sonni', u'month'] [u'south', u'barker', u'exit', u'competit'] [u'specialist', u'centr', u'expect', u'attract', u'health'] [u'strong', u'wind', u'stir', u'surf'] [u'summit', u'highlight', u'volunt', u'issu'] [u'survivor', u'mark', u'day', u'tsunami', u'disast'] [u'swimmer', u'warn', u'croc', u'spot'] [u'sydney', u'airport', u'termin', u'open', u'evacu'] [u'sydney', u'ceremoni', u'honour', u'fall', u'troop'] [u'level', u'predict', u'rise'] [u'teacher', u'support', u'time', u'cut', u'spark', u'strike'] [u'telstra', u'appoint', u'freehil', u'advic'] [u'thai', u'secur', u'increas', u'amid', u'fear'] [u'equat', u'rock', u'world'] [u'face', u'court', u'fatal', u'raid'] [u'tiger', u'mcfayden', u'join', u'hill', u'academi'] [u'timmin', u'follow', u'webck', u'lead'] [u'townsvill', u'offer', u'support', u'chopper', u'tragedi'] [u'trade', u'deficit', u'stay'] [u'tribut', u'flow', u'launceston', u'bear', u'nurs'] [u'tripl', u'jumper', u'set', u'sight', u'oversea', u'competit'] [u'link', u'bulli'] [u'milit', u'dead', u'saudi', u'clash', u'report'] [u'undertak', u'want', u'inquiri', u'buri', u'budget', u'funer'] [u'extend', u'peacekeep', u'mandat', u'ivori', u'coast'] [u'union', u'reject', u'govt', u'migrant', u'worker', u'plan'] [u'eye', u'nuclear', u'arm', u'program'] [u'giant', u'plan', u'billion', u'takeov'] [u'oilman', u'seek', u'gusher', u'israel'] [u'troop', u'battl', u'insurg', u'east', u'baghdad'] [u'valuat', u'neglect', u'veget', u'clear', u'ban', u'hobb'] [u'vanston', u'deni', u'advic', u'ignor'] [u'land', u'chang', u'horizon'] [u'polic', u'defend', u'fatal', u'shoot'] [u'voss', u'quit', u'captainci'] [u'wagon', u'ban', u'bronco', u'clash'] [u'memori', u'acquir', u'changi', u'cell', u'door'] [u'websit', u'fin', u'send', u'spam'] [u'say', u'fight', u'fund', u'need'] [u'william', u'contest', u'wrestl', u'charg'] [u'william', u'win', u'fight', u'wrestl', u'charg'] [u'wilson', u'promontori', u'blaze', u'hamper', u'busi'] [u'woman', u'truck', u'bridg', u'fall'] [u'world', u'power', u'truck', u'engin', u'unveil'] [u'wyndham', u'water', u'woe'] [u'york', u'serious', u'consid', u'sydney'] [u'zimbabw', u'opposit', u'seek', u'fresh', u'poll'] [u'aborigin', u'activist', u'give', u'good', u'behaviour', u'bond'] [u'action', u'plan', u'aim', u'help', u'troubl', u'race', u'club'] [u'increas', u'fuel', u'surcharg'] [u'studi', u'find', u'kalgoorli', u'boulder', u'dust', u'problem'] [u'demand', u'govt', u'mend', u'health'] [u'archbishop', u'call', u'pope', u'beatifi'] [u'armstrong', u'file', u'counterclaim', u'dope', u'alleg'] [u'auction', u'rais', u'money', u'asian', u'museum'] [u'asia', u'divid', u'support', u'australia', u'summit'] [u'astronaut', u'join', u'wright', u'brother', u'replica', u'launch'] [u'atapattu', u'complet', u'centuri'] [u'atroc', u'darfur', u'intern', u'court'] [u'australian', u'hop', u'spanish', u'judg', u'allow', u'home'] [u'australian', u'jail', u'fiji', u'break', u'law'] [u'australian', u'master', u'pair', u'reveal'] [u'aust', u'afghanistan', u'solomon'] [u'award', u'win', u'author', u'saul', u'bellow', u'die'] [u'badawi', u'touch', u'australia'] [u'beatti', u'push', u'sugar', u'export', u'asia'] [u'beef', u'produc', u'say', u'oppos', u'levi', u'increas'] [u'beetl', u'featur', u'gippsland', u'weed', u'fight'] [u'biolog', u'survey', u'focus', u'pilbara'] [u'birney', u'face', u'vote', u'valu', u'pressur'] [u'breaker', u'player', u'west'] [u'breed', u'anemon'] [u'break', u'hill', u'hold', u'funer', u'chopper', u'crash'] [u'broom', u'singapor', u'flight', u'closer'] [u'buckley', u'plan', u'stay', u'skipper'] [u'improv', u'wont', u'mean', u'fare', u'rise'] [u'busi', u'urg', u'employ', u'older', u'worker'] [u'learner', u'driver', u'truck', u'safeti'] [u'telstra', u'sale', u'fund', u'princ'] [u'cardin', u'choos', u'date', u'pick', u'pope'] [u'carr', u'refus', u'access', u'competit', u'tribun'] [u'carr', u'assassin', u'mental', u'court', u'tell'] [u'charl', u'sturt', u'rais', u'fee', u'percent'] [u'cholera', u'outbreak', u'claim', u'live', u'week'] [u'clark', u'maintain', u'concern', u'indi', u'affect'] [u'coal', u'industri', u'urg', u'publicis', u'greenhous', u'work'] [u'communiti', u'rais', u'land', u'tenur'] [u'virus', u'attack', u'percent'] [u'confid', u'venus', u'power', u'florida'] [u'correct', u'servic', u'investig', u'prison', u'death'] [u'council', u'air', u'concern', u'popul', u'growth'] [u'councillor', u'argu', u'meet', u'procedur'] [u'council', u'reject', u'port', u'campbel', u'motel', u'plan'] [u'council', u'remov', u'portabl', u'soccer', u'goalpost'] [u'council', u'legal', u'advic', u'matter'] [u'council', u'worker', u'counter', u'terror', u'lowdown'] [u'court', u'hear', u'mistress', u'act', u'murder', u'attempt'] [u'culbert', u'resign', u'chairman', u'selector'] [u'dandenong', u'arm', u'robberi', u'trigger', u'polic', u'hunt'] [u'death', u'custodi', u'inquest', u'hear', u'communiti', u'polic'] [u'defenc', u'compani', u'seek', u'discrimin'] [u'demerit', u'chang', u'spark', u'licenc', u'loss', u'fear'] [u'develop', u'scale', u'tuna', u'farm', u'plan'] [u'swab', u'order', u'kidman', u'bug', u'case'] [u'dont', u'abandon', u'chopper', u'victim', u'black', u'hawk', u'survivor'] [u'drill', u'shortag', u'hamper', u'gold', u'explor'] [u'drought', u'plan', u'reduc', u'tape'] [u'drug', u'show', u'promis', u'fight', u'alcohol'] [u'weather', u'spark', u'rethink', u'eas', u'ban'] [u'reject', u'wilson', u'promontori', u'anim', u'death', u'claim'] [u'elect', u'fever', u'grip', u'british', u'press'] [u'england', u'forget', u'aussi', u'reput', u'thorp'] [u'ethic', u'claus', u'debat', u'threaten', u'research', u'centr'] [u'expat', u'export', u'fiji', u'fund'] [u'fever', u'master'] [u'factbox', u'cardin', u'want', u'pope'] [u'famili', u'face', u'court', u'polic', u'fatal', u'raid'] [u'urg', u'congress', u'renew', u'patriot'] [u'fish', u'track', u'research', u'project'] [u'flatley', u'deni', u'sharp', u'bargain'] [u'flatley', u'give', u'red', u'captainci'] [u'florida', u'pass', u'stand', u'grind'] [u'foley', u'want', u'loxton', u'better', u'inform', u'polic'] [u'follow', u'perth', u'cannon'] [u'forum', u'discuss', u'station', u'develop'] [u'fourth', u'person', u'charg', u'south', u'burnett', u'murder'] [u'gladston', u'rape', u'charg', u'deni', u'bail'] [u'glencor', u'see', u'rival', u'austral', u'takeov'] [u'govern', u'warn', u'power', u'station', u'emiss'] [u'govt', u'consid', u'medal', u'crash', u'victim'] [u'govt', u'destroy', u'ineffect', u'vaccin'] [u'govt', u'pledg', u'tape', u'drought'] [u'govt', u'rail', u'plan'] [u'grain', u'bodi', u'upbeat', u'futur', u'product'] [u'water', u'face', u'stand', u'reservoir', u'plan'] [u'habib', u'part', u'way', u'australian', u'lawyer'] [u'health', u'project', u'target', u'indigen', u'infect'] [u'helicopt', u'crash', u'survivor', u'return', u'home'] [u'holiday', u'dutchman', u'charg', u'ecstasi'] [u'hospit', u'emerg', u'dept', u'open', u'despit'] [u'howard', u'argu', u'closer', u'asian', u'tie'] [u'hang', u'juri', u'alic', u'assault', u'trial'] [u'hunter', u'organis', u'costa'] [u'indian', u'plot', u'balloon', u'ride', u'edg', u'space'] [u'rate', u'decis', u'welcom'] [u'investor', u'want', u'citrus', u'tree', u'tabl', u'grape'] [u'iraqi', u'pick', u'kurd', u'presid'] [u'ivori', u'coast', u'leader', u'agre', u'hostil'] [u'japan', u'aim', u'astronaut', u'moon'] [u'job', u'risk', u'reform', u'farmer'] [u'judg', u'urg', u'open', u'health', u'issu'] [u'juri', u'fail', u'reach', u'verdict', u'harri', u'scarf'] [u'kanimbla', u'crew', u'finish', u'colleagu', u'work'] [u'kid', u'favourit', u'wiggl', u'wealth', u'list'] [u'koschitzk', u'sidelin', u'hamstr', u'strain'] [u'labor', u'caution', u'indigen', u'land', u'ownership', u'law'] [u'labor', u'rais', u'concern', u'crash', u'compens'] [u'lancashir', u'victim', u'hodg', u'success'] [u'lehmann', u'know'] [u'lewi', u'reject', u'elect', u'damag', u'claim'] [u'liuzzi', u'give', u'chanc', u'bull'] [u'lloyd', u'return', u'hawk', u'clash'] [u'die', u'north', u'west', u'road', u'crash'] [u'face', u'court', u'weekend', u'abduct'] [u'kill', u'furnac', u'explos'] [u'lose', u'societi', u'member'] [u'guilti', u'plan', u'terror', u'attack'] [u'highlight', u'connect'] [u'martin', u'threat', u'milan', u'derbi', u'ancelotti'] [u'master', u'cours', u'hole', u'hole'] [u'mayor', u'play', u'weir', u'rais', u'concern'] [u'mcginti', u'dismiss', u'govt', u'plan', u'fund', u'health', u'bodi'] [u'mcinn', u'complet', u'coach', u'jigsaw'] [u'memor', u'moment', u'master'] [u'milit', u'kill', u'attack', u'kashmir', u'tourist', u'centr'] [u'minist', u'deni', u'surplus', u'exceed', u'forecast'] [u'minist', u'hear', u'plan', u'waterfront', u'entertain'] [u'missil', u'guard', u'pope', u'funer'] [u'monaco', u'princ', u'rainier', u'die'] [u'australian', u'toast', u'red'] [u'farmer', u'drought', u'plan'] [u'support', u'urg', u'remot', u'school', u'teacher'] [u'time', u'asid', u'east', u'legal', u'appeal'] [u'time', u'seek', u'biodivers', u'conserv'] [u'children', u'immunis', u'registri'] [u'back', u'union', u'demand', u'aid', u'time', u'prep'] [u'pour', u'cold', u'water', u'murray', u'valley', u'food', u'levi'] [u'multiplex', u'receiv', u'second', u'extort', u'threat'] [u'muslim', u'want', u'islam', u'divorc', u'court', u'perth'] [u'foreshadow', u'loss'] [u'naval', u'squadron', u'offer', u'chopper', u'crash', u'counsel'] [u'nigerian', u'senat', u'head', u'quit', u'graft', u'alleg'] [u'dead', u'helicopt', u'crash', u'afghanistan'] [u'noll', u'say', u'drink', u'drive', u'irrespons', u'danger'] [u'land', u'council', u'warn', u'plan', u'ownership'] [u'spend', u'wadey', u'school'] [u'call', u'autopsi', u'death', u'ivori', u'coast'] [u'firm', u'drive', u'probe', u'truck', u'safeti'] [u'salut', u'yudhoyono', u'leav', u'guest', u'reel'] [u'occi', u'wave', u'surfest'] [u'parliament', u'hous', u'leav', u'heritag', u'list'] [u'oliv', u'year'] [u'opposit', u'support', u'darfur', u'crime', u'list'] [u'palestinian', u'sniper', u'shoot', u'isra'] [u'hunter', u'park', u'servic', u'fire', u'line'] [u'prais', u'rat', u'decis'] [u'seal', u'indigen', u'servic', u'deal'] [u'visit', u'helicopt', u'crash', u'survivor'] [u'poison', u'fish', u'provid', u'pain', u'cure'] [u'polic', u'raid', u'home', u'speaker', u'volunt'] [u'polic', u'raid', u'strip', u'club', u'night'] [u'polic', u'home', u'violenc', u'workshop', u'link'] [u'polic', u'investig'] [u'pompey', u'target', u'strachan'] [u'port', u'kembla', u'cargo', u'facil'] [u'powercor', u'defend', u'mainten', u'fund'] [u'princ', u'rainier', u'die'] [u'public', u'quiz', u'wind', u'farm'] [u'public', u'advantag', u'water', u'rebat'] [u'public', u'join', u'council', u'conduct', u'committe'] [u'public', u'urg', u'mossi', u'protect'] [u'qanta', u'tip', u'announc', u'price', u'hike'] [u'race', u'club', u'revamp'] [u'rail', u'industri', u'adopt', u'safeti', u'standard'] [u'rain', u'boost', u'gold', u'coast'] [u'rann', u'unveil', u'tram', u'project'] [u'rat', u'decis', u'drag', u'market', u'lower'] [u'keep', u'rat', u'steadi'] [u'flag', u'gilchrist'] [u'red', u'snub', u'forc', u'breaker', u'head', u'west'] [u'region', u'child', u'care', u'support', u'servic'] [u'club', u'get', u'changi', u'lock', u'mark', u'anniversari'] [u'ruddock', u'reserv', u'verdict', u'judici', u'review'] [u'saudi', u'forc', u'kill', u'milit', u'fierc', u'gunbattl'] [u'pledg', u'watch', u'corbi', u'trial', u'hearten', u'downer'] [u'septemb', u'start', u'buchanan', u'park', u'work'] [u'servic', u'rememb', u'hero'] [u'seven', u'scoop', u'profit', u'ticketmast', u'sale'] [u'attack', u'abduct', u'spark', u'polic', u'safeti', u'warn'] [u'sharp', u'confirm', u'perth'] [u'shearer', u'shave', u'record', u'book'] [u'shire', u'buri', u'cemeteri', u'plan'] [u'shire', u'take', u'blame', u'club', u'quit', u'footi', u'season'] [u'shuttl', u'return', u'flight', u'month', u'away'] [u'snug', u'cove', u'master', u'plan', u'lift', u'tourism'] [u'sonni', u'bill', u'ankl', u'add', u'dog', u'woe'] [u'soprano', u'actor', u'charg', u'girlfriend', u'assault'] [u'southern', u'star', u'world', u'final'] [u'stanhop', u'seek', u'extradit', u'chines', u'murder'] [u'state', u'school', u'student', u'better'] [u'stoner', u'push', u'hospit', u'upgrad'] [u'strategi', u'aim', u'minimis', u'nation', u'park', u'damag'] [u'stress', u'train', u'help', u'lower', u'blood', u'pressur'] [u'student', u'farewel', u'crash', u'survivor'] [u'submiss', u'close', u'draft', u'develop', u'control'] [u'support', u'council', u'manag', u'silverdom'] [u'survey', u'paint', u'grim', u'outlook', u'economi'] [u'suspect', u'case', u'marburg', u'virus', u'hit', u'angola', u'slum'] [u'tafe', u'director', u'stand', u'miner', u'worker', u'select'] [u'talk', u'continu', u'symmon', u'plain', u'race'] [u'author', u'get', u'literatur', u'award'] [u'task', u'forc', u'tackl', u'maroochi', u'river', u'plan'] [u'tebbutt', u'stand', u'school', u'secur', u'wade', u'high'] [u'test', u'confirm', u'dog', u'mump'] [u'energi', u'giant', u'share', u'gorgon', u'project'] [u'tourist', u'breach', u'secur', u'ahead', u'royal', u'wed'] [u'trucki'] [u'truss', u'beat', u'sugar', u'sustain', u'grant'] [u'trust', u'resign', u'shock', u'council'] [u'twin', u'leav', u'hospit', u'separ', u'surgeri'] [u'journalist', u'deni', u'break', u'zimbabw', u'law'] [u'nomin', u'afghan', u'envoy', u'iraq', u'ambassador'] [u'soldier', u'kill', u'baghdad', u'ambush'] [u'troop', u'wind', u'journalist', u'iraq'] [u'vatican', u'announc', u'break', u'tradit'] [u'veget', u'manag', u'factor', u'land'] [u'wagga', u'face', u'court', u'bomb', u'flight', u'comment'] [u'govt', u'urg', u'boost', u'jail', u'fund', u'wake'] [u'wateri', u'protest', u'earn', u'lehmann', u'match'] [u'websit', u'remov', u'centr', u'paedophil'] [u'player', u'say', u'master'] [u'willard', u'murder', u'trial'] [u'wine', u'industri', u'seek', u'sticker', u'misus'] [u'wit', u'grill', u'jackson', u'grope', u'account'] [u'woman', u'boot', u'tell', u'murder', u'fear', u'court', u'hear'] [u'woman', u'plead', u'guilti', u'rap', u'babi', u'daughter'] [u'zaki', u'mallah', u'guilti', u'plan', u'terrorist', u'attack'] [u'expans', u'plan', u'near', u'orang'] [u'aborigin', u'bone', u'theft', u'investig'] [u'raid', u'alleg', u'spam', u'email', u'compani'] [u'acid', u'spill', u'affect', u'brisban', u'refineri', u'worker'] [u'crossword', u'keep', u'dementia', u'away'] [u'administr', u'chang', u'affect', u'small', u'shire'] [u'aerial', u'search', u'west', u'petroleum'] [u'urg', u'respond', u'killer', u'possibl', u'parol'] [u'forc', u'servic', u'honour', u'helicopt', u'crash', u'victim'] [u'annan', u'slam', u'human', u'right', u'bodi'] [u'arm', u'thiev', u'away', u'pseudoephedrin', u'haul'] [u'aust', u'malaysia', u'work'] [u'australia', u'malaysia', u'agre', u'begin', u'formal'] [u'australia', u'malaysia', u'work'] [u'australian', u'drug', u'declin'] [u'australian', u'remind', u'exercis', u'caution', u'turkey'] [u'bail', u'accus', u'threaten', u'premier'] [u'bendigo', u'mass', u'honour', u'pope', u'life'] [u'bioga', u'power', u'plant', u'propon', u'talk', u'plan'] [u'block', u'pilgrim', u'pope'] [u'braini', u'student', u'get', u'root', u'digit', u'number'] [u'british', u'soldier', u'clear', u'iraqi', u'civilian', u'murder'] [u'builder', u'examin', u'multiplex', u'extort', u'threat'] [u'build', u'attack', u'kashmir'] [u'continu', u'alic', u'spring', u'mount', u'polic'] [u'caltex', u'notifi', u'famili', u'acid', u'leak', u'injur'] [u'cannabi', u'ingredi', u'tackl', u'heart', u'diseas', u'caus'] [u'carr', u'govt', u'move', u'chang', u'oath', u'allegi'] [u'ceremoni', u'rememb', u'fall', u'hero'] [u'cheap', u'airfar', u'offer', u'mask', u'internet', u'scam'] [u'chelsea', u'milan', u'champion', u'leagu', u'clash'] [u'child', u'abus', u'fail', u'impress', u'govt'] [u'child', u'accus', u'bail'] [u'china', u'boycott', u'pope', u'funer', u'anti', u'taiwan', u'protest'] [u'church', u'servic', u'honour', u'pope'] [u'citi', u'rodeo', u'capit', u'titl'] [u'interview', u'speaker', u'resign', u'call'] [u'collaps', u'rais', u'photon', u'research', u'doubt'] [u'congo', u'ferri', u'capsiz', u'fear', u'dead'] [u'continu', u'hous', u'market', u'slowdown', u'predict'] [u'contract', u'trucki', u'lift', u'toll', u'blockad'] [u'cook', u'hill', u'woman', u'die', u'multipl', u'stab'] [u'corbel', u'face', u'confid', u'vote', u'foskey', u'deal'] [u'corbi', u'face', u'delay'] [u'corbi', u'trial', u'delay'] [u'corbi', u'trial', u'wit', u'seek', u'bail'] [u'coron', u'extend', u'probe', u'autist', u'boy', u'death'] [u'costa', u'consid', u'north', u'coast', u'infrastructur'] [u'council', u'put', u'plat', u'fast', u'lane'] [u'council', u'press', u'ahead', u'airport', u'sale'] [u'council', u'brake', u'servic', u'fund'] [u'court', u'clear', u'cult', u'member', u'execut'] [u'court', u'dismiss', u'jackson', u'rumour'] [u'credit', u'union', u'look', u'merger', u'benefit'] [u'crocodil', u'kill', u'attack', u'fisherman'] [u'cross', u'border', u'travel', u'attack', u'kashmir'] [u'say', u'hec', u'rise', u'wont', u'hurt', u'enrol'] [u'say', u'higher', u'student', u'fee', u'resort'] [u'dallaglio', u'back', u'lion', u'backroom', u'cast', u'thousand'] [u'date', u'meet', u'elect', u'pope'] [u'defenc', u'bronco', u'carrol'] [u'democrat', u'welcom', u'independ', u'bushfir', u'probe'] [u'detaine', u'transfer', u'psychiatr', u'care'] [u'develop', u'urg', u'address', u'build', u'concern'] [u'devil', u'diseas', u'transmiss', u'scrutini'] [u'dignitari', u'arriv', u'pope', u'funer'] [u'downer', u'congratul', u'iraqi', u'presid'] [u'driver', u'abl', u'test', u'calder', u'work', u'soon'] [u'emerg', u'chopper', u'face', u'woe'] [u'emerg', u'servic', u'test', u'skill', u'simul'] [u'energi', u'financi', u'stock', u'boost', u'wall', u'street'] [u'expans', u'bank', u'qlds', u'record', u'profit'] [u'extend', u'game', u'villag', u'get', u'thumb'] [u'surgeri', u'wait', u'list', u'grow'] [u'fail', u'vote', u'confid', u'save', u'bacon'] [u'famili', u'refus', u'leav', u'jail', u'attend', u'funer'] [u'farmer', u'reliev', u'rat', u'hold'] [u'farm', u'group', u'cast', u'doubt', u'drought', u'plan'] [u'fatti', u'acid', u'breakthrough', u'eas', u'demand', u'fish'] [u'feder', u'govt', u'reject', u'age', u'care', u'claim'] [u'feral', u'turtl', u'prompt', u'survey'] [u'final', u'food', u'shipment', u'arriv', u'china'] [u'finnish', u'elvi', u'launch', u'pope', u'tribut'] [u'crew', u'guard', u'hypothermia'] [u'footbal', u'leagu', u'upset', u'south', u'barker', u'exit'] [u'council', u'claim', u'damag'] [u'geelong', u'grammar', u'worker', u'charg'] [u'onetel', u'director', u'lose', u'court', u'cost'] [u'frenchman', u'perrin', u'pompey'] [u'fuel', u'inquiri', u'report', u'near', u'complet'] [u'ganguli', u'bank', u'luck', u'slump', u'turn', u'desper'] [u'garrett', u'urg', u'labor', u'lead', u'greenhous'] [u'gold', u'rush', u'theme', u'park', u'sale'] [u'gospel', u'music', u'festiv', u'oppos', u'high', u'rise', u'plan'] [u'govt', u'approv', u'port', u'kembla', u'expans', u'second', u'stage'] [u'govt', u'consid', u'rental', u'deposit', u'author'] [u'govt', u'stick', u'king', u'honour', u'plan'] [u'govt', u'council', u'spend', u'crackdown'] [u'govt', u'urg', u'spend', u'fund', u'region', u'road'] [u'green', u'want', u'prison', u'probe'] [u'health', u'retreat', u'propos', u'reject'] [u'healthi', u'breakfast', u'trial', u'primari', u'school'] [u'heart', u'surgeon', u'warn', u'govt', u'hospit', u'death'] [u'hope', u'summit', u'provid', u'way', u'attract', u'worker'] [u'hous', u'group', u'welcom', u'collabor'] [u'howard', u'badawi', u'discuss'] [u'indigen', u'leader', u'warn', u'dramat', u'land'] [u'indonesia', u'reduc', u'possibl', u'tsunami', u'death', u'toll'] [u'injuri', u'forc', u'reshuffl', u'ahead', u'showdown'] [u'inquest', u'deliv', u'find', u'autist', u'boy'] [u'give', u'consider', u'sinn', u'fein', u'plea'] [u'japan', u'reject', u'critic', u'approv', u'textbook'] [u'judg', u'rule', u'inquest', u'custodi', u'death'] [u'justic', u'minist', u'discuss', u'corbi', u'case'] [u'korp', u'famili', u'decid', u'fate'] [u'lack', u'demand', u'ethanol', u'hamper', u'invest'] [u'lake', u'row', u'cours', u'extend'] [u'land', u'council', u'cast', u'doubt', u'home', u'ownership', u'plan'] [u'landmark', u'trip', u'kashmir', u'begin'] [u'landmark', u'trip', u'kashmir', u'end'] [u'lapaglia', u'join', u'sydney', u'board'] [u'larkham', u'rule', u'brumbi', u'highland', u'clash'] [u'law', u'pass', u'protect', u'river', u'dolphin'] [u'levi', u'need', u'road', u'free', u'traffic'] [u'arrest', u'rockhampton', u'arm', u'stand'] [u'charg', u'drug', u'gun'] [u'mango', u'grower', u'hope', u'confer', u'bear', u'fruit'] [u'mayor', u'air', u'wharf', u'redevelop', u'worri'] [u'meal', u'wheel', u'consid', u'bush', u'tucker', u'menu'] [u'meet', u'like', u'discuss', u'gold', u'coast', u'cruis', u'ship'] [u'meet', u'plan', u'debat', u'polic', u'station'] [u'mine', u'stock', u'lift', u'market'] [u'wont', u'vote', u'vote', u'valu'] [u'molik', u'dump', u'florida', u'event'] [u'mother', u'abandon', u'access', u'respit', u'care'] [u'mourinho', u'face', u'heat', u'secret', u'messag'] [u'mourinho', u'offer', u'chelsea', u'deal', u'say', u'agent'] [u'mourner', u'turn', u'away', u'rome'] [u'reject', u'telstra', u'highway', u'fund'] [u'transfer', u'allegi', u'queen', u'constitu'] [u'beat', u'retir', u'villag', u'fund'] [u'multiplex', u'construct', u'worker', u'wont'] [u'multiplex', u'staff', u'defi', u'extort', u'threat'] [u'murder', u'trial', u'hear', u'wife', u'call'] [u'mysteri', u'surround', u'hardwar', u'store', u'blaze'] [u'nation', u'urg', u'cadbi', u'reject', u'vote', u'valu'] [u'neitz', u'target', u'club', u'mileston'] [u'neitz', u'target', u'demon', u'mileston'] [u'doctor', u'emerald'] [u'dole', u'scheme', u'enjoy', u'success', u'northern', u'midland'] [u'north', u'east', u'burn', u'off', u'creat', u'smoki'] [u'parliamentari', u'secur', u'lousi'] [u'railway', u'cross', u'consid', u'safe'] [u'nurs', u'push', u'rise'] [u'nurs', u'vote', u'closur', u'oper', u'theatr'] [u'lead', u'lanka', u'leav'] [u'readi', u'restor', u'indonesian', u'militari', u'tie'] [u'ohara', u'injuri', u'blow', u'raider'] [u'chad', u'stake', u'claim', u'oldest', u'human'] [u'vote', u'valu', u'law', u'pass', u'hurdl'] [u'opposit', u'moot', u'reward', u'escap', u'captur'] [u'opposit', u'predict', u'longer', u'hospit', u'wait', u'list'] [u'palaszczuk', u'open', u'mind', u'drought', u'reform'] [u'pate', u'neutralis', u'master', u'jinx'] [u'perth', u'seek', u'join', u'sharp', u'west'] [u'crocodil', u'take', u'passer', u'surpris'] [u'phelp', u'lead', u'american', u'squad', u'world'] [u'pilgrim', u'choke', u'rome', u'pope', u'funer', u'near'] [u'plan', u'scale', u'tuna', u'farm', u'plan', u'net', u'dismay'] [u'endang', u'asian', u'relat'] [u'suspend', u'program', u'airport', u'incid'] [u'polic', u'confid', u'chiltern', u'death', u'breakthrough'] [u'polic', u'probe', u'windsor', u'castl', u'bomb', u'deliveri'] [u'polic', u'search', u'miss', u'mother'] [u'polic', u'seek', u'public', u'help', u'pilliga', u'fire', u'probe'] [u'polic', u'shoot', u'victim', u'lay', u'rest'] [u'polic', u'suspect', u'overnight', u'attack', u'link'] [u'pope', u'death', u'boost', u'church'] [u'priest', u'child', u'abus', u'confess'] [u'prison', u'group', u'say', u'unit'] [u'prosecut', u'corbi', u'case', u'seek', u'ajourn'] [u'public', u'urg', u'avoid', u'mozzi', u'virus', u'threat'] [u'qanta', u'north', u'west', u'flight'] [u'qanta', u'urg', u'restraint', u'fuel', u'levi'] [u'pay', u'tilt', u'train', u'passeng'] [u'rain', u'hamper', u'wilson', u'promontori', u'effort'] [u'reiq', u'welcom', u'rat', u'decis'] [u'restaur', u'blast', u'blame', u'flea', u'bomb'] [u'revamp', u'plan', u'echuca', u'hospit'] [u'reject', u'threat', u'fight', u'fire'] [u'oppos', u'medal', u'king', u'dead'] [u'safeti', u'campaign', u'target', u'region', u'road', u'death'] [u'school', u'appli', u'capit', u'work', u'grant'] [u'scott', u'singh', u'donald', u'catch', u'threebal'] [u'share', u'offer', u'close', u'delorain', u'communiti', u'bank'] [u'shoot', u'trigger', u'offic', u'polic', u'integr', u'probe'] [u'sick', u'corbi', u'trial', u'adjourn'] [u'singl', u'parent', u'plan', u'like', u'caus', u'employ', u'worri'] [u'skill', u'oversea', u'nurs', u'call', u'question'] [u'korea', u'rejig', u'iraq', u'deploy'] [u'slash', u'tax', u'welfar', u'state', u'report', u'urg'] [u'sonar', u'miss', u'canoeist', u'search'] [u'speed', u'german', u'runner', u'set', u'sight', u'coolgardi'] [u'sportingbet', u'defend', u'papal', u'book'] [u'stillborn', u'babi', u'lose', u'hospit', u'laundri'] [u'studi', u'spot', u'psychopath', u'tendenc', u'taxi'] [u'sugar', u'industri', u'reject', u'herbicid', u'cut'] [u'swan', u'hill', u'bendigo', u'rail', u'line', u'track', u'reopen', u'soon'] [u'talabani', u'swear', u'iraqi', u'presid'] [u'teacher', u'feder', u'maintain', u'mentor'] [u'teacher', u'disciplin', u'school', u'blaze'] [u'team', u'work', u'babi', u'emot', u'translat'] [u'theatr', u'great', u'hit', u'tasmanian', u'stage'] [u'injur', u'perth', u'restaur', u'blast'] [u'truck', u'accid', u'kill', u'injur'] [u'tyler', u'look', u'challeng', u'knight', u'chairman'] [u'unemploy', u'steadi'] [u'upper', u'hous', u'examin', u'dental', u'servic'] [u'helicopt', u'crash', u'like', u'kill'] [u'vail', u'play', u'badawi', u'critic'] [u'govt', u'highlight', u'continu', u'drought', u'confus'] [u'viduka', u'leav', u'hamstr', u'season', u'end', u'injuri'] [u'violenc', u'answer', u'sinn', u'fein', u'leader'] [u'virgin', u'lift', u'fuel', u'surcharg'] [u'apologis', u'children', u'abus', u'care'] [u'govt', u'elector', u'reform', u'debat'] [u'waratah', u'hold', u'hewat'] [u'wattl', u'flat', u'communiti', u'fight', u'teacher'] [u'wilson', u'promontori', u'blaze', u'control'] [u'wisden', u'name', u'warn', u'world', u'best'] [u'wisden', u'name', u'warn', u'world', u'best', u'player'] [u'wollondilli', u'council', u'get', u'black', u'spot', u'fund'] [u'wollongong', u'respect', u'pope'] [u'yushchenko', u'appeal'] [u'abdullah', u'call', u'polici', u'chang', u'muslim'] [u'establish', u'commission', u'children'] [u'admir', u'sink', u'lack'] [u'alic', u'garden', u'ornament', u'lead', u'polic', u'cannabi'] [u'alleg', u'barter', u'set', u'open', u'end', u'probe'] [u'anderson', u'urg', u'uniti', u'attack', u'lib'] [u'anger', u'mount', u'blood', u'collect', u'servic', u'closur'] [u'anti', u'king', u'protest', u'arrest', u'nepal', u'report'] [u'anti', u'log', u'protest', u'step', u'asid', u'burn'] [u'apolog', u'father', u'lose', u'babi', u'say'] [u'appeal', u'delay', u'paedophilia', u'suspect', u'bail'] [u'australian', u'farewel', u'pope'] [u'australia', u'hensbi', u'lead', u'master', u'tiger', u'struggl'] [u'australia', u'hensbi', u'lead', u'master'] [u'australia', u'meet', u'india', u'women', u'world', u'final'] [u'aviat', u'expertis', u'land', u'snowi', u'airport', u'manag'] [u'bacon', u'whereabout', u'remain', u'mysteri'] [u'baggag', u'handler', u'don', u'passeng', u'camel', u'costum'] [u'baggag', u'secur', u'question', u'camel', u'incid'] [u'bairnsdal', u'polic', u'station', u'design', u'go'] [u'battl', u'premiership', u'surviv', u'hot'] [u'bemax', u'find', u'miner', u'sand', u'deposit'] [u'bowler', u'seek', u'calm', u'council', u'boat', u'compo'] [u'bradtk', u'bullet'] [u'brazilian', u'deleg', u'head', u'pope', u'funer'] [u'brigalow', u'belt', u'report', u'tabl', u'upper', u'hous'] [u'brumbi', u'slump', u'straight', u'loss'] [u'buderus', u'career', u'newcastl'] [u'build', u'industri', u'welcom', u'perth', u'properti', u'releas'] [u'busi', u'compet', u'tourism', u'award'] [u'cabinet', u'agre', u'second', u'eyr', u'peninsula'] [u'cruis', u'ship', u'termin', u'lead', u'project'] [u'domest', u'violenc', u'emerg', u'shelter'] [u'callous', u'anim', u'cruelti', u'earn', u'record', u'sentenc'] [u'camel', u'suit', u'rustler', u'face', u'sack', u'qanta', u'say'] [u'carer', u'guilti', u'steal', u'veteran'] [u'park', u'delay', u'worri', u'maroochi', u'mayor'] [u'cash', u'contract', u'worker', u'jail'] [u'cathol', u'farewel', u'pope'] [u'centenni', u'coal', u'take', u'control', u'austral'] [u'chamber', u'commerc', u'reveal', u'elect', u'wish', u'list'] [u'charl', u'camilla', u'acknowledg', u'sin'] [u'charl', u'camilla', u'admit', u'wicked'] [u'commonwealth', u'game', u'come', u'hard', u'cheat'] [u'corbi', u'trial', u'adjourn'] [u'corbi', u'wit', u'refus', u'bail', u'rape', u'case'] [u'council', u'back', u'chicken', u'broiler', u'farm'] [u'council', u'call', u'help', u'build', u'nia', u'school'] [u'council', u'develop', u'applic', u'spotlight'] [u'council', u'hope', u'scotland', u'visit', u'eas', u'biodiesel'] [u'court', u'dismiss', u'backpack', u'murder', u'appeal'] [u'cousin', u'name', u'derbi', u'clash'] [u'cowboy', u'coach', u'want', u'strong', u'start', u'shark'] [u'critic', u'spark', u'workplac', u'safeti', u'law', u'rethink'] [u'demon', u'cat', u'kick', u'rivalri', u'round'] [u'doff', u'lose', u'insid', u'trade', u'convict', u'appeal'] [u'doubt', u'cast', u'indigen', u'land', u'ownership', u'plan'] [u'downer', u'say', u'australia', u'wont', u'asean', u'invit'] [u'drought', u'suspend', u'irrig'] [u'east', u'timor', u'indonesia', u'sign', u'border', u'deal'] [u'ecstasi', u'boom', u'doesnt', u'surpris', u'drug', u'institut'] [u'edward', u'escap', u'cost', u'million', u'mcginti'] [u'elect', u'surgeri', u'wait', u'list', u'fall', u'break', u'hill'] [u'etoo', u'real', u'enemi', u'duel'] [u'faith', u'await', u'pope', u'farewel'] [u'farmer', u'basslink', u'compo'] [u'south', u'coast', u'miss', u'nurs'] [u'fear', u'rise', u'fuel', u'price', u'curb', u'travel'] [u'crew', u'struggl', u'finish', u'wilson', u'promontori'] [u'fleme', u'thwart', u'lankan', u'hop', u'draw', u'test'] [u'formula', u'rebel', u'unit', u'banner'] [u'frenchman', u'perrin', u'confirm', u'portsmouth'] [u'fuel', u'surcharg', u'hike', u'passeng', u'number'] [u'game', u'record', u'fail', u'impress', u'crouch'] [u'game', u'volunt', u'hope', u'urg', u'enthusiast'] [u'gold', u'coast', u'abandon', u'dolphin'] [u'govt', u'ask', u'avoid', u'blanket', u'approach', u'drought'] [u'govt', u'ask', u'help', u'timber'] [u'govt', u'urg', u'rule', u'airport', u'leas'] [u'gulargambon', u'hop', u'clean', u'tidi', u'award'] [u'health', u'dept', u'confid', u'malaria', u'control'] [u'health', u'govt', u'prioriti'] [u'hensbi', u'enjoy', u'ride', u'master', u'clubhous', u'lead'] [u'highway', u'concern', u'spark', u'overtak'] [u'histor', u'fenc', u'go', u'hammer'] [u'hobart', u'teen', u'launch', u'communiti', u'site'] [u'hoon', u'face', u'lose', u'car'] [u'hors', u'death', u'hamper', u'fundrais', u'trek'] [u'howard', u'deni', u'heavi', u'reserv', u'bank'] [u'howard', u'urg', u'reconcili'] [u'indian', u'politician', u'cancel', u'australia', u'visit'] [u'injuri', u'continu', u'troubl', u'tarrant'] [u'ironi', u'forc', u'virgin', u'kalgoorli', u'land'] [u'pngs', u'program', u'downer'] [u'want', u'stay', u'newcastl', u'say', u'bowyer'] [u'jacob', u'sign', u'waratah'] [u'jerusalem', u'fear', u'violenc', u'friday', u'prayer'] [u'job', u'waikeri', u'wineri', u'sale'] [u'juve', u'milan', u'resum', u'championship', u'duel'] [u'kid', u'behaviour', u'drive', u'parent', u'distract'] [u'labour', u'council', u'probe', u'wollongong', u'citi', u'plan'] [u'land', u'council', u'sack', u'chief', u'execut'] [u'lang', u'implor', u'panther', u'start', u'storm'] [u'larkham', u'injuri', u'woe', u'worsen'] [u'liber', u'ask', u'halt', u'rat'] [u'local', u'tribut', u'flow', u'pope'] [u'local', u'wait', u'list', u'defi', u'state', u'trend'] [u'loeb', u'stamp', u'author', u'ralli'] [u'lose', u'picasso', u'french', u'polic'] [u'malinga', u'breath', u'life', u'lanka', u'test'] [u'die', u'water', u'corp', u'mishap'] [u'marburg', u'virus', u'threat', u'spread'] [u'martin', u'yudhoyono', u'discuss', u'trade'] [u'mcguigan', u'simeon', u'profit', u'warn', u'hit', u'share'] [u'meet', u'help', u'eas', u'hospit', u'tension'] [u'meet', u'resolv', u'tourist', u'attract'] [u'merger', u'pave', u'basin', u'project'] [u'mexican', u'mayor', u'face', u'legal', u'action'] [u'rover', u'administr', u'british', u'govt'] [u'tourism', u'plan'] [u'mine', u'bank', u'pull', u'higher'] [u'minist', u'invit', u'inspect', u'disgrac', u'road'] [u'minist', u'stay', u'despit', u'murray', u'river', u'fund'] [u'mirvac', u'buy', u'properti', u'market'] [u'mix', u'respons', u'plate', u'plan', u'senior'] [u'australian', u'sign', u'workplac', u'agreement'] [u'car', u'confisc', u'anti', u'hoon', u'law'] [u'mother', u'unhappi', u'inquest', u'delay'] [u'mourner', u'farewel', u'boy', u'kill', u'hous'] [u'push', u'ahead', u'hous', u'plan'] [u'murder', u'charg', u'mention', u'court'] [u'murder', u'juri', u'focus', u'weapon'] [u'murray', u'want', u'cowboy', u'corral', u'shark', u'pair'] [u'nambucca', u'council', u'seek', u'maintain', u'green', u'levi'] [u'nativ', u'titl', u'report', u'urg', u'approach'] [u'neitz', u'celebr', u'style'] [u'newcastl', u'see', u'roll', u'stock', u'sourc'] [u'code', u'crack', u'dodgi', u'wine', u'medal', u'sticker'] [u'film', u'showcas', u'rob', u'uniqu', u'look'] [u'town', u'plan', u'initi', u'fitzroy', u'cross'] [u'korea', u'request', u'seoul', u'help', u'bird', u'fight'] [u'nostradamus', u'grim', u'warn', u'pope'] [u'nowra', u'servic', u'honour', u'king', u'crash', u'victim'] [u'nrma', u'board', u'dump', u'bankrupt', u'turnbul'] [u'polic', u'access', u'compo'] [u'nurs', u'warn', u'staff', u'shortag', u'spark', u'theatr'] [u'nuttal', u'rule', u'bundaberg', u'surgeri', u'audit'] [u'obyrn', u'hint', u'mayor'] [u'optim', u'resort', u'open'] [u'paedophil', u'suspect', u'collaps', u'court'] [u'pair', u'charg', u'gordon', u'estat', u'drug'] [u'palestinian', u'milit', u'resum', u'rocket', u'attack'] [u'panther', u'win', u'way'] [u'pardoel', u'farewel', u'canberra'] [u'patient', u'win', u'compo', u'cancer', u'treatment'] [u'battl', u'classroom', u'shortfal', u'rebuild'] [u'perth', u'firm', u'accus', u'spam', u'million'] [u'pilgrim', u'squar', u'ahead', u'pope', u'funer'] [u'pilot', u'plan', u'test', u'south', u'burnett'] [u'pixi', u'skase', u'win', u'right', u'appli', u'citizenship'] [u'seek', u'help', u'bougainvill', u'elect'] [u'pole', u'honour', u'pope'] [u'pole', u'send', u'pope', u'prayer', u'salut'] [u'policeman', u'injur', u'malaysian', u'motorcad'] [u'policeman', u'knock', u'drag'] [u'polic', u'offic', u'farewel', u'today'] [u'polic', u'probe', u'hadden', u'attack', u'resign'] [u'polic', u'seek', u'inform', u'child', u'death'] [u'pope', u'heaven', u'say', u'cardin', u'ratzing'] [u'pope', u'john', u'paul', u'lay', u'rest'] [u'pope', u'mourn', u'emot', u'funer'] [u'pope', u'regret', u'pray', u'polish', u'team', u'player'] [u'pope', u'funer', u'rome'] [u'power', u'south', u'east'] [u'power', u'regul', u'offer', u'part', u'price', u'warn'] [u'power', u'station', u'plan', u'offer', u'local', u'busi', u'benefit'] [u'pressur', u'reopen', u'prom', u'monday'] [u'public', u'urg', u'region', u'forum'] [u'qanta', u'confirm', u'fuel', u'surcharg', u'hike'] [u'qasim', u'detent', u'soul', u'destroy', u'stott', u'despoja'] [u'school', u'advis', u'asbesto', u'relat'] [u'play', u'region', u'road', u'fund', u'worri'] [u'race', u'fall', u'wont', u'investig'] [u'rail', u'contract', u'allow', u'tare', u'apprentic', u'boost'] [u'queri', u'govt', u'elect', u'rat', u'claim'] [u'region', u'emerg', u'water', u'fund'] [u'region', u'mobil', u'wireless', u'broadband', u'connect'] [u'regul', u'need', u'indigen', u'land', u'ownership'] [u'rescu', u'helicopt', u'oper', u'bid', u'extend', u'contract'] [u'reserv', u'bank', u'concern', u'elector', u'breach'] [u'resid', u'grazier', u'meet', u'saleyard'] [u'review', u'consid', u'develop', u'modif'] [u'reward', u'offer', u'canker', u'inform'] [u'rijkaard', u'talk', u'frisk', u'report'] [u'rockhampton', u'mass', u'pope'] [u'rome', u'prepar', u'funer'] [u'rugbi', u'legend', u'lomu', u'sign', u'confirm', u'return'] [u'rychart', u'stay', u'sixer'] [u'urg', u'stronger', u'territori', u'timor', u'tie'] [u'shopper', u'horrifi', u'alleg', u'stab', u'mother'] [u'spotlight', u'fall', u'coastal', u'infrastructur'] [u'stanhop', u'urg', u'contact', u'china', u'extradit'] [u'strike', u'miner', u'order', u'work'] [u'student', u'sentenc', u'assault'] [u'survey', u'point', u'strong', u'farm', u'sector'] [u'sydneysid', u'respect'] [u'tah', u'face', u'stern', u'test', u'underdog', u'hurrican'] [u'tamworth', u'school', u'celebr', u'begin'] [u'team', u'flock', u'alic', u'lightn', u'carniv'] [u'teen', u'rampag', u'vacant', u'hous'] [u'telstra', u'chang', u'phone', u'combat', u'vandal'] [u'test', u'fightback', u'inspir', u'pakistan', u'ahead', u'dayer'] [u'thousand', u'attend', u'adelaid', u'memori', u'pope'] [u'thousand', u'pack', u'peter', u'goodby'] [u'cook', u'spoil', u'festiv', u'diner'] [u'seed', u'davenport', u'advanc', u'rain', u'florida'] [u'townsvill', u'gather', u'pope', u'farewel'] [u'train', u'blazer', u'beat', u'rat', u'hike'] [u'tremor', u'shake', u'island', u'sumatra'] [u'troop', u'farewel', u'ahead', u'iraq', u'deploy'] [u'tweed', u'council', u'plan', u'fight', u'sack', u'spark', u'anger'] [u'uphil', u'battl', u'govt', u'elector', u'chang'] [u'vatican', u'prepar', u'pope', u'funer'] [u'govt', u'flag', u'giant', u'golf', u'cours'] [u'wait', u'list', u'expand'] [u'watkin', u'urg', u'date', u'north', u'coast', u'visit'] [u'watson', u'avoid', u'vote', u'valu'] [u'welfar', u'group', u'fear', u'fund', u'impact'] [u'wheatbelt', u'farmer', u'drought'] [u'wild', u'hors', u'creat', u'problem', u'resid'] [u'woman', u'arrest', u'dead', u'cat', u'fridg'] [u'women', u'world', u'final', u'show'] [u'world', u'farewel', u'pope', u'john', u'paul'] [u'world', u'stop', u'farewel', u'untir', u'pope'] [u'aerobridg', u'adelaid', u'airport'] [u'agent', u'orang', u'victim', u'appeal', u'lawsuit'] [u'alleg', u'abort', u'clinic', u'bomber', u'plead', u'guilti'] [u'fear', u'medicar', u'safeti'] [u'anti', u'protest', u'mark', u'anniversari', u'saddam'] [u'arm', u'islam', u'milit', u'algeria', u'kill'] [u'australia', u'council', u'win', u'communiti', u'art', u'sector'] [u'australia', u'gift', u'paint', u'royal', u'coupl'] [u'baggag', u'handler', u'sack', u'camel', u'suit', u'prank'] [u'banana', u'prawn', u'season', u'get', u'underway'] [u'bartel', u'clear', u'injuri'] [u'bartlett', u'keep', u'cabinet', u'ambit', u'hold'] [u'baxter', u'detaine', u'receiv', u'psychiatr', u'care'] [u'beazley', u'doubt', u'govt', u'unawar', u'complaint'] [u'blue', u'beat', u'cat', u'titl', u'hop', u'aliv'] [u'bodi', u'blue', u'mountain'] [u'breweri', u'fin', u'thumb', u'loss'] [u'britain', u'close', u'yemen', u'embassi', u'secur', u'fear'] [u'british', u'pothead', u'granni', u'spar', u'jail'] [u'buffett', u'face', u'regul', u'general', u'probe'] [u'bundaberg', u'hospit', u'safeti', u'review'] [u'butt', u'steer', u'pakistan', u'victori'] [u'cardin', u'impos', u'media', u'blackout'] [u'cathol', u'church', u'begin', u'offici', u'mourn'] [u'charl', u'camilla', u'knot'] [u'chief', u'send', u'shark'] [u'chines', u'protest', u'urg', u'boycott', u'japanes', u'good'] [u'chopper', u'crash', u'bodi', u'recov'] [u'composit', u'resolv', u'macedonia'] [u'costello', u'hop', u'timor', u'reserv'] [u'costello', u'step', u'pressur', u'visit'] [u'cousin', u'clear', u'play'] [u'crouch', u'readi', u'claim', u'record', u'lion'] [u'crowd', u'eager', u'await', u'royal', u'pair'] [u'cyclon', u'devast', u'tour', u'busi', u'reopen'] [u'davenport', u'hold', u'venus', u'reach', u'florida', u'semi'] [u'dragon', u'post'] [u'drought', u'continu', u'crippl', u'farm'] [u'drug', u'dealer', u'killer', u'guilti', u'murder'] [u'dust', u'storm', u'sweep', u'lower', u'eyr', u'peninsula'] [u'eagl', u'edg', u'docker', u'derbi'] [u'english', u'suspend', u'onlin', u'race', u'syndic'] [u'extra', u'french', u'date', u'wallabi'] [u'eyr', u'peninsula', u'blacken', u'hectar'] [u'fake', u'microsoft', u'updat', u'site', u'trace', u'australia'] [u'fall', u'price', u'fail', u'sustain', u'jone', u'ralli'] [u'famili', u'buri', u'stillborn', u'babi', u'linen'] [u'firefight', u'contain', u'eyr', u'peninsula', u'blaze'] [u'firefight', u'monitor', u'wingfield', u'blaze'] [u'gut', u'tyabb', u'fruit', u'shop'] [u'fleme', u'want', u'umpir', u'remov', u'trouser'] [u'flintoff', u'back', u'ash'] [u'flood', u'cut', u'daylesford', u'main', u'street'] [u'littl', u'impact', u'japan', u'farm', u'sector'] [u'fund', u'shortag', u'lead', u'darfur', u'food', u'cutback'] [u'giant', u'panda', u'teeth'] [u'govt', u'open', u'electr', u'market'] [u'govt', u'pressur', u'complaint'] [u'harvey', u'norman', u'lose', u'sunday', u'trade', u'appeal'] [u'health', u'minist', u'anticip', u'shorter', u'wait', u'list'] [u'health', u'minist', u'doesnt', u'care', u'cystic', u'fibrosi'] [u'hensbi', u'applebi', u'shot', u'storm', u'stop'] [u'howel', u'lead', u'stormi', u'augusta'] [u'say', u'medellin', u'chang'] [u'internet', u'regul', u'okay', u'job', u'travel'] [u'iraq', u'donat', u'clarif', u'pleas', u'lightfoot'] [u'italian', u'fighter', u'plan', u'intercept', u'suspect', u'aircraft'] [u'jackson', u'hand', u'macaulay', u'culkin', u'pant', u'chef'] [u'japan', u'help', u'train', u'troop', u'ahead', u'iraq', u'deploy'] [u'khatami', u'deni', u'handshak', u'isra', u'counterpart'] [u'kirwan', u'ax', u'itali', u'coach'] [u'lara', u'equal', u'border', u'test', u'centuri', u'mark'] [u'liber', u'connect', u'rat', u'complaint', u'labor'] [u'lightfoot', u'news', u'smuggl', u'report'] [u'loeb', u'open', u'lead', u'ralli'] [u'magpi', u'carlton', u'blue'] [u'malthous', u'warn', u'carlton', u'clash'] [u'arrest', u'scream', u'theft'] [u'milit', u'kill', u'iraqi', u'troop'] [u'miss', u'man', u'bodi'] [u'nation', u'park', u'visitor', u'aborigin', u'sit'] [u'nation', u'youth', u'week', u'kick'] [u'govt', u'blame', u'farmer', u'train', u'cut'] [u'offic', u'injur', u'break', u'malak', u'parti'] [u'opposit', u'slam', u'mental', u'health', u'secur'] [u'oyster', u'farmer', u'seek', u'help', u'beat', u'parasit', u'crisi'] [u'polic', u'chase', u'end', u'smash'] [u'policeman', u'clear', u'purchas', u'speed', u'camera'] [u'polic', u'alert', u'royal', u'wed'] [u'polic', u'captur', u'restaur', u'stab', u'suspect'] [u'pope', u'regret', u'pray', u'polish', u'team', u'player'] [u'pope', u'tomb', u'close', u'visitor'] [u'protest', u'attack', u'japanes', u'embassi'] [u'sell', u'rail', u'expertis', u'vietnam'] [u'raaf', u'member', u'exercis', u'freedom', u'citi'] [u'rain', u'drench', u'coast'] [u'resid', u'ask', u'arsonist'] [u'resid', u'ralli', u'gunn', u'pulp'] [u'restaur', u'stab', u'suspect', u'turn'] [u'rig', u'compani', u'fin', u'worker', u'death'] [u'roo', u'straight'] [u'rossi', u'pole', u'spanish'] [u'school', u'roof', u'asbesto', u'legal', u'time', u'bomb', u'lawyer'] [u'shark', u'bite', u'cowboy'] [u'spammer', u'jail', u'landmark', u'case'] [u'student', u'petit', u'detain', u'classmat', u'releas'] [u'studi', u'call', u'tighter', u'regul', u'mix'] [u'lover', u'shun', u'smart', u'state'] [u'swan', u'fightback', u'stun', u'lion'] [u'govt', u'accus', u'miss', u'mark', u'jumper', u'jack'] [u'teen', u'carer', u'deserv', u'recognit', u'youth', u'coalit'] [u'teen', u'charg', u'firearm', u'offenc'] [u'tiger', u'straight'] [u'tiger', u'mourn', u'shock', u'death', u'open', u'mason'] [u'silent', u'budget', u'shortfal', u'claim'] [u'unknown', u'group', u'claim', u'cairo', u'bomb'] [u'aviat', u'secur', u'chief', u'resign'] [u'forc', u'shoot', u'cameraman', u'iraq'] [u'militari', u'draft', u'detaine', u'rule'] [u'blacken', u'hectar'] [u'threaten', u'farm', u'hous'] [u'prison', u'overflow', u'danger', u'crimin'] [u'voic', u'greec', u'die', u'age'] [u'campaign', u'lure', u'tourist'] [u'wentworth', u'award', u'lifetim', u'achiev', u'award'] [u'west', u'tiger', u'equal', u'club', u'streak'] [u'wingfield', u'blaze', u'challeng', u'firefight'] [u'woodsid', u'sourc', u'iraq', u'cash', u'donat'] [u'world', u'unit', u'handshak', u'pope', u'funer'] [u'yudhoyono', u'honour', u'timor', u'massacr', u'victim'] [u'chines', u'stage', u'fresh', u'anti', u'japan', u'protest'] [u'adelaid', u'take', u'easi', u'oyster', u'record'] [u'anti', u'smoke', u'campaign', u'extinguish', u'excus'] [u'archer', u'farewel', u'wrap', u'island', u'festiv'] [u'attach', u'owner', u'restor', u'damag', u'properti'] [u'beazley', u'seek', u'pamphlet', u'inquiri'] [u'beazley', u'tight', u'lip', u'elect', u'approach'] [u'beazley', u'tight', u'lip', u'mcguir', u'approach'] [u'bilbao', u'basqu', u'derbi', u'honour'] [u'boat', u'collid', u'bangladesh'] [u'bogut', u'continu', u'award', u'sweep'] [u'bomber', u'hawk', u'thriller'] [u'bronco', u'bounc', u'thump', u'eel'] [u'cambodia', u'confirm', u'bird', u'death'] [u'carlton', u'presid', u'suffer', u'heart', u'attack'] [u'charl', u'camilla'] [u'chelsea', u'hold', u'canari', u'upset', u'unit'] [u'china', u'accept', u'final', u'food'] [u'china', u'interven', u'hong', u'kong', u'success'] [u'cold', u'chang', u'disrupt', u'firefight', u'championship'] [u'collis', u'kill', u'trap'] [u'comedi', u'error', u'end', u'safe', u'rescu'] [u'controversi', u'seal', u'bull'] [u'crow', u'pull', u'showdown', u'boilov'] [u'davenport', u'target', u'amelia', u'island', u'titl', u'repeat'] [u'klerk', u'call', u'nation', u'parti', u'replac'] [u'devil', u'nomin', u'threaten', u'speci', u'regist'] [u'dimarco', u'hold', u'tiger', u'attack'] [u'dimarco', u'lead', u'bjorn', u'wood', u'round'] [u'doctor', u'investig', u'bundaberg', u'hospit', u'death'] [u'downer', u'attribut', u'cultur', u'differ'] [u'dozen', u'arrest', u'jerusalem', u'protest'] [u'dunmor', u'forest', u'blaze', u'control'] [u'defend', u'annual', u'report', u'omiss'] [u'exhibit', u'tell', u'artist', u'stori', u'pictur'] [u'farmer', u'question', u'water', u'test', u'confidenti'] [u'favourit', u'romp', u'nation', u'glori'] [u'fear', u'blame', u'high', u'price'] [u'jew', u'answer', u'shrine', u'ralli'] [u'firefight', u'continu', u'battl', u'bushfir'] [u'gut', u'shop', u'complex'] [u'gallipoli', u'chang', u'tragedi', u'beazley'] [u'garden', u'attract', u'record', u'number'] [u'gaza', u'violenc', u'strain', u'truce'] [u'golden', u'bear', u'make', u'tear', u'master', u'farewel', u'prowl'] [u'govt', u'defend', u'cost', u'juvenil', u'detent'] [u'govt', u'urg', u'stimul', u'explor'] [u'green', u'govt', u'hospit', u'wait', u'list', u'task'] [u'haiti', u'rebel', u'leader', u'kill', u'shoot'] [u'handl', u'aborigin', u'remain', u'theft', u'criticis'] [u'hospit', u'emerg', u'depart', u'struggl'] [u'hotel', u'group', u'reject', u'alfresco', u'rental', u'cost', u'increas'] [u'independ', u'call', u'doubl'] [u'index', u'point', u'competit', u'tasmania'] [u'indonesian', u'quak', u'spur', u'rush', u'high', u'grind'] [u'iran', u'say', u'uranium', u'enrich'] [u'island', u'connect', u'pleas', u'prize', u'win', u'author'] [u'japan', u'summon', u'china', u'ambassador', u'protest'] [u'karzai', u'alli', u'behead'] [u'khartoum', u'lift', u'restrict', u'diplomat'] [u'plane', u'deni', u'access', u'passeng'] [u'labor', u'urg', u'australia', u'lead', u'role', u'bird'] [u'lara', u'fall', u'short', u'doubl'] [u'societi', u'seek', u'chang', u'suitor', u'fund'] [u'legaci', u'member', u'gather', u'anzac', u'concert'] [u'loeb', u'win', u'ralli', u'zealand'] [u'charg', u'restaur', u'knife', u'attack'] [u'melbourn', u'petrol', u'price', u'record', u'high'] [u'milan', u'juve', u'neck', u'neck', u'itali'] [u'review', u'recommend', u'safeti', u'council', u'revamp'] [u'miss', u'fishermen', u'safe'] [u'paedophil', u'claim', u'case', u'mistak', u'ident'] [u'gambier', u'scrub', u'cleanest', u'town'] [u'mysteri', u'surround', u'black', u'afghan'] [u'near', u'maoist', u'rebel', u'kill', u'nepal', u'report'] [u'nigerian', u'union', u'abandon', u'strike', u'threat'] [u'opec', u'consid', u'price', u'ceil'] [u'opposit', u'criticis', u'ambul', u'respons', u'time'] [u'opposit', u'offer', u'suggest', u'dump', u'crackdown'] [u'pakistani', u'consul', u'miss', u'baghdad'] [u'park', u'servic', u'warn', u'walker', u'unexplod'] [u'petrol', u'price', u'record', u'high'] [u'polic', u'appeal', u'inform', u'fatal', u'shoot'] [u'polic', u'arrest', u'raid'] [u'polic', u'investig', u'hous'] [u'polic', u'investig', u'nightclub', u'brawl'] [u'polic', u'investig', u'nightclub', u'shoot'] [u'polic', u'search', u'fatal', u'traffic', u'accid'] [u'polic', u'suspect', u'arson', u'polic', u'station'] [u'polic', u'investig', u'factori'] [u'women', u'hockey', u'titl'] [u'queen', u'toast', u'royal', u'newlyw'] [u'rabbitoh', u'account', u'hapless', u'knight'] [u'raider', u'sit', u'pretti', u'roll', u'rooster'] [u'rain', u'firefight', u'battl', u'bushfir'] [u'rate', u'rise', u'need', u'check', u'inflat', u'westpac', u'chief'] [u'rough', u'sea', u'hamper', u'rescu', u'effort'] [u'saudi', u'arabia', u'confirm', u'death', u'qaeda', u'leader'] [u'search', u'resum', u'miss', u'trail', u'bike', u'rider'] [u'smith', u'eye', u'centuri', u'windi', u'grab', u'late', u'boost'] [u'southern', u'star', u'target', u'world', u'record'] [u'south', u'korea', u'help', u'north', u'fight', u'bird'] [u'stormer', u'pile', u'miseri', u'red'] [u'superman', u'film', u'grip', u'sydney'] [u'survey', u'show', u'foster', u'care', u'shortag'] [u'task', u'forc', u'investig', u'paedophil', u'claim'] [u'thousand', u'mount', u'vigil', u'jerusalem', u'mosqu'] [u'tiger', u'notch', u'trot'] [u'user', u'warn', u'check', u'burn', u'wast'] [u'train', u'leav', u'trail', u'small', u'blaze'] [u'treati', u'precondit', u'summit', u'entri', u'downer'] [u'union', u'confid', u'driver', u'disput', u'near', u'resolut'] [u'vatican', u'issu', u'rare', u'stamp', u'papal', u'vacanc'] [u'villawood', u'protest', u'target', u'govt', u'immigr', u'polici'] [u'waratah', u'lose', u'wellington', u'thriller'] [u'halt', u'marburg', u'attack'] [u'woman', u'charg', u'stab', u'death'] [u'aborigin', u'prison', u'death', u'foul', u'play', u'court'] [u'aborigin', u'urg', u'address', u'abus', u'inquiri'] [u'aceh', u'governor', u'jail', u'year'] [u'aceh', u'rebel', u'reject', u'special', u'autonomi', u'ahead', u'talk'] [u'allawi', u'bloc', u'join', u'iraqi', u'govern'] [u'alleg', u'paedophil', u'ill', u'delay', u'bail', u'review'] [u'alleg', u'rebel', u'kill', u'indonesia', u'papua', u'report'] [u'anzac', u'cove', u'intact'] [u'arson', u'suspect', u'polic', u'station'] [u'assault', u'claim', u'halt', u'rail', u'link', u'work'] [u'aussi', u'jinx', u'continu', u'master'] [u'australian', u'vioxx', u'user', u'moot', u'legal', u'action'] [u'basic', u'struggl', u'knight'] [u'bear', u'share', u'spot', u'beat', u'ipswich'] [u'beatti', u'seek', u'sensibl', u'outcom', u'disput'] [u'bell', u'continu', u'generat', u'power'] [u'bionic', u'inventor', u'celebr', u'anniversari'] [u'blaze', u'keep', u'wilson', u'promontori', u'park', u'close'] [u'blood', u'sucker', u'get', u'woman', u'nose'] [u'boonen', u'tame', u'hell', u'north'] [u'braford', u'congress', u'promis', u'tourism', u'benefit'] [u'britain', u'slam', u'door', u'visit', u'young', u'nigerian'] [u'brodgen', u'pledg', u'cut', u'infrastructur', u'chang'] [u'build', u'collaps', u'bangladesh', u'trap', u'hundr'] [u'bundaberg', u'doctor', u'case', u'mishandl', u'opposit', u'claim'] [u'bundaberg', u'sugar', u'take', u'legal', u'action'] [u'bushfir', u'film', u'save', u'live'] [u'bushwalk', u'hurt', u'kangaroo', u'valley', u'ordeal'] [u'busi', u'group', u'urg', u'action', u'combat', u'skill'] [u'busi', u'push', u'incom', u'rate'] [u'cabl', u'mishap', u'leav', u'west', u'resid', u'dark'] [u'cahil', u'score', u'twice', u'everton', u'romp'] [u'cane', u'toad', u'club', u'spark', u'controversi'] [u'accid', u'mysteri'] [u'impound', u'investig'] [u'carlton', u'scotland', u'cite', u'lockyer', u'clash'] [u'cattl', u'station', u'worker', u'walk', u'hard', u'protest'] [u'ceremoni', u'recognis', u'ambul', u'offic', u'long', u'servic'] [u'child', u'abus', u'case', u'rise', u'studi', u'find'] [u'china', u'india', u'sign', u'deal', u'resolv', u'border', u'disput'] [u'china', u'downplay', u'anti', u'japan', u'protest'] [u'chines', u'govt', u'move', u'quell', u'anti', u'japan', u'protest'] [u'choos', u'paracetamol', u'anti', u'inflammatori', u'expert'] [u'civic', u'park', u'hous', u'memori'] [u'clergymen', u'fight', u'extradit', u'child', u'charg'] [u'concern', u'rais', u'premier', u'oversea', u'trip'] [u'council', u'maintain', u'pipelin', u'push'] [u'council', u'warn', u'loom', u'cost'] [u'council', u'worri', u'anti', u'hoon', u'curb', u'farmer'] [u'close', u'region', u'patient', u'perth', u'accommod'] [u'davenport', u'claim', u'amelia', u'island', u'titl'] [u'dimarco', u'forc', u'tiger', u'play'] [u'doctor', u'link', u'vioxx', u'death'] [u'downpour', u'bring', u'road', u'damag'] [u'driver', u'jail'] [u'drought', u'level', u'percent'] [u'drought', u'remain', u'problem', u'monaro'] [u'drought', u'take', u'greater', u'toll', u'southern'] [u'drought', u'tighten', u'grip', u'hunter'] [u'educ', u'chief', u'highlight', u'teacher', u'support'] [u'elder', u'woman', u'burn', u'oxygen', u'tank', u'explos'] [u'entrepreneur', u'seek', u'victoria', u'squar', u'close'] [u'sure', u'wast', u'treatment', u'pond', u'problemat'] [u'experi', u'bushwalk', u'miss'] [u'famili', u'seek', u'help', u'costa', u'rica'] [u'fan', u'score', u'surfest', u'open', u'trick'] [u'farmer', u'fear', u'telstra', u'sale', u'safeguard', u'lack', u'focus'] [u'farmer', u'hold', u'govt', u'respons', u'telstra', u'servic'] [u'father', u'accus', u'leav', u'daughter', u'polic'] [u'father', u'drown', u'tri', u'rescu'] [u'govt', u'state', u'trade', u'threat'] [u'feral', u'turtl', u'owner', u'fin'] [u'extend'] [u'damag', u'cottag'] [u'flare', u'delay', u'reopen', u'wilson'] [u'safeti', u'campaign', u'target', u'accommod'] [u'flash', u'flood', u'drown', u'hindu', u'pilgrim'] [u'fonterra', u'pull', u'see', u'nation', u'food', u'share', u'drop'] [u'dead', u'cairo', u'bazaar', u'bomb'] [u'fraser', u'mobil', u'phone', u'coverag'] [u'fuel', u'price', u'delay', u'crop', u'plant'] [u'fuel', u'price', u'tip', u'stay', u'high'] [u'fund', u'boost', u'eas', u'school', u'overcrowd'] [u'game', u'offici', u'pleas', u'ballarat', u'basketbal'] [u'gold', u'coast', u'properti', u'price', u'rise'] [u'golden', u'week', u'industri'] [u'govt', u'accus', u'weaken', u'environment', u'group'] [u'govt', u'cap', u'conserv', u'grant'] [u'govt', u'fund', u'affect', u'playground'] [u'govt', u'reject', u'jail', u'overcrowd', u'claim'] [u'govt', u'urg', u'explor'] [u'govt', u'urg', u'asid', u'land', u'sport', u'field'] [u'grazier', u'support', u'cattl', u'levi', u'increas'] [u'greedi', u'champion', u'jail', u'fraud'] [u'group', u'warn', u'rate', u'homeless', u'threat'] [u'gulargambon', u'tidi'] [u'gunmen', u'assassin', u'local', u'offici', u'mosul'] [u'har', u'race', u'club', u'race', u'meet', u'redistribut'] [u'hawk', u'head', u'treatment', u'room', u'clash'] [u'hear', u'centr', u'improv', u'bionic', u'technolog'] [u'heritag', u'focus', u'help', u'mount', u'gambier', u'tidi', u'award'] [u'hobart', u'council', u'pay', u'tribut', u'town', u'crier'] [u'hospit', u'confirm', u'longer', u'surgeri', u'wait', u'list'] [u'hospit', u'fund', u'boost', u'expect', u'eas', u'nurs', u'woe'] [u'hospit', u'radiograph', u'die', u'crash'] [u'hous', u'grant', u'help', u'rural', u'victoria'] [u'hous', u'market', u'surpris', u'analyst'] [u'hous', u'plan', u'prompt', u'infrastructur', u'concern'] [u'humbl', u'port', u'face', u'test', u'charact', u'william'] [u'hundr', u'ralli', u'save', u'fish', u'spot'] [u'iaaf', u'toughen', u'nation', u'rule'] [u'bacon', u'resign', u'cabinet', u'post'] [u'indonesian', u'jail', u'fin', u'illeg', u'fish'] [u'inmat', u'give', u'extra', u'week', u'jail', u'escap'] [u'inquest', u'hold', u'fruit', u'picker'] [u'jackson', u'matriarch', u'say', u'court', u'exit'] [u'japan', u'china', u'meet', u'deterior', u'relat'] [u'john', u'paul', u'saint', u'month'] [u'judiciari', u'summon', u'black'] [u'kaputar', u'park', u'burn', u'continu'] [u'keyboard', u'bacteria', u'pose', u'hospit', u'risk'] [u'knight', u'wooden', u'spooner'] [u'koala', u'prompt', u'stop', u'forest', u'log'] [u'kyli', u'headlin', u'glastonburi', u'festiv'] [u'kyrgyzstan', u'presidenti', u'elect'] [u'labor', u'warn', u'medicar', u'safeti', u'blowout'] [u'legal', u'case', u'call', u'extra', u'help'] [u'lewi', u'stand', u'firm', u'paedophilia', u'alleg'] [u'lion', u'choker', u'say', u'matthew'] [u'magistr', u'find', u'neglig', u'drive', u'penalti'] [u'accus', u'stab', u'mother', u'remand'] [u'marina', u'expans'] [u'martin', u'bag', u'stagger', u'lanka'] [u'martin', u'bag', u'black', u'cap', u'charg'] [u'mayor', u'hop', u'liber', u'separ', u'fund', u'region'] [u'mayor', u'reflect', u'year', u'offic'] [u'mayor', u'attack', u'takeaway', u'alcohol', u'plan'] [u'meninde', u'tibooburra', u'interact', u'learn'] [u'minist', u'back', u'safeti', u'review', u'recommend'] [u'minist', u'defend', u'telstra', u'review', u'plan'] [u'minist', u'offer', u'forest', u'corporatis', u'assur'] [u'miracl', u'lift', u'pope', u'beatif', u'campaign'] [u'monaco', u'albert', u'applaud', u'great', u'princ', u'rainier'] [u'murray', u'prais', u'shark', u'defenc'] [u'mutual', u'oblig', u'scheme', u'cost', u'communiti', u'senat'] [u'ambul', u'station', u'sit', u'identifi'] [u'childcar', u'centr', u'plan', u'orang'] [u'committe', u'debat', u'campbel', u'hospit', u'futur'] [u'model', u'cape', u'york', u'health', u'care'] [u'senior', u'certif', u'recognis', u'vocat'] [u'rollercoast', u'soon', u'level', u'say', u'webck'] [u'mislead', u'redfern', u'redevelop', u'cost'] [u'onesteel', u'boss', u'hand', u'rein'] [u'opposit', u'want', u'answer', u'pierc', u'creek', u'hous'] [u'opposit', u'want', u'inquiri', u'canker', u'alleg'] [u'optim', u'face', u'water', u'moratorium'] [u'optus', u'manag', u'job'] [u'paedophilia', u'probe', u'continu', u'despit', u'retract'] [u'pair', u'accus', u'tri', u'kill', u'policeman', u'face', u'court'] [u'palm', u'island', u'riot', u'committ', u'hear', u'delay'] [u'palm', u'riot', u'hear', u'start'] [u'parent', u'own', u'school', u'upgrad'] [u'petroleum', u'associ', u'wont', u'specul', u'fuel', u'price'] [u'philippin', u'see', u'possibl', u'afghanistan'] [u'pilgrim', u'drown', u'releas', u'water'] [u'clark', u'join', u'call', u'zimbabw', u'cricket', u'boycott'] [u'policeman', u'clear', u'rape', u'charg'] [u'polic', u'charg', u'hous', u'trash'] [u'pope', u'podcast', u'hint', u'broadcast', u'revolut'] [u'pope', u'crypt', u'reopen'] [u'power', u'earthquak', u'jolt', u'sumatra'] [u'priest', u'jail', u'sexual', u'abus', u'altar'] [u'pumpkin', u'festiv', u'winner', u'scale'] [u'push', u'govt', u'boost', u'home', u'read'] [u'push', u'nation', u'park', u'weed'] [u'qanta', u'plane', u'close'] [u'govt', u'commonwealth', u'antic', u'say'] [u'speed', u'fine', u'revenu', u'top', u'month'] [u'qualiti', u'water', u'save', u'southern', u'oyster'] [u'want', u'light', u'shed', u'region', u'road', u'death'] [u'race', u'industri', u'review', u'safeti', u'vest'] [u'raider', u'hunt', u'monaghan', u'heckler'] [u'railcorp', u'worker', u'accus', u'train', u'vandal'] [u'real', u'goal', u'barca', u'thriller'] [u'reform', u'group', u'lodg', u'jail', u'food', u'complaint'] [u'resourc', u'stock', u'hold', u'market'] [u'rais', u'fuel', u'surcharg'] [u'robot', u'replac', u'child', u'camel', u'jockey'] [u'rolton', u'lead', u'southern', u'star', u'world'] [u'royal', u'releas', u'wed', u'pic'] [u'miguel', u'anticip', u'nation', u'food', u'takeov'] [u'school', u'dont', u'want', u'cathol', u'student'] [u'scientist', u'sound', u'reef', u'fish', u'restock'] [u'score', u'fear', u'trap', u'bangladesh', u'build'] [u'scotland', u'troubl', u'clash', u'lockyer'] [u'search', u'miss', u'canoeist'] [u'slater', u'priddi', u'name', u'test', u'squad'] [u'solo', u'voyag', u'rais', u'fund', u'wheelchair'] [u'welcom', u'bundaberg', u'hospit', u'inquiri'] [u'south', u'africa', u'apartheid', u'rule', u'parti', u'dissolv'] [u'southern', u'highland', u'face', u'drought', u'woe'] [u'state', u'split', u'corpor', u'threat'] [u'storm', u'bring', u'damag', u'region'] [u'strong', u'quak', u'jolt', u'tokyo', u'tsunami', u'warn'] [u'sudan', u'rebel', u'good', u'gestur'] [u'talabani', u'endors', u'foreign', u'troop', u'presenc'] [u'tasmanian', u'landcar', u'struggl', u'surviv'] [u'parliament', u'debat', u'marriag', u'law'] [u'disput', u'hinder', u'develop', u'gallop'] [u'teen', u'die', u'polic', u'vehicl'] [u'teen', u'girl', u'charg', u'hour', u'stand'] [u'telstra', u'deni', u'delay', u'rural', u'servic'] [u'kill', u'indian', u'kashmir'] [u'test', u'clear', u'car', u'impound', u'inquiri'] [u'thief', u'hop', u'steal', u'leav', u'shoe'] [u'thiev', u'target', u'adelaid', u'pharmaci'] [u'thousand', u'riot', u'chines', u'villag'] [u'bomb', u'militari', u'iraq'] [u'stand', u'trial', u'murder'] [u'tiger', u'claim', u'fourth', u'master', u'titl', u'play'] [u'tiger', u'bulldog', u'count', u'casualti'] [u'tiger', u'wood', u'win', u'fourth', u'master', u'titl'] [u'toll', u'marburg', u'virus', u'near'] [u'train', u'collid', u'central'] [u'tweed', u'campaign', u'shed'] [u'perish', u'great', u'sandi', u'desert'] [u'iraq', u'lock', u'record', u'number', u'suspect'] [u'mine', u'compani', u'purchas', u'silver', u'deposit'] [u'vanston', u'urg', u'meet', u'indigen', u'council'] [u'vioxx', u'blame', u'death'] [u'word', u'erupt', u'fashion', u'award'] [u'watchdog', u'back', u'egypt', u'tortur', u'claim'] [u'state', u'dont', u'howard'] [u'western', u'govt', u'matter'] [u'world', u'expert', u'gather', u'bone', u'cancer', u'meet'] [u'young', u'strike', u'suffer', u'injuri'] [u'abus', u'victim', u'criticis', u'vatican', u'cardin'] [u'abus', u'victim', u'famili', u'prais', u'detect'] [u'accc', u'probe', u'pharmaci', u'price', u'fix', u'claim'] [u'accommod', u'agenc', u'hand', u'administr'] [u'actu', u'want', u'guarante', u'award', u'wag'] [u'adelaid', u'organis', u'happi', u'chang', u'date'] [u'worker', u'tell', u'nia', u'sink'] [u'strike', u'kill', u'suspect', u'taliban', u'milit'] [u'ash', u'pressur', u'england', u'warn'] [u'attempt', u'murder', u'accus', u'deni', u'bail'] [u'attila', u'hun', u'minor', u'status', u'hungari'] [u'audit', u'probe', u'halliburton', u'overcharg', u'iraq'] [u'australian', u'appoint', u'solomon', u'polic', u'chief'] [u'australian', u'hold', u'secur', u'scare'] [u'band', u'perman', u'home'] [u'bank', u'market', u'slight', u'gain'] [u'barrist', u'protest', u'secur', u'check', u'palm'] [u'basslink', u'assur', u'landhold', u'compo', u'come'] [u'beatti', u'vow', u'resist', u'reform', u'blackmail'] [u'beazley', u'accus', u'power', u'grab'] [u'black', u'cap', u'inning', u'lead'] [u'brumbi', u'trap', u'trial', u'hail', u'success'] [u'bush', u'issu', u'middl', u'east', u'warn'] [u'busi', u'confid', u'fall'] [u'busi', u'hail', u'pledg', u'hand', u'power', u'govt'] [u'busi', u'reject', u'union', u'govt', u'minimum', u'wage', u'case'] [u'bust', u'cheekbon', u'put', u'camporeal'] [u'canker', u'reward', u'claim', u'lodg'] [u'cape', u'manag', u'plan', u'includ', u'long', u'term', u'issu'] [u'bomb', u'kill', u'iraqi', u'mosul'] [u'charg', u'drop', u'libertin', u'star'] [u'cheap', u'fare', u'stay', u'despit', u'fuel', u'levi'] [u'childbirth', u'choic', u'creat', u'worri', u'trend'] [u'child', u'safeti', u'worker', u'begin', u'industri', u'campaign'] [u'church', u'target', u'marriag'] [u'deni', u'involv', u'adopt', u'leak'] [u'club', u'cane', u'toad', u'cruel', u'democrat'] [u'coastlin', u'target', u'clean', u'expans'] [u'commiss', u'fund', u'shortfal', u'delay', u'fish', u'ladder'] [u'communiti', u'spend', u'resolv', u'immigr'] [u'communiti', u'urg', u'pitch', u'fund', u'roundabout'] [u'compani', u'cool', u'nanotechnolog'] [u'concern', u'rais', u'lack', u'irrig', u'water'] [u'confer', u'tackl', u'skill', u'labour', u'shortag'] [u'conrad', u'jupit', u'upgrad'] [u'conserv', u'group', u'explor', u'option', u'fund'] [u'consum', u'group', u'issu', u'health', u'warn'] [u'corn', u'signal', u'port', u'fight'] [u'coron', u'criticis', u'narooma', u'safeti', u'warn'] [u'coroni', u'inquest', u'reveal', u'babi', u'poison'] [u'costello', u'flag', u'health', u'chang'] [u'costello', u'slam', u'dalrympl', u'bottleneck'] [u'costello', u'warn', u'health', u'cost', u'rein'] [u'council', u'ask', u'fund', u'aborigin', u'work', u'scheme'] [u'council', u'propos', u'kart', u'stem', u'youth', u'crime'] [u'council', u'recommend', u'chang', u'holiday'] [u'council', u'tell', u'oper', u'keen', u'belmont'] [u'council', u'tell', u'road', u'need', u'work'] [u'council', u'vote', u'wind', u'farm', u'rezon', u'propos'] [u'council', u'welcom', u'fund', u'boost', u'grind', u'water'] [u'court', u'case', u'hold', u'forens', u'delay'] [u'court', u'reject', u'dungog', u'shop', u'centr', u'develop'] [u'cowboy', u'lose', u'hannay', u'saturday', u'game'] [u'danger', u'throw', u'guilti', u'plea', u'knock', u'betham'] [u'death', u'toll', u'rise', u'indian', u'accid'] [u'debat', u'age', u'care', u'continu'] [u'decis', u'urg', u'compulsori', u'head', u'wear'] [u'defect', u'discoveri', u'lead', u'asthma', u'treatment'] [u'demolit', u'begin', u'readi', u'sport'] [u'develop', u'deni', u'develop', u'threaten', u'dugong'] [u'diseas', u'decim', u'oyster', u'fisheri'] [u'dog', u'welcom', u'omeley', u'maitua'] [u'downer', u'defend', u'bali', u'decis'] [u'downer', u'refus', u'warn', u'bali', u'child', u'care', u'abus'] [u'downer', u'releas', u'letter', u'bali', u'child', u'abus'] [u'dozer', u'driver', u'judg', u'archaeolog', u'worth', u'brown'] [u'review', u'sentenc'] [u'dream', u'wigg', u'world'] [u'elder', u'arrest', u'stand'] [u'english', u'super', u'leagu', u'player', u'face', u'steroid', u'charg'] [u'english', u'team', u'struggl', u'away', u'island', u'kahn'] [u'exhibit', u'focus', u'chines', u'life', u'gold', u'rush'] [u'experi', u'teacher', u'offer', u'rise'] [u'famili', u'devast', u'govern', u'appeal'] [u'farmer', u'seek', u'drought', u'fund', u'extens'] [u'fatigu', u'risk', u'highlight', u'ship', u'worker'] [u'govt', u'urg', u'strip', u'state', u'power'] [u'fee', u'firm', u'fight', u'lawsuit'] [u'feminist', u'writer', u'andrea', u'dworkin', u'die'] [u'figur', u'reveal', u'mildura', u'high', u'rate', u'child', u'abus'] [u'film', u'maker', u'prais', u'protect', u'environ'] [u'fisheri', u'minist', u'prais', u'illeg', u'fish'] [u'fli', u'piec', u'metal', u'spark', u'probe'] [u'footag', u'releas', u'hunt', u'driver'] [u'ford', u'profit', u'warn', u'spook', u'market'] [u'forest', u'agreement', u'immin', u'lennon'] [u'charg', u'seri', u'arm', u'robberi'] [u'injur', u'king', u'highway', u'collis'] [u'face', u'kiwi', u'anzac', u'test', u'squad'] [u'fraser', u'accid', u'prompt', u'driver'] [u'fuel', u'price', u'prompt', u'seek', u'review', u'industri'] [u'ganguli', u'hop', u'ahmedabad', u'form', u'boost'] [u'gerrard', u'juventus', u'trip'] [u'giffen', u'help', u'brumbi', u'line', u'blue'] [u'gilchrist', u'reveal', u'retir', u'plan'] [u'govt', u'accus', u'steal', u'victorian', u'farmer'] [u'govt', u'intent', u'address', u'skill', u'shortag'] [u'govt', u'plan', u'overhaul'] [u'govt', u'consid', u'rethink', u'wind', u'farm'] [u'govt', u'urg', u'confront', u'milit', u'union'] [u'govt', u'urg', u'cooper', u'state', u'age'] [u'govt', u'urg', u'pull', u'basix', u'program', u'region'] [u'guard', u'cell', u'night', u'prison', u'death', u'court'] [u'hama', u'say', u'facto', u'truce', u'risk', u'collaps'] [u'health', u'servic', u'dismiss', u'hospit', u'staff', u'concern'] [u'hear', u'help', u'indigen', u'communiti'] [u'hezbollah', u'fli', u'drone', u'northern', u'israel'] [u'spear', u'tackler', u'week', u'surgeon'] [u'honour', u'walk', u'celebr', u'canberran', u'life'] [u'howard', u'drink', u'power', u'say', u'gallop'] [u'howard', u'want', u'worker', u'lennon'] [u'indonesian', u'volcano', u'erupt', u'spew'] [u'iran', u'chang', u'abort'] [u'iran', u'look', u'sell'] [u'israel', u'honour', u'german', u'offic', u'save', u'hundr'] [u'japanes', u'minist', u'call', u'china', u'scari'] [u'japan', u'expand', u'whale', u'hunt', u'speci', u'report'] [u'labor', u'seek', u'brief', u'bali', u'child', u'abus', u'claim'] [u'lack', u'counsellor', u'spark', u'concern'] [u'lawyer', u'concern', u'hospit', u'inquiri', u'process'] [u'lethal', u'mental', u'disadvantag', u'jibe', u'pie'] [u'loggerhead', u'turtl', u'head'] [u'volum', u'diesel', u'sale', u'blame', u'high', u'price'] [u'loxton', u'struggl', u'attract'] [u'lyndon', u'prepar', u'fund', u'submiss'] [u'male', u'urg', u'enter', u'nurs'] [u'burn', u'farm', u'accid'] [u'jail', u'largest', u'collect', u'child'] [u'marburg', u'death', u'toll', u'angola'] [u'mclean', u'gain', u'rise', u'star', u'nomin'] [u'mice', u'march'] [u'militari', u'funer', u'king', u'crash', u'victim'] [u'minist', u'tight', u'lip', u'pay', u'worker', u'right'] [u'moloney', u'match'] [u'moloney', u'join', u'scotland', u'tribun'] [u'moroccan', u'arrest', u'connect', u'madrid'] [u'mother', u'claim', u'jackson', u'beg', u'sleep', u'teen'] [u'mother', u'give', u'communiti', u'base', u'order', u'leav'] [u'improv', u'proof', u'ergon', u'commit'] [u'mysteri', u'spark', u'securitri', u'alert'] [u'teen', u'kill', u'collis', u'polic'] [u'nation', u'compulsori', u'student', u'union'] [u'near', u'chines', u'insult', u'japanes', u'textbook'] [u'negoti', u'begin', u'sale', u'famous', u'dolphin'] [u'gear', u'valley', u'hospit'] [u'racetrack', u'face', u'hurdl'] [u'caus', u'connipt', u'calypso', u'develop'] [u'chief', u'back', u'spear', u'tackl', u'penalti'] [u'offshor', u'area', u'open', u'explor'] [u'irrig', u'channel', u'cours', u'redevelop'] [u'opposit', u'seek', u'specif', u'child', u'care', u'travel'] [u'optim', u'prevail', u'despit', u'treati', u'ultimatum'] [u'outback', u'death', u'disast', u'wait', u'happen'] [u'outback', u'unforgiv', u'place', u'tourist', u'warn'] [u'palestinian', u'condemn', u'bush', u'remark', u'border'] [u'park', u'entri', u'help', u'protect', u'veget'] [u'patrick', u'fin', u'depot', u'breach'] [u'peopl', u'plead', u'ignor', u'smoke', u'law'] [u'pharmacist', u'deni', u'price', u'fix', u'drug'] [u'poland', u'announc', u'iraq', u'troop', u'pull'] [u'polic', u'restrain', u'lover', u'seek', u'nake', u'women'] [u'polic', u'river', u'search', u'caus', u'delay'] [u'polic', u'shoot', u'pitbul'] [u'polic', u'embark', u'grave', u'visit'] [u'polic', u'prepar', u'shoot', u'palm', u'unrest'] [u'portabl', u'replac', u'raze', u'classroom'] [u'pratt', u'quit', u'team', u'cash'] [u'prison', u'boss', u'sorri', u'wrong', u'detent'] [u'puletua', u'galuvao', u'hand', u'doubl', u'injuri', u'blow', u'panther'] [u'rain', u'need', u'plant', u'winter', u'crop'] [u'ralli', u'reconsid'] [u'rampag', u'eleph', u'kill', u'india'] [u'rann', u'look', u'interst', u'murray', u'basin', u'fund'] [u'region', u'benefit', u'boost', u'work', u'dole'] [u'renew', u'call', u'inform', u'miss'] [u'ricegrow', u'happi', u'cabinet', u'visit'] [u'roo', u'back', u'lethal', u'niggl'] [u'brew', u'jackeroo', u'head', u'wear'] [u'rural', u'resid', u'internet', u'access', u'histori'] [u'african', u'miner', u'protest', u'aust', u'takeov'] [u'saltwat', u'croc', u'captur', u'suburban', u'river'] [u'face', u'opposit', u'frontbench', u'shake'] [u'sarwan', u'steadi', u'wobbl', u'west', u'indi'] [u'seek', u'compromis', u'costello'] [u'search', u'resum', u'miss', u'canoeist'] [u'seven', u'kill', u'kashmir', u'violenc'] [u'sever', u'earthquak', u'hit', u'caledonia'] [u'slaveri', u'trial', u'open', u'melbourn'] [u'singapor', u'honour', u'aussi', u'pow'] [u'slow', u'start', u'desert', u'race', u'registr'] [u'strategi', u'develop', u'develop', u'protect', u'natur'] [u'studi', u'find', u'mobil', u'phone', u'link', u'cancer'] [u'success', u'indigen', u'train', u'program'] [u'swan', u'confid', u'hall', u'deal'] [u'talabani', u'expect', u'govern', u'week'] [u'telstra', u'receiv', u'approv', u'cdma'] [u'tiger'] [u'tilt', u'derail', u'respons', u'earn', u'govern', u'plaudit'] [u'titjikala', u'execut', u'back', u'communiti', u'cabinet'] [u'goldfield', u'blue', u'khaki', u'uniform'] [u'tori', u'unveil', u'elect', u'manifesto'] [u'track', u'coach', u'slam', u'fals', u'start', u'plan'] [u'transurban', u'increas', u'takeov', u'offer', u'hill'] [u'treasur', u'warn', u'revenu', u'meet'] [u'seek', u'money', u'rebuild', u'sudan'] [u'contractor', u'kidnap', u'iraq'] [u'panel', u'consid', u'end', u'silicon', u'breast', u'implant'] [u'senat', u'grill', u'bolton', u'post'] [u'util', u'promis', u'better', u'region', u'suppli'] [u'valentin', u'knee', u'injuri'] [u'vanston', u'accus', u'dodg', u'indigen', u'meet'] [u'victoria', u'consid', u'life', u'jacket', u'rule'] [u'wallac', u'back', u'video', u'goal', u'umpir'] [u'weather', u'forc', u'kimberley', u'burn'] [u'tell', u'staff', u'inmat', u'suicid', u'say', u'famili'] [u'wilko', u'leav', u'clive', u'name', u'lion', u'squad'] [u'wilko', u'readi', u'fight', u'lion', u'place'] [u'wilson', u'promontori', u'firefight', u'effort', u'cost'] [u'wind', u'farm', u'propos', u'barunga', u'rang'] [u'woman', u'fin', u'possess', u'commerci', u'fish', u'net'] [u'woman', u'nab', u'drive', u'wrong', u'motorway'] [u'wood', u'tip', u'power', u'car'] [u'yandilla', u'take', u'chiquita'] [u'youth', u'sentenc', u'year', u'manslaught'] [u'zimbabw', u'opposit', u'challeng', u'elect', u'result'] [u'aborigin', u'activist', u'lodg', u'writ'] [u'aborigin', u'elder', u'lodg', u'genocid', u'case', u'high', u'court'] [u'aborigin', u'elder', u'threaten', u'game', u'disrupt'] [u'govt', u'warn', u'tough', u'budget'] [u'actor', u'joaquin', u'phoenix', u'alcohol', u'rehab'] [u'afghanistan', u'comment', u'wont', u'affect', u'relat', u'arroyo'] [u'aldermen', u'consid', u'plan', u'smith', u'site'] [u'alert', u'issu', u'second', u'volcano', u'come', u'life'] [u'black', u'line', u'grand', u'slam', u'tour'] [u'ord', u'drop'] [u'antibodi', u'help', u'alzheim', u'studi'] [u'anti', u'terror', u'exercis', u'traumatis', u'melbourn'] [u'australian', u'compani', u'canadian', u'case'] [u'australia', u'reexamin', u'region', u'secur'] [u'aust', u'refus', u'sign', u'treati'] [u'confid', u'strong', u'futur', u'growth'] [u'ballarat', u'firm', u'win', u'holden', u'contract'] [u'ballarat', u'take', u'brick', u'worker'] [u'bar', u'dalli', u'leav', u'bomber', u'runnerless'] [u'barossa', u'ambul', u'servic', u'like', u'combin'] [u'bass', u'strait', u'product', u'tip', u'halv'] [u'baton', u'caus', u'mark', u'dead', u'prison'] [u'blast', u'kill', u'senior', u'offici', u'visit', u'iraq'] [u'blue', u'contest', u'scotland', u'demon', u'accept', u'moloney'] [u'braveri', u'pay', u'trade', u'talk', u'vail', u'say'] [u'breakthrough', u'wine', u'grape', u'diseas', u'research'] [u'britney', u'reveal', u'pregnanc'] [u'budget', u'promis', u'famili', u'children', u'servic'] [u'bulldog', u'confirm', u'breach'] [u'burn', u'trigger', u'banana', u'blaze'] [u'busi', u'border', u'stand', u'selector'] [u'fund', u'townsvill', u'rail', u'line'] [u'challeng', u'oversea', u'aid', u'plan'] [u'carlton', u'presid', u'recov', u'heart', u'surgeri'] [u'carr', u'deni', u'backdown'] [u'challeng', u'smoke', u'fine'] [u'chinchilla', u'infrastructur', u'plan', u'fast', u'track'] [u'church', u'group', u'voic', u'indigen', u'educ', u'concern'] [u'citi', u'planner', u'account', u'young', u'peopl'] [u'civoniceva', u'take', u'test', u'spot'] [u'combin', u'vaccin', u'offer', u'immun', u'studi'] [u'commerci', u'fish', u'gain', u'support'] [u'confer', u'tell', u'reserv', u'healthi'] [u'consul', u'threat', u'spark', u'secur', u'review'] [u'contract', u'cut', u'grower', u'angri'] [u'coolum', u'polic', u'station', u'open', u'clock'] [u'council', u'consid', u'challeng', u'govt', u'resort'] [u'council', u'defend', u'tram', u'superstop'] [u'council', u'mourn', u'loss', u'shire', u'presid'] [u'council', u'plan', u'improv', u'communiti'] [u'council', u'shouldnt', u'involv', u'dolphin', u'resort'] [u'council', u'vote', u'wind', u'farm', u'rezon'] [u'court', u'order', u'wool', u'group', u'legal', u'cost', u'peta'] [u'cowboy', u'line', u'shuffl'] [u'crash', u'victim', u'offici', u'honour'] [u'deadlin', u'loom', u'council', u'fund', u'submiss'] [u'deadlin', u'loom', u'knight', u'grandstand', u'work'] [u'demon', u'consid', u'appeal'] [u'desert', u'death', u'spark', u'better', u'trip', u'plan'] [u'didak', u'return', u'pie', u'travi', u'cloke', u'debut'] [u'donor', u'doubl', u'target', u'sudan'] [u'doubt', u'cast', u'drought', u'packag'] [u'driver', u'urg', u'slow', u'town'] [u'elliott', u'join', u'redback'] [u'ellison', u'back', u'handl', u'washington', u'secur', u'scare'] [u'cabonn', u'council', u'inspector', u'sentenc', u'theft'] [u'fake', u'money', u'warrnambool'] [u'famili', u'quad', u'bike', u'crash', u'victim', u'thank', u'emerg'] [u'farmer', u'oppos', u'workplac', u'law'] [u'farmer', u'seek', u'clear', u'messag', u'road', u'closur', u'fee'] [u'fear', u'adelaid', u'hurt', u'region', u'event'] [u'fear', u'consul', u'threat', u'hurt', u'corbi', u'case'] [u'file', u'share', u'suit', u'target', u'internet', u'user'] [u'fisher', u'optimist', u'rathbon', u'stay', u'brumbi'] [u'fleme', u'fall', u'short', u'centuri', u'vaa', u'strike'] [u'teacher', u'face', u'court', u'child', u'charg'] [u'face', u'court', u'accus', u'steal', u'thousand'] [u'peopl', u'hospitalis', u'smash'] [u'fund', u'cut', u'limit', u'conserv', u'activ'] [u'funer', u'hold', u'king', u'crash', u'victim'] [u'gene', u'help', u'tell', u'stori', u'everybodi'] [u'gold', u'deposit', u'near', u'mount', u'boppi'] [u'govern', u'accus', u'neglect', u'gold', u'coast'] [u'govt', u'consid', u'tourism', u'resort', u'plan'] [u'govt', u'defend', u'park', u'manag'] [u'govt', u'plan', u'medal', u'chang'] [u'govt', u'pledg', u'incent', u'boost', u'product'] [u'govt', u'ponder', u'welfar', u'overhaul', u'option'] [u'govt', u'pressur', u'sign', u'aggress', u'pact'] [u'govt', u'review', u'aerial', u'spray'] [u'grant', u'applic', u'attend', u'preliminari', u'brief'] [u'grant', u'build', u'heritag', u'trail', u'dali', u'water'] [u'hall', u'sign', u'swan', u'deal'] [u'har', u'race', u'shift', u'gunbow'] [u'heavi', u'rain', u'dust', u'storm', u'goldfield'] [u'hockeyroo', u'kid', u'athen', u'hudson'] [u'holli', u'undergo', u'test'] [u'hundr', u'queue', u'dawn', u'pope', u'tomb'] [u'hungari', u'refus', u'attila', u'hun', u'minor', u'status'] [u'iluka', u'fear', u'loss', u'industri', u'continu'] [u'indonesia', u'appeal', u'respect', u'judici', u'process'] [u'indonesian', u'fishermen', u'spot', u'beach'] [u'inquiri', u'hear', u'govt', u'hast', u'dairi', u'grant'] [u'institut', u'focus', u'child', u'protect'] [u'irrig', u'ask', u'consid', u'trade', u'water'] [u'israel', u'play', u'discord'] [u'italian', u'disgrac', u'champion', u'leagu', u'chelsea'] [u'japan', u'issu', u'travel', u'warn', u'gold', u'coast'] [u'japan', u'scrambl', u'mend', u'north', u'asian', u'relat'] [u'japan', u'push', u'ahead', u'search'] [u'judg', u'decid', u'brit', u'return', u'face'] [u'kanimbla', u'crew', u'give', u'humanitarian', u'medal'] [u'katter', u'want', u'gulf', u'coast', u'guard'] [u'labor', u'condemn', u'govt', u'hous', u'afford'] [u'labor', u'disput', u'effect', u'mandatori'] [u'labor', u'see', u'problem', u'welfar', u'propos'] [u'labor', u'want', u'medal', u'black', u'hawk', u'dead'] [u'land', u'clear', u'fail', u'stunt', u'wheatbelt'] [u'land', u'protest', u'continu', u'kyrgyzstan'] [u'enforc', u'agenc', u'probe', u'death', u'threat'] [u'lennon', u'betfair', u'flirtat', u'danger', u'opposit'] [u'licenc', u'grant', u'explor'] [u'lobster', u'industri', u'back', u'manag', u'plan', u'report'] [u'local', u'expert', u'western', u'regist'] [u'luhrmann', u'ponder', u'australian', u'epic'] [u'charg', u'high', u'speed', u'chase'] [u'charg', u'count', u'child', u'offenc'] [u'fin', u'permit', u'python'] [u'marburg', u'virus', u'pose', u'littl', u'global', u'threat'] [u'maritim', u'group', u'review', u'coron', u'narooma'] [u'mayor', u'lobbi', u'wind', u'farm', u'plan'] [u'migrat', u'chang', u'penalis', u'children'] [u'militari', u'funer', u'king', u'helicopt', u'victim'] [u'milk', u'product', u'fall'] [u'industri', u'seek', u'feder', u'budget', u'infrastructur'] [u'minist', u'clear', u'threaten', u'bulli', u'nurs'] [u'minist', u'reluct', u'accept', u'educ', u'voucher'] [u'minist', u'address', u'cystic', u'fibrosi', u'concern'] [u'minist', u'welcom', u'jupit', u'revamp'] [u'mobil', u'polic', u'unit', u'darwin'] [u'modifi', u'soybean', u'offer', u'hair', u'loss', u'cure'] [u'fixtur', u'race', u'season'] [u'mossi', u'diseas', u'expert', u'help', u'timor'] [u'card', u'concern'] [u'say', u'cigarett', u'design', u'reduc', u'bushfir'] [u'region'] [u'suspend', u'call', u'govt', u'hypocrit'] [u'music', u'pay', u'tribut', u'lennon'] [u'music', u'industri', u'expand', u'piraci', u'lawsuit', u'asia'] [u'mutton', u'bird', u'confisc', u'follow', u'protocol'] [u'nambour', u'prepar', u'chopper', u'crash', u'funer'] [u'nation', u'plan', u'seek', u'manag', u'camel', u'popul'] [u'weather', u'radar', u'improv', u'forecast'] [u'announc', u'fin', u'chang', u'salari'] [u'reveal', u'salari', u'fin', u'fine', u'tune'] [u'opposit', u'creat', u'north', u'coast', u'portfolio'] [u'move', u'ahead', u'statehood', u'push'] [u'tell', u'fright', u'door', u'open', u'flight'] [u'oberon', u'allow', u'road', u'closur', u'ralli'] [u'offic', u'know', u'prepar', u'palm', u'riot'] [u'olymp', u'nightmar', u'tougher', u'radcliff'] [u'opposit', u'blame', u'alert', u'doctor'] [u'oversea', u'train', u'doctor', u'scrutini'] [u'oyster', u'grower', u'fear', u'parasit', u'outbreak'] [u'philippin', u'rebuk', u'afghanistan', u'comparison'] [u'pilbara', u'polic', u'look', u'miss'] [u'pilgrim', u'pray', u'pope', u'tomb'] [u'plan', u'afoot', u'tackl', u'traffic', u'woe'] [u'polic', u'readi', u'troubl', u'juventus'] [u'polic', u'seek', u'help', u'find', u'miss', u'nabiac', u'woman'] [u'public', u'forum', u'discuss', u'fluorid'] [u'public', u'hous', u'occupi', u'report', u'find'] [u'public', u'tell', u'agenda', u'health', u'servic', u'chief'] [u'qanta', u'beef', u'baggag', u'secur'] [u'qanta', u'watch', u'baggag', u'handler'] [u'union', u'retir', u'increas'] [u'raaf', u'joint', u'exercis', u'indonesia'] [u'rann', u'appeal', u'carr', u'brack', u'murray', u'fund'] [u'rate', u'hold', u'fail', u'reassur', u'consum'] [u'real', u'estat', u'mislead', u'court', u'rule'] [u'light', u'mall', u'green', u'light', u'hungari'] [u'region', u'warrior', u'fuel', u'west', u'african', u'conflict'] [u'region', u'warn', u'high', u'fuel', u'price', u'continu'] [u'rescuer', u'lose', u'hope', u'bangladesh'] [u'research', u'breakthrough', u'grapevin', u'diseas'] [u'retrial', u'order', u'woman', u'jail', u'toddler'] [u'road', u'block', u'singl', u'vehicl', u'crash'] [u'robot', u'plane', u'deliv', u'broadband', u'high'] [u'rockhampton', u'upgrad', u'consid'] [u'applaud', u'humanitarian', u'medal'] [u'ruddock', u'deni', u'vet', u'high', u'court', u'candid'] [u'rural', u'council', u'discuss', u'share', u'resourc'] [u'carp', u'destin', u'export', u'market'] [u'overse', u'wine', u'industri', u'safeti', u'audit'] [u'saudi', u'grand', u'mufti', u'ban', u'forc', u'marriag'] [u'school', u'technic', u'colleg'] [u'scientist', u'grow', u'individu', u'cell'] [u'scottish', u'giant', u'ranger', u'shock', u'lowli', u'dunde'] [u'seaton', u'talk', u'treasuri', u'portfolio', u'role'] [u'secur', u'camera', u'instal', u'delay'] [u'shadow', u'cabinet', u'reshuffl', u'nation'] [u'sole', u'petrol', u'bowser', u'nundl', u'close'] [u'south', u'african', u'woman', u'jail', u'cocain', u'haul'] [u'speed', u'driver', u'jail', u'polic', u'pursuit'] [u'sport', u'program', u'help', u'girl', u'complet', u'school'] [u'staff', u'fault', u'inmat', u'death', u'say', u'coron'] [u'state', u'contest', u'fund', u'costello', u'say'] [u'stud', u'cattl', u'export', u'brazil', u'begin'] [u'suicid', u'bomb', u'kill', u'iraq'] [u'super', u'scheme', u'propos', u'health', u'cost'] [u'surgeon', u'make', u'remov', u'breast', u'lump'] [u'survey', u'reveal', u'higher', u'indigen', u'child', u'stress'] [u'sydney', u'doctor', u'stem', u'cell', u'breakthrough'] [u'talk', u'kalgoorli', u'flight', u'servic'] [u'tasmanian', u'govt', u'rule', u'support'] [u'offic', u'struggl', u'manag', u'super', u'surcharg'] [u'thousand', u'evacu', u'indonesian', u'volcano', u'rumbl'] [u'threat', u'shoot', u'hear', u'resid'] [u'briton', u'charg', u'alleg', u'bomb', u'plot'] [u'time', u'frame', u'plan', u'begin', u'multi', u'purpos'] [u'tourism', u'oper', u'ask', u'improv', u'market'] [u'aussi', u'unaccount', u'nia', u'quak'] [u'jail', u'relat', u'marriott', u'bomb'] [u'nomine', u'bolton', u'accus', u'bulli'] [u'panel', u'reject', u'silicon', u'breast', u'implant'] [u'stock', u'rise', u'despit', u'record', u'trade', u'deficit'] [u'rais', u'hec', u'fee'] [u'vanston', u'brush', u'game', u'threat'] [u'vanunu', u'court', u'media', u'interview'] [u'venezuela', u'ask', u'hand', u'terror', u'suspect'] [u'doubl', u'game', u'fund', u'hospit'] [u'vincent', u'doubl', u'put', u'black', u'cap', u'command'] [u'vline', u'travel', u'urg', u'temporari', u'timet'] [u'wagga', u'eric', u'weissel', u'oval', u'sell'] [u'wast', u'site', u'group', u'revisit', u'pilbara'] [u'watkin', u'hear', u'transport', u'concern'] [u'call', u'destruct', u'dead', u'virus'] [u'recal', u'virus', u'send', u'lab', u'worldwid'] [u'wilson', u'promontori', u'cost', u'million', u'fight'] [u'woman', u'assault', u'greenwith'] [u'work', u'begin', u'parksid', u'garden', u'develop'] [u'youth', u'injur', u'motorbik', u'accid'] [u'kill', u'twin', u'baghdad', u'blast'] [u'year', u'add', u'life', u'sentenc', u'ricin', u'plotter'] [u'paedophil', u'list', u'regist'] [u'acid', u'spray', u'injur', u'thai', u'water', u'festiv'] [u'adler', u'face', u'sentenc', u'collaps'] [u'adler', u'jail', u'dishonesti'] [u'adler', u'jail', u'deal'] [u'afghanistan', u'request', u'long', u'term', u'help'] [u'help', u'student', u'miss', u'costa', u'rica'] [u'albani', u'score', u'roundabout', u'crash', u'report'] [u'archer', u'target', u'morwel'] [u'arson', u'suspect', u'kebab', u'shop', u'blaze'] [u'asbesto', u'plan', u'recip', u'disast', u'lib'] [u'asic', u'welcom', u'adler', u'sentenc'] [u'australia', u'take', u'council', u'court'] [u'autopsi', u'rule', u'natur', u'caus', u'man', u'death'] [u'balranald', u'footi', u'club', u'fight', u'sanction'] [u'bangladesh', u'factori', u'collaps', u'death', u'toll', u'rise'] [u'batter', u'black', u'cap', u'claim', u'redempt'] [u'bega', u'council', u'seek', u'lift', u'rat'] [u'belgium', u'royal', u'announc', u'pregnanc'] [u'bleak', u'outlook', u'river', u'gum'] [u'border', u'secur', u'beef', u'need'] [u'brad', u'newley', u'boomer', u'squad'] [u'break', u'life', u'newman'] [u'brisban', u'protest', u'deport'] [u'britain', u'flag', u'iraq', u'troop', u'exit'] [u'budget', u'prepar', u'start'] [u'bulgaria', u'hold', u'elect'] [u'bunburi', u'roundabout', u'top', u'crash', u'list'] [u'fund', u'rural', u'pest', u'research'] [u'call', u'gallipoli', u'join', u'world', u'heritag', u'list'] [u'call', u'restrict', u'commerci', u'barra', u'catch'] [u'campbel', u'call', u'stanhop', u'graffiti', u'staffer'] [u'caretak', u'jail', u'shoot', u'break', u'youth'] [u'changi', u'lock', u'present'] [u'china', u'japan', u'tension', u'concern', u'downer'] [u'china', u'laud', u'human', u'right', u'record'] [u'church', u'report', u'highlight', u'illawarra', u'woe'] [u'church', u'seek', u'back', u'auditorium'] [u'claim', u'industri', u'land', u'shortag', u'cost', u'job'] [u'colac', u'otway', u'tourism', u'number', u'rise'] [u'commonwealth', u'come', u'walter', u'worker'] [u'communiti', u'farewel', u'chopper', u'crash', u'victim'] [u'corbi', u'trial', u'adjourn'] [u'corn', u'injuri', u'blow', u'port'] [u'costello', u'welcom', u'econom', u'report'] [u'council', u'airport', u'fund', u'look', u'unlik'] [u'council', u'consid', u'seek', u'rate', u'rise'] [u'council', u'consid', u'altern', u'wind', u'farm', u'site'] [u'council', u'wont', u'crop', u'trial'] [u'countri', u'fever', u'catch', u'say', u'campaign', u'organis'] [u'court', u'show', u'footag', u'palm', u'riot'] [u'court', u'tell', u'hang', u'prison', u'fractur', u'skull'] [u'nerang', u'open', u'busi'] [u'project', u'rais', u'titl', u'sale', u'fear'] [u'daredevil', u'behaviour', u'doesnt', u'impress', u'women', u'studi'] [u'davi', u'second', u'petacchi', u'spain'] [u'debat', u'delay', u'bolton', u'nomin'] [u'doctor', u'face', u'extradit', u'bundaberg', u'death'] [u'downer', u'say', u'summit', u'invit'] [u'drift', u'boat', u'lose', u'finder', u'keeper', u'rule'] [u'drought', u'relief', u'reform', u'plan', u'win', u'principl'] [u'economist', u'point', u'posit', u'trend'] [u'nino', u'effect', u'worri', u'farmer'] [u'stand', u'monkey', u'resort', u'recommend'] [u'export', u'abattoir', u'see', u'feral', u'camel', u'control'] [u'fail', u'centrelink', u'project', u'cost', u'auditor'] [u'famili', u'support', u'sector', u'need', u'peopl', u'anglicar'] [u'farmer', u'donat', u'riverina', u'drought', u'victim'] [u'farm', u'group', u'worri', u'grain', u'branch', u'line'] [u'fear', u'oversea', u'train', u'doctor', u'get', u'unfair', u'imag'] [u'feder', u'inquiri', u'tell', u'wild', u'problem'] [u'fine', u'forc', u'petrol', u'compani', u'administr'] [u'fighter', u'alert', u'escap', u'burn'] [u'fire', u'destroy', u'dandenong', u'rang', u'home'] [u'flystrik', u'vaccin', u'horizon'] [u'forecast', u'tip', u'larger', u'wheat', u'crop'] [u'franc', u'approv', u'right'] [u'french', u'rule', u'leav', u'australian', u'nuclear', u'wast'] [u'fund', u'inquiri', u'hear', u'topless', u'claim'] [u'gallop', u'stand', u'firm', u'tax'] [u'gang', u'rape', u'evid', u'chang', u'need', u'brogden'] [u'gaza', u'settler', u'rais', u'prospect', u'resist', u'fail'] [u'geraldton', u'port', u'support', u'grow', u'mine', u'sector'] [u'gibb', u'river', u'user', u'prepar', u'help', u'fund'] [u'gladston', u'lose', u'shopper', u'rockhampton'] [u'gold', u'coast', u'woman', u'head', u'youth', u'forum'] [u'goldfield', u'high', u'school', u'facelift'] [u'govt', u'accus', u'allow', u'gunn', u'break'] [u'govt', u'consid', u'childcar', u'initi', u'singl'] [u'govt', u'rule', u'illawarra', u'escarp', u'heritag'] [u'govt', u'consid', u'child', u'care', u'dilemma'] [u'govt', u'curtain', u'fall', u'hunter', u'job'] [u'govt', u'wont', u'bail', u'troubl', u'club'] [u'greek', u'court', u'okay', u'nake', u'surfer', u'jesus', u'comic'] [u'group', u'highlight', u'tumut', u'cootamundra', u'rail', u'cost'] [u'guantanamo', u'suit', u'detail', u'alleg', u'bash'] [u'gunn', u'fight', u'hard', u'higher', u'woodchip', u'price'] [u'hair', u'brush', u'invent', u'help', u'better', u'wine'] [u'hartson', u'trick', u'put', u'celtic'] [u'health', u'group', u'say', u'oversea', u'train', u'doctor'] [u'health', u'offici', u'play', u'releas', u'danger'] [u'hill', u'estim', u'give', u'indonesia', u'cost'] [u'homeless', u'servic', u'turn', u'away', u'youth'] [u'hop', u'vandal', u'free', u'gracemer', u'skate', u'park'] [u'hospit', u'emerg', u'dept', u'revamp', u'begin'] [u'hous', u'gut'] [u'hous', u'trash', u'probe', u'continu'] [u'howard', u'consid', u'beatti', u'construct', u'offer'] [u'howard', u'reconsid', u'asean', u'treati', u'stanc'] [u'hunger', u'strike', u'educ', u'fee'] [u'hunter', u'urg', u'look', u'trade', u'opportun'] [u'husband', u'miss', u'woman', u'make', u'emot', u'appeal'] [u'hussey', u'hit', u'open', u'centuri', u'durham'] [u'icac', u'inquiri', u'knowl', u'divers', u'medic'] [u'illawarra', u'get', u'mental', u'health', u'boost'] [u'health', u'forc', u'retir'] [u'ill', u'delay', u'corbi', u'trial'] [u'report', u'good', u'labor'] [u'indonesia', u'remain', u'volcano', u'alert'] [u'inflat', u'fear', u'consum'] [u'ingram', u'take', u'nation', u'price', u'hike'] [u'injur', u'bushwalk', u'winch', u'safeti'] [u'israel', u'plan', u'attack', u'iran', u'sharon'] [u'itali', u'happi', u'role', u'friend'] [u'jakarta', u'aceh', u'separatist', u'reach', u'point'] [u'jakarta', u'unveil', u'plan', u'quak', u'tsunami', u'area'] [u'juri', u'consid', u'verdict', u'buttock', u'shoot'] [u'kanimbla', u'head', u'home'] [u'kerr', u'gardin', u'bulldog', u'clash'] [u'knight', u'closer', u'sponsorship', u'deal'] [u'labor', u'back', u'joint', u'indonesian', u'militari', u'exercis'] [u'labour', u'plan', u'increas', u'child', u'care', u'shortag'] [u'admit', u'father', u'illegitim', u'child'] [u'mackay', u'councillor', u'oppos', u'merger', u'talk'] [u'burn', u'power', u'line', u'mishap'] [u'plead', u'guilti', u'bomb', u'spree'] [u'maroochi', u'council', u'suspend', u'pollut', u'expert'] [u'medicar', u'safeti', u'benefit'] [u'melbourn', u'centr', u'grow', u'bodi', u'tissu'] [u'miner', u'get', u'gold', u'treatment', u'plant'] [u'mine', u'compani', u'reject', u'hunter', u'resid', u'offer'] [u'minist', u'quiet', u'bulli', u'victim', u'compo', u'claim'] [u'minist', u'hand', u'tie', u'drug', u'subsidi', u'decis'] [u'minist', u'consid', u'legal', u'croc', u'skin', u'export'] [u'minist', u'experi', u'north', u'coast', u'public', u'transport'] [u'mobil', u'phone', u'recycl', u'win', u'feder', u'support'] [u'money', u'wast', u'tag', u'cattl', u'export'] [u'rais', u'detent', u'centr', u'concern'] [u'gambier', u'parliament', u'sit', u'spark', u'polic'] [u'nadal', u'hammer', u'threat', u'feder', u'safin'] [u'nativ', u'fish', u'migrat', u'pleas', u'basin', u'commiss'] [u'nepal', u'king', u'announc', u'municip', u'poll'] [u'cultur', u'facil', u'offer', u'jail', u'altern'] [u'rule', u'promis', u'evid', u'leav', u'train'] [u'northern', u'youth', u'run', u'award'] [u'word', u'kalgoorli', u'servic', u'talk'] [u'council', u'sniffabl', u'fuel', u'roll'] [u'nuttal', u'pledg', u'bundaberg', u'hospit', u'problem'] [u'oppos', u'japan', u'expand', u'whale', u'plan'] [u'outback', u'death', u'surpris', u'station', u'manag'] [u'passeng', u'consult', u'fast', u'train', u'timet'] [u'pentagon', u'spend', u'hard', u'track', u'watchdog'] [u'plan', u'gold', u'develop', u'halt'] [u'admit', u'break', u'elect', u'promis', u'medicar'] [u'farewel', u'iraq', u'bind', u'troop'] [u'avoid', u'australian', u'stopov'] [u'polic', u'email', u'prioritis', u'staff'] [u'polic', u'focus', u'bendigo', u'search', u'murder'] [u'polic', u'probe', u'earli', u'morn', u'brawl'] [u'premier', u'support', u'central', u'coke', u'project'] [u'pressur', u'mount', u'state', u'contribut', u'drought'] [u'prison', u'give', u'evid', u'wife', u'accus'] [u'prison', u'pursu', u'alleg', u'jail', u'bash', u'civil'] [u'probe', u'find', u'mental', u'health', u'worker', u'abus', u'patient'] [u'probe', u'latest', u'swan', u'river', u'fish', u'kill'] [u'lyon', u'dream'] [u'public', u'servant', u'misus', u'credit', u'card'] [u'push', u'multi', u'storey', u'park', u'orang'] [u'decid', u'coal', u'bottleneck', u'issu'] [u'need', u'time', u'phase', u'chang', u'beatti'] [u'rain', u'leech', u'hamper', u'firefight', u'effort'] [u'ramsay', u'acquir', u'affin'] [u'remain', u'roman', u'dinner', u'unearth', u'england'] [u'report', u'expos', u'neglect', u'infrastructur', u'labor'] [u'research', u'unlock', u'secret', u'perfect', u'rice'] [u'resid', u'highlight', u'contract', u'ignor'] [u'resid', u'voic', u'opinion', u'town', u'heritag'] [u'review', u'find', u'competit', u'polici', u'favour'] [u'rock', u'roll', u'pioneer', u'johnni', u'johnson', u'die'] [u'rodney', u'adler', u'receiv', u'jail', u'term'] [u'sand', u'work', u'palm', u'beach', u'approv'] [u'scientist', u'ideal', u'site', u'moon', u'base'] [u'scotland', u'goug', u'suspens', u'uphold'] [u'king', u'crash', u'victim', u'farewel'] [u'search', u'continu', u'miss', u'nabiac', u'woman'] [u'search', u'find', u'miss', u'canoeist', u'bodi'] [u'self', u'employ', u'cancer', u'victim', u'seek', u'worker', u'comp'] [u'senat', u'probe', u'go', u'west'] [u'predat', u'jail', u'year'] [u'societi', u'sell', u'surplus', u'asset'] [u'sick', u'corbi', u'trial', u'adjourn'] [u'singl', u'parent', u'famili', u'rise'] [u'skill', u'migrant', u'quota', u'increas'] [u'slime', u'mould', u'bug', u'name', u'statesmen'] [u'sonni', u'confirm', u'dog', u'deal'] [u'sonni', u'confirm', u'dog', u'deal'] [u'southport', u'spit', u'vision', u'outlin'] [u'space', u'shuttl', u'fuel', u'tank', u'test'] [u'stanhop', u'reject', u'graffiti', u'staffer', u'critic'] [u'state', u'spell', u'detail', u'carbon', u'trade'] [u'stosur', u'charleston'] [u'studi', u'examin', u'work', u'impact', u'wellb'] [u'suicid', u'law', u'impact', u'doctor', u'patient'] [u'suspect', u'base', u'jumper', u'critic', u'injur'] [u'sydney', u'convict', u'tripl', u'murder'] [u'resist', u'wont', u'cost', u'state', u'costello'] [u'testimoni', u'mother', u'jackson', u'accus', u'doubt'] [u'thiev', u'swipe', u'gear', u'hotel'] [u'timber', u'firm', u'maintain', u'opposit', u'redund'] [u'tougher', u'screen', u'oversea', u'doctor', u'seek'] [u'tree', u'save', u'tourist', u'drive'] [u'turinui', u'sign', u'tah', u'deal'] [u'approv', u'treati', u'nuclear', u'terror'] [u'associ', u'slam', u'deport', u'brisban'] [u'welcom', u'clinton', u'tsunami', u'appoint'] [u'senat', u'confirm', u'nasa', u'chief'] [u'studi', u'defin', u'prematur', u'ejacul'] [u'train', u'buri', u'china'] [u'verif', u'servic', u'ident', u'fraud'] [u'run', u'destroy', u'contract', u'govt'] [u'desalin', u'plant', u'budget'] [u'westpac', u'worker', u'strike'] [u'wide', u'spread', u'share', u'slump', u'drag', u'market', u'lower'] [u'wilder', u'societi', u'take', u'disput', u'minist'] [u'wind', u'farm', u'construct', u'deem', u'unsaf'] [u'wine', u'stock', u'struggl'] [u'withdraw', u'plan', u'creat', u'brink'] [u'wmcs', u'nickel', u'product', u'track'] [u'work', u'see', u'lessen', u'age', u'popul', u'impact'] [u'bank', u'robber', u'tackl', u'brisban'] [u'young', u'carer', u'understand'] [u'youth', u'manslaught', u'sentenc', u'question'] [u'yushchenko', u'sign', u'iraq', u'troop', u'withdraw', u'order'] [u'reward', u'plan', u'help', u'free', u'corbi'] [u'abbott', u'know', u'safeti', u'blow', u'elect'] [u'abbott', u'resign', u'medicar', u'backflip'] [u'adelaid', u'lawyer', u'avoid', u'jail'] [u'scrap', u'reward', u'mediocr'] [u'afridi', u'blitz', u'sink', u'india'] [u'alic', u'woman', u'studi', u'help', u'indigen'] [u'ord', u'plung'] [u'ambros', u'lead', u'qualifi', u'zealand'] [u'anim', u'cruelti', u'paper', u'moot', u'random', u'inspect'] [u'annan', u'finger', u'food', u'scandal'] [u'art', u'group', u'speak', u'auditorium', u'plan'] [u'aust', u'lodg', u'protest', u'fiji', u'trial'] [u'australia', u'increas', u'sudan'] [u'australia', u'lonard', u'light', u'heritag'] [u'baxter', u'detaine', u'take', u'overdos'] [u'beach', u'reopen', u'contamin', u'fear'] [u'bega', u'council', u'child', u'care', u'fee', u'rise', u'slight'] [u'bendigo', u'host', u'major', u'chines', u'studi', u'confer'] [u'top', u'world', u'corpor', u'govern', u'index'] [u'bomb', u'attack', u'target', u'iraqi', u'forc'] [u'braveheart', u'air', u'paedophil', u'studi', u'fear'] [u'britain', u'reject', u'annan', u'food', u'claim'] [u'broom', u'continu', u'tripl', u'push'] [u'buderus', u'return', u'knight'] [u'cabinet', u'consid', u'welfar', u'chang'] [u'howard', u'explain', u'nativ', u'titl', u'agenda'] [u'boost', u'water', u'flow', u'ail', u'river', u'murray'] [u'cargo', u'ship', u'captain', u'sack', u'rock', u'mishap'] [u'cash', u'reward', u'encourag', u'young', u'peopl', u'drive', u'safe'] [u'charg', u'follow', u'world', u'biggest', u'ecstasi', u'haul'] [u'chariti', u'warn', u'govt', u'welfar', u'chang'] [u'chelsea', u'player', u'award', u'nomin'] [u'children', u'enjoy', u'extrem', u'solut', u'obes'] [u'chirac', u'urg', u'vote', u'referendum'] [u'citrus', u'grower', u'extend', u'work', u'holiday', u'visa'] [u'citrus', u'grower', u'push', u'domest', u'market'] [u'colac', u'otway', u'shire', u'hold', u'connect', u'talk'] [u'colombia', u'pursu', u'troop', u'cocain', u'smuggl', u'case'] [u'communiti', u'court', u'aim', u'reoffend', u'rat'] [u'communiti', u'group', u'expect', u'attend', u'aid', u'council'] [u'corridor', u'sewerag', u'line', u'damag', u'fix', u'quick'] [u'cotteslo', u'mayor', u'oppos', u'hotel', u'redevelop'] [u'councillor', u'say', u'japanes', u'tourist', u'warn', u'accept'] [u'council', u'renew', u'effort', u'remov', u'illeg', u'marina'] [u'council', u'fund', u'revamp', u'monument'] [u'council', u'work', u'youth', u'graffiti', u'plan'] [u'court', u'allow', u'review', u'murder', u'sentenc'] [u'cpsu', u'urg', u'clearer', u'credit', u'card', u'guidelin'] [u'crane', u'driver', u'brave', u'multiplex', u'extortionist'] [u'crew', u'head', u'space', u'station'] [u'cuba', u'seek', u'probe', u'guantanamo'] [u'democrat', u'urg', u'icac', u'investig', u'redfern', u'centr'] [u'dengu', u'fever', u'case', u'report', u'emerald'] [u'develop', u'boost', u'cooma', u'shop'] [u'dog', u'rooster', u'kick', u'start', u'campaign'] [u'dougla', u'scott', u'death', u'custodi', u'autopsi', u'clash'] [u'dowi', u'play', u'talk', u'ahead', u'releg', u'clash'] [u'drug', u'drive', u'overtak', u'drink', u'drive', u'victoria'] [u'dubbo', u'council', u'staff', u'return', u'chamber'] [u'earthquak', u'rattl', u'sumatra'] [u'ecstasi', u'seizur', u'disrupt', u'intern', u'ring'] [u'emerald', u'host', u'mine', u'expo'] [u'england', u'look', u'moor', u'build', u'marsh'] [u'england', u'struggl', u'ash', u'seri', u'heali'] [u'errol', u'flynn', u'reserv', u'win', u'duel'] [u'famili', u'disput', u'hear', u'local'] [u'famili', u'plea', u'businessman', u'killer'] [u'farmer', u'remind', u'drought'] [u'fear', u'council', u'lose', u'plan', u'approv'] [u'govt', u'accus', u'buck', u'pass', u'croc', u'hunt'] [u'filipino', u'soldier', u'kill', u'haiti'] [u'kill', u'pari', u'hotel'] [u'vaccin', u'shortag', u'forc', u'prioritis'] [u'food', u'wast', u'cost', u'briton', u'earth'] [u'childcar', u'centr', u'owner', u'jail', u'child'] [u'sydney', u'water', u'polic', u'site', u'public', u'hand'] [u'friend', u'fallout', u'complic', u'simpl', u'life'] [u'fruit', u'grower', u'visa', u'chang'] [u'fruit', u'grower', u'reap', u'benefit', u'visa', u'chang'] [u'fuel', u'line', u'blame', u'plane', u'emerg'] [u'gigg', u'rule', u'semi', u'final'] [u'governor', u'parti', u'say', u'beatti'] [u'govt', u'action', u'medicar', u'appal', u'labor'] [u'govt', u'attack', u'school', u'move'] [u'govt', u'confid', u'corbi', u'care', u'adequ'] [u'govt', u'hand', u'rodeo'] [u'govt', u'rich', u'racist', u'yanner', u'say'] [u'govt', u'urg', u'tax', u'help', u'build', u'industri'] [u'govt', u'urg', u'distribut', u'revenu'] [u'govt', u'urg', u'releas', u'sustain', u'grant'] [u'govt', u'urg', u'rethink', u'escarp', u'protect'] [u'grazier', u'phone', u'woe', u'amaz', u'senat'] [u'green', u'recherch', u'applic', u'reject'] [u'hadden', u'ask', u'apologis', u'claim'] [u'half', u'back', u'see', u'entertain', u'game'] [u'handl', u'consul', u'threat', u'pleas', u'indonesia'] [u'hast', u'japan'] [u'hogan', u'forward', u'replac', u'border'] [u'home', u'grow', u'race', u'test'] [u'hospit', u'medic', u'staff', u'secur', u'rise'] [u'hull', u'tour', u'gippsland', u'wind', u'farm', u'sit'] [u'hussey', u'turn', u'doubl', u'durham', u'domin'] [u'icac', u'clear', u'sydney', u'businessman'] [u'india', u'plan', u'clone', u'cheetah'] [u'indonesia', u'issu', u'plan', u'quak', u'tsunami', u'area'] [u'indonesia', u'keep', u'watch', u'volcano'] [u'infight', u'threaten', u'berlusconi', u'coalit'] [u'inmat', u'murder', u'trigger', u'second', u'iraq', u'jail', u'riot'] [u'inquiri', u'seek', u'curtain', u'compani', u'woe'] [u'israel', u'clear', u'offic', u'cameraman', u'kill'] [u'italian', u'footbal', u'seek', u'redempt'] [u'jackson', u'sell', u'beatl', u'catalog'] [u'jail', u'coup', u'free', u'serv', u'day'] [u'jam', u'hardi', u'fund', u'includ', u'indigen', u'communiti'] [u'japan', u'see', u'need', u'australian'] [u'jetstar', u'expand', u'gold', u'coast', u'newcastl', u'servic'] [u'jone', u'pittman', u'meet'] [u'kelleh', u'lead', u'chief', u'victori'] [u'klien', u'confirm', u'bull', u'driver'] [u'koala', u'care', u'centr', u'train', u'volunt'] [u'labor', u'doesnt', u'understand', u'border', u'secur', u'macdonald'] [u'labor', u'welcom', u'summit', u'backflip'] [u'late', u'gippsland', u'train', u'spark', u'anger'] [u'societi', u'reject', u'chang', u'rape', u'law'] [u'leighton', u'pay', u'bonus'] [u'liber', u'unhappi', u'gambier', u'parliamentari'] [u'listen', u'farmer', u'resourc', u'manag', u'champ'] [u'cost', u'flight', u'boost', u'hunter', u'tourism'] [u'mallah', u'learn', u'lesson', u'kill', u'threat'] [u'get', u'polic', u'prais', u'stop', u'underag', u'driver'] [u'shoot', u'answer', u'door'] [u'maoist', u'rebel', u'kill', u'nepal', u'clash'] [u'mayor', u'say', u'highway', u'upgrad', u'improv', u'safeti'] [u'medicar', u'chang', u'predict', u'pressur', u'public'] [u'medicar', u'decis', u'spark', u'health', u'fund'] [u'memori', u'servic', u'honour', u'dead', u'injur'] [u'memori', u'honour', u'king', u'dead'] [u'migaloo', u'japanes', u'dinner', u'plat'] [u'million', u'wast', u'region', u'grant', u'labor', u'say'] [u'minist', u'meet', u'discuss', u'skill', u'shortag'] [u'miss', u'woman', u'bodi', u'nation', u'park'] [u'molonglo', u'valley', u'develop', u'edg', u'closer'] [u'monaco', u'princ', u'rainier', u'farewel'] [u'mother', u'detail', u'fear', u'intimid', u'jackson', u'aid'] [u'fear', u'continu', u'rise', u'fuel', u'cost'] [u'nation', u'hope', u'rail', u'line', u'reopen'] [u'nation', u'promis', u'introduc', u'flash', u'light'] [u'nat', u'pressur', u'cass', u'chaffey', u'aspir'] [u'bore', u'restrict', u'expect', u'affect'] [u'lead', u'year', u'search', u'miss', u'teenag'] [u'unhappi', u'drought', u'reform', u'talk', u'outcom'] [u'compo', u'injur', u'worker'] [u'fixtur', u'redraw', u'gsfl', u'season'] [u'norfolk', u'tourism'] [u'mayor', u'urg', u'releas', u'darl', u'water'] [u'cane', u'toad', u'west'] [u'need', u'cash', u'roll', u'sniffabl', u'fuel'] [u'osullivan', u'plan', u'repres', u'australia'] [u'oyster', u'grower', u'parasit', u'watch'] [u'paralys', u'panda', u'undergo', u'life', u'save', u'oper'] [u'paramed', u'prais', u'gather'] [u'parent', u'clear', u'child', u'methadon', u'death'] [u'pari', u'hotel', u'leav', u'dead'] [u'parti', u'quit', u'berlusconi', u'cabinet'] [u'patient', u'abus', u'find', u'iceberg'] [u'patient', u'safeti', u'offic', u'appoint', u'health'] [u'patient', u'attack', u'govt', u'bundaberg', u'doctor'] [u'pie', u'hope', u'kick', u'roo'] [u'apologis', u'medicar', u'break', u'promis'] [u'polic', u'prais', u'vigilant', u'shooter', u'jail'] [u'polic', u'seiz', u'massiv', u'ecstasi', u'haul'] [u'prime', u'infrastructur', u'await', u'port', u'decis'] [u'probe', u'begin', u'kimberley', u'power', u'failur'] [u'prospect', u'rain', u'improv'] [u'qasim', u'like', u'miss', u'visa'] [u'racist', u'jibe', u'land', u'defend', u'jail'] [u'rama', u'season', u'end', u'train', u'mishap'] [u'region', u'offer', u'assur', u'foreign', u'train'] [u'rental', u'crisi', u'loom', u'properti', u'group'] [u'research', u'locat', u'heal', u'gene'] [u'retir', u'villag', u'push', u'dementia', u'wing'] [u'right', u'watchdog', u'condemn', u'transfer', u'terror'] [u'rijkaard', u'warn', u'barca', u'confid'] [u'rooster', u'extract', u'reveng', u'bulldog'] [u'rooster', u'look', u'amend', u'grand', u'final', u'replay'] [u'royal', u'coupl', u'make', u'offici', u'appear'] [u'doubl', u'scope', u'pacif', u'highway', u'studi'] [u'scientif', u'confer', u'fall', u'gibberish', u'prank'] [u'king', u'dead', u'epitomis', u'australian', u'howard'] [u'king', u'dead', u'honour'] [u'second', u'bundaberg', u'hospit', u'administr', u'stand'] [u'shuttl', u'discoveri', u'pass', u'fuel', u'test'] [u'sikh', u'repres', u'anzac', u'celebr'] [u'slow', u'economi', u'spook', u'investor'] [u'sport', u'stun', u'newcastl', u'reach', u'uefa', u'semi'] [u'stanhop', u'refus', u'sack', u'staffer', u'graffiti'] [u'state', u'consid', u'bolster', u'commerci', u'camel'] [u'statist', u'overhaul', u'fudg', u'hospit', u'wait', u'list'] [u'strand', u'yachti', u'rescu', u'bunburi'] [u'studi', u'find', u'snowi', u'mountain', u'attract', u'earli', u'bird'] [u'suspect', u'hospit', u'guard', u'hold'] [u'tare', u'council', u'seek', u'lift', u'rat'] [u'firm', u'run', u'redevelop', u'launceston'] [u'temora', u'farewel', u'deputi', u'mayor'] [u'test', u'continu', u'coff', u'creek'] [u'charg', u'food', u'scandal'] [u'time', u'run', u'veget', u'fund'] [u'charg', u'alleg', u'drug', u'mule', u'plot'] [u'unbeaten', u'roo', u'magpi'] [u'bodi', u'slam', u'israel', u'settlement', u'violenc'] [u'union', u'come', u'defenc', u'sack', u'graincorp', u'worker'] [u'union', u'critic', u'bega', u'hospit', u'condit'] [u'union', u'influenc', u'hamper', u'train', u'reform', u'govt'] [u'union', u'unimpress', u'walter'] [u'video', u'game', u'encourag', u'kid', u'fee', u'kill'] [u'presid', u'turn', u'aust', u'women'] [u'vanunu', u'turn', u'norway', u'asylum'] [u'waist', u'size', u'indic', u'diabet', u'risk'] [u'wait', u'list', u'inform', u'simplifi'] [u'cane', u'toad'] [u'warm', u'recept', u'deep', u'freez'] [u'warner', u'music', u'close', u'deal'] [u'wast', u'manag', u'group', u'move', u'target'] [u'watchdog', u'say', u'action', u'need', u'secur'] [u'water', u'restrict', u'tighten'] [u'webb', u'joint', u'leader', u'vega'] [u'welfar', u'group', u'call', u'research', u'gambl'] [u'western', u'sydney', u'connect', u'sewerag'] [u'wheat', u'board', u'deni', u'iraq', u'ban', u'import'] [u'whistleblow', u'law', u'deter', u'abus', u'complain'] [u'widow', u'tell', u'court', u'scott', u'injuri'] [u'william', u'join', u'adler', u'jail'] [u'william', u'block', u'lie'] [u'william', u'sentenc', u'jail'] [u'william', u'appeal', u'sentenc'] [u'wind', u'farm', u'backer', u'interest', u'sit'] [u'wolfensohn', u'back', u'wolfowitz', u'world', u'bank', u'successor'] [u'xstrata', u'ramp', u'copper', u'product'] [u'take', u'butt', u'approach', u'smoke', u'chimp'] [u'abbott', u'sorri', u'break', u'promis'] [u'adelaid', u'airport', u'theft', u'prompt', u'nation', u'alert'] [u'administr', u'bungl', u'free', u'accid', u'accus'] [u'anti', u'japan', u'protest', u'flare', u'china'] [u'artist', u'invit', u'public', u'attend', u'child', u'birth'] [u'aust', u'invent', u'clean', u'nuclear', u'wast', u'site'] [u'barro', u'set', u'pace', u'portug'] [u'beatti', u'expect', u'lawsuit', u'foreign', u'doctor'] [u'bhutto', u'husband', u'detain', u'lahor'] [u'lade', u'rice', u'say'] [u'blair', u'announc', u'rover', u'packag'] [u'blue', u'overrun', u'shark', u'super'] [u'braidwood', u'resid', u'discuss', u'heritag', u'list'] [u'broadband', u'roll', u'give', u'remot', u'town', u'speed', u'boost'] [u'brumbi', u'readi', u'fire', u'waratah', u'mortlock'] [u'bull', u'prolong', u'red', u'miseri'] [u'cardin', u'hold', u'meet', u'elect'] [u'seiz', u'drive', u'kill'] [u'cat', u'thrash', u'hapless', u'bomber'] [u'clark', u'blow', u'heritag', u'field', u'away', u'windi'] [u'cooper', u'predict', u'strong', u'show', u'aerial', u'ski'] [u'costello', u'applaud', u'stamp', u'duti'] [u'council', u'examin', u'impact', u'age', u'popul'] [u'court', u'decis', u'disappoint', u'kill', u'cyclist', u'famili'] [u'cowboy', u'good', u'tiger'] [u'cowboy', u'good', u'tiger', u'townsvill'] [u'davenport', u'injuri', u'put', u'henin', u'hardenn', u'semi'] [u'dead', u'pari', u'hotel', u'accid'] [u'dead', u'virus', u'sampl', u'unaccount'] [u'defenc', u'personnel', u'return', u'nia'] [u'disabl', u'leav', u'profession', u'care', u'parent'] [u'downer', u'urg', u'caution', u'corbi', u'trial', u'alleg'] [u'drug', u'centr', u'warn', u'ecstasi', u'effect'] [u'duma', u'approv', u'parliamentari', u'elect', u'chang'] [u'eagl', u'maintain', u'unbeaten'] [u'ecuadorean', u'leader', u'fire', u'judg', u'declar', u'emerg'] [u'eel', u'redeem', u'melbourn'] [u'egg', u'insid', u'dinosaur', u'bodi'] [u'environ', u'group', u'launch', u'nuclear', u'tour'] [u'feder', u'crash', u'mont', u'carlo'] [u'proceed', u'rule', u'despit', u'team'] [u'fifth', u'south', u'african', u'super', u'team', u'name'] [u'foley', u'deni', u'polic', u'resourc'] [u'foreign', u'doctor', u'patient', u'seek', u'compens'] [u'forestri', u'battl', u'continu', u'recherch'] [u'boyfriend', u'jail', u'woman', u'murder'] [u'fund', u'shortfal', u'threaten', u'freud', u'museum'] [u'ganguli', u'leav', u'final', u'pakistan', u'match'] [u'geologist', u'mark', u'time', u'flinder', u'rang'] [u'green', u'tunnel', u'assess', u'lack'] [u'green', u'urg', u'focus', u'water', u'conserv'] [u'haiti', u'clash', u'kill', u'wind'] [u'hawk', u'hand', u'lion', u'footbal', u'lesson'] [u'health', u'servic', u'press', u'school', u'sound', u'system'] [u'indonesia', u'deni', u'corbi', u'briberi', u'claim'] [u'indonesia', u'volcano', u'subsid', u'despit', u'java', u'quak'] [u'inop', u'law', u'purg', u'downsiz'] [u'inter', u'stadium', u'fine'] [u'iraqi', u'gunmen', u'hold', u'shiit', u'hostag'] [u'jakarta', u'aceh', u'rebel', u'agre', u'peac', u'talk'] [u'japan', u'warn', u'expat', u'china', u'protest'] [u'joey', u'world', u'championship'] [u'kanimbla', u'personnel', u'welcom', u'home'] [u'increas', u'awar', u'suicid', u'warn', u'sign'] [u'labor', u'predict', u'medicar', u'chang'] [u'land', u'group', u'propos', u'water', u'drought', u'definit'] [u'learner', u'pass', u'drive', u'test', u'attempt'] [u'lebanon', u'choos', u'syrian', u'businessman'] [u'liber', u'death', u'case'] [u'lifestyl', u'studi', u'conduct', u'year', u'check'] [u'charg', u'assault', u'road', u'accid'] [u'maradona', u'weigh', u'racism', u'furor'] [u'rover', u'collaps', u'worker', u'sack'] [u'million', u'world', u'ticket', u'order', u'weed'] [u'mine', u'challeng', u'dust', u'festiv', u'draw', u'thousand'] [u'bodi', u'pull', u'bangladesh', u'factori', u'rubbl'] [u'mother', u'jackson', u'accus', u'deni', u'civil', u'suit', u'plan'] [u'murphi', u'win', u'supercar', u'race'] [u'firefight', u'bushfir', u'victim', u'group'] [u'liber', u'appoint', u'director', u'presid'] [u'tribeca', u'launch', u'film', u'festiv', u'splash'] [u'injur', u'train', u'collis'] [u'pakistan', u'presid', u'begin', u'india', u'visit', u'prayer'] [u'panther', u'strong', u'good', u'south'] [u'parent', u'costa', u'rica', u'search'] [u'polic', u'fear', u'miss', u'korean', u'tourist'] [u'polic', u'paedophil', u'tsunami', u'victim'] [u'polic', u'question', u'convict', u'killer', u'miss', u'teen'] [u'port', u'blue', u'draw', u'adelaid'] [u'professor', u'criticis', u'carniv', u'incarcer'] [u'radio', u'licenc', u'grab'] [u'rann', u'govt', u'stamp', u'duti'] [u'recherch', u'heritag', u'valu', u'safe', u'govt'] [u'resid', u'fight', u'blue', u'mountain', u'land'] [u'rey', u'hand', u'challeng'] [u'rooster', u'extract', u'reveng', u'bulldog'] [u'abus', u'task', u'forc', u'start', u'tour'] [u'sharehold', u'benefit', u'case', u'expert', u'say'] [u'shark', u'take', u'bite', u'surfer', u'board'] [u'stock', u'market', u'fundament', u'strong', u'costello'] [u'stock', u'market', u'strong', u'sell'] [u'survivor', u'mark', u'bergen', u'belsen', u'camp', u'liber'] [u'sydney', u'shoot', u'link'] [u'incom', u'revamp'] [u'teen', u'explor', u'show'] [u'teen', u'flee', u'darwin', u'stab', u'spree'] [u'telstra', u'award', u'contract', u'local', u'compani'] [u'thousand', u'chines', u'converg', u'japan', u'embassi'] [u'tourism', u'bodi', u'play', u'japanes', u'warn'] [u'train', u'offer', u'good', u'gallagh', u'say'] [u'tug', u'free', u'strand', u'contain', u'ship'] [u'kill', u'sydney', u'drive', u'shoot'] [u'kill', u'sydney', u'shoot'] [u'lion', u'debut', u'hawk'] [u'unbeaten', u'roo', u'magpi'] [u'union', u'sceptic', u'unfair', u'dismiss', u'law', u'critic'] [u'tourist', u'warn', u'rogu', u'rwandan', u'eleph'] [u'vella', u'make', u'lower', u'grade', u'return'] [u'wall', u'street', u'drop', u'month'] [u'press', u'stamp', u'duti'] [u'waratah', u'break', u'canberra', u'drought'] [u'ward', u'lead', u'webb', u'vega'] [u'whistleblow', u'call', u'mental', u'health', u'royal'] [u'wilko', u'stag', u'success', u'club', u'comeback'] [u'abbott', u'flirt', u'resign'] [u'abbott', u'act', u'resign', u'instinct'] [u'airman', u'succeed', u'cosgrov', u'defenc', u'chief'] [u'prais', u'foreign', u'doctor', u'check'] [u'amnesti', u'urg', u'singapor', u'halt', u'execut'] [u'angola', u'scout', u'join', u'fight', u'dead', u'virus'] [u'quak', u'hit', u'indonesia', u'nia'] [u'anti', u'drug', u'organ', u'meltdown', u'panic', u'attack'] [u'australia', u'women', u'triathlon', u'trifecta'] [u'bad', u'burn', u'transfer', u'adelaid'] [u'bangladesh', u'condemn', u'death', u'kill'] [u'barro', u'pole', u'portug'] [u'bateman', u'emerg', u'ward', u'work', u'get', u'green', u'light'] [u'beatti', u'urg', u'prosecut', u'scandal', u'doctor'] [u'beazley', u'support', u'carr', u'healthcar', u'reform'] [u'berlusconi', u'shrug', u'cabinet', u'crisi'] [u'break', u'wipe', u'gregan'] [u'bronco', u'dous', u'dragon'] [u'cambodia', u'mark', u'grim', u'anniversari'] [u'campaign', u'slam', u'inact', u'debt', u'relief'] [u'casanova', u'star', u'tennant', u'doctor'] [u'celtic', u'fight', u'leav', u'don', u'dump'] [u'check', u'verifi', u'foreign', u'doctor', u'qualif'] [u'china', u'reject', u'japan', u'request', u'apolog'] [u'claim', u'toxic', u'chemic', u'threaten', u'parramatta', u'river'] [u'pledg', u'tougher', u'law', u'rape', u'domest', u'violenc'] [u'confus', u'surround', u'shiit', u'hostag', u'rescu'] [u'costello', u'thank', u'stamp', u'duti', u'opposit'] [u'crow', u'triumph', u'swan'] [u'cruis', u'ship', u'open', u'diseas', u'outbreak'] [u'crusad', u'buri', u'stormer', u'seven', u'avalanch'] [u'cubbi', u'reap', u'cotton', u'harvest'] [u'surgeri', u'receiv', u'boost'] [u'educ', u'studi', u'complet', u'auditor', u'general'] [u'electr', u'tower', u'modifi', u'eagl', u'death'] [u'endeavour', u'arriv', u'run', u'aground'] [u'film', u'honour', u'see', u'human', u'right'] [u'injur', u'brawl'] [u'foreign', u'doctor', u'rule', u'say'] [u'free', u'anzac', u'travel', u'veteran'] [u'gallop', u'back', u'cancel', u'paedophil', u'passport'] [u'student', u'famili', u'bulli', u'report', u'urg'] [u'govern', u'minimum', u'wage', u'andrew'] [u'grape', u'glut', u'sour', u'harvest'] [u'green', u'group', u'warn', u'mass', u'sack'] [u'gunner', u'cruis', u'final'] [u'health', u'minist', u'reveal', u'consid', u'resign'] [u'henin', u'hardenn', u'face', u'dementieva', u'final'] [u'wilko', u'make', u'success', u'return'] [u'hous', u'audit', u'wait', u'list'] [u'howard', u'farewel', u'iraq', u'bind', u'troop', u'announc'] [u'independ', u'call', u'contain', u'recycl', u'law'] [u'indian', u'pakistani', u'leader', u'build', u'bridg'] [u'india', u'pakistan', u'agre', u'bolster', u'trade', u'tie'] [u'inquiri', u'launch', u'rover', u'collaps'] [u'iraq', u'bind', u'troop', u'farewel', u'darwin'] [u'itali', u'govt', u'cabinet', u'crisi', u'continu'] [u'ivori', u'coast', u'foe', u'agre', u'pull', u'heavi', u'weapon'] [u'jackson', u'lawyer', u'maintain', u'attack', u'accus'] [u'japanes', u'protest', u'set', u'alight'] [u'john', u'week'] [u'labor', u'review', u'petrol', u'price', u'polici'] [u'light', u'plane', u'flip', u'land', u'mishap'] [u'lonard', u'verg'] [u'mammogram', u'delay', u'entir', u'unaccept'] [u'charg', u'aberfoyl', u'park', u'stab'] [u'man', u'raider', u'unbeaten'] [u'petrol', u'theft'] [u'mcgee', u'case', u'prompt', u'tougher', u'accid'] [u'minist', u'confid', u'reform', u'succeed'] [u'minist', u'pledg', u'reform', u'mental', u'health', u'care'] [u'fli', u'china', u'anti', u'japan', u'storm'] [u'murphi', u'claim', u'clean', u'sweep'] [u'resid', u'dock', u'space', u'station'] [u'kill', u'iraq', u'attack'] [u'norwich', u'southampton', u'toss', u'away', u'bolton', u'boost'] [u'back', u'socceroo', u'asian'] [u'pakistan', u'crush', u'india', u'seri', u'victori'] [u'pari', u'hotel', u'death', u'toll', u'rise'] [u'farewel', u'iraq', u'bind', u'troop'] [u'polic', u'hunt', u'suspect', u'sydney', u'doubl', u'murder'] [u'pope', u'ring', u'seal', u'destroy'] [u'price', u'start', u'kangaroo'] [u'qanta', u'silent', u'claim', u'secur', u'laps'] [u'recherch', u'heritag', u'list', u'govt'] [u'rocca', u'join', u'buckley', u'long', u'term', u'casualti', u'list'] [u'rudolph', u'doubt', u'test'] [u'rural', u'council', u'ask', u'adopt', u'standard', u'address'] [u'saint', u'track', u'demon'] [u'sampdoria', u'fourth', u'controversi'] [u'seiz', u'paedophil', u'passport', u'advoc'] [u'sevilla', u'miss', u'chanc', u'defeat', u'osasuna'] [u'skill', u'migrant', u'increas', u'speed', u'construct'] [u'smart', u'craft', u'space', u'junk'] [u'sydney', u'nab', u'york'] [u'sydney', u'moon', u'secur', u'york'] [u'sydney', u'shark', u'attack', u'prompt', u'call', u'aerial'] [u'call', u'ignor', u'poki', u'stanc', u'gallop'] [u'teen', u'kill', u'accid'] [u'teen', u'kill'] [u'tenaci', u'nadal', u'set', u'coria', u'final'] [u'thousand', u'hold', u'anti', u'israel', u'protest', u'indonesia'] [u'troop', u'kill', u'ramadi'] [u'tiger', u'thrash', u'docker'] [u'ward', u'claim', u'fourth', u'titl', u'vega'] [u'welcom', u'cancel', u'endeavour', u'run', u'aground'] [u'whistleblow', u'break', u'silenc', u'patel', u'case'] [u'woman', u'dead', u'injur', u'stab'] [u'wreckag', u'miss', u'papua', u'plane', u'spot'] [u'wright', u'departur', u'india', u'coach'] [u'yacht', u'race', u'commemor', u'tiwi', u'reconcili'] [u'youthrock', u'search', u'thing'] [u'youth', u'stab', u'adelaid', u'parti'] [u'dead', u'clash', u'colombian', u'militari'] [u'listen', u'offer', u'billet'] [u'environ', u'advis', u'resign'] [u'charg', u'player'] [u'continu', u'bali', u'drug', u'investig'] [u'airstrip', u'work', u'creat', u'tourism', u'turmoil'] [u'albani', u'resid', u'wait'] [u'algal', u'bloom', u'rais', u'shellfish', u'poison', u'fear'] [u'antarct', u'monitor', u'camera', u'instal', u'boat'] [u'arm', u'stand', u'end', u'coonabarabran'] [u'aust', u'indonesia', u'strengthen', u'trade', u'tie'] [u'australia', u'china', u'sign', u'memorandum'] [u'australian', u'survivor', u'sumatra', u'earthquak'] [u'australian', u'troop', u'arriv', u'kuwait'] [u'australian', u'wheat', u'arriv', u'iraq'] [u'australia', u'oppos', u'wall', u'gallipoli'] [u'aust', u'scientist', u'develop', u'blood', u'thin', u'drug'] [u'aust', u'share', u'beat'] [u'author', u'lift', u'leagu'] [u'bacon', u'remain', u'sick', u'leav'] [u'weather', u'caus', u'spate', u'road', u'accid'] [u'bayer', u'plan', u'open', u'comment'] [u'retain', u'trade', u'work', u'forc'] [u'beatti', u'address', u'gold', u'coast', u'travel'] [u'bertrand', u'destroy', u'underag', u'driver', u'court'] [u'blaze', u'burn', u'hectar', u'bushland'] [u'bloodi', u'brawl', u'result', u'injuri'] [u'blueprint', u'determin', u'futur', u'direct', u'shire'] [u'boati', u'nation', u'safeti', u'standard'] [u'bomber', u'deserv', u'place', u'ladder', u'sheedi'] [u'bruce', u'face', u'lengthi', u'stint', u'sidelin'] [u'busi', u'chamber', u'meet', u'council', u'plan'] [u'harbour', u'festiv', u'donat'] [u'moura', u'airstrip', u'upgrad'] [u'capel', u'shire', u'highlight', u'grow', u'pressur'] [u'cardin', u'gather', u'ballot'] [u'cardin', u'prepar', u'elect', u'pope'] [u'investig'] [u'china', u'wrong', u'australia', u'role', u'asia', u'downer'] [u'chines', u'team', u'begin', u'everest', u'like', u'proport'] [u'chocol', u'spell', u'sweet', u'success'] [u'club', u'face', u'expuls', u'melbourn', u'soccer', u'riot'] [u'coff', u'visitor', u'number', u'rise'] [u'committe', u'seek', u'input', u'propos', u'right'] [u'communiti', u'give', u'generous', u'chariti'] [u'concern', u'north', u'korea', u'shut', u'nuclear', u'plant'] [u'concern', u'remain', u'waterfront', u'develop'] [u'councillor', u'discuss', u'payment', u'anomali'] [u'council', u'criticis', u'sydney', u'airport', u'expans', u'plan'] [u'council', u'help', u'health', u'centr'] [u'countri', u'doctor', u'urg', u'region', u'drive'] [u'crime', u'stat', u'contain', u'mix', u'result'] [u'crow', u'treat', u'bulldog', u'respect'] [u'speak', u'breast', u'check'] [u'dairi', u'farmer', u'cut', u'job'] [u'darl', u'down', u'water', u'woe', u'mean', u'tougher', u'restrict'] [u'darwin', u'farewel', u'general', u'cosgrov'] [u'defenc', u'money', u'spend', u'wise', u'beazley'] [u'detaine', u'seek', u'review', u'iran', u'riot'] [u'downer', u'open', u'anti', u'terror', u'forum'] [u'driver', u'warn', u'outback', u'condit'] [u'duck', u'shoot', u'protest', u'dump', u'doorstep'] [u'dump', u'champion', u'acknowledg', u'public', u'worri'] [u'ecuadoran', u'parliament', u'dismiss', u'suprem', u'court'] [u'elect', u'surgeri', u'condit'] [u'emerg', u'incid', u'polic', u'firefight'] [u'ergon', u'energi', u'want', u'expand'] [u'exclud', u'small', u'busi', u'super', u'law'] [u'land', u'council', u'coordin', u'settl', u'unfair'] [u'farmer', u'mind', u'effect', u'recent'] [u'father', u'tell', u'polic', u'inact', u'generat'] [u'feder', u'govt', u'urg', u'recherch', u'land'] [u'fiji', u'consid', u'australian', u'trial', u'protest'] [u'damag', u'adelaid', u'unit'] [u'fireman', u'honour', u'year', u'servic'] [u'star', u'juve', u'pull', u'clear'] [u'impact', u'microscop'] [u'forum', u'look', u'boost', u'outback', u'live'] [u'gallipoli', u'roadwork', u'caus', u'concern'] [u'ganguli', u'uphold', u'appeal', u'fail'] [u'ger', u'close', u'scottish', u'titl', u'chase'] [u'govt', u'continu', u'scheme', u'target', u'public', u'hous'] [u'govt', u'grant', u'disabl', u'perman', u'visa'] [u'govt', u'talk', u'chemist'] [u'govt', u'plan', u'north', u'south', u'rail', u'link'] [u'govt', u'pledg', u'industri'] [u'govt', u'reaffirm', u'pledg', u'fund', u'bowel', u'cancer'] [u'grape', u'leav', u'vine', u'demand', u'evapor'] [u'green', u'protest', u'meander', u'water', u'deal'] [u'gregan', u'hope', u'play', u'samoa', u'test'] [u'health', u'research', u'centr', u'plan', u'shelv'] [u'health', u'servic', u'submiss', u'close'] [u'henin', u'hardenn', u'seal', u'comeback'] [u'hop', u'high', u'brit', u'worker', u'bolster', u'south', u'west'] [u'hous', u'minist', u'inspect', u'glenroi', u'estat'] [u'howard', u'arriv', u'china', u'trade', u'talk'] [u'hurst', u'book', u'ticket', u'montreal'] [u'india', u'pakistan', u'agre', u'open', u'ceasefir', u'line'] [u'indigen', u'confer', u'focus', u'land', u'manag'] [u'indigen', u'peopl', u'mine', u'job'] [u'indonesia', u'build', u'nuclear', u'reactor'] [u'inquiri', u'look', u'adopt', u'procedur'] [u'iraq', u'hostag', u'stand', u'dismiss', u'exagger'] [u'iraqi', u'forc', u'reach', u'town', u'sign', u'milit'] [u'iraqi', u'presid', u'reject', u'death', u'sentenc', u'saddam'] [u'iraqi', u'troop', u'tighten', u'cordon', u'besieg', u'town'] [u'japan', u'china', u'diplomat', u'stoush', u'escal'] [u'japan', u'china', u'talk', u'littl', u'progress'] [u'joey', u'tough', u'quit', u'knight', u'doctor'] [u'jone', u'finish', u'track', u'return'] [u'kashmir', u'disput', u'erupt', u'musharraf'] [u'landhold', u'eros', u'salin', u'fight'] [u'larg', u'retail', u'defend', u'truck', u'polici'] [u'liber', u'deni', u'polic', u'station', u'maywald', u'campaign'] [u'lion', u'struggl', u'depth', u'matthew'] [u'lobbi', u'group', u'seek', u'urgent', u'region', u'rail', u'invest'] [u'lockyer', u'wari', u'marshal', u'threat'] [u'lonard', u'seal', u'maiden', u'tour'] [u'charg', u'internet', u'teen', u'relationship'] [u'charg', u'stab', u'murder'] [u'face', u'court', u'pickl', u'heroin'] [u'hospit', u'motor', u'scooter', u'crash'] [u'injur', u'interven', u'fight'] [u'jail', u'shoot', u'girlfriend', u'abus'] [u'jail', u'basebal', u'attack'] [u'charg', u'shoot', u'murder'] [u'maxfield', u'accept', u'match', u'suspens'] [u'mayor', u'defend', u'walk', u'handl'] [u'meatwork', u'owner', u'plead', u'guilti', u'workplac'] [u'melbourn', u'underworld', u'figur', u'wife', u'releas'] [u'merchandis', u'import'] [u'mildura', u'court', u'hear', u'murder', u'appeal'] [u'minist', u'move', u'clear', u'paper', u'road', u'confus'] [u'minist', u'urg', u'restor', u'water', u'alloc'] [u'fund', u'need', u'stop', u'deterior'] [u'intern', u'need', u'financ', u'minist'] [u'time', u'allow', u'elect', u'submiss'] [u'motorcycl', u'group', u'angri', u'race', u'track', u'close'] [u'motorcyclist', u'die', u'highway', u'crash'] [u'call', u'highway', u'overtak', u'lane'] [u'ask', u'consid', u'gambier', u'billet', u'option'] [u'mugab', u'mark', u'mileston', u'anti', u'western', u'defianc'] [u'murder', u'victim', u'mother', u'attack', u'killer'] [u'music', u'group', u'get', u'help', u'promot', u'cultur'] [u'readi', u'relaunch', u'foreign', u'exchang'] [u'navi', u'pilot', u'death', u'shatter', u'famili'] [u'nurs', u'plan', u'rescu', u'chopper', u'servic'] [u'technolog', u'boost', u'region', u'health', u'educ'] [u'chief', u'say', u'kid', u'overboard', u'past'] [u'arrest', u'bali', u'drug', u'bust'] [u'cut', u'expect', u'art', u'outwest', u'council'] [u'survivor', u'jungl', u'plane', u'crash', u'polic'] [u'mental', u'health', u'criticis', u'prison'] [u'drop', u'electron', u'debit'] [u'kill', u'injur', u'crash'] [u'dragon', u'play', u'australia'] [u'opposit', u'fear', u'doctor', u'scandal', u'nation'] [u'plan', u'continu', u'technic', u'colleg'] [u'downplay', u'fear', u'gallipoli', u'grave', u'disturb'] [u'say', u'wont', u'side', u'china', u'japan'] [u'polic', u'frustrat', u'staff', u'level'] [u'polic', u'investig', u'oversea', u'student', u'attack'] [u'polic', u'look', u'motiv', u'doubl', u'fatal', u'shoot'] [u'polic', u'seek', u'assault', u'wit'] [u'polic', u'tell', u'teen', u'tram', u'thief', u'obsess'] [u'pay', u'petrol', u'program', u'reduc', u'theft', u'polic'] [u'prison', u'hold', u'solitari', u'ahead', u'mental'] [u'prison', u'escape', u'bar'] [u'prom', u'park', u'reopen', u'blaze'] [u'protocol', u'rural', u'town', u'doctor', u'standard'] [u'public', u'urg', u'help', u'solv', u'linton'] [u'govt', u'doctor', u'mistak'] [u'queanbeyan', u'council', u'debat', u'asbesto', u'remov', u'issu'] [u'rabbitoh', u'sign', u'walker'] [u'rapist', u'give', u'indefinit', u'jail', u'sentenc'] [u'rattl', u'investor', u'send', u'share', u'tumbl'] [u'report', u'recommend', u'prefer', u'local', u'busi'] [u'resid', u'await', u'asbesto', u'health', u'result'] [u'resid', u'fight', u'leas', u'roadhous'] [u'resign', u'highlight', u'crisi', u'branch'] [u'review', u'panel', u'mull', u'weekend', u'incid'] [u'stand', u'fund', u'level'] [u'road', u'train', u'crash', u'block', u'highway'] [u'plane', u'incid', u'spark', u'council', u'action'] [u'council', u'trial', u'cape', u'york', u'job', u'scheme'] [u'govt', u'crack', u'callous', u'driver'] [u'govt', u'urg', u'duck', u'shoot'] [u'saint', u'keen', u'maintain', u'renew', u'aggress'] [u'join', u'push', u'health', u'review'] [u'scientist', u'hail', u'drug'] [u'scientist', u'trial', u'drug', u'treatment'] [u'search', u'indigen', u'youth', u'advis', u'govt'] [u'search', u'continu', u'long', u'lose', u'plane'] [u'secker', u'join', u'push', u'state', u'lift', u'basin', u'effort'] [u'secret', u'wit', u'break', u'william', u'hear'] [u'seek', u'delay', u'stock', u'market', u'debut'] [u'senat', u'aim', u'counter', u'wind', u'farm', u'misinform'] [u'sharon', u'signal', u'possibl', u'delay', u'gaza', u'pullout'] [u'shoalhaven', u'resid', u'proud', u'town', u'econom', u'growth'] [u'readi'] [u'take', u'hospit'] [u'south', u'east', u'blaze', u'firefight', u'busi'] [u'spanish', u'basqu', u'leader', u'poll'] [u'stoner', u'race', u'maiden', u'portug'] [u'stuart', u'escap', u'fine'] [u'stun', u'gun', u'potenti', u'fatal', u'studi', u'find'] [u'submiss', u'seek', u'harbour', u'fuel', u'plan'] [u'symond', u'fear', u'test', u'shut'] [u'symond', u'unhappi', u'join', u'ash', u'test', u'team'] [u'wait', u'paedophil', u'regist'] [u'teacher', u'turn', u'final', u'offer'] [u'team', u'monitor', u'sick', u'whale'] [u'teen', u'charg', u'tram', u'theft'] [u'thousand', u'expect', u'mine', u'expo'] [u'escap', u'light', u'plane', u'crash'] [u'tiger', u'cautious', u'despit', u'solid', u'start'] [u'tighter', u'secur', u'need', u'vandal', u'target', u'school'] [u'tourist', u'oper', u'receiv', u'govt', u'fund'] [u'town', u'project', u'develop', u'caus', u'concern'] [u'tradit', u'owner', u'seek', u'mine', u'oper'] [u'train', u'graduat', u'begin', u'work'] [u'train', u'institut', u'receiv', u'train'] [u'earthquak', u'rattl', u'sumatra'] [u'injur', u'brawl', u'suburban', u'train'] [u'unexpect', u'zealand', u'seal', u'stop', u'traffic'] [u'plan', u'attract', u'foreign', u'student'] [u'tell', u'aust', u'resolv', u'nauru', u'detaine', u'case'] [u'urg', u'action', u'nepal', u'refuge'] [u'veteran', u'accus', u'govt', u'disregard', u'anzac', u'spirit'] [u'waratah', u'shepherd', u'good', u'behaviour', u'bond'] [u'resist', u'pressur', u'uranium'] [u'waterhous', u'court', u'racehors', u'incid'] [u'watkin', u'train', u'talk', u'consid', u'pointless'] [u'introduc', u'drug', u'drive', u'legisl'] [u'wife', u'tell', u'dougla', u'scott', u'abus'] [u'wrong', u'bath', u'land', u'policeman', u'water'] [u'young', u'aborigin', u'urg', u'medic', u'worker'] [u'youth', u'charg', u'assault', u'appear', u'court'] [u'accc', u'approv'] [u'accc', u'ask', u'probe', u'region', u'fuel', u'price'] [u'accus', u'heroin', u'ring', u'mastermind', u'deni', u'involv'] [u'acid', u'rain', u'wear', u'away', u'sit', u'buddha'] [u'afghan', u'warlord', u'be', u'govt'] [u'issu', u'say', u'hohn'] [u'agreement', u'aim', u'help', u'long', u'term', u'unemploy'] [u'airport', u'chief', u'promis', u'consult'] [u'alexand', u'keen', u'resolv', u'pratt', u'disput'] [u'jazeera', u'temporarili', u'bar', u'report'] [u'student', u'reject', u'csiro', u'merger', u'propos'] [u'anzac', u'cove', u'damag', u'repair', u'beazley'] [u'push', u'increas', u'wada', u'fund'] [u'arm', u'robberi', u'number', u'increas', u'despit', u'fall'] [u'arrest', u'warrant', u'issu', u'american', u'actress'] [u'galleri', u'display', u'victoria', u'cross'] [u'assault', u'victim', u'famili', u'appeal', u'attack'] [u'peopl', u'kill', u'iraq', u'violenc'] [u'author', u'fail', u'foot', u'mouth', u'test'] [u'offici', u'fall', u'lehmann'] [u'bali', u'accus', u'deni', u'godfath', u'claim'] [u'want', u'defenc', u'dept', u'hand', u'land'] [u'beach', u'whale', u'rare', u'see', u'speci'] [u'better', u'paper', u'product', u'win', u'achiev', u'award'] [u'buchanan', u'welcom', u'england', u'ash', u'confid'] [u'cabinet', u'committe', u'appoint', u'bold'] [u'cabinet', u'committe', u'appoint', u'question'] [u'lifestyl', u'chang', u'save', u'reef'] [u'mentor', u'scheme', u'foreign', u'train', u'doctor'] [u'call', u'bull', u'campaign'] [u'call', u'cheaper', u'transport'] [u'canada', u'approv', u'cannabi', u'deriv', u'medicin'] [u'canberra', u'midst', u'mous', u'boom'] [u'cann', u'festiv', u'mark', u'return', u'cinema', u'great'] [u'cardin', u'fail', u'agre', u'pope'] [u'cardin', u'deliber', u'pope'] [u'cardin', u'begin', u'second', u'conclav'] [u'cat', u'lock', u'wipe', u'stomp', u'charg'] [u'cezann', u'theft', u'evid'] [u'charg', u'lay', u'brawl'] [u'check', u'find', u'corbi', u'court'] [u'chelsea', u'ferdinand', u'storm'] [u'china', u'offer', u'repair', u'japanes', u'embassi'] [u'cholesterol', u'drug', u'lower', u'prostat', u'cancer', u'risk'] [u'coke', u'settl', u'account', u'disput'] [u'coldplay', u'album', u'high', u'stake', u'gambl'] [u'communiti', u'urg', u'harbour', u'festiv'] [u'compani', u'plan', u'uranium', u'explor', u'north', u'east'] [u'concern', u'rais', u'telescop'] [u'cool', u'school'] [u'council', u'reject', u'retrospect', u'fund'] [u'council', u'review', u'beach'] [u'council', u'plan', u'staff', u'cut', u'worri', u'union'] [u'council', u'consid', u'budget', u'posit'] [u'council', u'worker', u'continu', u'work', u'ban'] [u'court', u'find', u'solarium', u'safeti', u'claim', u'decept'] [u'court', u'order', u'jobless', u'benefit'] [u'crowd', u'violenc', u'toler', u'oneil'] [u'date', u'rosedal', u'communiti', u'centr', u'work'] [u'dead', u'off', u'day', u'work'] [u'dept', u'reject', u'juvenil', u'justic', u'centr', u'crisi', u'claim'] [u'detent', u'polici', u'histori', u'lawrenc'] [u'disgrac', u'aceh', u'governor', u'avoid', u'prison'] [u'domest', u'violenc', u'decreas', u'west'] [u'dozen', u'kill', u'chines', u'accid'] [u'dunsborough', u'blaze', u'contain'] [u'east', u'timores', u'demand', u'resign'] [u'environ', u'commission', u'support', u'brown', u'coal'] [u'hear', u'asbesto', u'dump', u'fear'] [u'esper', u'student', u'anzac', u'studi', u'tour'] [u'ethiopian', u'obelisk', u'begin', u'journey', u'home'] [u'exhaust', u'heat', u'power', u'car', u'condit'] [u'famili', u'shock', u'bali', u'drug', u'arrest'] [u'famili', u'seek', u'advic', u'bali', u'probe', u'continu'] [u'famili', u'flee', u'burn', u'hous'] [u'farmer', u'consult', u'line', u'upgrad', u'industri'] [u'fear', u'polic', u'shortag', u'lead', u'increas', u'crime'] [u'figur', u'rise', u'assault'] [u'figur', u'fact', u'abort', u'debat', u'boswel'] [u'fiji', u'govt', u'fear', u'typhoid', u'outbreak', u'spread'] [u'fiji', u'record', u'fourth', u'year', u'growth'] [u'flatley', u'red', u'return'] [u'fuel', u'fear', u'halt', u'isra', u'flight'] [u'fuel', u'flow', u'aborigin', u'communiti'] [u'gold', u'explor', u'central', u'west'] [u'pipelin', u'head', u'hill'] [u'gelignit', u'dump', u'hobart'] [u'gilgandra', u'hous', u'burn'] [u'governor', u'catch', u'whoop', u'cough', u'epidem'] [u'govt', u'accus', u'export', u'death', u'penalti'] [u'govt', u'ask', u'teacher', u'number', u'rethink'] [u'govt', u'give', u'away', u'bargain', u'chip', u'labor'] [u'govt', u'inject', u'fund', u'rock', u'oyster', u'regener'] [u'govt', u'combat', u'domest', u'violenc'] [u'grape', u'grower', u'urg', u'voic', u'price', u'worri'] [u'greater', u'long', u'term', u'care', u'option', u'seek', u'disabl'] [u'green', u'gallipoli', u'recherch', u'road', u'work'] [u'group', u'say', u'inadequ', u'support', u'hurt', u'mental'] [u'guantanamo', u'detaine', u'provid', u'intellig'] [u'club', u'set', u'sight', u'attract', u'foreign'] [u'harsher', u'penalti', u'driver'] [u'helplin', u'aim', u'reduc', u'hospit', u'emerg', u'queue'] [u'hessian', u'bag', u'seagrass', u'growth'] [u'historian', u'want', u'perth', u'hill', u'disast', u'memori'] [u'histor', u'build', u'develop', u'accommod'] [u'howard', u'celebr', u'negoti', u'agreement'] [u'howard', u'find', u'china', u'posit', u'asean', u'invit'] [u'howard', u'talk', u'japanes'] [u'howard', u'welcom', u'memorandum', u'understand'] [u'hydro', u'respond', u'power', u'station', u'concern'] [u'indigen', u'communiti', u'join', u'land', u'protect', u'talk'] [u'indigen', u'abus', u'task', u'forc', u'seek', u'region'] [u'injur', u'princ', u'sweat', u'test', u'result'] [u'iraqi', u'forc', u'recaptur', u'town', u'hostag'] [u'irish', u'soccer', u'boss', u'trust', u'cash', u'rogu', u'trader'] [u'italian', u'baulk', u'resign'] [u'itali', u'mafiosi', u'indict', u'god', u'banker', u'murder'] [u'japanes', u'court', u'reject', u'chines', u'atroc', u'suit'] [u'kalgoorli', u'head', u'want', u'uranium', u'mine', u'consid'] [u'kando', u'rylston', u'child', u'care', u'threat'] [u'kiwi', u'step', u'price'] [u'land', u'council', u'call', u'govt', u'support'] [u'lebanon', u'form', u'govern'] [u'letherbi', u'repeat', u'boston', u'marathon', u'fifth', u'place'] [u'liber', u'blame', u'fund', u'literaci', u'problem'] [u'lion', u'refus', u'panic', u'button'] [u'long', u'emerg', u'wait', u'glitch'] [u'mainten', u'question', u'rais', u'store', u'lose', u'power'] [u'major', u'quak', u'rock', u'ocean', u'japan'] [u'arrest', u'death', u'hotel'] [u'get', u'year', u'murder', u'wife'] [u'man', u'charg', u'upgrad', u'murder'] [u'market', u'rebound', u'earli', u'week', u'loss'] [u'marshal', u'readi', u'play', u'defens', u'target'] [u'mcgauran', u'visit', u'focus', u'immigr', u'matter'] [u'north', u'coast', u'record', u'crime'] [u'militari', u'funer', u'hold', u'king', u'crash', u'victim'] [u'minist', u'rais', u'nuclear', u'energi', u'option'] [u'moor', u'alli', u'advocaat', u'resign'] [u'arrest', u'possibl', u'bali', u'drug', u'bust'] [u'push', u'ambul', u'servic', u'darwin', u'rural'] [u'say', u'time', u'south', u'east', u'infrastructur'] [u'nation', u'trust', u'consid', u'option', u'smith'] [u'camera', u'focus', u'speed', u'driver'] [u'newcastl', u'businessman', u'get', u'jail', u'term'] [u'council', u'get'] [u'newman', u'upgrad'] [u'nightclub', u'owner', u'say', u'curfew', u'wont', u'improv', u'safeti'] [u'night', u'tribun'] [u'leav', u'chanc', u'discoveri', u'launch'] [u'time', u'frame', u'aquacultur', u'harvest'] [u'noxious', u'smell', u'forc', u'shop', u'centr', u'evacu'] [u'polic', u'threaten', u'industri', u'action'] [u'nurs', u'centr', u'gain', u'intern', u'recognit'] [u'orang', u'suburb', u'name', u'scrap'] [u'organis', u'hope', u'record', u'festiv', u'audienc'] [u'oxford', u'reclaim', u'titl', u'britain', u'univers'] [u'pain', u'drug', u'fight', u'cancer', u'studi'] [u'perth', u'rugbi', u'fan', u'feel', u'forc'] [u'petit', u'seek', u'barossa', u'hospit'] [u'polic', u'review', u'school', u'program'] [u'polic', u'target', u'fraser', u'driver'] [u'polic', u'treat', u'babi', u'death', u'murder'] [u'poor', u'result', u'halt', u'cancer', u'drug', u'trial'] [u'port', u'meet', u'tribun', u'concern'] [u'premier', u'polic', u'wast', u'tax', u'brogden'] [u'princ', u'clear', u'injuri'] [u'prison', u'face', u'court', u'inmat', u'stab'] [u'privat', u'engin', u'work', u'rise'] [u'probe', u'launch', u'tyre', u'factori', u'blaze'] [u'probe', u'order', u'foreign', u'doctor', u'scandal'] [u'prosecutor', u'seek', u'jail', u'hih', u'cassidi'] [u'boast', u'econom', u'strength'] [u'race', u'author', u'refus', u'request', u'track'] [u'receiv', u'sell', u'rescu', u'chopper'] [u'studi', u'expans', u'welcom'] [u'repeat', u'offend', u'target', u'crime', u'crackdown'] [u'rescuer', u'monitor', u'whale', u'progress'] [u'retail', u'cautious', u'rais', u'price', u'despit', u'fuel'] [u'rocker', u'charg', u'want', u'joint', u'decad'] [u'studi', u'creat', u'bypass', u'uncertainti'] [u'rural', u'doctor', u'fear', u'impact', u'medicar', u'chang'] [u'scienc', u'teacher', u'qualifi', u'unsatisfi'] [u'scientist', u'prove', u'happi', u'equal', u'healthi'] [u'scott', u'widow', u'call', u'prison', u'guard', u'murder'] [u'search', u'collaps', u'bangladesh', u'factori'] [u'seek', u'debut', u'stock', u'market'] [u'sewag', u'upgrad', u'south', u'coast'] [u'shepparton', u'polic', u'shoot', u'add', u'inquiri'] [u'shoalhaven', u'council', u'ponder', u'rate', u'rise'] [u'shot', u'fire', u'car', u'sydney', u'doubl', u'murder'] [u'shuttl', u'upgrad', u'nasa'] [u'joh', u'condit', u'worsen'] [u'joh', u'famili', u'await', u'inevit'] [u'joh', u'famili', u'keep', u'bedsid', u'vigil'] [u'state', u'talk', u'revis', u'plan'] [u'stock', u'market', u'rise', u'month'] [u'studi', u'find', u'tube', u'surgeri', u'safe', u'youngster'] [u'substandard', u'drug', u'threat', u'heart', u'patient', u'doctor'] [u'coast', u'pois', u'advantag', u'china', u'trade'] [u'vitamin', u'help', u'lung', u'cancer', u'surviv'] [u'surfer', u'drown', u'port', u'macquari'] [u'synagogu', u'vandal', u'jail', u'seven', u'month'] [u'talk', u'focus', u'toowoomba', u'gladston', u'rail', u'line'] [u'teenag', u'appear', u'court', u'assault'] [u'teenag', u'unabl', u'assist', u'assault', u'investig'] [u'teen', u'burn', u'firework', u'accid'] [u'think', u'tank', u'warn', u'maritim', u'terror', u'risk'] [u'tiger', u'wont', u'lose', u'focus', u'say', u'wallac'] [u'time', u'run', u'age', u'care', u'plan'] [u'earli', u'specul', u'loss', u'howard'] [u'tourism', u'council', u'want', u'river', u'protect'] [u'tourism', u'group', u'support', u'pipelin', u'arch'] [u'tour', u'win', u'bonus', u'survivor', u'armstrong'] [u'transplant', u'success', u'open', u'door', u'diabet'] [u'troubl', u'countri', u'club', u'administr'] [u'twitt', u'score', u'hockey', u'honour'] [u'ask', u'review', u'unfair', u'pension', u'polici'] [u'chang', u'worri', u'presid'] [u'strike', u'start', u'industri', u'unrest'] [u'high', u'school', u'shoot', u'plan'] [u'vella', u'return', u'tiger'] [u'victorian', u'polic', u'kill', u'arm'] [u'fund', u'human', u'trial', u'blind', u'treatment'] [u'liber', u'review', u'elect', u'perform'] [u'find', u'bowser', u'deal', u'fall', u'short'] [u'wellington', u'crime', u'rise', u'doesnt', u'faze', u'polic'] [u'white', u'hope', u'elliott', u'remain', u'bushrang'] [u'consid', u'desalin', u'plant', u'uranium'] [u'woman', u'admit', u'caus', u'pari', u'hotel', u'polic'] [u'woman', u'give', u'probat', u'lock', u'kid'] [u'woolworth', u'sale'] [u'worker', u'shortag', u'caus', u'cost', u'blowout', u'labor'] [u'world', u'fastest', u'femal', u'bowler', u'hand', u'brisban'] [u'administr', u'appoint', u'rocki', u'builder'] [u'agassi', u'roddick', u'texa', u'second', u'round'] [u'anti', u'terrorist', u'measur', u'competit', u'coast'] [u'anzac', u'badg', u'worth', u'possibl', u'steal'] [u'archbishop', u'confid', u'pope', u'good', u'leader'] [u'athlet', u'give', u'rare', u'chanc', u'compet', u'china'] [u'aust', u'commit', u'troop', u'sudan', u'peac', u'oper'] [u'aust', u'lag', u'water', u'shortag', u'issu', u'expert'] [u'australian', u'surf', u'star', u'progress', u'fiji'] [u'australian', u'troop', u'begin', u'iraq', u'deploy'] [u'australia', u'plan', u'defens', u'approach', u'china'] [u'australia', u'brook', u'second', u'tour', u'open', u'stage'] [u'bali', u'accus', u'forc', u'smuggl', u'friend'] [u'bali', u'pair', u'face', u'aust', u'court'] [u'ballimor', u'water', u'council', u'wish', u'list'] [u'beatti', u'pledg', u'palm', u'woe'] [u'berlusconi', u'resign', u'form', u'govern'] [u'betfair', u'threaten', u'litig', u'aust', u'race'] [u'bishop', u'welcom', u'ratzing', u'pope'] [u'bracken', u'disappoint', u'miss', u'ash'] [u'british', u'retrial', u'juri'] [u'bushfir', u'affect', u'farmer', u'get'] [u'bush', u'nomine', u'post', u'doubt'] [u'parliamentari', u'probe', u'prom', u'blaze'] [u'camera', u'instal', u'speed', u'truck'] [u'compon', u'supplier', u'lose', u'china'] [u'crash', u'result', u'stupid', u'polic'] [u'cardin', u'ratzing', u'profil'] [u'chili', u'broccoli', u'slow', u'cancer', u'growth'] [u'china', u'trade', u'deal', u'benefit', u'lobster', u'industri'] [u'china', u'want', u'pope', u'sever', u'taiwan', u'tie'] [u'clarkson', u'hop', u'youth', u'polici', u'bring'] [u'coal', u'ship', u'mean', u'economi', u'save'] [u'committe', u'design', u'safer', u'year', u'celebr'] [u'want', u'bore', u'drill', u'stop'] [u'costello', u'accept', u'deal'] [u'costello', u'await', u'compromis'] [u'council', u'candid', u'push', u'afford', u'hous'] [u'council', u'consid', u'percent', u'rate', u'rise'] [u'council', u'lay', u'bug'] [u'court', u'drop', u'indec', u'treatment', u'charg'] [u'court', u'hear', u'appeal', u'hallucinogen'] [u'croatian', u'freediv', u'claim', u'record'] [u'croc', u'jerki', u'fill', u'export', u'hole'] [u'cyclist', u'kill', u'mornington', u'peninsula'] [u'data', u'eas', u'rate', u'rise', u'pressur'] [u'desalin', u'plant', u'pressur', u'murray'] [u'develop', u'strategi', u'appropri'] [u'dfat', u'seek', u'comment', u'aust', u'china', u'talk'] [u'dirranbandi', u'dive', u'pool', u'plan'] [u'discount', u'give', u'landcar', u'group', u'insur'] [u'doctor', u'milosev', u'risk', u'cardio', u'vascular', u'attack'] [u'doubt', u'linger', u'jadda', u'centr', u'fund'] [u'downer', u'offer', u'consular', u'bali', u'accus'] [u'appeal', u'killer', u'sentenc'] [u'drink', u'driver', u'get', u'suspend', u'jail', u'sentenc'] [u'driver', u'lose', u'control', u'caus', u'death', u'polic'] [u'driver', u'warn', u'polic', u'crackdown'] [u'duranbah', u'beach', u'dun', u'expand'] [u'educ', u'fund', u'divert', u'health'] [u'eleph', u'trash', u'properti', u'restaur'] [u'expert', u'speechless', u'tell', u'amphetamin'] [u'extra', u'fund', u'need', u'chaffey', u'lib'] [u'falter', u'red', u'welcom', u'gun'] [u'farmer', u'mean', u'ahead'] [u'farm', u'group', u'urg', u'caution', u'china', u'free', u'trade', u'deal'] [u'govt', u'attack', u'infrastructur', u'fund'] [u'caus', u'damag', u'homestead'] [u'focus', u'cut', u'paper', u'emiss'] [u'food', u'regul', u'accus', u'fail', u'stop', u'illeg'] [u'food', u'watchdog', u'defend', u'action', u'corn', u'import'] [u'glachan', u'die', u'age'] [u'stanhop', u'advis', u'face', u'graffiti', u'charg'] [u'foster', u'extend', u'southcorp', u'takeov', u'offer'] [u'foster', u'southcorp', u'announc', u'loom'] [u'fraudster', u'convict', u'act', u'real', u'estat', u'agent'] [u'fund', u'manag', u'bid', u'pacif', u'hydro'] [u'fund', u'black', u'spot'] [u'game', u'boss', u'open', u'ceremoni', u'detail'] [u'gender', u'factor', u'kapookoa', u'command', u'select'] [u'german', u'tourist', u'fatal', u'accid'] [u'govern', u'overestim', u'school', u'sign', u'cost'] [u'govt', u'broaden', u'child', u'develop', u'program'] [u'govt', u'structur', u'welfar', u'deliveri', u'servic'] [u'govt', u'warn', u'medicar', u'chang'] [u'grant', u'play', u'year'] [u'grant', u'want', u'play', u'year'] [u'green', u'acquir', u'lowan', u'australia'] [u'green', u'guillotin', u'elector', u'reform', u'debat'] [u'health', u'inquiri', u'broad', u'say', u'beatti'] [u'henjak', u'favour', u'brumbi', u'ahead', u'forc', u'talk'] [u'hill', u'visit', u'troop', u'iraq'] [u'howard', u'begin', u'talk', u'japan'] [u'hurley', u'readi', u'return', u'pirat'] [u'inclus', u'turkish', u'veteran', u'anzac'] [u'investig', u'probe', u'fatal', u'glide', u'accid'] [u'inzamam', u'matur', u'skipper', u'imran'] [u'irrig', u'studi', u'rais', u'competit', u'concern'] [u'isra', u'armi', u'start', u'move', u'equip', u'gaza'] [u'japan', u'china', u'seek', u'summit', u'quell'] [u'japan', u'hesit', u'offer'] [u'japan', u'prepar', u'talk'] [u'judg', u'visit', u'capricorn', u'coast', u'develop', u'site'] [u'kennedi', u'test', u'news'] [u'lawyer', u'say', u'bali', u'accus', u'choos', u'ignor'] [u'lennon', u'lean', u'give', u'bet', u'licenc'] [u'lennon', u'attend', u'anzac', u'servic', u'gallipoli'] [u'local', u'domin', u'long', u'distanc', u'open', u'water', u'event'] [u'appear', u'court', u'foreign', u'student', u'bash'] [u'arrest', u'drive', u'wife'] [u'fin', u'possess', u'porn'] [u'front', u'court'] [u'hospit', u'caravan', u'tanker', u'collid'] [u'marketplac', u'fume', u'see', u'life', u'threaten'] [u'masterfood', u'loss', u'wodonga'] [u'mayor', u'defend', u'decis', u'aldermen', u'report'] [u'melbourn', u'theatr', u'compani', u'find', u'home'] [u'melbourn', u'tram', u'thief', u'face', u'charg'] [u'mildura', u'koori', u'court', u'oper', u'juli'] [u'mildura', u'welcom', u'governor', u'general'] [u'miner', u'face', u'court', u'blast'] [u'minist', u'want', u'unemot', u'water', u'debat'] [u'mix', u'reaction', u'australia', u'pope'] [u'mooney', u'reject', u'plan', u'separ'] [u'compani', u'servic', u'outer', u'suburb'] [u'mother', u'stand', u'trial', u'babi', u'death'] [u'speak', u'upper', u'hous', u'restrict'] [u'fluffi', u'asbesto', u'insul', u'microscop'] [u'murray', u'river', u'studi', u'expand'] [u'nation', u'urg', u'govern', u'save', u'water'] [u'network', u'play', u'hardbal', u'right', u'deal'] [u'newcastl', u'sort', u'boy'] [u'aim', u'help', u'indigen', u'leader'] [u'fruit', u'control', u'method', u'save', u'grower', u'money'] [u'fund', u'assist', u'patient', u'wait', u'elect'] [u'polic', u'station', u'southport'] [u'pope', u'gift', u'theologian'] [u'pope', u'celebr', u'mass'] [u'reef', u'mornington', u'island'] [u'nia', u'death', u'toll'] [u'celebr', u'comm', u'game', u'open', u'ceremoni'] [u'darfur', u'role', u'aust', u'troop'] [u'northern', u'quoll', u'endang'] [u'oppos', u'fund', u'compromis'] [u'govt', u'spend', u'secur', u'drama'] [u'want', u'action', u'illeg', u'fish'] [u'capabl', u'caus', u'upset', u'lockyer'] [u'thai', u'busi', u'benefit', u'trade', u'pact', u'clark'] [u'offici', u'dead', u'zambia', u'accid'] [u'classroom', u'possibl', u'youth', u'cafe'] [u'olymp', u'chief', u'relaunch', u'roger', u'medal', u'push'] [u'pagan', u'wari', u'freo', u'despit', u'maul', u'tiger'] [u'pell', u'predict', u'surpris', u'pope'] [u'congratul', u'pope', u'benedict'] [u'hold', u'talk', u'japan'] [u'urg', u'rais', u'whale', u'hunt', u'japan'] [u'polic', u'discov', u'gold', u'coast', u'assault'] [u'polic', u'form', u'plan', u'fight', u'unruli', u'behaviour'] [u'polic', u'press', u'bali', u'drug', u'charg'] [u'polic', u'seek', u'help', u'solv', u'woman', u'death'] [u'polic', u'video', u'break', u'driver'] [u'polic', u'decid', u'derail', u'charg'] [u'pope', u'take', u'possess', u'papal', u'apart'] [u'port', u'pleas', u'retain', u'burgoyn'] [u'prescrib', u'burn', u'weather', u'caus', u'smoke', u'blanket'] [u'prison', u'guard', u'say', u'foul', u'play', u'death'] [u'prosecut', u'wrap', u'jackson', u'case'] [u'govt', u'assess', u'privat', u'partnership'] [u'hostel', u'improv', u'safeti'] [u'opposit', u'air', u'bundaberg', u'hospit'] [u'raaf', u'conduct', u'exercis', u'tasmania'] [u'radiat', u'expect', u'telescop'] [u'rapist', u'jail', u'student', u'attack'] [u'ratzing', u'elect', u'pope'] [u'ratzing', u'elect', u'pope'] [u'record', u'number', u'forecast', u'gallipoli', u'servic'] [u'rain', u'fall', u'russia'] [u'remot', u'crop', u'highlight', u'elabor', u'drug', u'trade'] [u'report', u'highlight', u'coastal', u'secur', u'gap'] [u'research', u'hit', u'fast', u'forward', u'genom', u'analysi'] [u'tinto', u'give', u'ord', u'lift'] [u'road', u'violenc', u'increas'] [u'rogg', u'warn', u'bid'] [u'school', u'violenc', u'spark', u'independ', u'probe'] [u'scienc', u'teacher', u'shortag', u'qualif', u'woe'] [u'shepparton', u'man', u'death', u'come', u'shock', u'neighbour'] [u'shoalhaven', u'council', u'fire', u'line', u'rate', u'rise'] [u'comfort', u'deterior'] [u'stabl'] [u'skill', u'vacanc', u'rise'] [u'south', u'east', u'transport', u'infrastructur', u'upgrad', u'call'] [u'specul', u'surround', u'wheat', u'export', u'iraq'] [u'speedi', u'pope', u'appoint', u'surpris', u'archbishop'] [u'stop', u'hold', u'detaine', u'crimin', u'bartlett'] [u'suharto', u'make', u'rare', u'public', u'appear', u'report'] [u'suncoast', u'jobless', u'rate', u'tip', u'rise'] [u'suprem', u'court', u'throw', u'medic', u'neglig', u'appeal'] [u'survey', u'find', u'crime', u'concern'] [u'sydney', u'cross', u'citi', u'toll', u'tip'] [u'teen', u'get', u'year', u'umbrella', u'stab'] [u'telstra', u'quarter', u'sale'] [u'tennant', u'creek', u'get', u'renal', u'dialysi', u'centr'] [u'timor', u'negoti', u'resum'] [u'toon', u'brawler', u'face', u'crime', u'probe'] [u'tourism', u'oper', u'urg', u'prepar', u'chines'] [u'transport', u'lobbi', u'support', u'inland', u'rail', u'line'] [u'turkish', u'veteran', u'join', u'adelaid', u'anzac', u'parad'] [u'arrest', u'sydney', u'shoot'] [u'charg', u'oversea', u'student', u'bash'] [u'soldier', u'kill', u'iraq'] [u'week', u'woolford', u'appeal', u'fail'] [u'occupi', u'public', u'hous', u'caus', u'concern'] [u'union', u'predict', u'hec', u'fee', u'rise'] [u'smoke', u'scare', u'spark', u'evacu'] [u'vice', u'chancellor', u'hit', u'index', u'fund'] [u'vandal', u'prompt', u'night', u'park', u'closur'] [u'urg', u'govt', u'reconsid', u'hec', u'chang'] [u'take', u'mooney', u'cat'] [u'govt', u'farm', u'support', u'snub'] [u'polic', u'support', u'shoot', u'inquiri'] [u'road', u'agre', u'skate', u'park'] [u'videotap', u'australian', u'releas'] [u'vietnam', u'vet', u'wall', u'readi', u'anzac'] [u'waratah', u'mackay', u'head', u'west'] [u'water', u'liquid', u'nitrogen', u'improv', u'flow'] [u'west', u'lake', u'shellfish', u'toxic'] [u'whistleblow', u'give', u'corbi', u'fals'] [u'wollongong', u'bishop', u'welcom', u'pope', u'benedict'] [u'woman', u'die', u'lasset', u'highway', u'crash'] [u'woolford', u'cop', u'week'] [u'woolford', u'timmin', u'appear', u'judiciari'] [u'wool', u'industri', u'massiv', u'declin', u'report'] [u'wrangl', u'continu', u'saleyard', u'site'] [u'young', u'hawk', u'aim', u'high'] [u'kill', u'colombian', u'road', u'accid'] [u'offer', u'licenc'] [u'aborigin', u'communiti', u'welcom', u'work', u'parti'] [u'trap', u'turkish', u'explos'] [u'accus', u'drug', u'smuggler', u'await', u'charg'] [u'accus', u'heroin', u'smuggler', u'take', u'bali', u'hospit'] [u'govt', u'look', u'roll', u'ncas', u'plan', u'power'] [u'actor', u'expect', u'immedi', u'feedback', u'broadcast'] [u'adelaid', u'verg', u'hous', u'suppli'] [u'examin', u'bali', u'accus', u'claim'] [u'airbus', u'test', u'flight', u'day'] [u'allawi', u'escap', u'assassin', u'attempt'] [u'amazonian', u'ant', u'tortur', u'rack', u'kill', u'prey'] [u'arm', u'abduct', u'philippin'] [u'ash', u'ticket', u'run'] [u'australian', u'secur', u'worker', u'kill', u'baghdad'] [u'australia', u'start', u'qualifi'] [u'author', u'consid', u'water', u'option'] [u'award', u'win', u'technolog', u'prove', u'cost', u'river'] [u'bali', u'accus', u'claim', u'famili', u'threaten'] [u'bali', u'await', u'charg'] [u'beachley', u'beat', u'fiji', u'decid'] [u'affleck', u'jennif', u'garner', u'engag', u'report'] [u'benedictxvicom', u'owner', u'vow', u'porn', u'gambl'] [u'biologist', u'surviv', u'second', u'bear', u'attack'] [u'bomb', u'blast', u'wound', u'isra', u'soldier', u'despit', u'truce'] [u'boswel', u'crook', u'respect', u'ail'] [u'brazil', u'offer', u'asylum', u'oust', u'ecuadorean', u'presid'] [u'brown', u'desper', u'lion', u'return'] [u'brown', u'desper', u'help', u'ail', u'lion'] [u'build', u'firm', u'owe', u'creditor'] [u'build', u'halt', u'toxin', u'hous', u'site'] [u'burma', u'defi', u'call', u'relinquish', u'asean', u'chairmanship'] [u'crash', u'kill', u'vietnames', u'veteran'] [u'communiti', u'rural', u'colleg'] [u'probe', u'wheat', u'claim'] [u'canberra', u'compani', u'win', u'navi', u'engin', u'contract'] [u'capello', u'upbeat', u'juve', u'titl', u'setback'] [u'carr', u'deni', u'properti', u'invest', u'slow'] [u'carter', u'holt', u'harvey', u'profit', u'slip', u'slight'] [u'cervic', u'cancer', u'virus', u'reactiv', u'studi'] [u'child', u'killer', u'tri', u'stop', u'air', u'documentari'] [u'china', u'harm', u'fruit', u'grower'] [u'china', u'like', u'spearhead', u'clean', u'coal', u'endeavour'] [u'chopper', u'owner', u'reject', u'debt', u'claim'] [u'church', u'abus', u'victim', u'million'] [u'citi', u'council', u'acquir', u'defenc', u'land', u'cheapli'] [u'pledg', u'tougher', u'penalti', u'offend'] [u'club', u'share', u'prestigi', u'state', u'award'] [u'controversi', u'flyer', u'score', u'polit', u'point'] [u'coonabarabran', u'expans'] [u'coron', u'rule', u'whistleblow', u'die', u'natur', u'caus'] [u'costello', u'savag', u'busi', u'comment'] [u'cost', u'power', u'surg', u'week'] [u'council', u'delay', u'park', u'decis'] [u'council', u'join', u'firewe', u'fight'] [u'council', u'lack', u'fund', u'maintain', u'wall'] [u'council', u'look', u'poki', u'number'] [u'council', u'look', u'action', u'nazi', u'flag'] [u'council', u'reject', u'consult', u'retail', u'develop'] [u'council', u'reject', u'help', u'remov', u'asbesto'] [u'council', u'reject', u'woodland', u'site', u'station'] [u'council', u'prepar', u'water', u'shortag'] [u'council', u'warn', u'rat', u'increas', u'altern'] [u'coupl', u'tie', u'chair', u'tobacco', u'farm', u'raid'] [u'court', u'find', u'damag', u'payout', u'mental'] [u'court', u'hear', u'lesion', u'occur', u'death', u'prison'] [u'court', u'hear', u'post', u'offic', u'thief', u'steal'] [u'court', u'tell', u'aborigin', u'death', u'custodi', u'proper'] [u'court', u'tell', u'accus', u'gangland', u'boss', u'trial'] [u'free', u'surgeri', u'reduc', u'pain'] [u'dalrympl', u'expans', u'start'] [u'delay', u'hospit', u'facelift', u'agenda'] [u'demand', u'expect', u'drop', u'home'] [u'design', u'boycott', u'wont', u'affect', u'wool', u'export', u'industri'] [u'doctor', u'urg', u'listen', u'famili', u'concern'] [u'dozen', u'fear', u'dead', u'indian', u'train', u'crash'] [u'earth', u'move', u'gippsland'] [u'ebay', u'profit', u'beat', u'estim'] [u'ecuadorean', u'leader', u'whereabout', u'unknown'] [u'edenhop', u'aim', u'cash'] [u'electr', u'system', u'hold', u'summer', u'heat', u'mickel'] [u'email', u'audit', u'reveal', u'offic', u'porn', u'collect'] [u'expert', u'odd', u'bush', u'beetl', u'tribut'] [u'transport', u'minist', u'join', u'board'] [u'famili', u'recal', u'near', u'death'] [u'famili', u'remov', u'nazi', u'flag'] [u'farina', u'orsatti', u'kiss'] [u'farmer', u'stock', u'water', u'worri'] [u'fatal', u'shoot', u'prompt', u'counsel', u'offer'] [u'feder', u'govern', u'grant', u'investig'] [u'firefight', u'come', u'mock', u'rescu', u'exercis'] [u'flourid', u'dead', u'water'] [u'foolish', u'mallah', u'jail', u'threat'] [u'forc', u'book', u'mitchel'] [u'labor', u'charg', u'corrupt', u'briberi'] [u'foster', u'extend', u'southcorp'] [u'foster', u'tip', u'boost', u'southcorp', u'offer'] [u'foul', u'mouth', u'mooney', u'thompson'] [u'fund', u'secur', u'chopper', u'nurs'] [u'glider', u'crash', u'investig'] [u'golf', u'club', u'seek', u'council', u'leas', u'talk'] [u'govt', u'commit', u'train', u'pay', u'age', u'care', u'worker'] [u'govt', u'seek', u'regul', u'west', u'goldfield', u'flight'] [u'greater', u'hume', u'mayor', u'die', u'unexpect'] [u'har', u'club', u'urg', u'fight', u'race', u'meet'] [u'health', u'commiss', u'hear', u'bundaberg', u'complaint'] [u'health', u'dept', u'issu', u'swan', u'river', u'warn'] [u'hervey', u'look', u'lure', u'busi'] [u'hitman', u'hatton', u'arrow', u'tszyu'] [u'hop', u'pope', u'consid', u'mackillop'] [u'howard', u'end', u'japan', u'visit', u'expo', u'trip'] [u'hunter', u'portrait', u'win', u'packer', u'prize'] [u'hunter', u'portrait', u'win', u'pack', u'prize'] [u'hussey', u'steadi', u'nottinghamshir'] [u'indigen', u'council', u'look', u'meet', u'vanston'] [u'indigen', u'nomine', u'contest', u'arnhem'] [u'injur', u'riewoldt', u'fool'] [u'show', u'melbourn', u'flight'] [u'investig', u'show', u'raaf', u'asbesto', u'scare'] [u'irrig', u'ask', u'donat', u'unus', u'water'] [u'jackson', u'father', u'deni', u'famili', u'rift'] [u'japan', u'agre', u'feasibl', u'studi'] [u'japanes', u'parent', u'embrac', u'high', u'tech', u'child', u'safeti'] [u'jobless', u'scheme', u'provid', u'promis', u'result'] [u'jone', u'quit', u'warrior', u'franc'] [u'judg', u'warn', u'corbi', u'face', u'death'] [u'juri', u'find', u'wife', u'guilti', u'husband', u'murder'] [u'kalgoorli', u'solar', u'plan', u'heat'] [u'kangaroo', u'simpson', u'want', u'respect'] [u'kangaroo', u'pump', u'lockyer'] [u'kingaroy', u'get', u'ail', u'joh', u'famili'] [u'klitschko', u'success', u'oper'] [u'labor', u'demand', u'number', u'safeti', u'cut'] [u'labor', u'oppos', u'subsidi', u'chang'] [u'labor', u'oppos', u'revamp'] [u'local', u'disput', u'council', u'plan', u'move'] [u'jail', u'kill'] [u'face', u'court', u'drug'] [u'manufactur', u'rubbish', u'pont', u'claim'] [u'child', u'pornographi', u'imag', u'avoid', u'jail'] [u'market', u'despit', u'late', u'recoveri'] [u'media', u'associ', u'surpris', u'seri'] [u'melbourn', u'hold', u'spain', u'trial'] [u'mental', u'patient', u'death', u'spark', u'hospit', u'review'] [u'miner', u'tap', u'gawler', u'craton', u'region', u'gold'] [u'minist', u'drink', u'drive', u'lead', u'fine', u'suspens'] [u'arrest', u'polic', u'probe', u'sydney', u'soccer', u'riot'] [u'citrus', u'canker'] [u'call', u'fluffi', u'asbesto', u'probe'] [u'call', u'nambour', u'polic', u'station'] [u'fight', u'drought', u'announc'] [u'nambucca', u'council', u'consid', u'rate', u'rise'] [u'nasa', u'delay', u'shuttl', u'launch'] [u'neighbour', u'flag', u'veteran'] [u'fellowship', u'boost', u'parkinson', u'research'] [u'oyster', u'speci', u'combat', u'parasit'] [u'secur', u'dubbo', u'airport'] [u'dead', u'iraq', u'chopper', u'down'] [u'jealousi', u'york', u'salari', u'sydney', u'boss'] [u'nurs', u'home', u'struggl', u'cope', u'disabl', u'youth'] [u'option', u'open', u'prioriti', u'pick', u'demetriou'] [u'palm', u'riot', u'committ', u'adjourn', u'outburst'] [u'panel', u'aim', u'boost', u'region', u'cancer', u'screen'] [u'patient', u'park', u'hospit'] [u'perth', u'gain', u'mobil', u'limb', u'attach'] [u'peski', u'carp', u'prove', u'elus'] [u'phantom', u'piano', u'play', u'encor', u'dead', u'pianist'] [u'acknowledg', u'iraq', u'mission', u'endang', u'troop'] [u'foreshadow', u'earn', u'drop'] [u'warn', u'troop', u'risk', u'iraq'] [u'polic', u'hope', u'renew', u'crime', u'stopper'] [u'polic', u'probe', u'fatal', u'truck', u'crash'] [u'polic', u'probe', u'water', u'theft'] [u'polic', u'raid', u'cannabi'] [u'polic', u'urg', u'friend', u'look'] [u'pollock', u'unlik', u'play', u'test'] [u'pont', u'cricket'] [u'pope', u'benedict', u'retain', u'vatican', u'administr'] [u'pope', u'benedict', u'elect', u'landslid', u'report'] [u'port', u'hedland', u'alcohol', u'restrict', u'remain'] [u'port', u'oper', u'share', u'increas', u'disput'] [u'power', u'geelong', u'particip', u'anzac', u'servic'] [u'prais', u'industri', u'perform'] [u'preliminari', u'falconio', u'case', u'hear', u'begin'] [u'premis', u'raid', u'internet', u'pill', u'ring', u'investig'] [u'prison', u'offic', u'testifi', u'death', u'custodi', u'trial'] [u'probe', u'continu', u'hardwar', u'store', u'blaze'] [u'prosecutor', u'seek', u'life', u'sentenc', u'corbi'] [u'prosecutor', u'want', u'life', u'sentenc', u'corbi'] [u'public', u'invit', u'discuss', u'power', u'woe'] [u'queen', u'elizabeth', u'celebr', u'birthday', u'quiet'] [u'rapist', u'win', u'appeal', u'indefinit', u'jail', u'term'] [u'red', u'hang', u'mcmeniman'] [u'riewoldt', u'desper', u'field'] [u'roger', u'target', u'tour'] [u'rooney', u'slap', u'claim'] [u'paper', u'prove', u'popular'] [u'welcom', u'move', u'extend', u'game'] [u'ryle', u'anzac', u'test'] [u'ryle', u'tran', u'tasman', u'test'] [u'paint', u'includ', u'corpor', u'auction'] [u'schu', u'discuss', u'ferrari', u'contract', u'extens'] [u'scotland', u'futur', u'line', u'william'] [u'scott', u'take', u'earli', u'lead', u'play', u'suspend', u'china'] [u'king', u'victim', u'farewel'] [u'secur', u'fit', u'worker', u'share'] [u'senat', u'committe', u'hear', u'reform'] [u'shipyard', u'upgrad', u'depend', u'defenc', u'contract'] [u'singh', u'elect', u'hall', u'fame'] [u'spain', u'fear', u'exil', u'african', u'politician'] [u'state', u'offer', u'inadequ', u'properti', u'council'] [u'student', u'parent', u'approv', u'school', u'sniffer', u'dog'] [u'swimmer', u'urg', u'avoid', u'theft'] [u'tasmania', u'commend', u'learn'] [u'tendulkar', u'play', u'tsunami', u'benefit'] [u'terror', u'hold', u'road', u'sharon'] [u'timmin', u'plead', u'guilti', u'charg', u'downgrad'] [u'tourism', u'board', u'cut', u'member'] [u'tour', u'oper', u'want', u'swim', u'allow', u'twin', u'fall'] [u'townsvill', u'hostel', u'get', u'safeti', u'approv'] [u'troop', u'kill', u'seven', u'aceh', u'rebel'] [u'face', u'court', u'murder'] [u'court', u'rule', u'resuscit', u'babi'] [u'union', u'continu', u'crane', u'disput', u'talk'] [u'union', u'warn', u'cancel', u'plane', u'safeti', u'check'] [u'unpaid', u'wag', u'recoveri', u'help', u'break', u'hill', u'worker'] [u'militari', u'continu', u'work', u'recov', u'korean'] [u'wagga', u'wagga', u'bishop', u'welcom', u'pope'] [u'waratah', u'surpris', u'mackay', u'defect'] [u'veteran', u'receiv', u'changi', u'lock'] [u'whistleblow', u'death', u'suspici', u'coron'] [u'wide', u'burnett', u'repres', u'youth', u'council'] [u'wind', u'farm', u'plan', u'draw', u'posit', u'public', u'respons'] [u'woman', u'battl', u'miner', u'land'] [u'world', u'oldest', u'olympian', u'die', u'pakistan'] [u'youth', u'centr', u'spark', u'council', u'anglican', u'church', u'disput'] [u'zimbabw', u'opposit', u'challeng', u'poll', u'result'] [u'abalon', u'industri', u'eye', u'benefit'] [u'accc', u'review', u'local', u'regul'] [u'accus', u'terrorist', u'trial', u'spain'] [u'acid', u'killer', u'driver', u'jail', u'year'] [u'age', u'care', u'nurs', u'seek', u'pariti'] [u'adler', u'william', u'transfer', u'jail'] [u'airport', u'joke', u'cost', u'vanuatu'] [u'ammonia', u'leak', u'see', u'melbourn', u'factori', u'evacu'] [u'anderson', u'push', u'ethanol', u'research'] [u'anderson', u'upbeat', u'despit', u'tran', u'tasman', u'defeat'] [u'antarct', u'glacier', u'shrink', u'scientist'] [u'australia', u'keen', u'continu', u'progress'] [u'australia', u'lead', u'world', u'ecstasi'] [u'australian', u'pair', u'chase', u'singh', u'houston'] [u'australian', u'death', u'remind', u'iraq', u'danger'] [u'australia', u'ecstasi', u'capit', u'world'] [u'author', u'examin', u'evid', u'claim'] [u'author', u'defend', u'mandatori', u'energi', u'rat'] [u'bali', u'suspect', u'separ', u'death', u'threat', u'polic'] [u'barthez', u'cop', u'spit'] [u'beach', u'open', u'health', u'scare'] [u'bear', u'test', u'kiwi', u'central', u'contest'] [u'beatti', u'hit', u'carr', u'fuel', u'comment'] [u'beatti', u'delay', u'visit', u'bundaberg', u'patient'] [u'beatti', u'meet', u'bundaberg', u'doctor', u'victim'] [u'begin', u'oper', u'kembla'] [u'bigamist', u'act', u'love', u'wife'] [u'brogden', u'call', u'alleg', u'polic'] [u'brumbi', u'eye', u'shepherd'] [u'burmes', u'mother', u'breastfe', u'tiger', u'cub'] [u'bushfir', u'recoveri', u'stall'] [u'busker', u'head', u'coff', u'septemb'] [u'cabinet', u'newcom', u'appoint', u'tonga', u'act'] [u'govt', u'agenc', u'share', u'weed', u'control'] [u'canker', u'wont', u'stop', u'push', u'domest', u'market', u'access'] [u'cannabi', u'crop', u'state', u'forest'] [u'cat', u'attack', u'power'] [u'cat', u'turn', u'power', u'thriller'] [u'cattl', u'industri', u'seek', u'japanes', u'trade', u'guarante'] [u'cdep', u'chang', u'teen', u'job'] [u'chamber', u'back', u'nativ', u'titl', u'fund'] [u'chang', u'forc', u'port', u'geelong', u'clash'] [u'charg', u'lay', u'intern', u'money', u'launder'] [u'chelsea', u'celebr', u'hold', u'derbi', u'weekend'] [u'chelsea', u'spend', u'power', u'give', u'rival', u'heartburn'] [u'support', u'men', u'busi', u'program'] [u'coal', u'explos', u'turkey', u'kill'] [u'coal', u'termin', u'expans', u'falter'] [u'communiti', u'femal', u'doctor', u'visit'] [u'concuss', u'rule', u'hunt', u'shark', u'clash'] [u'coonan', u'repres', u'australia', u'papal', u'mass'] [u'corbi', u'reliev', u'penalti', u'submiss'] [u'corbi', u'take', u'comfort', u'judg', u'comment'] [u'council', u'back', u'retir', u'villag', u'plan'] [u'councillor', u'feel', u'earth', u'shake', u'japan'] [u'councillor', u'head', u'interst', u'saleyard'] [u'council', u'overturn', u'decis', u'veteran', u'outcri'] [u'coupl', u'unimpress', u'water', u'contamin', u'decis'] [u'court', u'order', u'trial', u'self', u'confess', u'cannib'] [u'cyclist', u'prepar', u'outback', u'chariti', u'trek'] [u'danc', u'shoe', u'stay', u'blast', u'cancel'] [u'death', u'toll', u'rise', u'zambian', u'blast'] [u'digger', u'final', u'lay', u'rest'] [u'diouf', u'court', u'spit', u'charg'] [u'discount', u'drug', u'wont', u'solv', u'blow', u'pharmacist'] [u'doctor', u'check', u'overnight', u'scare'] [u'downer', u'name', u'ambassador', u'vietnam', u'poland'] [u'drill', u'start', u'north', u'west', u'break', u'hill'] [u'driver', u'kill', u'sydney', u'polic', u'chase'] [u'driver', u'warn', u'anzac', u'holiday', u'crackdown'] [u'ecstasi', u'haul', u'accus', u'refus', u'bail'] [u'ecuador', u'presid', u'assum', u'control'] [u'eden', u'monaro', u'jobless', u'rate', u'drop'] [u'elect', u'candid', u'attack', u'shire', u'plan'] [u'eucalyptus', u'puzzl', u'botanist'] [u'fake', u'iraqi', u'abus', u'photo', u'charg', u'drop'] [u'falconio', u'murder', u'trial', u'delay'] [u'fall', u'tree', u'branch', u'hurt', u'sleep', u'camper'] [u'famili', u'welcom', u'coron', u'communic'] [u'famili', u'welcom', u'guilti', u'verdict', u'muswellbrook'] [u'farmer', u'want', u'guarante', u'japan'] [u'flag', u'rule', u'play', u'polit', u'educ', u'labor'] [u'footi', u'team', u'look', u'futur'] [u'forest', u'log', u'plan', u'spark', u'green', u'group', u'concern'] [u'foster', u'southcorp', u'takeov', u'talk', u'continu'] [u'foster', u'win', u'southcorp', u'revis', u'offer'] [u'arrest', u'ecstasi', u'contain'] [u'fourth', u'arrest', u'drug', u'crop'] [u'friend', u'sicknen', u'farmer', u'reaction', u'woman'] [u'fund', u'allow', u'month', u'public', u'transport'] [u'gall', u'cricket', u'stadium', u'rebuild'] [u'game', u'action'] [u'game', u'citi', u'leav', u'warn', u'ring'] [u'glacier', u'shrink', u'scientist'] [u'googl', u'report', u'fold', u'profit', u'jump'] [u'govt', u'probe', u'irrig', u'donat', u'plan'] [u'govt', u'urg', u'honour', u'educ', u'commit'] [u'green', u'expect', u'nhill', u'loss'] [u'greenspan', u'comment', u'lift', u'stock'] [u'green', u'seek', u'releas', u'advic', u'aerial'] [u'gulbi', u'lead', u'mexico'] [u'gunn', u'timber', u'suppli', u'short', u'list'] [u'hanoi', u'trip', u'earn', u'fonda', u'tobacco', u'spit'] [u'harmison', u'take', u'trick', u'durham'] [u'highland', u'hurrican'] [u'hill', u'wont', u'contest', u'arnhem', u'preselect'] [u'hindmarsh', u'swap', u'canberra', u'south', u'franc'] [u'hitman', u'jail', u'essendon', u'murder'] [u'wit', u'deni', u'govt', u'polic', u'statement', u'claim'] [u'hors', u'rider', u'converg', u'alpha', u'campdraft'] [u'hous', u'estat', u'get', u'green', u'light'] [u'illeg', u'drug', u'racket', u'target', u'region'] [u'indian', u'paratroop', u'bite', u'colleagu', u'nose'] [u'indigen', u'work', u'program', u'shake', u'plan'] [u'indonesian', u'fishermen', u'threaten', u'custom', u'offic'] [u'indonesian', u'polic', u'probe', u'second', u'ringlead', u'theori'] [u'industri', u'unrest', u'possibl', u'nurs', u'home', u'work'] [u'irresist', u'nadal', u'storm', u'barcelona'] [u'irrit', u'plane', u'tree', u'council', u'repriev'] [u'italian', u'titl', u'race', u'enter', u'final', u'straight'] [u'jackson', u'prosecut', u'deni', u'expert', u'wit'] [u'jail', u'redevelop', u'earn', u'prais'] [u'kangaroo', u'triumph', u'kiwi'] [u'killer', u'allow', u'view', u'murder', u'tap'] [u'killer', u'win', u'injunct', u'documentari'] [u'kiwi', u'ignor', u'whitewash', u'predict'] [u'koizumi', u'apologis', u'japan', u'wartim', u'record'] [u'landhold', u'consid', u'legal', u'action', u'irrig'] [u'landhold', u'urg', u'protest', u'devalu'] [u'lara', u'hold', u'wobbl', u'west', u'indi'] [u'liber', u'leader', u'urg', u'fight', u'state', u'base'] [u'lion', u'coach', u'encourag', u'local', u'footi', u'player'] [u'loan', u'scheme', u'creat', u'student', u'debt', u'labor'] [u'local', u'state', u'govt', u'tell', u'team', u'asbesto'] [u'lockyer', u'weak', u'link', u'defenc', u'say', u'bellami'] [u'long', u'weekend', u'driver', u'urg', u'stay', u'safe'] [u'arrest', u'frankston', u'stab'] [u'charg', u'bash', u'incid'] [u'charg', u'polic', u'foil', u'prison', u'drug'] [u'guilti', u'clear', u'nativ', u'veget'] [u'shoot', u'dead', u'melbourn', u'home'] [u'market', u'close', u'week', u'upbeat', u'note'] [u'mayor', u'hit', u'rate', u'rise', u'claim'] [u'mcgauran', u'pledg', u'support', u'sudanes'] [u'meet', u'debat', u'statehood', u'idea'] [u'melbourn', u'shoot', u'garag'] [u'miner', u'trap', u'turkish', u'blast'] [u'mine', u'process', u'list', u'environment'] [u'minist', u'play', u'doubl', u'digit', u'rate', u'rise'] [u'minist', u'stand', u'south', u'east', u'auslink', u'fund', u'snub'] [u'mous', u'plagu', u'threaten', u'properti'] [u'mugab', u'rap', u'summit', u'address'] [u'netherland', u'report', u'human', u'case'] [u'council', u'overturn', u'fluorid', u'plan'] [u'breakthrough', u'miss', u'woman', u'case'] [u'chang', u'expect', u'newspap', u'takeov'] [u'feel', u'petrol', u'tax', u'impact'] [u'surviv', u'fall', u'cliff'] [u'improv', u'counter', u'terror', u'prepared'] [u'interest', u'troubl', u'airlin'] [u'kid', u'access', u'internet', u'porn', u'studi'] [u'opposit', u'doubt', u'expand', u'health', u'inquiri'] [u'oversea', u'doctor', u'defend'] [u'pair', u'jail', u'friend', u'vicious', u'stab', u'murder'] [u'palm', u'hear', u'tell', u'accus', u'ringlead', u'didnt'] [u'patient', u'wait', u'anymor'] [u'pest', u'control', u'prove', u'success'] [u'investig', u'senior', u'offic'] [u'plan', u'schoolgirl', u'killer', u'parol'] [u'plan', u'forum', u'short', u'councillor'] [u'plan', u'thomson', u'river', u'cruis'] [u'plan', u'bora', u'ring', u'preserv'] [u'polic', u'appeal', u'crash', u'wit'] [u'polic', u'busi', u'tackl', u'domest', u'violenc'] [u'polic', u'honour', u'croc', u'attack', u'rescu'] [u'polic', u'hunt', u'golf', u'club', u'arm', u'bandit'] [u'policeman', u'charg', u'drug', u'traffic'] [u'polic', u'glider', u'crash', u'victim'] [u'polic', u'search', u'car', u'pursuit'] [u'polic', u'search', u'child', u'assault'] [u'polic', u'seek', u'public', u'help', u'miss'] [u'polic', u'shire', u'help', u'form', u'communiti', u'safeti', u'plan'] [u'polic', u'crack', u'driver', u'long', u'weekend'] [u'polic', u'spray', u'contain', u'knife', u'wield', u'woman'] [u'pope', u'want', u'serv', u'honour'] [u'plate', u'driver', u'die', u'highway', u'crash'] [u'public', u'urg', u'attend', u'local', u'anzac', u'servic'] [u'race', u'board', u'fear', u'bet', u'exchang', u'gambl'] [u'raider', u'sign', u'disgrac', u'knight'] [u'rail', u'line', u'reopen', u'temporarili'] [u'red', u'lose', u'mcmeniman', u'shark', u'clash'] [u'report', u'warn', u'increas', u'dodgi', u'hostel'] [u'research', u'put', u'daili', u'darfur', u'toll'] [u'resid', u'unhappi', u'youth', u'centr', u'plan'] [u'richmond', u'clinic', u'nurs', u'lift', u'work', u'ban'] [u'rijkaard', u'rise', u'real', u'bait'] [u'hope', u'unit', u'deal'] [u'ruddock', u'kick', u'start', u'indonesian', u'prison', u'treati'] [u'russia', u'brother', u'attempt', u'indian', u'ocean', u'rowboat'] [u'schooli', u'untap', u'market', u'keech'] [u'scott', u'set', u'pace', u'china'] [u'secur', u'firm', u'mourn', u'death', u'australian', u'iraq'] [u'senat', u'pull', u'plug', u'internet', u'hunter'] [u'shakespear', u'portrait', u'turn', u'fake'] [u'shake', u'plan', u'busi', u'chamber'] [u'sheedi', u'say', u'anzac', u'clash', u'reward', u'success'] [u'shiit', u'mosqu', u'bomb', u'kill'] [u'ship', u'crew', u'member', u'hurt', u'blast'] [u'shire', u'hit', u'department', u'duplic'] [u'shop', u'centr', u'propon', u'back', u'council', u'decis'] [u'singapor', u'airlin', u'hike', u'fuel', u'surcharg'] [u'cling', u'life'] [u'joh', u'heart', u'tick'] [u'small', u'busi', u'war', u'northern', u'expo'] [u'smoker', u'right', u'know', u'cigarett', u'content'] [u'smoke', u'ban', u'playground'] [u'solicitor', u'believ', u'death', u'custodi', u'photo'] [u'solomon', u'danger', u'fail', u'faze', u'judici', u'figur'] [u'spanish', u'approv', u'marriag'] [u'sudanes', u'govt', u'name', u'condemn'] [u'tabl', u'grape', u'bodi', u'urg', u'help', u'grower'] [u'tafe', u'plan', u'caus', u'controversi'] [u'encourag', u'short', u'term', u'park', u'invest'] [u'teacher', u'vote', u'disrupt', u'school'] [u'teacher', u'vote', u'govt', u'offer'] [u'tenni', u'success', u'delhi'] [u'todd', u'clear', u'violent', u'conduct'] [u'tourism', u'bodi', u'oppos', u'plan'] [u'tourism', u'grant', u'approv', u'prove', u'tough'] [u'trainer', u'fin', u'hors', u'disqualifi', u'posit', u'swab'] [u'truck', u'firm', u'wast', u'dump', u'convoy', u'protest'] [u'bomb', u'attack', u'shiit', u'mosqu'] [u'uefa', u'adopt', u'home', u'grow', u'polici'] [u'want', u'passeng', u'name'] [u'vandal', u'attack', u'gunnedah', u'school'] [u'virgin', u'mari', u'wall', u'stain', u'draw', u'faith'] [u'visit', u'aussi', u'say', u'gallipoli', u'roadwork'] [u'wast', u'depot', u'plan', u'continu'] [u'town', u'wait', u'memori'] [u'watch', u'rice', u'warn', u'belarus'] [u'woman', u'allow', u'march', u'dog', u'hobart'] [u'wool', u'industri', u'reject', u'cruelti', u'claim'] [u'digger', u'buri', u'franc'] [u'accus', u'moussaoui', u'plead', u'guilti'] [u'agassi', u'haa', u'knock', u'houston'] [u'alleg', u'heroin', u'smuggler', u'say', u'famili', u'threaten'] [u'answer', u'seek', u'copi', u'murder', u'victim', u'video'] [u'anzac', u'cove', u'road', u'open'] [u'aussi', u'cole', u'share', u'lead', u'houston'] [u'australian', u'sentenc', u'death', u'vietnam', u'report'] [u'australia', u'face', u'china', u'play'] [u'bali', u'accus', u'say', u'famili', u'threaten'] [u'bass', u'carp', u'control', u'penrith', u'lake'] [u'beatti', u'accus', u'hospit', u'stunt'] [u'berlusconi', u'ask', u'form', u'govern'] [u'brave', u'bronco', u'shark'] [u'bush', u'name', u'marin', u'offic'] [u'bomb', u'kill', u'iraq'] [u'cat', u'turn', u'power', u'thriller'] [u'command', u'say', u'soldier', u'concern'] [u'costello', u'immatur', u'refshaug', u'say'] [u'cowboy', u'chanc', u'beat', u'panther'] [u'custom', u'offic', u'prais', u'arm', u'stand'] [u'cut', u'loom', u'budget', u'go', u'deficit'] [u'darci', u'lead', u'bulldog', u'stun', u'victori'] [u'care', u'appear', u'prevent', u'child', u'cancer'] [u'mourn', u'zambian', u'factori', u'blast', u'victim'] [u'demon', u'triumph', u'swan'] [u'depos', u'ecuadorean', u'leader', u'question', u'ouster'] [u'deputi', u'commission', u'appoint', u'inquiri'] [u'despair', u'british', u'serial', u'killer', u'suicid'] [u'docker', u'blue'] [u'drink', u'driver', u'nab', u'overnight', u'blitz'] [u'eel', u'strong', u'tiger'] [u'ellison', u'pledg', u'stand', u'death', u'penalti'] [u'timor', u'refus', u'call', u'step'] [u'labor', u'grassbi', u'die'] [u'premier', u'die'] [u'freeman', u'famili', u'year', u'debt'] [u'grant', u'join', u'bulldog', u'club'] [u'group', u'aim', u'revitalis', u'memori', u'tree'] [u'hawk', u'look', u'maintain', u'momentum'] [u'discuss', u'pont'] [u'indian', u'truck', u'crash', u'kill'] [u'indigen', u'cancer', u'rat', u'blame', u'poor', u'health', u'care'] [u'industri', u'fear', u'horticultur', u'loss'] [u'injur', u'kewel', u'miss', u'confeder'] [u'injur', u'sing', u'miss', u'week'] [u'inquiri', u'possibl', u'mcgee', u'case'] [u'insect', u'beelin', u'freedom'] [u'iran', u'want', u'part', u'rover', u'carmak'] [u'increas', u'scrutini'] [u'jone', u'cling', u'sprint', u'dream'] [u'korea', u'hold', u'high', u'level', u'talk', u'jakarta'] [u'malaysian', u'call', u'aust', u'sign', u'aggress'] [u'kill', u'light', u'plane', u'crash'] [u'mehrten', u'claim', u'point', u'record', u'crusad', u'tame'] [u'meningococc', u'claim', u'teenag', u'life'] [u'milit', u'warn', u'aust', u'troop', u'leav', u'iraqi', u'unharm'] [u'mobil', u'phone', u'prank', u'catch', u'man', u'head'] [u'seek', u'cabomba', u'weed'] [u'tabcorp', u'hold', u'free', u'onlin', u'game', u'licenc'] [u'deni', u'respons', u'anzac', u'cove', u'road', u'work'] [u'polic', u'bust', u'forger'] [u'polic', u'stand'] [u'polic', u'seek', u'report', u'assault'] [u'polic', u'seek', u'hold', u'brisban', u'video', u'store'] [u'pope', u'thank', u'journalist'] [u'popul', u'econom', u'growth', u'senat', u'say'] [u'protea', u'charg', u'barbado'] [u'red', u'tune', u'defeat', u'shark'] [u'reluct', u'shoe', u'bomb', u'plotter', u'jail'] [u'resili', u'swan', u'dee'] [u'roo', u'beat', u'gallant', u'hawk'] [u'rspca', u'welcom', u'duck', u'quail', u'hunt'] [u'scott', u'shoot', u'leader', u'beij'] [u'scott', u'increas', u'lead', u'beij'] [u'seminar', u'tackl', u'gift', u'children', u'need'] [u'die'] [u'die', u'age'] [u'joh', u'famili', u'maintain', u'bedsid', u'vigil'] [u'southcorp', u'takeov', u'threaten', u'job'] [u'stradivari', u'violin', u'fetch', u'record', u'auction', u'price'] [u'superfin', u'wool', u'bale', u'fetch', u'price'] [u'telstra', u'profit', u'concern', u'number'] [u'tennant', u'creek', u'search'] [u'charg', u'scream', u'theft'] [u'polic', u'face', u'close', u'hear'] [u'trade', u'hand', u'risk', u'invest'] [u'turkey', u'throw', u'secur', u'cordon', u'anzac', u'cove'] [u'general', u'lose', u'command', u'ghraib', u'abus'] [u'seek', u'death', u'penalti', u'moussaoui'] [u'vatican', u'spain', u'spar', u'marriag'] [u'ask', u'aquarium', u'plant'] [u'wall', u'street', u'take', u'stock', u'surg'] [u'water', u'assessor', u'join', u'tsunami', u'relief', u'effort'] [u'whitlam', u'govt', u'minist', u'grassbi', u'die'] [u'woman', u'arrest', u'wendi', u'chilli', u'finger', u'case'] [u'train', u'camp', u'heritag', u'list'] [u'milan', u'thrash', u'parma'] [u'airport', u'concern', u'secur', u'card', u'cost'] [u'angola', u'critic', u'stage', u'marburg', u'battl'] [u'annan', u'press', u'burma', u'junta', u'leader', u'democraci'] [u'archaeologist', u'warn', u'tomb', u'raid', u'rife', u'asia'] [u'armenia', u'demand', u'turkey', u'acknowledg', u'genocid'] [u'australia', u'miss'] [u'bali', u'accus', u'famili', u'threaten'] [u'bali', u'suspect', u'claim', u'choic', u'smuggl', u'heroin'] [u'bayern', u'munich', u'close', u'titl'] [u'beatti', u'confid', u'bundaberg', u'inquiri', u'result'] [u'benedict', u'inaugur', u'pope'] [u'berlusconi', u'announc', u'administr'] [u'blue', u'comeback', u'stun', u'stormer'] [u'bomb', u'kill', u'soldier', u'sailor', u'iraq'] [u'build', u'industri', u'look', u'migrant', u'women'] [u'bulldog', u'hang', u'defeat', u'gallant', u'knight'] [u'bull', u'final', u'hop', u'aliv'] [u'carr', u'remain', u'tight', u'lip', u'inquiri'] [u'carr', u'urg', u'polic', u'probe', u'specul'] [u'carr', u'urg', u'public', u'judg', u'offic'] [u'cole', u'share', u'houston', u'lead', u'ahead', u'final', u'round'] [u'costello', u'play', u'spend', u'expect'] [u'costello', u'seek', u'valu', u'money', u'treatment'] [u'darwin', u'polic', u'stage', u'anti', u'social', u'behaviour', u'clampdown'] [u'villier', u'lead', u'protea', u'total', u'barbado'] [u'doubl', u'suicid', u'bomb', u'tikrit', u'kill', u'seven'] [u'driver', u'throw', u'weight'] [u'drought', u'blame', u'creepi', u'crawli', u'come', u'indoor'] [u'ecuador', u'presid', u'leav', u'countri'] [u'everton', u'snatch', u'draw', u'stay', u'champion', u'leagu'] [u'explod', u'toad', u'baffl', u'expert'] [u'govt', u'urg', u'qualiti', u'control', u'oversea', u'doctor'] [u'ferrari', u'suppli', u'engin', u'sauber'] [u'crew', u'attack', u'fight', u'blaze'] [u'children', u'nepal', u'bomb', u'blast'] [u'flood', u'chines', u'coal', u'trap', u'report'] [u'journalist', u'contest', u'arnhem', u'seat'] [u'fraudster', u'sell', u'indian', u'hous', u'websit'] [u'govt', u'abandon', u'park'] [u'govt', u'name', u'funer', u'date'] [u'govt', u'stop', u'hunt', u'game', u'reserv'] [u'grand', u'arme', u'elvstroem', u'unsuccess', u'hong', u'kong'] [u'grassbi', u'give', u'state', u'funer'] [u'howard', u'attend', u'nation', u'servic'] [u'howard', u'turkish', u'discuss', u'gallipoli', u'roadwork'] [u'ask', u'japan', u'reflect', u'histori'] [u'impress', u'eagl', u'outclass', u'lion'] [u'iran', u'determin', u'resum', u'uranium', u'enrich'] [u'katherin', u'cultur', u'precinct', u'await', u'feder', u'cash'] [u'lib', u'law', u'label', u'absurd'] [u'life', u'save', u'surgeri', u'wait', u'patient', u'tell'] [u'london', u'olymp', u'suffer', u'setback'] [u'charg', u'attempt', u'murder', u'offic'] [u'court', u'step', u'children', u'death'] [u'martin', u'face', u'defam', u'action'] [u'middlesbrough', u'thump', u'west', u'brom'] [u'mourinho', u'say', u'chelsea', u'readi', u'titl'] [u'mourner', u'light', u'candl'] [u'urg', u'doctor', u'support', u'veteran'] [u'nalbandian', u'seed', u'munich'] [u'korea', u'strengthen', u'nuclear', u'deterr'] [u'north', u'south', u'korea', u'meet', u'jakarta'] [u'norwich', u'cling', u'premiership'] [u'offic', u'dead', u'melbourn', u'shoot'] [u'offic', u'draw', u'alic', u'spring', u'mele'] [u'oscar', u'win', u'british', u'actor', u'john', u'mill', u'die'] [u'palac', u'upset', u'liverpool'] [u'palestinian', u'leader', u'reshuffl', u'secur', u'chief'] [u'plastic', u'factori', u'prompt', u'health', u'concern'] [u'plastic', u'supplier', u'assess', u'effect', u'warehous'] [u'polic', u'appeal', u'calm', u'children', u'death'] [u'polic', u'servic', u'uniform', u'confisc'] [u'polic', u'investig', u'offic', u'shoot', u'death'] [u'polic', u'mourn', u'offic', u'death'] [u'polic', u'shake', u'offic', u'fatal', u'shoot'] [u'polic', u'warn', u'fals', u'weapon', u'claim'] [u'pope', u'benedict', u'instal', u'head', u'cathol'] [u'prison', u'prepar', u'anzac', u'memori', u'sit'] [u'prison', u'reform', u'group', u'call', u'drug', u'rehab', u'servic'] [u'properti', u'tycoon', u'threat', u'pathet', u'ploy', u'govt', u'say'] [u'clinch', u'dutch', u'titl'] [u'real', u'snatch', u'villar'] [u'right', u'watchdog', u'demand', u'tortur', u'probe'] [u'roddick', u'face', u'grosjean', u'houston', u'final'] [u'romanian', u'report', u'iraq', u'hostag', u'releas'] [u'rover', u'citi', u'draw'] [u'saint', u'tiger', u'win'] [u'scott', u'sight', u'victori', u'beij'] [u'scott', u'victori', u'beij'] [u'eagl', u'trounc', u'rabbitoh'] [u'secur', u'tighten', u'pope', u'inaugur'] [u'joh', u'civil', u'right', u'legaci', u'condemn'] [u'stanhop', u'pay', u'tribut', u'grassbi'] [u'storm', u'thunder', u'past', u'raider'] [u'student', u'union', u'warn', u'fee', u'local', u'music'] [u'need', u'kill', u'swan', u'river', u'bacteria'] [u'survey', u'highlight', u'drug', u'crime', u'link'] [u'tasmanian', u'town', u'ralli', u'support', u'corbi'] [u'tate', u'injuri', u'taint', u'bronco'] [u'tight', u'secur', u'ahead', u'pope', u'inaugur'] [u'tribut', u'flow'] [u'turkey', u'ban', u'haka', u'gallipoli'] [u'forc', u'detain', u'helicopt', u'down', u'suspect'] [u'polic', u'review', u'safeti', u'procedur'] [u'villa', u'miss', u'bolton'] [u'wine', u'maker', u'feel', u'mix', u'southcorp', u'takeov'] [u'kill', u'twin', u'baghdad', u'blast'] [u'chines', u'miner', u'trap', u'flood'] [u'govt', u'pour', u'cold', u'water', u'call'] [u'adelaid', u'factori', u'oper'] [u'airport', u'head', u'say', u'cost', u'unrealist'] [u'anzac', u'cove', u'draw', u'huge', u'crowd'] [u'anzac', u'cove', u'road', u'reaction', u'exagger'] [u'anzac', u'crowd', u'break', u'record', u'brisban'] [u'anzac', u'mark', u'central', u'west'] [u'anzac', u'wider', u'mean', u'governor'] [u'anzac', u'take', u'special', u'signific', u'darwin'] [u'anzac', u'hill', u'swamp', u'dawn', u'servic'] [u'anzac', u'join', u'commemor'] [u'anzac', u'parad', u'draw', u'enthusiast', u'crowd'] [u'anzac', u'forg', u'legend'] [u'anzac', u'spirit', u'aliv', u'mackay'] [u'anzac', u'spirit', u'high', u'port', u'lincoln'] [u'anzac', u'rememb', u'thousand'] [u'anzac', u'rememb', u'port', u'moresbi'] [u'anzac', u'rememb', u'anthem'] [u'archaeologist', u'gallipoli', u'medic', u'staff', u'ship'] [u'armenian', u'rememb', u'year', u'kill'] [u'armstrong', u'struggl', u'georgia'] [u'aussi', u'gerran', u'line', u'tour', u'franc', u'spot'] [u'author', u'seek', u'water', u'fee', u'explan'] [u'axum', u'obelisk', u'complet', u'return', u'journey'] [u'bali', u'smuggler', u'catch', u'hand'] [u'barcelona', u'bite', u'malaga', u'rout'] [u'beatti', u'outlin', u'hospit', u'inquiri', u'term'] [u'bell', u'ring', u'honour', u'anzac'] [u'bendigo', u'firm', u'win', u'classroom', u'contract'] [u'bendigo', u'resid', u'rememb', u'fall', u'dawn'] [u'crowd', u'flock', u'hobart', u'dawn', u'servic'] [u'bigger', u'crowd', u'attend', u'coff', u'harbour', u'march'] [u'march', u'visitor', u'number', u'gold', u'coast', u'airport'] [u'blair', u'face', u'pressur', u'iraq', u'polici'] [u'bomber', u'claim', u'sixth', u'anzac'] [u'brack', u'promis', u'investig', u'offic'] [u'brisban', u'commemor', u'dead'] [u'busi', u'warn', u'anzac', u'trade', u'restrict'] [u'cadel', u'fifth', u'vino', u'fire', u'tour', u'warn'] [u'better', u'ballarat', u'veget', u'plan'] [u'boost', u'local', u'pregnanc', u'health', u'care'] [u'call', u'patrol', u'review', u'wake', u'polic', u'shoot'] [u'call', u'grow', u'simpson', u'award'] [u'campaign', u'promot', u'safeti', u'children'] [u'cape', u'york', u'communiti', u'pay', u'respect', u'anzac'] [u'capsicum', u'spray', u'fight', u'weapon'] [u'crash', u'victim', u'succumb', u'injuri'] [u'celtic', u'huge', u'step', u'titl', u'ibrox'] [u'children', u'turn', u'surfer', u'paradis', u'anzac'] [u'claim', u'refuge', u'send', u'christma', u'island'] [u'costello', u'accus', u'play', u'propaganda'] [u'council', u'plan', u'memori', u'grassbi'] [u'counsellor', u'head', u'town', u'death', u'scandal'] [u'coupl', u'face', u'court', u'polic', u'assault'] [u'crowd', u'gather', u'pub', u'tradit'] [u'crowd', u'rememb', u'digger', u'dawn', u'servic'] [u'crown', u'princess', u'mari', u'pregnant'] [u'dawn', u'servic', u'attract', u'crowd', u'rockhampton'] [u'dawn', u'servic', u'honour', u'gallipoli', u'dead'] [u'dawn', u'vigil', u'honour', u'death', u'railway', u'pow'] [u'death', u'toll', u'rise', u'japan', u'train', u'crash'] [u'decis', u'mill', u'worri'] [u'devast', u'nadal', u'win', u'fourth', u'titl', u'year'] [u'disabl', u'servic', u'seek', u'fund'] [u'owner', u'march', u'order'] [u'downer', u'feel', u'rout', u'sign', u'asean', u'treati'] [u'dozen', u'injur', u'japanes', u'train', u'derail'] [u'dozen', u'kill', u'train', u'smash', u'build'] [u'driver', u'remind', u'easi', u'road'] [u'driver', u'urg', u'care', u'anzac', u'road', u'toll', u'hit'] [u'drought', u'forc', u'pest', u'insid'] [u'elton', u'john', u'marri', u'partner', u'windsor', u'wed'] [u'fear', u'air', u'cdep', u'scheme', u'chang'] [u'forc', u'restaur', u'evacu'] [u'fischer', u'call', u'monument', u'honour', u'hero'] [u'injur', u'kabul', u'runway', u'accid'] [u'forb', u'offic', u'gallipoli', u'servic'] [u'premier', u'pay', u'tribut', u'good', u'friend'] [u'foster', u'takeov', u'result', u'loss'] [u'detain', u'iraq', u'helicopt', u'crash'] [u'injur', u'highway', u'crash'] [u'reserv', u'news', u'month', u'away'] [u'govt', u'consid', u'option', u'tackl', u'antisoci', u'woe'] [u'govt', u'region', u'spend', u'boost', u'aim', u'lift', u'tourism'] [u'govt', u'urg', u'sign', u'feder', u'train', u'deal'] [u'govt', u'warn', u'limit', u'treatment'] [u'head', u'brillianc', u'give', u'dragon', u'rooster', u'scalp'] [u'high', u'tech', u'airborn', u'magnet', u'help', u'diamond'] [u'hundr', u'stop', u'honour', u'anzac', u'spirit'] [u'hunter', u'resid', u'turn', u'commemor', u'anzac'] [u'injuri', u'wheel', u'drive', u'hors', u'accid'] [u'interact', u'memori', u'plan', u'bronhil'] [u'intern', u'servic', u'commemor', u'anzac'] [u'iraqi', u'polic', u'detain', u'reuter', u'cameraman'] [u'iraq', u'suicid', u'bomb', u'kill'] [u'israel', u'presid', u'weizman', u'die', u'age'] [u'japanes', u'coalit', u'win', u'elect'] [u'joker', u'fin', u'fals', u'weapon', u'claim'] [u'jone', u'call', u'calm', u'amid', u'forc', u'recruit', u'raid'] [u'kerin', u'call', u'region', u'road', u'fund'] [u'labor', u'attack', u'govt', u'anzac', u'cove', u'road'] [u'labour', u'hire', u'firm', u'secur', u'telstra', u'contract'] [u'labour', u'shortag', u'prolong', u'drought', u'recoveri'] [u'larg', u'crowd', u'adelaid', u'honour', u'anzac'] [u'chang', u'help', u'save', u'prison', u'payout'] [u'say', u'mcgee', u'late', u'breath', u'test'] [u'loyal', u'anzac', u'follow', u'attend', u'dawn', u'servic'] [u'maguir', u'shrug', u'sicken', u'clash', u'skull'] [u'charg', u'dead', u'camp'] [u'charg', u'teacher', u'murder'] [u'charg', u'murder', u'alic', u'spring'] [u'detain', u'hundr', u'child', u'alleg'] [u'massiv', u'passeng', u'plane', u'flight'] [u'mayor', u'back', u'north', u'beach', u'bather', u'pavilion', u'revamp'] [u'mcrae', u'signal', u'rabbitoh', u'cull'] [u'melbourn', u'commemor', u'dead'] [u'memori', u'honour', u'battl', u'britain', u'hero'] [u'michael', u'palin', u'hang', u'travel', u'shoe'] [u'milit', u'afghan', u'soldier', u'kill', u'battl'] [u'milosev', u'crime', u'trial', u'resum', u'health'] [u'miner', u'probe', u'nickel', u'deposit', u'signific'] [u'youth', u'attend', u'anzac', u'servic'] [u'moroney', u'refus', u'discuss', u'inquiri', u'complaint'] [u'moruya', u'hospit', u'renal', u'servic'] [u'mossi', u'diseas', u'threat', u'investig'] [u'nedv', u'keep', u'juve', u'level', u'milan'] [u'inspir', u'south', u'africa', u'seri', u'victori'] [u'committe', u'develop', u'strateg', u'plan'] [u'twist'] [u'chief', u'set', u'sight', u'supermarket'] [u'korea', u'treat', u'sanction', u'nuclear', u'program'] [u'decis', u'emerg', u'servic'] [u'plan', u'canberra', u'airport', u'public'] [u'north', u'east', u'victoria', u'join', u'anzac', u'commemor'] [u'northern', u'rememb', u'anzac', u'spirit'] [u'nurs', u'board', u'welcom', u'practition', u'trial'] [u'rememb', u'anzac', u'dawn', u'servic'] [u'price', u'rise', u'comment', u'saudi', u'arabia'] [u'oldest', u'surviv', u'veteran', u'lead', u'perth', u'parad'] [u'opposit', u'accus', u'blair', u'lie', u'iraq'] [u'opposit', u'pressur', u'govt', u'reduc', u'class', u'size'] [u'oust', u'ecuadorian', u'leader', u'go', u'exil'] [u'panel', u'meet', u'palm', u'island', u'help', u'improv'] [u'park', u'master', u'plan', u'includ', u'tourism', u'upgrad'] [u'penni', u'farth', u'cyclist', u'look', u'forward', u'challeng'] [u'peopl', u'warn', u'stay', u'swan', u'river'] [u'plan', u'moot', u'northern', u'rail', u'link'] [u'polic', u'await', u'post', u'mortem', u'camperdown', u'bodi'] [u'polic', u'chief', u'refus', u'confirm', u'bulldog', u'phone'] [u'polic', u'death', u'spark', u'call', u'belt', u'review'] [u'polic', u'tough', u'teen', u'drinker'] [u'polic', u'question', u'crossbow', u'shoot'] [u'polic', u'video', u'store', u'bandit', u'respons'] [u'polic', u'seek', u'wit', u'alic', u'death'] [u'polic', u'search', u'fatal', u'crash', u'motorcycl'] [u'polic', u'worri', u'public', u'heed', u'drink', u'drive'] [u'pope', u'benedict', u'inaugur'] [u'pope', u'point', u'progress', u'dialogu', u'muslim'] [u'post', u'mortem', u'derbi', u'children'] [u'firm', u'distanc', u'hospit', u'inquiri'] [u'public', u'damag', u'accus'] [u'public', u'urg', u'attend', u'communiti', u'cabinet', u'meet'] [u'health', u'urg', u'doctor', u'scandal'] [u'ralli', u'toxic', u'dump', u'plan'] [u'record', u'crowd', u'gather', u'sydney', u'anzac'] [u'record', u'crowd', u'oldest', u'anzac', u'servic'] [u'record', u'crowd', u'honour', u'anzac'] [u'record', u'crowd', u'turn', u'perth', u'dawn', u'servic'] [u'record', u'number', u'expect', u'anzac', u'servic'] [u'report', u'claim', u'girl', u'line'] [u'report', u'crocodil', u'sight'] [u'riverina', u'reflect', u'anzac'] [u'roddick', u'claim', u'clay', u'court', u'crown'] [u'rooney', u'wonder', u'goal', u'spark', u'unit', u'fight'] [u'russia', u'semi', u'showdown'] [u'santo', u'clinch', u'power', u'deal'] [u'outback', u'rememb', u'anzac'] [u'scott', u'want', u'greg', u'norman'] [u'servic', u'draw', u'record', u'crowd'] [u'servic', u'honour', u'dead'] [u'shaun', u'question', u'lion', u'heart'] [u'shearer', u'join', u'hall', u'fame'] [u'singh', u'make', u'histori', u'houston'] [u'kill', u'aceh', u'clash'] [u'korea', u'warn', u'neighbour', u'nuclear', u'test'] [u'south', u'african', u'jail', u'life', u'bali', u'heroin'] [u'space', u'station', u'astronaut', u'snail', u'return', u'earth'] [u'space', u'station', u'crew', u'snail', u'return', u'earth'] [u'strong', u'competit', u'miner', u'explor', u'licenc'] [u'struggl', u'lion', u'downward', u'cycl', u'matthew'] [u'student', u'oppos', u'higher', u'hec', u'fee'] [u'sunshin', u'coast', u'celebr', u'anzac', u'tradit'] [u'superfin', u'wool', u'fetch', u'kilo'] [u'synagogu', u'clean', u'racist', u'graffiti', u'attack'] [u'tasmanian', u'turn', u'dawn', u'servic'] [u'tourism', u'group', u'join', u'forc'] [u'teen', u'accus', u'highway', u'speed', u'face', u'court'] [u'teen', u'shoot', u'death', u'consid', u'accident'] [u'terri', u'name', u'english', u'player', u'year'] [u'thousand', u'applaud', u'anzac', u'marcher'] [u'thousand', u'attend', u'wide', u'anzac', u'servic'] [u'thousand', u'gather', u'memori', u'rememb', u'dead'] [u'thousand', u'gather', u'darwin', u'anzac', u'servic'] [u'thousand', u'respect', u'anzac', u'veteran'] [u'thousand', u'turn', u'darwin', u'anzac', u'march'] [u'thousand', u'turn', u'gallipoli', u'dawn', u'servic'] [u'thousand', u'earli', u'celebr', u'anzac'] [u'thousand', u'watch', u'anzac', u'marcher', u'nation'] [u'hurt', u'coast', u'crash'] [u'togo', u'poll', u'end', u'dead', u'clash'] [u'tourist', u'train', u'plan', u'spark', u'debat'] [u'town', u'swell', u'gallipoli', u'commemor'] [u'trader', u'ask', u'close', u'anzac', u'march'] [u'tredrea', u'dismiss', u'talk', u'umpir', u'bias'] [u'tribut', u'pay', u'cooee'] [u'troop', u'kuwait', u'rememb', u'anzac'] [u'troop', u'mark', u'anzac', u'desert'] [u'troop', u'mark', u'anzac', u'iraq'] [u'truck', u'driver', u'die', u'highway', u'accid'] [u'tsunami', u'reduc', u'conflict', u'indonesia', u'aceh'] [u'turkish', u'veteran', u'adelaid', u'dawn'] [u'team', u'lebanon', u'syrian', u'troop', u'leav'] [u'incarcer', u'rate', u'climb'] [u'push', u'john', u'simpson'] [u'vermeulen', u'move', u'world', u'championship'] [u'veteran', u'encourag', u'march', u'townsvill'] [u'veteran', u'rank', u'thin'] [u'govt', u'urg', u'bring', u'bounti'] [u'vietnam', u'vet', u'reunit', u'dawn', u'servic'] [u'memorabilia', u'seek', u'bush'] [u'yilgarn', u'mine', u'form', u'joint', u'ventur', u'near', u'kalgoorli'] [u'young', u'pretend', u'alonso', u'beat', u'champion'] [u'youngster', u'keen', u'join', u'anzac', u'tradit'] [u'youth', u'stand', u'vigil', u'memori'] [u'accus', u'child', u'killer', u'face', u'relat', u'wrath'] [u'activist', u'plan', u'funer', u'picket'] [u'aerial', u'cull', u'target', u'feral', u'camel'] [u'age', u'care', u'worker', u'warn', u'give', u'evid'] [u'ord', u'dip', u'mark'] [u'heavyweight', u'ralli', u'oppos', u'voluntari'] [u'victorian', u'polic', u'offic', u'die', u'duti'] [u'applebi', u'readi', u'targa', u'challeng'] [u'arsenal', u'player', u'releas', u'bail'] [u'athlet', u'lose', u'battl'] [u'aust', u'vanguard', u'arriv', u'muthanna'] [u'baa', u'bark', u'forc', u'curfew', u'saleyard'] [u'bali', u'drug', u'accus', u'coerc', u'lawyer', u'say'] [u'barrist', u'lead', u'bundaberg', u'hospit', u'inquiri'] [u'bathurst', u'council', u'accus', u'govt', u'cost', u'shift'] [u'beatti', u'fume', u'funer', u'picket', u'plan'] [u'beatti', u'gear', u'death', u'inquiri'] [u'beij', u'lift', u'scott', u'sixth'] [u'crowd', u'swell', u'anzac', u'number', u'goldfield'] [u'break', u'hill', u'anzac', u'tradit'] [u'bronco', u'welcom', u'trio'] [u'busi', u'confid', u'slow', u'eas', u'rat', u'pressur'] [u'busi', u'will', u'contribut', u'civic', u'upgrad'] [u'cabl', u'beach', u'stinger', u'test', u'near'] [u'meet', u'discuss', u'bowl', u'club', u'sale'] [u'upper', u'hous', u'chang', u'boost', u'region'] [u'delay', u'fluorid', u'water', u'suppli'] [u'casa', u'warn', u'pilot', u'rural', u'power', u'line', u'danger'] [u'cathol', u'church', u'end', u'talk', u'east', u'timor', u'religi'] [u'cattl', u'produc', u'fear', u'japan', u'snap', u'tariff'] [u'cessnock', u'asbesto', u'widespread'] [u'chelsea', u'wait', u'titl', u'arsenal', u'beat'] [u'claim', u'princ', u'harri', u'risk', u'pursu'] [u'employ', u'controversi', u'consult'] [u'coal', u'project', u'nation', u'biggest'] [u'colleagu', u'tribut', u'offic'] [u'communiti', u'quiz', u'studi', u'need'] [u'costa', u'open', u'road', u'miss', u'link'] [u'council', u'await', u'port', u'campbel', u'appeal', u'detail'] [u'council', u'consid', u'support', u'hull', u'telstra', u'plan'] [u'councillor', u'consid', u'speed', u'limit', u'reduct'] [u'council', u'decid', u'rate', u'rise'] [u'council', u'share', u'emerg', u'road', u'fund'] [u'council', u'solar', u'energi', u'project'] [u'council', u'heritag', u'list', u'site'] [u'court', u'decis'] [u'death', u'toll', u'rise', u'japan', u'train', u'crash'] [u'deputi', u'commission', u'testifi', u'death', u'custodi'] [u'derbi', u'wharf', u'facelift'] [u'develop', u'doesnt', u'threaten', u'koala', u'mayor', u'say'] [u'downer', u'caution', u'east', u'timor', u'boundari'] [u'death', u'inquiri', u'jumbl', u'opposit'] [u'egan', u'impress', u'alic', u'anzac', u'turnout'] [u'enthusiasm', u'anzac', u'event', u'north', u'west'] [u'approv', u'sanction', u'anti', u'dump'] [u'kapooka', u'command', u'beat', u'iraq'] [u'taxman', u'fight', u'fraud', u'charg'] [u'father', u'admit', u'spear', u'kill'] [u'finch', u'send', u'danger', u'preced', u'stuart'] [u'anzac', u'bring', u'closur'] [u'flintoff', u'stay', u'target', u'ash', u'comeback'] [u'flood', u'hit', u'villag', u'ethiopia'] [u'forb', u'withdraw', u'art', u'outwest'] [u'forc', u'announc', u'waratah', u'sign'] [u'furneaux', u'group', u'island', u'market'] [u'call', u'simpson', u'award'] [u'loss', u'unlik', u'prosail', u'administr'] [u'geraldton', u'famili', u'feud', u'intensifi'] [u'girl', u'custodi', u'attack', u'student'] [u'global', u'bowler', u'year', u'win', u'local', u'open'] [u'govt', u'hail', u'broadband', u'scheme', u'success'] [u'govt', u'move', u'increas', u'afford', u'hous'] [u'govt', u'talk', u'flexibus', u'servic'] [u'govt', u'urg', u'releas', u'inquiri', u'detail'] [u'govt', u'wast', u'servic', u'rich'] [u'grape', u'produc', u'buyer'] [u'green', u'group', u'fight', u'kakadu', u'uranium', u'plan'] [u'harrison', u'face', u'racist', u'say', u'gregan'] [u'hart', u'back', u'lion', u'final'] [u'health', u'scheme', u'target', u'kid', u'behaviour'] [u'henri', u'doubt', u'final'] [u'high', u'court', u'decis', u'expect', u'affect', u'young'] [u'hird', u'johnson', u'avoid', u'suspens'] [u'hird', u'johnson', u'wait', u'panel', u'verdict'] [u'hmas', u'emkanimblaem', u'come', u'home'] [u'hoon', u'spark', u'brigad', u'fals', u'alarm', u'anger'] [u'howard', u'meet', u'turkish', u'roadwork'] [u'hyde', u'sidelin', u'fractur', u'skull'] [u'illiteraci', u'spark', u'pictur', u'afghan', u'candid'] [u'saviour', u'say', u'brown'] [u'increas', u'relianc', u'farmer', u'credit', u'armstrong'] [u'iraq', u'urg', u'patienc', u'administr'] [u'cut', u'wont', u'save', u'money', u'labor', u'warn'] [u'jackson', u'wife', u'testifi', u'child', u'trial'] [u'jail', u'popul', u'increas', u'forc', u'prison'] [u'japan', u'polic', u'raid', u'train', u'oper', u'offic'] [u'jolli', u'opt', u'trial', u'tribun'] [u'judg', u'wont', u'consid', u'prison', u'capac', u'societi'] [u'keelti', u'warn', u'bali', u'trial', u'media'] [u'labor', u'back', u'sign', u'asean', u'treati'] [u'labor', u'good', u'shape', u'presid', u'say'] [u'landhold', u'urg', u'reject', u'valuat'] [u'syrian', u'troop', u'leav', u'lebanon'] [u'latham', u'play', u'match', u'red'] [u'laycock', u'earn', u'rise', u'star', u'nomin'] [u'legal', u'argument', u'falconio', u'case', u'adjourn'] [u'lennon', u'call', u'rule', u'cabinet', u'secretari'] [u'liverpool', u'press', u'champ', u'leagu', u'special'] [u'local', u'branch', u'fill', u'execut', u'vacanc'] [u'log', u'protest', u'underway'] [u'long', u'weekend', u'drink', u'drive', u'worri', u'polic'] [u'macklin', u'deni', u'frontbench', u'shake'] [u'main', u'websit', u'hacker', u'schoolboy', u'watchdog'] [u'hold', u'death', u'threat', u'polic'] [u'face', u'court', u'assault', u'charg'] [u'marathon', u'explor', u'north', u'uranium', u'potenti'] [u'mayor', u'beat', u'yeppoon', u'freight', u'centr'] [u'mayor', u'voic', u'breweri', u'trade', u'hour', u'opposit'] [u'mayor', u'worri', u'govt', u'bypass', u'council', u'plan'] [u'meat', u'processor', u'look', u'attract', u'school', u'leaver'] [u'meet', u'seek', u'discuss', u'burril', u'lake', u'closur'] [u'microsoft', u'preview', u'secur', u'window'] [u'minist', u'seek', u'probe', u'doctor', u'resign'] [u'minist', u'schooli', u'comment', u'consid', u'naiv'] [u'joh', u'nation', u'presid'] [u'mount', u'rushmor', u'monument', u'seek', u'monash'] [u'air', u'concern', u'drink', u'unruli', u'miner'] [u'mundin', u'titl', u'fight'] [u'murder', u'trigger', u'region', u'polic', u'station', u'fear'] [u'naturopath', u'qualif', u'unverifi', u'inquest'] [u'zone', u'result', u'audit'] [u'airport', u'shuttl', u'trial', u'plan'] [u'measur', u'tackl', u'grog'] [u'school', u'cater', u'popul', u'boom'] [u'stage', u'kyoto', u'protocol', u'weak', u'minist', u'say'] [u'compo', u'pow', u'tortur', u'iraq'] [u'haka', u'anzac', u'servic', u'turkey'] [u'norwegian', u'fleet', u'kill', u'whale'] [u'aborigin', u'consid', u'polit', u'parti'] [u'hop', u'progress', u'timor', u'talk'] [u'remot', u'teacher', u'discuss', u'offer'] [u'price', u'fall', u'saudi', u'arabian', u'comment'] [u'vote', u'valu', u'expect', u'spark', u'fieri', u'debat'] [u'pari', u'print', u'seal', u'kiss'] [u'parol', u'board', u'clear', u'child', u'abus', u'liabil'] [u'investig', u'leak', u'phone', u'evid'] [u'pixi', u'skase', u'get', u'citizenship'] [u'polic', u'dont', u'consid', u'father', u'death', u'suspici'] [u'polic', u'helicopt', u'find', u'miss', u'bushwalk'] [u'polic', u'identifi', u'woman', u'kill', u'tsunami'] [u'polic', u'offic', u'kill', u'issu', u'traffic', u'ticket'] [u'polic', u'pleas', u'long', u'weekend', u'road', u'death'] [u'polic', u'raid', u'offic'] [u'polic', u'search', u'japan', u'train', u'crash', u'clue'] [u'polic', u'seek', u'lead', u'injur', u'case'] [u'pope', u'forget', u'elder', u'brother', u'say'] [u'popul', u'report', u'forc', u'hous', u'rethink'] [u'poverti', u'health', u'link', u'spotlight', u'workshop'] [u'pratt', u'advanc', u'estoril', u'dokic', u'look'] [u'premier', u'urg', u'reveal', u'polic', u'complaint'] [u'properti', u'expert', u'rat', u'hike'] [u'propos', u'heritag', u'list', u'spark', u'develop', u'fear'] [u'public', u'chanc', u'sign', u'condol', u'book'] [u'public', u'urg', u'attend', u'control', u'plan'] [u'public', u'warn', u'tough', u'water', u'polic'] [u'putin', u'make', u'democraci', u'prioriti'] [u'qanta', u'announc', u'canberra', u'servic'] [u'record', u'anzac', u'crowd', u'central'] [u'region', u'servic', u'fund', u'spotlight'] [u'rescuer', u'work', u'free', u'train', u'crash', u'survivor'] [u'resid', u'protest', u'marina', u'plan'] [u'ripper', u'vow', u'wont', u'buckl', u'costello', u'demand'] [u'royal', u'pregnanc', u'spark', u'danish', u'success', u'debat'] [u'rural', u'skill', u'opportun', u'student'] [u'cereal', u'grower', u'look', u'rain'] [u'saff', u'seek', u'southcorp', u'foster', u'safeguard'] [u'search', u'spark', u'bushwalk', u'precaut'] [u'selector', u'face', u'tough', u'decis'] [u'chang', u'sue', u'fianc', u'dump'] [u'shire', u'get', u'time', u'consid', u'power', u'station'] [u'shire', u'push', u'meet', u'water', u'minist'] [u'shoaib', u'take'] [u'skase', u'regain', u'citizenship'] [u'skill', u'summit', u'hunt', u'labour', u'shortag'] [u'skywest', u'feel', u'tender', u'pressur'] [u'sleep', u'judg', u'criticis', u'rape', u'trial', u'snooz'] [u'smith', u'origin', u'return'] [u'soldier', u'return', u'tsunami', u'relief', u'mission'] [u'somar', u'distanc', u'apolog', u'demand'] [u'special', u'train', u'announc', u'juvenil', u'justic'] [u'stayin', u'aliv', u'anger', u'prompt', u'gallipoli', u'music', u'rethink'] [u'struggl', u'scot', u'dump', u'william'] [u'student', u'union', u'advoc', u'afford', u'educ'] [u'surfer', u'prepar', u'hang', u'malibu', u'classic'] [u'syrian', u'troop', u'leav', u'lebanon'] [u'tabcorp', u'singapor', u'casino', u'project'] [u'taiwanes', u'opposit', u'leader', u'make', u'histor', u'china'] [u'takeov', u'creat', u'karadoc', u'wineri', u'uncertainti'] [u'tamworth', u'area', u'accid', u'free', u'long', u'weekend'] [u'tasmanian', u'releas', u'jail'] [u'tast', u'tasmania', u'festiv', u'risk'] [u'telco', u'profit', u'push', u'market', u'higher'] [u'togo', u'opposit', u'reject', u'poll', u'call', u'resist'] [u'togo', u'rival', u'pledg', u'uniti', u'govt', u'clash', u'continu'] [u'tourism', u'industri', u'berat', u'propos', u'chang'] [u'troop', u'return', u'home', u'tsunami', u'tour'] [u'belgian', u'releas', u'guantanamo'] [u'dead', u'wound', u'burma', u'market', u'blast'] [u'join', u'forc'] [u'union', u'await', u'teacher', u'offer', u'decis'] [u'union', u'deliv', u'westpac', u'deadlin'] [u'union', u'reject', u'funer', u'protest'] [u'union', u'urg', u'budget', u'apprenticeship', u'boost'] [u'union', u'warn', u'chang', u'impact'] [u'see', u'screen', u'act', u'cours'] [u'captur', u'afghan', u'drug', u'lord'] [u'clear', u'soldier', u'italian', u'agent', u'death'] [u'vandal', u'attack', u'welfar', u'agenc', u'prove', u'cost'] [u'vanuatu', u'ban', u'cash', u'payment', u'bride'] [u'veteran', u'group', u'furious'] [u'veteran', u'help', u'anzac', u'special'] [u'clear', u'villawood', u'pesticid', u'plant', u'clean'] [u'western', u'victorian', u'jobless', u'rate', u'rise'] [u'westpac', u'centr', u'worker', u'stop', u'work'] [u'whitak'] [u'wilko', u'name', u'england', u'churchil', u'squad'] [u'woman', u'accus', u'strangl', u'neighbour'] [u'woman', u'die', u'cabramatta', u'hous', u'blaze'] [u'women', u'remind', u'breast', u'check', u'visit'] [u'woodchipp', u'feel', u'abandon', u'govt'] [u'young', u'driver', u'catch', u'drink', u'drive', u'blitz'] [u'youth', u'anzac', u'spirit', u'live'] [u'zarqawi', u'escap', u'trap', u'report'] [u'steal', u'investor'] [u'restor', u'plan', u'perth', u'cathedr'] [u'budget', u'deficit', u'loom', u'portland', u'hospit'] [u'date', u'wind', u'power', u'project'] [u'cost', u'blowout', u'railway'] [u'abbott', u'defend', u'cutback', u'plan'] [u'odd', u'union', u'reform'] [u'accc', u'quiet', u'tobacco', u'case'] [u'accc', u'target', u'light', u'cigarett'] [u'accc', u'warn', u'telco', u'sport', u'right'] [u'speed', u'complaint', u'process'] [u'forc', u'chief', u'prais', u'tsunami', u'relief', u'effort'] [u'aldermen', u'tell', u'focus', u'follow', u'bite', u'claim'] [u'alleg', u'member', u'bali', u'place', u'suicid', u'watch'] [u'accus', u'costello', u'penni', u'pinch'] [u'ancestr', u'remain', u'return', u'yorta', u'yorta', u'elder'] [u'ancient', u'tomb', u'network', u'discov', u'carpark'] [u'anderson', u'deni', u'push', u'telstra', u'apolog'] [u'anderson', u'give', u'guarante', u'telstra', u'servic'] [u'anglican', u'minist', u'die'] [u'annan', u'await', u'report', u'syrian', u'pullout'] [u'prison', u'exchang', u'serv', u'sentenc'] [u'post', u'half', u'year', u'profit'] [u'aust', u'fish', u'boat', u'miss', u'seven', u'crew'] [u'author', u'plan', u'joh', u'funer'] [u'bail', u'refus', u'accus', u'murder', u'bank', u'robberi'] [u'bali', u'suspect', u'deni', u'fals', u'passport', u'alleg'] [u'beach', u'open', u'irukandji', u'sting'] [u'beatti', u'unveil', u'infrastructur', u'plan'] [u'beckham', u'nanni'] [u'boat', u'crew', u'like', u'help', u'vessel'] [u'breast', u'cancer', u'survivor', u'seek', u'dragon', u'boat', u'crew'] [u'brumbi', u'field', u'close', u'friend', u'halv'] [u'budget', u'unlik', u'includ', u'ballimor', u'town', u'water'] [u'busi', u'warn', u'thiev', u'short', u'chang'] [u'trobe', u'uni', u'financ'] [u'lion', u'sack', u'akermani'] [u'lion', u'sack', u'akermani', u'radio', u'gaff'] [u'parent', u'contribut', u'youth', u'self', u'harm'] [u'canberra', u'theatr', u'caption', u'shakespearean'] [u'canberra', u'higher', u'tech'] [u'carrara', u'host', u'friday', u'night', u'footi'] [u'carr', u'govt', u'infrastructur', u'plan', u'tatter', u'opposit'] [u'cityrail', u'probe', u'pram', u'incid'] [u'cityrail', u'bring', u'safeti', u'measur'] [u'comet', u'player', u'face', u'polic', u'charg'] [u'committe', u'promot', u'unsung', u'tourist', u'attract'] [u'communiti', u'concern', u'chang', u'wind', u'farm', u'plan'] [u'communiti', u'power', u'suppli', u'overhaul'] [u'communiti', u'project', u'fulli', u'cost'] [u'compani', u'environment', u'excel', u'award'] [u'complaint', u'delay', u'flexibus', u'defend'] [u'concern', u'rais', u'hospit', u'closur', u'consult'] [u'consum', u'group', u'hail', u'fine', u'cole'] [u'council', u'union', u'start', u'negoti'] [u'council', u'consid', u'civic', u'hall', u'option'] [u'council', u'defend', u'grazier', u'stock', u'rout', u'snub'] [u'council', u'union', u'support', u'funer', u'picket'] [u'council', u'play', u'asbesto', u'fear'] [u'council', u'figur', u'loan', u'repay'] [u'council', u'reject', u'critic', u'stay', u'wedderburn'] [u'council', u'reject', u'school', u'infrastructur', u'cost'] [u'council', u'threaten', u'withdraw', u'servic', u'fund'] [u'council', u'build', u'offshor', u'breakwat'] [u'court', u'convict', u'fiji', u'coup'] [u'court', u'rule', u'reinstat', u'worker', u'work'] [u'croc', u'reloc', u'mackay', u'come'] [u'danih', u'wari', u'docker'] [u'darwin', u'teacher', u'reject', u'offer'] [u'debat', u'rag', u'voluntari', u'student', u'union'] [u'defect', u'blair', u'fresh', u'poll', u'pressur'] [u'defenc', u'forc', u'recruit', u'pilbara'] [u'denmark', u'extend', u'mission', u'iraq'] [u'solv', u'year', u'serial', u'rapist', u'case'] [u'go', u'free', u'rip', u'child'] [u'domaszewicz', u'welcom', u'leski', u'inquest'] [u'doubt', u'linger', u'vanadium', u'reopen'] [u'dozen', u'timores', u'face', u'deport'] [u'consid', u'withdraw', u'william', u'murder', u'charg'] [u'dragonfli', u'studi', u'better', u'navig', u'clue'] [u'driver', u'cop', u'heavi', u'fine', u'seatbelt'] [u'drug', u'case', u'adjourn'] [u'elect', u'problem', u'spotlight', u'dalbi'] [u'elect', u'victori', u'prompt', u'togo', u'riot'] [u'engeri', u'plant', u'make', u'wave'] [u'reject', u'perth', u'quarri', u'approv'] [u'call', u'public', u'submiss', u'tuna', u'farm'] [u'errat', u'day', u'say', u'richo'] [u'escort', u'agenc', u'proprietor', u'give', u'wrong', u'sentenc'] [u'timor', u'reconsid', u'religi', u'educ'] [u'eurobodalla', u'rat', u'rise', u'percent'] [u'stanhop', u'staffer', u'plead', u'guilti', u'graffiti'] [u'farmer', u'ask', u'rural', u'ministri'] [u'farmer', u'fear', u'nino', u'loom'] [u'fevola', u'ban', u'match'] [u'fifa', u'boost', u'world', u'prize', u'money'] [u'finch', u'accept', u'match'] [u'fine', u'weather', u'spark', u'concern', u'winter', u'crop'] [u'arrest', u'anti', u'log', u'protest'] [u'aust', u'film', u'screen', u'cann'] [u'bundl'] [u'food', u'packag', u'combat', u'health', u'problem'] [u'footi', u'umpir', u'iraq', u'mission'] [u'forc', u'announc', u'sign'] [u'funer', u'friday', u'teen', u'shoot', u'victim'] [u'game', u'boss', u'hail', u'success', u'ticket', u'ballot'] [u'garden', u'dig', u'ancient', u'tool', u'treasur', u'trove'] [u'giant', u'airbus', u'take'] [u'giant', u'rhubarb', u'weed', u'infest', u'state'] [u'goonellabah', u'recognis', u'braveri'] [u'govern', u'fire', u'turk', u'genocid', u'claim'] [u'govt', u'deni', u'baxter', u'psychologist', u'unqualifi'] [u'govt', u'dept', u'consid', u'beach', u'restor', u'plan'] [u'govt', u'refus', u'reveal', u'stanc'] [u'govt', u'seek', u'public', u'hous', u'drive'] [u'govt', u'claim', u'leas', u'charg', u'windfal'] [u'govt', u'snub', u'council', u'land', u'acquisit'] [u'grape', u'grower', u'face', u'season'] [u'great', u'lake', u'council', u'seek', u'rate', u'rise', u'approv'] [u'greec', u'expect', u'continu', u'australian', u'support'] [u'green', u'bridg', u'construct', u'start'] [u'green', u'hutton', u'commemor', u'protest'] [u'guild', u'find', u'littl', u'rural', u'pharmaci', u'plan'] [u'health', u'safeti', u'inflationari', u'gillard'] [u'hobart', u'honour', u'errol', u'flynn', u'reserv'] [u'holiday', u'sustain', u'visitor', u'number', u'week'] [u'hospit', u'probe', u'wit', u'need', u'protect'] [u'howard', u'rule', u'ticket', u'gallipoli', u'servic'] [u'hungari', u'seek', u'extradit', u'perth'] [u'hydro', u'say', u'water', u'level', u'wont', u'affect', u'power', u'suppli'] [u'illeg', u'fish', u'blitz', u'wind'] [u'indigen', u'affair', u'ignor', u'fraser'] [u'indonesia', u'hose', u'talk', u'foreign', u'monitor'] [u'inflat', u'data', u'take', u'pressur', u'rat'] [u'infrastructur', u'plan', u'break', u'gold', u'coast'] [u'insur', u'resourc', u'push', u'market', u'lower'] [u'israel', u'probe', u'friend', u'death', u'soldier'] [u'japan', u'train', u'crash', u'toll', u'climb'] [u'cut', u'closur', u'help', u'boost', u'amcor', u'profit'] [u'judg', u'question', u'need', u'young', u'driver', u'matur'] [u'kangaroo', u'refus', u'gripe', u'adelaid', u'trip'] [u'karzai', u'flag', u'extend', u'afghanistan', u'mission'] [u'kimberley', u'clark', u'boast', u'record', u'quarter', u'profit'] [u'kurnel', u'sand', u'mine', u'propos', u'reject'] [u'laser', u'treatment', u'avail', u'royal', u'hobart'] [u'syrian', u'troop', u'leav', u'lebanon'] [u'lebanes', u'await', u'month', u'poll'] [u'liber', u'rift', u'emerg', u'moot', u'chang'] [u'librari', u'construct', u'go', u'schedul'] [u'lien', u'visit', u'seek', u'china', u'taiwan', u'stalem'] [u'light', u'wine', u'card'] [u'lion', u'accept', u'aka', u'apolog'] [u'luca', u'reveal', u'plan', u'star', u'war', u'seri'] [u'maliss', u'ban', u'miami', u'tantrum'] [u'charg', u'drug', u'raid'] [u'charg', u'policeman'] [u'pin', u'recov'] [u'mayor', u'see', u'grog'] [u'mayor', u'understand', u'disappoint', u'mountain'] [u'meal', u'wheel', u'bush', u'tucker', u'project', u'expand'] [u'meet', u'discuss', u'develop', u'aborigin', u'land'] [u'expans', u'depend', u'reduc', u'emiss'] [u'minist', u'reaffirm', u'waterfront', u'develop'] [u'miss', u'albani', u'woman', u'believ', u'murder'] [u'nation', u'form', u'telstra', u'sale', u'group'] [u'drug', u'offer', u'hope', u'breast', u'cancer', u'suffer'] [u'bali', u'accus', u'face', u'death', u'penalti'] [u'eiss', u'wind', u'farm'] [u'evid', u'scott', u'manhandl', u'wit'] [u'north', u'pole', u'expedit', u'break', u'world', u'record'] [u'true', u'villain', u'scientif', u'research', u'case'] [u'consid', u'tougher', u'penalti', u'violent', u'crime'] [u'protect', u'bodi'] [u'opposit', u'promis', u'increas', u'defenc', u'spend'] [u'price', u'fall', u'ahead', u'inventori', u'data'] [u'organ', u'farmer', u'vow', u'lock', u'basslink'] [u'outback', u'telescop', u'southern'] [u'accus', u'break', u'anzac', u'protect', u'promis'] [u'defend', u'anzac', u'pilgrim'] [u'polic', u'crack', u'drug', u'crime'] [u'polic', u'follow', u'lead', u'halvagi', u'murder'] [u'polic', u'search', u'woman', u'want', u'alleg', u'bank'] [u'polic', u'seek', u'death', u'bali'] [u'polic', u'seek', u'wit', u'policeman', u'death'] [u'polic', u'crack', u'rocki', u'youth'] [u'port', u'ban', u'extra', u'day', u'newman'] [u'primus', u'confid', u'power', u'track'] [u'public', u'right', u'hear', u'health', u'complaint'] [u'pump', u'continu', u'recov', u'leak', u'diesel'] [u'push', u'taxi', u'wheelchair', u'access'] [u'putin', u'visit', u'egypt', u'mubarak', u'talk'] [u'rate', u'rise', u'fear', u'eas'] [u'resid', u'ponder', u'asbesto', u'compo', u'option'] [u'review', u'order', u'communiti', u'correct', u'offic'] [u'erupt', u'cambridg', u'develop', u'project'] [u'sack', u'nepales', u'arrest'] [u'sack', u'nepales', u'hold', u'graft', u'charg'] [u'search', u'continu', u'arnhem', u'land', u'mysteri', u'boat'] [u'call', u'volunt'] [u'shark', u'attack', u'deckhand', u'trawler'] [u'sheedi', u'put', u'cupido', u'notic'] [u'smith', u'quit', u'repres', u'duti'] [u'state', u'wide', u'crackdown', u'illeg', u'park'] [u'surrog', u'mother', u'give', u'birth', u'quintuplet'] [u'targa', u'tasmania', u'head', u'launceston'] [u'tate', u'consid', u'surgeri', u'prolong', u'career'] [u'tennant', u'creek', u'week'] [u'thiev', u'steal', u'liber', u'laptop'] [u'togo', u'poll', u'violenc', u'leav', u'dead', u'hurt', u'hospit'] [u'tourism', u'number', u'boost', u'tweed'] [u'train', u'driver', u'plead', u'guilti', u'blood', u'test', u'refus'] [u'train', u'plough', u'lanka'] [u'trespass', u'flatten', u'histor', u'land', u'site', u'land'] [u'trucki', u'bridg', u'load', u'limit', u'remind'] [u'truck', u'stop', u'land', u'plan', u'move', u'ahead'] [u'turkey', u'ask', u'aust', u'join', u'gallipoli', u'construct'] [u'turkey', u'reject', u'gallipoli', u'heritag'] [u'belgian', u'guantanamo', u'detaine', u'charg'] [u'fear', u'return', u'darfur', u'scorch', u'earth', u'attack'] [u'disallow', u'intern', u'student'] [u'union', u'seek', u'answer', u'opposit', u'school'] [u'confirm', u'syrian', u'withdraw', u'lebanon'] [u'governor', u'approv', u'dead', u'forc'] [u'optimist', u'north', u'korea', u'nuclear', u'talk'] [u'urg', u'releas', u'terror', u'report', u'figur'] [u'vietnam', u'stage', u'event'] [u'visitor', u'centr', u'urg', u'reli', u'govt', u'fund'] [u'doubl', u'sever', u'redund'] [u'warm', u'weather', u'rais', u'fear', u'nino'] [u'wave', u'energi', u'plant', u'anchor', u'port', u'kembla'] [u'wheat', u'ship', u'limbo', u'amid', u'polit'] [u'william', u'want', u'field', u'leav', u'rugbi', u'leagu'] [u'wimbledon', u'prize', u'money', u'top', u'million'] [u'wollongong', u'council', u'join', u'provid', u'airport', u'fund'] [u'young', u'raider', u'strike'] [u'youth', u'crime'] [u'pull', u'controversi', u'documentari'] [u'adelaid', u'north', u'better', u'hospit', u'servic'] [u'airbus', u'project', u'herald'] [u'airlin', u'recruit', u'tourism', u'push'] [u'aluminium', u'giant', u'shed', u'job'] [u'hit', u'recruit', u'doctor', u'iraq'] [u'warn', u'medicar', u'wind'] [u'aust', u'join', u'zimbabw', u'human', u'right', u'commiss'] [u'australian', u'mark', u'tour', u'romandi'] [u'babi', u'shaker', u'fight', u'clear'] [u'bali', u'supplier', u'kill', u'shoot', u'polic'] [u'bali', u'polic', u'investig', u'fals', u'passport', u'claim'] [u'bali', u'suspect', u'relat', u'work', u'passport', u'offic'] [u'basketbal', u'chief', u'unveil', u'revamp', u'season'] [u'beazley', u'unfaz', u'latham', u'diari', u'talk'] [u'beckham', u'stun', u'nanni', u'claim'] [u'report', u'product', u'jump'] [u'bigamist', u'jail', u'tasmania'] [u'croc', u'farm', u'retir'] [u'blair', u'govt', u'releas', u'iraq', u'legal', u'advic'] [u'blair', u'attack', u'iraq', u'advic'] [u'blaze', u'break', u'lower', u'eyr', u'peninsula'] [u'boro', u'frustrat', u'magpi', u'stay', u'chase', u'europ'] [u'boyfriend', u'sentenc', u'year', u'jail', u'murder'] [u'breaker', u'mcisaac', u'join', u'western', u'forc'] [u'british', u'elect', u'linguist', u'minefield'] [u'bush', u'want', u'home', u'grow', u'energi'] [u'busi', u'competit', u'price'] [u'bypass', u'work', u'black', u'spot'] [u'peel', u'deviat', u'rush'] [u'canberra', u'resid', u'warn', u'vigil'] [u'carr', u'back', u'deputi', u'polic', u'chief', u'probe'] [u'issu', u'equip', u'warn'] [u'chariti', u'rider', u'struggl', u'cunnamulla'] [u'chelsea', u'silenc', u'anfield', u'jose', u'predict'] [u'china', u'interpret', u'hong', u'kong', u'constitut'] [u'chinatown', u'facelift', u'pleas', u'local'] [u'commonwealth', u'fuel', u'firm', u'blame', u'rise', u'petrol'] [u'commonwealth', u'refus', u'gambl', u'restrict'] [u'corbi', u'make', u'plea', u'judg'] [u'corbi', u'plead', u'freedom'] [u'corbi', u'plead', u'court'] [u'council', u'aim', u'secur', u'fund', u'child', u'care'] [u'council', u'announc', u'plan', u'balanc', u'futur'] [u'council', u'await', u'applic', u'diesel', u'plant'] [u'councillor', u'earli', u'releas'] [u'council', u'move', u'cultur', u'centr'] [u'council', u'restructur', u'take', u'account'] [u'council', u'seek', u'support', u'better', u'region'] [u'council', u'debat', u'develop', u'site', u'rezon'] [u'council', u'start', u'build', u'bungendor'] [u'council', u'urg', u'revis', u'tourism', u'rubberi', u'figur'] [u'countri', u'race', u'club', u'accus', u'state', u'bodi', u'fals'] [u'court', u'approv', u'tattersal', u'list'] [u'court', u'hear', u'begin', u'childcar', u'centr', u'crash'] [u'crackdown', u'urg', u'tough', u'troublesom', u'tenant'] [u'student', u'ralli', u'voluntari', u'union', u'fee'] [u'curtin', u'announc', u'hec', u'increas'] [u'cyclist', u'roll', u'cunnamulla', u'marathon'] [u'care', u'centr', u'tender', u'call', u'june'] [u'decis', u'loom', u'longwal', u'mine', u'green', u'impact'] [u'democrat', u'push', u'rise', u'threshold'] [u'depress', u'project', u'aim', u'help', u'recoveri'] [u'desalin', u'plant', u'decis', u'expect', u'year'] [u'dfat', u'probe', u'bali', u'passport', u'claim'] [u'dickenson', u'call', u'understand', u'council'] [u'doctor', u'leav', u'subdivis', u'plan'] [u'lover', u'skip', u'work', u'nurs', u'pet'] [u'domest', u'violenc', u'ralli', u'take', u'street'] [u'dont', u'write', u'say', u'lion', u'leppitsch'] [u'downer', u'unhappi', u'zimbabw', u'rejoin', u'right'] [u'call', u'lawyer', u'jail', u'kill'] [u'elder', u'give', u'bail', u'follow', u'alleg', u'abduct'] [u'elector', u'reform', u'threaten', u'liber', u'leader'] [u'back', u'wie', u'british', u'open', u'spot'] [u'employ', u'reform', u'workplac', u'safeti', u'rule'] [u'employ', u'health', u'safeti', u'rule', u'unfair'] [u'famili', u'confront', u'minist', u'workplac', u'death'] [u'famili', u'fabric', u'keep', u'sunday', u'shop'] [u'farmbi', u'stage', u'begin', u'soon'] [u'farm', u'debt', u'mount', u'drought', u'continu'] [u'farmer', u'fear', u'drought'] [u'farmer', u'welcom', u'cattl', u'duf', u'guilti', u'plea'] [u'ferguson', u'sinist', u'comment', u'draw'] [u'fire', u'continu', u'burn'] [u'flatley', u'clear', u'red'] [u'flintoff', u'flop', u'counti', u'return'] [u'forc', u'southern', u'iraq', u'begin', u'patrol'] [u'speaker', u'come', u'forward', u'assault'] [u'fund', u'woe', u'festiv'] [u'fund', u'servic', u'treat', u'post', u'natal'] [u'funer', u'firm', u'win', u'stand', u'vertic', u'burial'] [u'gatto', u'murder', u'trial', u'begin'] [u'genet', u'steroid', u'creat', u'sport', u'supermen'] [u'german', u'singer', u'hit', u'sour', u'note', u'eurovis', u'scandal'] [u'govt', u'plan', u'fund', u'region', u'shake'] [u'govt', u'feder', u'polic'] [u'govt', u'urg', u'rethink', u'green', u'educ', u'scheme', u'fund'] [u'green', u'seek', u'fiji', u'travel', u'warn'] [u'gunsynd', u'nomin', u'race', u'hall', u'fame'] [u'hampshir', u'spring', u'captain', u'warni', u'defenc'] [u'harbour', u'seafood', u'warn', u'remain'] [u'health', u'prioriti', u'studi', u'show'] [u'report', u'confirm', u'slow', u'hous', u'market'] [u'higher', u'infring', u'rate', u'drug', u'user'] [u'high', u'jink', u'nimbin', u'promis', u'mardi', u'grass'] [u'howard', u'face', u'revolt'] [u'howard', u'offens', u'budget', u'cut'] [u'hull', u'back', u'telstra', u'sale', u'talk'] [u'immigr', u'raid', u'net', u'illeg', u'worker'] [u'iraqi', u'parliament', u'approv', u'troubl', u'cabinet'] [u'jackson', u'wife', u'weep', u'star', u'trial'] [u'jam', u'rule', u'port'] [u'japan', u'train', u'crash', u'toll', u'reach'] [u'japan', u'train', u'crash', u'toll', u'reach'] [u'funer', u'picket', u'cancel'] [u'joli', u'pitt', u'beauti', u'peopl', u'list'] [u'king', u'face', u'middl', u'east', u'china', u'korea', u'champion'] [u'labor', u'warn', u'minimum', u'wage', u'threat'] [u'land', u'council', u'ask', u'think', u'land', u'deal'] [u'landhold', u'angri', u'plan'] [u'trobe', u'deni', u'campus', u'complaint'] [u'lawyer', u'back', u'parol', u'plan', u'murder'] [u'lgaq', u'offer', u'region', u'infrastructur', u'fund', u'pledg'] [u'liber', u'urg', u'cutback'] [u'liber', u'women', u'oppos', u'limit'] [u'librari', u'stand', u'googl'] [u'liverpool', u'chew', u'plan'] [u'liverpool', u'hold', u'chelsea', u'champion', u'leagu'] [u'local', u'input', u'help', u'protect', u'pilbara', u'natur'] [u'log', u'protest', u'continu'] [u'hold', u'servic', u'station', u'hammer'] [u'succumb', u'crash', u'injuri'] [u'march', u'hold', u'protest', u'hospit', u'closur'] [u'mcisaac', u'excit', u'perth'] [u'meatwork', u'blaze', u'racial', u'motiv'] [u'mental', u'benefit', u'social', u'polici', u'plan'] [u'middl', u'age', u'home', u'domin', u'small'] [u'mildura', u'fruit', u'compani', u'retir', u'retail', u'market'] [u'miseri', u'strike', u'australia', u'america', u'hope'] [u'miss', u'tourist'] [u'mobil', u'phone', u'problem', u'fix', u'telstra'] [u'launch', u'elector', u'crime', u'survey'] [u'push', u'telco', u'bush', u'author', u'telstra'] [u'urg', u'liber', u'report', u'hospit', u'complaint'] [u'want', u'contamin', u'school', u'roof', u'replac'] [u'muay', u'thai', u'better', u'jack', u'osbourn'] [u'murder', u'releas', u'parol'] [u'nation', u'seek', u'catch', u'chang'] [u'nation', u'want', u'solo', u'polic', u'review', u'hold'] [u'nelson', u'vow', u'press', u'student', u'union', u'chang'] [u'network', u'refus', u'critic', u'timor'] [u'newmont', u'secur', u'jaguar', u'zinc', u'copper', u'deal'] [u'orbit', u'road', u'halv', u'journey', u'premier'] [u'start', u'launceston', u'societi'] [u'water', u'ban', u'start'] [u'dead', u'militari', u'helicopt', u'crash'] [u'polic', u'return', u'work', u'probe', u'continu'] [u'nude', u'festiv', u'possibl', u'cabarita', u'beach'] [u'nurs', u'union', u'pursu', u'talk', u'privat', u'hospit'] [u'rat', u'hold'] [u'offici', u'beat', u'wagga', u'rugbi', u'leagu'] [u'price', u'continu', u'fall', u'suppli', u'worri', u'eas'] [u'come', u'bronco'] [u'year', u'amnesti', u'intern', u'blast'] [u'opera', u'hous', u'architectur', u'tragedi'] [u'orchardist', u'launch', u'legal', u'action', u'council'] [u'pacif', u'hydro', u'trade', u'halt', u'ahead', u'takeov', u'talk'] [u'parent', u'claim', u'timet', u'chang', u'compromis'] [u'plan', u'ahead', u'station'] [u'seek', u'balanc', u'cost'] [u'polic', u'expect', u'investor', u'lose', u'money'] [u'polic', u'farewel', u'murder', u'colleagu'] [u'polic', u'fear', u'miss', u'woman', u'murder'] [u'polic', u'comb', u'bushland', u'bodi'] [u'polic', u'union', u'voic', u'concern', u'offic'] [u'pont', u'let', u'keeper'] [u'port', u'arthur', u'anniversari', u'prompt', u'fresh', u'call'] [u'protest', u'zimbabw', u'rejoin', u'human', u'right'] [u'public', u'protest', u'fund'] [u'public', u'warn', u'rate', u'rise', u'inevit', u'govt'] [u'rail', u'deal', u'doubl', u'freight', u'adelaid'] [u'reagan', u'diari', u'publish'] [u'tape', u'delay', u'roadhous', u'reopen'] [u'resid', u'wont', u'bother', u'forward', u'view', u'say'] [u'resourc', u'drag', u'ord'] [u'revamp', u'plan', u'showground', u'site'] [u'riverland', u'resid', u'urg', u'boost', u'fruit', u'vegi'] [u'road', u'open', u'downsid'] [u'saint', u'riewoldt', u'sidelin'] [u'samaritan', u'public', u'hous', u'chang'] [u'scientist', u'studi', u'nino', u'impact', u'snowfal'] [u'secur', u'depend', u'stronger', u'tie', u'major'] [u'serb', u'general', u'plead', u'guilti', u'crime'] [u'shark', u'rift', u'profit', u'spend'] [u'shoalhaven', u'council', u'support', u'lake', u'entranc', u'push'] [u'silver', u'demand', u'resourc'] [u'singapor', u'hop', u'aust', u'join', u'east', u'asia', u'summit'] [u'slow', u'coach', u'india', u'take', u'time', u'wright'] [u'state', u'govt', u'lobbi', u'road', u'fund'] [u'stock', u'rout', u'disput', u'hold', u'pend', u'minist'] [u'stott', u'despoja', u'say', u'student', u'guinea', u'pig'] [u'student', u'ralli', u'voluntari', u'union'] [u'studi', u'show', u'environment', u'pollut', u'affect', u'sperm'] [u'support', u'grow', u'bat', u'coloni', u'evict'] [u'swan', u'river', u'declar', u'safe', u'swim'] [u'swan', u'appeal', u'jolli', u'suspens'] [u'sydney', u'level'] [u'poppi', u'product', u'boom'] [u'teacher', u'disput', u'go'] [u'teacher', u'union', u'reveal', u'lack', u'fund'] [u'teen', u'plead', u'guilti', u'kill', u'newborn', u'babi'] [u'tendulkar', u'defend', u'bat', u'approach'] [u'tenpin', u'centr', u'size', u'reduc', u'attract', u'investor'] [u'thiev', u'steal', u'lookout', u'binocular'] [u'thompson', u'call', u'account', u'umpir', u'approach'] [u'arrest', u'sydney', u'drive', u'shoot'] [u'court', u'sydney', u'drive', u'shoot'] [u'toenail', u'rule', u'hewitt', u'rome'] [u'togo', u'opposit', u'leader', u'claim', u'elect', u'victori'] [u'tourism', u'gather', u'focus', u'oversea', u'market'] [u'tourism', u'number', u'point', u'strong', u'growth'] [u'town', u'alert', u'firefight', u'battl', u'blaze'] [u'toyota', u'appeal', u'ralf', u'schumach', u'penalti'] [u'trade', u'hall', u'council', u'want', u'tough', u'work', u'safeti', u'law'] [u'turkey', u'invit', u'join', u'gallipoli'] [u'student', u'union'] [u'peacekeep', u'arriv', u'sudan'] [u'competitor', u'blame', u'iraq', u'wheat', u'woe'] [u'syring', u'leav', u'school', u'oval'] [u'sell', u'israel', u'bunker', u'buster', u'bomb'] [u'vail', u'wad', u'iraq', u'wheat'] [u'vandal', u'prompt', u'council', u'close', u'popular', u'picnic'] [u'verdict', u'yuko', u'founder', u'delay'] [u'vice', u'chancellor', u'speak', u'support', u'student'] [u'waratah', u'head', u'hous', u'pain'] [u'warn', u'sand', u'price', u'increas'] [u'welfar', u'group', u'social', u'polici', u'plan'] [u'wild', u'dog', u'catch', u'trap', u'program'] [u'wine', u'grape', u'grower', u'adopt', u'collabor', u'approach'] [u'wine', u'grower', u'look', u'oversea', u'market'] [u'wollondilli', u'council', u'seek', u'polic', u'boost'] [u'woman', u'jail', u'arrang', u'husband', u'murder'] [u'accus', u'paedophil', u'asset'] [u'adelaid', u'unit', u'step', u'leagu', u'prepar'] [u'african', u'doubl', u'peacekeep', u'forc', u'darfur'] [u'alic', u'spring', u'group', u'solar', u'citi'] [u'deni', u'howard', u'diminish', u'elect', u'chanc'] [u'appl', u'aim', u'bite', u'microsoft'] [u'atwal', u'take', u'orlean', u'lead'] [u'australia', u'tell', u'sign', u'treati', u'miss', u'summit'] [u'beazley', u'play', u'intern', u'critic'] [u'beckham', u'legal', u'case', u'nanni'] [u'bodi', u'bushland', u'boyfriend', u'charg'] [u'bomber', u'brace', u'brown', u'return'] [u'die', u'injur', u'hit', u'tree'] [u'brack', u'unveil', u'massiv', u'olymp', u'park', u'revamp'] [u'brisban', u'club', u'lock', u'begin'] [u'brown', u'boot', u'lion', u'spank', u'bomber'] [u'brumbi', u'blow', u'final', u'content'] [u'brumbi', u'crash', u'super', u'content'] [u'bulldog', u'bite', u'eel'] [u'bulldog', u'bite', u'eel'] [u'bull', u'thriller', u'stay', u'super', u'titl', u'hunt'] [u'busi', u'get', u'canberra', u'redevelop'] [u'cambodia', u'welcom', u'khmer', u'roug', u'trial', u'fund'] [u'citrus', u'grower', u'anger', u'market', u'access'] [u'commonwealth', u'vow', u'deliv', u'forestri', u'promis'] [u'cowboy', u'rid', u'high', u'down', u'rooster'] [u'crow', u'roo', u'unbeaten'] [u'docker', u'shrug', u'road', u'woe'] [u'winter', u'spanish', u'farmer', u'worri'] [u'eagl', u'punish', u'disappoint', u'swan'] [u'elder', u'hospit', u'gunshot', u'wind'] [u'elect', u'caesar', u'burden', u'health', u'servic', u'research'] [u'tighten', u'grip', u'atop', u'asian', u'open', u'leaderboard'] [u'endang', u'frog', u'save', u'cocktail', u'fate'] [u'ethiopia', u'plead', u'help', u'flood', u'death', u'toll'] [u'excess', u'wine', u'biofuel'] [u'minist', u'confirm', u'quit', u'parliament'] [u'farewel', u'plan', u'author', u'sara', u'henderson'] [u'feder', u'pull', u'rome', u'master'] [u'ferdinand', u'deal', u'pipelin'] [u'fergi', u'turn', u'heat'] [u'victim', u'relief', u'fund'] [u'forestri', u'tasmania', u'deni', u'undercut', u'price'] [u'frenchman', u'loeb', u'extend', u'lead', u'itali'] [u'gibernau', u'take', u'pole', u'chines', u'grand', u'prix'] [u'govt', u'dishonest', u'allow', u'referendum'] [u'govt', u'question', u'report', u'show', u'bulli', u'staff'] [u'govt', u'slow', u'offend', u'regist'] [u'heaven', u'hell', u'annan', u'vow', u'stay'] [u'hero', u'welcom', u'emkanimblaem', u'crew'] [u'hitman', u'haa', u'down', u'arthur'] [u'india', u'act', u'tiger', u'number', u'dwindl'] [u'indonesia', u'demand', u'answer', u'fisherman', u'death'] [u'indonesia', u'honour', u'kanimbla', u'crew'] [u'infrastructur', u'plan', u'convert', u'doubter', u'beatti'] [u'iran', u'warn', u'plan', u'restart', u'uranium', u'work'] [u'essenti', u'infertil', u'coupl', u'turnbul'] [u'jackson', u'juri', u'show', u'seiz', u'book', u'nude', u'boy'] [u'keneal', u'predict', u'chang', u'immigr', u'polici'] [u'kid', u'go', u'foreign', u'debt', u'museum'] [u'flintoff', u'run', u'lancashir'] [u'leadership', u'comment', u'misinterpret', u'howard'] [u'lower', u'incom', u'earner', u'benefit', u'land', u'auction'] [u'lynndi', u'england', u'plead', u'guilti', u'iraq', u'abus'] [u'malik', u'face', u'throw', u'match'] [u'martin', u'defend', u'domest', u'violenc', u'fund'] [u'mass', u'grave', u'think', u'hold', u'kurd'] [u'milton', u'smash', u'downhil', u'record'] [u'nasa', u'delay', u'shuttl', u'launch', u'juli'] [u'nepales', u'king', u'lift', u'state', u'emerg'] [u'neumann', u'join', u'leader', u'soggi', u'franklin'] [u'govt', u'consid', u'road', u'beneath', u'harbour', u'bridg'] [u'drop'] [u'australian', u'wrong', u'hold', u'immigr'] [u'palestinian', u'arrest', u'milit'] [u'parkinson', u'treatment', u'tasmania'] [u'petrol', u'bomb', u'throw', u'babi', u'bedroom'] [u'play', u'leadership', u'talk'] [u'prim', u'beazley', u'bout'] [u'polic', u'deliber', u'kill', u'traffic', u'suspect'] [u'premier', u'criticis', u'call', u'inquiri'] [u'prison', u'transfer', u'wake', u'review'] [u'programm', u'prefer', u'role', u'patrol'] [u'rain', u'save', u'windi', u'rampant', u'open'] [u'rann', u'protect', u'justic'] [u'inquiri', u'consid', u'case'] [u'round', u'world', u'sailor', u'forc', u'ashor'] [u'salvag', u'memori', u'add', u'bushfir', u'memori'] [u'scissor', u'paper', u'rock', u'pay', u'christi'] [u'seafood', u'council', u'support', u'call', u'licenc'] [u'shark', u'upset', u'sloppi', u'storm'] [u'shirley', u'strickland', u'famili', u'push', u'inquest'] [u'protest', u'brisban'] [u'charg', u'drug', u'bust'] [u'kill', u'queensland', u'road', u'accid'] [u'soldier', u'kill', u'bomb', u'iraq'] [u'state', u'warn', u'anti', u'competit', u'forestri', u'corp'] [u'studi', u'need', u'braidwood', u'heritag', u'list'] [u'sunderland', u'premiership'] [u'sink', u'submarin', u'restor', u'effort', u'continu'] [u'sydney', u'soccer', u'fan', u'arrest', u'clash'] [u'sydney', u'soccer', u'match', u'end', u'violenc'] [u'sydney', u'welcom', u'kanimbla', u'home'] [u'thailand', u'charg', u'muslim', u'teacher', u'treason'] [u'thirti', u'year', u'world', u'mark', u'fall', u'saigon'] [u'togo', u'presid', u'deni', u'civil', u'like'] [u'trio', u'arrest', u'assault', u'driver'] [u'troop', u'bind', u'iraq', u'farewel', u'brisban'] [u'elect', u'take', u'domest', u'turn'] [u'confirm', u'abus', u'peacekeep', u'liberia'] [u'unpaid', u'bill', u'hospit', u'servic'] [u'airstrik', u'kill', u'afghan', u'civilian'] [u'fear', u'russian', u'arm', u'fall', u'terrorist'] [u'itali', u'odd', u'baghdad', u'shoot'] [u'market', u'upbeat'] [u'secret', u'servic', u'seek', u'race', u'bush', u'parti', u'guest'] [u'veteran', u'commemor', u'vietnam', u'anniversari'] [u'waratah', u'crush', u'highland'] [u'warn', u'stand', u'firm', u'sledg'] [u'step', u'fight'] [u'woman', u'charg', u'fraud'] [u'woman', u'charg', u'stab', u'murder', u'children'] [u'youth', u'jail', u'pose', u'polic'] [u'zimbabw', u'food', u'fuel', u'crisi', u'worsen'] [u'aceh', u'rebel', u'accus', u'hostag', u'take'] [u'adelaid', u'unit', u'beat', u'young', u'socceroo'] [u'african', u'leader', u'quell', u'togo', u'unrest'] [u'demand', u'wrong', u'detent'] [u'australia', u'head', u'obstetr', u'shortag', u'journal'] [u'baxter', u'visit', u'alter', u'sister', u'inquiri', u'submiss'] [u'benedict', u'move', u'papal', u'apart'] [u'boat', u'explos', u'serious', u'injur', u'girl', u'father'] [u'british', u'rocker', u'pete', u'doherti', u'stage'] [u'brown', u'expect', u'disappoint', u'forest', u'plan'] [u'buderus', u'gower', u'skipper', u'countri', u'citi'] [u'cairo', u'museum', u'bomb', u'kill', u'injur'] [u'call', u'action', u'internet', u'cigarett'] [u'carr', u'pledg', u'hospit', u'bed'] [u'cat', u'claw', u'past', u'bulldog'] [u'chelsea', u'celebr', u'premiership', u'titl'] [u'chief', u'minist', u'honour', u'henderson', u'vision'] [u'children', u'hospit', u'major', u'overhaul'] [u'chines', u'journalist', u'jail', u'state', u'secret'] [u'civilian', u'militia', u'claim', u'curb', u'illeg'] [u'costello', u'foreshadow', u'budget', u'surplus'] [u'costello', u'skirt', u'leadership', u'question'] [u'council', u'warn', u'fund', u'shortfal', u'affect', u'servic'] [u'crash', u'train', u'compani', u'notic', u'japanes', u'report'] [u'cultur', u'blend', u'tiwi', u'island', u'ceremoni'] [u'deaf', u'gene', u'track', u'mice'] [u'deplet', u'raider', u'knight', u'crisi', u'deepen'] [u'deploy', u'train', u'iraqi', u'secur', u'forc', u'hill'] [u'deport', u'australian', u'miss', u'oversea'] [u'desper', u'housewif', u'upstag', u'presid', u'bush'] [u'dimarco', u'move', u'ahead', u'orlean'] [u'diva', u'run', u'seventh', u'japan'] [u'docker', u'caffein', u'admiss'] [u'donald', u'kick', u'chief', u'victori', u'stormer'] [u'dont', u'forget', u'perform', u'go'] [u'elder', u'die', u'sydney', u'shoot'] [u'environment', u'project', u'boost'] [u'farmer', u'vote', u'cattl', u'tick', u'fight', u'fund'] [u'dead', u'trap', u'chines', u'mine'] [u'fiji', u'polic', u'defend', u'search', u'coup', u'document'] [u'ravag', u'rural', u'museum', u'collect'] [u'contamin', u'water', u'india'] [u'poll', u'predict', u'blair', u'victori'] [u'train', u'lead', u'saint', u'victori'] [u'head', u'dragon', u'pull', u'fight'] [u'hib', u'shock', u'celtic', u'ranger', u'hope'] [u'hill', u'visit', u'australian', u'deploy', u'iraq'] [u'hill', u'visit', u'troop', u'southern', u'iraq'] [u'hitchhik', u'car'] [u'hospit', u'set', u'dead', u'spider', u'free'] [u'humil', u'giant', u'forest'] [u'inquiri', u'seek', u'input', u'sentenc', u'altern'] [u'iraqi', u'polic', u'kill', u'baghdad', u'attack'] [u'iraq', u'raid', u'net', u'hassan', u'murder', u'suspect'] [u'iraq', u'urg', u'neighbour', u'help', u'secur', u'border'] [u'island', u'ownership', u'return', u'indigen'] [u'israel', u'arrest', u'suicid', u'bomber'] [u'japan', u'princess', u'masako', u'make', u'rare', u'public', u'appear'] [u'jone', u'record', u'modest', u'comeback'] [u'kalli', u'princ', u'break', u'west', u'indian', u'heart'] [u'kuznetsova', u'down', u'clijster', u'henin', u'final'] [u'labor', u'unconcern', u'latham', u'snare', u'book', u'deal'] [u'lampard', u'doubl', u'take', u'chelsea', u'titl'] [u'lightn', u'kill', u'india'] [u'march', u'mark', u'festiv'] [u'centr', u'reform'] [u'marcher', u'ralli', u'reform'] [u'militari', u'probe', u'find', u'guantanamo', u'prison', u'abus'] [u'minist', u'vow', u'listen', u'rural', u'lesse', u'fire'] [u'govt', u'make', u'pledg', u'opposit', u'say'] [u'panther', u'scrape', u'home', u'warrior'] [u'parapleg', u'yachtsman', u'set', u'sail', u'australia'] [u'pavel', u'see', u'haa', u'reach', u'final'] [u'polic', u'consid', u'pullback', u'amid', u'challeng'] [u'polic', u'mackay', u'crash', u'toll'] [u'pope', u'bless', u'focus', u'worker', u'peac'] [u'pressur', u'public', u'detent', u'inquiri', u'grow'] [u'quak', u'rattl', u'taiwan'] [u'raus', u'sister', u'thank', u'baxter', u'detaine'] [u'rene', u'rivkin', u'dead'] [u'rivkin', u'death', u'suspici', u'polic'] [u'ronaldo', u'doubl', u'keep', u'real', u'dream', u'aliv'] [u'round', u'world', u'yatchsman', u'hole', u'hobart'] [u'erupt', u'apec', u'secur'] [u'rural', u'women', u'confer', u'generat'] [u'scientist', u'unveil', u'bright', u'idea', u'fight', u'global'] [u'secret', u'document', u'foot', u'report'] [u'shevchenko', u'doubl', u'end', u'milan', u'florentin', u'jinx'] [u'soccer', u'boss', u'pledg', u'hunt', u'hooligan'] [u'soccer', u'violenc', u'inquiri', u'consid', u'second', u'clash'] [u'soccer', u'violenc', u'inquiri', u'widen'] [u'special', u'mourinho'] [u'staff', u'search', u'rubbl', u'film', u'compani'] [u'star', u'war', u'stand', u'thon', u'kick'] [u'stoner', u'make', u'trot', u'china'] [u'storm', u'delay', u'complet', u'asian', u'open'] [u'taiwan', u'presid', u'call', u'talk', u'china'] [u'teen', u'railway', u'station'] [u'iraqi', u'kill', u'fallujah', u'attack'] [u'tiger', u'rampant', u'hapless', u'power'] [u'tiwi', u'island', u'celebr', u'anniversari', u'dutch', u'arriv'] [u'twin', u'attack', u'rock', u'cairo', u'tourist', u'spot'] [u'unbeaten', u'eagl', u'love', u'worsfold'] [u'court', u'block', u'abort', u'year'] [u'decid', u'disciplinari', u'action', u'agent'] [u'vietnam', u'pledg', u'pursu', u'agent', u'orang', u'compo'] [u'anti', u'campaign', u'fire', u'costello'] [u'wenger', u'consid', u'beckham', u'report'] [u'woodheat', u'rebat', u'hail', u'success'] [u'year', u'spend', u'heart', u'diseas'] [u'academ', u'focus', u'asia', u'australia'] [u'afghan', u'blast', u'kill'] [u'flag', u'possibl', u'recommend', u'judici'] [u'alic', u'mobil', u'polic', u'station'] [u'muthanna', u'troop', u'anti', u'kidnap', u'precaut'] [u'grow', u'tree', u'knowledg'] [u'ambul', u'station', u'get', u'upgrad'] [u'american', u'accus', u'cocain', u'smuggl'] [u'april', u'weather', u'record', u'wollongong'] [u'arson', u'millic', u'museum', u'blaze'] [u'aust', u'prepar', u'pandem', u'abbott'] [u'australian', u'take', u'hostag', u'iraq'] [u'australia', u'swelter', u'april'] [u'autumn', u'fuel', u'reduct', u'campaign', u'near'] [u'baluch', u'fin', u'unregist'] [u'barca', u'spanish', u'titl', u'duel'] [u'bark', u'right', u'tree', u'nundl', u'public', u'school'] [u'bet', u'lay', u'jetsett', u'readi', u'race'] [u'black', u'doesnt', u'armstrong', u'murray', u'darl', u'threat'] [u'blood', u'bank', u'volunt', u'discuss', u'servic', u'withdraw'] [u'botero', u'beat', u'mcgee', u'cunego', u'romandi', u'tour'] [u'brumbi', u'test', u'young', u'gun'] [u'bulldog', u'face', u'life', u'darci'] [u'burn', u'warn', u'ahead', u'like', u'ban'] [u'busi', u'see', u'room', u'budget', u'cut'] [u'busselton', u'get', u'apolog', u'council', u'elect', u'bungl'] [u'bypass', u'group', u'action'] [u'cairn', u'send', u'tropic', u'brain', u'oversea'] [u'hors', u'crash', u'put', u'hospit'] [u'charg', u'lay', u'bank', u'fraud', u'plot'] [u'charg', u'upgrad', u'child', u'death', u'case'] [u'citi', u'countri', u'chang'] [u'collin', u'administr', u'confid', u'sale'] [u'communiti', u'farewel', u'dead', u'polic', u'offic'] [u'cooler', u'weather', u'reduc', u'bushfir', u'risk'] [u'copper', u'open', u'delay'] [u'corbi', u'trial', u'prompt', u'bali', u'boycott', u'threat'] [u'costello', u'tell', u'howard', u'leadership', u'talk', u'concern'] [u'costello', u'warn', u'rivalri', u'danger'] [u'council', u'consid', u'land', u'clear', u'legal', u'action'] [u'counsel', u'reduc', u'abort', u'survey', u'find'] [u'countri', u'club', u'har', u'discont', u'race'] [u'deleg', u'converg', u'mudge'] [u'darci', u'miss', u'rest', u'season'] [u'date', u'elliott', u'appeal'] [u'develop', u'like', u'challeng', u'council', u'oval', u'proviso'] [u'dingo', u'call', u'tune', u'bangtail', u'muster'] [u'disgrac', u'priest', u'blame', u'youth', u'suicid'] [u'doubt', u'bed', u'england', u'hospit'] [u'doubt', u'remain', u'bunburi', u'scheme'] [u'downer', u'rule', u'ransom', u'aust', u'hostag'] [u'downsiz', u'thai', u'beauti', u'queen'] [u'drift', u'boat', u'rescu', u'solomon'] [u'drought', u'take', u'toll', u'fish', u'industri'] [u'weather', u'wimmera', u'malle'] [u'time', u'rural', u'counsellor', u'demand'] [u'elder', u'appeal', u'communiti', u'respect'] [u'leav', u'asian', u'field', u'dead'] [u'emerg', u'worker', u'patch', u'home'] [u'farmer', u'seek', u'local', u'process', u'facil'] [u'environ', u'project', u'receiv', u'fund', u'boost'] [u'expert', u'clean', u'pesticid', u'spill'] [u'extra', u'bed', u'eas', u'wait', u'list'] [u'famin', u'loom', u'zimbabw', u'agenc', u'warn'] [u'farmer', u'hope', u'good', u'rainfal'] [u'farmer', u'readi', u'rain', u'come'] [u'farm', u'product', u'program', u'go', u'public'] [u'fear', u'rais', u'drought', u'support', u'worker', u'fund'] [u'fellow', u'inmat', u'expect', u'testifi'] [u'fisherfolk', u'ask', u'needi'] [u'forb', u'wellington', u'rais', u'rat'] [u'fisher', u'attack', u'murray', u'payout'] [u'rooki', u'women', u'ash', u'squad'] [u'friend', u'expect', u'rivkin', u'tragic'] [u'fund', u'anger', u'age', u'care', u'centr'] [u'fund', u'seek', u'ballarat', u'showground'] [u'futur', u'brighter', u'ethanol', u'fuel'] [u'gardin', u'scan', u'knee', u'injuri'] [u'gayl', u'centuri', u'boost', u'west', u'indi'] [u'gayl', u'sarwan', u'surviv', u'prosper', u'windi'] [u'gehrig', u'face', u'match', u'suspens'] [u'gold', u'coast', u'show', u'skill'] [u'goldfield', u'council', u'defend', u'traffic', u'plan'] [u'govt', u'ask', u'continu', u'polic', u'school', u'scheme'] [u'govt', u'boost', u'yulara', u'safeti'] [u'govt', u'fund', u'lead', u'mushroom', u'trade'] [u'govt', u'stand', u'firm'] [u'govt', u'south', u'west', u'mental', u'health'] [u'govt', u'pressur', u'lift', u'hospit', u'number'] [u'govt', u'urg', u'follow', u'world', u'heritag'] [u'gower', u'disappoint', u'name', u'hooker'] [u'green', u'group', u'want', u'aquacultur', u'hold'] [u'health', u'servic', u'faze', u'hospit', u'delay'] [u'health', u'servic', u'decid', u'mental', u'health'] [u'heavi', u'rain', u'prompt', u'polic', u'caution'] [u'heenan', u'red', u'doubt', u'flatley', u'tune'] [u'howard', u'costello', u'talk', u'amid', u'secur', u'scare'] [u'howard', u'deni', u'chang', u'stanc', u'leadership'] [u'independ', u'auditor', u'review', u'grain', u'export', u'pool'] [u'indigen', u'appoint', u'allow', u'better', u'health'] [u'indigen', u'volunt', u'communiti', u'involv'] [u'indonesian', u'polic', u'display', u'bali', u'evid'] [u'industri', u'relat', u'concern', u'featur', u'labour'] [u'industri', u'restrict', u'lift'] [u'infant', u'mortal', u'rate', u'halv'] [u'injuri', u'strike', u'countri', u'citi'] [u'inquest', u'tell', u'doctor', u'miss'] [u'inquiri', u'probe', u'sentenc', u'option', u'keen', u'hear'] [u'iraq', u'hostag', u'famili', u'extrem', u'concern'] [u'isra', u'cabinet', u'minist', u'quit', u'gaza', u'plan'] [u'japan', u'downplay', u'normal', u'north', u'korean', u'missil', u'test'] [u'juve', u'catch', u'milan', u'ahead', u'titl', u'showdown'] [u'labor', u'seek', u'apprenticeship', u'payment', u'budget'] [u'labour', u'marcher', u'concern', u'chang'] [u'larg', u'crowd', u'expect', u'agfest'] [u'leadership', u'squabbl'] [u'lifesav', u'prepar', u'winter', u'recess'] [u'lightn', u'strike', u'giant', u'home'] [u'local', u'driver', u'targa', u'honour'] [u'local', u'question', u'baton', u'snub'] [u'loeb', u'win', u'ralli', u'itali'] [u'lone', u'high', u'heart', u'risk'] [u'maiden', u'tour', u'win', u'petrov', u'prammanasudh'] [u'bash', u'leav', u'club'] [u'charg', u'south', u'burnett', u'murder'] [u'hospitalis', u'attack'] [u'face', u'court', u'drug', u'weapon', u'charg'] [u'maroon', u'judiciari', u'charg'] [u'matthew', u'carri', u'away', u'bomber'] [u'mayor', u'speak', u'wind', u'farm', u'plan'] [u'medic', u'advic', u'plan'] [u'melbourn', u'businessman', u'grant', u'bail'] [u'million', u'dollar', u'polic', u'ask', u'explain', u'wealth'] [u'miln', u'seek', u'break', u'away'] [u'miner', u'set', u'sight', u'west', u'iron', u'project'] [u'heroin'] [u'hospit', u'bed', u'open', u'illawarra'] [u'time', u'urg', u'fisher', u'decid', u'futur'] [u'motorist', u'urg', u'care', u'tragic', u'crash'] [u'back', u'tougher', u'stanc', u'jobless', u'seek', u'work'] [u'narooma', u'lion', u'shock', u'premier'] [u'feder', u'tutori', u'voucher'] [u'polic', u'recruit', u'south', u'east'] [u'northern', u'tasmanian', u'ask', u'check', u'smoke', u'alarm'] [u'north', u'korea', u'test', u'missil', u'treati', u'talk'] [u'monitor', u'success', u'perth', u'fixtur'] [u'architect', u'give', u'senior', u'industri', u'posit'] [u'defenc', u'spend', u'target', u'decay'] [u'olymp', u'champ', u'ekimov', u'serious', u'injur', u'train'] [u'option', u'free', u'dougla', u'wood'] [u'orica', u'stock', u'drop', u'despit', u'profit', u'hike'] [u'outback', u'pioneer', u'women', u'honour'] [u'oxfam', u'warn', u'darfur', u'crisi'] [u'pakistan', u'introduc', u'regular', u'comp'] [u'park', u'servic', u'boost', u'plateau', u'wild', u'effort'] [u'passeng', u'train', u'make', u'welcom', u'return'] [u'picker', u'seek', u'oliv', u'harvest'] [u'plan', u'toxic', u'wast', u'rout', u'worri', u'farm', u'group'] [u'stand', u'firm', u'aussi', u'take', u'hostag'] [u'look', u'economist', u'say'] [u'polic', u'arrest', u'bank', u'fraud'] [u'polic', u'disarm', u'sword'] [u'polic', u'hail', u'border', u'swoop'] [u'polic', u'charg', u'drug', u'raid'] [u'polic', u'link', u'heroin', u'stash', u'bali', u'accus'] [u'polic', u'rail', u'assault', u'arrest'] [u'polic', u'probe', u'macquari', u'field', u'shoot'] [u'polic', u'readi', u'kimberley', u'court', u'troubl'] [u'polic', u'recov', u'steal', u'paint'] [u'polic', u'blame', u'boat', u'blast'] [u'polic', u'urg', u'caution', u'road', u'long', u'weekend', u'end'] [u'poll', u'give', u'hugh', u'grant', u'role', u'down'] [u'public', u'urg', u'faith', u'foreign', u'train'] [u'punter', u'aplenti', u'expect', u'alic'] [u'farmer', u'withdraw', u'scheme'] [u'crack', u'child', u'labour'] [u'questacon', u'visitor', u'number', u'jump'] [u'rampant', u'ranger', u'close', u'celt'] [u'raid', u'thiev', u'target', u'cloth', u'warehous'] [u'rate', u'rise', u'fear', u'bega', u'valley', u'shire'] [u'real', u'estat', u'agent', u'get', u'life'] [u'region', u'women', u'urg', u'smear'] [u'research', u'monitor', u'race', u'bird'] [u'resid', u'rate', u'rise', u'detail', u'soon'] [u'retail', u'argu', u'child', u'labour', u'chang', u'unneed'] [u'rfds', u'move', u'mental', u'health', u'area'] [u'chief', u'readi', u'survey', u'critic'] [u'richo', u'hail', u'turnaround', u'tiger'] [u'rivkin', u'dead'] [u'rooney', u'bar', u'children', u'soccer', u'tournament'] [u'rove', u'mcmanus', u'win', u'consecut', u'gold', u'logi'] [u'rutherglen', u'courthous', u'sale'] [u'search', u'continu', u'miss', u'angler'] [u'secur', u'upgrad', u'lake', u'cargelligo'] [u'senat', u'talk', u'china', u'free', u'trade', u'deal'] [u'seven', u'charg'] [u'shrewd', u'take', u'home', u'alic'] [u'site', u'search', u'greenhous', u'plan'] [u'snowi', u'flight', u'green', u'light'] [u'beach', u'patrol', u'continu', u'winter'] [u'speed', u'simul', u'program', u'target', u'student'] [u'state', u'say', u'feder', u'govt', u'neglect', u'rural', u'hous'] [u'stock', u'rout', u'run', u'water', u'fee'] [u'studi', u'give', u'beetl', u'ticket', u'ride'] [u'suicid', u'drive', u'shame'] [u'suncoast', u'lion', u'prove', u'good', u'shark'] [u'survey', u'identifi', u'manufactur', u'lull'] [u'talk', u'fail', u'iraq', u'wheat', u'stand'] [u'senat', u'question', u'state', u'marriag', u'push'] [u'team', u'swat', u'mosquito', u'invad', u'region'] [u'teen', u'die', u'motorcycl', u'crash'] [u'teen', u'rescu', u'woman', u'burn', u'hous'] [u'bomb', u'baghdad'] [u'timber', u'worker', u'strike'] [u'titl', u'win', u'gaudio', u'nalbandian', u'henin', u'hardenn'] [u'tiwi', u'island', u'dutch', u'forg', u'tie'] [u'togo', u'opposit', u'refus', u'request', u'form', u'govern'] [u'tonkin', u'report', u'vindic', u'critic', u'opposit'] [u'kill', u'west', u'bank', u'clash'] [u'union', u'say', u'individu', u'contract'] [u'union', u'focus', u'reform'] [u'uranium', u'mine', u'threaten', u'green', u'imag', u'green'] [u'apolog', u'iraq', u'crash', u'bodi'] [u'gain', u'boost', u'aust', u'market'] [u'anti', u'smoke', u'sentiment', u'grow'] [u'budget', u'paper', u'leak'] [u'view', u'profit'] [u'warni', u'plead', u'ignor', u'retir', u'claim'] [u'warn', u'sign', u'drought'] [u'water', u'cart', u'warra', u'start'] [u'wife', u'identifi', u'australian', u'hostag'] [u'win', u'trap', u'stop', u'cane', u'toad', u'long', u'march', u'west'] [u'woman', u'deni', u'lie', u'husband', u'jail'] [u'woman', u'hospit', u'crash'] [u'worker', u'urg', u'celebr', u'labour'] [u'kill', u'somali', u'speech'] [u'kill', u'iraqi', u'gunfight'] [u'kill', u'ramadi', u'fight'] [u'abba', u'bulldoz', u'secur', u'chief', u'hous'] [u'abbott', u'tell', u'costello', u'team', u'spirit'] [u'adelaid', u'base', u'option', u'armi', u'battalion'] [u'fail', u'check', u'westralia', u'fuel', u'line', u'court', u'tell'] [u'afghan', u'mother', u'daughter', u'beat', u'death'] [u'support', u'breast', u'cancer', u'awar'] [u'albani', u'wait', u'speed', u'camera'] [u'altschwag', u'confid', u'jaeger'] [u'maintain', u'campaign', u'chang'] [u'ambul', u'servic', u'need', u'disput'] [u'angler', u'derbi', u'wharf', u'revamp'] [u'armi', u'reserv', u'troop', u'head', u'solomon'] [u'armi', u'reserv', u'troop', u'solomon', u'mission'] [u'arsenal', u'maintain', u'lead', u'unit'] [u'arson', u'rule', u'wilga', u'blaze'] [u'art', u'group', u'reform'] [u'athlet', u'sutherland', u'face', u'hurdl', u'trial'] [u'aust', u'miner', u'prefer', u'botswana', u'rich'] [u'aust', u'put', u'nuclear', u'treati', u'focus', u'rogu', u'state'] [u'australian', u'veteran', u'join', u'commemor'] [u'autopsi', u'carri', u'barossa', u'snake', u'handler'] [u'bali', u'bomb', u'survivor', u'visit', u'children'] [u'bali', u'lawyer', u'complain', u'question'] [u'bank', u'releas', u'bumper', u'profit', u'figur'] [u'bank', u'perform', u'market', u'lose', u'grind'] [u'averag', u'april', u'rainfal', u'wide', u'burnett'] [u'benitez', u'pledg', u'stop', u'chelsea'] [u'berri', u'grower', u'urg', u'approv', u'compulsori', u'levi'] [u'billiton'] [u'wave', u'rider', u'battl', u'wave', u'jetski'] [u'biotech', u'boom', u'expect', u'north'] [u'bribi', u'blaze', u'damag', u'bongare', u'shop'] [u'brisban', u'protest', u'mark', u'joh', u'funer'] [u'brown', u'stay', u'brisban'] [u'budget', u'expect', u'deliv', u'school', u'polic'] [u'budget', u'leak', u'inaccur', u'brumbi', u'say'] [u'build', u'approv', u'fall', u'rate', u'rise'] [u'busi', u'lobbi', u'warn', u'reserv', u'profit'] [u'chariti', u'appeal', u'suppli'] [u'child', u'sleepless', u'night', u'methadon', u'death'] [u'china', u'offer', u'taiwan', u'giant', u'panda'] [u'church', u'ask', u'fair', u'parol', u'killer'] [u'nonplus', u'budget'] [u'commerci', u'fish', u'licenc', u'hard', u'sell', u'despit'] [u'communiti', u'sign', u'share', u'respons'] [u'restrict', u'coastal'] [u'contractor', u'blame', u'westralia', u'court', u'tell'] [u'costello', u'backer', u'demand', u'leadership', u'assur'] [u'council', u'adopt', u'plan', u'protect', u'illawarra', u'escarp'] [u'council', u'consid', u'limit', u'lygon', u'restaur'] [u'council', u'appeal', u'alexandra', u'headland'] [u'council', u'put', u'carey', u'decis', u'hold'] [u'council', u'sign', u'pastor', u'land', u'leas'] [u'council', u'unus', u'rail', u'land'] [u'council', u'vote', u'bottl', u'shop', u'plan'] [u'crocker', u'slater', u'accept', u'suspens'] [u'dairi', u'farmer', u'fin', u'toddler', u'death'] [u'democrat', u'back', u'fish'] [u'diver', u'join', u'search', u'miss', u'angler'] [u'drought', u'take', u'toll', u'mulga'] [u'eagl', u'gardin', u'clear', u'damag'] [u'eleph', u'import', u'hang', u'environ', u'concern'] [u'england', u'plead', u'guilti'] [u'explor', u'firm', u'reject', u'blast', u'fish', u'claim'] [u'explos', u'truck', u'crash', u'spark', u'mass', u'evacu'] [u'extra', u'polic', u'remain', u'palm'] [u'farmer', u'gather', u'discuss', u'topic'] [u'farmer', u'drought', u'approv'] [u'farmer', u'group', u'discuss', u'drought'] [u'farmer', u'rejoic', u'rain', u'fall'] [u'farmer', u'complet', u'fenc', u'repair', u'year'] [u'farmer', u'want', u'decis', u'milk', u'price', u'negoti'] [u'fear', u'busi', u'feel', u'rate', u'rise', u'impact'] [u'fee', u'contamin', u'save', u'sheep', u'court', u'tell'] [u'fisheri', u'forc', u'polic', u'crayfish'] [u'apprentic', u'award', u'sexual'] [u'rescu', u'boat', u'sink'] [u'fund', u'shortfal', u'put', u'free', u'legal', u'servic', u'doubt'] [u'fund', u'boost', u'tourism', u'facil'] [u'gayl', u'overhaul', u'versus', u'south', u'africa'] [u'gehrig', u'suspend', u'match'] [u'gehrig', u'contest', u'strike', u'charg'] [u'geolog', u'histori', u'map', u'coast'] [u'govt', u'ask', u'help', u'free', u'hostag'] [u'govt', u'defend', u'forestri', u'perform'] [u'govt', u'fund', u'tackl', u'spiral', u'region', u'suicid'] [u'govt', u'grant', u'help', u'boost', u'avocado', u'product'] [u'govt', u'look', u'local', u'hostag', u'help'] [u'govt', u'offer', u'help', u'taskmast', u'client'] [u'govt', u'question', u'stall', u'gold', u'coast', u'project'] [u'govt', u'small', u'grant', u'local', u'develop'] [u'grappl', u'tackl', u'issu', u'bellami'] [u'greenpeac', u'founder', u'hunter', u'die'] [u'green', u'question', u'approach', u'bunburi', u'scheme', u'critic'] [u'griffith', u'reliev', u'branch', u'line', u'upgrad'] [u'group', u'oppos', u'pool', u'supervis'] [u'hail', u'storm', u'leav', u'trail', u'insur', u'claim'] [u'health', u'dept', u'readi', u'pandem'] [u'health', u'servic', u'stand', u'obstetr', u'servic', u'polici'] [u'hear', u'restor', u'surround', u'sound'] [u'hickss', u'case', u'proceed'] [u'hill', u'confid'] [u'histor', u'rocket', u'make', u'final', u'journey'] [u'homegrown', u'campaign', u'promot', u'australian', u'good'] [u'hoon', u'play', u'russian', u'roulett', u'road'] [u'hop', u'industri', u'regul', u'bring', u'chang'] [u'hospit', u'say', u'emerg', u'chopper', u'prioriti'] [u'hostag', u'realis', u'danger', u'post', u'iraq'] [u'hostag', u'famili', u'urg'] [u'human', u'right', u'watchdog', u'demand', u'immigr', u'inquiri'] [u'incid', u'prompt', u'polic', u'stranger', u'danger', u'warn'] [u'council', u'vote'] [u'intern', u'research', u'attend', u'sugar'] [u'iran', u'consid', u'nuclear', u'option'] [u'iraqi', u'govern', u'offic'] [u'italian', u'accus', u'edit', u'report', u'agent'] [u'itali', u'blame', u'agent', u'kill', u'inexperi'] [u'jennif', u'lopez', u'want', u'american', u'presid'] [u'jetski', u'rider', u'take', u'wave', u'dive'] [u'john', u'howard', u'speak', u'funer'] [u'journal', u'dead', u'beat'] [u'judg', u'decid', u'child', u'porn', u'regist'] [u'kamahl', u'sing', u'funer', u'bjelk'] [u'kill', u'suspect', u'smuggl', u'drug', u'aust', u'nepal', u'polic'] [u'kingaroy', u'stop', u'funer'] [u'knuckl', u'step', u'bath', u'breach'] [u'labor', u'seek', u'emerg', u'fund', u'newcastl'] [u'leadership', u'agenda', u'liber'] [u'liber', u'promis', u'fulli', u'fund', u'public', u'bus'] [u'littl', u'gold', u'coast', u'rain', u'april'] [u'local', u'meet', u'discuss', u'plan', u'desalin'] [u'mackay', u'angri', u'baton', u'snub'] [u'hospit', u'crash'] [u'jail', u'aid', u'fugit'] [u'manufactur', u'slide', u'point', u'weak', u'spend'] [u'kill', u'pakistan', u'blast'] [u'marburg', u'toll', u'climb'] [u'maroon', u'judiciari', u'charg'] [u'mayor', u'add', u'voic', u'baton', u'snub', u'anger'] [u'mcgee', u'case', u'domin', u'region', u'parliament'] [u'melissa', u'georg', u'star', u'thriller'] [u'minist', u'quit', u'gaza', u'withdraw', u'plan'] [u'asbesto', u'test', u'baryulgil'] [u'mourner', u'farewel', u'author', u'sara', u'henderson'] [u'barri', u'collier', u'defect', u'leav'] [u'campaign', u'cut'] [u'pleas', u'hospit', u'bed', u'pledg'] [u'urg', u'parent', u'supervis'] [u'want', u'rethink', u'princ', u'highway', u'fund'] [u'get', u'home', u'detent', u'wait', u'face'] [u'murder', u'case', u'juri', u'consid', u'verdict'] [u'nation', u'hope', u'budget', u'deliv', u'region'] [u'doctor', u'start', u'work', u'trundl'] [u'speci', u'dinosaur', u'discov'] [u'seek', u'drought', u'reform', u'chang'] [u'nobel', u'face', u'dare', u'rival'] [u'expect', u'pipelin', u'link'] [u'north', u'coast', u'hospit', u'bed', u'boost'] [u'match', u'schedul', u'port', u'macquari'] [u'move', u'pitbul'] [u'bite', u'bull'] [u'govt', u'bank', u'elect', u'win', u'budget'] [u'nurs', u'midwiv', u'launch', u'recruit', u'campaign'] [u'revok', u'permit', u'iraqi', u'diplomat'] [u'opposit', u'call', u'victim', u'crime', u'parol'] [u'peter', u'beatti', u'speak', u'funer'] [u'pharmaci', u'secur', u'disabl', u'chariti', u'train'] [u'pilbara', u'aborigin', u'achiev', u'nativ', u'titl'] [u'plan', u'minist', u'accus', u'rush', u'citi', u'hill'] [u'defend', u'plan', u'budget', u'welfar', u'reform'] [u'silent', u'retir', u'plan'] [u'tackl', u'illeg', u'arm', u'trade'] [u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit'] [u'polic', u'interview', u'boat', u'blaze'] [u'polic', u'look', u'address', u'teen', u'drink'] [u'polic', u'teen', u'motorcycl', u'crash', u'victim'] [u'polic', u'oper', u'highlight', u'border', u'drug', u'corridor'] [u'polit', u'heavyweight', u'urg', u'attend', u'drought'] [u'prawn', u'farmer', u'reject', u'explicit', u'label'] [u'privat', u'health', u'cover', u'subsidi', u'benefit', u'rich'] [u'prosecutor', u'call', u'jackson', u'aid'] [u'protest', u'japan', u'recognis', u'crime'] [u'protest', u'hold', u'brisban'] [u'public', u'hospit', u'nurs', u'consid', u'strike'] [u'public', u'urg', u'brush', u'toxic', u'wast', u'plan'] [u'quinlan', u'hand', u'tough', u'budget'] [u'rann', u'accus', u'uranium', u'promot'] [u'record', u'april', u'south', u'east'] [u'region', u'announc', u'staff'] [u'roar', u'inaugur', u'captain'] [u'rooki', u'director', u'make'] [u'rooster', u'youth', u'chanc'] [u'rspca', u'gear', u'fundrais'] [u'rudd', u'call', u'latitud', u'iraq', u'hostag', u'talk'] [u'sailor', u'adopt', u'underdog', u'status'] [u'scientist', u'search', u'life'] [u'second', u'hartley', u'speed', u'camera', u'share', u'inquiri', u'seek'] [u'scour', u'suburb', u'knife'] [u'shire', u'fill', u'council', u'spot'] [u'lay', u'rest'] [u'societi', u'consid', u'climat', u'chang', u'impact'] [u'sport', u'pedigre', u'pay', u'lion', u'sherman'] [u'studi', u'find', u'inadequ', u'support', u'vietnam', u'vet'] [u'sugar', u'tip', u'replac', u'fossil', u'fuel'] [u'survey', u'find', u'jack', u'threat', u'worri', u'hunter'] [u'survey', u'reveal', u'motorist', u'fear'] [u'cut', u'busi', u'incent', u'budget'] [u'rise', u'rule', u'budget'] [u'teenag', u'charg', u'polic', u'pursuit'] [u'teen', u'question', u'long', u'pursuit'] [u'thorp', u'applaud', u'miss', u'world', u'champ'] [u'thousand', u'flee', u'togo', u'ahead', u'elect', u'result'] [u'truck', u'crash', u'land', u'hospit'] [u'townsvill', u'rainfal', u'averag'] [u'tribut', u'protest', u'mark', u'joh', u'funer'] [u'triumphant', u'close', u'singh'] [u'chief', u'challeng', u'leader', u'nuclear', u'treati'] [u'uranium', u'explor', u'increas'] [u'jet', u'suspect', u'midair', u'collis'] [u'militari', u'miss', u'recruit', u'target'] [u'militari', u'recov', u'bodi', u'pilot'] [u'vandalis', u'memori', u'reloc'] [u'veget', u'chang', u'expect', u'help', u'farmer'] [u'veteran', u'bind', u'commemor'] [u'budget', u'hold', u'surpris'] [u'vietnam', u'visit', u'trade', u'secur', u'talk'] [u'case', u'final', u'go', u'court'] [u'wall', u'street', u'share', u'climb'] [u'warrant', u'owner', u'attack', u'dog'] [u'weather', u'spark', u'eyr', u'peninsula'] [u'wellington', u'communiti', u'urg', u'sell', u'town'] [u'woman', u'hurt'] [u'workshop', u'focus', u'mental', u'ill'] [u'zinifex', u'settl', u'asbesto', u'compens', u'case'] [u'kill', u'mail', u'plane', u'crash'] [u'aborigin', u'affair', u'backburn', u'democrat'] [u'say', u'need', u'breed', u'specif', u'law'] [u'reject', u'claim', u'limit', u'access', u'bali', u'pair'] [u'age', u'popul', u'prompt', u'hunter', u'work', u'forc', u'warn'] [u'hand', u'deck', u'port', u'lincoln', u'train', u'cours'] [u'ord', u'slip', u'amid', u'weak', u'market'] [u'qaeda', u'suspect', u'captur', u'pakistan'] [u'ansar', u'sunna', u'claim', u'arbil', u'bomb'] [u'applic', u'seek', u'green', u'project'] [u'archaeologist', u'uncov', u'ancient', u'chines', u'fort'] [u'artist', u'hunger', u'din', u'stranger'] [u'australia', u'compet', u'softbal', u'world'] [u'murder', u'jail', u'year'] [u'bargara', u'golf', u'club', u'vote', u'land', u'sale'] [u'field', u'bathurst', u'posit'] [u'bigger', u'qanta', u'plan', u'reduc', u'fare'] [u'lose', u'vote', u'valu', u'titl'] [u'birney', u'blast', u'boundari', u'chang', u'plan'] [u'blair', u'tip', u'poll', u'final', u'campaign'] [u'book', u'help', u'produc', u'tick', u'fever', u'vaccin'] [u'bowen', u'sign', u'cowboy', u'deal'] [u'boy', u'sentenc', u'high', u'school', u'blaze'] [u'brisban', u'face', u'water', u'restrict', u'week'] [u'broule', u'cooma', u'north', u'electron', u'bank', u'boost'] [u'budget', u'accus', u'ignor', u'drought', u'farmer'] [u'budget', u'promis', u'polic', u'station'] [u'build', u'societi', u'defend', u'credit', u'union', u'offer'] [u'build', u'societi', u'takeov'] [u'fund', u'protest', u'target', u'visit'] [u'bushfir', u'inquiri', u'chief', u'urg', u'visit', u'eyr'] [u'campaign', u'open', u'foreign', u'mind', u'australian', u'wine'] [u'carr', u'neglect', u'disabl', u'support', u'fund'] [u'cattl', u'eat', u'weed'] [u'caucau', u'avail', u'fiji', u'year', u'absenc'] [u'chamber', u'welcom', u'start', u'pipelin', u'construct'] [u'chan', u'admit', u'own', u'heroin', u'suitcas', u'polic'] [u'chan', u'lawyer', u'unhappi', u'involv'] [u'child', u'murder', u'elig', u'parol'] [u'children', u'commission', u'start', u'child', u'abus', u'probe'] [u'coach', u'see', u'posit', u'thorp', u'break'] [u'coastguard', u'help', u'yacht', u'rescu'] [u'comment', u'seek', u'aerodrom', u'plan'] [u'commerci', u'stamp', u'duti', u'relief', u'need', u'properti'] [u'confer', u'hear', u'whale', u'rescu', u'effort'] [u'conserv', u'group', u'warn', u'land', u'clear', u'threat'] [u'coron', u'rule', u'newborn', u'murder', u'hospit'] [u'council', u'back', u'plan'] [u'council', u'consid', u'grandstand', u'repair', u'option'] [u'councillor', u'foul', u'sewag', u'spill'] [u'council', u'rate', u'rise', u'push', u'bring', u'differ', u'respons'] [u'council', u'market', u'forc', u'rule', u'lygon', u'street'] [u'court', u'extinguish', u'charg', u'broom', u'firm'] [u'cream', u'unit', u'rise'] [u'date', u'puppi', u'breed', u'busi'] [u'desper', u'farmer', u'walk', u'land'] [u'determin', u'expect', u'hasten', u'pilbara', u'land'] [u'develop', u'nation', u'urg', u'stem', u'pollut'] [u'differ', u'thiev', u'target', u'servic', u'station'] [u'disabl', u'worker', u'agenc', u'longer', u'viabl', u'minist'] [u'doubt', u'rais', u'mackay', u'plan', u'scheme'] [u'downer', u'make', u'appeal', u'hostag', u'releas'] [u'downer', u'put', u'hostag', u'case', u'arab'] [u'dozen', u'kill', u'iraq', u'bomb', u'blast'] [u'dubbo', u'council', u'push', u'rate', u'rise'] [u'eagl', u'quiz', u'nightclub', u'shoot'] [u'eagl', u'oper', u'polic', u'nightclub'] [u'eagl', u'cooper', u'polic', u'nightclub'] [u'ekimov', u'miss', u'tour', u'train', u'smash'] [u'electr', u'fault', u'factori'] [u'emerg', u'servic', u'skill', u'test'] [u'energi', u'compani', u'har', u'power', u'rock'] [u'wife', u'call', u'jackson', u'sociopath', u'wit'] [u'fake', u'acupunctur', u'effect', u'migrain'] [u'famili', u'appeal', u'brother', u'releas'] [u'famili', u'feud', u'boil'] [u'farmer', u'gather', u'emerald', u'outlook', u'confer'] [u'farmer', u'want', u'drought'] [u'farm', u'group', u'seek', u'livestock', u'theft', u'review'] [u'govt', u'accus', u'jeopardis', u'game'] [u'figur', u'highlight', u'april', u'hunter'] [u'flatley', u'state', u'union', u'clash'] [u'flat', u'retail', u'figur', u'support', u'rate', u'hold'] [u'flight', u'control', u'fault', u'suspect', u'king', u'crash'] [u'footbal', u'comp', u'restructur', u'follow', u'crowd'] [u'detect', u'steal', u'drug', u'sell', u'court'] [u'forum', u'address', u'youth', u'crime'] [u'foster', u'extend', u'southcorp', u'takeov'] [u'game', u'baton', u'relay', u'bypass', u'wide'] [u'gatto', u'kiss', u'veniamin', u'month', u'kill'] [u'gene', u'link', u'peopl', u'madagascar', u'borneo'] [u'ghan', u'servic', u'doubl', u'meet', u'holiday', u'demand'] [u'girl', u'hospit', u'boat', u'blast'] [u'goonellabah', u'accus', u'attempt', u'murder'] [u'govern', u'announc', u'brigalow', u'conserv', u'plan'] [u'govt', u'accus', u'break', u'bushfir', u'promis'] [u'govt', u'ask', u'boost', u'calder', u'fund'] [u'govt', u'defend', u'fish', u'licenc', u'time', u'frame'] [u'govt', u'chang', u'nurs', u'killer', u'bar'] [u'govt', u'releas', u'region'] [u'great', u'britain', u'name', u'farrel', u'replac'] [u'green', u'group', u'seek', u'fund', u'cape', u'york', u'park'] [u'hall', u'show', u'swan', u'captainci'] [u'heritag', u'list', u'seek', u'histor', u'power', u'station'] [u'hockey', u'australia', u'stand', u'elder', u'suspens'] [u'inquiri', u'hear', u'conflict', u'opinion'] [u'iran', u'pledg', u'continu', u'nuclear', u'program'] [u'iraq', u'hostag', u'tell', u'fear', u'safeti', u'measur'] [u'iraqi', u'take', u'oath', u'offic'] [u'iraq', u'widow', u'threaten', u'blair'] [u'iron', u'talk', u'consid', u'normal'] [u'protest', u'sue', u'union', u'warn'] [u'irrig', u'accredit', u'scheme', u'moot'] [u'order', u'bring', u'home', u'laden', u'head'] [u'jail', u'await', u'rapist', u'marriag', u'propos', u'reject'] [u'jubile', u'plan', u'prospero'] [u'kingaroy', u'return', u'normal', u'funer'] [u'kookaburra', u'drop', u'elder', u'oversea', u'play'] [u'learner', u'motorcyclist', u'fin', u'speed'] [u'leigh', u'matthew', u'factbox'] [u'lethal', u'reach', u'decad', u'mileston', u'lion'] [u'linesman', u'score', u'say', u'angri', u'mourinho'] [u'littl', u'budget', u'busi', u'burk', u'say'] [u'liverpool', u'celebr', u'mourinho', u'fire', u'part', u'barb'] [u'malle', u'toxic', u'wast', u'dump', u'roadshow', u'begin'] [u'arrest', u'cathedr', u'blaze'] [u'fascin', u'court', u'tell'] [u'jail', u'arm', u'robberi'] [u'manjimup', u'look', u'boost', u'doctor', u'number'] [u'mayor', u'back', u'high', u'countri', u'flight'] [u'melbourn', u'airport', u'readi', u'super', u'size', u'airlin'] [u'microwav', u'diamond', u'offer', u'data', u'secur', u'solut'] [u'miner', u'dept', u'want', u'know', u'baryulgil'] [u'minist', u'confid', u'chang', u'ahead'] [u'minist', u'voic', u'opposit', u'gaza', u'demolit', u'plan'] [u'money', u'main', u'barrier', u'malaria', u'fight'] [u'mop', u'continu', u'silo'] [u'hospit', u'mental', u'health', u'staff', u'concern', u'air'] [u'number', u'need', u'debutant', u'ball'] [u'mountain', u'lion', u'play', u'mous', u'land', u'holder'] [u'mundin', u'rule', u'dragon', u'return'] [u'nation', u'bodi', u'assess', u'water', u'usag'] [u'nation', u'youth', u'orchestra', u'rehears', u'armidal'] [u'near', u'strength', u'cowboy', u'readi', u'eel', u'clash'] [u'target', u'petrol', u'sniffer'] [u'member', u'help', u'save', u'arnaud'] [u'opposit', u'promis', u'stimul', u'popul'] [u'painter', u'jail', u'canberra', u'mug'] [u'palm', u'council', u'chief', u'look', u'chang'] [u'peruvian', u'presid', u'guilti', u'elector', u'fraud'] [u'pest', u'control', u'honour', u'insect'] [u'phone', u'disput', u'prompt', u'kill', u'court', u'tell'] [u'platypus', u'maladi', u'sweep', u'asid', u'devil', u'diseas'] [u'polic', u'chase', u'end', u'pair', u'rescu', u'burn'] [u'politician', u'reject', u'clone'] [u'plater', u'charg', u'highway', u'drive'] [u'pratt', u'rabat', u'open'] [u'pregnant', u'mum', u'meningococc', u'children', u'studi'] [u'prison', u'offic', u'prais', u'hostag', u'situat'] [u'protest', u'troop', u'pull', u'hostag', u'releas'] [u'rail', u'link', u'group', u'urg', u'work'] [u'keep', u'rat', u'steadi'] [u'referendum', u'hold', u'trade', u'hour'] [u'report', u'blame', u'sydney', u'soccer', u'violenc'] [u'riverland', u'target', u'tourist'] [u'road', u'work', u'speed', u'fin', u'link'] [u'roma', u'student', u'school', u'plan'] [u'shoot', u'anger', u'park', u'servic'] [u'rspca', u'chief', u'urg', u'apologis', u'volunt'] [u'rspca', u'welcom', u'danger', u'dog'] [u'rumsfeld', u'say', u'forc', u'chavez'] [u'runway', u'damag', u'caus', u'concern', u'casa'] [u'russian', u'pilot', u'cloud', u'parad'] [u'sam', u'seafood', u'sink', u'receivership'] [u'saudi', u'aust', u'livestock', u'trade', u'resum'] [u'seafood', u'industri', u'reject', u'label', u'chang'] [u'king', u'crash', u'investig', u'closer', u'caus'] [u'search', u'call', u'indonesian', u'crew'] [u'search', u'call', u'miss', u'fisherman'] [u'second', u'doctor', u'implic', u'health', u'crisi'] [u'sexi', u'texa', u'cheerlead', u'clear', u'hurdl'] [u'shoalhaven', u'promot', u'busi', u'opportun'] [u'singl', u'trader', u'hurt', u'wheat', u'industri'] [u'smoker', u'fin', u'mackay'] [u'soft', u'drink', u'firm', u'accus', u'offer', u'school'] [u'lanka', u'moodi'] [u'staff', u'push', u'bargain', u'issu', u'graduat'] [u'stamp', u'duti', u'chang', u'expect', u'help', u'alic', u'spring'] [u'suicid', u'bomber', u'kill', u'score', u'iraq'] [u'swiss', u'detain', u'russian', u'minist'] [u'sydney', u'sewag', u'lithgow', u'collieri'] [u'tah', u'unchang', u'state', u'union', u'clash'] [u'tourism', u'campaign', u'target', u'victorian'] [u'team', u'prepar', u'emerg', u'competit'] [u'teen', u'accus', u'assault', u'face', u'court'] [u'teen', u'charg', u'chase'] [u'telco', u'order', u'simplifi', u'phone', u'contract'] [u'texan', u'apologis', u'victim', u'famili', u'execut'] [u'thoma', u'question', u'gehrig', u'suspens'] [u'thorp', u'lapaglia', u'launch', u'sydney'] [u'tie', u'rescu', u'drain', u'ordeal'] [u'tingha', u'bail', u'hostel', u'close'] [u'townsvill', u'council', u'prostitut', u'submiss'] [u'treasur', u'tunnel', u'snub', u'disappoint', u'newman'] [u'truck', u'firm', u'face', u'long', u'distanc', u'drive', u'charg'] [u'turf', u'sydney', u'shoot', u'polic'] [u'face', u'court', u'school'] [u'unicef', u'urg', u'zimbabw', u'accept', u'food'] [u'union', u'ask', u'govern', u'save', u'preschool'] [u'admit', u'forc', u'stretch'] [u'feder', u'reserv', u'rais', u'rat'] [u'soldier', u'joke', u'abus', u'iraqi', u'prison'] [u'support', u'iraq', u'slide', u'poll'] [u'terrorist', u'fail', u'recognis', u'lodhi'] [u'team', u'fin', u'abus', u'languag'] [u'venezuela', u'seek', u'extradit', u'accus', u'terrorist'] [u'hire', u'consult', u'hunt', u'budget', u'mole'] [u'violenc', u'end', u'sydney', u'unit', u'season', u'earli'] [u'virgin', u'bomb', u'scare', u'accus', u'miss', u'court', u'date'] [u'govt', u'accus', u'grab'] [u'polic', u'disappoint', u'eagl', u'pair'] [u'warrnambool', u'council', u'report', u'go', u'parliament'] [u'wast', u'releas'] [u'wave', u'technolog', u'risk', u'sweep', u'away'] [u'weather', u'hamper', u'wreck', u'trawler', u'clean'] [u'deconstruct', u'tsunami', u'respons'] [u'wilkinson', u'name', u'face', u'barbarian'] [u'williamtown', u'boe', u'engin', u'stop', u'work'] [u'wind', u'woe', u'stop', u'kite', u'world', u'record', u'attempt'] [u'wollondilli', u'council', u'adopt', u'biodivers', u'strategi'] [u'woman', u'jail', u'stab', u'partner'] [u'wood', u'brother', u'plead', u'kidnapp'] [u'wood', u'famili', u'free', u'ransom', u'downer'] [u'yorta', u'yorta', u'second', u'bridg', u'site'] [u'enjoy', u'footi', u'your', u'win', u'corn'] [u'kill', u'insurg', u'target', u'iraqi', u'secur'] [u'make', u'chang', u'complaint', u'review', u'panel'] [u'acquitt', u'leav', u'murder', u'accus', u'reliev'] [u'govt', u'consult', u'bull'] [u'afghanistan', u'urg', u'femal', u'worker'] [u'player', u'associ', u'look', u'past', u'player'] [u'afternoon', u'ralli', u'pull', u'month'] [u'agent', u'death', u'affect', u'iraq', u'mission'] [u'agforc', u'appoint'] [u'alleg', u'wrong', u'detent', u'case', u'blow'] [u'back', u'expert', u'review', u'fund'] [u'appeal', u'court', u'jail', u'teacher', u'student'] [u'asbesto', u'discoveri', u'close', u'park'] [u'aust', u'commit', u'fight', u'polio', u'indonesia'] [u'australia', u'saudi', u'arabia', u'sign', u'sheep', u'export'] [u'bell', u'wast', u'burn', u'rais', u'green', u'fear'] [u'bemax', u'buy', u'iluka', u'land'] [u'bird', u'space', u'sell', u'astronom', u'price'] [u'bird', u'like', u'dinosaur', u'link', u'carnivor', u'herbivor'] [u'blast', u'damag', u'british', u'consul'] [u'book', u'expos', u'sinatra', u'link', u'mafia'] [u'bowen', u'happi', u'scuttl', u'specul'] [u'brigalow', u'decis', u'split', u'communiti'] [u'british', u'minut', u'campaign', u'blitz'] [u'budget', u'deficit', u'result', u'rampant', u'spend'] [u'budget', u'fail', u'creat', u'fairer', u'victoria'] [u'bulgaria', u'pull', u'troop', u'iraq'] [u'bulldog', u'lack', u'punch', u'injur', u'trio', u'lockyer'] [u'bundaberg', u'patient', u'discuss', u'treatment', u'option'] [u'apprenticeship', u'complet', u'bonus'] [u'action', u'canberra', u'hous', u'woe'] [u'go', u'midwiv', u'support'] [u'campbel', u'clear', u'deck', u'gold', u'coast', u'shift'] [u'can', u'look', u'auckland'] [u'carr', u'stand', u'advic'] [u'cemeteri', u'vandal', u'attack', u'spark', u'fenc'] [u'citrus', u'farmer', u'sell', u'fruit', u'illeg'] [u'coal', u'alli', u'releas', u'sustain', u'report'] [u'colli', u'coal', u'miner', u'work'] [u'commonwealth', u'consid', u'drought'] [u'commonwealth', u'calder', u'fund', u'approach'] [u'communiti', u'consult', u'green', u'levi', u'plan'] [u'confer', u'hear', u'region', u'museum', u'fear'] [u'coron', u'rais', u'prospect', u'plate', u'restrict'] [u'costello', u'address', u'budget'] [u'council', u'concern', u'drug', u'alcohol', u'respons'] [u'council', u'doubt', u'benefit', u'auditor', u'general', u'probe'] [u'councillor', u'outlin', u'need', u'transport', u'spend'] [u'council', u'miss', u'warship'] [u'council', u'say', u'resid', u'understand', u'rate', u'rise'] [u'council', u'seek', u'higher', u'rat', u'million', u'fund'] [u'council', u'worri', u'highway', u'hamper', u'tourism'] [u'court', u'hear', u'navi', u'approv', u'westralia', u'hose'] [u'court', u'hear', u'palm', u'island', u'riot'] [u'court', u'jail', u'drink', u'driver'] [u'court', u'knock', u'inverel', u'brothel', u'opposit'] [u'crime', u'fight', u'face', u'overhaul'] [u'meet', u'narrabri'] [u'defenc', u'associ', u'welcom', u'king', u'inquiri'] [u'deporte', u'famili', u'want', u'privaci', u'govt', u'say'] [u'detain', u'toddler', u'deni', u'playgroup', u'access'] [u'detent', u'rule', u'surpris', u'advoc'] [u'dont', u'play', u'polit', u'bundaberg', u'staff', u'beatti'] [u'decid', u'mcgee', u'sentenc', u'appeal'] [u'draft', u'workplac', u'death', u'law', u'win', u'union', u'support'] [u'drought', u'forc', u'farmer', u'abandon', u'land'] [u'drug', u'haul', u'accus', u'face', u'evict'] [u'eagl', u'pair', u'break', u'silenc', u'nightclub', u'incid'] [u'eagl', u'pair', u'break', u'silenc', u'nightclub'] [u'east', u'coast', u'vineyard', u'benefit', u'boutiqu', u'wineri'] [u'elliott', u'win', u'right', u'redback'] [u'energi', u'firm', u'beat', u'rock', u'power', u'plan'] [u'engin', u'innov', u'cut', u'diesel', u'consumpt'] [u'ethiopian', u'drought', u'flood', u'caus', u'food', u'shortag'] [u'examin', u'aborigin', u'teen', u'leav', u'school', u'govt', u'tell'] [u'expert', u'question', u'forestri', u'tasmania', u'return'] [u'expert', u'warn', u'indoor', u'pollut', u'danger'] [u'explos', u'shake', u'british', u'consul', u'york'] [u'explos', u'chechnya'] [u'famili', u'fear', u'miss', u'teen'] [u'famili', u'plead', u'releas', u'australian', u'hostag'] [u'farina', u'rap', u'tunnel', u'incid'] [u'farmer', u'seek', u'wild', u'fund'] [u'figur', u'highlight', u'high', u'pregnant', u'smoker', u'number'] [u'fisher', u'want', u'outflow', u'chang'] [u'flatley', u'give', u'hope', u'futur'] [u'foot', u'head', u'menzi', u'institut'] [u'foreign', u'worker', u'equal', u'right', u'union'] [u'govt', u'advis', u'fin', u'anti', u'howard', u'graffiti'] [u'high', u'school', u'teacher', u'get', u'jail', u'sentenc'] [u'freo', u'sweat', u'longmuir', u'pie', u'clash'] [u'fund', u'marin', u'centr', u'expans'] [u'game', u'baton', u'snub', u'see', u'fait', u'accompli'] [u'gate', u'open', u'agfest'] [u'gerrard', u'hint', u'stay', u'liverpool'] [u'gloucest', u'shire', u'rate', u'rise', u'smaller'] [u'gold', u'price', u'predict', u'doubl'] [u'govt', u'dismiss', u'anger', u'emerg', u'headquart'] [u'govt', u'stand', u'explor', u'grant'] [u'govt', u'urg', u'listen', u'communiti', u'cdep'] [u'hall', u'creek', u'polic', u'alcohol', u'restrict'] [u'hall', u'tip', u'swan', u'captainci'] [u'hardi', u'grape', u'harvest', u'crush', u'record'] [u'harnwel', u'lead', u'glori'] [u'hewitt', u'withdraw', u'foot', u'fault'] [u'hop', u'european', u'expo', u'boost', u'seafood', u'sale'] [u'hous', u'label', u'racist', u'migrant', u'comment'] [u'hous', u'plan', u'spark', u'koala', u'fear'] [u'human', u'error', u'disrupt', u'emerg', u'polic', u'line'] [u'illawarra', u'group', u'school', u'manag'] [u'illeg', u'log', u'blame', u'conflict'] [u'india', u'launch', u'satellit'] [u'india', u'pakistan', u'resum', u'talk'] [u'inquiri', u'consid', u'cattl', u'tick', u'fever', u'issu'] [u'tripl', u'public', u'servant', u'matern', u'leav'] [u'islam', u'council', u'appeal', u'wood', u'releas'] [u'review', u'undermin', u'medicar', u'principl', u'labor'] [u'jackson', u'camp', u'worri', u'blackmail', u'wit', u'say'] [u'jail', u'adler', u'give', u'favour', u'treatment', u'brogden'] [u'judg', u'critic', u'detent', u'health', u'servic'] [u'judg', u'declar', u'england', u'mistrial'] [u'judg', u'say', u'baxter', u'detaine', u'neglect'] [u'push', u'sugar', u'concess', u'ambassador'] [u'labor', u'criticis', u'mean', u'internet', u'bank', u'fee'] [u'land', u'council', u'prais', u'nativ', u'titl', u'studi', u'support'] [u'leaki', u'truck', u'leav', u'cross', u'countri', u'toxic', u'trail'] [u'lehmann', u'get', u'saca', u'back', u'select', u'panel'] [u'liber', u'question', u'sick', u'speaker', u'trip'] [u'librari', u'buy', u'piec', u'adelaid', u'histori'] [u'charg', u'child', u'porn', u'work', u'hospit'] [u'custodi', u'cathedr'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'plead', u'guilti', u'cocain', u'haul'] [u'march', u'trade', u'deficit'] [u'massiv', u'timber', u'theft', u'snowi', u'park', u'alleg'] [u'mayor', u'dunda', u'elector'] [u'mayor', u'back', u'donald', u'mackay', u'memori'] [u'mayor', u'confid', u'rate', u'rise', u'support'] [u'mayor', u'promis', u'brisban', u'powerhous'] [u'miller', u'play', u'close', u'chest'] [u'million', u'miss', u'iraq', u'reconstruct', u'fund'] [u'millward', u'vow', u'fight', u'helen', u'suspens'] [u'minist', u'get', u'hospit', u'harass', u'assur'] [u'fund', u'need', u'south', u'east', u'infrastructur'] [u'mourinho', u'heroic', u'land', u'year', u'deal'] [u'back', u'devaugh', u'recommend'] [u'murray', u'say', u'origin', u'spot', u'grab'] [u'nasa', u'find', u'opportun', u'bog'] [u'nasa', u'hit', u'troubl', u'shuttl', u'rehears'] [u'near', u'record', u'trade', u'deficit'] [u'newcastl', u'form', u'fulham'] [u'newman', u'get', u'game', u'baton', u'honour'] [u'news', u'corp', u'quarter', u'profit', u'drop'] [u'sign', u'help', u'protect', u'endang', u'mari', u'river'] [u'volleybal', u'coach', u'set', u'lofti', u'goal'] [u'nickel', u'turn', u'heat', u'power'] [u'north', u'push', u'tech', u'colleg'] [u'reject', u'defam', u'propos'] [u'govt', u'water', u'abus', u'child', u'letter'] [u'nurs', u'strike'] [u'offic', u'sentenc', u'death', u'worker', u'murder'] [u'price', u'tip', u'stay'] [u'onesteel', u'wire', u'rope', u'plant', u'invest', u'bring'] [u'opposit', u'fight', u'north', u'coast', u'polic'] [u'opposit', u'predict', u'bigger', u'budget', u'deficit'] [u'palestinian', u'begin', u'municip', u'elect'] [u'palestinian', u'teen', u'kill', u'clash', u'soldier'] [u'papunya', u'council', u'defend', u'manag'] [u'parent', u'encourag', u'research', u'stroller', u'safeti'] [u'pell', u'abbott', u'paint', u'win', u'bald', u'archi'] [u'pharmacist', u'play', u'greater', u'role', u'treat'] [u'pharmacist', u'urg', u'govt', u'stand', u'firm'] [u'pike', u'stand', u'health', u'servic', u'commission'] [u'pinochet', u'judg', u'announc', u'retir'] [u'govt', u'reconsid', u'forestri', u'chang'] [u'polic', u'vote', u'forc', u'australian'] [u'polic', u'associ', u'rais', u'cell', u'overcrowd'] [u'polic', u'interview', u'drain'] [u'polic', u'seek', u'help', u'solv', u'newman', u'crime'] [u'polic', u'await', u'crash', u'inquiri', u'outcom'] [u'poll', u'open', u'elect'] [u'pope', u'smash', u'ebay', u'record'] [u'power', u'firm', u'urg', u'boost', u'communiti', u'contribut'] [u'public', u'ask', u'report', u'speed', u'driver'] [u'public', u'hospit', u'nurs', u'strike'] [u'public', u'need', u'time', u'know', u'costello'] [u'coron', u'call', u'inform', u'patel', u'case'] [u'race', u'coverag', u'disput', u'creat', u'concern'] [u'report', u'find', u'soldier', u'death', u'cover'] [u'resid', u'protest', u'maleni', u'supermarket', u'plan'] [u'review', u'consid', u'councillor'] [u'rfds', u'report', u'turbul', u'foreign', u'doctor'] [u'rural', u'financi', u'counsellor', u'train', u'increas'] [u'sarina', u'council', u'put', u'focus', u'water', u'woe'] [u'search', u'resum', u'miss', u'woman'] [u'offend', u'plead', u'guilti', u'prison', u'employe'] [u'shire', u'grant', u'temporari', u'beach', u'smoke'] [u'slow', u'progress', u'frustrat', u'indigen', u'campaign'] [u'smith', u'clear', u'luck', u'lucki'] [u'solut', u'need', u'hous', u'age', u'australian', u'say'] [u'stage', u'showdown', u'gun'] [u'stripper', u'remov', u'cloth', u'artist', u'court'] [u'studi', u'examin', u'elder', u'experi', u'asthma'] [u'studi', u'flag', u'anaesthet', u'effect'] [u'studi', u'highlight', u'anaesthet', u'risk'] [u'suffer', u'safin', u'crash', u'rome'] [u'sydney', u'water', u'worker', u'strike', u'support', u'colleagu'] [u'teacher', u'offer'] [u'teacher', u'snub', u'offer'] [u'terror', u'accus', u'committ', u'hear', u'adjourn'] [u'test', u'clear', u'parliament', u'powder', u'mysteri'] [u'texa', u'target', u'sexi', u'cheerlead'] [u'trucki', u'want', u'flexibl', u'regul'] [u'truck', u'firm', u'plead', u'guilti', u'work', u'case'] [u'trial', u'summer'] [u'trial', u'summer', u'seri'] [u'horror', u'road', u'smash'] [u'leader', u'minut', u'campaign'] [u'union', u'maintain', u'attack', u'hospit', u'manag'] [u'marin', u'shoot', u'unarm', u'iraqi', u'self', u'defenc'] [u'retail', u'join', u'australian', u'wool', u'boycott'] [u'soldier', u'arrest', u'traffic', u'ammunit'] [u'vietnam', u'back', u'australian', u'attend', u'asean'] [u'vietnam', u'support', u'aust', u'summit'] [u'voter', u'elect'] [u'walk', u'trail', u'enhanc', u'visitor', u'experi'] [u'water', u'treatment', u'plant', u'time'] [u'water', u'worker', u'tell', u'strike'] [u'town', u'har', u'wind', u'power'] [u'util', u'futur', u'parliament'] [u'arent', u'gather', u'celebr', u'shortag', u'hit'] [u'westpac', u'reveal', u'record', u'profit'] [u'white', u'powder', u'spark', u'parliament', u'evacu'] [u'worker', u'refus', u'return', u'build', u'site'] [u'youth', u'crime', u'knee', u'jerk', u'reaction'] [u'bodi', u'iraq'] [u'acci', u'press', u'meaning', u'reform'] [u'hero', u'ambrosini', u'brace', u'titl', u'showdown', u'snub'] [u'acoss', u'press', u'posit', u'welfar', u'reform'] [u'seek', u'increas', u'support', u'public', u'school'] [u'hour', u'clinic', u'reliev', u'hospit', u'pressur'] [u'airport', u'temporari', u'arriv', u'facil', u'run'] [u'alcohol', u'plan', u'work', u'cherbourg'] [u'qaeda', u'plot', u'kill', u'musharraf', u'foil'] [u'chief', u'attack', u'govt', u'medic', u'scandal'] [u'focus', u'societi', u'neediest'] [u'anti', u'plastic', u'campaign', u'bag', u'tasmanian', u'year'] [u'anti', u'smoke', u'law', u'threaten', u'cigar', u'bar'] [u'pleas', u'oversea', u'talk'] [u'appeal', u'lead', u'tougher', u'sentenc'] [u'appoint', u'boost', u'mine'] [u'australian', u'arrest', u'link', u'bali', u'heroin', u'haul'] [u'australian', u'deni', u'jackson', u'molest'] [u'babi', u'lleyton'] [u'decid', u'challeng'] [u'baxter', u'protest', u'fin', u'nude', u'statement'] [u'beatti', u'launch', u'small', u'busi', u'boost'] [u'bellami', u'say', u'citi', u'countri', u'clash', u'origin', u'trial'] [u'betfair', u'licenc', u'think', u'hing', u'race'] [u'blair', u'lead', u'labour', u'histor', u'victori'] [u'blair', u'elect'] [u'blair', u'win', u'term'] [u'bowl', u'club', u'bias', u'surviv'] [u'british', u'conserv', u'leader', u'stand'] [u'break', u'hill', u'nurs', u'join', u'state', u'wide', u'stoppag'] [u'brother', u'acquitt', u'chang', u'abberton', u'case'] [u'brumbi', u'lose', u'smith', u'chief', u'encount'] [u'behaviour', u'review', u'student', u'dump'] [u'driver', u'racial', u'taunt', u'dump', u'student'] [u'bush', u'demot', u'armi', u'general', u'ghraib', u'scandal'] [u'australian', u'polic', u'leav'] [u'fish', u'hatcheri', u'site', u'sell'] [u'care', u'urg', u'pacif', u'highway', u'upgrad'] [u'catch', u'hand', u'corbi', u'deserv', u'jail', u'prosecut'] [u'charg', u'drop', u'mcdonald', u'shoot', u'accus'] [u'child', u'leav', u'wrong', u'deport', u'beatti'] [u'citi', u'beat', u'countri', u'lismor'] [u'citi', u'lead', u'countri'] [u'clarkson', u'back', u'spider', u'sledg', u'pledg'] [u'coff', u'council', u'back', u'rate', u'rise'] [u'combin', u'drug', u'improv', u'heart', u'diseas', u'surviv'] [u'complaint', u'air', u'club', u'sale', u'plan'] [u'conman', u'ban', u'aborigin', u'communiti'] [u'corbi', u'bali', u'court'] [u'corbi', u'prosecutor', u'final', u'submiss'] [u'corbi', u'trial', u'resum'] [u'corbi', u'wit', u'stab', u'jail'] [u'coron', u'deliv', u'fatal', u'polic', u'shoot', u'find'] [u'coron', u'urg', u'tighten', u'learner', u'driver', u'law'] [u'correct', u'surgeri', u'fast', u'track', u'patel', u'patient'] [u'costa', u'urg', u'support', u'highway', u'flyover'] [u'council', u'consid', u'entertain', u'centr', u'link', u'rate'] [u'council', u'plan', u'chemic', u'spill', u'emerg'] [u'council', u'power', u'impound', u'danger', u'dog'] [u'council', u'spend', u'fund', u'freeli'] [u'council', u'prosecut', u'grazier', u'stock', u'rout'] [u'council', u'welcom', u'wodonga', u'hous', u'plan'] [u'crow', u'cling', u'slender', u'lead'] [u'daniel', u'morcomb', u'parent', u'launch', u'foundat'] [u'darbi', u'fall', u'sentenc', u'neighbour'] [u'darter', u'look', u'good', u'start', u'jaeger'] [u'deadlin', u'loom', u'object', u'valuat', u'rise'] [u'defenc', u'dept', u'land', u'sale'] [u'demon', u'storm', u'home', u'crow'] [u'desert', u'festiv', u'consid', u'chang'] [u'detain', u'children', u'allow', u'play', u'group', u'visit'] [u'dfat', u'issu', u'philippin', u'travel', u'warn'] [u'attack', u'outcri', u'mcgee', u'case'] [u'drink', u'drive', u'land', u'jail'] [u'driver', u'jail', u'fatal', u'kiama', u'accid'] [u'driver', u'sight', u'escap', u'inmat'] [u'drought', u'scuttl', u'saudi', u'sheep', u'export', u'plan'] [u'stand', u'tree', u'clear', u'polici'] [u'dump', u'tils', u'sign', u'raider'] [u'eas', u'demand', u'like', u'rat', u'steadi'] [u'employ', u'workplac', u'death'] [u'apologis', u'uranium', u'leak'] [u'plead', u'guilti', u'ranger', u'contamin'] [u'court', u'ranger', u'contamin'] [u'everton', u'welcom', u'champion', u'leagu', u'rule'] [u'extend', u'regul', u'threaten', u'competit'] [u'factori', u'worker', u'govt', u'save', u'job'] [u'famili', u'plea', u'help', u'solv', u'elder', u'man', u'murder'] [u'fear', u'hold', u'kosciuszko', u'plan', u'fund'] [u'feedlot', u'look', u'live', u'sheep', u'export', u'benefit'] [u'femal', u'swim', u'session', u'return'] [u'forc', u'late', u'chang', u'crow'] [u'ford', u'attack', u'corbi', u'testimoni', u'court', u'tell'] [u'forestri', u'group', u'defend', u'timber', u'price'] [u'black', u'jone', u'coach', u'samoa', u'tour'] [u'school', u'chaplain', u'bail', u'child'] [u'forum', u'focus', u'shortag', u'remot', u'child', u'care'] [u'fuel', u'cost', u'put', u'brake', u'grey', u'nomad'] [u'fund', u'allow', u'fight', u'suicid'] [u'garcia', u'grab', u'shoot', u'lead', u'north', u'carlolina'] [u'goulburn', u'industri', u'ask', u'slash', u'water', u'usag'] [u'goulburn', u'valley', u'crash', u'leav', u'dead'] [u'govt', u'appoint', u'wild', u'control', u'manag'] [u'govt', u'confid', u'hostag', u'aliv'] [u'govt', u'confid', u'wood', u'aliv'] [u'govt', u'consid', u'reloc', u'children', u'hospit'] [u'govt', u'abandon', u'land', u'democrat'] [u'govt', u'offer', u'region', u'road', u'fund'] [u'green', u'year', u'upper', u'hous', u'term'] [u'hackett', u'predict', u'montreal', u'magic', u'australia'] [u'high', u'incom', u'earner', u'super', u'break'] [u'holli', u'stand', u'asid', u'consid', u'charg'] [u'hope', u'upgrad', u'water', u'suppli', u'flow'] [u'look', u'altern', u'pesticid'] [u'hospit', u'nurs', u'strike'] [u'howard', u'forecast', u'cautious', u'budget'] [u'hugh', u'knock', u'tiger', u'coach'] [u'human', u'antioxid', u'help', u'mice', u'live', u'longer'] [u'hurrican', u'blue', u'edg', u'closer', u'semi'] [u'illeg', u'fish', u'boat', u'catch', u'pacif'] [u'indigen', u'health', u'servic'] [u'indonesian', u'surgeon', u'train', u'darwin', u'hospit'] [u'industri', u'back', u'plan', u'tackl', u'shonki', u'tour', u'guid'] [u'inquiri', u'begin', u'driver', u'dump', u'student'] [u'jaeger', u'edg', u'darter', u'netbal', u'open'] [u'jail', u'thief', u'question', u'legal'] [u'jail', u'employe', u'work', u'inmat', u'attack'] [u'journo', u'lampard', u'year', u'best'] [u'juri', u'acquit', u'sheep', u'feedlot', u'contamin'] [u'king', u'open', u'singapor', u'campaign'] [u'labour', u'doubt', u'victori'] [u'lamb', u'skin', u'price', u'drop'] [u'lenton', u'domin', u'brisban', u'pool'] [u'lewi', u'air', u'teacher', u'gambier', u'claim'] [u'long', u'servic', u'leav', u'entitl', u'chang'] [u'break', u'time', u'spanish', u'titl', u'race'] [u'mango', u'grower', u'keen', u'establish', u'european', u'tie'] [u'plead', u'guilti', u'pawnbrok', u'activ'] [u'mayor', u'cast', u'doubt', u'water', u'pipelin'] [u'mayor', u'defend', u'push', u'polic', u'power'] [u'mayor', u'push', u'higher', u'region', u'councillor'] [u'mcisaac', u'put', u'focus', u'breaker', u'season'] [u'medic', u'emerg', u'forc', u'ferri', u'turnaround'] [u'meet', u'like', u'strong', u'rate', u'rise', u'plan'] [u'milk', u'supplier', u'form', u'collect', u'bargain', u'group'] [u'minist', u'reject', u'propos', u'label', u'chang'] [u'molik', u'french', u'open'] [u'troop', u'rout', u'iraq'] [u'offer', u'boost', u'anim', u'export'] [u'mourner', u'gather', u'rivkin', u'funer'] [u'air', u'ambul', u'servic', u'worri'] [u'rais', u'medicar', u'rort', u'claim'] [u'seek', u'drought', u'measur', u'rethink'] [u'nation', u'trust', u'seek', u'public', u'financ', u'smith'] [u'galleri', u'manag', u'name', u'soon'] [u'deal', u'black', u'coach'] [u'york', u'polic', u'investig', u'small', u'blast'] [u'watch', u'elect', u'promis'] [u'norfolk', u'resid', u'face'] [u'north', u'coast', u'campaign', u'help', u'prompt', u'workplac', u'death'] [u'nullarbor', u'farmer', u'elig', u'drought'] [u'nurs', u'agre', u'strike'] [u'way', u'meet', u'nation', u'park', u'ecosystem', u'plan'] [u'opposit', u'put', u'spotlight', u'infrastructur', u'fund'] [u'parramatta', u'get', u'mayor'] [u'penalti', u'tah', u'break'] [u'pilkadari', u'grab', u'share', u'seoul', u'lead'] [u'pirsa', u'defend', u'shellfish', u'farm', u'approv'] [u'plan', u'bus', u'servic'] [u'apologis', u'wrong', u'deport'] [u'sorri', u'australian', u'deport'] [u'polic', u'crack', u'bail', u'breach'] [u'polic', u'deal', u'intersect', u'infring'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'link', u'aust', u'arrest', u'bali'] [u'polic', u'probe', u'mildura', u'fire'] [u'poll', u'close'] [u'public', u'cast', u'vote', u'council', u'elect'] [u'public', u'longreach', u'council', u'plan'] [u'push', u'reduc', u'mine', u'industri', u'chopper', u'death'] [u'tour', u'industri', u'urg', u'readi', u'boom'] [u'queen', u'open', u'melbourn', u'game'] [u'race', u'club', u'begin', u'carniv', u'plan', u'earli'] [u'statement', u'calm', u'market'] [u'wont', u'rule', u'rate', u'rise'] [u'regent', u'theatr', u'get', u'heritag', u'list'] [u'releg', u'dogfight', u'take', u'centr', u'stage', u'premier'] [u'research', u'deni', u'earth', u'hellish', u'time'] [u'resid', u'debat', u'abalon', u'farm', u'impact'] [u'rivkin', u'farewel', u'funer'] [u'rivkin', u'children', u'reflect', u'father', u'peac'] [u'romania', u'thiev', u'build', u'bogus'] [u'brew', u'fund'] [u'sandi', u'invit', u'spark', u'secur', u'scare'] [u'school', u'fund', u'spark', u'pork', u'barrel'] [u'scottish', u'leagu', u'await', u'latest', u'twist'] [u'seven', u'face', u'court', u'cannabi', u'bullet'] [u'action', u'mele'] [u'shire', u'presid', u'hit', u'assist', u'sheep'] [u'shoot', u'accus', u'drive', u'victim', u'hospit'] [u'sorenstam', u'stumbl', u'virginia'] [u'springborg', u'dissatisfi', u'hospit', u'meet'] [u'staff', u'shortag', u'forc', u'closur', u'intens', u'care'] [u'state', u'growth', u'pleas', u'govt'] [u'state', u'beat', u'feder', u'respons', u'calder'] [u'student', u'help', u'christma', u'clean'] [u'studi', u'highlight', u'concern', u'canberra', u'driver'] [u'suicid', u'bomber', u'kill', u'iraqi', u'polic'] [u'suicid', u'mental', u'health', u'facil', u'usual'] [u'teen', u'plead', u'guilti', u'shoe', u'theft'] [u'tenur', u'nurs', u'charg', u'child', u'porn'] [u'season', u'ahead'] [u'time', u'run', u'drought', u'applic'] [u'toxic', u'wast', u'roadshow', u'ralli'] [u'tribun', u'come', u'hard', u'brawl', u'footbal'] [u'tribun', u'crack', u'video', u'evid'] [u'troop', u'return', u'solomon', u'island'] [u'tweed', u'council', u'rethink', u'park', u'sale'] [u'uefa', u'finalist', u'cska', u'hope', u'escap', u'firework', u'wrath'] [u'uefa', u'hit', u'mourinho', u'goal', u'jibe'] [u'deni', u'somalia', u'incurs'] [u'extend', u'econom', u'sanction', u'syria'] [u'investig', u'possibl', u'zarqawi', u'hospit', u'visit'] [u'pledg', u'investig', u'arm', u'smuggl', u'claim'] [u'govt', u'help', u'fund', u'bendigo', u'bank'] [u'violenc', u'rise', u'iraq'] [u'group', u'seek', u'fund', u'indigen', u'radio', u'station'] [u'parliament', u'approv', u'vote', u'valu'] [u'waratah', u'break', u'red', u'hoodoo'] [u'wit', u'deni', u'jackson', u'abus'] [u'wood', u'captur', u'polit', u'gain'] [u'workshop', u'seek', u'address', u'citi', u'centr', u'plan', u'worri'] [u'world', u'record', u'attempt', u'highlight', u'domest', u'violenc'] [u'presum', u'dead', u'plane', u'crash'] [u'believ', u'kill', u'plane', u'crash'] [u'dead', u'baghdad', u'blast'] [u'call', u'fund', u'boost', u'skill', u'shortag'] [u'angelina', u'joli', u'pakistani', u'plan', u'reloc'] [u'anti', u'protest', u'target', u'lisa'] [u'astrolog', u'nasa', u'comet', u'plan'] [u'auditor', u'general', u'examin', u'report', u'grant'] [u'aust', u'leav', u'philippin', u'clueless', u'deporte', u'search'] [u'award', u'honour', u'program', u'promot', u'good', u'health'] [u'hornbi', u'michael', u'enni', u'interview'] [u'blair', u'keep', u'brown', u'shuffl', u'cabinet'] [u'brisban', u'power', u'criticis', u'unnecessari'] [u'brother', u'appeal', u'wood', u'releas'] [u'bulldog', u'shock', u'lion', u'gabba'] [u'bush', u'hail', u'latvia', u'freedom'] [u'busi', u'group', u'critic', u'long', u'servic', u'leav'] [u'cameron', u'ling', u'interview'] [u'canterburi', u'beat', u'otago', u'book', u'super', u'semi', u'berth'] [u'maker', u'urg', u'instal', u'extra', u'safeti', u'featur'] [u'chelsea', u'celebr', u'late', u'charlton'] [u'chief', u'prosecutor', u'criticis', u'depart', u'fund'] [u'chief', u'ralli', u'kill', u'brumbi', u'final', u'hop'] [u'comeback', u'cat', u'ambush', u'saint'] [u'critic', u'object', u'claim', u'uphold', u'tortur'] [u'cyclist', u'ralli', u'death'] [u'danih', u'satisfi', u'demon'] [u'death', u'toll', u'chines', u'coal', u'blast', u'rise'] [u'rosa', u'control', u'montoya', u'barca', u'smash'] [u'doctor', u'appeal', u'jami', u'oliv', u'help'] [u'downer', u'unsway', u'hostag', u'video'] [u'dragon', u'ring', u'rabbitoh'] [u'dravid', u'hurri', u'indian', u'captain'] [u'economist', u'doubt', u'courag', u'push', u'reform'] [u'elder', u'pair', u'kill', u'collis'] [u'englishman', u'finch', u'fli', u'italian', u'open', u'lead'] [u'ethiopian', u'warn', u'post', u'elect', u'violenc'] [u'ewen', u'mckenzi', u'interview'] [u'fatah', u'prevail', u'local', u'elect'] [u'kill', u'baghdad', u'bomb'] [u'friend', u'mother', u'trust', u'jackson', u'children'] [u'garcia', u'stroke', u'clear', u'charlott'] [u'govt', u'inquiri', u'find', u'welfar', u'penalti', u'harsh'] [u'gull', u'suspect', u'penguin', u'chlamydia', u'case'] [u'hall', u'keen', u'target', u'kick'] [u'hall', u'keen', u'target', u'kick'] [u'heroin', u'smuggl', u'suspect', u'face', u'court'] [u'hodg', u'back', u'anderson', u'regain', u'england', u'place'] [u'hundr', u'protest', u'bush', u'visit'] [u'indonesia', u'cross', u'sign', u'deal', u'reconstruct'] [u'indonesia', u'suharto', u'hospit'] [u'injur', u'woman', u'miss'] [u'inmat', u'claim', u'seiz', u'prison', u'hostag'] [u'inquiri', u'target', u'indigen', u'unemploy'] [u'inquiri', u'investig', u'complianc', u'deal'] [u'creditor', u'give', u'payout', u'estim'] [u'iraq', u'cabinet', u'post', u'sourc'] [u'kidnapp', u'hour', u'deadlin'] [u'kosmina', u'jump', u'defenc', u'farina'] [u'lake', u'torren', u'reopen'] [u'kill', u'accid'] [u'motorist', u'urg', u'slow', u'king', u'highway'] [u'tip', u'job'] [u'nadal', u'set', u'spanish', u'semi', u'rome'] [u'newcastl', u'scrap', u'subject'] [u'elector', u'law', u'creat', u'coalit', u'brawl'] [u'move', u'bald', u'killer', u'jail'] [u'dead', u'hurt', u'spanish', u'ralli', u'accid'] [u'opposit', u'demand', u'immigr', u'royal', u'commiss'] [u'opposit', u'stand', u'decis', u'elector', u'chang'] [u'palestinian', u'milit', u'rocket', u'isra', u'town'] [u'panther', u'hold', u'raider', u'break'] [u'pietersen', u'fail'] [u'plane', u'crash'] [u'plane', u'board', u'miss', u'north'] [u'plastic', u'campaign', u'want', u'action'] [u'consid', u'death', u'inquiri'] [u'polic', u'arrest', u'link', u'bali'] [u'polic', u'investig', u'man', u'death'] [u'polic', u'search', u'miss', u'teen'] [u'properti', u'boom', u'cool', u'price', u'drop'] [u'protect', u'bogus', u'salesmen', u'useless'] [u'psychiatrist', u'deregist', u'sexual', u'relationship'] [u'raider', u'snatch', u'panther'] [u'ralf', u'set', u'pace', u'spain', u'webber', u'fourth'] [u'rann', u'say', u'consult', u'mcgee', u'probe'] [u'reform', u'renew', u'prison', u'attack'] [u'restor', u'begin', u'histor'] [u'richmond', u'demolish', u'carlton'] [u'export', u'figur', u'worst', u'state'] [u'saint', u'lead', u'dockland', u'battl'] [u'scientist', u'spi', u'wreckag', u'lose', u'mar', u'spacecraft'] [u'score', u'kill', u'burma', u'blast'] [u'scud', u'skip', u'french', u'open'] [u'search', u'continu', u'miss', u'woman'] [u'sharapova', u'bundl', u'german', u'open'] [u'shark', u'steal', u'late', u'warrior'] [u'cambodian', u'worker', u'shoot', u'dead', u'thai', u'factori'] [u'skaif', u'pip', u'ambros', u'perth'] [u'korea', u'sceptic', u'north', u'prepar', u'nuclear', u'test'] [u'smith', u'demand', u'public', u'apolog', u'bravo'] [u'smuggl', u'accus', u'face', u'court'] [u'smuggl', u'accus', u'face', u'court'] [u'studi', u'consid', u'east', u'coast', u'railway', u'rout'] [u'suicid', u'bomb', u'kill', u'iraq'] [u'swan', u'edg', u'bomber', u'snap', u'lose', u'streak'] [u'sydney', u'win', u'start'] [u'taiwan', u'chen', u'defend', u'stanc', u'china', u'visit'] [u'prison', u'guard', u'hostag'] [u'prison', u'sieg', u'continu'] [u'prison', u'sieg', u'stretch', u'night'] [u'tat', u'futur', u'balanc', u'bennett'] [u'teacher', u'fight', u'govt', u'reform'] [u'thousand', u'ralli', u'pakistan', u'qaeda', u'hunt'] [u'blast', u'rock', u'burma'] [u'trade', u'fair', u'teach', u'real', u'live', u'busi', u'student'] [u'trimbl', u'unseat', u'irish', u'hardlin', u'gain'] [u'trulli', u'upstag', u'alonso', u'provision', u'pole'] [u'twin', u'motorcycl', u'crash'] [u'market', u'end', u'week'] [u'vagu', u'intellig', u'north', u'korea', u'nuclear', u'test'] [u'virgin', u'mari', u'stain', u'defac', u'cover'] [u'waratah', u'keep', u'feet', u'grind'] [u'wenger', u'tell', u'real', u'forget', u'rey'] [u'woman', u'deport', u'year', u'aust'] [u'wreckag', u'miss', u'plane'] [u'kill', u'burma', u'bomb', u'blast'] [u'arrest', u'iraqi', u'raid', u'near', u'syrian', u'border'] [u'action', u'urg', u'scabi', u'outbreak'] [u'agassi', u'slam', u'coria', u'semi', u'final', u'defeat'] [u'anti', u'high', u'rise', u'group', u'pleas', u'elect', u'result'] [u'aust', u'program', u'need', u'chang'] [u'australian', u'sheikh', u'appeal', u'wood', u'releas'] [u'australian', u'eat', u'wast', u'food', u'studi'] [u'australian', u'tourist', u'dead', u'suva', u'hotel', u'room'] [u'author', u'hope', u'prison', u'sieg'] [u'weather', u'hamper', u'crash', u'recoveri', u'effort'] [u'beatti', u'sympathi', u'drug', u'traffick'] [u'beatti', u'make', u'emerg', u'stop', u'viewer'] [u'bidder', u'crazi', u'toast', u'draw'] [u'bronco', u'beat', u'bulldog', u'bottler'] [u'budget', u'childcar', u'alloc', u'fall', u'short', u'opposit'] [u'bulldog', u'lead', u'bronco', u'break'] [u'driver', u'charg', u'passeng', u'assault'] [u'bush', u'denounc', u'soviet'] [u'bush', u'pay', u'tribut', u'fall', u'wwii', u'soldier'] [u'children', u'blaze'] [u'china', u'unveil', u'giant', u'panda', u'museum', u'plan'] [u'colombian', u'toll', u'heavi', u'rain', u'mount'] [u'consist', u'kerr', u'lead', u'williamsburg'] [u'costello', u'confirm', u'childcar', u'place', u'increas'] [u'costello', u'focus', u'budget', u'despit', u'leadership'] [u'costello', u'hold', u'fund'] [u'crash', u'survivor', u'unlik', u'polic'] [u'dead', u'explos', u'rock', u'burma'] [u'hasler', u'sheen', u'interview'] [u'eagl', u'streak', u'aliv'] [u'eel', u'easi', u'cowboy'] [u'eel', u'cowboy', u'rude', u'awaken'] [u'europ', u'honour', u'dead'] [u'famili', u'appeal', u'wood', u'releas'] [u'farmer', u'launch', u'action', u'combat', u'drought'] [u'fear', u'hold', u'miss', u'girl'] [u'finegan', u'farewel', u'brumbi'] [u'teen', u'injur', u'smash'] [u'fremantl', u'crush', u'pie'] [u'fremantl', u'crush', u'pie', u'record'] [u'fugit', u'bosnian', u'crimin', u'miss', u'mother'] [u'gallop', u'accus', u'govt', u'lie'] [u'garcia', u'go', u'clear', u'charlott'] [u'govt', u'accus', u'delay', u'school', u'fee', u'review'] [u'govt', u'agre', u'foot', u'legal', u'bill', u'holli'] [u'govt', u'stand', u'firm', u'despit', u'hostag', u'video'] [u'govt', u'urg', u'investig', u'public', u'hospit'] [u'grandstand', u'speak', u'victori', u'shark'] [u'grandstand', u'speak', u'owen', u'finegan'] [u'grandstand', u'speak', u'simon', u'woolford', u'matt'] [u'henin', u'hardenn', u'breez', u'berlin', u'final'] [u'henin', u'hardenn', u'breez', u'past', u'schnyder', u'reach', u'final'] [u'howard', u'earn', u'right', u'decid', u'departur', u'date'] [u'howard', u'pay', u'tribut', u'fall'] [u'indonesian', u'polic', u'admit', u'corbi', u'case', u'flaw'] [u'inmat', u'releas', u'hostag', u'negoti', u'continu'] [u'investig', u'fatal', u'plane', u'crash', u'continu'] [u'iran', u'warn', u'nuclear', u'threat'] [u'iraqi', u'cabinet', u'fill', u'violenc', u'continu'] [u'iraq', u'minist', u'want', u'boost', u'crude', u'export'] [u'karadz', u'miss', u'mother', u'funer'] [u'karmichael', u'hunt', u'andrew', u'ryan', u'interview'] [u'kennedi', u'bag', u'man'] [u'lancast', u'take', u'giro', u'ditalia', u'prologu'] [u'lebanes', u'anti', u'syria', u'leader', u'aoun', u'return', u'exil'] [u'lebanes', u'leader', u'aoun', u'return', u'exil'] [u'makelel', u'seal', u'chelsea'] [u'die', u'polic', u'pursuit'] [u'hospitalis', u'motorcycl', u'accid'] [u'michael', u'hagan', u'ricki', u'stuart', u'interview'] [u'michael', u'witt', u'interview'] [u'local', u'visit', u'kakadu', u'nation', u'park', u'govt', u'say'] [u'mother', u'urg', u'prison', u'sieg'] [u'navi', u'frigat', u'open', u'public'] [u'neil', u'henri', u'brian', u'smith', u'interview'] [u'fairytal', u'finish', u'pauls', u'despit', u'stormer'] [u'norwich', u'soar', u'drop', u'zone'] [u'survivor', u'plane', u'crash'] [u'launch', u'joint', u'cane', u'toad', u'erad', u'effort'] [u'nurs', u'consid', u'strike', u'action'] [u'overdu', u'ratepay', u'face', u'lose', u'properti'] [u'pedestrian', u'kill'] [u'philippin', u'dog', u'shoot', u'world', u'record'] [u'polic', u'investig', u'aussi', u'dead', u'fiji'] [u'polic', u'investig', u'fatal', u'crash'] [u'pope', u'pledg', u'strict', u'line', u'faith'] [u'pope', u'say', u'media', u'spread', u'peac', u'foment', u'violenc'] [u'prison', u'chief', u'reject', u'resign', u'amid', u'sieg'] [u'prison', u'guard', u'threaten', u'sieg'] [u'join', u'forc', u'fight', u'illeg', u'fish'] [u'raider', u'posit', u'attitud'] [u'ranger', u'heart', u'break'] [u'real', u'pressur', u'barcelona'] [u'recoveri', u'mission', u'begin', u'fatal', u'crash'] [u'resurg', u'bull', u'close', u'super', u'semi', u'final', u'spot'] [u'richard', u'ingal', u'domin', u'barbagallo'] [u'risdon', u'inmat', u'releas', u'hostag'] [u'rooster', u'crush', u'woeful', u'knight'] [u'rooster', u'edg', u'knight'] [u'senior', u'iraqi', u'public', u'servant', u'assassin'] [u'research', u'shed', u'light', u'unrecognis', u'act'] [u'vacant', u'seat', u'fill', u'iraq', u'cabinet'] [u'smith', u'propel', u'south', u'africa', u'side'] [u'solid', u'food', u'earli', u'lead', u'ill', u'studi'] [u'somaliland', u'accus', u'illeg', u'incurs'] [u'spencer', u'delay', u'wont', u'affect', u'game', u'commut'] [u'surgic', u'standard', u'aust', u'fall', u'confer'] [u'suspici', u'circumst', u'rule', u'girl'] [u'swan', u'hop', u'silenc', u'knocker'] [u'swan', u'urg', u'budget', u'infrastructur', u'spend', u'cut'] [u'talk', u'resum', u'prison', u'seig'] [u'kill', u'kabul', u'cafe', u'blast'] [u'tiger', u'lead', u'man', u'fest'] [u'time', u'bomb', u'burma', u'blast', u'report'] [u'tollner', u'back', u'propos', u'inland', u'train', u'rout'] [u'tredrea', u'boot', u'port', u'victori'] [u'tredrea', u'lead', u'port', u'charg'] [u'tree', u'outsid', u'parliament', u'hous'] [u'trimbl', u'stand', u'poor', u'ireland', u'elect'] [u'trio', u'arrest', u'abseil'] [u'wayn', u'bennett', u'steve', u'folk', u'interview'] [u'webber', u'start', u'second', u'spain'] [u'webster', u'close', u'maiden', u'european', u'titl'] [u'west', u'coast', u'lead', u'hawk'] [u'whiski', u'claim', u'cancer', u'risk'] [u'worksaf', u'investig', u'crush'] [u'abolit', u'region', u'seat', u'hurt', u'bush'] [u'accc', u'put', u'squeez', u'juic', u'bar'] [u'accid', u'fire', u'emerg', u'servic', u'busi'] [u'aceh', u'reconstruct', u'close', u'zero', u'indonesian'] [u'buy', u'convent', u'centr'] [u'activist', u'warn', u'renew', u'live', u'export', u'campaign'] [u'black', u'forward', u'assault', u'charg'] [u'black', u'spencer', u'confirm', u'england'] [u'attack', u'prompt', u'tafe', u'campus', u'secur', u'review'] [u'audit', u'lead', u'scrutini', u'breast', u'cancer', u'surgeon'] [u'aussi', u'buckl', u'tie', u'second', u'seoul'] [u'australian', u'arrest', u'cannabi', u'charg', u'bali'] [u'australian', u'invent', u'get', u'blood', u'pump'] [u'australian', u'sheikh', u'fli', u'wood'] [u'australian', u'sheikh', u'iraq', u'hostag', u'merci', u'mission'] [u'australian', u'urg', u'respect', u'indonesian', u'court'] [u'baldwin', u'say', u'state', u'respons', u'road', u'cost', u'blow'] [u'barcelona', u'closer', u'championship'] [u'beatti', u'demand', u'judici', u'inquiri', u'immigr'] [u'bell', u'arriv', u'church', u'tower'] [u'potenti', u'shale'] [u'birney', u'refus', u'offer', u'incom', u'support'] [u'blue', u'seven', u'origin', u'rooki'] [u'bomb', u'attack', u'claim', u'soldier'] [u'bowler', u'urg', u'vote', u'weight'] [u'bravo', u'wont', u'apologis', u'race', u'say', u'windi', u'boss'] [u'brumbi', u'red', u'honour', u'macqueen'] [u'budget', u'deliv', u'hospit', u'upgrad'] [u'busi', u'confid', u'slide'] [u'buyer', u'need', u'ethanol', u'industri', u'confer', u'tell'] [u'financi', u'struggl', u'farmer'] [u'crash', u'victim', u'remain', u'hospit'] [u'chappel', u'moodi', u'short', u'list', u'indian', u'coach'] [u'cleal', u'face', u'week'] [u'compo', u'deal', u'injur', u'polic', u'agre'] [u'consortium', u'buy', u'charter', u'boat', u'firm'] [u'cost', u'blowout', u'pilbara', u'iron', u'project'] [u'costello', u'remain', u'silent', u'budget', u'surplus'] [u'costello', u'tailor', u'success', u'friend', u'budget'] [u'council', u'back', u'govt', u'land', u'cut'] [u'council', u'call', u'holiday', u'program', u'combat', u'petrol'] [u'council', u'plan', u'futur', u'need', u'communiti'] [u'council', u'seek', u'manag', u'tourist', u'attract'] [u'council', u'meet', u'librari', u'fund'] [u'council', u'urg', u'comment', u'rail', u'rout', u'prefer'] [u'court', u'hear', u'emot', u'testimoni', u'arm', u'robberi'] [u'court', u'order', u'abalon', u'poacher', u'stay', u'away'] [u'crunch', u'creepi', u'crawli', u'solv', u'pest', u'plagu'] [u'cultur', u'centr', u'cost', u'rise'] [u'dead', u'medic', u'error', u'need', u'attent', u'patient'] [u'deal', u'end', u'religi', u'educ', u'protest', u'timor'] [u'dengu', u'fever', u'awar', u'campaign', u'foreshadow'] [u'dfat', u'confirm', u'bali', u'drug', u'flush', u'advic'] [u'discrimin', u'tribun', u'hear', u'virgin', u'blue', u'case'] [u'disgrac', u'judg', u'challeng', u'report'] [u'dozen', u'job', u'lose', u'milk', u'factori', u'closur'] [u'explain', u'reason', u'appeal'] [u'driver', u'face', u'court', u'high', u'speed', u'roll'] [u'drought', u'cut', u'longreach', u'display'] [u'drought', u'intensifi', u'farmer', u'woe'] [u'drought', u'tighten', u'grip', u'south', u'east'] [u'drought', u'worsen', u'temperatur', u'rise'] [u'drought', u'worsen', u'west'] [u'eagl', u'scrutini', u'review', u'panel'] [u'emerald', u'weather', u'radar', u'consid', u'long'] [u'emerg', u'hotlin', u'trial', u'begin'] [u'benefit', u'test'] [u'europ', u'join', u'rememb', u'world'] [u'express', u'reserv', u'treati', u'sign', u'indonesia'] [u'famili', u'offer', u'donat', u'secur', u'wood', u'releas'] [u'father', u'kill', u'daughter', u'injur', u'accid'] [u'financ', u'dept', u'block', u'region', u'fund', u'holdov'] [u'firefight', u'look', u'control', u'burn'] [u'fisher', u'stress', u'plumb', u'class', u'action', u'loom'] [u'fisher', u'worri', u'offic', u'mean', u'reef', u'closur'] [u'flight', u'normal', u'morn'] [u'saddam', u'minist', u'seek', u'refug'] [u'worker', u'face', u'child', u'sentenc'] [u'forrest', u'win', u'seat', u'independ', u'parliament'] [u'forum', u'focus', u'climat', u'chang'] [u'peopl', u'take', u'hospit', u'hous'] [u'fund', u'pledg', u'cheer', u'orchestra'] [u'reform', u'mark', u'anniversari', u'hate', u'crime'] [u'german', u'expert', u'urg', u'better', u'water', u'conserv'] [u'giraff', u'neck', u'weed'] [u'girl', u'abduct', u'brisban', u'hous'] [u'good', u'rain', u'outlook'] [u'goulburn', u'resid', u'ask', u'water'] [u'govt', u'blame', u'drop', u'backpack', u'number'] [u'govt', u'fund', u'leahi', u'hous', u'revamp'] [u'govt', u'launch', u'eyr', u'peninsula', u'packag'] [u'govt', u'pledg', u'assist', u'sack', u'dairi', u'factori'] [u'govt', u'urg', u'revamp', u'causeway'] [u'green', u'group', u'help', u'manag', u'conserv', u'area'] [u'group', u'urg', u'seek', u'fund', u'invest', u'boost'] [u'grower', u'assur', u'food', u'giant', u'base'] [u'guard', u'fear', u'sieg', u'inmat', u'access', u'person', u'detail'] [u'gyngel', u'resign', u'head'] [u'har', u'club', u'beat', u'plan'] [u'hartson', u'doubl', u'take', u'celtic'] [u'hast', u'council', u'join', u'list', u'council', u'seek'] [u'health', u'dept', u'issu', u'shellfish', u'warn'] [u'hobart', u'prison', u'remain', u'lock'] [u'hospit', u'plan', u'display'] [u'indonesia', u'claim', u'success', u'polio', u'fight'] [u'indonesian', u'ambassador', u'seek', u'detent', u'assur'] [u'high', u'second', u'round', u'asbesto', u'test'] [u'invent', u'keep', u'defect', u'heart', u'beat'] [u'investig', u'metrolin', u'crash', u'begin'] [u'investig', u'rubbish', u'paedophilia', u'claim'] [u'investig', u'hope', u'black', u'box', u'provid', u'answer'] [u'investig', u'survey', u'plane', u'wreckag'] [u'ipart', u'urg', u'freez', u'water', u'cost'] [u'iraq', u'review', u'buy', u'australian', u'wheat'] [u'hear', u'fail', u'resolv', u'nurs', u'disput'] [u'islam', u'cleric', u'back', u'face', u'face', u'negoti'] [u'survey', u'point', u'slower', u'growth'] [u'job', u'ax', u'amid', u'newspap', u'edit', u'go', u'compact'] [u'kerr', u'victori', u'end', u'sorenstam', u'histori'] [u'aid', u'zarqawi', u'catch', u'iraq'] [u'king', u'singapor'] [u'landfil', u'death', u'investig'] [u'leader', u'mark', u'soviet', u'union', u'wwii', u'effort'] [u'lethal', u'stand', u'wound', u'voss'] [u'liber', u'criticis', u'region', u'parliament'] [u'liber', u'parti', u'branch', u'suspend'] [u'librari', u'effort', u'secur', u'award', u'break', u'hill'] [u'lobbi', u'group', u'forward', u'budget', u'prioriti'] [u'lonni', u'loot'] [u'major', u'drug', u'syndic', u'smash'] [u'malthous', u'buck', u'stop'] [u'charg', u'restaur', u'murder'] [u'die', u'head', u'crash', u'near', u'gympi'] [u'undergo', u'mental', u'assess', u'sieg'] [u'maroon', u'miss', u'tonga', u'lockyer', u'admit'] [u'meet', u'seek', u'orthopaed', u'servic', u'report'] [u'migrat', u'whale', u'eden'] [u'miller', u'plead', u'eagl', u'decid', u'charg'] [u'develop', u'move', u'step', u'closer'] [u'shaft', u'rais', u'shire', u'liabil', u'question'] [u'minimum', u'secur', u'escap', u'question', u'trust'] [u'mooney', u'say', u'cyclon', u'report', u'alarmist'] [u'mop', u'rider', u'die', u'highway', u'crash'] [u'farmer', u'elig', u'drought'] [u'shire', u'drought', u'declar'] [u'staff', u'need', u'mental', u'health', u'patient'] [u'moss', u'stay', u'bushrang'] [u'mother', u'say', u'mental', u'health', u'fail', u'patient'] [u'motorcycl', u'muster', u'mishap', u'land', u'hospit'] [u'push', u'ethanol', u'fuel'] [u'question', u'forestri', u'offic', u'closur'] [u'negoti', u'bundaberg', u'surgeon'] [u'councillor', u'elect', u'kimberley', u'shire'] [u'deputi', u'mayor', u'elect', u'kalgoorli', u'boulder'] [u'conflict', u'club', u'interest', u'blue'] [u'noroc', u'chief', u'keen', u'case', u'road', u'meet'] [u'north', u'west', u'elect', u'result', u'announc'] [u'origin', u'squad', u'name'] [u'nurs', u'union', u'call', u'strike', u'action'] [u'oper', u'charg', u'chairlift', u'accid'] [u'opposit', u'seek', u'west', u'tamar', u'highway'] [u'orchestra', u'expect', u'budget', u'fund'] [u'organis', u'happi', u'expo', u'visitor', u'number'] [u'outback', u'town', u'bounc', u'record', u'book'] [u'panel', u'charg', u'weekend', u'game'] [u'parent', u'maintain', u'battl', u'occasion', u'care'] [u'parliament', u'hear', u'age', u'care', u'summit', u'result'] [u'rise', u'help', u'boost', u'nurs', u'number'] [u'plane', u'crash', u'specul', u'unhelp', u'anderson'] [u'plan', u'applic', u'hold', u'council', u'face'] [u'cut', u'unlicens', u'polic', u'internet', u'link'] [u'polic', u'charg', u'pair', u'supermarket', u'hold'] [u'polic', u'crack', u'stawel', u'alcohol', u'abus'] [u'polic', u'earn', u'prais', u'handl', u'post', u'wed'] [u'polic', u'medic', u'emerg', u'accommod'] [u'policeman', u'look', u'forward', u'chiltern', u'post'] [u'polic', u'oper', u'net', u'dodgi', u'driver'] [u'polic', u'probe', u'logan', u'abduct'] [u'polic', u'releas', u'name', u'accid', u'victim'] [u'polic', u'rule', u'charg', u'collier'] [u'polic', u'seek', u'rock', u'attack'] [u'polic', u'seek', u'woman', u'help', u'solv', u'murder'] [u'polic', u'station', u'develop', u'applic', u'track'] [u'pool', u'owner', u'ask', u'water', u'save', u'plan'] [u'princ', u'harri', u'begin', u'british', u'offic', u'train'] [u'princ', u'harri', u'cheat', u'final', u'exam', u'teacher', u'say'] [u'public', u'prais', u'water', u'save', u'effort'] [u'public', u'quiz', u'council', u'chang', u'plan'] [u'introduc', u'background', u'check', u'disabl'] [u'resist', u'feder', u'control', u'drought', u'fund'] [u'squar', u'parad', u'mark', u'anniversari'] [u'renal', u'servic', u'start', u'goulburn'] [u'research', u'back', u'lie'] [u'resid', u'oppos', u'expans', u'aborigin', u'hostel'] [u'resourc', u'stock', u'shine', u'market'] [u'ridson', u'prison', u'remain', u'lockdown'] [u'russia', u'celebr', u'world'] [u'aquacultur', u'promot', u'bali'] [u'scoresbi', u'deni', u'branch', u'stack', u'alleg'] [u'self', u'serv', u'gambl', u'fear', u'unfound', u'govt'] [u'shepherd', u'sign', u'forc'] [u'ship', u'crush', u'africa', u'trawler', u'miss'] [u'sizzl', u'singh', u'clinch', u'charlott', u'crown', u'play'] [u'smith', u'secur', u'bunburi', u'mayor', u'spot'] [u'solicitor', u'admit', u'embezzl', u'client'] [u'south', u'africa', u'pile', u'miseri', u'west', u'indi'] [u'space', u'travel'] [u'springborg', u'remain', u'vocal', u'health', u'woe'] [u'strong', u'tremor', u'hit', u'banda', u'aceh'] [u'student', u'help', u'offset', u'health', u'worker', u'shortag'] [u'sunday', u'trade', u'decis', u'see', u'blow', u'tourism'] [u'talk', u'wool', u'boycott'] [u'tasmanian', u'plug', u'nation', u'grid'] [u'prison', u'sieg', u'end', u'peac'] [u'teen', u'face', u'court', u'connect', u'bali'] [u'thousand', u'watch', u'game', u'launceston'] [u'tini', u'town', u'show', u'nebraska', u'play', u'ball'] [u'tough', u'time', u'ahead', u'tyre', u'giant', u'despit', u'profit'] [u'trezeguet', u'take', u'juve', u'closer', u'titl'] [u'bomb', u'blast', u'damag', u'railway', u'track', u'pakistan'] [u'prison', u'sieg', u'end', u'peac'] [u'central', u'road'] [u'unlicens', u'pest', u'manag', u'bring', u'fine'] [u'watchdog', u'specul', u'north', u'korea', u'nuke'] [u'urologist', u'fin', u'suspend', u'surgeri', u'death'] [u'shame', u'fuel', u'fight', u'pagan', u'tell', u'blue'] [u'volcano', u'help', u'power'] [u'voter', u'geraldton', u'mayor', u'offic'] [u'wast', u'dump', u'roadshow', u'find', u'alli'] [u'waterfront', u'project', u'cost', u'taxpay', u'million'] [u'weather', u'stay', u'good', u'nation', u'park', u'burn'] [u'webster', u'conjur', u'italian'] [u'weekend', u'clash', u'philippin', u'kill'] [u'weir', u'plan', u'concern', u'conserv', u'council'] [u'west', u'coast', u'burn', u'off', u'continu'] [u'wilkinson', u'add', u'lion', u'squad'] [u'woman', u'stab', u'death', u'restaur'] [u'wood', u'famili', u'offer', u'cash', u'payment'] [u'woolworth', u'eye', u'instor', u'pharmaci'] [u'work', u'particip', u'budget', u'centrepiec'] [u'world', u'itch', u'thump', u'aussi'] [u'wyndham', u'east', u'kimberley', u'chief', u'post'] [u'wind', u'farm', u'plan', u'mercer'] [u'abduct', u'girl', u'reunit', u'mother'] [u'accus', u'drug', u'traffick', u'face', u'court'] [u'aceh', u'reconstruct', u'time', u'govt'] [u'health', u'centr', u'promot', u'posit', u'lifestyl'] [u'actu', u'predict', u'budget', u'increas', u'poverti'] [u'afghan', u'singer', u'kill', u'attack'] [u'airport', u'secur', u'baggag', u'handler', u'union'] [u'airport', u'tower', u'get', u'clear'] [u'alloc', u'game', u'ticket'] [u'ambul', u'offic', u'demand', u'escort', u'fend'] [u'andren', u'want', u'child', u'care', u'fund', u'lithgow', u'centr'] [u'anti', u'depress', u'promis', u'cancer', u'fight'] [u'arsenal', u'face', u'nervous', u'wait', u'henri', u'ljungberg'] [u'conced', u'forc', u'tough', u'rival'] [u'hold', u'talk', u'anasta'] [u'author', u'probe', u'alleg', u'dump', u'asbesto', u'resin'] [u'author', u'defend', u'controversi', u'japan', u'textbook'] [u'bali', u'heroin', u'haul', u'investig', u'widen'] [u'berrigan', u'wari', u'wound', u'cowboy'] [u'bishop', u'play', u'game', u'power'] [u'blind', u'adventur', u'remain', u'resili'] [u'book', u'author', u'involv', u'reconcili', u'week', u'launch'] [u'broom', u'shire', u'presid', u'reflect', u'voter'] [u'bruce', u'plug', u'demon', u'gap'] [u'budget', u'point'] [u'budget', u'boost', u'tighten', u'quarantin'] [u'budget', u'deliv', u'iraq', u'solomon', u'fund'] [u'budget', u'deliv', u'post', u'atsic', u'indigen', u'fund'] [u'budget', u'deliv', u'cut'] [u'budget', u'fund', u'csiro', u'upgrad'] [u'budget', u'ignor', u'need', u'student'] [u'budget', u'provid', u'apprenticeship', u'train'] [u'budget', u'focus', u'long', u'term', u'benefit', u'labor'] [u'budget', u'take', u'fight', u'cancer', u'dementia'] [u'budget', u'throw', u'orchestra', u'lifelin'] [u'budget', u'offer', u'drought', u'relief'] [u'bulldog', u'minson', u'take', u'rise', u'star', u'award'] [u'burn', u'off', u'fuel'] [u'bush', u'back', u'georgia', u'separatist', u'provinc'] [u'busi', u'chamber', u'hop', u'zone', u'rebat', u'chang'] [u'busi', u'expect', u'feel', u'prosail', u'fallout'] [u'caffein', u'tablet', u'send', u'wrong', u'messag', u'wallac'] [u'collier', u'speak', u'polic'] [u'campaign', u'combat', u'illeg', u'chariti', u'dump'] [u'canberra', u'roo', u'demon', u'clash', u'sell', u'sort'] [u'car', u'torch', u'perth', u'carpark'] [u'central', u'victoria', u'hop', u'budget', u'road', u'fund'] [u'chariti', u'volunt', u'jail', u'assault', u'kid'] [u'chees', u'recal', u'amid', u'safeti', u'concern'] [u'child', u'safeti', u'watchdog', u'appoint', u'victoria'] [u'claim', u'ethiopian', u'govt', u'strangl', u'polit', u'dissent'] [u'cleal', u'cop', u'match'] [u'club', u'meet', u'hear', u'liquid', u'recommend'] [u'coke', u'plant', u'studi', u'term', u'close', u'complet'] [u'communiti', u'work', u'applaud', u'women', u'honour', u'roll'] [u'consult', u'urg', u'protect', u'tree', u'citi', u'hill'] [u'controversi', u'holocaust', u'memori', u'open'] [u'costello', u'reveal', u'welfar', u'work', u'measur'] [u'costello', u'slash', u'tax', u'revamp', u'welfar'] [u'costello', u'tight', u'lip', u'cut'] [u'council', u'move', u'secur', u'goulburn', u'water', u'suppli'] [u'council', u'pleas', u'bore', u'water', u'flow'] [u'council', u'want', u'vandalis', u'cottag', u'clean'] [u'deni', u'lower', u'standard'] [u'crevass', u'end', u'blind', u'adventur', u'everest', u'attempt'] [u'csiro', u'reject', u'critic', u'wildlif', u'program'] [u'custom', u'pursu', u'suspect', u'toothfish', u'poacher'] [u'dairi', u'boost', u'farm', u'gate', u'milk', u'payment'] [u'dairi', u'farmer', u'shake', u'cost', u'bomaderri', u'job'] [u'darwin', u'detent', u'centr', u'onlin', u'year'] [u'democrat', u'slam', u'budget', u'plan', u'forc', u'parent'] [u'disabl', u'australian', u'wors', u'budget'] [u'disney', u'artist', u'die', u'draw', u'board'] [u'rescu', u'abandon', u'babi', u'kenya'] [u'dog', u'lose', u'morgan', u'suspens'] [u'dog', u'lose', u'tonga', u'week'] [u'drag', u'race', u'feasibl', u'studi', u'complet'] [u'dredg', u'deepen', u'port'] [u'driver', u'readi', u'muddi', u'outback', u'challeng'] [u'drought', u'spark', u'high', u'stock', u'fee', u'price', u'concern'] [u'east', u'coast', u'council', u'undergo', u'local', u'govt', u'review'] [u'elder', u'australian', u'look', u'budget', u'assist'] [u'elect', u'count', u'error', u'greenough', u'shire'] [u'environ', u'commit', u'budget', u'record'] [u'russia', u'leader', u'approv', u'accord', u'boost'] [u'freeway', u'safeti', u'audit'] [u'farmer', u'welcom', u'budget', u'seek', u'reform'] [u'farm', u'group', u'back', u'spray', u'pain', u'killer', u'sheep'] [u'fear', u'plan', u'review', u'halt', u'develop'] [u'femal', u'name', u'polic', u'offic', u'year'] [u'final', u'deploy', u'head', u'iraq'] [u'firebug', u'firefight', u'await', u'sentenc'] [u'armidal', u'patrol', u'boat', u'arriv', u'darwin'] [u'gold', u'coast', u'surfer', u'carv', u'tahitian', u'rain'] [u'govt', u'appeal', u'fail', u'jail', u'child', u'offend'] [u'govt', u'lift', u'skill', u'migrant', u'intak'] [u'govt', u'respons', u'fail', u'asylum', u'seeker'] [u'govt', u'powerless', u'stop', u'communiti', u'store', u'credit'] [u'govt', u'foot', u'widow', u'legal', u'royal'] [u'health', u'group', u'fault', u'budget', u'focus'] [u'hexham', u'job', u'dairi', u'farmer', u'restructur'] [u'hick', u'case', u'delay', u'control', u'hill'] [u'hostag', u'deadlin', u'expir'] [u'immigr', u'offici', u'answer', u'public', u'question'] [u'iran', u'resum', u'enrich', u'relat', u'work'] [u'iraqi', u'polic', u'vent', u'anger', u'bomb'] [u'irish', u'doctor', u'seek', u'rural', u'shortag'] [u'jackson', u'staff', u'deni', u'molest', u'claim'] [u'japan', u'refus', u'access', u'suspect', u'poacher'] [u'japan', u'submit', u'host', u'world'] [u'johansson', u'get', u'chanc', u'queensland', u'red'] [u'june', u'date', u'loom', u'lower', u'eyr', u'peninsula', u'busi'] [u'katter', u'beat', u'nazi', u'comment'] [u'kempsey', u'council', u'urg', u'rethink', u'park', u'sale', u'plan'] [u'kenya', u'move', u'drop', u'embassi', u'bomb', u'charg'] [u'kerri', u'obrien', u'speak', u'shadow', u'treasur', u'wayn', u'swan'] [u'kerri', u'obrien', u'speak', u'treasur', u'peter', u'costello'] [u'point', u'feder', u'budget'] [u'labor', u'refus', u'endors', u'budget', u'cut'] [u'perous', u'wreck', u'identifi', u'solomon'] [u'lend', u'leas', u'talk', u'break'] [u'local', u'govt', u'urg', u'clarif', u'shaft'] [u'lockhart', u'river', u'crash', u'black', u'record', u'arriv'] [u'malik', u'clear', u'suspect', u'bowl', u'action'] [u'arrest', u'alleg', u'drug', u'ring'] [u'mandela', u'file', u'lawsuit', u'protect'] [u'face', u'court', u'restaur', u'slay'] [u'charg', u'omagh', u'bomb'] [u'market', u'close', u'lower', u'quiet', u'trade'] [u'mccain', u'launch', u'produc', u'campaign'] [u'memori', u'servic', u'plan', u'plane', u'crash', u'victim'] [u'face', u'court', u'alleg', u'cocain', u'conspiraci'] [u'mercur', u'get', u'council', u'expand'] [u'miss', u'woman', u'trap', u'shaft'] [u'say', u'support', u'solid'] [u'refund', u'overpay'] [u'nasa', u'test', u'shuttl', u'fuel', u'tank'] [u'nation', u'meet', u'farmer', u'financ'] [u'nation', u'seek', u'tougher', u'law', u'protect', u'rural'] [u'council', u'chief', u'port', u'hedland'] [u'water', u'tank', u'destin', u'tumbi'] [u'north', u'korea', u'blame', u'nuclear', u'test', u'fuss'] [u'shortag', u'centr', u'talent', u'say', u'berrigan'] [u'word', u'wood', u'fate', u'downer'] [u'offici', u'investig', u'foot', u'mouth', u'scare'] [u'armi', u'barrack', u'site', u'sell', u'hous'] [u'opposit', u'disput', u'brack', u'unawar', u'hilton'] [u'opposit', u'mount', u'brickwork', u'factori', u'propos'] [u'outback', u'horror', u'movi', u'make', u'cann', u'debut'] [u'oyster', u'harbour', u'shellfish', u'clear'] [u'paedophil', u'claim', u'shame', u'say', u'premier'] [u'pentagon', u'reject', u'slower', u'closur', u'troop'] [u'peter', u'costello', u'hand', u'tenth', u'feder', u'budget'] [u'philippin', u'mass', u'abduct', u'suspect', u'arrest'] [u'plan', u'meatwork', u'item'] [u'polic', u'fear', u'pocket', u'rocket', u'bike'] [u'polic', u'clash', u'activist', u'papua'] [u'polic', u'steal', u'grader'] [u'polic', u'launch', u'probe', u'invermay', u'shoot'] [u'polic', u'crash', u'victim'] [u'polic', u'reunit', u'wander', u'toddler', u'mother'] [u'polic', u'beat', u'solv', u'north', u'east', u'murder'] [u'port', u'author', u'reject', u'coal', u'export', u'worri'] [u'power', u'brim', u'renew', u'confid'] [u'prison', u'sieg', u'cost'] [u'psychologist', u'fear', u'detaine', u'mental', u'health'] [u'public', u'get', u'chanc', u'wind', u'turbin'] [u'public', u'hospit', u'nurs', u'strike'] [u'public', u'hous', u'wait', u'list', u'slight'] [u'public', u'input', u'seek', u'robe', u'transport'] [u'pub', u'club', u'order', u'turn', u'volum'] [u'pulp', u'paper', u'expans', u'plan', u'promis', u'job', u'boost'] [u'defend', u'propos', u'casual', u'firefight', u'trial'] [u'question', u'time', u'focus', u'death'] [u'ramsi', u'discrimin', u'claim', u'reject'] [u'recoveri', u'continu', u'crash', u'site'] [u'redback', u'offer', u'lehmann', u'deal'] [u'cross', u'issu', u'urgent', u'blood'] [u'rene', u'zellweg', u'marri', u'countri', u'western', u'star'] [u'research', u'target', u'algal', u'bloom'] [u'restructur', u'plan', u'continu', u'murrumbidge'] [u'rise', u'cost', u'threaten', u'oyster', u'grower'] [u'rosecorp', u'reveal', u'stage', u'catherin', u'hill'] [u'brew', u'communiti', u'store', u'credit'] [u'rspca', u'isol', u'unit', u'near', u'complet'] [u'sawmil', u'owner', u'consid', u'exit', u'packag'] [u'senat', u'clash', u'protest', u'incid'] [u'seven', u'south', u'african', u'miner', u'trap', u'gold'] [u'shire', u'fear', u'wild', u'dog', u'spread'] [u'shoe', u'iron', u'british'] [u'silenc', u'wood', u'captor', u'deadlin', u'pass'] [u'polic', u'join', u'hunt', u'british', u'teen', u'killer'] [u'snowdon', u'hit', u'leav', u'detain', u'fishermen'] [u'go', u'bad', u'wrong', u'deport', u'case'] [u'south', u'american', u'arab', u'leader', u'strengthen', u'tie'] [u'speaker', u'woe', u'domin', u'parliament'] [u'steal', u'crash', u'bedroom'] [u'stoner', u'confid', u'secur', u'trick', u'win'] [u'strong', u'earthquak', u'rock', u'sumatra'] [u'strong', u'turnout', u'voter', u'kalbarri', u'ward'] [u'student', u'fin', u'fight', u'threat', u'host', u'safran'] [u'tabl', u'grape', u'industri', u'feel', u'horticultur', u'pinch'] [u'bird', u'start', u'season', u'mother', u'scholz'] [u'terror', u'threat', u'real', u'warn', u'ruddock'] [u'terrorist', u'attack', u'warn', u'australian', u'dili'] [u'thousand', u'wrong', u'treat', u'asthma', u'studi'] [u'thunderbird', u'start', u'season', u'mother', u'sholz'] [u'timber', u'delay', u'expans', u'plan'] [u'tonga', u'go'] [u'toyota', u'post', u'record', u'sale', u'profit'] [u'train', u'welfar', u'alloc', u'acci'] [u'tribun', u'downgrad', u'hunter', u'strike', u'charg'] [u'tribun', u'hear', u'women', u'fake', u'age', u'virgin'] [u'twin', u'bomb', u'disrupt', u'central', u'baghdad'] [u'uefa', u'dangl', u'champion', u'leagu', u'carrot'] [u'underworld', u'figur', u'solicitor', u'charg'] [u'polli', u'tast', u'bush', u'tucker', u'fare'] [u'vacuum', u'studi', u'clean', u'asthma', u'misconcept'] [u'vanston', u'awar', u'year', u'wrong'] [u'vet', u'expect', u'support', u'renew', u'live', u'export'] [u'vicroad', u'say', u'western', u'entranc', u'revamp'] [u'visypak', u'worker', u'strike', u'move', u'casual'] [u'warn', u'star', u'hampshir'] [u'welfar', u'chang', u'tip', u'hurt', u'region'] [u'wilkinson', u'readi', u'roar', u'lion'] [u'woman', u'charg', u'partner', u'death'] [u'women', u'kill', u'injur', u'crash'] [u'wood', u'fate', u'know'] [u'wood', u'fate', u'unpredict', u'deadlin', u'pass'] [u'wool', u'scour', u'respond', u'water', u'emerg'] [u'wrong', u'detent', u'royal', u'commiss', u'call', u'grow'] [u'kill', u'afghan', u'protest', u'alleg', u'koran', u'abus'] [u'bridg', u'link', u'mudge', u'orang'] [u'budget', u'analysi'] [u'accc', u'sue', u'date', u'servic', u'descript'] [u'adelaid', u'compani', u'win', u'stake', u'frigat', u'contract'] [u'legend', u'sheedi', u'celebr', u'year', u'game'] [u'leagu', u'club', u'head', u'head'] [u'candid', u'apologis', u'leaflet', u'blunder'] [u'andren', u'say', u'budget', u'show', u'reason', u'sell', u'telstra'] [u'question', u'govt', u'anti', u'smoke', u'commit'] [u'aussi', u'quartet', u'barbarian', u'squad'] [u'aust', u'jurass', u'tree', u'take', u'root', u'london'] [u'australian', u'institut', u'sport', u'get'] [u'australian', u'generous', u'tsunami', u'chariti', u'say'] [u'autism', u'group', u'highlight', u'work', u'integr'] [u'award', u'highlight', u'green', u'tourism'] [u'basin', u'group', u'get', u'water', u'qualiti', u'offic'] [u'bega', u'mayor', u'stand', u'properti', u'purchas'] [u'pilbara', u'project', u'nomin', u'green', u'award'] [u'birney', u'question', u'motorplex', u'plan', u'cost'] [u'budget', u'deliv', u'hume', u'highway', u'fund', u'princ'] [u'budget', u'deliv', u'boost', u'wage', u'earner'] [u'budget', u'give', u'athlet', u'bed', u'europ'] [u'budget', u'leav', u'battler', u'wors', u'welfar', u'group'] [u'budget', u'orchestr', u'plan', u'music', u'school'] [u'budget', u'reform', u'ignor', u'local', u'condit', u'senat'] [u'budget', u'infrastructur'] [u'budget', u'spark', u'mix', u'respons', u'region'] [u'budget', u'lack', u'infrastructur', u'fund'] [u'bundl', u'outstand', u'issu'] [u'burner', u'smoke', u'clearanc', u'difficulti'] [u'bushfir', u'appeal', u'fund', u'start', u'flow'] [u'bush', u'scheme', u'boost', u'western', u'doctor', u'number'] [u'busi', u'group', u'attack', u'calder', u'fund', u'snub'] [u'busi', u'group', u'divid', u'budget'] [u'caffein', u'tablet', u'storm', u'coffe', u'connolli'] [u'north', u'west', u'technic', u'colleg'] [u'go', u'blood', u'donat'] [u'camera', u'surveil', u'consid', u'baggag', u'handler'] [u'crash', u'victim', u'succumb', u'injuri'] [u'cathol', u'soccer', u'player', u'mass', u'armidal'] [u'blunder', u'affect', u'thousand'] [u'chelsea', u'cruis', u'past', u'unit'] [u'childcar', u'worker', u'hike'] [u'file', u'throw', u'light', u'accus', u'terrorist'] [u'cleveland', u'fish', u'protect', u'area'] [u'commut', u'face', u'disrupt', u'rail', u'worker', u'strike'] [u'condit', u'freeway', u'fund', u'penalis', u'victorian'] [u'contractor', u'fin', u'workplac', u'death'] [u'costello', u'promot', u'budget'] [u'council', u'budget', u'boost', u'civic', u'cultur', u'precinct'] [u'council', u'fear', u'cost', u'build', u'permit'] [u'council', u'drought', u'manag', u'plan', u'remind'] [u'council', u'road', u'fund', u'eas', u'rate', u'rise', u'pressur'] [u'council', u'vote', u'great', u'western', u'tier', u'heritag'] [u'csiro', u'end', u'shark', u'endang', u'speci', u'research'] [u'dairi', u'farmer', u'plant', u'closur', u'anger', u'supplier'] [u'dairi', u'farmer', u'restructur', u'anger', u'union'] [u'danih', u'pleas', u'miller', u'aggress'] [u'darl', u'harbour', u'design', u'comp', u'detail'] [u'darwin', u'hospit', u'spend', u'extra', u'budget', u'fund'] [u'devil', u'nomin', u'threaten', u'speci', u'list'] [u'downer', u'appeal', u'wood', u'releas'] [u'drug', u'ring', u'pay', u'baggag', u'handler', u'court', u'tell'] [u'drug', u'syndic', u'pay', u'baggag', u'handler', u'court', u'tell'] [u'east', u'timor', u'tighten', u'secur', u'australian'] [u'lion', u'coach', u'confid', u'team', u'come'] [u'suprem', u'court', u'justic', u'head', u'royal'] [u'farm', u'group', u'see', u'good', u'budget'] [u'farm', u'relat', u'firm', u'feel', u'drought', u'debt', u'woe'] [u'north', u'mourn', u'crash', u'victim'] [u'fear', u'brigalow', u'belt', u'decis', u'ruin', u'baradin'] [u'feder', u'budget', u'bring', u'mix', u'respons'] [u'feder', u'budget', u'confirm', u'wide', u'burnett', u'elect'] [u'feder', u'budget', u'see', u'offer', u'skill', u'shortag'] [u'finch', u'sign', u'rooster'] [u'fisher', u'urg', u'delay', u'sign', u'marina', u'leas'] [u'foster', u'take', u'control', u'southcorp'] [u'face', u'tree', u'fern', u'theft', u'committ', u'august'] [u'fund', u'boost', u'blue', u'care'] [u'fund', u'alloc', u'dubbo', u'machin'] [u'fund', u'impact', u'pacif', u'highway', u'work'] [u'futur', u'fund', u'spark', u'telstra', u'sale', u'disagr'] [u'giant', u'coach', u'quit', u'communic', u'woe'] [u'gold', u'coast', u'applaud', u'budget'] [u'gold', u'miner', u'secur', u'china', u'explor', u'right'] [u'good', u'samaritan', u'seek', u'compo', u'bash'] [u'govt', u'step', u'help', u'dairi', u'farmer', u'worker'] [u'govt', u'urg', u'track', u'oversea', u'offend'] [u'green', u'group', u'upset', u'tuart', u'fund', u'distribut'] [u'group', u'seek', u'compo', u'airstrip', u'reopen'] [u'gungahlin', u'drive', u'oppon', u'return', u'court'] [u'hand', u'foot', u'mouth', u'diseas', u'alert', u'issu'] [u'harmoni', u'get', u'gold', u'field', u'takeov'] [u'helplin', u'alleg', u'school', u'rape'] [u'hewitt', u'doubt', u'french', u'open'] [u'high', u'price', u'lead', u'slow', u'demand', u'growth'] [u'histor', u'wool', u'mill', u'administr'] [u'hobart', u'antarctica', u'flight', u'realiti'] [u'indigen', u'councillor', u'elect'] [u'indigen', u'health', u'spend', u'disappoint', u'oxfam'] [u'indonesian', u'milit', u'go', u'trial', u'australian'] [u'indonesia', u'dictat', u'suharto', u'leav', u'hospit'] [u'injuri', u'allow', u'practic', u'say', u'webck'] [u'inquiri', u'consid', u'relev', u'eastman', u'mental'] [u'inzamam', u'confid', u'ahead', u'caribbean', u'tour'] [u'iraq', u'suicid', u'bomb', u'kill'] [u'jackson', u'defenc', u'wit', u'admit', u'lie', u'polic'] [u'jewish', u'holocaust', u'memori', u'open', u'berlin'] [u'jone', u'montgomeri', u'welcom', u'europ'] [u'judg', u'hear', u'pipelin', u'compo', u'case', u'visit'] [u'keelti', u'criticis', u'baggag', u'handler', u'drug', u'link', u'leak'] [u'labor', u'reaction', u'budget'] [u'labor', u'vow', u'oppos', u'unfair', u'packag'] [u'labor', u'cost', u'incom', u'earner', u'costello'] [u'labour', u'council', u'unhappi', u'budget'] [u'larkham', u'red', u'clash'] [u'latest', u'accid', u'spark', u'safeti', u'warn'] [u'lazi', u'worker', u'blame', u'sever', u'head', u'polic'] [u'lightfoot', u'head', u'trip', u'inquiri', u'apolog'] [u'lion', u'unit', u'ahead', u'crow', u'game'] [u'local', u'council', u'attend', u'chang', u'gather'] [u'local', u'govt', u'dept', u'get', u'termin', u'payment', u'report'] [u'charg', u'year', u'murder'] [u'face', u'court', u'daughter', u'abduct'] [u'jail', u'child', u'assault'] [u'detail', u'wine', u'grow', u'region'] [u'market', u'campaign', u'aim', u'brand', u'brisban'] [u'mayor', u'question', u'nativ', u'veget', u'council', u'power'] [u'mccartney', u'sister', u'legal'] [u'mcgauran', u'stand', u'chang'] [u'meet', u'discuss', u'croc', u'remov'] [u'miss', u'adelaid'] [u'miss', u'deport', u'australian', u'manila', u'convent'] [u'mix', u'respons', u'budget'] [u'more', u'council', u'lift', u'water', u'sewerag', u'garbag', u'rat'] [u'loss', u'riverina', u'woolcomb'] [u'moruya', u'resid', u'urg', u'shop', u'local'] [u'mother', u'jail', u'arm', u'robberi'] [u'mother', u'plead', u'news', u'miss', u'daughter'] [u'motorcyclist', u'die', u'highway', u'crash'] [u'pleas', u'budget', u'west', u'benefit'] [u'reject', u'attack', u'feder', u'budget'] [u'differ', u'feder', u'budget'] [u'see', u'budget', u'jobless', u'benefit'] [u'lobbi', u'goulburn', u'valley', u'highway', u'fund'] [u'confirm', u'aust', u'cut'] [u'cut', u'expect', u'profit', u'report'] [u'treat', u'sack', u'worker', u'digniti'] [u'nadal', u'reject', u'french', u'open', u'favourit'] [u'nation', u'equin', u'centr', u'jump', u'hurdl'] [u'council', u'chief', u'roebourn'] [u'council', u'chief', u'wyndham', u'east', u'kimberley'] [u'zealand', u'confirm', u'rugbi', u'world'] [u'deliv', u'mix', u'reaction', u'budget'] [u'secur', u'cricket', u'right', u'seven', u'year'] [u'korea', u'ring', u'nuclear', u'alarm', u'bell'] [u'northern', u'territori', u'odd', u'budget'] [u'north', u'queensland', u'project', u'receiv', u'budget', u'boost'] [u'mourn', u'artist', u'perci', u'trezis'] [u'opposit', u'talk', u'water', u'goulburn'] [u'play', u'foot', u'mouth', u'threat'] [u'price', u'hedg', u'fund', u'fear', u'stock'] [u'parti', u'vote', u'cut'] [u'organ', u'grower', u'target', u'bogus', u'oper'] [u'parent', u'tell', u'alleg', u'child', u'rape', u'school'] [u'permit', u'tackl', u'alcohol', u'abus', u'groot', u'eylandt'] [u'highlight', u'telstra', u'budget', u'omiss'] [u'plan', u'afoot', u'kimberley', u'indigen', u'board'] [u'polic', u'probe', u'bateman', u'tool', u'theft'] [u'polic', u'probe', u'fatal'] [u'polic', u'seek', u'wit', u'thuggeri', u'nightclub'] [u'post', u'budget', u'optim', u'drive', u'higher'] [u'pratt', u'round', u'pragu'] [u'pregnant', u'women', u'urg', u'avoid', u'fish'] [u'probe', u'launch', u'binna', u'burra', u'resort', u'blaze'] [u'protest', u'plan', u'propos', u'rate', u'hike'] [u'public', u'rate', u'rise', u'plan'] [u'busi', u'welcom', u'budget'] [u'health', u'arrang', u'medic', u'assess'] [u'push', u'region', u'road', u'fund'] [u'rain', u'bring', u'light', u'relief', u'western'] [u'rat', u'generat', u'mix', u'feel', u'homebuy'] [u'right', u'report', u'cite', u'egypt', u'tortur'] [u'roll', u'stone', u'announc', u'world', u'tour'] [u'scabi', u'infect', u'hospit', u'patient'] [u'secker', u'talk', u'budget', u'benefit'] [u'serial', u'rapist', u'remain', u'jail', u'indefinit'] [u'sharapova', u'rome', u'kuznetsova', u'bite'] [u'small', u'busi', u'find', u'littl', u'budget'] [u'smith', u'bench', u'cowboy', u'bronco', u'clash'] [u'south', u'africa', u'launch', u'provinci', u'competit'] [u'spamalot', u'domin', u'toni', u'nomin'] [u'speed', u'driver', u'final', u'admit', u'guilt'] [u'helen', u'millward', u'foul', u'languag'] [u'kilda', u'coach', u'call', u'tribun', u'reform'] [u'stoush', u'see', u'evict', u'courthous'] [u'struggl', u'knight', u'tri', u'boost', u'moral'] [u'stuart', u'say', u'coach', u'origin', u'excit', u'play'] [u'stuart', u'unfaz', u'give', u'maroon', u'help', u'hand'] [u'studi', u'find', u'shock', u'road', u'safeti', u'affect', u'women'] [u'surgeon', u'quit', u'work', u'hospit'] [u'surgeri', u'death', u'audit', u'improv', u'patient', u'care'] [u'swan', u'share', u'leadership'] [u'task', u'forc', u'advis', u'civic', u'revamp'] [u'cut', u'littl', u'benefit', u'work', u'singl', u'parent'] [u'teenag', u'jail', u'stab', u'friend'] [u'tidi', u'town', u'competit', u'bloom'] [u'see', u'polic', u'clock', u'driver'] [u'tobacco', u'grower', u'urg', u'avoid', u'chop', u'chop', u'risk'] [u'tradit', u'owner', u'involv', u'plan', u'agreement'] [u'treasur', u'union', u'question', u'cut'] [u'truck', u'driver', u'acquit', u'load', u'death'] [u'charg', u'shoot'] [u'union', u'call', u'procedur', u'review', u'scabi'] [u'approv', u'chest', u'iraq', u'afghanistan'] [u'citizen', u'face', u'perth', u'court', u'cocain', u'charg'] [u'offer', u'australian', u'work', u'visa'] [u'probe', u'koran', u'desecr', u'guantanamo'] [u'secret', u'servic', u'probe', u'bush', u'grenad', u'attack'] [u'vanston', u'censur', u'wrong', u'detent'] [u'virgin', u'promot', u'young', u'cheeki', u'imag', u'editor'] [u'visitor', u'centr', u'enjoy', u'campaign', u'result'] [u'vitamin', u'immun'] [u'vitamin', u'lotion', u'help', u'skin', u'cancer', u'fight'] [u'vote', u'miscount', u'doesnt', u'deter', u'councillor'] [u'vote', u'push', u'canadian', u'govt', u'collaps'] [u'warhol', u'portrait', u'go', u'auction'] [u'warn', u'strauss', u'sight'] [u'word', u'erupt', u'memori', u'fund'] [u'seek', u'appeal', u'child', u'offend', u'sentenc'] [u'wood', u'fate', u'unknown'] [u'wrong', u'deport', u'controversi', u'widen'] [u'research', u'bluefin', u'tuna'] [u'aceh', u'state', u'emerg', u'jakarta'] [u'afghan', u'protest', u'koran', u'desecr', u'spread'] [u'afghan', u'riot', u'leav', u'dead'] [u'offspr', u'senior', u'debut'] [u'airport', u'secur', u'boost'] [u'albani', u'trade', u'hour', u'remain', u'issu'] [u'rais', u'reef', u'research', u'fund', u'doubt'] [u'archaeologist', u'uncov', u'thousand', u'artefact'] [u'arno', u'boat', u'harbour', u'open', u'soon'] [u'australian', u'deporte', u'philippin'] [u'australian', u'open', u'champion', u'safin', u'crash'] [u'australia', u'readi', u'bioterror', u'attack'] [u'australian', u'polic', u'alterc'] [u'australian', u'woman', u'wrong', u'deport'] [u'australia', u'femal', u'cyclist'] [u'australia', u'sport', u'futur', u'look', u'bright'] [u'author', u'kill', u'croc', u'mistaken', u'swim'] [u'bali', u'bomb', u'film', u'shoot', u'kimberley'] [u'ballarat', u'council', u'back', u'game', u'medal', u'plan'] [u'bank', u'stock', u'fuel', u'rise'] [u'worker', u'strike', u'day'] [u'bealzey', u'stand', u'firm', u'pledg', u'avoid', u'cut'] [u'beazley', u'propos', u'doubl', u'lowest', u'rate', u'cut'] [u'beazley', u'budget', u'repli'] [u'plan', u'afoot', u'iron', u'mine'] [u'power', u'station', u'plan', u'latrob', u'valley'] [u'black', u'give', u'clue', u'weekend', u'crash'] [u'jellyfish', u'wire', u'vision'] [u'learn', u'walk', u'freak', u'accid'] [u'braund', u'memori', u'receiv', u'govt', u'grant'] [u'brilliant', u'bergkamp', u'inspir', u'arsenal', u'magnific'] [u'budget', u'boost', u'aborigin', u'job', u'program'] [u'budget', u'offer', u'ceduna', u'weather', u'station', u'fund'] [u'group', u'seek', u'fund', u'fleet', u'upgrad'] [u'busi', u'chamber', u'discuss', u'hospit', u'number'] [u'investig', u'trade', u'illeg', u'croc'] [u'medicar', u'cover', u'dental', u'health'] [u'canadian', u'shrub', u'catapult', u'plant', u'speed', u'record'] [u'bomb', u'baghdad', u'market', u'kill'] [u'central', u'farmer', u'welcom', u'rain'] [u'centrelink', u'canva', u'view', u'book', u'practic'] [u'channel', u'countri', u'grazier', u'endur', u'time'] [u'charg', u'childcar', u'centr', u'driver', u'dismiss'] [u'charg', u'drop', u'crash'] [u'chief', u'minist', u'break', u'rank', u'cut'] [u'childcar', u'centr', u'crash', u'prompt', u'insur', u'chang'] [u'childcar', u'fee', u'rise', u'wage', u'hike'] [u'childhood', u'obes', u'oper', u'rise'] [u'children', u'injur', u'kashmir'] [u'cigarett', u'maker', u'forc', u'drop', u'mild', u'claim'] [u'clark', u'win', u'civil', u'rape', u'case', u'appeal'] [u'cole', u'myer', u'report', u'strong', u'sale', u'growth'] [u'commonwealth', u'apologis', u'glitch'] [u'concern', u'grow', u'north', u'korea', u'weapon', u'program'] [u'confer', u'take', u'step', u'whale', u'hunt'] [u'consult', u'help', u'govt', u'replac', u'tent', u'embassi'] [u'consult', u'hold', u'heritag', u'law'] [u'corbi', u'lawyer', u'back', u'keelti', u'critic'] [u'corbi', u'fate', u'judg', u'hand'] [u'corbi', u'team', u'final', u'submiss'] [u'corbi', u'wait', u'verdict'] [u'costello', u'seek', u'thwart', u'opposit'] [u'council', u'oppos', u'etsa', u'generat', u'plan'] [u'council', u'plan', u'airport', u'futur'] [u'council', u'say', u'crown', u'road', u'issu', u'creat', u'extra', u'work'] [u'council', u'look', u'saleyard', u'site'] [u'council', u'urg', u'boost', u'rail', u'link', u'effort'] [u'court', u'snap', u'boy', u'sentenc', u'attack', u'crocodil'] [u'creek', u'drain', u'plan', u'tolmer', u'park'] [u'crow', u'think', u'tall', u'port', u'think', u'small'] [u'cyclist', u'head', u'north', u'aust', u'trek'] [u'dampier', u'bunburi', u'pipelin', u'clear'] [u'debat', u'intensifi', u'budget', u'cut', u'plan'] [u'develop', u'want', u'educ', u'facil', u'condit', u'eas'] [u'dfat', u'apologis', u'perth', u'travel', u'warn'] [u'doctor', u'rais', u'access', u'concern'] [u'doctor', u'group', u'critic', u'budget', u'region', u'impact'] [u'dope', u'posit', u'dethron', u'heavyweight', u'champion'] [u'doubt', u'linger', u'park', u'futur'] [u'driver', u'warn', u'dune', u'danger'] [u'drought', u'farmer', u'face', u'cattl', u'theft'] [u'drug', u'claim', u'prompt', u'airport', u'secur', u'crackdown'] [u'educ', u'union', u'ralli', u'offer'] [u'elector', u'commiss', u'regret', u'elect', u'mistak'] [u'esper', u'weather', u'bureau', u'get', u'fund', u'boost'] [u'european', u'send', u'warn', u'letter', u'iran', u'report'] [u'farmer', u'welcom', u'light', u'rain', u'want'] [u'fear', u'budget', u'outcom', u'compound', u'childcar', u'woe'] [u'feder', u'fund', u'includ', u'outback', u'highway'] [u'film', u'studio', u'help', u'fund', u'devil', u'fight'] [u'flood', u'warn', u'north', u'sydney'] [u'chairman', u'parish', u'die'] [u'hospit', u'apart'] [u'foster', u'secur', u'southcorp', u'control'] [u'arrest', u'hotel', u'break'] [u'peopl', u'charg', u'cattl', u'death'] [u'fund', u'boost', u'kimberley', u'weather', u'station'] [u'gaze', u'end', u'stellar', u'career'] [u'gaze', u'stellar', u'career'] [u'gaze', u'grace'] [u'good', u'time', u'grain', u'grower'] [u'govt', u'allow', u'recov', u'coal'] [u'govt', u'commiss', u'blitz', u'sell', u'anti', u'smoke', u'law'] [u'govt', u'defend', u'contain', u'freight', u'plan'] [u'govt', u'fund', u'indigen', u'secur', u'patrol'] [u'govt', u'initi', u'creat', u'indigen', u'job'] [u'greek', u'scammer', u'jail', u'year'] [u'greenpeac', u'want', u'hunter', u'coal', u'mine'] [u'green', u'rais', u'smith', u'report', u'concern'] [u'health', u'dept', u'push', u'ahead', u'plan'] [u'heroin', u'addict', u'jail', u'dishonesti', u'offenc'] [u'highway', u'clear', u'molass', u'spill'] [u'hop', u'websit', u'fight', u'suicid'] [u'illeg', u'abalon', u'seiz', u'restaur'] [u'indigen', u'health', u'group', u'welcom', u'fuel', u'initi'] [u'injur', u'hewitt', u'hope', u'french', u'open'] [u'inmat', u'charg', u'escap', u'broom', u'jail'] [u'insulin', u'identifi', u'diabet', u'trigger'] [u'intern', u'team', u'observ', u'bougainvill', u'vote'] [u'itali', u'court', u'make', u'impot', u'husband', u'damag'] [u'propos', u'broaden', u'access'] [u'japan', u'investig', u'illeg', u'fish', u'concern'] [u'jone', u'give', u'anasta', u'rugbi', u'stamp', u'approv'] [u'juror', u'hear', u'monkey', u'busi', u'neverland'] [u'kimberley', u'share', u'feder', u'road', u'fund'] [u'kyli', u'costum', u'dress', u'portrait', u'galleri'] [u'labor', u'split', u'emerg', u'budget', u'respons'] [u'labor', u'split', u'budget', u'respons'] [u'langeveldt', u'trick', u'win', u'south', u'africa'] [u'council', u'outrag', u'keelti', u'corbi', u'comment'] [u'lawyer', u'call', u'north', u'west', u'magistr'] [u'life', u'support', u'decis', u'boot', u'woman'] [u'light', u'plane', u'stray', u'restrict', u'space'] [u'littl', u'forc', u'labour', u'report', u'say'] [u'major', u'parti', u'bring', u'gun', u'elect'] [u'mammographi', u'screen', u'stay'] [u'fin', u'flippant', u'bomb', u'comment'] [u'shoot', u'polic', u'die'] [u'maryborough', u'show', u'technic', u'colleg'] [u'mayor', u'melbourn', u'rail', u'talk'] [u'mcgee', u'royal', u'commiss', u'wit', u'want', u'tell'] [u'meet', u'hear', u'opposit', u'harbour', u'propos'] [u'mercenari', u'discharg', u'zimbabw', u'prison', u'lawyer'] [u'merci', u'mission', u'offer', u'hope', u'hostag', u'deadlin'] [u'minist', u'offer', u'wagga', u'hospit', u'assur'] [u'mix', u'messag', u'emerg', u'har', u'race', u'talk'] [u'blast', u'kill', u'dozen', u'iraq'] [u'fund', u'shark', u'interpret', u'centr'] [u'mother', u'shoot', u'continu', u'affect', u'children'] [u'deliv', u'pacif', u'highway', u'budget', u'blast'] [u'murder', u'girl', u'mother', u'support', u'killer', u'parol'] [u'leadership', u'target', u'clark'] [u'chief', u'call', u'feder', u'control'] [u'newcastl', u'council', u'budget', u'coastal', u'asset'] [u'shire', u'presid', u'toodyay'] [u'vaccin', u'centr', u'plan', u'pandem'] [u'websit', u'aim', u'boost', u'skill', u'migrant', u'number'] [u'record', u'deporte', u'convent', u'stay', u'vanston', u'say'] [u'north', u'korea', u'announc', u'increas'] [u'rule', u'salari', u'chang', u'anasta'] [u'council', u'look'] [u'council', u'lose', u'control', u'major', u'develop'] [u'trafford', u'face', u'season', u'soul', u'search'] [u'opposit', u'prepar', u'debat', u'marriag'] [u'pantomim', u'urg', u'children', u'report', u'bulli'] [u'gambl', u'underwat', u'casino'] [u'pike', u'announc', u'medic', u'facil'] [u'pinjarra', u'worker', u'tool', u'safeti', u'concern'] [u'premier', u'rsvp', u'drought', u'summit'] [u'polic', u'loss', u'explain', u'increas', u'road', u'toll'] [u'polic', u'consid', u'custom', u'build', u'vehicl'] [u'polic', u'hail', u'groot', u'alcohol', u'manag', u'plan'] [u'polic', u'hope', u'catch', u'bank', u'bandit', u'hand'] [u'polic', u'minist', u'head', u'gunnedah', u'armidal'] [u'polic', u'seek', u'earli', u'morn', u'break'] [u'polic', u'seiz', u'cold', u'tablet', u'robinval'] [u'pressur', u'mount', u'greater', u'obstetr', u'care'] [u'prison', u'worker', u'strike', u'fake'] [u'probe', u'highlight', u'inadequ', u'chemic', u'spill'] [u'public', u'cabl', u'beach', u'futur'] [u'public', u'urg', u'report', u'speed', u'driver'] [u'qanta', u'fulli', u'awar', u'baggag', u'handler', u'activ'] [u'qanta', u'introduc', u'kimberley', u'flight'] [u'cattl', u'price', u'forecast', u'rise'] [u'town', u'prepar', u'cart', u'water'] [u'rail', u'firm', u'tumut', u'cootamundra', u'train', u'line'] [u'reiffel', u'elev', u'nation', u'umpir', u'panel'] [u'reiffel', u'elev', u'umpir', u'panel'] [u'reject', u'host', u'simul', u'virgin'] [u'report', u'urg', u'orthopaed', u'surgeri', u'hold'] [u'resid', u'protest', u'lagoon', u'plan'] [u'retir', u'senat', u'fire', u'salvo', u'politician', u'super'] [u'rochest', u'beat', u'oper', u'theatr'] [u'royal', u'commiss', u'renew', u'deporte'] [u'sampl', u'shortag', u'threaten', u'bird', u'fight', u'report'] [u'school', u'driver', u'clear', u'depot', u'drop'] [u'scientist', u'probe', u'worm', u'cancer', u'link'] [u'sculli', u'prais', u'north', u'coast', u'polic', u'effort'] [u'search', u'continu', u'miss', u'drug', u'compani', u'exec'] [u'season', u'birth', u'link', u'menopaus'] [u'sheedi', u'committ', u'futur'] [u'skate', u'park', u'upset', u'takeaway', u'owner'] [u'solon', u'reunit'] [u'solon', u'reunit', u'howard', u'express', u'sad'] [u'southern', u'wheatbelt', u'get', u'broadband', u'internet'] [u'sportspeopl', u'send', u'wrong', u'messag', u'caffein'] [u'stanhop', u'want', u'marriag', u'debat'] [u'state', u'govt', u'plan', u'fund', u'mudge', u'orang', u'road'] [u'stosur', u'crash', u'rome'] [u'studi', u'back', u'earli', u'prostat', u'cancer', u'surgeri'] [u'sydney', u'unit', u'launch', u'appeal', u'suspens'] [u'tafe', u'director', u'clarifi', u'cours'] [u'chang', u'help', u'eas', u'skill', u'shortag'] [u'term', u'refer', u'outlin', u'mcgee', u'royal'] [u'thompson', u'hope', u'keep', u'young', u'cat'] [u'dead', u'anti', u'protest'] [u'timber', u'miller', u'meet', u'conserv', u'zone'] [u'time', u'run', u'rate', u'rise'] [u'treasur', u'unhappi', u'revenu', u'alloc'] [u'trimbl', u'warn', u'ireland', u'stalem'] [u'troop', u'gather', u'exercis'] [u'truss', u'offer', u'drought', u'pledg'] [u'tutankhamun', u'face', u'reconstruct'] [u'ugandan', u'name', u'world', u'humanitarian', u'crisi'] [u'ullrich', u'send', u'armstrong', u'pack', u'defeat'] [u'unemploy', u'rate', u'steadi'] [u'union', u'pledg', u'spare', u'maker', u'industri', u'action'] [u'univers', u'union', u'place', u'administr'] [u'probe', u'link', u'govt', u'minist', u'iraq', u'scandal'] [u'probe', u'soldier', u'link', u'colombian', u'terrorist'] [u'punish', u'ghraib', u'scandal', u'figur'] [u'vandal', u'increas', u'blayney'] [u'environ', u'dept', u'probe', u'fish', u'kill'] [u'wall', u'ralli', u'trade', u'figur'] [u'warn', u'break', u'class', u'hoodoo'] [u'word', u'erupt', u'pension', u'concess'] [u'water', u'corp', u'plead', u'guilti', u'health', u'breach'] [u'woman', u'breastmilk', u'fail', u'satisfi', u'tiger', u'cub'] [u'wood', u'famili', u'plan', u'iraq', u'media', u'campaign'] [u'yeppoon', u'paramed', u'daughter', u'crash'] [u'aborigin', u'push', u'final', u'land', u'grant', u'settlement'] [u'academ', u'honour', u'help', u'women'] [u'accc', u'probe', u'spark', u'berri', u'label', u'assur'] [u'administr', u'say', u'union', u'oper'] [u'bust', u'disrupt', u'asian', u'heroin', u'syndic'] [u'agenc', u'slam', u'darfur', u'driver', u'murder'] [u'crash', u'probe', u'year'] [u'airport', u'forecast', u'market', u'growth'] [u'alcoa', u'refineri', u'worker', u'return', u'work'] [u'alic', u'health', u'worker', u'clean', u'nurs', u'award'] [u'ambros', u'fin', u'perth', u'comment'] [u'anti', u'smoke', u'lobbi', u'welcom', u'tobacco', u'label', u'rule'] [u'applic', u'pitt', u'town', u'heritag', u'list'] [u'arafura', u'game', u'arriv', u'territori'] [u'arctic', u'adventur', u'highlight', u'global', u'warm'] [u'armidal', u'polic', u'complex', u'work', u'start', u'year'] [u'atsb', u'investig', u'tool', u'contribut'] [u'australia', u'china', u'zheng', u'claim', u'round'] [u'author', u'address', u'bundaberg', u'patient', u'meet'] [u'author', u'concern', u'broom', u'jail', u'break'] [u'baggag', u'handler', u'fire'] [u'baggag', u'handler', u'rule', u'strike', u'action'] [u'barca', u'readi', u'clinch', u'championship'] [u'barthez', u'get', u'month', u'spit'] [u'beatti', u'back', u'border'] [u'beef', u'produc', u'nation', u'label'] [u'benin', u'ask', u'togoles', u'refuge'] [u'betfair', u'consid', u'hobart', u'base'] [u'ask', u'clean', u'mayfield', u'site'] [u'crowd', u'protest', u'hospit', u'number'] [u'bishop', u'reject', u'lesbian', u'marriag', u'idea'] [u'blue', u'welcom', u'fresh', u'fevola'] [u'boonah', u'hospit', u'ordeal'] [u'breast', u'cancer', u'mortal', u'rate', u'higher', u'rural'] [u'britain', u'henman', u'let', u'lead', u'slip', u'away', u'hamburg'] [u'budget', u'strike', u'highlight', u'health', u'worker'] [u'bulk', u'bill', u'rate', u'hit', u'year', u'high'] [u'burma', u'delay', u'asean', u'chairmanship', u'thailand'] [u'bush', u'tell', u'secur', u'alert'] [u'bush', u'choic', u'blast'] [u'bush', u'nomine', u'slap', u'rout', u'senat'] [u'businessman', u'plead', u'guilti', u'wool', u'fraud', u'offenc'] [u'caffein', u'tablet', u'popular', u'young', u'athlet'] [u'polic', u'number', u'boost'] [u'independ', u'probe', u'council', u'woe'] [u'chop', u'chop', u'smuggler', u'jail'] [u'citrus', u'grower', u'confid', u'market', u'access'] [u'citi', u'west', u'redevelop', u'deal', u'sign'] [u'clarenc', u'council', u'rate', u'rise'] [u'coke', u'project', u'construct', u'tip', u'start', u'march'] [u'communiti', u'rais', u'fund', u'hous', u'blaze', u'victim'] [u'divid', u'forest', u'packag'] [u'contempt', u'charg', u'lay', u'nightclub', u'violenc'] [u'corbel', u'civic', u'criticis'] [u'council', u'defend', u'enforc', u'notic'] [u'council', u'hop', u'drop', u'centr', u'continu'] [u'council', u'say', u'water', u'work', u'guarante', u'futur', u'suppli'] [u'council', u'seek', u'room', u'wind', u'farm', u'rat', u'negoti'] [u'court', u'dismiss', u'hangar', u'collaps', u'charg'] [u'court', u'overturn', u'sydney', u'unit'] [u'crash', u'truck', u'driver', u'plead', u'guilti', u'manslaught'] [u'croc', u'expert', u'deni', u'smuggl', u'suggest'] [u'crusad', u'put', u'pressur', u'tah'] [u'assess', u'foreign', u'oper'] [u'doubt', u'remain', u'longreach', u'rural', u'colleg', u'asset'] [u'downer', u'look', u'maintain', u'program'] [u'dragon', u'muscl', u'past', u'panther'] [u'drop', u'rival', u'enter', u'premiership', u'kill', u'zone'] [u'drought', u'threaten', u'rare', u'black', u'cockatoo', u'popul'] [u'drug', u'drive', u'number', u'alarm', u'polic'] [u'eagl', u'expect', u'saint', u'qualiti', u'shine'] [u'eleph', u'pack', u'trunk', u'dubbo', u'trip'] [u'ellison', u'prais', u'qanta', u'secur', u'effort'] [u'equal', u'health', u'servic', u'imposs', u'abbott'] [u'fake', u'peni', u'rais', u'drug', u'test', u'object'] [u'farmer', u'welcom', u'season', u'rain'] [u'fear', u'bed', u'shake', u'lengthen', u'surgeri', u'wait'] [u'feder', u'fund', u'kickstart', u'cathedr', u'restor'] [u'fevola', u'comeback', u'fail', u'save', u'blue'] [u'fevola', u'keep', u'blue', u'fight'] [u'fijian', u'suspect', u'death', u'aust', u'tourist', u'deni', u'bail'] [u'fiji', u'polic', u'arrest', u'tourist', u'murder'] [u'forest', u'group', u'question', u'clear', u'fell', u'restrict'] [u'forest', u'packag', u'announc'] [u'ghraib', u'head', u'blame', u'underl', u'abus'] [u'priest', u'jail', u'paedophilia'] [u'fraser', u'criticis', u'warn', u'nomin'] [u'fresh', u'claim', u'vivian', u'case'] [u'fund', u'flow', u'irrig', u'channel', u'upgrad'] [u'futur', u'colleg', u'asset', u'unclear'] [u'gallop', u'deni', u'vote', u'valu', u'loophol'] [u'gash', u'await', u'budget', u'princ', u'highway', u'fund'] [u'geraldton', u'govt', u'sign'] [u'glazer', u'tighten', u'grip', u'unit', u'fan', u'fight'] [u'glazer', u'tighten', u'grip', u'fan', u'fight'] [u'govt', u'invest', u'tsunami', u'warn'] [u'govt', u'offer', u'tailor', u'compo', u'timber', u'mill'] [u'govt', u'great', u'ocean', u'asset'] [u'govt', u'commit', u'jetti', u'fund'] [u'har', u'race', u'meet', u'transfer', u'mildura'] [u'health', u'servic', u'put', u'focus', u'suicid', u'prevent'] [u'health', u'servic', u'creditor', u'bill'] [u'henderson', u'memori', u'reflect', u'fair', u'compass'] [u'heroin', u'bust', u'adelaid'] [u'higher', u'bottl', u'shop', u'price', u'tip', u'southcorp'] [u'high', u'school', u'revamp', u'like', u'start', u'soon'] [u'highway', u'work', u'threaten', u'popul'] [u'hilali', u'confid', u'wood', u'releas'] [u'histor', u'power', u'station', u'futur', u'know', u'soon'] [u'hope', u'stam', u'reli', u'titl', u'favour'] [u'hospit', u'evacu', u'threat'] [u'hospit', u'inquiri', u'head', u'criticis', u'bureaucrat'] [u'hospit', u'staff', u'blame', u'explos', u'death'] [u'howard', u'remind', u'forestri', u'promis'] [u'hundr', u'african', u'boy', u'vanish', u'london'] [u'hundr', u'ralli', u'suspend', u'mareeba', u'birth'] [u'know', u'deport', u'solon'] [u'improv', u'expect', u'stage', u'great', u'footi'] [u'indigen', u'cultur', u'centr', u'construct', u'finish'] [u'indigen', u'educ', u'top', u'minist', u'prioriti'] [u'indonesian', u'muslim', u'join', u'koran', u'abus', u'protest'] [u'iraqi', u'sheikh', u'urg', u'aust', u'watch', u'languag'] [u'iraqi', u'wire', u'jest', u'lawyer'] [u'jackson', u'mislead', u'documentari', u'wit'] [u'juri', u'find', u'guilti', u'zeehan', u'stab', u'murder'] [u'match', u'weekend'] [u'katich', u'follow', u'warn', u'hampshir'] [u'kojonup', u'shire', u'job', u'women'] [u'labor', u'back', u'chang', u'beazley', u'say'] [u'labor', u'unit', u'stanc', u'beazley'] [u'lawyer', u'offer', u'free', u'legal', u'advic', u'albani'] [u'leprosi', u'origin', u'africa', u'near', u'east', u'studi'] [u'maggot', u'away', u'need', u'wind', u'surgeri'] [u'maggot', u'solut'] [u'main', u'road', u'ask', u'investig', u'mackay'] [u'malthous', u'back', u'call', u'caffein'] [u'charg', u'childer', u'rape', u'stand', u'trial'] [u'face', u'assault', u'domest', u'violenc', u'charg'] [u'mayor', u'doubt', u'hous', u'shortag', u'time', u'soon'] [u'mccartney', u'famili', u'threaten', u'belfast', u'polic'] [u'merredin', u'await', u'child', u'porn', u'sentenc'] [u'millward', u'lose', u'helen', u'appeal'] [u'miner', u'find', u'uranium', u'mineralis'] [u'minist', u'discuss', u'tighten', u'immigr', u'law'] [u'miss', u'businessman', u'brother', u'join', u'search'] [u'mobil', u'renal', u'unit', u'eas', u'social', u'problem'] [u'asbesto', u'test', u'complet', u'north'] [u'money', u'need', u'pilbara', u'movi'] [u'highway', u'warn', u'sign'] [u'want', u'deadlin', u'bridg', u'investig'] [u'murray', u'look', u'forward', u'great', u'footi', u'derbi'] [u'music', u'festiv', u'ticket', u'reserv', u'local'] [u'nelson', u'push', u'nation', u'exam', u'despit', u'opposit'] [u'nelson', u'studi', u'nation', u'assess'] [u'netbal', u'academi', u'offer', u'sport', u'chanc', u'young'] [u'law', u'allow', u'council', u'overse'] [u'law', u'crimin', u'secur', u'work'] [u'promot', u'seek', u'wide', u'burnett'] [u'kill', u'uzbek', u'clash'] [u'bail', u'woman', u'accus', u'babi', u'murder'] [u'north', u'west', u'look', u'rain'] [u'oberon', u'council', u'explor', u'secur', u'camera', u'option'] [u'onesteel', u'sustain', u'whyalla', u'steelwork'] [u'onesteel', u'exempt', u'emiss', u'law'] [u'onshor', u'detent', u'prevent', u'attack', u'minist'] [u'opposit', u'highlight', u'rural', u'road', u'fund', u'woe'] [u'pakistani', u'presid', u'visit', u'june'] [u'pakistani', u'ralli', u'koran', u'desecr'] [u'palm', u'summit', u'begin', u'today'] [u'panther', u'edg', u'dragon'] [u'pearc', u'name', u'citi', u'manag'] [u'perth', u'traffic', u'gridlock', u'freeway', u'flood'] [u'plan', u'save', u'job', u'protect', u'forest', u'howard'] [u'plenti', u'play', u'dragon', u'panther', u'clash'] [u'plenti', u'play', u'dragon', u'panther', u'clash'] [u'court', u'overturn', u'aust', u'polic', u'immun'] [u'polic', u'crime', u'commiss', u'focus', u'biki'] [u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit'] [u'polic', u'charg', u'footbal', u'assault'] [u'polic', u'offic', u'charg', u'drug', u'possess'] [u'polic', u'probe', u'indonesian', u'fish', u'boat', u'cook'] [u'polic', u'probe', u'millgrov', u'death'] [u'pope', u'speed', u'process', u'beatifi', u'john', u'paul'] [u'port', u'hedland'] [u'premier', u'say', u'smart', u'state', u'need', u'water', u'wise'] [u'prison', u'sieg', u'leader', u'expect', u'know', u'fate', u'today'] [u'public', u'remind', u'check', u'smoke', u'alarm'] [u'public', u'urg', u'storm', u'readi'] [u'qanta', u'criticis', u'baggag', u'handler', u'respons'] [u'qanta', u'slow', u'respond', u'drug', u'alleg', u'sculli'] [u'qanta', u'stand', u'baggag', u'handler'] [u'rebuff', u'nation', u'test', u'propos'] [u'rabbitoh', u'releas', u'marteen'] [u'ranatunga', u'end', u'lanka', u'exil'] [u'rann', u'consid', u'scotland', u'yard', u'crime', u'measur'] [u'region', u'food', u'tour', u'kick'] [u'report', u'urg', u'histor', u'kosciuszko', u'hut', u'rebuild'] [u'resort', u'entranc', u'star', u'facelift'] [u'reveng', u'escort', u'list', u'earn', u'communiti', u'servic'] [u'expand', u'coober', u'pedi', u'opal', u'explor'] [u'risdon', u'prison', u'charg', u'follow', u'sieg'] [u'rossi', u'switch', u'say', u'team', u'boss'] [u'sailor', u'miss', u'brumbi', u'wish', u'list'] [u'unionist', u'protest', u'support', u'colleagu'] [u'wind', u'farm', u'power'] [u'serial', u'killer', u'execut'] [u'seven', u'kill', u'aceh', u'clash', u'militari'] [u'sharapova', u'number', u'sight'] [u'shire', u'food'] [u'skywest', u'join', u'subsidi', u'scheme'] [u'smelter', u'site', u'develop', u'urg', u'help', u'boost', u'job'] [u'solomon', u'seal', u'gold', u'deal'] [u'solon', u'condit', u'assault', u'social', u'worker'] [u'springborg', u'defend', u'air', u'doctor', u'concern'] [u'storm', u'warn', u'issu', u'north', u'coast'] [u'suffer', u'william', u'seek', u'shorter', u'jail', u'term'] [u'tassi', u'devil', u'quarantin', u'attempt', u'save'] [u'teen', u'charg', u'manuka', u'assault'] [u'test', u'rise', u'fight', u'drug', u'cheat'] [u'kill', u'anti', u'protest'] [u'soldier', u'kill', u'iraq', u'attack'] [u'timor', u'border', u'deal', u'detail', u'agre'] [u'toowoomba', u'hous', u'market', u'cool'] [u'town', u'win', u'long', u'fight', u'secur', u'school'] [u'trio', u'charg', u'moran', u'murder'] [u'tropic', u'bacteria', u'weapon', u'potenti', u'say'] [u'tweed', u'tourism', u'rise'] [u'student', u'serious', u'injur', u'crash'] [u'union', u'unhappi', u'polic', u'patrol', u'car'] [u'unit', u'fan', u'wont', u'rest', u'glazer', u'take', u'control'] [u'stock', u'pull', u'local', u'market'] [u'uzbek', u'troop', u'open', u'protest'] [u'mart', u'drag', u'stock', u'lower'] [u'waratah', u'lead', u'blue'] [u'waratah', u'miss', u'chanc', u'finish'] [u'waratah', u'offer', u'sailor', u'chanc', u'jump', u'ship'] [u'word', u'erupt', u'highway', u'work'] [u'western', u'riverina', u'counsellor', u'problem'] [u'wine', u'group', u'warn', u'margaret', u'river'] [u'wool', u'broker', u'plead', u'guilti', u'fraud', u'charg'] [u'wyndham', u'ralli', u'focus', u'domest', u'violenc'] [u'yeppoon', u'ambul', u'offic', u'mourn', u'death'] [u'iraqi', u'kill', u'patrol', u'attack'] [u'qaeda', u'leader', u'kill', u'pakistan', u'report'] [u'qaeda', u'link', u'milit', u'kill', u'philippin'] [u'arsenal', u'wenger', u'warn', u'chelsea', u'gun'] [u'atkinson', u'suffer', u'mechan', u'problem', u'cyprus'] [u'aust', u'polic', u'await', u'decis'] [u'australian', u'polic', u'head', u'solomon'] [u'barthez', u'vow', u'fight'] [u'briton', u'lewi', u'franci', u'fail', u'dope', u'test'] [u'brumbi', u'red', u'final', u'hop', u'aliv'] [u'land', u'feet', u'station', u'doesnt'] [u'chief', u'keep', u'brumbi', u'hop', u'aliv'] [u'chilean', u'secret', u'polic', u'chief', u'hand', u'document'] [u'cleric', u'pray', u'wood', u'releas'] [u'coca', u'cola', u'take', u'spring', u'water', u'fight', u'court'] [u'colombia', u'claim', u'biggest', u'cocain', u'bust', u'histori'] [u'confer', u'hear', u'fish', u'crime'] [u'cyprus', u'wine', u'greec', u'evid', u'show'] [u'davi', u'lead', u'bjorn', u'make', u'british', u'master'] [u'derbi', u'tri', u'hard', u'live', u'hype'] [u'dfat', u'confirm', u'passport', u'issu', u'deporte'] [u'dog', u'face', u'fight', u'man'] [u'drug', u'arrest'] [u'eagl', u'saint', u'streak', u'track'] [u'right', u'exercis', u'abbott', u'tell', u'indigen'] [u'goal', u'william', u'help', u'hawk', u'tame', u'demon'] [u'elder', u'pedestrian', u'kill', u'lane', u'cove'] [u'ethiopian', u'child', u'malnutrit', u'level', u'horrifi', u'unicef'] [u'immigr', u'offici', u'urg', u'open', u'inquiri'] [u'expert', u'play', u'impact', u'drug', u'bust'] [u'farmer', u'demand', u'compens', u'forest', u'deal'] [u'feder', u'punish', u'tire', u'coria', u'hamburg'] [u'fierc', u'fight', u'claim', u'live', u'marin'] [u'figo', u'return', u'intern', u'footbal'] [u'fijian', u'flyer', u'caucaunibuca', u'extend', u'agen', u'contract'] [u'firm', u'push', u'wind', u'farm', u'despit', u'council'] [u'footbal', u'kidnap', u'mother', u'paulo'] [u'forestri'] [u'forest', u'deal', u'threat', u'timber', u'bodi', u'say'] [u'gardin', u'put', u'eagl', u'control', u'saint'] [u'giansiracusa', u'fire', u'dog', u'victori'] [u'glazer', u'offer', u'oliv', u'branch', u'fan'] [u'govt', u'pressur', u'eas', u'jail', u'overcrowd'] [u'govt', u'urg', u'fight', u'whale', u'hunt', u'plan'] [u'hargreav', u'urg', u'communiti', u'share', u'rent', u'burden'] [u'hayn', u'shortlist', u'india'] [u'hezbollah', u'isra', u'forc', u'clash', u'border', u'area'] [u'hostag', u'campaign'] [u'humpback', u'threat'] [u'huxley', u'give', u'red', u'lead'] [u'iraqi', u'famili', u'flee', u'clash', u'report'] [u'jackson', u'lawyer', u'monitor', u'accus', u'famili', u'court'] [u'jackson', u'pollock', u'artwork', u'uncov'] [u'journalist', u'leav', u'uzbek', u'town', u'amid', u'unrest'] [u'kangaroo', u'edg', u'dockland'] [u'chanc', u'lion', u'hold', u'vital'] [u'lion', u'rope', u'matthew', u'admit'] [u'lion', u'score', u'encount'] [u'die', u'singl', u'accid'] [u'man', u'condemn', u'premier', u'final', u'fight'] [u'report', u'dead', u'uzbek', u'troop', u'crowd'] [u'mcewen', u'take', u'giro', u'sixth', u'stage', u'bettini', u'lead'] [u'melbourn', u'doctor', u'head'] [u'minist', u'stir', u'south', u'african', u'aid', u'debat'] [u'mobil', u'phone', u'danger'] [u'muslim', u'protest', u'koran', u'desecr', u'report'] [u'urg', u'govt', u'oppos', u'whale', u'hunt', u'move'] [u'suffer', u'nurs', u'retent'] [u'ramp', u'collaps', u'water', u'main', u'flood', u'perth'] [u'pocket', u'expens', u'rise', u'bulk'] [u'pakistan', u'deni', u'qaeda', u'leader', u'kill', u'strike'] [u'pentagon', u'recommend', u'closur', u'base'] [u'pietersen', u'improv', u'england', u'chanc'] [u'polic', u'investig', u'elder', u'man', u'death'] [u'polic', u'support', u'decis', u'town', u'trade'] [u'polic', u'widen', u'search', u'miss', u'colombian', u'tourist'] [u'prison', u'reform', u'group', u'criticis', u'risdon', u'lockdown'] [u'protea', u'captain', u'smith', u'ban', u'dayer'] [u'psychologist', u'warn', u'mobil', u'phone', u'addict'] [u'red', u'brumbi', u'promis'] [u'rolf', u'harri', u'paint', u'queen', u'portrait'] [u'rossi', u'boss', u'deni', u'deal'] [u'russia', u'strike', u'deal', u'repay', u'debt'] [u'saddam', u'write', u'memoir', u'jail'] [u'saint', u'hop', u'eagl', u'start'] [u'second', u'half', u'ralli', u'see', u'bronco', u'rein', u'cowboy'] [u'seven', u'skipper', u'join', u'forc'] [u'sharapova', u'make', u'smooth', u'progress', u'rome'] [u'sorenstam', u'song', u'georgia'] [u'south', u'african', u'farmer', u'win', u'compens', u'land'] [u'splendour', u'sell', u'prompt', u'scalper', u'warn'] [u'stakehold', u'divid', u'forestri', u'packag'] [u'steve', u'menzi', u'interview'] [u'storm', u'smash', u'rabbitoh'] [u'strong', u'quak', u'hit', u'sumatra'] [u'swift', u'jaeger', u'crush', u'netbal', u'win'] [u'swift', u'jaeger', u'crush', u'win'] [u'sydney', u'airport', u'offer', u'shrink', u'wrap', u'servic'] [u'sydney', u'unit', u'decis', u'impact', u'club'] [u'taiwan', u'govern', u'parti', u'win', u'elect'] [u'taiwan', u'win', u'nauru', u'alli'] [u'taronga', u'defend', u'eleph', u'enclosur'] [u'teacher', u'walk', u'free', u'child', u'porn', u'convict'] [u'kill', u'overnight', u'crash'] [u'tiger', u'streak', u'texa'] [u'timor', u'agreement'] [u'toyota', u'risk', u'sanction', u'licenc', u'irregular'] [u'undercov', u'cop', u'blow', u'whistl', u'drug', u'polici'] [u'union', u'plan', u'protest', u'plastic', u'factori'] [u'textil', u'restrict', u'anger', u'china'] [u'probe', u'alleg', u'koran', u'abus'] [u'uzbek', u'leader', u'estim', u'kill', u'violenc'] [u'uzbek', u'soldier', u'wrest', u'control', u'andijan'] [u'uzbek', u'wit', u'report', u'hundr', u'kill'] [u'wall', u'street', u'trade', u'mix'] [u'waugh', u'upset', u'baggi', u'green', u'auction'] [u'whale', u'strand', u'link', u'solar', u'activ'] [u'women', u'injur', u'alleg', u'drug', u'explos'] [u'bodi', u'discov', u'iraq'] [u'year', u'charg', u'cocain', u'traffic'] [u'amaq', u'beatti', u'reform', u'rundown'] [u'applebi', u'chanc', u'texa'] [u'arafura', u'game', u'open', u'darwin'] [u'archaeologist', u'unearth', u'destroy', u'villag'] [u'aust', u'polic', u'leav', u'bougainvill', u'await', u'decis'] [u'beatti', u'defend', u'depart', u'failur', u'releas'] [u'beef', u'firm', u'promot', u'irrig', u'scheme'] [u'bell', u'england', u'test', u'squad', u'pietersen', u'miss'] [u'bomber', u'docker', u'melbourn'] [u'breast', u'cancer', u'report', u'rais', u'doctor'] [u'brett', u'kimmorley', u'simon', u'woolford', u'interview'] [u'buddha', u'broth', u'sell', u'bowl'] [u'bull', u'maul', u'stormer', u'brumbi', u'season'] [u'driver', u'stand', u'text', u'drive'] [u'condoleezza', u'rice', u'make', u'surpris', u'iraq', u'visit'] [u'cool', u'campbel', u'grab', u'lead', u'close', u'birdi', u'blitz'] [u'council', u'urg', u'offer', u'rat', u'incent', u'retain'] [u'court', u'jail', u'saudi', u'reform'] [u'cun', u'cunego', u'leav', u'basso', u'giro'] [u'dallaglio', u'wreck', u'johnson', u'farewel', u'wasp', u'retain'] [u'lonergan', u'sunday', u'wrap'] [u'deadlin', u'open', u'wood', u'releas', u'cleric'] [u'doctor', u'work', u'nicotin', u'vaccin'] [u'don', u'block', u'adelaid'] [u'ethiopian', u'poll'] [u'etoo', u'strike', u'earn', u'barca', u'leagu', u'titl'] [u'export', u'studi', u'russian', u'opportun', u'risk'] [u'feder', u'gasquet', u'rematch', u'hamburg'] [u'finegan', u'bid', u'farewel', u'inimit', u'style'] [u'forest', u'packag', u'familiar', u'beazley', u'say'] [u'kill', u'road'] [u'french', u'tip', u'rebel', u'holiday'] [u'fund', u'provid', u'polic', u'station', u'perth'] [u'right', u'group', u'hop', u'registr', u'scheme'] [u'govt', u'provid', u'letter', u'corbi', u'case'] [u'govt', u'urg', u'bring', u'forward', u'freeway', u'extens'] [u'grandstand', u'speak', u'matt', u'sing', u'barri', u'berrigan'] [u'green', u'urg', u'action', u'japan', u'whale', u'stanc'] [u'group', u'attack', u'duti', u'offic', u'cunnamulla'] [u'hall', u'lift', u'swan', u'power'] [u'howard', u'stand', u'firm', u'cut'] [u'indigen', u'employ', u'chief', u'outlin', u'spend', u'plan'] [u'indigen', u'trail', u'build', u'yass', u'riverbank'] [u'ipswich', u'fight', u'west', u'play'] [u'iran', u'delay', u'threaten', u'resumpt', u'nuclear'] [u'ivori', u'coast', u'govt', u'rebel', u'agre', u'disarm'] [u'japan', u'warn', u'whale', u'risk', u'relat'] [u'karzai', u'say', u'enemi', u'peac', u'violenc'] [u'karzai', u'seek', u'control', u'hold', u'afghan', u'prison'] [u'kenyan', u'machuka', u'win', u'great', u'ocean', u'road', u'marathon'] [u'kenyan', u'polic', u'arrest', u'terror', u'drug'] [u'khan', u'turn', u'aveng', u'olymp', u'defeat'] [u'kidnap', u'iraqi', u'governor', u'releas'] [u'lawyer', u'releas', u'letter'] [u'loeb', u'lead', u'cyprus', u'ralli', u'second'] [u'lovett', u'star', u'bomb', u'raid', u'dockland'] [u'magpi', u'lead', u'tiger'] [u'overlook', u'climb', u'staff', u'number'] [u'rule', u'preserv', u'mulloway', u'number'] [u'clue', u'search', u'miss', u'columbian'] [u'nomad', u'win', u'prais', u'london'] [u'elvstroem'] [u'warn', u'buy', u'bull'] [u'year', u'seven', u'fall', u'math'] [u'open', u'ceremoni', u'arafura', u'game'] [u'opposit', u'rais', u'teacher', u'workload', u'concern'] [u'phoenix', u'past', u'darter'] [u'promis', u'talk', u'tasmanian', u'land', u'clear'] [u'stand', u'vanston', u'offici'] [u'unsur', u'hostag', u'claim'] [u'polic', u'arrest', u'suspici', u'death'] [u'polic', u'urg', u'respons', u'drive', u'road', u'death'] [u'port', u'lincoln', u'airport', u'upgrad'] [u'face', u'court', u'rape'] [u'quak', u'rumbl', u'flinder', u'rang'] [u'ranger', u'belt', u'motherwel'] [u'resid', u'protest', u'mobil', u'phone', u'tower'] [u'resid', u'protest', u'mobil', u'phone', u'tower'] [u'rooster', u'edg', u'warrior', u'auckland'] [u'rooster', u'post', u'grind', u'warrior'] [u'rossi', u'grab', u'man', u'pole'] [u'seafood', u'industri', u'urg', u'action', u'illeg', u'fish'] [u'search', u'miss', u'tourist', u'grow'] [u'sharapova', u'world', u'number', u'hop', u'shatter'] [u'shark', u'spirit', u'raider'] [u'shark', u'stick', u'spoon', u'despit', u'dramat', u'draw'] [u'sheikh', u'believ', u'wood', u'aliv'] [u'shop', u'centr', u'prompt', u'cinema', u'evacu'] [u'sorenstam', u'cruis', u'control', u'georgia'] [u'south', u'africa'] [u'south', u'african', u'releas', u'zimbabw', u'jail'] [u'steve', u'price', u'craig', u'wing', u'interview'] [u'street', u'block', u'uzbek', u'violenc'] [u'stuart', u'raper', u'matthew', u'elliott', u'interview'] [u'student', u'escap', u'dormitori', u'blaze'] [u'studi', u'find', u'cholesterol', u'drug', u'combat', u'breast'] [u'suicid', u'bomber', u'kill', u'iraqi'] [u'swan', u'rue', u'miss', u'chanc'] [u'sydney', u'book', u'trip', u'tahiti'] [u'sydney', u'sink', u'marin'] [u'talk', u'improv', u'australia', u'indonesia', u'relat'] [u'tasmanian', u'prison', u'offici', u'defend', u'lockdown'] [u'cut'] [u'teen', u'charg', u'dandenong', u'murder'] [u'thiev', u'target', u'star', u'war', u'poster', u'mexico', u'citi'] [u'thunderbird', u'outclass', u'kestrel', u'melbourn'] [u'tiger', u'blow', u'magpi', u'apart'] [u'sheen', u'michael', u'hagan', u'interview'] [u'kill', u'adelaid', u'hill', u'crash'] [u'kill', u'light', u'plane', u'crash'] [u'work', u'erad', u'polio', u'nigeria'] [u'uzbek', u'leader', u'blame', u'unrest', u'rebel'] [u'uzbek', u'flee', u'neighbour', u'kyrgyzstan'] [u'uzbek', u'toll'] [u'vet', u'discuss', u'percept', u'anim', u'cruelti'] [u'vision', u'impair', u'student', u'need', u'ignor'] [u'opposit', u'press', u'water', u'corpor', u'inquiri'] [u'warn', u'hampshir', u'deni', u'spot'] [u'west', u'winner', u'circl'] [u'woman', u'stab', u'citi', u'train', u'station'] [u'women', u'arrest', u'demand', u'right'] [u'aborigin', u'group', u'demand', u'santo', u'prosecut'] [u'academ', u'push', u'quicker', u'process', u'illeg'] [u'anderson', u'reveal', u'local', u'road', u'fund'] [u'angler', u'rescu', u'capsiz', u'boat'] [u'angler', u'rescu', u'crookhaven', u'river', u'mishap'] [u'armi', u'help', u'boost', u'indigen', u'infrastructur'] [u'aust', u'open', u'produc', u'econom', u'bonanza'] [u'aust', u'polic', u'leav', u'soon'] [u'aust', u'polic', u'leav', u'earli'] [u'aust', u'polic', u'prepar', u'leav'] [u'aust', u'power', u'stop', u'whale', u'limit', u'howard'] [u'australian', u'share', u'drop'] [u'australia', u'atkinson', u'triumphant', u'japan', u'triathlon'] [u'australia', u'chief', u'scientist', u'move'] [u'basso', u'beat', u'giro', u'time', u'trial'] [u'beatti', u'goal', u'put', u'celtic'] [u'beatti', u'stand', u'health', u'minist'] [u'bendigo', u'council', u'urg', u'boost', u'park'] [u'auction', u'sell', u'detent', u'centr'] [u'bishop', u'wont', u'comment', u'letter', u'seek', u'remov'] [u'bjorn', u'win', u'british', u'master', u'play'] [u'bledislo', u'test', u'sell'] [u'brown', u'fire', u'warn', u'tiger', u'rival'] [u'budget', u'fund', u'offer', u'hope', u'region', u'doctor', u'boost'] [u'bull', u'relish', u'underdog', u'status'] [u'burma', u'blame', u'superpow', u'bomb'] [u'driver', u'wheel', u'alleg', u'text', u'crash'] [u'busi', u'usual', u'health', u'chief'] [u'centr', u'resolut', u'loom'] [u'darwin', u'emerg', u'bed'] [u'cantona', u'slam', u'glazer', u'takeov'] [u'cattl', u'compani', u'call', u'nation', u'rail', u'network'] [u'caus', u'furnitur', u'store', u'blaze', u'unknown'] [u'charg', u'threaten', u'judd', u'brownlow', u'defenc'] [u'chile', u'begin', u'team', u'defenc'] [u'citrus', u'grower', u'want', u'quick', u'decis', u'futur'] [u'clean', u'begin', u'storm'] [u'club', u'seek', u'clarif', u'smoke', u'ban'] [u'communiti', u'control', u'outback', u'hospit'] [u'corbi', u'lawyer', u'deliv', u'govt', u'letter'] [u'corbi', u'prosecutor', u'dismiss', u'govt', u'letter'] [u'coroni', u'inquest', u'hold', u'orang', u'death'] [u'costello', u'say', u'cut', u'negoti'] [u'council', u'agre', u'rise'] [u'councillor', u'maintain', u'right', u'free', u'speech'] [u'councillor', u'sell', u'need', u'rate', u'rise'] [u'council', u'say', u'govt', u'help', u'rail', u'line'] [u'counsel', u'offer', u'remain', u'student', u'teacher'] [u'coup', u'plotter', u'africa'] [u'court', u'hear', u'threat', u'alleg', u'murder', u'famili'] [u'court', u'sequel', u'polic', u'offic', u'bash'] [u'crane', u'crush', u'build', u'wild', u'weather', u'hit'] [u'crime', u'gang', u'get', u'hook', u'fish', u'industri'] [u'cruelti', u'prove', u'cost', u'sydney', u'breeder'] [u'czech', u'world', u'hockey', u'titl'] [u'deadlin', u'loom', u'kirkland', u'timet'] [u'demerg', u'take', u'adelaid'] [u'dengu', u'fever', u'case', u'trigger', u'health', u'worri'] [u'dippenaar', u'lead', u'south', u'africa', u'whitewash'] [u'domino', u'share', u'encourag', u'start'] [u'doubl', u'strike', u'take', u'preston', u'closer'] [u'dream', u'festiv', u'showcas', u'indigen', u'artist'] [u'driver', u'spin', u'wheel', u'outback', u'challeng'] [u'drought', u'group', u'assess', u'north', u'west', u'elig'] [u'forc', u'local', u'council', u'chang', u'roadwork'] [u'eagl', u'docker', u'confirm', u'london', u'showcas'] [u'eagl', u'sweat', u'judd', u'incid'] [u'europ', u'question', u'tree', u'safeti'] [u'factori', u'consid', u'asbesto', u'risk'] [u'farmer', u'increas', u'drought', u'relief'] [u'farmer', u'fear', u'wild', u'human', u'threat'] [u'farmer', u'worri', u'appoint'] [u'farmer', u'threaten', u'shoalwat', u'road', u'protest'] [u'fatal', u'accid', u'prompt', u'bypass', u'call'] [u'fear', u'higher', u'licenc', u'fee', u'hurt', u'fisher'] [u'fear', u'plan', u'public', u'servant', u'affect'] [u'ferri', u'colour', u'standardis'] [u'final', u'star', u'war', u'saga', u'screen', u'cann'] [u'crew', u'seal', u'leak', u'sydney', u'south'] [u'policemen', u'kill', u'malukus', u'island'] [u'forestri', u'packag', u'leav', u'bitter', u'tast', u'beazley'] [u'iraqi', u'soldier', u'kill', u'attack', u'armi', u'camp'] [u'freeway', u'ramp', u'repair', u'ongo'] [u'girl', u'death', u'spark', u'push'] [u'glazer', u'clinch', u'control', u'sourc'] [u'govt', u'commit', u'clinic'] [u'govt', u'defend', u'effort', u'skill', u'migrant'] [u'govt', u'delay', u'decis', u'fighter', u'jet'] [u'govt', u'letter', u'evid', u'corbi', u'trial'] [u'govt', u'name', u'middl', u'east', u'defenc', u'chief'] [u'govt', u'neglect', u'manufactur', u'union', u'say'] [u'govt', u'crackdown', u'road', u'rule', u'dead'] [u'govt', u'heat', u'japan', u'whale'] [u'govt', u'simplifi', u'volunt'] [u'govt', u'urg', u'waiv', u'fee', u'charg', u'drought', u'worsen'] [u'survey', u'updat', u'work', u'forc', u'inform'] [u'grant', u'help', u'boost', u'indigen', u'job'] [u'grazier', u'face', u'long', u'wait', u'land', u'valuat'] [u'green', u'slam', u'beazley', u'back', u'forest', u'deal'] [u'group', u'welcom', u'kosciuszko', u'hut', u'decis'] [u'grow', u'fish', u'effluent', u'research', u'urg'] [u'guild', u'warn', u'pharmaci', u'uncertainti'] [u'harbour', u'leav', u'resembl', u'abattoir', u'fish'] [u'harrison', u'grappl', u'tackl', u'charg'] [u'high', u'commission', u'name', u'chancellor'] [u'high', u'low', u'english', u'season'] [u'horror', u'weekend', u'spark', u'road', u'safeti', u'remind'] [u'howard', u'defend', u'corbi', u'letter'] [u'hundr', u'flee', u'violenc', u'uzbekistan'] [u'hundr', u'worker', u'evacu', u'melbourn'] [u'hunter', u'hors', u'fetch', u'price', u'sydney'] [u'interpret', u'betray', u'dougla', u'wood'] [u'investig', u'examin', u'light', u'plane', u'wreck'] [u'reform', u'wont', u'lower', u'wag', u'say'] [u'jam', u'hardi', u'expect', u'tough', u'year', u'ahead'] [u'japan', u'humpback', u'plan', u'alarm', u'whale', u'watch', u'group'] [u'network', u'reflect', u'unemploy', u'costello'] [u'juve', u'close', u'titl', u'milan', u'hold', u'lecc'] [u'khodorkovski', u'trial', u'adjourn'] [u'king', u'watmough', u'debut'] [u'kiwi', u'coach', u'anderson', u'line', u'saint'] [u'labor', u'attack', u'costello', u'cut'] [u'lawyer', u'prepar', u'solon', u'compens', u'case'] [u'lion', u'lose', u'power', u'break', u'wrist'] [u'local', u'armi', u'reserv', u'troop', u'join', u'puckapuny', u'exercis'] [u'local', u'govt', u'group', u'say', u'excus', u'bulli'] [u'loeb', u'record', u'straight', u'victori'] [u'luci', u'record', u'udder', u'marvel'] [u'manildra', u'preschool', u'destroy'] [u'question', u'hous', u'blaze'] [u'parent', u'oblivi', u'children', u'obes'] [u'maroon', u'dump', u'wesser', u'princ', u'slater'] [u'maroon', u'form', u'blue', u'experi'] [u'master', u'feder', u'retain', u'hamburg', u'crown'] [u'mauresmo', u'reign', u'rome'] [u'mayor', u'demand', u'heritag', u'rail', u'fund'] [u'mayor', u'seek', u'assist', u'goondiwindi', u'nurs', u'home'] [u'meninga', u'assault', u'trial', u'hear', u'fight'] [u'meninga', u'assault', u'trial', u'tell', u'victim', u'histori'] [u'mexican', u'anti', u'porn', u'film', u'make', u'wave', u'cann'] [u'miss', u'sailor', u'rescu', u'near', u'bowen'] [u'design', u'work', u'mildura', u'rail', u'line'] [u'meet', u'littl', u'differ', u'trot'] [u'mummifi', u'win', u'singapor'] [u'murray', u'salt', u'level', u'rise'] [u'muslim', u'dress', u'controversi', u'unfortun'] [u'nerv', u'steel', u'need', u'sticki', u'fight'] [u'newmont', u'score', u'mine', u'competit', u'award'] [u'safeti', u'campaign', u'target', u'seatbelt', u'wear'] [u'newsweek', u'backtrack', u'koran', u'desecr', u'stori'] [u'clue', u'albani', u'blackout', u'caus'] [u'opposit', u'voic', u'wast', u'pond', u'plan'] [u'govt', u'indigen', u'hous', u'spend'] [u'sit', u'share', u'heritag', u'repair', u'fund'] [u'occi', u'shrug', u'injuri', u'tahiti'] [u'older', u'worker', u'face', u'tourism', u'industri', u'discrimin'] [u'onesteel', u'reject', u'environ', u'deal', u'claim'] [u'opposit', u'mount', u'smith', u'project'] [u'orchestra', u'await', u'clarif', u'feder', u'fund'] [u'lead', u'health', u'insur', u'surg'] [u'pair', u'acquit', u'lakemba', u'polic', u'drive'] [u'pair', u'roadsid', u'mishap'] [u'palm', u'island', u'council', u'keen'] [u'passeng', u'tell', u'luggag', u'tamper'] [u'plane', u'crash', u'probe', u'begin', u'today'] [u'polic', u'close', u'parti', u'gatecrash'] [u'polic', u'crack', u'truck', u'safeti'] [u'polic', u'hunt', u'tourist', u'attack'] [u'polic', u'investig', u'south', u'coast', u'murder'] [u'polic', u'crash', u'victim'] [u'polic', u'probe', u'coleamb', u'hous', u'blaze'] [u'polic', u'probe', u'fish', u'farm', u'death'] [u'polic', u'seek', u'public', u'help', u'park', u'bodi'] [u'port', u'chief', u'focus', u'jetti', u'revamp'] [u'port', u'lincoln', u'airport', u'revamp'] [u'port', u'wilson', u'week'] [u'port', u'wont', u'harbour', u'bomb', u'remov'] [u'power', u'wilson', u'week'] [u'produc', u'seek', u'region', u'food', u'tour'] [u'public', u'ask', u'worker', u'push'] [u'public', u'ask', u'help', u'solv', u'south', u'durra', u'death'] [u'public', u'cockl', u'creek', u'smelter'] [u'public', u'transport', u'top', u'communiti', u'wish', u'list'] [u'purdi', u'power', u'titl', u'texa'] [u'raider', u'disappoint', u'lopsid', u'penalti', u'count'] [u'real', u'deni', u'ferdinand', u'unit'] [u'rescu', u'prompt', u'safeti', u'plea', u'hiker'] [u'rice', u'call', u'greater', u'sunni', u'involv', u'iraq'] [u'rise', u'timber', u'royalti', u'tip', u'hurt', u'gippsland'] [u'robson', u'hail', u'west', u'brom', u'survivor'] [u'rochest', u'await', u'oper', u'theatr', u'report'] [u'rossi', u'extend', u'domin', u'french'] [u'rspca', u'call', u'hunt'] [u'russian', u'rower', u'inch', u'closer', u'world', u'record'] [u'sailor', u'hurt', u'central', u'coast'] [u'unveil', u'tough', u'drug', u'law'] [u'worker', u'killer', u'await', u'sentenc'] [u'sharapova', u'trim', u'davenport', u'lead'] [u'shire', u'stand', u'tree', u'replant'] [u'skill', u'shortag', u'hit', u'alcan', u'refineri', u'plan'] [u'slater', u'relish', u'origin', u'option'] [u'solon', u'urg', u'seek', u'compens'] [u'sorenstam', u'blitz', u'georgia', u'field'] [u'south', u'coast', u'whale', u'watch', u'group', u'humpback', u'fear'] [u'state', u'govern', u'fund', u'drop', u'scheme'] [u'storm', u'damag', u'expect', u'reach', u'million'] [u'storm', u'hit', u'south', u'west'] [u'student', u'death', u'prompt'] [u'studi', u'look', u'balanc', u'mooloolaba', u'spit'] [u'studi', u'show', u'lismor', u'koala'] [u'survey', u'highlight', u'hutt', u'river', u'issu'] [u'swan', u'urg', u'govt', u'alp', u'cut'] [u'teacher', u'charg', u'crime'] [u'theme', u'park', u'oper', u'head', u'gold', u'coast'] [u'person', u'charg', u'robberi', u'ring', u'investig'] [u'thousand', u'gun', u'destroy'] [u'iraqi', u'work', u'kuwaiti', u'kill'] [u'tourism', u'industri', u'stand', u'reef', u'author'] [u'townsvill', u'group', u'back', u'matern', u'servic', u'review'] [u'troop', u'seal', u'uzbek', u'border', u'town'] [u'bodi', u'dump', u'baghdad'] [u'kill', u'motorbik', u'collid'] [u'unit', u'develop', u'rocki', u'biggest'] [u'unit', u'fan', u'stage', u'modest', u'anger', u'glazer'] [u'univers', u'smart', u'train', u'begin', u'state', u'tour'] [u'oper', u'lift', u'jam', u'hardi', u'profit'] [u'uzbek', u'govt', u'criticis', u'human', u'right', u'abus'] [u'vail', u'talk', u'technic', u'colleg', u'benefit'] [u'villarr', u'send', u'albacet'] [u'warn', u'qlds', u'latest', u'health', u'scandal'] [u'west', u'brom', u'complet', u'great', u'escap'] [u'wit', u'tell', u'solon', u'concern'] [u'woman', u'accus', u'knife', u'assault'] [u'wood', u'betray', u'interpret'] [u'wool', u'expo', u'gambl', u'prove', u'success'] [u'work', u'entertain', u'precinct', u'begin', u'year'] [u'academ', u'tortur', u'wont', u'hear', u'refuge', u'case'] [u'academ', u'promot', u'tortur', u'extrem', u'circumst'] [u'accus', u'rapist', u'teach', u'charg', u'lay'] [u'adelaid', u'nation', u'foreign', u'univers'] [u'hope', u'final', u'deal'] [u'hour', u'fund', u'announc', u'fail'] [u'anti', u'aircraft', u'blame', u'iraq', u'plane', u'down'] [u'apolog', u'compo', u'state', u'abus', u'victim'] [u'armidal', u'tamworth', u'host', u'disabl', u'talk'] [u'asbesto', u'dust', u'disturb', u'sarina', u'high'] [u'asic', u'ban', u'fail', u'spring', u'water'] [u'asic', u'probe', u'sam', u'seafood', u'account'] [u'asio', u'chief', u'post', u'washington'] [u'asio', u'chief', u'tip', u'ambassador'] [u'asx', u'bright', u'start', u'end', u'gloom'] [u'aust', u'hold', u'asean', u'treati', u'talk'] [u'aust', u'terror', u'charg', u'kuwait'] [u'aust', u'explor', u'polic', u'issu'] [u'aust', u'polic', u'return'] [u'australian', u'polic', u'depart'] [u'australian', u'polic', u'leav'] [u'aust', u'rank', u'gender', u'studi'] [u'bakir', u'regist', u'schapell', u'corbi'] [u'baldwin', u'reject', u'costello', u'budget'] [u'baxter', u'sign', u'waratah', u'deal'] [u'baxter', u'staff', u'fight', u'boost'] [u'beatti', u'talk', u'coast', u'health', u'commit'] [u'biker', u'accus', u'zone'] [u'brack', u'pressur', u'stop', u'rise', u'timber'] [u'breath', u'test', u'crackdown', u'net', u'drink', u'driver'] [u'break', u'hill', u'busi', u'leader', u'die'] [u'brothel', u'owner', u'signag', u'council', u'continu'] [u'brother', u'abort', u'world', u'record', u'attempt'] [u'brown', u'accus', u'howard', u'gutless', u'whale', u'stanc'] [u'budget', u'scrap', u'senior', u'travel', u'program'] [u'busi', u'urg', u'avoid', u'dodgi', u'chequ'] [u'busi', u'urg', u'advantag', u'free', u'trade'] [u'busi', u'group', u'urg', u'support', u'cut'] [u'doctor', u'blackwat'] [u'cathol', u'anglican', u'uphold', u'dialogu'] [u'child', u'care', u'centr', u'oper', u'offer', u'parent'] [u'child', u'porn', u'earn', u'suspend', u'jail', u'term'] [u'clarenc', u'council', u'consid', u'sorri', u'gestur'] [u'club', u'demand', u'smoke', u'clarif'] [u'coco', u'christma', u'island', u'breast', u'screen'] [u'coron', u'back', u'school'] [u'coron', u'recommend'] [u'coron', u'repeat', u'curtail', u'petrol', u'sniff'] [u'costello', u'question', u'high', u'disabl', u'pension', u'level'] [u'costello', u'rule', u'newcastl', u'rescu'] [u'coulthard', u'forc', u'monaco'] [u'council', u'look', u'tackl', u'ineffici', u'tradit'] [u'councillor', u'face', u'complaint'] [u'councillor', u'fight', u'right', u'object'] [u'court', u'build', u'registr', u'throw', u'doubt'] [u'crocker', u'hindmarsh', u'origin', u'booz', u'crackdown'] [u'csiro', u'accus', u'commerci', u'bias'] [u'delay', u'alleg', u'abus', u'teacher', u'defend'] [u'develop', u'contest', u'claim', u'gold', u'tower'] [u'diplomat', u'death', u'threat', u'corbi'] [u'disagr', u'remain', u'kosciuszko', u'hors', u'rid'] [u'doctor', u'group', u'reject', u'midwif', u'servic', u'closur'] [u'doctor', u'support', u'strike', u'action'] [u'dont', u'rule', u'scud', u'fitzi'] [u'downer', u'defend', u'keelti', u'corbi', u'comment'] [u'downer', u'say', u'send', u'letter', u'judg'] [u'downer', u'deliv', u'address'] [u'join', u'council', u'crazi', u'ant', u'fight'] [u'work', u'lower', u'fisher', u'cost'] [u'driver', u'face', u'court', u'policeman', u'near'] [u'drought', u'summit', u'highlight', u'farmer', u'woe'] [u'rail', u'worker', u'tool', u'industri'] [u'ethiopian', u'rule', u'parti', u'claim', u'elect', u'victori'] [u'etoo', u'apologis', u'real', u'madrid', u'insult'] [u'ducat', u'worker', u'lodg', u'unfair', u'dismiss', u'claim'] [u'farmer', u'look', u'need', u'rain'] [u'farmer', u'plead', u'govern', u'help'] [u'farmer', u'seek', u'exempt', u'industri', u'reform'] [u'feder', u'holm', u'laureus', u'award'] [u'forest', u'search', u'miss'] [u'freeway', u'flood', u'prompt', u'pipe', u'check'] [u'gaudio', u'coria', u'argentina', u'win', u'start'] [u'gigg', u'overtak', u'charlton', u'unit', u'landmark'] [u'global', u'retail', u'deni', u'aust', u'wool', u'boycott'] [u'gold', u'coast', u'prison', u'face', u'court', u'escap', u'charg'] [u'goulburn', u'dig', u'water'] [u'govern', u'flag', u'assault', u'salin'] [u'govt', u'pharmacist', u'face', u'deal'] [u'govt', u'say', u'chang', u'wont', u'hurt', u'worker'] [u'govt', u'urg', u'lobbi', u'strong', u'whale', u'hunt'] [u'govt', u'urg', u'offer', u'grey', u'water', u'rebat'] [u'govt', u'urg', u'rethink', u'har', u'race', u'closur'] [u'govt', u'welcom', u'sheikh', u'help', u'search', u'wood'] [u'govt', u'work', u'timber', u'cutter', u'compo'] [u'grandmoth', u'keen', u'testifi', u'crash'] [u'group', u'draw', u'educ', u'polici', u'steal', u'generat'] [u'guard', u'behaviour', u'overshadow', u'carr', u'prison', u'visit'] [u'henri', u'rule', u'final'] [u'hope', u'remain', u'nation', u'liber', u'partnership'] [u'hospit', u'author', u'crack', u'staff', u'talk'] [u'hospit', u'theatr', u'close', u'revamp'] [u'tell', u'dont', u'know', u'downer', u'solon'] [u'illeg', u'fish', u'crackdown', u'fail', u'deter', u'poacher'] [u'inappropri', u'send', u'corbi', u'letter', u'judg', u'downer'] [u'indonesian', u'court', u'uphold', u'bashir', u'verdict'] [u'in', u'join', u'western', u'warrior'] [u'italian', u'worker', u'kidnap', u'kabul'] [u'jetstar', u'flight', u'evacu', u'smoke', u'alert'] [u'jetstar', u'plane', u'evacu'] [u'loss', u'opposit', u'say'] [u'johnson', u'cruis', u'easi', u'victori', u'arafura', u'game'] [u'johnson', u'walk', u'free', u'tribun'] [u'joint', u'ventur', u'explor', u'promis', u'zinc', u'prospect'] [u'jone', u'shrug', u'injuri'] [u'judd', u'brownlow', u'run'] [u'judd', u'ponder', u'contest', u'charg'] [u'judiciari', u'punish', u'rabbitoh'] [u'keelti', u'stand', u'corbi', u'comment'] [u'kennett', u'call', u'govt', u'help', u'farmer'] [u'kuwait', u'woman', u'suffrag', u'right'] [u'kyli', u'diagnos', u'breast', u'cancer'] [u'kyli', u'minogu', u'diagnos', u'breast', u'cancer'] [u'labor', u'opposit', u'pointless', u'costello'] [u'lara', u'rest', u'dayer', u'pakistan'] [u'launceston', u'cyclist', u'pedal', u'japan'] [u'launceston', u'teacher', u'charg', u'underag'] [u'lobbi', u'put', u'asylum', u'seeker', u'case', u'govt'] [u'macquari', u'bank', u'profit', u'top'] [u'face', u'court', u'beslan', u'sieg'] [u'maroon', u'capabl', u'seri', u'hagan', u'say'] [u'mijo', u'land', u'golf', u'cours'] [u'hous', u'seek', u'skill', u'migrant'] [u'mourinho', u'urg', u'cudicini', u'stay', u'chelsea'] [u'say', u'aspect', u'orthopaed', u'surgeri', u'report'] [u'upset', u'wind', u'farm', u'decis'] [u'fee', u'rockhampton'] [u'jail', u'plan', u'countri'] [u'magistr', u'port', u'hedland'] [u'newsweek', u'retract', u'koran', u'desecr', u'report'] [u'nigerian', u'minist', u'face', u'court', u'corrupt'] [u'nowra', u'gather', u'seek', u'land', u'chang'] [u'nrma', u'launch', u'south', u'coast', u'road', u'scheme'] [u'foot', u'mouth', u'scare', u'hoax', u'polic'] [u'opposit', u'fear', u'fund', u'shortfal', u'brake'] [u'origin', u'rival', u'booz', u'crackdown'] [u'outcri', u'tribun', u'judg', u'tortur', u'stanc'] [u'outgo', u'scienc', u'chief', u'want', u'similar', u'successor'] [u'overnight', u'job', u'brew'] [u'pell', u'urg', u'immigr', u'polici', u'review'] [u'petacchi', u'end', u'giro', u'spell', u'mcewen', u'fourth'] [u'pharmaci', u'report', u'strong', u'caffein'] [u'philippin', u'reject', u'blame', u'solon', u'case'] [u'plane', u'wreckag', u'offer', u'crash', u'investig', u'littl'] [u'plan', u'atsic', u'replac', u'council'] [u'hunt', u'pull'] [u'urg', u'compromis', u'polic', u'immun'] [u'polic', u'charg', u'coolgardi', u'theft'] [u'polic', u'high', u'hop', u'speed', u'camera'] [u'polic', u'maintain', u'crackdown', u'unsaf', u'car'] [u'polic', u'plead', u'sober', u'drive'] [u'polic', u'probe', u'minibus', u'crash'] [u'polic', u'seek', u'public', u'help', u'solv', u'south', u'coast', u'murder'] [u'polish', u'barca', u'look', u'good'] [u'pool', u'complex', u'lose'] [u'port', u'need', u'basic', u'say', u'corn'] [u'pressur', u'grow', u'uzbek', u'leader'] [u'prison', u'group', u'say', u'close', u'break'] [u'public', u'communiti', u'need'] [u'public', u'warn', u'bogus', u'countri', u'energi', u'worker'] [u'push', u'univers', u'base', u'swan', u'hill'] [u'polic', u'confirm', u'offic', u'escort', u'solon'] [u'quirindi', u'high', u'mark', u'year'] [u'rabbitoh', u'pair', u'woolford', u'face', u'sidelin', u'stint'] [u'cross', u'offer', u'blood', u'suppli', u'assur'] [u'redfern', u'father', u'die'] [u'simpkin', u'cross', u'sword', u'stuart'] [u'rescu', u'siev', u'passeng', u'evid'] [u'resid', u'broom', u'growth'] [u'risdon', u'return', u'normal', u'sieg'] [u'robust', u'phone', u'indigen', u'communiti'] [u'rochest', u'score', u'partial', u'health'] [u'ruddock', u'unawar', u'individu', u'deport', u'case'] [u'rural', u'counsel', u'servic', u'receiv', u'extra', u'fund'] [u'rural', u'phone', u'legisl', u'inadequ', u'report'] [u'govt', u'admit', u'progress', u'slow', u'petrol', u'sniff'] [u'saint', u'slug', u'breach'] [u'santo', u'investig', u'possibl', u'heritag'] [u'school', u'unlik'] [u'school', u'gut'] [u'chang', u'gather', u'call', u'nation', u'plan'] [u'urg', u'patienc', u'storm', u'clean', u'continu'] [u'sharehold', u'consid', u'newspap', u'takeov', u'offer'] [u'shire', u'claim', u'support', u'gambl'] [u'siev', u'accus', u'face', u'trial'] [u'siev', u'trial', u'begin'] [u'silent', u'let', u'piano', u'talk'] [u'soccer', u'club', u'answer', u'entrench', u'violenc'] [u'storm', u'affect', u'area', u'power'] [u'resid', u'wait', u'storm'] [u'sorenstam', u'chase', u'grand', u'slam', u'sweep'] [u'south', u'mackay', u'school', u'home', u'kindi'] [u'south', u'west', u'tell', u'brace', u'storm'] [u'lanka', u'india', u'hunt', u'coach'] [u'student', u'get', u'communiti', u'servic', u'starter'] [u'studi', u'highlight', u'indigen', u'health', u'concern'] [u'submiss', u'reveal', u'magnitud', u'hospit', u'failur'] [u'suspend', u'jail', u'term', u'heroin'] [u'green', u'attack', u'beazley', u'forest', u'agreement'] [u'teacher', u'charg', u'boy', u'rape'] [u'teacher', u'stop', u'work', u'hous', u'concern'] [u'teen', u'serv', u'year', u'kill', u'worker'] [u'tiger', u'deledio', u'nomin', u'rise', u'star'] [u'timber', u'worker', u'centrelink', u'offer'] [u'treasuri', u'boss', u'contradict'] [u'treasuri', u'secretari', u'dismiss', u'economi', u'concern'] [u'trinidad', u'return', u'retir', u'loss'] [u'troop', u'join', u'search', u'miss', u'colombian'] [u'tweed', u'councillor', u'die'] [u'kill', u'tourist', u'minibus', u'crash'] [u'rais', u'fee'] [u'call', u'uzbek', u'reform'] [u'reservist', u'convict', u'ghraib', u'abus'] [u'stock', u'ralli', u'drop'] [u'uzbek', u'refuge', u'fear', u'govern', u'repris'] [u'vinni', u'van', u'winter', u'suppli'] [u'wagga', u'council', u'budget', u'includ', u'rate', u'rise'] [u'wallabi', u'caffein', u'pill', u'gregan', u'reveal'] [u'west', u'wyalong', u'seek', u'kind', u'support'] [u'wilkinson', u'eager', u'lion', u'challeng'] [u'wind', u'farm', u'rat', u'formula', u'baffl', u'pyrene', u'council'] [u'windsor', u'see', u'benefit', u'rail', u'line', u'plan'] [u'wit', u'evid', u'meninga', u'assault', u'trial'] [u'wood', u'surrend', u'rank'] [u'youth', u'attack', u'firefight', u'benalla'] [u'yuko', u'founder', u'await', u'guilti', u'verdict'] [u'afghan', u'gang', u'offer', u'trade', u'italian', u'hostag'] [u'manag', u'say', u'drug', u'rule', u'tougher'] [u'postpon', u'draft', u'chang'] [u'aid', u'caus', u'south', u'african', u'death'] [u'albani', u'council', u'get', u'deputi', u'mayor'] [u'albani', u'woman', u'hospit', u'bend'] [u'alleg', u'cocain', u'smuggler', u'face', u'court'] [u'call', u'school', u'base', u'apprenticeship'] [u'ambul', u'servic', u'prioritis', u'emerg'] [u'anderson', u'hint', u'extra', u'drought', u'support'] [u'anger', u'fine', u'noos', u'assault'] [u'antarct', u'team', u'win', u'fli'] [u'anti', u'tuna', u'farm', u'petit', u'parliament'] [u'archaeologist', u'uncov', u'scene', u'human', u'sacrific'] [u'asbesto', u'victim', u'hail', u'trailblaz'] [u'assault', u'verdict', u'spark', u'anger'] [u'black'] [u'atsic', u'demis', u'spark', u'communiti', u'hous', u'fear'] [u'aussi', u'surfer', u'slater', u'final'] [u'aust', u'beer', u'sale', u'sparkl', u'lion', u'nathan', u'profit'] [u'aust', u'hop', u'access', u'detaine', u'kuwait'] [u'australian', u'collect', u'fetch'] [u'aust', u'soldier', u'devic', u'shoot', u'corner'] [u'ballarat', u'doctor', u'head', u'victoria'] [u'reviv', u'letter', u'america'] [u'britain', u'push', u'iran', u'nuclear', u'program'] [u'brumbi', u'lose', u'norton', u'knight', u'waratah'] [u'budget', u'favour', u'wealthi', u'swan'] [u'bundaberg', u'doctor', u'seek', u'legal', u'advic'] [u'buoy', u'famili', u'friend', u'kyli', u'minogu', u'readi'] [u'burni', u'council', u'approv', u'multi', u'million', u'dollar'] [u'businessman', u'surviv', u'island', u'ordeal'] [u'caffein', u'border', u'cheat', u'wada'] [u'road', u'safeti', u'crackdown', u'includ'] [u'cash', u'offer', u'afghan', u'detaine', u'home'] [u'chang', u'giant', u'solar', u'tower', u'height'] [u'china', u'wheat', u'import', u'expect', u'drop'] [u'chines', u'bear', u'australian', u'sue', u'immigr'] [u'cleric', u'confid', u'wood', u'releas'] [u'club', u'form', u'wilko', u'lion', u'woodward'] [u'cole', u'tap', u'hear', u'begin'] [u'commonwealth', u'flag', u'port', u'takeov'] [u'consum', u'index', u'jump', u'budget', u'cut'] [u'convent', u'centr', u'complet', u'month'] [u'corbi', u'trivialis', u'issu'] [u'coria', u'cana', u'argentina', u'track'] [u'costello', u'slam', u'execut', u'jump'] [u'costello', u'urg', u'respons'] [u'council', u'divid', u'green', u'levi', u'spend'] [u'council', u'discuss', u'infrastructur', u'need'] [u'council', u'take', u'museum', u'manag'] [u'council', u'monitor', u'fitzroy', u'river', u'flow'] [u'court', u'tell', u'policeman', u'rap', u'drink', u'driver'] [u'crow', u'steven', u'end', u'career'] [u'crusad', u'hurrican', u'lose', u'centr'] [u'cueto', u'replac', u'balshaw', u'lion', u'squad'] [u'cunego', u'simoni', u'readi', u'fight', u'giro'] [u'dairi', u'farmer', u'closur', u'spark', u'loss', u'fear'] [u'disast', u'zone', u'declar', u'monday', u'storm'] [u'reveal', u'sale', u'jump', u'warn', u'downturn'] [u'docker', u'drug', u'test', u'regim'] [u'doctor', u'tran', u'tasman', u'breast', u'cancer', u'test'] [u'doctor', u'disput', u'disrupt', u'hospit', u'servic'] [u'drought', u'stricken', u'farmer', u'seek', u'urgent', u'cash'] [u'economist', u'dismiss', u'notion', u'blue', u'collar', u'rich'] [u'kill', u'crash'] [u'elder', u'pension', u'forc', u'deni', u'report'] [u'etoo', u'scrutini', u'real', u'outburst'] [u'failur', u'provid', u'document', u'forc', u'delay'] [u'famili', u'unsur', u'wood', u'claim'] [u'father', u'rank', u'rich', u'list'] [u'faulti', u'condit', u'blame', u'flight', u'incid'] [u'fear', u'drought', u'prompt', u'rural', u'depress'] [u'fear', u'land', u'plan', u'delay', u'bendigo', u'develop'] [u'feder', u'fund', u'help', u'teach', u'student', u'valu'] [u'govt', u'make', u'port'] [u'ferdinand', u'say', u'glazer', u'wont', u'affect', u'unit'] [u'hospitalis', u'insecticid', u'spill'] [u'fletcher', u'sign', u'wigan'] [u'friend', u'ralli', u'kyli'] [u'fund', u'airstrip', u'improv'] [u'galleri', u'snap', u'paint', u'auction'] [u'gene', u'probe', u'monitor', u'marin', u'pest'] [u'georgian', u'grenad', u'threat', u'bush'] [u'girl', u'detent', u'birth', u'visit', u'play', u'group'] [u'glen', u'inn', u'head', u'mini', u'properti', u'boom'] [u'gold', u'coast', u'hop', u'stay'] [u'govt', u'call', u'salin', u'fund', u'help'] [u'govt', u'fast', u'track', u'amunguna', u'clinic'] [u'govt', u'prison', u'guard', u'footag'] [u'govt', u'remot', u'health', u'care'] [u'govt', u'urg', u'hous', u'region', u'worker'] [u'govt', u'urg', u'fund', u'lake', u'cathi', u'school'] [u'greas', u'trigger', u'award', u'hunter'] [u'greenough', u'council', u'candid', u'swear'] [u'guantanamo', u'prison', u'tell', u'koran', u'abus', u'apolog'] [u'health', u'scandal', u'forc', u'foreign', u'doctor'] [u'health', u'servic', u'offer', u'jeparit', u'assur'] [u'health', u'servic', u'say', u'cluster', u'save', u'money'] [u'health', u'servic', u'area', u'cluster'] [u'hear', u'debat', u'disabl', u'servic', u'cut'] [u'heritag', u'list', u'seek', u'histor', u'power', u'station'] [u'hewitt', u'hope', u'french', u'open', u'chanc'] [u'hewitt', u'remain', u'hope', u'french', u'open', u'chanc'] [u'high', u'petrol', u'price', u'fuel', u'tough', u'april', u'coast'] [u'case', u'drop'] [u'hovercraft', u'servic', u'plan', u'coco', u'keel'] [u'indigen', u'languag', u'site', u'explain', u'legal'] [u'indonesian', u'travel', u'alert', u'renew'] [u'inquiri', u'call', u'persist', u'despit', u'lennon', u'apolog'] [u'inquiri', u'delay', u'council', u'elect'] [u'iraqi', u'islam', u'group', u'kill', u'contractor'] [u'irrig', u'debat', u'water', u'reform', u'plan'] [u'kiwi', u'lose', u'anderson', u'helen'] [u'kuwait', u'offer', u'help', u'australia', u'gain', u'access'] [u'kyli', u'begin', u'cancer', u'treatment'] [u'kyli', u'put', u'face', u'breast', u'cancer', u'statist'] [u'kyli', u'diagnosi', u'shock', u'fellow', u'entertain'] [u'kyli', u'start', u'cancer', u'treatment'] [u'lake', u'hume', u'angler', u'illeg', u'gear', u'warn'] [u'late', u'ralli', u'push', u'stock'] [u'winter', u'rain', u'tip', u'south', u'east'] [u'local', u'busi', u'input', u'stock', u'exchang'] [u'local', u'govt', u'group', u'meet', u'conlon', u'region'] [u'lotterywest', u'help', u'fund', u'heritag', u'build', u'facelift'] [u'lower', u'hous', u'agre', u'mental', u'health', u'reform'] [u'guilti', u'murder', u'parent'] [u'plead', u'guilti', u'murder', u'girlfriend'] [u'maria', u'island', u'accommod', u'upgrad'] [u'meat', u'group', u'shelv', u'good', u'trial', u'concern'] [u'mechan', u'woe', u'hamper', u'oper'] [u'mediat', u'rubibi', u'group', u'nativ', u'titl'] [u'meninga', u'assail', u'eye', u'court', u'hear'] [u'meninga', u'sens', u'assault', u'victim', u'troubl'] [u'plan', u'creat', u'road', u'surfac', u'worri'] [u'minichiello', u'overcom', u'problem'] [u'minichiello', u'overcom', u'problem'] [u'mine', u'energi', u'project', u'boost', u'export'] [u'minist', u'defend', u'auxiliari', u'firefight'] [u'miss', u'mother', u'daughter', u'locat'] [u'morrison', u'make', u'tahiti', u'quarter', u'final'] [u'want', u'better', u'princ', u'highway', u'group', u'coordin'] [u'want', u'communiti', u'input', u'health', u'servic'] [u'panel', u'probe', u'road', u'repair', u'need'] [u'visa', u'tourist', u'region', u'season', u'work'] [u'north', u'south', u'korea', u'talk', u'extend'] [u'hospit', u'commerci', u'residenti', u'site'] [u'ombudsman', u'suggest', u'legal', u'shake'] [u'omodei', u'eject', u'parliament', u'elector'] [u'opposit', u'defend', u'role', u'forestri', u'polici'] [u'opposit', u'demand', u'illawarra', u'sewerag', u'answer'] [u'opposit', u'keen', u'hear', u'polic', u'view', u'staff'] [u'opposit', u'offer', u'qualifi', u'support', u'youth'] [u'opposit', u'unimpress', u'tram', u'plan'] [u'opposit', u'will', u'oper', u'chang'] [u'orang', u'rider', u'remain', u'hospit', u'accid'] [u'outdoor', u'cafe', u'rent', u'rise'] [u'oversea', u'bear', u'australian', u'urg', u'carri', u'passport'] [u'packer', u'reign', u'suprem', u'rich', u'list'] [u'pagan', u'back', u'player', u'drug', u'claim'] [u'pair', u'face', u'hear', u'alleg', u'bash', u'aborigin'] [u'pelesasa', u'eye', u'green', u'gold', u'forc', u'sign'] [u'pelesasa', u'sign', u'western', u'forc'] [u'perfect', u'lift', u'slater', u'tahiti', u'titl'] [u'philippin', u'embassi', u'rais', u'solon', u'concern'] [u'phone', u'program', u'target', u'indigen', u'communiti'] [u'visit', u'bring', u'hope', u'winter', u'crop', u'fund'] [u'polic', u'maitland', u'crash', u'victim'] [u'polic', u'offic', u'face', u'court', u'indec', u'assault'] [u'price', u'smith', u'come', u'train', u'rocki'] [u'public', u'winter', u'electr', u'safeti', u'warn'] [u'public', u'lobster', u'fleet'] [u'push', u'chang', u'asbesto', u'compens'] [u'qanta', u'sack', u'baggag', u'handler', u'drug', u'claim'] [u'govt', u'urg', u'look', u'forest', u'agreement'] [u'health', u'defend', u'foreign', u'train', u'mackay', u'doctor'] [u'mandarin', u'remov', u'amidst', u'canker', u'fear'] [u'sugar', u'industri', u'get'] [u'queensland', u'rule', u'poison'] [u'quill', u'test', u'reveal', u'babi', u'porcupin', u'gender'] [u'rain', u'bring', u'patchi', u'relief', u'farmer'] [u'raul', u'applaud', u'etoo', u'apolog'] [u'right', u'slowdown'] [u'cross', u'extend', u'blood', u'collect', u'servic'] [u'remot', u'popul', u'drop', u'spark'] [u'report', u'find', u'contact', u'list', u'need'] [u'report', u'urg', u'rethink', u'communiti', u'group', u'fund'] [u'repriev', u'lachlan', u'valley', u'irrig'] [u'chief', u'seek', u'firefight', u'feedback'] [u'road', u'safeti', u'concern', u'sink', u'duck', u'race'] [u'road', u'safeti', u'group', u'back', u'licenc'] [u'compani', u'receiv', u'grant', u'water', u'wise'] [u'satellit', u'research', u'give', u'clue', u'turtl', u'habit'] [u'save', u'rare', u'poultri', u'breed', u'tasmania'] [u'searcher', u'miss', u'businessman'] [u'secur', u'tight', u'rock', u'concert'] [u'sheep', u'breed', u'like', u'rabbit', u'bumper', u'season'] [u'sheikh', u'speak', u'wood'] [u'social', u'worker', u'cast', u'doubt', u'jackson', u'abus', u'claim'] [u'soldier', u'jail', u'ghraib', u'abus'] [u'soldier', u'arriv', u'remot', u'communiti', u'build', u'work'] [u'solomon', u'island', u'offici', u'jail', u'abduct', u'rape'] [u'solon', u'health', u'improv', u'lawyer'] [u'star', u'war', u'spark', u'arm', u'race', u'warn'] [u'state', u'emerg', u'lift', u'aceh'] [u'state', u'origin', u'run', u'rockhampton'] [u'state', u'fight', u'feder', u'water', u'fund', u'polici'] [u'stosur', u'strasbourg'] [u'stoush', u'tourism', u'minist', u'continu'] [u'struggl', u'myskina', u'defend', u'french', u'open', u'titl'] [u'support', u'citi', u'council', u'smith', u'report', u'decis'] [u'sydney', u'unit', u'play', u'miss', u'match'] [u'tactic', u'substitut', u'propos', u'dayer'] [u'farmer', u'mislead', u'forest', u'agreement', u'liber'] [u'teacher', u'admit', u'student'] [u'teacher', u'front', u'court', u'accus', u'teen'] [u'technolog', u'allow', u'indigen', u'student', u'stay'] [u'teen', u'arrest', u'school', u'knife', u'incid'] [u'thousand', u'power', u'storm'] [u'cleric', u'kill', u'baghdad'] [u'tourist', u'moreton', u'island'] [u'toyota', u'escap', u'penalti', u'licenc', u'error'] [u'toyota', u'recal', u'vehicl'] [u'arrest', u'melbourn', u'biki', u'raid'] [u'unit', u'wont', u'easi', u'beat', u'fergi', u'warn'] [u'arrest', u'accus', u'anti', u'castro', u'terrorist'] [u'continu', u'burma', u'sanction'] [u'uzbekistan', u'acknowledg', u'death', u'weekend', u'unrest'] [u'virgin', u'blame', u'fuel', u'fee', u'profit', u'drop'] [u'virgin', u'stick', u'discount', u'fare', u'approach'] [u'wada', u'concern', u'gregan', u'caffein', u'claim'] [u'draft', u'law', u'serial', u'offend'] [u'murder', u'trial', u'abort'] [u'heritag', u'council', u'streamlin'] [u'weed', u'threat', u'grow', u'drought', u'worsen'] [u'west', u'indi', u'look', u'bounc', u'pakistan'] [u'urg', u'australian', u'shoot'] [u'wilkinson', u'name', u'lion'] [u'woodchip', u'export', u'earn', u'rise'] [u'wool', u'price', u'surg'] [u'fear', u'dead', u'china', u'blast'] [u'secur', u'cricket', u'stream', u'right'] [u'accus', u'cocain', u'smuggler', u'refus', u'bail'] [u'seek', u'apolog', u'clear'] [u'attack', u'rockhampton', u'hospit', u'administr'] [u'amazon', u'land', u'clear', u'acceler'] [u'longer', u'crisi'] [u'anderson', u'say', u'newcastl', u'port', u'model'] [u'auditor', u'general', u'probe', u'consult'] [u'aussi', u'hard', u'worker', u'survey', u'find'] [u'australian', u'bear', u'astronaut', u'prepar', u'flight'] [u'australian', u'expert', u'studi', u'turban', u'action'] [u'award', u'honour', u'kalbarri', u'nurs'] [u'award', u'honour', u'teacher', u'excel'] [u'bail', u'teacher', u'child', u'charg'] [u'bank', u'collect', u'fee'] [u'bathurst', u'develop', u'technolog', u'link', u'korea'] [u'beatti', u'work', u'port', u'plan'] [u'beatti', u'doctor', u'racial', u'abus'] [u'better', u'studi'] [u'black', u'sign', u'bullet'] [u'bland', u'council', u'spend', u'develop'] [u'blaze', u'claim', u'theatr', u'group', u'histori'] [u'boe', u'engin', u'stand'] [u'brack', u'speak', u'branch', u'stack'] [u'brisban', u'clean', u'sever', u'storm'] [u'broom', u'prison', u'task', u'forc', u'integr'] [u'busi', u'group', u'convent', u'centr', u'revamp'] [u'caffein', u'affect', u'sport', u'sponsorship', u'say'] [u'upper', u'hous', u'retir'] [u'go', u'bolster', u'blood', u'donat'] [u'cannon', u'name', u'hooker', u'waratah'] [u'carter', u'holt', u'harvey', u'explain', u'earn', u'drop'] [u'cessnock', u'councillor', u'settl', u'disput'] [u'chaouk', u'refus', u'bail', u'attempt', u'murder', u'charg'] [u'chelsea', u'face', u'fifa', u'action', u'mikel', u'affair'] [u'children', u'injur', u'melbourn', u'schoolyard', u'crash'] [u'children', u'injur', u'playground', u'crash'] [u'chilean', u'soldier', u'snow', u'storm'] [u'clean', u'storm', u'continu'] [u'cobargo', u'benefit', u'sewerag', u'fund'] [u'colombian', u'mayor', u'lock', u'loos', u'tongu'] [u'comment', u'seek', u'nativ', u'titl', u'applic'] [u'commission', u'back', u'fast', u'track', u'teacher', u'code'] [u'communiti', u'council', u'dismiss', u'financi', u'audit'] [u'consum', u'inflat', u'percent'] [u'coron', u'urg', u'investig', u'patient', u'death'] [u'council', u'adopt', u'wollondilli', u'rate', u'rise', u'plan'] [u'council', u'govt', u'sign', u'waterfront', u'develop'] [u'councillor', u'reject', u'hors', u'complex', u'outsid'] [u'council', u'divid', u'sunday', u'trade'] [u'council', u'fail', u'submit', u'pulp', u'propos'] [u'court', u'date', u'accus', u'child', u'kill'] [u'court', u'rule', u'killer', u'entitl', u'inherit'] [u'creditor', u'forc', u'collin', u'sell', u'store'] [u'deal', u'boost', u'boppi', u'gold', u'mine'] [u'diabet', u'suffer', u'tell', u'exercis', u'healthi'] [u'diver', u'warn', u'avoid', u'bend'] [u'call', u'year', u'sentenc', u'paedophil'] [u'drought', u'proof', u'climat', u'chang'] [u'dubbo', u'giraff', u'head', u'neck', u'wood'] [u'earli', u'treatment', u'stem', u'dead', u'babi', u'diseas'] [u'elder', u'consid', u'macleay', u'nativ', u'titl', u'claim'] [u'electron', u'shop', u'blaze', u'consid', u'suspici'] [u'enforc', u'transport', u'etiquett', u'unwork'] [u'timores', u'want', u'extens', u'deport', u'deadlin'] [u'exercis', u'healthi', u'food', u'offer', u'hope', u'diabet'] [u'exhibit', u'showcas', u'aborigin', u'elder', u'work'] [u'farmer', u'fin', u'anim', u'cruelti'] [u'farmer', u'await', u'drought', u'decis'] [u'farmer', u'warn', u'fever', u'case'] [u'fierc', u'storm', u'lash', u'brisban'] [u'fishermen', u'releas', u'court', u'fail'] [u'fish', u'contest', u'futur', u'unclear'] [u'fish', u'larva', u'attract', u'noisi', u'reef'] [u'flash', u'light', u'slow', u'motorist', u'near', u'school'] [u'forb', u'council', u'decid', u'prison'] [u'foreign', u'crew', u'shellfish', u'ship', u'worri', u'union'] [u'refuge', u'tell', u'court', u'abandon', u'siev'] [u'fruit', u'grower', u'urg', u'season', u'work', u'visa', u'thai'] [u'fund', u'help', u'restor', u'pioneer', u'grave'] [u'gladbach', u'appoint', u'koppel', u'manag'] [u'good', u'rain', u'need', u'avoid', u'time'] [u'govt', u'commit', u'calder', u'time', u'frame'] [u'govt', u'delay', u'stage', u'worker', u'compo', u'chang'] [u'govt', u'give', u'money', u'tsunami', u'affect', u'famili'] [u'govt', u'prepar', u'wrest', u'control', u'waterfront'] [u'govt', u'urg', u'offer', u'fund', u'tourist', u'centr', u'plan'] [u'great', u'mind', u'tackl', u'global', u'woe'] [u'grow', u'popul', u'surpris', u'hervey', u'mayor'] [u'hagan', u'satisfi', u'maroon', u'squad'] [u'happi', u'goat', u'lucki', u'rhino', u'friend'] [u'hasler', u'sign', u'eagl'] [u'fallout', u'continu', u'council'] [u'hop', u'high', u'budget', u'deliv', u'extra', u'hospit'] [u'hop', u'boost', u'liber', u'fortun'] [u'howard', u'signal', u'careless', u'water'] [u'hunter', u'coal', u'industri', u'help', u'boost', u'miner', u'sector'] [u'contract', u'sell'] [u'increas', u'cost', u'forc', u'thuringowa', u'rat'] [u'india', u'australia', u'expand', u'econom', u'tie'] [u'indigen', u'hous', u'board', u'structur', u'limbo'] [u'indigen', u'hous', u'program', u'continu', u'govt'] [u'indonesia', u'voic', u'secur', u'concern', u'ahead', u'corbi'] [u'injuri', u'blow', u'ahead', u'final'] [u'inquiri', u'hear', u'mental', u'health', u'defici'] [u'iran', u'nuclear', u'plant', u'decis', u'irrevers'] [u'jockey', u'die', u'fall'] [u'juri', u'consid', u'meninga', u'verdict'] [u'juvenil', u'remand', u'centr', u'year', u'away'] [u'kelli', u'refus', u'bail', u'crash'] [u'kyli', u'undergo', u'cancer', u'surgeri'] [u'kyli', u'undergo', u'surgeri'] [u'larg', u'visitor', u'arriv', u'backyard', u'antarct'] [u'latest', u'crash', u'prove', u'causeway', u'need', u'fix', u'ryan'] [u'legisl', u'council', u'return', u'presid'] [u'lennon', u'fend', u'question', u'advic'] [u'lennon', u'target', u'debt'] [u'liber', u'seek', u'preselect', u'seat'] [u'linfox', u'drug', u'test', u'driver'] [u'littl', u'power', u'allow', u'port', u'takeov'] [u'local', u'govt', u'group', u'doubt', u'port', u'plan'] [u'local', u'govt', u'head', u'meet', u'yeppoon'] [u'malik', u'clear', u'life', u'say'] [u'charg', u'school', u'accid'] [u'face', u'court', u'cocain', u'smuggl', u'charg'] [u'massiv', u'hail', u'storm', u'caus', u'havoc', u'brisban'] [u'mcewen', u'giro', u'victori', u'overshadow', u'drug', u'raid'] [u'meninga', u'guilti', u'assault'] [u'minist', u'deni', u'sexual', u'assault', u'alleg'] [u'minist', u'urg', u'reject', u'bega', u'council', u'rat', u'plan'] [u'mishap', u'forc', u'outback', u'challeng', u'chang'] [u'missionari', u'killer', u'death', u'sentenc', u'commut'] [u'mother', u'accus', u'tri', u'suffoc', u'daughter'] [u'motiv', u'come', u'kimmorley'] [u'fear', u'redgum', u'timber', u'industri'] [u'hear', u'cemeteri', u'impact', u'fear'] [u'hit', u'govt', u'inact', u'drought', u'assist'] [u'power', u'station', u'improv'] [u'music', u'showcas', u'life', u'late', u'poet'] [u'deputi', u'mayor', u'urg', u'harmoni', u'council'] [u'health', u'care', u'group', u'plan', u'chang'] [u'hous', u'energi', u'effici'] [u'invent', u'promis', u'shark', u'protect', u'surfer'] [u'bail', u'macquari', u'field', u'accus'] [u'north', u'west', u'begin', u'copper', u'product'] [u'offer', u'compromis'] [u'prison', u'plan', u'draw', u'critic'] [u'criticis', u'port', u'plan'] [u'leader', u'sack', u'politician'] [u'ntfl', u'announc', u'line', u'local', u'clash'] [u'govt', u'reluct', u'hand', u'control', u'darwin'] [u'price', u'reach', u'month'] [u'dead', u'highway', u'truck', u'crash'] [u'opposit', u'seiz', u'mental', u'health', u'chief'] [u'panel', u'decid', u'retail', u'precinct', u'plan'] [u'patrick', u'corp', u'slam', u'sydney', u'airport', u'fee'] [u'patrick', u'post', u'profit'] [u'back', u'port', u'regul', u'plan'] [u'tour', u'lake', u'cargelligo', u'drought', u'area'] [u'decid', u'drought', u'assist', u'tour'] [u'tour', u'drought', u'area'] [u'urg', u'drought', u'tour', u'western'] [u'polic', u'impound', u'suspect', u'miller', u'point'] [u'polic', u'boost', u'staff', u'number'] [u'polic', u'seek', u'help', u'miss', u'bathurst'] [u'polic', u'seek', u'public', u'help', u'probe', u'south', u'durra', u'death'] [u'port', u'plan', u'speed', u'expans', u'busi'] [u'price', u'fix', u'cancer', u'economi', u'samuel'] [u'prison', u'group', u'worri', u'sieg', u'review'] [u'protea', u'coach', u'dare', u'board', u'sack'] [u'public', u'stand', u'need', u'sewerag', u'revamp'] [u'hospit', u'problem', u'widespread', u'inquiri', u'head', u'say'] [u'quak', u'rattl', u'remot', u'town'] [u'solon', u'case', u'mental', u'health', u'iceberg'] [u'razzaq', u'inspir', u'pakistan', u'victori', u'west'] [u'refuge', u'advoc', u'appoint', u'district', u'court', u'judg'] [u'region', u'ask', u'servic', u'review'] [u'report', u'urg', u'ail', u'public', u'school'] [u'resid', u'input', u'seek', u'bruce', u'highway', u'meet'] [u'resid', u'tell', u'batten', u'toilet'] [u'retail', u'sector', u'join', u'disabl', u'work', u'program'] [u'riddler', u'actor', u'gorshin', u'die'] [u'risdon', u'prison', u'staff', u'number', u'increas'] [u'rise', u'water', u'cost', u'affect', u'blood', u'lead', u'level'] [u'risk', u'manag', u'expert', u'gather', u'adelaid'] [u'ryan', u'renew', u'call', u'anim', u'activist', u'chang'] [u'negoti', u'water', u'fund', u'condit'] [u'schumach', u'admit', u'difficult', u'task', u'ahead'] [u'search', u'begin', u'teacher'] [u'senior', u'iraqi', u'offici', u'shoot', u'dead'] [u'share', u'market', u'push', u'higher'] [u'sheikh', u'seek', u'wood', u'releas', u'tell'] [u'sister', u'tell', u'moreton', u'rescu'] [u'skill', u'shortag', u'affect', u'coal', u'expans'] [u'chief', u'urg', u'extens', u'special', u'power'] [u'state', u'urg', u'resist', u'water', u'project', u'extort'] [u'storm', u'pass', u'littl', u'damag'] [u'strong', u'quak', u'rattl', u'sumatra'] [u'studi', u'settl', u'earliest', u'european', u'human', u'debat'] [u'sugar', u'fund', u'prompt', u'mix', u'reaction'] [u'summit', u'put', u'focus', u'road', u'issu'] [u'suspect', u'dun', u'murder', u'face', u'charg'] [u'opposit', u'slam', u'budget'] [u'prison', u'sieg', u'inmat', u'appear', u'court'] [u'hike', u'anger', u'busi', u'group'] [u'offic', u'hedg', u'bet', u'schedul'] [u'offic', u'move', u'allow', u'cut', u'juli'] [u'teenag', u'girl', u'charg', u'break', u'enter', u'offenc'] [u'teen', u'charg', u'sydney', u'jack'] [u'termin', u'oper', u'unsur', u'anderson', u'takeov'] [u'thai', u'insurg', u'rise'] [u'theme', u'park', u'futur', u'look', u'brighter'] [u'thief', u'stab', u'cabbi', u'broadmeadow', u'theft'] [u'arrest', u'colleg'] [u'tiger', u'warn', u'look', u'ahead'] [u'toddler', u'die', u'driveway', u'accid'] [u'toowoomba', u'win', u'babi', u'stake'] [u'chief', u'nation', u'richest'] [u'red', u'head', u'west'] [u'union', u'hope', u'goulburn', u'rail', u'worker', u'futur'] [u'union', u'refus', u'help', u'lewandowski', u'famili'] [u'union', u'warn', u'goldfield', u'water', u'woe'] [u'deni', u'plan', u'weaponis', u'space'] [u'north', u'korean', u'offici', u'meet', u'york'] [u'retail', u'deni', u'aust', u'wool', u'boycott'] [u'uzbek', u'troop', u'reclaim', u'control', u'volatil', u'border'] [u'vanston', u'hint', u'migrat', u'chang'] [u'vanston', u'reconsid', u'timor', u'asylum', u'seeker', u'case'] [u'vet', u'maintain', u'stanc', u'livestock', u'export'] [u'violent', u'storm', u'brisban'] [u'vitamin', u'lower', u'parkinson', u'risk'] [u'volcan', u'rock', u'power', u'home'] [u'polic', u'union', u'accus', u'condon', u'corrupt'] [u'warn', u'ash', u'perspect'] [u'worker', u'biggest', u'rise'] [u'whale', u'affect', u'qlds', u'tourism', u'industri', u'expert'] [u'wit', u'disput', u'mcgee', u'statement'] [u'worker', u'concern', u'bridg', u'crack'] [u'workshop', u'gather', u'perform', u'art', u'centr', u'idea'] [u'zarqawi', u'defend', u'suicid', u'attack'] [u'help', u'troubl'] [u'miss', u'bangladesh', u'boat', u'accid'] [u'afghan', u'kill', u'ambush'] [u'administr', u'put', u'mine', u'compani', u'sale'] [u'advis', u'join', u'council', u'conduct', u'committe'] [u'alonso', u'set', u'pace', u'monaco'] [u'anderson', u'fear', u'reserv'] [u'anderson', u'address', u'nation', u'state', u'confer'] [u'arrest', u'million', u'dollar', u'drug', u'ring'] [u'asic', u'win', u'onetel', u'evid', u'appeal'] [u'australian', u'studi', u'prostrat', u'cancer', u'treatment'] [u'australia', u'buckl', u'lead', u'philippin', u'open'] [u'australia', u'extend', u'mission', u'east', u'timor'] [u'miss', u'lion', u'open', u'week'] [u'bacteri', u'virus', u'like', u'caus', u'death'] [u'baker', u'creek', u'plant', u'receiv', u'fund', u'commit'] [u'bank', u'survey', u'prompt', u'regul'] [u'basso', u'pink', u'giro', u'challeng', u'crumbl'] [u'crowd', u'expect', u'port', u'hedland', u'welcom'] [u'britain', u'achiev', u'human', u'embryo', u'clone'] [u'budget', u'fail', u'impress', u'welfar', u'group'] [u'busi', u'infrastructur', u'grant', u'offer'] [u'busi', u'continu', u'feel', u'skill', u'shortag'] [u'cambodian', u'vow', u'justic', u'victim'] [u'canada', u'trial', u'fatigu', u'suck', u'program'] [u'canadian', u'govt', u'surviv', u'confid', u'vote'] [u'canker', u'threat', u'prompt', u'roadblock', u'warn'] [u'cash', u'waratah', u'draw', u'red', u'brumbi'] [u'chappel', u'appoint', u'indian', u'cricket', u'coach'] [u'chemist', u'fear', u'supermarket', u'medicin', u'plan'] [u'chilean', u'lawyer', u'derid', u'pinochet', u'stroke', u'claim'] [u'china', u'sign', u'deal'] [u'china', u'rais', u'textil', u'export', u'duti'] [u'chopper', u'help', u'miss', u'teen'] [u'cloth', u'nappi', u'green'] [u'cocain', u'nose', u'sniffer', u'dog'] [u'commerc', u'look', u'budget', u'relief'] [u'committe', u'chief', u'dismiss', u'contractor', u'claim'] [u'confer', u'focus', u'secur', u'govt', u'fund'] [u'costa', u'make', u'chang', u'road', u'user', u'summit'] [u'costa', u'road', u'summit', u'represent'] [u'costello', u'say', u'bank', u'reduc', u'fee', u'charg'] [u'council', u'back', u'border', u'develop'] [u'council', u'buy', u'excelsior', u'oval'] [u'council', u'submiss', u'highlight', u'water', u'plan', u'flaw'] [u'council', u'track', u'fund', u'snub'] [u'counter', u'terror', u'activ', u'budget', u'boost'] [u'court', u'hear', u'spear', u'killer', u'jail'] [u'craig', u'spray', u'crow', u'thrash', u'saint'] [u'crow', u'swoop', u'hapless', u'saint'] [u'crusad', u'cruis', u'super', u'final'] [u'disagre', u'student', u'staff', u'ratio', u'figur'] [u'cyclist', u'french', u'appeal', u'drug'] [u'dairi', u'farmer', u'seek', u'better', u'deal', u'cole'] [u'darfur', u'crisi', u'rwanda', u'warn'] [u'doctor', u'group', u'differ', u'shortag'] [u'drink', u'driver', u'respons', u'death', u'plead'] [u'drop', u'northern', u'territori'] [u'eel', u'good', u'eagl'] [u'everyon', u'sale', u'releg', u'romanian', u'club'] [u'extra', u'drought', u'relief', u'overdu', u'beazley', u'say'] [u'falconio', u'murder', u'case', u'hear', u'octob'] [u'farmer', u'hope', u'drought', u'chang'] [u'farm', u'group', u'threaten', u'drought', u'protest'] [u'feder', u'labor', u'ask', u'lead', u'carr'] [u'ferdinand', u'seek'] [u'figur', u'reveal', u'poor', u'financ'] [u'filipino', u'soldier', u'releas', u'year', u'jail'] [u'fli', u'doctor', u'await', u'feder', u'review', u'find'] [u'folk', u'observ', u'kilda', u'coach', u'thoma'] [u'follow', u'lead', u'costello', u'tell', u'bank'] [u'director', u'jode', u'rich', u'lose'] [u'german', u'visit', u'pope'] [u'golf', u'club', u'manag', u'handcuff', u'robberi'] [u'govt', u'announc', u'school', u'art', u'fund'] [u'govt', u'defend', u'polit', u'donat', u'plan'] [u'govt', u'crack', u'interst', u'anim', u'abus'] [u'govt', u'poor', u'state', u'indigen'] [u'govt', u'port', u'polici'] [u'govt', u'unlik', u'kimberley', u'season', u'worker'] [u'grafton', u'indigen', u'preschool', u'open'] [u'green', u'group', u'criticis', u'beach', u'develop', u'plan'] [u'drought', u'support', u'worker'] [u'histor', u'hotel', u'save', u'demolit'] [u'hope', u'remain', u'eyr', u'peninsula', u'transport', u'boost'] [u'hormon', u'therapi', u'aid', u'prostat', u'cancer', u'recoveri'] [u'hous', u'float', u'away', u'flood'] [u'howard', u'assur', u'farmer', u'help', u'dri'] [u'howard', u'beat', u'carr'] [u'hypnosi', u'help', u'sick', u'kid', u'cope', u'needl'] [u'armadillo', u'size', u'car', u'fossil', u'show'] [u'illawarra', u'jobless', u'rate', u'highest'] [u'immigr', u'minist', u'senat', u'amanda', u'vanston'] [u'indigen', u'babi', u'twice', u'like', u'problem'] [u'indonesian', u'ambassador', u'upbeat', u'prison', u'treati'] [u'injur', u'russian', u'schoolgirl', u'famili', u'win', u'visa'] [u'israel', u'vow', u'tough', u'gaza', u'milit'] [u'job', u'program', u'aim', u'offset', u'mitsubishi'] [u'judg', u'charg', u'abort', u'trial', u'unwel'] [u'juri', u'unabl', u'reach', u'verdict', u'arson', u'trial'] [u'kaspa', u'readi', u'busi', u'summer', u'cricket'] [u'kasper', u'readi', u'busi', u'summer', u'cricket'] [u'katsidi', u'hop', u'boost', u'rank', u'tanikul'] [u'khan', u'fin', u'european', u'get', u'tough', u'slow', u'play'] [u'seiz', u'lead', u'rochell'] [u'labor', u'demand', u'court', u'action', u'japan', u'whale', u'plan'] [u'land', u'releas', u'delay', u'take', u'shine', u'alic'] [u'lawyer', u'act', u'vivian', u'solon', u'push'] [u'leader', u'hope', u'timores', u'asylum'] [u'leak', u'paper', u'document', u'afghan', u'prison', u'abus'] [u'main', u'road', u'clear', u'hors', u'collis'] [u'malcolm', u'memorabilia', u'display'] [u'accus', u'invest', u'fraud', u'court'] [u'jail', u'year', u'child', u'death'] [u'jail', u'smuggl', u'meth', u'sake', u'bottl'] [u'man', u'catch', u'pseudoephedrin'] [u'marin', u'hong', u'kong'] [u'mayor', u'hop', u'break', u'hill', u'mural'] [u'mccaw', u'clear', u'meet', u'hurrican', u'super', u'semi'] [u'mckenzi', u'brush', u'asid', u'critic', u'tah', u'rich'] [u'meet', u'outlin', u'antarct', u'flight', u'prioriti'] [u'merrett', u'join', u'lion', u'richmond'] [u'miner', u'chamber', u'urg', u'uranium', u'mine', u'rethink'] [u'minist', u'criticis', u'polic', u'station'] [u'minist', u'offer', u'har', u'race', u'pledg'] [u'miss', u'russian', u'lake'] [u'miss', u'schoolgirl'] [u'mix', u'view', u'emerg', u'koala', u'health'] [u'monaro', u'farmer', u'prepar', u'tough', u'winter'] [u'chilean', u'soldier', u'miss', u'blizzard'] [u'storm', u'forecast', u'brisban'] [u'multi', u'million', u'dollar', u'upgrad', u'plan', u'ulan'] [u'clear', u'fact', u'knife', u'attack', u'stori'] [u'fisher', u'seek', u'licenc', u'clarif'] [u'netscap', u'combin', u'rival', u'program', u'browser'] [u'sale', u'rise', u'april'] [u'imag', u'hous', u'network'] [u'katan', u'shire', u'chief', u'appoint'] [u'monkey', u'speci', u'african', u'forest'] [u'task', u'forc', u'tackl', u'woe'] [u'upper', u'hous', u'member', u'face', u'difficult', u'time'] [u'need', u'extend', u'asio', u'detent', u'power', u'professor'] [u'govt', u'seek', u'green', u'light', u'heroin', u'treatment'] [u'nurs', u'claim', u'triumph'] [u'offic', u'cultur', u'blame', u'immigr', u'stuff'] [u'offic', u'stand', u'assault', u'alleg'] [u'oldest', u'sell'] [u'opposit', u'air', u'health', u'centr', u'park', u'site'] [u'park', u'want', u'criteria', u'relax'] [u'petit', u'oppos', u'hervey', u'bay', u'high', u'rise', u'develop'] [u'pie', u'hope', u'tarrant', u'prove', u'fit'] [u'pioneer', u'settlement', u'sell', u'collect'] [u'assur', u'drought', u'affect', u'farmer', u'want'] [u'offic', u'deni', u'sierra', u'leon', u'letter', u'claim'] [u'polar', u'aviat', u'defend', u'flight', u'record'] [u'polic', u'weapon', u'cach', u'ship', u'contain'] [u'polic', u'hunt', u'knife', u'wield', u'foreign', u'fund', u'thief'] [u'polic', u'probe', u'theft', u'driver', u'licenc', u'make'] [u'pope', u'condemn', u'genocid', u'jew'] [u'premier', u'deni', u'tell', u'minist', u'remain'] [u'protea', u'dump', u'jen'] [u'public', u'urg', u'throw', u'lifelin', u'fish', u'contest'] [u'public', u'warn', u'avoid', u'mossi', u'virus', u'threat'] [u'pulp', u'project', u'get', u'budget', u'support'] [u'ralli', u'seek', u'child', u'safeti', u'resourc'] [u'find', u'week'] [u'cross', u'warn', u'guantanamo', u'koran', u'abus'] [u'redfern', u'resid', u'strong', u'oppos', u'needl'] [u'red', u'enter', u'market', u'henjak'] [u'region', u'firm', u'urg', u'help', u'stop', u'work', u'place'] [u'relax', u'brigg', u'readi', u'world', u'titl', u'shoot'] [u'resourc', u'bank', u'drag', u'lower'] [u'review', u'look', u'improv', u'hospit'] [u'review', u'spark', u'busi', u'enterpris', u'centr'] [u'keep', u'hewitt', u'french', u'open'] [u'rich', u'list', u'tuna', u'tycoon', u'diversifi'] [u'riot', u'club', u'competit', u'point', u'restor'] [u'risdon', u'inmat', u'court', u'prison', u'sieg'] [u'roma', u'death', u'sadden', u'race', u'industri'] [u'council', u'challeng', u'neglig', u'find'] [u'sack', u'waley', u'settl'] [u'safeti', u'blitz', u'begin', u'cleaner'] [u'saint', u'strengthen', u'defenc', u'crow', u'clash'] [u'santo', u'headquart', u'stay'] [u'school', u'crash', u'driver', u'drink', u'court', u'tell'] [u'schoolgirl', u'killer', u'walk', u'free', u'today'] [u'schoolgirl', u'murder', u'walk', u'free'] [u'septemb', u'moot', u'salt', u'scheme', u'start', u'date'] [u'sheedi', u'rule', u'hird', u'comeback', u'power'] [u'sheehan', u'sizzl', u'forth', u'worth'] [u'sheikh', u'aid', u'confid', u'wood', u'releas'] [u'shire', u'reject', u'boat', u'damag', u'compo'] [u'shoal', u'develop', u'approv', u'challeng'] [u'siev', u'case', u'hear', u'smuggler', u'pose', u'soldier'] [u'siev', u'survivor', u'say', u'tell', u'boat', u'seaworthi'] [u'simplot', u'chip', u'fund', u'potato', u'research'] [u'skill', u'labour', u'need', u'propos', u'diesel', u'plant'] [u'soldier', u'impal', u'barrack', u'crash'] [u'speaker', u'vote', u'save', u'canadian', u'govern'] [u'specialist', u'doubt', u'mris', u'viabil'] [u'star', u'war', u'leak', u'internet'] [u'storm', u'fail', u'eventu', u'brisban'] [u'studi', u'spotlight', u'aborigin', u'elder', u'abus'] [u'survey', u'highlight', u'posit', u'econom', u'outlook'] [u'sustain', u'hous', u'scheme', u'alter'] [u'tabloid', u'post', u'photo', u'saddam', u'underwear'] [u'tare', u'council', u'lobbi', u'highway', u'toll'] [u'taxpay', u'fund', u'doctor', u'escap', u'beatti'] [u'teacher', u'applaud', u'smaller', u'kindergarten', u'class'] [u'thai', u'polic', u'seiz', u'qaeda', u'train', u'video'] [u'thorn', u'keen', u'chang', u'winless', u'origin', u'record'] [u'torr', u'strait', u'island', u'host', u'detent', u'centr'] [u'tourist', u'tast', u'drove', u'life'] [u'tsunami', u'prompt', u'privaci', u'loosen'] [u'tune', u'remain', u'blood', u'queensland'] [u'charg', u'alleg', u'drug', u'ring'] [u'kill', u'head', u'collis'] [u'korea', u'hold', u'face', u'face'] [u'uncertainti', u'hang', u'sack', u'member'] [u'await', u'mcmillan', u'campus', u'review', u'result'] [u'union', u'fight', u'milk', u'factori', u'closur'] [u'union', u'upset'] [u'charg', u'accus', u'cuban', u'bomber'] [u'move', u'billboard', u'space'] [u'north', u'korea', u'hold', u'direct', u'nuclear', u'talk'] [u'warn', u'koran', u'mishandl', u'alleg'] [u'vail', u'highlight', u'marin', u'industri', u'econom'] [u'vanston', u'tight', u'lip', u'solon', u'help'] [u'villarr', u'vote', u'victori', u'spanish', u'champion'] [u'virgin', u'ask', u'reviv', u'sydney', u'alic', u'spring'] [u'vote', u'begin', u'provinc', u'bougainvill'] [u'weather', u'spark', u'weekend', u'fire', u'warn'] [u'webber', u'lead', u'drive', u'better', u'safeti'] [u'widespread', u'hospit', u'problem', u'surpris'] [u'windsor', u'student', u'union', u'legisl', u'amend'] [u'adelaid', u'anglican', u'elect', u'archbishop'] [u'adelaid', u'explos', u'investig'] [u'anger', u'kill', u'probe', u'drop'] [u'terrorist', u'hit', u'british', u'museum', u'caveman', u'fake'] [u'beazley', u'step', u'campaign'] [u'face', u'prosecut', u'fatal', u'blast'] [u'branch', u'stack', u'protest', u'heckl', u'brack'] [u'brazil', u'clone', u'endang', u'bovin', u'speci'] [u'budget', u'includ', u'energi', u'concess'] [u'bulldog', u'blow', u'past', u'storm'] [u'bush', u'threaten', u'stem', u'cell', u'research', u'veto'] [u'businessmen', u'health', u'improv', u'moreton', u'ordeal'] [u'campbel', u'miss', u'final'] [u'cane', u'toad', u'threaten', u'darwin', u'drink', u'water'] [u'carlton', u'leav', u'fightback', u'late'] [u'chappel', u'merg', u'steel', u'style'] [u'coat', u'elect', u'presid'] [u'collingwood', u'scott', u'burn', u'shane', u'wakelin'] [u'cosgrov', u'return', u'iraq'] [u'cuban', u'democraci', u'confer', u'open'] [u'curtain', u'come', u'princ', u'park'] [u'doctor', u'want', u'aborigin', u'health', u'chang', u'implement'] [u'dragon', u'withstand', u'fast', u'finish', u'knight'] [u'drought', u'forc', u'goulburn', u'close', u'pool'] [u'drought', u'mental', u'health', u'impact', u'worri', u'leader'] [u'eagl', u'wari', u'mick', u'insid', u'track'] [u'east', u'timor', u'celebr', u'independ'] [u'ebola', u'town', u'quarantin', u'congo'] [u'energi', u'lobbi', u'urg', u'agreement', u'regulatori', u'deal'] [u'timor', u'deni', u'seab', u'deal', u'reach'] [u'farmer', u'demand', u'better', u'drought', u'assist'] [u'farm', u'relat', u'busi', u'tell', u'howard', u'drought', u'woe'] [u'feder', u'nadal', u'french', u'open', u'collis', u'cours'] [u'financi', u'dope', u'chelsea', u'worri', u'wenger'] [u'follow', u'australia', u'exampl', u'chappel', u'tell', u'india'] [u'foster', u'step', u'campaign', u'southcorp', u'share'] [u'stick', u'luna', u'park', u'roller', u'coaster'] [u'fund', u'prop', u'show'] [u'german', u'seek', u'life', u'suspect'] [u'german', u'tourist', u'rescu', u'gorg', u'fall'] [u'gippsland', u'bishop', u'choos', u'head', u'adelaid', u'church'] [u'govt', u'favour', u'coal', u'power', u'product'] [u'green', u'live', u'public', u'hous'] [u'haa', u'redeem', u'carri', u'germani', u'final'] [u'hizbollah', u'fighter', u'shell', u'isra', u'post'] [u'hop', u'fade', u'soldier', u'trap', u'andes'] [u'independ', u'review', u'handl', u'seek'] [u'israel', u'palestinian', u'disagre', u'summit', u'plan'] [u'jackson', u'storm', u'begin', u'women', u'titl', u'defenc'] [u'jackson', u'lawyer', u'famili', u'surveil'] [u'jail', u'vice', u'presid', u'quit', u'posit'] [u'judg', u'accus', u'spi', u'kidnap', u'terrorist'] [u'kidney', u'diseas', u'patient', u'number', u'rise'] [u'kyli', u'high', u'spirit', u'surgeri'] [u'kyli', u'cancer', u'surgeri', u'success'] [u'labor', u'launch', u'campaign'] [u'late', u'milan', u'collaps', u'hand', u'juve', u'titl'] [u'lawyer', u'porn', u'star', u'night'] [u'lennon', u'hint', u'betfair', u'licenc', u'approv'] [u'long', u'wait', u'australian', u'whovian'] [u'arrest', u'hour', u'stand'] [u'jail', u'take', u'grenad', u'bind', u'plane'] [u'welcom', u'ford', u'appoint'] [u'mcewen', u'question', u'italian', u'polic'] [u'northant', u'struggl', u'bangladesh'] [u'north', u'korea', u'warn', u'japan', u'sanction'] [u'seek', u'block', u'hate', u'email'] [u'opposit', u'play', u'sack'] [u'ogradi', u'cook', u'join', u'giro', u'exodus'] [u'kill', u'lyell', u'highway', u'crash'] [u'outrag', u'taxpay', u'fund', u'patel', u'flight'] [u'perri', u'take', u'coloni', u'lead'] [u'petacchi', u'pummel', u'peloton', u'basso', u'bask', u'pink'] [u'phoenix', u'shoot', u'past', u'firebird'] [u'pietersen', u'smash', u'remind', u'selector'] [u'pilot', u'urg', u'transair', u'safeti', u'concern'] [u'plucki', u'pie', u'knock', u'eagl'] [u'polic', u'seek', u'public', u'help', u'death', u'investig'] [u'polic', u'seiz', u'pirat', u'dvds'] [u'polic', u'sick', u'leav', u'inquiri', u'commiss'] [u'tourist', u'target', u'dutch', u'coffe', u'shop'] [u'power', u'post'] [u'prison', u'abus', u'alleg', u'shock', u'karzai'] [u'project', u'tackl', u'indigen', u'crime', u'rat'] [u'protest', u'grip', u'uzbek', u'border', u'town'] [u'public', u'input', u'thrill', u'bushfir', u'memori', u'artist'] [u'public', u'invit', u'tunnel', u'histori'] [u'racv', u'deni', u'gag', u'spokesman'] [u'raikkonen', u'top', u'monaco', u'qualifi'] [u'razorback', u'sign', u'wildcat', u'harvey'] [u'renault', u'time', u'collis', u'practic'] [u'revis', u'snail', u'list', u'speed', u'port', u'oper'] [u'ride', u'goer', u'rescu', u'luna', u'park'] [u'rollercoast', u'rescu'] [u'grass', u'research', u'reap', u'allergi', u'free', u'benefit'] [u'saddam', u'lawyer', u'underp', u'photo'] [u'saddam', u'undi', u'pic', u'spark', u'controversi'] [u'sensor', u'watch', u'barrier', u'reef'] [u'skin', u'darwin', u'road'] [u'soldier', u'return', u'iraq'] [u'sourc', u'saddam', u'photo', u'investig'] [u'south', u'korea', u'deliv', u'fertilis', u'north'] [u'space', u'shuttl', u'discoveri', u'pass', u'tank', u'test'] [u'lanka', u'pois', u'moodi', u'coach'] [u'star', u'war', u'bust', u'offic', u'record'] [u'state', u'territori', u'join', u'fight', u'japan'] [u'strike', u'hit', u'bangladesh'] [u'sunday', u'qualifi', u'ax', u'monaco'] [u'sweden', u'breach', u'tortur', u'convent'] [u'tassi', u'devil', u'reach', u'vulner', u'status'] [u'teacher', u'student', u'convict'] [u'teen', u'die', u'hors', u'rid', u'accid'] [u'teen', u'front', u'court', u'alleg', u'tomahawk', u'threat'] [u'theft', u'figur', u'forc', u'govt', u'defend', u'school'] [u'tiger', u'gabba', u'catfight'] [u'council', u'avoid', u'fall'] [u'tourism', u'oper', u'whale', u'protect'] [u'tszyu', u'camp', u'question', u'hatton', u'abil'] [u'kill', u'injur', u'separ', u'road', u'crash'] [u'updat', u'improv', u'tie', u'miner', u'aborigin'] [u'probe', u'afghan', u'prison', u'death'] [u'uzbek', u'leader', u'reject', u'independ', u'probe'] [u'wall', u'mix', u'strong', u'week'] [u'waratah', u'super', u'final'] [u'warrior', u'strong', u'rabbitoh'] [u'wast', u'treatment', u'plant', u'generat', u'electr'] [u'delay', u'smallpox', u'decis'] [u'wool', u'receivership', u'report', u'worri', u'union'] [u'dead', u'peru', u'crash'] [u'abus', u'claim', u'overshadow', u'karzai', u'visit'] [u'abus', u'report', u'strain', u'afghan', u'relat'] [u'play', u'critic', u'health', u'care', u'report'] [u'afrikan', u'march', u'pretoria'] [u'see', u'tension', u'coalit', u'telstra', u'debat'] [u'anderson', u'deni', u'port', u'crisi', u'point'] [u'anderson', u'reassur', u'pilot', u'safeti', u'concern'] [u'arsenal', u'unit', u'penalti', u'thriller'] [u'arsenal', u'sink', u'unit', u'penalti', u'shootout'] [u'arsenal', u'shoot'] [u'aussi', u'daw', u'smash', u'cours', u'record', u'philippin'] [u'aussi', u'hand', u'tough', u'draw', u'pari'] [u'aust', u'push', u'nuclear', u'test', u'treati'] [u'beatti', u'eye', u'chines', u'tourist', u'trade'] [u'beatti', u'resign', u'seek', u'patel', u'airfar'] [u'blokey', u'job', u'encourag', u'babi', u'boy', u'studi', u'say'] [u'branch', u'stack', u'claim', u'upset', u'confer'] [u'cairo', u'tourist', u'attack', u'suspect', u'die', u'custodi'] [u'canberra', u'bushfir', u'memori', u'plan', u'track'] [u'canteen', u'bodi', u'remov', u'repres'] [u'carrol', u'origin', u'blow', u'maroon'] [u'cartwright', u'take', u'sydney', u'half', u'marathon'] [u'cat', u'coast', u'victori', u'roo'] [u'china', u'check', u'everest', u'growth', u'spurt'] [u'china', u'take', u'emerg', u'precaut', u'bird'] [u'concern', u'super', u'chang', u'cost', u'employe'] [u'conjoin', u'twin', u'separ', u'hour', u'oper'] [u'conjoin', u'twin', u'smile', u'separ', u'surgeri'] [u'corbi', u'plea', u'freedom'] [u'corbi', u'case', u'indonesian', u'presid'] [u'crowd', u'celebr', u'close', u'ceremoni', u'arafura', u'game'] [u'daintre', u'secur', u'properti'] [u'drought', u'need', u'stave', u'skill', u'shortag'] [u'dunde', u'releg', u'scotland'] [u'employ', u'anticip', u'wag', u'rise', u'survey'] [u'eurovis', u'kick', u'kiev'] [u'fish', u'boat', u'explor', u'depth', u'dive', u'wreck'] [u'inspector', u'detail', u'iraq', u'prison', u'life'] [u'futur', u'telstra', u'sale', u'proceed', u'undecid'] [u'game', u'plan', u'pie', u'malthous'] [u'geelong', u'hit', u'tourist', u'magazin', u'blacklist'] [u'german', u'club', u'sack', u'socceroo', u'skipper', u'moor'] [u'germani', u'stun', u'favourit', u'argentina', u'lift', u'tenni'] [u'govt', u'agre', u'drought', u'relief', u'rethink'] [u'govt', u'hold', u'polit', u'donat', u'threshold'] [u'govt', u'court', u'budget'] [u'grandstand', u'speak', u'greg', u'bird', u'paul', u'mellor', u'stuart'] [u'grandstand', u'speak', u'matt', u'elliott', u'sheen'] [u'greec', u'take', u'eurovis', u'crown'] [u'green', u'launch', u'anti', u'forestri', u'deal'] [u'green', u'want', u'debat', u'focus', u'afford', u'hous'] [u'greg', u'chappel', u'interview'] [u'gritti', u'urban', u'tale', u'win', u'cann', u'prize'] [u'hawk', u'past', u'docker'] [u'hear', u'mick', u'malthous', u'john', u'worsfold'] [u'hepat', u'suffer', u'urg', u'access', u'treatment'] [u'high', u'fli', u'shark', u'extend', u'panther', u'slump'] [u'indian', u'appeal', u'sentenc', u'missionari'] [u'investor', u'support', u'telstra', u'sell'] [u'japan', u'malaysia', u'clear', u'free', u'trade', u'deal'] [u'edg', u'ahead', u'york'] [u'laura', u'bush', u'visit', u'jerusalem', u'holi', u'sit'] [u'luna', u'park', u'defend', u'safeti', u'procedur'] [u'charg', u'hour', u'sydney', u'sieg'] [u'hospitalis', u'melbourn', u'shoot'] [u'medic', u'school', u'await', u'accredit', u'decis'] [u'mick', u'crocker', u'brad', u'thorn', u'talk', u'build'] [u'montoya', u'kill', u'charg', u'villeneuv'] [u'morcomb', u'case', u'doorknock', u'turn', u'lead'] [u'mountain', u'torrent', u'kill', u'passeng', u'china'] [u'weigh', u'litchfield', u'gift', u'chanc'] [u'muslim', u'hold', u'anti', u'protest', u'jakarta'] [u'adelaid', u'archbishop', u'promis', u'address', u'child'] [u'fund', u'improv', u'school', u'support'] [u'govt', u'defend', u'breast', u'screen', u'access'] [u'opposit', u'call', u'polic', u'manuka', u'beat'] [u'ozjet', u'confid', u'swift', u'licenc', u'approv'] [u'pakistan', u'seri', u'west', u'indi', u'slump'] [u'palestinian', u'propos', u'summit'] [u'perri', u'continu', u'sizzl', u'coloni'] [u'point', u'heartbreak', u'brigg', u'chicago'] [u'polic', u'uncov', u'morcomb', u'lead'] [u'probe', u'begin', u'luna', u'park', u'ride', u'leav'] [u'push', u'budget', u'fund', u'region', u'electr'] [u'raikkonen', u'secur', u'pole', u'monaco'] [u'ralli', u'decis', u'disappoint', u'motorsport', u'council'] [u'real', u'beti', u'jump', u'champion', u'leagu', u'place'] [u'relief', u'sight', u'hepat', u'suffer'] [u'romanian', u'hostag', u'free', u'iraq'] [u'rudd', u'renew', u'immigr', u'royal', u'commiss'] [u'rudd', u'discuss', u'corbi', u'indonesian', u'ambassador'] [u'govt', u'road', u'safeti'] [u'savoldelli', u'take', u'giro', u'lead', u'basso'] [u'scott', u'draper', u'overcom', u'obstacl'] [u'search', u'suspend', u'miss', u'woman'] [u'shed', u'hous', u'support', u'rural'] [u'smith', u'injuri', u'compound', u'canberra', u'loss'] [u'solon', u'litig', u'hing', u'govt', u'offer', u'lawyer'] [u'south', u'australian', u'kill', u'crash'] [u'spanish', u'free', u'beckham', u'trip'] [u'specialist', u'doctor', u'seek', u'rise', u'nurs'] [u'steve', u'folk', u'braith', u'anasta', u'interview'] [u'sullivan', u'cove', u'develop', u'recognis'] [u'swan', u'spirit', u'bulldog'] [u'technolog', u'death', u'career', u'killer'] [u'child', u'take', u'palm'] [u'togoles', u'refuge', u'flee', u'elect'] [u'pietersen', u'hit', u'selector'] [u'tortur', u'okay', u'certain', u'situat', u'barrist', u'say'] [u'soldier', u'kill', u'afghanistan', u'blast'] [u'violenc', u'crippl', u'iraq', u'rebuild', u'effort'] [u'violenc', u'mar', u'azerbaijan', u'pipelin', u'protest'] [u'waratah', u'bull', u'player', u'interview'] [u'waratah', u'hop', u'continu', u'year', u'first'] [u'warn', u'untreat', u'water'] [u'urg', u'restraint', u'uzbekistan', u'downer'] [u'wenger', u'drop', u'quit', u'hint'] [u'wheel', u'roll', u'adelaid', u'public', u'bike', u'scheme'] [u'woman', u'miss', u'sunshin', u'coast', u'hinterland'] [u'kill', u'pakistani', u'border', u'clash'] [u'kangaroo', u'koala', u'face', u'sterilis'] [u'accus', u'biter', u'refus', u'bail'] [u'milan', u'liverpool', u'fine', u'tune', u'final', u'plan'] [u'act', u'chief', u'back', u'polic', u'despit', u'face'] [u'agforc', u'bush', u'tour', u'begin'] [u'airport', u'upgrad', u'near', u'complet'] [u'archer', u'mooney', u'accept', u'ban'] [u'report', u'show', u'moral', u'australia', u'defenc', u'forc'] [u'armi', u'find', u'bodi', u'chilean', u'train'] [u'art', u'fund', u'indigen', u'group'] [u'author', u'gather', u'sydney', u'writer', u'festiv'] [u'surgeri', u'better', u'therapi'] [u'baghdad', u'bomb', u'caus', u'casualti', u'polic'] [u'bakir', u'admit', u'briberi', u'claim', u'baseless'] [u'bakir', u'apologis', u'corbi', u'prosecut', u'briberi'] [u'bald', u'defend', u'bias', u'claim'] [u'bank', u'lead', u'higher'] [u'program', u'staff', u'strike', u'cut'] [u'staff', u'strike', u'cut'] [u'beatti', u'expect', u'bundaberg', u'inquiri', u'embarrass'] [u'beazley', u'warn', u'infight'] [u'bega', u'council', u'rethink', u'rat', u'plan'] [u'rural', u'agenda', u'coag'] [u'billionair', u'set', u'corker', u'task', u'wine', u'expert'] [u'bodi', u'bathurst', u'tamworth', u'river'] [u'bowl', u'club', u'look', u'sister', u'club', u'green'] [u'prick', u'needl', u'alburi', u'toilet'] [u'brigg', u'hungrier', u'world', u'titl'] [u'buckley', u'make', u'return', u'magpi', u'train'] [u'servic', u'review', u'unlik', u'mean', u'fund'] [u'govt', u'stop', u'indigen', u'genocid'] [u'port', u'sorrel', u'polic', u'boost'] [u'whale', u'shark', u'hunt'] [u'cassano', u'put', u'atalanta', u'miseri'] [u'chamber', u'deliv', u'budget', u'wish', u'list'] [u'china', u'talk', u'begin'] [u'china', u'tackl', u'migratori', u'bird'] [u'club', u'welcom', u'race', u'industri', u'fund', u'boost'] [u'cole', u'myer', u'launch', u'liquor', u'chain'] [u'communiti', u'cabinet', u'come', u'alic'] [u'stand', u'log', u'protest'] [u'cornelia', u'seek', u'compens'] [u'cosgrov', u'see', u'begin', u'iraq'] [u'councillor', u'angri', u'air', u'complaint'] [u'councillor', u'decid', u'byron', u'pay', u'park'] [u'court', u'grant', u'delay', u'administr'] [u'court', u'tell', u'nappi', u'packag', u'tip', u'edg'] [u'croesus', u'mine', u'plan', u'growth', u'strategi'] [u'cronk', u'mogg', u'suspend', u'match'] [u'develop', u'pursu', u'defam', u'action'] [u'develop', u'urg', u'help', u'fund', u'secur', u'camera'] [u'docker', u'chop', u'block', u'connolli'] [u'doctor', u'seek', u'better', u'access', u'breast', u'cancer', u'drug'] [u'dodd', u'hold', u'nerv', u'clinch', u'irish', u'open'] [u'attack', u'put', u'girl', u'hospit'] [u'doll', u'kidnapp', u'get', u'jail', u'time'] [u'downer', u'keen', u'resum', u'polic', u'deploy'] [u'downer', u'rule', u'indonesian', u'polit', u'tamper'] [u'drought', u'ignor', u'long', u'term'] [u'drought', u'assist', u'come', u'late'] [u'time', u'forc', u'water', u'cart'] [u'wrap', u'fuel', u'reduct', u'burn'] [u'dunley', u'face', u'wait', u'spit', u'charg'] [u'eagl', u'wari', u'power'] [u'ebay', u'leav', u'charg', u'seller'] [u'ebay', u'user', u'forc', u'includ'] [u'entri', u'aplenti', u'competit'] [u'work', u'site', u'clean'] [u'fall', u'power', u'line', u'electr'] [u'farmer', u'hope', u'chang', u'fund', u'criteria'] [u'farmer', u'urg', u'overhaul', u'drought', u'fund', u'manag'] [u'faster', u'train', u'spark', u'level', u'cross', u'boom'] [u'feder', u'mission', u'complet', u'grand', u'slam', u'haul'] [u'feedlot', u'plan', u'get', u'green', u'light'] [u'fenerbahc', u'clinch', u'turkish', u'titl'] [u'fieri', u'crash', u'mar', u'powerboat', u'event'] [u'figur', u'north', u'west', u'victorian', u'die', u'sooner'] [u'fire', u'wont', u'deter', u'nation', u'park', u'tourist', u'attract'] [u'fish', u'pest', u'fight', u'net', u'good', u'result'] [u'flanneri', u'name', u'queensland', u'lock'] [u'forb', u'council', u'jail'] [u'forecast', u'predict', u'rain'] [u'forlan', u'trick', u'earn', u'villarr', u'draw', u'barca'] [u'olympian', u'bail', u'wife', u'stalk', u'charg'] [u'gallop', u'attack', u'water', u'network'] [u'gayl', u'vain', u'pakistan', u'sweep', u'seri'] [u'gebrselassi', u'run', u'riot', u'manchest'] [u'gibb', u'captain', u'maori', u'lion'] [u'gloucest', u'host', u'econom', u'develop', u'forum'] [u'govern', u'urg', u'rethink', u'highway', u'fund'] [u'govt', u'accus', u'drought', u'confus'] [u'govt', u'ask', u'boost', u'broom', u'port', u'fund'] [u'govt', u'criticis', u'transport', u'secur', u'vacanc'] [u'govt', u'dismiss', u'talk', u'rise', u'violenc', u'manuka'] [u'govt', u'promis', u'timber', u'cutter', u'exit', u'packag', u'talk'] [u'govt', u'promis', u'widen', u'drought'] [u'govt', u'accus', u'burden', u'busi', u'tape'] [u'govt', u'urg', u'medic', u'school', u'plan'] [u'govt', u'urg', u'consid', u'wider', u'drought', u'impact'] [u'grant', u'embarrass', u'roo', u'heavi', u'defeat'] [u'hop', u'improv', u'motocross', u'champ'] [u'heckler', u'disrupt', u'sharon', u'tour'] [u'histor', u'hotel', u'owner', u'open', u'talk'] [u'hmas', u'newcastl', u'sail', u'persian', u'gulf'] [u'hobart', u'pair', u'win', u'park'] [u'hors', u'rid', u'accid', u'girl', u'name'] [u'howard', u'eye', u'higher', u'polit', u'donat', u'threshold'] [u'howard', u'ring', u'defenc', u'chang'] [u'hundr', u'arrest', u'baghdad', u'raid'] [u'india', u'high', u'alert', u'cinema', u'blast'] [u'indigen', u'remain', u'drive'] [u'indonesia', u'readi', u'iraq', u'explor', u'deal'] [u'infrastructur', u'fund', u'boost'] [u'inquiri', u'continu', u'polic', u'sick', u'leav'] [u'iranian', u'watchdog', u'whittl', u'president'] [u'iraqi', u'forc', u'squeez', u'baghdad'] [u'isra', u'armi', u'go', u'battlefield', u'rugbi', u'field'] [u'isra', u'raft', u'accid'] [u'isra', u'soldier', u'foil', u'suicid', u'bomb'] [u'kerin', u'reject', u'report', u'liber', u'leadership'] [u'wit', u'motiv', u'kill', u'underworld', u'figur'] [u'koran', u'furor', u'prompt', u'newsweek', u'editori', u'shake'] [u'kyrgyzstan', u'turn', u'flee', u'uzbek'] [u'labor', u'criticis', u'resid', u'upgrad'] [u'laura', u'bush', u'heckl', u'jerusalem'] [u'leagu', u'offici', u'hear', u'brawl', u'complaint'] [u'lennon', u'claim', u'public', u'support', u'forest', u'agreement'] [u'libya', u'sue', u'amnesti', u'human', u'right', u'report'] [u'littl', u'rain', u'cut', u'banana', u'prawn', u'catch'] [u'lobster', u'clean', u'green', u'scheme', u'run', u'award'] [u'local', u'govt', u'urg', u'improv', u'drink', u'water'] [u'longreach', u'council', u'quit'] [u'long', u'recoveri', u'time', u'predict', u'storm', u'bunburi'] [u'plan', u'hire', u'hitman', u'kill', u'rape', u'victim'] [u'face', u'court', u'south', u'durra', u'murder'] [u'match', u'review', u'panel', u'ponder', u'charg'] [u'matthew', u'call', u'bounc', u'banish'] [u'mayor', u'hop', u'flexibl', u'drought'] [u'mcewen', u'consid', u'partial', u'fish'] [u'meet', u'focus', u'rural', u'colleg', u'futur'] [u'meet', u'seek', u'support', u'hospit', u'revamp'] [u'melbourn', u'home', u'spain', u'court', u'ordeal'] [u'metcash', u'acquir', u'foodland'] [u'hit', u'luna', u'park', u'respons', u'ride'] [u'minist', u'tabl', u'abus', u'inquiri', u'report'] [u'miss', u'teen', u'prompt', u'inform', u'caravan'] [u'miss', u'teen', u'bodi', u'nation', u'park'] [u'mitsubishi', u'report', u'loss'] [u'mix', u'view', u'stadium', u'seat', u'cost'] [u'mongolia', u'elect', u'socialist', u'presid'] [u'moot', u'polit', u'donat', u'chang', u'guarante'] [u'moreton', u'ordeal', u'life', u'chang', u'say', u'tourist'] [u'morwel', u'shoot', u'accus', u'refus', u'bail'] [u'mother', u'want', u'jail', u'term', u'toddler', u'tortur'] [u'motorcyclist', u'lose', u'highway', u'crash'] [u'call', u'urgent', u'drought'] [u'cabinet', u'chair'] [u'help', u'hors', u'owner'] [u'coach', u'deal', u'saint', u'reject', u'millward'] [u'newcom', u'nadal', u'readi', u'french', u'test'] [u'sugar', u'help', u'fight', u'diseas'] [u'tourism', u'manag', u'want', u'past'] [u'wagga', u'club', u'moot'] [u'nurs', u'associ', u'back', u'rise', u'decis'] [u'nurs', u'rise', u'welcom', u'break', u'hill'] [u'opposit', u'question', u'budget', u'speed', u'camera', u'spend'] [u'parent', u'power', u'save', u'child', u'care', u'centr'] [u'parra', u'doubl', u'giro', u'savoldelli', u'lead'] [u'pastoralist', u'north', u'west', u'welcom', u'rain'] [u'pearl', u'produc', u'fail', u'secur', u'jellyfish', u'research'] [u'peopl', u'smuggl', u'trial', u'hear', u'shoot', u'threat'] [u'perri', u'cruis', u'coloni', u'lonard'] [u'pilot', u'offer', u'legal', u'protect', u'crash', u'probe'] [u'plane', u'compani', u'director', u'urg', u'pilot', u'outlin'] [u'plan', u'vortex', u'rais', u'roof'] [u'player', u'group', u'back', u'gold', u'coast'] [u'promis', u'financi', u'boost', u'farmer'] [u'meet', u'market', u'defenc', u'personnel'] [u'poetri', u'collect', u'honour', u'premier', u'award'] [u'polic', u'associ', u'point', u'finger', u'bendigo', u'loss'] [u'polic', u'extend', u'sick', u'leav', u'spotlight'] [u'polic', u'hunt', u'cycl', u'attack'] [u'polic', u'investig', u'central', u'murder'] [u'polic', u'probe', u'park', u'blaze'] [u'polic', u'puzzl', u'speed', u'youth'] [u'polic', u'search', u'miss', u'backpack'] [u'polic', u'search', u'miss', u'elder'] [u'polic', u'vote', u'deal'] [u'port', u'encourag', u'bomber'] [u'post', u'mortem', u'nightclub', u'fight', u'victim'] [u'public', u'ask', u'step', u'reconcili'] [u'hospit', u'probe', u'wont', u'target', u'oversea', u'train'] [u'seek', u'compens'] [u'real', u'wage', u'growth', u'continu', u'howard'] [u'red', u'undergo', u'independ', u'review'] [u'research', u'step', u'inter', u'speci'] [u'resid', u'tell', u'fund', u'highway'] [u'rokocoko', u'black', u'place', u'doubt'] [u'royal', u'commission', u'aim', u'deadlin'] [u'search', u'begin', u'accus', u'kidnapp'] [u'search', u'continu', u'miss', u'woman'] [u'sex', u'safin', u'plan', u'french', u'open', u'fightback'] [u'sharapova', u'eye', u'second', u'slam', u'spot'] [u'sheep', u'blood', u'provid', u'rattlesnak', u'anti', u'venom'] [u'shire', u'welcom', u'western', u'power', u'fund', u'boost'] [u'streeton', u'tip', u'dollar', u'foster', u'sell'] [u'streeton', u'work', u'fetch', u'auction'] [u'strong', u'dollar', u'undermin', u'aussi'] [u'stuart', u'excit', u'origin', u'coach', u'debut'] [u'studi', u'find', u'salt', u'dispos', u'basin', u'affect'] [u'support', u'coastal', u'farm', u'water', u'qualiti', u'audit'] [u'support', u'school', u'seatbelt', u'review'] [u'talk', u'byron', u'chook', u'stink'] [u'sign', u'water', u'deal'] [u'teenag', u'charg', u'tomahawk', u'threat'] [u'tribun', u'hand', u'night'] [u'govt', u'halv', u'home', u'buyer'] [u'underdon', u'chop', u'lead', u'mother', u'stab'] [u'campus', u'report', u'delay'] [u'consid', u'rise', u'hec', u'fee'] [u'iraqi', u'forc', u'launch', u'baghdad', u'crackdown'] [u'teen', u'second', u'youngest', u'lpga', u'winner'] [u'venezuela', u'warn', u'cuban', u'exil', u'case'] [u'vescont', u'stroll', u'stroke', u'victori'] [u'video', u'warn', u'young', u'driver', u'riski', u'behaviour'] [u'villawood', u'child', u'releas', u'detent'] [u'villawood', u'child', u'leav', u'detent'] [u'voluntari', u'student', u'union', u'cost', u'job'] [u'volunt', u'fish', u'contest', u'aliv'] [u'govt', u'consid', u'live', u'will'] [u'watchdog', u'downplay', u'airport', u'baggag', u'tamper'] [u'water', u'main', u'flood', u'assess'] [u'week', u'put', u'focus', u'palliat', u'care'] [u'woman', u'serious', u'injur', u'surf', u'mishap'] [u'woman', u'self', u'immol', u'blame', u'mental', u'health'] [u'work', u'chang', u'safeti', u'ramif'] [u'work', u'overcom', u'bark', u'highway', u'reput'] [u'guidelin', u'releas'] [u'dead', u'iraq', u'bomb', u'attack'] [u'accus', u'wife', u'killer', u'face', u'trial'] [u'bushfir', u'uncov', u'aborigin', u'heritag', u'site'] [u'announc', u'gold', u'coast', u'plan'] [u'offic', u'face', u'cocain', u'smuggl', u'probe'] [u'back', u'extens', u'asio', u'power'] [u'indecis', u'stanc'] [u'support', u'compens', u'effort'] [u'anim', u'store', u'blaze'] [u'anti', u'chrome', u'trial', u'get', u'extend', u'life'] [u'arson', u'suspect', u'gambier', u'timber', u'blaze'] [u'aussi', u'swing', u'action', u'pari', u'clay'] [u'aust', u'astronom', u'help', u'spot', u'planet'] [u'australia', u'bird', u'risk', u'relat', u'expert'] [u'australian', u'actor', u'take', u'flight', u'thriller'] [u'australian', u'get', u'groceri', u'cheap', u'studi'] [u'bakir', u'back', u'corbi', u'letter', u'indonesian', u'presid'] [u'bank', u'warn', u'drive', u'home', u'valuat'] [u'batti', u'cover', u'gile'] [u'bear', u'go', u'famili', u'backyard', u'pool'] [u'bear', u'take', u'backyard', u'pool'] [u'bermagui', u'club', u'hop', u'budget', u'lifelin'] [u'crowd', u'debat', u'ocean', u'pool', u'plan'] [u'birney', u'want', u'budget', u'promis'] [u'blackal', u'prepar', u'heartland', u'festiv'] [u'blaze', u'engulf', u'gambier', u'timber'] [u'boe', u'highlight', u'woe'] [u'brack', u'tour', u'wimmera', u'malle', u'drought', u'region'] [u'broad', u'ralli', u'push', u'ord', u'higher'] [u'break', u'hill', u'plan', u'pool'] [u'budget', u'see', u'return', u'invest', u'properti'] [u'budget', u'wont', u'includ', u'overpass', u'fund'] [u'bundaberg', u'council', u'adopt', u'flood', u'plan'] [u'bureaucrat', u'futur', u'unclear', u'despit', u'claim'] [u'burst', u'line', u'blame', u'contain', u'ship', u'blaze'] [u'bushfir', u'coron', u'reject', u'cover', u'claim'] [u'bushfir', u'fund', u'help', u'emot', u'recoveri'] [u'bush', u'reject', u'afghan', u'request', u'troop', u'control'] [u'byron', u'mayor', u'want', u'attack', u'warn', u'sign'] [u'communiti', u'bush', u'blueprint'] [u'drought', u'relief', u'shake'] [u'higher', u'classif', u'breast'] [u'water', u'plan', u'communiti', u'consult'] [u'bomb', u'kill', u'baghdad'] [u'carr', u'govt', u'pass', u'buck', u'drought', u'assist'] [u'carr', u'polit', u'histori'] [u'celtic', u'boss', u'oneil', u'quit', u'report'] [u'cessnock', u'author', u'claim', u'major', u'literari', u'prize'] [u'say', u'season', u'reason', u'complac'] [u'charl', u'camilla', u'gift', u'mail'] [u'child', u'releas', u'detent', u'centr', u'time'] [u'civilian', u'death', u'toll', u'iraq', u'unknown'] [u'coff', u'air', u'budget', u'wish', u'list'] [u'communiti', u'meet', u'push', u'high', u'rise'] [u'coron', u'recommend', u'passeng', u'limit', u'plate'] [u'costello', u'welcom', u'oecd', u'growth', u'forecast'] [u'council', u'call', u'dubbo', u'drought'] [u'council', u'rush', u'knock', u'railway', u'station'] [u'council', u'reject', u'telstra', u'phone', u'tower', u'plan'] [u'council', u'consid', u'pavilion', u'plan'] [u'currajong', u'undetect', u'dengu', u'fever', u'case'] [u'cost', u'brigg', u'titl', u'fight'] [u'danih', u'add', u'voic', u'bounc', u'call'] [u'darwin', u'rememb', u'johnson', u'solo', u'flight'] [u'doctor', u'name', u'patient', u'death', u'inquest'] [u'downer', u'prais', u'bougainvill', u'peac', u'process'] [u'dozen', u'kill', u'iraq', u'bomb', u'blast'] [u'drought', u'put', u'pressur', u'cattl', u'compani'] [u'state', u'target', u'water', u'academ'] [u'dunley', u'guilti', u'spit'] [u'dunley', u'face', u'judiciari'] [u'rail', u'worker', u'tool', u'kit'] [u'emerg', u'author', u'stand', u'unit', u'fund'] [u'environ', u'group', u'want', u'tougher', u'land', u'clear'] [u'give', u'clear', u'extend', u'iron', u'mine'] [u'chief', u'look', u'council'] [u'feder', u'fight', u'flag', u'fli', u'freedom'] [u'feder', u'govt', u'port', u'plan', u'line', u'develop'] [u'fight', u'forc', u'earli', u'danc', u'music', u'award'] [u'firefight', u'contain', u'spot', u'fire', u'adelaid', u'hill'] [u'firefight', u'tackl', u'cairn', u'contain', u'ship', u'blaze'] [u'fisher', u'warn', u'abalon', u'season'] [u'dead', u'philippin', u'militari', u'plane', u'crash'] [u'fruiter', u'fight', u'life', u'abduct', u'ordeal'] [u'ganmain', u'urg', u'push', u'level', u'cross', u'boom', u'gate'] [u'kid', u'detent', u'beazley'] [u'girl', u'free', u'life', u'detent'] [u'girl', u'releas', u'sydney', u'villawood', u'detent'] [u'glazer', u'plan', u'unit', u'delist'] [u'goulburn', u'seek', u'state', u'fund', u'water', u'pipelin'] [u'govt', u'ask', u'brigalow', u'belt', u'explan'] [u'govt', u'deni', u'boy', u'club', u'telstra', u'appoint'] [u'govt', u'opposit', u'odd', u'patient', u'wait', u'list'] [u'govt', u'pressur', u'chang', u'approach'] [u'grower', u'aplenti', u'head', u'horticultur', u'gather'] [u'gunmen', u'hold', u'passeng', u'hostag', u'philippin'] [u'gunnedah', u'plan', u'ambiti', u'budget'] [u'hagan', u'warn', u'origin', u'wrestl', u'match'] [u'healthi', u'resid', u'urg', u'forego', u'shoot'] [u'heritag', u'grant', u'avail', u'histor', u'hotel'] [u'wilkinson', u'salvag', u'draw', u'lion'] [u'high', u'school', u'continu', u'super', u'school', u'consult'] [u'histor', u'flight', u'captur', u'attent'] [u'hotel', u'claim', u'oper', u'hour', u'decis', u'link'] [u'howard', u'offer', u'financi', u'solon'] [u'howard', u'stand', u'vanston', u'detent', u'polici'] [u'howard', u'urg', u'japan', u'reconsid', u'plan'] [u'human', u'skull', u'consid', u'suspici'] [u'hunter', u'polic', u'vote', u'offer'] [u'indigen', u'leader', u'boycott', u'reconcili', u'forum'] [u'indonesia', u'decid', u'bali', u'arrest', u'ruddock', u'say'] [u'indi', u'patrick', u'aim', u'femal', u'winner'] [u'inquiri', u'bundaberg', u'hospit', u'scandal', u'hear'] [u'intern', u'wont', u'stop', u'whale', u'hunt', u'howard'] [u'iran', u'review', u'candid'] [u'recruit', u'train', u'report', u'find'] [u'jackson', u'accus', u'mother', u'fraudster', u'court', u'tell'] [u'japan', u'urg', u'howard', u'read', u'whale'] [u'jetstar'] [u'judg', u'give', u'corbi', u'omin', u'warn'] [u'keelti', u'back', u'govt', u'letter', u'corbi', u'lawyer'] [u'kerouac', u'play', u'discov', u'warehous'] [u'kilkivan', u'unhappi', u'game', u'baton', u'relay', u'snub'] [u'kon', u'defend', u'campaign'] [u'labor', u'urg', u'govt', u'stop', u'japan', u'whale', u'plan'] [u'lappin', u'hop', u'career', u'brisban'] [u'leav', u'land', u'digniti', u'farmer', u'urg'] [u'lebanon', u'free', u'syrian', u'militari', u'say'] [u'lewi', u'name', u'teacher', u'centr', u'claim'] [u'liber', u'backbench', u'unveil', u'detaine', u'releas'] [u'liber', u'make', u'releas', u'detaine'] [u'lithgow', u'deleg', u'discuss', u'power', u'station'] [u'liverpool', u'underdog', u'upstag', u'milan'] [u'llewellyn', u'tout', u'hobart', u'hospit', u'upgrad'] [u'lockyer', u'suffer', u'injuri', u'scare'] [u'mayor', u'play', u'sale', u'council', u'busi'] [u'mayor', u'pour', u'cold', u'water', u'pipelin', u'plan'] [u'mayor', u'say', u'council', u'cours', u'higher', u'rat'] [u'mayor', u'beat', u'swan', u'hill', u'race', u'complex', u'plan'] [u'meatwork', u'compost', u'plan', u'rais', u'concern'] [u'media', u'pressur', u'didnt', u'dictat', u'leong', u'releas'] [u'melbourn', u'team', u'win', u'chelsea', u'flower', u'gold', u'medal'] [u'metcash', u'boss', u'confid', u'foodland', u'takeov'] [u'minist', u'guarante', u'rail', u'line', u'futur'] [u'minist', u'apologis', u'school', u'controversi'] [u'minist', u'urg', u'council', u'speak'] [u'moor', u'reject', u'booz', u'claim'] [u'mother', u'make', u'plea', u'catch', u'son', u'killer'] [u'mother', u'burn', u'victim', u'hit', u'servic'] [u'myskina', u'make', u'unwant', u'histori'] [u'nasa', u'closer', u'look', u'discoveri'] [u'nasdaq', u'post', u'win', u'week'] [u'nelson', u'defend', u'school', u'flag', u'rais', u'polici'] [u'campaign', u'put', u'focus', u'reconcili'] [u'case', u'reveal', u'bundaberg', u'hospit', u'inquiri'] [u'date', u'elect', u'alic', u'alderman', u'quit'] [u'evid', u'north', u'korea', u'plan', u'nuclear', u'test'] [u'close', u'suspens', u'loophol'] [u'opposit', u'shame', u'juvenil', u'offend'] [u'origin', u'team', u'face', u'final', u'session'] [u'pair', u'face', u'sentenc', u'bomb', u'dish'] [u'parliamentari', u'leak', u'cost'] [u'power', u'piggeri'] [u'pilbara', u'children', u'benefit', u'sport', u'mentor'] [u'pitcairn', u'lose', u'appeal', u'sentenc'] [u'accus', u'hide', u'kirribilli', u'parti'] [u'polic', u'kimberley', u'gambl'] [u'polic', u'mini', u'motorbik'] [u'polic', u'command', u'deni', u'region', u'understaf'] [u'polic', u'fear', u'grim', u'outcom', u'miss', u'teenag', u'case'] [u'polic', u'hunt', u'holiday', u'home', u'thiev'] [u'polic', u'keen', u'palm', u'post'] [u'polic', u'prais', u'trucki', u'road', u'blitz'] [u'polic', u'seek', u'video', u'music', u'award', u'alterc'] [u'polic', u'shopfront', u'get', u'plan', u'green', u'light'] [u'polic', u'stand', u'fingerprint', u'shake'] [u'polic', u'suspect', u'sole', u'offend', u'child', u'assault'] [u'poor', u'diet', u'put', u'tiwi', u'babi', u'risk'] [u'port', u'optimist', u'subiaco'] [u'port', u'optimist', u'subiaco'] [u'prais', u'afford', u'hous', u'plan'] [u'pressur', u'grow', u'review', u'famili', u'violenc', u'law'] [u'program', u'help', u'busi', u'pulp', u'benefit'] [u'project', u'record', u'lawrenc', u'hargrav', u'drive', u'histori'] [u'psychiatrist', u'criticis', u'piecem', u'releas'] [u'urg', u'help', u'produc', u'meet', u'nlis', u'cost'] [u'qualifi', u'chang', u'help', u'ferrari', u'say', u'todt'] [u'rain', u'offer', u'mix', u'benefit', u'victorian', u'farmer'] [u'raus', u'ill', u'obvious', u'say', u'sister'] [u'cross', u'issu', u'urgent', u'blood'] [u'redfern', u'communiti', u'farewel', u'activist', u'priest'] [u'refshaug', u'defend', u'vendor', u'retent'] [u'repeat', u'paedophil', u'jail', u'year'] [u'report', u'highlight', u'hide', u'ballarat', u'poverti'] [u'restaur', u'cash', u'eleph', u'rampag'] [u'revel', u'urg', u'wari', u'drink', u'spike'] [u'ruddock', u'say', u'corbi', u'sentenc', u'stick'] [u'rugbi', u'leagu', u'ref', u'code', u'conduct'] [u'sailor', u'tip', u'head', u'south'] [u'scott', u'sixth', u'vijay', u'displac', u'tiger'] [u'drug', u'help', u'distanc'] [u'sick', u'leav', u'figur', u'dont', u'surpris', u'polic', u'associ'] [u'snowtown', u'serial', u'killer', u'lose', u'appeal'] [u'solon', u'lawyer', u'govt', u'want'] [u'souness', u'disreput', u'charg'] [u'south', u'durra', u'murder', u'case', u'adjourn'] [u'state', u'ward', u'welcom', u'interim', u'abus', u'report'] [u'student', u'cricket', u'skill', u'boost'] [u'studi', u'find', u'safe', u'continu'] [u'survey', u'show', u'export', u'confid'] [u'sylvia', u'award', u'rise', u'star', u'nomin'] [u'tate', u'name', u'bronco', u'bench'] [u'tecton', u'plate', u'tokyo'] [u'travel', u'magazin', u'blast', u'tassi', u'town'] [u'treasuri', u'assess', u'drought', u'relief', u'option'] [u'tszyu', u'warn', u'complac'] [u'tumut', u'lose', u'carter', u'holt', u'harvey', u'job'] [u'ugandan', u'children', u'sleep', u'rough', u'avoid', u'rebel', u'armi'] [u'teach', u'staff', u'meet', u'law'] [u'plan', u'radar', u'sale', u'aust'] [u'farmer', u'celebr', u'rain', u'month'] [u'victoria', u'end', u'cattl', u'graze', u'alpin', u'nation'] [u'vogel', u'seventh', u'petacchi', u'strike'] [u'wagga', u'like', u'wait', u'indigen', u'scheme'] [u'govt', u'investig', u'sheep', u'export', u'mistreat'] [u'wakelin', u'brother', u'break', u'twin', u'record'] [u'wallac', u'deni', u'swipe', u'frawley'] [u'polic', u'give', u'power', u'loiter'] [u'word', u'erupt', u'tasmania', u'financ'] [u'welfar', u'focus', u'live', u'export', u'meet'] [u'western', u'budget', u'prioriti'] [u'whale', u'leav', u'eden', u'water'] [u'wheat', u'price', u'ralli'] [u'woolworth', u'share', u'trade', u'halt'] [u'world', u'champ', u'axeman', u'get', u'state', u'select', u'chop'] [u'yorkshir', u'brewer', u'releas', u'dicki', u'bird', u'beer'] [u'yudhoyono', u'eye', u'renew', u'militari', u'tie'] [u'wallabi', u'poison', u'anger', u'anim', u'protector'] [u'babi', u'bear', u'asylum', u'seeker', u'forc'] [u'afghan', u'author', u'opium', u'heroin', u'raid'] [u'player', u'chase', u'rise'] [u'unsway', u'question', u'murder', u'petit'] [u'hostag', u'free', u'philippin', u'hijack'] [u'alston', u'board', u'member', u'govt', u'fund', u'foundat'] [u'amnesti', u'slam', u'govern', u'anti', u'terror', u'tactic'] [u'asic', u'hand', u'businessman', u'year'] [u'asylum', u'seeker', u'ask', u'fund', u'siev', u'court'] [u'australia', u'join', u'oper', u'spam', u'zombi'] [u'babi', u'bear', u'detent'] [u'bangladesh', u'test', u'england', u'ruthless', u'streak'] [u'barbarian', u'sweep', u'asid', u'scot'] [u'baro', u'verg', u'liverpool', u'exit'] [u'beazley', u'promis', u'incom', u'earner'] [u'billiton', u'charg', u'blast', u'death'] [u'biolog', u'weapon', u'employ', u'weed', u'fight'] [u'break', u'slow', u'pair', u'leav', u'vandalis'] [u'budget', u'deliv', u'pacif', u'highway', u'fund'] [u'budget', u'get', u'mix', u'respons', u'north', u'west'] [u'budget', u'spark', u'mix', u'reaction', u'north', u'coast'] [u'budget', u'fund', u'remov', u'asbesto', u'roof', u'school'] [u'budget', u'polic', u'clout'] [u'budget', u'recognis', u'drought', u'farmer'] [u'hunter', u'strategi', u'address', u'current', u'social'] [u'region', u'benefit', u'aquif', u'water'] [u'canadian', u'father', u'want', u'detail', u'daughter', u'death'] [u'canberra', u'write', u'japanes', u'sister', u'citi', u'condemn'] [u'bomb', u'spanish', u'capit', u'injur'] [u'carr', u'longest', u'serv', u'premier'] [u'carrol', u'stay', u'trafford'] [u'central', u'victorian', u'poverti', u'feder', u'govt'] [u'chamber', u'initi', u'focus', u'water', u'suppli'] [u'chicken', u'farm', u'protest', u'chain', u'cage'] [u'chinatown', u'develop', u'give', u'construct', u'deadlin'] [u'civic', u'centr', u'favour', u'option', u'art', u'facil'] [u'reject', u'land', u'right', u'paper', u'flaw'] [u'cleric', u'offer', u'wood', u'place', u'iraq'] [u'clps', u'tshirt', u'plan', u'label', u'crackpot', u'idea'] [u'colleagu', u'gari', u'riley', u'reflect', u'graham', u'kennedi'] [u'commiss', u'wit', u'back', u'brother', u'evid'] [u'copeland', u'sign', u'bullet'] [u'coron', u'back', u'famili', u'frustrat', u'hospit'] [u'council', u'consid', u'bird', u'nest', u'concern'] [u'council', u'manag', u'plan'] [u'council', u'warn', u'close', u'tie', u'develop'] [u'council', u'urg', u'listen', u'ratepay'] [u'council', u'welcom', u'cannabi', u'treatment', u'clinic', u'fund'] [u'coupl', u'admit', u'barbaro', u'kidnap'] [u'critic', u'propos', u'electron', u'timet'] [u'detent', u'probe', u'hand', u'case'] [u'doctor', u'centr', u'inquiri', u'send', u'letter', u'thank'] [u'doctor', u'urg', u'work', u'detent'] [u'drought', u'pressur', u'grain', u'grower'] [u'time', u'water', u'carrier', u'busi'] [u'dubbo', u'council', u'indigen', u'liaison', u'offic'] [u'dump', u'link', u'miss', u'schoolboy', u'polic'] [u'eagl', u'appeal', u'dunley', u'suspens'] [u'elbow', u'surgeri', u'sidelin', u'tendulkar'] [u'emerald', u'make', u'water', u'expans', u'plan'] [u'emerg', u'call', u'polic', u'go', u'unansw'] [u'england', u'erinl', u'barbarian', u'clash'] [u'entertain', u'tribut', u'kennedi'] [u'etoo', u'fin', u'real', u'insult'] [u'extra', u'hospit', u'bed', u'greater', u'southern', u'health'] [u'worker', u'await', u'compens'] [u'farley', u'quit'] [u'farmer', u'tell', u'think', u'product', u'method'] [u'north', u'bush', u'burn', u'emphasis', u'safeti'] [u'fear', u'budget', u'discourag', u'properti', u'buyer'] [u'fear', u'drought', u'delay', u'stress', u'farmer'] [u'note', u'prompt', u'stock', u'slight', u'fall'] [u'financ', u'staff', u'lose', u'massag'] [u'victim', u'water', u'bill', u'waiv'] [u'staffer', u'bail', u'briberi', u'corrupt'] [u'brogden', u'staffer', u'plead', u'guilti', u'carr', u'threat'] [u'forum', u'consid', u'fraser', u'coast', u'hospit', u'servic'] [u'friend', u'toni', u'sattler', u'speak', u'hour'] [u'recognit', u'possibl', u'soon'] [u'galleri', u'director', u'criticis', u'upgrad', u'delay'] [u'gallop', u'anger', u'govt', u'flag', u'rais', u'ceremoni'] [u'georgeson', u'domin', u'english', u'surf'] [u'gladston', u'hop', u'resurg'] [u'govt', u'confid', u'race', u'meet', u'compromis'] [u'govt', u'confus', u'detent', u'babi'] [u'govt', u'dept', u'call', u'licenc', u'cancel'] [u'govt', u'move', u'improv', u'palliat', u'care', u'resourc'] [u'govt', u'negoti', u'deal'] [u'govt', u'delay', u'school', u'fee', u'decis'] [u'grandstand', u'speak', u'matt', u'bowen', u'darren', u'lockyer'] [u'greek', u'mourn', u'communist', u'leader'] [u'control', u'report', u'trigger', u'tougher', u'law'] [u'gunmen', u'free', u'seven', u'hostag', u'philippin', u'report'] [u'gunmen', u'hold', u'hostag', u'philippin'] [u'guterr', u'head', u'refuge', u'agenc'] [u'hart', u'call', u'form', u'beat', u'blue'] [u'histor', u'woollen', u'mill', u'sell'] [u'hope', u'side', u'wallac'] [u'horan', u'rais', u'doctor', u'supervis', u'fear'] [u'hossain', u'teenag', u'rampag', u'england'] [u'howard', u'want', u'nation', u'approach', u'apprenticeship'] [u'hunter', u'share', u'budget', u'fund'] [u'iemma', u'accus', u'mislead', u'parliament', u'child'] [u'illawarra', u'share', u'budget', u'fund'] [u'illeg', u'fruit', u'picker', u'manjimup'] [u'immigr', u'minist', u'amanda', u'vanston', u'announc'] [u'immigr', u'rule', u'detent', u'newborn'] [u'quit', u'say', u'defiant', u'agassi'] [u'increas', u'secur', u'electr', u'tower'] [u'indonesia', u'play', u'corbi', u'prison', u'deal'] [u'irrig', u'face', u'murray', u'water', u'alloc'] [u'gatto', u'tell', u'court'] [u'japanes', u'sister', u'citi', u'ask', u'fight'] [u'judg', u'ask', u'dept', u'leav', u'teenag', u'father'] [u'jong', u'stand', u'tall', u'platform', u'shoe'] [u'kununurra', u'undergo', u'mossi', u'spray'] [u'legendari', u'australian', u'pioneer', u'graham', u'kennedi'] [u'leong', u'threaten', u'immigr', u'offici', u'lawyer'] [u'lion', u'simpson', u'sight'] [u'liverpool', u'hungri', u'devour', u'rafa'] [u'local', u'firm', u'feel', u'cost', u'workplac', u'accid'] [u'mandatori', u'detent', u'bill', u'expos', u'divis'] [u'plead', u'guilti', u'kidnap', u'girlfriend'] [u'face', u'court', u'accus', u'video', u'shop', u'arm'] [u'women', u'unawar', u'domest', u'violenc', u'help'] [u'maroon', u'deni', u'lockyer', u'injuri', u'rumour'] [u'maroon', u'lead', u'lang', u'park'] [u'maroon', u'snatch', u'golden', u'victori'] [u'melbourn', u'compani', u'sign', u'contract'] [u'mildura', u'revamp', u'tourism', u'imag'] [u'minchin', u'wont', u'reveal', u'welfar', u'work', u'cost'] [u'minist', u'reject', u'farm', u'group', u'budget', u'attack'] [u'mooney', u'hint', u'water', u'treatment', u'plan', u'partnership'] [u'lib', u'throw', u'support', u'georgiou'] [u'concern', u'lack', u'fund', u'hospit'] [u'plan', u'weed', u'tiwi', u'petrol', u'sniffer'] [u'seek', u'water', u'suppli', u'boost', u'port', u'kenni'] [u'talk', u'budget', u'benefit'] [u'balanc', u'power', u'best', u'south', u'west'] [u'nato', u'back', u'african', u'mission'] [u'navi', u'imag', u'posit', u'despit', u'children', u'overboard'] [u'nazi', u'case', u'open', u'door', u'elgin', u'marbl', u'return'] [u'newborn', u'stay', u'detent'] [u'bushfir', u'inquiri', u'repeat'] [u'newcastl', u'beach', u'legal', u'graffiti', u'wall'] [u'fee', u'displeas', u'south', u'coast', u'fisher'] [u'look', u'eaglehawk', u'shop', u'centr'] [u'polic', u'head', u'west'] [u'school', u'help', u'improv', u'remot', u'aborigin', u'health'] [u'budget', u'meet', u'mix', u'respons', u'southern'] [u'policewoman', u'claim', u'persecut'] [u'indigen', u'target', u'give', u'fals', u'hope'] [u'deal', u'flag', u'corbi'] [u'origin', u'decid', u'playmak', u'stuart'] [u'pagan', u'rule', u'player', u'curfew'] [u'page', u'quiz', u'flynn', u'appoint'] [u'panel', u'hear', u'view', u'retail', u'expans'] [u'patel', u'patient', u'didnt', u'follow', u'inquiri', u'hear'] [u'petrol', u'blaze', u'put', u'hospit'] [u'pine', u'worker', u'opportun'] [u'plan', u'continu', u'music', u'conservatorium'] [u'plan', u'reject', u'extend', u'detent', u'centr'] [u'playwright', u'david', u'williamson', u'honour', u'entertain'] [u'seek', u'review', u'aust', u'program'] [u'polic', u'arrest', u'accus', u'bite', u'offic'] [u'polic', u'defend', u'power'] [u'polic', u'hunt', u'north', u'shore', u'home', u'invad'] [u'polic', u'power', u'help', u'clean', u'street'] [u'polic', u'offic', u'claim', u'persecut', u'forc'] [u'polic', u'church', u'blaze', u'link'] [u'polic', u'test', u'daniel', u'morcomb', u'probe'] [u'polic', u'crackdown', u'hoon'] [u'polic', u'wont', u'rule', u'disgruntl', u'worker'] [u'poor', u'move', u'malle', u'boost', u'poverti', u'figur'] [u'power', u'sign', u'young', u'gun'] [u'profit', u'jump'] [u'psychiatrist', u'consid', u'detent', u'centr', u'work', u'ban'] [u'public', u'resign', u'telstra', u'sale', u'anderson'] [u'public', u'urg', u'watch', u'budget', u'health', u'cut'] [u'deputi', u'premier', u'back', u'gold', u'coast'] [u'rare', u'parasit', u'embryo', u'chines', u'babi'] [u'report', u'miss'] [u'record', u'year', u'roma', u'saleyard'] [u'report', u'seek', u'crisi', u'team', u'deal', u'mental'] [u'research', u'open', u'breast', u'cancer', u'research', u'bank'] [u'resourc', u'bank', u'drag'] [u'road', u'access', u'issu', u'spark', u'council', u'debat'] [u'robinson', u'miss', u'lion', u'match'] [u'santo', u'agre', u'fenc', u'indigen', u'burial', u'grind'] [u'sarina', u'meet', u'put', u'focus', u'foreign', u'train'] [u'savoldelli', u'cours', u'second', u'giro', u'titl'] [u'search', u'continu', u'miss', u'coast', u'woman'] [u'case', u'teacher', u'action', u'govt'] [u'shadow', u'support', u'legisl', u'protect', u'public'] [u'sheriff', u'offic', u'urg', u'chang', u'approach'] [u'skill', u'worker', u'vacanc', u'climb'] [u'slow', u'build', u'sector', u'affect', u'job'] [u'slow', u'growth', u'tip', u'eas', u'rat', u'pressur'] [u'small', u'busi', u'infrastructur', u'fund'] [u'solon', u'psychiatr', u'clinic', u'deport'] [u'south', u'african', u'rugbi', u'fresh', u'crisi'] [u'southern', u'look', u'record'] [u'special', u'olympian', u'head', u'singapor', u'nation', u'game'] [u'stamp', u'duti', u'insur', u'increas'] [u'stanhop', u'wont', u'debat', u'bushfir', u'inquest', u'issu'] [u'statement', u'claim', u'zarqawi', u'injur'] [u'state', u'origin', u'audio', u'highlight'] [u'steal', u'generat', u'speaker', u'die', u'ahead', u'address'] [u'steal', u'generat', u'wait', u'apolog'] [u'survey', u'find', u'armi', u'follow', u'defenc', u'prioriti'] [u'suspect', u'canker', u'properti'] [u'sylvia', u'award', u'rise', u'star', u'nomin'] [u'defenc', u'dept', u'abl'] [u'thoma', u'back', u'captain', u'riewoldt'] [u'thousand', u'strand', u'moscow', u'power'] [u'tortur', u'australian', u'face', u'kuwait', u'court'] [u'tribut', u'pour', u'legend', u'kennedi'] [u'tsos', u'futur', u'secur', u'fund', u'boost'] [u'tweed', u'council', u'sack', u'develop', u'link'] [u'arrest', u'zarqawi', u'aid'] [u'lawmak', u'step', u'dope'] [u'lead', u'global', u'attack', u'human', u'right', u'amnesti'] [u'stem', u'cell', u'pass', u'stage'] [u'prison', u'record', u'surg', u'ban', u'item'] [u'villian', u'termit', u'cast', u'role'] [u'walpol', u'polic', u'servic', u'boost'] [u'wembley', u'bridg', u'honour', u'go', u'polic', u'hors', u'billi'] [u'whitsunday', u'council', u'job'] [u'william', u'stand', u'trial', u'moran', u'murder'] [u'woman', u'tell', u'court', u'fake', u'teach', u'qualif'] [u'women', u'brunt', u'human', u'right', u'abus', u'amnesti'] [u'woodchop', u'champ', u'offer', u'team', u'help'] [u'woolworth', u'metcash', u'announc', u'foodland', u'deal'] [u'work', u'hospit', u'begin', u'year'] [u'lose', u'farley', u'hope', u'regain', u'maher'] [u'abba', u'seek', u'commit', u'statehood'] [u'account', u'jail', u'fraud'] [u'govt', u'announc', u'health', u'scholarship'] [u'alonso', u'readi', u'germani'] [u'question', u'govt', u'nurs', u'doctor', u'work'] [u'ambul', u'delay'] [u'amnesti', u'call', u'pressur'] [u'amnesti', u'intern', u'strong', u'criticis'] [u'anderson', u'welcom', u'aviat', u'secur', u'inquiri'] [u'aquat', u'centr', u'undergo', u'review'] [u'aussi', u'face', u'tough', u'second', u'round', u'french', u'open'] [u'australia', u'await', u'corbi', u'verdict'] [u'aust', u'tighten', u'embassi', u'secur', u'indonesia'] [u'aviat', u'secur', u'probe', u'reopen'] [u'dead', u'liverpool', u'champion', u'crown'] [u'bemax', u'bring', u'earthmov', u'contractor'] [u'bird', u'strike', u'scare', u'disrupt', u'townsvill', u'flight'] [u'board', u'beat', u'address', u'rabbit', u'woe'] [u'booki', u'hard', u'liverpool', u'great', u'escap'] [u'borroloola', u'council', u'declar', u'unregist'] [u'die', u'warren', u'hous', u'blaze'] [u'walk', u'freak', u'accid'] [u'brogden', u'unconvinc', u'budget', u'promis', u'stack'] [u'break', u'hill', u'cash', u'strap', u'lifelin'] [u'budget', u'allow', u'batlow', u'plan'] [u'bushfir', u'coron', u'lawyer', u'sum', u'argument'] [u'canberra', u'base', u'diplomat', u'shirk', u'fin'] [u'capit', u'expenditur', u'fall'] [u'yard', u'urg', u'sniffabl', u'fuel'] [u'cathol', u'educ', u'examin', u'fake', u'teacher'] [u'cattl', u'compani', u'optimist', u'despit', u'drought'] [u'celebr', u'angler', u'author', u'die'] [u'celtic', u'boss', u'oneil', u'resign', u'strachan', u'take'] [u'centrelink', u'tighten', u'leav', u'condit', u'worker'] [u'chamber', u'highlight', u'industri', u'foreign'] [u'chamber', u'unhappi', u'budget', u'busi', u'focus'] [u'china', u'develop', u'bird', u'vaccin'] [u'china', u'plan', u'carri', u'olymp', u'flame', u'everest'] [u'promis', u'tough', u'petrol', u'sniff'] [u'colombian', u'watchdog', u'question', u'legal'] [u'communiti', u'fire', u'marina', u'plan'] [u'confus', u'zarqawi', u'deputi', u'claim'] [u'conservatorium', u'overjoy', u'donat'] [u'council', u'sell', u'rais', u'concern'] [u'council', u'land', u'sale', u'sustain'] [u'council', u'wait', u'servic', u'review'] [u'court', u'find', u'thai', u'anti', u'corrupt', u'commiss', u'corrupt'] [u'court', u'reserv', u'decis', u'commission'] [u'cowboy', u'count', u'cost', u'origin', u'batter'] [u'cowboy', u'injuri', u'clear'] [u'cowboy', u'dark', u'rauhihi', u'england'] [u'critic', u'prompt', u'student', u'accommod', u'complex'] [u'dead', u'clash', u'preced', u'aceh', u'peac', u'talk'] [u'detain', u'mother', u'daugher', u'free', u'leav', u'countri', u'dept'] [u'dfat', u'seek', u'string', u'releas', u'hostag'] [u'disabl', u'group', u'investig', u'detail', u'abus'] [u'doubt', u'cast', u'bridgetown', u'bypass', u'plan'] [u'drug', u'hit', u'shepparton', u'street'] [u'dubbo', u'pair', u'face', u'court', u'drug', u'raid'] [u'electrician', u'charg', u'omagh', u'bomb', u'murder'] [u'englishman', u'accus', u'broom', u'assault', u'face'] [u'offic', u'drop', u'appeal', u'girl', u'assault'] [u'expert', u'back', u'communiti', u'base', u'sentenc', u'despit'] [u'memo', u'detail', u'guantanamo', u'koran', u'abus', u'claim'] [u'fern', u'develop', u'govt'] [u'sunshin', u'coast'] [u'stage', u'road', u'open'] [u'flag', u'rais', u'start', u'heal', u'ballarat'] [u'plan', u'marandoo'] [u'foley', u'debut', u'richmond'] [u'detect', u'acquit', u'steal', u'drug'] [u'policeman', u'warn', u'gatto', u'hire', u'hitman'] [u'union', u'boss', u'finish', u'prison', u'sentenc'] [u'aussi', u'open', u'qualifi'] [u'friend', u'deni', u'kennedi', u'die', u'aid'] [u'gerrard', u'pledg', u'futur', u'liverpool'] [u'gile', u'bell', u'recal', u'england'] [u'gold', u'coast', u'beat', u'loom', u'decis'] [u'golden', u'time', u'ahead', u'ballarat'] [u'govern', u'gag', u'immigr', u'debat'] [u'govt', u'block', u'motion', u'refer', u'speaker', u'ethic'] [u'govt', u'fail', u'dairi', u'farmer', u'bomaderri', u'plant'] [u'govt', u'abandon', u'drought', u'affect', u'farmer'] [u'govt', u'rule', u'move', u'great', u'barrier', u'reef', u'staff'] [u'govt', u'reshap', u'australian', u'workplac'] [u'govt', u'help', u'cattlemen', u'save', u'livelihood'] [u'govt', u'environment', u'friend'] [u'graincorp', u'blame', u'profit', u'fall', u'drought'] [u'green', u'lobbi', u'warn', u'govt', u'consid', u'popul'] [u'heal', u'australian'] [u'high', u'countri', u'cattlemen', u'ride', u'save', u'livelihood'] [u'howard', u'defend', u'decis', u'detaine', u'babi'] [u'howard', u'outlin', u'histor', u'chang'] [u'howard', u'unveil', u'workplac', u'reform', u'agenda'] [u'illawarra', u'record', u'fall', u'properti', u'sale'] [u'indian', u'bear', u'film', u'maker', u'ismail', u'merchant', u'die'] [u'industri', u'park', u'move', u'closer', u'realiti'] [u'inquiri', u'probe', u'manag', u'accus', u'surgeon'] [u'investig', u'launch', u'ferri', u'crash'] [u'inx', u'frontman', u'search', u'begin'] [u'iraq', u'launch', u'massiv', u'baghdad', u'raid'] [u'jone', u'compet', u'europ', u'despit', u'drug', u'concern'] [u'judg', u'brief', u'inappropri', u'say', u'court', u'registrar'] [u'juri', u'unabl', u'reach', u'verdict', u'slaveri', u'case'] [u'kangaroo', u'play', u'kiwi', u'sydney', u'test'] [u'kimberley', u'mark', u'indigen', u'heal'] [u'kimberley', u'water', u'plan', u'group', u'return', u'greec'] [u'kimmorley', u'rue', u'pass', u'cost', u'blue', u'dear'] [u'labor', u'question', u'palmer', u'comri', u'busi', u'link'] [u'labor', u'union', u'condemn', u'chang'] [u'landcar', u'search', u'environment', u'hero'] [u'landown', u'need', u'burn', u'permit'] [u'gasp', u'origin', u'maroon'] [u'lightfoot', u'dismiss', u'share', u'disclosur', u'claim'] [u'liverpool', u'erupt', u'astonish'] [u'charg', u'train', u'collid'] [u'charg', u'fatal', u'stab'] [u'die', u'maryval', u'accid'] [u'surviv', u'horror', u'crash'] [u'maradona', u'hail', u'comeback', u'king', u'liverpool'] [u'market', u'edg', u'higher', u'amid', u'takeov'] [u'meet', u'discuss', u'belyando', u'shire', u'roadwork'] [u'merv', u'interview', u'border', u'selector', u'vacanc'] [u'mexico', u'pressur', u'extradit', u'terrorist'] [u'west', u'shire', u'hope', u'local', u'budget', u'benefit'] [u'milk', u'supplier', u'price', u'boost'] [u'miner', u'consid', u'earli', u'bronzew', u'reopen'] [u'mine', u'urg', u'welcom', u'union', u'safeti', u'sake'] [u'mine', u'bodi', u'seek', u'apprenticeship', u'reform'] [u'minist', u'defend', u'citrus', u'canker', u'respons'] [u'minist', u'leav', u'open', u'possibl'] [u'minist', u'suggest', u'surveil', u'antarct'] [u'monaco', u'turn', u'point', u'william'] [u'moodi', u'take', u'world', u'lanka'] [u'central', u'support', u'wast', u'dump', u'fight'] [u'life', u'central', u'gold', u'mine'] [u'car', u'revers', u'visibl', u'nrma'] [u'bolster', u'greater', u'port', u'macquari', u'tourism'] [u'call', u'poki'] [u'talk', u'howard', u'detent', u'polici', u'bill'] [u'murder', u'probe', u'launch', u'footbal', u'club', u'park'] [u'neitz', u'clear', u'play'] [u'advisori', u'group', u'forest', u'industri'] [u'defenc', u'hous', u'develop', u'get', u'ahead'] [u'rule', u'exclud', u'union', u'andrew'] [u'player', u'boss', u'address', u'burn', u'concern'] [u'rescu', u'chopper', u'week'] [u'surviv', u'roll', u'near', u'laverton'] [u'marin', u'park', u'decis', u'creat', u'biodivers'] [u'penalti', u'councillor', u'breach', u'code', u'conduct'] [u'northern', u'vineyard', u'name', u'state', u'best'] [u'nrma', u'rat', u'princ', u'highway', u'worst'] [u'call', u'prison', u'exchang', u'treati'] [u'track', u'offend'] [u'aborigin', u'leader', u'discuss', u'atsic', u'demis'] [u'injur', u'sydney', u'ferri', u'collis'] [u'origin', u'hero', u'wait', u'injuri', u'news'] [u'ouyen', u'har', u'race', u'tradit', u'end'] [u'palmer', u'inquiri', u'cost', u'near', u'half', u'million'] [u'papuan', u'independ', u'activist', u'jail', u'treason'] [u'passiv', u'smoke', u'affect', u'success', u'rat', u'studi'] [u'penong', u'primari', u'abandon', u'coorabi', u'site', u'plan'] [u'pension', u'group', u'push', u'medicar', u'dental'] [u'plan', u'aim', u'protect', u'groundwat', u'resourc'] [u'plane', u'passeng', u'miss', u'congo'] [u'bring', u'sweep', u'chang'] [u'see', u'censur', u'motion', u'back', u'vanston'] [u'aust', u'begin', u'polic', u'talk'] [u'polic', u'call', u'investig', u'budget', u'leak'] [u'polic', u'fear', u'town', u'steal', u'tractor', u'chase'] [u'polic', u'mobil', u'latest', u'road', u'safeti', u'crackdown'] [u'polic', u'investig', u'fatal', u'longford', u'road', u'crash'] [u'policeman', u'guilti', u'rape'] [u'policeman', u'get', u'life', u'thailand', u'kill'] [u'polic', u'search', u'steal', u'sculptur'] [u'polic', u'support', u'continu', u'secur', u'scheme'] [u'press', u'clash', u'ahead', u'corbi', u'verdict'] [u'previt', u'appeal', u'murder', u'convict'] [u'privat', u'fund', u'help', u'driver', u'educ', u'centr'] [u'health', u'turf', u'bundaberg', u'hospit', u'inquiri'] [u'petrol', u'station', u'face', u'collus', u'charg'] [u'polic', u'limit', u'jurisdict', u'solon', u'case'] [u'question', u'rais', u'ralli', u'independ'] [u'raptor', u'take', u'bite', u'catch', u'snake'] [u'red', u'sign', u'moor'] [u'remot', u'teacher', u'scheme', u'prove', u'success'] [u'report', u'find', u'emerg', u'treatment', u'mental'] [u'report', u'highlight', u'ballarat', u'tafe', u'financi', u'woe'] [u'rockhampton', u'sieg'] [u'sack', u'councillor', u'tweed', u'council', u'administr'] [u'salvo', u'look', u'doorknock', u'volunt'] [u'miguel', u'take', u'control', u'nation', u'food'] [u'pension', u'score', u'budget', u'sweeten'] [u'teacher', u'consid', u'strike'] [u'seafood', u'industri', u'call', u'fisheri', u'dept', u'shake'] [u'serial', u'offend', u'soon', u'wear'] [u'shot', u'hear', u'rockhampton', u'sieg'] [u'small', u'medium', u'size', u'busi', u'pleas'] [u'south', u'african', u'rugbi', u'slip', u'deeper', u'mire'] [u'statist', u'juvenil', u'offend', u'risk'] [u'case', u'rise'] [u'sted', u'connect', u'cost', u'rise'] [u'steward', u'pursu', u'waterhous', u'hors', u'cocain', u'probe'] [u'steal', u'generat', u'rememb', u'canberra'] [u'studi', u'find', u'rural', u'innov', u'success'] [u'studi', u'find', u'tast', u'turn', u'koala', u'taller', u'tree'] [u'sydney', u'film', u'maker', u'win', u'project'] [u'govt', u'call', u'emerg', u'depart', u'tender'] [u'drain', u'world', u'sperm', u'bank'] [u'teacher', u'educ', u'inquiri', u'look', u'resourc'] [u'teen', u'plead', u'guilti', u'meat', u'cleaver', u'attack'] [u'thorp', u'certainti', u'play', u'say', u'coach'] [u'threat', u'prompt', u'close', u'indonesian', u'mission'] [u'tortur', u'advoc', u'continu', u'work', u'immigr'] [u'crew', u'mcgee', u'polic', u'inquiri'] [u'uefa', u'hold', u'firm', u'liverpool', u'shut'] [u'uncontact', u'tribe', u'spot', u'brazil'] [u'union', u'upset', u'workplac', u'chang'] [u'forc', u'kill', u'human', u'shield', u'child', u'iraq'] [u'halt', u'bodi', u'recoveri', u'north', u'korea'] [u'rubbish', u'amnesti', u'right', u'claim'] [u'team', u'trump', u'stem', u'cell', u'breakthrough'] [u'vanston', u'detaine', u'sorri', u'cake'] [u'veniamin', u'fearless', u'killer', u'gatto', u'tell', u'court'] [u'govt', u'call', u'hasten', u'drought'] [u'juror', u'complain', u'intimid'] [u'victoria', u'child', u'protect', u'inadequ'] [u'voyag', u'travel', u'solar'] [u'waratah', u'unchang'] [u'warn', u'follow', u'fatal', u'buffalo', u'attack'] [u'watchdog', u'consid', u'action', u'zurich', u'deal'] [u'treasur', u'hand', u'stun', u'budget'] [u'wheat', u'export', u'regul', u'probe', u'iraq'] [u'windsor', u'plan', u'second', u'region', u'gather'] [u'woodward', u'say', u'lion', u'readi'] [u'work', u'life', u'balanc', u'better', u'canberra', u'employe'] [u'youth', u'plan', u'wheatbelt', u'outdoor', u'cinema'] [u'heavi', u'rain', u'india'] [u'communiti', u'share', u'respons', u'plan'] [u'aaco', u'forecast', u'continu', u'strong', u'growth'] [u'radio', u'cross', u'live', u'schapell', u'corbi'] [u'abus', u'victim', u'turn', u'crimin', u'court', u'tell'] [u'adelaid', u'doctor', u'strike'] [u'american', u'send', u'pack', u'french', u'open'] [u'anderson', u'urg', u'sign', u'auslink', u'agreement'] [u'appeal', u'launch', u'pork', u'import', u'decis'] [u'appeal', u'shock', u'murder', u'backpack', u'famili'] [u'appeal', u'plan', u'corbi', u'judgement'] [u'arson', u'furnitur', u'store', u'blaze'] [u'asbesto', u'campaign', u'give', u'portabl', u'oxygen'] [u'ash', u'build', u'spark', u'tait', u'excit'] [u'auscoal', u'point', u'finger', u'fraud'] [u'austar', u'good', u'shape'] [u'australian', u'express', u'outrag', u'corbi', u'verdict'] [u'australian', u'support', u'corbi', u'curios', u'bali'] [u'bagot', u'centrelink', u'client', u'shop', u'option'] [u'barcaldin', u'council', u'consid', u'merger', u'plan'] [u'bendigo', u'council', u'wait', u'rate'] [u'bennett', u'brand', u'coast', u'distract'] [u'ahead', u'gold', u'coast', u'team', u'coach'] [u'black', u'order', u'return', u'busi', u'document'] [u'blast', u'rip', u'pakistan', u'shrine'] [u'brack', u'mull', u'legal', u'action', u'chang'] [u'brack', u'open', u'ararat', u'hospit'] [u'breast', u'plate', u'return', u'indigen', u'leader', u'famili'] [u'brown', u'season', u'end', u'demon', u'thump', u'tiger'] [u'budget', u'fund', u'flow', u'kalgoorli'] [u'budget', u'hold', u'kimberley', u'surpris'] [u'budget', u'includ', u'southern', u'infrastructur'] [u'bush', u'abba', u'hold', u'histor', u'meet'] [u'busi', u'usual', u'tweed', u'council'] [u'busi', u'chamber', u'back', u'govt', u'plan'] [u'busi', u'chamber', u'back', u'unfair', u'dismiss', u'law', u'plan'] [u'migrant', u'plan'] [u'celtic', u'look', u'salvag', u'season'] [u'chappel', u'go', u'vegan'] [u'chief', u'defend', u'manag', u'live', u'export'] [u'game', u'simul', u'internet', u'attack'] [u'citi', u'plan', u'consid', u'rockhampton', u'need'] [u'climat', u'chang', u'like', u'increas', u'famin'] [u'support', u'atsic', u'style', u'model', u'burk'] [u'command', u'stand', u'gulgong', u'polic'] [u'commission', u'clear', u'palm', u'briberi', u'probe'] [u'committe', u'investig', u'heat', u'hydro', u'pool'] [u'consum', u'affair', u'wont', u'real', u'estat', u'complaint'] [u'corbi', u'australian', u'support', u'distraught'] [u'corbi', u'sentenc', u'year', u'marijuana', u'smuggl'] [u'corbi', u'sentenc', u'year', u'jail'] [u'corbi', u'support', u'gather', u'gold', u'coast'] [u'corbi', u'team', u'look', u'avenu', u'appeal'] [u'corbi', u'timelin'] [u'coron', u'refus', u'plane', u'crash', u'inquest'] [u'council', u'time', u'consid', u'bridg', u'option'] [u'council', u'prepar', u'urban', u'sprawl'] [u'council', u'afford', u'asbesto', u'remov', u'cost'] [u'crash', u'plane', u'congo'] [u'potato', u'contract', u'shock', u'grower'] [u'delay', u'feder', u'sugar', u'fund'] [u'demon', u'goal', u'flow', u'dockland'] [u'deniliquin', u'polic', u'chief', u'post'] [u'detain', u'claim', u'immigr', u'trick', u'famili'] [u'disabl', u'rider', u'award', u'compens'] [u'doubt', u'cast', u'fish', u'licenc', u'fee'] [u'downer', u'offer', u'corbi', u'free', u'appeal'] [u'doyl', u'urg', u'drought', u'farmer', u'pressur', u'govt'] [u'drought', u'assist', u'slower', u'expect'] [u'drought', u'forc', u'continu', u'stock', u'sell'] [u'drought', u'reduc', u'grain', u'harvest', u'estim'] [u'drug', u'lab', u'discoveri', u'lead', u'arrest'] [u'drink', u'claim', u'charact', u'moor', u'say', u'farina'] [u'dunley', u'win', u'spit', u'appeal'] [u'easier', u'access', u'patch', u'help', u'smoker', u'quit'] [u'ecstasi', u'haul', u'mastermind', u'court'] [u'educ', u'minist', u'talk', u'north', u'west', u'budget'] [u'guilti', u'barker', u'brawl'] [u'elder', u'join', u'legal', u'battl', u'peta'] [u'fake', u'teacher', u'perform', u'communiti', u'servic'] [u'fall', u'river', u'level', u'creat', u'concern'] [u'farmer', u'blast', u'budget'] [u'ladi', u'sing', u'famili', u'music', u'busi'] [u'fear', u'famin', u'north', u'korea'] [u'ferguson', u'refut', u'improp', u'conduct', u'charg'] [u'firefight', u'tackl', u'second', u'warren', u'hous', u'blaze'] [u'shortag', u'declar'] [u'tablet', u'land', u'pharmacist', u'court'] [u'focus', u'general', u'prison', u'exchang', u'academ'] [u'footi', u'talent', u'converg'] [u'forb', u'lobbi', u'rail', u'line'] [u'forest', u'dept', u'reject', u'koala', u'habitat', u'claim'] [u'foster', u'cement', u'control', u'southcorp'] [u'foster', u'compulsorili', u'acquir', u'remain'] [u'french', u'open', u'favourit', u'fight', u'injuri'] [u'fund', u'oyster', u'industri', u'water', u'monitor'] [u'fund', u'stawel', u'hospit', u'revamp'] [u'fund', u'allow', u'portland', u'port', u'work', u'finish'] [u'geraldton', u'share', u'budget', u'fund'] [u'gold', u'coast', u'win', u'place'] [u'goulburn', u'abattoir', u'look', u'govt', u'water', u'solut'] [u'govt', u'say', u'reef', u'marin', u'park', u'zone', u'remain'] [u'govt', u'spend', u'share', u'respons'] [u'govt', u'urg', u'monkey', u'visitor', u'centr'] [u'grind', u'base', u'net', u'grant'] [u'health', u'author', u'await', u'budget'] [u'health', u'servic', u'apologis', u'hospit', u'worker', u'child'] [u'hede', u'confid', u'wrongdo', u'bank', u'hotel'] [u'herbert', u'injuri', u'woe', u'continu'] [u'high', u'court', u'reject', u'stay', u'taxman', u'charg'] [u'hoogi', u'miss', u'world', u'championship'] [u'howard', u'bypass', u'protest'] [u'howard', u'urg', u'australian', u'accept', u'corbi', u'verdict'] [u'human', u'societi', u'lose', u'japanes', u'whaler'] [u'immigr', u'deni', u'knowledg', u'bakhtiyari'] [u'indigen', u'polici', u'offici', u'suspend', u'leak'] [u'injur', u'thorn', u'miss', u'bronco', u'match'] [u'chang', u'water', u'basic', u'right'] [u'shake', u'caus', u'concern', u'central', u'victoria'] [u'shake', u'prompt', u'minimum', u'wage', u'fear'] [u'jam', u'injuri', u'woe', u'short', u'career', u'william'] [u'japanes', u'wwii', u'soldier', u'philippin'] [u'japan', u'surpris', u'wwii', u'soldier'] [u'jealous', u'say', u'owen'] [u'joli', u'deni', u'pitt', u'romanc'] [u'judg', u'begin', u'hand', u'corbi', u'verdict'] [u'judg', u'deliv', u'corbi', u'verdict'] [u'juri', u'bulli', u'claim', u'prompt', u'renew', u'royal'] [u'keat', u'say', u'wolf', u'wolf', u'cloth'] [u'koran', u'mishandl', u'guantanamo', u'command'] [u'labor', u'promis', u'fight'] [u'lappin', u'put', u'celebr', u'hold'] [u'lara', u'flay', u'majest', u'lift', u'west', u'indi'] [u'lewi', u'claim', u'possibl', u'paedophil', u'link', u'murder'] [u'liverpool', u'hero', u'parad', u'pressur', u'mount'] [u'local', u'govt', u'criticis', u'feder', u'govt', u'calder', u'decis'] [u'accus', u'break', u'hill', u'assault'] [u'avoid', u'jail', u'kidnap', u'girlfriend'] [u'charg', u'rockhampton', u'shoot', u'murder'] [u'market', u'end', u'week', u'high'] [u'mayor', u'call', u'water', u'stay', u'murray'] [u'mcdonald', u'deal', u'potato', u'grower'] [u'mine', u'compani', u'talk', u'kakadu', u'uranium'] [u'mix', u'respons', u'budget'] [u'secur', u'camera', u'brisban', u'anti'] [u'multiplex', u'reshuffl', u'board', u'amid', u'stadium', u'troubl'] [u'nation', u'region', u'road', u'fund', u'boost'] [u'netbal', u'doubl', u'header', u'highlight', u'interst', u'rivalri'] [u'chief', u'head', u'moruya', u'busi', u'chamber'] [u'nickel', u'open'] [u'say', u'chang', u'lead', u'job'] [u'news', u'mental', u'health', u'fund'] [u'verdict', u'slave', u'trial'] [u'teen', u'give', u'suspend', u'sentenc', u'bash'] [u'union', u'begin', u'action', u'chang'] [u'wait', u'hodg', u'decis'] [u'offic', u'admit', u'mcgee', u'wit', u'question', u'laps'] [u'offic', u'death', u'prompt', u'holster', u'review'] [u'offici', u'want', u'launceston', u'qualiti', u'improv'] [u'origin', u'hero', u'star', u'cowboy', u'blow', u'bulldog', u'away'] [u'overdos', u'victim', u'previous', u'inquest', u'tell'] [u'print', u'lover'] [u'pie', u'wont', u'prostitut', u'power', u'malthous'] [u'plan', u'rout', u'chang', u'worri', u'school', u'driver'] [u'dismiss', u'campaign', u'chang'] [u'polic', u'worri', u'young', u'assault', u'trend'] [u'pork', u'produc', u'celebr', u'oversea', u'restrict'] [u'public', u'urg', u'work', u'council'] [u'public', u'warn', u'centrelink', u'worker', u'imperson'] [u'push', u'retain', u'hospit', u'birth', u'servic'] [u'wait', u'list', u'figur', u'incomplet', u'springborg'] [u'rat', u'rise', u'cover', u'jetti', u'revamp', u'cost'] [u'reaction', u'corbi', u'indonesian', u'relat'] [u'record', u'hold', u'plan', u'leav'] [u'region', u'forum', u'consid', u'kangaroo', u'need'] [u'renew', u'duck', u'shoot'] [u'repair', u'forc', u'line', u'cancel'] [u'report', u'back', u'geraldton', u'greenough', u'merger'] [u'report', u'find', u'wait', u'time', u'want'] [u'report', u'highlight', u'high', u'indigen', u'death', u'rat'] [u'resid', u'group', u'back', u'graincorp', u'conveyor', u'belt'] [u'road', u'crash', u'rescu', u'team', u'compet', u'state', u'honour'] [u'review', u'highway', u'intersect', u'plan'] [u'rural', u'giant', u'highlight', u'drought', u'impact'] [u'safin', u'ferrero', u'clash', u'heat', u'round'] [u'salvo', u'look', u'help', u'hand'] [u'schapell', u'corbi', u'expect', u'jail', u'life'] [u'school', u'crash', u'driver', u'prior', u'drink', u'drive', u'record'] [u'search', u'alleg', u'abductor', u'widen'] [u'secker', u'reject', u'beazley', u'claim'] [u'secur', u'tight', u'corbi', u'verdict', u'near'] [u'seri', u'turn', u'nasti', u'final'] [u'shire', u'join', u'protest', u'japanes', u'whale'] [u'clive', u'talk', u'tough', u'arriv'] [u'sorenstam', u'storm', u'slow', u'start'] [u'south', u'west', u'share', u'budget', u'fund'] [u'spanish', u'club', u'math', u'test'] [u'state', u'reject', u'govt', u'chang'] [u'state', u'threaten', u'challeng'] [u'stingray', u'look', u'year'] [u'studi', u'offer', u'support', u'mildura', u'transport', u'plan'] [u'subiaco', u'oval', u'anzac', u'field'] [u'suspend', u'sentenc', u'kill', u'wife'] [u'sydney', u'newcastl', u'fast', u'rail', u'link', u'need', u'keat'] [u'tare', u'firm', u'win', u'water', u'polic', u'contract'] [u'technolog', u'boost', u'remot', u'communiti'] [u'teenag', u'battl', u'centr', u'stage', u'french', u'open'] [u'test', u'determin', u'buffalo', u'kill', u'arnhem', u'land'] [u'thousand', u'tip', u'turn', u'gold'] [u'thurston', u'keep', u'cowboy', u'touch'] [u'train', u'squad', u'select', u'prepar', u'match'] [u'trescothick', u'reach', u'centuri', u'bangladesh'] [u'truce', u'monitor', u'warn', u'tamil', u'tiger', u'asset'] [u'union', u'angri', u'govt', u'shake'] [u'union', u'rule', u'strike', u'chang'] [u'union', u'begin', u'protest', u'howard', u'reform'] [u'union', u'contempl', u'respons', u'plan'] [u'union', u'plan', u'protest', u'chang'] [u'add', u'uzbek', u'islam', u'group', u'terrorist', u'list'] [u'chopper', u'shoot', u'iraq'] [u'senat', u'delay', u'bolton', u'vote'] [u'rooyen', u'keep', u'rugbi', u'supremo', u'titl'] [u'govt', u'say', u'graze', u'stay'] [u'viduka', u'comeback', u'socceroo'] [u'violent', u'youth', u'order', u'shed', u'urban', u'crime', u'uniform'] [u'virgin', u'blue', u'consid', u'cancel', u'adelaid', u'alic'] [u'budget', u'relief', u'measur', u'disappoint', u'busi'] [u'wallabi', u'export', u'industri', u'plan', u'island'] [u'word', u'erupt', u'cobb', u'break', u'hill', u'comment'] [u'widow', u'lose', u'fight', u'husband', u'sperm'] [u'william', u'decid', u'return', u'bushrang'] [u'wollongong', u'council', u'add', u'voic', u'anti', u'whale'] [u'worker', u'job', u'despit', u'mechan', u'woe'] [u'world', u'bank', u'grant', u'million', u'vietnam', u'aid', u'plan'] [u'world', u'loom', u'larg', u'england', u'friend'] [u'flee', u'congo', u'violenc'] [u'million', u'chines', u'poverti', u'line', u'minist'] [u'ghraib', u'protest', u'interrupt', u'rice', u'speech'] [u'move', u'attract', u'indigen', u'health', u'worker'] [u'andrew', u'play', u'beatti', u'warn'] [u'anim', u'welfar', u'group', u'fight', u'wallabi', u'export', u'plan'] [u'arsenic', u'caus', u'health', u'concern'] [u'australia', u'check', u'viagra', u'blind', u'claim'] [u'australian', u'chariti', u'report', u'backlash'] [u'author', u'investig', u'report', u'blind'] [u'bangladesh', u'face', u'england', u'thrash'] [u'barrichello', u'play', u'ferrari', u'feud'] [u'basso', u'win', u'second', u'straight', u'stage'] [u'birney', u'seek', u'stay', u'feder', u'takeov'] [u'blair', u'say', u'help', u'africa'] [u'blast', u'rock', u'indonesian', u'market'] [u'bodi', u'show', u'video', u'like', u'japanes', u'hostag'] [u'defenc', u'prosecut', u'corbi', u'case'] [u'brown', u'urg', u'port', u'closur', u'prevent', u'whale'] [u'builder', u'group', u'welcom', u'plan', u'chang'] [u'bureau', u'warn', u'nino', u'risk'] [u'bomb', u'kill', u'seven', u'iraq'] [u'chappel', u'see', u'sehwag', u'futur', u'captain'] [u'chechen', u'rebel', u'claim', u'moscow', u'blackout'] [u'chechen', u'rebel', u'caus', u'moscow', u'power'] [u'chemist', u'warn', u'drug', u'sale', u'charg', u'lay'] [u'chile', u'hit', u'hike'] [u'china', u'bird', u'outbreak', u'wors', u'think'] [u'clps', u'indigen', u'polici', u'unbeliev', u'martin'] [u'commission', u'lament', u'fund', u'shortfal'] [u'confer', u'tell', u'refuge', u'challeng'] [u'corbi', u'lawyer', u'notifi', u'offer', u'say'] [u'corbi', u'lawyer', u'like', u'accept', u'help'] [u'corser', u'set', u'sight', u'silverston', u'doubl'] [u'crusad', u'gallant', u'waratah'] [u'death', u'prompt', u'warn', u'altern', u'cancer', u'drug'] [u'death', u'toll', u'indonesian', u'twin', u'bomb', u'blast', u'rise'] [u'depp', u'thompson', u'funer', u'wish', u'realiti'] [u'docker', u'bounc', u'stun', u'cat'] [u'doctor', u'recruit', u'indigen', u'worker'] [u'doctor', u'defi', u'disput'] [u'donor', u'pledg', u'darfur', u'forc'] [u'england', u'complet', u'bangladesh', u'humili'] [u'environ', u'centr', u'promis', u'kakadu', u'mine', u'fight'] [u'warn', u'bomb', u'franco', u'burial', u'place'] [u'european', u'gun', u'liverpool', u'champion'] [u'fan', u'help', u'seek', u'reflect'] [u'fatwa', u'demand', u'releas', u'italian', u'worker'] [u'gate', u'rubber', u'confirm', u'closur'] [u'gehrig', u'run', u'riot', u'match'] [u'govt', u'accus', u'ignor', u'hospit', u'death', u'report'] [u'govt', u'rule', u'waverley', u'mill'] [u'govt', u'say', u'surgeri', u'wait', u'time', u'satisfactori'] [u'green', u'acr', u'star', u'eddi', u'albert', u'die'] [u'health', u'offici', u'check', u'misdiagnosi', u'patel'] [u'heenan', u'sign', u'brumbi'] [u'heidfeld', u'pole', u'european', u'grand', u'prix'] [u'hospit', u'statist', u'bring', u'long', u'surgeri', u'wait'] [u'iaaf', u'challeng', u'exoner', u'greek', u'sprinter'] [u'impress', u'eel', u'shark'] [u'intern', u'publish', u'seek', u'australian'] [u'investig', u'continu', u'cancer', u'patient'] [u'iraq', u'bomb', u'blast', u'kill'] [u'isra', u'soldier', u'command', u'watch', u'soccer'] [u'japanes', u'hostag', u'iraq', u'believ', u'dead'] [u'jone', u'blast', u'europ', u'boycott'] [u'kookaburra', u'earn', u'draw', u'korea'] [u'kyneton', u'resid', u'oppos', u'bowl', u'club', u'extens'] [u'landcar', u'call', u'award', u'nomin'] [u'prevent', u'museum', u'return', u'steal'] [u'lead', u'publish', u'descend', u'sydney', u'unearth'] [u'leonard', u'take', u'command', u'memphi'] [u'liabil', u'issu', u'complic', u'jam', u'hardi', u'talk'] [u'lion', u'slump', u'home', u'loss'] [u'lownd', u'take', u'pole', u'eastern', u'creek'] [u'magpi', u'post', u'win'] [u'martin', u'hail', u'share', u'respons', u'deal'] [u'melbourn', u'hospit', u'open', u'child', u'lung', u'transplant'] [u'milit', u'group', u'say', u'hostag', u'kill', u'shoot'] [u'minist', u'promis', u'birth', u'centr', u'improv'] [u'muslim', u'protest', u'koran', u'abus'] [u'neighbour', u'understand', u'palerang', u'shire', u'rat', u'hike'] [u'afghan', u'asylum', u'seeker', u'refuge', u'visa'] [u'dirt', u'leav', u'detent', u'centr'] [u'princip', u'lament', u'lack', u'teacher'] [u'nuclear', u'treati', u'talk', u'result'] [u'ohern', u'drive', u'aussi', u'charg', u'england'] [u'opal', u'shoot', u'guru'] [u'potato', u'grower', u'govt', u'support'] [u'pie', u'target', u'hawthorn', u'midfield'] [u'pilbara', u'studi', u'reveal', u'ancient', u'deposit'] [u'polic', u'arrest', u'alleg', u'abduct'] [u'priest', u'lobbi', u'privaci', u'detain', u'women'] [u'prosecut', u'defenc', u'rest', u'jackson', u'trial'] [u'doubt', u'verdict', u'corbi', u'tri', u'aust'] [u'rabbitoh', u'wilt', u'bronco', u'onslaught'] [u'railcorp', u'explain', u'spend'] [u'rann', u'see', u'need', u'chang'] [u'rebel', u'self', u'govern', u'agenda', u'aceh', u'talk'] [u'red', u'forward', u'heenan', u'sign', u'brumbi'] [u'rooster', u'crow', u'defeat', u'raider'] [u'saudi', u'arabia', u'alert', u'king', u'ail'] [u'sharapova', u'lead', u'russian', u'charg', u'pari'] [u'share', u'respons', u'agreement', u'prompt', u'mix'] [u'sluggish', u'trade', u'leav', u'stock', u'littl', u'chang'] [u'small', u'busi', u'advoc', u'welcom', u'chang'] [u'sorenstam', u'share', u'corn', u'lead'] [u'stadium', u'readi', u'time', u'despit', u'multiplex', u'loss'] [u'stormi', u'debat', u'forc', u'weather', u'chang'] [u'surgeri', u'wait', u'time', u'unaccept', u'opposit'] [u'surrey', u'penalis', u'ball', u'tamper'] [u'swift', u'phoenix', u'prevail', u'doubl', u'header'] [u'tasmania', u'refus', u'support', u'shame', u'chang'] [u'terrorist', u'leader', u'zarqawi', u'good', u'health'] [u'thousand', u'greet', u'annan', u'darfur'] [u'charg', u'amphetamin', u'raid'] [u'unit', u'dump', u'carrol', u'ricardo'] [u'navi', u'commando', u'clear', u'iraq', u'beat'] [u'refus', u'extradit', u'bomb', u'suspect', u'posada'] [u'venus', u'humili', u'nadal', u'soar', u'pari'] [u'viagra', u'label', u'chang', u'consid', u'blind'] [u'investig', u'spate', u'heroin', u'death'] [u'liber', u'resist', u'chang'] [u'liber', u'resist', u'feder', u'govt', u'chang'] [u'waratah', u'talk', u'titl', u'chanc'] [u'webber', u'spin', u'practic'] [u'windi', u'drive', u'seat', u'pakistan'] [u'workload', u'explain', u'immigr', u'error', u'senat'] [u'aborigin', u'film', u'impact'] [u'accus', u'murder', u'bail', u'hang', u'juri'] [u'advisori', u'council', u'seek', u'member'] [u'stand', u'hospit', u'birth', u'centr', u'critic'] [u'support', u'releas', u'children', u'detent'] [u'anderson', u'birney', u'continu', u'discuss'] [u'andrew', u'fear', u'legal', u'challeng', u'plan'] [u'aunti', u'get', u'gold', u'cinematographi', u'effort'] [u'australian', u'dollar', u'tip', u'drop'] [u'bali', u'seek', u'financi', u'help'] [u'bayern', u'seal', u'german', u'doubl'] [u'beazley', u'urg', u'donor', u'penalis', u'tsunami'] [u'birney', u'hit', u'drink', u'drive', u'test', u'beat'] [u'bomber', u'defeat', u'spirit', u'bulldog'] [u'brack', u'say', u'chang', u'ignor', u'real', u'problem'] [u'brent', u'kite', u'michael', u'monaghan', u'kennedi', u'john', u'lang'] [u'brian', u'smith'] [u'british', u'soldier', u'kill', u'iraq', u'attack'] [u'bulldog', u'rohan', u'rack', u'game'] [u'cameron', u'smith', u'craig', u'bellami', u'nathan', u'brown'] [u'campbel', u'take', u'whale', u'fight', u'europ', u'pacif'] [u'cancer', u'doctor', u'reput', u'polic'] [u'celtic', u'captur', u'scottish'] [u'chanderpaul', u'put', u'windi', u'sight', u'victori'] [u'charter', u'smooth', u'council', u'govern', u'relat'] [u'chilean', u'major', u'depress', u'dead', u'march'] [u'china', u'drive', u'regist', u'websit'] [u'clinton', u'applaud', u'lankan', u'tsunami', u'effort'] [u'corbi', u'defenc', u'team', u'urg', u'consid'] [u'corbi', u'defenc', u'urg', u'consid', u'constitut'] [u'corbi', u'entitl', u'assist', u'downer'] [u'corbi', u'tell', u'famili', u'stay', u'away'] [u'crash', u'death', u'compens', u'inadequ'] [u'crow', u'past', u'gutsi', u'blue'] [u'darfur', u'visit', u'prompt', u'action', u'annan'] [u'dentist', u'warn', u'smoker', u'mouth', u'cancer', u'risk'] [u'doctor', u'push', u'ahead', u'work', u'ban'] [u'drummer', u'recognis', u'mysteri', u'piano'] [u'eagl', u'demolish', u'hapless', u'power'] [u'observ', u'attend', u'aceh', u'ceas', u'talk'] [u'ferguson', u'flag', u'support', u'renegad', u'detent', u'bill'] [u'foodland', u'deal', u'accc', u'warn'] [u'fourth', u'patient', u'die', u'altern', u'cancer'] [u'franc', u'icher', u'lead', u'sorenstam'] [u'french', u'tip', u'reject', u'treati'] [u'assist', u'corbi', u'plea', u'clemenc'] [u'girl', u'die', u'blue', u'mountain', u'hous'] [u'grandstand', u'speak', u'john', u'cartwright'] [u'green', u'question', u'harvest', u'method'] [u'harbhajan', u'get', u'condit', u'clearanc'] [u'hope', u'paralymp', u'place'] [u'hostag', u'wood', u'move', u'safer', u'locat'] [u'hous', u'bodi', u'confid', u'chang', u'wont', u'hurt'] [u'human', u'christian', u'drive', u'decis'] [u'indigen', u'film', u'ride', u'wave', u'cinema'] [u'indigen', u'leader', u'propos', u'repres'] [u'indonesian', u'back', u'life', u'sentenc', u'corbi'] [u'iraqi', u'forc', u'launch', u'strong', u'secur', u'offens'] [u'iraqi', u'polic', u'bodi', u'murder', u'pilgrim'] [u'justin', u'hodg'] [u'labor', u'form', u'drought', u'strategi', u'committe'] [u'labor', u'drought', u'committe'] [u'lanc', u'hohaia', u'clinton', u'toopi'] [u'leak', u'british', u'nuke', u'plant', u'report'] [u'lebanon', u'head', u'poll', u'post', u'syria', u'elect'] [u'leonard', u'extend', u'memphi', u'lead'] [u'leon', u'macdonald'] [u'littl', u'page'] [u'lownd', u'take', u'honour', u'eastern', u'creek'] [u'mauresmo', u'french', u'flop', u'pari'] [u'milit', u'intend', u'kill', u'japanes'] [u'miracul', u'man', u'cruis', u'home', u'penrith'] [u'fund', u'need', u'abus', u'worker', u'confer'] [u'nake', u'swimmer', u'spark', u'search'] [u'niger', u'appeal', u'food'] [u'nuttal', u'defend', u'birth', u'centr'] [u'ohern', u'slip', u'pack', u'wentworth'] [u'oliv', u'stone', u'arrest', u'drink', u'drive'] [u'olymp', u'champion', u'holm', u'tell', u'self', u'harm'] [u'opposit', u'push', u'presenc', u'china'] [u'owen', u'score', u'real', u'overhaul', u'zaragoza'] [u'pacif', u'nation', u'seek', u'close', u'trade', u'tie'] [u'pakistan', u'claim', u'milit', u'kill', u'oper'] [u'palestinian', u'kill', u'gunfight'] [u'palestinian', u'boost', u'secur', u'ahead', u'gaza', u'pullout'] [u'perth', u'exhibit', u'featur', u'russian', u'treasur'] [u'remov', u'shoe', u'sell'] [u'polic', u'appeal', u'wit', u'citi', u'stab'] [u'polic', u'arrest', u'anti', u'social', u'crime', u'crackdown'] [u'polic', u'charg', u'alleg', u'abduct'] [u'polic', u'investig', u'care', u'abus', u'claim'] [u'polic', u'quiz', u'adelaid', u'bash', u'suspect'] [u'polic', u'shop', u'suspici'] [u'polic', u'union', u'lament', u'offic', u'number'] [u'pope', u'pledg', u'support', u'christian', u'uniti'] [u'punter', u'second', u'shoot', u'game', u'ticket'] [u'reconcili', u'practic', u'issu'] [u'renouf', u'head', u'census', u'campaign'] [u'richardson', u'dynam', u'debut', u'lead', u'england', u'past'] [u'roof', u'collaps', u'kill', u'worker', u'india'] [u'sailor', u'superb', u'barbarian', u'thrash', u'england', u'hope'] [u'salvo', u'fear', u'corbi', u'backlash', u'collect'] [u'sandakan', u'victim', u'commemor', u'memori'] [u'savoldelli', u'close', u'second', u'giro', u'victori'] [u'search', u'fourth', u'kidnap', u'suspect', u'continu'] [u'servic', u'honour', u'organ', u'donor'] [u'sharon', u'cabinet', u'agre', u'free', u'palestinian', u'prison'] [u'storm', u'song', u'home'] [u'super', u'final', u'game', u'breakdown'] [u'govt', u'urg', u'liber', u'stand', u'chang'] [u'tasmanian', u'award', u'sheep', u'genet'] [u'time', u'stand', u'london'] [u'treasur', u'chair', u'bureaucraci', u'cut', u'committe'] [u'union', u'join', u'state', u'high', u'court', u'challeng'] [u'union', u'refus', u'specul', u'strike'] [u'urg', u'donor', u'forget', u'rwanda'] [u'veget', u'grower', u'seek', u'higher', u'subsidi'] [u'waratah', u'look', u'strengthen', u'squad'] [u'warrior', u'prevail', u'atroci', u'auckland', u'weather'] [u'whatmor', u'defend', u'bangladesh', u'test', u'status'] [u'soldier', u'preserv', u'remain', u'near', u'ypres'] [u'yudhoyono', u'order', u'hunt', u'blast', u'perpetr'] [u'adopt', u'mental', u'health', u'care', u'model'] [u'polli', u'urg', u'princip'] [u'adelaid', u'hous', u'price', u'approach', u'limit'] [u'agfa', u'upbeat', u'despit', u'parent', u'bankruptci'] [u'agforc', u'welcom', u'drought', u'relief', u'packag'] [u'ord', u'start', u'week', u'posit', u'note'] [u'seek', u'tougher', u'oversea', u'doctor', u'screen'] [u'dead', u'iraq', u'attack'] [u'aussi', u'target', u'vaughan', u'say', u'buchanan'] [u'australia', u'near', u'east', u'timor', u'deal', u'downer', u'say'] [u'australian', u'sensibl', u'corbi', u'jakarta'] [u'australia', u'annouc', u'mindanao', u'island'] [u'aust', u'consid', u'special', u'access', u'pacif'] [u'backpack', u'drown', u'session'] [u'bear', u'second', u'half', u'blitz', u'good', u'east'] [u'beatti', u'cautious', u'brackss', u'polici', u'plan'] [u'beer', u'mat', u'target', u'potenti', u'priest'] [u'benefactor', u'offer', u'nurs', u'home', u'fund'] [u'race', u'benefit', u'burdekin', u'mayor'] [u'bike', u'bomb', u'wound', u'afghanistan'] [u'biki', u'court', u'drug', u'charg'] [u'bird', u'respons', u'test'] [u'brack', u'draft', u'nation', u'polici', u'reform', u'packag'] [u'brack', u'tour', u'western', u'drought', u'region'] [u'brazilian', u'pride', u'parad', u'attract', u'revel'] [u'brisco', u'indi'] [u'broom', u'busi', u'offer', u'lukewarm', u'budget', u'respons'] [u'brown', u'launch', u'suit', u'wielangta', u'forest'] [u'bulldog', u'lose', u'match', u'smith'] [u'burn', u'woman', u'roll', u'grass', u'flame'] [u'busi', u'urg', u'consid', u'mall', u'trader', u'levi'] [u'busi', u'welfar', u'group', u'welcom', u'brackss', u'agenda'] [u'interpret', u'centr', u'site', u'rethink'] [u'illeg', u'abalon', u'protect', u'south'] [u'review', u'hand', u'hold', u'devic'] [u'chanc', u'lift', u'hop', u'geraldton', u'marin', u'plan'] [u'chines', u'coupl', u'australian', u'children', u'face', u'deport'] [u'claim', u'fli', u'gnome', u'floor', u'woman', u'wilcannia', u'fight'] [u'claim', u'indigen', u'renal', u'failur', u'crisi'] [u'cleric', u'confid', u'wood', u'releas', u'week'] [u'club', u'fear', u'hike', u'lose', u'high', u'court', u'appeal'] [u'coal', u'rail', u'project', u'schedul'] [u'communiti', u'servic', u'defend', u'send', u'offic', u'help'] [u'compani', u'profit', u'fall'] [u'compens', u'payout', u'anger', u'wife', u'crash', u'victim'] [u'corbi', u'lawyer', u'confirm', u'theyll', u'appeal'] [u'corbi', u'interest', u'transfer', u'australia'] [u'corbi', u'reject', u'medic', u'downer', u'say'] [u'council', u'group', u'urg', u'govt', u'upgrad', u'infrastructur'] [u'council', u'push', u'long', u'paddock', u'increas'] [u'council', u'consid', u'white', u'issu'] [u'court', u'tell', u'accuss', u'drug', u'traffick', u'alias'] [u'cowra', u'mayor', u'leav', u'japan', u'trade'] [u'dairi', u'farmer', u'maintain', u'push', u'milk', u'price', u'bodi'] [u'darl', u'down', u'hold', u'secret', u'price'] [u'day', u'number', u'independ', u'chairman', u'say'] [u'decis', u'loom', u'communiti', u'kindergarten', u'plan'] [u'digger', u'rememb', u'sandakan', u'memori'] [u'donat', u'seek', u'siev', u'survivor', u'attend'] [u'doubt', u'rise', u'japanes', u'wwii', u'soldier'] [u'downer', u'warn', u'indonesia', u'boycott'] [u'drought', u'drive', u'dog', u'south'] [u'gippsland', u'council', u'urg', u'feder', u'fund'] [u'elder', u'discuss', u'environment', u'plan'] [u'elector', u'commiss', u'readi', u'poll'] [u'employ', u'urg', u'lead', u'skill', u'shortag', u'correct'] [u'england', u'fall', u'thorp'] [u'england', u'rule', u'gile'] [u'leader', u'press', u'constitut'] [u'expert', u'consid', u'japanes', u'whale', u'propos'] [u'expert', u'test', u'diseas', u'outbreak', u'respons'] [u'famili', u'concern', u'abus'] [u'famili', u'fear', u'abus'] [u'farmer', u'mix', u'drought', u'help'] [u'fear', u'potato', u'contract', u'woe', u'forc', u'grower'] [u'feder', u'politician', u'secur', u'rise'] [u'focus', u'drown', u'prevent'] [u'franc', u'vote'] [u'fund', u'boost', u'cycl', u'walk', u'project'] [u'fund', u'cut', u'elect', u'surgeri', u'wait', u'list'] [u'gold', u'coast', u'aim', u'grind', u'run'] [u'gold', u'coast', u'consid', u'stadium', u'sit'] [u'govern', u'accus', u'public', u'servic', u'rise'] [u'govt', u'announc', u'countri', u'doctor', u'deal'] [u'govt', u'stop', u'whale', u'truss'] [u'govt', u'introduc', u'schedul'] [u'govt', u'opposit', u'voic', u'concern', u'judici', u'payris'] [u'govt', u'reject', u'divid', u'report'] [u'govt', u'reject', u'respons', u'research', u'centr'] [u'govt', u'select', u'rich', u'poor', u'divid', u'chariti'] [u'govt', u'urg', u'drought', u'announc'] [u'govt', u'wont', u'rule', u'mine', u'royalti', u'rate', u'rise'] [u'grazier', u'tell', u'chang', u'offer', u'flexibl'] [u'grower', u'express', u'concern', u'foodland', u'takeov'] [u'hackett', u'juic', u'world', u'champ'] [u'hackett', u'pleas', u'world', u'champ', u'prepar'] [u'henjak', u'head', u'west', u'escap', u'gregan', u'shadow'] [u'hewitt', u'finalis', u'wimbledon', u'prepar'] [u'director', u'secur', u'collaps'] [u'histor', u'sale', u'advertis', u'nation'] [u'holland', u'mcgrath', u'face', u'charg'] [u'howard', u'see', u'chanc', u'reconcili'] [u'hunt', u'polic', u'cell', u'escape'] [u'icpa', u'want', u'fund', u'isol', u'student'] [u'india', u'activ', u'volcano', u'erupt'] [u'indonesia', u'suspect', u'dead', u'blast'] [u'inquiri', u'find', u'fuel', u'price', u'reason'] [u'invit', u'disput', u'overshadow', u'child', u'abus', u'summit'] [u'iran', u'uncov', u'winemak', u'past'] [u'jackson', u'case', u'legal', u'team', u'readi', u'final', u'argument'] [u'agenc', u'cite', u'benefit', u'indigen', u'worker'] [u'johnson', u'qualifi', u'world', u'champ'] [u'kean', u'celt', u'come'] [u'kerin', u'deliv', u'budget', u'repli'] [u'kessler', u'begin', u'mind', u'game', u'mundin'] [u'kirkland', u'woe', u'ongo'] [u'labor', u'pursu', u'govt', u'safeti', u'document'] [u'land', u'moratorium', u'soon'] [u'lawyer', u'predict', u'flood', u'unfair', u'dismiss', u'claim'] [u'leeton', u'school', u'blaze', u'investig'] [u'lennon', u'defend', u'staff', u'hear'] [u'leonard', u'hold', u'tom', u'jude', u'classic'] [u'liber', u'choos', u'chaffey', u'candid'] [u'liber', u'reject', u'whale', u'support', u'claim'] [u'mackay', u'host', u'region', u'art', u'gather'] [u'appeal', u'theft', u'sentenc'] [u'escap', u'court', u'hijack'] [u'jail', u'procur', u'child', u'internet'] [u'plead', u'guilti', u'insid', u'trade'] [u'face', u'court', u'attempt', u'murder', u'charg'] [u'martin', u'defend', u'cost', u'fuel', u'inquiri'] [u'mayor', u'unlik', u'toxic', u'wast', u'concern'] [u'mccain', u'bring', u'tassi', u'grower'] [u'seek', u'attempt', u'kidnap'] [u'group', u'back', u'safeti', u'review'] [u'prais', u'boost', u'china', u'trade', u'tie'] [u'minist', u'offer', u'age', u'care', u'infrastructur', u'assur'] [u'mitez', u'meet', u'highlight', u'challeng'] [u'age', u'care', u'place', u'hunter'] [u'get', u'gate', u'worker', u'entitl', u'assur'] [u'say', u'budget', u'fund', u'concentr', u'albani'] [u'say', u'transport', u'plan', u'stupid'] [u'multiplex', u'halt', u'trade'] [u'multiplex', u'prepar', u'investor', u'updat', u'wembley'] [u'multiplex', u'slash', u'profit', u'outlook'] [u'natasha', u'ryan', u'case', u'delay', u'juli'] [u'nervous', u'wait', u'agfa', u'employe'] [u'campaign', u'target', u'grow', u'chlamydia', u'case'] [u'mobil', u'use', u'phone', u'middlemen'] [u'prison', u'readi', u'june', u'jackson'] [u'sport', u'centr', u'focus', u'jindabyn', u'youth'] [u'nrma', u'faze', u'byron', u'council', u'highway', u'decis'] [u'govt', u'cross', u'border', u'stanc'] [u'busi', u'award', u'tick', u'nation', u'survey'] [u'green', u'launch', u'parliament', u'seat'] [u'ohern', u'wentworth'] [u'opposit', u'flag', u'tougher', u'drug', u'polici'] [u'opposit', u'grow', u'rate', u'rise', u'plan'] [u'opposit', u'rise', u'attack', u'cheap', u'popul'] [u'parent', u'newborn', u'move', u'detent', u'hous'] [u'patel', u'extens', u'fraudul', u'inquiri'] [u'pension', u'killer', u'free', u'jail'] [u'petacchi', u'miss', u'tour', u'savoldelli', u'win', u'giro'] [u'plane', u'crash', u'rest', u'place', u'remain', u'mysteri'] [u'announc', u'drought'] [u'polic', u'chief', u'reject', u'staff', u'concern'] [u'polic', u'claim', u'cyclist', u'kill', u'drink', u'driver'] [u'polic', u'concern', u'rise', u'aggress', u'behaviour'] [u'polic', u'confisc', u'illeg', u'tobacco', u'cootamundra'] [u'polic', u'farewel', u'offic', u'kill', u'plane', u'crash'] [u'polic', u'grave', u'concern', u'miss', u'woman'] [u'polic', u'hunt', u'takeaway', u'shop', u'bandit'] [u'polic', u'offic', u'visit', u'porn', u'site', u'time'] [u'polic', u'probe', u'rupanyup', u'assault'] [u'polic', u'search', u'morwel', u'arsonist'] [u'polic', u'vike', u'oper', u'ahead'] [u'power', u'unlik', u'grand', u'final', u'william'] [u'price', u'week'] [u'price', u'origin', u'campaign', u'balanc'] [u'produc', u'hail', u'court', u'rule', u'meat', u'import'] [u'program', u'offer', u'graffiti', u'remov', u'employ', u'skill'] [u'properti', u'report', u'show', u'darwin', u'hous', u'boom'] [u'psychiatrist', u'question', u'claim', u'mcgee', u'mental', u'state'] [u'public', u'look', u'port', u'albert', u'develop', u'plan'] [u'public', u'urg', u'help', u'miss', u'bendigo'] [u'qanta', u'okay', u'mobil', u'phone', u'land', u'plan'] [u'believ', u'corbi', u'innoc'] [u'nat', u'shake', u'stupid'] [u'bolster', u'home', u'sale', u'figur'] [u'releas', u'murder', u'close', u'supervis'] [u'resort', u'await', u'snow', u'season', u'loom'] [u'reward', u'offer', u'catch', u'arsonist'] [u'ricketson', u'face', u'match'] [u'roo', u'accept', u'critic', u'loss', u'saint'] [u'routin', u'probe', u'despit', u'fourth', u'altern', u'therapi'] [u'rural', u'confid', u'slump', u'year'] [u'salvo', u'illawarra', u'donat', u'year'] [u'salvo', u'south', u'coast', u'donat', u'year'] [u'treasur', u'attack', u'parliament'] [u'secur', u'chang', u'alter', u'derbi', u'airport', u'public'] [u'seminar', u'highlight', u'indigen', u'busi', u'success'] [u'shire', u'seek', u'road', u'repair', u'fund'] [u'kill', u'shoot'] [u'aid', u'stutter', u'therapi', u'rural', u'children'] [u'song', u'write', u'provid', u'anorexia', u'breakthrough'] [u'jail', u'bash'] [u'soni', u'test', u'anti', u'burn', u'technolog'] [u'stenglein', u'book', u'tribun', u'date'] [u'stenglein', u'challeng', u'rough', u'conduct', u'charg'] [u'stinger', u'net', u'come', u'late', u'year'] [u'storm', u'damag', u'cathedr', u'demolish'] [u'student', u'union', u'angri', u'hec', u'consult'] [u'studi', u'clear', u'human', u'megafauna', u'extinct'] [u'sudan', u'detain', u'agenc', u'chief', u'rape', u'report'] [u'suicid', u'bomber', u'strike', u'south', u'baghdad'] [u'coast', u'council', u'infrastructur', u'plan'] [u'taskforc', u'report', u'fuel'] [u'power', u'trade', u'depend', u'basslink', u'connect'] [u'teen', u'arrest', u'kava'] [u'long', u'term', u'detaine', u'releas', u'visa'] [u'thousand', u'evacu', u'wwii', u'bomb', u'itali'] [u'dead', u'gaza', u'strip', u'explos'] [u'tottenham', u'build', u'near', u'hospit'] [u'townsvill', u'host', u'mega', u'defenc', u'base'] [u'trap', u'trucki', u'escap', u'injuri'] [u'truck', u'mishap', u'block', u'highway'] [u'week', u'storm', u'clean', u'continu'] [u'udines', u'fourth', u'brescia', u'releg', u'final'] [u'umaga', u'withdraw', u'trial', u'match'] [u'union', u'warn', u'support', u'chang'] [u'forc', u'mistaken', u'arrest', u'sunni', u'leader'] [u'sailor', u'mark', u'memori', u'darwin'] [u'visit', u'brazilian', u'minist', u'promot', u'ethanol'] [u'water', u'restrict', u'continu'] [u'throw', u'toad', u'fight', u'fund'] [u'wellington', u'council', u'reject', u'merger', u'plan'] [u'wellshot', u'hotel', u'sale'] [u'wit', u'tell', u'court', u'gatto', u'give'] [u'woolmark', u'sale', u'consider'] [u'worm', u'ranch', u'plan'] [u'wwii', u'servicemen', u'crete', u'effort', u'rememb'] [u'yeppoon', u'roadwork', u'agreement', u'sign'] [u'studi', u'focus', u'live', u'export'] [u'aborigin', u'council', u'take', u'corpor', u'land'] [u'accc', u'ask', u'consid', u'dairi', u'farmer', u'woe'] [u'aftershock', u'rock', u'banda', u'aceh'] [u'agforc', u'back', u'drought', u'packag'] [u'airlin', u'criticis', u'passeng', u'flight'] [u'alic', u'council', u'reject', u'youth', u'curfew', u'plan'] [u'alic', u'mayor', u'resign', u'greatorex'] [u'chief', u'sorri', u'kill', u'field', u'claim'] [u'govt', u'headway', u'nurs', u'practition'] [u'anderson', u'rule', u'corbi', u'custom', u'report', u'link'] [u'andrew', u'expect', u'critic', u'plan'] [u'andromeda', u'larger', u'think'] [u'announc', u'drought', u'relief', u'measur', u'welcom'] [u'build', u'navi', u'flagship'] [u'asx', u'golden', u'end'] [u'australian', u'moto', u'move', u'beat', u'tobacco'] [u'australia', u'miss', u'univers', u'final'] [u'bellingen', u'council', u'wont', u'seek', u'rate', u'rise'] [u'bendigo', u'busi', u'seek', u'weekend', u'clean'] [u'birney', u'accus', u'doubl', u'standard', u'breath', u'test'] [u'breaker', u'miss', u'red'] [u'broadbent', u'recal', u'nation', u'squad'] [u'brown', u'injuri', u'wont', u'stop', u'black', u'gold', u'say'] [u'cigarett', u'maker', u'target', u'women', u'studi'] [u'citrus', u'canker', u'detect', u'emerald', u'properti'] [u'cleaner', u'seek', u'bishop', u'support', u'disput'] [u'cloke', u'boost', u'collingwood', u'resurg'] [u'pledg', u'clean', u'fight', u'elect'] [u'promis', u'statehood', u'vote', u'elect'] [u'commission', u'defend', u'pass', u'birney'] [u'communiti', u'board', u'urg', u'quick', u'transit'] [u'communiti', u'urg', u'galleri', u'plan'] [u'concern', u'mount', u'miss', u'woman'] [u'confer', u'consid', u'northern', u'aust', u'health'] [u'coolangatta', u'gold', u'come', u'mothbal'] [u'costello', u'record', u'trade', u'deficit'] [u'council', u'approv', u'cooma', u'develop'] [u'councillor', u'censur', u'code', u'conduct', u'breach'] [u'council', u'ramp', u'pollut', u'monitor'] [u'council', u'see', u'good', u'drought', u'packag'] [u'council', u'tell', u'consult', u'better', u'cut'] [u'council', u'vote', u'independ', u'bulli'] [u'counsel', u'servic', u'fear', u'miss'] [u'court', u'jail', u'pair', u'rugbi', u'leagu', u'player', u'death'] [u'cricket', u'australia', u'defend', u'bangladesh', u'zimbabw'] [u'crouch', u'england', u'debut', u'campbel'] [u'current', u'account', u'deficit', u'soar'] [u'current', u'account', u'multiplex', u'tone', u'market'] [u'defenc', u'lobbi', u'criticis', u'townsvill', u'mega', u'defenc'] [u'defenc', u'target', u'school', u'recruit', u'drive'] [u'dengu', u'threat', u'persist'] [u'deputi', u'mayor', u'reject', u'conflict', u'claim'] [u'develop', u'air', u'water', u'trade', u'worri'] [u'disput', u'resolut', u'bodi', u'mark', u'year', u'mileston'] [u'docker', u'face', u'depth', u'test'] [u'dodson', u'brand', u'share', u'respons', u'deal', u'nonsens'] [u'dodson', u'brand', u'share', u'respons', u'deal', u'nonsens'] [u'doubt', u'rais', u'drought', u'packag', u'malle'] [u'drought', u'announc', u'bring', u'mix', u'respons'] [u'drought', u'forc', u'domest', u'grain', u'sale'] [u'drover', u'wont', u'stock', u'rout', u'plan'] [u'sign', u'valencia'] [u'england', u'happi', u'jone', u'get', u'swing'] [u'compens', u'payment', u'hold'] [u'famili', u'lose', u'interpret', u'classroom'] [u'farmer', u'rais', u'drought', u'packag', u'concern'] [u'farm', u'group', u'back', u'drought', u'packag'] [u'farm', u'group', u'see', u'drought', u'packag', u'gap'] [u'fear', u'hold', u'live', u'export', u'townsvill'] [u'feder', u'court', u'back', u'liquorland', u'payment'] [u'final', u'submiss', u'lauri', u'inquest'] [u'fisheri', u'author', u'reject', u'antarct', u'fish', u'zone'] [u'ausaid', u'advis', u'face', u'pornographi', u'charg'] [u'nurs', u'face', u'child', u'porn', u'charg'] [u'forum', u'allow', u'local', u'art', u'input'] [u'foster', u'review', u'southcorp', u'asset'] [u'freeman', u'say', u'athlet', u'learn', u'cricket'] [u'french', u'quit', u'vote'] [u'friend', u'farewel', u'king', u'kennedi'] [u'geograph', u'domain', u'name', u'grab'] [u'giro', u'show', u'armstrong', u'team', u'stronger'] [u'glazer', u'readi', u'sell', u'ferdinand'] [u'goldfield', u'council', u'recognis', u'indigen'] [u'goulburn', u'water', u'crisi', u'receiv', u'govt', u'attent'] [u'govt', u'accus', u'wast', u'money', u'butler', u'health'] [u'govt', u'agre', u'goulburn', u'water', u'work', u'parti'] [u'govt', u'defend', u'approach', u'airport', u'secur'] [u'govt', u'defend', u'effort', u'fight', u'devil', u'diseas'] [u'govt', u'help', u'employe', u'compani', u'fold'] [u'govt', u'introduc', u'harsher', u'water', u'ban'] [u'govt', u'eyr', u'peninsula', u'water', u'plan'] [u'green', u'group', u'air', u'plan', u'chang', u'concern'] [u'green', u'oppos', u'rise'] [u'grenfel', u'label', u'defici'] [u'guard', u'shock', u'arm', u'robberi'] [u'hawkesburi', u'water', u'cut', u'answer', u'green', u'group'] [u'bail', u'crush'] [u'heavi', u'rain', u'damag', u'interst', u'road', u'link'] [u'heenan', u'make', u'brumbi', u'offici'] [u'heenan', u'sign', u'brumbi'] [u'hill', u'concern', u'darwin', u'waterfront', u'revamp'] [u'hop', u'high', u'kewel', u'recoveri'] [u'hopper', u'appeal', u'sentenc'] [u'hospit', u'revamp', u'unlik', u'hall', u'site'] [u'hotlin', u'wear', u'thicker', u'cloth', u'advic', u'scrutini'] [u'howard', u'noncommitt', u'detent', u'debat'] [u'husband', u'killer', u'appeal', u'punish'] [u'creditor', u'meet', u'dubbo'] [u'fight', u'zarqawi', u'say'] [u'indigen', u'support', u'group', u'make', u'govern', u'award'] [u'indigen', u'work', u'agreement', u'unfair', u'mine', u'group', u'tell'] [u'indonesia', u'loom', u'threat', u'hunter', u'thermal', u'coal'] [u'indonesia', u'prison', u'swap', u'deal'] [u'itali', u'open', u'skin', u'bank', u'high', u'risk', u'worker'] [u'jazz', u'great', u'oscar', u'brown', u'dead'] [u'jockey', u'jail', u'life', u'kill', u'teen', u'prostitut'] [u'john', u'paul', u'sainthood', u'process', u'begin'] [u'john', u'action', u'knight'] [u'johnson', u'sixth', u'qualifi', u'world', u'champ'] [u'katich', u'readi', u'pom'] [u'king', u'televis', u'bow', u'high', u'note'] [u'landhold', u'rural', u'road', u'issu'] [u'larsson', u'commit', u'barca'] [u'societi', u'renew', u'northern'] [u'lehmann', u'brand', u'selector', u'hogwash'] [u'liber', u'thrash', u'detent', u'issu'] [u'liverpool', u'decis', u'week', u'say', u'hamann'] [u'lynch', u'expect', u'exodus', u'lion'] [u'magnific', u'seven', u'open'] [u'martin', u'proud', u'campaign', u'kick'] [u'mayor', u'stand', u'bureaucrat', u'sack'] [u'mckay', u'hall', u'creek', u'council', u'presid'] [u'moimoi', u'out', u'game'] [u'look', u'renew', u'orthopaed', u'surgeri'] [u'head', u'north', u'east', u'countri', u'feedback'] [u'multiplex', u'reassur', u'investor', u'profit', u'warn'] [u'multiplex', u'share', u'dive', u'profit', u'warn'] [u'nation', u'look', u'oust', u'tweed', u'labor'] [u'aussi', u'find', u'citizenship', u'uplift'] [u'chief', u'kalgoorli', u'hospit'] [u'machin', u'allow', u'kidney', u'patient', u'treat'] [u'microchip', u'away', u'test'] [u'munch', u'paint', u'unearth'] [u'offic', u'nativ', u'titl', u'servic'] [u'presid', u'east', u'pilbara', u'shire'] [u'school', u'bus', u'alloc', u'eyr', u'peninsula'] [u'direct', u'link', u'traffic', u'report', u'corbi'] [u'visa', u'offer', u'long', u'term', u'detaine', u'qasim'] [u'govt', u'want', u'district', u'regain', u'access'] [u'elect', u'june'] [u'elect', u'specul', u'mount'] [u'push', u'china', u'free', u'trade', u'deal'] [u'opposit', u'fear', u'widespread', u'tafe', u'cut'] [u'palestinian', u'shelv', u'collabor', u'execut', u'plan'] [u'see', u'benefit', u'drought', u'packag'] [u'philippin', u'separatist', u'open', u'train', u'camp'] [u'upbeat', u'indigen', u'relat'] [u'regret', u'land', u'right', u'decis'] [u'polic', u'arrest', u'want', u'chase', u'hous'] [u'polic', u'command', u'discuss', u'staff', u'problem'] [u'polic', u'confirm', u'arson', u'high', u'school', u'blaze'] [u'polic', u'hunt', u'occup', u'hous', u'crash'] [u'polic', u'hunt', u'narrogin', u'home', u'invad'] [u'polic', u'look', u'motiv', u'tripl', u'murder'] [u'polic', u'arrest', u'chemist', u'arm', u'hold'] [u'policeman', u'bond', u'park'] [u'polic', u'worth', u'cannabi'] [u'polic', u'interview', u'driver', u'involv', u'fatal', u'crash'] [u'power', u'station', u'decis', u'baffl', u'industri', u'group'] [u'prais', u'launceston', u'council', u'pollut', u'crackdown'] [u'privat', u'credit', u'jump', u'april'] [u'probe', u'continu', u'meatwork', u'death'] [u'public', u'draft', u'tourism', u'plan'] [u'public', u'whitsunday', u'moor'] [u'public', u'urg', u'help', u'catch', u'morwel', u'arsonist'] [u'qanta', u'govt', u'talk', u'secur'] [u'qanta', u'surpris', u'custom', u'drug', u'smuggl', u'report'] [u'council', u'canva', u'merger', u'issu'] [u'tripl', u'murder', u'particular', u'violent'] [u'rainbow', u'parad', u'showcas', u'vintag', u'tractor'] [u'cross', u'fin', u'contamin', u'blood'] [u'refuge', u'advoc', u'seek', u'apolog'] [u'report', u'highlight', u'rural', u'sector', u'confid', u'drop'] [u'retail', u'sale', u'drop'] [u'riverland', u'countri', u'doctor', u'packag'] [u'rodman', u'borrow', u'wife'] [u'roll', u'close', u'council', u'elect'] [u'roo', u'face', u'boss'] [u'roulett', u'wing', u'clip', u'crash', u'report'] [u'rural', u'counsellor', u'want', u'help', u'debt', u'free'] [u'russian', u'bear', u'canadian', u'crown', u'miss', u'univers'] [u'salvo', u'fail', u'reach', u'break', u'hill', u'fundrais', u'target'] [u'santo', u'secur', u'indonesian', u'deal'] [u'accus', u'kill', u'afghan', u'civilian'] [u'soldier', u'disciplin', u'afghan', u'action'] [u'seaga', u'pipelin', u'connect', u'nation', u'grid'] [u'llew', u'permit', u'morri', u'inquiri'] [u'liber', u'detent'] [u'staff', u'karachi', u'rioter', u'torch'] [u'snap', u'love', u'match', u'pari'] [u'state', u'territori', u'prison', u'exchang', u'deal'] [u'stenglein', u'book', u'tribun', u'date'] [u'stenglein', u'hand', u'match'] [u'busi', u'plan', u'train', u'propos'] [u'stuart', u'warn', u'origin', u'player', u'perform'] [u'studi', u'find', u'northern', u'farmer', u'confid'] [u'survey', u'find', u'limit', u'life', u'hobbi', u'farm'] [u'survey', u'highlight', u'small', u'busi', u'land', u'fear'] [u'sydney', u'wont', u'drink', u'water', u'govt'] [u'symphoni', u'orchestra', u'visit', u'pilbara'] [u'teen', u'charg', u'tripl', u'murder'] [u'thing', u'wors', u'beat', u'safin'] [u'treasur', u'occup', u'hazard', u'labor'] [u'trenordan', u'feder', u'plan'] [u'tszyu', u'brace', u'hostil', u'recept'] [u'tweed', u'council', u'want', u'charg', u'work'] [u'dead', u'afghan', u'protest'] [u'union', u'disput', u'qanta', u'claim', u'secur', u'upgrad'] [u'staff', u'cut', u'paper'] [u'comment', u'rural', u'campus', u'report'] [u'vanston', u'snub', u'reconcili', u'talk'] [u'say', u'drought', u'packag'] [u'disappoint', u'navi', u'destroy', u'decis'] [u'vline', u'analys', u'draft', u'timet', u'feedback'] [u'govt', u'appeal', u'increas', u'man', u'sentenc'] [u'wallabi', u'red', u'tune'] [u'nation', u'reject', u'singl', u'nation'] [u'warrior', u'gold', u'mine', u'year'] [u'water', u'treatment', u'money', u'flow'] [u'know', u'economist', u'lead', u'committe'] [u'workload', u'push', u'aust', u'surgeon', u'bundaberg'] [u'yuko', u'founder', u'jail', u'year'] [u'zimbabw', u'govt', u'outlaw', u'privat', u'land', u'ownership'] [u'hunt', u'monkey', u'go', u'huff'] [u'abus', u'indonesia', u'wont', u'help', u'corbi', u'downer'] [u'academ', u'say', u'like', u'suicid', u'women'] [u'accus', u'smuggler', u'deni', u'work', u'siev'] [u'actor', u'christian', u'slater', u'arrest', u'grope'] [u'acupunctur', u'offer', u'altern', u'drug', u'addict'] [u'ensur', u'troop', u'oversea', u'vote', u'elect'] [u'probe', u'incid'] [u'aerial', u'spray', u'databas', u'need', u'review', u'tell'] [u'afghan', u'ngos', u'launch', u'code', u'conduct'] [u'say', u'need', u'north', u'west', u'magistr'] [u'fund', u'trickl', u'tsunami', u'ravag'] [u'alcohol', u'charg', u'michael', u'jackson', u'reduc'] [u'anderson', u'airport', u'alleg', u'beazley'] [u'appl', u'grower', u'highlight', u'trade', u'concern'] [u'apprenticeship', u'complet', u'rate', u'rise'] [u'aussi', u'coach', u'make', u'mark', u'world', u'cricket'] [u'averag', u'winter', u'rainfal', u'forecast', u'wide'] [u'manner', u'anger', u'british', u'viewer'] [u'bank', u'employe', u'charg', u'money'] [u'bank', u'stock', u'drive', u'ord'] [u'beatti', u'vow', u'legisl', u'fight', u'govt', u'plan'] [u'averag', u'rain', u'record', u'western', u'victoria'] [u'urg', u'share', u'pilbara', u'port'] [u'biolog', u'scare', u'appal'] [u'boe', u'engin', u'step', u'campaign', u'push'] [u'bombala', u'consid', u'rate', u'rise'] [u'bowman', u'webb', u'join', u'line', u'shark'] [u'brack', u'seek', u'releas', u'defenc', u'contract', u'paper'] [u'brazil', u'adriano', u'play', u'italian', u'final'] [u'bridg', u'visa', u'strip', u'detaine', u'right'] [u'broadband', u'project', u'depend', u'feder', u'fund'] [u'bush', u'dismiss', u'absurd', u'amnesti', u'right', u'report'] [u'bushfir', u'investig', u'wont', u'play', u'blame', u'game'] [u'busi', u'leader', u'urg', u'action', u'transport', u'crisi'] [u'call', u'arboretum', u'project', u'postpon'] [u'canadian', u'posti', u'unabl', u'step', u'task'] [u'bomb', u'hit', u'baghdad', u'checkpoint'] [u'champ', u'barcelona', u'chase', u'forlan'] [u'child', u'play', u'lighter', u'set', u'bedroom', u'alight'] [u'china', u'accus', u'detain', u'hong', u'kong', u'report', u'spi'] [u'classic', u'walk', u'perth'] [u'coalit', u'thwart', u'labor', u'debat', u'detent'] [u'coff', u'harbour', u'host', u'nation', u'nativ', u'titl'] [u'collin', u'problem', u'shipbuild', u'hill'] [u'communiti', u'urg', u'involv', u'batavia'] [u'corbi', u'lawyer', u'begin', u'appeal', u'process'] [u'costello', u'defend', u'defenc', u'contract', u'decis'] [u'costello', u'dismiss', u'call', u'fairer', u'share'] [u'council', u'approv', u'second'] [u'council', u'back', u'residenti', u'colleg'] [u'councillor', u'expect', u'censur'] [u'council', u'say', u'beach', u'sewag', u'spill', u'risk', u'public'] [u'council', u'protest', u'asbesto', u'remov', u'cost'] [u'countri', u'footbal', u'victoria', u'promis', u'million'] [u'court', u'order', u'fraud', u'case', u'retrial'] [u'crowd', u'seiz', u'control', u'kyrgyzstan', u'suprem', u'court'] [u'custom', u'report', u'coincid', u'secur', u'upgrad'] [u'custom', u'report', u'spark', u'secur', u'check', u'review'] [u'cut', u'forecast', u'fraser', u'coast', u'public', u'health'] [u'czech', u'musician', u'deni', u'mysteri', u'piano'] [u'dead', u'blast', u'hit', u'afghan', u'mosqu'] [u'delay', u'panel', u'probe', u'council'] [u'deport', u'delay', u'chines', u'coupl', u'australian'] [u'destroy', u'contract', u'creat', u'need'] [u'dfat', u'demand', u'kuwait', u'investig', u'tortur', u'claim'] [u'dfat', u'know', u'solon', u'case'] [u'digit', u'polici', u'restrict', u'chairman'] [u'dog', u'want', u'monday', u'night', u'pioneer'] [u'doyl', u'back', u'mountain', u'cattlemen', u'fight'] [u'dozen', u'claim', u'mysteri', u'money'] [u'draft', u'report', u'call', u'taxi', u'fare', u'increas'] [u'weather', u'like', u'continu'] [u'eagl', u'accept', u'fair', u'stenglein', u'bump'] [u'econom', u'growth', u'forecast', u'march'] [u'economist', u'rais', u'concern', u'grow', u'foreign'] [u'educ', u'union', u'protest', u'feder', u'govt'] [u'effort', u'afoot', u'tackl', u'indigen', u'passiv', u'smoke'] [u'elect', u'pledg', u'begin'] [u'embassi', u'evacu', u'biolog', u'threat'] [u'embassi', u'staff', u'releas', u'biolog', u'scare'] [u'embassi', u'staff', u'return', u'home', u'biolog', u'scare'] [u'fin', u'ranger', u'breach'] [u'boyfriend', u'give', u'evid', u'murder', u'trial'] [u'export', u'report', u'find', u'infrastructur', u'crisi'] [u'extra', u'offic', u'boost', u'chifley', u'polic', u'command'] [u'fear', u'livestock', u'industri', u'weather', u'pattern'] [u'bomb', u'throw', u'mayor', u'hous'] [u'firefight', u'call', u'hotel', u'chimney'] [u'fitzgibbon', u'back', u'stuart', u'warn', u'origin', u'star'] [u'forb', u'die', u'level', u'cross', u'crash'] [u'forc', u'fight', u'retain'] [u'director', u'make', u'deep', u'throat', u'claim'] [u'offic', u'challeng', u'sack'] [u'rower', u'escap', u'convict', u'drug', u'charg'] [u'french', u'open', u'semi', u'final', u'decid'] [u'fund', u'allow', u'disabl', u'servic', u'boost'] [u'golf', u'club', u'roof', u'collaps', u'prompt', u'coron'] [u'govern', u'criticis', u'airport', u'secur'] [u'govt', u'accus', u'want', u'scrap', u'waterfront'] [u'govt', u'extend', u'depress', u'screen', u'program'] [u'govt', u'probe', u'sydney', u'airport', u'secur'] [u'govt', u'urg', u'tackl', u'school', u'teacher', u'shortag'] [u'grand', u'debut', u'mask', u'financi', u'woe'] [u'grazier', u'highlight', u'autumn'] [u'harri', u'quiet', u'corbi', u'specul'] [u'hawk', u'slam', u'nonsens'] [u'hawk', u'urg', u'labor', u'leadership', u'look', u'beatti'] [u'health', u'record', u'databas', u'concern', u'privaci', u'bodi'] [u'hill', u'reserv', u'judgment', u'alleg'] [u'hospit', u'defend', u'secur'] [u'hospit', u'isol', u'patient', u'super'] [u'howard', u'georgiou', u'discuss', u'immigr', u'detent'] [u'improv', u'commit', u'crow', u'success'] [u'indigen', u'flag', u'perman', u'outsid', u'council'] [u'indigen', u'land', u'corpor', u'defend', u'divest'] [u'indonesia', u'condemn', u'embassi', u'intimid'] [u'industri', u'hemp', u'trial', u'begin', u'spring'] [u'iran', u'missil', u'test', u'fuel', u'nuclear', u'warhead', u'fear'] [u'isra', u'general', u'see', u'wave', u'violenc'] [u'italian', u'polic', u'quiz', u'cipo', u'armstrong'] [u'jetstar', u'tri', u'stop', u'wheelchair', u'athlet'] [u'judg', u'order', u'teen', u'bulli', u'slim'] [u'kalgoorli', u'studi', u'widen'] [u'kalgoorli', u'council', u'stand', u'golf', u'cours', u'size'] [u'kasper', u'readi', u'pom'] [u'labor', u'accus', u'direct', u'anti', u'social', u'polici'] [u'launceston', u'vision', u'focus'] [u'lawyer', u'detail', u'difficulti', u'obtain', u'mcgee'] [u'lawyer', u'fear', u'hick', u'trial', u'delay'] [u'lawyer', u'head', u'footbal', u'brawl', u'probe'] [u'lobbi', u'group', u'oppos', u'chang', u'coal', u'approv'] [u'lobbi', u'group', u'seek', u'lenienc', u'school', u'drought'] [u'local', u'govt', u'upset', u'delay', u'farm', u'relief'] [u'magistr', u'bail', u'sydney', u'airport', u'drug', u'accus'] [u'mall', u'plan'] [u'polic', u'publicis', u'drug', u'test'] [u'martin', u'deni', u'candid', u'muzzl'] [u'mayor', u'beat', u'despit', u'plant', u'closur'] [u'mcewen', u'stand', u'term'] [u'mcgradi', u'sympathi', u'free', u'killer'] [u'meet', u'christian', u'radio', u'idea'] [u'millmerran', u'bypass', u'rout', u'decid'] [u'miner', u'council', u'reject', u'indigen', u'work', u'agreement'] [u'minist', u'admit', u'mistak', u'gunn', u'advic'] [u'minist', u'ask', u'suspend', u'murray', u'environment'] [u'minist', u'flag', u'review', u'sexual', u'offend', u'treatment'] [u'critic', u'china', u'trade', u'fair', u'exhibit'] [u'plan', u'ralli', u'support', u'maryborough', u'hospit'] [u'question', u'region', u'speed', u'camera'] [u'say', u'polglas', u'state', u'polit', u'prematur'] [u'say', u'river', u'comment', u'bizarr'] [u'muslim', u'terror', u'suspect', u'acquit', u'thailand'] [u'nation', u'look', u'govt', u'rural', u'doctor'] [u'servic', u'reli', u'fund', u'say', u'chief'] [u'nightclub', u'curfew', u'work', u'crime'] [u'ireland', u'polic', u'arrest', u'mccartney', u'murder'] [u'minist', u'back', u'sewerag', u'project', u'goulburn'] [u'boycott', u'australian', u'fruit'] [u'fifth', u'earth', u'bird', u'speci', u'danger', u'studi'] [u'opposit', u'breathalys', u'matter'] [u'opposit', u'seiz', u'plant', u'pest', u'fear'] [u'owen', u'trick', u'help', u'england', u'edg', u'colombia'] [u'palestinian', u'elect', u'postpon'] [u'panel', u'administ', u'lose', u'aborigin', u'trust', u'money'] [u'pari', u'expo', u'charg', u'sag', u'european', u'research'] [u'passion', u'intens', u'land', u'ricketson', u'troubl'] [u'patel', u'offer', u'see', u'inquiri', u'hear'] [u'peacekeep', u'leav', u'capabl', u'east', u'timor'] [u'pietersen', u'hand', u'ash', u'incent'] [u'back', u'accc', u'port', u'plan', u'report'] [u'reject', u'cover', u'alleg'] [u'reject', u'cover', u'claim'] [u'silent', u'possibl', u'corbi', u'pardon'] [u'polic', u'charg', u'teen', u'tripl', u'slay'] [u'polic', u'detain', u'seven', u'wake', u'indonesian', u'bomb'] [u'polic', u'investig', u'trap', u'meat'] [u'polic', u'offic', u'tell', u'mcgee', u'inquiri', u'omit'] [u'polic', u'offic', u'undergo', u'handgun', u'retrain'] [u'polic', u'probe', u'hous', u'arson'] [u'polic', u'raid', u'illeg', u'drug'] [u'polic', u'power', u'increas'] [u'polic', u'treat', u'toddler', u'death', u'suspici'] [u'polic', u'wont', u'comment', u'dead', u'hous', u'blaze'] [u'polic', u'wont', u'link', u'remain', u'miss', u'rockhampton'] [u'protest', u'arrest', u'log', u'blockad'] [u'qanta', u'airbus', u'delay'] [u'refineri', u'staff', u'stop', u'work', u'mercuri', u'claim'] [u'report', u'cast', u'doubt', u'cruis', u'ship', u'termin'] [u'report', u'show', u'rural', u'economi'] [u'reserv', u'bank', u'want', u'disclosur', u'bpay', u'fee'] [u'resid', u'group', u'question', u'wind', u'farm', u'survey'] [u'revamp', u'plan', u'murwillumbah', u'polic', u'station'] [u'review', u'panel', u'probe', u'sleep', u'judg', u'claim'] [u'reward', u'offer', u'munch', u'scream'] [u'seek', u'bushfir', u'code', u'comment'] [u'tinto', u'commit', u'indigen', u'issu'] [u'riverland', u'crash', u'victim', u'adelaid'] [u'saddam', u'trial', u'possibl', u'formal', u'charg'] [u'soldier', u'disciplin', u'cosgrov'] [u'school', u'cut', u'curriculum', u'power', u'cooler'] [u'schumach', u'dismiss', u'quit', u'question'] [u'secur', u'scare', u'close', u'indonesian', u'embassi'] [u'seven', u'sign', u'lecki', u'year'] [u'skill', u'shortag', u'hit', u'mine', u'industri'] [u'slater', u'fiji'] [u'lanka', u'hop', u'moodi', u'threaten', u'australia'] [u'state', u'nation', u'approach', u'secur'] [u'state', u'prison', u'treati', u'ignor', u'ellison'] [u'statin', u'drug', u'underprescrib', u'studi'] [u'steven', u'chang', u'guilti', u'plea'] [u'strachan', u'relish', u'celtic', u'challeng'] [u'strawberri', u'field', u'forev'] [u'stud', u'bale', u'million', u'dollar', u'clip'] [u'sudan', u'arrest', u'second', u'worker', u'rape', u'report'] [u'sunshin', u'coast', u'mayor', u'join', u'cost', u'shift', u'protest'] [u'support', u'expect', u'coolangatta', u'gold', u'return'] [u'sydney', u'airport', u'boss', u'know', u'custom'] [u'sydney', u'step', u'closer', u'world', u'club', u'challeng'] [u'sydney', u'prim', u'physic', u'test', u'tahiti'] [u'tamworth', u'oldest', u'die', u'age'] [u'tattersal', u'truste', u'accus', u'mishandl', u'staff'] [u'teen', u'face', u'court', u'tripl', u'murder'] [u'test', u'prompt', u'push', u'instal', u'airbag'] [u'thousand', u'march', u'chang'] [u'time', u'run', u'brisban', u'black'] [u'time', u'run', u'brisban', u'black'] [u'tweed', u'council', u'administr', u'hold', u'meet'] [u'arrest', u'delhi', u'cinema', u'blast'] [u'highway', u'truck', u'crash'] [u'stop', u'work', u'protest', u'chang'] [u'court', u'overturn', u'arthur', u'andersen', u'convict'] [u'space', u'telescop', u'captur', u'birth', u'star'] [u'veteran', u'black', u'marshal', u'confirm', u'avail'] [u'cabinet', u'head', u'pilbara'] [u'wangaratta', u'council', u'lift', u'rat'] [u'water', u'corp', u'plan', u'kununurra'] [u'waterg', u'report', u'confirm', u'ident', u'deep', u'throat'] [u'water', u'infrastructur', u'fund', u'illawarra'] [u'clear', u'griffith', u'club', u'auction'] [u'weak', u'consum', u'spend', u'constrain', u'manufactur'] [u'wheatbelt', u'citrus', u'grower', u'market'] [u'workplac', u'chang', u'tip', u'boost', u'rural', u'job'] [u'dear', u'secret', u'record', u'marriag'] [u'whale', u'strand', u'near', u'perth'] [u'abbey', u'crack', u'theolog', u'unsound', u'vinci', u'code'] [u'ablett', u'hall', u'fame', u'exil'] [u'accus', u'tripl', u'murder', u'face', u'court'] [u'airlin', u'hold', u'tourism', u'industri', u'talk'] [u'offer', u'train', u'dancer'] [u'anasta', u'stay', u'rugbi', u'leagu'] [u'angri', u'jail', u'assault'] [u'anti', u'syria', u'journalist', u'kill', u'blast'] [u'dead', u'miss', u'china', u'rain'] [u'augusta', u'margaret', u'river', u'shire', u'plan', u'dept'] [u'aussi', u'doco', u'workout'] [u'aussi', u'keen', u'earli', u'impress'] [u'aussi', u'swimmer', u'readi', u'world', u'champ'] [u'aust', u'deleg', u'protest', u'japan', u'whale', u'move'] [u'aust', u'drug', u'smuggler', u'jail', u'year', u'vietnam'] [u'australian', u'toddler', u'hold', u'detent'] [u'australia', u'post', u'assist', u'embassi', u'threat', u'inquiri'] [u'bear', u'retain', u'line', u'south', u'clash'] [u'beef', u'produc', u'urg', u'vote', u'levi'] [u'billiton', u'seek', u'miner', u'explor', u'licens'] [u'bolivia', u'keeper', u'fake', u'assassin', u'attempt'] [u'brack', u'take', u'brown', u'coal', u'power', u'station', u'tour'] [u'brothel', u'plan', u'spark', u'widespread', u'anger'] [u'build', u'approv', u'rise', u'month', u'slump'] [u'burn', u'condit', u'element', u'blame', u'smoke'] [u'campaign', u'aim', u'brake', u'nation', u'park'] [u'carr', u'call', u'nuclear', u'power', u'debat'] [u'carr', u'say', u'airport', u'secur', u'feder', u'respons'] [u'carr', u'seek', u'cooper', u'relationship', u'govt'] [u'cattl', u'drive', u'lift', u'moral', u'parch', u'outback'] [u'central', u'goldfield', u'shire', u'plan', u'rate', u'rise'] [u'central', u'victoria', u'featur', u'herald', u'tour'] [u'child', u'kill', u'kirkuk', u'suicid', u'attack'] [u'children', u'arrest', u'attempt', u'murder'] [u'want', u'mission', u'aust', u'night', u'patrol'] [u'commission', u'find', u'reason', u'beatti'] [u'communiti', u'back', u'children', u'commission', u'plan'] [u'corbi', u'support', u'urg', u'question', u'feder', u'govt'] [u'council', u'back', u'cabl', u'beach', u'residenti', u'plan'] [u'council', u'candid', u'want', u'quick', u'court', u'matter'] [u'councillor', u'littl', u'motorplex', u'plan'] [u'councillor', u'stand', u'albani', u'sculptur'] [u'council', u'sell', u'industri', u'estat', u'land'] [u'council', u'hear', u'concern', u'propos', u'subdivis'] [u'court', u'show', u'video', u'man', u'shoot', u'death'] [u'dept', u'defend', u'environment', u'river', u'flow'] [u'dfat', u'press', u'oversea', u'childcar', u'advic'] [u'disabl', u'scheme', u'oper', u'spotlight'] [u'doctor', u'nurs', u'plan', u'worri'] [u'doyl', u'meet', u'cattlemen', u'alpin', u'graze'] [u'drought', u'forc', u'drop', u'cattl', u'price'] [u'drought', u'hamper', u'duck', u'shoot', u'season'] [u'drought', u'region', u'reassess'] [u'eagl', u'elev', u'rooki', u'tiger', u'clash'] [u'embassi', u'powder', u'like', u'harmless'] [u'embassi', u'staff', u'releas', u'decontamin'] [u'embassi', u'threat', u'infuri', u'corbi', u'lawyer'] [u'esso', u'order', u'injur', u'worker'] [u'exit', u'poll', u'dutch', u'reject', u'treati'] [u'experiment', u'vaccin', u'reduc', u'shingl', u'incid'] [u'compens', u'soon', u'minist'] [u'famili', u'driver', u'manslaught', u'sentenc'] [u'famili', u'claim', u'trick', u'detent'] [u'farmer', u'attempt', u'copyright', u'barramundi'] [u'farmer', u'urg', u'smart', u'hire'] [u'farmer', u'urg', u'invest', u'project'] [u'feasibl', u'studi', u'back', u'communiti', u'bank'] [u'feder', u'help', u'seek', u'shark', u'fish', u'crackdown'] [u'fellow', u'camper', u'miss', u'tourist'] [u'final', u'evid', u'hear', u'siev', u'trial'] [u'financi', u'backer', u'seek', u'iron', u'project'] [u'fin', u'issu', u'illeg', u'smoke', u'crackdown'] [u'fisher', u'fear', u'log', u'harm', u'water', u'catchment'] [u'kill', u'sudanes', u'plane', u'crash'] [u'flammabl', u'substanc', u'steal', u'train'] [u'float', u'prompt', u'speak', u'tattersal', u'accus'] [u'flood', u'damag', u'road', u'receiv', u'fund', u'boost'] [u'season', u'hit', u'earli'] [u'church', u'camp', u'caretak', u'jail', u'abus'] [u'foster', u'review', u'wine', u'busi'] [u'bad', u'hurt', u'head', u'crash'] [u'frogwatch', u'welcom', u'cane', u'toad', u'trap', u'subsidi'] [u'coverag', u'give', u'embassi', u'threat', u'indonesia'] [u'futur', u'recherch', u'govt', u'hand'] [u'gatto', u'act', u'murder', u'intent', u'juri', u'hear'] [u'gillespi', u'wont', u'ash', u'game'] [u'global', u'warm', u'forc', u'rethink', u'japanes', u'dress'] [u'govt', u'appoint', u'land', u'coordin'] [u'govt', u'consid', u'anti', u'cruis', u'ship', u'termin', u'report'] [u'govt', u'urg', u'fund', u'rebuild', u'storm', u'damag'] [u'govt', u'brigalow', u'belt', u'chang'] [u'govt', u'fee', u'angler'] [u'govt', u'push', u'gunn', u'pulp', u'project'] [u'break', u'tie', u'lend', u'leas'] [u'group', u'move', u'closer', u'communiti', u'cinema'] [u'gympi', u'ambul', u'staff', u'number', u'review'] [u'haas', u'support', u'solar', u'citi', u'scheme'] [u'hamil', u'return', u'split', u'round'] [u'health', u'servic', u'form', u'local', u'cancer', u'registri'] [u'hermit', u'end', u'year', u'extinguish'] [u'hick', u'lawyer', u'claim', u'flaw', u'prosecut', u'case'] [u'hospit', u'reconstruct', u'surgeri', u'unit'] [u'howard', u'brief', u'detail', u'embassi', u'threat'] [u'defend', u'land', u'deal'] [u'import', u'squeez', u'fruit', u'grower'] [u'indonesia', u'brace', u'troubl', u'embassi', u'attack'] [u'indonesian', u'embassi', u'threat'] [u'inquiri', u'chief', u'reject', u'win', u'din', u'wit'] [u'iraq', u'bomb', u'kill'] [u'irrig', u'urg', u'water', u'alloc', u'rethink'] [u'israel', u'releas', u'palestinian', u'detaine'] [u'israel', u'free', u'palestinian', u'prison'] [u'jackson', u'juri', u'tell', u'piti', u'influenc', u'verdict'] [u'japanes', u'businessmen', u'urg', u'shun', u'suit'] [u'japan', u'rais', u'beef', u'import', u'tariff'] [u'johnson', u'brace', u'retir', u'cultur', u'shock'] [u'kangaroo', u'embrac', u'dunghil', u'manuka'] [u'compon', u'luca', u'height', u'reactor'] [u'labor', u'slam', u'hypocrit', u'sign', u'flag'] [u'labor', u'unveil', u'plan', u'alcohol', u'restrict'] [u'landhold', u'input', u'bruce', u'highway', u'work'] [u'latrob', u'plan', u'document', u'aim', u'boost', u'popul'] [u'latvia', u'vote', u'ratifi', u'constitut'] [u'lee', u'injuri', u'lovett', u'gain', u'windi', u'hill'] [u'liber', u'blame', u'brack', u'tenix', u'lose'] [u'liber', u'applaud', u'cmcs', u'speaker', u'recommend'] [u'liber', u'democrat', u'defeat', u'doubl', u'demerit'] [u'link', u'confirm', u'miss', u'woman', u'murder'] [u'local', u'govt', u'protest', u'asbesto', u'plan'] [u'london', u'talk', u'hop', u'resolv', u'ship', u'disput'] [u'luca', u'pleas', u'council', u'fund'] [u'lukewarm', u'respons', u'speed', u'reduct', u'propos'] [u'escap', u'manslaught', u'charg', u'drown'] [u'mayor', u'support', u'resourc', u'share'] [u'mccartney', u'pen', u'urban', u'furri', u'tale'] [u'mcgee', u'give', u'warrant', u'issu', u'commiss'] [u'mcgee', u'brother', u'warn', u'need', u'legal'] [u'mcgrath', u'dream', u'perfect', u'dismiss'] [u'meet', u'focus', u'road', u'upgrad'] [u'urg', u'prostat', u'cancer', u'check'] [u'metro', u'region', u'educ', u'dispar', u'spotlight'] [u'miner', u'welcom', u'export', u'infrastructur', u'review'] [u'minist', u'stay', u'silent', u'uranium', u'mine', u'polici'] [u'mix', u'feel', u'air', u'bendigo', u'park'] [u'mix', u'recept', u'wind', u'farm', u'plan', u'south', u'west'] [u'charg', u'lay', u'toowoomba', u'murder'] [u'test', u'avail', u'medicar'] [u'mower', u'man', u'museum', u'rest'] [u'question', u'mcewen', u'independ'] [u'mudge', u'gulgong', u'water', u'fluorid'] [u'nation', u'seek', u'bundaberg', u'health', u'council', u'shake'] [u'natur', u'reserv', u'recognis', u'aborigin', u'place'] [u'newcastl', u'urg', u'recognis', u'steelwork', u'impact'] [u'evid', u'reveal', u'case'] [u'servic', u'benefit', u'famili', u'deaf', u'children'] [u'mine', u'law', u'loom'] [u'nomin', u'seek', u'sport', u'hall', u'fame'] [u'north', u'coast', u'melanoma', u'case', u'rise'] [u'north', u'coast', u'record', u'higher', u'lung', u'cancer', u'rate'] [u'cane', u'grower', u'welcom', u'back', u'energi', u'plant'] [u'polic', u'pleas', u'respons', u'speed', u'limit'] [u'nurs', u'improv', u'skill', u'seek', u'educ'] [u'offici', u'advis', u'australian'] [u'feel', u'south', u'pacif', u'ladi', u'master'] [u'opposit', u'call', u'review', u'juvenil', u'justic'] [u'opposit', u'fear', u'children', u'commission'] [u'opposit', u'parti', u'claim', u'lennon', u'sidelin', u'minist'] [u'opposit', u'want', u'lifesav', u'insur', u'cover'] [u'opposit', u'want', u'sleep', u'judg', u'detail', u'public'] [u'parker', u'remain', u'bronco', u'year'] [u'parti', u'recipi', u'millionth', u'littl', u'penguin'] [u'pastor', u'recount', u'corbi', u'baptism', u'jail'] [u'patient', u'move', u'accommod', u'kyli', u'union'] [u'patterson', u'issu', u'final', u'homeless', u'fund', u'offer'] [u'pirsa', u'probe', u'gulf', u'finfish', u'escap'] [u'plan', u'devis', u'save', u'strand', u'whale'] [u'polic', u'examin', u'indonesian', u'consul', u'secur', u'need'] [u'polic', u'label', u'mayor', u'firebomb', u'attack', u'amateurish'] [u'polic', u'probe', u'gosford', u'stab', u'death'] [u'polic', u'question', u'tobacco', u'crop', u'theft'] [u'polic', u'remain', u'miss', u'rockhampton', u'woman'] [u'polic', u'crack', u'drink', u'driver'] [u'port', u'newcastl', u'get', u'xstrata', u'prais'] [u'power', u'deal', u'pullout', u'prove', u'flaw', u'andrew'] [u'public', u'wyndham', u'hospit'] [u'qanta', u'sack', u'secur', u'manag'] [u'question', u'rais', u'south', u'west', u'health', u'care'] [u'queue', u'manag', u'reduc', u'cost', u'delay'] [u'ralli', u'protest', u'govt', u'brigalow', u'belt', u'decis'] [u'region', u'scheme', u'boost', u'mental', u'health'] [u'regul', u'threaten', u'fee', u'transport'] [u'renmark', u'communiti', u'civic', u'centr', u'detail', u'loom'] [u'rescuer', u'attempt', u'free', u'strand', u'whale'] [u'resid', u'join', u'cane', u'toad', u'action', u'group'] [u'resourc', u'energi', u'stock', u'climb'] [u'ridgeway', u'promis', u'fight', u'steal', u'wag'] [u'rudd', u'urg', u'downer', u'dfat'] [u'sale', u'prove', u'hair', u'astronaut', u'barber'] [u'shoalhaven', u'river', u'fish', u'stock', u'prompt'] [u'short', u'neck', u'fossil', u'prompt', u'sauropod', u'rethink'] [u'skandali', u'look', u'forward', u'home', u'grind', u'advantag'] [u'skin', u'cancer', u'figur', u'unhealthi', u'news', u'north'] [u'socceroo', u'qualifi', u'confirm', u'olymp', u'stadium'] [u'socceroo', u'seek', u'compromis', u'parma', u'stand'] [u'spotlight', u'nativ', u'titl', u'nation', u'confer'] [u'staff', u'charg', u'serv', u'alcohol', u'drink', u'woman'] [u'strand', u'whale', u'free'] [u'strategi', u'combat', u'kidney', u'diseas', u'show', u'result'] [u'strike', u'alcan', u'worker', u'demand', u'bottl', u'water'] [u'stronger', u'export', u'narrow', u'trade'] [u'student', u'workshop', u'promot', u'vegi'] [u'submiss', u'highlight', u'region', u'dental', u'woe'] [u'suicid', u'bomb', u'attack', u'kill', u'iraq'] [u'supermarket', u'recal', u'cream', u'product'] [u'suppli', u'fear', u'boost', u'price'] [u'surgeon', u'separ', u'leg', u'littl', u'mermaid'] [u'sydney', u'pair', u'safe', u'kimberley'] [u'tasmania', u'sign', u'water', u'deal'] [u'tattersal', u'detail', u'float', u'plan'] [u'terror', u'happen', u'australia', u'indonesian'] [u'toll', u'mount', u'haiti', u'unrest'] [u'owner', u'plot', u'melbourn'] [u'torrenti', u'rain', u'lash', u'central', u'china'] [u'trio', u'face', u'court', u'accus', u'properti', u'theft'] [u'trojan', u'hold', u'user', u'ransom'] [u'truck', u'driver', u'remain', u'hospit', u'collis'] [u'truss', u'back', u'anti', u'whale', u'petit'] [u'tunnel', u'accid', u'stop', u'traffic'] [u'tuqiri', u'face', u'sanzar', u'judiciari'] [u'union', u'flag', u'legal', u'action', u'disput'] [u'union', u'confid', u'alcan', u'drink', u'water', u'safe'] [u'union', u'consult', u'brigalow', u'decis', u'minist'] [u'union', u'worri', u'ship', u'crew', u'safeti'] [u'warehous', u'disput', u'sign', u'thing', u'come', u'carr'] [u'whale', u'rescu', u'mission'] [u'worker', u'vote', u'chang'] [u'world', u'oldest', u'profess', u'categori', u'defin'] [u'lead', u'polic', u'chase'] [u'abbott', u'launch', u'rural', u'health', u'campus'] [u'aborigin', u'communiti', u'declar', u'area'] [u'opposit', u'poor', u'deal'] [u'actor', u'denis', u'richard', u'give', u'birth'] [u'adaminabi', u'enjoy', u'clean', u'drink', u'water'] [u'aircraft', u'nois', u'hit', u'children', u'read', u'memori'] [u'airport', u'oper', u'talk', u'secur'] [u'anderson', u'remind', u'airport'] [u'anglican', u'paedophil', u'ring', u'claim', u'surfac'] [u'suspici', u'packag'] [u'antarct', u'worker', u'iceberg'] [u'armi', u'base', u'receiv', u'upgrad'] [u'atkinson', u'ralli', u'turkey'] [u'atsic', u'leader', u'downplay', u'wan', u'reconcili', u'week'] [u'audit', u'find', u'drought', u'confus'] [u'aust', u'popul', u'top'] [u'australia', u'indonesia', u'relat', u'remain', u'strong', u'howard'] [u'australian', u'build', u'chopper', u'fire', u'test', u'missil'] [u'australian', u'cleric', u'call', u'withdraw', u'troop'] [u'australian', u'dead', u'maldiv'] [u'australian', u'shadow', u'ohio', u'lead'] [u'austrian', u'polic', u'dead', u'newborn', u'babi'] [u'aust', u'warn', u'jakarta', u'hotel', u'bomb'] [u'author', u'mull', u'charg', u'africa', u'deputi'] [u'author', u'criticis', u'let', u'ship', u'leav', u'port'] [u'autopsi', u'find', u'strand', u'whale', u'sick'] [u'award', u'recognis', u'braveri', u'excel', u'feder'] [u'barrel', u'roll', u'hughenden'] [u'beazley', u'stand', u'firm', u'cut'] [u'beckham', u'back', u'liverpool', u'champion', u'leagu'] [u'bendigo', u'compani', u'help', u'rebuild', u'tsunami', u'lanka'] [u'bendoc', u'polic', u'station', u'open', u'door'] [u'take', u'hold'] [u'prize', u'grab', u'golden', u'gift'] [u'bowel', u'cancer', u'campaign'] [u'hold', u'day', u'cream', u'theft'] [u'breaker', u'complac', u'north'] [u'british', u'memori', u'plan', u'bali', u'bomb', u'victim'] [u'brown', u'doctor', u'ponder', u'stem', u'cell', u'experi'] [u'build', u'societi', u'fear', u'custom', u'poach', u'asic'] [u'burnett', u'shire', u'landfil', u'recycl', u'plant'] [u'bushrang', u'sign', u'harvey'] [u'bushwalk', u'urg', u'prepar', u'kimberley'] [u'crash', u'victim', u'suffer', u'heart', u'attack'] [u'cat', u'hope', u'struggl', u'horror', u'patch'] [u'childhood', u'behaviour', u'link', u'adult', u'drive', u'habit'] [u'childhood', u'leukaemia', u'link', u'power', u'line'] [u'children', u'question', u'alleg', u'attempt', u'murder'] [u'give', u'thumb', u'student', u'voucher', u'plan'] [u'concern', u'rais', u'creek', u'contamin'] [u'reef', u'slick', u'penalti'] [u'corbi', u'legal', u'spokesman', u'meet'] [u'cost', u'obes', u'exceed', u'smoke', u'drink'] [u'council', u'seek', u'baxter', u'look', u'oval'] [u'court', u'send', u'wielangta', u'log', u'matter', u'trial'] [u'croc', u'fail', u'deter', u'rower'] [u'decis', u'trial', u'week'] [u'defeat', u'school', u'caus', u'confus'] [u'doubt', u'rais', u'steal', u'wag', u'panel'] [u'drought', u'decis', u'loom', u'western', u'victoria'] [u'drought', u'resid', u'pray', u'rain'] [u'drought', u'lower', u'farmer', u'confid', u'survey'] [u'drought', u'take', u'toll', u'south', u'coast', u'dairi', u'farmer'] [u'drunken', u'health', u'issu', u'say', u'burk'] [u'rail', u'worker'] [u'emerg', u'servic', u'chief', u'review', u'prom', u'bushfir'] [u'excess', u'weight', u'increas', u'bowel', u'cancer', u'risk'] [u'expert', u'watch', u'superbug'] [u'extinct', u'cave', u'bear', u'sequenc'] [u'farmer', u'drought', u'fight'] [u'father', u'call', u'accus', u'teen', u'murder', u'name'] [u'fear', u'bird', u'draw', u'pigeon', u'cull', u'plan'] [u'feder', u'face', u'nadal', u'dream', u'final'] [u'govt', u'lobbi', u'power', u'regul', u'port'] [u'fisher', u'barra', u'copyright', u'plan'] [u'fisher', u'meet', u'minist', u'licenc', u'buyback', u'concern'] [u'fish', u'club', u'reel', u'licenc', u'rise'] [u'cathol', u'brother', u'indec', u'assault'] [u'furnitur', u'school', u'go', u'administr'] [u'gang', u'squad', u'assist', u'alleg', u'biki', u'violenc'] [u'govt', u'accus', u'protect', u'candid', u'papunya'] [u'govt', u'admit', u'allow', u'crop', u'despit', u'weed'] [u'govt', u'announc', u'plan', u'cottag', u'redevelop'] [u'govt', u'reject', u'health', u'servic', u'fund', u'claim'] [u'greek', u'sprinter', u'testimoni', u'postpon'] [u'har', u'race', u'restructur', u'track', u'second'] [u'health', u'deal', u'coag', u'meet'] [u'henri', u'go', u'barca', u'highburi', u'boss'] [u'high', u'court', u'hear', u'gold', u'nativ', u'titl', u'challeng'] [u'highway', u'speed', u'limit', u'wont', u'increas'] [u'hmas', u'melbourn', u'dock', u'namesak', u'citi'] [u'hous', u'price', u'growth', u'year'] [u'hous', u'target', u'drive', u'shoot'] [u'hugh', u'name', u'nation', u'selector'] [u'illawarra', u'melbourn', u'flight'] [u'immigr', u'dept', u'warn', u'australian'] [u'indonesian', u'embassi', u'get', u'clear'] [u'indonesian', u'embassi', u'open', u'uncertain'] [u'indonesian', u'polic', u'charg', u'sulawesi', u'bomb'] [u'chang', u'wont', u'help', u'famili', u'confer', u'hear'] [u'impass', u'remain', u'cooper', u'coag'] [u'jackson', u'accus', u'famili', u'case', u'base', u'lie', u'defenc'] [u'jackson', u'trial', u'reach', u'climax'] [u'jail', u'warden', u'suspect', u'sulawesi', u'bomb'] [u'jetstar', u'cairn', u'base'] [u'juri', u'hear', u'final', u'argument', u'siev', u'trial'] [u'kazakh', u'cosmodrom', u'mark', u'birthday'] [u'kidney', u'patient', u'grate', u'help'] [u'kookaburra', u'face', u'south', u'korea', u'final'] [u'labrador', u'prepar', u'experi', u'lion'] [u'council', u'target', u'insur', u'compani', u'profit'] [u'lethal', u'admit', u'lion', u'season', u'knife', u'edg'] [u'local', u'indonesian', u'communiti', u'feel', u'corbi', u'verdict'] [u'lockhart', u'crash', u'investig', u'forc', u'wit'] [u'famili', u'face', u'deport', u'threat'] [u'longreach', u'rat', u'water', u'prioriti'] [u'accus', u'child', u'kill', u'court'] [u'charg', u'wheelchair', u'theft'] [u'give', u'life', u'sentenc', u'tripl', u'murder'] [u'jail', u'internet', u'child', u'sting'] [u'manu', u'arrest', u'charg'] [u'marbl', u'tourism', u'issu', u'heat'] [u'market', u'mix', u'despit', u'takeov'] [u'market', u'predict', u'takeov', u'succeed'] [u'mcgee', u'roadblock', u'evid', u'surpris', u'crash'] [u'mcgee', u'evid', u'royal', u'commiss'] [u'medic', u'investig', u'assist', u'morri', u'inquiri'] [u'meet', u'air', u'pine', u'plantat', u'cancer', u'link', u'fear'] [u'minist', u'defend', u'pulp', u'prepar', u'spend'] [u'minist', u'talk', u'recycl', u'water', u'scheme', u'benefit'] [u'mint', u'coffe', u'smell', u'like', u'safe', u'drive'] [u'mother', u'charg', u'babi', u'death'] [u'highlight', u'alpin', u'park', u'feral', u'anim', u'impact'] [u'mayor', u'join', u'opposit', u'asbesto', u'plan'] [u'nation', u'want', u'school', u'classif', u'issu'] [u'nation', u'want', u'wind', u'farm', u'rat', u'rethink'] [u'program', u'help', u'conserv', u'farm', u'water'] [u'wast', u'contractor', u'wollondilli', u'region'] [u'nomin', u'seek', u'environ', u'award'] [u'rush', u'debat', u'labor', u'say'] [u'sign', u'miss', u'sculptur'] [u'opposit', u'want', u'carr', u'cooper', u'agenda'] [u'govt', u'defend', u'anti', u'social', u'behaviour', u'polici'] [u'maori', u'hold', u'narrow', u'fiji'] [u'offici', u'hope', u'shed', u'light', u'whale', u'strand'] [u'plantagenet', u'shire', u'council', u'offic', u'face'] [u'oliv', u'process', u'plant', u'run'] [u'opposit', u'voic', u'concern', u'privat', u'prison'] [u'orang', u'water', u'suppli', u'upgrad'] [u'park', u'servic', u'monitor', u'croc', u'sight'] [u'pie', u'season', u'track'] [u'piper', u'contract', u'go', u'smoke'] [u'criticis', u'beazley', u'stand', u'cut'] [u'polic', u'free', u'slave', u'boot'] [u'polic', u'interview', u'human', u'remain'] [u'polic', u'look', u'forward', u'nightclub', u'curfew'] [u'polic', u'reject', u'suggest', u'shoot', u'link', u'biki'] [u'polic', u'launch', u'appeal', u'vampir', u'murder'] [u'polic', u'warn', u'steal', u'materi', u'danger'] [u'premier', u'thwart', u'agre', u'land', u'clear'] [u'prepar', u'need', u'truck', u'port'] [u'pressur', u'affect', u'sydney', u'tahiti'] [u'prosecut', u'get', u'time', u'prepar', u'bali'] [u'public', u'hous', u'wait', u'list', u'blow', u'wide'] [u'public', u'urg', u'whoop', u'cough', u'vaccin'] [u'qanta', u'sack', u'second', u'baggag', u'handler'] [u'record', u'sale', u'continu'] [u'refineri', u'stockpil', u'news', u'push', u'price'] [u'rescu', u'chopper', u'sale'] [u'resid', u'tourism', u'campaign'] [u'resin', u'price', u'rise', u'juic', u'drinker'] [u'ricketson', u'hang', u'boot'] [u'roar', u'hop', u'sunshin', u'state', u'lure', u'striker'] [u'robinho', u'spotlight', u'world'] [u'govt', u'accus', u'inadequ', u'drought', u'respons'] [u'sailor', u'confirm', u'sydney'] [u'school', u'tell', u'stay', u'away', u'feder', u'flagpol'] [u'schu', u'face', u'life', u'indian', u'guru'] [u'eagl', u'answer', u'critic'] [u'servic', u'sector', u'weak', u'consum', u'spend'] [u'seven', u'dead', u'boat', u'capsiz', u'western', u'india'] [u'seven', u'year', u'kill', u'babi', u'polic'] [u'sit', u'internet', u'domain'] [u'shark', u'breed', u'scheme', u'artifici', u'uterus'] [u'shark', u'fish', u'see', u'posit'] [u'sheedi', u'back', u'scrap', u'preliminari'] [u'shiit', u'cleric', u'kill', u'iraq'] [u'shot', u'fire', u'funer', u'process'] [u'singer', u'littl', u'compos', u'sculthorp', u'honour'] [u'turn', u'corbi', u'ralli'] [u'slurri', u'pipelin', u'face', u'approv', u'hurdl'] [u'stab', u'prompt', u'review', u'hospit', u'patient', u'out'] [u'state', u'territori', u'leader', u'turn', u'attent', u'health'] [u'strike', u'alcan', u'worker'] [u'suicid', u'bomb', u'kill', u'iraq'] [u'suspici', u'packag', u'address', u'downer'] [u'suspici', u'packag', u'parliament', u'hous'] [u'suspici', u'packag', u'harmless'] [u'swift', u'thunderbird', u'crush', u'win'] [u'sydney', u'airport', u'demand', u'cooper', u'approach'] [u'sydney', u'demolish', u'pngs', u'sobou'] [u'team', u'mat', u'honour', u'depart', u'grey'] [u'telstra', u'seek', u'altern', u'phone', u'tower', u'site'] [u'thurston', u'beat', u'cowboy', u'cronulla', u'clash'] [u'tower', u'bridg', u'get', u'stick', u'follow', u'mishap'] [u'townsvill', u'play', u'role', u'defenc', u'exercis'] [u'traffic', u'flow', u'truck', u'crash', u'delay'] [u'trial', u'accus', u'australian', u'embassi', u'bomber'] [u'troop', u'prepar', u'central', u'exercis'] [u'tuqiri', u'suspend', u'samoa', u'test'] [u'turf', u'club', u'honour', u'race', u'name'] [u'northern', u'crash'] [u'union', u'flag', u'alcan', u'safeti', u'concern'] [u'union', u'question', u'polli', u'rise'] [u'union', u'fear', u'chang'] [u'defend', u'cheney', u'comment', u'north', u'korea'] [u'judg', u'order', u'releas', u'ghraib', u'abus', u'video'] [u'warship', u'dock', u'sydney'] [u'valencia', u'unveil', u'kluivert'] [u'nistelrooy', u'commit', u'unit'] [u'wallac', u'play', u'richo', u'injuri', u'fear'] [u'water', u'author', u'angri', u'infrastructur', u'subsidi'] [u'water', u'author', u'consid', u'ceduna', u'desalin'] [u'water', u'error', u'prompt', u'refund'] [u'whyalla', u'teen', u'accus', u'rap', u'girl'] [u'wigan', u'snare', u'tiger', u'richard'] [u'william', u'tri', u'contact', u'sack', u'detect', u'court'] [u'windi', u'wont', u'settl', u'draw', u'pakistan'] [u'withdraw', u'need', u'wood', u'releas'] [u'woman', u'arrest', u'fals', u'statement', u'claim'] [u'woman', u'jail', u'boyfriend', u'stab', u'death'] [u'woodward', u'publish', u'book', u'deep', u'throat'] [u'worksaf', u'investig', u'fatal', u'construct', u'accid'] [u'yudhoyono', u'optimist', u'aust', u'tie'] [u'actew', u'fund', u'arrang', u'stay', u'say', u'treasur'] [u'agent', u'vow', u'clear', u'cole'] [u'black', u'dump', u'rokocoko', u'mehrten'] [u'question', u'health', u'deal'] [u'apec', u'agre', u'trade', u'tariff', u'formula'] [u'architect', u'blast', u'plan', u'council'] [u'asia', u'cours', u'world'] [u'asylum', u'seek', u'chines', u'diplomat', u'make', u'kidnap', u'claim'] [u'australian', u'catch', u'bolivian', u'unrest'] [u'beatti', u'stand', u'foster', u'law'] [u'bell', u'hit', u'maiden', u'centuri', u'england', u'declar'] [u'blaze', u'hamper', u'rescu', u'attempt', u'fatal', u'road', u'crash'] [u'britain', u'propos', u'write', u'intern', u'debt'] [u'busi', u'group', u'urg', u'visa', u'chang', u'boost', u'work'] [u'cabin', u'cruiser', u'sink', u'rottnest', u'island'] [u'call', u'nation', u'coordin', u'airport', u'secur'] [u'call', u'probe', u'alleg', u'church', u'paedophil', u'ring'] [u'canberra', u'continu', u'push', u'auslink', u'cash'] [u'china', u'keep', u'watch', u'tiananmen', u'anniversari'] [u'chines', u'diplomat', u'fear', u'kidnap'] [u'promis', u'school', u'swim', u'program'] [u'collymor', u'peg', u'pakistan', u'youni'] [u'cowboy', u'shoot', u'past', u'shark'] [u'cricket', u'leav', u'ash', u'mission'] [u'crow', u'demolish', u'bomber'] [u'dallaglio', u'injuri', u'mar', u'lion'] [u'david', u'peachey', u'william'] [u'dog', u'hold', u'draw', u'sonni', u'injur'] [u'dragon', u'warrior', u'wollongong'] [u'eagl', u'tiger', u'thriller'] [u'eagl', u'wari', u'wound', u'tiger'] [u'hail', u'histor', u'wielangta', u'log'] [u'fals', u'hijack', u'alarm', u'caus', u'virgin', u'divers'] [u'fatal', u'crash', u'follow', u'abort', u'polic', u'check'] [u'foskey', u'consid', u'rise', u'option'] [u'fred', u'pass', u'chairman', u'throw', u'ring'] [u'readi', u'patel', u'beatti', u'tell', u'polic'] [u'gibernau', u'signal', u'return', u'form', u'itali'] [u'girl', u'charg', u'attack', u'year'] [u'govt', u'delay', u'solon', u'return', u'lawyer'] [u'govt', u'grant', u'save', u'arena'] [u'grand', u'slam', u'event', u'consid', u'sunday', u'start'] [u'harmison', u'trescothick', u'lash', u'bangladesh'] [u'health', u'work', u'group', u'wast', u'time', u'say'] [u'infrastructur', u'spend', u'inadequ', u'grow'] [u'inkster', u'lead', u'sorenstam', u'lurk', u'jersey'] [u'jackson', u'juri', u'begin', u'consid', u'verdict'] [u'jackson', u'juri', u'deliber', u'resum', u'monday'] [u'judg', u'destroy', u'mabo', u'opportun', u'pearson'] [u'juri', u'continu', u'jackson', u'deliber'] [u'kabui', u'win', u'bougainvill', u'elect'] [u'labor', u'turn', u'negat', u'say', u'analyst'] [u'lib', u'plenti', u'encourag', u'women'] [u'lion', u'post', u'vital', u'docker'] [u'loeb', u'take', u'command', u'lead', u'turkey'] [u'chlamydia', u'test', u'hide', u'infect', u'rate', u'studi'] [u'charg', u'bruce', u'rock', u'stab'] [u'charg', u'mccartney', u'murder'] [u'action', u'need', u'stop', u'superbug', u'expert'] [u'mourner', u'crowd', u'funer', u'anti', u'syrian', u'journalist'] [u'nadal', u'conquer', u'feder'] [u'nadal', u'conquer', u'feder', u'reach', u'french', u'final'] [u'nasa', u'launch', u'mar', u'phoenix'] [u'navratilova', u'beat', u'mix', u'doubl', u'final'] [u'nepales', u'coupl', u'everest'] [u'law', u'protect', u'indigen', u'children'] [u'munch', u'germani'] [u'nurs', u'reject', u'molloy', u'birth', u'centr', u'offer'] [u'ohern', u'memori'] [u'opposit', u'fear', u'sydney', u'water', u'divid'] [u'opposit', u'label', u'health', u'work', u'group', u'govt'] [u'opposit', u'question', u'tullamarin', u'polic', u'number'] [u'oslo', u'polic', u'fifth', u'arrest', u'scream', u'theft'] [u'palestinian', u'leader', u'delay', u'elect'] [u'palestinian', u'polic', u'kill', u'reveng', u'oper'] [u'pentagon', u'intellig', u'share', u'alli'] [u'planet', u'destruct', u'show', u'atlas'] [u'pledg', u'port', u'arthur', u'video', u'satisfi', u'lib'] [u'polic', u'defend', u'decis', u'lock', u'cream', u'thief'] [u'polic', u'investig', u'brisban', u'shoot'] [u'polic', u'probe', u'report', u'drug', u'luggag'] [u'polic', u'speed', u'figur', u'improv'] [u'port', u'river', u'dolphin', u'sanctuari', u'world', u'leader'] [u'protest', u'harsher', u'penalti', u'drug'] [u'protest', u'demand', u'death', u'corbi'] [u'qanta', u'call', u'airport', u'polic', u'station'] [u'rann', u'welcom', u'bhps', u'takeov'] [u'rat', u'clinch', u'maiden', u'shield', u'victori'] [u'famili', u'call', u'migrat', u'review'] [u'road', u'train', u'blaze', u'forc', u'highway', u'closur'] [u'scientist', u'recognis', u'breast', u'cancer', u'work'] [u'scientist', u'measur', u'energi', u'laughter'] [u'senior', u'stumbl', u'tadini', u'take', u'wale', u'lead'] [u'sheedi', u'confid', u'bomber', u'match', u'crow'] [u'shopper', u'ask', u'darwin', u'mall', u'revamp'] [u'swan', u'hold', u'blue'] [u'syria', u'believ', u'test', u'missil'] [u'test', u'tube', u'shark', u'effort', u'misguid', u'green'] [u'thatcher', u'shoe', u'danc', u'ebay'] [u'tiger', u'overlook', u'alderman', u'coach'] [u'townsvill', u'prepar', u'aust', u'militari', u'exercis'] [u'tszyu', u'show', u'nake', u'ambit', u'weigh'] [u'arrest', u'connect', u'half', u'blood', u'princ'] [u'union', u'fear', u'filipino', u'sailor', u'job'] [u'union', u'seek', u'airport', u'secur', u'inquiri'] [u'china', u'eas', u'trade', u'tension'] [u'church', u'unveil', u'abus', u'settlement'] [u'militari', u'confirm', u'guantanamo', u'koran', u'abus'] [u'hypocrit', u'pursu', u'nuclear', u'plan'] [u'soldier', u'kill', u'afghan', u'bomb', u'blast'] [u'vanston', u'confirm', u'male', u'offic', u'watch', u'femal'] [u'prepar', u'cane', u'toad'] [u'warn', u'bore', u'water', u'level'] [u'weak', u'figur', u'high', u'price', u'stock'] [u'wind', u'road', u'lead', u'salvat', u'puerta'] [u'winton', u'join', u'cane', u'toad', u'campaign'] [u'woman', u'die', u'crash', u'northern', u'tasmanian'] [u'woman', u'kill', u'freeway', u'accid'] [u'wool', u'price', u'continu', u'downward', u'trend'] [u'zimbabw', u'criticis', u'mass', u'urban', u'evict'] [u'jazeera', u'deni', u'broadcast', u'behead'] [u'annan', u'reappoint', u'envoy', u'east', u'timor'] [u'antiqu', u'collector', u'weekend'] [u'origin', u'share', u'banksia', u'award'] [u'approv', u'seek', u'anim', u'human', u'stem', u'cell'] [u'architect', u'prais', u'school', u'energi', u'effici', u'design'] [u'argentina', u'wait', u'world', u'berth'] [u'hold', u'littl', u'hope', u'court', u'challeng'] [u'banger', u'avoid', u'defeat'] [u'bjorkman', u'mirnyi', u'beat', u'bryan', u'twin', u'french'] [u'brian', u'smith', u'john', u'lang'] [u'bulldog', u'bite', u'hawk'] [u'chirac', u'schroeder', u'want', u'constitut', u'save'] [u'compani', u'donat', u'moreton', u'rescu'] [u'cours', u'record', u'give', u'davi', u'shoot'] [u'court', u'appear', u'mccartney', u'accus'] [u'cross', u'citi', u'tunnel', u'open', u'delay'] [u'darren', u'lockyer', u'wayn', u'bennett', u'michael', u'hagan'] [u'democrat', u'founder', u'intens', u'care'] [u'demon', u'cruis', u'victori', u'roo'] [u'detent', u'rift', u'split', u'liber'] [u'digger', u'mark', u'borneo', u'anniversari'] [u'drug', u'weapon', u'cach', u'canberra', u'home'] [u'easterbi', u'replac', u'injur', u'lion', u'dallaglio'] [u'eel', u'surg', u'fourth', u'spot'] [u'elder', u'woman', u'attack', u'rob'] [u'aussi', u'memori', u'hunt'] [u'float', u'fuel', u'tattersal', u'expans', u'plan'] [u'kill', u'aceh', u'clash'] [u'franc', u'itali', u'tunnel', u'close', u'fatal'] [u'blast', u'damag', u'hallam', u'hous'] [u'georgiou', u'trade', u'blow', u'vanston'] [u'govern', u'quiet', u'solon', u'support', u'lawyer'] [u'govern', u'urg', u'halt', u'deport', u'china'] [u'govt', u'consid', u'tough', u'propos', u'driver'] [u'green', u'want', u'glori'] [u'green', u'seek', u'nation', u'plastic'] [u'hama', u'warn', u'vote', u'delay', u'troubl'] [u'hatton', u'take', u'tszyus', u'titl'] [u'henin', u'hardenn', u'conquer', u'imposs', u'odd'] [u'henin', u'hardenn', u'snub', u'eastbourn', u'save', u'wimbledon'] [u'henin', u'hardenn', u'win', u'french', u'open'] [u'henin', u'hardenn', u'win', u'french', u'open', u'final'] [u'hewitt', u'return', u'action', u'queen'] [u'humpback', u'whale', u'spot', u'migrat', u'north'] [u'indigen', u'affair', u'ministri', u'answer', u'pearson'] [u'indigen', u'child', u'foster', u'care', u'plan', u'nonsens'] [u'injur', u'gregan', u'miss', u'samoa', u'clash'] [u'iraqi', u'troop', u'refus', u'train'] [u'jetstar', u'defend', u'disabl', u'passeng', u'polici'] [u'trade', u'chines', u'diplomat', u'case', u'say', u'labor'] [u'knight', u'outclass', u'joey', u'stand', u'tall'] [u'labor', u'offer', u'bait', u'fisher'] [u'lara', u'centuri', u'lift', u'windi', u'kingston'] [u'leav', u'senat', u'committe', u'intact', u'fraser'] [u'loeb', u'close', u'fourth', u'ralli'] [u'loeb', u'track', u'turkey', u'triumph'] [u'charg', u'canberra', u'weapon', u'drug', u'haul'] [u'marin', u'institut', u'miss', u'point', u'green', u'group'] [u'martin', u'defend', u'order', u'plan'] [u'matt', u'king', u'craig', u'bellami', u'sheen'] [u'milit', u'link', u'zarqawi', u'arrest'] [u'mottram', u'win', u'sevill'] [u'batchelor', u'institut', u'head', u'admit', u'moral', u'problem'] [u'nswfa', u'urg', u'speedi', u'drought', u'assess'] [u'nuclear', u'power', u'threat', u'economi', u'beatti'] [u'oriol', u'firebird'] [u'patel', u'hunt', u'need', u'strong', u'evid', u'polic'] [u'plastic'] [u'polic', u'probe', u'austrian', u'babi', u'death'] [u'polic', u'pursuit', u'end', u'fatal', u'crash'] [u'polic', u'test', u'passeng', u'surpris', u'drug'] [u'pope', u'appeal', u'italian', u'hostag', u'releas'] [u'power', u'rebound', u'defeat', u'saint'] [u'price', u'fire', u'wale', u'content'] [u'meet', u'corbi', u'famili'] [u'reassur', u'corbi'] [u'qlds', u'honorari', u'consul', u'greec', u'die'] [u'railcorp', u'blame', u'contractor', u'secur', u'bungl'] [u'raul', u'quit', u'hint', u'alert', u'liverpool'] [u'rossi', u'steal', u'pole', u'gibernau'] [u'saddam', u'face', u'charg'] [u'politician', u'mental', u'health', u'fund'] [u'second', u'quad', u'caus', u'disciplin', u'doctor'] [u'second', u'round', u'lebanes', u'general', u'poll', u'open'] [u'sheikh', u'meet', u'wood'] [u'solon', u'respons', u'repatri', u'delay', u'vanston'] [u'spaniard', u'ralli', u'negoti', u'plan'] [u'spur', u'suspend', u'arnesen', u'chelsea', u'link'] [u'steve', u'folk'] [u'storm', u'swamp', u'tiger', u'leichardt'] [u'swedish', u'herring', u'museum', u'creat', u'stink'] [u'sydney', u'tunnel', u'builder', u'expect', u'earli', u'complet'] [u'sydney', u'tunnel', u'open', u'delay'] [u'syria', u'maintain', u'right', u'defens', u'capabl'] [u'taiwan', u'success', u'test', u'missil', u'report'] [u'delay', u'cost', u'busi', u'lobbi'] [u'territori', u'indigen', u'get', u'fund', u'boost'] [u'farmhous'] [u'miss', u'farmhous'] [u'toad', u'banana', u'wake'] [u'trade', u'concern', u'intrud', u'chen', u'treatment'] [u'tram', u'disrupt', u'worth', u'wait'] [u'treat', u'chines', u'defector', u'merit'] [u'trent', u'barrett'] [u'troop', u'uncov', u'insurg', u'bunker', u'iraq'] [u'ukrain', u'netherland', u'croatia', u'lead'] [u'urg', u'green', u'plan', u'sprawl', u'citi'] [u'kill', u'polic', u'raid', u'haiti', u'slum'] [u'blame', u'media', u'koran', u'uproar'] [u'vanston', u'warn', u'backbench', u'immigr'] [u'govt', u'criticis', u'crime', u'poll'] [u'victorian', u'win', u'environment', u'award'] [u'score', u'environment', u'award'] [u'woman', u'insist', u'girl', u'witch'] [u'wood', u'aliv', u'sheikh', u'say'] [u'world', u'environ'] [u'zdrilic', u'bag', u'sydney', u'sweep', u'group'] [u'candid', u'contest', u'poll'] [u'abbott', u'deni', u'govt', u'sell', u'medibank'] [u'present', u'hale', u'die', u'age'] [u'ablett', u'recognis', u'footbal', u'genius'] [u'accid', u'galor', u'ogradi', u'dauphin', u'liber'] [u'acut', u'mental', u'health', u'director'] [u'black', u'cap', u'play', u'fiji'] [u'citrus', u'tree', u'remov', u'canker', u'area'] [u'question', u'abbott', u'assur', u'medibank'] [u'analyst', u'ongo', u'properti', u'declin'] [u'anasta', u'tip', u'receiv', u'origin'] [u'land', u'review', u'creat', u'fear', u'tradit'] [u'asbesto', u'foundat', u'accept', u'hardi', u'liabil', u'claus'] [u'asio', u'fundament', u'wrong', u'committe', u'tell'] [u'asio', u'law', u'frighten', u'muslim'] [u'aussi', u'undaunt', u'tough', u'timet'] [u'aust', u'timor', u'odd', u'state', u'talk'] [u'aust', u'mine', u'compani', u'implic', u'congo', u'massacr'] [u'australia', u'prepar', u'pandem'] [u'replac', u'chief'] [u'blast', u'kill', u'nepal'] [u'blaze', u'start', u'conveyor', u'belt'] [u'blue', u'dump', u'kimmorley', u'anasta'] [u'britain', u'deliv', u'fresh', u'blow', u'treati'] [u'bryant', u'win', u'memori', u'green', u'stumbl'] [u'build', u'approv', u'north', u'west'] [u'build', u'permit', u'approv', u'pass', u'mark'] [u'cabinet', u'consid', u'nuclear', u'wast', u'site'] [u'cabinet', u'consid', u'nuclear', u'wast'] [u'go', u'region', u'organ', u'donor'] [u'calm', u'condit', u'assist', u'wave', u'energi', u'plant'] [u'campbel', u'chase', u'vital', u'pacif', u'whale', u'vote'] [u'campfir', u'sit', u'upgrad', u'explod', u'rock'] [u'candid', u'apologis', u'abort', u'comment'] [u'cheap', u'appl', u'import', u'shine', u'local', u'grower'] [u'chen', u'safe', u'return', u'china', u'say'] [u'chen', u'yonglin', u'seek', u'advic', u'asylum', u'request'] [u'china', u'uranium', u'talk', u'progress', u'macfarlan'] [u'chines', u'diplomat', u'fear', u'life'] [u'chines', u'diplomat', u'safe'] [u'chipp', u'leav', u'hospit', u'day'] [u'pledg', u'street'] [u'communiti', u'meet', u'roxbi', u'down', u'owner'] [u'corbi', u'protest', u'defac', u'parliament'] [u'corbi', u'tell', u'support', u'quiet'] [u'corbi', u'warn', u'anti', u'indonesia', u'reaction'] [u'council', u'consid', u'contract', u'lifeguard'] [u'council', u'offer', u'cautious', u'approach', u'anti', u'whale'] [u'council', u'urg', u'remain', u'vigil', u'forc'] [u'council', u'hand', u'road', u'respons'] [u'council', u'meet', u'minist', u'royal', u'road', u'woe'] [u'crazi', u'frog', u'face', u'complaint', u'death', u'threat', u'song'] [u'crocker', u'take', u'ralli', u'championship', u'second', u'round'] [u'crow', u'charg', u'assault'] [u'csiro', u'tip', u'frequent', u'drought'] [u'cut', u'fear', u'oversea', u'doctor', u'vet', u'unit'] [u'deer', u'group', u'reject', u'alpin', u'cull'] [u'develop', u'board', u'back', u'apprentic', u'accredit'] [u'doctor', u'muzzl', u'elect', u'comment'] [u'doctor', u'worri', u'children', u'ward', u'plan'] [u'downer', u'grant', u'defector', u'polit', u'asylum', u'lawyer'] [u'east', u'timor', u'open', u'reserv', u'investor'] [u'ebola', u'marburg', u'vaccin', u'test', u'monkey'] [u'extens', u'drought', u'assist', u'provid', u'relief'] [u'fair', u'trade', u'monitor', u'firework', u'sale'] [u'famili', u'hold', u'vigil', u'chipp'] [u'feder', u'govt', u'seek', u'communiti', u'consult'] [u'fiji', u'armi', u'chief', u'warn', u'coup', u'amnesti'] [u'fiji', u'critic', u'union', u'action', u'uniti'] [u'forc', u'redund', u'plan', u'electrolux', u'plant'] [u'forest', u'industri', u'reject', u'foresti', u'cancer', u'link', u'claim'] [u'news', u'reader', u'die'] [u'foundat', u'teach', u'financi', u'know'] [u'giant', u'anti', u'mural', u'rediscov', u'year'] [u'gold', u'coast', u'host', u'sustain', u'develop', u'confer'] [u'gorg', u'replica', u'near', u'complet'] [u'govt', u'ask', u'start', u'cloud', u'seed'] [u'govt', u'public', u'servic', u'job', u'plan'] [u'grafton', u'hospit', u'revamp', u'plan', u'begin', u'soon'] [u'grant', u'face', u'month', u'stint', u'sidelin'] [u'hardgrav', u'meet', u'wodonga', u'tafe', u'council'] [u'health', u'servic', u'rule', u'comparison', u'sydney'] [u'hezbollah', u'claim', u'victori', u'south', u'lebanon', u'poll'] [u'high', u'school', u'merg'] [u'hobart', u'lift', u'game', u'litter'] [u'hoggard', u'strike', u'england', u'overwhelm', u'bangladesh'] [u'hotel', u'hold', u'trigger', u'polic', u'probe'] [u'hungri', u'bear', u'maul', u'south', u'logan'] [u'cut', u'titl', u'tamworth'] [u'ibrahim', u'lead', u'malaysian', u'opposit', u'coalit'] [u'immigr', u'assess', u'chen', u'refuge', u'claim'] [u'indigen', u'art', u'group', u'get', u'studio', u'fund'] [u'industri', u'affect', u'melbourn', u'train', u'servic'] [u'injuri', u'blow', u'bulldog'] [u'intern', u'court', u'probe', u'alleg', u'darfur'] [u'intern', u'probe', u'open', u'darfur', u'crime'] [u'invermay', u'hous', u'blaze', u'investig'] [u'inzamam', u'ralli', u'pakistan'] [u'iran', u'urg', u'stick', u'nuclear', u'talk', u'deadlin'] [u'jackson', u'hospitalis', u'pain'] [u'jetstar', u'offer', u'wheelchair', u'athlet', u'free', u'flight'] [u'fall', u'year'] [u'jimenez', u'wale', u'woosnam', u'ponder', u'futur'] [u'judd', u'underestim', u'bomber'] [u'junior', u'soccer', u'match', u'cancel', u'violenc'] [u'juri', u'consid', u'verdict', u'siev', u'case'] [u'kimmorley', u'bitter', u'origin', u'sack'] [u'kookaburra', u'laugh'] [u'landmin', u'kill', u'nepales'] [u'liber', u'announc', u'gambier', u'preselect'] [u'loeb', u'win', u'ralli', u'turkey'] [u'london', u'live', u'ticket', u'draw'] [u'arrest', u'perth', u'shoot'] [u'die', u'north', u'hous', u'blaze'] [u'dead', u'attempt', u'murder', u'suicid', u'incid'] [u'releas', u'bail', u'drug', u'charg'] [u'question', u'bushland', u'remain'] [u'mar', u'rover'] [u'martin', u'oppos', u'nuclear', u'dump'] [u'maryborough', u'woman', u'kill', u'rollov'] [u'matthew', u'back', u'ablett', u'hall', u'fame', u'induct'] [u'mauritania', u'blame', u'qaeda', u'alli', u'dead', u'raid'] [u'mayor', u'seek', u'deplet', u'uranium', u'reassur'] [u'mayor', u'stand', u'councillor', u'effort'] [u'mayor', u'beat', u'leagu', u'stadium', u'site'] [u'maywald', u'issu', u'pipelin', u'ultimatum'] [u'mcgee', u'face', u'question', u'action', u'arrest'] [u'mckenzi', u'take', u'charg', u'team'] [u'medic', u'school', u'plan', u'wont', u'solv', u'doctor', u'shortag'] [u'medicar', u'smartcard', u'rais', u'privaci', u'concern'] [u'mental', u'health', u'area', u'offer', u'help', u'emerg', u'dept'] [u'midcoast', u'water', u'announc', u'budget', u'detail'] [u'miner', u'defend', u'assist', u'congo', u'troop'] [u'minist', u'confid', u'flood', u'issu', u'emerg'] [u'minist', u'dismiss', u'medicar', u'smartcard', u'concern'] [u'mirvac', u'boss', u'say', u'outlook', u'posit'] [u'mirvac', u'trade', u'halt', u'amid', u'profit', u'downgrad', u'talk'] [u'miss', u'father', u'southern', u'tasmania'] [u'monaghan', u'sign', u'eagl'] [u'motorcyclist', u'hurt', u'highway', u'crash'] [u'discuss', u'indonesia', u'prison', u'exchang', u'program'] [u'nadal', u'play', u'wimbledon', u'chanc'] [u'nadal', u'take', u'french', u'open', u'debut'] [u'champion', u'hatton', u'will', u'tszyu', u'rematch'] [u'health', u'servic', u'nurs', u'director', u'look', u'futur'] [u'look', u'film', u'game', u'classif'] [u'minist', u'want', u'break', u'public', u'transport'] [u'obey', u'firecrack', u'rule', u'face', u'govt', u'warn'] [u'origin', u'test', u'cheaper', u'solar', u'panel'] [u'overhaul', u'cowra', u'polic', u'station'] [u'petit', u'seek', u'breast', u'screen', u'fund'] [u'picasso', u'exhibit', u'puzzl', u'chines', u'lover'] [u'step', u'tsunami', u'fund', u'rais'] [u'polic', u'continu', u'probe', u'miss', u'explos'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'implement', u'breath', u'test', u'power'] [u'polic', u'injur', u'patrol', u'roll'] [u'polic', u'seek', u'suspect', u'driver', u'drag'] [u'polic', u'clarifi', u'sydney', u'shoot', u'detail'] [u'pont', u'play', u'ash', u'pressur'] [u'port', u'arthur', u'declar', u'nation', u'heritag', u'site'] [u'power', u'season', u'track', u'say', u'primus'] [u'premier', u'announc', u'governor'] [u'prison', u'offic', u'mobil', u'number', u'chang', u'sieg'] [u'program', u'focus', u'prevent', u'water', u'wast'] [u'public', u'pulp', u'green', u'guidelin'] [u'public', u'nuisanc', u'tell', u'fine', u'time'] [u'push', u'model', u'friend', u'communiti'] [u'budget', u'contain', u'record', u'spend', u'health'] [u'race', u'clean', u'inquiri', u'find'] [u'rail', u'servic', u'track'] [u'rain', u'forecast', u'good', u'central', u'victoria'] [u'red', u'seek', u'oversea', u'reinforc'] [u'region', u'includ', u'airport', u'drug', u'smuggl'] [u'report', u'question', u'bight', u'trawl', u'fish', u'catch', u'rat'] [u'resid', u'anger', u'respit', u'servic', u'chang'] [u'resourc', u'push', u'market', u'higher'] [u'ricciuto', u'give', u'craig', u'tick', u'approv'] [u'road', u'safeti', u'chief', u'plead', u'care', u'road'] [u'rossi', u'extend', u'lead', u'mugello', u'victori'] [u'ruano', u'pascual', u'suarez', u'seal', u'fourth', u'french', u'crown'] [u'rural', u'counsellor', u'welcom', u'drought', u'announc'] [u'rural', u'group', u'disappoint', u'nation', u'veget'] [u'saddam', u'hussein', u'face', u'charg'] [u'polit', u'corrupt', u'trial'] [u'scooter', u'rider', u'head', u'chariti', u'marathon'] [u'search', u'begin', u'miss', u'father'] [u'search', u'expand', u'miss', u'queanbeyan'] [u'search', u'find', u'miss', u'injur'] [u'search', u'miss', u'tassi'] [u'self', u'harm', u'risk', u'mother', u'charg', u'babi', u'death'] [u'servic', u'condemn', u'attack', u'ambul'] [u'cowboy', u'strong', u'origin', u'chanc', u'murray'] [u'shattock', u'offer', u'match'] [u'shire', u'appoint', u'hamilton', u'librari', u'manag'] [u'manag', u'challeng', u'mooney', u'comment'] [u'signag', u'boost', u'aim', u'stamp', u'lagoon', u'smoke'] [u'socceroo', u'lose', u'club', u'versus', u'countri'] [u'sorenstam', u'sizzl', u'jersey'] [u'spamalot', u'win', u'toni', u'glori'] [u'strong', u'expect', u'futur', u'farmer', u'week'] [u'stuart', u'face', u'fine', u'refere', u'critic'] [u'suspici', u'packag', u'shut', u'mine', u'mail', u'room'] [u'swiss', u'voter', u'right', u'coupl'] [u'syrian', u'polic', u'break', u'kurdish', u'protest'] [u'tender', u'call', u'queanbeyan', u'offic', u'block'] [u'tennix', u'worker', u'shock', u'defenc', u'contract', u'snub'] [u'thousand', u'ralli', u'support', u'maryborough', u'hospit'] [u'toad', u'marri', u'rain'] [u'qaeda', u'suspect', u'hand', u'offici'] [u'travel', u'writer', u'tour', u'break', u'hill'] [u'treasur', u'snub', u'commerc'] [u'truss', u'hear', u'wast', u'dump', u'fear'] [u'uefa', u'seek', u'solut', u'liverpool', u'dilemma'] [u'union', u'want', u'chang', u'prosecut', u'aborigin'] [u'unit', u'agre', u'deal'] [u'use', u'rain', u'forecast'] [u'run', u'archipelago', u'secret', u'prison', u'amnesti'] [u'senat', u'urg', u'guantanamo', u'shutdown'] [u'vaughan', u'want', u'ash', u'boost', u'dayer'] [u'volunt', u'monitor', u'vulner', u'grey', u'head', u'fli'] [u'volunt', u'seek', u'medic', u'research', u'institut'] [u'waugh', u'rule', u'samoa', u'test'] [u'chancellor', u'appoint', u'governor'] [u'urg', u'reject', u'court', u'challeng', u'plan'] [u'weather', u'factor', u'farm', u'success', u'abar'] [u'webb', u'start', u'maroon', u'origin'] [u'worker', u'readi', u'loss'] [u'woman', u'face', u'court', u'robberi'] [u'workplac', u'urg', u'join', u'fight', u'domest'] [u'wudinna', u'resid', u'seek', u'releas', u'hospit', u'review'] [u'boost', u'minimum', u'wage'] [u'abar', u'slash', u'grain', u'harvest', u'forecast'] [u'ablett', u'miss', u'hall', u'fame', u'ceremoni'] [u'adelaid', u'temperatur', u'soar', u'close', u'record'] [u'probe', u'latest', u'indonesian', u'embassi', u'packag', u'scare'] [u'airport', u'manag', u'play', u'region', u'secur'] [u'airport', u'secur', u'increas'] [u'push', u'bigger', u'pool', u'specialist'] [u'amnesti', u'call', u'asio', u'detain', u'power'] [u'anderson', u'call', u'deal', u'destini', u'queen'] [u'elder', u'tell', u'rann', u'poor', u'condit'] [u'aussi', u'dollar', u'pay', u'jakarta', u'embassi', u'blast'] [u'aussi', u'robert', u'fourth', u'franc'] [u'aussi', u'send', u'slim', u'line', u'track', u'field', u'team'] [u'australian', u'shoot', u'iraq', u'claim', u'help', u'plea', u'ignor'] [u'aust', u'bolster', u'defenc', u'link', u'india'] [u'aust', u'warn', u'product', u'drop'] [u'aust', u'win', u'solomon', u'whale', u'vote'] [u'barra', u'pros', u'fight', u'alp', u'licenc', u'plan'] [u'beazley', u'refus', u'play', u'hand'] [u'beazley', u'stanc', u'hurt', u'labor', u'costello'] [u'berri', u'juic', u'import', u'hit', u'local', u'grower', u'broker'] [u'blackal', u'prais', u'age', u'care', u'facil', u'effort'] [u'blair', u'washington', u'talk', u'bush'] [u'boe', u'beat', u'end', u'raaf', u'base'] [u'bolivian', u'presid', u'resign'] [u'bolivian', u'protest', u'chase', u'presid', u'palac'] [u'boss', u'get', u'suspend', u'jail', u'term', u'indec', u'deal'] [u'die', u'highway', u'crash'] [u'budget', u'expect', u'help', u'coominya', u'water'] [u'busselton', u'photo', u'anti', u'whale', u'fight'] [u'servic', u'link', u'south', u'burnett', u'gympi'] [u'cabinet', u'meet', u'discuss', u'possibl', u'nuclear', u'dump'] [u'chrome', u'safe', u'hous', u'continu'] [u'open', u'mind', u'south', u'east', u'transport', u'plan'] [u'cane', u'harvest', u'introduc', u'fuel', u'surcharg'] [u'carr', u'promis', u'coonambl', u'victim', u'donat'] [u'carr', u'urg', u'campaign', u'unfair', u'fund'] [u'chariti', u'flight', u'help', u'sick', u'child'] [u'chen', u'appeal', u'direct'] [u'chifley', u'appoint', u'femal', u'captain'] [u'chines', u'defector', u'take', u'case', u'downer'] [u'clone', u'human', u'imposs', u'decad'] [u'electr', u'plan', u'danger', u'experi'] [u'promis', u'lift', u'land', u'clear', u'moratorium'] [u'club', u'offici', u'spectat', u'face', u'disciplinari'] [u'coastal', u'soak', u'record', u'breaker'] [u'coast', u'politician', u'keen', u'budget', u'infrastructur'] [u'commission', u'examin', u'mcgee', u'crash', u'site'] [u'communic', u'plan', u'trigger', u'polic', u'fear'] [u'communiti', u'ralli', u'help', u'victim'] [u'communiti', u'urg', u'pool', u'fund'] [u'corbi', u'confid', u'appeal', u'chanc'] [u'cost', u'shift', u'anger', u'maryborough', u'council'] [u'council', u'oppos', u'river', u'water', u'storag', u'plan'] [u'council', u'seek', u'rethink', u'suspend', u'grain', u'branch'] [u'council', u'renam', u'coff', u'beach'] [u'council', u'want', u'river', u'clean', u'prevent', u'flood'] [u'court', u'appear', u'drug', u'bust', u'accus'] [u'court', u'dismiss', u'charg'] [u'court', u'martial', u'koran', u'abus', u'unlik', u'general'] [u'crop', u'forecast', u'news'] [u'crow', u'charg', u'hotel', u'assault'] [u'cruelti', u'case', u'spark', u'boost', u'winter', u'food'] [u'dampier', u'firework', u'spark', u'polic', u'hunt'] [u'dept', u'justic', u'ask', u'mediat', u'moyn', u'council'] [u'doctor', u'recognis', u'rais', u'rural', u'health', u'issu'] [u'dolphin', u'mum', u'teach', u'daughter', u'tool', u'trade'] [u'downer', u'tight', u'lip', u'chen', u'case'] [u'proceed', u'charg'] [u'drown', u'inquest', u'tell', u'teen', u'refus', u'polic', u'help'] [u'educ', u'campaign', u'target', u'cane', u'toad', u'spread'] [u'elvi', u'rama', u'museum', u'cast', u'imperson'] [u'chick', u'cruelti', u'earn', u'fine'] [u'ship', u'worker', u'say', u'work', u'promis', u'break'] [u'farmer', u'reconsid', u'drought'] [u'farmer', u'fear', u'disastr', u'yield', u'predict'] [u'farmer', u'hope', u'despit', u'dire', u'abar', u'predict'] [u'farmer', u'tell', u'nativ', u'flower', u'opportun'] [u'farmer', u'welcom', u'wheatbelt', u'rain'] [u'faulti', u'gear', u'blame', u'chopper', u'accid'] [u'feder', u'opposit', u'meet', u'tweed', u'head'] [u'women', u'work', u'eurobodalla'] [u'final', u'stage', u'rail', u'trail', u'open'] [u'test', u'quick', u'add', u'victorian', u'select'] [u'forum', u'consid', u'bowel', u'cancer', u'prevent'] [u'fund', u'boost', u'child', u'allergi', u'treatment'] [u'fund', u'countri', u'cultur'] [u'funer', u'hold', u'plane', u'crash', u'victim'] [u'gambl', u'research', u'prompt'] [u'googl', u'wall', u'street', u'media'] [u'govt', u'boost', u'board', u'away', u'allow'] [u'govt', u'consid', u'singapor', u'airlin', u'rout', u'access'] [u'govt', u'launch', u'airport', u'secur', u'crackdown'] [u'govt', u'urg', u'boost', u'travel', u'subsidi'] [u'greek', u'sprinter', u'face', u'court', u'miss', u'test'] [u'green', u'milk', u'contain', u'bottler'] [u'green', u'protest', u'open', u'slather', u'develop', u'plan'] [u'grow', u'popul', u'creat', u'challeng', u'south'] [u'hezbollah', u'say', u'poll', u'arm'] [u'hospit', u'water', u'damag', u'wors', u'think'] [u'indian', u'opposit', u'leader', u'offer', u'resign'] [u'indigen', u'leader', u'focus', u'prison', u'issu'] [u'indonesia', u'prison', u'exchang', u'deal', u'month'] [u'industri', u'growth', u'lose', u'heat'] [u'industri', u'feel', u'impact', u'citrus', u'decis'] [u'injur', u'dallaglio', u'aim', u'octob', u'comeback'] [u'injur', u'safin', u'doubt', u'wimbledon'] [u'insur', u'highlight', u'gap', u'home', u'owner'] [u'intens', u'hous', u'blaze', u'keep', u'firefight'] [u'inzamam', u'lift', u'pakistan', u'chanc'] [u'iran', u'threaten', u'aust', u'export', u'china', u'analyst'] [u'iraq', u'milit', u'threaten', u'kill', u'turkish', u'hostag'] [u'deliv', u'minimum', u'wage', u'rise'] [u'hand', u'minimum', u'wage', u'rise'] [u'irc', u'wage', u'rise', u'set', u'stage'] [u'isra', u'forc', u'brace', u'mosqu', u'violenc'] [u'loss', u'loom', u'shake'] [u'judg', u'tell', u'alleg', u'offend', u'face'] [u'kerin', u'step', u'lib', u'lose', u'elect'] [u'level', u'cross', u'safeti', u'decis', u'expect', u'soon'] [u'burn', u'petrol', u'station', u'blaze'] [u'charg', u'bruce', u'rock', u'attack'] [u'jail', u'near', u'sever', u'woman'] [u'face', u'court', u'accus', u'suppli', u'drug'] [u'face', u'court', u'polic', u'attack'] [u'mayor', u'get', u'write', u'promis', u'deplet', u'uranium'] [u'mayor', u'beat', u'emerald', u'citrus', u'industri'] [u'mayor', u'want', u'good', u'look', u'export', u'facil'] [u'medic', u'marijuana', u'user', u'defi', u'court', u'rule'] [u'melbourn', u'univers', u'privat', u'wind'] [u'melb', u'colleg', u'tie'] [u'miner', u'face', u'suit', u'congo', u'death'] [u'mine', u'compani', u'look', u'uranium'] [u'minist', u'seek', u'debat', u'prematur', u'birth', u'guidelin'] [u'mobsport', u'program', u'expand'] [u'monro', u'person', u'item', u'sell', u'million'] [u'montgomeri', u'face', u'lifetim', u'balco', u'scandal'] [u'moor', u'ponder', u'lawsuit', u'club'] [u'confid', u'prison', u'transfer', u'treati'] [u'tell', u'council', u'rate', u'rise', u'worri'] [u'mundin', u'talk', u'tough', u'ahead', u'titl', u'fight'] [u'murphi', u'give', u'shanghai', u'circuit', u'seal', u'approv'] [u'nestl', u'apologis', u'excess', u'iodin', u'babi', u'milk'] [u'nestl', u'slash', u'job', u'goulburn', u'valley'] [u'breakthrough', u'chicken', u'diseas', u'fight'] [u'school', u'build', u'import', u'kid', u'risk'] [u'quick', u'bendigo', u'park', u'plan'] [u'norwegian', u'loom', u'tour', u'threat', u'aussi', u'sprinter'] [u'verdict', u'jackson', u'trial', u'frenzi'] [u'judiciari', u'give', u'night'] [u'bring', u'regul', u'cover', u'plater'] [u'firm', u'take', u'control', u'bonlac'] [u'oakeshott', u'welcom', u'crackdown', u'speed', u'limit'] [u'ogilvi', u'lead', u'qualifi', u'open'] [u'overturn', u'truck', u'caus', u'westgat', u'bridg', u'traffic'] [u'pacif', u'fisheri', u'agenc', u'plan', u'resourc', u'reform'] [u'packag', u'send', u'embassi', u'harmless'] [u'paediatrician', u'leav', u'forc', u'patient', u'transfer'] [u'palestinian', u'strike', u'isra', u'town', u'shrine', u'clash'] [u'pentagon', u'reject', u'guantanamo', u'shutdown'] [u'perth', u'benefit', u'takeov'] [u'piston', u'spur', u'face', u'titl'] [u'pipelin', u'propon', u'quiet', u'confid'] [u'polic', u'happi', u'golden', u'gift', u'behaviour'] [u'polic', u'hope', u'madam', u'stay', u'troubl'] [u'polic', u'probe', u'rape', u'club', u'chatroom'] [u'polic', u'team', u'aim', u'highway', u'death'] [u'pope', u'condemn', u'marriag'] [u'popul', u'cap', u'urg', u'protect', u'water', u'suppli'] [u'pork', u'produc', u'pigmeat', u'import'] [u'potato', u'grower', u'spit', u'chip', u'price', u'cut'] [u'power', u'firm', u'happi', u'work', u'parti'] [u'power', u'think', u'final', u'say', u'montgomeri'] [u'plater', u'accus', u'speed', u'time'] [u'pressur', u'build', u'weed', u'sale'] [u'protest', u'urg', u'govt', u'throw', u'controversi'] [u'psychiatrist', u'deni', u'patient'] [u'public', u'kimberley', u'develop'] [u'puerta', u'withdraw', u'queen'] [u'push', u'return', u'crayfish', u'river', u'malle'] [u'budget', u'set', u'second', u'surplus'] [u'small', u'art', u'group', u'winner', u'budget'] [u'union', u'disappoint', u'wage', u'rule'] [u'quarantin', u'site', u'defend', u'despit', u'devil', u'death'] [u'record', u'centr'] [u'report', u'show', u'household', u'risk', u'fire'] [u'resid', u'urg', u'sign', u'plant', u'petit'] [u'shortag', u'delay', u'miner', u'explor'] [u'robot', u'suit', u'help', u'creat', u'supermen'] [u'rockhampton', u'name', u'young', u'qlder', u'year'] [u'isol', u'sentenc', u'mother'] [u'samoa', u'level', u'financi', u'play', u'field'] [u'senat', u'join', u'labor', u'frontbench'] [u'scan', u'confirm', u'waugh', u'week'] [u'king', u'helicopt'] [u'search', u'spark', u'polic', u'warn', u'bush', u'goer'] [u'searl', u'scout', u'england', u'player', u'market'] [u'second', u'suspici', u'packag', u'send', u'indonesia'] [u'secur', u'step', u'fijian', u'leader', u'follow'] [u'industri', u'legalis', u'tabl'] [u'share', u'market', u'make', u'small', u'gain'] [u'shark', u'kill', u'south', u'africa', u'spear', u'fisherman'] [u'shattock', u'get', u'charg', u'downgrad'] [u'shattock', u'hunt', u'fight', u'charg'] [u'shepparton', u'trucki', u'die', u'crash'] [u'societi', u'stalwart', u'retir'] [u'simpkin', u'dump', u'origin'] [u'sixteen', u'kill', u'separatist', u'violenc', u'indian'] [u'skydiv', u'serious', u'injur', u'jump'] [u'sonni', u'knife'] [u'springsur', u'matern', u'concern', u'emerg'] [u'suicid', u'bomber', u'strike', u'northern', u'iraq'] [u'suit', u'file', u'bashir', u'releas'] [u'super', u'bacteria', u'live', u'sheet', u'fingernail', u'studi'] [u'teen', u'trial', u'southbank', u'fatal', u'stab'] [u'thank', u'commonwealth', u'surplus', u'springborg', u'say'] [u'thorn', u'hope', u'start', u'origin'] [u'thousand', u'flock', u'motocross', u'star', u'shine'] [u'treat', u'effluent', u'water', u'plan', u'offer', u'green', u'benefit'] [u'tsunami', u'villag', u'water', u'kit', u'test', u'torren'] [u'tszyu', u'report', u'fire', u'trainer'] [u'charg', u'cannabi'] [u'palm', u'beach', u'crash'] [u'kill', u'gaza', u'mortar', u'bomb'] [u'union', u'promis', u'fight', u'lifeguard', u'servic'] [u'stealth', u'bomber', u'deploy', u'south', u'korea'] [u'vanston', u'urg', u'reopen', u'vietnames', u'asylum', u'case'] [u'vehicl', u'educ', u'see', u'road', u'toll'] [u'victim', u'parol'] [u'volunt', u'seek', u'school', u'mentor', u'scheme'] [u'westgat', u'freeway', u'clear', u'truck', u'accid'] [u'workcov', u'blitz', u'busi'] [u'yachtsman', u'rescu', u'uninhabit', u'fiji', u'island'] [u'young', u'hawk', u'nomin', u'rise', u'star', u'award'] [u'kill', u'accid', u'india'] [u'cinema', u'icon', u'bancroft', u'die'] [u'abandon', u'acquisit', u'plan', u'expect', u'hurt'] [u'accent', u'resourc', u'hop', u'cash', u'iron'] [u'actor', u'ann', u'bancroft', u'die'] [u'worker', u'ban', u'help', u'displac'] [u'airfar', u'rise', u'probabl', u'month', u'away'] [u'ambul', u'station', u'pay', u'volunt'] [u'anlezark', u'best', u'shoot', u'commonwealth', u'game'] [u'arm', u'cach', u'iraq', u'embassi', u'london'] [u'armi', u'say', u'rebel', u'kill', u'aceh'] [u'ashbourn', u'offer', u'clark', u'govern', u'board', u'posit'] [u'auscoal', u'freez', u'steal', u'fund'] [u'blast', u'suspect', u'extremist', u'hous', u'jakarta'] [u'blue', u'focus', u'improv', u'kick', u'game'] [u'blue', u'miss', u'mason', u'hindmarsh'] [u'bolivian', u'protest', u'swell', u'presid', u'offer'] [u'bosnian', u'fire', u'foreign', u'minist'] [u'brack', u'welcom', u'research', u'centr'] [u'brown', u'seek', u'polic', u'protect', u'defector'] [u'budget', u'deliv', u'north', u'west', u'infrastructur'] [u'budget', u'fund', u'townsvill', u'women', u'jail'] [u'build', u'apprenticeship', u'year'] [u'bush', u'announc', u'african'] [u'bush', u'blair', u'fail', u'agre', u'africa'] [u'busi', u'call', u'account', u'skill', u'shortag'] [u'busi', u'want', u'better', u'plan', u'popul'] [u'elect', u'expect', u'soon', u'western', u'queensland'] [u'park', u'debat', u'clash', u'councillor', u'meet'] [u'carr', u'urg', u'address', u'brigalow', u'debacl'] [u'cataract', u'gorg', u'reserv', u'improv', u'begin'] [u'chappel', u'salari', u'hit', u'headlin', u'india'] [u'china', u'deni', u'spi', u'claim'] [u'china', u'label', u'claim', u'slander'] [u'clark', u'rape', u'accus', u'seek', u'high', u'court', u'hear'] [u'clear', u'guantanamo', u'detaine', u'jail'] [u'accus', u'labor', u'chase', u'redneck', u'vote'] [u'pledg', u'infrastructur', u'indigen', u'polici'] [u'clps', u'powerlin', u'propos', u'label', u'hare', u'brain'] [u'club', u'get', u'melbourn', u'race'] [u'code', u'design', u'protect', u'kimberley', u'natur'] [u'corrupt', u'trial', u'juri', u'tell', u'expect', u'high', u'profil'] [u'councillor', u'reduct', u'mix', u'bless'] [u'councillor', u'latest', u'wharf', u'project', u'detail'] [u'council', u'opposit', u'unhappi', u'prostitut'] [u'court', u'tell', u'suicid', u'steal', u'luxuri'] [u'court', u'tell', u'listen', u'devic', u'drug', u'arrest'] [u'cowboy', u'worri', u'origin', u'player', u'loss'] [u'crow', u'anticip', u'tough', u'clash', u'cat'] [u'csiro', u'score', u'entomolog'] [u'cultur', u'shock', u'hit', u'shear', u'contest'] [u'cyclist', u'injur', u'collis'] [u'cyclist', u'rais', u'money', u'skin', u'cancer', u'research'] [u'date', u'methadon', u'manslaught', u'case'] [u'debat', u'rag', u'nuclear', u'power'] [u'defector', u'give', u'govt', u'secret', u'file'] [u'defector', u'wont', u'hurt', u'talk', u'vail', u'say'] [u'disast', u'report', u'highlight', u'flood', u'risk', u'perth'] [u'doubt', u'cast', u'sunshin', u'coast', u'capit', u'work'] [u'downer', u'receiv', u'chen', u'asylum', u'plea'] [u'drought', u'strip', u'economi'] [u'drought', u'spread'] [u'dumoulin', u'snare', u'lead', u'dauphin'] [u'eagl', u'prepar', u'torrid', u'clash', u'bomber'] [u'economist', u'lower', u'rate', u'forecast'] [u'elkington', u'qualifi', u'open'] [u'give', u'green', u'light', u'industri', u'site', u'clean'] [u'ethiopian', u'kill', u'elect', u'protest'] [u'reform', u'good', u'local', u'farmer', u'report'] [u'eurobodalla', u'council', u'shire', u'lift', u'rat'] [u'farmer', u'pleas', u'moira', u'east', u'drought'] [u'feder', u'tough', u'test', u'hall'] [u'femal', u'orgasm', u'gene'] [u'fighter', u'plan', u'escort', u'bomb', u'alert'] [u'figur', u'drought', u'worsen'] [u'fiji', u'union', u'plan', u'protest', u'coup', u'amnesti'] [u'fine', u'furnitur', u'student', u'express', u'concern'] [u'firefight', u'budget', u'omiss', u'complaint'] [u'fisher', u'continu', u'opposit', u'higher', u'licenc', u'fee'] [u'flood', u'hit', u'southern'] [u'fli', u'padr', u'reach', u'mileston'] [u'fonterra', u'bonlac', u'sharehold', u'juli'] [u'forc', u'sign', u'rooki', u'quartet'] [u'policeman', u'jail', u'stockpil', u'illeg'] [u'control', u'jail', u'oversea', u'child'] [u'fund', u'woe', u'conservatorium', u'cours'] [u'gather', u'discuss', u'plan', u'region'] [u'georgeson', u'rid', u'high', u'franc'] [u'glazer', u'son', u'join', u'board'] [u'gore', u'honour', u'geek', u'night'] [u'govt', u'accus', u'back', u'age', u'care', u'closur'] [u'govt', u'ask', u'nestl', u'worker', u'face'] [u'govt', u'land', u'chang', u'plan', u'hold'] [u'govt', u'provid', u'renew', u'energi', u'project'] [u'govt', u'appeal', u'pork', u'rule'] [u'govt', u'delay', u'introduct', u'transport'] [u'govt', u'cabinet', u'cater', u'decis'] [u'govt', u'beat', u'wild', u'campaign'] [u'govt', u'urg', u'help', u'perman', u'caravan', u'park', u'resid'] [u'grain', u'forecast', u'alarmist', u'analyst', u'say'] [u'greenspan', u'comment', u'fail', u'support', u'stock'] [u'green', u'reveal', u'chines', u'diplomat', u'asylum', u'letter'] [u'guidelin', u'clarifi', u'govt', u'school', u'expens'] [u'guilti', u'plea', u'boot', u'case'] [u'hagan', u'question', u'stuart', u'influenc', u'refere'] [u'handwash', u'step', u'fight', u'superbug'] [u'hawk', u'loss', u'lack', u'team', u'spirit', u'clarkson'] [u'hewitt', u'upbeat', u'wimbledon', u'chanc'] [u'high', u'temp', u'sweep', u'victoria'] [u'hill', u'urg', u'peac', u'resolut', u'china', u'taiwan'] [u'hop', u'rais', u'iraq', u'wheat', u'shipment'] [u'hop', u'rais', u'weekend', u'rain'] [u'hous', u'crack', u'drought', u'deepen'] [u'hous', u'financ', u'growth', u'run', u'steam'] [u'howard', u'commit', u'prevent', u'suicid'] [u'indian', u'tiger', u'radio', u'collar', u'check', u'poach'] [u'indigen', u'group', u'win', u'nativ', u'titl', u'claim'] [u'inquest', u'begin', u'student', u'fight', u'death'] [u'rat', u'stay', u'hold'] [u'investig', u'begin', u'suspici', u'fire'] [u'jesus', u'die', u'blood', u'clot', u'research', u'say'] [u'kewel', u'sue', u'england', u'great', u'newspap'] [u'labor', u'accus', u'keep', u'media', u'attent'] [u'labor', u'rise', u'decis'] [u'labor', u'promis', u'midwiv', u'child', u'health', u'nurs'] [u'labor', u'seek', u'answer', u'chines', u'defector', u'spi'] [u'larg', u'quak', u'strike', u'sumatra', u'coast'] [u'lewi', u'angrili', u'deni', u'split', u'tszyu'] [u'liber', u'leader', u'plan', u'elect', u'trip', u'bendigo'] [u'lion', u'fan', u'right', u'parti'] [u'mackay', u'roadwork', u'fund', u'disappoint'] [u'magpi', u'unlik', u'buckley', u'demon', u'clash'] [u'accus', u'arm', u'robberi', u'tell', u'expect', u'long'] [u'accus', u'satellit', u'dish', u'bomb', u'face'] [u'charg', u'hobart', u'sieg', u'end'] [u'charg', u'narrogin', u'home', u'invas'] [u'hold', u'babi', u'hobart', u'sieg'] [u'jail', u'underag', u'incest'] [u'ownership', u'chang', u'expect', u'affect', u'wagga'] [u'meet', u'explain', u'higher', u'cattl', u'transact', u'levi'] [u'memori', u'fail', u'mcgee', u'wife', u'commiss'] [u'minimum', u'wage', u'rise', u'cost', u'famili', u'analyst'] [u'minist', u'hear', u'port', u'hedland', u'hous', u'concern'] [u'mistress', u'admit', u'tri', u'kill', u'lover', u'wife'] [u'mix', u'wide', u'burnett', u'reaction', u'budget'] [u'warm', u'winter', u'day', u'forecast'] [u'mother', u'tale', u'take', u'orang', u'literari', u'prize'] [u'call', u'region', u'driver', u'educ', u'boost'] [u'support', u'shell', u'ethanol', u'plan'] [u'visit', u'aceh', u'check', u'program'] [u'mundin', u'give', u'chanc', u'bookmak'] [u'mundin', u'lose', u'world', u'titl', u'shoot', u'point'] [u'nadal', u'eye', u'feder', u'number', u'spot'] [u'game', u'upset', u'aust', u'conserv', u'foundat'] [u'ncoss', u'seek', u'fund', u'northern', u'river'] [u'presid', u'visit', u'bundaberg'] [u'clash', u'follow', u'bolivian', u'presid', u'resign'] [u'norfolk', u'flight', u'continu'] [u'orang', u'consid', u'cut', u'councillor', u'number'] [u'pakistan', u'draw', u'windi', u'seri'] [u'parent', u'feel', u'child', u'abus', u'alleg'] [u'park', u'woman', u'intern', u'quota', u'chief'] [u'parliament', u'hear', u'minist', u'prepar'] [u'peopl', u'smuggler', u'guilti', u'siev', u'case'] [u'peopl', u'smuggler', u'convict', u'spark', u'siev', u'inquiri'] [u'pianola', u'music', u'roll'] [u'pianola', u'play'] [u'plan', u'desalin', u'plant', u'aliv'] [u'polic', u'investig', u'church', u'assault'] [u'polic', u'benefit', u'communic', u'merger', u'plan'] [u'polic', u'vote', u'govt', u'offer'] [u'polic', u'warn', u'albani', u'driver', u'slow'] [u'possibl', u'defector', u'back', u'chines', u'claim'] [u'pratt', u'dominikov', u'fli', u'start', u'edgbaston'] [u'prima', u'faci', u'case', u'chen', u'stay', u'beazley'] [u'public', u'tell', u'need', u'escap', u'plan'] [u'public', u'rate', u'council', u'perform'] [u'budget', u'bring', u'mix', u'respons', u'toowoomba'] [u'budget', u'fail', u'impress', u'farmer'] [u'treasur', u'say', u'budget', u'surplus', u'rise'] [u'rat', u'hold', u'give', u'bank', u'stock', u'lift'] [u'region', u'workshop', u'consid', u'drought', u'suicid', u'risk'] [u'religi', u'leader', u'claim', u'block', u'polici', u'racist'] [u'renew', u'nuclear', u'power', u'debat'] [u'report', u'find', u'high', u'indigen', u'kidney', u'failur', u'risk'] [u'resid', u'want', u'street', u'light', u'urg'] [u'african', u'health', u'minist', u'fire', u'aid', u'activist'] [u'govt', u'move', u'secur', u'major', u'defenc'] [u'savag', u'question', u'sell', u'park', u'land', u'visitor'] [u'school', u'ask', u'govt', u'chen', u'famili', u'visa'] [u'scott', u'feel', u'pressur', u'major'] [u'second', u'violenc', u'ethiopia', u'poll', u'protest'] [u'second', u'defector', u'add', u'weight', u'claim'] [u'secur', u'review', u'lead', u'ticket', u'slug'] [u'secur', u'staff', u'check', u'rais', u'right', u'fear'] [u'servic', u'station', u'spark', u'safeti', u'remind'] [u'shepparton', u'council', u'deliv', u'rate', u'rise'] [u'shire', u'group', u'urg', u'oppos', u'rail', u'closur', u'plan'] [u'shoot', u'victim', u'mother', u'question', u'mental', u'health'] [u'size', u'matter', u'newcastl', u'build', u'plan'] [u'field', u'await', u'decent', u'snowfal'] [u'strong', u'demand', u'bull', u'despit', u'fall', u'cattl'] [u'superbug', u'threat', u'grow', u'expert', u'warn'] [u'support', u'nurs', u'examin', u'rape', u'victim'] [u'support', u'seek', u'goldfield', u'seat'] [u'swan', u'confid', u'frontbench', u'role', u'safe'] [u'sydney', u'oceania', u'final'] [u'taliban', u'milit', u'kill', u'soldier'] [u'chang', u'erod', u'rise', u'labor', u'say'] [u'teen', u'arrest', u'berri', u'busi', u'blaze'] [u'teen', u'face', u'court', u'sheep', u'slay'] [u'tender', u'call', u'sewerag', u'project'] [u'tenni', u'australia', u'hire', u'renown', u'coach', u'tiley'] [u'transport', u'infrastructur', u'win', u'budget'] [u'bodi', u'burn', u'hous'] [u'union', u'member', u'meet', u'mull', u'work', u'place', u'chang'] [u'union', u'plan', u'huge', u'campaign', u'govt', u'chang'] [u'union', u'worri', u'chang'] [u'union', u'threaten', u'action', u'code', u'conduct'] [u'unknown', u'bach', u'composit', u'discov'] [u'drop', u'push', u'probe', u'journalist', u'death'] [u'troop', u'arriv', u'defenc', u'exercis'] [u'vege', u'grower', u'hold', u'crisi', u'talk'] [u'vulner', u'farmer', u'diversifi', u'cope', u'drought'] [u'waff', u'oppos', u'wooli', u'foodland', u'takeov', u'plan'] [u'wage', u'decis', u'lead', u'sack', u'farmer'] [u'wage', u'decis', u'prompt', u'debat', u'futur', u'increas'] [u'govt', u'defend', u'respons', u'child', u'abus', u'state'] [u'wallabi', u'face'] [u'whale', u'spot', u'south', u'west', u'coast'] [u'wheeler', u'inquiri', u'examin', u'airport', u'crime'] [u'woman', u'jail', u'steal', u'die', u'veteran'] [u'women', u'prison', u'group', u'receiv', u'nation', u'award'] [u'workshop', u'focus', u'aquif', u'fear'] [u'abalon', u'ship', u'spark', u'visa'] [u'aborigin', u'definit', u'clear', u'lower', u'hous'] [u'acquitt', u'suspect', u'uphold'] [u'activist', u'fear', u'mass', u'chines', u'asylum', u'seeker'] [u'advoc', u'criticis', u'famili', u'detent', u'facil'] [u'contradict', u'earlier', u'evid', u'corrupt'] [u'pollut', u'woe', u'link', u'forest', u'fuel', u'burn'] [u'clear', u'give', u'olymp', u'white', u'powder'] [u'alleg', u'cocain', u'smuggler', u'deni', u'bail'] [u'field', u'candid', u'maywald'] [u'anger', u'darwin', u'mayor', u'support'] [u'anim', u'activist', u'speak', u'naval', u'exercis'] [u'artefact', u'come', u'indigen', u'cultur'] [u'asian', u'heavyweight', u'qualifi', u'world'] [u'audit', u'highlight', u'danger'] [u'australia', u'confirm', u'tour', u'bangladesh'] [u'aust', u'ralli', u'support', u'blow', u'whale'] [u'baggag', u'handler', u'arrest', u'cocain', u'charg'] [u'baggag', u'handler', u'charg', u'drug', u'haul'] [u'bathurst', u'council', u'appoint'] [u'beef', u'produc', u'capitalis', u'woe'] [u'better', u'rain', u'predict', u'rural', u'area'] [u'birthday', u'sleepov', u'end', u'tragedi'] [u'board', u'welcom', u'cattl', u'station', u'nativ', u'titl', u'decis'] [u'bowyer', u'face', u'trial', u'match', u'fight'] [u'brake', u'driver', u'educ', u'centr', u'plan'] [u'brown', u'coal', u'compani', u'urg', u'greener'] [u'brown', u'throw', u'gauntlet', u'nuclear', u'wast'] [u'budget', u'draw', u'mix', u'reaction', u'local', u'tourism'] [u'builder', u'peel', u'begin', u'banana', u'revamp'] [u'bunburi', u'council', u'woodchip'] [u'burk', u'head', u'heartland'] [u'bush', u'consid', u'guantanamo', u'option'] [u'smash', u'sydney', u'supermarket'] [u'cabinet', u'urg', u'consid', u'north', u'west', u'doctor', u'hous'] [u'cafe', u'extens', u'plan', u'creat', u'concern'] [u'cambodian', u'jail', u'kill', u'wife'] [u'carr', u'announc', u'rail', u'expans', u'plan'] [u'cart', u'water', u'rais', u'option', u'goulburn', u'water'] [u'cattlemen', u'stage', u'horseback', u'protest', u'alpin'] [u'central', u'darl', u'shire', u'discuss', u'councillor'] [u'centuri', u'remain', u'return', u'burial'] [u'children', u'fear', u'dead', u'hous'] [u'chines', u'diplomat', u'claim', u'investig'] [u'colleg', u'surgeon', u'say', u'critic', u'unfair'] [u'council', u'delay', u'draft', u'plan', u'scheme', u'deadlin'] [u'council', u'mandat', u'water', u'tank', u'hous'] [u'council', u'face', u'insur', u'worri'] [u'court', u'reserv', u'decis', u'fishermen'] [u'crespo', u'doubl', u'give', u'argentina', u'world'] [u'crow', u'sorri', u'hotel', u'phone', u'throw'] [u'dali', u'develop', u'elect', u'spotlight'] [u'defenc', u'exercis', u'fewer', u'econom', u'benefit'] [u'devonport', u'woman', u'jail', u'arm', u'robberi'] [u'docker', u'pair', u'suspend', u'catch', u'drink'] [u'doctor', u'doubt', u'detaine', u'recoveri'] [u'doctor', u'hold', u'high', u'hop', u'cancer', u'drug'] [u'dog', u'tast', u'shark', u'bring', u'reward'] [u'doubt', u'rais', u'bunburi', u'region', u'scheme'] [u'driver', u'long', u'weekend', u'safeti', u'remind'] [u'drought', u'area', u'widen'] [u'drought', u'assessor', u'tour', u'southern'] [u'drought', u'prompt', u'winter', u'crop', u'delay'] [u'duckshov', u'downer', u'urg', u'grant', u'chen', u'visa'] [u'dump', u'oppon', u'join', u'today', u'melbourn', u'ralli'] [u'embassi', u'packag', u'confirm', u'harmless'] [u'england', u'batti', u'squad'] [u'investig', u'children', u'bodi'] [u'america', u'sell', u'million'] [u'fisher', u'urg', u'lion', u'exclus', u'devic'] [u'governor', u'appoint', u'honorari', u'antarct'] [u'orang', u'chief', u'head', u'telstra'] [] [u'acquit', u'kenya', u'hotel', u'blast'] [u'hous'] [u'fraser', u'coast', u'hospit', u'short', u'doctor'] [u'fund', u'chang', u'caus', u'child', u'care', u'fear'] [u'fund', u'seek', u'boost', u'babi', u'turtl', u'protect'] [u'futur', u'plan', u'outlin', u'coal', u'industri'] [u'firm', u'claim', u'consult', u'conserv'] [u'german', u'citi', u'prepar', u'hut', u'world'] [u'gold', u'coast', u'prepar', u'continu'] [u'govt', u'ask', u'fluorid', u'deliveri'] [u'govt', u'work', u'protect', u'grind', u'water'] [u'govt', u'danger', u'breed'] [u'govt', u'budget', u'coast', u'road', u'alloc'] [u'govt', u'pressur', u'establish', u'siev', u'royal'] [u'group', u'plan', u'autism', u'satellit', u'class'] [u'shearer', u'take', u'poor', u'dig'] [u'haka', u'burst', u'ballet', u'stage'] [u'health', u'dept', u'pay', u'laptop', u'leas'] [u'health', u'dept', u'nurs', u'job'] [u'health', u'servic', u'offer', u'paediatr', u'servic', u'assur'] [u'hewitt', u'fire', u'nadal', u'warn'] [u'hobart', u'privat', u'reimburs', u'hospit'] [u'hoil', u'season'] [u'hoil', u'season', u'balanc'] [u'hong', u'kong', u'bird', u'watch'] [u'hop', u'unit', u'thwart', u'wooli', u'takeov'] [u'howard', u'dismiss', u'nonsens', u'talk', u'chen'] [u'howard', u'chen'] [u'hundr', u'expect', u'reconcili', u'forum'] [u'husband', u'bail', u'boot', u'case'] [u'icpa', u'push', u'region', u'tertiari', u'student', u'access'] [u'immigr', u'confirm', u'govt', u'sponsor', u'ship', u'worker'] [u'indigen', u'focus', u'safeti', u'messag'] [u'indigen', u'player', u'increas', u'presenc'] [u'indonesia', u'jail', u'suspect', u'milit', u'wife'] [u'industri', u'unrest', u'affect', u'ballarat', u'student'] [u'infrastructur', u'woe', u'restrict', u'mackay', u'earn'] [u'inquiri', u'examin', u'prison', u'secur', u'rat'] [u'inquiri', u'focus', u'region', u'transport'] [u'investig', u'begin', u'elder'] [u'iran', u'open', u'nuclear', u'site', u'inspector'] [u'iraqi', u'tender', u'leav', u'aust', u'wheat', u'cold'] [u'isra', u'court', u'reject', u'overturn', u'gaza', u'pullout'] [u'return', u'china', u'chen'] [u'jackson', u'lawyer', u'gag', u'singer', u'camp'] [u'john', u'call', u'blue', u'squad'] [u'journalist', u'alan', u'ashbolt', u'die'] [u'juri', u'acquit', u'indec', u'deal', u'charg'] [u'kewel', u'hurt', u'humili', u'linek', u'critic'] [u'khazal', u'face', u'terror', u'charg'] [u'kimberley', u'share', u'region', u'art', u'fund'] [u'kiwi', u'announc', u'coach'] [u'knife', u'bandit', u'hold', u'chariti'] [u'labor', u'dissid', u'name', u'polit', u'corrupt', u'trial'] [u'labor', u'vow', u'seek', u'world', u'heritag', u'list'] [u'push', u'trucki', u'fear', u'catch', u'pant'] [u'mackay', u'jail', u'cannabi', u'charg'] [u'mandatori', u'dentent', u'unnecessari', u'polici', u'georgiou'] [u'mandatori', u'detent', u'human', u'right', u'commission'] [u'die', u'caravan'] [u'face', u'court', u'caravan', u'park', u'stab'] [u'market', u'finish', u'lower'] [u'maroochi', u'council', u'lift', u'child', u'care', u'fee'] [u'martian', u'aurora', u'like', u'earth'] [u'mayor', u'back', u'rail', u'link', u'fund', u'push'] [u'mcdonald', u'urg', u'stick', u'australian', u'produc'] [u'mcgee', u'consid', u'legal', u'help', u'prioriti'] [u'mcgee', u'deni', u'avoid', u'breath', u'test', u'hit'] [u'mckenzi', u'monitor', u'form', u'sydney', u'premier', u'comp'] [u'mental', u'health', u'institut', u'question', u'state', u'budget'] [u'methan', u'volcano', u'spot', u'saturn', u'moon'] [u'microsoft', u'indonesia', u'pirat', u'softwar'] [u'milit', u'plan', u'attack', u'indonesian'] [u'minist', u'deni', u'biloela', u'resign', u'claim'] [u'minist', u'warn', u'japan', u'whale', u'boycott'] [u'molik', u'hantuchova', u'beat', u'edgbaston'] [u'mountain', u'cattlemen', u'garner', u'support', u'protest'] [u'attack', u'govt', u'disabl', u'effort'] [u'short', u'circuit', u'hit', u'power', u'plan'] [u'mundin', u'impress', u'critic', u'lose', u'fight'] [u'mundin', u'shelv', u'rugbi', u'leagu', u'comeback'] [u'murray', u'bridg', u'take', u'shape'] [u'explor', u'tool', u'save', u'mine', u'industri'] [u'inform', u'emerg', u'famili', u'case'] [u'medicar', u'rule', u'benefit', u'chronic', u'diseas'] [u'anaesthetist', u'contract', u'affect', u'surgeri', u'option'] [u'north', u'west', u'highway', u'improv'] [u'time', u'frame', u'leisur', u'centr', u'repair'] [u'send', u'drought', u'canberra'] [u'central', u'bank', u'hold', u'firm', u'rat'] [u'ombudsman', u'staff', u'head', u'tamworth'] [u'scientist', u'admit', u'fudg', u'research'] [u'opposit', u'tri', u'derail', u'govt', u'train', u'driver'] [u'perth', u'nickel', u'expect', u'benefit', u'kalgoorli'] [u'philippin', u'troop', u'alert', u'coup'] [u'player', u'associ', u'meet', u'knight'] [u'encourag', u'nuclear', u'power', u'debat'] [u'dental', u'health', u'fund', u'petit'] [u'polic', u'detain', u'stray', u'killer'] [u'polic', u'hunt', u'fast', u'food', u'store', u'arm', u'bandit'] [u'polic', u'hunt', u'secur', u'guard', u'death'] [u'polic', u'probe', u'inform', u'school', u'abus', u'claim'] [u'polic', u'search', u'driver', u'child', u'abduct'] [u'polic', u'target', u'earli', u'morn', u'speedster'] [u'port', u'kembla', u'see', u'greater', u'secur', u'risk'] [u'prefer', u'site', u'choos', u'saleyard'] [u'protect', u'anim', u'ocean', u'sound', u'coalit', u'urg'] [u'licenc', u'condit', u'spark', u'civil', u'liberti'] [u'public', u'help', u'seek', u'catch', u'school', u'bug'] [u'public', u'urg', u'highway', u'work'] [u'public', u'warn', u'telstra', u'imperson'] [u'falun', u'gong', u'member', u'support', u'claim'] [u'rail', u'trip', u'mark', u'victori', u'pacif'] [u'rain', u'encourag', u'drought', u'stricken', u'farmer'] [u'raisin', u'fight', u'caviti', u'diseas', u'studi'] [u'recruit', u'woe', u'divorc', u'armi'] [u'region', u'consult', u'indigen', u'bodi'] [u'renegad', u'meet', u'howard', u'detent'] [u'replac', u'telstra', u'chief', u'announc'] [u'resid', u'urg', u'precaut', u'storm'] [u'review', u'consid', u'monaro', u'matern', u'servic'] [u'rock', u'attack', u'stop', u'servic'] [u'roddick', u'blast', u'philippoussi', u'queen'] [u'rspca', u'label', u'bird', u'poison', u'cruel'] [u'rural', u'pharmaci', u'play', u'fight', u'substanc'] [u'samoa', u'good', u'countri', u'test', u'warm'] [u'school', u'urg', u'trial', u'singl', u'class'] [u'schumach', u'longer', u'canada', u'favourit'] [u'scientist', u'sumatra', u'quak', u'warn'] [u'second', u'tragedi', u'prompt', u'winter', u'warn'] [u'second', u'half', u'blitz', u'help', u'lion', u'second', u'tour'] [u'senat', u'wont', u'need', u'cross', u'floor', u'nuclear', u'dump'] [u'shark', u'patrol', u'fund', u'slash', u'budget'] [u'shire', u'slide', u'closer', u'tourism', u'attract'] [u'soil', u'test', u'improv', u'barrier', u'reef', u'water'] [u'spanish', u'king', u'franc', u'nadal', u'bomb', u'germani'] [u'spi', u'control', u'china', u'defector', u'say'] [u'stanhop', u'wont', u'draw', u'final', u'cost', u'arboretum'] [u'stanthorp', u'handl', u'disast', u'spotlight'] [u'straw', u'make', u'surpris', u'visit', u'iraq'] [u'student', u'death', u'inquest', u'hear', u'teacher', u'blue'] [u'supermodel', u'enlist', u'wool', u'campaign'] [u'suspici', u'packag', u'parliament', u'embassi'] [u'parliament', u'debat', u'definit', u'aborigin'] [u'tbird', u'look', u'upset', u'swift'] [u'teenag', u'attack', u'lyneham'] [u'teenag', u'hold', u'custodi', u'tram', u'theft'] [u'haka', u'stage'] [u'contract', u'bird', u'vietnam'] [u'tsunami', u'breast', u'implant', u'inappropri'] [u'tyson', u'vow', u'oppon', u'like', u'fish'] [u'discuss', u'iraq', u'weapon', u'inspect', u'team'] [u'unemploy', u'steadi'] [u'union', u'blame', u'skill', u'shortag', u'apprentic'] [u'union', u'seek', u'forestri', u'loss', u'answer'] [u'union', u'hold', u'tongala', u'nestl', u'talk'] [u'hear', u'australian', u'child', u'welfar', u'report'] [u'sailor', u'canadian', u'arrest', u'amphetamin'] [u'vanston', u'launch', u'famili', u'style', u'detent', u'project'] [u'nuclear', u'bomb', u'north', u'korea'] [u'whale', u'lobbi', u'japan', u'unhappi'] [u'wing', u'fitzgibbon', u'healthi', u'daley', u'hospit'] [u'wollongong', u'famili', u'relationship', u'centr'] [u'woman', u'get', u'stress', u'compo', u'tri', u'rescu'] [u'wool', u'process', u'plant', u'closur', u'cost', u'job'] [u'zeehan', u'appeal', u'murder', u'jail', u'sentenc'] [u'bodi', u'iraq'] [u'ahmad', u'elrich', u'join', u'australian'] [u'black', u'shred', u'fiji', u'lion', u'warm'] [u'alpin', u'graze', u'nation', u'heritag', u'list'] [u'anger', u'lack', u'aborigin', u'consult'] [u'anti', u'rape', u'devic', u'creat'] [u'gain', u'macquari', u'leap', u'ahead'] [u'austminex', u'consolid', u'tenement'] [u'australia', u'make', u'list', u'wealth', u'creation'] [u'australian', u'groom', u'dutch', u'open'] [u'australian', u'youngster', u'start', u'world'] [u'australia', u'anti', u'whale', u'stanc', u'ridicul'] [u'open', u'silo', u'fee'] [u'baggag', u'handler', u'face', u'trial', u'jihad', u'book'] [u'basin', u'upgrad', u'allow', u'higher', u'water', u'flow'] [u'gun', u'contain', u'toy'] [u'bear', u'beat', u'net', u'dolphin'] [u'shortag', u'delay', u'qasim', u'transfer'] [u'biki', u'gang', u'raid', u'expect', u'spark', u'polic', u'charg'] [u'bolivian', u'militari', u'urg', u'polit', u'crisi'] [u'bomber', u'push', u'eagl'] [u'bowl', u'club', u'blood', u'end', u'knife', u'assault'] [u'break', u'hill', u'learn', u'shire', u'confer'] [u'brown', u'hope', u'africa', u'debt', u'deal'] [u'buckley', u'give', u'chanc', u'return', u'monday'] [u'busi', u'angri', u'water', u'charg'] [u'busi', u'manag', u'defend', u'kewel', u'deal'] [u'bolster', u'communiti', u'care', u'mental'] [u'campbel', u'brush', u'critic', u'whale', u'stanc'] [u'club', u'make', u'offici'] [u'cattern', u'jump', u'ship'] [u'china', u'ask', u'australian', u'falun', u'gong', u'member'] [u'chopper', u'crash', u'spark', u'effort', u'locust'] [u'clean', u'begin', u'storm', u'lash', u'adelaid'] [u'coal', u'export', u'predict', u'pick'] [u'commiss', u'contact', u'offici', u'poll', u'claim'] [u'commiss', u'probe', u'clps', u'poll', u'help', u'claim'] [u'concern', u'rais', u'anti', u'terror', u'warrant'] [u'consid', u'effect', u'uranium', u'brown', u'urg', u'voter'] [u'controversi', u'plan', u'law', u'green', u'light'] [u'corbi', u'lawyer', u'appli', u'media', u'blanket'] [u'costello', u'ask', u'democrat', u'reveal', u'hand'] [u'court', u'chief', u'take', u'rein', u'bolivia'] [u'court', u'recognis', u'kimberley', u'nativ', u'titl', u'right'] [u'court', u'wait', u'wife', u'canadian', u'drug', u'accus'] [u'cyclist', u'link', u'indec', u'assault', u'polic'] [u'dajka'] [u'dajka', u'face', u'cycl', u'disciplinari', u'hear'] [u'darwin', u'airport', u'plan', u'secur'] [u'date', u'nasa', u'deep', u'impact'] [u'david', u'hick', u'repatri'] [u'debat', u'rag', u'albani', u'build', u'height'] [u'debus', u'agre', u'forest', u'log', u'meet'] [u'delta', u'push', u'fire', u'power', u'plant'] [u'desert', u'race', u'scrutin', u'begin'] [u'detect', u'start', u'work', u'patel', u'case'] [u'detent', u'talk', u'amiabl', u'say'] [u'director', u'criticis', u'sydney', u'film', u'festiv'] [u'diva', u'tackl', u'plate'] [u'doctor', u'forum', u'spotlight', u'region', u'health'] [u'doctor', u'question', u'smear', u'guidelin'] [u'doctor', u'warn', u'loom', u'hospit', u'crisi'] [u'doubl', u'demerit', u'warn', u'long', u'weekend'] [u'doubt', u'rais', u'irrig', u'compo', u'fund'] [u'drink', u'driver', u'get', u'year', u'fatal', u'crash'] [u'driver', u'urg', u'break', u'long', u'weekend'] [u'drug', u'money', u'pay', u'mackay', u'coupl', u'wed'] [u'consid', u'burn', u'consult', u'feedback'] [u'year', u'sentenc', u'reckless', u'drive'] [u'europ', u'go', u'difficult', u'period', u'chirac', u'say'] [u'exercis', u'help', u'breast', u'cancer', u'recoveri'] [u'explos', u'spanish', u'airport'] [u'falun', u'gong', u'sue', u'canberra', u'protest'] [u'famili', u'seek', u'compo', u'school', u'death'] [u'farina', u'upbeat', u'despit', u'lacklustr', u'kiwi'] [u'farmer', u'offer', u'help', u'hand', u'devast'] [u'fatal', u'hous', u'prompt', u'babysitt'] [u'favourit', u'scratch', u'derbi'] [u'feder', u'breez', u'hall', u'semi'] [u'feral', u'hors', u'problem', u'near', u'control'] [u'figur', u'highlight', u'lower', u'north', u'coast', u'rat'] [u'film', u'maker', u'angri', u'festiv', u'negat'] [u'foley', u'tell', u'corrupt', u'trial', u'explos', u'reaction'] [u'minist', u'staffer', u'urg', u'complain'] [u'shower', u'death', u'prompt', u'remov'] [u'offic', u'revis', u'staff', u'offer'] [u'govern', u'disput', u'heritag', u'list', u'implic'] [u'govt', u'accus', u'rehash', u'traffic', u'squad', u'plan'] [u'govt', u'dismiss', u'push', u'bring', u'hick', u'home'] [u'govt', u'figur', u'highlight', u'high', u'kiama', u'council', u'rat'] [u'govt', u'report', u'card', u'rat', u'northern', u'council'] [u'govt', u'plead', u'clemenc', u'australian', u'death'] [u'green', u'light', u'project', u'expans'] [u'greenspan', u'allud', u'rate', u'rise'] [u'gregori', u'closur', u'blow', u'communiti'] [u'harmison', u'england', u'warm'] [u'hawk', u'sign', u'trio'] [u'hayden', u'readi', u'bash', u'england'] [u'health', u'union', u'threaten', u'work', u'ban', u'deal'] [u'heavier', u'rain', u'predict', u'central', u'victoria'] [u'hickss', u'father', u'push', u'action', u'releas', u'comment'] [u'hockey', u'homestead', u'auction'] [u'howard', u'open', u'suggest', u'immigr', u'detent'] [u'howard', u'meet', u'georgiou', u'mandatori', u'detent'] [u'hundr', u'sign', u'anti', u'whale', u'petit'] [u'hydro', u'say', u'propos', u'powerlin', u'pose', u'health'] [u'ibuprofen', u'link', u'heart', u'risk'] [u'ierodiaconou', u'look', u'doubt', u'winter', u'olymp'] [u'saviour', u'say', u'joey'] [u'indonesian', u'polic', u'chief', u'puzzl', u'travel', u'warn'] [u'inquiri', u'recommend', u'death', u'face', u'murder', u'charg'] [u'inquiri', u'recommend', u'patel', u'charg', u'murder'] [u'intern', u'student', u'attack', u'harass', u'week'] [u'jail', u'worker', u'get', u'child', u'porn', u'sentenc'] [u'john', u'expect', u'slot', u'like', u'away'] [u'judg', u'dismiss', u'mombasa', u'hotel', u'bomb', u'case'] [u'kalbarri', u'form', u'mental', u'health', u'support', u'group'] [u'karri', u'webb', u'join', u'golf', u'time', u'great'] [u'kimberley', u'nativ', u'titl', u'decis'] [u'kirkuk', u'anti', u'corrupt', u'offici', u'kill'] [u'kiwi', u'pressur', u'ahead', u'shear', u'comp'] [u'kluivert', u'valencia', u'hit', u'snag'] [u'kyrgyz', u'parliamentarian', u'shoot', u'dead'] [u'lappin', u'mileston', u'celebr', u'hold'] [u'lawyer', u'defector', u'say', u'see', u'evid'] [u'licuria', u'say', u'magpi', u'keen', u'buckley', u'return'] [u'littl', u'snow', u'season', u'open'] [u'liverpool', u'defend', u'champion', u'leagu', u'titl'] [u'maleni', u'supermarket', u'site', u'sell'] [u'maradona', u'grant', u'napoli', u'farewel', u'match'] [u'meander', u'valley', u'council', u'take', u'role'] [u'face', u'terror', u'charg'] [u'militari', u'releas', u'file', u'elvi', u'mcqueen', u'gabl'] [u'motorcyclist', u'accus', u'highway', u'ride'] [u'motorcyclist', u'lose', u'licenc', u'ride'] [u'rais', u'alstonvill', u'bypass', u'fund', u'question'] [u'murray', u'confid', u'cowboy', u'origin', u'player'] [u'nation', u'train', u'deal', u'reject'] [u'nato', u'african', u'peacekeep', u'darfur'] [u'near', u'half', u'dubbo', u'resid', u'ignor', u'risk'] [u'shire', u'settl'] [u'tobacco', u'polici', u'call', u'aggress', u'action'] [u'concess', u'hostag', u'releas', u'afghan', u'govt'] [u'easi', u'infrastructur', u'woe'] [u'link', u'airport', u'arrest', u'wider', u'drug', u'probe'] [u'progress', u'wall', u'rais', u'plan'] [u'woolli', u'think', u'urin', u'solut', u'pollut'] [u'offici', u'crack', u'evas', u'scheme'] [u'otway', u'gain', u'nation', u'park', u'status'] [u'pakistan', u'shabbir', u'undergo', u'action', u'test', u'england'] [u'parent', u'angri', u'student', u'accommod'] [u'perth', u'splash', u'winter', u'delug'] [u'say', u'produc', u'open', u'higher', u'cattl'] [u'plan', u'begin', u'breast', u'cancer', u'servic'] [u'polic', u'break', u'protest', u'philippin'] [u'polic', u'crack', u'scam'] [u'polic', u'interview', u'wyong', u'survivor'] [u'polic', u'investig', u'hous', u'determin'] [u'polic', u'bali', u'enact', u'arrest'] [u'polic', u'crash', u'victim'] [u'polic', u'raid', u'trigger', u'biki', u'arrest'] [u'polic', u'tight', u'lip', u'wyong', u'hous', u'detail'] [u'polic', u'unearth', u'drug', u'traffic', u'syndic'] [u'powel', u'serv', u'notic', u'sprint', u'rival'] [u'power', u'station', u'promis', u'greener', u'outcom'] [u'predict', u'hous', u'boom', u'expect', u'challeng'] [u'premiership', u'prowl'] [u'protein', u'help', u'treat', u'brain', u'injuri'] [u'protest', u'demand', u'detent', u'children'] [u'admit', u'counterfeit', u'drug', u'charg'] [u'rainfal', u'forecast', u'bring', u'hope', u'farmer'] [u'rain', u'offer', u'farmer', u'respit'] [u'collina', u'bow', u'june'] [u'resid', u'voic', u'council', u'merger', u'opposit'] [u'restaur', u'worker', u'bash', u'robberi'] [u'rider', u'gear', u'quilti', u'event'] [u'rockhampton', u'celebr', u'anniversari'] [u'lead', u'intern', u'student', u'figur'] [u'sale', u'hospit', u'paediatrician', u'work'] [u'samoa', u'uncap', u'player', u'face', u'wallabi'] [u'chang', u'citi', u'experi', u'hous', u'boom'] [u'seafood', u'export', u'decad'] [u'secur', u'fuel', u'cost', u'push', u'ferri', u'fare', u'car'] [u'industri', u'pass', u'lower', u'hous', u'heat'] [u'sheedi', u'back', u'youngster', u'turn', u'bomber'] [u'shire', u'join', u'forc', u'combat', u'land', u'shortag'] [u'signific', u'fine', u'death', u'welcom'] [u'sikh', u'communiti', u'converg', u'griffith', u'game'] [u'skaif', u'quickest', u'shanghai', u'practic'] [u'smell', u'remain', u'groyn', u'remov', u'project', u'hold'] [u'sorenstam', u'make', u'solid', u'start', u'lpga', u'championship'] [u'agreement', u'park', u'site'] [u'strong', u'support', u'plan', u'plastic'] [u'studi', u'highlight', u'high', u'mildura', u'growth'] [u'studi', u'suggest', u'cardiac', u'risk', u'painkil'] [u'studi', u'warn', u'ibuprofen', u'risk'] [u'support', u'plan', u'disabl', u'youth'] [u'survey', u'highlight', u'tamworth', u'growth'] [u'survey', u'gaug', u'thought', u'telstra', u'sale'] [u'sydney', u'face', u'trial', u'terrorist', u'attack', u'plan'] [u'teen', u'death', u'inquest', u'find', u'expect', u'today'] [u'teen', u'jail', u'bertrand', u'death', u'threat'] [u'thunderstorm', u'caus', u'flood', u'adelaid'] [u'tiger', u'streak', u'away', u'sink', u'shark'] [u'timber', u'industri', u'seek', u'highway', u'safeti', u'boost'] [u'timber', u'plantat', u'plan', u'creat', u'green', u'consider'] [u'tourism', u'exchang', u'promot', u'region'] [u'tourism', u'group', u'back', u'west', u'macdonnel', u'rang'] [u'truck', u'speed', u'crackdown', u'need', u'target', u'driver', u'say'] [u'turmer', u'inhibit', u'cancer', u'spread', u'mice'] [u'tyson', u'mcbride', u'weigh'] [u'union', u'meet', u'austop', u'loss'] [u'unhappi', u'staff', u'work', u'ban'] [u'militari', u'cooper', u'drug', u'investig'] [u'navi', u'drug', u'accus', u'face', u'zero', u'toler'] [u'offici', u'defend', u'tobacco', u'trial', u'decis'] [u'vanston', u'ask', u'east', u'timores', u'inform'] [u'vietnam', u'execut', u'australian', u'drug', u'smuggl'] [u'virus', u'put', u'hackett', u'canberra', u'meet'] [u'wallabi', u'look', u'futur', u'samoan'] [u'wallac', u'want', u'father', u'overhaul'] [u'watkin', u'monitor', u'kirkland', u'situat'] [u'wealthi', u'australian', u'outstrip', u'industrialis'] [u'webber', u'warn', u'danger'] [u'webb', u'join', u'golf', u'time', u'great'] [u'weighbridg', u'worker', u'learn', u'option'] [u'wheat', u'contamin', u'trace', u'iraqi', u'mill'] [u'mammogram', u'experi', u'count', u'studi'] [u'wollongong', u'properti', u'market', u'slow'] [u'woman', u'win', u'payout', u'fail', u'breast', u'enlarg'] [u'world', u'runner', u'earli', u'work'] [u'zidan', u'quit', u'real'] [u'airfar', u'rise', u'claim', u'anger'] [u'alleg', u'kidnapp', u'drag', u'policewoman'] [u'allenbi', u'lead', u'maryland'] [u'aussi', u'reach', u'quarter', u'final', u'pari', u'seven'] [u'babe', u'ruth', u'contract', u'sell', u'million'] [u'backbench', u'meet', u'detent'] [u'weather', u'end', u'quilti', u'earli'] [u'baghdad', u'bomb', u'blast', u'kill'] [u'beazley', u'declar', u'battleground'] [u'beazley', u'vow', u'fight', u'reform'] [u'name', u'struggl', u'final', u'open', u'tune'] [u'bomber', u'hit', u'iraqi', u'polic', u'academi'] [u'bomber', u'push', u'eagl'] [u'bomber', u'chanc', u'make', u'final', u'sheedi'] [u'bomber', u'chanc', u'make', u'final', u'sheedi'] [u'bomb', u'rip', u'baghdad', u'street'] [u'boot', u'play', u'ibuprofen', u'heart', u'attack', u'link'] [u'british', u'rock', u'star', u'queen', u'birthday', u'list'] [u'bronco', u'roll', u'slide', u'raider'] [u'bush', u'unit', u'north', u'korea', u'nuclear', u'stand'] [u'campbel', u'urg', u'nuclear', u'power'] [u'carr', u'promis', u'shoot', u'energi', u'need'] [u'carr', u'speed', u'water', u'project'] [u'celebr', u'breath', u'auction'] [u'chines', u'hotel', u'kill'] [u'chines', u'offici', u'pose', u'immigr', u'offic'] [u'clark', u'keat', u'interview'] [u'climat', u'chang', u'prolong', u'drought', u'condit'] [u'concern', u'rais', u'prison', u'transfer', u'plan'] [u'crowd', u'check', u'desert', u'race', u'competitor'] [u'cycl', u'offici', u'outrag', u'olymp', u'chang'] [u'dobbin', u'famili', u'advis', u'remain'] [u'doctor', u'warn', u'global', u'warm', u'health', u'impact'] [u'drought', u'break', u'rain', u'fall', u'west'] [u'eel', u'slipperi', u'struggl', u'knight'] [u'china', u'clinch', u'deal', u'textil', u'export'] [u'europ', u'oldest', u'civilis', u'unearth'] [u'feder', u'eas', u'past', u'haa', u'reach', u'hall', u'final'] [u'femal', u'artist', u'centr', u'stage', u'venic', u'biennal'] [u'fink', u'race', u'death', u'investig'] [u'marin', u'kill', u'western', u'iraq'] [u'flood', u'corbi', u'chariti', u'concern', u'govt'] [u'free', u'italian', u'return', u'home', u'afghanistan'] [u'german', u'court', u'retir', u'elder', u'career', u'crimin'] [u'gibernau', u'grab', u'pole', u'catalan'] [u'girl', u'grab', u'sexual', u'assault', u'coff', u'harbour'] [u'gough', u'tell', u'england', u'adopt', u'aussi', u'mental'] [u'hackett', u'finalis', u'montreal', u'program'] [u'hewitt', u'bundl', u'queen'] [u'hobart', u'privat', u'recov', u'burst', u'pipe'] [u'howard', u'keep', u'open', u'mind', u'detent', u'chang'] [u'iaea', u'confirm', u'iran', u'halt', u'nuclear', u'activ'] [u'immunologist', u'honour', u'genet', u'research'] [u'indigen', u'festiv', u'kick', u'woodford'] [u'investig', u'corrim', u'hous', u'begin'] [u'iraqi', u'gunmen', u'kill'] [u'israel', u'palestinian', u'start', u'coordin', u'gaza'] [u'italian', u'hostag', u'return', u'home', u'afghanistan'] [u'jackson', u'juror', u'deliber', u'week', u'verdict'] [u'japan', u'drive', u'cool', u'choke', u'maker'] [u'johnston', u'cite', u'danger', u'tackl'] [u'kelli', u'win', u'open', u'shanghai', u'race'] [u'vote', u'aborigin'] [u'labor', u'group', u'back', u'propos', u'detent', u'chang'] [u'late', u'darter', u'goal', u'sink', u'firebird'] [u'leader', u'debat', u'focus', u'power', u'plan'] [u'leisel', u'sizzl', u'world', u'championship', u'warm'] [u'leopard', u'owner', u'charg', u'endang', u'children'] [u'lion', u'expect', u'brown', u'midfield', u'role'] [u'lion', u'trot'] [u'manila', u'alert', u'protest'] [u'maori', u'claim', u'breakthrough', u'lion'] [u'mclaren', u'pace', u'canada'] [u'melandri', u'set', u'pace', u'catalan', u'practic'] [u'merckx', u'win', u'stage', u'landaluz', u'lead', u'dauphin'] [u'mix', u'respons', u'church'] [u'nasa', u'chief', u'oust', u'report'] [u'hick', u'lawyer', u'find', u'hope', u'comment'] [u'telstra', u'boss', u'vow', u'bridg', u'divid'] [u'hous', u'death', u'toll', u'climb'] [u'nuttal', u'defend', u'hospit'] [u'nuttal', u'denial', u'health', u'woe', u'opposit'] [u'hold', u'bomb', u'threat', u'tasmanian', u'school'] [u'opposit', u'criticis', u'carr', u'power', u'plan'] [u'patel', u'fair', u'trial', u'concern', u'nonsens'] [u'patel', u'patient', u'urg', u'compens', u'chang'] [u'paul', u'roo', u'interview'] [u'perth', u'get', u'anglican', u'archbishop'] [u'plan', u'museum'] [u'plan', u'centr', u'asylum', u'seeker', u'drop'] [u'polic', u'curb', u'road', u'toll'] [u'polic', u'hunt', u'black', u'swan', u'killer'] [u'polic', u'investig', u'death', u'custodi'] [u'polic', u'search', u'alleg', u'attack', u'trio'] [u'polic', u'sniff', u'indoor', u'cannabi', u'crop'] [u'port', u'power', u'bulldog'] [u'posit', u'test'] [u'probe', u'continu', u'evas', u'scheme'] [u'democraci', u'group', u'ralli', u'support', u'defector'] [u'labor', u'confer', u'focus'] [u'rabbitoh', u'stun', u'eagl'] [u'raid', u'candid'] [u'remain', u'costa', u'rica', u'australian'] [u'roddick', u'beat', u'grosjean', u'queen'] [u'rural', u'doctor', u'debat', u'get', u'heat'] [u'saint', u'punish', u'lacklustr', u'hawk'] [u'school', u'flood', u'toll', u'rise'] [u'sealant', u'help', u'water', u'flow', u'dam'] [u'search', u'paper', u'scissor', u'rock', u'champion', u'begin'] [u'sharapova', u'battl', u'past', u'daniilidou', u'semi', u'final'] [u'skaif', u'win', u'shootout'] [u'relief', u'farmer', u'rain', u'fall'] [u'sorenstam', u'lpga', u'championship'] [u'spotlight', u'turn', u'paparazzi'] [u'basil', u'win', u'stradbrok'] [u'swift', u'phoenix', u'remain', u'undef'] [u'sydney', u'readi', u'oceania', u'final'] [u'sydney', u'secur', u'championship', u'berth'] [u'syria', u'compil', u'lebanon', u'list'] [u'thousand', u'attend', u'anti', u'arroyo', u'protest'] [u'tiger', u'play', u'minut', u'say'] [u'time', u'trial', u'scrap', u'olymp', u'track', u'cycl'] [u'sheen', u'interview'] [u'injur', u'caravan', u'freeway', u'roll'] [u'unrest', u'keep', u'coupl', u'strand', u'bolivia'] [u'appoint', u'vice', u'admir', u'counter', u'terror', u'post'] [u'scienc', u'bodi', u'attempt', u'evolut', u'fact'] [u'agre', u'wipe', u'countri', u'debt'] [u'complet', u'unit'] [u'vote', u'pledg', u'eas', u'bolivian', u'protest'] [u'wallabi', u'thrash', u'samoa'] [u'wall', u'street', u'mix', u'amid', u'tech', u'sell'] [u'wealth', u'moot', u'eas', u'rich', u'poor'] [u'wild', u'storm', u'damag', u'murray', u'malle', u'build'] [u'young', u'socceroo', u'draw', u'open', u'match'] [u'yunupingu', u'corrupt', u'alleg', u'probe'] [u'tourist', u'miss', u'nation', u'park'] [u'children', u'dead', u'china', u'flash', u'flood'] [u'advertis', u'wont', u'boost', u'congreg'] [u'affection', u'german', u'group', u'record'] [u'afghanistan', u'begin', u'second', u'illeg', u'arm', u'crackdown'] [u'ageless', u'sheringham', u'stay', u'hammer'] [u'alcan', u'allay', u'worker', u'safeti', u'concern'] [u'anti', u'protest', u'arrest'] [u'aussi', u'trounc', u'leicestershir'] [u'aussi', u'trio', u'touch', u'booz', u'allen', u'classic'] [u'aust', u'invest', u'skill', u'infastructur', u'beazley'] [u'fire', u'name', u'world', u'second', u'best', u'beach'] [u'beatti', u'defend', u'health', u'minist'] [u'beazley', u'say', u'debt', u'push', u'aust', u'edg'] [u'bicton', u'school', u'readi', u'reopen', u'tornado'] [u'blast', u'derail', u'train', u'russia'] [u'bomb', u'blast', u'iran', u'kill'] [u'botero', u'tame', u'dauphin', u'killer', u'climb', u'stage'] [u'brian', u'smith', u'michael', u'hagan', u'john', u'morri'] [u'button', u'edg', u'schumach', u'canadian', u'pole'] [u'qasim', u'releas'] [u'china', u'embassi', u'chen', u'illeg', u'brown'] [u'cat', u'clip', u'crow'] [u'chris', u'flanneri', u'petero', u'civoniceva'] [u'pledg', u'commercialis', u'film', u'industri'] [u'clps', u'film', u'industri', u'plan', u'futur'] [u'join', u'bundaberg', u'death', u'custodi', u'probe'] [u'darwin', u'council', u'consid', u'citi', u'promot'] [u'delight', u'princ', u'william', u'graduat', u'honour'] [u'desert', u'racer', u'carri', u'despit', u'rider', u'death'] [u'dozen', u'flee', u'arlen', u'hit', u'coast'] [u'dragon', u'lose', u'head', u'beat', u'cowboy'] [u'coal', u'power'] [u'timores', u'asylum', u'seeker', u'cycl', u'uncertainti'] [u'famili', u'wait', u'remain', u'costa', u'rica'] [u'farmer', u'rush', u'plant', u'crop', u'rain'] [u'festiv', u'fund', u'grab'] [u'anti', u'protest', u'arrest'] [u'franc', u'beat', u'fiji', u'thriller', u'pari', u'seven'] [u'french', u'hostag', u'iraq', u'aliv', u'media', u'group', u'say'] [u'french', u'journalist', u'free', u'iraq'] [u'debt', u'deal', u'give', u'cautious', u'welcom'] [u'reach', u'deal', u'world', u'poor'] [u'gallop', u'warn', u'wast', u'water', u'wake', u'rain'] [u'gear', u'name', u'black', u'squad'] [u'govt', u'disput', u'infrastructur', u'cost', u'blowout', u'claim'] [u'govt', u'unclear', u'qasim', u'ident'] [u'govt', u'consid', u'extra', u'storm', u'karoonda'] [u'green', u'happi', u'vintag'] [u'gregan', u'tuqiri', u'line', u'return', u'itali'] [u'hackett', u'climb', u'mountain', u'montreal'] [u'health', u'dept', u'defend', u'karratha', u'abort', u'figur'] [u'hunt', u'sourc', u'river', u'spill'] [u'indonesian', u'presid', u'say'] [u'inquiri', u'hear', u'pacif', u'upgrad', u'concern'] [u'intellig', u'agenc', u'look', u'defector', u'claim'] [u'intern', u'gulf', u'widen'] [u'jone', u'montgomeri', u'flop', u'mexico', u'sprint'] [u'kangaroo', u'tame', u'tiger'] [u'kelli', u'secur', u'shanghai', u'round'] [u'kuwait', u'seek', u'death', u'penalti', u'australian', u'milit'] [u'labor', u'parti', u'oppos', u'nuclear', u'plan'] [u'labor', u'reiter', u'releas', u'palmer', u'report'] [u'restrict', u'compo', u'patel', u'patient', u'lawyer'] [u'lebanon', u'vote', u'round', u'poll'] [u'lion', u'wilkinson', u'wellington', u'clash'] [u'love', u'stori', u'triumph', u'bollywood', u'award'] [u'magpi', u'toss', u'buckley', u'return'] [u'mandela', u'rock', u'global', u'respons', u'aid'] [u'mcgee', u'finish', u'fifth', u'switzerland'] [u'mercuri', u'jone', u'lead', u'warrior', u'victori'] [u'polic', u'need', u'combat', u'arm', u'robberi', u'pratt'] [u'rain', u'come'] [u'weather', u'victoria', u'horizon'] [u'mum', u'gene', u'blame', u'male', u'hair', u'loss'] [u'nathan', u'brown', u'graham', u'murray', u'shaun', u'timmin'] [u'nation', u'debt', u'high', u'beazley'] [u'candid', u'wife', u'cancer', u'death'] [u'leader', u'littl', u'weight', u'opinion', u'poll'] [u'nuclear', u'power', u'expens', u'danger', u'garrett'] [u'nuttal', u'burn', u'bridg'] [u'offic', u'alleg', u'threaten', u'machet'] [u'opposit', u'reiter', u'immigr', u'royal'] [u'palestinian', u'author', u'execut'] [u'palestinian', u'milit', u'arm', u'israel'] [u'pheasant', u'hunter', u'warn', u'danger'] [u'polic', u'hunt', u'bottl', u'shop', u'hold'] [u'polic', u'investig', u'rap'] [u'polic', u'search', u'miss', u'chines', u'teenag'] [u'polic', u'search', u'miss', u'fishermen'] [u'pope', u'call', u'cathol', u'attend', u'sunday', u'mass'] [u'power', u'look', u'build', u'win'] [u'propon', u'artifici', u'reef', u'seek', u'feder', u'fund'] [u'protest', u'attempt', u'halt', u'joint', u'militari', u'exercis'] [u'qasim', u'terribl', u'state', u'smith', u'say'] [u'health', u'plagu', u'problem', u'doctor'] [u'rain', u'hearten', u'drought', u'stricken', u'farmer'] [u'real', u'beti', u'claim', u'spanish'] [u'record', u'number', u'women', u'nomin', u'busi', u'award'] [u'roddick', u'close', u'queen', u'trick'] [u'samoa', u'prop', u'johnston', u'give', u'week'] [u'school', u'threat', u'accus', u'child', u'porn', u'convict'] [u'score', u'kill', u'iraq', u'violenc'] [u'senior', u'stroke', u'lead', u'dutch', u'open'] [u'sharapova', u'birmingham', u'titl', u'repeat'] [u'shaun', u'mcrae', u'interview'] [u'shrink', u'brain', u'barrier', u'learn', u'studi'] [u'skill', u'shortag', u'affect', u'project', u'mine', u'bodi'] [u'sorenstam', u'control', u'lpga', u'championship'] [u'springbok', u'smash', u'record', u'uruguay', u'rout'] [u'claim', u'help', u'chen', u'case', u'ruddock'] [u'student', u'union', u'fear', u'curtin', u'cours'] [u'swan', u'outclass', u'docker'] [u'swan', u'weari', u'inconsist', u'docker'] [u'tasmanian', u'farmer', u'welcom', u'soak', u'rain'] [u'tree', u'industri', u'confid', u'prove', u'safeti'] [u'toni', u'kemp', u'craig', u'bellami'] [u'trujillo', u'cite', u'sell', u'telstra', u'job', u'attract'] [u'tyson', u'call', u'quit', u'humbl', u'surrend'] [u'tyson', u'quit', u'mcbride'] [u'strike', u'kill', u'iraq', u'insurg'] [u'scare', u'prove', u'need', u'tag'] [u'wale', u'waltz', u'easi', u'canada'] [u'walker', u'recov', u'nation', u'park', u'fall'] [u'plan', u'nation', u'trust', u'privatis'] [u'wayn', u'bennett', u'matthew', u'elliott', u'shane', u'webck', u'brett'] [u'webck', u'applaud', u'bronco', u'depth'] [u'widespread', u'rain', u'prompt', u'farm', u'frenzi'] [u'woman', u'kill', u'smash'] [u'work', u'dog', u'hammer', u'kelpi', u'muster'] [u'world', u'defus', u'dardanell', u'strait'] [u'bodi', u'iraq', u'soldier', u'kill'] [u'leav', u'east', u'timor'] [u'adriano', u'doubl', u'give', u'inter', u'final', u'advantag'] [u'afghan', u'bomb', u'target', u'soldier'] [u'alcan', u'deni', u'worker', u'live', u'detent', u'centr'] [u'hold', u'back', u'immigr', u'inquiri'] [u'ambul', u'rspca', u'welcom', u'unev', u'firework'] [u'ancient', u'seed', u'sprout', u'date', u'palm'] [u'archaeologist', u'hope', u'clue', u'founder'] [u'asbesto', u'campaign', u'queen', u'birthday', u'honour', u'list'] [u'aust', u'pakistan', u'sign', u'counter', u'terror', u'pact'] [u'australian', u'militari', u'end', u'east', u'timor'] [u'australian', u'women', u'help', u'test', u'breast', u'cancer', u'drug'] [u'australia', u'readi', u'meet', u'demand', u'scare'] [u'aust', u'troop', u'leav', u'timor', u'earli', u'academ'] [u'avenel', u'sheep', u'farmer', u'get', u'queen', u'birthday', u'honour'] [u'bacon', u'recognis', u'honour', u'list'] [u'bacon', u'life', u'polit', u'recognis', u'posthum'] [u'bangladesh', u'clinch'] [u'barker', u'book', u'strike'] [u'beatti', u'pledg', u'support', u'clean', u'coal', u'technolog'] [u'beatti', u'unfaz', u'preselect', u'chang'] [u'blair', u'depart', u'european', u'tour', u'ahead'] [u'blair', u'putin', u'meet', u'ahead', u'summit'] [u'blatter', u'order', u'red', u'report', u'tokyo', u'duti'] [u'blue', u'love', u'hate', u'webb'] [u'blue', u'sweat', u'gasnier'] [u'bomb', u'rock', u'tajikistan'] [u'brazil', u'draw', u'line', u'sting', u'argentina'] [u'british', u'face', u'bail', u'court'] [u'british', u'memo', u'rais', u'post', u'iraq', u'concern'] [u'busi', u'chamber', u'back', u'cooma', u'flight'] [u'develop', u'clean', u'asbesto', u'riddl'] [u'chang', u'allow', u'second', u'murray', u'river'] [u'bomber', u'strike', u'indian', u'kashmir'] [u'crash', u'adelaid', u'home'] [u'carr', u'approv', u'uranquinti', u'power', u'plant'] [u'cat', u'count', u'cost'] [u'cheney', u'deni', u'guantanamo', u'close'] [u'chines', u'flood', u'toll', u'continu', u'rise'] [u'clark', u'kasper', u'thiev'] [u'clark', u'kasper', u'target', u'thiev'] [u'promis', u'expans', u'test', u'crime'] [u'coff', u'rape', u'spark', u'polic', u'warn'] [u'communic', u'breakdown', u'frustrat', u'william', u'creek'] [u'corbi', u'lawyer', u'enlist', u'soap', u'opera', u'starlet'] [u'council', u'approv', u'child', u'care', u'centr', u'design'] [u'council', u'consid', u'forgo', u'econom', u'develop'] [u'council', u'meet', u'reveal', u'legal', u'wrangl'] [u'damag', u'karoonda', u'storm', u'grow'] [u'demon', u'demolish', u'magpi'] [u'destroy', u'spark', u'polit', u'backlash'] [u'dingo', u'shoot', u'trigger', u'feed', u'warn'] [u'evid', u'lead', u'rape', u'convict'] [u'doctor', u'welcom', u'beatti', u'start', u'mend', u'relat'] [u'dog', u'fetch', u'price', u'auction'] [u'doubt', u'cast', u'indigen', u'titl', u'plan'] [u'duck', u'shoot', u'season', u'draw'] [u'earthquak', u'rock', u'indonesian', u'island'] [u'east', u'timor', u'mission'] [u'tourism', u'retreat', u'award', u'winner'] [u'effort', u'continu', u'stop', u'river', u'spill'] [u'wallabi', u'play', u'mosquito'] [u'employ', u'tire', u'trucki'] [u'environment', u'probe', u'order', u'hous', u'plan'] [u'environ', u'centr', u'back', u'wetland', u'plan'] [u'recommend', u'power', u'station', u'colli'] [u'extradit', u'process', u'limit', u'patel', u'charg'] [u'fall', u'land', u'sale', u'offer', u'hope', u'greater', u'coast'] [u'fatal', u'accid', u'near', u'rolleston'] [u'feder', u'beat', u'safin', u'straight', u'hall'] [u'fleec', u'fall', u'world', u'shear', u'titl'] [u'salvo', u'award', u'work', u'africa'] [u'water', u'boss', u'call', u'effici'] [u'franc', u'deni', u'ransom', u'pay', u'journalist', u'releas'] [u'freeman', u'consid', u'coach', u'career'] [u'debt', u'deal', u'astonish', u'costello'] [u'garcia', u'beat', u'scott', u'booz', u'allen', u'titl'] [u'giant', u'extermin', u'physic', u'redback'] [u'glenti', u'organis', u'celebr', u'festiv', u'turnout'] [u'govt', u'announc', u'date', u'tallowa', u'expans'] [u'govt', u'inquiri', u'consid', u'mine', u'buffer', u'rule'] [u'govt', u'pledg', u'storm', u'ravag', u'town'] [u'greenpeac', u'protest', u'ship', u'moor', u'brisban'] [u'green', u'question', u'award', u'immigr', u'chief'] [u'guantanamo', u'interrog', u'wrong', u'danger', u'dumb'] [u'guantanamo', u'reveal', u'interrog', u'techniqu'] [u'handov', u'end', u'east', u'timor', u'mission'] [u'heavi', u'rain', u'forc', u'highway', u'closur'] [u'hindu', u'attack', u'missionari'] [u'hobart', u'polic', u'search', u'shoot', u'suspect'] [u'honour', u'list', u'award', u'australian'] [u'hospit', u'anaesthetist', u'plan'] [u'hotel', u'guest', u'face', u'court', u'accus', u'evad', u'bill'] [u'immigr', u'boss', u'urg', u'refus', u'queen', u'honour'] [u'indigen', u'activist', u'linguist', u'award', u'queen'] [u'indigen', u'communiti', u'make', u'headway', u'fight'] [u'indonesian', u'presid', u'phone'] [u'injur', u'lion', u'mend'] [u'iraqi', u'challeng', u'strike', u'claim'] [u'iron', u'mike'] [u'face', u'construct', u'program', u'overhaul'] [u'japanes', u'appetit', u'abalon', u'prompt', u'expans'] [u'japan', u'scientif', u'whale', u'sham'] [u'cottag', u'redevelop', u'plan', u'caus', u'confus'] [u'klinsmann', u'german', u'face', u'major', u'test'] [u'labor', u'speechwrit', u'accus', u'howard', u'revision'] [u'labor', u'work', u'liber', u'detent', u'bill'] [u'lane', u'investig', u'public', u'alarm', u'children'] [u'littl', u'rain', u'leav', u'peninsula', u'drought'] [u'live', u'set', u'text', u'record'] [u'local', u'join', u'queen', u'birthday', u'honour'] [u'local', u'recognis', u'queen', u'birthday', u'honour'] [u'long', u'weekend', u'driver', u'warn', u'complac'] [u'turnout', u'italian', u'fertil', u'referendum'] [u'charg', u'cabooltur', u'stab'] [u'manhunt', u'continu', u'fatal', u'shoot'] [u'manjimup', u'lose', u'horticultur', u'land', u'timber', u'firm'] [u'face', u'court', u'accus', u'drive', u'near'] [u'machin', u'runner', u'challeng', u'rattler'] [u'martin', u'highlight', u'achiev', u'launch'] [u'mcenro', u'doubt', u'scud', u'comeback'] [u'mcguir', u'bray', u'wickham', u'honour', u'birthday', u'list'] [u'meet', u'offer', u'qualifi', u'support', u'bypass', u'road'] [u'meet', u'urg', u'high', u'rise', u'height', u'limit'] [u'melbourn', u'student', u'head', u'cultur', u'exchang'] [u'west', u'share', u'queen', u'birthday', u'honour'] [u'migaloo', u'spot', u'coast'] [u'minist', u'meet', u'break', u'hill', u'youth', u'group'] [u'miss', u'sydney', u'teen', u'walk', u'nation', u'park'] [u'miss', u'tourist'] [u'miss', u'tourist'] [u'power', u'seek', u'child', u'support', u'agenc'] [u'rain', u'forecast', u'central', u'west'] [u'rain', u'need', u'boost', u'farm', u'effort'] [u'motorcyclist', u'die', u'nation', u'park', u'crash'] [u'murray', u'say', u'kick', u'game', u'let', u'cowboy'] [u'musharraf', u'arriv', u'aust'] [u'nativ', u'titl', u'tribun', u'pleas', u'dampier'] [u'offer', u'lake', u'burley', u'griffin', u'water', u'plan'] [u'netbal', u'entri', u'brisban', u'comp', u'hing'] [u'netbal', u'game', u'remot', u'communiti'] [u'netbal', u'ident', u'queen', u'birthday', u'honour'] [u'lead', u'emerg', u'miss', u'sydney', u'girl'] [u'oval', u'owner', u'consid', u'communiti'] [u'dead', u'iranian', u'bomb', u'blast'] [u'independ', u'leav', u'prefer', u'open'] [u'nuttal', u'urg', u'chang', u'tune', u'region', u'health'] [u'kill', u'wound', u'bomb', u'attack', u'iranian'] [u'opposit', u'conced', u'lebanes', u'poll'] [u'owen', u'admit', u'forc', u'real'] [u'pair', u'court', u'potter', u'theft'] [u'patel', u'patient', u'entitl', u'compo', u'beatti', u'say'] [u'peac', u'protest', u'face', u'court'] [u'pink', u'floyd', u'reform', u'live', u'concert'] [u'plane', u'jettison', u'japanes', u'roof'] [u'polic', u'biki', u'oper', u'net', u'gun', u'cash', u'drug'] [u'polic', u'catch', u'long', u'weekend', u'speeder'] [u'polic', u'fear', u'miss', u'echuca', u'woman'] [u'polic', u'fear', u'safeti', u'miss', u'tourist'] [u'polic', u'investig', u'dead', u'bushwalk'] [u'pont', u'back', u'symond', u'ahead'] [u'popul', u'studi', u'doesnt', u'faze', u'ballina', u'mayor'] [u'portland', u'singa', u'claim', u'brisban'] [u'premier', u'critic', u'robina', u'stab', u'report'] [u'prosecutor', u'dismiss', u'call', u'corbi'] [u'prosecutor', u'lodg', u'corbi', u'appeal'] [u'public', u'urg', u'involv', u'lobster', u'studi'] [u'famili', u'deni', u'miss', u'sydney', u'girl'] [u'queen', u'birthday', u'honour', u'flow', u'south', u'australian'] [u'queen', u'birthday', u'honour', u'costello', u'mcguir'] [u'queen', u'honour', u'immigr', u'secretari'] [u'queen', u'honour', u'recognis', u'artist'] [u'queensland', u'share', u'queen', u'birthday', u'honour'] [u'raikkonen', u'win', u'dramat', u'canadian'] [u'rain', u'bring', u'littl', u'farmer'] [u'rain', u'fall', u'southern'] [u'ralli', u'hear', u'chen', u'defect'] [u'rescu', u'prompt', u'review', u'park', u'tour'] [u'resid', u'fear', u'polici', u'chang', u'affect', u'timber'] [u'roddick', u'lift', u'straight', u'queen', u'trophi'] [u'ask', u'north', u'korea', u'strateg', u'talk', u'decis'] [u'rossi', u'make'] [u'polic', u'driver', u'care', u'road'] [u'score', u'resid', u'recognis', u'honour', u'list'] [u'search', u'continu', u'miss', u'echuca', u'woman'] [u'search', u'continu', u'miss', u'tourist'] [u'search', u'miss', u'girl', u'continu'] [u'search', u'miss', u'tourist', u'continu'] [u'search', u'underway', u'tourist', u'miss'] [u'senat', u'expect', u'immigr', u'inquiri'] [u'senior', u'diplomat', u'surviv', u'iraq', u'bomb'] [u'sharapova', u'warm', u'wimbledon', u'style'] [u'shoot', u'suspect', u'urg', u'turn'] [u'socceroo', u'face', u'stern', u'test', u'germani'] [u'soldier', u'surgeon', u'carer', u'recognis', u'honour'] [u'sorenstam', u'halfway', u'grand', u'slam', u'feat'] [u'south', u'west', u'share', u'queen', u'birthday', u'honour'] [u'steven', u'face', u'second'] [u'storm', u'bring', u'rain', u'aplenti', u'south', u'east'] [u'storm', u'whip', u'strong', u'wind', u'malle', u'wimmera'] [u'tahiti', u'court', u'acquit', u'euthanasia', u'accus'] [u'energi', u'minist', u'dismiss', u'clps', u'power', u'comparison'] [u'telstra', u'chief', u'renew', u'bush', u'debat', u'joyc'] [u'test', u'save', u'victim', u'coron'] [u'great', u'australian', u'outback', u'cattl', u'drive'] [u'tikrit', u'suicid', u'bomb', u'kill', u'injur'] [u'tourist', u'night', u'nation', u'park'] [u'traffic', u'flow', u'creek', u'bridg'] [u'transport', u'fund', u'boost', u'patient', u'communiti'] [u'troubl', u'tyson', u'seek', u'solac', u'missionari', u'work'] [u'truffl', u'harvest'] [u'ullrich', u'edg', u'mcgee', u'roger', u'season'] [u'strength', u'argentina', u'world', u'recc'] [u'union', u'push', u'inquiri', u'carr'] [u'union', u'want', u'fair', u'nestl', u'redund'] [u'claim', u'like', u'claim', u'syria'] [u'offici', u'target', u'middl', u'east'] [u'vanston', u'take', u'yunupingu', u'claim', u'serious'] [u'driver', u'take', u'king', u'desert', u'titl'] [u'scientist', u'develop', u'bird', u'test'] [u'weekend', u'rain', u'littl', u'impact', u'level'] [u'wellington', u'name', u'nonu', u'lion', u'clash'] [u'number', u'insist'] [u'welcom', u'pakistani', u'presid'] [u'widespread', u'rain', u'good', u'news', u'farmer'] [u'woman', u'hurt', u'suspect', u'road', u'rage', u'incid'] [u'woman', u'rap', u'newcastl'] [u'women', u'recruit', u'cancer', u'drug', u'trial'] [u'woodsid', u'plan', u'brows', u'basin', u'drill'] [u'wool', u'market', u'hit', u'year'] [u'workcov', u'crack', u'trucki', u'schedul'] [u'workshop', u'focus', u'algal', u'bloom', u'manag'] [u'work', u'start', u'year', u'tomago', u'power', u'plant'] [u'world', u'bank', u'chief', u'make', u'africa', u'trip'] [u'youth', u'voic', u'hear', u'plate', u'debat'] [u'abar', u'say', u'farm', u'success', u'weather'] [u'abattoir', u'audit', u'lead', u'export', u'suspens'] [u'aborigin', u'communiti', u'urg', u'speak', u'atsic'] [u'academ', u'back', u'univers', u'financi', u'effort'] [u'accus', u'face', u'court', u'assault'] [u'adcock', u'win', u'rise', u'star', u'nomin'] [u'alcan', u'pipelin', u'talk'] [u'question', u'govt', u'chang', u'cigarett'] [u'arsenal', u'striker', u'persi', u'hold', u'rape', u'charg'] [u'widen', u'fraud', u'probe'] [u'attack', u'driver', u'prompt'] [u'request', u'hold', u'cost', u'iraq'] [u'backbench', u'call', u'improv', u'telstra', u'bush'] [u'barker', u'accept', u'week'] [u'bateman', u'foreshor', u'plan', u'spark', u'mix', u'reaction'] [u'beatti', u'rule', u'indemn', u'patel'] [u'beazley', u'urg', u'georgiou', u'introduc', u'privat'] [u'turnout', u'school', u'anniversari', u'celebr'] [u'biotechnolog', u'fare', u'attract', u'strong', u'aust'] [u'black', u'offer', u'tip', u'young', u'hope'] [u'black', u'swan', u'death', u'prompt', u'duck', u'shoot'] [u'bodi', u'metr', u'sinkhol'] [u'bomber', u'strike', u'kurd', u'prepar', u'instal'] [u'brack', u'govt', u'deni', u'avoid', u'health', u'scrutini'] [u'bronco', u'expect', u'barn', u'switch', u'decis', u'soon'] [u'builder', u'uncov', u'histor', u'crypt'] [u'bundaberg', u'patient', u'seek', u'compo', u'meet'] [u'burni', u'famili', u'safe', u'escap', u'hous', u'blaze'] [u'busi', u'survey', u'warn', u'volatil'] [u'cahil', u'fire', u'biggest', u'game', u'life'] [u'canberra', u'incom', u'polic', u'chief', u'lay', u'prioriti'] [u'candid', u'reserv', u'decis', u'libel', u'claim'] [u'chemic', u'scare', u'forc', u'busi', u'evacu'] [u'child', u'result', u'time'] [u'chilean', u'earthquak', u'toll', u'rise'] [u'chile', u'quak', u'halt', u'product'] [u'china', u'order', u'media', u'silenc', u'villag', u'clash'] [u'chines', u'banker', u'accus', u'embezzl'] [u'chines', u'beauti', u'test', u'brain', u'pois'] [u'chines', u'teacher', u'hail', u'flood', u'heroic'] [u'citrus', u'grower', u'demand', u'tree', u'remov', u'compo'] [u'claim', u'govt', u'mistak', u'indigen', u'leadership'] [u'helper', u'hand', u'smoke', u'say'] [u'senat', u'work', u'coalit'] [u'stand', u'power', u'line', u'plan'] [u'commonwealth', u'bank', u'announc'] [u'compani', u'invest', u'uranium', u'project'] [u'conf', u'test', u'possibl', u'rule', u'chang'] [u'corbi', u'appeal', u'lodg'] [u'corbi', u'lawyer', u'lodg', u'appeal'] [u'council', u'consid', u'jetti', u'fish'] [u'council', u'push', u'flight'] [u'crane', u'accid', u'forc', u'train', u'delay'] [u'crop', u'belt', u'record', u'decent', u'rainfal'] [u'crop', u'sow', u'orphan', u'victim'] [u'danih', u'face', u'life', u'neitz'] [u'debt', u'forgiven', u'poverti', u'solut'] [u'dengu', u'link', u'mosquito', u'torr', u'strait'] [u'devonport', u'home', u'base', u'port', u'corp'] [u'attack', u'put', u'homebush', u'hospit'] [u'dog', u'involv', u'homebush', u'attack'] [u'downer', u'defend', u'contact', u'chines', u'embassi', u'chen'] [u'draper', u'clay', u'courter', u'pull', u'wimbledon'] [u'drink', u'driver', u'baffl', u'south', u'east', u'polic'] [u'drive', u'attempt', u'robberi', u'link', u'polic'] [u'probe', u'whale', u'zone', u'breach', u'report'] [u'dump', u'bodi', u'iraq'] [u'test', u'need', u'offici', u'back', u'say'] [u'earth', u'like', u'planet', u'detect'] [u'eel', u'faith', u'vella', u'futur'] [u'effort', u'child', u'assault'] [u'back', u'diamond', u'expans'] [u'footbal', u'star', u'best', u'face', u'alleg', u'indec'] [u'expert', u'dispel', u'weed', u'fear'] [u'famili', u'jail', u'wife', u'stab', u'murder'] [u'farmer', u'warn', u'africa', u'land', u'offer'] [u'farmer', u'welcom', u'rain', u'need'] [u'spark', u'power', u'suppli', u'interrupt'] [u'risk', u'jump', u'winter'] [u'firework', u'polici', u'work', u'say', u'govt'] [u'citrus', u'shipment', u'expect'] [u'snow', u'turn', u'dinner', u'plain', u'winter'] [u'fish', u'comp', u'hook', u'crowd'] [u'burma', u'face', u'close', u'trial'] [u'frail', u'jackson', u'clear', u'charg'] [u'ganguli', u'harbhajan', u'join', u'tsunami', u'appeal', u'line'] [u'garrett', u'urg', u'govt', u'follow', u'lead'] [u'gasnier', u'clear', u'origin'] [u'gasnier', u'clear', u'play'] [u'gatto', u'juri', u'retir', u'consid', u'verdict'] [u'glazer', u'tighten', u'grip', u'unit'] [u'govt', u'accus', u'inact', u'biosecur'] [u'govt', u'get', u'tough', u'illeg', u'backpack', u'accommod'] [u'govt', u'urg', u'instal', u'speed', u'camera', u'coff'] [u'green', u'offic', u'break', u'investig'] [u'group', u'fear', u'nation', u'park', u'lockout'] [u'group', u'review', u'swan', u'coastal', u'plain', u'wetland', u'polici'] [u'grow', u'demand', u'spark', u'power', u'station', u'revamp'] [u'grub', u'pose', u'threat', u'cane', u'farmer'] [u'guid', u'say', u'tourist', u'danger'] [u'hagan', u'happi', u'queensland', u'line'] [u'high', u'polic', u'presenc', u'help', u'maintain', u'safe', u'long'] [u'home', u'smoke', u'alarm', u'compulsori', u'carr'] [u'illawarra', u'remain', u'drought', u'free'] [u'india', u'hop', u'chappel', u'reviv', u'flag', u'fortun'] [u'inquest', u'probe', u'journalist', u'death', u'east', u'timor'] [u'inquiri', u'hear', u'obscen', u'funer', u'cost'] [u'jackson', u'guilti'] [u'jackson', u'go', u'free', u'trial', u'victori'] [u'jackson', u'music', u'world'] [u'jackson', u'quiet', u'court', u'jubil'] [u'jackson', u'defeat', u'prosecutor', u'defiant'] [u'jackson', u'wife', u'overjoy', u'guilti', u'verdict'] [u'jackson', u'fan', u'continu', u'celebr'] [u'player', u'fail', u'evid', u'corrupt'] [u'kilkivan', u'support', u'region', u'link', u'amalgam'] [u'king', u'bros', u'court', u'case', u'continu'] [u'king', u'learn', u'legal', u'troubl', u'say'] [u'klinsmann', u'back', u'defenc', u'frustrat', u'socceroo'] [u'knee', u'injuri', u'end', u'shaw', u'season'] [u'lack', u'cost'] [u'land', u'council', u'appeal', u'bardi', u'jawi', u'nativ'] [u'lomu', u'line', u'samoa'] [u'longerenong', u'colleg', u'futur', u'clearer'] [u'loud', u'flatmat', u'dare', u'deem', u'provoc', u'kill'] [u'macfarlan', u'upbeat', u'slow', u'economi'] [u'magpi', u'fear', u'shaw', u'season'] [u'hunt', u'call', u'bodi'] [u'face', u'court', u'kirwan', u'stab'] [u'market', u'eas', u'long', u'weekend', u'break'] [u'mayor', u'question', u'telstra', u'local', u'govt', u'partnership', u'plan'] [u'maywald', u'faze', u'chaffey', u'decis'] [u'mcgee', u'inquiri', u'hear', u'confus', u'blood', u'test', u'rule'] [u'mear', u'disappoint', u'event', u'axe'] [u'migaloo', u'head', u'coff', u'harbour'] [u'miner', u'look', u'combin', u'gold', u'nickel', u'benefit'] [u'mine', u'expect', u'boost', u'demand', u'esper'] [u'mobil', u'phone', u'corni'] [u'mother', u'want', u'bull', u'terrier', u'daughter', u'maul'] [u'back', u'coal', u'power'] [u'say', u'duck', u'shoot', u'agenda'] [u'tell', u'mater', u'rebuild', u'begin', u'year'] [u'want', u'relief', u'fund', u'storm', u'karoonda'] [u'gambier', u'properti', u'growth', u'high'] [u'musharraf', u'begin', u'visit'] [u'musharraf', u'tour', u'memori'] [u'foreign', u'exchang', u'account', u'extraordinari'] [u'foreign', u'exchang', u'accus', u'admit', u'dishonesti'] [u'perth', u'trade', u'team', u'centr', u'complaint'] [u'nation', u'leader', u'step', u'asid'] [u'navratilova', u'tip', u'henin', u'hardenn', u'wimbledon'] [u'neglect', u'australia', u'cost', u'pakistan', u'musharraf'] [u'name'] [u'chief', u'head', u'wine', u'associ'] [u'nation', u'park', u'boost', u'creek', u'manag'] [u'readi', u'support', u'telstra', u'sale'] [u'north', u'west', u'farmer', u'welcom', u'weekend', u'rain'] [u'obes', u'smoke', u'acceler', u'age'] [u'olymp', u'organis', u'scrap', u'mear', u'golden', u'event'] [u'omeley', u'bulldog'] [u'dead', u'injur', u'road', u'smash', u'near'] [u'opposit', u'tip', u'hydro', u'plant', u'tourist', u'drawcard'] [u'organis', u'happi', u'desert', u'race'] [u'palmer', u'report', u'impetus', u'mental', u'health'] [u'palm', u'island', u'accus', u'miss', u'court', u'hear'] [u'parent', u'urg', u'respons'] [u'patel', u'patient', u'applaud', u'indemn', u'decis'] [u'perri', u'shire', u'seek', u'drought', u'declar'] [u'plan', u'citytrain', u'strike', u'call'] [u'fail', u'head', u'backbench', u'revolt'] [u'polic', u'continu', u'probe', u'motorcyclist', u'death'] [u'polic', u'happi', u'booz', u'result'] [u'polic', u'issu', u'theft', u'warn', u'busi'] [u'polic', u'crash', u'victim'] [u'polic', u'probe', u'rugbi', u'violenc', u'claim'] [u'polic', u'probe', u'school', u'aircondition', u'fire'] [u'polic', u'seiz', u'pill'] [u'pont', u'shrug', u'rout'] [u'postal', u'vote', u'deadlin', u'caus', u'concern'] [u'poultri', u'industri', u'back', u'quick', u'bird', u'test'] [u'power', u'earthquak', u'shake', u'northern', u'chile'] [u'power', u'station', u'waggaa', u'biggest', u'project'] [u'public', u'get', u'pacif', u'highway', u'work'] [u'public', u'speak', u'riverfront', u'develop'] [u'rain', u'boost', u'dryland', u'crop'] [u'rainfal', u'report', u'pictur', u'rural'] [u'rain', u'give', u'hope', u'south', u'west', u'grazier'] [u'rain', u'offer', u'relief', u'england', u'farmer'] [u'rain', u'stop', u'aquacultur'] [u'rann', u'give', u'evid', u'corrupt', u'trial'] [u'rebel', u'tabl', u'detent', u'bill'] [u'report', u'expect', u'urg', u'child', u'access'] [u'report', u'highlight', u'need', u'child', u'care', u'servic'] [u'review', u'advoc', u'child', u'support', u'shake'] [u'air', u'airport', u'secur', u'restrict', u'worri'] [u'robredo', u'coria', u'arthur', u'start', u'confid'] [u'rspca', u'check', u'welfar', u'outback', u'hous', u'anim'] [u'saddam', u'question', u'iraqi', u'judg'] [u'search', u'find', u'miss', u'echuca', u'woman'] [u'senat', u'question', u'relev', u'queen', u'birthday'] [u'assault', u'victim', u'sue', u'school', u'neglig'] [u'shanti', u'crackdown', u'prompt', u'tighter', u'sanction'] [u'shepherd', u'star', u'young', u'wallabi'] [u'ship', u'servic', u'tender', u'call'] [u'show', u'shepparton', u'drive'] [u'sleep', u'disord', u'affect', u'economi'] [u'snowi', u'mayor', u'hop', u'forc', u'merger', u'agenda'] [u'south', u'african', u'presid', u'sack', u'deputi'] [u'southern', u'farmer', u'face', u'eros', u'threat'] [u'south', u'west', u'tourism'] [u'steven', u'plead', u'guilti', u'miss', u'match'] [u'storm', u'leav', u'damag', u'trail', u'shepparton'] [u'strike', u'doctor', u'face', u'medic', u'board'] [u'support', u'chang', u'bring', u'mix', u'respons'] [u'survey', u'suggest', u'perform', u'art', u'ticket'] [u'sydney', u'beach', u'clear', u'swim'] [u'tasmanian', u'forum', u'consid', u'chang'] [u'bill', u'introduc', u'senat'] [u'cut', u'certainti', u'costello'] [u'schedul', u'introduc', u'senat'] [u'defector', u'valuabl', u'chen'] [u'time', u'run', u'famili', u'face', u'deport'] [u'toll', u'win', u'defenc', u'contract'] [u'toogoom', u'burrum', u'head', u'plan', u'open', u'public', u'comment'] [u'tougher', u'pinehurst', u'readi', u'roughen', u'golf', u'best'] [u'court', u'prepar', u'hear', u'trial', u'hate'] [u'vanston', u'urg', u'whistleblow', u'come', u'forward'] [u'victorian', u'coupl', u'escap', u'bolivian', u'unrest'] [u'volunt', u'convict', u'prompt', u'lifelin', u'review'] [u'lead', u'nation', u'lose', u'work', u'day'] [u'wallac', u'blast', u'dockland', u'surfac'] [u'warn', u'take', u'action', u'thin', u'wicket'] [u'word', u'erupt', u'timber', u'firm', u'futur'] [u'care', u'say', u'jackson', u'juri'] [u'winegrow', u'consid'] [u'world', u'price', u'rise'] [u'yunupingu', u'deni', u'misus', u'mine', u'royalti'] [u'kill', u'iraqi', u'armi', u'canteen', u'attack'] [u'academ', u'question', u'govt', u'transport', u'plan'] [u'justic', u'head', u'land', u'magistr', u'post'] [u'alpin', u'graze', u'move', u'closer', u'realiti'] [u'get', u'bullet', u'mail', u'parti', u'gangster'] [u'anderson', u'blame', u'water', u'crisi', u'state'] [u'aqi', u'issu', u'warn', u'meat', u'compani'] [u'astronaut', u'testifi', u'orbit'] [u'attack', u'england', u'ash', u'hope', u'lara'] [u'aust', u'pakistan', u'sign', u'counter', u'terror', u'deal'] [u'aust', u'repres', u'patel'] [u'australia', u'water'] [u'australian', u'wit', u'tsunami', u'panic', u'chile'] [u'aust', u'tourist', u'fine', u'chopper', u'crash'] [u'author', u'book', u'chicago', u'jail', u'arson'] [u'backbench', u'label', u'georgiou', u'support'] [u'background', u'info', u'detail', u'ashbourn', u'corrupt'] [u'bail', u'bomb', u'threat', u'accus', u'rais', u'school', u'safeti'] [u'barn', u'lift', u'red', u'blue'] [u'bather', u'pavilion', u'get', u'heritag', u'list'] [u'beatti', u'warn', u'patel'] [u'beazley', u'proud', u'stanc'] [u'biographi', u'unusu', u'novelist', u'win', u'book', u'prize'] [u'blue', u'thrive', u'pressur'] [u'bonlac', u'job', u'fonterra', u'chief', u'say'] [u'bougainvill', u'celebr'] [u'bougainvill', u'parliament', u'hold', u'sit'] [u'die', u'rid', u'disney', u'space', u'simul'] [u'brazil', u'rais', u'excit', u'ahead', u'conf'] [u'cairn', u'jail', u'drug'] [u'california', u'quak', u'briefli', u'trigger', u'tsunami', u'fear'] [u'calm', u'look', u'improv', u'whale', u'rescu', u'plan'] [u'canadian', u'govt', u'surviv', u'break', u'confid', u'vote'] [u'canker', u'farm', u'worker', u'tell', u'plant', u'destruct'] [u'canker', u'inquiri', u'hear', u'wit'] [u'casuarina', u'candid', u'tri', u'invas', u'charg'] [u'cathol', u'urg', u'doubl', u'australia'] [u'chief', u'judg', u'err', u'sentenc', u'mcgee', u'inquiri', u'tell'] [u'chines', u'defector', u'back', u'network', u'claim'] [u'chines', u'interrog', u'asylum', u'seeker', u'reckless'] [u'chines', u'powerlin', u'theft', u'hit', u'snag', u'lose', u'power'] [u'citrus', u'board', u'back', u'industri', u'studi'] [u'clijster', u'shin', u'return', u'grass'] [u'answer', u'land', u'deal'] [u'consular', u'access', u'immigr', u'detaine', u'standard'] [u'consum', u'confid', u'fall'] [u'coonambl', u'orphan', u'parent', u'rest'] [u'farmer', u'milk', u'price', u'rise'] [u'council', u'back', u'estat'] [u'council', u'budget', u'slug', u'beachfront', u'resid'] [u'council', u'maintain', u'tough', u'stanc', u'illeg', u'tree'] [u'council', u'push', u'citrus', u'grower', u'compo'] [u'council', u'seek', u'plan', u'chang'] [u'council', u'upset', u'delay', u'rail', u'line', u'meet'] [u'council', u'want', u'increas', u'pension', u'rat', u'rebat'] [u'court', u'find', u'favour', u'school', u'playground'] [u'court', u'tell', u'exchang', u'dealer', u'joke'] [u'court', u'pork', u'produc'] [u'coyl', u'appoint', u'boost', u'tiger', u'moral'] [u'deep', u'throat', u'tell', u'deep', u'throat'] [u'defenc', u'childcar', u'switch', u'prompt', u'mass', u'resign'] [u'dental', u'record', u'confirm', u'aust', u'tourist', u'dead'] [u'develop', u'board', u'boss', u'defend', u'china', u'trade', u'trip'] [u'develop', u'plan', u'lodg', u'south', u'bruce', u'retir'] [u'diesel', u'spill', u'highlight', u'toxic', u'dump', u'danger'] [u'document', u'contradict', u'annan', u'stanc', u'food'] [u'dog', u'sign', u'hugh', u'phelp'] [u'dougla', u'wood', u'free', u'say'] [u'downer', u'reflect', u'bougainvill', u'autonomi'] [u'downer', u'say', u'free', u'wood', u'lucki'] [u'drive', u'chang', u'busi', u'urg', u'govt'] [u'drug', u'abus', u'figur', u'prompt', u'attack', u'govt', u'polici'] [u'ethiopian', u'opposit', u'leader', u'releas'] [u'team', u'assess', u'role', u'aceh', u'peac', u'process'] [u'farmer', u'approv', u'compo', u'plan', u'veget'] [u'fellowship', u'lure', u'australian', u'research', u'home'] [u'code', u'cost', u'worri', u'council'] [u'firefight', u'smoke', u'alarm', u'regul'] [u'fish', u'harm', u'defibril', u'patient', u'studi'] [u'band', u'member', u'geldof'] [u'darwin', u'teacher', u'jail', u'gross', u'indec'] [u'fraud', u'charg', u'mount', u'ambul', u'administr'] [u'text', u'announc', u'wood', u'releas'] [u'fund', u'allow', u'illawarra', u'skill', u'audit'] [u'gatto', u'clear', u'underworld', u'murder'] [u'girl', u'assault', u'spiritu', u'husband', u'court', u'hear'] [u'golf', u'club', u'member', u'offer', u'access', u'assur'] [u'govt', u'appoint', u'diplomat', u'singapor'] [u'govt', u'defend', u'bikini', u'babe', u'grant'] [u'govt', u'float', u'compo', u'plan', u'farmer'] [u'govt', u'quiz', u'aquif', u'fund'] [u'govt', u'reject', u'shoalhaven', u'polic', u'staff', u'claim'] [u'govt', u'step', u'probe', u'offshor', u'haven'] [u'govt', u'urg', u'penalis', u'farmer', u'recent', u'rain'] [u'green', u'forc', u'debat', u'detent', u'bill'] [u'heavi', u'rubbish', u'truck', u'council'] [u'welcom', u'sand', u'mine', u'open'] [u'histori', u'john', u'stand', u'maroon', u'origin'] [u'home', u'owner', u'confront', u'basebal', u'wield'] [u'hostag', u'dougla', u'wood', u'rescu'] [u'howard', u'beazley', u'continu', u'fight'] [u'howard', u'dismiss', u'support', u'plan'] [u'indigen', u'servic', u'want', u'skin', u'diseas'] [u'indonesia', u'recal', u'ambassador', u'promot'] [u'injuri', u'plagu', u'colbert', u'reach', u'match'] [u'iran', u'defend', u'nuclear', u'facil'] [u'iran', u'fear', u'isra', u'nuclear', u'plant', u'attack'] [u'iraq', u'accid', u'kill', u'bulgarian', u'soldier'] [u'iraq', u'wheat', u'disput', u'polit', u'waff'] [u'japanes', u'begin', u'fresh', u'push', u'superson', u'travel'] [u'john', u'steer', u'blue', u'victori'] [u'knowl', u'back', u'power', u'plant', u'despit', u'opposit'] [u'koizumi', u'announc', u'retir'] [u'labor', u'oppos', u'gimmicki', u'health', u'insur', u'reward'] [u'lekka', u'readi', u'return'] [u'librari', u'debut', u'digit', u'audio', u'book'] [u'liverpool', u'finnan', u'arrest', u'pedestrian', u'death'] [u'lotteri', u'winner', u'turn', u'thief', u'blow', u'cash'] [u'maitland', u'indigen', u'job', u'offic'] [u'mall', u'traffic', u'oppon', u'protest', u'council'] [u'charg', u'sedit', u'arroyo', u'cheat'] [u'die', u'bass', u'highway', u'crash'] [u'hospit', u'violent', u'domest', u'disput'] [u'jail', u'drug', u'charg'] [u'rape', u'charg', u'face', u'murgon', u'court'] [u'face', u'court', u'accus', u'attack'] [u'market', u'rise', u'macfarlan', u'outlook'] [u'maroon', u'ahead', u'half', u'time'] [u'mathew', u'skipper', u'swan'] [u'mayor', u'air', u'cultur', u'precinct', u'council', u'concern'] [u'mcnamara', u'walk', u'celtic'] [u'medic', u'board', u'delay', u'psychiatrist', u'decis'] [u'merger', u'possibl', u'excit', u'mayor'] [u'microsoft', u'censor', u'china', u'blog'] [u'midwiv', u'polit', u'support', u'insur', u'help'] [u'miner', u'expect', u'rehab', u'plan'] [u'minist', u'approv', u'transfer'] [u'minist', u'plan', u'visit', u'bundaberg', u'doctor', u'lawyer'] [u'minist', u'visit', u'storm', u'damag', u'karoonda'] [u'mooney', u'weigh', u'busi', u'battl'] [u'mother', u'accus', u'kill', u'babi', u'grant', u'bail'] [u'condemn', u'polit', u'terrorist', u'comment'] [u'worri', u'extra', u'pressur', u'kingaroy'] [u'gambier', u'council', u'detail', u'draft', u'budget'] [u'surgeri', u'closur', u'expect', u'lengthen', u'doctor'] [u'trader', u'jail'] [u'nation', u'call', u'reward', u'help', u'patel'] [u'nestl', u'redund', u'talk', u'begin'] [u'face', u'name', u'women', u'ash', u'squad'] [u'hope', u'brain', u'tumour', u'patient'] [u'kimberley', u'drill', u'announc'] [u'sculptur', u'commemor', u'wwii', u'bomber'] [u'refuge', u'commission', u'start', u'work'] [u'ngos', u'challeng', u'manag', u'australia', u'detent'] [u'start', u'slight', u'favorit', u'origin'] [u'elect', u'hope', u'attend', u'ntcoss', u'forum'] [u'green', u'prefer', u'labor'] [u'opposit', u'seek', u'explan', u'gatto', u'acquitt'] [u'origin', u'audio', u'highlight'] [u'outgo', u'nation', u'leader', u'defend', u'futur', u'plan'] [u'pagan', u'tell', u'fevola', u'lift', u'game'] [u'palmer', u'delay', u'handov', u'report'] [u'parma', u'releg', u'play'] [u'pedestrian', u'die', u'truck', u'encount'] [u'perth', u'nightclub', u'warn', u'risk'] [u'perth', u'polic', u'investig', u'home', u'invas'] [u'recommend', u'senior', u'polic', u'face', u'charg'] [u'platypus', u'lead', u'supermarket', u'check'] [u'leav', u'detent', u'deal', u'door', u'open'] [u'polic', u'face', u'charg', u'bulldog', u'inquiri'] [u'policeman', u'liken', u'accid', u'homicid'] [u'polic', u'prepar', u'death', u'custodi', u'report'] [u'polic', u'struggl', u'retriv', u'bodi', u'sinkhol'] [u'politician', u'worri', u'magistr', u'workload'] [u'pont', u'look', u'confid', u'boost'] [u'protest', u'renew', u'campaign', u'live', u'sheep', u'trade'] [u'public', u'urg', u'meninde', u'lake'] [u'push', u'nativ', u'pet', u'save', u'speci', u'cane'] [u'push', u'reform', u'assault', u'trial', u'law'] [u'quarri', u'worker', u'die', u'truck', u'crash'] [u'rail', u'servic', u'disrupt', u'worker'] [u'rain', u'expect', u'boost', u'stock', u'forag'] [u'rain', u'tip', u'bring', u'bumper', u'esper', u'harvest'] [u'ranger', u'buy', u'boat', u'council', u'reject', u'compo'] [u'rebel', u'liber', u'label', u'polit', u'terrorist'] [u'red', u'dump', u'major', u'sponsor'] [u'red', u'expect', u'sign', u'barn'] [u'red', u'releas', u'stile'] [u'report', u'sean', u'penn', u'cover', u'iranian', u'poll'] [u'report', u'find', u'consum', u'confid', u'slide'] [u'report', u'predict', u'north', u'coast', u'growth'] [u'resid', u'form', u'action', u'group', u'oppos', u'saleyard'] [u'ricki', u'stuart', u'danni', u'buderus'] [u'rival', u'auction', u'hous', u'battl', u'client'] [u'rlpbs', u'mark', u'year'] [u'rogu', u'trader', u'jail'] [u'routin', u'check', u'save', u'melbourn', u'woman', u'unborn', u'child'] [u'africa', u'oppos', u'japan', u'whale', u'hunt', u'plan'] [u'scientist', u'watch', u'white', u'whale', u'skin'] [u'search', u'continu', u'miss', u'angler'] [u'second', u'charg', u'biki', u'gang', u'raid'] [u'senat', u'delay', u'super', u'surcharg', u'demis'] [u'senat', u'pass', u'labor', u'amend'] [u'sensi', u'boss', u'declin', u'specul', u'trujillo'] [u'call', u'volunt'] [u'shoulder', u'injuri', u'end', u'lomus', u'season'] [u'singapor', u'airlin', u'pursu', u'access', u'aust'] [u'smoke', u'alarm', u'work', u'toronto', u'hous', u'blaze'] [u'socceroo', u'welcom', u'asia', u'switch', u'approv'] [u'studi', u'focus', u'caravan', u'park', u'crime'] [u'survey', u'reveal', u'injuri', u'toll'] [u'survey', u'show', u'holiday', u'romanc', u'destin', u'fail'] [u'suspend', u'sentenc', u'riot', u'accus', u'court'] [u'better', u'telstra', u'servic'] [u'thiev', u'steal', u'special', u'school', u'pond'] [u'time', u'run', u'drought'] [u'tour', u'industri', u'consid', u'safeti', u'plan', u'pledg'] [u'tourism', u'safeti', u'audit', u'like', u'includ', u'southern'] [u'train', u'fund', u'target', u'outback', u'tourism'] [u'transport', u'compani', u'offic', u'raid'] [u'tribun', u'ban', u'footi', u'behaviour'] [u'union', u'presid', u'anti', u'pledg'] [u'vanston', u'accus', u'cover', u'wrong', u'detent'] [u'vanston', u'reiter', u'faith', u'palmer', u'inquiri'] [u'govt', u'accus', u'bulli', u'communiti', u'group'] [u'govt', u'approv', u'wind', u'farm'] [u'video', u'show', u'whale', u'slow', u'hunt', u'death'] [u'warn', u'spin', u'england', u'warn'] [u'water', u'price', u'need', u'rise', u'polici', u'group'] [u'water', u'road', u'australia', u'world', u'leader'] [u'clear', u'paedophil', u'deport'] [u'weather', u'chang', u'prompt', u'warn', u'driver'] [u'weather', u'take', u'toll', u'rice', u'harvest'] [u'confirm', u'bird', u'case', u'vietnam'] [u'winter', u'crop', u'look', u'good', u'farmer'] [u'wit', u'seek', u'fatal', u'crash'] [u'work', u'code', u'forc', u'industri', u'roster', u'chang'] [u'worsfold', u'play', u'signific', u'demon', u'clash'] [u'wyndham', u'east', u'kimberley', u'get', u'shire'] [u'charg', u'cooloola', u'shire', u'drug', u'raid'] [u'recreat', u'centr', u'open', u'price'] [u'gold', u'plan', u'coolgardi'] [u'chief', u'call', u'approach', u'fund'] [u'aborigin', u'exhibit', u'open', u'pari'] [u'accc', u'probe', u'wagga', u'fuel', u'price'] [u'analys', u'senat', u'inquiri', u'find'] [u'amnesti', u'lobbi', u'govt', u'pakistan', u'human', u'right'] [u'establish', u'research', u'centr', u'extra'] [u'argentina', u'pass', u'tunisian', u'test', u'open', u'conf'] [u'hit', u'record', u'high'] [u'settl', u'peak'] [u'australian', u'child', u'take', u'hostag', u'cambodia'] [u'australian', u'plead', u'guilti', u'bank', u'robberi'] [u'aust', u'toddler', u'surviv', u'cambodian', u'school', u'sieg'] [u'basic', u'caloundra', u'budget', u'deliv', u'rate'] [u'mauresmo', u'mean', u'earli', u'eastbourn', u'exit'] [u'blaze', u'forc', u'riversid', u'woolworth', u'evacu'] [u'blue', u'maroon', u'count', u'cost', u'origin'] [u'bond', u'staff', u'stop', u'work', u'disput'] [u'bougainvill', u'fighter', u'govt', u'help'] [u'brave', u'socceroo', u'deni', u'germani', u'conf'] [u'brazil', u'halfway', u'find', u'world', u'team'] [u'breakthrough', u'charlestown', u'squar', u'redevelop'] [u'buckley', u'return'] [u'burk', u'quit', u'leader', u'lose', u'elect'] [u'burnett', u'council', u'discuss', u'cooper'] [u'bushwalk', u'blue', u'mountain'] [u'busi', u'form', u'chamber', u'allianc'] [u'effort', u'retain', u'region', u'doctor'] [u'candid', u'outlin', u'plan', u'solv', u'indigen'] [u'bomb', u'kill', u'policemen', u'west', u'baghdad'] [u'part', u'worker', u'protest', u'loss'] [u'cash', u'incens', u'hewitt', u'wimbledon', u'seed', u'snub'] [u'cat', u'hail', u'wood', u'rescu', u'team', u'membership'] [u'child', u'dead', u'cambodian', u'hostag', u'crisi'] [u'children', u'suffer', u'hospit', u'wait', u'list'] [u'electr', u'plan', u'year'] [u'clps', u'electr', u'propos', u'label', u'snake'] [u'unveil', u'elect', u'campaign', u'cost'] [u'coliban', u'water', u'bill'] [u'conflict', u'testimoni', u'delay', u'mcgee', u'commiss'] [u'consum', u'price', u'figur', u'boost', u'market'] [u'corrupt', u'trial', u'hear', u'close', u'address'] [u'cost', u'penalti', u'decis', u'anger', u'socceroo'] [u'cotton', u'group', u'slash', u'profit', u'forecast'] [u'council', u'accus', u'doubl', u'standard', u'swim'] [u'council', u'act', u'fish', u'carcass', u'dump', u'report'] [u'council', u'flag', u'golf', u'cours', u'plan'] [u'councillor', u'push', u'rise'] [u'councillor', u'rise', u'issu', u'vote'] [u'council', u'reject', u'bathurst', u'brothel', u'plan'] [u'council', u'reject', u'homeswest', u'unit', u'plan'] [u'council', u'seek', u'boost', u'indigen', u'job'] [u'coupl', u'plead', u'guilti', u'clean', u'fraud'] [u'credit', u'card', u'debt', u'rise', u'slight', u'amid', u'consum'] [u'crow', u'heritag', u'guernsey', u'rais', u'power', u'hackl'] [u'dajka', u'ban', u'year'] [u'decis', u'expect', u'today'] [u'defenc', u'watchdog', u'hail', u'militari', u'inquiri', u'report'] [u'democrat', u'leader', u'back', u'group', u'aquacultur', u'concern'] [u'demon', u'focus', u'secur', u'home', u'victori', u'say'] [u'demon', u'focus', u'secur', u'home', u'victori', u'say'] [u'denmark', u'urg', u'whale'] [u'discoveri', u'inch', u'nasa', u'launch'] [u'docker', u'lack', u'cohes', u'say', u'connolli'] [u'doc', u'boost', u'break', u'hill', u'staff', u'number'] [u'downer', u'delight', u'wood', u'releas'] [u'dozen', u'kill', u'widespread', u'iraq', u'attack'] [u'east', u'timor', u'look', u'afield', u'disput'] [u'employ', u'ask', u'code', u'reduc', u'work'] [u'england', u'complac', u'say', u'trescothick'] [u'environ', u'grant', u'cut', u'anger', u'senat'] [u'famili', u'breath', u'easi', u'wood', u'releas'] [u'famili', u'escap', u'burn', u'hous'] [u'farmer', u'warn', u'china', u'trade', u'deal', u'impact'] [u'farmer', u'welcom', u'rain', u'warm', u'temperatur'] [u'feder', u'parliament', u'hear', u'deport', u'case'] [u'feder', u'ooz', u'confid', u'ahead', u'wimbledon'] [u'fevola', u'unfaz', u'pagan', u'critic'] [u'fisher', u'say', u'illeg', u'fish', u'trade', u'widespread'] [u'australian', u'ballet', u'director', u'stretton', u'die'] [u'task', u'forc', u'instal', u'cradl', u'mountain', u'camera'] [u'friend', u'better', u'famili', u'help', u'live'] [u'fund', u'water', u'storag', u'feasibl', u'studi'] [u'gallop', u'discuss', u'south', u'hedland', u'age', u'care'] [u'gilchrist', u'vote', u'destroy', u'chief'] [u'glen', u'inn', u'severn', u'elig', u'jail'] [u'gold', u'coast', u'council', u'deliv', u'spend'] [u'govt', u'defend', u'casa', u'crash', u'reaction'] [u'govt', u'defend', u'respons', u'telstra', u'inquiri'] [u'govt', u'disappoint', u'local', u'benefit', u'woodsid'] [u'govt', u'fund', u'drought', u'relief', u'counsellor'] [u'govt', u'happi', u'servic', u'trial', u'respons'] [u'govt', u'put', u'offer', u'baradin', u'timber'] [u'govt', u'derail', u'freeload', u'tilt', u'train', u'mayor', u'say'] [u'govt', u'stand', u'colleg', u'time', u'line'] [u'govt', u'coast', u'perspect', u'infrastructur'] [u'govt', u'rethink', u'singapor', u'airlin', u'decis'] [u'govt', u'geograph', u'fish', u'stock'] [u'govt', u'urg', u'adopt', u'child', u'support', u'review'] [u'govt', u'urg', u'dental', u'wait', u'time'] [u'grazier', u'urg', u'higher', u'transact', u'levi'] [u'green', u'tabl', u'georgiou', u'replica'] [u'grim', u'outlook', u'fuel', u'price'] [u'group', u'maintain', u'battl', u'save', u'hospit'] [u'group', u'seek', u'commit', u'develop', u'autism', u'servic'] [u'group', u'appeal', u'part'] [u'guantanamo', u'defend', u'face', u'committe', u'grill'] [u'gunmen', u'student', u'hostag', u'cambodian', u'school'] [u'honey', u'wife', u'overjoy', u'wood', u'releas'] [u'home', u'kitti', u'call', u'cop'] [u'hop', u'mules', u'chang', u'boycott'] [u'hospit', u'deni', u'short', u'oper', u'prioriti'] [u'hospit', u'unveil', u'dialysi', u'centr'] [u'hotel', u'realist', u'approach', u'venu', u'safeti'] [u'howard', u'prais', u'iraqi', u'miracl', u'releas'] [u'human', u'cannonbal', u'fire', u'fear', u'fli'] [u'illeg', u'dump', u'emerg', u'north', u'east'] [u'import', u'permit', u'worri', u'oversea', u'pork', u'supplier'] [u'improv', u'goldfield', u'jail', u'need'] [u'indonesian', u'farm', u'worker', u'test', u'posit', u'bird'] [u'inmat', u'behead', u'brazilian', u'prison', u'riot'] [u'inquiri', u'claim', u'abus', u'condemn'] [u'iranian', u'plutonium', u'research', u'continu'] [u'irrig', u'face', u'water', u'alloc'] [u'jail', u'sentenc', u'increas', u'calcul', u'sexual'] [u'john', u'injuri', u'cloud'] [u'karlov', u'win', u'battl', u'croat'] [u'karoonda', u'storm', u'recoveri', u'committe', u'meet'] [u'kimberley', u'host', u'domest', u'violenc', u'educ'] [u'labor', u'advoc', u'troop', u'afghan', u'return'] [u'late', u'diagnos', u'prompt', u'lung', u'cancer', u'warn'] [u'launceston', u'plead', u'guilti', u'strangl', u'partner'] [u'lawyer', u'reach', u'agreement', u'patel', u'return'] [u'injuri', u'latest', u'shock', u'ash', u'tourist'] [u'legisl', u'council', u'pass', u'aborigin'] [u'lose', u'bushwalk'] [u'maestro', u'giulini', u'die', u'age'] [u'injur', u'smelter', u'explos'] [u'lose', u'court', u'drop', u'habitu', u'crimin'] [u'court', u'home', u'invas'] [u'maroon', u'brisban'] [u'martin', u'pledg', u'serv', u'term', u'win'] [u'merg', u'futur', u'await', u'longreach', u'pastor', u'colleg'] [u'migaloo', u'return', u'gold', u'coast', u'water'] [u'militari', u'justic', u'fail', u'personnel', u'inquiri', u'find'] [u'millfield', u'bridg', u'demolish'] [u'miner', u'reveal', u'promis', u'diamond', u'survey'] [u'miner', u'beat', u'break', u'hill', u'find'] [u'gambier', u'host', u'child', u'abus', u'inquiri'] [u'mudge', u'gulgong', u'fluorid', u'water'] [u'murdoch', u'read', u'fleet', u'street', u'rite'] [u'musharraf', u'mission', u'democratis', u'pakistan'] [u'nake', u'rambler', u'take', u'friend', u'stroll'] [u'campaign', u'assault', u'pull', u'punch'] [u'fund', u'offer', u'hacc', u'scheme'] [u'sentenc', u'option', u'domest', u'violenc', u'accus'] [u'oppos', u'telstra', u'sale'] [u'convinc'] [u'parti', u'deni', u'groundwat', u'meter', u'plan'] [u'child', u'kill', u'cambodian', u'hostag', u'crisi'] [u'opposit', u'critic', u'dpps', u'reappoint'] [u'opposit', u'parti', u'chen', u'inquiri'] [u'panel', u'develop', u'road', u'submiss'] [u'parker', u'complet', u'newcastl'] [u'patel', u'lawyer', u'discuss', u'doctor', u'possibl', u'return'] [u'patel', u'return', u'inquiri', u'uncertain', u'say'] [u'patrol', u'increas', u'combat', u'forest', u'rubbish', u'dump'] [u'pebbl', u'trial', u'tell', u'woman', u'think', u'virgin', u'mari'] [u'pension', u'group', u'angri', u'call', u'rat', u'rebat'] [u'pension', u'wealth', u'fall', u'short', u'comfi', u'retir'] [u'pesticid', u'post', u'parkinson', u'risk', u'farmer', u'studi'] [u'meat', u'import', u'prais'] [u'pill', u'plan', u'grow', u'wallabi', u'popul'] [u'polic', u'minist', u'back', u'decis', u'sack', u'offic'] [u'polic', u'deal', u'reach', u'ahead', u'elect'] [u'polic', u'seek', u'public', u'help', u'murder', u'investig'] [u'rainforest', u'tree', u'plan', u'botan', u'garden'] [u'rain', u'consid', u'drought', u'break'] [u'rebel', u'hop', u'detent', u'bill', u'wont', u'need'] [u'schiavo', u'autopsi', u'show', u'perman', u'brain', u'damag'] [u'scott', u'forecast', u'tough', u'time', u'open'] [u'seafood', u'industri', u'fear', u'quota', u'hurt', u'reef'] [u'secur', u'forc', u'sieg', u'cambodia'] [u'shire', u'hang', u'trujillo', u'cost', u'shift', u'suggest'] [u'shot', u'fire', u'insid', u'cambodian', u'school'] [u'sign', u'mein', u'kampf', u'fetch'] [u'singapor', u'airlin', u'lobbi', u'ride', u'australia'] [u'lift', u'open', u'season', u'snow', u'fall'] [u'stargaz', u'enjoy', u'rare', u'jupit', u'sight'] [u'stargaz', u'prepar', u'daylight', u'view', u'jupit'] [u'studi', u'consid', u'recreat', u'fish', u'impact'] [u'surg', u'demand', u'push', u'fuel', u'price'] [u'swamp', u'rehab', u'plan', u'offer', u'snowi', u'water'] [u'swiss', u'claim', u'tour', u'switzerland', u'stage'] [u'tanker', u'raid', u'iraq', u'termin'] [u'tanneri', u'meet', u'draw', u'resid', u'anger'] [u'telstra', u'lose', u'phone', u'tower'] [u'tough', u'pinehurst', u'cours', u'mean'] [u'town', u'sell', u'smoke', u'alarm', u'fatal', u'hous'] [u'tradit', u'owner', u'condemn', u'wind', u'farm', u'open'] [u'train', u'track', u'bendigo'] [u'treasur', u'deni', u'mislead', u'parliament'] [u'tsang', u'hong', u'kong', u'leader'] [u'dead', u'cambodian', u'school', u'hostag', u'drama', u'end'] [u'ulcer', u'caus', u'infect', u'link', u'heartbeat'] [u'union', u'blame', u'mine', u'compani', u'trade', u'shortag'] [u'union', u'seek', u'generous', u'payout', u'nestl', u'worker'] [u'union', u'anglicar', u'disput'] [u'author', u'win', u'irish', u'fiction', u'prize', u'novel'] [u'militari', u'crash', u'home', u'injuri'] [u'persi', u'appear', u'court', u'rape', u'claim'] [u'vanston', u'announc', u'visa', u'long', u'term', u'detaine'] [u'vast', u'differ', u'waterfront', u'plan'] [u'victim', u'day', u'crash', u'coron', u'tell'] [u'employ', u'angri', u'draft', u'workplac', u'code'] [u'wage', u'hop', u'inflat', u'predict'] [u'govt', u'attack', u'paedophil', u'deport', u'stanc'] [u'govt', u'determin', u'stop', u'bank', u'robber', u'transfer'] [u'waldron', u'pay', u'tribut', u'trenorden'] [u'heart', u'lung', u'transplant', u'recipi', u'recov'] [u'wash', u'card', u'piec', u'ship', u'puzzl'] [u'webb', u'confid', u'origin'] [u'accus', u'assault', u'businessman'] [u'move', u'closer', u'master', u'berth'] [u'wind', u'farm', u'propon', u'pleas', u'approv'] [u'wiper', u'factori', u'loss', u'prompt', u'staff', u'tool'] [u'woman', u'lose', u'govt', u'husband', u'death'] [u'woman', u'stand', u'trial', u'attempt', u'murder', u'charg'] [u'woodchip', u'export', u'reject', u'price', u'claim'] [u'woodchip', u'decis', u'spark', u'council'] [u'wood', u'famili', u'celebr'] [u'wood', u'issu', u'statement', u'thank'] [u'wood', u'leav', u'iraq'] [u'wood', u'rescu', u'detail', u'unclear'] [u'wood', u'prais', u'team', u'australia', u'effort'] [u'wood', u'wife', u'make', u'contact', u'releas'] [u'wood', u'move', u'secret', u'middl', u'east', u'locat'] [u'wood', u'walk', u'free', u'captor'] [u'world', u'bank', u'boss', u'urg', u'fairer', u'trade'] [u'yudhoyono', u'hotlin', u'prompt', u'mobil', u'meltdown'] [u'budget', u'slug', u'unit', u'owner'] [u'aborigin', u'hail', u'victori', u'commonsens'] [u'abus', u'wife', u'acquit', u'murder', u'charg'] [u'abus', u'email', u'send', u'death', u'custodi', u'case'] [u'die', u'highway', u'crash'] [u'adelaid', u'pair', u'court', u'cannabi'] [u'adopt', u'grandpa', u'runner'] [u'african', u'boy', u'sacrific', u'report'] [u'ord', u'end', u'excit', u'record', u'high'] [u'state', u'caucus', u'consid', u'caravan', u'park'] [u'ancient', u'glass', u'make', u'site', u'egypt'] [u'anderson', u'support', u'telstra', u'split'] [u'apart', u'consid', u'vital', u'albani', u'project'] [u'appl', u'grower', u'attack', u'boycott', u'plan'] [u'architect', u'honour', u'woolsh'] [u'ashbourn', u'guilti', u'corrupt'] [u'astronom', u'welcom', u'light'] [u'aust', u'offici', u'wood', u'discuss', u'hostag', u'ordeal'] [u'australia', u'form', u'cricket', u'partnership', u'indonesia'] [u'australia', u'get', u'presid', u'bless', u'join'] [u'australian', u'account', u'wood', u'rescu', u'wrong'] [u'australian', u'children', u'safe', u'cambodia', u'sieg'] [u'australian', u'cyclist', u'domin', u'tour', u'switzerland'] [u'bail', u'refus', u'charg', u'stab', u'murder'] [u'bangladeshi', u'asylum', u'seeker', u'deport', u'delay'] [u'beatti', u'upbeat', u'patel', u'return', u'strategi'] [u'shortag', u'highlight', u'ail', u'health'] [u'bell', u'sink', u'wwii', u'ship', u'cemeteri'] [u'bennett', u'say', u'webck', u'wont', u'chang', u'mind'] [u'proceed', u'takeov'] [u'chang', u'urg', u'australia', u'militari', u'justic'] [u'blast', u'delay', u'crush', u'season'] [u'bluescop', u'clarifi', u'stanc'] [u'blue', u'dog', u'bring', u'darwin'] [u'booki', u'back', u'labor', u'elect'] [u'brazil', u'robinho', u'dazzl', u'eas', u'past', u'greec'] [u'brown', u'take', u'issu', u'senat', u'wheat', u'debt'] [u'burk', u'dismiss', u'cost', u'critic'] [u'bush', u'popular', u'continu', u'slide', u'poll'] [u'cadet', u'mother', u'case'] [u'cairn', u'rural', u'mental', u'health', u'centr'] [u'calm', u'defend', u'tourist', u'safeti', u'effort'] [u'calson', u'plant', u'job', u'threat'] [u'cambodian', u'sieg', u'reveng', u'attack', u'polic'] [u'campbel', u'head', u'whale', u'meet', u'ahead', u'vote'] [u'campus', u'head', u'highlight', u'rural', u'cours', u'import'] [u'bomber', u'attack', u'shiit', u'mosqu', u'baghdad'] [u'cattl', u'duf', u'earn', u'jail', u'sentenc', u'dubbo'] [u'cemeteri', u'vandal', u'ask', u'think', u'twice'] [u'chang', u'afoot', u'water', u'catchment'] [u'chariti', u'charg', u'custom', u'duti', u'tsunami', u'relief'] [u'church', u'england', u'appoint', u'black', u'archbishop'] [u'cliff', u'tragedi', u'famili', u'compo', u'battl'] [u'close', u'tie', u'visa', u'abolish'] [u'submit', u'cost', u'treasuri'] [u'coff', u'council', u'adopt', u'draft', u'manag', u'plan'] [u'cole', u'recal', u'pasta', u'sauc'] [u'compani', u'guilti', u'westralia', u'safeti', u'fail'] [u'concern', u'rais', u'state', u'circl', u'develop'] [u'contractor', u'delay', u'hamper', u'rock', u'plan'] [u'coonambl', u'resid', u'excess', u'water'] [u'costello', u'dismiss', u'bluescop', u'steel', u'reaction'] [u'council', u'clarifi', u'pension', u'rat', u'debat'] [u'council', u'knock', u'hostel', u'plan'] [u'council', u'lament', u'higher', u'cost', u'land', u'releas'] [u'court', u'deliv', u'suspend', u'sentenc', u'suppli'] [u'court', u'jail', u'albani', u'bank', u'robber'] [u'court', u'reject', u'onetel', u'pair', u'intervent'] [u'court', u'reserv', u'decis', u'action', u'foster'] [u'cruis', u'propos', u'actress', u'holm', u'eiffel', u'tower'] [u'cycl', u'learn', u'dajka', u'barra', u'incid'] [u'dairi', u'farmer', u'threaten', u'quit', u'price'] [u'death', u'spark', u'urgenc', u'address', u'abandon'] [u'deport', u'witchcliff', u'farmer', u'feel', u'victimis'] [u'dept', u'offer', u'mildura', u'transport', u'survey', u'assur'] [u'derbi', u'resid', u'littl', u'juri', u'duti'] [u'detent', u'polici', u'talk', u'continu', u'amid', u'visa'] [u'dismal', u'swamp', u'slide', u'reopen'] [u'doctor', u'orthopaed', u'surgeri', u'wait', u'list'] [u'move', u'stop', u'crimin', u'profit', u'crime'] [u'drought', u'put', u'salvo', u'fli', u'padr', u'demand'] [u'dubbo', u'councillor', u'undergo', u'brain', u'tumour', u'remov'] [u'dvds', u'miner', u'base', u'cours'] [u'kill', u'burundi', u'fight'] [u'timber', u'open'] [u'leader', u'troubl', u'treati', u'hold'] [u'evergreen', u'reject', u'senat', u'canker', u'inquiri', u'claim'] [u'expans', u'plan', u'townsvill', u'hospit', u'emerg'] [u'farley', u'stay'] [u'father', u'admit', u'throw', u'toddler', u'floor', u'court'] [u'fear', u'lion', u'storm', u'spread', u'farm', u'debri'] [u'feder', u'promis', u'help', u'storm', u'karoonda'] [u'govt', u'choke', u'canberra', u'growth', u'potenti'] [u'figur', u'china', u'accid', u'worsen'] [u'financi', u'advis', u'ban', u'develop', u'collaps'] [u'firm', u'drop', u'hous', u'plan', u'near', u'cessnock'] [u'flatley', u'confid', u'make', u'intern', u'return'] [u'food', u'firm', u'stew', u'gandhi', u'curri'] [u'fund', u'avail', u'natur', u'refug'] [u'fund', u'secur', u'port', u'augusta', u'crime'] [u'gold', u'coast', u'consid', u'film', u'commiss'] [u'gold', u'allow', u'mine', u'price'] [u'govern', u'push', u'fast', u'track', u'morwel', u'subway'] [u'govt', u'pledg', u'research'] [u'govt', u'push', u'prostitut', u'regul'] [u'govt', u'effort', u'block', u'detain', u'illeg', u'fisherman'] [u'govt', u'review', u'fund'] [u'gypsi', u'joker', u'guilti', u'assault', u'charg'] [u'hancock', u'kumba', u'iron', u'interest'] [u'hank', u'buy', u'right', u'deep', u'throat'] [u'harvey', u'norman', u'franchis', u'fin'] [u'high', u'court', u'hear', u'garag', u'sale', u'injuri', u'case'] [u'historian', u'outlin', u'anzac', u'roadwork', u'problem'] [u'hope', u'remain', u'murray', u'river', u'western', u'bridg', u'option'] [u'hotel', u'group', u'seek', u'balanc', u'safeti'] [u'idea', u'air', u'attract', u'doctor', u'fraser', u'coast'] [u'inquiri', u'make', u'defenc', u'forc', u'review', u'recommend'] [u'iranian', u'poll'] [u'joint', u'product', u'bring', u'cash', u'inject', u'sydney'] [u'joshi', u'leav', u'state', u'theatr'] [u'juri', u'fail', u'reach', u'verdict', u'linek', u'kewel'] [u'kangaroo', u'lift', u'colbert'] [u'kapunda', u'commission', u'make', u'urgent', u'plea'] [u'kingston', u'budget', u'deliv', u'rate', u'rise'] [u'kusnetsova', u'clijster', u'coast', u'eastbourn', u'semi'] [u'kyrgyz', u'protest', u'seiz', u'govt', u'build'] [u'labor', u'support', u'uranium', u'mine'] [u'pass', u'alpin', u'cattl', u'graze'] [u'reform', u'group', u'urg', u'chang', u'work', u'place', u'death'] [u'leader', u'dedic', u'gold', u'coast', u'lane'] [u'clear', u'shoulder', u'damag'] [u'letter', u'appeal', u'patel', u'return'] [u'nettl', u'eat', u'begin'] [u'liber', u'parti', u'name', u'femal', u'presid'] [u'lion', u'lappin', u'match'] [u'listen', u'farewel', u'cattern', u'airwav'] [u'long', u'term', u'unemploy', u'rate', u'drop', u'tasmania'] [u'mackay', u'conserv', u'group', u'suffer', u'fund'] [u'charg', u'wilcannia', u'stab'] [u'charg', u'doubl', u'murder'] [u'charg', u'murder', u'newcastl', u'stab'] [u'crush', u'car', u'council', u'depot'] [u'front', u'court', u'basebal', u'assault', u'charg'] [u'get', u'year', u'manslaught', u'mother'] [u'jail', u'counterfeit', u'scam'] [u'question', u'fatal', u'stab'] [u'martin', u'defend', u'propos', u'habitu', u'drunk'] [u'import', u'figur', u'biggest', u'month'] [u'mcgee', u'diagnosi', u'proper', u'clinic', u'basi'] [u'meatwork', u'reopen', u'expect', u'lift', u'harden'] [u'mehrten', u'head', u'england'] [u'mental', u'asylum', u'seeker', u'deport'] [u'mexico', u'down', u'japan', u'conf'] [u'minist', u'deni', u'know', u'inmat', u'classif'] [u'minist', u'say', u'die', u'afghan', u'flood'] [u'detail', u'emerg', u'wood', u'releas'] [u'say', u'alpin', u'cattl', u'graze', u'hurt', u'region'] [u'myskina', u'humbl', u'qualifi', u'eastbourn'] [u'newcastl', u'final', u'secur', u'sponsor'] [u'manag', u'waltz', u'matilda', u'centr'] [u'newman', u'budget', u'pass', u'citi', u'hall'] [u'technolog', u'improv', u'tilt', u'train', u'safeti'] [u'troop', u'lift', u'helicopt', u'build', u'brisban'] [u'korean', u'leader', u'meet', u'south', u'korean', u'minist'] [u'korea', u'will', u'return', u'nuclear', u'talk', u'juli'] [u'nrma', u'studi', u'england', u'highway', u'safeti'] [u'pair', u'die', u'ross', u'highway', u'crash'] [u'paradorn', u'crash', u'french', u'teen', u'star'] [u'parent', u'speak', u'dead', u'school', u'sieg'] [u'patel', u'divers', u'opposit', u'say'] [u'patel', u'return', u'doubt'] [u'peru', u'armi', u'chopper', u'crash', u'miss'] [u'piston', u'level', u'final', u'seri'] [u'plan', u'guidelin', u'spark', u'chines', u'templ', u'concern'] [u'announc', u'detent', u'chang'] [u'announc', u'major', u'chang', u'migrat', u'law'] [u'polic', u'command', u'pleas', u'clear'] [u'polic', u'seek', u'wit', u'student', u'stab'] [u'power', u'trounc', u'hawk'] [u'apprenticeship', u'place', u'break', u'hill'] [u'premium', u'milk', u'grant', u'interim', u'authoris'] [u'prison', u'access', u'polic', u'videotap', u'toughen'] [u'protest', u'face', u'polic', u'kyrgyzstan'] [u'protest', u'seiz', u'prosecutor', u'offic', u'kyrgyzstan'] [u'public', u'warn', u'bogus', u'fundrais', u'call'] [u'girl', u'miss', u'child', u'tegan', u'lane'] [u'queen', u'maria', u'look', u'reclaim', u'wimbledon', u'crown'] [u'rann', u'call', u'honour', u'ashbourn', u'inquiri', u'pledg'] [u'red', u'tri', u'talk', u'kefu', u'quit', u'japan'] [u'revamp', u'begin', u'wast', u'water', u'treatment', u'plant'] [u'revamp', u'delorain', u'race', u'track'] [u'rspca', u'boss', u'hire', u'protect'] [u'sauc', u'splash', u'spat', u'stain', u'lawyer', u'reput'] [u'savag', u'byrn', u'agre', u'disagre', u'riverfront'] [u'schumach', u'baffl', u'retir', u'claim'] [u'search', u'boat', u'sink', u'near', u'fraser'] [u'search', u'escap', u'indonesian', u'fish', u'crew'] [u'secret', u'dougla', u'wood', u'video', u'releas'] [u'shark', u'return', u'win', u'way'] [u'shire', u'want', u'drought', u'declar', u'process', u'clarifi'] [u'korea', u'press', u'jong', u'nuclear', u'issu'] [u'socceroo', u'face', u'decis', u'viduka'] [u'socceroo', u'lodg', u'complaint', u'popov', u'tackl'] [u'son', u'suicid', u'follow', u'militari', u'bulli', u'mother'] [u'student', u'head', u'start'] [u'survey', u'show', u'high', u'bateman', u'busi', u'confid'] [u'suspect', u'mastermind', u'sieg', u'arrest'] [u'suspend', u'sentenc', u'hand', u'indec'] [u'taiwan', u'flood', u'landslid', u'kill'] [u'tasmanian', u'school', u'step', u'secur'] [u'technolog', u'allow', u'indigen', u'communiti', u'stay'] [u'technolog', u'boost', u'loxton', u'drink', u'water'] [u'teen', u'charg', u'assault', u'polic'] [u'thorn', u'tempt', u'lock', u'webck', u'origin'] [u'aussi', u'escap', u'school', u'sieg'] [u'tiger', u'cover', u'richardson', u'craig'] [u'town', u'hall', u'concours', u'shop', u'face'] [u'trade', u'orangutan', u'rife', u'indonesia', u'report'] [u'trauma', u'haunt', u'cambodian', u'school', u'hostag', u'victim'] [u'trescothick', u'star', u'england', u'overpow', u'bangladesh'] [u'union', u'urg', u'govt', u'hospit', u'wait', u'list'] [u'start', u'repatri', u'afghan', u'pakistan'] [u'admir', u'highlight', u'central', u'exercis'] [u'current', u'account', u'deficit', u'surg', u'record', u'billion'] [u'vanston', u'launch', u'refuge', u'educ', u'school'] [u'vanston', u'review', u'detaine', u'applic'] [u'vanston', u'stand', u'detaine', u'deport', u'plan'] [u'vline', u'late', u'train'] [u'wadey', u'educ', u'fund', u'shortfal', u'question'] [u'wallabi', u'boost', u'play', u'samoa'] [u'water', u'manag', u'see', u'crucial', u'saleyard'] [u'welfar', u'group', u'continu', u'donat'] [u'monitor', u'bird', u'case'] [u'wimmera', u'secur', u'indigen', u'offic'] [u'wit', u'littl', u'pebbl', u'trial', u'reject', u'money'] [u'takeov', u'creat', u'footbal', u'academi', u'sponsorship'] [u'wood', u'move', u'secret', u'locat'] [u'wood', u'leav', u'iraq'] [u'workshop', u'consid', u'greenough', u'hamlet', u'build'] [u'alic', u'spring', u'posit', u'despit'] [u'qaeda', u'deputi', u'urg', u'ongo', u'jihad'] [u'antarct', u'treati', u'demand', u'action', u'pollut'] [u'argentina', u'coach', u'wari', u'danger', u'socceroo'] [u'australia', u'ralli', u'bangladesh'] [u'babi', u'australia', u'bear', u'freez'] [u'barrier', u'reef', u'fish', u'survey', u'expans'] [u'beatti', u'rule', u'indemn', u'patel'] [u'brazilian', u'polic', u'smash', u'cocain', u'network'] [u'brisban', u'prison', u'recaptur'] [u'brisban', u'good', u'despit', u'tiger', u'fightback'] [u'burk', u'conced', u'defeat'] [u'burk', u'troubl', u'labor', u'storm', u'victori'] [u'burk', u'struggl', u'voter', u'labor'] [u'cana', u'schalken', u'withdraw', u'wimbledon'] [u'carlton', u'receiv', u'dose', u'blue'] [u'carney', u'quiet', u'leadership'] [u'cleric', u'take', u'shock', u'lead', u'earli', u'iran', u'poll', u'result'] [u'clijster', u'face', u'junior', u'conquer', u'sharapova'] [u'clijster', u'win', u'eastbourn', u'final'] [u'leader', u'deni', u'burk', u'conced', u'defeat'] [u'optimist', u'despit', u'poll'] [u'collina', u'blow', u'whistl', u'career'] [u'confid', u'show', u'cool', u'hand'] [u'council', u'court', u'sewag'] [u'count', u'begin', u'elect'] [u'crow', u'destroy', u'toothless', u'tiger'] [u'deal', u'reach', u'make', u'pollut', u'antarctica'] [u'democrat', u'question', u'time', u'alloc', u'stem', u'cell'] [u'detaine', u'attempt', u'self', u'harm'] [u'detaine', u'take', u'hospit', u'sydney'] [u'detaine', u'treat', u'self', u'harm'] [u'doctor', u'strike', u'patient'] [u'eagl', u'deni', u'hoodoo'] [u'eagl', u'game', u'clear', u'victori'] [u'eagl', u'pois', u'shoot'] [u'earli', u'elect', u'result', u'swing', u'labor'] [u'eel', u'warrior'] [u'england', u'target', u'aussi', u'tail', u'strauss'] [u'profound', u'crisi', u'talk', u'collaps'] [u'expect', u'father', u'hewitt', u'focus', u'titl', u'tilt'] [u'extend', u'iranian', u'vote', u'end'] [u'feder', u'plan', u'bodi', u'power'] [u'gypsi', u'joker', u'chief', u'miss'] [u'tyco', u'head', u'guilti', u'fraud'] [u'franc', u'britain', u'loggerhead', u'budget'] [u'gasquet', u'bid', u'maiden', u'titl', u'mirnyi'] [u'girl', u'bear', u'freez'] [u'goosen', u'shin', u'hensbi', u'shadow', u'disast', u'strike'] [u'govt', u'deni', u'opposit', u'claim', u'ecstasi'] [u'govt', u'reject', u'hospit', u'staff', u'claim', u'fund'] [u'grassroot', u'intellig', u'wood', u'rescu'] [u'green', u'hearten', u'result'] [u'henri', u'blofeld', u'montag'] [u'howard', u'pictur', u'analyst'] [u'independ', u'wood', u'claim', u'darwin', u'rural', u'seat'] [u'indonesian', u'fish', u'boat', u'escap', u'author'] [u'iranian', u'presidenti', u'poll', u'second', u'round'] [u'iran', u'presidenti', u'elect', u'forc', u'second', u'round'] [u'iran', u'reject', u'iaea', u'accus', u'plutonium'] [u'john', u'neck', u'injuri', u'scare'] [u'john', u'visit', u'spine', u'specialist'] [u'jone', u'breath', u'lion'] [u'jone', u'england', u'squad'] [u'kasper', u'promis', u'pace', u'reviv'] [u'khartoum', u'opposit', u'allianc', u'sign'] [u'kyrgyz', u'interim', u'leader', u'accus', u'presid'] [u'labor', u'aborigin', u'need', u'talk', u'say', u'tilmouth'] [u'labor', u'landslid'] [u'labor', u'strong', u'punter'] [u'labor', u'uranium', u'promis', u'hypocrit'] [u'lion', u'tour', u'like', u'world', u'deja', u'say', u'clive'] [u'lucki', u'ducki', u'line', u'river', u'race'] [u'die', u'tulli', u'crash'] [u'martin', u'claim', u'victori'] [u'mastercard', u'secur', u'laps', u'expos', u'million'] [u'michael', u'kasprowicz', u'interview'] [u'mother', u'arrest', u'chase'] [u'confid', u'parti', u'approv', u'detent', u'deal'] [u'munch', u'museum', u'reopen', u'scream'] [u'nation', u'parti', u'draw', u'plan', u'elect'] [u'nation', u'drive', u'peopl', u'west'] [u'noxious', u'weed', u'return', u'hawkesburi'] [u'parti', u'play', u'elect', u'prospect'] [u'oprah', u'rank', u'world', u'power', u'celebr'] [u'panther', u'fight', u'quell', u'storm'] [u'peac', u'process', u'domin', u'rice', u'middl', u'east', u'tour'] [u'polic', u'assoc', u'wont', u'accept', u'investig', u'cost'] [u'polic', u'injur', u'belfast', u'parad', u'violenc'] [u'policemen', u'captur', u'taliban', u'attack'] [u'polic', u'recaptur', u'court', u'escape'] [u'polic', u'recaptur', u'second', u'prison'] [u'poll', u'open', u'elect'] [u'poor', u'gold', u'qualiti', u'forc', u'chariot', u'closur'] [u'power', u'trounc', u'hawk'] [u'protest', u'break', u'villawood', u'detent', u'centr'] [u'psychiatrist', u'dismiss', u'vanston', u'limit', u'role'] [u'ralf', u'crash', u'montoya', u'set', u'pace'] [u'rathbon', u'rule', u'test'] [u'refuge', u'advoc', u'condem', u'compromis', u'announc'] [u'refuge', u'advoc', u'seek', u'chang'] [u'roddick', u'warn', u'nadal', u'joker', u'wimbledon'] [u'rodin', u'sculptur', u'steal', u'chile', u'museum'] [u'roger', u'keep', u'swiss', u'lead', u'ahead', u'tough', u'mountain'] [u'rooney', u'surpris', u'charg', u'agent'] [u'samoa', u'tour', u'loss', u'mozzi'] [u'sanderson', u'voter', u'look', u'main', u'parti', u'promis'] [u'scan', u'show', u'clear', u'england', u'paceman', u'jone'] [u'scud', u'comeback', u'gather', u'pace'] [u'second', u'helicopt', u'crash', u'river'] [u'seminar', u'hear', u'way', u'assist', u'staff', u'age', u'care'] [u'senat', u'sandblast', u'diseas', u'inquiri'] [u'senat', u'submit', u'detent', u'bill'] [u'seven', u'miss', u'thredbo', u'blizzard'] [u'shell', u'govt', u'forg', u'clean', u'coal', u'research'] [u'simplot', u'potato', u'grower', u'agre', u'price'] [u'steal', u'rodin', u'sculptur'] [u'swift', u'eas', u'past', u'phoenix'] [u'tourism', u'boss', u'focus', u'lifestyl'] [u'tourist', u'guid', u'safe', u'lose'] [u'tourist', u'night', u'nation', u'park'] [u'union', u'urg', u'fund', u'prison', u'rehab', u'program'] [u'kill', u'insurg', u'iraq', u'oper'] [u'stock', u'resist', u'price', u'pressur'] [u'welfar', u'group', u'water', u'price', u'hike'] [u'wolfowitz', u'focus', u'african'] [u'youngster', u'work', u'love'] [u'ralli', u'refuge', u'right'] [u'actu', u'action', u'chang'] [u'actu', u'launch', u'reform', u'campaign'] [u'adler', u'accus', u'busi', u'deal', u'jail'] [u'adler', u'accus', u'busi', u'bar'] [u'adler', u'face', u'penalti'] [u'adler', u'punish', u'prison', u'busi', u'deal'] [u'aloisi', u'field', u'premier', u'leagu', u'offer'] [u'say', u'antivir', u'drug', u'suppli', u'fall', u'short'] [u'anti', u'marriag', u'ralli', u'madrid'] [u'australia', u'launch', u'symond', u'inquiri'] [u'australia', u'enterpris', u'start'] [u'avoid', u'pollut', u'area', u'exercis', u'journal', u'say'] [u'bangladesh', u'shock', u'aussi'] [u'bangladeshi', u'wild', u'cricket', u'upset'] [u'barrett', u'face', u'aussi', u'team'] [u'beatti', u'grand', u'stand', u'patel', u'failur'] [u'birthday', u'gasquet', u'claim', u'maiden'] [u'bulldog', u'bark', u'need'] [u'burk', u'lick', u'wound', u'victori', u'martin', u'look', u'ahead'] [u'burk', u'throw', u'burk', u'seat'] [u'bush', u'defend', u'iraq', u'mission'] [u'mandatori', u'detent'] [u'cambodian', u'school', u'hostag', u'gang', u'charg'] [u'cargo', u'ship', u'deliv', u'suppli'] [u'caribbean', u'push', u'commerci', u'whale'] [u'chen', u'come', u'hide', u'ralli'] [u'chines', u'claim', u'rais', u'canada'] [u'cleric', u'mayor', u'face', u'iran', u'elect', u'second', u'round'] [u'suffer', u'crush', u'territori', u'defeat'] [u'commentari', u'win', u'run'] [u'confus', u'remain', u'wood', u'releas'] [u'costello', u'cost', u'lee', u'say'] [u'detent', u'deal', u'senat', u'say'] [u'dragon', u'triumph', u'spirit', u'rabbitoh'] [u'drogba', u'doubl', u'keep', u'ivori', u'coast', u'track'] [u'drug', u'deal', u'problem', u'victoria', u'polic'] [u'farina', u'fume', u'decis'] [u'wicket', u'harmison', u'blunt', u'australia'] [u'franc', u'fight', u'draw', u'springbok'] [u'gambl', u'studi', u'welcom', u'limit'] [u'gaza', u'hous', u'knock'] [u'german', u'hostag', u'free', u'nigeria'] [u'goosen', u'pois', u'open', u'hensbi'] [u'greeni', u'wont', u'martin', u'uranium', u'promis'] [u'greenpeac', u'ship', u'bear', u'peac', u'wit', u'sabr'] [u'hill', u'say', u'wood', u'stori', u'remain', u'unclear'] [u'human', u'right', u'tabl', u'china'] [u'illeg', u'fishermen', u'detent', u'chang', u'need', u'say'] [u'injuri', u'forc', u'redknapp', u'retir'] [u'iraqi', u'journalist', u'wound', u'appar', u'kidnap', u'attempt'] [u'maxwel', u'interview'] [u'joey', u'knight', u'injuri', u'crisi', u'continu'] [u'minut', u'lobbi', u'ahead', u'whale', u'summit'] [u'late', u'goal', u'germani', u'tunisia'] [u'lion', u'roar', u'gabba'] [u'manag', u'job', u'slash', u'urban', u'servic'] [u'man', u'past', u'battl', u'knight'] [u'martin', u'proud', u'indigen', u'women', u'elect'] [u'melbourn', u'host', u'agricultur', u'biotechnolog'] [u'milit', u'attack', u'settlement', u'rice', u'visit'] [u'militari', u'justic', u'complet', u'flaw', u'minist'] [u'miner', u'explor', u'boom'] [u'mitsubishi', u'reach', u'break', u'point'] [u'concern', u'villawood', u'self', u'harmer'] [u'murder', u'children', u'mother', u'frustrat'] [u'nation', u'telstra', u'pressur', u'vail'] [u'nativ', u'plant', u'farmer', u'welcom'] [u'nat', u'pledg', u'countri', u'seat'] [u'opposit', u'rais', u'freight', u'rort', u'fear'] [u'palestinian', u'milit', u'say', u'rice'] [u'pont', u'stay', u'calm', u'bangladesh', u'shock'] [u'protest', u'march', u'refuge', u'right'] [u'queen', u'victoria', u'restor', u'glori'] [u'refuge', u'mark', u'ralli'] [u'renaiss', u'philippoussi', u'readi', u'wimbledon'] [u'rice', u'hail', u'histor', u'gaza', u'plan'] [u'robust', u'roo', u'bounc', u'docker'] [u'roger', u'close', u'victori', u'tour', u'switzerland'] [u'scud', u'posit', u'dutch', u'end'] [u'self', u'harm', u'detaine', u'desper', u'depress'] [u'self', u'harm', u'detaine', u'releas', u'hospit'] [u'clive', u'confirm', u'code', u'switch'] [u'sixteen', u'kill', u'baghdad', u'restaur', u'blast'] [u'socceroo', u'fight'] [u'south', u'korean', u'soldier', u'kill', u'colleagu'] [u'spain', u'quit', u'polit', u'strike'] [u'student', u'confess', u'rodin', u'sculptur', u'theft'] [u'symond', u'ban', u'match'] [u'dead', u'baxter', u'collis'] [u'trucki', u'ralli', u'move'] [u'trucki', u'continu', u'campaign'] [u'trulli', u'hand', u'toyota', u'pole'] [u'vanston', u'condemn', u'self', u'harm', u'protest'] [u'villawood', u'self', u'harm', u'prompt', u'case', u'review'] [u'vote', u'start', u'lebanon'] [u'wheelchair', u'taxi', u'servic', u'fundament', u'flaw'] [u'wood', u'deal', u'clinch', u'sheikh'] [u'wood', u'head', u'home', u'reunion'] [u'wood', u'home'] [u'worker', u'right', u'featur', u'elect', u'union'] [u'world', u'leader', u'plead', u'kyi', u'releas'] [u'young', u'socceroo', u'agonis', u'exit'] [u'zimbabw', u'home', u'demolit', u'spread', u'rural', u'area'] [u'abar', u'cut', u'farm', u'product', u'estim'] [u'abbott', u'urg', u'better', u'medicin', u'manag'] [u'accc', u'probe', u'action', u'wooli', u'takeov', u'plan'] [u'action', u'group', u'worri', u'road', u'approv'] [u'adamson', u'announc', u'retir', u'plan'] [u'afford', u'hous', u'get', u'tougher'] [u'traffic', u'control', u'fault', u'mishap'] [u'albani', u'urg', u'protect', u'heritag'] [u'alic', u'seat', u'hang', u'balanc'] [u'ask', u'immigr', u'chang'] [u'match', u'win', u'inning', u'kevin', u'pietersen'] [u'ancic', u'beat', u'llodra', u'holland'] [u'anglican', u'clergi', u'whistleblow', u'resign'] [u'anti', u'syrian', u'bloc', u'win', u'final', u'elect', u'phase'] [u'pursu', u'pigmeat', u'permit', u'holder'] [u'ashborn', u'acquitt', u'spark', u'commiss'] [u'assault', u'victim', u'undertak', u'civil', u'action'] [u'aust', u'dollar', u'climb', u'higher'] [u'batman', u'begin', u'lead', u'worldwid', u'offic'] [u'berrigan', u'say', u'premiership', u'race', u'wide', u'open'] [u'blood', u'shortag', u'wide'] [u'board', u'probe', u'claim', u'teacher', u'charg'] [u'bollywood', u'seek', u'male', u'megastar', u'lure', u'crowd'] [u'brack', u'announc', u'boost', u'stem', u'cell', u'research'] [u'brack', u'govt', u'chip', u'market', u'buck', u'murray'] [u'broom', u'bump', u'rat'] [u'brumbi', u'lose', u'fava', u'forc'] [u'bugaldi', u'captain', u'elect', u'associ', u'presid'] [u'bundaberg', u'hospit', u'inquiri', u'resum'] [u'burton', u'face', u'bump'] [u'bushfir', u'cost', u'recov', u'water', u'price', u'rise'] [u'cafnec', u'wait', u'fund'] [u'cairn', u'lose', u'indigen', u'legal', u'servic'] [u'resid', u'feedback', u'amalgam', u'report'] [u'review', u'water', u'electr', u'deliveri', u'regim'] [u'bomb', u'kill', u'iraqi', u'polic', u'recruit'] [u'care', u'need', u'urban', u'servic', u'cut', u'opposit'] [u'charter', u'tower', u'host', u'ministeri', u'forum'] [u'children', u'choir', u'share', u'aid', u'messag'] [u'chines', u'town', u'need', u'lifetim', u'restaur'] [u'say', u'excel', u'idea', u'lade'] [u'claim', u'iran', u'vote', u'free', u'fair'] [u'cloud', u'form', u'blue', u'complaint', u'handl'] [u'fail', u'develop', u'altern', u'presenc'] [u'commiss', u'pass', u'minimum', u'wage', u'rise', u'worker'] [u'communiti', u'invit', u'voic', u'ward', u'concern'] [u'contractor', u'delay', u'maleni', u'supermarket', u'work'] [u'costigan', u'charg', u'danger', u'throw'] [u'councillor', u'dismiss', u'highway', u'speed', u'limit', u'plan'] [u'counterfeit', u'warn', u'pinjarra', u'busi'] [u'court', u'appear', u'woman', u'accus', u'stab'] [u'crew', u'brace', u'flood', u'emerg'] [u'cricket', u'legend', u'say', u'symond', u'lucki', u'stay', u'tour'] [u'critic', u'intensifi', u'japan', u'whale'] [u'crow', u'sign', u'hudson'] [u'cruis', u'prankster', u'face', u'assault', u'charg'] [u'cycl', u'australia', u'throw', u'support', u'barrass'] [u'dept', u'outlin', u'benefit', u'singapor', u'defenc'] [u'desalin', u'propos', u'releas', u'soon'] [u'develop', u'attract', u'water', u'holiday', u'spot', u'boom'] [u'dicaprio', u'assault', u'hollywood', u'parti', u'report'] [u'diesel', u'price', u'push', u'record', u'high'] [u'docker', u'boss', u'back', u'connolli'] [u'dougla', u'wood', u'return', u'australia'] [u'dozen', u'kill', u'insurg', u'attack'] [u'drought', u'assessor', u'tour', u'region'] [u'earli', u'anti', u'whale', u'lobbi'] [u'elect', u'bring', u'call', u'indigen', u'parti'] [u'leader', u'washington', u'bush', u'talk'] [u'evergreen', u'canker', u'palaszczuk'] [u'falun', u'gong', u'member', u'claim', u'harass', u'australia'] [u'farmer', u'urg', u'self', u'regul', u'pesticid', u'secur'] [u'farmer', u'want', u'couch', u'potato', u'strike', u'dictionari'] [u'fast', u'track', u'apprenticeship', u'start', u'juli'] [u'feder', u'highway', u'open', u'accid'] [u'fiji', u'stop', u'australian', u'prosecutor', u'return'] [u'firm', u'accept', u'respons', u'glass', u'death'] [u'fish', u'popular', u'take', u'nose', u'dive'] [u'kill', u'horror', u'sunday', u'state', u'road'] [u'german', u'women', u'grab', u'fourth', u'european', u'titl'] [u'giant', u'flame'] [u'gold', u'explor', u'figur', u'worri', u'miner', u'chamber'] [u'good', u'rain', u'fall', u'region'] [u'govt', u'accus', u'ignor', u'countri', u'view', u'rail'] [u'govt', u'consid', u'wheelchair', u'taxi', u'servic', u'option'] [u'govt', u'hail', u'electr', u'meter', u'trial', u'success'] [u'govt', u'increas', u'fund', u'palestinian', u'refuge'] [u'govt', u'relax', u'adopt', u'restrict'] [u'grower', u'wari', u'cole', u'home', u'brand', u'target'] [u'gunn', u'alter', u'pulp', u'plan'] [u'hazem', u'masri'] [u'hop', u'develop', u'law', u'clear'] [u'hous', u'construct', u'fall', u'fourth', u'quarter'] [u'hous', u'start', u'slump', u'nation', u'averag'] [u'iluka', u'share', u'price', u'rise', u'amid', u'takeov', u'specul'] [u'immigr', u'chang', u'affect', u'kosovar', u'asylum'] [u'immigr', u'dept', u'closer', u'interview', u'chen'] [u'injuri', u'cloud', u'wallabi'] [u'inquest', u'tell', u'search', u'tegan', u'father'] [u'iran', u'stone', u'women', u'say', u'nobel', u'laureat'] [u'ireland', u'overpow', u'japan', u'clinch', u'seri'] [u'italian', u'high', u'confid', u'wallabi', u'challeng'] [u'japan', u'beat', u'greec', u'scrappi', u'conf', u'game'] [u'japan', u'south', u'korea', u'fail', u'agre', u'histori', u'summit'] [u'japan', u'stake', u'whale'] [u'jewish', u'settler', u'palestinian', u'kill', u'summit'] [u'kiwi', u'campbel', u'win', u'open'] [u'leav', u'employe', u'hour', u'journey'] [u'lebanon', u'opposit', u'sweep', u'final', u'poll', u'round', u'offici'] [u'lekka', u'target', u'cat', u'clash', u'return'] [u'lennon', u'beat', u'plan', u'process', u'gunn'] [u'librari', u'affect', u'amalgam', u'shire'] [u'lion', u'upbeat', u'despit', u'copeland', u'injuri'] [u'lleyton', u'underdon', u'coach'] [u'accus', u'threaten', u'polic', u'knife'] [u'man', u'lose', u'donald', u'leed'] [u'question', u'woman', u'death'] [u'throw', u'parap', u'crash'] [u'market', u'slide', u'record', u'high'] [u'matern', u'group', u'say', u'lack', u'servic', u'put', u'women'] [u'media', u'urg', u'respect', u'princ', u'harri', u'privaci'] [u'metal', u'price', u'prompt', u'rethink', u'chines', u'economi'] [u'michael', u'vaughan', u'kevin', u'pietersen', u'interview'] [u'midwest', u'embrac', u'partner', u'sinosteel'] [u'minist', u'evad', u'iraq', u'firebomb', u'question'] [u'good', u'news', u'farmer', u'weekend', u'rain'] [u'school', u'leaver', u'choos', u'apprenticeship'] [u'expect', u'recc', u'chopper', u'townsvill'] [u'suggest', u'cash', u'incent', u'boost', u'region'] [u'welcom', u'student', u'view', u'curfew'] [u'deal', u'promot', u'australia', u'oversea'] [u'fund', u'allow', u'extra', u'tamar', u'river', u'dredg'] [u'rule', u'impos', u'bluefin', u'tuna', u'catch'] [u'offic', u'open', u'broom'] [u'ninemsn', u'optus', u'announc', u'phone', u'internet', u'partnership'] [u'korea', u'missil', u'recognit'] [u'unveil', u'energi', u'effici', u'build', u'code'] [u'candid', u'face', u'postal', u'vote', u'count'] [u'govt', u'ask', u'explain', u'uranium', u'mine', u'stanc'] [u'voter', u'clear', u'choic', u'say', u'martin'] [u'guard', u'confid', u'cricket', u'bounc'] [u'opposit', u'outrag', u'ignor', u'inquiri', u'find'] [u'opposit', u'politicis', u'parliamentari', u'inquiri'] [u'outlook', u'good', u'grain', u'farmer', u'rain'] [u'palmer', u'reject', u'claim', u'immigr', u'stonewal'] [u'paperwork', u'plan', u'trigger', u'fear', u'fewer', u'polic'] [u'patel', u'didnt', u'wash', u'hand', u'patient', u'inquiri'] [u'peopl', u'smuggl', u'hear', u'week'] [u'plantagenet', u'shire', u'get', u'tough', u'firebreak'] [u'offer', u'tsunami', u'thank'] [u'tight', u'lip', u'draft', u'palmer', u'inquiri', u'report'] [u'urg', u'releas', u'asylum', u'seeker'] [u'polic', u'frustrat', u'drink', u'driver'] [u'polic', u'intensifi', u'search', u'miss', u'bike', u'club'] [u'policeman', u'push', u'albani', u'motorplex'] [u'polic', u'seek', u'assault'] [u'polic', u'seek', u'assault'] [u'polic', u'warn', u'drink', u'spike', u'danger'] [u'popul', u'boom', u'hasten', u'wind', u'farm', u'upgrad'] [u'privat', u'hospit', u'expand', u'despit', u'shortag'] [u'promot', u'rout', u'north'] [u'properti', u'market', u'optim', u'remain', u'despit', u'hotel'] [u'prospect', u'boat', u'oper', u'undergo', u'train'] [u'public', u'urg', u'justic'] [u'puppi', u'farm', u'law', u'toughen'] [u'qanta', u'singapor', u'merger', u'stall', u'runway'] [u'qasim', u'excit', u'prospect', u'freedom'] [u'qasim', u'offer', u'visa'] [u'quak', u'rock', u'northern', u'japan'] [u'racv', u'predict', u'fuel', u'price', u'rise'] [u'rain', u'beef', u'produc', u'expect', u'better', u'price'] [u'rape', u'victim', u'hold', u'watch', u'hous', u'cell', u'court', u'tell'] [u'rat', u'wont', u'rise', u'cultur', u'centr', u'mayor'] [u'refuge', u'travel', u'loan', u'boost'] [u'repair', u'proceed', u'slowli', u'bunburi', u'storm'] [u'republican', u'senat', u'challeng', u'bush', u'iraq', u'optim'] [u'resid', u'flee', u'floodwat', u'canada'] [u'reward', u'boost', u'unsolv', u'crime'] [u'rice', u'press', u'drive', u'middl', u'east', u'reform'] [u'riversid', u'renew', u'project', u'hamper', u'east', u'perth'] [u'meat', u'industri', u'target', u'diet', u'industri', u'smallgood'] [u'rspca', u'examin', u'stock', u'neglect', u'claim'] [u'sack', u'teacher', u'take', u'fight', u'suprem', u'court'] [u'salvo', u'note', u'underli', u'optim'] [u'scientist', u'close', u'make', u'sperm', u'stem', u'cell'] [u'senat', u'immigr', u'detent', u'inquiri', u'expect'] [u'senat', u'push', u'silicosi', u'inquiri'] [u'industri', u'face', u'hurdl'] [u'industri', u'moral', u'say'] [u'sheedi', u'call', u'origin', u'return'] [u'shiekh', u'hilali', u'return', u'home'] [u'shortag', u'stop', u'work', u'nation', u'biggest', u'sheep'] [u'silicosi', u'victim', u'union', u'asbesto', u'comparison'] [u'skywest', u'consid', u'bigger', u'plan', u'goldfield'] [u'snow', u'get', u'ski', u'season'] [u'socceroo', u'play', u'pride', u'tunisia'] [u'sorri', u'start', u'ash', u'tour'] [u'station', u'expans', u'get', u'council'] [u'stricter', u'measur', u'need', u'retain', u'control'] [u'strong', u'commod', u'demand', u'push', u'price'] [u'student', u'wheeli', u'bin', u'makeov'] [u'studi', u'way', u'predict', u'prevent', u'alzheim'] [u'surgeon', u'meet', u'child', u'patient', u'backlog'] [u'surgeon', u'fight', u'children', u'hospit', u'crisi'] [u'swimmer', u'expect', u'success', u'montreal'] [u'tasmanian', u'teacher', u'receiv', u'train'] [u'territorian', u'home', u'buyer', u'gain', u'bigger', u'rebat'] [u'thai', u'polic', u'major', u'heroin', u'seizur'] [u'real', u'mcinn', u'candi'] [u'surviv', u'forc', u'crash', u'land'] [u'tourist', u'die', u'isol', u'kimberley', u'waterfal'] [u'tourist', u'join', u'dinosaur', u'hunt'] [u'train', u'provid', u'base', u'aust', u'brisban'] [u'tripl', u'penalti', u'drama', u'mexico', u'brazil'] [u'emerg', u'depart', u'continu'] [u'union', u'defend', u'scaremong'] [u'union', u'want', u'road', u'accid', u'control', u'scheme', u'extend'] [u'unseason', u'kimberley', u'downpour', u'strand', u'tourist'] [u'uranium', u'cost', u'territori', u'million', u'say'] [u'follow', u'intern', u'guantanamo', u'rice'] [u'grand', u'prix', u'descend', u'farc'] [u'vanston', u'concern', u'villawood', u'self', u'harmer'] [u'vice', u'chancellor', u'group', u'warn', u'voluntari'] [u'video', u'link', u'connect', u'communiti'] [u'weather', u'bureau', u'revis', u'nino', u'drought'] [u'whale', u'commiss', u'meet'] [u'whatmor', u'hit', u'critic'] [u'wilkinson', u'clive', u'shuffl', u'lion'] [u'william', u'maintain', u'legal', u'action', u'gold'] [u'wolfowitz', u'urg', u'boost', u'africa'] [u'wood', u'apologis', u'troop', u'comment'] [u'wood', u'apolog', u'necessari'] [u'wood', u'arriv', u'melbourn'] [u'wood', u'releas', u'agre', u'raid', u'sheikh', u'say'] [u'wood', u'reunit', u'famili'] [u'workshop', u'studi', u'lobster', u'catch'] [u'world', u'virtual', u'ralli', u'hold'] [u'australian', u'catch', u'credit', u'card', u'scam'] [u'aborigin', u'health', u'servic', u'expand'] [u'academ', u'highlight', u'econom', u'impact', u'japan'] [u'govt', u'hand', u'tie', u'util', u'chief', u'salari'] [u'adelaid', u'coupl', u'offer', u'qasim', u'home'] [u'black', u'recal', u'macdonald', u'lion', u'test'] [u'alleg', u'rape', u'victim', u'detent', u'defend'] [u'ord', u'take', u'breather', u'set', u'record'] [u'andrew', u'accus', u'hypocrisi', u'workplac'] [u'antarctica', u'parti', u'atmospher', u'heat'] [u'anti', u'smoke', u'law', u'effect', u'fund', u'say'] [u'anti', u'syrian', u'politician', u'kill', u'bomb', u'blast'] [u'architect', u'shed', u'light', u'sheep', u'shear'] [u'australian', u'bank', u'comput', u'safe', u'scam'] [u'bangladesh', u'high', u'cricket'] [u'batteri', u'recycl', u'plan', u'worri', u'resid'] [u'bird', u'face', u'long', u'stint', u'sidelin'] [u'bitter', u'tast', u'deter', u'substanc', u'abus'] [u'blair', u'say', u'secur', u'budget', u'deal'] [u'bob', u'daili', u'swim', u'grab', u'archibald', u'peopl', u'prize'] [u'bowl', u'club', u'teeter', u'possibl', u'biki', u'takeov'] [u'bridg', u'plan', u'caus', u'indigen', u'upset'] [u'bronco', u'sign', u'mcguir'] [u'broom', u'shire', u'chief', u'repres', u'kimberley', u'council'] [u'buckley', u'need', u'time', u'say', u'malthous'] [u'bunburi', u'scheme', u'ahead', u'chang'] [u'bundaberg', u'hospit', u'mess', u'lone', u'case'] [u'bundaberg', u'ring', u'road'] [u'burton', u'escap', u'suspens'] [u'plung', u'gorg', u'india'] [u'urgent', u'work', u'trawler', u'wharf'] [u'campbel', u'concern', u'whale', u'commiss'] [u'canadian', u'idea', u'piqu', u'brack', u'rann'] [u'carr', u'defend', u'madden', u'despit', u'phone', u'find'] [u'chamber', u'reject', u'union', u'skill', u'labour', u'shortag'] [u'china', u'sign', u'leader', u'appoint'] [u'clerk', u'slam', u'slow', u'govt', u'respons', u'inquiri'] [u'club', u'golf', u'cours', u'plan', u'chang'] [u'club', u'stress', u'merger', u'long', u'term'] [u'club', u'urg', u'join', u'busi', u'plan'] [u'communiti', u'sign', u'mutual', u'program'] [u'consum', u'seek', u'detail', u'credit', u'card', u'scam'] [u'costigan', u'accept', u'week'] [u'council', u'develop'] [u'council', u'present', u'region', u'perspect'] [u'council', u'lobbi', u'condobolin'] [u'cricket', u'secur', u'rise'] [u'darl', u'down', u'call', u'broadband', u'access'] [u'deal', u'sign', u'help', u'protect', u'beef', u'export'] [u'defenc', u'exercis', u'shift', u'focus', u'grind', u'battl'] [u'detaine', u'fear', u'trick', u'visa', u'advoc', u'say'] [u'driver', u'urg', u'heed', u'road', u'closur'] [u'driver', u'warn', u'loom', u'fuel', u'price', u'rise'] [u'east', u'timor', u'urg', u'manag', u'energi', u'wealth'] [u'egg', u'grow', u'stem', u'cell', u'research'] [u'environ', u'offici', u'probe', u'lion', u'death'] [u'export', u'better', u'freight', u'price'] [u'eyr', u'peninsula', u'inquiri', u'begin'] [u'boss', u'blame', u'team', u'fiasco'] [u'ferguson', u'qasim', u'comment', u'revis'] [u'ferri', u'termin', u'plan', u'display'] [u'farmer', u'outsid', u'zone', u'seek', u'drought', u'review'] [u'filipino', u'mourn', u'revolutionari', u'cardin'] [u'final', u'submiss', u'virgin', u'blue', u'case'] [u'firefight', u'frustrat', u'bushfir', u'inquiri', u'respons'] [u'fish', u'group', u'attack', u'shark', u'dive', u'plan'] [u'gile', u'england', u'squad'] [u'flatley', u'red', u'face', u'babi', u'black'] [u'flatley', u'red', u'face', u'babi', u'black'] [u'bail', u'cruis', u'soak'] [u'seat', u'opposit', u'like'] [u'fring', u'festiv', u'start', u'global', u'talent', u'search'] [u'gambl', u'support', u'group', u'take', u'court', u'action'] [u'georgiou', u'hail', u'asylum', u'seeker', u'polici'] [u'crop', u'trial', u'worri', u'democrat'] [u'gold', u'coast', u'strong', u'despit', u'visitor', u'number', u'figur'] [u'govt', u'ask', u'reveal', u'visa', u'detail'] [u'govt', u'consid', u'troop', u'return', u'afghanistan'] [u'govt', u'fund', u'target', u'indigen', u'famili', u'violenc'] [u'govt', u'monitor', u'heritag', u'concern', u'braidwood'] [u'govt', u'mull', u'work', u'week'] [u'govt', u'mull', u'mental', u'health', u'secur', u'facil'] [u'govt', u'unfaz', u'anti', u'petit'] [u'grant', u'fund', u'health', u'centr', u'cape', u'barren'] [u'green', u'echo', u'review', u'worker', u'comp'] [u'gunn', u'urg', u'explain', u'pulp', u'chang'] [u'harradin', u'bow', u'senat'] [u'heavi', u'rain', u'caus', u'flood', u'adelaid'] [u'hewitt', u'dish', u'cricket', u'advic'] [u'hewitt', u'warn', u'australia', u'tenni', u'futur'] [u'hick', u'face', u'charg', u'australia', u'legal'] [u'highway', u'death', u'upset'] [u'hollioak', u'blewett', u'star', u'tsunami', u'match'] [u'hope', u'thousand', u'flock', u'mackay'] [u'hunter', u'water', u'worker', u'work'] [u'husband', u'plead', u'guilti', u'murder'] [u'dont', u'need', u'hide', u'aussi', u'harmison'] [u'import', u'decis', u'creat', u'potato', u'farmer', u'uncertainti'] [u'independ', u'assessor', u'solv', u'develop'] [u'inquiri', u'focus', u'region', u'skill', u'worker'] [u'reform', u'hurt', u'famili', u'academ'] [u'island', u'welcom', u'dugong', u'turtl', u'hunt', u'limit'] [u'isra', u'launch', u'wave', u'jihad', u'arrest'] [u'israel', u'target', u'islam', u'jihad', u'sharon', u'abba'] [u'jam', u'hardi', u'compens', u'deal', u'suffer', u'setback'] [u'japan', u'fail', u'whale'] [u'japan', u'lose', u'whale'] [u'kempsey', u'council', u'rethink', u'rate', u'variat'] [u'labor', u'urg', u'ethanol', u'blend', u'fuel', u'govt'] [u'lennon', u'defend', u'chang', u'pulp', u'plan'] [u'long', u'beazley'] [u'malthous', u'issu', u'warn'] [u'name', u'fatal', u'cliff', u'fall'] [u'plead', u'guilti', u'mistreat', u'livestock'] [u'mapoon', u'need', u'relax', u'alcohol', u'say', u'springborg'] [u'maroochi', u'shire', u'move', u'airport', u'park', u'fee'] [u'marsh', u'quit', u'england', u'selector'] [u'martin', u'warn', u'possibl', u'disciplin', u'problem'] [u'mayor', u'air', u'local', u'govt', u'merger', u'opposit'] [u'mayor', u'see', u'benefit', u'kalgoorli', u'tourism', u'deal'] [u'mayor', u'lobbi', u'costa', u'nowra', u'road', u'fund'] [u'mcdonald', u'give', u'french', u'fri', u'suppli', u'deal', u'simplot'] [u'mcgee', u'brother', u'refus', u'testifi'] [u'meatwork', u'resum', u'product'] [u'meet', u'focus', u'aerial', u'firefight'] [u'merger', u'cost', u'council', u'govt', u'fund'] [u'midden', u'provid', u'tourism', u'opportun'] [u'extens', u'plan', u'clear', u'hurdl'] [u'miner', u'consid', u'great', u'southern', u'expans'] [u'minist', u'back', u'fine', u'illeg', u'veget', u'clear'] [u'minist', u'say', u'polic', u'bug', u'claim', u'outrag'] [u'minist', u'maleni', u'platypus', u'footag'] [u'mitchel', u'forum', u'look', u'blueprint', u'bush'] [u'good', u'rain', u'central', u'aust', u'certainti'] [u'rain', u'need', u'boost', u'water', u'storag'] [u'road', u'reopen', u'rain'] [u'sandon', u'consult', u'plan'] [u'hear', u'father', u'view'] [u'nation', u'plan', u'tamworth', u'strategi'] [u'movi', u'honour', u'late', u'comic', u'dangerfield'] [u'hurt', u'roll', u'load', u'aboard'] [u'northam', u'aim', u'swan', u'popul'] [u'north', u'coast', u'anti', u'whale', u'group', u'attack'] [u'compani', u'press', u'ahead', u'electr', u'plan'] [u'inspir', u'slowdown', u'affect', u'aust', u'costello'] [u'price', u'hit', u'market'] [u'price', u'tip', u'continu', u'rise'] [u'trafford', u'deal', u'owen'] [u'opposit', u'back', u'govt', u'plan', u'break', u'western'] [u'opposit', u'tell', u'truth', u'wood'] [u'opposit', u'question', u'qasim', u'releas'] [u'student', u'investig', u'cheat', u'claim'] [u'parliament', u'consid', u'die', u'digniti'] [u'patel', u'cathet', u'caus', u'acut', u'infect'] [u'patel', u'inquiri', u'hear', u'damn', u'evid'] [u'philippin', u'peopl', u'power', u'icon', u'cardin', u'die'] [u'place', u'avail', u'apprenticeship', u'cours'] [u'plot', u'stop', u'kill', u'ambassador', u'afghanistan'] [u'seek', u'earli', u'telstra', u'sale'] [u'policeman', u'plead', u'guilti', u'drive', u'charg'] [u'polic', u'warn', u'fake', u'money', u'alic', u'spring'] [u'propos', u'qasim', u'releas', u'worri'] [u'public', u'south', u'east', u'road'] [u'public', u'respond', u'region', u'rail', u'timet', u'plan'] [u'defi', u'downward', u'trend', u'nation', u'hous'] [u'health', u'reject', u'springsur', u'matern', u'claim'] [u'rain', u'mix', u'bless', u'canegrow'] [u'rain', u'increas', u'north', u'dengu', u'fever', u'risk'] [u'rebel', u'hold', u'politician', u'hostag', u'aceh'] [u'research', u'centr', u'receiv', u'biotechnolog', u'fund'] [u'research', u'storm', u'darwin', u'thunder', u'studi'] [u'ripen', u'sensor'] [u'roadwork', u'boost', u'school', u'truck', u'traffic'] [u'ryan', u'continu', u'call', u'yarram', u'polic'] [u'sack', u'teacher', u'case', u'resum', u'septemb'] [u'saddam', u'miss', u'ronald', u'reagan', u'soldier'] [u'saint', u'play', u'hamil', u'injuri'] [u'sandblast', u'urg', u'undergo', u'silicosi', u'test'] [u'scam', u'target', u'credit', u'card', u'user'] [u'scientist', u'label', u'govt', u'hypocrit'] [u'scientist', u'genom'] [u'eagl', u'lose', u'donald', u'england'] [u'senat', u'brother', u'nuditi', u'complaint'] [u'shelf', u'space', u'home', u'brand', u'concern', u'abar'] [u'signific', u'migrat', u'tabl'] [u'sixer', u'close', u'complet', u'maher', u'deal'] [u'slater', u'good', u'origin', u'kenni', u'claim'] [u'socceroo', u'blood', u'fring', u'player'] [u'south', u'australian', u'face', u'higher', u'fuel', u'price'] [u'sponsorship', u'woe', u'place', u'year', u'long', u'delay', u'safari'] [u'springborg', u'head', u'cape', u'york'] [u'stall', u'vote', u'caus', u'concern', u'whale', u'meet'] [u'stile', u'gracious', u'ax'] [u'strand', u'famili', u'safe', u'polic'] [u'stress', u'side', u'forest', u'log', u'issu'] [u'support', u'defend', u'kind', u'brilliant', u'patel'] [u'swan', u'hill', u'consid', u'train', u'restaur', u'plan'] [u'tabcorp', u'join', u'singapor', u'casino'] [u'take', u'poki', u'club', u'pointless', u'say'] [u'hurt', u'poll', u'labor', u'admit'] [u'tegan', u'lane', u'regist', u'illeg', u'court', u'hear'] [u'templ', u'site', u'undergo', u'contamin', u'test'] [u'tiger', u'bite', u'critic'] [u'tourism', u'oper', u'face', u'skill', u'worker', u'shortag'] [u'tourist', u'bodi', u'recov', u'kimberley'] [u'treasur', u'dismiss', u'overspend', u'alleg'] [u'treasuri', u'secretari', u'call', u'uniform', u'electr'] [u'tribun', u'consid', u'virgin', u'blue', u'rule'] [u'tribun', u'film', u'archiv', u'rule', u'welcom'] [u'korea', u'agre', u'talk', u'disagre', u'issu'] [u'arrest', u'iraq', u'attack'] [u'ullrich', u'happi', u'form', u'tour', u'beckon'] [u'investig', u'quiz', u'lebanon', u'secur', u'chief'] [u'union', u'predict', u'silicosi', u'case', u'emerg'] [u'agre', u'fund', u'iraq'] [u'open', u'champion', u'campbel', u'shoot', u'rank'] [u'polic', u'kill', u'courthous', u'grenad', u'threat'] [u'senat', u'block', u'bolton', u'nomin'] [u'util', u'chief', u'high', u'salari', u'beggar', u'belief'] [u'vail', u'beat', u'support', u'technic', u'colleg'] [u'vanston', u'quiz', u'palmer', u'report', u'copi'] [u'viduka', u'desper', u'play', u'world'] [u'warn', u'walk', u'fine', u'line', u'cricket', u'australia'] [u'word', u'erupt', u'nativ', u'titl', u'claim'] [u'water', u'top', u'forum', u'agenda'] [u'webck', u'close', u'door', u'origin', u'return'] [u'week', u'focus', u'substanc', u'abus'] [u'western', u'forc', u'sign', u'sprint', u'champion'] [u'whan', u'reject', u'opposit', u'hospit', u'fund', u'claim'] [u'wild', u'weather', u'hit'] [u'wind', u'farm', u'electr', u'generat', u'target'] [u'wind', u'farm', u'meet', u'rule', u'approv'] [u'wodonga', u'host', u'rail', u'freight', u'forum'] [u'woman', u'lose', u'money', u'bank'] [u'wood', u'expect', u'rescu', u'cost'] [u'wood', u'rule', u'iraq', u'return'] [u'woodi', u'allen', u'cast', u'hugh', u'jackman', u'movi'] [u'wool', u'industri', u'split', u'peta', u'boycott', u'talk'] [u'work', u'continu', u'nurs', u'home'] [u'worker', u'escap', u'freak', u'wombat', u'accid', u'unharm'] [u'fight', u'oper', u'asia', u'pacif', u'servic'] [u'adler', u'busi', u'deal', u'illeg', u'asic'] [u'adler', u'face', u'charg', u'jail', u'activ'] [u'flag', u'crackdown', u'test'] [u'dismiss', u'stand', u'asid', u'ashbourn'] [u'agreement', u'help', u'kimberley', u'indigen', u'student'] [u'back', u'call', u'wider', u'hospit', u'probe'] [u'form', u'region', u'health', u'lobbi', u'group'] [u'amberley', u'raaf', u'base', u'upgrad'] [u'annan', u'condemn', u'anti', u'syrian', u'politician', u'kill'] [u'whaler'] [u'appeal', u'flag', u'hmas', u'voyag', u'compo', u'case'] [u'arroyo', u'accus', u'vote', u'fraud', u'inquiri'] [u'arthur', u'pratt', u'henin', u'henman'] [u'asbesto', u'foundat', u'start', u'home', u'scheme'] [u'australia', u'start', u'conf', u'post', u'mortem'] [u'author', u'probe', u'action'] [u'banker', u'group', u'examin', u'secur', u'breach', u'alert'] [u'bendigo', u'council', u'adopt', u'structur', u'chang'] [u'black', u'cop', u'cobb', u'attack', u'claim'] [u'bolton', u'doubt', u'clash', u'pie'] [u'break', u'hill', u'councillor', u'claim', u'harass'] [u'bronco'] [u'bronz', u'granit', u'polic', u'memori', u'canberra'] [u'brother', u'grimm', u'fairi', u'tale', u'accept', u'unesco', u'list'] [u'bureau', u'issu', u'cold', u'weather', u'warn'] [u'burni', u'develop', u'trigger', u'resid', u'concern'] [u'busi', u'quiz', u'indigen', u'job'] [u'campbel', u'deni', u'whaler', u'port'] [u'campbel', u'sign', u'gold', u'coast'] [u'cancer', u'patient', u'furious', u'club', u'impos', u'beani'] [u'candid', u'nervous', u'await', u'close', u'elect', u'result'] [u'carr', u'reject', u'nardi', u'hous', u'disabl', u'fund'] [u'case', u'highlight', u'poor', u'polic', u'treatment', u'rape'] [u'casino', u'lismor', u'urg', u'support', u'countri', u'week'] [u'central', u'australian', u'artist', u'work'] [u'chelsea', u'snap', u'bilbao', u'leav', u'horno'] [u'chen', u'detail', u'alleg', u'kidnap'] [u'children', u'commiss', u'target', u'north', u'train'] [u'christian', u'pastor', u'remain', u'defiant'] [u'citrus', u'grower', u'form', u'compo', u'packag'] [u'clement', u'happi', u'backlin'] [u'club', u'beani', u'anger', u'cancer', u'patient'] [u'club', u'urg', u'rethink', u'polici'] [u'collina', u'world', u'uefa'] [u'collingwood', u'make', u'histori', u'bangladesh'] [u'concern', u'damag', u'kimberley'] [u'lion', u'autopsi'] [u'council', u'back', u'develop', u'blue', u'mountain', u'resort'] [u'council', u'consid', u'releas', u'drought'] [u'council', u'order', u'dive', u'accid', u'victim'] [u'council', u'reflect', u'glass', u'recycl', u'effort'] [u'council', u'urg', u'chang', u'prefer', u'site', u'hospit'] [u'counsel', u'order', u'stepfath', u'spoon'] [u'court', u'dash', u'compo', u'hop'] [u'court', u'order', u'elect', u'busselton', u'ward'] [u'cowboy', u'coach', u'look', u'forward', u'norton', u'return'] [u'darwin', u'raaf', u'base', u'win', u'nation', u'award'] [u'defect', u'chines', u'diplomat', u'abandon'] [u'demon', u'interest', u'play', u'away'] [u'detain', u'fish', u'boat', u'escap', u'help'] [u'dissid', u'push', u'grain', u'bodi', u'chang'] [u'exchang', u'provid', u'miss', u'clue'] [u'doctor', u'hold', u'industri', u'action'] [u'fenc', u'mainten', u'improv'] [u'drug', u'centr', u'futur', u'limbo'] [u'dubbo', u'resid', u'evacu', u'amid', u'explos', u'fear'] [u'gippsland', u'gold', u'find', u'encourag', u'miner'] [u'electr', u'bill', u'reduct'] [u'emir', u'choos', u'sleepi', u'valley', u'resot'] [u'timor', u'pass', u'initi', u'legisl'] [u'adopt', u'plan', u'reform', u'european', u'sugar', u'market'] [u'farina', u'safe', u'despit', u'confeder', u'flop'] [u'farmer', u'fin', u'catch', u'eagl'] [u'farmer', u'fight', u'veget', u'import'] [u'feder', u'opposit', u'question', u'polglas', u'appoint'] [u'ferguson', u'qasim'] [u'fevola', u'stay', u'carlton'] [u'filipino', u'hostag', u'free', u'iraq', u'say', u'presid'] [u'frontbench', u'defi', u'beazley', u'immigr'] [u'fund', u'arriv', u'laidley', u'shire'] [u'fund', u'cut', u'motiv', u'super', u'merger', u'plan'] [u'fund', u'research', u'focus', u'turn', u'sugarcan'] [u'germani', u'group', u'argentina', u'spoil', u'parti'] [u'ghan', u'oper', u'deni', u'breath', u'test', u'delay', u'train'] [u'gold', u'coast', u'film', u'industri', u'impress', u'oversea'] [u'govt', u'assur', u'dont', u'quell', u'concern'] [u'govt', u'mandat', u'hour', u'work', u'week', u'plan'] [u'govt', u'reject', u'tougher', u'anim', u'cruelti', u'penalti'] [u'govt', u'scheme', u'offer', u'benefit', u'indigen', u'student'] [u'govt', u'tourism', u'group', u'welcom', u'whale', u'decis'] [u'govt', u'polic', u'number'] [u'govt', u'work', u'hour', u'code'] [u'gregan', u'return', u'wallabi'] [u'grim', u'forecast', u'melbourn', u'water', u'catchment'] [u'grow', u'amphetamin', u'worri', u'health', u'worker'] [u'growth', u'tip', u'remain'] [u'gypsi', u'joker', u'acquit', u'nightclub', u'assault'] [u'health', u'group', u'confid', u'matern', u'servic'] [u'henson', u'doubl', u'see', u'lion', u'scrape', u'home'] [u'hewitt', u'face', u'unknown', u'czech', u'scud', u'target', u'safin'] [u'hick', u'break', u'point', u'say', u'lawyer'] [u'hospit', u'suspend', u'oversea', u'train', u'doctor'] [u'hospit', u'take', u'psychiatr', u'patient'] [u'hous', u'provid', u'student', u'share'] [u'independ', u'doubt', u'nation', u'back'] [u'indigen', u'job', u'scheme', u'prove', u'winner'] [u'show', u'orang', u'council'] [u'intern', u'polic', u'inquiri', u'investig', u'media', u'leak'] [u'inventor', u'kick', u'revolut', u'die'] [u'iraq', u'list', u'endang', u'cultur', u'site'] [u'condemn', u'japan', u'whale', u'program'] [u'wont', u'wimbledon', u'champion', u'nadal'] [u'japan', u'lose', u'scrap', u'antarct', u'whale', u'sanctuari'] [u'japan', u'lose', u'scientif', u'whale', u'hunt'] [u'jewish', u'communiti', u'honour'] [u'kelli', u'reject', u'council', u'rate', u'rise', u'push'] [u'kiwi', u'reject', u'zimbabw', u'boycott', u'call'] [u'labor', u'actu', u'launch', u'campaign', u'reform'] [u'labor', u'join', u'voic', u'brother', u'nuditi'] [u'land', u'right', u'agreement', u'help', u'search'] [u'largest', u'solar', u'power', u'station', u'run'] [u'latest', u'alcohol', u'research', u'find', u'young', u'peopl', u'risk'] [u'latham', u'roger', u'wallabi'] [u'latrob', u'valley', u'adopt', u'build', u'skill', u'scheme'] [u'lawyer', u'rais', u'bruce', u'highway', u'crash', u'compo', u'possibl'] [u'lib', u'postcard', u'target', u'holli'] [u'like', u'leader', u'say', u'work', u'independ'] [u'long', u'term', u'detaine', u'accept', u'visa'] [u'lower', u'hous', u'pass', u'budget'] [u'charg', u'secur', u'guard', u'murder'] [u'get', u'year', u'random', u'toddler', u'stab'] [u'maxfield', u'go', u'knife'] [u'mccaw', u'injuri', u'prompt', u'holah', u'black'] [u'medic', u'board', u'find', u'fault', u'keogh', u'case'] [u'meet', u'focus', u'south', u'east', u'busi'] [u'pressur', u'share'] [u'middl', u'east', u'talk', u'stall'] [u'miner', u'hop', u'golden', u'time', u'ahead', u'reef', u'discoveri'] [u'minist', u'hold', u'pastor', u'leas', u'indigen'] [u'monto', u'project', u'move', u'phase'] [u'time', u'highway', u'comment'] [u'morwel', u'forum', u'seek', u'migrant', u'women', u'input'] [u'mother', u'stab', u'death', u'children'] [u'pleas', u'karoonda', u'bipartisan', u'approach'] [u'pour', u'cold', u'water', u'curfew'] [u'talk', u'waterfront', u'plan', u'adopt'] [u'nation', u'pull', u'weight'] [u'nation', u'expect', u'senat', u'govt'] [u'nation', u'leader', u'firm', u'anti', u'stanc'] [u'nation', u'presid', u'seek', u'meet'] [u'agreement', u'push', u'school', u'play', u'polici'] [u'figur'] [u'highway', u'undergo', u'safeti', u'audit'] [u'appl', u'grower', u'boycott', u'aust', u'produc'] [u'guilti', u'threaten', u'kill'] [u'merger', u'plan', u'offer', u'west', u'benefit'] [u'opposit', u'demand', u'probe', u'polic', u'handl'] [u'opposit', u'press', u'govt', u'damn', u'cityrail'] [u'palestinian', u'milit', u'deni', u'involv', u'shoot'] [u'pastor', u'reject', u'apolog', u'order', u'koran', u'comment'] [u'peta', u'stand', u'firm', u'mules', u'boycott'] [u'plan', u'unveil', u'univers', u'perth'] [u'rule', u'hour', u'work', u'week'] [u'polic', u'hold', u'fear', u'miss', u'woman'] [u'polic', u'investig', u'richmond', u'river', u'bodi'] [u'polic', u'crash', u'victim'] [u'pork', u'produc', u'consid', u'legal', u'action'] [u'power', u'coach', u'predict', u'finish'] [u'price', u'reveal', u'battl', u'gambl', u'cancer'] [u'probe', u'begin', u'arroyo', u'elect', u'rig', u'claim'] [u'probe', u'reveal', u'detent', u'centr', u'health', u'worker'] [u'promot', u'plan', u'hockey', u'violenc', u'showcas'] [u'whale', u'lobbi', u'defeat', u'vote'] [u'publish', u'dismiss', u'retail', u'home', u'brand', u'push'] [u'qanta', u'reject', u'downgrad', u'staff', u'report'] [u'qanta', u'staff', u'retrench', u'union', u'say'] [u'rare', u'wallabi', u'nation', u'park', u'home'] [u'region', u'leader', u'agre', u'safeguard'] [u'region', u'mobil', u'blood', u'donor', u'servic'] [u'revamp', u'plan', u'coledal', u'communiti', u'centr'] [u'revolutionari', u'solar', u'sail', u'spacecraft', u'lose'] [u'rice', u'claim', u'credit', u'enabl', u'middl', u'east'] [u'salli', u'malay', u'nickel', u'oper'] [u'secker', u'back', u'roadwork', u'amidst', u'complaint'] [u'senat', u'allow', u'opec', u'price', u'fix'] [u'senat', u'inquiri', u'head', u'gunnedah'] [u'bill', u'futur', u'uncertain', u'debat', u'continu'] [u'share', u'market', u'continu', u'slide'] [u'sheep', u'flock', u'drop'] [u'shepherd', u'fire', u'young', u'wallabi'] [u'singapor', u'airlin', u'warm', u'qanta', u'merger'] [u'injur', u'crash', u'restaur'] [u'solar', u'sail', u'spacecraft', u'blast'] [u'south', u'east', u'miss', u'auslink', u'fund'] [u'south', u'west', u'flood', u'damag', u'exceed'] [u'soya', u'chemic', u'burn', u'sperm', u'say', u'research'] [u'speed', u'zone', u'audit', u'includ', u'illawarra', u'highway'] [u'stick', u'fremantl', u'coach', u'urg', u'fan'] [u'storm', u'leav', u'thousand', u'resid', u'dark'] [u'student', u'expect', u'legisl', u'chang'] [u'substanc', u'abus', u'report', u'highlight', u'alcohol', u'woe'] [u'support', u'grow', u'newcastl', u'light', u'rail'] [u'surgeri', u'patient', u'wasnt', u'check', u'inquiri', u'tell'] [u'survey', u'confirm', u'leagu', u'gambl', u'habit'] [u'swan', u'worri', u'labor', u'perform'] [u'talk', u'focus', u'recycl', u'water'] [u'teacher', u'accus', u'rape', u'charg', u'drop'] [u'teen', u'charg', u'lakemba', u'assault'] [u'telstra', u'deni', u'rural', u'council', u'fund'] [u'earli', u'airport', u'plan', u'feder', u'fund'] [u'tragedi', u'lace', u'modigliani', u'top'] [u'tree', u'root', u'blame', u'sewag', u'spill'] [u'trotter', u'spotter', u'annandal'] [u'line', u'board', u'blast', u'report'] [u'tune', u'junior', u'black', u'clash'] [u'union', u'begin', u'ongo', u'campaign', u'oppos', u'chang'] [u'democrat', u'demand', u'inquiri', u'iraq', u'guantanamo'] [u'desert', u'dock'] [u'market', u'mix', u'price', u'jitter'] [u'vanston', u'grant', u'visa', u'nauru', u'detaine', u'famili'] [u'vanston', u'hint', u'nauru', u'famili', u'decis'] [u'victorian', u'rort', u'million', u'home', u'buyer', u'grant'] [u'virus', u'show', u'promis', u'cancer', u'killer'] [u'vote', u'stop', u'kill'] [u'water', u'qualiti', u'didnt', u'caus', u'dialysi', u'closur', u'mayor'] [u'west', u'tamar', u'council', u'approv', u'rate', u'rise'] [u'whale', u'watcher', u'close'] [u'white', u'hous', u'rebuff', u'guantanamo', u'probe', u'call'] [u'wilko', u'move', u'lion', u'centr'] [u'william', u'sign', u'year', u'deal', u'swan'] [u'wilson', u'promontori', u'blaze', u'inquiri', u'continu'] [u'wimbledon', u'result'] [u'wine', u'grape', u'harvest', u'top', u'record'] [u'world', u'mightiest', u'chess', u'beat', u'british'] [u'nation', u'confirm', u'gymnast', u'championship'] [u'boost', u'announc', u'emerg', u'servic'] [u'accus', u'secur', u'guard', u'killer', u'appear', u'court'] [u'adler', u'face', u'jail', u'disciplinari', u'charg'] [u'adler', u'face', u'charg'] [u'track', u'break', u'attend', u'record'] [u'african', u'leader', u'accus', u'deni', u'zimbabw', u'horror'] [u'alderman', u'suggest', u'central', u'australian', u'polit'] [u'anderson', u'announc', u'resign'] [u'anderson', u'expect', u'quit'] [u'anderson', u'leav', u'famili', u'health'] [u'anderson', u'paint', u'telstra', u'sell', u'posit', u'light'] [u'anderson', u'stand'] [u'anderson', u'tell', u'colleagu', u'resign'] [u'aphid', u'threaten', u'futur', u'lettuc', u'farm'] [u'tradit', u'owner', u'land', u'right', u'chang'] [u'aqi', u'explain', u'citrus', u'search', u'delay'] [u'arm', u'robberi', u'rise', u'canberra'] [u'asio', u'raid', u'home'] [u'assembl', u'approv', u'offend', u'regist'] [u'australia', u'sick', u'lose', u'clark', u'warn'] [u'australia', u'welcom', u'sugar', u'reform'] [u'backpack', u'oper', u'urg', u'ensur', u'safeti'] [u'beazley', u'plan', u'frontbench', u'reshuffl'] [u'berrigan', u'council', u'comment', u'accid', u'payout'] [u'face', u'multi', u'million', u'dollar'] [u'expans', u'plan', u'armi', u'train', u'area'] [u'fish', u'import', u'gene', u'pool', u'studi'] [u'blast', u'damag', u'japanes', u'vehicl', u'southern', u'iraq'] [u'break', u'enter', u'crime', u'fall'] [u'bridg', u'prove', u'difficult', u'luca'] [u'bullet', u'man', u'tongu', u'headach'] [u'burger', u'chain', u'add', u'whale', u'menu'] [u'burk', u'conced', u'brennan', u'loss'] [u'businessman', u'behead', u'thai', u'roadsid', u'restaur'] [u'businessman', u'promot', u'resid', u'melbourn'] [u'review', u'case', u'dismiss'] [u'migrat', u'chang'] [u'oversea', u'doctor', u'recruit', u'regul'] [u'cana', u'dope', u'probe'] [u'crash', u'caus', u'midland', u'highway', u'delay'] [u'carr', u'meet', u'brigalow', u'belt', u'worker', u'anderson'] [u'charlesworth', u'return', u'coach', u'role'] [u'chees', u'chief', u'say', u'product', u'remain', u'demand'] [u'children', u'hospit', u'doctor', u'welcom', u'meet', u'outcom'] [u'china', u'japan', u'talk', u'mend', u'relat'] [u'chines', u'relat', u'damag', u'chen', u'vail'] [u'cinema', u'chain', u'pull', u'food'] [u'claim', u'centr', u'employe', u'sell', u'bank', u'custom'] [u'close', u'ashbourn', u'inquiri', u'prove', u'govt'] [u'meet', u'wake', u'elect', u'loss'] [u'clps', u'burk', u'congratul', u'oppon'] [u'comalco', u'consid', u'alumina', u'expans'] [u'commonwealth', u'urg', u'fast', u'track', u'bruce', u'highway'] [u'complementari', u'therapi', u'help', u'cancer', u'patient', u'studi'] [u'corbi', u'lawyer', u'deni', u'bribe', u'claim'] [u'council', u'air', u'develop', u'condit', u'concern'] [u'council', u'rethink', u'saleyard', u'govt'] [u'council', u'say', u'hide', u'inquiri'] [u'court', u'overturn', u'fingleton', u'convict'] [u'cowboy', u'retain', u'winger', u'bowen'] [u'cultur', u'chang', u'see', u'combat', u'teen', u'drink'] [u'dairi', u'compani', u'help', u'fee', u'pilgrim'] [u'data', u'theft', u'bewar', u'slurper'] [u'daughter', u'keep', u'kid', u'secret', u'father', u'tell', u'tegan'] [u'della', u'bosca', u'see', u'woe', u'ahead', u'small', u'busi'] [u'dementia', u'finger', u'drive', u'risk'] [u'democrat', u'welcom', u'famili', u'releas', u'detent'] [u'depart', u'lee', u'call', u'focus', u'murray'] [u'develop', u'look', u'dubai', u'versac', u'resort'] [u'disabl', u'servic', u'forc', u'servic'] [u'docker', u'lose', u'haddril', u'injuri'] [u'doctor', u'urg', u'greater', u'train', u'opportun'] [u'donor', u'urg', u'blood', u'stock', u'drop'] [u'downer', u'say', u'thank', u'sheikh'] [u'drought', u'see', u'western', u'rural', u'leas', u'rent', u'waiv'] [u'excit', u'sorenstam', u'fight', u'nerv'] [u'faec', u'blood', u'hospit', u'disgust', u'patient'] [u'famili', u'hold', u'detent', u'nauru', u'live'] [u'famili', u'draft', u'avail', u'comment'] [u'famili', u'rescu', u'holiday', u'hell'] [u'feral', u'camel', u'cull', u'target', u'border'] [u'fingleton', u'want', u'court'] [u'damag', u'braddon', u'apart', u'block'] [u'fish', u'speci', u'declar', u'extinct', u'wild'] [u'fossil', u'suggest', u'mammal', u'shoot', u'venom'] [u'wheel', u'drive', u'enthusiast', u'clean', u'outback'] [u'consortium', u'buy', u'melbourn', u'luna', u'park'] [u'fund', u'announc', u'land', u'rehabilit'] [u'fund', u'help', u'preserv', u'manag', u'resid'] [u'futur', u'australia', u'fish', u'confer', u'agenda'] [u'galleri', u'victoria', u'display', u'dutch', u'master'] [u'gold', u'coast', u'target', u'luke', u'bailey'] [u'gold', u'coast', u'target', u'bailey'] [u'govt', u'apologis', u'child', u'abus', u'victim'] [u'govt', u'ask', u'employ', u'worker', u'compo', u'premium'] [u'govt', u'defend', u'line', u'board', u'despit', u'damn', u'report'] [u'govt', u'disput', u'fish', u'speci', u'extinct', u'wild'] [u'govt', u'downplay', u'burglari', u'statist'] [u'govt', u'pledg', u'opposit', u'input', u'ashbourn', u'inquiri'] [u'govt', u'hospit', u'medicar', u'licenc'] [u'govt', u'urg', u'extend', u'subsidi', u'sniff', u'fuel'] [u'green', u'friend', u'hous', u'plan', u'continu'] [u'gunn', u'ental', u'hous', u'leas'] [u'harri', u'save', u'famili', u'burn', u'hous'] [u'harri', u'hero'] [u'head', u'bundaberg', u'hospit', u'inquiri', u'urg'] [u'high', u'court', u'overturn', u'fingleton', u'convict'] [u'high', u'court', u'throw', u'test', u'case'] [u'hobart', u'resid', u'begin', u'platypus', u'protect', u'campaign'] [u'hospit', u'fail', u'safeti', u'test'] [u'hull', u'approach', u'csiro'] [u'hundr', u'thousand', u'flee', u'china', u'flood', u'kill'] [u'icac', u'recommend', u'charg', u'mayor'] [u'indigen', u'corpor', u'lose', u'nativ', u'titl', u'bodi'] [u'industri', u'estat', u'plan', u'promis', u'job', u'boost'] [u'injur', u'rescu', u'kakadu'] [u'iraq', u'insurg', u'intern'] [u'chang', u'threaten', u'heritag', u'union', u'chief'] [u'japan', u'mink', u'hunt', u'fall', u'short'] [u'japan', u'threaten', u'quit'] [u'japan', u'unfaz', u'fish', u'vessel', u'australia'] [u'king', u'otto', u'crown', u'slip', u'conf', u'disast'] [u'labor', u'back', u'resid', u'visa', u'vietnam'] [u'labor', u'claim', u'coalit', u'divid'] [u'langer', u'back', u'aussi', u'bounc'] [u'lara', u'withdraw', u'lanka', u'dayer'] [u'lawyer', u'assess', u'concern', u'hickss'] [u'fire', u'line'] [u'symond', u'vaughan', u'riversid'] [u'lithgow', u'council', u'welcom', u'wolgan', u'valley', u'resort', u'plan'] [u'log', u'protest', u'claim', u'death', u'threat'] [u'malaysia', u'call', u'dfat', u'lift', u'travel', u'warn'] [u'face', u'court', u'assault', u'weapon'] [u'maradona', u'join', u'boca', u'junior'] [u'maroon', u'lose', u'webb', u'decid'] [u'mar', u'water', u'search', u'radar', u'readi', u'work'] [u'mcewen', u'evan', u'confirm', u'tour', u'lanc', u'name'] [u'mcgahan', u'win', u'mile', u'franklin', u'literari', u'award'] [u'mcgauran', u'tip', u'nation', u'feder', u'deputi', u'leader'] [u'gibson', u'stalker', u'sentenc', u'year', u'jail'] [u'milan', u'reject', u'chelsea', u'world', u'record'] [u'motorist', u'urg', u'awar', u'slipperi', u'road'] [u'prais', u'outgo', u'anderson'] [u'council', u'deliv', u'rate', u'rise'] [u'pick', u'charg', u'drink', u'drive'] [u'murray', u'bridg', u'resid', u'mop'] [u'napthin', u'see', u'blood', u'servic', u'closur'] [u'narrabri', u'shire', u'break', u'rat'] [u'complex', u'adopt', u'pacif', u'theme'] [u'rat', u'plan', u'lismor', u'council'] [u'sport', u'drug', u'author', u'australia'] [u'north', u'west', u'state', u'biggest', u'power'] [u'lobbi', u'support', u'anti', u'whale', u'stanc'] [u'stop', u'zimbabw', u'tour', u'minist'] [u'opposit', u'say', u'hospit', u'staff', u'tell', u'fiddl'] [u'opposit', u'senat', u'differ', u'tack'] [u'pagan', u'welcom', u'fevola', u'deal'] [u'farewel', u'outgo', u'senat', u'defenc', u'leader'] [u'polic', u'head', u'patel', u'trail'] [u'polic', u'investig', u'castlemain', u'bash'] [u'policeman', u'tell', u'inquiri', u'quarantin', u'mcgee', u'file'] [u'polic', u'open', u'case', u'murder', u'madam'] [u'polic', u'review', u'child', u'charg'] [u'polic', u'examin', u'evid', u'asio', u'raid'] [u'pork', u'produc', u'warn', u'import', u'fight'] [u'porki', u'polic', u'fight', u'belt'] [u'potato', u'chip', u'factori', u'verg', u'collaps'] [u'powerco', u'wont', u'prosecut', u'mishap'] [u'pratt', u'bank', u'venus', u'upset'] [u'prefer', u'option', u'health', u'facil', u'outlin'] [u'priest', u'face', u'life', u'jail', u'death'] [u'alleg', u'corbi', u'team', u'bribe'] [u'form', u'crime', u'fight', u'partnership'] [u'rain', u'hamper', u'riverland', u'citrus', u'harvest'] [u'rain', u'help', u'burnett', u'water', u'storag'] [u'rain', u'offer', u'irrig', u'season', u'hope'] [u'rain', u'wont', u'stop', u'drought'] [u'ratepay', u'group', u'unhappi', u'roadwork', u'plan'] [u'cross', u'worker', u'shoot', u'aceh'] [u'redknapp', u'confirm', u'clive', u'soccer'] [u'region', u'complaint', u'spark', u'bigger', u'penalti'] [u'report', u'call', u'broader', u'rebat', u'cancer'] [u'report', u'call', u'probe', u'student', u'poverti'] [u'report', u'seek', u'action', u'disabl', u'youth'] [u'research', u'flap', u'hummingbird', u'photo'] [u'reshuffl', u'labor', u'frontbench', u'plan'] [u'resid', u'meet', u'ferri', u'oval', u'sale', u'opposit'] [u'retail', u'drag', u'share', u'market'] [u'chief', u'rule', u'condobolin', u'link'] [u'riverina', u'group', u'moot', u'telstra', u'split', u'ownership'] [u'riverina', u'landhold', u'guilti', u'water', u'charg'] [u'road', u'upgrad', u'includ', u'nation', u'park', u'section'] [u'rise', u'porteous', u'accus', u'alter', u'pain', u'killer'] [u'ruddock', u'brush', u'hick', u'health', u'fear'] [u'fish', u'buyback'] [u'scan', u'clear', u'tszyu', u'injuri'] [u'seven', u'face', u'court', u'swan', u'hill', u'brawl'] [u'shaft', u'death', u'trigger', u'danger', u'assess'] [u'shark', u'kill', u'child', u'vanuatu'] [u'goer', u'urg', u'follow', u'park', u'restrict'] [u'snow', u'forc', u'road', u'closur'] [u'soldier', u'say', u'bulli', u'desert'] [u'springborg', u'upset', u'liber', u'anti', u'coalit'] [u'springsur', u'hospit', u'doctor', u'retir'] [u'spur', u'piston', u'tangl', u'winner', u'game', u'seven'] [u'spur', u'chelsea', u'deadlin', u'arnesen'] [u'stoddart', u'call', u'head', u'boss', u'mosley'] [u'sugar', u'industri', u'welcom', u'shake'] [u'supermarket', u'oppon', u'highlight', u'platypus'] [u'surgeri', u'restor', u'ierodiacon', u'olymp', u'hop'] [u'thiev', u'stage', u'bottl', u'shop', u'raid'] [u'blast', u'baghdad'] [u'timber', u'industri', u'major', u'player', u'region', u'economi'] [u'cruis', u'drop', u'complaint', u'prankster'] [u'rain', u'creat', u'crop', u'headach'] [u'travel', u'urg', u'steer', u'clear', u'malaysia', u'sabah'] [u'tsunami', u'ravag', u'nation', u'focus', u'shift'] [u'investig', u'stall', u'prison', u'visit'] [u'union', u'unhappi', u'lifeguard', u'redund', u'notic'] [u'purchas', u'offic', u'resign'] [u'academ', u'back', u'hec'] [u'vail', u'truss', u'lead', u'nation'] [u'grower', u'commit', u'aquacultur', u'traceabl'] [u'victoria', u'record', u'largest', u'rise', u'drive', u'relat'] [u'firm', u'charg', u'spam'] [u'wallabi', u'wari', u'upbeat', u'italian'] [u'public', u'servant', u'encourag', u'attend', u'ralli'] [u'warn', u'england', u'tremlett', u'shin'] [u'senat', u'cross', u'floor'] [u'wave', u'baghdad', u'bomb', u'kill'] [u'welfar', u'lobbi', u'intensifi', u'action'] [u'whistleblow', u'nurs', u'front', u'bundaberg', u'hospit'] [u'william', u'ignor', u'origin', u'select', u'specul'] [u'william', u'focus', u'cowboy', u'origin'] [u'wimmera', u'get', u'indian', u'mustard', u'trial'] [u'windsor', u'call', u'nation', u'amend'] [u'woolgrow', u'continu', u'fight', u'peta'] [u'ming', u'head', u'australia'] [u'zimbabw', u'crackdown', u'condemn', u'children', u'crush'] [u'aborigin', u'school', u'intend', u'say', u'dept'] [u'aceh', u'governor', u'send', u'prison', u'corrupt'] [u'action', u'aborigin', u'bodi', u'anticip'] [u'activist', u'interrupt', u'militari', u'exercis'] [u'worker', u'aceh', u'safe', u'despit', u'shoot'] [u'black', u'mccaw', u'clear', u'play', u'lion', u'seri'] [u'ambul', u'worker', u'push', u'spark', u'industri'] [u'anderson', u'accus', u'liber', u'focus'] [u'arthur', u'face', u'fit', u'race'] [u'art', u'verg', u'dark', u'franklin', u'winner'] [u'assist', u'princip', u'get', u'suspend', u'sentenc'] [u'assist', u'minist', u'open', u'galleri'] [u'auslink', u'deal', u'ink', u'port', u'adelaid'] [u'aussi', u'fight'] [u'aussi', u'world', u'champ'] [u'aust', u'metal', u'recycl', u'firm', u'merger'] [u'aust', u'wwii', u'crash', u'remain', u'recov', u'papua'] [u'beazley', u'reshuffl', u'howard', u'welcom', u'vail'] [u'beazley', u'reveal', u'frontbench'] [u'bega', u'chees', u'beat', u'feder', u'fund'] [u'bendigo', u'men', u'club', u'consid', u'open', u'door'] [u'germani', u'brazil', u'coach', u'parreira'] [u'brother', u'put', u'children', u'moral', u'danger'] [u'blair', u'urg', u'feud'] [u'blaze', u'destroy', u'suppli', u'depot'] [u'blood', u'shortag', u'forc', u'oper', u'cancel'] [u'bomber', u'ignit', u'saint'] [u'bowen', u'basin', u'crash', u'caus', u'signific', u'track', u'damag'] [u'bowen', u'basin', u'train', u'crash', u'investig'] [u'brogden', u'urg', u'howard', u'pressur', u'premier'] [u'bush', u'phone', u'servic', u'prioriti', u'vail', u'pledg'] [u'callous', u'scam', u'target', u'elder', u'peopl', u'home'] [u'cane', u'farmer', u'grant', u'remind'] [u'carr', u'warn', u'council', u'sack', u'corrupt'] [u'speak', u'map', u'releas'] [u'chemist', u'anti', u'pill', u'stanc'] [u'chief', u'justic', u'reject', u'debacl', u'claim'] [u'child', u'abus', u'apolog', u'welcom', u'help', u'need'] [u'china', u'flood', u'toll', u'rise'] [u'commiss', u'delay', u'cost', u'pay', u'worker', u'labor'] [u'concern', u'danger', u'aquif', u'mine'] [u'confer', u'canva', u'liber', u'polici'] [u'corbi', u'legal', u'team'] [u'corbi', u'sack', u'indonesian', u'legal', u'team'] [u'coron', u'suggest', u'braveri', u'award', u'teen', u'drown'] [u'cosmos', u'backer', u'conced', u'space', u'craft', u'probabl', u'lose'] [u'council', u'aim', u'water', u'price'] [u'council', u'battl', u'maintain', u'road', u'rain'] [u'councillor', u'reject', u'retail', u'develop'] [u'council', u'urg', u'fast', u'track'] [u'court', u'close', u'suspici', u'envelop', u'receiv'] [u'cowboy', u'hope', u'perform', u'chilli', u'canberra'] [u'cowboy', u'hope', u'perform', u'cold'] [u'cricket', u'boss', u'decid', u'symond', u'fate'] [u'cricket', u'boss', u'decid', u'symondss', u'fate'] [u'danish', u'commerci', u'whale', u'fail'] [u'develop', u'board', u'chief', u'unhappi', u'dipnr', u'decis'] [u'digger', u'veteran', u'die', u'age'] [u'attack', u'prompt', u'council', u'immedi', u'action'] [u'drink', u'drive', u'review', u'welcom'] [u'driver', u'court', u'drink', u'drive', u'charg'] [u'drug', u'expert', u'warn', u'power', u'ecstasi', u'batch'] [u'duncan', u'inspir', u'spur', u'titl'] [u'east', u'timor', u'readi', u'challeng', u'peacekeep'] [u'easi', u'pick', u'mighti', u'mauresmo'] [u'elector', u'commiss', u'plan', u'boundari', u'shuffl'] [u'emot', u'farewel', u'wyong', u'victim'] [u'escap', u'doubl', u'murder', u'get', u'month'] [u'famili', u'farewel', u'young', u'hous', u'blaze', u'victim'] [u'farmer', u'stricter', u'produc', u'label'] [u'fear', u'air', u'wombat', u'forest', u'log'] [u'ferguson', u'like', u'loser', u'labor', u'parti', u'reshuffl'] [u'firm', u'see', u'potenti', u'rock', u'power'] [u'fish', u'associ', u'puzzl', u'lake', u'macquari'] [u'dead', u'bomb', u'attack', u'near', u'kashmir', u'tourist'] [u'flatley', u'skipper', u'aust', u'team'] [u'flatley', u'skipper', u'australia'] [u'klan', u'leader', u'jail', u'year'] [u'forrest', u'quiet', u'portfolio', u'intent'] [u'fund', u'delay', u'hold', u'indigen', u'school', u'program'] [u'furyk', u'finish', u'flurri', u'bring', u'lead'] [u'gallop', u'defend', u'campaign'] [u'garbag', u'collector', u'warn', u'strike'] [u'glaxo', u'cut', u'job', u'poppi', u'crop', u'dwindl'] [u'global', u'warm', u'evid', u'timor', u'coral'] [u'goulburn', u'thirsti', u'despit', u'rain'] [u'govern', u'sign', u'wimmera', u'malle'] [u'govt', u'announc', u'lake', u'macquari', u'clean', u'fund'] [u'govt', u'reject', u'call', u'sack', u'fingleton', u'case'] [u'govt', u'urg', u'focus', u'attent', u'south', u'west', u'highway'] [u'graham', u'murray', u'webb'] [u'grazier', u'wander', u'stock', u'remind'] [u'greater', u'hume', u'shire', u'gear', u'council', u'poll'] [u'greeni', u'higher', u'power', u'energi', u'campaign'] [u'gunn', u'ental', u'hous', u'leas', u'defend'] [u'hay', u'commit', u'saint'] [u'health', u'care', u'group', u'talk', u'psychiatr', u'patient'] [u'hewitt', u'stand', u'pratt', u'arthur'] [u'hewitt', u'predict', u'gutsi', u'round', u'match'] [u'hill', u'pay', u'tribut', u'best', u'peacekeep', u'mission'] [u'hop', u'remain', u'calder', u'duplic'] [u'hospit', u'failur', u'meet', u'servic', u'criteria', u'remain'] [u'howard', u'extend', u'congratul', u'vail'] [u'independ', u'say', u'opposit', u'grow'] [u'indigen', u'educ', u'fund', u'chang', u'nightmar'] [u'indonesia', u'court', u'cut', u'suharto', u'jail', u'term'] [u'industri', u'want', u'mine', u'skill', u'foster'] [u'iranian', u'head', u'poll', u'presidenti'] [u'iraq', u'insurg', u'strong'] [u'iraq', u'violenc', u'continu', u'toll'] [u'japan', u'buy', u'break', u'hill', u'explor'] [u'japan', u'defiant', u'whale', u'talk', u'wrap'] [u'jone', u'want', u'ruthless', u'perform', u'wallabi'] [u'judg', u'wrap', u'head', u'beani', u'design'] [u'kid', u'surpris', u'boyfriend', u'tegan', u'inquest', u'hear'] [u'lebanon', u'anti', u'syria', u'leader', u'urg', u'presid', u'quit'] [u'liber', u'parti', u'announc', u'femal', u'presid'] [u'liverpool', u'face', u'wale', u'titl', u'defenc'] [u'local', u'govt', u'group', u'unhappi', u'feder', u'fund'] [u'water', u'product', u'pull', u'shelv'] [u'test'] [u'maleni', u'platypus', u'concern', u'fail', u'sway', u'minist'] [u'claim', u'alien', u'delus', u'forc', u'dead', u'drive'] [u'face', u'charg', u'refus', u'bail'] [u'mayor', u'back', u'plan', u'super', u'size', u'armi', u'train', u'area'] [u'melbourn', u'doubl'] [u'mexico', u'probe', u'dope', u'link', u'expel', u'pair'] [u'minist', u'hear', u'nowra', u'road', u'plan'] [u'minist', u'weigh', u'eleph', u'import', u'request'] [u'miss', u'tegan', u'mother', u'support', u'adopt'] [u'fund', u'seek', u'fight', u'ghost', u'net'] [u'snow', u'fall', u'barrington', u'top'] [u'mother', u'tegan', u'conceal', u'pregnanc'] [u'see', u'benefit', u'return', u'hospit', u'board'] [u'slam', u'faction', u'deal', u'ahead', u'reshuffl'] [u'murray', u'bridg', u'council', u'best', u'prevent'] [u'murray', u'goulburn', u'farmer', u'price', u'boost'] [u'nadal', u'slide', u'wimbledon'] [u'nation', u'park', u'oppos', u'dive', u'plan'] [u'shed', u'monto'] [u'law', u'safeguard', u'communiti', u'servic'] [u'leader', u'take', u'rein', u'hong', u'kong'] [u'lead', u'prompt', u'inquiri', u'bodi'] [u'legal', u'action', u'bite', u'jackson'] [u'patrol', u'boat', u'launch', u'darwin'] [u'inquest', u'hold', u'ralli', u'death'] [u'risk', u'growth', u'eslak'] [u'opposit', u'want', u'fast', u'track', u'ashbourn', u'inquiri'] [u'owen', u'unit', u'say', u'queiroz'] [u'pair', u'face', u'court', u'anim', u'cruelti', u'charg'] [u'parent', u'ralli', u'children', u'ward', u'plan'] [u'park', u'pass', u'unit', u'medic'] [u'pentagon', u'compil', u'student', u'databas', u'militari'] [u'peter', u'parr', u'announc', u'webb', u'injuri', u'news'] [u'philippin', u'militari', u'standbi', u'protest'] [u'meet', u'bush', u'blair'] [u'polic', u'accept', u'rise', u'deal'] [u'polic', u'claim', u'block', u'help', u'forest'] [u'polic', u'investig', u'woman', u'death'] [u'polic', u'seek', u'answer', u'offic', u'name'] [u'polit', u'side', u'narrabri', u'hospit'] [u'potato', u'grower', u'chipper', u'factori'] [u'powercor', u'oppos', u'review', u'urg', u'cheaper', u'bill'] [u'power', u'want', u'road', u'trip', u'runaround'] [u'pratt', u'henman', u'nadal', u'roll'] [u'price', u'drop', u'prompt', u'warn', u'wine', u'industri'] [u'prison', u'offic', u'braveri', u'recognis', u'award'] [u'probe', u'highlight', u'calm', u'manag', u'conflict'] [u'program', u'aim', u'dubbo', u'unemploy'] [u'properti', u'council', u'see', u'posit', u'govt', u'public'] [u'public', u'urg', u'nose'] [u'stand', u'corbi', u'briberi', u'claim'] [u'review', u'law', u'fingleton', u'case'] [u'queensland', u'sunni', u'snow'] [u'raaf', u'welcom', u'command'] [u'rain', u'help', u'boost', u'cattl', u'price'] [u'region', u'council', u'face', u'fund', u'squeez'] [u'renmark', u'push', u'resid', u'magistr'] [u'report', u'highlight', u'indigen', u'hous', u'woe'] [u'resid', u'lose', u'fight', u'open'] [u'road', u'minist', u'take', u'unaccept', u'bungl'] [u'robber', u'steal', u'gun'] [u'rooster', u'eel'] [u'rooster', u'target', u'eel', u'dangerman', u'smith'] [u'rumsfeld', u'rule', u'deadlin', u'troop', u'withdraw'] [u'school', u'fund', u'come', u'string', u'attach', u'say'] [u'scientist', u'fine', u'tune', u'devil', u'tumour', u'diseas', u'research'] [u'seller', u'clean', u'shower', u'jesus'] [u'senat', u'pass', u'chang', u'detent', u'polici'] [u'servicemen', u'face', u'disciplin', u'photo'] [u'sheedi', u'get', u'intern'] [u'shoalhaven', u'like', u'jail'] [u'shoalhaven', u'water', u'conserv', u'project'] [u'snow', u'excit', u'down', u'tourism', u'oper'] [u'snowi', u'council', u'revamp', u'exist', u'chamber'] [u'soar', u'price', u'produc', u'slump'] [u'soldier', u'disciplin', u'photo'] [u'solomon', u'whale', u'stanc', u'dishonest'] [u'sorenstam', u'earli', u'pace', u'women', u'open'] [u'lanka', u'sign', u'tsunami', u'deal', u'tamil', u'tiger'] [u'stand', u'mugab', u'urg', u'african', u'leader'] [u'stock', u'hit', u'barrel'] [u'strike', u'affect', u'local', u'garbag', u'servic'] [u'student', u'debat', u'polit', u'anniversari'] [u'student', u'need', u'work', u'put', u'degre', u'danger', u'anusa'] [u'sink', u'endeavour', u'scrap'] [u'suspici', u'packag', u'fals', u'alarm'] [u'symond', u'banish', u'blue', u'england'] [u'symond', u'escap', u'punish'] [u'symond', u'star', u'australia', u'blast'] [u'symond', u'star', u'australia', u'return', u'win'] [u'taliban', u'death', u'toll', u'top', u'latest', u'battl'] [u'weather', u'present'] [u'territori', u'interim', u'cabinet', u'swear'] [u'thailand', u'take', u'tough', u'approach', u'separatist'] [u'thousand', u'march', u'demand', u'arroyo', u'resign'] [u'timor'] [u'tour', u'introduc', u'blood', u'dope', u'test'] [u'trade', u'council', u'plan', u'campaign', u'chang'] [u'troop', u'militari', u'exercis', u'battl'] [u'truck', u'crash', u'reignit', u'joke', u'bridg', u'safeti', u'concern'] [u'truck', u'driver', u'send', u'messag', u'liber'] [u'union', u'manag', u'conven', u'wagga'] [u'guantanamo', u'visit', u'request', u'ignor'] [u'approv', u'rat', u'drop', u'amid', u'iraq', u'survey'] [u'call', u'north', u'korea', u'date', u'talk'] [u'vote', u'start', u'iranian', u'presidenti'] [u'water', u'storag', u'unit', u'near', u'complet'] [u'welsh', u'furi', u'lion', u'snub'] [u'whistleblow', u'quiz', u'hospit'] [u'wide', u'farmer', u'readi', u'nlis'] [u'wife', u'jail', u'sentenc', u'manslaught', u'suspend'] [u'wimbledon', u'result'] [u'world', u'beat', u'asthma', u'studi', u'hop', u'save', u'live'] [u'yahoo', u'shut', u'chat', u'room', u'amid', u'child', u'concern'] [u'young', u'senior', u'boomer'] [u'young', u'surgeri', u'wait', u'time'] [u'zimbabwean', u'polic', u'arrest', u'controversi'] [u'adler', u'charg', u'jail', u'activ'] [u'appoint', u'femal', u'commission'] [u'black', u'crush', u'lion'] [u'ancient', u'greek', u'love', u'poem', u'publish', u'rediscoveri'] [u'artist', u'scrap', u'poimena', u'prize'] [u'refus', u'zimbabw'] [u'aussi', u'pilkadari', u'grab', u'brunei', u'open', u'lead'] [u'aussi', u'send', u'bangladesh'] [u'australian', u'die', u'hike', u'expedit'] [u'australian', u'shoot', u'pace', u'brunei'] [u'australian', u'trio', u'charg', u'drug', u'traffic'] [u'award', u'recognis', u'aborigin', u'drug', u'treatment', u'centr'] [u'ballack', u'face', u'ronaldinho', u'clash', u'style'] [u'bomber', u'edg', u'past', u'saint'] [u'builder', u'lobbi', u'group', u'union', u'clash', u'protest'] [u'build', u'collaps', u'kill', u'india'] [u'bush', u'set', u'timet', u'forc'] [u'bush', u'say', u'dont', u'worri', u'iraq', u'timet'] [u'cairn', u'welcom', u'home', u'everest', u'climber'] [u'canberra', u'frock', u'dancesport', u'championship'] [u'christma', u'detent', u'centr', u'construct'] [u'cloud', u'seed', u'provid', u'hope', u'snow'] [u'coach', u'threaten', u'quit', u'springbok'] [u'corbi', u'appoint', u'consult', u'walter', u'tonetto'] [u'costello', u'promis', u'pressur', u'state'] [u'council', u'pass', u'resolut', u'year', u'feder'] [u'count', u'begin', u'iranian', u'presidenti'] [u'disgrac', u'sydney', u'businessman', u'rodney', u'adler'] [u'disney', u'pull', u'shark', u'hong', u'kong', u'park', u'menu'] [u'distract', u'montgomeri', u'skip', u'titl'] [u'electr', u'metr', u'trial', u'bring', u'cash', u'return'] [u'ell', u'split', u'boyfriend'] [u'hold', u'darwin', u'brawl'] [u'freak', u'storm', u'glastonburi', u'festiv'] [u'furyk', u'fli', u'high', u'eagl', u'senden', u'equal'] [u'gough', u'readi', u'spook', u'aussi'] [u'govt', u'produc', u'pigmeat'] [u'govt', u'vow', u'pursu', u'plan', u'despit', u'intern'] [u'gregan', u'itch', u'return', u'wallabi', u'duti'] [u'hardlin', u'take', u'earli', u'iran', u'poll', u'lead'] [u'health', u'dept', u'total', u'respons', u'patel', u'case'] [u'high', u'price', u'prompt', u'fuel', u'levi', u'reform'] [u'high', u'petrol', u'price', u'good', u'news', u'mortgag', u'analyst'] [u'hobart', u'hospit', u'instal', u'scanner'] [u'hospit', u'head', u'blame', u'heart', u'surgeri', u'delay', u'staff'] [u'howard', u'commit', u'leadership', u'reform'] [u'howard', u'vow', u'press', u'ahead', u'chang'] [u'hungri', u'hewitt', u'shoulder', u'past', u'gimelstob'] [u'problem', u'shuttl', u'launch'] [u'indian', u'centr', u'alert', u'fraud', u'claim'] [u'indonesian', u'agent', u'implic', u'activist', u'death'] [u'iran', u'extend', u'vote', u'tight', u'presidenti'] [u'iranian', u'vote', u'tight', u'presidenti'] [u'itali', u'issu', u'warrant', u'alleg', u'kidnapp'] [u'king', u'island', u'win', u'artist'] [u'knight', u'break', u'drought', u'panther'] [u'labor', u'fear', u'cdep', u'scheme'] [u'landslid', u'hardlin', u'iranian', u'presid'] [u'liber', u'parti', u'confront', u'howard', u'state', u'right'] [u'loeb', u'take', u'control', u'atkinson', u'fin'] [u'lundi', u'score', u'sport', u'opposit', u'reshuffl'] [u'die', u'brisban', u'hous'] [u'kill', u'rollov', u'outback'] [u'mexico', u'regain', u'skipper', u'argentinian', u'clash'] [u'mexico', u'result', u'stand', u'despit', u'fail', u'drug'] [u'minist', u'shock', u'damn', u'hospit', u'report'] [u'minist', u'want', u'inform', u'hospit'] [u'nelson', u'gold', u'pocket', u'watch', u'star', u'sale'] [u'law', u'autocrat'] [u'corbi', u'legal', u'team', u'head', u'urg', u'public', u'comment'] [u'evid', u'free', u'rang', u'fiddl', u'jackson'] [u'opposit', u'seek', u'inquiri', u'road'] [u'begin', u'count', u'final', u'vote', u'nailbit', u'finish'] [u'win', u'boost', u'art', u'fund'] [u'nude', u'cover', u'end', u'justic', u'depart'] [u'fruit', u'grower', u'push', u'aust', u'access'] [u'produc', u'aust', u'import', u'pigmeat'] [u'odriscol', u'hill', u'shanklin', u'lion', u'tour'] [u'price', u'hit', u'market'] [u'price', u'near'] [u'opposit', u'reshuffl', u'insult', u'worker', u'union', u'say'] [u'palestinian', u'polic', u'milit', u'exchang', u'gunfir'] [u'parti', u'goer', u'hospitalis', u'assault'] [u'person', u'alarm', u'protect', u'prison', u'staff'] [u'petrol', u'price', u'cancel', u'govt', u'relief', u'say', u'labor'] [u'concern', u'rise', u'world', u'price', u'impact'] [u'polic', u'charg', u'colleagu', u'drink', u'kitti', u'theft'] [u'polic', u'investig', u'sport', u'warehous', u'blaze'] [u'poorest', u'victim', u'miss', u'tsunami', u'relief'] [u'readi', u'help', u'corbi', u'team'] [u'raider', u'edg', u'cowboy', u'thriller'] [u'resid', u'fight', u'stirl', u'supermarket', u'plan'] [u'reveng', u'agenda', u'australia', u'face', u'bangladesh'] [u'roddick', u'fume', u'swear'] [u'rossi', u'snatch', u'pole', u'assen'] [u'rossi', u'win', u'dutch', u'motogp'] [u'rural', u'renov', u'warn', u'asbesto', u'danger'] [u'hospit', u'standard', u'failur', u'embarrass'] [u'secret', u'lover', u'sell', u'picasso', u'sketch'] [u'sharapova', u'march', u'fourth', u'round'] [u'troop', u'presum', u'dead', u'iraq', u'attack', u'offici'] [u'smith', u'defend', u'beazley', u'reshuffl'] [u'sorenstam', u'open', u'bogey', u'bogey', u'bogey'] [u'spur', u'chelsea', u'reach', u'agreement', u'arnesen'] [u'state', u'funer', u'plan', u'veteran'] [u'state', u'funer', u'honour', u'digger'] [u'storm', u'annihil', u'rabbitoh'] [u'swan', u'spoil', u'buckley', u'return'] [u'symond', u'snare', u'bangladesh', u'collaps'] [u'taxi', u'group', u'deni', u'gag', u'driver'] [u'bird', u'extinguish', u'firebird', u'oriol', u'darter'] [u'teenag', u'stabl', u'twice'] [u'femal', u'soldier', u'kill', u'iraq', u'attack'] [u'triumphant', u'wallabi'] [u'injur', u'bomb', u'attack', u'russian', u'train'] [u'union', u'hail', u'move', u'bring', u'person', u'alarm'] [u'admit', u'detaine', u'tortur', u'report'] [u'confirm', u'case'] [u'echo', u'australian', u'warn', u'travel'] [u'tip', u'beef', u'price'] [u'stock', u'fall', u'concern', u'rise', u'price'] [u'govt', u'push', u'hospit', u'standard'] [u'wallabi', u'outclass', u'italian'] [u'widow', u'hit', u'centrelink', u'treatment'] [u'grab', u'share', u'women', u'open', u'lead'] [u'world', u'bid', u'jone', u'montgomeri'] [u'yass', u'renew', u'alcohol', u'free', u'zone'] [u'young', u'impal', u'break'] [u'kill', u'iraq', u'violenc'] [u'arrest', u'sydney', u'street', u'crime', u'swoop'] [u'actu', u'work', u'protest', u'disrupt'] [u'adriano', u'magic', u'inspir', u'brazil', u'confeder'] [u'offic', u'thailand', u'month'] [u'tsunami', u'victim', u'indentif', u'work'] [u'alic', u'warm', u'beani', u'make', u'record'] [u'aloisi', u'join', u'greek', u'giant', u'panathinaiko'] [u'back', u'paper', u'recommend', u'hospit', u'admin'] [u'kenyan', u'illeg', u'alcohol'] [u'australia', u'beat', u'bok', u'junior', u'world', u'final'] [u'australia', u'england', u'trial', u'rule', u'chang'] [u'australia', u'peak', u'union', u'bodi', u'begin', u'week'] [u'australia', u'reveng', u'bangladesh'] [u'australia', u'take', u'reveng', u'bangladesh'] [u'battl', u'leav', u'colombian', u'troop', u'dead'] [u'beatti', u'fingleton', u'compens'] [u'beatti', u'rule', u'inquiri', u'wit', u'allow'] [u'beatti', u'say', u'fingleton', u'case', u'tragedi'] [u'beatti', u'subdu', u'seventh', u'anniversari'] [u'beazley', u'seek', u'cut', u'offset', u'petrol', u'price'] [u'blackspot', u'upgrad', u'improv', u'driver', u'safeti'] [u'blair', u'work', u'republican', u'report'] [u'booklet', u'provid', u'guid', u'territori', u'sexual', u'law'] [u'bouncer', u'hospit', u'nightclub', u'fight'] [u'brando', u'person', u'effect', u'auction'] [u'british', u'hope', u'murray', u'run', u'steam'] [u'build', u'lobbi', u'defi', u'govt', u'train', u'cours'] [u'bulgaria', u'communist', u'claim', u'elect', u'victori'] [u'bulldog', u'man', u'home'] [u'bush', u'acknowledg', u'grim', u'imag', u'iraq'] [u'bomb', u'hurt', u'madrid', u'olymp', u'chanc'] [u'china', u'grappl', u'diseas', u'dead', u'flood'] [u'chines', u'tourist', u'charg', u'bondi', u'beach', u'walk'] [u'claim', u'govt', u'task', u'forc', u'corrupt', u'process'] [u'comment', u'coach'] [u'corbi', u'defend', u'eye', u'better', u'aust', u'indonesian', u'tie'] [u'corbi', u'legal', u'team', u'coordin', u'concern', u'aust'] [u'council', u'clarifi', u'hospit', u'accredit', u'rat'] [u'cricket', u'ralli', u'warn', u'marriag', u'break'] [u'davenport', u'clijster', u'squar', u'time'] [u'deadlin', u'near', u'game', u'ticket'] [u'develop', u'rework', u'stirl', u'shop', u'centr', u'design'] [u'diseas', u'outbreak', u'fear', u'leav', u'farmer', u'feel'] [u'doctor', u'remov', u'rare', u'twin', u'foetus', u'teenag'] [u'dozen', u'kill', u'afghan', u'clash'] [u'kill', u'collid', u'tractor'] [u'eyr', u'peninsula', u'fire', u'offer', u'safeti', u'lesson'] [u'failur', u'cite', u'kiwi', u'pair', u'spear', u'leav', u'lion'] [u'fall', u'gate', u'crush', u'girl'] [u'farmer', u'find', u'success', u'graze', u'techniqu'] [u'feder', u'sharapova', u'underlin', u'class'] [u'femal', u'liber', u'parti', u'presid', u'take'] [u'chief', u'minist', u'review', u'elect'] [u'gatlin', u'seiz', u'second', u'chanc', u'sprint', u'trial'] [u'geldof', u'urg', u'glastonburi', u'crowd', u'fight', u'african'] [u'girl', u'die', u'shark', u'attack'] [u'glastonburi', u'wind', u'mudbath', u'dri'] [u'grandstand', u'speak', u'clinton', u'schifcofsk', u'simon'] [u'grandstand', u'speak', u'steve', u'simpson', u'andrew', u'john'] [u'green', u'target', u'food', u'label'] [u'gregan', u'glad', u'game', u'mode'] [u'grewcock', u'ban', u'bite', u'black'] [u'habana', u'score', u'twice', u'springbok', u'floor', u'franc'] [u'harrington', u'furyk', u'hold', u'lead', u'senden', u'lurk'] [u'hill', u'deni', u'wood', u'releas', u'delay'] [u'hospit', u'report', u'alert', u'govt', u'say'] [u'hotel', u'blaze', u'caus', u'damag'] [u'howard', u'target', u'parti', u'faith', u'speech'] [u'howard', u'senat', u'power', u'sober', u'wise'] [u'india', u'smoke', u'relat', u'diseas', u'pictur'] [u'industri', u'push', u'nutti', u'health', u'benefit'] [u'iranian', u'presidenti', u'poll', u'loser', u'lash'] [u'israel', u'apologis', u'passport', u'fraud'] [u'israel', u'approv', u'settler', u'reloc', u'plan'] [u'japanes', u'media', u'criticis', u'screen'] [u'jewboy', u'take', u'migrat', u'film', u'gong'] [u'maxwel', u'speak', u'australian', u'captain', u'ricki'] [u'junior', u'black', u'battl', u'past', u'australia'] [u'kenya', u'alcohol', u'poison', u'death', u'toll', u'rise'] [u'kenya', u'jolt', u'western', u'sahara', u'peac', u'process'] [u'kill', u'lowest', u'point', u'captiv', u'wood', u'say'] [u'knight', u'celebr', u'rare', u'storm', u'raider'] [u'labor', u'leader', u'play', u'reshuffl', u'disquiet'] [u'lawyer', u'accus', u'corbi', u'famili', u'profit'] [u'liber', u'minist', u'nuclear', u'power'] [u'liber', u'back', u'call', u'year', u'parliamentari'] [u'lion', u'demand', u'action', u'horrend', u'tackl'] [u'loeb', u'motor', u'victori', u'greec'] [u'machin', u'mimic', u'life', u'nextfest'] [u'charg', u'kindergarten'] [u'die', u'footbal', u'club', u'fight'] [u'front', u'court', u'kindergarten'] [u'hospitalis', u'black', u'out', u'station'] [u'hospit', u'roadsid', u'assault'] [u'miss', u'orient', u'properti'] [u'moroney', u'deni', u'airport', u'crime', u'concern', u'ignor'] [u'multipl', u'suicid', u'bomber', u'iraq', u'polic', u'armi'] [u'korean', u'famili', u'defect', u'south', u'yellow'] [u'polic', u'commission', u'moroney', u'deni'] [u'parmalat', u'boss', u'face', u'fraud', u'trial'] [u'polic', u'appeal', u'wit', u'fatal', u'rollov'] [u'polic', u'inquiri', u'man', u'death'] [u'polic', u'charg', u'teen', u'assault'] [u'polic', u'damag', u'suicid', u'bomb'] [u'pont', u'perplex', u'bangladesh', u'belt'] [u'protest', u'lobbi', u'agenda', u'liber'] [u'public', u'servant', u'warn', u'minist', u'inform'] [u'qanta', u'hold', u'higher', u'fuel', u'levi'] [u'rainfal', u'boost', u'tree', u'plant'] [u'rossi', u'make', u'assen'] [u'opposit', u'take', u'simplist', u'view', u'crimin'] [u'serena', u'tear', u'shock', u'loss'] [u'seven', u'kill', u'aceh', u'violenc'] [u'shane', u'simon', u'warn', u'separ'] [u'simon', u'jone', u'rejoin', u'england', u'squad'] [u'stuppl', u'match', u'teen', u'soren', u'slam', u'hop', u'fade'] [u'subdu', u'sharapova', u'advanc', u'fourth', u'round'] [u'suspici', u'letter', u'send', u'indonesian', u'foreign'] [u'swan', u'march', u'continu', u'magpi', u'plan'] [u'swift', u'underlin', u'titl', u'credenti'] [u'govt', u'moot', u'honey', u'bank', u'propos', u'help', u'balanc'] [u'test', u'begin', u'train'] [u'speak', u'andrew', u'symond'] [u'increas', u'polit', u'pressur'] [u'thoma', u'hand', u'lion', u'captainci'] [u'kill', u'miss', u'bridg', u'collaps'] [u'tiger', u'stun', u'dragon'] [u'today', u'mark', u'month', u'world', u'worst'] [u'transsexu', u'take', u'women', u'footbal', u'match'] [u'unicycl', u'champion', u'coast', u'darwin'] [u'union', u'say', u'unsaf', u'ambul', u'risk', u'live'] [u'talk', u'iraq', u'rebel', u'report'] [u'warship', u'townsvill'] [u'view', u'coach'] [u'wallabi', u'freshen', u'franc'] [u'ralli', u'battl', u'offens', u'anti'] [u'warn', u'wife', u'separ'] [u'warrior', u'bronco', u'streak'] [u'wimbledon', u'result'] [u'zimbabw', u'set', u'transit', u'camp', u'demolit'] [u'human', u'right', u'case', u'air', u'talk'] [u'plan', u'cancel'] [u'accc', u'ask', u'ensur', u'bank', u'pass', u'save'] [u'airlin', u'destin'] [u'actu', u'tell', u'airport', u'worker', u'fear'] [u'adhd', u'program', u'reduc', u'fraser', u'coast', u'wait', u'list'] [u'admit', u'timekeep', u'mistak'] [u'investig', u'alleg', u'timekeep', u'mishap'] [u'ambul', u'leas', u'life', u'maldiv'] [u'reli', u'intern', u'student', u'fee'] [u'appeal', u'conn', u'children', u'reach', u'million'] [u'approv', u'coal'] [u'argentina', u'mexico', u'penalti'] [u'armstrong', u'shrug', u'train', u'crash'] [u'arroyo', u'broadcast', u'apolog'] [u'asia', u'africa', u'showdown'] [u'aust', u'china', u'talk', u'human', u'right'] [u'australia', u'consid', u'zimbabw', u'cricket', u'boycott'] [u'australian', u'fail', u'militari', u'justic'] [u'aust', u'uni', u'lose', u'face', u'asia'] [u'beach', u'close', u'irukandji', u'sting'] [u'beatti', u'angri', u'minist', u'tell', u'health'] [u'beazley', u'dismiss', u'latham', u'critic'] [u'beef', u'export', u'observ', u'develop'] [u'liquor', u'retail', u'face', u'class', u'action'] [u'birney', u'wont', u'protest'] [u'blue', u'tahu', u'origin'] [u'boati', u'revamp', u'facil'] [u'book', u'creat', u'labor', u'tension'] [u'kill', u'wamuran', u'quarri'] [u'bureaucrat', u'assur', u'communiti', u'hospit'] [u'burgoyn', u'commit', u'power'] [u'burgoyn', u'confirm', u'power', u'futur'] [u'bush', u'vow', u'elimin', u'tortur', u'worldwid'] [u'centr', u'sack', u'employe', u'centr', u'bank', u'data', u'scam'] [u'centr', u'sack', u'employe', u'bank', u'data', u'scam'] [u'canberra', u'engin', u'say', u'tsunami', u'build', u'project'] [u'central', u'banker', u'expect', u'price', u'remain', u'high'] [u'cloud', u'seed', u'trial'] [u'leader', u'expect', u'david', u'goliath', u'battl'] [u'club', u'skirt', u'femal', u'membership'] [u'coast', u'confirm', u'bailey', u'sign'] [u'cockbain', u'call', u'lion', u'squad'] [u'commodor', u'list', u'thiev'] [u'communiti', u'lend', u'support', u'murder', u'victim', u'memori'] [u'confid', u'black', u'seri'] [u'consum', u'tick', u'bowser', u'oper', u'price', u'restraint'] [u'corbi', u'reappoint', u'legal', u'advisor'] [u'coron', u'seek', u'specialist', u'advic', u'tegan', u'lane'] [u'council', u'anger', u'govt', u'budget', u'accommod'] [u'council', u'appli', u'drought', u'farmer'] [u'cricket', u'boss', u'part', u'blame', u'warn', u'break'] [u'criminologist', u'see', u'benefit', u'corbi', u'rehir'] [u'distribut', u'extra', u'drought'] [u'defector', u'case', u'tabl', u'human', u'right', u'talk'] [u'democrat', u'pressur', u'govt', u'open', u'ashbourn', u'inquiri'] [u'despit', u'like', u'rain', u'minist', u'urg', u'chang'] [u'detent', u'centr', u'best', u'welcom', u'darwin'] [u'diana', u'fling', u'book'] [u'doctor', u'endur', u'racist', u'backlash', u'patel', u'case'] [u'admit', u'citrus', u'compens', u'talk', u'need'] [u'drink', u'driver', u'fin', u'crash', u'hous'] [u'earthquak', u'rattl', u'indonesia', u'tsunami', u'anniversari'] [u'fear', u'unsaf', u'ambul', u'patient', u'risk'] [u'fifa', u'announc', u'heart', u'test', u'plan', u'world'] [u'report', u'suggest', u'train'] [u'flood', u'spark', u'melbourn', u'rail', u'chao'] [u'forc', u'sign', u'graham', u'storm'] [u'forster', u'health', u'probe', u'move', u'toowoomba'] [u'kill', u'highway', u'crash'] [u'kill', u'collis'] [u'fruit', u'grower', u'export', u'urg', u'combin', u'effort'] [u'gatlin', u'complet', u'sprint', u'doubl', u'champ'] [u'gnowangerup', u'shire', u'final', u'attract', u'doctor'] [u'good', u'rain', u'north', u'west'] [u'govt', u'approv', u'promot', u'discoveri', u'loop'] [u'govt', u'claim', u'rehabilit', u'work', u'kariong'] [u'govt', u'consid', u'older', u'driver', u'failur'] [u'govt', u'defend', u'norseman', u'health', u'care', u'facil'] [u'govt', u'launch', u'anim', u'diseas', u'databas'] [u'govt', u'launch', u'strategi', u'fight', u'rise', u'stds'] [u'govt', u'pay', u'servic', u'indigen', u'educ'] [u'govt', u'prepar', u'sign', u'asia', u'cooper', u'treati'] [u'govt', u'releas', u'prison', u'inform', u'ahead', u'tender'] [u'govt', u'protect', u'maritim', u'histori'] [u'govt', u'shine', u'spotlight', u'indigen', u'tourism'] [u'greec', u'begin', u'probe', u'massacr'] [u'greenhous', u'concern', u'spark', u'quell'] [u'hanson', u'speak', u'releas', u'fingleton'] [u'harrington', u'eagl', u'clinch', u'stun'] [u'healthscop', u'attack', u'newspap', u'hospit', u'articl'] [u'hewitt', u'wari', u'serv', u'dent'] [u'hid', u'pressur', u'declar', u'stanc'] [u'hindmarsh', u'face', u'origin', u'suspens'] [u'hospit', u'manag', u'defend', u'facil'] [u'hous', u'probe'] [u'howard', u'pitch', u'agenda', u'parti', u'faith'] [u'howard', u'vail', u'discuss', u'frontbench', u'chang'] [u'husband', u'carri', u'wife', u'bodi'] [u'feel', u'respons', u'death', u'assist'] [u'inmat', u'treat', u'self', u'inflict', u'injuri'] [u'intellig', u'agenc', u'conduct', u'raid'] [u'intrud', u'threaten', u'dweller', u'iron', u'bar'] [u'iraq', u'insurg', u'deni', u'contact'] [u'strike', u'action', u'fail', u'deter', u'govt'] [u'isra', u'soldier', u'refus', u'demolish', u'jewish'] [u'jewel', u'thiev', u'pillag', u'adelaid', u'store'] [u'jewish', u'settler', u'erect', u'gaza', u'outpost'] [u'joyc', u'warn', u'union', u'strike'] [u'joyc', u'welcom', u'open', u'door', u'stanc'] [u'juventus', u'target', u'vieira', u'snub', u'trezeguet'] [u'take', u'open'] [u'kiwi', u'seek', u'back', u'zimbabw'] [u'labor', u'throw', u'chang', u'beazley'] [u'institut', u'question', u'polic', u'power'] [u'lawyer', u'claim', u'aust', u'govt', u'abandon', u'corbi'] [u'local', u'hospit', u'tell', u'shape', u'lose', u'fund'] [u'loeb', u'take', u'acropoli', u'ralli', u'record', u'fifth'] [u'abduct', u'sydney', u'home', u'invas'] [u'burn', u'shoalhaven'] [u'die', u'power', u'station', u'break'] [u'kill', u'truck', u'bruce', u'highway'] [u'women', u'struggl', u'supermum', u'imag'] [u'knock', u'elector', u'chang'] [u'mayor', u'confid', u'wast', u'servic', u'begin'] [u'mayor', u'defend', u'hope', u'vale', u'councillor'] [u'mcgauran', u'cabinet', u'posit'] [u'melbourn', u'firm', u'look', u'suppli'] [u'melbourn', u'sewag', u'gippsland'] [u'minist', u'attack', u'uranium', u'mine'] [u'cost', u'supermarket'] [u'mother', u'confirm', u'corbi', u'hire', u'lawyer'] [u'motorway', u'plan', u'worri', u'northern', u'council'] [u'call', u'answer', u'abalon', u'industri', u'futur'] [u'confid', u'ethanol', u'mandat', u'mean', u'job'] [u'welcom', u'bunburi', u'prison', u'upgrad'] [u'munit', u'blast', u'kill', u'afghan', u'german'] [u'murray', u'murrumbidge', u'water', u'share', u'like'] [u'develop', u'polici', u'give', u'local', u'busi'] [u'iranian', u'presid', u'commit', u'nuclear', u'program'] [u'iranian', u'presid', u'readi', u'power'] [u'newmont', u'sell', u'zinc', u'copper'] [u'scheme', u'recycl', u'comput'] [u'elect', u'result', u'offici'] [u'urg', u'implement', u'greenhous', u'strategi'] [u'odriscol', u'face', u'surgeri', u'injur', u'shoulder'] [u'jump'] [u'ombudsman', u'consid', u'suppli', u'complaint'] [u'omeley', u'readi', u'origin', u'return', u'folk'] [u'dayer', u'affect', u'ash', u'say', u'hogg'] [u'opposit', u'anger', u'anti', u'drug', u'messag', u'walk'] [u'origin', u'fall', u'slater'] [u'origin', u'respons', u'brisban', u'loss', u'say'] [u'passeng', u'die', u'rokebi', u'road', u'crash'] [u'patel', u'stori', u'screen'] [u'peta', u'rais', u'prospect', u'mules', u'compromis'] [u'petkov', u'second', u'shoot', u'glori'] [u'pilkadari', u'win', u'brunei', u'open'] [u'planet', u'align', u'cosmic'] [u'platypus', u'coloni', u'defend'] [u'polic', u'bush', u'road', u'crash'] [u'polic', u'takeov', u'train', u'secur'] [u'pope', u'extend', u'sympathi', u'bunburi', u'cathol'] [u'pulp', u'taskforc', u'respond', u'rpdc', u'concern'] [u'say', u'corbi', u'appeal', u'winnabl'] [u'rain', u'boost', u'farmer', u'winter', u'crop', u'hop'] [u'recaptur', u'prison', u'court'] [u'tape', u'hamper', u'pierc', u'creek', u'plan'] [u'remesi', u'retain', u'french', u'open', u'titl'] [u'research', u'hone', u'banana', u'skin', u'fuel'] [u'research', u'debunk', u'japanes', u'whale'] [u'resid', u'urg', u'watch', u'dodgi', u'builder'] [u'reveng', u'factor', u'eagl', u'wirrpunda'] [u'ridgeway', u'head', u'indigen', u'tourism', u'bodi'] [u'rumsfeld', u'acknowledg', u'outreach', u'iraqi', u'rebel'] [u'rumsfeld', u'say', u'insurg'] [u'saddam', u'lieuten', u'grill', u'alleg', u'crime'] [u'scientist', u'discov', u'fertil', u'regul', u'gene'] [u'settler', u'oppos', u'remov'] [u'share', u'market', u'begin', u'week'] [u'slack', u'field', u'wont', u'good'] [u'snowi', u'hold', u'water', u'shortag'] [u'soldier', u'guilti', u'british', u'activist', u'manslaught'] [u'state', u'govt', u'move', u'boost', u'shoalhaven', u'invest'] [u'strauss', u'flintoff', u'strong', u'bangladesh'] [u'strike', u'action', u'begin'] [u'sustain', u'land', u'warwick', u'agenda'] [u'sydney', u'hiker', u'bodi', u'recov'] [u'taliban', u'reject', u'report', u'heavi', u'loss'] [u'tasmanian', u'fight', u'frost', u'record', u'power'] [u'taxi', u'charter', u'focus', u'custom', u'driver', u'right'] [u'teen', u'death', u'put', u'secur', u'agenda'] [u'tegan', u'lane', u'inquest', u'adjourn'] [u'telstra', u'casualti', u'alleg', u'anti', u'competit', u'action'] [u'thiev', u'stab', u'syring'] [u'acquit', u'conspiraci', u'hotel', u'attack'] [u'timber', u'worker', u'fear', u'reserv', u'restrict', u'access'] [u'tour', u'priest', u'say', u'world', u'hunger', u'beat'] [u'train', u'disrupt', u'keep', u'minimum'] [u'trucki', u'face', u'court', u'blow'] [u'peopl', u'dead', u'separ', u'accid'] [u'envoy', u'zimbabw', u'amid', u'outcri', u'crackdown'] [u'union', u'seek', u'tougher', u'regul', u'ship', u'standard'] [u'union', u'group', u'want', u'chang', u'elect', u'issu'] [u'union', u'prepar', u'battl'] [u'union', u'ralli', u'worker', u'chang'] [u'union', u'fight', u'ahead', u'pilbara', u'ralli'] [u'link', u'dope', u'smoker', u'terror'] [u'group', u'optimist', u'glenelg', u'river', u'futur'] [u'helicopt', u'crash', u'iraq'] [u'misus', u'detain', u'suspect', u'report', u'say'] [u'plan', u'plutonium', u'product', u'secret', u'mission'] [u'vail', u'urg', u'unit', u'govern', u'rural', u'issu'] [u'victorian', u'back', u'nuclear', u'power'] [u'voic', u'tigger', u'dick', u'dastard', u'die'] [u'cane', u'toad', u'watch', u'ship'] [u'defend', u'australian', u'educ', u'standard'] [u'worker', u'strike', u'chang'] [u'overlook', u'immun', u'fingleton'] [u'westpac', u'boss', u'elect', u'chairman'] [u'whale', u'museum', u'win', u'heritag', u'gong'] [u'whistleblow', u'tell', u'patel', u'concern', u'spark'] [u'whistleblow', u'tell', u'patel', u'stori'] [u'wood', u'face', u'lose', u'eyesight'] [u'wood', u'lose', u'eyesight'] [u'wood', u'struggl', u'vision'] [u'tourism', u'gateway', u'plan', u'illawarra'] [u'abus', u'victim', u'urg', u'lodg', u'compens', u'claim'] [u'adriano', u'get', u'green', u'light', u'train', u'scare'] [u'alcan', u'turn', u'dump', u'woodsid'] [u'black', u'thug', u'say', u'coach', u'henri'] [u'almond', u'processor', u'confid', u'plant'] [u'anti', u'protest', u'charg', u'adjourn'] [u'arsenal', u'star', u'persi', u'releas'] [u'asio', u'power', u'criticis', u'raid'] [u'asio', u'raid', u'spark', u'critic'] [u'dead', u'salvador', u'storm'] [u'aussi', u'cautious', u'ahead', u'edgbaston', u'clash'] [u'aust', u'china', u'talk', u'focus', u'domest', u'human', u'right'] [u'australia', u'post', u'rethink', u'mail', u'contract'] [u'bailey', u'excit', u'gold', u'coast', u'futur'] [u'bank', u'resourc', u'stock', u'push', u'ord'] [u'beach', u'contamin', u'clear'] [u'beat', u'fern', u'focus', u'say', u'record', u'equal', u'elli'] [u'beazley', u'confid', u'fingleton', u'receiv', u'fair'] [u'beazley', u'take', u'messag', u'meatwork'] [u'beazley', u'welcom', u'govt', u'backflip', u'asean', u'treati'] [u'beckenbau', u'promis', u'crackdown', u'pitch', u'invad'] [u'better', u'communic', u'help', u'eas', u'impact', u'coal'] [u'crowd', u'flock', u'mount', u'larcom'] [u'industri', u'block', u'seek', u'mildura'] [u'black', u'recal', u'muliaina', u'kelleh', u'lion', u'test'] [u'blatter', u'consid', u'world', u'dope', u'test'] [u'bogut', u'tip', u'draft', u'select'] [u'boomer', u'love', u'train', u'gold', u'coast'] [u'brain', u'pacemak', u'eas', u'sever', u'depress'] [u'broadband', u'access', u'take'] [u'break', u'hill', u'consid', u'energi', u'audit'] [u'broom', u'cane', u'toad', u'film', u'screen'] [u'bulldog', u'griffen', u'nomin', u'rise', u'star', u'award'] [u'bulldog', u'resign', u'lose', u'anasta'] [u'bunburi', u'consid', u'super', u'campus'] [u'burnett', u'budget', u'includ', u'averag', u'rate', u'rise'] [u'busi', u'urg', u'workplac', u'safeti'] [u'loddon', u'malle', u'autism', u'servic'] [u'cane', u'farmer', u'deal', u'contract'] [u'bomb', u'rip', u'baghdad', u'market'] [u'carrol', u'dismiss', u'talk', u'target', u'john'] [u'centrelink', u'deni', u'widow', u'payment', u'jeopardi'] [u'seek', u'better', u'communic', u'farmer'] [u'chang', u'afoot', u'thunderbolt', u'countri', u'fair'] [u'china', u'flood', u'toll', u'rise'] [u'club', u'welcom', u'sydney', u'recruit', u'strategi'] [u'coff', u'mayor', u'urg', u'action', u'highway', u'deathtrap'] [u'costa', u'consid', u'build', u'tollway', u'near', u'pacif'] [u'council', u'consid', u'boost', u'sewerag', u'fund'] [u'councillor', u'announc', u'shock', u'resign'] [u'council', u'pay', u'debt', u'administr', u'fail'] [u'council', u'launch', u'program', u'save', u'littl', u'penguin'] [u'council', u'auction', u'land', u'hous'] [u'coupl', u'kill', u'light', u'plane', u'crash'] [u'court', u'rule', u'display', u'command'] [u'cowboy', u'manag', u'back', u'bowen', u'origin', u'select'] [u'crime', u'fight', u'communiti', u'seek', u'chang'] [u'crow', u'thumb', u'monday', u'night', u'footi'] [u'deadlin', u'loom', u'nurs', u'home'] [u'develop', u'plan', u'westsid', u'shop', u'centr'] [u'dial', u'ride', u'servic', u'moot', u'gambier'] [u'kelli', u'brother', u'surviv', u'glenrowan', u'shoot'] [u'diver', u'hospitalis', u'decompress', u'sick'] [u'diver', u'hospit', u'bend'] [u'doctor', u'group', u'attack', u'sale', u'hospit', u'children'] [u'doubt', u'cast', u'blood', u'test', u'consider'] [u'dubbo', u'woman', u'dead', u'lock', u'bedroom'] [u'evan', u'tate', u'trade', u'halt'] [u'expert', u'seek', u'urgent', u'test', u'migratori', u'bird'] [u'feder', u'govt', u'help', u'austop', u'worker'] [u'fingleton', u'hold', u'talk'] [u'fish', u'famili', u'treat', u'like', u'outcast'] [u'william', u'sparkl', u'lion', u'post', u'record'] [u'forster', u'review', u'hear', u'toowoomba', u'health', u'woe'] [u'cambodian', u'charg', u'worker', u'rescu'] [u'franc', u'build', u'nuclear', u'fusion', u'reactor'] [u'free', u'hepat', u'vaccin', u'indigen', u'kid'] [u'fuel', u'seller', u'say', u'price', u'fluctuat', u'normal'] [u'gallop', u'stand', u'justic', u'head', u'manag'] [u'gallop', u'cost', u'campaign', u'fight', u'chang'] [u'glenormiston', u'colleg', u'seek', u'cours'] [u'gloucest', u'coal', u'control', u'stratford'] [u'gold', u'coast', u'futur', u'excit', u'bailey'] [u'good', u'rain', u'eas', u'water', u'ban'] [u'govern', u'refus', u'guarante', u'long', u'term', u'care'] [u'govern', u'timid', u'china', u'opposit'] [u'govt', u'accus', u'sneaki', u'darwin', u'detent'] [u'govt', u'boost', u'reserv'] [u'govt', u'review', u'plantat', u'tax'] [u'govt', u'fund', u'palm', u'communiti'] [u'govt', u'pipelin', u'rout'] [u'govt', u'vow', u'implement', u'chang'] [u'grape', u'glut', u'matter', u'time', u'grower'] [u'grizzli', u'bear', u'kill', u'coupl', u'alaska'] [u'group', u'applaud', u'rise', u'women', u'polit'] [u'group', u'develop', u'eurobodalla', u'protect', u'plan'] [u'hagan', u'sympathi', u'sack', u'slater'] [u'halliburton', u'accus', u'contract', u'abus', u'iraq'] [u'harbour', u'bridg', u'fight', u'poverti'] [u'hatcheri', u'use', u'track', u'salmon'] [u'health', u'servic', u'anaesthetist'] [u'health', u'servic', u'beat', u'accredit'] [u'hewitt', u'reject', u'intimid', u'claim'] [u'high', u'price', u'hit', u'share'] [u'home', u'sale', u'slow', u'despit', u'jump'] [u'horsham', u'expect', u'dementia', u'bed'] [u'hospit', u'report', u'highlight', u'need', u'improv'] [] [u'hous', u'insist', u'ashbourn', u'inquiri'] [u'hubbl', u'spi', u'comet', u'belch', u'dust'] [u'humpback', u'whale', u'free', u'cray', u'line'] [u'humpback', u'whale', u'trap', u'cray', u'line'] [u'hunter', u'union', u'rep', u'meet', u'shake'] [u'call', u'balanc', u'miner'] [u'collaps', u'blame', u'indonesian', u'mine', u'expans'] [u'dont', u'intimid', u'umpir', u'say', u'hewitt'] [u'immigr', u'say', u'solon', u'travel'] [u'indigen', u'tourism', u'guid', u'kimberley'] [u'insur', u'payout', u'continu', u'worri', u'council'] [u'iraqi', u'kill', u'bomb', u'attack'] [u'consid', u'asia', u'pacif', u'tournament'] [u'japanes', u'charg', u'attempt', u'smuggl'] [u'judg', u'increas', u'sentenc', u'jail', u'offend'] [u'kangaroo', u'sydney', u'draft', u'plan'] [u'korp', u'lover', u'desper', u'man', u'love', u'protect'] [u'lassa', u'fever', u'vaccin', u'show', u'promis'] [u'latham', u'comment', u'sadden', u'labor'] [u'latham', u'lash', u'beazley', u'book'] [u'latham', u'lash', u'beazley', u'labor', u'premier'] [u'launceston', u'urg', u'evandal', u'retail', u'plan'] [u'liber', u'leadership', u'choic', u'obvious', u'abbott', u'say'] [u'lover', u'sell', u'intim', u'picasso', u'work'] [u'accus', u'syring', u'hold'] [u'jail', u'friend', u'die', u'crash'] [u'jail', u'campaign', u'terror', u'famili'] [u'suffer', u'sever', u'burn', u'roadsid', u'burn'] [u'gold', u'maleni', u'supermarket', u'site'] [u'marin', u'begin', u'offens', u'western', u'iraq'] [u'maroon', u'deni', u'hand', u'ref', u'sack'] [u'mason', u'sign', u'bulldog', u'deal'] [u'mcgauran', u'keen', u'cabinet', u'post'] [u'mcginti', u'hint', u'review', u'crown', u'prosecut'] [u'meet', u'focus', u'road', u'resurfac', u'issu'] [u'michelin', u'admit', u'grand', u'prix', u'miscalcul'] [u'minyip', u'age', u'care', u'oper'] [u'mitsubishi', u'ceas', u'buy', u'woodchip'] [u'moroney', u'deni', u'polic', u'crisi'] [u'call', u'salin', u'appoint'] [u'nambucca', u'council', u'seek', u'bigger', u'slice'] [u'nasa', u'fall', u'short', u'safeti', u'issu'] [u'nation', u'ralli', u'support', u'ethanol', u'industri'] [u'nauru', u'defend', u'whale', u'vote'] [u'room', u'error', u'lethal', u'warn', u'resurg', u'lion'] [u'north', u'coast', u'road', u'nrma', u'spotlight'] [u'pair', u'kill', u'plane', u'crash'] [u'nurs', u'fear', u'repris', u'report', u'problem'] [u'ogilivi', u'share', u'honour', u'qualifi'] [u'opposit', u'fail', u'chang', u'budget'] [u'owen', u'hous', u'hunt', u'intensifi', u'chelsea', u'specul'] [u'oxiana', u'seek', u'golden', u'grove', u'worker'] [u'pakistan', u'court', u'order', u'rearrest', u'gang', u'rape', u'accus'] [u'park', u'group', u'indigen', u'tourism', u'mentor'] [u'parmalat', u'execut', u'sentenc', u'jail'] [u'patel', u'give', u'free', u'rein', u'whistleblow', u'tell', u'inquiri'] [u'patient', u'benefit', u'patel', u'film', u'opposit'] [u'rise', u'hing', u'reform', u'health', u'profession', u'tell'] [u'pedestrian', u'kill', u'polic', u'accid'] [u'pharmacist', u'weigh', u'methadon', u'compens', u'deal'] [u'pilbara', u'picket', u'return', u'work'] [u'polic', u'suspect', u'man', u'death', u'link', u'school', u'break'] [u'port', u'lincoln', u'blood', u'donor', u'turn', u'away'] [u'primari', u'school', u'neglect', u'confer', u'tell'] [u'psychiatrist', u'criticis', u'cruis'] [u'puerta', u'lead', u'argentina', u'davi', u'challeng', u'cana'] [u'establish', u'foreign', u'doctor', u'support', u'group'] [u'racv', u'back', u'call', u'faster', u'calder', u'duplic'] [u'rain', u'prove', u'farmer'] [u'region', u'bail', u'law', u'review'] [u'reserv', u'receiv', u'anti', u'terror', u'train'] [u'retir', u'repriev', u'collina'] [u'rise', u'fuel', u'price', u'link', u'higher', u'freight', u'rat'] [u'robert', u'complet', u'record', u'aussi', u'tour', u'line'] [u'row', u'club', u'wont', u'chang', u'regatta', u'date'] [u'rural', u'doctor', u'chase', u'feder', u'fund', u'save', u'birth'] [u'russian', u'domin', u'wimbledon', u'quarter', u'final'] [u'saddam', u'inspir', u'updat', u'classic', u'opera'] [u'safeti', u'survey', u'roebourn', u'shire'] [u'sandon', u'meet', u'tip', u'includ', u'park', u'request'] [u'senat', u'region', u'partnership', u'inquiri', u'head'] [u'simpkin', u'origin'] [u'kill', u'latest', u'attack', u'southern', u'thailand'] [u'small', u'busi', u'press', u'drought', u'help'] [u'snowi', u'allianc', u'reject', u'sydney', u'water', u'plan'] [u'solon', u'sign', u'thumb'] [u'south', u'coast', u'river', u'rehabilit', u'agenda'] [u'southern', u'includ', u'tourism', u'land', u'bank'] [u'south', u'west', u'grazier', u'report', u'desert', u'snow'] [u'springbok', u'recal', u'pretorius', u'wallabi', u'clash'] [u'stanhop', u'blame', u'feder', u'counterpart', u'delay'] [u'stress', u'alcan', u'worker', u'turn'] [u'studi', u'link', u'driver', u'safeti', u'vehicl', u'size'] [u'studi', u'tour', u'open', u'stanhop', u'eye', u'trade'] [u'suicid', u'risk', u'rise', u'drought', u'tighten', u'grip'] [u'supermarket', u'develop', u'unfaz', u'mine', u'prospect'] [u'swan', u'happi', u'draft', u'propos'] [u'teacher', u'unhappi', u'plan', u'chang', u'school'] [u'teacher', u'vote', u'strike', u'action'] [u'teen', u'plead', u'guilti', u'sheep', u'stab'] [u'charg', u'gang', u'rape', u'bail'] [u'tourism', u'number', u'rise'] [u'townsvill', u'troop', u'tip', u'afghan', u'role'] [u'trial', u'date', u'jack', u'thoma'] [u'tweed', u'council', u'help', u'clean', u'lanka', u'drink'] [u'union', u'accus', u'scare', u'campaign'] [u'union', u'say', u'protest', u'direct', u'govt', u'wesfarm'] [u'student', u'compet', u'donat', u'blood'] [u'peacekeep', u'battl', u'militia'] [u'seek', u'uzbek', u'refuge', u'australia'] [u'warn', u'loom', u'food', u'shortag', u'zambia'] [u'uranium', u'mine', u'inquiri', u'lead', u'nuclear', u'power'] [u'build', u'bigger', u'prison', u'iraq', u'insurg'] [u'court', u'declin', u'journalist', u'appeal', u'case'] [u'issu', u'demand'] [u'vaughan', u'hope', u'play', u'chanc'] [u'victoria', u'score', u'infrastructur', u'report'] [u'victoria', u'infrastructur', u'bare', u'adequ', u'report'] [u'virgin', u'blue', u'govt', u'hold', u'perth', u'kalgoorli', u'rout', u'talk'] [u'mart', u'billionair', u'die', u'plane', u'crash'] [u'nation', u'urg', u'vail', u'challeng'] [u'parti', u'agre', u'plan', u'break', u'western', u'power'] [u'water', u'high', u'council', u'meet', u'agenda'] [u'wine', u'grape', u'grower', u'pleas', u'senat', u'hear'] [u'woman', u'die', u'motoris', u'buggi', u'crash'] [u'wool', u'industri', u'urg', u'unit', u'peta'] [u'workplac', u'minist', u'staff', u'protest'] [u'world', u'vision', u'pay', u'tribut', u'accid', u'victim'] [u'youth', u'want', u'port', u'piri', u'properti', u'damag'] [u'zimbabw', u'govern', u'cricket', u'australia'] [u'mitsubishi', u'relat', u'loss', u'fear'] [u'abbott', u'reject', u'call', u'wider', u'sniff', u'fuel'] [u'academ', u'reject', u'cash', u'comment', u'claim'] [u'acoss', u'criticis', u'welfar', u'work', u'provis'] [u'afghan', u'chopper', u'shoot'] [u'albani', u'expect', u'feel', u'impact', u'chang'] [u'sue', u'intel', u'monopoli', u'abus'] [u'anasta', u'prepar', u'leav', u'bulldog'] [u'land', u'receiv', u'health', u'hous', u'grant'] [u'appl', u'updat', u'itun', u'podcast'] [u'aquarium', u'fish', u'fair', u'shake'] [u'arroyo', u'husband', u'flee', u'presid', u'admit', u'elect'] [u'atsic', u'council', u'replac', u'detail'] [u'audit', u'deem', u'patel', u'outcom', u'accept'] [u'aust', u'pay', u'price', u'skill', u'labour', u'shortag'] [u'author', u'track', u'free', u'whale', u'rout'] [u'award', u'honour', u'hospit', u'emerg', u'dept'] [u'babi', u'bronco', u'need', u'seiz', u'say', u'petero'] [u'ballarat', u'council', u'plan', u'includ', u'rate', u'rise'] [u'beatti', u'dismiss', u'latham', u'attack'] [u'beazley', u'take', u'protest', u'central'] [u'beazley', u'attack', u'labor', u'moral', u'time'] [u'benefit', u'china', u'free', u'trade', u'deal', u'estim'] [u'frustrat', u'health', u'servic', u'delay'] [u'bichel', u'sign', u'hampshir', u'stint'] [u'black', u'cap', u'tell', u'tour', u'zimbabw', u'face', u'fin'] [u'bogut', u'apologis', u'boast'] [u'bogut', u'get', u'pick', u'draft'] [u'bogut', u'number', u'draft'] [u'bouncer', u'slash', u'nightclub', u'attack'] [u'brain', u'damag', u'epilept', u'girl', u'famili', u'lose'] [u'britain', u'commemor', u'trafalgar', u'anniversari'] [u'build', u'approv', u'region', u'victoria'] [u'bush', u'appeal', u'american', u'stay', u'commit'] [u'bush', u'reject', u'iraq', u'withdraw', u'timet'] [u'bush', u'warn', u'tough', u'moment', u'iraq'] [u'calm', u'hop', u'head', u'cane', u'toad', u'spread'] [u'canada', u'pass', u'marriag', u'law'] [u'canegrow', u'industri', u'exit', u'grant', u'chang'] [u'cassini', u'spi', u'possibl', u'lake', u'titan'] [u'cattl', u'sale', u'rise', u'ahead', u'tag', u'scheme'] [u'ceremoni', u'hold', u'darwin', u'mark'] [u'china', u'free', u'trade', u'inquiri', u'hear', u'submiss'] [u'church', u'uneasi', u'chang'] [u'cinema', u'offer', u'money', u'guarante', u'crow'] [u'cleric', u'accus', u'asio', u'polit', u'raid'] [u'coal', u'freight', u'track', u'derail'] [u'colleg', u'beat', u'educ', u'trial'] [u'commission', u'conced', u'macquari', u'field', u'riot'] [u'communiti', u'deliv', u'posit', u'respons', u'mail'] [u'communiti', u'urg', u'affect', u'famili'] [u'compani', u'get', u'grant', u'advanc', u'auto', u'immun', u'diseas'] [u'constant', u'rain', u'spark', u'coast', u'hous', u'damag'] [u'contractor', u'tool', u'protest', u'ralli'] [u'contract', u'stop', u'elect', u'surgeri'] [u'costello', u'call', u'util', u'regul'] [u'costello', u'offer', u'support', u'vegi', u'grower'] [u'costello', u'reject', u'acoss', u'welfar', u'work', u'claim'] [u'council', u'back', u'appeal', u'injuri', u'payout'] [u'council', u'consid', u'perform', u'audit'] [u'council', u'expect', u'adopt', u'budget', u'unchang'] [u'council', u'posit', u'talk', u'palm'] [u'council', u'meet', u'back', u'civic', u'centr', u'plan'] [u'court', u'recognis', u'biggest', u'nativ', u'titl', u'claim'] [u'crisa', u'attack', u'account', u'polici'] [u'crocker', u'join', u'melbourn', u'storm'] [u'deep', u'yellow', u'acquir', u'tanami', u'uranium', u'right'] [u'democrat', u'urg', u'ashbourn', u'public', u'inquiri'] [u'demon', u'urg', u'explain', u'drug', u'stanc'] [u'develop', u'back', u'council', u'oval', u'sale', u'decis'] [u'diamond', u'search', u'go', u'tech'] [u'doubt', u'remain', u'saleyard', u'meatwork', u'plan'] [u'drug', u'trucki', u'fin', u'lose', u'point'] [u'communiti', u'support', u'blanket', u'alcohol'] [u'eagl', u'wari', u'embattl', u'blue'] [u'employ', u'group', u'play', u'concern'] [u'line'] [u'energi', u'bank', u'stock', u'erod', u'earli', u'gain'] [u'english', u'warn', u'swear', u'crackdown'] [u'entsch', u'reject', u'reef', u'author', u'closur', u'claim'] [u'evan', u'tate', u'investor', u'know', u'fate'] [u'guantanamo', u'detaine', u'alleg', u'koran', u'throw'] [u'expert', u'examin', u'bruce', u'highway', u'asphalt'] [u'farina', u'depart', u'socceroo', u'coach'] [u'feder', u'hewitt', u'collis', u'cours'] [u'fiance', u'join', u'deport', u'south', u'west'] [u'fingleton', u'talk', u'agreement'] [u'fisheri', u'scientist', u'reject', u'lobster', u'claim'] [u'flash', u'flood', u'hit', u'northern'] [u'caus', u'chao', u'airport'] [u'high', u'court', u'chief', u'justic', u'die'] [u'fraser', u'defend', u'senat', u'major', u'action'] [u'fund', u'guarante', u'detox', u'unit', u'futur'] [u'furor', u'latham', u'biographi'] [u'game', u'farina'] [u'geraldton', u'stag', u'protest', u'chang'] [u'glazer', u'score', u'complet', u'ownership'] [u'govt', u'sign', u'main', u'road', u'revamp'] [u'govt', u'urg', u'rethink', u'wast', u'plan'] [u'govt', u'urg', u'spend', u'grain', u'branch', u'line'] [u'hall', u'creek', u'shire', u'consid', u'communiti', u'bank'] [u'health', u'review', u'hear', u'medicar', u'access', u'woe'] [u'heritag', u'trail', u'honour', u'strike', u'shearer'] [u'higher', u'fuel', u'price', u'forecast', u'region', u'driver'] [u'hindmarsh', u'clear', u'origin', u'cross', u'guilti'] [u'hindmarsh', u'clear', u'play', u'origin', u'decid'] [u'hindmarsh', u'hope', u'beat', u'charg'] [u'hope', u'pilbara', u'stop', u'mishap'] [u'hospit', u'medic', u'director', u'face', u'morri', u'inquiri'] [u'hospit', u'order', u'hand', u'abort', u'file'] [u'hunter', u'construct', u'sector', u'tip', u'remain', u'strong'] [u'illeg', u'fishermen', u'hous', u'darwin', u'hotel'] [u'indigen', u'dancer', u'welcom', u'parliamentarian'] [u'inquiri', u'head', u'slam', u'baxter'] [u'chang', u'assault', u'fair', u'say', u'rann'] [u'japanes', u'growth', u'worri', u'timber', u'industri'] [u'kalgoorli', u'meet', u'focus', u'rural', u'issu'] [u'kerin', u'say', u'blame', u'shift', u'scar', u'power'] [u'knight', u'receiv', u'financi', u'support'] [u'knight', u'reveal', u'player', u'sign'] [u'korp', u'refus', u'contact'] [u'laharragu', u'line', u'tuqiri'] [u'latham', u'french', u'clash'] [u'latham', u'hit', u'beazley', u'labor', u'premier'] [u'latham', u'know', u'implic', u'book', u'biograph'] [u'liber', u'target', u'bendigo', u'state', u'elect', u'lead'] [u'littl', u'celebr', u'human', u'right', u'stanhop'] [u'lockyer', u'back', u'selector', u'slater', u'dump'] [u'loddon', u'bring', u'biggest', u'budget'] [u'lopez', u'face', u'toughest', u'test', u'hewitt'] [u'macfarlan', u'powerless', u'revers', u'mine'] [u'macquari', u'field', u'riot', u'report', u'critic'] [u'send', u'jail', u'despit', u'guilti', u'verdict'] [u'mansfield', u'rider', u'saddl', u'tour', u'franc'] [u'martin', u'unsur', u'uranium', u'power'] [u'meet', u'canva', u'airport', u'develop'] [u'melbourn', u'sydney', u'track', u'revamp', u'help', u'wagga'] [u'rehabilit', u'public', u'spotlight'] [u'miner', u'fin', u'blast'] [u'minist', u'reject', u'council', u'rate', u'rise', u'plan'] [u'mitsubishi', u'ceas', u'buy', u'woodchip'] [u'rain', u'forecast', u'northern'] [u'mural', u'giant', u'buddha', u'ruin', u'afghanistan'] [u'murdoch', u'agre', u'curtin', u'merger', u'studi'] [u'nasa', u'readi', u'juli', u'shuttl', u'blast'] [u'nauru', u'detent', u'famili', u'call', u'complet', u'releas'] [u'aborigin', u'liaison', u'offic', u'dubbo'] [u'ngaanyatjarra', u'land', u'right', u'battl'] [u'ningaloo', u'tourism', u'impress', u'minist'] [u'hill', u'hear', u'sound', u'shania'] [u'tell', u'tour', u'zimbabw', u'face', u'fin'] [u'triumph', u'australia'] [u'olymp', u'champion', u'lewi', u'hang', u'run', u'shoe'] [u'opposit', u'challeng', u'ashbourn', u'inquiri', u'plan'] [u'origin', u'goug', u'centr', u'stage', u'judiciari'] [u'overturn', u'protest', u'convict', u'worri', u'forest'] [u'paediatr', u'orthopaed', u'surgeon', u'train'] [u'parent', u'warn', u'lookout', u'sign'] [u'peachey', u'head', u'england'] [u'seek', u'north', u'support', u'pipelin', u'plan'] [u'polic', u'chief', u'hear', u'plea', u'loxton', u'station'] [u'polic', u'hunt', u'corner', u'store', u'bandit'] [u'polic', u'hunt', u'gladston', u'servic', u'station', u'thief'] [u'polic', u'issu', u'explos', u'warn'] [u'polic', u'probe', u'suspici', u'bexley', u'death'] [u'polic', u'search', u'yamba', u'home', u'invad'] [u'polic', u'stage', u'enact', u'death', u'investig'] [u'polic', u'wrap', u'case', u'bali', u'heroin'] [u'politician', u'disagre', u'highway'] [u'postal', u'worker', u'ban', u'promot', u'ralli'] [u'protest', u'lodg', u'power', u'plan'] [u'public', u'abus', u'respons', u'servic'] [u'public', u'hospit', u'elect', u'surgeri', u'wait', u'time'] [u'public', u'support', u'memori'] [u'qanta', u'reinstat', u'beij', u'flight'] [u'qualifi', u'support', u'govt', u'power', u'plan'] [u'rain', u'lift', u'farmer', u'crop', u'hop'] [u'rain', u'prompt', u'revis', u'abar', u'crop', u'outlook'] [u'rape', u'victim', u'justic', u'musharraf'] [u'famili', u'welcom', u'baxter', u'manifest', u'inadequ'] [u'raus', u'lawyer', u'push', u'royal', u'commiss'] [u'region', u'leader', u'releas', u'telecom', u'polici', u'paper'] [u'resid', u'group', u'maintain', u'tugun', u'bypass', u'rout'] [u'rockhampton', u'water', u'meter', u'read', u'day'] [u'club', u'confid', u'member'] [u'indigen', u'servic', u'fund', u'boost'] [u'sale', u'basketbal', u'head', u'world', u'champ'] [u'sandon', u'meet', u'hear', u'open', u'space', u'support'] [u'record', u'fruit', u'free', u'season'] [u'scholarship', u'winner', u'investig', u'dementia'] [u'scientist', u'nuclear', u'weapon'] [u'search', u'survivor', u'chopper', u'crash'] [u'mop', u'flood', u'northern', u'gold'] [u'shame', u'ifna', u'shame'] [u'shellharbour', u'council', u'plan', u'rate', u'rise'] [u'ship', u'line', u'trafalgar', u'anniversari'] [u'signific', u'flaw', u'bring', u'latham'] [u'sixer', u'sign', u'skipper', u'maher'] [u'smith', u'head', u'forward', u'clash', u'warrior'] [u'stock', u'ralli', u'follow', u'price', u'drop'] [u'storm', u'stop', u'england', u'chase', u'symond', u'inspir'] [u'studi', u'back', u'infrastructur', u'concern'] [u'sugar', u'industri', u'urg', u'lead', u'ethanol', u'push'] [u'support', u'grow', u'communiti', u'rescu', u'chopper'] [u'survey', u'highlight', u'high', u'employ', u'optim'] [u'tampo', u'corbi', u'legal', u'team', u'say', u'mother'] [u'tare', u'council', u'await', u'rate', u'rise', u'decis'] [u'tasmania', u'prolong', u'hous', u'sector', u'slump'] [u'salmon', u'industri', u'start', u'select', u'breed'] [u'teacher', u'stop', u'work', u'plan', u'shake'] [u'telstra', u'price', u'control', u'extend'] [u'temporari', u'contract', u'staff', u'demand', u'survey', u'reveal'] [u'truck', u'safeti', u'problem', u'report'] [u'time', u'australia', u'say', u'england', u'quick'] [u'time', u'right', u'nylex', u'clock', u'oper'] [u'seed', u'wimbledon', u'women', u'semi'] [u'transfield', u'boost', u'femal', u'worker'] [u'ugandan', u'presid', u'get', u'term'] [u'vaughan', u'readi', u'ash', u'storm'] [u'victorian', u'rooki', u'saddl', u'tour'] [u'victori', u'make', u'olymp', u'park', u'home'] [u'volunt', u'need', u'establish', u'safe', u'hous'] [u'wada', u'deadlin', u'loom', u'australian', u'sport'] [u'wagga', u'mourn', u'loss', u'local', u'plane', u'crash'] [u'water', u'bottl', u'compani', u'want', u'clarenc', u'water'] [u'white', u'lead', u'springbok', u'world'] [u'whoop', u'cough', u'case', u'rise'] [u'winemak', u'share', u'bounc', u'loss'] [u'winter', u'shower', u'uncommon'] [u'woman', u'charg', u'gambier', u'disturb'] [u'woman', u'shock', u'husband', u'kill', u'polic'] [u'woodsid', u'prais', u'timor', u'revenu', u'handl'] [u'woodward', u'make', u'chang', u'wellington', u'test'] [u'yudhoyono', u'offer', u'littl', u'prospect', u'corbi', u'pardon'] [u'zimbabw', u'releas', u'prison'] [u'gabor', u'sue', u'daughter'] [u'iraq', u'bush', u'say', u'troop', u'stay'] [u'children', u'dedic', u'commission'] [u'refus', u'sign', u'wada', u'anti', u'dope', u'code'] [u'refus', u'sign', u'wada', u'anti', u'dope', u'code'] [u'alcan', u'contractor', u'return', u'work', u'unclear'] [u'need', u'switch', u'intern', u'focus', u'beazley'] [u'ammonia', u'leak', u'spark', u'albani', u'emerg'] [u'ammonia', u'spill', u'forc', u'port', u'evacu'] [u'amnesti', u'find', u'aust', u'breach', u'human', u'right'] [u'anderson', u'welcom', u'bush', u'speech', u'iraq'] [u'anim', u'figur', u'high', u'crash', u'stat'] [u'arm', u'robber', u'attempt', u'rapist', u'escap', u'prison'] [u'armstrong', u'readi', u'long', u'summer'] [u'asbesto', u'insul', u'test', u'come', u'negat'] [u'asian', u'women', u'slave', u'court', u'tell'] [u'atsic', u'abolit', u'reflect', u'racist', u'countri'] [u'australian', u'children', u'parent', u'visa', u'extens'] [u'seek', u'compens', u'strand', u'shipment'] [u'ballack', u'saviour', u'germani', u'clinch'] [u'bank', u'resourc', u'sector', u'boost', u'market', u'gain'] [u'bare', u'bum', u'sheep', u'bind', u'commerci', u'flock'] [u'beazley', u'call', u'focus'] [u'bendigo', u'worker', u'head', u'melbourn', u'protest'] [u'arni', u'path', u'stuntmen', u'snub'] [u'blaze', u'tear', u'harvey', u'flat'] [u'bomb', u'proof', u'redesign', u'freedom', u'tower'] [u'bright', u'poki', u'light', u'fade', u'away'] [u'brogden', u'urg', u'quick', u'action', u'intersect'] [u'buderus', u'decis', u'today'] [u'bundaberg', u'hospit', u'fight', u'racial', u'abus', u'doctor'] [u'bush', u'iraq', u'speech', u'draw', u'career', u'audienc'] [u'cabinet', u'member', u'quit', u'amid', u'philippin', u'vote', u'scandal'] [u'drought', u'small', u'busi'] [u'canadian', u'expert', u'aim', u'youth', u'suicid', u'rate'] [u'cash', u'emerg', u'cater', u'guyra'] [u'catchment', u'welcom', u'rain', u'need'] [u'catfish', u'size', u'bear', u'catch', u'mekong', u'river'] [u'cayless', u'leav', u'rooster', u'helen'] [u'central', u'get', u'winter'] [u'centrelink', u'admit', u'doubl', u'dip', u'bank', u'account'] [u'chang', u'afoot', u'safeti', u'contest'] [u'china', u'toughen', u'coal', u'mine', u'industri'] [u'chines', u'journalist', u'lobbi', u'releas', u'jail'] [u'comet', u'crash', u'seek', u'build', u'block', u'life'] [u'commonwealth', u'overrul', u'uranium', u'expert'] [u'communiti', u'truck', u'driver', u'train'] [u'commut', u'train', u'crash', u'jakarta'] [u'concession', u'lot', u'plan', u'caus', u'stir'] [u'conflict', u'debat', u'erupt', u'eurobodalla'] [u'coron', u'hold', u'princ', u'highway', u'inquest'] [u'cosgrov', u'reflect', u'term', u'loom'] [u'council', u'await', u'trade', u'hour', u'survey', u'result'] [u'councillor', u'wind', u'farm', u'sit'] [u'councillor', u'worri', u'rate', u'pay', u'resid'] [u'council', u'seek', u'airport', u'ownership', u'review'] [u'countri', u'energi', u'honour', u'long', u'serv', u'worker'] [u'court', u'action', u'begin', u'canberra', u'bushfir'] [u'creditor', u'waverley', u'woollen', u'mill', u'rescu'] [u'crew', u'search', u'water', u'shore', u'miss', u'diver'] [u'crocker', u'question', u'stuart', u'role', u'morley', u'letter'] [u'csiro', u'import', u'predat', u'weed', u'battl'] [u'darwin', u'shiver', u'year', u'coldest', u'morn'] [u'dfat', u'criticis', u'go', u'wobbl', u'china'] [u'diner', u'bowl', u'toilet', u'theme', u'restaur'] [u'diver', u'bodi', u'river'] [u'doctor', u'disput', u'delay', u'oper'] [u'dog', u'threaten', u'colleg', u'stud', u'sheep'] [u'down', u'chopper', u'grind'] [u'driver', u'charg', u'drink', u'drive', u'pick'] [u'drug', u'compani', u'reject', u'ibuprofen', u'child', u'safeti', u'fear'] [u'drug', u'cash', u'steal', u'properti', u'seiz', u'polic'] [u'eastern', u'australia', u'drench', u'flood', u'rain'] [u'elder', u'woman', u'rap', u'home'] [u'electrocut', u'accid', u'prompt', u'electr', u'sector'] [u'expert', u'say', u'main', u'road', u'opinion', u'wont', u'cloud', u'judgment'] [u'faction', u'need', u'address', u'labor'] [u'famili', u'pay', u'time'] [u'farina', u'claim', u'lack', u'support'] [u'farina', u'resign', u'world', u'harper'] [u'farmer', u'pleas', u'costello', u'meet'] [u'farm', u'group', u'reject', u'truss', u'crop'] [u'report', u'major', u'hike', u'plantat', u'sale'] [u'ferguson', u'say', u'ronaldo', u'stay'] [u'delay', u'punish', u'team', u'fiasco'] [u'fifa', u'confirm', u'australia', u'asian'] [u'figur', u'prompt', u'bowel', u'cancer', u'screen', u'call'] [u'ant', u'clone', u'gender', u'battl'] [u'firm', u'develop', u'fuel', u'cell', u'batteri', u'power', u'robot'] [u'fischer', u'head', u'australia', u'thailand', u'institut'] [u'flood', u'forc', u'gold', u'coast', u'airport', u'closur'] [u'floodwat', u'north', u'west', u'town'] [u'fund', u'allow', u'barra', u'stock', u'boost'] [u'futur', u'climat', u'hotter', u'think', u'studi'] [u'vegi', u'grower', u'tell'] [u'gippsland', u'worker', u'join', u'protest'] [u'gladston', u'worker', u'hear', u'beazley', u'opposit'] [u'goldfield', u'educ', u'appoint', u'announc'] [u'goulburn', u'murray', u'worker', u'join', u'protest'] [u'govt', u'defend', u'centrelink', u'rule', u'singl'] [u'govt', u'employ', u'slam', u'protest'] [u'govt', u'review', u'possibl', u'afghanistan', u'troop'] [u'govt', u'shi', u'away', u'elect', u'promis', u'opposit'] [u'govt', u'tax', u'blame', u'boost', u'north', u'coast'] [u'govt', u'urg', u'focus', u'aquacultur'] [u'green', u'group', u'pleas', u'log', u'protest'] [u'green', u'demand', u'branch', u'line', u'privatis'] [u'group', u'back', u'govt', u'support', u'tougher', u'alcoa'] [u'grower', u'wood', u'duck', u'shoot'] [u'hang', u'glider', u'succumb', u'crash', u'injuri'] [u'harrison', u'consid', u'gold', u'coast'] [u'hayman', u'black', u'line'] [u'health', u'inquiri', u'visit', u'rockhampton'] [u'hear', u'find', u'councillor', u'breach', u'code', u'conduct'] [u'hewitt', u'feder', u'epic', u'showdown'] [u'home', u'hill', u'pioneer', u'communiti', u'bank', u'north'] [u'hors', u'centr', u'plan', u'boost', u'properti', u'market'] [u'hous', u'blaze', u'spark', u'safeti', u'audit'] [u'icac', u'find', u'staff', u'member', u'guilti', u'corrupt'] [u'prosecutor', u'darfur', u'crime', u'evid'] [u'indigen', u'languag', u'centr', u'make'] [u'indonesian', u'ambassador', u'elect', u'critic', u'aust'] [u'indonesia', u'reject', u'propos', u'east', u'timor'] [u'inquiri', u'hear', u'evid', u'patel', u'patient'] [u'investig', u'launch', u'shop', u'blaze'] [u'ralli', u'gain', u'pace'] [u'ralli', u'underway', u'melbourn'] [u'isra', u'forc', u'strike', u'gaza'] [u'isra', u'armi', u'seal', u'gaza', u'strip'] [u'slide'] [u'jondaryan', u'council', u'alloc', u'water', u'reservoir', u'fund'] [u'kennett', u'apologis', u'latham', u'polar', u'remark'] [u'labor', u'wont', u'check', u'knicker', u'cloth', u'line'] [u'lake', u'burley', u'griffin', u'irrig', u'water', u'restrict'] [u'legal', u'action', u'baxter', u'detent', u'like', u'say'] [u'lifetim', u'father', u'crippl', u'toddler'] [u'lismor', u'flood', u'alert', u'downgrad', u'rain', u'eas'] [u'lismor', u'resid', u'evacu', u'ahead', u'flood', u'peak'] [u'liverpool', u'play', u'world', u'club', u'champ', u'say'] [u'live', u'sheep', u'trade', u'closer', u'resumpt'] [u'local', u'photograph', u'snap', u'churchil', u'trust'] [u'lower', u'murray', u'water', u'custom', u'record', u'water'] [u'bear', u'offici', u'confirm'] [u'malthous', u'slam', u'stanc', u'anti', u'dope', u'code'] [u'employ', u'prepar', u'super', u'chang'] [u'maroochi', u'council', u'deliv', u'infrastructur', u'focus'] [u'maywald', u'mcewen', u'reject', u'ashbourn', u'open', u'inquiri', u'call'] [u'meet', u'hear', u'hospit', u'plan'] [u'say', u'plan', u'reclassifi', u'highway', u'absurd'] [u'face', u'bundaberg', u'hospit', u'inquiri'] [u'naracoort', u'lucindal', u'council', u'plan', u'rate', u'rise'] [u'nation', u'endors', u'racv', u'countri', u'road', u'plan'] [u'nativ', u'titl', u'tribun', u'support', u'ngaanyatjarra'] [u'urg', u'pierc', u'creek', u'hous'] [u'owner', u'wilder', u'park'] [u'polici', u'address', u'environment', u'vandal'] [u'northern', u'gold', u'coast', u'brace', u'flood'] [u'address', u'asic', u'concern'] [u'take', u'australia', u'appl'] [u'oppn', u'vow', u'increas', u'pressur', u'govt'] [u'patel', u'audit', u'look', u'file', u'say', u'support', u'group'] [u'patel', u'patient', u'tell', u'hernia', u'surgeri', u'infect'] [u'peopl', u'evacu', u'floodwat', u'rise'] [u'phillip', u'pledg', u'goal', u'haul', u'villa'] [u'plane', u'trigger', u'secur', u'alert', u'washington'] [u'plan', u'afoot', u'rail', u'station', u'develop'] [u'plan', u'boost', u'juvenil', u'justic', u'staff', u'skill'] [u'player', u'plan', u'lengthen', u'grand', u'slam'] [u'polic', u'chief', u'defend', u'offic', u'riot', u'fallout'] [u'polic', u'investig', u'flour', u'blaze'] [u'post', u'mortem', u'find', u'cliff', u'fall', u'caus', u'tourist', u'death'] [u'power', u'provid', u'reflect', u'mirror', u'plan'] [u'princ', u'william', u'touch'] [u'probe', u'give', u'clear', u'alic', u'airport', u'secur'] [u'protest', u'tell', u'concern', u'liber'] [u'psychiatrist', u'receiv', u'month', u'practis'] [u'nation', u'search', u'dedic', u'presid'] [u'worker', u'voic', u'anger', u'chang'] [u'rain', u'delay', u'play', u'wimbledon'] [u'rain', u'offer', u'hope', u'grain', u'grower'] [u'rain', u'reliev', u'drought', u'burden', u'outback'] [u'rathbon', u'sign', u'brumbi'] [u'report', u'highlight', u'welcom', u'dairi', u'boost'] [u'rice', u'fri', u'iranian', u'boyfriend', u'lawmak'] [u'riverland', u'join', u'protest'] [u'road', u'death', u'prompt', u'speed', u'limit', u'rethink'] [u'rumsfeld', u'prais', u'wood', u'episod'] [u'russian', u'progress', u'cargo', u'ship', u'correct', u'orbit'] [u'sailor', u'expect', u'french', u'test'] [u'opposit', u'seiz', u'hospit', u'report'] [u'sculptor', u'work', u'nation', u'prize'] [u'search', u'suspend', u'coupl', u'miss', u'floodwat'] [u'busi', u'region', u'flood', u'alert'] [u'sewerag', u'scheme', u'decis', u'shock', u'communiti', u'group'] [u'south', u'africa', u'zuma', u'appear', u'corrupt', u'charg'] [u'spain', u'approv', u'marriag'] [u'springborg', u'attack', u'silli', u'townsvill'] [u'stanhop', u'critic', u'alp', u'silenc', u'atsic', u'demis'] [u'street', u'closur', u'divid', u'council'] [u'studi', u'find', u'percent', u'chang', u'cours'] [u'studi', u'link', u'smoke', u'infect'] [u'studi', u'prompt', u'ibuprofen', u'warn', u'kid'] [u'surf', u'local', u'swim', u'pool'] [u'tare', u'lose', u'rate', u'rise'] [u'astronom', u'join', u'nasa', u'comet', u'mission'] [u'taxi', u'face', u'compulsori'] [u'bird', u'prepar', u'tough', u'clash', u'phoenix'] [u'telstra', u'competitor', u'servic', u'inferior', u'accc'] [u'thousand', u'march', u'brisban', u'reform'] [u'thousand', u'march', u'perth', u'protest', u'reform', u'plan'] [u'thousand', u'territorian', u'ralli', u'agenda'] [u'thousand', u'protest', u'chang'] [u'thwait', u'water', u'author', u'board'] [u'time', u'run', u'fmit', u'vote'] [u'torrenti', u'rain', u'claim', u'live', u'india'] [u'townsvill', u'tap', u'olymp', u'wast'] [u'tripl', u'line', u'stand', u'region', u'servic'] [u'trucki', u'group', u'question', u'safeti', u'claim'] [u'miss', u'flash', u'flood'] [u'miss', u'flood', u'hit', u'gold', u'coast'] [u'envoy', u'meet', u'mugab', u'evict'] [u'union', u'join', u'forc', u'opposit', u'plan'] [u'unrest', u'assault', u'report', u'risdon', u'jail'] [u'unrest', u'threaten', u'lowest', u'bidder', u'rail', u'contract'] [u'untru', u'swear', u'claim', u'upset', u'hayden'] [u'chopper', u'wreckag', u'bodi', u'recov'] [u'general', u'defend', u'guantanamo', u'strategi'] [u'speak', u'rebel', u'iraq', u'minist'] [u'stock', u'close', u'lower'] [u'vegi', u'grower', u'hold', u'nation', u'crisi', u'meet'] [u'venezuela', u'outlin', u'discount', u'plan'] [u'venus', u'send', u'warn', u'sharapova'] [u'wake', u'hold', u'atsic', u'offici', u'close'] [u'walker', u'injuri', u'self', u'inflict', u'coron'] [u'wast', u'site', u'assess', u'grant', u'offer'] [u'western', u'flood', u'watch'] [u'white', u'supremacist', u'group', u'aim', u'creat', u'chao'] [u'cathedr', u'face', u'demolit'] [u'wine', u'industri', u'face', u'tough', u'time'] [u'wollondilli', u'council', u'get', u'rate', u'rise'] [u'woman', u'jail', u'vicious', u'secur', u'guard', u'stab'] [u'worker', u'converg', u'adelaid', u'protest'] [u'york', u'arriv', u'australia'] [u'arrest', u'suspect', u'involv', u'bali'] [u'afghanistan', u'appeal', u'aust', u'troop'] [u'allenbi', u'make', u'bright', u'start', u'western', u'open'] [u'queri', u'train', u'time', u'deal', u'doctor'] [u'arsenic', u'concern', u'prompt', u'search', u'water', u'suppli'] [u'aussi', u'promis', u'start', u'match', u'play', u'champ'] [u'aussi', u'readi', u'peak', u'england', u'pont'] [u'backpack', u'rule', u'effect'] [u'bail', u'refus', u'policeman', u'face', u'charg'] [u'ballarat', u'warn', u'wast', u'transport', u'possibl'] [u'baxter', u'psychologist', u'unregist', u'letter', u'reveal'] [u'beazley', u'deni', u'european', u'jaunt'] [u'confirm', u'million', u'neptun', u'invest'] [u'biki', u'bowl', u'club', u'futur', u'hang', u'balanc'] [u'black', u'cap', u'tour', u'zimbabw', u'ahead'] [u'blair', u'hail', u'increas', u'group', u'cool'] [u'bomb', u'blast', u'kill', u'southern', u'russia'] [u'brando', u'memorabilia', u'sell', u'million'] [u'breakthrough', u'cancer', u'fight', u'agent', u'develop'] [u'britain', u'take', u'presid'] [u'brothel', u'propon', u'refer', u'council', u'icac'] [u'bundaberg', u'inquiri', u'paper', u'call', u'health'] [u'busi', u'chamber', u'lament', u'colli', u'loss'] [u'businessman', u'face', u'court', u'wife', u'crash', u'death'] [u'busi', u'wont', u'fight', u'wage', u'case'] [u'go', u'femal', u'councillor'] [u'capricornia', u'address', u'protest'] [u'carer', u'help', u'hand'] [u'carr', u'govern', u'slip', u'poll'] [u'carr', u'stand', u'firm', u'costello', u'threat'] [u'casa', u'urg', u'review', u'medic', u'certif'] [u'chamber', u'music', u'festiv', u'start', u'today'] [u'chamber', u'urg', u'mall', u'revamp'] [u'chief', u'defenc', u'forc', u'retir'] [u'chifley', u'polic', u'number', u'address', u'sculli'] [u'clean', u'begin', u'lismor', u'downpour'] [u'contract', u'woe', u'see', u'hamper', u'push', u'attract'] [u'cosgrov', u'look', u'forward', u'life'] [u'cosgrov', u'wave', u'goodby', u'troop'] [u'costello', u'flag', u'cautious', u'senat', u'major'] [u'council', u'agre', u'narooma', u'plan', u'chang'] [u'council', u'clarif', u'label', u'bizarr'] [u'council', u'face', u'truck', u'park', u'quandari'] [u'council', u'highlight', u'strong', u'local', u'economi'] [u'council', u'offer', u'offic', u'assur'] [u'council', u'prompt', u'meet', u'chang'] [u'craig', u'want', u'final', u'crow'] [u'curtain', u'come', u'bolshoi', u'revamp'] [u'dame', u'elisabeth', u'name', u'victorian', u'year'] [u'date', u'terror', u'trial'] [u'davenport', u'finish', u'mauresmo', u'reach', u'final'] [u'davico', u'join', u'knight'] [u'defector', u'dell', u'welcom', u'crowd', u'franc'] [u'defector', u'canada', u'echo', u'claim', u'chines'] [u'desalin', u'propon', u'unhappi', u'viabil'] [u'doubt', u'cast', u'atsic', u'replac'] [u'doubt', u'cast', u'poki', u'plan', u'region', u'impact'] [u'doubt', u'rais', u'workplac', u'fatigu', u'plan'] [u'readi', u'electron', u'tag', u'issu'] [u'drink', u'driver', u'appeal', u'year', u'sentenc'] [u'driver', u'record'] [u'drought', u'plan', u'includ', u'high', u'tech', u'water', u'recycl'] [u'drug', u'messag', u'sink', u'public'] [u'earli', u'winter', u'sale', u'boost', u'nation', u'retail', u'figur'] [u'elder', u'woman', u'hospitalis', u'rape', u'attack'] [u'england', u'australia', u'trial', u'rule', u'chang'] [u'appl', u'action'] [u'farmer', u'market', u'fund', u'hall', u'revamp'] [u'farmer', u'suppli', u'bonlac', u'price', u'boost'] [u'figur', u'highlight', u'local', u'tourism', u'import'] [u'fingleton', u'deserv', u'cash', u'compens', u'liber'] [u'fish', u'group', u'offer', u'reduct', u'support'] [u'charg', u'heroin', u'bust'] [u'flood', u'clean', u'begin'] [u'flood', u'claim'] [u'floodwat', u'reced', u'north', u'coast'] [u'forestri', u'union', u'join', u'protest'] [u'worker', u'back', u'local', u'legal', u'brothel'] [u'time', u'year', u'feder'] [u'french', u'gear', u'effort'] [u'general', u'store', u'owner', u'name', u'territorian', u'year'] [u'german', u'parliament', u'back', u'earli', u'elect', u'plan'] [u'glazer', u'tell', u'ferguson', u'shop'] [u'gold', u'coast', u'council', u'fear', u'tourism', u'backlash'] [u'govern', u'face', u'bushfir', u'suit'] [u'govt', u'announc', u'airport', u'secur', u'team'] [u'govt', u'announc', u'kiama', u'bomaderri', u'rail', u'electrif'] [u'govt', u'ask', u'review', u'indigen', u'council', u'financi'] [u'govt', u'discuss', u'wool', u'mill', u'rescu', u'deal'] [u'govt', u'urg', u'step', u'anti', u'whale', u'action'] [u'green', u'reflect', u'senat', u'power'] [u'gregan', u'call', u'merci', u'weari', u'french'] [u'health', u'council', u'joke', u'doctor', u'tell', u'inquiri'] [u'hewitt', u'faze', u'feder', u'challeng'] [u'high', u'perform', u'polic', u'car', u'albani'] [u'hird', u'support', u'afl', u'drug', u'stanc'] [u'hockey', u'ticket', u'sting', u'net', u'canadian', u'murder'] [u'hotel', u'director', u'plead', u'guilti', u'electrocut'] [u'hundr', u'honour', u'digger', u'state', u'funer'] [u'hundr', u'like', u'attend', u'meet'] [u'indigen', u'leader', u'lament', u'atsic', u'loss'] [u'injuri', u'forc', u'shamard', u'retir'] [u'inquiri', u'give', u'mackay', u'health'] [u'inquiri', u'tell', u'rocki', u'hospit', u'woe'] [u'inter', u'cancel', u'vieri', u'contract'] [u'isra', u'armi', u'reject', u'claim', u'soldier', u'kidnap'] [u'jackson', u'take', u'break', u'bahrain'] [u'jam', u'hardi', u'payout', u'cover', u'month'] [u'junior', u'black', u'score', u'late', u'australia'] [u'juvenil', u'detent', u'centr', u'slat'] [u'land', u'council', u'question', u'govt', u'nativ', u'titl', u'stanc'] [u'minut', u'order', u'mask', u'choppi', u'manufactur'] [u'liber', u'highlight', u'bendigo', u'elect', u'issu'] [u'lion', u'continu', u'attack', u'umaga', u'odriscol'] [u'lion', u'chang', u'demon', u'clash'] [u'lismor', u'declar', u'disast', u'zone'] [u'lose', u'hard', u'drink', u'myth', u'aussi', u'tell'] [u'lucki', u'shoot', u'down', u'chopper', u'afghanistan'] [u'malthous', u'keen', u'test', u'young', u'magpi'] [u'attack', u'father', u'child', u'care', u'centr', u'carpark'] [u'avoid', u'jail', u'attempt', u'arrest'] [u'get', u'life', u'jail', u'stab', u'neighbour'] [u'man', u'bodi', u'near', u'flood', u'road'] [u'maroon', u'hope', u'carrol', u'prove', u'fit'] [u'mar', u'snicker', u'bar', u'recal', u'extort'] [u'mcgee', u'joust', u'tour', u'climber'] [u'medic', u'journal', u'back', u'babi', u'death', u'expert'] [u'merger', u'streamlin', u'control', u'land', u'manag'] [u'mini', u'cyclon', u'rip', u'tathra'] [u'minist', u'approv', u'hast', u'council', u'rate', u'rise'] [u'mistress', u'jail', u'tri', u'kill', u'lover', u'wife'] [u'wast', u'dump', u'detail', u'emerg'] [u'mother', u'sell', u'headspac', u'adspac'] [u'move', u'upgrad', u'rail', u'underpass'] [u'nelson', u'hit', u'student', u'protest'] [u'newcastl', u'fanci', u'unit', u'smith'] [u'director', u'appoint', u'fmit'] [u'facil', u'hail', u'step', u'forward', u'marin'] [u'member', u'join', u'council', u'conduct', u'committe'] [u'senat', u'differ', u'telstra', u'outlook'] [u'water', u'author', u'face', u'econom', u'develop'] [u'find', u'fertilis', u'regim', u'lack'] [u'nightclub', u'curfew', u'begin', u'tonight'] [u'news', u'chief', u'quit'] [u'water', u'irrig'] [u'sign', u'lotus', u'glen', u'escap'] [u'judiciari', u'reject', u'cross', u'appeal'] [u'secur', u'right', u'deal'] [u'teacher', u'stop', u'work', u'campaign'] [u'accus', u'uranium', u'doubl', u'standard'] [u'nucifora', u'take', u'rein', u'auckland'] [u'bowl', u'underarm', u'cherri', u'trade'] [u'ocean', u'speci', u'risk', u'global', u'warm'] [u'odd', u'stack', u'tire', u'french', u'say', u'bok', u'coach'] [u'turn', u'wallac'] [u'opal', u'readi', u'china', u'tour'] [u'opposit', u'senat', u'gear', u'polit', u'fight'] [u'pie', u'trump', u'powerless', u'port'] [u'pirat', u'hijack', u'ship'] [u'polic', u'chang', u'posit', u'mcgee', u'charg'] [u'polic', u'issu', u'firework', u'warn'] [u'polic', u'look', u'forward'] [u'polic', u'seiz', u'drug', u'accus', u'properti'] [u'princ', u'expect', u'eagl', u'intimid'] [u'raikkonen', u'hop', u'engin', u'failur'] [u'rain', u'lake', u'illawarra', u'entranc', u'reopen'] [u'rain', u'wont', u'affect', u'drought', u'assist', u'packag'] [u'ralli', u'swell', u'union', u'step', u'anti', u'campaign'] [u'random', u'drug', u'test', u'law', u'kick'] [u'rate', u'rise', u'reject', u'prompt', u'council', u'servic'] [u'region', u'resid', u'remind', u'organ', u'donat'] [u'research', u'find', u'mobil', u'phone', u'fire', u'servo'] [u'riverina', u'mourn', u'teacher', u'loss'] [u'rockhampton', u'water', u'charg', u'start', u'today'] [u'rome', u'work', u'hors', u'wear', u'underp'] [u'rural', u'colleg', u'amalgam'] [u'ask', u'state', u'plastic', u'bag'] [u'scientist', u'hail', u'einstein', u'theori', u'year'] [u'scope', u'studi', u'help', u'govt', u'decid', u'telstra', u'sale'] [u'seal', u'death', u'prompt', u'aquacultur', u'probe'] [u'search', u'continu', u'miss', u'gold', u'coast'] [u'search', u'suspend', u'miss', u'coupl'] [u'senat', u'major', u'govt'] [u'senat', u'vow', u'famili'] [u'sentenc', u'submiss', u'hear'] [u'share', u'wake', u'stock', u'fall'] [u'shark', u'number', u'protect'] [u'specialist', u'appoint', u'royal', u'hobart'] [u'sponsorship', u'rule', u'lara', u'tour'] [u'state', u'miss', u'fertilis', u'deadlin'] [u'statist', u'fewer', u'work', u'peopl'] [u'stepfath', u'jail', u'abus'] [u'strong', u'current', u'hamper', u'search', u'miss', u'coupl'] [u'super', u'choic', u'chang', u'worri', u'chief'] [u'target', u'peril', u'john', u'warn'] [u'cut', u'super', u'choic', u'effect'] [u'teen', u'sentenc', u'meat', u'cleaver', u'attack'] [u'thailand', u'boost', u'secur', u'teacher'] [u'charg', u'fruiter', u'attempt', u'murder'] [u'thousand', u'attend', u'sydney', u'ralli', u'chang'] [u'thousand', u'expect', u'visit', u'alic'] [u'thousand', u'ralli', u'chang'] [u'threat', u'forc', u'mar', u'bar', u'snicker', u'shelv'] [u'dead', u'zimbabw', u'township', u'evict', u'amnesti'] [u'commit', u'red'] [u'tour', u'franc', u'stage', u'stage'] [u'tourism', u'manag', u'get', u'slide', u'assur'] [u'tourist', u'help', u'unearth', u'dinosaur', u'fossil'] [u'tour', u'promenad', u'armstrong', u'want', u'enjoy'] [u'tricki', u'tiger', u'swamp', u'eagl'] [u'turkish', u'polic', u'kill', u'suspect', u'bomber'] [u'union', u'say', u'ralli', u'send', u'clear', u'messag', u'govt'] [u'probe', u'iranian', u'hostag', u'crisi'] [u'vaughan', u'play', u'feel', u'australia'] [u'vegi', u'farmer', u'urg', u'diversifi'] [u'vendor', u'respons', u'build', u'approv', u'drop'] [u'virgin', u'cut', u'rout'] [u'volunt', u'fireman', u'accus', u'set', u'hous'] [u'wada', u'attack', u'failur', u'sign', u'code'] [u'wagga', u'polic', u'chief', u'head', u'dubbo'] [u'crop', u'moratorium', u'remain'] [u'whoop', u'cough', u'case', u'trigger', u'health', u'warn'] [u'widow', u'plead', u'patel', u'extradit'] [u'wilko', u'lion', u'say', u'woodward'] [u'woman', u'jail', u'attempt', u'murder'] [u'worker', u'protest', u'chang'] [u'worker', u'industri', u'relat', u'concern'] [u'work', u'start', u'polic', u'shopfront'] [u'world', u'heritag', u'threat', u'identifi'] [u'ziggi', u'end', u'telstra', u'term'] [u'seiz', u'comput', u'document', u'piraci', u'sting'] [u'black', u'inflict', u'record', u'thrash', u'lion'] [u'alonso', u'pole', u'ax', u'rival'] [u'armstrong', u'ullrich', u'pois', u'time', u'trial', u'battl'] [u'aussi', u'moni', u'coach', u'french', u'rugbi', u'leagu', u'team'] [u'aussi', u'qualifi', u'wimbledon', u'doubl', u'final'] [u'aussi', u'star', u'bogut', u'sign', u'buck', u'contract'] [u'australia', u'seek', u'zimbabw', u'cricket'] [u'grind', u'hewitt'] [u'bank', u'robber', u'shot', u'escap'] [u'battl', u'break', u'justic', u'retir'] [u'bodi', u'recov', u'swell', u'river'] [u'bodi', u'submerg', u'vehicl'] [u'bulldog', u'blow', u'chanc', u'leapfrog', u'storm'] [u'busi', u'group', u'flag', u'loss', u'amid', u'minimum', u'wage'] [u'greater', u'spend', u'flood', u'manag'] [u'claim', u'govt', u'fund', u'cut', u'fuel', u'failur', u'probe'] [u'compani', u'confid', u'uranium', u'mine', u'ahead'] [u'couch', u'surpris', u'leader', u'illinoi'] [u'councillor', u'demand', u'explan', u'approv'] [u'davenport', u'venus', u'seek', u'end', u'titl', u'drought'] [u'davenport', u'venus', u'seek', u'titl', u'drought'] [u'deplet', u'cowboy', u'strong', u'warrior'] [u'disput', u'gove', u'worker', u'walk'] [u'downer', u'press', u'zimbabw', u'boycott'] [u'eagl', u'hand', u'footbal', u'lesson'] [u'extort', u'threat', u'hit', u'food', u'manufactur'] [u'fan', u'win', u'aussi', u'final'] [u'fear', u'grow', u'miss', u'team', u'afghanistan'] [u'feder', u'happi', u'hewitt', u'quiet'] [u'ferguson', u'year', u'come', u'say', u'glazer'] [u'ferri', u'crash', u'sydney', u'harbour'] [u'flintoff', u'harmison', u'domin', u'australia'] [u'flood', u'crew', u'resum', u'search', u'miss', u'coupl'] [u'flood', u'insur', u'predict'] [u'arrest', u'break', u'hill', u'polic', u'oper'] [u'injur', u'sydney', u'harbour', u'ferri', u'crash'] [u'germani', u'open', u'world', u'wurst', u'museum'] [u'girl', u'releas', u'unharm', u'stand', u'end'] [u'govt', u'give', u'multi', u'million', u'dollar', u'lobster', u'farm', u'green'] [u'green', u'angri', u'communiti', u'exclus', u'precinct'] [u'hetherington', u'set', u'sorenstam', u'clash'] [u'higher', u'workload', u'hamper', u'ambul', u'respons', u'time'] [u'improv', u'consum', u'confid', u'boost', u'stock'] [u'ingal', u'aim', u'turn', u'tabl', u'team', u'mate'] [u'intern', u'recruit', u'child'] [u'interst', u'tourist', u'dead', u'cairn'] [u'isaac', u'newton', u'alchemi', u'note'] [u'johannesburg', u'live', u'concert'] [u'kangaroo', u'leap'] [u'kelli', u'edg', u'skaif', u'darwin'] [u'kelli', u'sieg', u'live', u'anniversari', u'celebr'] [u'liber', u'push', u'state', u'label', u'food'] [u'live', u'global', u'concert', u'seri'] [u'live', u'kick', u'japan'] [u'malnutrit', u'strike', u'african'] [u'crush', u'mine', u'accid'] [u'expect', u'face', u'hear', u'flatmat', u'death'] [u'kill', u'armidal', u'hous'] [u'remand', u'attempt', u'murder'] [u'marcher', u'gather', u'scotland', u'urg', u'action'] [u'nasa', u'take', u'comet', u'unlock', u'solar', u'system'] [u'negoti', u'continu', u'stand'] [u'nigeria', u'charg', u'polic', u'civilian', u'murder'] [u'nigeria', u'court', u'uphold', u'obasanjo', u'poll', u'victori'] [u'confid', u'vote', u'clear', u'germani', u'elect'] [u'plan', u'extend', u'chocol', u'bar', u'recal'] [u'passeng', u'kill', u'train', u'collid'] [u'pilot', u'tell', u'investig', u'runway'] [u'pittman', u'pari'] [u'poison', u'threat', u'forc', u'water', u'stock', u'shelv'] [u'polic', u'negoti', u'arm', u'hous', u'sieg'] [u'polic', u'search', u'prison', u'escap'] [u'polic', u'step', u'probe', u'chocol', u'poison'] [u'pope', u'send', u'messag', u'support', u'anti', u'poverti', u'ralli'] [u'psychiatrist', u'tell', u'threat', u'mcgee', u'trial'] [u'rail', u'author', u'pay', u'thousand', u'tilt', u'train', u'crash'] [u'record', u'easi', u'number', u'cruncher'] [u'resurrect', u'lion', u'demolish', u'demon'] [u'richmond', u'hang', u'nailbit'] [u'roadsid', u'random', u'drug', u'test', u'kick'] [u'roddick', u'strand', u'rain', u'hit', u'second', u'semi', u'final'] [u'rumford', u'european', u'open', u'hunt'] [u'russia', u'hail', u'resumpt', u'space', u'shuttl', u'flight'] [u'ruthless', u'feder', u'send', u'hewitt', u'pack'] [u'salvag', u'oper', u'launch', u'recov', u'luxuri'] [u'shield', u'blast', u'cruis', u'ridicul', u'rant'] [u'afghan', u'kill', u'bomb', u'attack', u'convoy'] [u'soul', u'star', u'luther', u'vandross', u'dead'] [u'speedster', u'licenc', u'suspend', u'spate', u'drive'] [u'stag', u'greatest', u'concert'] [u'suicid', u'blast', u'target', u'recruit'] [u'swan', u'push', u'save', u'melbourn', u'grandstand'] [u'health', u'offici', u'urg', u'council', u'join', u'plan'] [u'teen', u'charg', u'warburton', u'murder'] [u'thai', u'polic', u'releas', u'potenti', u'heroin', u'syndic'] [u'thunderbird', u'clear', u'phoenix'] [u'tiger', u'rooki', u'give', u'chanc', u'swan'] [u'tour', u'contend', u'ullrich', u'fall', u'train'] [u'turkish', u'polic', u'shoot', u'attempt', u'bomber'] [u'bodi', u'retriev', u'river'] [u'dead', u'austrian', u'train', u'crash'] [u'injur', u'outback', u'chopper', u'crash'] [u'kill', u'blast', u'turkish', u'train'] [u'uefa', u'reject', u'czech', u'club', u'champion', u'leagu', u'protest'] [u'govt', u'warn', u'smoker', u'ugli', u'impot'] [u'understrength', u'rooster', u'classi', u'knight'] [u'envoy', u'visit', u'zimbabw', u'homeless'] [u'union', u'state', u'warn', u'anti', u'campaign', u'spread'] [u'union', u'take', u'campaign', u'footi', u'fan'] [u'respect', u'italian', u'sovereignti'] [u'plan', u'bomb', u'compound', u'afghanistan'] [u'pursu', u'iranian', u'leader', u'past'] [u'probe', u'kill', u'iraqi', u'envoy', u'cousin'] [u'demand', u'stop', u'cane', u'toad', u'invas'] [u'wallabi', u'hold', u'brave', u'french'] [u'wimbledon', u'result'] [u'woman', u'slip', u'polic'] [u'gather', u'farewel', u'broadcast'] [u'abandon', u'penguin', u'singl', u'mother'] [u'polic', u'number', u'satisfactori', u'polic', u'chief'] [u'aid', u'deni', u'iranian', u'presid', u'involv', u'embassi'] [u'black', u'prais', u'half', u'carter'] [u'alleg', u'remark', u'marr', u'eel'] [u'argentina', u'win', u'world', u'final'] [u'aussi', u'huss', u'make', u'wimbledon', u'histori'] [u'aussi', u'women', u'toppl', u'lacross', u'championship'] [u'biggest', u'name', u'music', u'play', u'live', u'concert'] [u'bjorn', u'control', u'european', u'open'] [u'black', u'huber', u'women', u'doubl', u'titl'] [u'bogut', u'share', u'wealth'] [u'botan', u'garden', u'master', u'plan', u'unveil'] [u'boycott', u'call', u'self', u'defeat', u'mcdonald'] [u'britain', u'concern', u'iraqi', u'polic', u'abus', u'report'] [u'canada', u'shock', u'puma'] [u'captor', u'face', u'forc', u'wood'] [u'carrol', u'unscath', u'bronco', u'triumph'] [u'chanderpaul', u'get', u'late', u'world', u'squad'] [u'commonwealth', u'seek', u'advic', u'uranium'] [u'craig', u'bellami', u'billi', u'slater', u'mark', u'geyer', u'steve'] [u'crowd', u'gather', u'mark', u'reserv', u'forc'] [u'davenport'] [u'dont', u'prop', u'farm', u'tanner'] [u'dump', u'expans', u'anger', u'blue', u'mountain', u'resid'] [u'eddi', u'jone', u'chris', u'whitak', u'georg', u'gregan', u'chris'] [u'egyptian', u'ambassador', u'iraq', u'kidnap', u'report'] [u'england', u'australia', u'final'] [u'probe', u'west', u'gate', u'spill'] [u'estonian', u'snatch', u'world', u'wife', u'carri', u'titl'] [u'fatal', u'motorbik', u'collis', u'investig'] [u'year', u'wait', u'year', u'old', u'legal', u'hear'] [u'flood', u'clean', u'prompt', u'contamin', u'warn'] [u'furyk', u'curti', u'share', u'shoot', u'lead', u'western'] [u'climat', u'chang', u'agreement', u'expect', u'chirac'] [u'gaza', u'milit', u'storm', u'build', u'job', u'protest'] [u'gerri', u'collin', u'wrap', u'wallabi', u'victori'] [u'glenn', u'mitchel', u'wrap', u'open'] [u'govt', u'pressur', u'union'] [u'govt', u'threaten', u'withhold', u'school', u'fund'] [u'graham', u'murray', u'toni', u'kemp', u'interview'] [u'grandstand', u'speak', u'brian', u'smith'] [u'grandstand', u'speak', u'michael', u'hagan'] [u'hawk', u'cat'] [u'holden', u'clean', u'hide', u'valley'] [u'howard', u'post', u'anderson', u'ministri', u'unveil'] [u'hold', u'edg', u'darwin'] [u'hydrogen', u'power', u'plane', u'begin', u'test', u'flight'] [u'isra', u'cabinet', u'reject', u'month', u'gaza', u'pullout'] [u'job', u'growth', u'finish', u'financi', u'year', u'high'] [u'john', u'lang', u'matthew', u'elliott', u'interview'] [u'kelli', u'glenrowan', u'make', u'heritag', u'list'] [u'kestrel', u'easili', u'oriol'] [u'kittyhawk', u'carrier', u'arriv', u'sydney', u'harbour'] [u'labor', u'dismiss', u'attack', u'campaign'] [u'labor', u'prove', u'latham', u'wrong'] [u'labor', u'farm', u'subsidi', u'critic', u'ludicr'] [u'lindsay', u'tanner', u'push', u'overhaul'] [u'liverpool', u'sign', u'zenden'] [u'arrest', u'warship', u'protest'] [u'charg', u'brisban', u'stand'] [u'charg', u'stab', u'murder'] [u'kill', u'canberra', u'collis'] [u'mar', u'snicker', u'threat', u'spark', u'packag', u'rethink'] [u'mcewen', u'tour', u'sprinter', u'stage', u'win'] [u'mcgrath', u'singl', u'classi', u'harmison'] [u'medicar', u'relat', u'wood', u'retir', u'support'] [u'michael', u'hagan', u'interview'] [u'michelin', u'team', u'offer', u'extra', u'race', u'indianapoli'] [u'miln', u'rescu', u'saint', u'thriller'] [u'parish', u'merger', u'option', u'archbishop'] [u'mortlock', u'doubt', u'springbok', u'test'] [u'kill', u'stab'] [u'navratilova', u'fail', u'overthrow', u'king'] [u'neighbour', u'drag', u'perth'] [u'farmer', u'experi', u'nlis', u'delay'] [u'odriscol', u'buri', u'hatchet', u'umaga'] [u'remain', u'apostl', u'collaps'] [u'parent', u'claim', u'soldier', u'son', u'death'] [u'patrick', u'second', u'femal', u'pole', u'winner', u'indi'] [u'pavlich', u'spree', u'fail', u'stop', u'crow'] [u'perri', u'shire', u'join', u'drought', u'declar', u'list'] [u'announc', u'minor', u'reshuffl', u'frontbench'] [u'polic', u'seek', u'help', u'investig', u'shop'] [u'pont', u'eager', u'decid'] [u'pope', u'urg', u'help', u'africa'] [u'ray', u'york', u'studi', u'trip', u'defend'] [u'region', u'doctor', u'bond', u'concern'] [u'remot', u'communiti', u'start', u'work', u'dole'] [u'right', u'group', u'skew', u'mules', u'debat', u'minist'] [u'roddick', u'aim', u'stop', u'feder', u'trick'] [u'roddick', u'get', u'chanc', u'reveng', u'feder'] [u'roger', u'uphil', u'struggl', u'tour'] [u'safer', u'chocol', u'pack', u'like', u'chocol'] [u'opposit', u'press', u'ashbourn', u'inquiri'] [u'polic', u'abort', u'high', u'speed', u'pursuit'] [u'satellit', u'track', u'pygmi', u'eleph', u'walk'] [u'search', u'miss', u'teenag'] [u'senior', u'qaeda', u'milit', u'kill', u'saudi', u'clash'] [u'shock', u'therapi', u'compliant', u'right', u'commission'] [u'sorenstam', u'see', u'hetherington', u'challeng'] [u'sorenstam', u'webb', u'exit', u'match', u'play', u'event'] [u'specul', u'continu', u'robinho', u'real', u'transfer'] [u'stack', u'collaps', u'leav', u'apostl', u'stand'] [u'swiss', u'death', u'citizen', u'iraq'] [u'talk', u'wont', u'resolv', u'teacher', u'disput', u'union'] [u'timores', u'presid', u'begin', u'nation', u'tour'] [u'train', u'bomb', u'kill', u'turkey'] [u'kill', u'road', u'overnight'] [u'ullrich', u'moral', u'suffer', u'blow', u'time', u'trial'] [u'attorney', u'general', u'make', u'surpris', u'baghdad', u'visit'] [u'comet', u'probe', u'releas'] [u'venus', u'get', u'game'] [u'venus', u'win', u'wimbledon', u'titl'] [u'vodka', u'death', u'lead', u'putin', u'monopoli'] [u'go', u'banana', u'cane', u'toad', u'stowaway'] [u'wayn', u'bennett', u'berrick', u'barn', u'karmichael', u'hunt'] [u'welfar', u'bodi', u'wait', u'watch', u'homeless', u'plan'] [u'defend', u'lag', u'aid', u'treatment', u'target'] [u'wilkinson', u'clear', u'injuri'] [u'wilko', u'expect', u'miss', u'final', u'lion', u'test'] [u'wimbledon', u'result'] [u'woodbridg', u'bow', u'lose', u'note'] [u'wood', u'negoti', u'ransom', u'hop'] [u'woolford', u'doubl', u'ensur', u'victori', u'canberra'] [u'world', u'star', u'global', u'poverti'] [u'zabriski', u'yellow', u'armstrong', u'hit', u'ullrich'] [u'vegi', u'plant', u'announc', u'north', u'west'] [u'lobster', u'farm', u'moot', u'tweed', u'head'] [u'aborigin', u'leader', u'lose', u'battl', u'cancer'] [u'adelaid', u'gear', u'naidoc', u'ball'] [u'african', u'leader', u'gather', u'ahead', u'meet'] [u'life', u'ocean', u'wave', u'skint'] [u'eye', u'leader'] [u'alonso', u'hand', u'renault', u'home', u'franc'] [u'narrow', u'mind', u'drought', u'help', u'senat', u'say'] [u'unapp', u'tradit', u'base', u'studi'] [u'apostl', u'collaps', u'expect', u'hurt', u'tourism'] [u'art', u'bodi', u'nervous', u'busi', u'fund', u'dwindl'] [u'art', u'compani', u'struggl'] [u'astrologist', u'sue', u'nasa', u'comet', u'crash'] [u'black'] [u'aust', u'aid', u'terror', u'suspect', u'target', u'agenc'] [u'australian', u'front', u'bali', u'court', u'drug', u'charg'] [u'aust', u'scientist', u'play', u'role', u'comet', u'mission'] [u'baena', u'win', u'match', u'play', u'final'] [u'beatti', u'futur', u'feder', u'polit'] [u'boonen', u'throw', u'gauntlet'] [u'boost', u'age', u'care', u'facil'] [u'brawl', u'threaten', u'darwin', u'match'] [u'bush', u'ponder', u'global', u'warm', u'debat'] [u'busi', u'week', u'ahead', u'tribun'] [u'cabinet', u'hear', u'glenormiston', u'colleg', u'submiss'] [u'cathol', u'medic', u'school', u'deni', u'etho', u'compromis'] [u'chines', u'mine', u'visit', u'boost', u'mackay', u'industri'] [u'cleal', u'head', u'judiciari', u'list'] [u'clone', u'committe', u'meet'] [u'cobb', u'role', u'bench'] [u'coff', u'anim', u'lend', u'hand', u'pest', u'confer'] [u'cole', u'recal', u'spring', u'water', u'alga'] [u'committe', u'debat', u'screen', u'oversea', u'doctor'] [u'committe', u'consid', u'way', u'lift', u'aquacultur'] [u'communiti', u'ralli', u'victim'] [u'corbi', u'case', u'reopen'] [u'corbi', u'judg', u'hear', u'evid'] [u'council', u'plan', u'user', u'pay', u'scheme', u'commerci'] [u'council', u'back', u'naidoc', u'week', u'activ'] [u'council', u'assess', u'flood', u'damag', u'cost'] [u'council', u'vote', u'beach'] [u'coupl', u'say', u'mobil', u'phone'] [u'crowd', u'injur', u'showground', u'mishap'] [u'csiro', u'accus', u'dollar', u'drive'] [u'defenc', u'chief', u'pledg', u'elimin', u'bulli'] [u'dinamo', u'zagreb', u'sign', u'bosnar'] [u'doctor', u'guilti', u'forg', u'prescript', u'treat'] [u'doctor', u'criticis', u'access', u'indigen', u'health'] [u'dubbo', u'trucki', u'succumb', u'injuri'] [u'egypt', u'call', u'releas', u'kidnap', u'diplomat'] [u'timor', u'presid', u'campaign', u'program', u'fund'] [u'evid', u'law', u'review'] [u'extort', u'threat', u'stop', u'snicker', u'mar'] [u'farmer', u'maintain', u'campaign', u'mcdonald', u'snub'] [u'farmer', u'trucki', u'target', u'fire', u'class'] [u'fatal', u'hous', u'blaze', u'consid', u'suspici'] [u'fatal', u'level', u'cross', u'crash', u'prompt', u'polic', u'warn'] [u'fear', u'student', u'union', u'issu', u'threaten', u'game'] [u'feder', u'join', u'wimbledon', u'great'] [u'feder', u'join', u'wimbledon', u'great', u'straight'] [u'feder', u'set', u'sight', u'sampra', u'record'] [u'ferri', u'seal', u'european', u'open', u'victori'] [u'financi', u'pressur', u'strain', u'region', u'airlin'] [u'fingleton', u'decis', u'lead', u'legal', u'revamp'] [u'fletcher', u'lose', u'captainci', u'race', u'slur'] [u'food', u'retail', u'split', u'get', u'bog'] [u'societi', u'staffer', u'guilti', u'fraud'] [u'liber', u'media', u'advis', u'stand'] [u'urg', u'grant', u'loan'] [u'fossett', u'enact', u'tran', u'atlant', u'flight'] [u'work', u'stoppag', u'rule'] [u'furyk', u'hold', u'wood', u'western', u'open'] [u'geologist', u'predict', u'uncertain', u'futur', u'apostl'] [u'gerrard', u'bust', u'rais', u'doubt', u'liverpool', u'futur'] [u'giant', u'bok', u'pack', u'aim', u'steamrol', u'wallabi'] [u'glen', u'inn', u'singl', u'parent', u'drop', u'centr'] [u'govt', u'appoint', u'review', u'panel'] [u'govt', u'defend', u'downscal', u'random', u'breath', u'test'] [u'govt', u'dismiss', u'airport', u'secur', u'outcri'] [u'govt', u'hand', u'forest', u'fund'] [u'govt', u'urg', u'boost', u'cancer', u'patient', u'travel', u'subsidi'] [u'grain', u'grower', u'look', u'blue', u'sky'] [u'grave', u'brutal', u'paedophil', u'jail', u'year'] [u'greek', u'offici', u'turkey', u'visit'] [u'greenpeac', u'call', u'hazelwood', u'power', u'station'] [u'green', u'throw', u'challeng', u'mundin'] [u'run', u'rife', u'report', u'reveal'] [u'health', u'fear', u'air', u'plan', u'batteri', u'recycl'] [u'heritag', u'trail', u'honour'] [u'highway', u'mishap', u'leav', u'wodonga', u'dead'] [u'home', u'owner', u'meet', u'landslid', u'miseri'] [u'hous', u'spark', u'safeti', u'warn'] [u'houston', u'begin', u'defenc', u'chief'] [u'set', u'asia', u'pacif', u'base', u'brisban'] [u'independ', u'bodi', u'review', u'clone', u'law'] [u'india', u'move', u'ganguli', u'overturn'] [u'indigen', u'communiti', u'embrac', u'naidoc', u'celebr'] [u'indonesian', u'polic', u'swoop', u'suspect', u'terrorist'] [u'show', u'ballarat', u'liber', u'preselect'] [u'iraqi', u'govt', u'admit', u'abus', u'secur', u'forc'] [u'rule', u'plan', u'teacher', u'strike'] [u'isra', u'minist', u'flak', u'jacket'] [u'spacecraft', u'crash', u'comet'] [u'japan', u'oldest', u'die'] [u'joey', u'maroon', u'target', u'risk'] [u'joyc', u'voic', u'concern'] [u'juanita', u'nielsen', u'murder', u'remain', u'mysteri', u'year'] [u'labor', u'deni', u'plan', u'abolish', u'negat', u'gear'] [u'lanc', u'circus', u'embark', u'long', u'goodby'] [u'landslid', u'caus', u'problem', u'travel'] [u'live', u'rocker', u'look', u'leader', u'chang'] [u'lobster', u'industri', u'fear', u'deplet', u'fish', u'fleet'] [u'local', u'govern', u'lobbi', u'feder', u'road', u'fund'] [u'jail', u'wool', u'scam'] [u'maori', u'group', u'accus', u'stand', u'tactic'] [u'marathon', u'effort', u'win', u'race', u'tanzanian', u'runner'] [u'masterfood', u'detail', u'chocol', u'threat'] [u'masterfood', u'place', u'chocol', u'recal'] [u'mcewen', u'take', u'second', u'stage'] [u'mcgauran', u'get', u'rural', u'portfolio'] [u'mental', u'health', u'servic', u'miss', u'inquiri', u'hear'] [u'north', u'coast', u'join', u'indigen', u'cultur'] [u'mileston', u'approach', u'dalai', u'lama'] [u'death', u'investig', u'continu'] [u'minist', u'seek', u'curb', u'vegi', u'import', u'deal'] [u'miss', u'teen', u'safe'] [u'miss', u'soldier', u'rescu', u'afghanistan'] [u'good', u'econom', u'growth', u'expect'] [u'talk', u'hold', u'matern', u'unit', u'disput'] [u'urg', u'perman', u'resid', u'north', u'west'] [u'murray', u'hop', u'cowboy', u'boost', u'origin', u'rep'] [u'music', u'contest', u'hit', u'right', u'note', u'student'] [u'naidoc', u'celebr', u'sombr', u'amid', u'atsic', u'demis'] [u'naidoc', u'week', u'kick'] [u'nasa', u'probe', u'cours', u'comet', u'collis'] [u'bionic', u'like', u'real', u'thing'] [u'board', u'member', u'splash', u'water', u'author'] [u'child', u'care', u'centr', u'help', u'orang'] [u'defenc', u'chief', u'begin', u'work'] [u'owner', u'dingo', u'farm'] [u'process', u'plant', u'devonport'] [u'senat', u'encourag', u'coalit', u'line'] [u'north', u'coast', u'face', u'welfar', u'shake'] [u'north', u'armi', u'reservist', u'head', u'solomon'] [u'track', u'mark', u'year', u'rail', u'servic'] [u'olymp', u'lobbi', u'overdr', u'vote', u'loom'] [u'opposit', u'critic', u'govt', u'action', u'teacher'] [u'paedophil', u'jail', u'opposit', u'say'] [u'park', u'astronom', u'monitor', u'comet', u'crash'] [u'perkin', u'prais', u'region', u'australia', u'swim', u'effort'] [u'petrol', u'price', u'fuel', u'inflat', u'rate', u'rise'] [u'pietersen', u'close', u'ash', u'debut'] [u'plane', u'crash', u'victim', u'bodi', u'return', u'wagga'] [u'point', u'mishap', u'derail', u'skitub', u'minist'] [u'polic', u'north', u'west', u'crash', u'victim'] [u'polic', u'probe', u'anim', u'bash', u'school'] [u'polic', u'probe', u'break', u'hill', u'assault'] [u'polic', u'promis', u'squad', u'check'] [u'polic', u'silent', u'offic', u'drink', u'drive', u'charg'] [u'port', u'kembla', u'host', u'union', u'book', u'launch'] [u'govern', u'cleric', u'kill', u'southern'] [u'protest', u'tip', u'festiv', u'trash', u'politician', u'door'] [u'public', u'comment', u'seek', u'burni', u'waterfront', u'plan'] [u'public', u'warn', u'meningococc', u'threat'] [u'abattoir', u'close'] [u'rain', u'lessen', u'blow', u'irrig'] [u'recognit', u'fisheri'] [u'region', u'growth', u'ahead', u'adelaid'] [u'region', u'join', u'aquacultur', u'forum'] [u'riewoldt', u'sidelin', u'week'] [u'riewoldt', u'escap', u'surgeon', u'knife'] [u'salin', u'fighter', u'back', u'push', u'research', u'director'] [u'samoa', u'cours', u'rugbi', u'world', u'spot'] [u'opposit', u'say', u'ashbourn', u'inquiri', u'narrow'] [u'saudi', u'crown', u'princ', u'vow', u'countri'] [u'school', u'base', u'educ', u'method', u'outdat', u'academ'] [u'seagul', u'improv', u'semi', u'hope', u'east'] [u'sect', u'member', u'court', u'abus', u'charg'] [u'shire', u'slash', u'potenti', u'heritag', u'sit'] [u'skitub', u'hit', u'slop', u'derail'] [u'slow', u'economi', u'push'] [u'smoker', u'forc', u'room'] [u'soldier', u'leav', u'brisban', u'iraq'] [u'solomon', u'minist', u'face', u'sack', u'whale', u'vote'] [u'spacecraft', u'crash', u'comet'] [u'start', u'final', u'design', u'massiv', u'project'] [u'stop', u'work', u'meet', u'disrupt', u'ferri', u'servic'] [u'student', u'retir', u'airport', u'secur', u'duti'] [u'task', u'forc', u'seek', u'youth', u'parti', u'feedback'] [u'tasmanian', u'declin', u'littl'] [u'teacher', u'face', u'sack', u'child', u'porn', u'convict'] [u'teacher', u'strike', u'amid', u'rule'] [u'telstra', u'withdraw', u'phone', u'tower', u'plan'] [u'tender', u'withdraw', u'put', u'caravan', u'park', u'futur', u'doubt'] [u'thorp', u'endors', u'york', u'host', u'olymp'] [u'thousand', u'teacher', u'strike'] [u'timber', u'compani', u'accus', u'intimid'] [u'townsvill', u'prepar', u'naidoc', u'week', u'festiv'] [u'trade', u'deficit', u'contract'] [u'troop', u'comb', u'baghdad', u'envoy'] [u'seek', u'treatment', u'chocol', u'scare'] [u'union', u'condemn', u'desper', u'airport', u'secur', u'measur'] [u'union', u'ponder', u'long', u'fight', u'chang'] [u'union', u'warn', u'jeopardis', u'labor', u'elect'] [u'union', u'beat', u'avert', u'ambul', u'woe'] [u'vail', u'readi', u'rein', u'senat'] [u'vanston', u'hawk', u'honour', u'indigen', u'leader'] [u'vizard', u'face', u'action', u'share', u'deal'] [u'vizard', u'water'] [u'waltz', u'matilda', u'highlight', u'silli', u'australia'] [u'wont', u'knock', u'comet', u'cours', u'scientist', u'say'] [u'widder', u'decid', u'action', u'alleg', u'racial'] [u'wilko', u'hope', u'play', u'test'] [u'william', u'investig', u'webber', u'french', u'nightmar'] [u'woman', u'die', u'truck', u'hors', u'accid'] [u'yacht', u'compani', u'plan', u'local', u'train', u'centr'] [u'age', u'care', u'project', u'plan', u'cudal'] [u'academ', u'queri', u'vizard', u'deal'] [u'govt', u'deni', u'blame', u'rapist', u'offend'] [u'afghanistan', u'call', u'return', u'aust', u'troop'] [u'tribun', u'hear', u'case'] [u'take', u'stake', u'pipelin'] [u'agricultur', u'growth', u'outpac', u'sector'] [u'alkan', u'pressur', u'park', u'council'] [u'antidepress', u'help', u'stop', u'repeat', u'heart', u'attack'] [u'anti', u'plan', u'protest', u'union', u'drive'] [u'campus', u'colleg', u'offer', u'advanc', u'class'] [u'armidal', u'host', u'senat', u'union', u'fee', u'probe'] [u'associ', u'seek', u'extra', u'feder', u'road', u'fund'] [u'aussi', u'davi', u'squad'] [u'banana', u'grower', u'cane', u'toad', u'home'] [u'bargara', u'beach', u'name', u'australia', u'friendliest'] [u'batchelor', u'conced', u'rail', u'bypass', u'caus', u'headach'] [u'beazley', u'want', u'annual', u'leav', u'guarante'] [u'berlin', u'wall', u'memori', u'tear'] [u'olymp', u'heat'] [u'brother', u'contest', u'cruelti', u'claim'] [u'boycott', u'forc', u'saleyard', u'drop'] [u'boyfriend', u'plead', u'guilti', u'perjuri', u'ryan'] [u'brack', u'await', u'vizard', u'court', u'decis'] [u'bring', u'impeach', u'arroyo', u'say'] [u'brisban', u'confer', u'put', u'spotlight', u'drug', u'cultur'] [u'brother', u'rescu', u'drift', u'boat'] [u'bush', u'challeng', u'farm', u'subsidi'] [u'bushfir', u'class', u'action', u'spark', u'fear'] [u'campbel', u'embark', u'recherch', u'fact', u'find'] [u'camp', u'focus', u'famili', u'breakdown'] [u'carrol', u'origin', u'shoo'] [u'carrol', u'origin', u'shoo', u'hagan'] [u'carrol', u'start', u'blue'] [u'carr', u'want', u'grant', u'commiss', u'abolish'] [u'centr', u'provid', u'transport', u'train'] [u'charlevill', u'take', u'bilbi', u'fund', u'manag'] [u'children', u'strep', u'infect', u'link', u'tic'] [u'chines', u'astronaut', u'count', u'spaceflight'] [u'chocol', u'recal', u'respons', u'fantast', u'firm', u'say'] [u'compani', u'action', u'chemic', u'spill'] [u'cooma', u'monaro', u'fire', u'increas', u'cost'] [u'corbi', u'case', u'reopen'] [u'corbi', u'plead', u'help'] [u'corbi', u'plead', u'help'] [u'costello', u'make', u'pilgrimag', u'hillsong', u'confer'] [u'council', u'clarifi', u'road', u'respons'] [u'council', u'finalis', u'drought', u'recommend'] [u'council', u'urg', u'reject', u'catherin', u'hill'] [u'court', u'remand', u'teenag', u'settler', u'gaza', u'attack'] [u'crow', u'fine', u'johncock', u'earli', u'morn', u'crash'] [u'crow', u'discuss', u'futur', u'johncock'] [u'level', u'water', u'ban', u'remain'] [u'data', u'continu', u'flow', u'comet', u'collis'] [u'disappear', u'apostl', u'prompt', u'market', u'dilemma'] [u'sampl', u'reveal', u'dolphin', u'speci'] [u'domest', u'wine', u'sale', u'soar'] [u'east', u'timor', u'aust', u'split', u'money'] [u'east', u'timores', u'presid', u'begin', u'canberra', u'tour'] [u'employe', u'pay', u'annual'] [u'england', u'prior', u'dayer'] [u'errat', u'driver', u'arrest', u'drink', u'drive'] [u'evan', u'tate', u'move', u'creat', u'griffith', u'grower', u'concern'] [u'expect', u'busi', u'centr', u'cover', u'bigger'] [u'expert', u'rais', u'question', u'vizard', u'deal'] [u'export', u'welcom', u'ship'] [u'fall', u'dam', u'capac', u'lead', u'power', u'ration'] [u'farm', u'boss', u'lament', u'cobb', u'get', u'agricultur'] [u'farmer', u'gain', u'plan', u'trade', u'revamp'] [u'feder', u'enjoy', u'perfect', u'homecom'] [u'govt', u'urg', u'renew', u'underwrit', u'agreement'] [u'fertilis', u'regul', u'come', u'forc'] [u'detail', u'emerg', u'orient', u'invest'] [u'fraser', u'coast', u'tourism', u'target', u'sydney'] [u'freedom', u'inform', u'year'] [u'free', u'tabloid', u'fuel', u'cross', u'media', u'talk'] [u'frenzi', u'minut', u'lobbi', u'olymp'] [u'fruiti', u'flavour', u'boost', u'bubbl', u'sale'] [u'furyk', u'climb', u'eighth', u'world', u'rank'] [u'gang', u'think', u'break'] [u'govt', u'acceler', u'counterpunch'] [u'govt', u'announc', u'patrol', u'boat', u'protect', u'north', u'west'] [u'govt', u'blame', u'union', u'poll', u'plung'] [u'govt', u'consid', u'send', u'troop', u'afghanistan'] [u'govt', u'deni', u'annual', u'leav', u'threaten'] [u'govt', u'help', u'look', u'potenti', u'corbi', u'wit'] [u'govt', u'mull', u'troop', u'return', u'afghanistan'] [u'govt', u'urg', u'adopt', u'prevent', u'approach'] [u'govt', u'unveil', u'rail', u'boost'] [u'govt', u'urg', u'irrig', u'deal', u'free'] [u'call', u'involv', u'public', u'hospit'] [u'anger', u'earn', u'jail', u'term'] [u'gunbattl', u'indian', u'religi', u'site', u'leav', u'dead'] [u'gunmen', u'kill', u'disput', u'indian', u'religi', u'site'] [u'hard', u'core', u'activist', u'blame', u'edinburgh', u'clash'] [u'hawk', u'coach', u'beat', u'team', u'futur'] [u'hawk', u'futur', u'final', u'contend', u'clarkson'] [u'health', u'probe', u'head', u'gold', u'coast'] [u'health', u'servic', u'chief', u'stand', u'time', u'frame'] [u'hope', u'code', u'conduct', u'curb', u'gaza', u'pull'] [u'hospit', u'execut', u'want', u'bundaberg', u'inquiri', u'shut'] [u'howard', u'drop', u'blame', u'union'] [u'immun', u'possibl', u'corbi', u'wit'] [u'india', u'flood', u'claim', u'live'] [u'indigen', u'communiti', u'face', u'audit'] [u'injur', u'train', u'pressur', u'play', u'thoma'] [u'rat', u'expect', u'remain', u'hold'] [u'israel', u'palestinian', u'reach', u'agreement', u'transport'] [u'inquiri', u'head', u'defend', u'brief'] [u'review', u'member', u'back'] [u'star', u'announc', u'local', u'flight', u'chang'] [u'joey', u'conquer', u'cauldron', u'stuart'] [u'judiciari', u'trio', u'enter', u'earli', u'plea'] [u'kennett', u'call', u'spend', u'good', u'health', u'promot'] [u'kewel', u'linek', u'settl', u'court'] [u'lanc', u'chase', u'yellow', u'team', u'time', u'trial'] [u'landown', u'want', u'compo', u'paddock', u'intrus'] [u'landslip', u'focus', u'rang', u'home', u'owner', u'mind'] [u'lawyer', u'review', u'tax'] [u'hope', u'test', u'recal'] [u'leicestershir', u'sign', u'warrior', u'roger'] [u'liber', u'candid', u'question', u'forestrysa'] [u'lion', u'scrape', u'victori', u'auckland'] [u'live', u'star', u'album', u'sale', u'soar'] [u'liverpool', u'turn', u'chelsea', u'gerrard'] [u'london', u'team', u'wheel', u'beckham'] [u'luczak', u'scud', u'davi', u'team', u'name'] [u'machin', u'aim', u'halt', u'weed', u'spread'] [u'die', u'overpass', u'crash'] [u'manu', u'bail', u'nightclub', u'brawl', u'charg'] [u'maroon', u'benefit', u'cowboy', u'connect'] [u'maroon', u'benefit', u'cowboy', u'connect'] [u'martin', u'hope', u'virgin', u'blue', u'turnaround'] [u'meet', u'discuss', u'yeppoon', u'hospit'] [u'mexican', u'pair', u'ban', u'dope'] [u'minist', u'say', u'call', u'sack', u'unwarr'] [u'mix', u'night', u'pie', u'tribun'] [u'mortlock', u'injuri', u'cloud'] [u'mayor', u'back', u'visa', u'chang'] [u'multicultur', u'resourc', u'centr', u'defend', u'closur'] [u'mundi', u'take', u'rise', u'star', u'nomin'] [u'nation', u'seek', u'scientif', u'back', u'biofuel'] [u'nation', u'region', u'ambul', u'crisi', u'loom'] [u'communiti', u'group', u'liais', u'polic'] [u'deal', u'aim', u'boost', u'hunter', u'coal', u'export'] [u'servic', u'hop', u'chang', u'health', u'dispar'] [u'state', u'nation', u'presid', u'reunit'] [u'zealand', u'swear', u'solomon', u'deputi', u'polic'] [u'nixon', u'polic', u'associ', u'clash', u'plan', u'chang'] [u'older', u'asthma', u'hide', u'amid', u'public', u'misconcept'] [u'olymp', u'race', u'narrow', u'pari', u'london'] [u'opposit', u'leader', u'warn', u'sweetheart', u'stoush'] [u'opposit', u'say', u'speed', u'camera', u'cost', u'high'] [u'opposit', u'seek', u'cost', u'legal', u'action'] [u'opposit', u'surpris', u'citrus', u'group'] [u'outback', u'promot', u'nation', u'approach'] [u'packag', u'scare', u'ahead', u'bush', u'denmark', u'visit'] [u'panathinaiko', u'deni', u'breakdown', u'aloisi', u'deal'] [u'panther', u'chief', u'outlin', u'debt', u'reduct', u'plan'] [u'pathologist', u'urg', u'govt', u'centralis', u'health', u'fund'] [u'patient', u'isol', u'shortag', u'nurs'] [u'photo', u'opportun', u'frame', u'thief'] [u'pink', u'floyd', u'live', u'profit', u'chariti'] [u'pipelin', u'gain', u'real', u'momentum', u'minist', u'say'] [u'polic', u'car', u'damag', u'pursuit'] [u'polic', u'investig', u'bomb'] [u'polic', u'probe', u'lake', u'macquari', u'shoot'] [u'polic', u'warn', u'farmer', u'confin', u'stock'] [u'polic', u'decid', u'footbal', u'brawl', u'charg'] [u'poll', u'news'] [u'port', u'author', u'beat', u'fight', u'nois'] [u'port', u'urg', u'ride', u'mine', u'boom'] [u'public', u'unlik', u'worri'] [u'quak', u'hit', u'indonesia', u'sumatra'] [u'rail', u'volunt', u'fall', u'tragic', u'death'] [u'rail', u'worker', u'tool', u'honour', u'colleagu'] [u'rain', u'aid', u'hunter', u'fish', u'stock'] [u'rain', u'damag', u'soar'] [u'remain', u'identifi', u'miss', u'rocki', u'woman'] [u'repair', u'flood', u'damag', u'road'] [u'research', u'spotlight', u'drought', u'educ', u'link'] [u'resourc', u'fuel', u'market', u'climb'] [u'return', u'passeng', u'train', u'servic', u'loom'] [u'river', u'inquiri', u'attract', u'hundr'] [u'road', u'crash', u'victim', u'identif', u'time'] [u'robbi', u'mcewen', u'speak'] [u'rspca', u'call', u'help', u'anim', u'abus'] [u'safin', u'play', u'franc', u'davi'] [u'govt', u'reject', u'dpps', u'push', u'upgrad'] [u'sale', u'order', u'boost', u'servic', u'sector'] [u'santo', u'increas', u'product', u'tipperari'] [u'sanyo', u'job'] [u'sasser', u'worm', u'suspect', u'trial'] [u'stand', u'firm', u'teacher', u'disput'] [u'scholarship', u'offer', u'hope', u'age', u'care', u'nurs'] [u'scientist', u'claim', u'ancient', u'footprint'] [u'offend', u'extradit'] [u'shoalhaven', u'join', u'fight', u'child', u'abus'] [u'month', u'mackay', u'fare'] [u'small', u'turnout', u'naidoc', u'week', u'activ'] [u'shop', u'sell', u'recal', u'bar'] [u'coast', u'urg', u'avoid', u'gold', u'coast', u'mistak'] [u'surfer', u'death', u'remain', u'mysteri'] [u'talk', u'chemic', u'offer', u'earli', u'cancer', u'diagnosi'] [u'teacher', u'half', u'strike'] [u'teacher', u'fear', u'subject', u'drop'] [u'european', u'trade', u'mark', u'holiday'] [u'year', u'project', u'focus', u'age', u'popul'] [u'children', u'educ', u'studi'] [u'chang', u'spark', u'boycott', u'govt', u'committe'] [u'union', u'want', u'latrob', u'valley', u'coal', u'fire', u'power'] [u'confirm', u'civilian', u'death', u'afghan', u'strike'] [u'vail', u'chip', u'mcdonald', u'talk'] [u'veget', u'group', u'endors', u'plan', u'revitalis'] [u'veteran', u'actress', u'die'] [u'back', u'mcgauran', u'agricultur', u'appoint'] [u'video', u'link', u'offer', u'persuad', u'corbi', u'wit'] [u'vizard', u'accept', u'penalti'] [u'vizard', u'maintain', u'chariti', u'work'] [u'water', u'bomb', u'help', u'contain', u'bushfir'] [u'water', u'pip', u'worri', u'health', u'expert'] [u'weekend', u'detent', u'plan', u'mean', u'mini', u'jail'] [u'welfar', u'group', u'urg', u'pension', u'boost'] [u'welsh', u'reveal', u'virus', u'battl'] [u'tread', u'care', u'anderson'] [u'western', u'power', u'worker', u'stage', u'hour', u'strike'] [u'suspend', u'somalia', u'hijack'] [u'whale', u'birth', u'wit', u'urg', u'come', u'forward'] [u'ask', u'swim', u'star', u'hawk'] [u'white', u'eye', u'tour', u'glori'] [u'wild', u'woe', u'rise'] [u'william', u'prais', u'webber', u'aussi', u'grit'] [u'wind', u'hamper', u'search', u'miss'] [u'winemak', u'home', u'brand', u'plan', u'hard', u'swallow'] [u'woman', u'bodi', u'shed', u'home'] [u'women', u'award', u'damag', u'malici', u'prosecut'] [u'worker', u'kill', u'rail', u'line', u'construct'] [u'youth', u'camp', u'close', u'upgrad'] [u'detain', u'aviat', u'secur'] [u'actu', u'fear', u'slower', u'worker', u'face', u'minimum', u'wage'] [u'afghanistan', u'probe', u'civilian', u'death'] [u'cruiser', u'outback', u'quick', u'visit'] [u'black', u'prim', u'whitewash', u'lion'] [u'aloisi', u'deal', u'cancel', u'panathinaiko'] [u'sell', u'centenari', u'hous'] [u'back', u'bigger', u'role', u'public', u'hospit'] [u'angelina', u'joli', u'adopt', u'aid', u'orphan'] [u'angler', u'ask', u'harbour', u'fee', u'feedback'] [u'argentina', u'star', u'davi', u'clash'] [u'armidal', u'woman', u'wheelchair', u'linedanc', u'effort'] [u'asic', u'defend', u'action', u'vizard', u'case'] [u'aspirin', u'vitamin', u'help', u'cancer'] [u'austmin', u'set', u'export', u'target'] [u'australian', u'execut', u'escap', u'prosecut'] [u'award', u'win', u'screenwrit', u'ernest', u'lehman', u'die'] [u'resum', u'bid', u'iraqi', u'wheat', u'contract'] [u'beatti', u'happi', u'formula'] [u'citi', u'final', u'pitch', u'olymp'] [u'blue', u'claim', u'origin', u'seri'] [u'blue', u'readi', u'face', u'maroon', u'say', u'stuart'] [u'boonen', u'level', u'lanc'] [u'bounti', u'fail', u'prove', u'tasmanian', u'tiger', u'exist'] [u'bowen', u'anticip', u'role', u'origin', u'decid'] [u'caution', u'epirb'] [u'bridg', u'name', u'competit', u'open'] [u'buchanan', u'slam', u'lumber', u'england'] [u'bunburi', u'look', u'govt', u'fund', u'cathedr'] [u'govt', u'boost', u'credit', u'initi'] [u'cannabi', u'treatment', u'clinic', u'aim', u'august', u'open'] [u'carrol', u'doesnt', u'scare', u'daley'] [u'carr', u'vow', u'safeti', u'determin', u'cross', u'citi', u'tunnel'] [u'seal', u'insur', u'sale', u'deal', u'worth'] [u'chelsea', u'reclaim', u'crespo'] [u'china', u'face', u'compani', u'takeov'] [u'chocol', u'bar', u'contain', u'pest', u'poison'] [u'clark', u'head', u'cricket', u'centr', u'excel'] [u'climat', u'consult', u'say', u'climat', u'chang'] [u'club', u'feel', u'impact', u'smoke', u'law'] [u'club', u'smoker', u'deal', u'restrict'] [u'coal', u'firm', u'welcom', u'rail', u'fund', u'pledg'] [u'coast', u'guard', u'expect', u'rescu', u'boat', u'wait'] [u'coast', u'resid', u'urg', u'health'] [u'cobargo', u'resid', u'mail', u'deliveri'] [u'coffe', u'produc', u'seek', u'spray', u'compo'] [u'cole', u'back', u'australian', u'product', u'label', u'chang'] [u'committe', u'hope', u'quick', u'drought', u'fund', u'relief'] [u'communiti', u'urg', u'cane', u'toad', u'trap'] [u'contamin', u'soil', u'estim', u'differ', u'darwin'] [u'coron', u'find', u'murder', u'commit'] [u'coulthard', u'sign', u'bull'] [u'council', u'back', u'extend', u'rebat', u'deadlin'] [u'council', u'confid', u'insur', u'coverag'] [u'council', u'defer', u'decis'] [u'council', u'highlight', u'treatment', u'wait'] [u'council', u'lumber', u'insur'] [u'council', u'rethink', u'anim', u'control', u'polici'] [u'council', u'say', u'report', u'rate', u'rise', u'wrong'] [u'council', u'discuss', u'road', u'recoveri', u'fund'] [u'council', u'indigen', u'job', u'plan'] [u'court', u'deliv', u'fin', u'south', u'coast', u'fisher'] [u'crew', u'contain', u'kununurra'] [u'crow', u'real', u'deal', u'wallac'] [u'date', u'reopen', u'corbi', u'hear', u'lawyer', u'say'] [u'demand', u'child', u'pornographi', u'grow', u'forum', u'tell'] [u'detain', u'indonesian', u'milit', u'face', u'terror'] [u'develop', u'process', u'begin', u'shop', u'centr', u'plan'] [u'dinosaur', u'footprint', u'alaska'] [u'diplomat', u'attack', u'iraq'] [u'owner', u'ask', u'help', u'avoid', u'posti', u'attack'] [u'downer', u'hail', u'endur', u'australia', u'tie'] [u'downer', u'request', u'corbi', u'wit', u'list'] [u'driver', u'leav', u'harbour', u'bridg'] [u'eat', u'disord', u'clinic', u'open', u'perth'] [u'employ', u'come', u'grip', u'workplac'] [u'engin', u'win', u'fellowship', u'water', u'suppli', u'studi'] [u'england', u'refus', u'play', u'test', u'karachi'] [u'famili', u'senat', u'urg', u'govt', u'explain'] [u'farmer', u'urg', u'adopt', u'mules', u'accredit'] [u'farm', u'group', u'see', u'good', u'product'] [u'fear', u'homeless', u'rise', u'clarenc', u'valley'] [u'feder', u'fund', u'boost', u'airport', u'secur'] [u'festiv', u'mark', u'dalai', u'lama', u'birthday'] [u'fishermen', u'want', u'tariff', u'import', u'quota'] [u'hutu', u'rebel', u'burundi', u'elect'] [u'senat', u'criticis', u'vote'] [u'protest', u'clash', u'polic'] [u'deal', u'increas', u'likelihood', u'pipelin'] [u'geldof', u'get', u'angri', u'squabbl'] [u'gerrard', u'opt', u'stay', u'liverpool'] [u'governor', u'draw', u'brigalow', u'conserv', u'stoush'] [u'govt', u'accus', u'play', u'wind', u'farm', u'polit'] [u'govt', u'embarrass', u'immigr', u'dept'] [u'govt', u'larapinta', u'land', u'releas', u'price'] [u'govt', u'urg', u'settl', u'road', u'surfac', u'compo', u'claim'] [u'govt', u'urg', u'step', u'drug', u'abus', u'treatment', u'program'] [u'govt', u'wari', u'fenc', u'plan'] [u'guidelin', u'seek', u'govt', u'fund'] [u'guild', u'lament', u'show', u'door'] [u'hagan', u'confid', u'nutley', u'rise', u'occas'] [u'hamstr', u'injuri', u'rule', u'latham'] [u'hamstr', u'injuri', u'rule', u'latham', u'wallabi'] [u'har', u'race', u'club', u'meet', u'minist'] [u'heifer', u'market', u'boom', u'mexico'] [u'hop', u'cane', u'toad', u'trap', u'pest'] [u'hop', u'minist', u'visit', u'recherch'] [u'hop', u'agricultur', u'minist', u'support', u'citrus'] [u'hospit', u'exec', u'court', u'morri', u'inquiri'] [u'howard', u'offens', u'chang'] [u'howard', u'seal', u'ministri', u'line'] [u'howard', u'urg', u'state', u'develop', u'formula'] [u'ident', u'twin', u'grow', u'apart'] [u'immigr', u'bungl', u'aggrav', u'condit', u'say'] [u'indonesia', u'reject', u'east', u'timor', u'right'] [u'indonesia', u'pursu', u'charg', u'newmont'] [u'injur', u'daveydenko', u'davi', u'fit', u'battl'] [u'rat', u'stay', u'hold'] [u'intern', u'race', u'head', u'latrob'] [u'internet', u'phone', u'network', u'govern'] [u'face', u'tough', u'decis', u'game', u'rogg'] [u'isinbayeva', u'break', u'pole', u'vault', u'world', u'record'] [u'isra', u'troop', u'brace', u'gaza', u'pull'] [u'johncock', u'return', u'hing', u'fit', u'play'] [u'judg', u'order', u'stylist', u'memorabilia'] [u'kangaroo', u'consid', u'play', u'hale', u'eagl'] [u'laidley', u'consid', u'play', u'hale', u'eagl'] [u'liber', u'candid', u'oppos', u'forestrysa', u'privatis'] [u'london', u'pari', u'showdown'] [u'london', u'award', u'game'] [u'lorikeet', u'feed', u'harm', u'good'] [u'maffra', u'footi', u'club', u'head'] [u'magpi', u'admit', u'take', u'punt', u'didak', u'charg'] [u'magpi', u'appeal', u'didak', u'suspens'] [u'magpi', u'challeng', u'didak'] [u'die', u'echuca', u'road', u'crash'] [u'plead', u'guilti', u'arm', u'robberi', u'hammer'] [u'face', u'hear', u'fatal', u'crash'] [u'marina', u'plan', u'rais', u'council', u'concern'] [u'maywald', u'ashbourn', u'privat', u'inquiri'] [u'media', u'spotlight', u'visa', u'refuge', u'group', u'say'] [u'medic', u'insur', u'appeal', u'tribun', u'decis'] [u'melbourn', u'lose', u'heineken', u'classic'] [u'millionair', u'satisfact'] [u'minist', u'silent', u'scientif', u'basi', u'uranium'] [u'minist', u'prepar', u'swear', u'ceremoni'] [u'miss', u'girl', u'safe', u'neighbour', u'hous'] [u'miss', u'woman', u'safe'] [u'fear', u'school', u'scheme', u'day', u'number'] [u'accus', u'kill', u'babi', u'permit', u'visit'] [u'murder', u'probe', u'continu', u'confirm'] [u'natur', u'reserv', u'plan'] [u'cancer', u'hope', u'stem', u'pineappl'] [u'drought', u'counsellor', u'nyngan'] [u'drought', u'relief', u'coordin', u'south', u'west'] [u'scheme', u'help', u'burni', u'student', u'school'] [u'newspap', u'erect', u'killer', u'highway', u'billboard'] [u'zealand', u'ask', u'zimbabw'] [u'plan', u'seek', u'eas', u'rural', u'worker', u'shortag'] [u'domin', u'origin'] [u'grant', u'propos', u'predict', u'simplist'] [u'govt', u'seek', u'cost', u'pool', u'fenc', u'reinspect'] [u'nude', u'protest', u'target', u'pamplona', u'bull'] [u'nurs', u'shortag', u'delay', u'open', u'psych'] [u'occup', u'surviv', u'geraldton', u'hous', u'blaze'] [u'oppos', u'chang', u'boost', u'labor', u'support'] [u'opposit', u'appli', u'pressur', u'rocki', u'emerg'] [u'opposit', u'call', u'investig', u'ashbourn'] [u'opposit', u'highlight', u'polic', u'fear'] [u'opposit', u'look', u'upper', u'hous', u'amend', u'inquiri'] [u'orang', u'council', u'step', u'closer', u'appoint'] [u'origin', u'underway', u'brisban'] [u'oversea', u'visitor', u'number', u'fall'] [u'palmer', u'inquiri', u'say', u'care', u'inadequ'] [u'panda', u'give', u'birth', u'twin'] [u'panther', u'club', u'member', u'bus', u'meet'] [u'patel', u'extradit', u'time', u'polic', u'chief'] [u'perth', u'resid', u'wake', u'frosti', u'morn'] [u'pizza', u'chain', u'report', u'record', u'store', u'growth'] [u'reject', u'union', u'critic', u'chang'] [u'polic', u'prepar', u'protest'] [u'polic', u'warn', u'farmer', u'secur', u'conscious'] [u'protest', u'flare', u'leader', u'head', u'scotland'] [u'pump', u'station', u'reopen'] [u'qanta', u'recruit', u'general', u'cosgrov'] [u'govt', u'announc', u'blueprint', u'bush'] [u'negoti', u'data', u'swap'] [u'stop', u'hold', u'femal', u'immigr', u'detaine'] [u'rain', u'help', u'eas', u'water', u'shortag'] [u'rapist', u'remand', u'custodi', u'sentenc'] [u'rat', u'like', u'stay', u'economist'] [u'seek', u'apolog', u'compens'] [u'rdaa', u'talk', u'foreign', u'train', u'doctor', u'import'] [u'region', u'victoria', u'fast', u'rail', u'safeti'] [u'relentless', u'wrap', u'origin', u'seri'] [u'report', u'snow', u'goldfield'] [u'research', u'enlist', u'koala', u'search', u'chlamydia'] [u'reserv', u'bank', u'leav', u'rat', u'unchang'] [u'resid', u'plan', u'breakaway', u'yarrawonga', u'council'] [u'ricki', u'stuart', u'matt', u'king', u'shaun', u'berrigan', u'danni'] [u'road', u'closur', u'hurt', u'tourism'] [u'robert', u'see', u'yellow', u'jersey', u'slip', u'cscs', u'grasp'] [u'russian', u'drag', u'bust', u'take', u'exam', u'sister'] [u'safin', u'miss', u'davi', u'showdown'] [u'schizophrenia', u'drug', u'trial', u'show', u'promis', u'result'] [u'skin', u'cancer', u'unit', u'receiv', u'research', u'fund', u'boost'] [u'korean', u'develop', u'high', u'speed', u'circuit'] [u'sleepwalk', u'teen', u'rescu', u'crane'] [u'state', u'origin', u'highlight', u'packag'] [u'stock', u'sell', u'drag', u'market'] [u'struggl', u'union', u'consid', u'merger'] [u'studi', u'find', u'support', u'clear', u'fell', u'altern'] [u'studi', u'focus', u'lift', u'engin', u'student'] [u'suspect', u'case', u'diseas', u'investig'] [u'teenag', u'ampute', u'case', u'shock', u'brisban', u'doctor'] [u'thai', u'teacher', u'give', u'gun'] [u'kill', u'russian', u'polic', u'station', u'blast'] [u'tour', u'swap', u'yellow', u'ochr'] [u'tropic', u'storm', u'push', u'price', u'higher'] [u'truss', u'feel', u'calder', u'duplic', u'pressur'] [u'arrest', u'biki', u'gang', u'club', u'bust'] [u'union', u'oppos', u'health', u'servic', u'cut'] [u'union', u'lie', u'campaign', u'andrew'] [u'union', u'monitor', u'council', u'shake'] [u'propos', u'cotton', u'subsidi'] [u'victim', u'group', u'seek', u'tougher', u'sentenc', u'repeat'] [u'vieri', u'join', u'milan', u'citi', u'rival', u'inter'] [u'consid', u'scrap', u'holiday', u'payout', u'law'] [u'want', u'gerrard', u'stay', u'say', u'liverpool'] [u'wilkinson', u'henson', u'rule', u'test'] [u'woolgrow', u'tell', u'consid', u'chines', u'market'] [u'workplac', u'relat', u'staff', u'strike', u'contract'] [u'work', u'begin', u'darwin', u'renew', u'fuel', u'plant'] [u'worsfold', u'wari', u'passion', u'kangaroo'] [u'zimbabw', u'polic', u'deni', u'kill', u'demolit'] [u'submiss', u'receiv', u'plan'] [u'agreement', u'reach', u'nestl', u'redund', u'packag'] [u'alcohol', u'crackdown', u'continu', u'indigen'] [u'alic', u'jail', u'child', u'porn', u'imag'] [u'black', u'lion', u'late', u'chang', u'test'] [u'anger', u'vail', u'back', u'away', u'code', u'conduct'] [u'anger', u'follow', u'wife', u'killer', u'sentenc'] [u'specialist', u'quit', u'hobart', u'hospit'] [u'seri', u'blast', u'london', u'report'] [u'dead', u'london', u'blast', u'polic'] [u'attempt', u'protect', u'indigen', u'heritag', u'mine'] [u'auditor', u'question', u'health', u'care', u'deliveri'] [u'aust', u'policeman', u'await', u'rule', u'assault'] [u'averag', u'rate', u'rise', u'hervey', u'resid'] [u'blast', u'rock', u'london', u'underground'] [u'blaze', u'forc', u'supermarket', u'closur'] [u'blue', u'domin', u'forc', u'origin', u'footbal'] [u'bomb', u'kill', u'iraq'] [u'brack', u'open', u'central', u'victorian', u'gold'] [u'britain', u'put', u'olymp', u'celebr', u'hold'] [u'bulldog', u'verg', u'sign', u'darwin', u'deal'] [u'bureaucrat', u'lodg', u'court', u'action', u'stop', u'hospit'] [u'bureaucrat', u'plead', u'guilti', u'child', u'porn', u'charg'] [u'burni', u'council', u'hit', u'phone', u'alderman', u'review'] [u'bush', u'stack', u'bike', u'policeman'] [u'cabinet', u'discuss', u'afghanistan', u'troop', u'redeploy'] [u'campaign', u'begin', u'indian', u'myna', u'bird', u'number'] [u'cancer', u'toxin', u'sydney', u'bore'] [u'cane', u'toad', u'touch', u'base', u'middl', u'darwin'] [u'central', u'move', u'northern', u'elector'] [u'centrelink', u'vineyard', u'crackdown', u'save', u'taxpay'] [u'chao', u'blast', u'rock', u'london', u'tube'] [u'church', u'trio', u'plead', u'guilti', u'bash', u'woman'] [u'claim', u'chines', u'network', u'oper', u'australia'] [u'club', u'play', u'smoke', u'ban', u'impact'] [u'coast', u'feedback', u'assess', u'develop'] [u'olymp', u'champion', u'astut', u'politician'] [u'coffe', u'grower', u'seek', u'compens', u'program'] [u'commonwealth', u'surpris', u'extens'] [u'communiti', u'group', u'consid', u'water', u'transfer', u'plan'] [u'concern', u'air', u'wast', u'plant'] [u'conflict', u'imped', u'govern', u'own', u'compani', u'review'] [u'conserv', u'group', u'anger', u'forestri', u'exclus'] [u'corbi', u'lawyer', u'seek', u'delay', u'hear'] [u'coron', u'reject', u'request', u'investig'] [u'coron', u'find', u'tourist', u'death', u'keep', u'privat'] [u'coron', u'probe', u'trucki', u'death'] [u'council', u'act', u'stop', u'lookout', u'hoon'] [u'council', u'reject', u'crematorium', u'plan'] [u'council', u'finetun', u'bush', u'blueprint'] [u'council', u'talk', u'budget'] [u'council', u'narrow', u'shop', u'centr', u'develop'] [u'coupl', u'central', u'crash'] [u'cutback', u'virgin', u'servic', u'loss', u'union'] [u'dead', u'bird', u'virus', u'confirm', u'migratori'] [u'directori', u'put', u'focus', u'steal', u'generat'] [u'downpour', u'cut', u'outback', u'town'] [u'drug', u'crimin', u'shoot', u'coron'] [u'dust', u'swirl', u'australia'] [u'eagl', u'ring', u'chang', u'roo', u'clash'] [u'econom', u'model', u'local', u'busi', u'plan'] [u'kimberley', u'face', u'hous', u'afford', u'woe'] [u'emot', u'gerrard', u'explain', u'shock', u'liverpool', u'turn'] [u'environment', u'doubt', u'cast', u'diesel', u'plant'] [u'environment', u'issu', u'sore', u'spot', u'govt', u'agenc'] [u'eurobodalla', u'birth', u'centr', u'prove', u'posit'] [u'european', u'collector', u'establish', u'link'] [u'european', u'countri', u'boost', u'secur', u'wake'] [u'famili', u'help', u'alleg', u'arm', u'robber', u'flee'] [u'feder', u'fund', u'age', u'care', u'home'] [u'soldier', u'jail', u'porn', u'charg', u'follow'] [u'forster', u'review', u'highlight', u'coast', u'mental', u'health', u'woe'] [u'fourth', u'threat', u'masterfood'] [u'franc', u'stun', u'olymp', u'loss'] [u'fund', u'help', u'rail', u'line', u'grain', u'transport'] [u'leader', u'gear', u'climat', u'chang', u'debat'] [u'protest', u'march', u'begin', u'scotland'] [u'govt', u'accus', u'road', u'short', u'chang'] [u'govt', u'help', u'drive', u'indigen', u'scheme'] [u'govt', u'know', u'chines', u'activ'] [u'govt', u'hospit', u'doctor', u'shortag'] [u'govt', u'urg', u'listen', u'nation', u'park', u'manag'] [u'govt', u'urg', u'rethink', u'dementia', u'fund', u'snub'] [u'gregan', u'readi', u'physic', u'bok'] [u'grievous', u'bodili', u'harmison', u'wait', u'ash'] [u'group', u'youth', u'attack', u'bakeri', u'worker'] [u'hackett', u'play', u'rivalri'] [u'health', u'servic', u'offer', u'voluntari', u'redund'] [u'high', u'price', u'drag', u'stock', u'lower'] [u'hospit', u'manag', u'decid', u'morri', u'inquiri'] [u'housefir', u'prompt', u'heater', u'warn'] [u'howard', u'condemn', u'london', u'attack'] [u'howard', u'deni', u'backflip', u'guarante'] [u'indigen', u'campaign', u'reject', u'forestri', u'involv'] [u'industri', u'action', u'disrupt', u'health'] [u'isra', u'troop', u'kill', u'palestinian', u'milit', u'west'] [u'joli', u'ethiopia', u'pick', u'adopt', u'babi'] [u'junk', u'food', u'ban', u'school', u'tuckshop'] [u'kid', u'leav', u'high', u'speed', u'pursuit'] [u'langer', u'bullish', u'ahead', u'latest', u'ash', u'challeng'] [u'legisl', u'council', u'chang', u'prompt', u'mix', u'view'] [u'london', u'blast', u'qaeda', u'type', u'pattern', u'analyst'] [u'london', u'celebr', u'game'] [u'london', u'game', u'organis', u'promis', u'best', u'olymp'] [u'london', u'snare', u'olymp'] [u'london', u'terrorist', u'attack', u'rattl', u'global', u'financi'] [u'madrid', u'look', u'time', u'failur'] [u'magpi', u'didak', u'lose', u'appeal', u'suspens'] [u'magpi', u'want', u'didak', u'charg', u'downgrad'] [u'charg', u'glenview', u'sieg'] [u'mandela', u'call', u'solut'] [u'face', u'court', u'fatal'] [u'knife', u'arrest', u'sydney', u'home'] [u'maroon', u'lick', u'wound'] [u'matilda', u'announc', u'squad', u'asian', u'tour'] [u'mayor', u'oppos', u'chang'] [u'mcewen', u'outsprint', u'boonen', u'fifth', u'stage'] [u'meet', u'discuss', u'hospit', u'futur'] [u'miner', u'begin', u'pilbara', u'drill', u'program'] [u'minist', u'ask', u'explain', u'remov', u'patient'] [u'minist', u'prefer', u'servic', u'altern', u'minor'] [u'minist', u'treasur', u'differ', u'telstra', u'sale', u'proceed'] [u'sit', u'seek', u'mass', u'tree', u'plant'] [u'time', u'allow', u'tuna', u'farm', u'comment'] [u'look', u'forward', u'maroochydor', u'medicar'] [u'pleas', u'halimi', u'famili', u'decis'] [u'question', u'patient', u'transport', u'fund'] [u'nation', u'leader', u'brigalow'] [u'netbal', u'score', u'facil', u'fund'] [u'dolphin', u'speci', u'excit', u'world'] [u'guidelin', u'good', u'news', u'beef', u'export'] [u'legisl', u'council', u'boundari', u'today'] [u'paediatrician', u'start', u'gladston', u'hospit'] [u'connect', u'ill', u'extort', u'threat'] [u'excus', u'delay', u'apolog', u'labor'] [u'nomin', u'seek', u'coastal', u'award'] [u'nrma', u'warn', u'driver', u'remain', u'vigil'] [u'take', u'origin', u'seri'] [u'examin', u'energi', u'potenti', u'rock'] [u'winner', u'defeat', u'bloomberg'] [u'obes', u'centr', u'pool', u'nation', u'resourc'] [u'ocean', u'pipelin', u'deliv', u'water'] [u'price', u'scale', u'record', u'high', u'asia'] [u'admiralti', u'hous', u'futur', u'uncertain'] [u'opposit', u'question', u'util', u'suppli'] [u'opposit', u'sound', u'warn', u'upper', u'hous', u'makeov'] [u'opposit', u'warn', u'univers', u'game'] [u'outag', u'leav', u'resid', u'dark'] [u'parent', u'charg', u'son', u'murder'] [u'parliament', u'pass', u'council', u'elect', u'chang'] [u'patel', u'inquiri', u'continu', u'despit', u'legal', u'threat'] [u'patient', u'gaudio', u'reach', u'swiss', u'quarter'] [u'peopl', u'lazi', u'fuel', u'escal', u'obes', u'problem'] [u'philippin', u'leader', u'arroyo', u'ask', u'cabinet', u'resign'] [u'pike', u'highlight', u'health', u'spend'] [u'pilot', u'porsch', u'driver', u'unhurt', u'plane', u'land'] [u'pipelin', u'support', u'seek', u'feder', u'fund'] [u'back', u'guarante'] [u'promis', u'long', u'campaign'] [u'polic', u'charg', u'teen', u'anim', u'bash'] [u'polic', u'concern', u'children', u'access', u'child', u'porn'] [u'polic', u'continu', u'robinval', u'bodi', u'inquiri'] [u'polic', u'dont', u'hesit', u'beach', u'rescu'] [u'polic', u'hail', u'surf', u'rescu'] [u'polic', u'hunt', u'broadbeach', u'attack'] [u'polic', u'hunt', u'store', u'bandit'] [u'polic', u'raid', u'worth', u'drug'] [u'polic', u'seek', u'wit'] [u'ponderosa', u'secessionist', u'guilti', u'fraud'] [u'poppi', u'farmer', u'tri', u'mcdonald', u'boss'] [u'port', u'author', u'back', u'dampier', u'secur', u'boost'] [u'posit', u'paper', u'address', u'asbesto', u'claim'] [u'protest', u'gather', u'outsid', u'propos', u'wooli', u'site'] [u'protest', u'evict', u'supermarket', u'site', u'ralli'] [u'push', u'potato', u'factori', u'run'] [u'amphetamin', u'produc', u'polic'] [u'queen', u'deepli', u'shock', u'london', u'terror', u'attack'] [u'racv', u'stand', u'licenc', u'driver', u'train', u'polici'] [u'rail', u'contractor', u'say', u'heart', u'problem', u'worker'] [u'rapper', u'sentenc', u'year', u'prison'] [u'owe', u'compens'] [u'reason', u'clear', u'terrorist', u'london', u'blair'] [u'regul', u'chang', u'music', u'brisban', u'ear'] [u'report', u'find', u'irrig', u'slash', u'water'] [u'resid', u'group', u'happi', u'master', u'plan', u'snub'] [u'reveng', u'mcewen', u'day', u'frustrat'] [u'rice', u'send', u'deputi', u'asean', u'secur', u'meet'] [u'erupt', u'dismiss'] [u'east', u'centr', u'stage'] [u'safeti', u'review', u'limit', u'train', u'speed'] [u'sandalwood', u'giant', u'sell'] [u'scheme', u'offer', u'career', u'chang', u'worker'] [u'scientist', u'step', u'closer', u'find', u'malaria'] [u'scientist', u'unravel', u'didgeridoo', u'secret'] [u'shark', u'sign', u'bronco', u'forward', u'mapp'] [u'soar', u'price', u'push', u'market'] [u'fatal', u'blast', u'london'] [u'speaker', u'escap', u'prosecut', u'alleg', u'travel'] [u'lanka', u'recal', u'arnold', u'west', u'indi', u'test'] [u'stakehold', u'agre', u'tradit', u'hunt', u'limit'] [u'storm', u'push', u'price', u'record', u'high'] [u'student', u'resign', u'union', u'senat', u'inquiri', u'tell'] [u'surgeri', u'sidelin', u'bode', u'season'] [u'survey', u'reveal', u'chines', u'idiot'] [u'talk', u'wine', u'bottl', u'chat', u'custom'] [u'tasair', u'start', u'canberra', u'servic'] [u'health', u'union', u'threaten', u'strike'] [u'tattersal', u'glitter', u'debut'] [u'teacher', u'recognis', u'indigen', u'effort'] [u'teacher', u'talk', u'reach', u'gridlock'] [u'tear', u'squar', u'moscow', u'learn', u'london'] [u'terror', u'london', u'blast', u'assembl', u'chief'] [u'terrorist', u'group', u'claim', u'respons', u'london'] [u'test', u'result', u'shed', u'light', u'diseas'] [u'toni', u'blair', u'speak', u'summit'] [u'tourist', u'flock', u'mine', u'hall', u'fame'] [u'tour', u'oper', u'fear', u'tougher', u'competit'] [u'townsvill', u'bring', u'mix', u'result'] [u'head', u'highway', u'crash'] [u'psychiatr', u'nurs', u'appoint', u'baxter'] [u'unemploy', u'drop'] [u'union', u'polic', u'commission', u'meet', u'plan'] [u'court', u'jail', u'report', u'leak', u'case'] [u'util', u'chief', u'front', u'estim', u'hear'] [u'vaughan', u'pont', u'seek', u'psycholog', u'point'] [u'govt', u'help', u'drought', u'affect', u'farmer'] [u'govt', u'strike', u'deal', u'retail', u'food'] [u'liber', u'catch', u'intern', u'stoush'] [u'newspap', u'buy', u'geraldton', u'asset'] [u'reject', u'leav', u'payout', u'comparison'] [u'terror', u'continu', u'bush'] [u'review', u'accident', u'death', u'defenc'] [u'wheatbelt', u'council', u'meet', u'focus'] [u'wine', u'fight', u'herald', u'start', u'pamplona', u'bull', u'fiesta'] [u'woman', u'guilti', u'murder', u'husband'] [u'work', u'aplenti', u'coal', u'mine', u'reopen'] [u'work', u'begin', u'exmouth', u'power', u'station', u'design'] [u'workcov', u'target', u'retail', u'investig'] [u'world', u'leader', u'condemn', u'london', u'blast'] [u'accus', u'crimin', u'arrest'] [u'admiralti', u'develop', u'drive', u'alderman', u'darwin'] [u'soften', u'drug', u'test'] [u'call', u'medicar', u'fraud', u'claim', u'probe'] [u'ambassador', u'warn', u'issu', u'visa', u'defector'] [u'appeal', u'board', u'restrict', u'say', u'balm'] [u'armstrong', u'thank', u'avoid', u'tour', u'pile'] [u'arthur', u'readi', u'workload', u'argentina'] [u'ashbourn', u'affair', u'committe', u'govt'] [u'attack', u'come', u'blue'] [u'aussi', u'mckain', u'sign', u'romanian', u'club'] [u'aussi', u'underdog', u'status', u'world', u'swim'] [u'australian', u'politician', u'wit', u'chao', u'london'] [u'australian', u'catch', u'london', u'blast'] [u'australian', u'wine', u'good', u'seller'] [u'australia', u'react', u'london', u'bomb'] [u'bali', u'survivor', u'tell', u'london', u'horror'] [u'ballet', u'leap', u'ahead', u'british', u'tour'] [u'bargara', u'run', u'seasid', u'residenti'] [u'basebal', u'softbal', u'drop', u'london', u'game'] [u'beatti', u'hear', u'cruis', u'ship', u'termin', u'opposit'] [u'bellami', u'sign', u'year', u'contract', u'blackburn'] [u'blaze', u'rip', u'chines', u'restaur'] [u'bomb', u'attack', u'stun', u'london'] [u'brack', u'confid', u'game', u'secur'] [u'britain', u'launch', u'major', u'terror', u'probe'] [u'british', u'media', u'delight', u'london', u'parisian', u'gloom'] [u'british', u'muslim', u'leader', u'condemn', u'attack'] [u'british', u'paper', u'mourn', u'attack'] [u'busi', u'usual', u'paper', u'takeov', u'loom'] [u'busselton', u'jetti', u'submiss', u'even', u'divid'] [u'bendigo', u'hous', u'afford', u'meet'] [u'camel', u'racer', u'head', u'west'] [u'cane', u'farmer', u'urg', u'chemic'] [u'central', u'asia', u'seek', u'base', u'pullout', u'deadlin'] [u'chief', u'minist', u'take', u'beatti', u'public'] [u'chines', u'diplomat', u'grant', u'visa'] [u'church', u'servic', u'pray', u'london', u'bomb', u'victim'] [u'citrus', u'canker', u'group', u'disband'] [u'citrus', u'export', u'beat', u'shipment'] [u'claim', u'hotel', u'profit', u'london', u'bomb'] [u'close', u'har', u'race', u'club', u'hope', u'resolut'] [u'coat', u'shock', u'olymp', u'ax'] [u'communiti', u'farewel', u'wagga', u'plane', u'crash', u'victim'] [u'connolli', u'customis', u'freo', u'line', u'dog', u'clash'] [u'consortium', u'target', u'muslim', u'market', u'halal', u'dinner'] [u'costa', u'urg', u'crack', u'dodgi', u'trucki'] [u'council', u'get', u'develop', u'applic', u'rush'] [u'councillor', u'okay', u'review', u'audit'] [u'council', u'releas', u'wast', u'collect', u'survey'] [u'council', u'offer', u'help', u'palm'] [u'crespo', u'return', u'chelsea'] [u'cricket', u'offici', u'review', u'secur', u'bomb'] [u'dairi', u'farmer', u'tell', u'watch', u'brazil', u'milk'] [u'decis', u'hwes', u'futur', u'hold'] [u'devast', u'olymp', u'team', u'return', u'london'] [u'distanc', u'educ', u'help', u'offer', u'remot'] [u'dragon', u'eel', u'squar', u'break'] [u'drought', u'take', u'toll', u'student'] [u'drug', u'gear', u'undergo', u'test'] [u'dutch', u'student', u'shoot', u'aceh'] [u'eagl', u'clash', u'chanc', u'roo', u'earn', u'respect'] [u'eel', u'storm', u'sink', u'dragon'] [u'elder', u'call', u'fraser', u'coast', u'dugong', u'agreement'] [u'elder', u'pedestrian', u'die', u'truck', u'accid'] [u'elector', u'commiss', u'clear', u'shire', u'misconduct'] [u'urg', u'monitor', u'batteri', u'recycl', u'plant'] [u'extra', u'polic', u'patrol', u'perth', u'train', u'station'] [u'eyewit', u'account', u'london', u'blast'] [u'farmer', u'action', u'control', u'feral', u'pig'] [u'farm', u'group', u'welcom', u'drought', u'offer'] [u'feder', u'govt', u'blame', u'doctor', u'shortag'] [u'dead', u'london', u'bomb', u'howard'] [u'fire', u'kill', u'australia', u'giant', u'anim', u'studi'] [u'match', u'feast', u'round'] [u'diplomat', u'chen', u'yonglin', u'grant', u'visa'] [u'frustrat', u'mcewen', u'tour', u'crash'] [u'fund', u'help', u'fight', u'nimbin', u'crime'] [u'agre'] [u'summit', u'resum'] [u'gerrard', u'liverpool', u'fan'] [u'gillespi', u'recent', u'form', u'concern', u'australia'] [u'gippsland', u'woman', u'give', u'local', u'insight', u'london'] [u'glen', u'inn', u'escape', u'face', u'court'] [u'gold', u'coast', u'high', u'thiev', u'favourit'] [u'golden', u'circl', u'unveil', u'logo', u'product', u'rang'] [u'govt', u'get', u'board', u'servic'] [u'govt', u'dark', u'detent', u'centr', u'manag'] [u'govt', u'prais', u'properti', u'purchas'] [u'group', u'threaten', u'attack', u'rome'] [u'hadden', u'odd', u'elector', u'boundari', u'shake'] [u'halloran', u'lawyer', u'begin', u'appeal', u'argument'] [u'heavi', u'rain', u'forecast', u'south', u'coast'] [u'high', u'speed', u'polic', u'chase', u'lead', u'arrest'] [u'holsworthi', u'barrack', u'upgrad'] [u'howard', u'offer', u'support', u'london', u'trip'] [u'hurrican', u'lash', u'jamaica', u'cuba', u'haiti'] [u'feel', u'like', u'boxer', u'say', u'tragic', u'mengin'] [u'injuri', u'black', u'clean', u'sweep'] [u'institut', u'studi', u'affect', u'malaria', u'mice'] [u'isra', u'border', u'polic', u'jail', u'abus', u'robberi'] [u'jail', u'beef', u'secur', u'measur'] [u'januari', u'want', u'serial', u'pest', u'wallabi'] [u'johnson', u'essendon', u'clash'] [u'jone', u'sideshow', u'bok'] [u'kangaroo', u'fall', u'short'] [u'keat', u'say', u'chang', u'pay', u'worker'] [u'killer', u'australian', u'secur', u'guard', u'iraq'] [u'kyli', u'visit', u'cancer', u'patient'] [u'lamb', u'export', u'clear'] [u'lazi', u'ullrich', u'attack', u'forget', u'say'] [u'leader', u'sign', u'condol', u'book'] [u'liber', u'parti', u'director', u'quit', u'work'] [u'liber', u'endors', u'candid', u'unley'] [u'licens', u'board', u'decid', u'alcohol', u'sale'] [u'lifesav', u'servic', u'ponder', u'rescu', u'databas'] [u'lion', u'fan', u'observ', u'minut', u'silenc'] [u'littl', u'pebbl', u'guilti', u'abus'] [u'local', u'prayer', u'say', u'london', u'bomb', u'victim'] [u'lolesi', u'sign', u'west', u'tiger'] [u'london', u'attack', u'despic', u'australian', u'islam', u'group'] [u'london', u'blast', u'pressur', u'phone', u'line'] [u'london', u'blast', u'sign', u'qaeda'] [u'london', u'bomb', u'death', u'toll', u'climb'] [u'london', u'hospit', u'pressur'] [u'london', u'pay', u'price', u'iraq', u'british'] [u'london', u'transport', u'resum'] [u'london', u'theatr', u'cancel', u'show', u'attack'] [u'enrol', u'forc', u'school', u'closur'] [u'magistr', u'declin', u'strip', u'club', u'offer'] [u'mahan', u'lead', u'scrambl', u'illinoi'] [u'burn', u'tongala', u'hous', u'blaze'] [u'charg', u'secur', u'guard', u'attack'] [u'die', u'newcastl', u'brawl'] [u'get', u'year', u'dismemb', u'dealer'] [u'hospit', u'kirribilli', u'incid'] [u'jail', u'kill', u'partner'] [u'jail', u'year', u'tripl', u'abduct'] [u'jail', u'home', u'invas'] [u'jail', u'year'] [u'hospit', u'roadsid', u'burn'] [u'market', u'subdu', u'wake', u'bomb'] [u'market', u'urg', u'stay', u'calm', u'london', u'attack'] [u'maroon', u'hagan', u'coach'] [u'mar', u'snicker', u'bar', u'buri'] [u'maywald', u'citrus', u'industri', u'law'] [u'mcgauran', u'urg', u'boost', u'horticultur', u'protect'] [u'mcgee', u'come', u'wors', u'tour', u'pile'] [u'michael', u'vaughan', u'talk', u'maxwel'] [u'minist', u'detail', u'prison', u'time', u'line'] [u'miss', u'mother', u'safe'] [u'boost', u'account', u'number'] [u'condemn', u'actor', u'farm', u'comment'] [u'play', u'unfair', u'dismiss', u'fear'] [u'stand', u'upper', u'hous', u'chang'] [u'rang', u'cross', u'minist', u'agenda'] [u'free', u'tortur', u'charg'] [u'naidoc', u'week', u'celebr', u'bring', u'elder'] [u'indonesian', u'polic', u'chief', u'swear'] [u'radio', u'boost', u'firefight'] [u'aussi', u'injur', u'blast'] [u'govt', u'boost', u'secur', u'rail', u'network'] [u'govt', u'accus', u'cover', u'diesel', u'spill'] [u'govt', u'urg', u'seek', u'feder', u'drought'] [u'ogradi', u'happi', u'tour', u'start'] [u'prepar', u'south', u'africa', u'test', u'seri'] [u'opposit', u'maintain', u'speaker', u'resign'] [u'origin', u'star', u'beef', u'cowboy', u'murray'] [u'pair', u'face', u'court', u'noosa', u'assault'] [u'patient', u'fight', u'court', u'inquiri', u'continu'] [u'perth', u'go', u'home', u'month', u'freak', u'accid'] [u'philippin', u'confirm', u'case', u'bird'] [u'philippin', u'minist', u'presid', u'resign'] [u'philippin', u'presid', u'stand', u'firm'] [u'diseas', u'fear', u'mount'] [u'group', u'happi', u'probe'] [u'plane', u'miss'] [u'plan', u'track', u'mount', u'panorama'] [u'discuss', u'aust', u'threat', u'level'] [u'polic', u'victim'] [u'polic', u'patrol', u'perth', u'public', u'transport'] [u'polic', u'presenc', u'step', u'melbourn'] [u'polic', u'probe', u'dubbo', u'death', u'seek', u'miss'] [u'polic', u'suspect', u'rapist', u'attack', u'woman'] [u'princ', u'charl', u'camilla', u'visit', u'bomb', u'victim'] [u'public', u'ask', u'dump', u'fish', u'local', u'river'] [u'public', u'ganmain', u'train', u'speed'] [u'qanta', u'offer', u'refund', u'concern', u'travel'] [u'railcorp', u'plan', u'byron', u'land', u'sale'] [u'rain', u'boost', u'water', u'suppli'] [u'rare', u'frog', u'surfac', u'coast', u'delug'] [u'rat', u'crackdown', u'wont', u'leav', u'peopl', u'homeless', u'mayor'] [u'region', u'profil', u'highlight', u'high', u'jobless', u'rate'] [u'religi', u'leader', u'guilti', u'molest', u'girl'] [u'resid', u'warn', u'dump', u'aquarium', u'fish'] [u'retir', u'urg', u'think', u'seachang', u'transit'] [u'ricki', u'pont', u'talk', u'maxwel'] [u'sasser', u'creator', u'get', u'suspend', u'sentenc'] [u'scientist', u'gene', u'mutat', u'melanoma'] [u'score', u'wound', u'botch', u'suicid', u'bomb', u'attempt'] [u'scotland', u'oppos', u'british', u'olymp', u'soccer', u'team'] [u'secur', u'alert', u'close', u'london', u'station'] [u'seven', u'australian', u'injur', u'london', u'attack'] [u'sewerag', u'upgrad', u'get', u'tenterfield'] [u'sign', u'warn', u'driver', u'bruce', u'highway', u'black', u'spot'] [u'silverston', u'say', u'secur', u'paramount'] [u'singleton', u'firm', u'forefront', u'export'] [u'slavkov', u'expel'] [u'special', u'report', u'process', u'consid'] [u'staff', u'evacu', u'melbourn', u'factori'] [u'sister', u'mountain', u'exclus', u'zone', u'remain'] [u'strand', u'english', u'tourist', u'watch', u'bomb', u'horror'] [u'sydney', u'prepar', u'london', u'style', u'attack'] [u'face', u'jail', u'time', u'victoria'] [u'chief', u'reflect', u'intern', u'wrangl'] [u'thousand', u'expect', u'visit', u'tennant'] [u'time', u'run', u'cours', u'submiss'] [u'time', u'devic', u'london', u'report'] [u'tourist', u'strand', u'outback', u'get', u'drench'] [u'trial', u'match', u'annual', u'event'] [u'tribun', u'appeal', u'court', u'say', u'balm'] [u'bomb', u'impedi', u'subsidi', u'talk'] [u'underground', u'line', u'reopen', u'rush', u'hour'] [u'uniform', u'quell', u'firefight', u'train'] [u'high', u'hop', u'veterinari', u'school'] [u'union', u'fight', u'loom', u'food', u'label'] [u'rais', u'terror', u'alert'] [u'wagga', u'communiti', u'farewel', u'plane', u'crash', u'victim'] [u'wallabi', u'readi', u'springbok'] [u'webber', u'expect', u'miracl', u'silverston'] [u'weed', u'growth', u'pose', u'threat'] [u'west', u'tamar', u'cyclist', u'head', u'china'] [u'whistleblow', u'anger', u'move', u'halt', u'morri'] [u'wind', u'farm', u'snub', u'give', u'hope', u'wast', u'dump', u'oppon'] [u'wineri', u'manag', u'unawar', u'contractor', u'woe'] [u'wool', u'grower', u'commit', u'mules', u'deadlin'] [u'world', u'sprinter', u'debat', u'go'] [u'young', u'gippsland', u'farmer', u'nation', u'award'] [u'hospit', u'bed', u'open', u'canberra', u'hospit'] [u'kill', u'india', u'accid'] [u'miss', u'ferri', u'sink'] [u'actress', u'gabor', u'suffer', u'stroke'] [u'alic', u'gear', u'camel'] [u'black', u'complet', u'lion', u'sweep'] [u'qaeda', u'statement', u'claim', u'london', u'bomb'] [u'urg', u'nuttal', u'respons', u'resign'] [u'ashbourn', u'parliamentari', u'probe', u'seek', u'minist'] [u'aspinal', u'name', u'primat', u'anglican', u'church'] [u'attack', u'cricket', u'place', u'say', u'vaughan'] [u'aussi', u'fight', u'life', u'blast'] [u'aussi', u'victim', u'hospit'] [u'australian', u'coupl', u'releas', u'hospit'] [u'bacteria', u'link', u'mouth', u'cancer'] [u'blind', u'report', u'prompt', u'warn', u'impot', u'drug'] [u'driver', u'describ', u'chao', u'blast'] [u'campbel', u'endors', u'effort', u'climat', u'chang'] [u'conman', u'face', u'order', u'repay', u'indigen', u'victim'] [u'construct', u'giant', u'formalis', u'indigen', u'agreement'] [u'daniel', u'seiz', u'lead', u'ohio'] [u'dead', u'hurrican', u'denni', u'weaken'] [u'death', u'toll', u'exceed'] [u'defiant', u'ullrich', u'pledg', u'mountain', u'attack'] [u'dope', u'lack', u'player', u'hurt', u'basebal', u'rogg'] [u'eagl', u'ground', u'despit', u'win', u'way'] [u'move', u'leaderboard', u'scottish', u'open'] [u'eritrean', u'communiti', u'give', u'thank', u'festiv'] [u'hospit', u'newcastl', u'freeway', u'crash'] [u'florida', u'gulf', u'coast', u'brace', u'killer', u'hurrican'] [u'rebel', u'leader', u'join', u'govern'] [u'back', u'plan', u'palestinian'] [u'leader', u'agre', u'doubl', u'africa'] [u'hold', u'promis', u'geldof'] [u'gerrard', u'carragh', u'sign', u'liverpool', u'deal'] [u'gosper', u'deni', u'term'] [u'govern', u'launch', u'campaign'] [u'grave', u'fear', u'hold', u'australian'] [u'heavi', u'snow', u'hamper', u'search', u'miss', u'plane'] [u'hick', u'health', u'deterior', u'father', u'say'] [u'hick', u'support', u'hold', u'vigil'] [u'hurrican', u'roar', u'caribbean'] [u'india', u'centr', u'swamp', u'rail', u'queri'] [u'indigen', u'contribut', u'celebr', u'naidoc'] [u'indonesian', u'presid', u'wahid', u'hospit'] [u'indonesian', u'fish', u'boat', u'destroy'] [u'islam', u'council', u'urg', u'cautious', u'respons', u'blast'] [u'jewish', u'group', u'welcom', u'accus', u'crimin', u'arrest'] [u'land', u'right', u'ralli', u'mark', u'naidoc', u'week'] [u'larkham', u'outstand', u'wallabi', u'crush', u'bok'] [u'lewi', u'lead', u'illinoi'] [u'lion', u'notch', u'fifth', u'straight'] [u'london', u'search', u'bomb', u'victim'] [u'london', u'dayer', u'ahead', u'plan'] [u'london', u'polic', u'search', u'wreckag', u'clue'] [u'london', u'polic', u'bomb', u'terrorist'] [u'malaysian', u'court', u'jail', u'author', u'anwar', u'book'] [u'marin', u'launch', u'oper', u'iraq'] [u'mark', u'minichiello', u'luke', u'macdougal'] [u'mcewen', u'level', u'score', u'rival', u'boonen'] [u'mclaren', u'pace', u'silverston'] [u'studi', u'nuclear', u'power', u'europ'] [u'music', u'legend', u'perform', u'vandross', u'memori'] [u'nasa', u'say', u'shoot', u'distant', u'comet', u'leav', u'powder'] [u'nigerian', u'sentenc', u'stone'] [u'novelist', u'claud', u'simon', u'die'] [u'south', u'coast', u'get', u'soak'] [u'secur', u'steadi', u'wake', u'london', u'bomb'] [u'overcrowd', u'forc', u'prison', u'transfer'] [u'pittman', u'fall', u'short', u'rome'] [u'polic', u'hunt', u'london', u'bomber'] [u'power', u'pile', u'miseri', u'dee'] [u'power', u'surg', u'lead', u'dee'] [u'presid', u'mount', u'rushmor', u'facial'] [u'priddi', u'steal', u'late', u'panther'] [u'properti', u'develop', u'miss', u'plane'] [u'publican', u'demand', u'action', u'rugbi', u'tour', u'smash'] [u'camel', u'race', u'season', u'kick'] [u'rabbitoh', u'shock', u'shark'] [u'relief', u'fund', u'launch', u'london', u'bomb', u'victim'] [u'restaur', u'offer', u'diner', u'pitch', u'blind', u'date'] [u'robbi', u'mcewen', u'allan', u'davi'] [u'search', u'miss', u'plane', u'call'] [u'secur', u'team', u'head', u'assist', u'blast', u'probe'] [u'concern', u'zealand', u'miss'] [u'south', u'africa', u'shock', u'mexico', u'open'] [u'springborg', u'premier', u'say', u'hanson'] [u'station', u'redevelop', u'chang', u'embarrass'] [u'stephen', u'larkham', u'matt', u'giteau', u'john', u'smite'] [u'storm', u'blot', u'raider'] [u'swan', u'close'] [u'swift', u'continu', u'win'] [u'sydney', u'coupl', u'releas', u'london', u'hospit'] [u'taliban', u'claim', u'kill', u'soldier'] [u'tasmanian', u'sever', u'injur', u'london', u'attack'] [u'terrorist', u'threat', u'heighten', u'downer'] [u'foreign', u'minist', u'say', u'intellig'] [u'thompson', u'lion', u'line'] [u'hospit', u'dead', u'north', u'accid'] [u'tiger', u'coach', u'terri', u'wallac'] [u'tiger', u'domin', u'bomber'] [u'tiger', u'narrow', u'half', u'time', u'lead'] [u'tour', u'face', u'mountain', u'climb'] [u'aussi', u'critic', u'injur', u'blast'] [u'kill', u'injur', u'crash', u'franc'] [u'underground', u'bomb', u'simultan'] [u'union', u'say', u'worker', u'pull', u'mass', u'sicki'] [u'lose', u'lead', u'scienc', u'engin', u'studi'] [u'refus', u'franc', u'flight', u'entri'] [u'attack', u'north', u'korea', u'rice'] [u'venus', u'target', u'myskina', u'open'] [u'vietnam', u'say', u'restaur', u'serv', u'gild', u'free'] [u'violenc', u'forc', u'nurs', u'quit', u'union', u'say'] [u'wallabi', u'dismiss', u'talk', u'spite', u'contest'] [u'warn', u'post', u'counti', u'centuri'] [u'woman', u'jail', u'zeta', u'jone', u'death', u'threat'] [u'world', u'market', u'shake', u'london', u'bomb', u'attack'] [u'world', u'deal', u'caus', u'terror', u'blair'] [u'injur', u'turkish', u'bomb', u'attack'] [u'million', u'order', u'evacu', u'hurrican'] [u'evacu', u'birmingham', u'secur', u'alert'] [u'kill', u'baghdad', u'suicid', u'bomb'] [u'advic', u'paedophil', u'sentenc', u'week'] [u'alonso', u'seiz', u'british', u'grand', u'prix', u'pole'] [u'anglican', u'primat', u'differ', u'kettl', u'fish'] [u'armstrong', u'discov', u'weak', u'vino', u'attack'] [u'australia', u'right', u'track', u'say', u'buchanan'] [u'bayliss', u'fourth', u'qualifi', u'motogp'] [u'beatti', u'back', u'health', u'minist', u'amid', u'resign'] [u'birmingham', u'centr', u'empti', u'london', u'probe', u'continu'] [u'bishop', u'reject', u'call', u'arroyo', u'quit'] [u'black', u'dump', u'howlett', u'nation'] [u'bomb', u'victim', u'rememb'] [u'braith', u'anasta', u'wairangi', u'koopu'] [u'british', u'mosqu', u'alight'] [u'cathol', u'bishop', u'split', u'support', u'philippin'] [u'chen', u'claim', u'proof', u'chines', u'ring'] [u'child', u'abus', u'survivor', u'criticis', u'anglican'] [u'council', u'urg', u'press', u'afford', u'hous'] [u'crow', u'surviv', u'final', u'quarter', u'fade'] [u'dead', u'hurrican', u'denni', u'gather', u'strength'] [u'dead', u'storm', u'sydney'] [u'defector', u'urg', u'chines', u'offici', u'step'] [u'diabet', u'awar', u'campaign', u'begin'] [u'discoveri', u'astronaut', u'arriv', u'florida'] [u'docker', u'roll', u'dog', u'west'] [u'dozen', u'arrest', u'italian', u'secur', u'oper'] [u'dozen', u'fear', u'drown', u'indonesia', u'ferri', u'sink'] [u'drug', u'prison', u'figur', u'disgrac', u'lib'] [u'england', u'aust'] [u'evacu', u'order', u'hurrican', u'head', u'coast'] [u'famili', u'miss', u'relat', u'tell'] [u'famili', u'friend', u'gather', u'corbi', u'birthday'] [u'fast', u'finish', u'knight', u'stun', u'cowboy'] [u'ferguson', u'unfaz', u'ferdinand', u'deadlock'] [u'follow', u'attack', u'like', u'say', u'analyst'] [u'atsic', u'boss', u'win', u'award'] [u'wound', u'round', u'bull', u'run'] [u'giant', u'panda', u'give', u'birth'] [u'govt', u'blame', u'labor', u'detent', u'centr', u'delay'] [u'govt', u'defend', u'prison', u'manag', u'drug'] [u'govt', u'offer', u'financi', u'assist', u'counsel'] [u'govt', u'nurs', u'contract', u'arrang', u'fail'] [u'gregan', u'clear', u'damag'] [u'take', u'lead', u'ohio'] [u'health', u'team', u'collect', u'rave', u'parti', u'drug', u'data'] [u'henri', u'poke', u'woodward', u'seri', u'whitewash'] [u'heritag', u'list', u'tree', u'attack'] [u'hick', u'need', u'vegemit', u'say', u'habib'] [u'hiddink', u'firm', u'socceroo', u'report'] [u'howard', u'announc', u'bomb', u'victim'] [u'hurrican', u'denni', u'head', u'gulf', u'coast'] [u'idea', u'festiv', u'record', u'turn'] [u'immigr', u'head', u'resign'] [u'inform', u'express', u'spread', u'social', u'servic', u'messag'] [u'japan', u'launch', u'satellit', u'probe', u'black', u'hole'] [u'labor', u'urg', u'govt', u'step', u'rail', u'secur'] [u'labor', u'support', u'troop', u'commit', u'afghanistan'] [u'lafeb', u'hold', u'nerv', u'share', u'scottish', u'open', u'lead'] [u'leader', u'condemn', u'mosqu', u'attack'] [u'lewi', u'cruis', u'illinoi'] [u'lion', u'excit', u'eagl', u'clash'] [u'local', u'rider', u'win', u'camel', u'time'] [u'london', u'blast', u'prompt', u'chemic', u'regul'] [u'london', u'bomb', u'attack', u'wont', u'sway', u'afghan', u'troop', u'decis'] [u'london', u'polic', u'bomb', u'rip'] [u'london', u'public', u'event', u'resum', u'shadow', u'bomb'] [u'luxembourg', u'decid', u'treati'] [u'kill', u'wild', u'weather', u'hit', u'coast'] [u'dead', u'iraq', u'suicid', u'blast'] [u'mcgee', u'happi', u'hill'] [u'michael', u'hagan', u'graham', u'murray'] [u'miln', u'boot', u'saint', u'slaughter', u'blue'] [u'mine', u'compani', u'receiv', u'gold', u'survey', u'result'] [u'asio', u'chief', u'appoint'] [u'korea', u'agre', u'nuclear', u'talk'] [u'bodi', u'formal', u'identifi', u'polic'] [u'terrorist', u'devic', u'birmingham', u'polic'] [u'opal', u'buyer', u'trade', u'gem', u'winton'] [u'opal', u'china'] [u'opposit', u'keep', u'pressur', u'arroyo'] [u'defend', u'vanston', u'wake', u'dept', u'head'] [u'polic', u'deni', u'london', u'link', u'birmingham', u'lift'] [u'pont', u'elect', u'field', u'lord'] [u'prayer', u'say', u'london', u'bomb', u'victim'] [u'primat', u'urg', u'church', u'proactiv'] [u'health', u'minist', u'reject', u'resign', u'call'] [u'rabbitoh', u'reliev', u'lose', u'streak'] [u'rainbow', u'warrior', u'sink', u'rememb', u'year'] [u'rescu', u'author', u'hope', u'resum', u'aerial', u'search'] [u'rural', u'dental', u'servic', u'joke'] [u'safeti', u'watchdog', u'probe', u'alleg', u'armi', u'bulli'] [u'search', u'miss', u'plane', u'widen'] [u'ship', u'industri', u'reflect', u'iron', u'baron', u'spill'] [u'afghan', u'policemen', u'behead'] [u'smith', u'smash', u'tripl', u'centuri'] [u'srebrenica', u'victim', u'take', u'anniversari', u'burial'] [u'stanhop', u'welcom', u'organ', u'donor', u'rise'] [u'steve', u'folk', u'toni', u'kemp'] [u'suspici', u'death', u'investig'] [u'taliban', u'claim', u'miss', u'soldier', u'behead'] [u'tasmanian', u'catch', u'blast', u'expect', u'recov'] [u'anglican', u'church', u'australia', u'elect'] [u'head', u'australia', u'organis', u'asio'] [u'anasta', u'spark', u'bulldog', u'triumph'] [u'tiger', u'rack', u'trot'] [u'sheen', u'john', u'cartwright'] [u'britain', u'plan', u'major', u'iraq', u'withdraw', u'report'] [u'venus', u'earth', u'moscow'] [u'wallabi', u'sour', u'goug', u'claim'] [u'weather', u'continu', u'restrict', u'plane', u'search'] [u'weather', u'hinder', u'search', u'miss', u'plane'] [u'ween', u'final', u'get', u'win', u'feel'] [u'hail', u'africa', u'initi'] [u'wild', u'weather', u'sydney'] [u'win', u'kestrel', u'darter'] [u'woman', u'arrest', u'wake', u'drug', u'bust'] [u'academ', u'label', u'petrol', u'sniff', u'program', u'failur'] [u'act', u'presid', u'win', u'kyrgyz', u'elect', u'landslid'] [u'campaign', u'focus', u'diabet', u'diagnosi'] [u'afghan', u'secur', u'forc', u'target', u'latest', u'violenc'] [u'anglican', u'leader', u'join', u'debat'] [u'studi', u'abroad', u'deal'] [u'armstrong', u'lose', u'yellow', u'rasmussen', u'win', u'stage'] [u'aspinal', u'expert', u'costello'] [u'rise'] [u'attack', u'kill', u'dozen', u'iraq'] [u'aussi', u'miss', u'bomb', u'victim'] [u'aussi', u'look', u'win', u'start', u'argentina'] [u'aust', u'bank', u'posit', u'report', u'card'] [u'australia', u'ask', u'japan', u'hold', u'beef', u'tariff', u'steadi'] [u'australian', u'fisher', u'accus', u'help', u'shark'] [u'author', u'clarifi', u'opposit', u'shift', u'claim'] [u'crowd', u'celebr', u'naidoc', u'week', u'alic', u'spring'] [u'save', u'crime', u'victim', u'take', u'stand'] [u'bird', u'watcher', u'say', u'govt', u'right', u'decis', u'wind'] [u'blue', u'stare', u'barrel', u'wooden', u'spoon'] [u'bodi', u'recov', u'london', u'bomb', u'site'] [u'bomb', u'attack', u'wound', u'turkey'] [u'bomber', u'rebuild', u'say', u'sheedi'] [u'book', u'highlight', u'women', u'treatment', u'indigen'] [u'brack', u'highlight', u'game', u'boost'] [u'brett', u'interview'] [u'briton', u'mark', u'anniversari', u'wwii'] [u'burial', u'mark', u'anniversari', u'srebrenica', u'genocid'] [u'busi', u'chamber', u'call', u'job', u'boost'] [u'farmer', u'practis', u'human', u'mules'] [u'canker', u'program', u'continu', u'despit', u'group', u'disband'] [u'care', u'urg', u'tassi', u'devil', u'diseas', u'declar'] [u'carr', u'choos', u'site', u'desalin', u'plant'] [u'cattl', u'price', u'sizzl', u'suppli'] [u'champ', u'iron', u'rival', u'time'] [u'charg', u'follow', u'chase', u'polic'] [u'china', u'blast', u'australia', u'defector', u'visa'] [u'china', u'blast', u'kill', u'trap', u'score'] [u'chines', u'compani', u'develop', u'aid', u'drug'] [u'chopper', u'begin', u'search', u'miss', u'coupl'] [u'clark', u'clinch', u'scottish', u'open'] [u'comment', u'captain'] [u'commod', u'boost', u'output', u'growth', u'access', u'econom'] [u'communiti', u'clean', u'wild', u'weather'] [u'confer', u'hear', u'support', u'health', u'worker'] [u'contractor', u'fin', u'westralia'] [u'controversi', u'pulp', u'consid', u'vital'] [u'costello', u'accus', u'bulli', u'liber'] [u'costello', u'hit', u'head', u'anglican', u'church'] [u'council', u'back', u'turley', u'bush', u'rush', u'push'] [u'councillor', u'lament', u'frequent', u'servic', u'collaps'] [u'council', u'urg', u'approv', u'saleyard'] [u'court', u'impos', u'secreci', u'order', u'case'] [u'craig', u'concern', u'fade', u'crow'] [u'date', u'zimbabw', u'shanti', u'town', u'crackdown', u'report'] [u'defiant', u'london', u'open', u'busi'] [u'diabet', u'advertis', u'defend'] [u'discoveri', u'prepar', u'launch'] [u'drain', u'benefit', u'rate', u'rise'] [u'dugong', u'hunt', u'agreement', u'draw', u'mix', u'respons'] [u'ead', u'disappoint', u'faulkner', u'season', u'end'] [u'elder', u'woman', u'die', u'crash'] [u'endur', u'australian'] [u'england', u'warn', u'say', u'victori', u'pont'] [u'driver', u'travel', u'franc', u'safeti', u'meet'] [u'fairfax', u'enter', u'world', u'date'] [u'famili', u'seek', u'expos', u'irish', u'killer'] [u'farm', u'group', u'rais', u'doubt', u'crop'] [u'faxon', u'take', u'long', u'road', u'open'] [u'fear', u'chang', u'silenc', u'whistleblow'] [u'feder', u'fund', u'boost', u'research'] [u'feder', u'tell', u'govt', u'crack', u'drug'] [u'destroy', u'leyburn', u'hous'] [u'destroy', u'sunshin', u'coast', u'landmark'] [u'corner', u'gambl', u'pay', u'montoya'] [u'brickwork', u'develop', u'attract', u'critic'] [u'herb', u'festiv', u'head', u'hurt', u'london', u'bomb'] [u'forum', u'spotlight', u'ocean', u'manag'] [u'crash', u'baffl', u'polic'] [u'fourth', u'commando', u'dead', u'afghanistan'] [u'franc', u'russia', u'advanc', u'final'] [u'franc', u'propos', u'wide', u'terror', u'relief', u'effort'] [u'fruiti', u'explos', u'leav', u'children', u'minor', u'injur'] [u'funer', u'servic', u'pay', u'tribut', u'lead', u'judg'] [u'gang', u'rivalri', u'think', u'ireland'] [u'gaudio', u'outclass', u'wawrinka', u'gstaad', u'final'] [u'gene', u'produc', u'drought', u'resist', u'crop'] [u'glori', u'mcmahon', u'player', u'revolt', u'claim'] [u'goulburn', u'district', u'welcom', u'good', u'rain'] [u'govt', u'crack', u'illeg', u'fish', u'boat'] [u'govt', u'green', u'light', u'port', u'phillip', u'trial', u'dredg'] [u'govt', u'ignor', u'plight', u'koala', u'say', u'minist'] [u'govt', u'reform', u'drive', u'youth', u'tafe', u'program'] [u'govt', u'reject', u'cultur', u'centr', u'claim'] [u'govt', u'tinto', u'strike', u'royalti', u'deal'] [u'govt', u'discuss', u'public', u'sector', u'pariti'] [u'govt', u'studi', u'margaret', u'river', u'updat'] [u'govt', u'indigen', u'cultur', u'centr'] [u'govt', u'urg', u'boost', u'public', u'transport'] [u'urg', u'check', u'diabet'] [u'guantanamo', u'command', u'remov', u'duti'] [u'har', u'race', u'hit', u'strap'] [u'harrison', u'join', u'rooster'] [u'hayden', u'stop', u'rossi', u'victori'] [u'health', u'care', u'confer', u'discuss', u'patel', u'case'] [u'health', u'worker', u'begin', u'work', u'ban'] [u'hear', u'decid', u'morri', u'bias', u'claim'] [u'hird', u'sheedi', u'say', u'bomber', u'miss', u'final'] [u'histori', u'wallabi', u'elli', u'park', u'return'] [u'home', u'loan', u'approv'] [u'howard', u'defiant', u'propos'] [u'howard', u'deni', u'knowledg', u'basra', u'troop', u'plan'] [u'howard', u'outlin', u'econom', u'need', u'chang'] [u'howard', u'stand', u'farmer', u'vanston'] [u'hurrican', u'head', u'north', u'hammer', u'coast'] [u'industri', u'tell', u'overhaul', u'opal', u'imag'] [u'inquest', u'year', u'miss', u'person', u'case'] [u'clear', u'blair', u'improprieti', u'game'] [u'iraqi', u'suspect', u'suffoc', u'polic', u'custodi'] [u'judd', u'clear', u'play', u'lion'] [u'kimberley', u'water', u'transport', u'studi', u'face', u'hurdl'] [u'leski'] [u'leski', u'inquest', u'hear', u'evid'] [u'letter', u'howard', u'corbi'] [u'level', u'cross', u'safeti', u'weekend'] [u'light', u'rail', u'transport', u'option', u'say', u'planner'] [u'local', u'back', u'power', u'plant', u'propos'] [u'local', u'ngos', u'combin', u'form', u'pango'] [u'local', u'softbal', u'lose', u'olymp', u'medal', u'chanc'] [u'london', u'bomb', u'trigger', u'sydney'] [u'longreach', u'eventu', u'polic', u'station'] [u'luke', u'robert', u'celebr', u'team', u'yellow'] [u'luxembourg', u'say', u'constitut'] [u'major', u'disast', u'declar', u'hurrican', u'roar', u'ashor'] [u'kill', u'warwick', u'farm', u'accid'] [u'marriag', u'failur', u'fault', u'say', u'warn'] [u'martin', u'expand', u'ministri'] [u'medallion', u'commemor', u'wwii', u'anniversari'] [u'media', u'bodi', u'state', u'fund'] [u'mine', u'stock', u'bank', u'push', u'ord'] [u'minist', u'consid', u'bomen', u'idea'] [u'minist', u'review', u'court', u'sentenc', u'procedur'] [u'injuri', u'pamplona', u'bull'] [u'iron', u'sign', u'china'] [u'morri', u'inquiri', u'hop', u'hear', u'nuttal'] [u'mother', u'fli', u'london', u'daughter', u'hurt'] [u'murray', u'come', u'hard', u'cowboy', u'commit'] [u'nadal', u'secur', u'swedish', u'open'] [u'asio', u'head', u'urg', u'review', u'secur'] [u'nation', u'park', u'spark', u'job', u'worri'] [u'pool', u'project', u'attract', u'builder'] [u'newspap', u'employe', u'forc', u'cash', u'holiday'] [u'nicklaus', u'call', u'time', u'year'] [u'korean', u'tourist', u'sydney'] [u'quick', u'answer', u'london', u'investig'] [u'request', u'basra', u'troop'] [u'nrma', u'emphasis', u'young', u'driver', u'safeti'] [u'govt', u'decid', u'byron', u'develop'] [u'govt', u'pump', u'school'] [u'ohair', u'claim', u'maiden', u'british', u'open', u'berth'] [u'opal', u'beat', u'host', u'nation', u'china'] [u'opposit', u'fish', u'claim', u'attack'] [u'pagan', u'defend', u'fevola', u'field', u'behaviour'] [u'palm', u'island', u'tell', u'polic', u'concern'] [u'pledg', u'help', u'corbi'] [u'polic', u'appeal', u'help', u'identifi', u'london', u'bomber'] [u'polic', u'arrest', u'heathrow', u'airport'] [u'polic', u'commission', u'talk', u'staff', u'number', u'visit'] [u'polic', u'investig', u'late', u'night', u'face', u'slash'] [u'polic', u'lament', u'drink', u'driver'] [u'polic', u'seek', u'bomb', u'footag'] [u'polic', u'tell', u'attend', u'mickelberg', u'hear'] [u'pont', u'star', u'aussi', u'victori'] [u'pont', u'england'] [u'potter', u'buff', u'win', u'audienc', u'author'] [u'power', u'hurrican', u'denni', u'cross', u'coast'] [u'premier', u'hear', u'communiti', u'concern', u'cruis', u'ship'] [u'properti', u'develop', u'confirm', u'dead', u'plane', u'crash'] [u'public', u'awar', u'import', u'reduc', u'terrorist'] [u'fast', u'track', u'secur', u'plan', u'bomb'] [u'rain', u'forc', u'race', u'locat'] [u'ranger', u'oper', u'face', u'fine', u'safeti', u'breach'] [u'rare', u'weather', u'lead', u'massiv', u'clean'] [u'rasmussen', u'achiev', u'tour', u'dream'] [u'cross', u'warn', u'bogus', u'bomb', u'appeal', u'email'] [u'report', u'find', u'solomon', u'problem', u'simmer'] [u'rescuer', u'continu', u'grim', u'search', u'miss', u'plane'] [u'resign', u'immigr', u'head', u'anger', u'lawyer'] [u'reward', u'offer', u'miss', u'artefact'] [u'ruddock', u'look', u'state', u'terror', u'fight'] [u'russian', u'shop', u'explos', u'kill'] [u'saint', u'reach', u'form', u'koschitzk'] [u'scientist', u'examin', u'death', u'babi', u'dolphin'] [u'search', u'find', u'miss', u'famili'] [u'search', u'miss', u'plane', u'continu'] [u'second', u'stage', u'work', u'start', u'ring', u'road'] [u'secur', u'scare', u'close', u'suprem', u'court'] [u'seven', u'iraqi', u'soldier', u'kill', u'checkpoint', u'battl'] [u'sheen', u'play', u'tiger', u'win', u'streak'] [u'sieg', u'close', u'nearbi', u'school'] [u'skateboard', u'take', u'great', u'leap', u'great', u'wall'] [u'steffensen', u'take', u'second', u'place', u'athen'] [u'street', u'close', u'charter', u'tower', u'music'] [u'stricter', u'rule', u'plan', u'rainwat', u'tank', u'rebat'] [u'subsidi', u'deadlin', u'approach'] [u'take', u'small', u'fish', u'worst', u'offenc', u'minist'] [u'teen', u'face', u'murder', u'charg', u'brawl'] [u'eagl', u'beatabl', u'say', u'matthew'] [u'treasur', u'seek', u'advic', u'decis'] [u'thousand', u'honour', u'britain', u'dead'] [u'trail', u'mishap', u'dog', u'emerg', u'respons'] [u'treasur', u'seek', u'advic', u'vizard', u'case'] [u'trio', u'confirm', u'dead', u'alp', u'crash'] [u'arrest', u'high', u'speed', u'chase'] [u'underworld', u'link', u'reveal', u'leski', u'hear'] [u'liber', u'good', u'shape', u'costello'] [u'violent', u'incid', u'bendigo', u'weekend'] [u'label', u'polit', u'correct'] [u'fail', u'ditch', u'effort', u'save', u'ralli', u'aust'] [u'walker', u'hurt', u'bald', u'rock', u'nation', u'park'] [u'wallabi', u'recal', u'injur', u'trio'] [u'west', u'bank', u'secur', u'barrier', u'rout', u'approv'] [u'woman', u'releas', u'macleay', u'island', u'stand'] [u'woolford', u'barrett', u'marsh', u'charg'] [u'work', u'bendigo', u'ahead'] [u'world', u'class', u'barkindji', u'biospher', u'reserv', u'recognis'] [u'young', u'mother', u'support', u'group', u'fund'] [u'yuendumu', u'council', u'suspend', u'short', u'term'] [u'saleyard', u'approv', u'central', u'tableland'] [u'iraqi', u'kill', u'fight', u'studi'] [u'acci', u'endeavour', u'eas', u'concern'] [u'actu', u'plan', u'heighten', u'campaign'] [u'tribun', u'enjoy', u'night'] [u'alic', u'spring', u'host', u'indigen', u'job', u'inquiri'] [u'ord', u'dip', u'slight'] [u'analyst', u'predict', u'telstra', u'cut'] [u'offer', u'loan', u'help', u'needi'] [u'anglican', u'bishop', u'voic', u'fear', u'chang'] [u'arm', u'arrest', u'dog', u'death'] [u'armstrong', u'readi', u'alpin', u'challeng'] [u'asio', u'check', u'hold', u'qasim', u'visa', u'lawyer'] [u'aussi', u'year', u'tour', u'kimberley', u'pilbara'] [u'australian', u'death', u'convict', u'lose', u'vietnam', u'appeal'] [u'australian', u'clean', u'sweep', u'motiv'] [u'australia', u'philippin', u'join', u'forc', u'dirti'] [u'author', u'probe', u'fatal', u'mishap'] [u'author', u'probe', u'woolgoolga', u'school'] [u'babi', u'shield', u'fatal', u'gunbattl'] [u'road', u'tourism', u'opposit'] [u'barrett', u'marsh', u'plead', u'guilti'] [u'barrett', u'marsh', u'plead', u'guilti', u'anasta', u'join'] [u'bear', u'sight', u'semi'] [u'beatti', u'announc', u'gold', u'coast', u'hospit', u'site'] [u'bet', u'exchang', u'cabinet', u'agenda'] [u'fish', u'kill', u'investig'] [u'bigger', u'prize', u'pool', u'boost', u'race'] [u'blair', u'vow', u'defeat', u'terrorist', u'bomb', u'toll', u'rise'] [u'bogut', u'like', u'miss', u'boomer', u'nation', u'event'] [u'bomb', u'scare', u'close', u'warsaw', u'metro'] [u'boral', u'plan', u'thornton', u'concret', u'plant'] [u'broom', u'lifesav', u'good', u'form', u'carniv'] [u'bull', u'continu', u'charg', u'pamplona'] [u'busi', u'reject', u'call', u'beef'] [u'butcher', u'fin', u'sell', u'perch', u'barramundi'] [u'cabinet', u'consid', u'send', u'troop', u'afghanistan'] [u'date', u'plan'] [u'canberra', u'institut', u'back', u'promot', u'plan'] [u'carr', u'south', u'east', u'asbesto', u'snub'] [u'cat', u'test', u'port', u'away', u'form'] [u'childcar', u'industri', u'struggl', u'retain', u'staff'] [u'children', u'school', u'fish'] [u'china', u'blast', u'toll', u'rise'] [u'church', u'england', u'open', u'women', u'bishop'] [u'cleric', u'defenc', u'osama', u'spark', u'debat'] [u'coastwatch', u'rethink', u'approach', u'illeg', u'fish'] [u'communiti', u'mourn', u'properti', u'develop'] [u'compani', u'abl', u'deal', u'coal', u'industri', u'downturn'] [u'concern', u'rais', u'japanes', u'tariff'] [u'consortium', u'win', u'smartcard', u'deal'] [u'consult', u'disput', u'crop', u'claim'] [u'cooper', u'tell', u'explain', u'stay', u'motion'] [u'costa', u'rican', u'hospit', u'kill'] [u'council', u'back', u'power', u'station', u'studi'] [u'council', u'consid', u'ashley', u'bridg'] [u'council', u'issu', u'illeg', u'clear', u'warn'] [u'council', u'say', u'bendigo', u'melbourn', u'bus', u'slow'] [u'council', u'fight', u'snub'] [u'council', u'urg', u'local', u'labour', u'build', u'pool'] [u'court', u'adjourn', u'natasha', u'ryan', u'scott', u'black', u'hear'] [u'court', u'dismiss', u'doubl', u'fatal', u'charg'] [u'court', u'overturn', u'french', u'cycl'] [u'croc', u'beat', u'find', u'fleme', u'replac'] [u'crouch', u'liverpool', u'figo', u'captur', u'unlik'] [u'crown', u'land', u'rent', u'freez', u'help', u'grazier'] [u'dairi', u'farm', u'look', u'milk', u'suppli'] [u'death', u'toll', u'rise', u'london', u'blast'] [u'develop', u'stand', u'bulli', u'hous', u'plan'] [u'open', u'sandgat', u'handl', u'centr'] [u'diamond', u'compani', u'doesnt', u'mind', u'vacuum'] [u'domaszewicz', u'challeng', u'coron', u'order'] [u'dont', u'fenc', u'say', u'anim', u'behaviour', u'expert'] [u'driver', u'urg', u'shop', u'cheaper', u'fuel'] [u'ethanol', u'industri', u'wait', u'grain', u'grower'] [u'eureka', u'hotel', u'restor', u'herald', u'thuringowa'] [u'exhibit', u'provid', u'break', u'hill', u'snapshot'] [u'expert', u'say', u'welfar', u'shift', u'boost', u'north', u'coast'] [u'expert', u'fear', u'worsen', u'crown', u'thorn', u'problem'] [u'express', u'seek', u'tugun', u'bypass'] [u'farmer', u'rent', u'respit', u'drought'] [u'fenc', u'band', u'open', u'music', u'festiv'] [u'ferri', u'oval', u'sale', u'get', u'council'] [u'fijian', u'militari', u'leader', u'see', u'anarchi', u'uniti'] [u'flood', u'prone', u'nullarbor', u'access', u'road', u'upgrad'] [u'fluorid', u'tenterfield', u'agenda'] [u'forc', u'cut', u'possibl', u'newcastl', u'univers'] [u'forum', u'discuss', u'dubbo', u'social', u'problem'] [u'french', u'ponder', u'comeback', u'drug', u'appeal', u'victori'] [u'fresh', u'snow', u'revitalis', u'selwyn'] [u'frost', u'slow', u'pastur', u'growth', u'crop', u'damag'] [u'fugit', u'qaeda', u'suspect', u'recaptur', u'afghan'] [u'fund', u'warn', u'univers'] [u'gladston', u'parent', u'survey', u'child', u'need'] [u'glen', u'inn', u'crash', u'leav', u'woman', u'critic', u'condit'] [u'govt', u'celebr', u'ararat', u'rail', u'anniversari'] [u'govt', u'dive', u'coffer', u'help', u'fund', u'longreach', u'pool'] [u'govt', u'investig', u'fish', u'licenc', u'loophol'] [u'govt', u'say', u'gunn', u'commit', u'tasmania'] [u'govt', u'afghan', u'troop', u'announc'] [u'govt', u'urg', u'consid', u'portland', u'port', u'option'] [u'grant', u'earli', u'return'] [u'green', u'group', u'welcom', u'charg'] [u'group', u'urg', u'accept', u'hospit', u'site', u'decis'] [u'destroy', u'state', u'power', u'say', u'chamber', u'commerc'] [u'gulf', u'resourc', u'plan', u'aim', u'long', u'term'] [u'hayden', u'return', u'australia', u'field'] [u'heritag', u'villag', u'black'] [u'high', u'petrol', u'price', u'justifi', u'say', u'fuelwatch'] [u'high', u'school', u'tutor', u'escap', u'jail', u'student'] [u'histor', u'bridg', u'restor', u'near', u'complet'] [u'hop', u'teach', u'hospit', u'attract', u'region'] [u'hopkin', u'flick', u'open', u'citi'] [u'unbias', u'bundaberg', u'commission', u'vow'] [u'murder', u'film', u'maker', u'gogh', u'religion'] [u'indigen', u'asian', u'program', u'highlight', u'darwin', u'festiv'] [u'indigen', u'health', u'major', u'problem', u'report'] [u'indigo', u'valley', u'famili', u'flee', u'hous', u'blaze'] [u'industri', u'action', u'threaten', u'propos', u'polic'] [u'inform', u'caravan', u'rapist', u'hunt'] [u'innisfail', u'win', u'tidi', u'town', u'titl'] [u'investig', u'piec', u'plane', u'crash'] [u'chang', u'fail', u'impact', u'employ', u'expect'] [u'johnson', u'batman', u'score', u'track', u'victori', u'zagreb'] [u'koori', u'court', u'open', u'mildura'] [u'labor', u'urg', u'palmer', u'return', u'secur', u'post'] [u'latrob', u'plan', u'resurrect', u'cemeteri'] [u'lebanon', u'blast', u'kill', u'wound', u'politician'] [u'legal', u'centr', u'expect', u'face', u'grow', u'demand'] [u'lion', u'selwood', u'latest', u'rise', u'star'] [u'lobster', u'cook', u'studi', u'help', u'industri'] [u'local', u'school', u'share', u'revamp'] [u'london', u'attack', u'highlight', u'import', u'iraq'] [u'london', u'polic', u'chief', u'predict', u'attack'] [u'london', u'polic', u'search', u'home', u'bomb'] [u'magic', u'mushroom', u'crackdown', u'yield', u'drug'] [u'charg', u'safe', u'crack'] [u'maroochi', u'shire', u'outlin', u'plan', u'vision'] [u'melbourn', u'centr', u'anti', u'terrorist', u'exercis'] [u'pay', u'reveal'] [u'milk', u'bubbl'] [u'mine', u'sector', u'warn', u'loom', u'downturn'] [u'minist', u'seek', u'feder', u'rethink', u'canker', u'compo'] [u'morri', u'confirm', u'townsvill', u'evid', u'gather'] [u'question', u'nation', u'park', u'consult'] [u'name', u'dead', u'begin', u'releas'] [u'nasa', u'tie', u'loos', u'end', u'final', u'shuttl'] [u'nation', u'park', u'make', u'progress', u'weed'] [u'deploy', u'wont', u'compromis', u'secur'] [u'histor', u'rescu'] [u'regist', u'monitor', u'paedophil'] [u'survey', u'cast', u'doubt', u'chang'] [u'nicklaus', u'play', u'watson', u'andrew'] [u'desalin', u'plant', u'plan', u'attack'] [u'rail', u'safeti', u'watchdog', u'resign'] [u'communiti', u'make', u'headway', u'kidney', u'diseas'] [u'number', u'posit', u'south', u'african'] [u'nurs', u'home', u'staff', u'consid', u'industri', u'unrest'] [u'organ', u'oliv', u'grove', u'aim', u'meet', u'high', u'demand'] [u'patient', u'tell', u'inquiri', u'unneed', u'bowel', u'remov'] [u'peac', u'activist', u'shoot', u'dead', u'somalia'] [u'plane', u'crash', u'victim', u'bodi', u'recov'] [u'plea', u'deal', u'letterman', u'abduct', u'case'] [u'defend', u'propos', u'chang', u'speech'] [u'state', u'case'] [u'polic', u'chief', u'corbi', u'evid'] [u'polic', u'closer', u'name', u'london', u'bomber'] [u'polic', u'close', u'bomber', u'ident', u'report'] [u'polic', u'hold', u'grave', u'fear', u'miss', u'ipswich', u'woman'] [u'polic', u'plan', u'industri', u'unrest', u'govt', u'move'] [u'polic', u'seek', u'inform', u'perth', u'robberi'] [u'polic', u'sift', u'haul', u'suspect', u'properti'] [u'polit', u'concern', u'spark', u'patient', u'support', u'group'] [u'polit', u'stoush', u'erupt', u'real', u'estat', u'chang'] [u'prestig', u'money', u'drive', u'wedg', u'school'] [u'project', u'manag', u'inspect', u'biodies', u'plant', u'site'] [u'protest', u'creat', u'maleni', u'supermarket', u'delay'] [u'pyrene', u'decid', u'tour', u'say', u'basso'] [u'hospit', u'handl', u'attack'] [u'produc', u'win', u'young', u'farmer', u'award'] [u'radic', u'surgeri', u'aust', u'bomb', u'victim'] [u'raider', u'captain', u'downgrad', u'throw', u'charg'] [u'rainfal', u'make', u'small', u'dent', u'drought', u'figur'] [u'rain', u'nlis', u'blame', u'cattl', u'shortfal'] [u'rain', u'eas', u'pressur', u'goulburn', u'water', u'suppli'] [u'rain', u'welcom', u'despit', u'sugar', u'crush', u'delay'] [u'rate', u'rise', u'loom', u'resid'] [u'rat', u'warwick'] [u'rave', u'drug', u'test', u'send', u'wrong', u'messag'] [u'record', u'price', u'live', u'cattl', u'trade'] [u'research', u'cook', u'plan', u'boost', u'lobster', u'industri'] [u'rice', u'ask', u'north', u'korea', u'abandon', u'nuclear', u'program'] [u'riot', u'polic', u'cathol', u'protest', u'amid', u'ireland'] [u'rocki', u'road', u'ahead', u'plan', u'desalin', u'plant'] [u'rspca', u'seek', u'meet', u'anim', u'attack'] [u'search', u'sydney', u'begin', u'soon'] [u'search', u'resum', u'biosolid', u'storag', u'site'] [u'selwood', u'twin', u'estrang', u'week'] [u'seminar', u'focus', u'busi', u'opportun'] [u'sheedi', u'urg', u'bomber', u'fan', u'team'] [u'shep', u'readi', u'final', u'danc'] [u'south', u'korea', u'offer', u'energi', u'food', u'north'] [u'fear', u'rais', u'china', u'brisban', u'consul'] [u'stanhop', u'anticip', u'econom', u'pick'] [u'statist', u'snapshot', u'show', u'women', u'wait'] [u'storm', u'electr', u'woe', u'close', u'highway'] [u'student', u'step', u'parliamentari', u'role'] [u'studi', u'find', u'drought', u'break', u'famili'] [u'suicid', u'attack', u'strategi', u'religion'] [u'support', u'group', u'form', u'femal', u'cancer', u'patient'] [u'sydney', u'hobart', u'welcom', u'entrant'] [u'sydney', u'opera', u'hous', u'make', u'heritag', u'list'] [u'premier', u'hail', u'increas', u'ferri', u'demand'] [u'teenag', u'driver', u'get', u'suspend', u'sentenc', u'fatal'] [u'thorp', u'aim', u'pietersen', u'ash', u'hop'] [u'tombston', u'arriv', u'year', u'late'] [u'ender', u'cool', u'statehood', u'survey', u'show'] [u'tour', u'oper', u'airstrip', u'upgrad'] [u'trade', u'improv', u'offset', u'profit'] [u'troubl', u'amcor', u'secur', u'leadership', u'team'] [u'protest', u'remov', u'maleni', u'supermarket', u'site'] [u'chief', u'hail', u'slight', u'drop', u'student', u'teacher'] [u'union', u'challeng', u'maritim', u'employe', u'secur', u'chang'] [u'union', u'beat', u'pariti', u'talk'] [u'lift', u'troop', u'visit', u'london'] [u'mop', u'hurrican', u'denni'] [u'retail', u'pressur', u'wool', u'boycott'] [u'stock', u'extend', u'ralli'] [u'troop', u'ban', u'london'] [u'vet', u'talk', u'possibl', u'diseas', u'outbreak'] [u'victim', u'father', u'disappoint', u'contractor'] [u'vietnam', u'commut', u'aussi', u'death', u'sentenc', u'lawyer'] [u'waikeri', u'aquacultur', u'project', u'face', u'delay'] [u'welfar', u'group', u'want', u'address'] [u'wesfarm', u'chief', u'hand', u'rein'] [u'prostitut', u'plan', u'retir'] [u'whyalla', u'crime', u'victim', u'support', u'servic'] [u'wide', u'lion', u'share', u'softwood', u'invest'] [u'wireless', u'broadband', u'plan', u'lack', u'cash', u'say', u'expert'] [u'woman', u'arrest', u'drug', u'sydney', u'airport'] [u'woman', u'photo', u'identifi'] [u'wood', u'apologis', u'troop', u'request'] [u'wood', u'offer', u'apolog', u'hostag', u'tape', u'comment'] [u'woolford', u'aim', u'downgrad', u'danger', u'throw', u'charg'] [u'kill', u'kenyan', u'clan', u'reveng', u'attack'] [u'hospit', u'leak', u'scare'] [u'access', u'concern', u'spencer', u'street', u'station'] [u'need', u'blockbust', u'exhibit', u'opposit'] [u'afghanistan', u'welcom', u'australia', u'troop', u'pledg'] [u'alcohol', u'trade', u'restrict', u'weipa'] [u'alic', u'turf', u'club', u'say', u'juli', u'race', u'viabl'] [u'apec', u'mine', u'forum', u'hold'] [u'armstrong', u'blow', u'yellow', u'jersey', u'rival'] [u'armstrong', u'tip', u'valverd', u'tour', u'great'] [u'arrest', u'london', u'bomb', u'report'] [u'art', u'group', u'look', u'way', u'rais', u'fund'] [u'aussi', u'actor', u'channel', u'world', u'leader', u'stage'] [u'aussi', u'get', u'richer', u'figur', u'suggest'] [u'australia', u'crush', u'england', u'decid'] [u'aust', u'send', u'troop', u'afghanistan'] [u'bank', u'resourc', u'push', u'higher'] [u'benitez', u'wari', u'welsh', u'minnow'] [u'fail', u'stop', u'indigen', u'artefact'] [u'rate', u'rise', u'loom', u'palerang', u'shire'] [u'black', u'spot', u'fund', u'includ', u'pedestrian', u'access'] [u'blair', u'outlin', u'plan', u'combat', u'extrem'] [u'blast', u'kill', u'baghdad'] [u'bomb', u'hit', u'sunni', u'mosqu', u'iraq'] [u'britain', u'push', u'action', u'terror'] [u'british', u'parliament', u'secur', u'alert', u'london'] [u'british', u'polic', u'suspect', u'man', u'murder', u'racial'] [u'british', u'press', u'london', u'bomb', u'suspect'] [u'bunburi', u'minimum', u'secur', u'prison', u'revamp'] [u'council', u'dismiss', u'high', u'rise', u'propos'] [u'camel', u'goat', u'latest', u'weed', u'tool'] [u'campaign', u'focus', u'workplac', u'safeti'] [u'canadian', u'bookstor', u'break', u'harri', u'potter', u'embargo'] [u'caribbean', u'brace', u'hurrican'] [u'jack', u'accus', u'face', u'court'] [u'carney', u'boost', u'knight'] [u'launch', u'hour', u'internet', u'news', u'network'] [u'charg', u'detect', u'drop'] [u'chen', u'visa', u'misjudg', u'chines', u'ambassador'] [u'chen', u'visa', u'grant', u'fals', u'inform', u'ambassador'] [u'church', u'group', u'condemn', u'zimbabw', u'township', u'demolit'] [u'cleanskin', u'bomb', u'suspect', u'worri', u'british', u'polic'] [u'coff', u'harbour', u'resign'] [u'concern', u'land', u'releas', u'littl', u'short', u'term'] [u'consum', u'confid', u'fall'] [u'consum', u'good', u'giant', u'merg', u'billion', u'deal'] [u'costello', u'reject', u'employ', u'survey', u'find'] [u'council', u'agre', u'contract', u'region', u'galleri'] [u'council', u'confid', u'properti', u'prise', u'rise'] [u'councillor', u'anger', u'budget', u'rate', u'rise'] [u'council', u'apra', u'complaint'] [u'council', u'vow', u'crackdown', u'attack', u'sheep'] [u'countri', u'doubt', u'showcas', u'pavilion'] [u'cousin', u'eagl', u'voss', u'say'] [u'danish', u'famili', u'leav', u'strand', u'kakadu'] [u'debut', u'prop', u'weak', u'windi'] [u'discoveri', u'mission', u'final', u'countdown'] [u'drive', u'robber', u'get', u'bank', u'loot'] [u'effect', u'newcastl', u'cut', u'unknown'] [u'elect', u'surgeri', u'wait', u'list', u'plummet'] [u'timor', u'presid', u'prais', u'program', u'volunt'] [u'offici', u'raid', u'chipmak', u'intel'] [u'evan', u'armstrong', u'strike'] [u'extort', u'cost', u'chocol', u'maker'] [u'famili', u'flock', u'desert', u'holiday'] [u'farmer', u'hold', u'hope', u'rain'] [u'farmer', u'survey', u'disput', u'govt', u'telstra', u'claim'] [u'fear', u'longer', u'trade', u'hour', u'cost', u'hotel', u'job'] [u'fear', u'mcdonald', u'import', u'fri'] [u'fear', u'rail', u'loss', u'eas'] [u'fear', u'health', u'inquiri', u'affect', u'recruit'] [u'feder', u'scheme', u'close', u'textil', u'wool', u'worker'] [u'fiji', u'militari', u'command', u'accus', u'scaremong'] [u'destroy', u'crash', u'plan', u'investig'] [u'fisheri', u'dept', u'urg', u'explain', u'abalon', u'collaps'] [u'franchis', u'collin', u'bookstor'] [u'frustrat', u'nation', u'park', u'decis', u'build'] [u'galibi', u'loom', u'tour', u'rival'] [u'galuvao', u'target', u'premiership', u'south'] [u'gentl', u'giant', u'swim', u'danger'] [u'gilchrist', u'strike', u'deed', u'word'] [u'gold', u'coast', u'council', u'mull', u'landslid', u'cash'] [u'govt', u'accus', u'avoid', u'desalin', u'plant'] [u'govt', u'challeng', u'meet', u'polic', u'staff', u'promis'] [u'govt', u'compar', u'note', u'june', u'inmat'] [u'govt', u'reject', u'green', u'concern', u'port', u'kembla'] [u'govt', u'fast', u'track', u'bruce', u'highway', u'road', u'resurfac'] [u'govt', u'urg', u'betfair', u'plan'] [u'grassland', u'plan', u'see', u'vital', u'protect'] [u'group', u'launch', u'plan', u'fight', u'spywar'] [u'gunn', u'look', u'afield', u'pulp', u'sit'] [u'hayn', u'oval', u'upgrad', u'begin', u'asap'] [u'health', u'inquiri', u'head', u'get', u'stand', u'ovat'] [u'hewitt', u'readi', u'davi', u'argi', u'bargi'] [u'higher', u'truck', u'rego', u'fee', u'wide', u'impact'] [u'histori', u'make', u'striker', u'join', u'glori'] [u'hous', u'shortag', u'trap', u'abus', u'victim'] [u'hunt', u'london', u'attack', u'gather', u'speed'] [u'hunt', u'london', u'bomb', u'pick', u'pace'] [u'hurrican', u'concern', u'push', u'price'] [u'rule', u'stop', u'tour', u'zimbabw'] [u'want', u'power', u'investig', u'gambl', u'venu'] [u'indigen', u'communiti', u'look', u'asbesto', u'compens'] [u'indigen', u'health', u'focus', u'worldwid', u'research'] [u'industri', u'look', u'trace', u'tag', u'fight'] [u'industri', u'impact', u'salt', u'flat', u'studi'] [u'agenda', u'spell', u'union', u'clout', u'say', u'minist'] [u'iron', u'date', u'method', u'develop'] [u'irrig', u'agre', u'water'] [u'irvin', u'laugh', u'button', u'ferrari', u'specul'] [u'isra', u'shop', u'mall', u'blast', u'kill'] [u'isra', u'troop', u'kill', u'policeman', u'west', u'bank', u'town'] [u'italian', u'rider', u'hold', u'tour', u'drug'] [u'jail', u'task', u'forc', u'seiz', u'smuggl', u'item'] [u'judg', u'near', u'saddam', u'investig'] [u'juventus', u'sound', u'arsenal', u'vieira'] [u'minut', u'hiccup', u'discoveri', u'shuttl', u'launch'] [u'lightn', u'kill', u'seven', u'bangladesh'] [u'local', u'council', u'conduct', u'labour', u'audit'] [u'london', u'attack', u'investig', u'hunt', u'mastermind'] [u'london', u'bomb', u'suspect', u'identifi'] [u'london', u'bomb', u'victim', u'rememb', u'canberra', u'servic'] [u'maleni', u'protest', u'abid', u'law', u'say', u'beatti'] [u'maleni', u'supermarket', u'protest', u'heat'] [u'accus', u'onlin', u'link', u'abus'] [u'charg', u'cannabi', u'haul'] [u'face', u'trial', u'fatal', u'nightclub', u'stab'] [u'memori', u'servic', u'hold', u'canberra', u'london'] [u'mental', u'health', u'help', u'need', u'stress', u'farmer'] [u'michael', u'jackson', u'sue', u'debt'] [u'michael', u'kasprowicz', u'interview'] [u'million', u'dollar', u'fund', u'sport', u'facil'] [u'minist', u'ask', u'derail', u'train', u'driver'] [u'minist', u'cast', u'doubt', u'popul', u'forecast'] [u'minist', u'defend', u'maleni', u'polic', u'cost'] [u'minist', u'open', u'disabl', u'communiti', u'centr'] [u'polic', u'number', u'wrong', u'say', u'opposit'] [u'doubt', u'emerg', u'dredg', u'plan'] [u'meningococc', u'case', u'emerg'] [u'criticis', u'industri', u'relat', u'misinform'] [u'nasa', u'declar', u'discoveri', u'readi'] [u'head', u'focus', u'oversea', u'import'] [u'cancel', u'warn', u'contract'] [u'nip', u'tuck', u'hold', u'breast', u'implant', u'nick'] [u'korean', u'leader', u'anticip', u'progress', u'nuke', u'talk'] [u'face', u'call', u'salari', u'hike'] [u'task', u'forc', u'meet', u'repres'] [u'govt', u'hunt', u'crocodil', u'safari'] [u'olonga', u'join', u'protest', u'tour', u'zimbabw'] [u'bomber', u'die', u'london', u'blast', u'polic'] [u'packer', u'consortium', u'win', u'casino', u'contract', u'wale'] [u'paedophil', u'baldi', u'leav', u'jail'] [u'pakistani', u'train', u'crash', u'kill', u'hundr'] [u'palmer', u'report', u'wont', u'royal', u'commiss'] [u'parkinson', u'steal', u'south', u'africa'] [u'patel', u'crisi', u'spark', u'foreign', u'doctor', u'racism', u'claim'] [u'patel', u'extradit', u'delay', u'unreason'] [u'patel', u'patient', u'nuttal'] [u'perri', u'sign', u'knight'] [u'person', u'borrow', u'fall'] [u'playford', u'stand', u'kavel', u'famili'] [u'vow', u'immigr', u'chang', u'come'] [u'polic', u'charg', u'ipswich', u'woman', u'murder'] [u'polic', u'miss', u'famili', u'flinder', u'rang'] [u'polic', u'hunt', u'credit', u'card', u'scammer'] [u'polic', u'identifi', u'london', u'bomber'] [u'polic', u'review', u'maleni', u'offic', u'number'] [u'polic', u'seal', u'british', u'parliament', u'secur', u'alert'] [u'polic', u'unveil', u'sydney', u'harbour', u'counter', u'terrorist'] [u'poverti', u'issu', u'backburn', u'world', u'vision', u'head'] [u'plate', u'driver', u'die', u'injur', u'grafton', u'crash'] [u'prison', u'boss', u'admit', u'controversi', u'prison', u'need'] [u'professor', u'challeng', u'product', u'claim'] [u'ask', u'vanston', u'pregnant', u'detaine'] [u'farmer', u'land', u'clear', u'ballot', u'near', u'complet'] [u'queensland', u'cotton', u'make', u'rival'] [u'raider', u'appeal', u'woolford', u'suspens'] [u'raider', u'appeal', u'woolford', u'suspens'] [u'group', u'plan', u'restructur', u'lose', u'founder'] [u'report', u'highlight', u'high', u'mental', u'distress', u'rat'] [u'royal', u'commiss', u'reform', u'retrial'] [u'reject', u'report', u'tunnel', u'pollut', u'claim'] [u'safeti', u'fear', u'sydney', u'hobart', u'rule', u'chang'] [u'tip', u'covert', u'afghan', u'role'] [u'saudi', u'arabia', u'host', u'game'] [u'schultz', u'attack', u'hors', u'trade', u'nat', u'seat', u'plan'] [u'lion', u'lobster', u'safeti', u'devic', u'delay'] [u'search', u'intensifi', u'miss', u'mother'] [u'sephaka', u'drop', u'bok', u'regroup', u'aussi'] [u'seventeen', u'arrest', u'drug', u'raid'] [u'shuttl', u'launch', u'fall', u'tile', u'repair'] [u'skinni', u'milk', u'recal'] [u'small', u'victori', u'oppon', u'ergon', u'suburban'] [u'smash', u'repair', u'protest', u'nrma', u'quot', u'scheme'] [u'south', u'american', u'coach', u'run', u'socceroo'] [u'south', u'korea', u'clone', u'pig', u'organ', u'transplant'] [u'special', u'forc', u'head', u'afghanistan'] [u'stanhop', u'reject', u'opposit', u'bankruptci', u'claim'] [u'starless', u'windi', u'undet', u'daunt', u'task'] [u'star', u'wallabi', u'avail', u'second', u'test'] [u'state', u'debat', u'govt', u'agenda', u'confer'] [u'steam', u'train', u'take', u'qlder', u'nostalg', u'ride'] [u'student', u'staff', u'ratio', u'figur', u'distort', u'say', u'charl'] [u'studi', u'expect', u'boost', u'trade', u'talk'] [u'studi', u'focus', u'mental', u'health', u'need'] [u'suicid', u'blast', u'hit', u'children', u'troop'] [u'suicid', u'bomb', u'attack', u'rock', u'israel'] [u'surrey', u'fish', u'kill', u'get', u'wors'] [u'survey', u'fail', u'dent', u'telstra', u'determin'] [u'survey', u'consid', u'issu', u'sport', u'busi'] [u'tasmania', u'tell', u'look', u'public', u'sector', u'doctor'] [u'teen', u'arrest', u'netherland', u'bomb'] [u'teen', u'smoke', u'lose', u'weight', u'research', u'say'] [u'london', u'suicid', u'bomb', u'suspect', u'name'] [u'train', u'crash', u'kill', u'score', u'pakistan'] [u'tiger', u'warm', u'open', u'blitz'] [u'timber', u'plantat', u'spend', u'fall', u'short', u'say'] [u'toowoomba', u'drink', u'wast', u'water'] [u'ballroom', u'dancer', u'face', u'trial'] [u'tour', u'rider', u'throw', u'blood', u'test'] [u'train', u'driver', u'blame', u'pakistani', u'rail', u'disast'] [u'line', u'board', u'urg'] [u'cranbourn', u'west', u'road', u'crash'] [u'foreign', u'kidnap', u'gaza'] [u'kill', u'melbourn', u'crash'] [u'undercov', u'health', u'agent', u'polic', u'smoke', u'law'] [u'union', u'warn', u'alcan', u'sack'] [u'militari', u'replac', u'guantanamo', u'command'] [u'vanuatu', u'polic', u'chief', u'sack'] [u'vaughan', u'unhappi', u'super', u'rule'] [u'villag', u'attack', u'death', u'toll', u'continu', u'rise'] [u'warn', u'readi', u'ash', u'despit', u'privat', u'turmoil'] [u'women', u'busi', u'overcom'] [u'wine', u'grower', u'accept', u'unfair', u'boundari', u'chang'] [u'wondai', u'firefight', u'declar', u'qlds', u'best'] [u'worker', u'ralli', u'melbourn', u'chang'] [u'workshop', u'plan', u'ecolog', u'sustain', u'town'] [u'world', u'longest', u'golf', u'cours', u'card'] [u'world', u'oldest', u'captiv', u'panda', u'die'] [u'dead', u'suicid', u'attack', u'iraqi', u'polic'] [u'report', u'rise', u'short', u'term', u'visit'] [u'get', u'indigen', u'health', u'prais'] [u'govt', u'defend', u'servic', u'domest', u'violenc'] [u'actor', u'brad', u'pitt', u'releas', u'hospit'] [u'advisori', u'group', u'presid', u'disappoint', u'river'] [u'advoc', u'maintain', u'call', u'siev', u'inquiri'] [u'afghanistan', u'govt', u'thank', u'australia', u'send'] [u'anderson', u'question', u'valid', u'farmer', u'telstra'] [u'predict', u'fall', u'aussi', u'dollar'] [u'ash', u'highlight'] [u'aust', u'bomb', u'survivor', u'struggl', u'vertigo'] [u'baghdad', u'suicid', u'bomb', u'kill', u'children'] [u'basin', u'cap', u'program', u'reach', u'mileston'] [u'beatti', u'seek', u'transcript', u'health', u'chief'] [u'beatti', u'urg', u'australia', u'card', u'rethink'] [u'beef', u'produc', u'vote', u'cattl', u'levi'] [u'bigger', u'wheat', u'crop', u'predict'] [u'bilbi', u'festiv', u'organis', u'expect', u'turnout'] [u'blair', u'propos', u'tougher', u'extrem', u'stanc'] [u'board', u'probe', u'possibl', u'link', u'school'] [u'charg', u'rape', u'girl', u'park'] [u'bushmast', u'win', u'defenc', u'minist', u'approv'] [u'cadel', u'pois', u'steal', u'robbi', u'limelight'] [u'canker', u'sourc', u'remain', u'mysteri'] [u'cathol', u'church', u'cast', u'doubt', u'betfair', u'benefit'] [u'caution', u'urg', u'hous', u'inspect', u'report'] [u'cfmeu', u'vow', u'fight', u'chang'] [u'chang', u'come', u'inquiri', u'vanston'] [u'chief', u'justic', u'court', u'assault', u'charg'] [u'china', u'interest', u'uranium'] [u'church', u'leader', u'zimbabw', u'shame', u'campaign'] [u'commut', u'train', u'collid', u'africa'] [u'contamin', u'milk', u'scare', u'spark', u'state', u'recal'] [u'contraband', u'item', u'cessnock', u'jail'] [u'coron', u'say', u'british', u'tourist', u'die', u'heat'] [u'cotton', u'giant', u'launch', u'rival'] [u'cotton', u'merger', u'expect', u'competit'] [u'council', u'govt', u'ask', u'help', u'fund', u'youth', u'facil'] [u'councillor', u'say', u'investig', u'witch', u'hunt'] [u'councillor', u'throw', u'support', u'smoker', u'poll'] [u'council', u'urg', u'stanc', u'bridg'] [u'counter', u'terror', u'exercis', u'prompt'] [u'cowboy', u'go', u'basic'] [u'crater', u'make', u'impact', u'sculptur', u'competit'] [u'crichton', u'back', u'sydney', u'hobart', u'rule', u'chang'] [u'custom', u'evacu', u'shotgun', u'rampag', u'fear'] [u'democrat', u'speed', u'claim'] [u'desper', u'housew', u'earn', u'emmi', u'nomin'] [u'detain', u'pregnant', u'woman', u'releas', u'say', u'vanston'] [u'determin', u'dane', u'see', u'spot', u'tour'] [u'dinosaur', u'respiratori', u'like', u'bird', u'studi'] [u'downer', u'urg', u'fiji', u'concern'] [u'drink', u'ban', u'solut', u'council', u'say'] [u'dual', u'pacemak', u'better', u'peopl'] [u'elder', u'attack', u'kakadu', u'impact'] [u'elder', u'uranium', u'condemn', u'martin'] [u'environ', u'minist', u'take', u'time', u'croc', u'hunt'] [u'extinguish', u'cost', u'council'] [u'mourinho', u'comment'] [u'farmer', u'injuri', u'blow', u'freo'] [u'fear', u'air', u'legal', u'fund'] [u'fear', u'fake', u'boot', u'damag', u'wool', u'reput'] [u'ferguson', u'order', u'sign', u'contract'] [u'fish', u'industri', u'seek', u'satellit', u'technolog'] [u'surviv', u'forc', u'land'] [u'worldcom', u'chief', u'jail', u'year'] [u'freo', u'brace', u'desper', u'blue'] [u'frigo', u'freez', u'tour'] [u'fund', u'enabl', u'polystyren', u'compani', u'expand'] [u'leak', u'forc', u'evacu', u'school', u'distanc'] [u'gazza', u'agre', u'coach', u'littl', u'know', u'portugues'] [u'gerrard', u'trick', u'pay', u'liverpool', u'support'] [u'materi', u'detect', u'canola'] [u'govt', u'ask', u'step', u'breach', u'parol', u'case'] [u'govt', u'rule', u'australia', u'card', u'rethink'] [u'govt', u'child', u'protect', u'effort', u'opposit'] [u'govt', u'releas', u'palmer', u'inquiri', u'find'] [u'govt', u'urg', u'doubl', u'budget'] [u'govt', u'wont', u'releas', u'current', u'baldi', u'photo'] [u'greedi', u'centrelink', u'worker', u'jail', u'fraud'] [u'green', u'jersey', u'holder', u'boonen', u'abandon', u'tour'] [u'guantanamo', u'detaine', u'abus', u'tortur', u'report'] [u'health', u'inquiri', u'hear', u'patel', u'part', u'blame'] [u'health', u'servic', u'conting', u'plan', u'head', u'surgeri'] [u'hewitt', u'davi', u'fire', u'line'] [u'hewitt', u'open', u'australia', u'davi', u'quarter', u'final'] [u'hick', u'father', u'outrag', u'defend', u'guantanamo'] [u'highway', u'inquiri', u'call', u'surpris', u'say'] [u'hill', u'defend', u'afghan', u'redeploy'] [u'hop', u'ticket', u'entic', u'countri'] [u'hospit', u'shortag', u'expect', u'worsen'] [u'human', u'wast', u'creek', u'close', u'oyster', u'farm'] [u'hungri', u'tiger', u'chase', u'open', u'rival'] [u'hussain', u'warn', u'england', u'warn', u'myth'] [u'indonesian', u'fishermen', u'detain', u'baxter'] [u'inquiri', u'ongo', u'qasim', u'case', u'ruddock'] [u'investig', u'begin', u'probe', u'plane', u'crash'] [u'inx', u'star', u'realiti', u'program', u'lag', u'rat'] [u'iraqi', u'jail', u'year', u'siev', u'role'] [u'iraqi', u'polic', u'captur', u'fail', u'suicid', u'bomber'] [u'iraq', u'negoti', u'australian', u'wheat'] [u'israel', u'close', u'settlement', u'resid'] [u'jack', u'trade', u'mcguir', u'happi', u'help'] [u'job', u'part', u'firm'] [u'joint', u'defenc', u'exercis', u'boost', u'local', u'economi'] [u'justic', u'probe', u'hear', u'prison', u'fear'] [u'kenyan', u'secur', u'attempt', u'clan', u'unrest'] [u'kidnap', u'austrian', u'briton', u'free', u'gaza', u'offici'] [u'labor', u'alarm', u'talk', u'terror', u'attack'] [u'lower', u'trade', u'deficit', u'boost', u'market'] [u'martin', u'talk', u'diesel', u'plant', u'green', u'credenti'] [u'mental', u'health', u'gap', u'area', u'shame', u'say'] [u'million', u'reflect', u'silenc', u'london', u'attack'] [u'miner', u'begin', u'deep', u'drill', u'program'] [u'mine', u'compani', u'promot', u'oper', u'apec'] [u'mine', u'compani', u'expand', u'uranium', u'explor'] [u'minist', u'dismiss', u'concern', u'goldfield', u'polic'] [u'morri', u'inquiri', u'wrap', u'bundaberg', u'hear'] [u'dismiss', u'telstra', u'survey', u'find'] [u'mysteri', u'shipwreck', u'investig'] [u'nasa', u'delay', u'discoveri', u'launch'] [u'nasa', u'delay', u'shuttl', u'launch', u'saturday'] [u'nasa', u'postpon', u'shuttl', u'launch'] [u'nasa', u'race', u'clock', u'discoveri'] [u'nasa', u'watch', u'weather', u'discoveri', u'near', u'lift'] [u'nation', u'scheme', u'aim', u'boost', u'financi', u'literaci'] [u'deploy', u'endang', u'aust', u'howard'] [u'storm', u'threaten', u'caribbean'] [u'nicklaus', u'begin', u'long', u'farewel'] [u'nightclub', u'refus', u'entri', u'base', u'gender'] [u'bail', u'pension', u'drug', u'charg'] [u'compromis', u'pie', u'malthous'] [u'nowingi', u'toxic', u'wast', u'dump', u'fight', u'wane', u'say'] [u'review', u'harsh', u'judiciari', u'load', u'penalti'] [u'nurs', u'profess', u'enjoy', u'popular', u'boost'] [u'boost', u'fund', u'island', u'homeless'] [u'opal', u'lose', u'russia'] [u'open', u'organis', u'defend', u'revamp', u'cours'] [u'orang', u'perman', u'exclud', u'minist'] [u'organis', u'look', u'futur', u'despit', u'rocki', u'loss'] [u'oversea', u'generic', u'aid', u'drug', u'approv'] [u'pair', u'jail', u'elder', u'man', u'slay'] [u'pakistan', u'help', u'foil', u'attack', u'elect'] [u'pakistani', u'polic', u'open', u'london', u'bomb', u'probe'] [u'pakistani', u'look', u'miss', u'relat', u'tripl'] [u'palestinian', u'milit', u'kill', u'talk'] [u'palmer', u'report', u'loom', u'howard', u'promis', u'chang'] [u'parapleg', u'sailor', u'continu', u'trip', u'australia'] [u'perish', u'blue', u'resort', u'sale'] [u'apologis', u'solon'] [u'look', u'closer', u'tie', u'chile'] [u'ponder', u'chile', u'trade', u'agreement'] [u'polic', u'bullet', u'kill', u'babi', u'shield', u'gunman'] [u'polic', u'charg', u'year', u'rape', u'case'] [u'polic', u'claim', u'breakthrough', u'perth', u'crime', u'spree'] [u'polic', u'command', u'seek', u'input', u'address', u'local'] [u'polic', u'forum', u'spotlight', u'driver', u'drug', u'test'] [u'polic', u'hunt', u'steal', u'vanilla', u'slice'] [u'polic', u'raid', u'london', u'bomb'] [u'policeman', u'accus', u'indec', u'assault', u'face', u'court'] [u'polic', u'seek', u'public', u'help', u'miss', u'teenag'] [u'polic', u'warn', u'parent', u'overse', u'children', u'internet'] [u'politician', u'port', u'augusta', u'jail', u'problem'] [u'power', u'failur', u'shut', u'caltex', u'refineri'] [u'prison', u'lobbi', u'fear', u'deport', u'pregnant'] [u'public', u'remind', u'alert', u'alarm'] [u'confront', u'vanston', u'detain', u'pregnant', u'woman'] [u'reopen', u'creat', u'job'] [u'repair', u'heal', u'nrmas', u'quot'] [u'report', u'warn', u'juvenil', u'justic', u'centr', u'danger'] [u'review', u'loom', u'water', u'transport', u'option'] [u'road', u'train', u'driver', u'charg', u'crash', u'death'] [u'scientist', u'analys', u'timor', u'bubbl'] [u'scotland', u'clinch', u'trophi'] [u'sculptor', u'carv', u'nation', u'prize'] [u'seafood', u'industri', u'seek', u'turn', u'export'] [u'seaworld', u'research', u'want', u'better', u'protect'] [u'secur', u'focus', u'carr', u'britain', u'trip'] [u'secur', u'prioriti', u'london', u'game', u'chief'] [u'shire', u'scope', u'clinic', u'possibl'] [u'shire', u'vow', u'support', u'stawel', u'worker'] [u'short', u'term', u'visit', u'rise', u'say'] [u'shuttl', u'delay', u'stress', u'famili', u'aust', u'astronaut'] [u'siev', u'smuggler', u'jail'] [u'silenc', u'mark', u'london', u'bomb'] [u'korea', u'search', u'fighter', u'jet', u'believ'] [u'snowdon', u'talk', u'desert', u'park', u'indigen', u'employ'] [u'solon', u'lawyer', u'reject', u'howard', u'apolog'] [u'lankan', u'leader', u'order', u'strict', u'action', u'troubl'] [u'stem', u'cell', u'protect', u'brain', u'nervous', u'studi'] [u'storm', u'recoveri', u'frustrat', u'karoonda', u'local'] [u'student', u'protest', u'detent', u'centr'] [u'studi', u'look', u'impact', u'dust', u'climat'] [u'suicid', u'attack', u'rule'] [u'supermarket', u'protest', u'develop', u'begin', u'talk'] [u'survey', u'highlight', u'resid', u'concern', u'plan'] [u'survey', u'pinpoint', u'unrecord', u'aborigin', u'cultur'] [u'firm', u'win', u'ship', u'contract'] [u'tasmania', u'look', u'attract', u'experi', u'nurs'] [u'teacher', u'counsel', u'videotap', u'girl'] [u'testicular', u'cancer', u'rise'] [u'tour', u'head', u'valley'] [u'toyota', u'say', u'profit', u'satisfactori', u'better'] [u'tsunami', u'quak', u'caus', u'seafloor', u'ruptur'] [u'kill', u'injur', u'crash'] [u'polic', u'identifi', u'mastermind', u'london'] [u'council', u'stall', u'plan', u'east', u'timor', u'tribun'] [u'union', u'fear', u'holden', u'glass', u'import', u'caus'] [u'union', u'wait', u'breakdown', u'teacher', u'offer'] [u'airlin', u'expand', u'servic', u'aust'] [u'question', u'australian', u'push'] [u'shop', u'accident', u'sell', u'harri', u'potter', u'book'] [u'vaa', u'lead', u'lanka', u'fightback'] [u'vail', u'downplay', u'chen', u'trade', u'talk'] [u'vail', u'warn', u'rural', u'subsidi'] [u'vaughan', u'mothbal', u'ahead', u'ash'] [u'victorian', u'farmer', u'join', u'fight', u'cheap', u'vegi'] [u'vintag', u'vino', u'close', u'armstrong'] [u'virgin', u'set', u'pacif', u'carrier'] [u'voigt', u'go', u'hero', u'zero'] [u'wallabi', u'wont', u'distract', u'say', u'jone'] [u'waratah', u'commit', u'footbal', u'stadium'] [u'warn', u'back', u'team', u'mate', u'pietersen', u'ash'] [u'water', u'sewerag', u'bill', u'increas'] [u'weather', u'outlook', u'good'] [u'widespread', u'gain', u'lift'] [u'wine', u'industri', u'consult', u'cut', u'fund'] [u'woman', u'charg', u'credit', u'union', u'robberi'] [u'woodchip', u'firm', u'use', u'support', u'port'] [u'zimbabw', u'tour', u'say', u'illeg'] [u'dead', u'bomber', u'target', u'iraqi', u'patrol'] [u'abalon', u'diver', u'fin', u'illeg', u'catch'] [u'aceh', u'peac', u'talk', u'stall', u'gam', u'polit'] [u'actu', u'dismiss', u'howard', u'work', u'parti'] [u'adler', u'get', u'good', u'behaviour', u'bond'] [u'seek', u'kenya', u'hunt', u'clan', u'violenc', u'suspect'] [u'ord', u'resist', u'posit', u'trend'] [u'rethink', u'uranium', u'polici'] [u'qaeda', u'claim', u'wave', u'baghdad', u'attack'] [u'ran', u'contest', u'crowd', u'puller'] [u'art', u'festiv', u'promis', u'bizarr', u'brilliant', u'program'] [u'attack', u'kill', u'amid', u'thailand', u'blackout'] [u'aust', u'music', u'icon', u'induct', u'hall', u'fame'] [u'australia', u'chile', u'trade', u'tie', u'stronger', u'vail'] [u'australia', u'lead', u'bilater', u'donat', u'tsunami', u'fund'] [u'australian', u'packag', u'undermin', u'nauru', u'report'] [u'australian', u'die', u'london', u'attack', u'injuri'] [u'australian', u'comfort', u'chang'] [u'author', u'child', u'rapist', u'locat'] [u'bedouin', u'wander', u'biblic', u'manuscript'] [u'betfair', u'offer', u'industri', u'financi', u'benefit'] [u'banana', u'revamp', u'includ', u'hous', u'plan'] [u'bird', u'suspect', u'death', u'indonesia'] [u'bird', u'spread', u'pollut', u'arctic', u'studi'] [u'board', u'hous', u'resid', u'evacu', u'mercuri'] [u'brisban', u'hand', u'bledislo', u'test'] [u'broadband', u'boost', u'north', u'coast', u'region'] [u'broom', u'jetti', u'revamp', u'begin'] [u'bulldog', u'hold', u'narrow'] [u'bulldog', u'play', u'final', u'fever'] [u'call', u'introduc', u'australia'] [u'call', u'mount', u'immigr', u'judici', u'inquiri'] [u'camel', u'sandwich', u'menu', u'tourist'] [u'cameron', u'diaz', u'testifi', u'topless', u'photo', u'case'] [u'carr', u'fear', u'sydney', u'suicid', u'attack'] [u'catlex', u'await', u'news', u'refineri', u'repair'] [u'chappel', u'turn', u'technolog', u'india', u'edg'] [u'clean', u'hand', u'simpl', u'slash', u'diseas', u'risk'] [u'colleg', u'seek', u'indigen', u'school', u'fund', u'boost'] [u'colleg', u'want', u'rural', u'medicin', u'recognis'] [u'complaint', u'morri', u'inquiri', u'journalist'] [u'conduct', u'report', u'jeopardis', u'palm', u'prosecut'] [u'consortium', u'reject', u'suppli', u'claim'] [u'coron', u'hamper', u'fatal', u'polic', u'shoot', u'probe'] [u'coron', u'report', u'teen', u'road', u'death'] [u'council', u'readi', u'hous', u'estat', u'legal', u'fight'] [u'council', u'region', u'phone', u'servic', u'fear'] [u'council', u'seek', u'fund', u'socio', u'econom', u'zone'] [u'critic', u'slam', u'nuclear', u'wast', u'dump'] [u'cross', u'border', u'gunfight', u'kill', u'pakistan'] [u'cultur', u'buff', u'flock', u'opera', u'shear'] [u'cyclist', u'die', u'larapinta', u'drive'] [u'davi', u'hop', u'pin', u'hewitt', u'arthur'] [u'dept', u'plan', u'problem', u'vanston'] [u'diamond', u'project', u'expect', u'boost', u'local', u'job'] [u'disput', u'barrier', u'good', u'health', u'care', u'pike'] [u'domest', u'violenc', u'counsellor', u'leav', u'geraldton'] [u'dope', u'cloud', u'hover', u'tour'] [u'drug', u'group', u'alarm', u'cannabi', u'survey', u'result'] [u'drug', u'rape', u'accus', u'releas', u'bail'] [u'emili', u'swell', u'danger', u'hurrican', u'caribbean'] [u'defend', u'agricultur', u'subsidi', u'action'] [u'prison', u'guard', u'avoid', u'jail', u'steroid', u'smuggl'] [u'feder', u'govern', u'consid', u'overturn'] [u'fiji', u'threaten', u'revok', u'foreign', u'work', u'permit'] [u'firm', u'test', u'contenti', u'boot'] [u'suicid', u'attack', u'kill', u'baghdad'] [u'brothel', u'employe', u'crime', u'wave'] [u'worker', u'charg', u'multi', u'million'] [u'face', u'court', u'drug', u'charg'] [u'friend', u'welcom', u'lengthi', u'jail', u'term', u'elder'] [u'fund', u'deliv', u'power', u'boost', u'remot', u'area'] [u'gasquet', u'put', u'franc', u'ahead'] [u'gaza', u'rocket', u'attack', u'leav', u'isra', u'dead'] [u'german', u'polic', u'mistak', u'male', u'stripper'] [u'global', u'money', u'launder', u'trillion'] [u'govt', u'name', u'sit', u'technic', u'colleg'] [u'govt', u'packag', u'help', u'young', u'farmer', u'properti'] [u'govt', u'pressur', u'reveal', u'baldi', u'detail'] [u'govt', u'releas', u'kapunda', u'royal', u'commiss'] [u'govt', u'urg', u'continu', u'court', u'disabl', u'fund'] [u'govt', u'urg', u'subsidis', u'deliveri', u'drug'] [u'grain', u'begin', u'flow', u'zimbabw'] [u'grain', u'grower', u'lobbi', u'probe', u'canola'] [u'grape', u'suppli', u'creat', u'wine', u'industri', u'fear'] [u'grower', u'hit', u'mcdonald', u'develop', u'fund', u'offer'] [u'guid', u'dog', u'group', u'back', u'footpath'] [u'health', u'servic', u'worker', u'tell', u'loss'] [u'hensbi', u'say', u'tiger', u'open'] [u'hewitt', u'accus', u'coria', u'spit'] [u'hewitt', u'coria', u'bitter', u'word'] [u'hmas', u'kanimbla', u'dock', u'mackay', u'crew', u'break'] [u'hotspot', u'target', u'shake', u'burglari'] [u'howard', u'creat', u'backbench', u'team', u'pitch', u'chang'] [u'icon', u'town', u'consid', u'perfect', u'spot', u'festiv'] [u'immelman', u'singh', u'join', u'tiger', u'lead'] [u'immigr', u'dept', u'worker', u'embark', u'reform'] [u'indian', u'prompt', u'coupl', u'hunt', u'lose', u'citi'] [u'india', u'want', u'split', u'lankan', u'tour'] [u'indigen', u'polic', u'liaison', u'offic', u'gather', u'north'] [u'indonesia', u'offer', u'compromis', u'aceh', u'peac', u'talk'] [u'industri', u'brew', u'plan', u'polic'] [u'intellig', u'guarante', u'happi'] [u'isra', u'helicopt', u'gaza', u'strip'] [u'italian', u'bishop', u'kill', u'kenya'] [u'jobless', u'fear', u'grip', u'tyre', u'factori', u'worker'] [u'kean', u'brown', u'asian', u'tour'] [u'kempsey', u'push', u'slim', u'dusti', u'museum'] [u'kerin', u'monitor', u'region', u'fund'] [u'khan', u'fight', u'restor', u'muslim', u'pride'] [u'kick', u'boot', u'foot', u'say', u'eal'] [u'lack', u'sponsorship', u'put', u'sparx'] [u'laptop', u'spark', u'flight', u'emerg'] [u'lloyd', u'boot', u'bomber', u'lead'] [u'lloyd', u'put', u'boot', u'pie'] [u'london', u'attack', u'bomb', u'maker', u'arrest', u'report'] [u'london', u'attack', u'bear', u'qaeda', u'hallmark'] [u'london', u'stop', u'rememb'] [u'machin', u'gun', u'protect', u'australian', u'water'] [u'jail', u'kill', u'friend', u'crash'] [u'jail', u'sophist', u'credit', u'card', u'scam'] [u'manslaught', u'charg', u'drop', u'bondag', u'case'] [u'free', u'serv', u'time', u'child', u'porn'] [u'mcgee', u'probe', u'mishandl', u'commiss', u'find'] [u'mcgee', u'team', u'doctor', u'ring', u'dope', u'alarm', u'bell'] [u'meet', u'busi', u'nickel', u'oper', u'updat'] [u'melbourn', u'die', u'london', u'bomb', u'injuri'] [u'minist', u'back', u'incent', u'drought', u'prepar'] [u'minist', u'signal', u'troubl', u'ahead'] [u'miss', u'schoolgirl', u'safe'] [u'moncouti', u'fli', u'french', u'flag', u'armstrong'] [u'need', u'brookton', u'broadband'] [u'pension', u'local', u'govt', u'rat', u'respit'] [u'reject', u'nation', u'park', u'decis', u'compo'] [u'share', u'mix', u'view', u'local'] [u'urg', u'keech', u'boost', u'japan', u'whale', u'opposit'] [u'baldi', u'strict', u'supervis', u'brack'] [u'muslim', u'pressur', u'wake', u'attack'] [u'naturopath', u'face', u'charg', u'patient', u'death'] [u'airport', u'busi', u'boost', u'job'] [u'centr', u'help', u'remot', u'communiti', u'stay', u'touch'] [u'compactor', u'offer', u'longer', u'landfil', u'life'] [u'letter', u'send', u'mar', u'extort', u'case'] [u'polic', u'recruit', u'head', u'tamworth', u'area'] [u'nicklaus', u'prepar', u'final', u'farewel'] [u'piggeri', u'free', u'pmws', u'diseas'] [u'radioact', u'wast', u'dump'] [u'nurs', u'place', u'better', u'condit'] [u'nurs', u'charg', u'patient', u'death'] [u'dead', u'miss', u'tanker', u'collis'] [u'onlin', u'program', u'aim', u'help', u'diabet', u'patient'] [u'opal', u'china'] [u'optus', u'wait', u'formal', u'respons', u'phone', u'tower'] [u'pair', u'jail', u'wild', u'barossa', u'valley', u'chase'] [u'patient', u'hope', u'inquiri', u'lead', u'health', u'chang'] [u'owner', u'warn', u'diabet', u'risk'] [u'phelp', u'light', u'post', u'olymp', u'world'] [u'phone', u'confirm', u'hick', u'health', u'deterior'] [u'pietersen', u'beat', u'thorp', u'england', u'test'] [u'pioneer', u'hop', u'bounc', u'forfeit', u'match'] [u'planet', u'sun', u'challeng', u'astronom'] [u'flag', u'idea', u'card'] [u'open', u'nation', u'card', u'debat'] [u'polic', u'chief', u'head', u'singleton'] [u'polic', u'consid', u'miss', u'girl', u'internet', u'chat', u'room'] [u'polic', u'hope', u'reward', u'remind', u'help', u'solv', u'teen'] [u'polic', u'driveway', u'death', u'victim'] [u'polic', u'reject', u'claim', u'staff', u'woe'] [u'polic', u'releas', u'imag', u'suspect', u'suicid', u'bomber'] [u'polic', u'releas', u'photo', u'bomb', u'suspect'] [u'polic', u'search', u'dam', u'woman', u'bodi'] [u'port', u'author', u'doubl', u'woodchip', u'export'] [u'power', u'author', u'look', u'avoid', u'blackout', u'repeat'] [u'prayer', u'doesnt', u'help', u'heart', u'patient', u'survey', u'find'] [u'probe', u'launch', u'hotel', u'blaze'] [u'produc', u'downplay', u'crop', u'contamin'] [u'promin', u'muslim', u'refus', u'entri'] [u'protest', u'polic', u'clash', u'maleni', u'supermarket', u'site'] [u'protest', u'hope', u'buy', u'maleni', u'site'] [u'public', u'urg', u'atsic', u'replac'] [u'raider', u'appeal', u'offici'] [u'rain', u'pose', u'crop', u'worri', u'farmer'] [u'rate', u'repriev', u'cooma', u'monaro', u'ratepay'] [u'call', u'vanston'] [u'recruit', u'bolster', u'clarenc', u'polic', u'forc'] [u'region', u'employ', u'rate', u'overtak', u'citi'] [u'region', u'resid', u'urg', u'sign', u'rent', u'assist'] [u'report', u'add', u'fuel', u'refshaug', u'attack'] [u'report', u'question', u'anim', u'welfar'] [u'stand', u'public', u'consult', u'effort'] [u'govt', u'consid', u'palmer', u'report', u'chang'] [u'scheme', u'aim', u'improv', u'disabl', u'servic', u'access'] [u'school', u'princip', u'walk', u'help', u'homeless'] [u'senat', u'say', u'pilbara', u'committe', u'fund', u'proper'] [u'sheriff', u'probe', u'juror', u'detail', u'bungl'] [u'shuttl', u'launch', u'unlik', u'come', u'day', u'nasa'] [u'solon', u'lawyer', u'hope', u'vanston', u'comment'] [u'south', u'west', u'pair', u'charg', u'fake', u'money'] [u'sprinter', u'come', u'play', u'stage'] [u'lankan', u'court', u'block', u'tsunami', u'deal'] [u'lanka', u'seiz', u'control', u'raini', u'colombo'] [u'stanhop', u'prison', u'visit', u'littl', u'late', u'say'] [u'steven', u'hang', u'boot'] [u'strike', u'action', u'disrupt', u'tran', u'tasman', u'flight'] [u'stuey', u'take', u'green', u'jersey'] [u'sweater', u'swelter', u'shoplift'] [u'sydney', u'lizard', u'list', u'best', u'travel', u'spot'] [u'tamworth', u'librari', u'share', u'harri', u'potter', u'frenzi'] [u'research', u'claim', u'world', u'hybrid', u'engin'] [u'teen', u'plead', u'guilti', u'fatal', u'street', u'race'] [u'thai', u'govt', u'crack', u'fight', u'milit'] [u'thai', u'offici', u'discuss', u'spate', u'violenc'] [u'thousand', u'expect'] [u'thousand', u'flee', u'kenyan', u'clan', u'violenc'] [u'threaten', u'grower', u'urg', u'complain', u'accc'] [u'metr', u'croc', u'releas', u'darwin', u'trap'] [u'tiger', u'decis', u'captain', u'johnson'] [u'toowoomba', u'warn', u'whoop', u'cough', u'threat'] [u'transvestit', u'athlet', u'jail', u'decept'] [u'shoot', u'dead', u'bomb', u'thailand'] [u'govt', u'london', u'bomb', u'iranian'] [u'unborn', u'babi', u'carri', u'pollut', u'studi', u'find'] [u'underwat', u'scanner', u'help', u'solv', u'mysteri', u'death'] [u'union', u'beat', u'abattoir', u'reopen'] [u'panel', u'fail', u'agre', u'internet', u'govern'] [u'econom', u'data', u'lift', u'market'] [u'general', u'deni', u'afghanistan', u'quagmir'] [u'dieman', u'mine', u'get', u'gladston', u'ahead'] [u'driver', u'hospit', u'train', u'crash'] [u'vanston', u'sham', u'forc', u'pregnant', u'detaine'] [u'vieira', u'leav', u'arsenal', u'juventus'] [u'wagga', u'mental', u'health', u'rehab', u'centr'] [u'wallabi', u'replet', u'kick', u'option', u'say', u'eal'] [u'watkin', u'outlin', u'rail', u'station', u'work'] [u'webck', u'say', u'bronco', u'weather', u'storm'] [u'wellshot', u'hotel', u'owner', u'beat', u'sale', u'prospect'] [u'wood', u'lead', u'open', u'hensbi', u'outright', u'second'] [u'work', u'start', u'marin', u'medic', u'school'] [u'worri', u'leas', u'land', u'price', u'turn', u'resid', u'away'] [u'zimbabw', u'press', u'see', u'ulterior', u'motiv', u'clergi'] [u'aceh', u'rebel', u'claim', u'breakthrough', u'talk'] [u'agassi', u'skip', u'indi', u'event'] [u'argentina', u'brink', u'davi', u'triumph'] [u'argentina', u'win', u'pivot', u'doubl', u'clash'] [u'arthur', u'tri', u'australia'] [u'aussi', u'ash', u'reject', u'star', u'counti'] [u'bat', u'england', u'ash', u'hop', u'india'] [u'battl', u'wessel', u'keep', u'dutch', u'hop', u'aliv'] [u'beatti', u'trip', u'anger', u'patel', u'patient', u'group'] [u'betfair', u'defend', u'onlin', u'licenc'] [u'biblic', u'remain', u'macau', u'add', u'heritag', u'list'] [u'bird', u'nation', u'secur', u'issu', u'rudd', u'say'] [u'black', u'cloth', u'intrud', u'breach', u'sydney', u'airport'] [u'blair', u'lash', u'evil', u'ideolog', u'islam'] [u'brett', u'interview'] [u'crash', u'kill', u'south', u'africa'] [u'californian', u'marriag', u'reviv'] [u'canada', u'commit', u'troop', u'afghanistan'] [u'care', u'packag', u'good', u'say', u'solon'] [u'cat', u'pull', u'plug', u'power'] [u'citi', u'reject', u'chelsea', u'wright', u'phillip'] [u'coastal', u'area', u'empti', u'emili', u'close', u'jamaica'] [u'coron', u'recommend', u'safeti', u'upgrad', u'ralli'] [u'council', u'reconsid', u'parachut', u'trial'] [u'davydenko', u'put', u'russia', u'level', u'franc'] [u'consid', u'charg', u'case'] [u'driver', u'strike', u'safeti', u'warn', u'coulthard'] [u'egypt', u'confirm', u'arrest', u'london', u'bomb', u'maker'] [u'eminem', u'readi', u'quit', u'report'] [u'famili', u'appeal', u'inform', u'miss', u'woman'] [u'fan', u'await', u'harri', u'potter'] [u'firefox', u'browser', u'near', u'percent', u'market', u'share'] [u'dead', u'blast', u'turkish', u'resort'] [u'giralang', u'owner', u'step', u'redevelop'] [u'govt', u'begin', u'advertis', u'counter', u'punch'] [u'govt', u'handl', u'hick', u'joke'] [u'govt', u'meltdown', u'nuclear', u'issu'] [u'govt', u'launch', u'campaign'] [u'grandstand', u'speak', u'kilda', u'coach', u'grant', u'thoma'] [u'guantanamo', u'trial', u'legal', u'court', u'find'] [u'healthi', u'lifestyl', u'oldest', u'marri', u'coupl'] [u'histor', u'charter', u'add', u'victorian', u'heritag', u'list'] [u'howard', u'extend', u'sympathi', u'famili'] [u'deepli', u'sorri', u'vizard', u'say'] [u'impress', u'eagl', u'tame', u'lion'] [u'indonesia', u'pledg', u'combat', u'illeg', u'log'] [u'isra', u'strike', u'kill', u'hama', u'member'] [u'jail', u'label', u'facto', u'psych', u'hospit'] [u'wrap', u'leicestershir'] [u'juve', u'champion', u'leagu', u'hop', u'vieira'] [u'kenyan', u'troop', u'hunt', u'massacr', u'raider'] [u'hayden', u'serv', u'ash', u'notic'] [u'ljubic', u'pull', u'croatia', u'level', u'romania'] [u'loeb', u'take', u'charg', u'argentina'] [u'london', u'blast', u'suspect', u'link', u'qaeda'] [u'london', u'bomber', u'brainwash', u'famili', u'say'] [u'london', u'bomb', u'probe', u'widen'] [u'luna', u'park', u'develop', u'go', u'wrong'] [u'maleni', u'protest', u'charg', u'obstruct'] [u'arrest', u'london', u'bomb'] [u'mcbrat', u'fight', u'trademark', u'legal', u'battl'] [u'mcewen', u'hit', u'jackpot', u'ogradi', u'stay', u'hunt'] [u'mcewen', u'sprint', u'tour', u'trebl'] [u'morri', u'inquiri', u'head', u'north'] [u'baldi', u'need', u'indefinit', u'jail', u'term', u'johnson'] [u'murali', u'skittl', u'west', u'indi'] [u'nalbandian', u'down', u'arthur', u'level'] [u'nalbandian', u'win', u'second', u'singl', u'match'] [u'nasa', u'back', u'weekend', u'shuttl', u'launch'] [u'nicklaus', u'bid', u'farewel', u'tiger', u'forg', u'clear'] [u'nicklaus', u'sign', u'andrew'] [u'ningaloo', u'hotel', u'plan', u'confus', u'communiti'] [u'defend', u'free', u'transport', u'union', u'picnic'] [u'opal', u'lose', u'cuba'] [u'pakistan', u'detain', u'london', u'bomb'] [u'patient', u'wait', u'ambul', u'join', u'queue'] [u'penultim', u'harri', u'potter', u'hit', u'shop'] [u'penultim', u'potter', u'book', u'releas'] [u'perjuri', u'charg', u'policeman', u'teen'] [u'petrol', u'price', u'refineri', u'remain', u'shut'] [u'phoenix', u'battl', u'melbourn'] [u'diseas', u'result', u'month', u'away'] [u'offer', u'condol', u'famili'] [u'press', u'bush', u'speedi', u'hick', u'hear'] [u'polic', u'doubt', u'milat', u'woman', u'help'] [u'polic', u'identifi', u'london', u'suicid', u'bomber'] [u'serv', u'counter', u'meal', u'camel'] [u'pyrene', u'offer', u'glimmer', u'hope', u'chaser'] [u'rabbitoh', u'stun', u'cowboy', u'townsvill'] [u'rey', u'clichi', u'extend', u'contract', u'arsenal'] [u'rice', u'visit', u'aim', u'ensur', u'gaza', u'pullout'] [u'rupert', u'guin', u'wrap', u'stage'] [u'saint', u'march', u'past', u'tiger'] [u'schwarzenegg', u'drop', u'controversi', u'magazin', u'deal'] [u'seal', u'killer', u'face', u'fin'] [u'shark', u'edg', u'knight', u'thriller'] [u'shotlin', u'boost', u'catch', u'releas', u'surviv'] [u'solon', u'say', u'care', u'packag', u'good'] [u'spain', u'alleg', u'qaeda', u'leader', u'beat', u'jail'] [u'spanish', u'sensat', u'valverd', u'pull'] [u'suicid', u'bomber', u'famili', u'devast', u'london'] [u'suicid', u'bomb', u'possibl', u'turkish', u'resort'] [u'swank', u'costner', u'narrat', u'sept', u'documentari'] [u'swan', u'toppl', u'demon'] [u'sydney', u'water', u'warn', u'crisi', u'report'] [u'taliban', u'hang', u'afghan', u'tribal', u'chief'] [u'tenni', u'australia', u'distanc', u'fanat'] [u'thorp', u'take', u'ash', u'ax', u'stride'] [u'british', u'soldier', u'kill', u'iraq', u'attack'] [u'tiger', u'hop', u'saint'] [u'trio', u'plead', u'guilti', u'balco', u'case'] [u'trust', u'vieira', u'deal', u'wenger', u'insist'] [u'pedestrian', u'kill'] [u'union', u'seek', u'risk', u'assess', u'nuclear', u'wast'] [u'charg', u'soldier', u'abus', u'detaine'] [u'court', u'deliv', u'hick', u'setback'] [u'retail', u'challeng', u'visa', u'card', u'fee'] [u'stock', u'peak'] [u'prison', u'escape'] [u'warrior', u'steal', u'victori', u'rooster'] [u'wie', u'master', u'thwart'] [u'wit', u'recal', u'atom', u'blast'] [u'yahoo', u'tap', u'student', u'research'] [u'zimbabw', u'say', u'briefli', u'halt', u'demolit', u'paper'] [u'rebel', u'kill', u'afghanistan'] [u'abba', u'warn', u'palestinian', u'milit'] [u'year', u'qasim', u'free'] [u'allig', u'kill', u'florida', u'canal'] [u'aloisi', u'delight', u'alav'] [u'aloisi', u'join', u'alav'] [u'ancic', u'ljubic', u'croatia'] [u'argentina', u'complet', u'australia'] [u'armstrong', u'take', u'giant', u'step', u'pyrene'] [u'arson', u'rule', u'carpet', u'store', u'blaze'] [u'aussi', u'jone', u'seiz', u'open', u'lead'] [u'aussi', u'lay', u'card', u'tabl'] [u'aussi', u'assess', u'davi', u'flop'] [u'australian', u'survivor', u'london', u'bomb', u'wake'] [u'beatti', u'push', u'busi', u'abandon', u'sydney', u'melbourn'] [u'beer', u'regatta', u'float', u'year'] [u'blind', u'prevent', u'aborigin', u'communiti'] [u'blue', u'card', u'remind', u'campaign', u'kick'] [u'bogut', u'struggl', u'adjust', u'earli', u'work'] [u'brazil', u'threaten', u'sanction'] [u'brogden', u'water', u'stanc', u'contradictori', u'govt'] [u'bronco', u'outmuscl', u'storm'] [u'chanderpaul', u'prais', u'team', u'fight', u'perform'] [u'claim', u'ambassador', u'concern', u'say', u'labor'] [u'cooma', u'monaro', u'strateg', u'plan', u'readi'] [u'crow', u'thrash', u'hapless', u'bulldog'] [u'daughter', u'inspir', u'equiti', u'man', u'jump', u'anim', u'right'] [u'death', u'toll', u'hit', u'iraq', u'fuel', u'truck', u'attack'] [u'dept', u'defend', u'hospit', u'treatment'] [u'differ', u'world', u'demand', u'card'] [u'docker', u'remain', u'final', u'race'] [u'dragon', u'roll', u'eagl'] [u'evan', u'eye', u'finish', u'debut'] [u'fail', u'health', u'blame', u'bungl'] [u'fiji', u'trip', u'focus', u'process', u'polit', u'pratt'] [u'destroy', u'multi', u'million', u'dollar', u'home'] [u'franc', u'doubl', u'lead'] [u'french', u'terror', u'expert', u'meet', u'ruddock'] [u'govt', u'nuclear', u'wast', u'campaign'] [u'green', u'push', u'recherch', u'heritag', u'list'] [u'habib', u'stand', u'tortur', u'claim'] [u'half', u'hour', u'polic', u'chase', u'end', u'charg'] [u'hama', u'milit', u'kill', u'sharon', u'give', u'armi', u'free'] [u'happi', u'qasim', u'thank', u'support'] [u'henri', u'replac', u'vieira', u'arsenal', u'captain'] [u'hewitt', u'confid', u'keep', u'australia'] [u'hewitt', u'thump', u'aussi'] [u'hewitt', u'thump', u'australia'] [u'hop', u'great', u'lake', u'snow', u'boost', u'water', u'level'] [u'illeg', u'fish', u'boat', u'destroy', u'coast'] [u'indian', u'photograph', u'face', u'suit', u'coke', u'billboard'] [u'indonesia', u'rebel', u'agre', u'formula', u'aceh', u'peac'] [u'iraq', u'tribun', u'lay', u'charg', u'saddam'] [u'irish', u'youth', u'british', u'tourist', u'kill', u'turkish'] [u'isinbayeva', u'set', u'record'] [u'want', u'speak', u'chelsea', u'wright', u'phillip'] [u'jaeger', u'hold', u'determin', u'firebird'] [u'maxwel', u'wrap'] [u'jurist', u'ronald', u'wilson', u'die'] [u'justin', u'langer', u'interview'] [u'liber', u'brush', u'indonesian', u'critic'] [u'loeb', u'track', u'record', u'argentina'] [u'london', u'bomb', u'make', u'suspect', u'innoc', u'famili'] [u'maleni', u'protest', u'maintain', u'wooli', u'fight'] [u'charg', u'bocc', u'ball', u'assault'] [u'martyn', u'langer', u'pont', u'lead', u'feast'] [u'matilda', u'score', u'gasp', u'china'] [u'melbourn', u'driver', u'dodg', u'fall', u'street', u'light'] [u'check', u'suspect', u'london', u'bomber', u'report'] [u'mourinho', u'frustrat', u'transfer', u'bid'] [u'nathan', u'fien', u'sion', u'faumuina'] [u'public', u'hous', u'bushfir', u'ravag', u'street'] [u'ningaloo', u'star', u'resort'] [u'tough', u'drink', u'driver', u'govt'] [u'pack', u'close', u'tiger', u'falter'] [u'pakistan', u'detain', u'suspect', u'london', u'probe'] [u'pakistan', u'tell', u'alcohol', u'promot', u'super'] [u'pearl', u'oyster', u'trial', u'foster', u'competit'] [u'peter', u'perfect', u'hit', u'brick', u'wall'] [u'peter', u'qasim', u'free'] [u'pharmaceut', u'studi', u'prompt'] [u'photo', u'releas', u'suspect', u'suicid', u'bomber'] [u'deni', u'respons', u'turkish', u'resort'] [u'defend', u'australia', u'card', u'debat'] [u'dismiss', u'asio', u'boss', u'alleg'] [u'polic', u'releas', u'photo', u'london', u'blast', u'suspect'] [u'polic', u'releas', u'pictur', u'suspect', u'bomber'] [u'polic', u'seek', u'girl', u'birthday', u'parti'] [u'potter', u'fan', u'thrill', u'review'] [u'power', u'problem', u'fix', u'refineri'] [u'arroyo', u'forc', u'hold', u'ralli', u'embattl'] [u'quickfir', u'khan', u'make', u'stun', u'debut'] [u'race', u'commonwealth', u'perform'] [u'raider', u'upset', u'eel', u'canberra'] [u'rann', u'issu', u'edict', u'prevent', u'clash'] [u'rape', u'victim', u'chanc', u'shape'] [u'review', u'john', u'tong', u'test', u'scratch'] [u'rome', u'host', u'world', u'swim', u'champ'] [u'roo', u'breez', u'past', u'hawk'] [u'ross', u'sign', u'shark'] [u'rottnest', u'swim', u'move', u'safer', u'harbour'] [u'rwanda', u'dispatch', u'soldier', u'darfur', u'region'] [u'scout', u'rebuild', u'camp', u'cottermouth'] [u'shaun', u'mcrae', u'graham', u'murray'] [u'ronald', u'wilson', u'die'] [u'slovakia', u'drive', u'seat', u'doubl'] [u'suicid', u'bomber', u'kill', u'dozen', u'iraq'] [u'suicid', u'bomber', u'target', u'baghdad', u'polic', u'convoy'] [u'tag', u'show', u'river', u'shark', u'popul', u'healthi'] [u'tasmanian', u'coral', u'reef', u'proof', u'global', u'warm'] [u'teenag', u'girl', u'stab', u'outsid', u'shop', u'centr'] [u'teen', u'injur', u'perth', u'accid'] [u'totschnig', u'put', u'austria', u'tour'] [u'tourist', u'flee', u'mexico', u'cancun', u'emili', u'approach'] [u'tribut', u'pay', u'visionari', u'ronald', u'wilson'] [u'tuskless', u'eleph', u'evolv', u'china', u'scientist'] [u'hurt', u'mortar', u'attack', u'gaza', u'settlement'] [u'ullrich', u'suggest', u'wont', u'fight'] [u'unit', u'defend', u'jeer'] [u'dismiss', u'hick', u'habib', u'abus', u'claim'] [u'soldier', u'implic', u'italian', u'steroid', u'bust'] [u'veget', u'farmer', u'import', u'campaign', u'road'] [u'view', u'grandstand'] [u'busi', u'plot', u'campaign'] [u'wasp', u'warn'] [u'abba', u'pledg', u'stop', u'rocket', u'attack'] [u'averag', u'temp', u'expect'] [u'aceh', u'peac', u'deal', u'agre'] [u'aceh', u'peac', u'wont', u'come', u'quick', u'expert', u'warn'] [u'actress', u'back', u'mules'] [u'adelaid', u'oval', u'host', u'game'] [u'advocaat', u'coach', u'unit', u'arab', u'emir'] [u'afghanistan', u'ask', u'hold', u'crimin', u'account'] [u'scrutinis', u'alburi', u'airport', u'secur'] [u'strike', u'forc', u'dozen', u'cancel'] [u'anderson', u'sue', u'govt', u'lose'] [u'close', u'higher', u'rinker', u'jump'] [u'aussi', u'halt', u'aussi'] [u'aussi', u'silver', u'synchro'] [u'austar', u'look', u'china', u'answer', u'southland'] [u'australia', u'cash', u'beef', u'export'] [u'award', u'recognis', u'pilbara', u'teacher', u'effort'] [u'bassga', u'project', u'suffer', u'delay'] [u'bayer', u'blame', u'canola', u'contamin'] [u'beazley', u'label', u'telstra', u'chief', u'monopolist'] [u'beazley', u'say', u'card', u'smokescreen'] [u'bilbi', u'respond', u'predat', u'train'] [u'bond', u'associ', u'admit', u'siphon', u'million'] [u'british', u'airway', u'chief', u'replac', u'vizard', u'major'] [u'bronco', u'wait', u'news', u'webck', u'charg'] [u'complementari', u'medicin', u'train'] [u'industri', u'help', u'clear'] [u'chopper', u'ferri', u'accid', u'victim', u'perth'] [u'chris', u'roger', u'interview'] [u'coalit', u'split', u'emerg', u'card'] [u'coast', u'tavern', u'damag'] [u'cole', u'commit', u'arsenal'] [u'colombia', u'beat', u'mexico', u'reach', u'gold', u'semi'] [u'committe', u'urg', u'reject', u'rezon', u'applic'] [u'conoco', u'philip', u'oper', u'timor', u'pipelin'] [u'contest', u'help', u'design', u'portrait', u'galleri'] [u'corbi', u'lawyer', u'unabl', u'produc', u'wit'] [u'council', u'throw', u'support', u'north', u'west', u'rail', u'rout'] [u'council', u'decid', u'rugbi', u'stadium', u'site'] [u'countri', u'audienc', u'lap', u'opera', u'shed'] [u'court', u'strike', u'blow', u'gunn', u'compo', u'claim'] [u'darwin', u'detent', u'centr', u'need', u'upgrad'] [u'detect', u'plead', u'guilti', u'drug', u'charg'] [u'detect', u'help', u'ensur', u'park', u'station', u'fulli'] [u'diesel', u'price', u'predict', u'climb'] [u'disabl', u'vulner', u'sexual', u'assault', u'confer'] [u'discoveri', u'doubl', u'leav', u'ullrich', u'content'] [u'disneyland', u'celebr', u'birthday'] [u'dodson', u'prais', u'ronald', u'convers'] [u'dont', u'leav', u'mental', u'polic'] [u'drayton', u'take', u'school', u'site', u'sell', u'list'] [u'driver', u'warn', u'condit'] [u'drought', u'stricken', u'landown', u'benefit'] [u'dusti', u'applianc', u'blame', u'emerg'] [u'emili', u'blow', u'carribean', u'holidaymak'] [u'environ', u'minist', u'favour', u'reloc'] [u'expert', u'discuss', u'report', u'outlin', u'futur', u'health'] [u'extra', u'holiday', u'secur', u'pay', u'riverina', u'school'] [u'farmer', u'hit', u'water', u'recycl', u'plan'] [u'fear', u'card', u'lead', u'ident', u'theft'] [u'festiv', u'sydney', u'airport'] [u'destroy', u'mount', u'ousley', u'hous'] [u'destroy', u'shed', u'near', u'backpack', u'hostel'] [u'firefight', u'spainish', u'forest', u'blaze'] [u'firefight', u'push', u'boost', u'number'] [u'flood', u'problem', u'remov', u'section', u'highway'] [u'food', u'creat', u'confus', u'opposit'] [u'policeman', u'jail', u'serb', u'presid', u'murder'] [u'prime', u'minist', u'heath', u'die'] [u'french', u'polynesian', u'leader', u'moot', u'pacif', u'passport'] [u'gardin', u'charg', u'strike'] [u'gardin', u'accept', u'strike', u'penalti'] [u'german', u'court', u'releas', u'qaeda', u'suspect'] [u'giant', u'record', u'impress', u'slammer'] [u'qasim', u'perman', u'visa', u'labor', u'say'] [u'canola', u'creat', u'foreign', u'custom', u'concern'] [u'govern', u'tighter', u'food', u'label', u'law'] [u'govt', u'group', u'discuss', u'technic', u'colleg'] [u'govt', u'offer', u'incent'] [u'govt', u'order', u'import', u'food', u'probe'] [u'govt', u'program', u'provid', u'opportun', u'indigen'] [u'govt', u'reject', u'maleni', u'financi', u'benefit', u'claim'] [u'govt', u'accus', u'neglect', u'elder'] [u'govt', u'undertak', u'festiv', u'research'] [u'govt', u'urg', u'promot', u'afford', u'countri', u'town'] [u'group', u'want', u'grazier', u'water'] [u'guantanamo', u'rule', u'wont', u'derail', u'hick', u'campaign', u'lawyer'] [u'gunn', u'vow', u'proceed', u'lawsuit'] [u'hama', u'reaffirm', u'ceas', u'commit'] [u'health', u'offici', u'seek', u'guest', u'contamin'] [u'health', u'servic', u'fail', u'employ'] [u'hewitt', u'confid', u'domest', u'life', u'halt', u'slam'] [u'hiddink', u'expect', u'name', u'socceroo', u'coach'] [u'hiddink', u'tip', u'socceroo', u'coach'] [u'hill', u'find', u'aceh', u'peac', u'deal', u'promis'] [u'hill', u'welcom', u'local', u'assembl', u'militari', u'chopper'] [u'hodg', u'call', u'farewel', u'match', u'holland'] [u'howard', u'prais', u'iraq', u'defianc'] [u'hundr', u'evacu', u'china', u'await', u'typhoon'] [u'card', u'debat', u'distract', u'labor'] [u'inquiri', u'head', u'back', u'guard', u'death', u'custodi', u'case'] [u'investig', u'begin', u'glide', u'death'] [u'iraq', u'urg', u'donor', u'involv'] [u'iraq', u'britain', u'vulner', u'report'] [u'israel', u'build', u'militari', u'gaza', u'border'] [u'isra', u'armi', u'search', u'desert'] [u'israel', u'prepar', u'gaza', u'pull', u'protest'] [u'israel', u'prevent', u'pullout', u'protest', u'reach', u'ralli'] [u'jaeger', u'captain', u'snap', u'achill', u'tendon'] [u'japan', u'accus', u'buy', u'whale', u'vote'] [u'japan', u'accus', u'whale', u'bribe'] [u'judg', u'urg', u'unit', u'effort', u'terror'] [u'kyogl', u'mayor', u'confid', u'technic', u'colleg', u'propos'] [u'latham', u'avail', u'wallabi'] [u'group', u'push', u'famili', u'relationship', u'centr'] [u'ljubic', u'secur', u'croatia', u'davi', u'semi'] [u'lose', u'luggag', u'leav', u'aussi', u'swimmer', u'high'] [u'maker', u'look', u'mar', u'snicker'] [u'maleni', u'protest', u'question', u'supermarket', u'govt'] [u'kill', u'site', u'traffic', u'light', u'trial'] [u'man', u'nose', u'bite', u'fight'] [u'marina', u'plan', u'get', u'downsiz'] [u'marin', u'reserv', u'offer', u'benefit', u'crabber'] [u'meet', u'focus', u'marin', u'reserv', u'plan'] [u'mice', u'creat', u'headach', u'farmer'] [u'migaloo', u'spot', u'port', u'dougla'] [u'minist', u'review', u'council', u'hous', u'estat', u'decis'] [u'minist', u'urg', u'supermarket', u'aust', u'produc'] [u'effort', u'seek', u'boost', u'number'] [u'searcher', u'join', u'hunt', u'miss', u'woman'] [u'motorcyclist', u'hurt', u'road', u'crash'] [u'mous', u'fear', u'plagu'] [u'call', u'restraint', u'food', u'crop', u'test'] [u'call', u'sensibl', u'debat', u'nuclear', u'wast', u'dump'] [u'visit', u'yield', u'defenc', u'result'] [u'anti', u'terrorist', u'measur', u'protect', u'itali'] [u'centr', u'respons', u'tsunami', u'detect'] [u'rescu', u'helicopt', u'arriv', u'rockhampton'] [u'korea', u'look', u'build', u'trust'] [u'barrier', u'raid', u'hate', u'book', u'claim'] [u'trujillo', u'regul', u'plea'] [u'shire', u'want', u'safeti', u'guarante', u'nuclear', u'wast'] [u'nuclear', u'research', u'bodi', u'back', u'wast', u'dump'] [u'number', u'public', u'transport', u'fin', u'fall'] [u'stop', u'zimbabw', u'tour', u'despit', u'poll'] [u'oat', u'admit', u'bond', u'corp', u'fraud'] [u'oppn', u'concern', u'qasim', u'visa'] [u'oppon', u'card', u'wont', u'stop', u'terror'] [u'dead', u'iraqi', u'bomb', u'blitz'] [u'pakistan', u'clear', u'link', u'london', u'bomber'] [u'founder', u'accus', u'purg', u'record'] [u'paralympian', u'select', u'abl', u'bodi', u'team'] [u'peac', u'deal', u'put', u'rebel', u'polit'] [u'perth', u'artist', u'take', u'major', u'cossack', u'award'] [u'petit', u'launch', u'oppos', u'marin', u'park'] [u'pipelin', u'tariff', u'chang', u'benefit', u'local'] [u'attend', u'church', u'bush', u'washington'] [u'polic', u'investig', u'destruct', u'rampag'] [u'polic', u'look', u'forward', u'ombudsman'] [u'polic', u'probe', u'alcohol', u'speed', u'factor', u'weekend'] [u'pont', u'look', u'build', u'hard', u'day', u'graft'] [u'premier', u'propos', u'review', u'budget', u'estim'] [u'premier', u'mock', u'award', u'controversi'] [u'public', u'serv', u'punish', u'watch'] [u'qasim', u'head', u'beach'] [u'qasim', u'seek', u'compens'] [u'qasim', u'ident', u'remain', u'unknown', u'vanston'] [u'racv', u'forecast', u'record', u'high', u'fuel', u'price'] [u'rain', u'help', u'boost', u'hydro', u'water', u'storag'] [u'rat', u'infest', u'hong', u'kong'] [u'region', u'victoria', u'growth', u'continu', u'govt'] [u'resid', u'accept', u'coastal', u'develop', u'plan'] [u'resid', u'strip', u'nude', u'instal'] [u'resid', u'urg', u'join', u'kimberley', u'coast', u'clean'] [u'resist', u'iraq', u'legitim', u'sadr'] [u'rinker', u'group', u'improv', u'profit', u'forecast'] [u'risdon', u'jail', u'sieg', u'report', u'rais', u'concern'] [u'road', u'user', u'warn', u'care', u'high', u'countri'] [u'roger', u'impress', u'scari'] [u'rowl', u'dread', u'close', u'potter', u'saga'] [u'ruddock', u'hold', u'secur', u'talk', u'french', u'judg'] [u'ruddock', u'unawar', u'asio', u'boss', u'alleg'] [u'rural', u'resid', u'help', u'polic', u'solv', u'crime'] [u'russia', u'stun', u'franc', u'davi'] [u'saff', u'hail', u'freeway', u'rout'] [u'school', u'know', u'allergi', u'student', u'coron', u'tell'] [u'school', u'know', u'teen', u'peanut', u'allergi', u'inquest', u'hear'] [u'scientist', u'gene', u'defect', u'link', u'heart', u'diseas'] [u'chang', u'region', u'seek', u'feder', u'fund'] [u'senior', u'turn', u'away', u'centrelink'] [u'shadow', u'cabinet', u'riverland', u'meet', u'look'] [u'shell', u'servic', u'station', u'blame', u'petrol', u'leak'] [u'shuttl', u'delay', u'worri', u'space', u'station', u'partner'] [u'dead', u'equatori', u'guinea', u'plane', u'crash'] [u'slovak', u'davi', u'semi', u'netherland'] [u'spotlight', u'fevola', u'shocker'] [u'staff', u'boost', u'hospit', u'critic', u'care', u'unit'] [u'state', u'challeng', u'law', u'beatti'] [u'station', u'manag', u'rais', u'wast', u'dump', u'fear'] [u'straw', u'deni', u'terrorist', u'target'] [u'sydney', u'polic', u'probe', u'hate', u'book', u'claim'] [u'farmer', u'reach', u'melbourn', u'food', u'crusad'] [u'tasmanian', u'farmer', u'step', u'anti', u'import', u'campaign'] [u'technic', u'colleg', u'forg', u'closer', u'link'] [u'thousand', u'celebr', u'art', u'festiv', u'open'] [u'tiger', u'cruis', u'major'] [u'toddler', u'hurt', u'blast'] [u'treasur', u'seek', u'senat', u'help'] [u'trescothick', u'favourit', u'mcgrath'] [u'truss', u'admit', u'transport', u'suscept', u'attack'] [u'typhoon', u'haitang', u'lash', u'taiwan'] [u'court', u'find', u'afghan', u'warlord', u'guilti', u'tortur'] [u'flag', u'iraq', u'troop', u'reduct', u'month'] [u'polic', u'arrest', u'terror', u'suspect'] [u'polic', u'correct', u'terror', u'arrest', u'inform'] [u'upgrad', u'break', u'hill', u'prison', u'hous', u'inmat'] [u'vanilla', u'slice', u'return'] [u'victorian', u'camel', u'take', u'carniv', u'major', u'event'] [u'wait', u'game', u'west', u'coast', u'ruckmen'] [u'wallabi', u'squad', u'member', u'fava', u'join', u'western', u'forc'] [u'wast', u'dump', u'plan', u'draw', u'mix', u'reaction'] [u'webck', u'hook'] [u'weekend', u'accid', u'road', u'spotlight'] [u'west', u'indian', u'lawson', u'report', u'suspect', u'action'] [u'white', u'hous', u'sourc', u'agent'] [u'wilson', u'famili', u'turn', u'state', u'funer', u'offer'] [u'wind', u'farm', u'develop', u'issu'] [u'wit', u'elud', u'corbi', u'lawyer'] [u'wright', u'phillip', u'chelsea'] [u'yampi', u'sound', u'major', u'militari', u'train'] [u'kill', u'iraq', u'attack'] [u'abalon', u'hope', u'look', u'foreign', u'fund'] [u'accus', u'child', u'murder', u'face', u'court'] [u'accus', u'crimin', u'begin', u'extradit', u'fight'] [u'weakest', u'link', u'steal', u'rego'] [u'drug', u'code', u'backflip'] [u'reject', u'islam', u'bookshop'] [u'alcohol', u'sale', u'code', u'target', u'citi', u'violenc'] [u'bodi', u'london', u'bomb', u'sit', u'identifi'] [u'alleg', u'murder', u'request', u'interview', u'cash'] [u'qaeda', u'set', u'deadlin', u'iraq', u'pull'] [u'anaesthetist', u'hamper', u'hospit', u'surgeri'] [u'anim', u'right', u'group', u'fight', u'cost'] [u'aussi', u'food', u'push', u'head', u'ballarat'] [u'australia', u'institut', u'doubt', u'wast', u'dump', u'oper'] [u'australian', u'cyclist', u'kill', u'germani'] [u'australian', u'team', u'cyclist', u'kill', u'germani'] [u'australia', u'sweep', u'ash', u'mcgrath'] [u'aust', u'team', u'cyclist', u'kill', u'germani'] [u'aust', u'travel', u'domin', u'tourism', u'industri', u'report'] [u'aust', u'allianc', u'deeper', u'howard', u'murdoch'] [u'barrist', u'legal', u'immun', u'vital', u'say'] [u'baxter', u'visit', u'convinc', u'burk', u'need', u'royal'] [u'beazley', u'blame', u'poll', u'result', u'london', u'bomb'] [u'beazley', u'support', u'sink'] [u'beef', u'produc', u'remot', u'station'] [u'biochemist', u'clear', u'link', u'london', u'bomb'] [u'blair', u'urg', u'muslim', u'tackl', u'evil', u'ideolog'] [u'blaze', u'rip', u'port', u'campbel', u'restaur'] [u'blood', u'pressur', u'provid', u'reason', u'chocol'] [u'boyl', u'maleni', u'comment', u'disappoint', u'say'] [u'british', u'teen', u'launch', u'airlin', u'bedroom'] [u'build', u'work', u'conservatorium', u'student', u'number'] [u'bush', u'add', u'crimin', u'test', u'leak'] [u'bushfir', u'victim', u'lodg', u'second', u'damag', u'claim'] [u'cairn', u'rate', u'prompt', u'awar'] [u'canadian', u'take', u'gold', u'china', u'domin'] [u'casino', u'embroil', u'chocol', u'extort'] [u'criticis', u'account', u'increas'] [u'chechen', u'polic', u'jeep', u'attack', u'kill'] [u'chen', u'address', u'committe', u'china', u'right', u'abus'] [u'child', u'protect', u'law', u'requir', u'polic', u'check'] [u'children', u'starv', u'death', u'niger'] [u'refus', u'pressur', u'senat', u'nuclear', u'dump'] [u'coalit', u'divid', u'food', u'label', u'say', u'opposit'] [u'contractor', u'defend', u'alcan', u'refineri', u'off'] [u'costello', u'back', u'vizard', u'case'] [u'costello', u'reiter', u'nation', u'competit'] [u'costello', u'tour', u'dalrympl', u'coal', u'termin'] [u'coulthard', u'play', u'strike', u'threat'] [u'council', u'award', u'wodonga', u'streetscap', u'contract'] [u'council', u'delay', u'raaf', u'base', u'decis'] [u'councillor', u'oppos', u'telstra', u'sale'] [u'council', u'push', u'roma', u'mitchel', u'road', u'revamp'] [u'council', u'investig', u'attack', u'girl'] [u'cycl', u'world', u'mourn', u'dead', u'crash'] [u'cyclist', u'widow', u'question', u'dpps', u'kapunda', u'delay'] [u'defenc', u'mean', u'king', u'highway', u'upgrad', u'nrma'] [u'develop', u'odd', u'high', u'rise', u'reject'] [u'devon', u'north', u'faulti', u'phone', u'repair', u'continu'] [u'doctor', u'shortag', u'mean', u'hospit', u'cut'] [u'doubt', u'air', u'tourism', u'affili'] [u'dreamtim', u'paint', u'sale', u'come'] [u'drought', u'reject', u'puzzl'] [u'drug', u'fight', u'target', u'teen'] [u'dutton', u'carri', u'flag', u'card'] [u'eagl', u'selwood', u'nomin', u'rise', u'star', u'award'] [u'eden', u'broadband', u'demand', u'assess'] [u'ellison', u'back', u'role', u'fisher', u'illeg', u'fish'] [u'engin', u'earn', u'award', u'water', u'recycl', u'effort'] [u'environ', u'failur', u'report', u'find'] [u'evan', u'tate', u'boss', u'bow', u'pressur'] [u'famili', u'welcom', u'sieg', u'inquest', u'complaint'] [u'farmer', u'applaud', u'call', u'rural', u'state'] [u'farmer', u'test', u'free', u'crop'] [u'farmer', u'urg', u'embrac', u'work', u'holiday', u'visa'] [u'farm', u'group', u'unhappi', u'govt', u'cut'] [u'ferguson', u'warn', u'futur', u'conduct'] [u'season', u'start', u'earli'] [u'foreign', u'doctor', u'freez', u'hit', u'academ', u'post'] [u'forum', u'improv', u'wool', u'industri', u'imag'] [u'frantic', u'effort', u'stop', u'solon', u'deport', u'reveal'] [u'free', u'qasim', u'receiv', u'ongo', u'treatment'] [u'fund', u'incent', u'region', u'food', u'process', u'job'] [u'geograph', u'head', u'armidal', u'nation'] [u'geologist', u'warn', u'underwat', u'landslid'] [u'gilchrist', u'wicket', u'england', u'prize'] [u'gold', u'coast', u'team', u'robina', u'home'] [u'govt', u'attack', u'delay', u'highway', u'revamp'] [u'govt', u'face', u'scrutini', u'detaine', u'abus', u'claim'] [u'govt', u'consid', u'consequ', u'actu'] [u'govt', u'sewerag', u'fund'] [u'govt', u'urg', u'adopt', u'risdon', u'sieg', u'recommend'] [u'govt', u'urg', u'boost', u'road', u'load', u'limit'] [u'forefront', u'special', u'week'] [u'great', u'lake', u'tighten', u'belt', u'rate', u'rise'] [u'green', u'group', u'push', u'gunn'] [u'hama', u'milit', u'clash', u'palestinian', u'forc'] [u'harri', u'potter', u'post', u'record', u'sale', u'publish'] [u'health', u'servic', u'stand', u'administr', u'cut'] [u'health', u'servic', u'want', u'plan', u'forum', u'avoid'] [u'hewlett', u'packard', u'shed', u'thousand', u'job'] [u'hick', u'trial', u'fair', u'howard'] [u'hors', u'trainer', u'shoot', u'death', u'probabl', u'accident'] [u'illawarra', u'jobless', u'figur', u'mix'] [u'indigen', u'exhibit', u'fund', u'artist'] [u'inland', u'rail', u'plan', u'need', u'coordin', u'approach', u'atec'] [u'internet', u'fraud', u'cost', u'bank', u'buck'] [u'iraqi', u'gunmen', u'strike', u'base', u'worker'] [u'iraq', u'reach', u'democrat', u'mileston', u'myer', u'insist'] [u'islam', u'research', u'unit', u'aim', u'dispel', u'myth'] [u'isra', u'troop', u'kill', u'milit'] [u'jail', u'road', u'rage', u'driver', u'kill', u'toddler'] [u'keat', u'deni', u'labour', u'market', u'need', u'reform'] [u'hospit', u'debat', u'plan', u'say', u'health'] [u'kenyan', u'crash', u'kill'] [u'labor', u'concern', u'fingerprint', u'plan'] [u'labor', u'want', u'maleni', u'woolworth', u'meet'] [u'labor', u'target', u'chang', u'impact', u'bonus', u'right'] [u'readi', u'bouncer', u'battl'] [u'livestock', u'export', u'urg', u'improv', u'anim', u'welfar'] [u'local', u'govt', u'back', u'away', u'elect', u'chang'] [u'malle', u'back', u'card', u'plan'] [u'accus', u'babi', u'murder', u'face', u'trial'] [u'admit', u'drug', u'abus', u'stepdaught'] [u'face', u'court', u'restaur', u'stab'] [u'masterfood', u'extortionist', u'aim', u'casino'] [u'mayor', u'worri', u'coron', u'chang', u'hamper', u'bushfir'] [u'meet', u'focus', u'remot', u'water', u'suppli'] [u'melbourn', u'hand', u'steal', u'egyptian', u'artefact'] [u'mexican', u'resort', u'surviv', u'hurrican', u'emili', u'wrath'] [u'industri', u'studi', u'result', u'loom'] [u'miner', u'compani', u'plan', u'tiwi', u'sand'] [u'miner', u'find', u'gold', u'near', u'port', u'augusta'] [u'miner', u'assess', u'gold', u'explor', u'data'] [u'mine', u'agricultur', u'urg', u'help', u'combat', u'skill'] [u'minist', u'defend', u'critic', u'infrastructur'] [u'minist', u'open', u'jail', u'accommod', u'unit'] [u'minist', u'prais', u'mackay', u'crime', u'squad'] [u'minist', u'worri', u'cost', u'ethanol', u'blend', u'fuel'] [u'monsoon', u'flood', u'maroon', u'million', u'bangladeshi'] [u'mother', u'say', u'crisi', u'accommod', u'unsuit'] [u'gambier', u'ponder', u'draft', u'commerci', u'strategi'] [u'nasa', u'struggl', u'shuttl', u'problem'] [u'nation', u'prais', u'outgo', u'state', u'presid'] [u'nation', u'sell', u'bush', u'telstra', u'katter'] [u'children', u'seri', u'benefit', u'gold', u'coast'] [u'coach', u'veto', u'australia', u'colombia', u'friend'] [u'preschool', u'open', u'blaze'] [u'news', u'corp', u'buy', u'myspacecom'] [u'ninja', u'turtl', u'resurrect', u'screen'] [u'rubber', u'stamp', u'ralph', u'say', u'minist'] [u'coalit', u'nut', u'seat', u'split'] [u'farmer', u'elect', u'lauri', u'presid'] [u'wont', u'enter', u'busi', u'bid'] [u'opal', u'depart', u'china'] [u'open', u'mind', u'need', u'anti', u'terror', u'fight', u'say', u'polic'] [u'opposit', u'urg', u'network', u'extens', u'fund'] [u'pakistan', u'detain', u'london', u'bomb'] [u'get', u'permiss', u'expand', u'gambl', u'empir'] [u'peac', u'monitor', u'prepar', u'aceh', u'deploy'] [u'perth', u'jail', u'racial', u'motiv', u'murder'] [u'plan', u'afoot', u'arthriti', u'medic', u'factori'] [u'plantat', u'forestri', u'rule', u'review'] [u'effort', u'disappoint', u'hick', u'famili'] [u'urg', u'rich', u'world', u'help', u'poor', u'trade'] [u'polic', u'crack', u'road', u'rider'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'pound', u'back', u'thorp', u'swim', u'drug', u'cheat'] [u'premier', u'tell', u'break', u'hill', u'health', u'cut'] [u'princ', u'highway', u'featur', u'assembl'] [u'probe', u'launch', u'alumina', u'plant', u'fatal'] [u'produc', u'tell', u'generat'] [u'public', u'quiz', u'food'] [u'public', u'urg', u'continu', u'support', u'water', u'ban'] [u'warn', u'jail', u'year', u'old'] [u'queanbeyan', u'technic', u'colleg', u'elect', u'promis'] [u'raider', u'wait', u'woolford', u'appeal', u'clearanc'] [u'rain', u'go', u'help', u'drought', u'town'] [u'rann', u'voic', u'concern', u'nuclear', u'wast', u'dump'] [u'rat', u'review', u'rais', u'film', u'distributor'] [u'real', u'culprit', u'want', u'testifi', u'corbi', u'lawyer'] [u'real', u'owner', u'drug', u'corbi', u'lawyer'] [u'refuge', u'advoc', u'air', u'card', u'opposit'] [u'regul', u'overturn', u'execut'] [u'report', u'confirm', u'iraq', u'increas', u'terror'] [u'report', u'highlight', u'need', u'charlestown', u'rethink'] [u'riewoldt', u'consid', u'earli', u'return'] [u'rockhampton', u'budget', u'deliv', u'rate', u'rise'] [u'loom', u'ahead', u'grain', u'meet'] [u'rudd', u'say', u'hick', u'face', u'unfair', u'trial'] [u'africa', u'wont', u'confirm', u'zimbabw', u'loan', u'report'] [u'scientist', u'condemn', u'ax', u'research', u'fund', u'board'] [u'senat', u'inquiri', u'see', u'broom', u'spend', u'hand'] [u'disput', u'karoonda', u'storm', u'insur', u'report'] [u'assault', u'doctor', u'appli', u'medic', u'board'] [u'sheep', u'milk', u'protein', u'prevent', u'alzheim'] [u'shepparton', u'princ', u'face', u'court', u'million', u'dollar'] [u'singl', u'desk', u'hurt', u'wheat', u'grower', u'studi'] [u'solomon', u'deni', u'japan', u'buy', u'whale', u'vote'] [u'solon', u'deport', u'despit', u'seizur', u'nurs', u'claim'] [u'appli', u'pressur', u'father', u'bodi', u'exhum'] [u'south', u'west', u'endur', u'tough', u'time', u'job'] [u'stanhop', u'surpris', u'high', u'redund', u'respons'] [u'stem', u'cell', u'breakthrough', u'offer', u'hope', u'uterin'] [u'surgeri', u'cancel', u'stress', u'patient', u'opposit'] [u'task', u'forc', u'chief', u'promis', u'currumbin', u'landslid'] [u'teenag', u'critic', u'condit', u'stab'] [u'terror', u'book', u'report', u'concern', u'vail'] [u'pilot', u'miss', u'jet', u'collid'] [u'tibooburra', u'ident', u'die', u'crash'] [u'trio', u'charg', u'exot', u'plant', u'chemic'] [u'typhoon', u'haitang', u'kill', u'injur', u'dozen'] [u'group', u'probe', u'beauti', u'sight'] [u'court', u'jail', u'afghan', u'warlord'] [u'increas', u'concern', u'zimbabw', u'demolit'] [u'stock', u'profit', u'take'] [u'uterin', u'stem', u'cell', u'promis'] [u'vagrant', u'win', u'right', u'live', u'brazil', u'street'] [u'vail', u'outlin', u'expect', u'telstra', u'boss'] [u'veget', u'chang', u'promis', u'farmer', u'benefit'] [u'stoney', u'announc', u'exit', u'polit'] [u'vietnam', u'militari', u'chief', u'westmoreland', u'die'] [u'vizard', u'successor', u'passion'] [u'volunt', u'seek', u'bipolar', u'research'] [u'wallabi', u'readi', u'elli', u'park', u'battl'] [u'wall', u'street', u'drag', u'australian', u'stock'] [u'nat', u'telstra', u'sale', u'condit'] [u'watchdog', u'prais', u'urg', u'improv'] [u'weather', u'bureau', u'introduc', u'comfort', u'measur'] [u'webck', u'omeley', u'free', u'play'] [u'urg', u'govern', u'address', u'water', u'crisi'] [u'woman', u'charg', u'karratha', u'stab'] [u'worker', u'kill', u'uranium', u'blast'] [u'world', u'robot', u'champ', u'return', u'sydney'] [u'wright', u'phillip', u'complet', u'chelsea'] [u'young', u'driver', u'urg', u'road', u'statist'] [u'youth', u'question', u'stab', u'death'] [u'academ', u'strike'] [u'bushfir', u'litig', u'complain', u'lack'] [u'activist', u'eleph', u'fight', u'court'] [u'actor', u'farrel', u'take', u'action', u'tape'] [u'actu', u'tell', u'worker', u'fear'] [u'address', u'gaff', u'bowel', u'cancer', u'screen', u'test'] [u'albani', u'waterfront', u'plan', u'get'] [u'alic', u'close', u'deal'] [u'govern', u'help', u'stop', u'foreign', u'doctor'] [u'australian', u'water', u'qualiti', u'expertis', u'need', u'oversea'] [u'australia', u'face', u'scot', u'cricket', u'world', u'open'] [u'bayer', u'seek', u'cotton', u'approv'] [u'beachgoer', u'urg', u'report', u'sick', u'turtl'] [u'beatti', u'back', u'telstra', u'split'] [u'beatti', u'urg', u'visit', u'medic', u'blackmail', u'govt'] [u'beazley', u'call', u'iraq', u'quagmir', u'exit', u'strategi'] [u'beef', u'giant', u'unit', u'trade', u'reform'] [u'better', u'mules', u'train'] [u'british', u'soldier', u'face', u'crime', u'trial'] [u'builder', u'reason', u'confid', u'hous'] [u'bush', u'move', u'lift', u'india', u'nuclear', u'sanction'] [u'bush', u'pick', u'conserv', u'judg', u'suprem', u'court'] [u'bush', u'prais', u'howard'] [u'bush', u'prais', u'howard', u'backbon'] [u'coal', u'royalti', u'help', u'boost', u'water', u'suppli'] [u'bomb', u'explod', u'kashmir'] [u'charg', u'drop', u'palm', u'island', u'accus'] [u'china', u'capabl', u'taiwan', u'attack', u'report'] [u'china', u'economi', u'surg', u'forward'] [u'cloud', u'hang', u'futur', u'univers', u'legal', u'centr'] [u'club', u'meet', u'poki'] [u'coast', u'kid', u'bush'] [u'communiti', u'mourn', u'polic', u'offic', u'kill', u'crash'] [u'competit', u'beef', u'cattl', u'price'] [u'concern', u'resid', u'alert', u'polic', u'zigzag', u'drink'] [u'corbi', u'court'] [u'corbi', u'case', u'reopen', u'bali'] [u'corbi', u'get', u'chanc'] [u'corbi', u'legal', u'team', u'struggl', u'wit'] [u'corbi', u'plead', u'help', u'wit'] [u'corbi', u'trial', u'open'] [u'costello', u'port', u'push', u'prompt', u'tough'] [u'council', u'ask', u'chip', u'famili', u'centr'] [u'council', u'chamber', u'reopen', u'polic', u'probe', u'suspici'] [u'council', u'confid', u'develop', u'resid', u'work'] [u'council', u'consid', u'revis', u'high', u'rise', u'plan'] [u'countri', u'energi', u'land', u'clear'] [u'court', u'jail', u'break', u'hill', u'fraudster'] [u'cowboy', u'half', u'make', u'debut'] [u'cyclist', u'tribut', u'gillett'] [u'cyclist', u'tribut', u'passion', u'gillett'] [u'czech', u'beat', u'boardman', u'hour', u'mark'] [u'decis', u'immin', u'fund', u'food', u'processor'] [u'desk', u'studi', u'find', u'fit', u'guidelin', u'fall', u'short'] [u'despati', u'give', u'canada', u'second', u'gold'] [u'develop', u'bulki', u'good', u'centr'] [u'dinosaur', u'bone'] [u'disput', u'resolv', u'toyota', u'resum', u'product'] [u'doctor', u'highlight', u'gippsland', u'cannabi', u'woe'] [u'dragon', u'queri', u'coach', u'fine'] [u'dragon', u'appeal', u'brown', u'fine'] [u'drug', u'smuggler', u'get', u'year', u'cambodian', u'jail'] [u'economi', u'unlik', u'slow', u'survey'] [u'kill', u'yemen', u'riot', u'fuel', u'price', u'rise'] [u'evan', u'armstrong', u'defend', u'yellow'] [u'farmer', u'encourag', u'improv', u'mental', u'health'] [u'govt', u'hold', u'forestri', u'coup', u'case'] [u'rescu', u'rottnest', u'boat', u'capsiz'] [u'council', u'offic', u'sale'] [u'gallop', u'shed', u'light', u'solar', u'plan'] [u'germani', u'town', u'hold', u'gillett', u'memori', u'servic'] [u'gerrard', u'rescu', u'liverpool'] [u'gillespi', u'ash', u'injuri', u'scare'] [u'gillespi', u'mend', u'ahead', u'ash', u'open'] [u'googl', u'open', u'research', u'centr', u'china'] [u'govt', u'anim', u'group', u'scrap', u'asian', u'eleph'] [u'govt', u'ask', u'respons', u'feral', u'anim'] [u'govt', u'odd', u'council', u'sewerag', u'subsidi'] [u'govt', u'fund', u'help', u'music', u'therapi', u'program', u'grow'] [u'govt', u'make', u'eleph'] [u'govt', u'chang', u'food', u'label', u'law'] [u'govt', u'urg', u'rethink', u'desalin', u'plan'] [u'govt', u'welcom', u'basslink', u'cabl', u'arriv'] [u'grant', u'council', u'deliv', u'rate', u'rise'] [u'griffith', u'council', u'help', u'multicultur', u'centr'] [u'grower', u'tell', u'fear', u'china'] [u'health', u'servic', u'chief', u'offer', u'merger', u'assur'] [u'hewitt', u'coria', u'face', u'davi', u'fin'] [u'hezbollah', u'join', u'lebanon', u'cabinet', u'time'] [u'hickss', u'lawyer', u'request', u'time'] [u'hick', u'unlik', u'face', u'death', u'penalti', u'general'] [u'hick', u'unlik', u'face', u'death', u'penalti', u'say', u'advisor'] [u'hiddink', u'percent', u'sure', u'socceroo'] [u'higher', u'price', u'hit', u'live', u'cattl', u'export'] [u'high', u'school', u'replac', u'cost'] [u'high', u'tech', u'trolley', u'aim', u'transform', u'shop'] [u'hilali', u'comment', u'hypocrit'] [u'hoteli', u'confid', u'law', u'wont', u'deter'] [u'howard', u'bush', u'talk', u'wide', u'rang'] [u'howard', u'push', u'trade', u'barrier'] [u'howard', u'say', u'australia', u'relationship'] [u'howard', u'visit', u'london', u'bomb', u'victim'] [u'hull', u'back', u'nation', u'plan'] [u'hunter', u'tourism', u'overhaul', u'region', u'market'] [u'hunt', u'water', u'davi', u'race', u'gaff'] [u'hunt', u'firefight'] [u'card', u'infring', u'privaci'] [u'want', u'bring', u'home', u'say', u'cyclist', u'husband'] [u'independ', u'say', u'vilif', u'law', u'prevent', u'free'] [u'india', u'need', u'unsung', u'hero', u'chappel'] [u'indonesia', u'confirm', u'bird', u'death'] [u'inquest', u'hear', u'african', u'doctor', u'appoint'] [u'intellectu', u'disabl', u'face', u'communiti'] [u'investor', u'group', u'buy', u'histor', u'waverley', u'mill'] [u'israel', u'parliament', u'reject', u'gaza', u'pullout', u'delay'] [u'kimberley', u'set', u'trap', u'catch', u'hitchhik', u'toad'] [u'kloden', u'tour', u'futur', u'doubt', u'crash'] [u'knock', u'hearn', u'lake', u'subdivis'] [u'lake', u'eppalock', u'hotel', u'motel', u'plan', u'continu'] [u'landhold', u'blame', u'currumbin', u'landslip', u'drainag'] [u'law', u'inadequ', u'deal', u'hate', u'book'] [u'lawsuit', u'alleg', u'dupont', u'teflon', u'health', u'risk'] [u'lennon', u'defend', u'forestri', u'tasmania', u'head'] [u'lesson', u'learn', u'cycl', u'accid'] [u'lleyton', u'bunker'] [u'local', u'chair', u'airport', u'secur', u'inquiri'] [u'local', u'urg', u'contact', u'pacif', u'highway', u'inquiri'] [u'lookout', u'jail', u'break'] [u'charg', u'murder'] [u'plead', u'guilti', u'neglig', u'drive', u'case'] [u'face', u'court', u'hotel', u'assault'] [u'isra', u'protest', u'head', u'home'] [u'mayor', u'unconcern', u'investig'] [u'mellor', u'return', u'rabbitoh', u'farm'] [u'metung', u'sell'] [u'miner', u'sell', u'goldfield', u'nickel', u'asset'] [u'mine', u'compani', u'search', u'uranium'] [u'urg', u'calm', u'log', u'protest'] [u'indigen', u'health', u'money', u'translat'] [u'inform', u'injur', u'cyclist', u'expect', u'today'] [u'mother', u'children', u'free', u'villawood'] [u'seek', u'young', u'farmer', u'scheme', u'detail'] [u'stand', u'tech', u'colleg', u'delay'] [u'museum', u'show', u'dinosaur', u'treasur', u'trove'] [u'nation', u'heritag', u'list', u'seek', u'lawrenc'] [u'nation', u'park', u'confid', u'promot'] [u'nation', u'liber', u'talk', u'corner'] [u'nation', u'seek', u'greater', u'live', u'trade', u'protect'] [u'nation', u'seek', u'home', u'grant', u'restructur', u'boost'] [u'newli', u'elect', u'farmer', u'group', u'head', u'vow', u'defend'] [u'open', u'near', u'orang'] [u'nightclub', u'beat', u'quell', u'complaint'] [u'charg', u'lay', u'chiltern', u'death'] [u'touch', u'say', u'hayden'] [u'nrma', u'concern', u'increas', u'road', u'death'] [u'auditor', u'general', u'defend', u'emerg', u'servic'] [u'teach', u'council', u'advis', u'educ'] [u'olymp', u'standstil', u'miner', u'death'] [u'pace', u'attack', u'select', u'headach', u'gilchrist'] [u'hospit', u'electr', u'engin', u'strike'] [u'pakistan', u'arrest', u'london', u'attack'] [u'palestinian', u'group', u'order', u'gunmen', u'stop', u'fight'] [u'passeng', u'number', u'boost', u'sydney', u'airport', u'coffer'] [u'penalti', u'threat', u'beazley'] [u'perth', u'hospit', u'report', u'highlight', u'fund'] [u'phone', u'tower', u'protest', u'mount'] [u'pietersen', u'tell', u'lord', u'crowd', u'turn', u'aussi'] [u'polic', u'call', u'anti', u'abort', u'protest'] [u'polic', u'charg', u'teen', u'robberi', u'stab'] [u'polic', u'give', u'palm', u'report'] [u'polic', u'hunt', u'arsonist', u'hoon'] [u'polic', u'investig', u'babi', u'death'] [u'polic', u'watch', u'biki', u'holiday', u'ride'] [u'power', u'worker', u'strike', u'disput'] [u'attack', u'memo', u'pressur', u'intellig'] [u'price', u'return', u'raider'] [u'protest', u'farmer', u'arriv', u'ballarat'] [u'public', u'servant', u'feel', u'uneasi', u'futur'] [u'rail', u'servic', u'undergo', u'terror', u'simul'] [u'region', u'support', u'har', u'race', u'board'] [u'region', u'offer', u'telstra', u'sale', u'assur'] [u'relief', u'interior', u'nino', u'threat', u'reced'] [u'resid', u'protest', u'mine', u'electr'] [u'resourc', u'push', u'market', u'higher'] [u'rethink', u'secur', u'check', u'port', u'bodi', u'urg'] [u'rider', u'intens', u'care', u'parent'] [u'rider', u'intens', u'care', u'parent'] [u'rise', u'popul', u'spark', u'bunburi', u'plan'] [u'robert', u'sign', u'king'] [u'death', u'prompt', u'tighter', u'secur'] [u'govt', u'reject', u'marin', u'park', u'concern'] [u'meat', u'compani', u'win', u'defam', u'case'] [u'chang', u'charter', u'address', u'sustain'] [u'search', u'continu', u'miss', u'teen'] [u'second', u'execut', u'challeng', u'morri', u'inquiri'] [u'second', u'time', u'unlucki', u'rocki', u'cyclist'] [u'skill', u'vacanc', u'drop'] [u'skill', u'shortag', u'hamper', u'coal', u'termin', u'plan'] [u'stab', u'accus', u'refus', u'bail'] [u'stand', u'continu', u'wynyard'] [u'african', u'doctor', u'suffer', u'codein', u'addict'] [u'student', u'fear', u'lose', u'mark', u'inquest', u'tell'] [u'studi', u'find', u'northern', u'river', u'resid'] [u'suicid', u'bomber', u'kill', u'iraq'] [u'sydney', u'ferri', u'forc', u'request', u'price', u'increas'] [u'lawyer', u'appoint', u'ombudsman'] [u'tate', u'hope', u'regain', u'centr', u'spot'] [u'taxi', u'driver', u'warn', u'compli', u'wheelchair', u'law'] [u'teacher', u'give', u'evid', u'peanut', u'butter', u'inquest'] [u'teen', u'face', u'court', u'stab', u'murder'] [u'teen', u'win', u'rule', u'youth', u'curfew'] [u'terrorist', u'train', u'camp', u'shut', u'karzai'] [u'testicular', u'cancer', u'patient', u'children'] [u'smurf', u'screen', u'trilog'] [u'thiev', u'steal', u'toddler', u'insid'] [u'kill', u'trap', u'china', u'explos'] [u'tidi', u'town', u'award', u'recognis', u'communiti'] [u'soon', u'nomin', u'prioriti', u'telstra', u'sale'] [u'toyota', u'ford', u'stand', u'worker'] [u'kill', u'horror', u'road', u'smash'] [u'teach', u'group', u'consid', u'ban', u'fail'] [u'air', u'sorrow', u'cycl', u'tragedi'] [u'unknown', u'substanc', u'see', u'darwin', u'citi', u'council'] [u'market', u'boost', u'earn', u'report'] [u'vege', u'protest', u'prompt', u'reaction'] [u'probe', u'offic', u'corrupt'] [u'word', u'erupt', u'maleni', u'site', u'sale'] [u'water', u'alloc', u'review'] [u'wide', u'hop', u'leav', u'good', u'impress'] [u'wit', u'protect', u'review', u'prompt'] [u'woman', u'die', u'duke', u'highway', u'crash'] [u'work', u'begin', u'swamp', u'willow', u'remov'] [u'world', u'slow', u'niger', u'famin', u'respons', u'say'] [u'worsfold', u'slam', u'tribun'] [u'wynyard', u'stand', u'end'] [u'youth', u'face', u'court', u'broom', u'arm', u'robberi'] [u'youth', u'group', u'question', u'volunt', u'crackdown'] [u'year', u'phallus', u'germani'] [u'aborigin', u'leader', u'farewel', u'state', u'funer'] [u'adopt', u'group', u'call', u'extens', u'babi', u'bonus'] [u'age', u'care', u'later', u'studi'] [u'airport', u'staff', u'background', u'check', u'tighten', u'inquiri'] [u'alcoa', u'face', u'action', u'wagerup', u'spill'] [u'anger', u'decis', u'shoot', u'alic', u'sydney'] [u'arm', u'polic', u'enter', u'central', u'london', u'hospit'] [u'ash', u'best', u'player', u'receiv', u'compton', u'miller', u'medal'] [u'asic', u'request', u'lenienc', u'vizard'] [u'asthma', u'spend', u'focus', u'children', u'studi', u'find'] [u'hit', u'record', u'high'] [u'aussi', u'bat', u'lord'] [u'aussi', u'pace', u'attack'] [u'aust', u'greater', u'risk', u'bird'] [u'aust', u'base', u'jumper', u'die', u'norway'] [u'aust', u'bomb', u'victim', u'question', u'howard', u'iraq'] [u'australian', u'base', u'jumper', u'kill', u'norway'] [u'australian', u'polic', u'offic', u'appeal', u'verdict', u'delay'] [u'australia', u'skittl', u'english', u'pace', u'attack'] [u'avocado', u'grower', u'levi', u'increas', u'govt'] [u'bathurst', u'saleyard', u'receiv', u'multi', u'million', u'dollar'] [u'sign', u'iron', u'deal'] [u'lade', u'focus', u'want', u'campaign'] [u'black', u'await', u'sentenc', u'perjuri', u'charg'] [u'brazilian', u'miner', u'seal', u'coal', u'project'] [u'bright', u'light', u'puzzl', u'pilbara', u'resid'] [u'britain', u'plan', u'global', u'extremist', u'databas'] [u'broom', u'esper', u'play', u'role', u'tsunami', u'warn'] [u'window', u'blow', u'injuri', u'oper'] [u'canada', u'legalis', u'marriag'] [u'captain', u'reach', u'agreement', u'disput', u'catch'] [u'cattl', u'station', u'join', u'drought', u'declar', u'list'] [u'china', u'heed', u'call', u'revalu', u'currenc'] [u'church', u'reopen', u'council', u'approv'] [u'agent', u'arrest', u'seek', u'italian', u'kidnap', u'affair'] [u'coast', u'surfer', u'headway', u'jeffrey'] [u'complaint', u'fail', u'deter', u'custom', u'airport', u'process'] [u'convict', u'gang', u'rapist', u'face', u'jail', u'time'] [u'cosmic', u'catastroph', u'strike', u'like', u'star'] [u'costello', u'meet', u'indigen', u'leader', u'pearson'] [u'council', u'unveil', u'revis', u'highris', u'plan'] [u'countri', u'race', u'club', u'reassur', u'futur'] [u'court', u'dismiss', u'wine', u'compani', u'appeal'] [u'court', u'uphold', u'appeal', u'relay', u'gold'] [u'croc', u'fear', u'prompt', u'sport', u'cancel'] [u'dairi', u'countri', u'seek', u'trade', u'target'] [u'davi', u'hunt', u'meet', u'resolv', u'disput'] [u'demand', u'lamb', u'tip', u'increas'] [u'detain', u'children', u'excit', u'school'] [u'doctor', u'fear', u'critic', u'injur', u'cyclist'] [u'doubl', u'delight', u'armstrong', u'team'] [u'drink', u'volvo', u'driver', u'test', u'safeti', u'system'] [u'elder', u'driver', u'particip', u'studi'] [u'england', u'open', u'ash', u'battl'] [u'ergon', u'move', u'improv', u'local', u'power', u'suppli'] [u'explos', u'report', u'london', u'tube'] [u'famili', u'free', u'child', u'detaine', u'consid', u'legal'] [u'farmer', u'seek', u'imag'] [u'fatal', u'accid', u'investig'] [u'continu', u'talk', u'hiddink'] [u'fish', u'oper', u'fear', u'licenc', u'hike'] [u'recoveri', u'possibl', u'injur', u'cyclist'] [u'fund', u'improv', u'south', u'east', u'black', u'spot'] [u'game', u'match', u'lleyton'] [u'game', u'organis', u'short', u'volunt'] [u'gang', u'rapist', u'guilti', u'charg'] [u'council', u'expect', u'control'] [u'genet', u'tag', u'help', u'monitor', u'shark'] [u'gherkin', u'supplier', u'withdraw', u'mcdonald', u'threat'] [u'govt', u'beazley', u'say'] [u'greenough', u'resid', u'vote', u'amalgam', u'plan'] [u'greenspan', u'say', u'rat', u'rise'] [u'green', u'seek', u'forest', u'land', u'clear', u'limit'] [u'group', u'face', u'deport', u'chicken', u'farm', u'raid'] [u'group', u'walk', u'child', u'cancer', u'suffer'] [u'gympi', u'guilti', u'attempt', u'murder'] [u'hewitt', u'readi', u'love', u'match'] [u'hick', u'process', u'avoid', u'fair', u'process'] [u'hiddink', u'expect', u'confirm', u'socceroo', u'boss'] [u'imit', u'boot', u'undermin', u'sheep', u'skin', u'price'] [u'indigen', u'group', u'agre', u'bridg', u'talk'] [u'indonesia', u'aim', u'septemb', u'aceh', u'troop', u'pull'] [u'injur', u'cyclist', u'life', u'support'] [u'intern', u'tourist', u'head', u'record', u'number'] [u'iraq', u'insurg', u'remain', u'effect', u'adapt', u'rumsfeld'] [u'islam', u'bodi', u'propos', u'anti', u'terror', u'summit'] [u'japanes', u'eat', u'endang', u'whale', u'cousteau'] [u'judiciari', u'chairman', u'deni', u'woolford', u'leav', u'appeal'] [u'judiciari', u'chairman', u'deni', u'woolford', u'leav', u'appeal'] [u'karzai', u'say', u'neglect', u'possibl', u'caus', u'london'] [u'say', u'plan', u'buy', u'australian'] [u'kid', u'technic', u'detain', u'vanston'] [u'kid', u'prize', u'heifer'] [u'labor', u'want', u'vanston', u'sack', u'hwang', u'case'] [u'law', u'protect', u'kid', u'societi', u'say'] [u'leonora', u'pool', u'open', u'novemb'] [u'local', u'produc', u'ethanol', u'interst'] [u'famili', u'palmer', u'report', u'fight'] [u'bird', u'prevent', u'drug', u'avail', u'green'] [u'mandatori', u'label', u'fresh', u'produc', u'like'] [u'mar', u'snicker', u'stay', u'shelv'] [u'matilda', u'china'] [u'mayor', u'confid', u'hous', u'futur', u'worker'] [u'mayor', u'push', u'kalgoorli', u'solar', u'citi', u'program'] [u'melbourn', u'retain', u'fastest', u'grow', u'intern'] [u'mental', u'health', u'workshop', u'help', u'farmer'] [u'microwav', u'weapon', u'iraq', u'worri', u'scientist'] [u'minchin', u'tour', u'pacif', u'region'] [u'miner', u'defend', u'expans', u'plan'] [u'minist', u'open', u'local', u'quarter'] [u'minist', u'seek', u'review', u'fertilis', u'rule'] [u'minist', u'delay', u'lion'] [u'miss', u'piggi', u'world', u'record', u'break', u'leap'] [u'more', u'communiti', u'welcom', u'outlet'] [u'morwel', u'polic', u'hold', u'stop', u'work', u'meet'] [u'hit', u'govt', u'bushfir', u'inquiri'] [u'throw', u'possibl', u'lifelin', u'shack', u'owner'] [u'urg', u'attend', u'hospit', u'meet'] [u'mysteri', u'skin', u'rat', u'review'] [u'nasa', u'announc', u'shuttl', u'date'] [u'nat', u'say', u'local', u'govt', u'withdraw', u'fund'] [u'nelson', u'promot', u'scienc', u'math', u'cours'] [u'newcastl', u'research', u'join', u'search', u'cure'] [u'polic', u'boss', u'tell', u'review', u'prison', u'transfer'] [u'magistr', u'name'] [u'slow', u'cattl', u'yard', u'process'] [u'vehicl', u'sale', u'fall'] [u'niger', u'presid', u'see', u'famin', u'devast', u'hand'] [u'polic', u'muslim', u'inform', u'suspect'] [u'nurs', u'want', u'union', u'push', u'govt', u'super'] [u'lodg', u'protest', u'china', u'support'] [u'olymp', u'stay', u'shut', u'worker', u'death'] [u'opposit', u'push', u'control'] [u'orford', u'join', u'eagl'] [u'outlook', u'grim', u'injur', u'cyclist'] [u'overheat', u'prompt', u'man', u'ferri', u'emerg'] [u'pace', u'put', u'england', u'lunch'] [u'paint', u'ladi', u'step', u'miner', u'cellar'] [u'founder', u'stand', u'trial'] [u'pilbara', u'gascoyn', u'top', u'region', u'abort', u'rate'] [u'plan', u'histor', u'build', u'refurbish', u'lodg'] [u'promot', u'aust', u'economi', u'london'] [u'polic', u'commission', u'pay', u'tribut', u'crash', u'victim'] [u'polic', u'search', u'stabber'] [u'polic', u'search', u'miss', u'bush', u'walker'] [u'polic', u'seek', u'public', u'help', u'stabber'] [u'polic', u'seek', u'public', u'help', u'fight', u'drug'] [u'polic', u'urg', u'caution', u'road'] [u'premier', u'urg', u'replac', u'minist', u'asbesto'] [u'pub', u'club', u'deni', u'undermin', u'smoke'] [u'push', u'marin', u'park', u'protect', u'fish', u'stock'] [u'speaker', u'holli', u'quit'] [u'teenag', u'quiz', u'vote'] [u'queensland', u'inquiri', u'patient', u'worri'] [u'ranger', u'issu', u'warn', u'simpson', u'desert', u'wood'] [u'recruit', u'jail', u'jakarta', u'embassi', u'bomb'] [u'region', u'teacher', u'offer', u'support'] [u'releas', u'villawood', u'famili', u'consid', u'legal', u'action'] [u'report', u'find', u'crash', u'chopper', u'overload'] [u'resid', u'group', u'happi', u'develop', u'compromis'] [u'resid', u'urg', u'save', u'money', u'sort', u'rubbish'] [u'rfds', u'fli', u'tourist', u'accid'] [u'road', u'rage', u'murder', u'juri', u'discharg'] [u'roger', u'sidelin', u'knee', u'injuri'] [u'lay', u'water', u'save', u'plan'] [u'steak', u'sizzl', u'asia'] [u'school', u'welcom', u'hwang'] [u'scientist', u'unlock', u'secret', u'gecko'] [u'search', u'dentist', u'servic', u'tenterfield', u'continu'] [u'senat', u'unconvinc', u'card', u'merit'] [u'senior', u'demon', u'need', u'lift', u'danih'] [u'solon', u'report', u'expect', u'august'] [u'special', u'school', u'build', u'replac'] [u'star', u'trek', u'scotti', u'die', u'age'] [u'suicid', u'bomber', u'kill', u'iraq'] [u'swiss', u'expert', u'fli', u'lift'] [u'talk', u'fail', u'resolv', u'prison', u'offic'] [u'tasmanian', u'price', u'electr', u'delay'] [u'tbird', u'fight'] [u'yemeni', u'storm', u'facil'] [u'tourism', u'head', u'want', u'robina', u'coolangatta', u'rail', u'link'] [u'tourki', u'snare', u'silver', u'montreal'] [u'trunk', u'pack', u'eleph', u'stay'] [u'charg', u'fatal', u'shoot'] [u'cyclist', u'hospit', u'releas'] [u'tube', u'station', u'evacu', u'smoke', u'see', u'brigad'] [u'legal', u'centr', u'cut', u'worri', u'victim', u'group'] [u'unoc', u'spurn', u'chines', u'suitor', u'chevron', u'offer'] [u'market', u'jump', u'greenspan', u'view'] [u'politician', u'float', u'bomb', u'muslim'] [u'releas', u'guantanamo', u'prison'] [u'say', u'milit', u'plan', u'attack', u'saudi'] [u'govt', u'speak', u'nuclear', u'power'] [u'repeal', u'anti', u'witchcraft'] [u'vizard', u'face', u'court'] [u'vizard', u'hear', u'begin'] [u'vizard', u'plead', u'judg'] [u'vizard', u'face', u'court', u'telstra', u'deal'] [u'wallabi', u'expect', u'tough', u'crowd', u'joburg'] [u'step', u'fight', u'wild', u'dog'] [u'water', u'shortag', u'hamper', u'crew', u'effort'] [u'well', u'sign', u'roo'] [u'whale', u'arriv', u'region', u'earli'] [u'woodsid', u'project', u'boost', u'product'] [u'workplac', u'accid', u'claim', u'man', u'life'] [u'workshop', u'clarifi', u'communiti', u'view', u'town'] [u'yarra', u'valley', u'yield', u'victoria', u'truffl'] [u'kill', u'yemen', u'clash', u'fuel', u'price', u'hike'] [u'abattoir', u'tell', u'smell', u'problem'] [u'seek', u'cost', u'bushfir', u'case'] [u'seek', u'public', u'back', u'bulki', u'good', u'centr'] [u'maintain', u'rise'] [u'season', u'drug', u'test', u'demetriou'] [u'dismiss', u'push', u'examin', u'truck'] [u'alcoa', u'refineri', u'spill', u'prompt', u'environment'] [u'algerian', u'diplomat', u'kidnap', u'baghdad'] [u'alic', u'spring', u'hop', u'solar', u'citi', u'boost'] [u'arab', u'network', u'air', u'judg', u'interrog', u'saddam'] [u'armstrong', u'send', u'support', u'australian', u'crash', u'victim'] [u'armstrong', u'solid', u'serrano', u'win', u'tour', u'stage'] [u'arson', u'attempt', u'london', u'bomb', u'suspect', u'hous'] [u'australia', u'lead', u'lord'] [u'australia', u'mugab', u'indict', u'costello'] [u'beatti', u'dump', u'health', u'minist'] [u'beatti', u'dump', u'health', u'minist'] [u'beazley', u'muster', u'support', u'campaign'] [u'bega', u'inform', u'member', u'financi', u'perform'] [u'berri', u'nation', u'food', u'line', u'merger'] [u'crowd', u'farewel', u'plane', u'crash', u'coupl'] [u'blair', u'order', u'anti', u'terror', u'review'] [u'blaze', u'forc', u'hotel', u'evacu'] [u'boat', u'facil', u'boost', u'pilbara', u'gascoyn'] [u'boat', u'facil', u'upgrad', u'esper'] [u'bomb', u'failur', u'suggest', u'link', u'london', u'attack'] [u'boomer', u'japan'] [u'british', u'film', u'academi', u'honour', u'taylor'] [u'british', u'polic', u'post', u'blast', u'search', u'hospit'] [u'brake', u'plate', u'night', u'curfew'] [u'rail', u'link', u'travel'] [u'caloundra', u'look', u'exclus', u'zone'] [u'canadian', u'carri', u'ecstasi', u'tablet', u'charg'] [u'casino', u'ratepay', u'want', u'administr', u'appoint'] [u'chen', u'say', u'china', u'put', u'squeez', u'falun', u'gong'] [u'children', u'indigen', u'awar', u'need', u'boost', u'martin'] [u'chinatown', u'develop', u'council'] [u'chines', u'defector', u'front', u'congress'] [u'church', u'group', u'seek', u'refuge', u'mental', u'health'] [u'civic', u'plan', u'call', u'monorail', u'town', u'centr'] [u'claim', u'ongo', u'secur', u'cost', u'affect', u'region'] [u'clark', u'martyn', u'guid', u'australia', u'lead', u'lord'] [u'coach', u'confid', u'injur', u'cyclist', u'pull'] [u'committe', u'brief', u'feral', u'donkey', u'erad'] [u'communiti', u'discuss', u'asbesto', u'compo', u'option'] [u'concern', u'mount', u'eleph', u'export', u'human', u'societi'] [u'concern', u'mount', u'miss', u'teen'] [u'corbi', u'lawyer', u'submit', u'immun', u'request'] [u'coron', u'say', u'student', u'death', u'avoid'] [u'cotteslo', u'feel', u'heat', u'height', u'restrict'] [u'cotton', u'grower', u'oppos', u'takeov', u'offer'] [u'council', u'back', u'indigen', u'youth', u'leadership', u'scheme'] [u'council', u'call', u'hospit', u'site', u'mistak'] [u'council', u'can', u'plan', u'charg', u'bank', u'atm'] [u'councillor', u'rubbish', u'recycl', u'scheme', u'plan'] [u'council', u'share', u'plan', u'fund'] [u'council', u'stoush', u'erupt', u'develop', u'complaint'] [u'courtney', u'love', u'hospitalis'] [u'court', u'uphold', u'convict', u'racial', u'motiv'] [u'despati', u'montreal'] [u'dog', u'prove', u'theyr', u'beat', u'bronco'] [u'domest', u'threat', u'level', u'leav', u'medium'] [u'downer', u'forc', u'word', u'asean', u'pact'] [u'downer', u'commit', u'relationship', u'labor'] [u'drought', u'relief', u'merriwa', u'region', u'farmer'] [u'drug', u'affect', u'driver', u'sentenc', u'seven', u'year'] [u'eastern', u'state', u'drought', u'help', u'extend'] [u'elkington', u'shot', u'storm', u'lash', u'milwauke'] [u'ellison', u'back', u'anti', u'terror', u'review'] [u'environ', u'kimberley', u'vie', u'award'] [u'export', u'better', u'china', u'trade', u'condit'] [u'facelift', u'katan', u'homeswest', u'hous'] [u'famili', u'say', u'base', u'jumper', u'safeti', u'conscious'] [u'farmer', u'highlight', u'salin', u'plan'] [u'farmer', u'warn', u'fever', u'risk'] [u'fel', u'nomin', u'oecd', u'posit'] [u'firm', u'plan', u'retir', u'communiti', u'ainsli'] [u'flood', u'consid', u'threat', u'prison', u'farm'] [u'vaccin', u'product', u'fast', u'track'] [u'forestri', u'council', u'make', u'submiss', u'japanes'] [u'carlton', u'player', u'lose', u'court', u'battl'] [u'detaine', u'abandon', u'immigr', u'dept'] [u'chairman', u'call', u'vizard', u'inquiri'] [u'forum', u'focus', u'state', u'murray', u'river', u'bridg'] [u'german', u'presid', u'back', u'septemb', u'poll'] [u'gillett', u'husband', u'okay'] [u'gippsland', u'wake', u'cold', u'morn'] [u'glenn', u'mcgrath', u'interview'] [u'gloucest', u'resid', u'push', u'phone', u'boost'] [u'govt', u'hand', u'help', u'drought', u'famili'] [u'govt', u'decid', u'power', u'station', u'expans'] [u'grafton', u'woman', u'secur', u'social', u'servic', u'appoint'] [u'grant', u'give', u'banana', u'nutrit', u'scheme', u'boost'] [u'grant', u'return', u'lift', u'dog', u'geelong', u'clash'] [u'greenland', u'glacier', u'speed', u'greenpeac'] [u'group', u'claim', u'latest', u'london', u'attack'] [u'group', u'fail', u'complaint', u'immigr'] [u'hackett', u'warn', u'drug', u'tester', u'leav'] [u'hawaiian', u'caterpillar', u'din', u'escargot'] [u'hiddink', u'unveil', u'socceroo', u'coach'] [u'high', u'wind', u'rain', u'lash', u'north', u'queensland'] [u'hobart', u'base', u'antarct', u'bird', u'protect'] [u'howard', u'meet', u'blair', u'blast', u'london'] [u'howard', u'prais', u'blair'] [u'hunter', u'unemploy', u'tip', u'rise'] [u'hwang', u'children', u'treat', u'wors', u'detaine'] [u'improv', u'need', u'collect', u'diseas', u'data'] [u'inquest', u'tell', u'south', u'african', u'train', u'doctor'] [u'investig', u'probe', u'hydraul', u'blast', u'death'] [u'irun', u'hidayat', u'sentenc', u'embassi', u'bomb'] [u'jehovah', u'wit', u'flock', u'tamworth'] [u'johnson', u'clear', u'sydney', u'medal'] [u'joyc', u'seek', u'govt', u'support', u'renew', u'fuel'] [u'justic', u'agenc', u'earn', u'magistr', u'prais'] [u'kennedi', u'wont', u'apologis', u'councillor'] [u'labor', u'renew', u'royal', u'commiss'] [u'bodi', u'say', u'fair', u'trial', u'rule', u'review', u'unnecessari'] [u'commiss', u'back', u'adopt', u'coupl'] [u'lawyer', u'contradict', u'vanston', u'detain', u'kid', u'case'] [u'local', u'embrac', u'kakadu'] [u'logist', u'team', u'prais', u'help', u'port', u'reach'] [u'london', u'arrest', u'anti', u'terror', u'law'] [u'london', u'attack', u'intend', u'kill', u'polic'] [u'die', u'mulch', u'machin', u'accid'] [u'jail', u'road', u'rage', u'incid'] [u'jail', u'year', u'collis', u'cyclist'] [u'jail', u'deckhand', u'tortur'] [u'jail', u'plan', u'launch', u'attack'] [u'plead', u'guilti', u'teen', u'assault', u'charg'] [u'market', u'dip', u'london', u'blast', u'unsettl', u'investor'] [u'market', u'shake', u'london', u'attack'] [u'mayhem', u'london', u'tube', u'polic', u'shoot', u'dead'] [u'mayor', u'look', u'answer', u'sticki', u'problem'] [u'mcdonald', u'sign', u'gherkin', u'deal', u'suppli'] [u'mcgrath', u'forecast', u'batsmen'] [u'mcgrath', u'get', u'boot', u'break', u'mark'] [u'meet', u'condemn', u'hospit', u'decis'] [u'mental', u'guilti', u'murder'] [u'mick', u'read', u'riot', u'pie'] [u'microsoft', u'profit', u'echo', u'sale', u'boost'] [u'minor', u'blast', u'shake', u'london'] [u'miss', u'boy', u'bodi', u'perth'] [u'miss', u'piggi', u'fli', u'record', u'book'] [u'miss', u'piggi', u'take', u'dive', u'set', u'world', u'record'] [u'mix', u'reaction', u'embassi', u'bomb', u'recruit'] [u'money', u'answer', u'indigen', u'woe', u'costello'] [u'drought', u'support', u'fund', u'avail'] [u'fund', u'seek', u'bite', u'wild', u'woe'] [u'mourner', u'rememb', u'high', u'court', u'judg'] [u'call', u'region', u'counter', u'terror', u'train'] [u'murder', u'investig'] [u'american', u'polic', u'unearth', u'tunnel', u'drug'] [u'narrabri', u'jail'] [u'nation', u'reject', u'costello', u'attack', u'chang'] [u'near', u'older', u'australian', u'suffer'] [u'care', u'place', u'help', u'elder', u'recov', u'ill'] [u'produc', u'coal', u'year'] [u'petroleum', u'explor', u'permit', u'carnarvon'] [u'school', u'princip', u'vow', u'improv', u'educ'] [u'newspap', u'plead', u'guilti', u'contempt', u'case'] [u'train', u'centr', u'open', u'georg'] [u'north', u'korea', u'call', u'peac', u'treati'] [u'film', u'offic', u'defend', u'product', u'compani'] [u'olymp', u'mine', u'resum', u'fatal', u'blast'] [u'opposit', u'claim', u'cover', u'rescu', u'chopper'] [u'opposit', u'highlight', u'hospit', u'treatment', u'fear'] [u'opposit', u'seek', u'start', u'waterfront', u'plan'] [u'outback', u'tourism', u'push', u'creat', u'road', u'headach'] [u'palm', u'island', u'council', u'complain', u'woman', u'polic'] [u'flag', u'tougher', u'anti', u'terror', u'law'] [u'prais', u'calm', u'respons', u'latest', u'attack'] [u'rule', u'extra', u'troop', u'iraq'] [u'polic', u'bodi', u'miss'] [u'polic', u'hope', u'latest', u'bomb'] [u'polic', u'probe', u'second', u'london', u'attack'] [u'polic', u'promis', u'north', u'west', u'drug', u'crackdown'] [u'polic', u'shoot', u'underground', u'station'] [u'polic', u'stop', u'work', u'plan', u'work', u'chang'] [u'polic', u'urg', u'caution', u'rural', u'road'] [u'pool', u'septemb', u'open'] [u'port', u'chief', u'beat', u'develop'] [u'prison', u'stab'] [u'produc', u'await', u'code', u'conduct', u'releas'] [u'properti', u'boom', u'expect', u'forc', u'rat', u'higher'] [u'health', u'minist', u'reluct', u'leav', u'post'] [u'rainbow', u'warrior', u'return', u'aust'] [u'ranger', u'closur', u'cost', u'say'] [u'rasmussen', u'wrap', u'polka', u'jersey'] [u'violat', u'mental', u'health', u'order'] [u'sugar', u'robinson', u'lose', u'appeal'] [u'real', u'estat', u'agent', u'disabl', u'hous', u'educ'] [u'real', u'move', u'cost', u'robinho', u'million'] [u'reform', u'mental', u'health', u'public', u'advoc', u'say'] [u'rice', u'demand', u'action', u'darfur'] [u'rice', u'visit', u'beirut', u'support', u'govt'] [u'rockhampton', u'polic', u'deton', u'packag'] [u'roof', u'firm', u'fin', u'construct', u'site', u'death'] [u'rossi', u'want', u'stay', u'yamaha'] [u'consid', u'drug', u'test', u'doctor'] [u'saint', u'continu', u'surg', u'belt', u'cold', u'pie'] [u'seafood', u'industri', u'seek', u'younger', u'worker'] [u'king', u'crash', u'report', u'year'] [u'shire', u'see', u'benefit', u'iron', u'joint', u'ventur'] [u'sieg', u'inquest', u'complaint', u'worri', u'polic'] [u'sign', u'tourist', u'straight', u'land', u'clear'] [u'home', u'owner', u'rate', u'rise', u'shock'] [u'southern', u'state', u'weed', u'watch'] [u'sunshin', u'coast', u'fail', u'overturn', u'convict'] [u'surgeri', u'delay', u'unbeliev', u'say', u'opposit'] [u'suspici', u'devic', u'leav', u'govt', u'build'] [u'swift', u'crush', u'oriol', u'bird', u'surg'] [u'taronga', u'hit', u'rspca', u'critic'] [u'scientist', u'honour', u'award'] [u'teen', u'jail', u'year', u'stab', u'murder'] [u'terrorist', u'link', u'iraq', u'london', u'attack', u'howard'] [u'timber', u'industri', u'highlight', u'highway', u'blackspot'] [u'tomato', u'farm', u'fin', u'workplac', u'accid'] [u'earli', u'prison', u'industri', u'threat', u'minist'] [u'trout', u'strategi', u'winner', u'snowi', u'mountain', u'lake'] [u'tuckey', u'prepar', u'seek', u'domest', u'violenc'] [u'right', u'issu', u'thwart', u'miss', u'piggi', u'record', u'dive'] [u'kill', u'pakistan', u'crash'] [u'arrest', u'gang', u'rape'] [u'see', u'immin', u'danger', u'terrorist', u'attack'] [u'vail', u'welcom', u'chines', u'currenc', u'revalu'] [u'vandal', u'upsurg', u'spark', u'polic'] [u'vanston', u'retract', u'comment', u'detain', u'kid', u'case'] [u'video', u'game', u'coffe', u'kid'] [u'vizard', u'jail'] [u'wallabi', u'favourit', u'upset', u'bok'] [u'want', u'femal', u'corps', u'medic', u'practis'] [u'word', u'erupt', u'council', u'painter'] [u'water', u'manag', u'plan', u'flow', u'alic', u'confer'] [u'water', u'survey', u'spark', u'polit', u'debat'] [u'wife', u'kill', u'abus', u'husband', u'free'] [u'wollongong', u'hospit', u'seek', u'licenc'] [u'women', u'celebr', u'year', u'forc'] [u'workshop', u'highlight', u'mental', u'health', u'warn', u'sign'] [u'suicid', u'bomber', u'daze', u'say', u'wit'] [u'zimbabw', u'polic', u'throw', u'homeless', u'church'] [u'zirconia', u'project', u'stock', u'exchang', u'list'] [u'stand', u'eleph', u'breed', u'scheme'] [u'foreign', u'injur', u'egypt', u'blast'] [u'accus', u'heroin', u'smuggler', u'suicid', u'attempt'] [u'disrupt', u'continu', u'despit', u'strike'] [u'squar', u'leagu', u'preseason', u'match'] [u'ambros', u'continu', u'ipswich', u'qualifi'] [u'aqi', u'buckl', u'evergreen', u'pressur', u'citrus', u'farmer'] [u'arrest', u'arson', u'attempt', u'london', u'bomber', u'home'] [u'asean', u'treati', u'deal', u'seal', u'say', u'howard'] [u'australian', u'coupl', u'wit', u'egypt', u'blast'] [u'australia', u'push', u'lead', u'past', u'lunch'] [u'baryulgil', u'asbesto', u'risk', u'remain', u'despit', u'clear'] [u'beatti', u'give', u'trade', u'good', u'health'] [u'blast', u'rock', u'lebanes', u'capit'] [u'blast', u'kill', u'egyptian', u'resort'] [u'blue', u'legend', u'baldri', u'die', u'canada'] [u'board', u'offer', u'condit', u'apolog', u'drug'] [u'boat', u'urg', u'distanc', u'whale'] [u'boomer', u'notch', u'second', u'japanes'] [u'boy', u'allergi', u'death', u'wont', u'affect', u'excurs', u'minist'] [u'british', u'polic', u'arrest', u'second', u'bomber', u'hunt'] [u'byron', u'consid', u'holiday', u'rental'] [u'calvari', u'hospit', u'upgrad', u'electr'] [u'campaign', u'wast', u'dump', u'long', u'haul'] [u'campbel', u'shin', u'despit', u'german', u'rain'] [u'canadian', u'uneasi', u'general', u'terrorist', u'threat'] [u'car', u'line', u'outback', u'odyssey'] [u'cat', u'fight'] [u'clark', u'martyn', u'guid', u'australia', u'lead', u'lord'] [u'clark', u'beat', u'despit', u'fall', u'short', u'lord'] [u'communiti', u'input', u'seek', u'futur', u'base'] [u'cowboy', u'stop'] [u'dissid', u'detain', u'cuba'] [u'dog', u'prove', u'theyr', u'beat', u'bronco'] [u'jone', u'close', u'crude', u'price', u'jump'] [u'downshift', u'group', u'help', u'australian', u'choos', u'life'] [u'dozen', u'kill', u'egypt', u'resort', u'explos'] [u'fina', u'chang', u'rule', u'athen', u'controversi'] [u'finger', u'food', u'tasti', u'inmat'] [u'gallant', u'knight', u'stun', u'eel'] [u'parent', u'right', u'ruse', u'famili', u'group'] [u'gaza', u'stay', u'close', u'talk', u'need', u'rice'] [u'guantanamo', u'detaine', u'demand', u'hunger'] [u'guerini', u'outwit', u'break', u'companion', u'stage'] [u'guilti', u'verdict', u'grand', u'prix', u'team', u'cancel'] [u'take', u'springboard', u'gold'] [u'hawk', u'leav', u'blue', u'rock'] [u'howard', u'consid', u'cctv', u'aust', u'public', u'transport'] [u'howard', u'meet', u'queen'] [u'independ', u'committe', u'probe', u'runaway', u'teen', u'death'] [u'indigen', u'languag', u'reviv', u'dictionari', u'launch'] [u'isinbayeva', u'leap', u'histori', u'book', u'powel'] [u'japan', u'fight', u'matilda'] [u'jehovah', u'wit', u'gather', u'convent'] [u'lion', u'surviv', u'gabba', u'fright'] [u'litter', u'worri', u'prompt', u'sticki', u'effort'] [u'littl', u'liquid', u'water', u'mar', u'past', u'billion'] [u'london', u'reliv', u'bomb', u'horror', u'egypt', u'holiday'] [u'shoot', u'dead', u'hunt', u'london', u'bomber'] [u'shoot', u'dead', u'hunt', u'london', u'bomber', u'continu'] [u'mayor', u'greater', u'role', u'terror', u'plan'] [u'mclaren', u'domin', u'practic', u'germani'] [u'rover', u'sell', u'chines', u'firm'] [u'michael', u'clark', u'interview'] [u'moder', u'earthquak', u'shake', u'tokyo'] [u'mugab', u'leav', u'harar', u'week', u'long', u'visit', u'china'] [u'muslim', u'concern', u'bomb', u'scrutini'] [u'british', u'terror', u'law', u'deserv', u'consider'] [u'cover', u'flood', u'defenc', u'group'] [u'troop', u'go', u'iraq', u'say'] [u'risk', u'armstrong', u'penultim', u'stage'] [u'punter', u'rock', u'competit'] [u'rain', u'stop', u'australia'] [u'palmerston', u'owner', u'get', u'messag'] [u'phelp', u'varieti', u'spice', u'team', u'say', u'coach'] [u'pilot', u'kill', u'plane', u'crash', u'outsid', u'german'] [u'lunch', u'british', u'conserv'] [u'polanski', u'win', u'libel', u'case', u'vaniti', u'fair'] [u'polic', u'investig', u'crowd', u'troubl'] [u'policeman', u'injur', u'crash'] [u'polic', u'search', u'hous', u'west', u'london', u'bomb'] [u'port', u'knock', u'tiger'] [u'health', u'worker', u'welcom', u'minist', u'departur'] [u'random', u'search', u'subway'] [u'report', u'condemn', u'zimbabw'] [u'restrict', u'immigr', u'wont', u'stop', u'terror', u'govt'] [u'retail', u'feel', u'chill', u'shrink', u'winter', u'sale'] [u'rice', u'meet', u'palestinian', u'discuss', u'gaza', u'pullout'] [u'rice', u'meet', u'sharon', u'final', u'push', u'gaza', u'pullout'] [u'roger', u'admit', u'tour', u'mistak'] [u'saint', u'continu', u'surg', u'belt', u'cold', u'pie'] [u'score', u'kill', u'egypt', u'bomb'] [u'second', u'detain', u'london', u'bomb', u'probe'] [u'shell', u'cove', u'marina', u'develop', u'valid', u'court'] [u'slater', u'win', u'jeffrey'] [u'solomon', u'govt', u'adopt', u'ramsi', u'recommend'] [u'space', u'shuttl', u'crew', u'return', u'florida'] [u'splendid', u'weekend', u'expect', u'festiv', u'revel'] [u'lanka', u'seiz', u'control', u'second', u'test'] [u'lanka', u'storm', u'bat', u'fiasco'] [u'stay', u'execut', u'grant', u'penal', u'cottag'] [u'steve', u'price', u'monti', u'betham'] [u'suburban', u'shop', u'face', u'uncertain', u'futur'] [u'super', u'nurs', u'eas', u'rural', u'doctor', u'shortag'] [u'sydney', u'water', u'main', u'burst', u'home', u'flood'] [u'thorp', u'announc', u'test', u'retir'] [u'tiger', u'die', u'gold', u'coast', u'casino'] [u'tiger', u'focus', u'tredrea'] [u'tsunami', u'injur', u'donat', u'thai', u'hospit'] [u'arrest', u'search', u'bomber'] [u'kill', u'road', u'crash'] [u'polic', u'continu', u'manhunt', u'bomb', u'suspect'] [u'chief', u'feel', u'sorrow', u'anger', u'egypt', u'attack'] [u'union', u'pleas', u'student', u'result'] [u'union', u'slam', u'welfar', u'rule', u'workplac', u'agreement'] [u'union', u'warn', u'welfar', u'recipi', u'employ', u'polici'] [u'report', u'condemn', u'zimbabw', u'demolit'] [u'unveil', u'revis', u'draft', u'ambiti', u'reform'] [u'author', u'case'] [u'victorian', u'govt', u'confid', u'game', u'budget'] [u'wallabi', u'probe', u'alleg', u'nightclub', u'incid'] [u'warrior', u'triumph', u'despit', u'raider', u'spark'] [u'world', u'appear', u'guarante', u'hiddink'] [u'world', u'leader', u'condemn', u'egypt', u'bomb', u'attack'] [u'world', u'wake', u'niger', u'crisi'] [u'wwii', u'veteran', u'gather', u'memori', u'dedic'] [u'yaxley', u'remain', u'hospit', u'week'] [u'arrest', u'egypt', u'bomb'] [u'gate', u'darwin'] [u'investig'] [u'wealthi', u'target', u'evas', u'crackdown'] [u'aborigin', u'communiti', u'take', u'asbesto', u'fight', u'sydney'] [u'qaeda', u'post', u'video', u'miss', u'egypt', u'envoy'] [u'armstrong', u'cruis', u'stage'] [u'armstrong', u'end', u'stage', u'drought', u'retir'] [u'aussi', u'deserv', u'stranglehold', u'test', u'say', u'warn'] [u'australia', u'go', u'ash', u'seri'] [u'aust', u'wont', u'turn', u'polic', u'state', u'howard'] [u'author', u'releas', u'cuban', u'dissid'] [u'blair', u'beauti', u'secret', u'unveil'] [u'bolton', u'thailand', u'citi', u'edg', u'everton', u'asia'] [u'boomer', u'wrap', u'japan', u'seri'] [u'brazil', u'demand', u'explain', u'shoot'] [u'brazil', u'seek', u'explan', u'death'] [u'british', u'polic', u'admit', u'shoot', u'innoc'] [u'chopper', u'flame', u'crash'] [u'cowboy', u'boost', u'need'] [u'crow', u'consolid', u'second', u'roo'] [u'cyclist', u'parent', u'elat', u'word'] [u'dead', u'cadet', u'mother', u'vow', u'fight', u'defenc'] [u'dead', u'clash', u'erupt', u'near', u'gaza', u'border'] [u'death', u'toll', u'rise'] [u'demon', u'troubl', u'trot', u'continu'] [u'dissid', u'leader', u'free', u'cuba'] [u'downer', u'hedg', u'asean', u'treati', u'deal', u'report'] [u'dragon', u'classi', u'derbi'] [u'dwight', u'right', u'australian', u'debut'] [u'eagl', u'fall', u'short', u'sydney'] [u'eagl', u'wari', u'form', u'swan'] [u'eddi', u'jone', u'jake', u'white'] [u'egypt', u'vow', u'fight', u'terror', u'toll', u'rise'] [u'evan', u'secur', u'spot', u'green', u'jersey', u'battl'] [u'farah', u'lead', u'tiger', u'sixth', u'spot'] [u'floriad', u'call', u'bud', u'volunt'] [u'ginninderra', u'student', u'assist'] [u'govt', u'eye', u'crackdown', u'radic', u'islam', u'comment'] [u'govt', u'save', u'pharmaci', u'guild', u'say'] [u'govt', u'stand', u'campaign'] [u'govt', u'want', u'coastlin', u'develop'] [u'graham', u'murray', u'john', u'lang'] [u'gregan', u'blame', u'loss', u'poor', u'start'] [u'health', u'minist', u'announc'] [u'henri', u'world', u'champ', u'build', u'beij'] [u'hick', u'face', u'polit', u'trial', u'militari', u'lawyer'] [u'highway', u'close', u'chemic', u'spill'] [u'injur', u'cyclist', u'regain', u'conscious', u'germani'] [u'injur', u'powel', u'optimist', u'make', u'world'] [u'inter', u'tour', u'london', u'bomb', u'attack'] [u'intercept', u'cost', u'wallabi', u'mandela', u'challeng'] [u'inter', u'milan', u'tour', u'england'] [u'inter', u'rethink', u'england', u'tour', u'cancel'] [u'iraq', u'govt', u'prais', u'aust', u'trainer'] [u'islam', u'group', u'distanc', u'terror'] [u'islam', u'group', u'urg', u'calm', u'cleric', u'comment'] [u'isra', u'soldier', u'kill', u'palestinian', u'gunmen'] [u'maxwel', u'wrap'] [u'lion', u'train', u'regim', u'blame', u'failur'] [u'lownd', u'celebr', u'thrill', u'home', u'triumph'] [u'custodi', u'sydney', u'gang', u'rape'] [u'marcus', u'trescothick', u'interview'] [u'mark', u'gasnier', u'interview'] [u'massiv', u'truck', u'blast', u'target', u'iraqi', u'polic'] [u'mcgrath', u'eye', u'worcestershir', u'return'] [u'meca', u'snatch', u'open', u'water', u'gold', u'spain'] [u'michael', u'hagan', u'brian', u'smith'] [u'camera', u'wont', u'stop', u'attack', u'beazley'] [u'muslim', u'alarm', u'polic', u'kill'] [u'nasa', u'set', u'shuttl', u'launch', u'date'] [u'drink', u'drive', u'law', u'driver'] [u'patient', u'miss', u'intens', u'care', u'treatment'] [u'regret'] [u'test', u'comeback', u'thorp'] [u'senat', u'deni', u'nuclear', u'fuel', u'rod', u'destin'] [u'kill', u'russian', u'train', u'blast'] [u'pari', u'brace', u'armstrong', u'victori', u'parad'] [u'penguin', u'market', u'open', u'busi'] [u'appal', u'imam', u'defenc', u'lade'] [u'predict', u'law', u'jobless', u'rate'] [u'comment', u'inaccur', u'imam', u'say'] [u'polic', u'bust', u'alleg', u'cock', u'fight', u'syndic'] [u'polic', u'slow', u'speed', u'grade', u'pursuit'] [u'polic', u'shoot', u'shock', u'brazilian', u'govt'] [u'polit', u'replac', u'bike', u'armstrong', u'passion'] [u'race', u'minist', u'consid', u'synthet', u'track'] [u'raikkonen', u'claim', u'pole', u'montoya', u'spin'] [u'rain', u'fall', u'lord'] [u'remot', u'locat', u'blame', u'lower', u'literaci', u'rat'] [u'rhode', u'wake', u'cycl', u'accid'] [u'ricki', u'stuart', u'craig', u'bellami'] [u'robertson', u'name', u'health', u'minist'] [u'rooster', u'final', u'hop', u'hang', u'thread'] [u'search', u'continu', u'miss', u'ipswich', u'woman'] [u'servic', u'continu', u'despit', u'hospit', u'power', u'upgrad'] [u'seventh', u'arrest', u'gang', u'rape'] [u'shane', u'warn', u'interview'] [u'shaun', u'mcrae', u'sheen', u'interview'] [u'shearer', u'close', u'newcastl', u'goal', u'record'] [u'shoot', u'kill', u'polici', u'stay', u'despit', u'innoc', u'man'] [u'solomon', u'island', u'mark', u'anniversari', u'intern'] [u'strong', u'quak', u'hit', u'japan'] [u'stuart', u'raper', u'nathan', u'brown', u'interview'] [u'sudanes', u'communiti', u'unconcern', u'harass'] [u'sydney', u'marin', u'good', u'leagu', u'preseason'] [u'council', u'warn', u'loom', u'infrastructur'] [u'tasmanian', u'hospit', u'london', u'attack'] [u'teenag', u'creamer', u'creat', u'histori', u'european', u'tour'] [u'arrest', u'maleni', u'supermarket', u'protest'] [u'charg', u'sydney', u'man', u'death'] [u'tottenham', u'peac'] [u'truck', u'bomb', u'kill', u'baghdad', u'polic', u'station'] [u'turnbul', u'flag', u'rate'] [u'injur', u'istanbul', u'restaur', u'blast'] [u'question', u'fail', u'london', u'bomb'] [u'librari', u'leader', u'question', u'patriot'] [u'report', u'card', u'makeov'] [u'water', u'reced', u'home', u'damag'] [u'wild', u'weather', u'continu', u'north'] [u'woman', u'kill', u'hospit', u'park'] [u'xenophon', u'call', u'medial', u'board', u'review'] [u'yuan', u'revalu', u'benefit', u'tourism', u'industri', u'acci'] [u'face', u'card', u'concern', u'stanhop'] [u'accus', u'tram', u'thief', u'deni', u'bail'] [u'urg', u'introduc', u'driver', u'drug', u'test'] [u'tribun', u'night'] [u'year', u'mackenroth', u'bow'] [u'agforc', u'readi', u'work', u'minist'] [u'airport', u'secur', u'upgrad', u'cost', u'share'] [u'alic', u'spring', u'farewel', u'arrent', u'tradit', u'owner'] [u'call', u'region', u'cooper', u'bird'] [u'qaeda', u'wave', u'bomb', u'report'] [u'anger', u'govt', u'alic', u'invest'] [u'tiger', u'die', u'casino'] [u'anvil', u'congo', u'oper', u'scrutini'] [u'arab', u'group', u'aim', u'break', u'racial', u'social'] [u'asian', u'flour', u'mill', u'unlik', u'wheat'] [u'dead', u'iraq', u'blast'] [u'australia', u'claim', u'doubl', u'gold', u'montreal'] [u'bail', u'grant', u'bash', u'death', u'accus'] [u'basslink', u'project', u'hit', u'snag'] [u'baxter', u'food', u'disput', u'ongo', u'detaine'] [u'beatti', u'call', u'coastal', u'develop', u'cooper'] [u'bed', u'dedic', u'time', u'mental', u'health', u'patient'] [u'beekeep', u'join', u'tougher', u'food', u'label', u'law', u'fight'] [u'bomb', u'attack', u'wound', u'afghan', u'cleric'] [u'bougainvill', u'mourn', u'rebel', u'leader'] [u'bougainvill', u'rebel', u'leader', u'die'] [u'bowler', u'pont'] [u'bowl', u'club', u'futur', u'unclear'] [u'brack', u'accus', u'mislead', u'parliament'] [u'bundaberg', u'inquiri', u'hear', u'tire', u'doctor'] [u'busi', u'leader', u'join', u'farmer', u'campaign'] [u'call', u'increas', u'major', u'secur', u'review'] [u'canker', u'hear', u'consid', u'govt', u'respons'] [u'bomb', u'kill', u'baghdad'] [u'carr', u'seek', u'advic', u'public', u'transport', u'search'] [u'chen', u'give', u'consul', u'phone', u'number', u'immigr'] [u'citrus', u'grower', u'challeng', u'minist'] [u'clark', u'call', u'elect'] [u'communiti', u'urg', u'involv', u'cultur', u'plan'] [u'competit', u'tight', u'final', u'talk', u'say', u'bolton'] [u'corsten', u'suspend', u'hors', u'drug', u'charg'] [u'council', u'crack', u'tree', u'clear'] [u'council', u'keen', u'propos', u'park', u'museum'] [u'council', u'plan', u'huge', u'christma', u'tree'] [u'council', u'plan', u'fund'] [u'council', u'decid', u'hydro', u'plan', u'power', u'line'] [u'council', u'employ', u'lawyer'] [u'cowboy', u'firman', u'make', u'outstand', u'debut'] [u'cradl', u'mountain', u'transport', u'focus', u'studi'] [u'crane', u'keep', u'cool', u'claim', u'milwauke', u'open'] [u'crowd', u'call', u'indian', u'ocean', u'drive', u'complet'] [u'crow', u'prelim', u'rule', u'chang'] [u'cycl', u'australia', u'donat', u'gillett', u'foundat'] [u'cycl', u'tour', u'promis', u'bendigo', u'boost'] [u'deal', u'turn', u'dirk', u'hartog', u'nation', u'park'] [u'demon', u'improv', u'say', u'danih'] [u'disput', u'affect', u'hunter', u'coal', u'freight'] [u'doctor', u'group', u'cast', u'doubt', u'robertson'] [u'classif', u'debat', u'slow', u'pest', u'manag'] [u'respons', u'attack'] [u'accept', u'plea', u'vizard', u'bookkeep'] [u'driver', u'die', u'boggabri', u'crash'] [u'driver', u'charg', u'northern', u'road', u'block'] [u'driver', u'face', u'charg'] [u'driver', u'face', u'court', u'pedestrian'] [u'dubbo', u'council', u'consid', u'million', u'develop'] [u'eagl', u'best'] [u'educ', u'union', u'worri', u'high', u'staff', u'turnov'] [u'wicket', u'murali', u'send', u'windi', u'crash', u'huge'] [u'electron', u'begin', u'america'] [u'england', u'brand', u'vaughan', u'loser'] [u'evan', u'top', u'anderson', u'tour', u'debut'] [u'expert', u'look', u'link', u'london', u'egypt', u'attack'] [u'expert', u'warn', u'attack', u'sport', u'event'] [u'export', u'saudi', u'shipment', u'hard'] [u'farm', u'price', u'boom', u'soon'] [u'north', u'surviv', u'wild', u'weather'] [u'fasth', u'end', u'marathon', u'play'] [u'fish', u'industri', u'hop', u'fillet', u'regul'] [u'ecuadorean', u'presid', u'want'] [u'forum', u'spotlight', u'hous', u'afford'] [u'free', u'read'] [u'fuel', u'glitch', u'wont', u'stop', u'shuttl', u'lift'] [u'gambler', u'plead', u'guilti', u'fraud'] [u'general', u'manag', u'rethink', u'review', u'panel', u'comment'] [u'giant', u'mice', u'bird', u'chick', u'world', u'heritag', u'site'] [u'gillett', u'honour', u'foundat'] [u'ginepri', u'beat', u'heat', u'victori', u'dent'] [u'glenn', u'mcgrath', u'interview'] [u'govt', u'criticis', u'rat', u'trust', u'own'] [u'govt', u'payment', u'water'] [u'govt', u'target', u'reader', u'book', u'campaign'] [u'govt', u'urg', u'region', u'airport', u'secur'] [u'govt', u'wont', u'admit', u'liabil', u'solon', u'case'] [u'great', u'southern', u'salt', u'propos', u'hit', u'hurdl'] [u'green', u'group', u'back', u'coast', u'manag', u'plan'] [u'grigorieva', u'vault', u'australian', u'team'] [u'groin', u'injuri', u'wont', u'hold', u'brown', u'matthew'] [u'guidebook', u'offer', u'rural', u'life', u'insight'] [u'hackett', u'emerg', u'thorp', u'shadow'] [u'henjak', u'send', u'home', u'follow', u'nightclub', u'incid'] [u'higher', u'petrol', u'price', u'boost', u'ticket', u'price'] [u'hop', u'high', u'bumper', u'tiger', u'prawn', u'harvest'] [u'hop', u'curriculum', u'encourag', u'bud'] [u'howard', u'make', u'surpris', u'visit', u'iraq'] [u'howard', u'discuss', u'possibl', u'sport', u'zimbabw'] [u'human', u'remain', u'suitcas', u'kakadu'] [u'husband', u'launch', u'gillett', u'foundat'] [u'card', u'issu', u'say'] [u'indigen', u'communiti', u'plan', u'wilder', u'centr'] [u'indigen', u'leader', u'lose', u'marina', u'fight'] [u'indonesia', u'hold', u'joint', u'militari', u'exercis'] [u'injur', u'cyclist', u'surpris', u'doctor', u'progress'] [u'inquiri', u'urg', u'greater', u'youth', u'trade', u'focus'] [u'jetti', u'train', u'delay', u'expect', u'deter', u'tourist'] [u'juri', u'clear', u'manslaught'] [u'killer', u'appeal', u'convict'] [u'labor', u'see', u'hypocrisi', u'coastal', u'plan'] [u'lion', u'look', u'import', u'irish'] [u'lobster', u'fisher', u'clean', u'beach'] [u'local', u'branch', u'push', u'highway', u'fund', u'polici'] [u'local', u'cyclist', u'finish', u'tour', u'franc'] [u'london', u'tube', u'servic', u'resum', u'bomb'] [u'lower', u'water', u'wont', u'chang', u'restrict'] [u'collin', u'break', u'silenc'] [u'fin', u'abalon', u'traffic'] [u'fin', u'obscen', u'act'] [u'face', u'court', u'polic', u'stand'] [u'mayor', u'upset', u'govt', u'rail', u'respons'] [u'mcgee', u'stay', u'jeux'] [u'merger', u'extend', u'qanta', u'reach', u'asia'] [u'michael', u'vaughan', u'interview'] [u'approv', u'spark', u'green', u'group', u'legal', u'action'] [u'miner', u'map', u'border', u'region', u'gold', u'uranium', u'deposit'] [u'miner', u'push', u'record', u'close'] [u'minist', u'prais', u'effort', u'finish', u'justic', u'complex'] [u'fatal', u'error', u'polic'] [u'mysteri', u'ill', u'hit', u'chines', u'provinc'] [u'nadal', u'confirm', u'status', u'clay', u'court', u'king'] [u'nairn', u'challeng', u'talk', u'chang'] [u'home', u'sale', u'continu', u'fall'] [u'coordin', u'schooli'] [u'norfolk', u'trial'] [u'nuclear', u'wast', u'dump', u'certainti', u'senat'] [u'produc', u'seek', u'chang', u'drought', u'guidelin'] [u'nuclear', u'dump', u'leak', u'contamin', u'water', u'expert'] [u'price', u'rise', u'consum', u'good'] [u'oper', u'confid', u'ghan', u'secur', u'arrang'] [u'opposit', u'blame', u'wagga', u'emerg', u'delay'] [u'opposit', u'question', u'health', u'minist', u'appoint'] [u'opposit', u'say', u'countri', u'victorian', u'wait'] [u'orang', u'council', u'take', u'stand', u'crop'] [u'parker', u'hodg', u'report', u'danger', u'throw'] [u'patterson', u'reject', u'acoss', u'welfar', u'find'] [u'pietersen', u'predict', u'england', u'fight'] [u'criticis', u'muslim', u'cleric'] [u'tight', u'lip', u'shoot', u'kill', u'polici'] [u'hop', u'break', u'deal', u'impass'] [u'polic', u'chief', u'ponder', u'region', u'terror', u'threat'] [u'polic', u'defend', u'shoot', u'kill', u'polici'] [u'polic', u'miss', u'ipswich', u'woman', u'bodi'] [u'polic', u'hail', u'speed', u'bust'] [u'polic', u'hunt', u'elder', u'woman', u'attack'] [u'polic', u'hunt', u'fifth', u'bomber'] [u'polic', u'investig', u'rail', u'death'] [u'polic', u'hoon', u'crackdown', u'pay'] [u'polic', u'spend', u'second', u'weekend', u'search', u'snow'] [u'polic', u'urg', u'action', u'log', u'protest'] [u'polic', u'warn', u'riverland', u'fantasi', u'drug'] [u'pratt', u'lend', u'support', u'food', u'label', u'campaign'] [u'public', u'invit', u'meet', u'sale', u'hospit', u'futur'] [u'public', u'decid', u'surveil', u'level', u'polic'] [u'ratepay', u'group', u'welcom', u'marina', u'decis'] [u'rate', u'rise', u'loom', u'mine', u'pastor', u'properti', u'owner'] [u'report', u'show', u'canegrow', u'go', u'green'] [u'ricki', u'pont', u'interview'] [u'robot', u'help', u'rescu', u'high', u'tech'] [u'rocki', u'cyclist', u'speak', u'accid'] [u'royal', u'wave', u'greet', u'chines', u'tourist', u'surg'] [u'rudd', u'seek', u'investig', u'claim'] [u'russian', u'pair', u'deni', u'china', u'golden', u'dive', u'finish'] [u'africa', u'consid', u'zimbabw', u'debt', u'plea'] [u'scientist', u'link', u'smoke', u'cancer', u'die'] [u'search', u'miss', u'hunter'] [u'second', u'group', u'claim', u'egypt', u'attack'] [u'sheikh', u'deni', u'australian', u'muslim', u'preach', u'violenc'] [u'shire', u'work', u'drought', u'applic'] [u'south', u'releas', u'homesick', u'bell'] [u'speed', u'driver', u'prompt', u'polic', u'safeti'] [u'stadium', u'secur', u'review', u'firework'] [u'stepfath', u'plead', u'guilti', u'derbi', u'children', u'murder'] [u'student', u'peer', u'support', u'train'] [u'success', u'farmer', u'time', u'studi'] [u'suicid', u'bomber', u'kill', u'baghdad', u'hotel'] [u'tanzanian', u'woman', u'claim', u'genit', u'mutil', u'fear'] [u'tasmanian', u'dark', u'smoke'] [u'tattoo', u'clown', u'prime', u'suspect', u'croc', u'theft'] [u'tattoo', u'organis', u'musician'] [u'teacher', u'union', u'agre', u'council'] [u'teenag', u'workplac', u'death', u'chang', u'build', u'court'] [u'theft', u'spark', u'polic', u'secur', u'warn'] [u'thiev', u'luck', u'thousand', u'scratchi'] [u'thousand', u'flock', u'mildura', u'carniv'] [u'hospit', u'maryborough'] [u'face', u'court', u'drug', u'charg'] [u'time', u'run', u'council', u'flood'] [u'traffic', u'face', u'drink', u'drive', u'charg'] [u'toxic', u'chemic', u'spill', u'investig'] [u'transport', u'secur', u'upgrad', u'cost', u'taxpay'] [u'tribut', u'pour', u'retir', u'armstrong'] [u'truck', u'driver', u'hurt', u'accid'] [u'tube', u'shoot', u'victim', u'late', u'work', u'friend'] [u'tweed', u'urg', u'flood', u'readi'] [u'wagga', u'wagga', u'road', u'crash'] [u'polic', u'arrest', u'bomb', u'suspect'] [u'underag', u'drink', u'driver', u'concern', u'polic'] [u'union', u'back', u'berri', u'nation', u'food', u'merger', u'job'] [u'unit', u'church', u'oppos', u'move', u'chang'] [u'hold', u'talk', u'north', u'korea'] [u'veteran', u'liber', u'parti', u'ident', u'chapman', u'die'] [u'victoria', u'happi', u'drought', u'decis'] [u'law', u'jeopardis', u'adelaid', u'job'] [u'wafl', u'clash', u'boost', u'esper', u'aussi', u'rule'] [u'wallabi', u'continu', u'probe', u'alleg', u'nightclub'] [u'watchdog', u'question', u'legal', u'polic', u'action'] [u'weekend', u'drive', u'spark', u'drink', u'drive', u'charg'] [u'west', u'indi', u'face', u'uphil', u'struggl', u'save', u'second'] [u'white', u'price', u'plummet'] [u'wit', u'confirm', u'rothwel', u'cash', u'guarante'] [u'wollongong', u'hospit', u'mental', u'health', u'unit'] [u'woocoo', u'shire', u'keep', u'rate', u'rise'] [u'zentai', u'claim', u'proof', u'innoc'] [u'aborigin', u'go', u'record', u'price'] [u'academ', u'studi', u'wollongong', u'drink', u'promot'] [u'accus', u'peopl', u'smuggler', u'enter', u'guilti', u'plea'] [u'take', u'wait', u'approach', u'driver', u'drug'] [u'hold', u'meet', u'impass'] [u'target', u'muslim', u'convert', u'librari', u'book'] [u'agassi', u'readi', u'magic', u'court'] [u'agreement', u'pave', u'spong', u'farm'] [u'albani', u'bank', u'bendigo', u'lender', u'plan'] [u'aldermen', u'odd', u'rate', u'rise'] [u'leagu', u'club', u'look', u'support'] [u'alleg', u'abus', u'victim', u'seek', u'permiss', u'church'] [u'faction', u'fight', u'head', u'court'] [u'amalgam', u'help', u'legal', u'servic', u'continu'] [u'anim', u'liberationist', u'guilti', u'trespass'] [u'asparagus', u'grower', u'year', u'round', u'product'] [u'assessor', u'consid', u'diamond', u'expans', u'plan'] [u'aussi', u'food', u'campaign', u'visit', u'echuca'] [u'aussi', u'women', u'medal', u'haul'] [u'aust', u'market', u'claw', u'record', u'close'] [u'aust', u'sign', u'asean', u'aggress', u'treati'] [u'babi', u'transfer', u'sydney', u'medic', u'attent'] [u'bathurst', u'motorcyclist', u'succumb', u'injuri'] [u'beatti', u'see', u'side', u'palm', u'aftermath'] [u'beatti', u'take', u'treasur', u'duti'] [u'beazley', u'say', u'media', u'chang', u'kill', u'divers'] [u'bendigo', u'summit', u'address', u'region', u'prosper'] [u'berri', u'nation', u'silent', u'possibl', u'merger', u'loss'] [u'betfair', u'offer', u'profit', u'licenc'] [u'bird', u'reach', u'siberia'] [u'blaze', u'damag', u'histor', u'school'] [u'bowl', u'club', u'agre', u'merger'] [u'brack', u'awar', u'rescu', u'chopper', u'woe'] [u'brack', u'urg', u'nation', u'debat', u'search'] [u'break', u'hill', u'road', u'confer'] [u'bulldog', u'polic', u'name', u'firecrack'] [u'burma', u'agre', u'forego', u'asean', u'chair'] [u'burma', u'skip', u'asean', u'chairmanship'] [u'byron', u'resid', u'say', u'skate', u'park', u'site', u'unsuit'] [u'cahil', u'everton', u'futur', u'doubt'] [u'minist', u'rethink', u'yeppoon', u'hospit'] [u'casino', u'face', u'penalti', u'breed', u'tiger'] [u'chang', u'farm', u'practic', u'rural', u'popul'] [u'chen', u'deni', u'consent', u'consul', u'check'] [u'chen', u'abduct', u'claim', u'unsubstanti'] [u'climat', u'chang', u'mark', u'australian'] [u'climat', u'chang', u'report', u'renew', u'kyoto', u'protocol', u'debat'] [u'club', u'face', u'shaki', u'futur'] [u'coast', u'gear', u'fashion', u'award'] [u'coron', u'probe', u'rescu', u'chopper', u'crash'] [u'costello', u'real', u'plan', u'slip', u'labor'] [u'council', u'accus', u'hamper', u'buffalo', u'meat', u'busi'] [u'council', u'back', u'underground', u'powerlin'] [u'council', u'consid', u'lake', u'macquari', u'citi', u'plan'] [u'council', u'defend', u'beach', u'restrict'] [u'council', u'encourag', u'resid', u'water', u'wise'] [u'council', u'group', u'plan', u'tsunami', u'fund', u'distribut'] [u'council', u'reject', u'bulki', u'good', u'centr', u'plan'] [u'council', u'say', u'communiti', u'feel', u'impact', u'budget'] [u'council', u'seek', u'local', u'govt', u'support', u'tripl'] [u'council', u'face', u'increas', u'elect', u'cost'] [u'council', u'join', u'china', u'busi', u'trip'] [u'court', u'clear', u'drug', u'charg'] [u'cultur', u'signific', u'tree', u'delay', u'log'] [u'cusack', u'name', u'south', u'captain'] [u'dead', u'wood', u'brack', u'tell', u'beazley'] [u'death', u'continu', u'boost', u'bougainvill', u'copper', u'share'] [u'defect', u'gene', u'make', u'cat', u'real', u'sourpuss'] [u'desalin', u'plant', u'wind', u'power'] [u'develop', u'sue', u'maleni', u'protest'] [u'disput', u'inspir', u'stand', u'council'] [u'dont', u'panic', u'climat', u'chang', u'minist'] [u'dopey', u'theft', u'victim', u'bust'] [u'doubl', u'standard', u'ruddock', u'terror', u'pitch'] [u'dozen', u'kill', u'afghan', u'clash'] [u'request', u'detail', u'consid', u'corbi', u'wit'] [u'drink', u'driver', u'blow', u'time', u'limit'] [u'drought', u'blame', u'yard', u'demis'] [u'dutch', u'film', u'maker', u'killer', u'jail', u'life'] [u'guerrouj', u'world', u'champ'] [u'emerald', u'resid', u'form', u'canker', u'group'] [u'ethnic', u'support', u'vital', u'leagu'] [u'serviceman', u'say', u'youth', u'benefit'] [u'famili', u'associ', u'question', u'parent', u'rule'] [u'famili', u'kill', u'brazilian', u'reject', u'blair', u'apolog'] [u'farmer', u'water', u'woe', u'busi', u'risk'] [u'farmer', u'support', u'local', u'produc', u'push'] [u'feed', u'tube', u'decis', u'korp', u'mind'] [u'charg', u'lay', u'ward', u'abus', u'inquiri'] [u'hospit', u'light', u'plane', u'accid'] [u'fund', u'track', u'broom'] [u'fund', u'shortfal', u'creat', u'grave', u'fear'] [u'gale', u'blow', u'lodg', u'roof'] [u'gallop', u'back', u'current', u'immigr', u'law'] [u'gallop', u'defend', u'stanc', u'nuclear', u'export'] [u'ginninderra', u'school', u'consult', u'criticis'] [u'govt', u'laugh', u'critic'] [u'govt', u'notic', u'improv', u'safeti'] [u'govt', u'ramp', u'boat', u'fund'] [u'govt', u'expand', u'mental', u'health', u'program'] [u'govt', u'urg', u'passeng', u'rail', u'servic'] [u'govt', u'urg', u'help', u'overcom', u'supermarket', u'road', u'woe'] [u'group', u'receiv', u'environment', u'fund', u'boost'] [u'gulgong', u'damag', u'cafe'] [u'battl', u'report', u'hunt', u'egypt', u'bomber'] [u'health', u'care', u'provid', u'push', u'clearer', u'bill'] [u'henjak', u'regret', u'send', u'home', u'south'] [u'henri', u'put', u'faith', u'wenger'] [u'hodg', u'plead', u'guilti', u'ban', u'match'] [u'home', u'owner', u'face', u'holiday', u'rental'] [u'hope', u'improv', u'busi', u'communic'] [u'howard', u'eye', u'trade', u'deal'] [u'howard', u'thank', u'support', u'troop'] [u'human', u'remain', u'futur', u'rubbish', u'dump'] [u'indigen', u'women', u'shape', u'safeti', u'polici'] [u'industri', u'demand', u'biofuel', u'task', u'forc', u'report'] [u'injuri', u'forc', u'aussi', u'helsinki', u'squad'] [u'inquest', u'probe', u'driver', u'death'] [u'intellig', u'authorir', u'seek', u'bomb', u'link'] [u'investor', u'ahead', u'earn', u'report'] [u'islam', u'leader', u'launch', u'anti', u'terror', u'campaign'] [u'jail', u'neighbour', u'surround', u'road', u'need', u'repair'] [u'jetstar', u'plan', u'evacu', u'slide', u'fail', u'report'] [u'kakadu', u'remain', u'discoveri', u'prompt', u'bushwalk', u'warn'] [u'kevin', u'pietersen', u'interview'] [u'kitten', u'tortur', u'give', u'home', u'detent'] [u'knight', u'consid', u'play', u'alic', u'match'] [u'korp', u'feed', u'tube', u'remov'] [u'labor', u'say', u'chang', u'hurt', u'pension'] [u'langer', u'back', u'mcgrath', u'warn', u'maintain', u'ash'] [u'lion', u'power'] [u'liverpool', u'plain', u'shire', u'councillor', u'step'] [u'luczak', u'go', u'austria'] [u'charg', u'drug', u'bust'] [u'question', u'stab'] [u'remand', u'custodi', u'cement', u'plant', u'threat'] [u'manslaught', u'trial', u'hear', u'hotel', u'death', u'detail'] [u'gunshot', u'wind', u'melbourn', u'laneway'] [u'mayor', u'outrag', u'cotton', u'compani', u'reloc', u'plan'] [u'meander', u'river', u'construct', u'expect', u'start'] [u'melbourn', u'cleric', u'say', u'lade', u'comment', u'take'] [u'minist', u'await', u'result', u'victorian', u'random', u'drug'] [u'minist', u'brief', u'school', u'mouth', u'tap', u'incid'] [u'minist', u'temper', u'immigr', u'debat'] [u'reliev', u'justic', u'complex', u'complet'] [u'want', u'hospit', u'audit', u'clear', u'staff', u'worri'] [u'monaro', u'product', u'screech', u'halt'] [u'monitor', u'cctv', u'stretch', u'resourc', u'polic'] [u'morwel', u'host', u'build', u'skill', u'project'] [u'air', u'rail', u'servic', u'standard', u'concern'] [u'urg', u'peopl', u'power', u'stop', u'wast', u'transport'] [u'mugab', u'visit', u'china'] [u'busi', u'survey', u'hold', u'steadi'] [u'nasa', u'fill', u'discoveri', u'fuel', u'tank'] [u'nation', u'urg', u'infrastructur', u'boost'] [u'newcastl', u'council', u'ask', u'fernleigh', u'track', u'fund'] [u'health', u'chief', u'contact', u'bundaberg', u'support', u'group'] [u'spark', u'baralaba', u'boom'] [u'zealand', u'open', u'chang', u'date'] [u'north', u'korea', u'nuclear', u'talk', u'resum', u'year'] [u'north', u'west', u'recognis', u'region', u'achiev'] [u'unusu', u'surgeri', u'wait', u'list', u'remov'] [u'water', u'polo', u'medal', u'aussi'] [u'commit', u'tour', u'despit', u'resolut'] [u'govern', u'urg', u'cancel', u'zimbabw', u'tour'] [u'opposit', u'say', u'disput', u'put', u'prison', u'program'] [u'opposit', u'seiz', u'rail', u'figur'] [u'peanut', u'butter', u'death', u'inquest', u'adjourn'] [u'peta', u'continu', u'mules', u'campaign'] [u'phelp', u'qualifi', u'fastest', u'freestyl', u'final'] [u'photograph', u'jail', u'attempt', u'sell', u'diaz', u'photo'] [u'spend', u'birthday', u'middl', u'east'] [u'polic', u'chief', u'odd', u'palm', u'search'] [u'polic', u'integr', u'commiss', u'continu', u'brutal'] [u'polic', u'issu', u'escape', u'warn'] [u'polic', u'crime', u'trailer', u'road'] [u'polic', u'school', u'scheme', u'revamp'] [u'porpois', u'pool', u'get', u'green', u'light', u'plan', u'expans'] [u'port', u'readi', u'chilli', u'canberra'] [u'post', u'mortem', u'bodi', u'near', u'ipswich'] [u'prawn', u'fisheri', u'council', u'discuss', u'product'] [u'previous', u'council', u'blame', u'poor', u'surf', u'hous', u'state'] [u'produc', u'urg', u'start', u'plan', u'hajj', u'export'] [u'reshuffl', u'distract', u'say', u'opposit'] [u'return', u'adelaid'] [u'report', u'highlight', u'greener', u'cane', u'grower'] [u'roo', u'strong', u'influenc'] [u'rspca', u'quiz', u'brother', u'contest'] [u'russia', u'offer', u'million', u'moon', u'trip'] [u'safe', u'citi', u'group', u'urg', u'vandal', u'hotlin'] [u'schipper', u'lenton', u'butterfli', u'queen'] [u'schipper', u'win', u'gold', u'montreal'] [u'school', u'princip', u'kindergarten', u'teacher'] [u'school', u'surpris', u'festiv'] [u'school', u'tap', u'noisi', u'children', u'mouth', u'shut'] [u'second', u'jail', u'australian', u'embassi', u'blast'] [u'senat', u'hear', u'alic', u'resid', u'dump', u'critic'] [u'sheep', u'vaccin', u'field', u'trial'] [u'shire', u'hold', u'airport', u'talk'] [u'solon', u'lawyer', u'alleg', u'govern', u'cover'] [u'soni', u'radio', u'playlist', u'sweeten', u'strike', u'sour', u'note'] [u'south', u'east', u'spar', u'kimberley', u'clark', u'cut'] [u'stanhop', u'hear', u'muslim', u'isol'] [u'state', u'input', u'china', u'talk'] [u'stosur', u'go', u'sugiyama', u'california'] [u'suleman', u'stand', u'trial', u'invest', u'loan'] [u'surgeri', u'plan', u'promis', u'reduc', u'wait', u'list'] [u'survey', u'consid', u'rural', u'popul'] [u'swan', u'interst', u'rule', u'chang'] [u'sydney', u'gang', u'rape', u'suspect', u'grant', u'bail'] [u'sydney', u'team', u'get', u'back', u'contracept', u'studi'] [u'tamworth', u'armidal', u'servic', u'track', u'friday'] [u'tasmanian', u'australia', u'homophob'] [u'retail', u'plan', u'fair', u'dinkum', u'aussi', u'brand'] [u'teenag', u'sentenc', u'avoid', u'adult', u'jail'] [u'terror', u'threat', u'justifi', u'cut', u'civil', u'liberti'] [u'group', u'claim', u'respons', u'egypt'] [u'thousand', u'sign', u'petit', u'urg', u'rail', u'line'] [u'time', u'stand', u'year'] [u'gear', u'oper', u'kakadu'] [u'transsexu', u'avoid', u'jail', u'threaten'] [u'head', u'freeway', u'crash'] [u'motion', u'condemn', u'gunn', u'suit'] [u'umaga', u'appear', u'manipul'] [u'ask', u'controversi', u'academ', u'retir', u'earli'] [u'union', u'consid', u'teacher', u'strike'] [u'reject', u'sack', u'report', u'anti', u'immigr'] [u'judg', u'issu', u'deadlin', u'hick', u'case'] [u'tell', u'kyrgyz', u'base', u'stay'] [u'vendor', u'blame', u'hous', u'sale', u'slump'] [u'vizard', u'bookkeep', u'admit', u'cook', u'book'] [u'wagga', u'council', u'endors', u'spring', u'burn'] [u'windsor', u'sceptic', u'card', u'propos'] [u'woman', u'die', u'singl', u'crash'] [u'woman', u'alight', u'palm', u'island'] [u'woman', u'court', u'airport', u'heroin'] [u'wooli', u'banana'] [u'yarrabah', u'communiti', u'review', u'curfew', u'plan'] [u'yonglin', u'say', u'immigr', u'offici', u'urg'] [u'stand', u'trial', u'palm', u'riot'] [u'abus', u'parrot', u'isol', u'stop', u'insult'] [u'accc', u'review', u'beverag', u'giant', u'merger', u'plan'] [u'accid', u'spark', u'overpass', u'chang'] [u'accus', u'syring', u'bandit', u'face', u'court'] [u'crime', u'report', u'releas', u'today'] [u'adelaid', u'firm', u'assess', u'uranium', u'potenti', u'near'] [u'near', u'decis', u'prelim', u'final'] [u'agassi', u'make', u'triumphant', u'return', u'lopsid'] [u'alic', u'hold', u'wast', u'dump', u'meet'] [u'arthur', u'sink'] [u'asean', u'invit', u'australia', u'summit'] [u'asean', u'treati', u'sign', u'thursday'] [u'asic', u'warn', u'policyhold', u'insur'] [u'profit', u'soar'] [u'australia', u'form', u'climat', u'chang', u'pact', u'report'] [u'bank', u'help', u'market', u'fresh', u'record'] [u'beatti', u'complet', u'reshuffl'] [u'bega', u'council', u'probe', u'wont', u'consid', u'past', u'perform'] [u'belmont', u'yacht', u'owner', u'bodi', u'examin'] [u'bendigo', u'firm', u'secur', u'east', u'work'] [u'berri', u'boost', u'flood', u'manag'] [u'bird', u'resurfac', u'japan'] [u'carr', u'life', u'polit'] [u'boomer', u'beat', u'beij'] [u'boy', u'arrest', u'adelaid', u'polic', u'chase'] [u'break', u'hill', u'get', u'apprentic'] [u'burnett', u'back', u'director', u'general', u'departur'] [u'life', u'soccer', u'player', u'racial', u'slur'] [u'state', u'fund', u'matern', u'servic'] [u'meet', u'zimbabw', u'demolit'] [u'call', u'nation', u'plan', u'tackl', u'pest'] [u'campbel', u'confirm', u'greenhous', u'pact'] [u'carr', u'deni', u'desert', u'parti', u'troubl'] [u'carr', u'quit'] [u'carr', u'resign', u'premier'] [u'catchment', u'risk', u'nuclear', u'dump', u'govt'] [u'cfmeu', u'deni', u'encourag', u'mass', u'sicki'] [u'charg', u'like', u'infant', u'abduct', u'attempt'] [u'chines', u'polic', u'farmer', u'clash', u'caus', u'anarchi'] [u'chines', u'skinni', u'dipper', u'spark', u'moral', u'debat'] [u'citrus', u'grower', u'propos', u'biosecur', u'levi'] [u'claim', u'poki', u'take', u'chariti', u'revenu'] [u'clark', u'pledg', u'abolish', u'student', u'loan'] [u'climat', u'chang', u'report', u'highlight', u'broom', u'concern'] [u'palm', u'report', u'hearten', u'activist'] [u'concern', u'miss', u'rockhampton'] [u'condobolin', u'resid', u'seek', u'surgic', u'servic', u'meet'] [u'contract', u'disput', u'threaten', u'women', u'health', u'servic'] [u'cook', u'shire', u'budget', u'take', u'chang', u'account'] [u'council', u'get', u'park', u'plan'] [u'councillor', u'look', u'liber', u'dubbo', u'preselect'] [u'councillor', u'seek', u'code', u'conduct', u'shake'] [u'council', u'push', u'taxi', u'plat'] [u'court', u'hear', u'nurs', u'authoris', u'head'] [u'cowboy', u'line', u'unchang', u'man', u'clash'] [u'currawarna', u'pair', u'charg', u'drug', u'bust'] [u'david', u'join', u'tottenham', u'free', u'transfer'] [u'deal', u'pave', u'resort', u'near', u'katherin', u'gorg'] [u'democrat', u'seek', u'legal', u'guarante', u'whyalla', u'dust'] [u'dfat', u'issu', u'warn', u'childcar', u'centr'] [u'discoveri', u'deploy', u'camera', u'check', u'damag'] [u'discoveri', u'launch', u'safe'] [u'disgruntl', u'murray', u'darl', u'associ', u'deleg'] [u'disney', u'can', u'australian', u'anim', u'oper'] [u'doctor', u'stand', u'baryulgil', u'mass', u'find'] [u'anger', u'australian', u'muslim', u'beazley'] [u'downer', u'sign', u'aggress', u'treati'] [u'driver', u'appeal', u'trail', u'bike', u'ram', u'rule'] [u'drought', u'recoveri', u'concert', u'hold', u'orang'] [u'drug', u'charg', u'earn', u'suspend', u'jail', u'term'] [u'educ', u'focus', u'group', u'normal', u'practic'] [u'elector', u'commission', u'await', u'word', u'hanson'] [u'masri', u'season'] [u'england', u'aussi', u'attack', u'flintoff'] [u'environ', u'minist', u'visit', u'toad', u'battl'] [u'send', u'observ', u'mission', u'afghan', u'vote'] [u'farmer', u'fear', u'water', u'recycl', u'plan'] [u'farmer', u'meet', u'mccain', u'contract', u'fear'] [u'fisher', u'tip', u'henjak', u'bounc'] [u'flood', u'kill', u'dozen', u'india', u'mumbai', u'water', u'log'] [u'youth', u'worker', u'jail', u'child', u'porn'] [u'player', u'return', u'saint'] [u'soldier', u'kill', u'iraq'] [u'french', u'admit', u'armstrong', u'greatest', u'tour', u'rider'] [u'gallop', u'consid', u'stop', u'search', u'power', u'polic'] [u'gaze', u'honour', u'trophi', u'name'] [u'gilgandra', u'shire', u'advertis', u'general', u'manag'] [u'gillespi', u'look', u'form'] [u'gold', u'coast', u'chief', u'prais', u'mackenroth'] [u'govt', u'criticis', u'cut', u'agricultur', u'posit'] [u'govt', u'fund', u'museum', u'norfolk'] [u'govt', u'tighten', u'mobil', u'phone', u'tower', u'control'] [u'govt', u'push', u'respit', u'servic', u'offer', u'older'] [u'govt', u'urg', u'releas', u'report'] [u'govt', u'urg', u'rethink', u'super', u'law'] [u'govt', u'urg', u'calm', u'bioregion', u'creation'] [u'govt', u'warn', u'travel', u'fiji'] [u'green', u'moratorium', u'water', u'bore'] [u'grog', u'book', u'assist', u'indigen', u'communiti'] [u'gunn', u'plantat'] [u'hanson', u'seek', u'return', u'elect', u'fund'] [u'high', u'sugar', u'price', u'boost', u'grower', u'return'] [u'hobart', u'polic', u'inform', u'prison', u'incid'] [u'honorari', u'botanist', u'find', u'wattl', u'speci'] [u'hooker', u'second', u'world', u'champ', u'warm'] [u'hospit', u'chang', u'patient', u'death'] [u'howard', u'consid', u'terror', u'summit'] [u'hull', u'say', u'nation', u'get', u'tougher', u'telstra'] [u'hundr', u'ralli', u'food', u'label'] [u'inflat', u'edg', u'slight'] [u'inquest', u'tell', u'higher', u'chopper', u'crash', u'rate'] [u'inquiri', u'chief', u'highlight', u'devast', u'eyr'] [u'inquiri', u'tell', u'long', u'hour', u'harm', u'doctor', u'health'] [u'instant', u'noodl', u'world'] [u'irrig', u'want', u'rate', u'rise', u'explan'] [u'send', u'beatti', u'letter', u'grave'] [u'jone', u'claim', u'breaststrok', u'gold'] [u'jone', u'claim', u'gold', u'hackett', u'make', u'histori'] [u'joyc', u'echo', u'revamp', u'concern'] [u'kalgoorli', u'polic', u'charg', u'stab'] [u'korp', u'allow', u'visit', u'die', u'wife'] [u'korp', u'say', u'goodby', u'die', u'wife'] [u'korp', u'visit', u'wife'] [u'lawyer', u'disput', u'corbi', u'wit', u'claim'] [u'leader', u'converg', u'wide', u'forum'] [u'leader', u'react', u'carr', u'resign'] [u'liber', u'welcom', u'public', u'hous', u'audit'] [u'longernong', u'student', u'disappoint', u'open', u'date'] [u'longreach', u'dementia', u'unit', u'state'] [u'maleni', u'develop', u'urg', u'protest', u'share', u'cost'] [u'arrest', u'wagga', u'stab'] [u'court', u'ararat', u'stand'] [u'maria', u'korp', u'life', u'support', u'switch'] [u'mayor', u'stand', u'rubbish', u'levi'] [u'meet', u'pave', u'rail', u'line'] [u'mileston', u'buckley', u'reflect', u'season'] [u'miner', u'increas', u'explor', u'activ'] [u'minist', u'seek', u'chang', u'protect', u'small', u'busi'] [u'mobil', u'phone', u'tower', u'rule', u'alli', u'public', u'concern'] [u'talk', u'hold', u'chip', u'factori'] [u'motorcyclist', u'critic', u'condit', u'alic'] [u'moyn', u'council', u'vote', u'record', u'meet'] [u'urg', u'fuel', u'remov'] [u'warn', u'commonwealth', u'control', u'coastal'] [u'nasa', u'studi', u'possibl', u'shuttl', u'damag'] [u'nation', u'attack', u'mayor', u'summit', u'plan'] [u'nation', u'increas', u'secur', u'focus'] [u'nauru', u'face', u'legal', u'case', u'trust', u'fund'] [u'ncoss', u'invit', u'public', u'input', u'boost', u'fund'] [u'aflnt', u'boss', u'consid', u'televis', u'game'] [u'northern', u'gold', u'predict', u'profit'] [u'stop', u'rise', u'goat', u'meat', u'export'] [u'nrma', u'sign', u'remov', u'repair', u'disput', u'escal'] [u'premier', u'resign'] [u'roll', u'acceler', u'literaci', u'program'] [u'obes', u'epidem', u'erod', u'heart', u'health', u'gain', u'expert'] [u'organis', u'crime', u'involv', u'illeg', u'fish'] [u'oxfam', u'seek', u'famin', u'stand', u'fund'] [u'pair', u'refus', u'bail', u'pennington', u'murder', u'case'] [u'park', u'score', u'unit', u'eas', u'beij'] [u'perilya', u'announc', u'lead', u'product', u'boost'] [u'diseas', u'kill', u'chines'] [u'pike', u'highlight', u'fall', u'dental', u'wait', u'list'] [u'polic', u'arrest', u'london', u'attack'] [u'polic', u'charg', u'springval', u'slay'] [u'polic', u'ask', u'probe', u'attempt', u'council', u'sale'] [u'polic', u'probe', u'fatal', u'truck', u'crash'] [u'polic', u'probe', u'parramatta', u'murder'] [u'polic', u'question', u'london', u'bomb', u'suspect'] [u'power', u'confid', u'beat', u'roo'] [u'prawn', u'boat', u'oper', u'happi', u'licens'] [u'pressur', u'mount', u'differenti', u'rat'] [u'prison', u'plead', u'guilti', u'bunburi', u'sieg', u'rape'] [u'public', u'councillor', u'number'] [u'qanta', u'confid', u'aircraft', u'boost', u'region'] [u'qanta', u'staff', u'testifi', u'corbi', u'trial'] [u'urg', u'join', u'carer', u'program'] [u'rabbitoh', u'sign', u'moran'] [u'race', u'offici', u'confid', u'drug', u'test'] [u'rainbow', u'warrior', u'interrupt', u'newcastl', u'coal'] [u'rainbow', u'warrior', u'remov', u'newcastl', u'harbour'] [u'ralli', u'oppos', u'hospit', u'patholog', u'privatis'] [u'rate', u'rise', u'like', u'mackay', u'budget'] [u'record', u'price', u'pay', u'victorian', u'calv'] [u'cross', u'visit', u'central', u'west'] [u'redempt', u'jone'] [u'report', u'highlight', u'slow', u'albani', u'growth'] [u'rumsfeld', u'visit', u'baghdad'] [u'sack', u'docker', u'coach', u'win', u'legal', u'battl'] [u'consid', u'lesbian', u'polic', u'liaison', u'offic'] [u'fish', u'industri', u'air', u'anger', u'closur'] [u'saint', u'secur', u'koschitzk', u'hudghton'] [u'santo', u'break', u'half', u'record'] [u'wine', u'magician', u'score', u'honour'] [u'school', u'mouth', u'tap', u'investig', u'soon'] [u'second', u'health', u'bureaucrat', u'step'] [u'secur', u'upgrad', u'cost', u'hobart', u'airport', u'million'] [u'senat', u'fear', u'employe', u'meal', u'break'] [u'crime', u'report', u'recommend', u'better', u'victim'] [u'shearer', u'secur', u'bigger', u'payout', u'land', u'acquisit'] [u'shine', u'hop', u'parliamentari', u'secretari', u'role'] [u'shuttl', u'discoveri', u'launch'] [u'tube', u'derail', u'caus', u'remain', u'confidenti'] [u'star', u'war', u'memorabilia', u'auction'] [u'state', u'seek', u'urgent', u'anti', u'terror', u'meet'] [u'strategi', u'focus', u'beaudesert', u'econom', u'growth'] [u'studi', u'show', u'circumcis', u'reduc', u'aid', u'risk'] [u'studi', u'investig', u'violent', u'crime', u'link', u'immun'] [u'tamworth', u'jail'] [u'teacher', u'shortag', u'predict', u'north', u'coast'] [u'teen', u'die', u'stab'] [u'townsvill', u'prepar'] [u'trader', u'urg', u'watch', u'fake', u'money'] [u'nation', u'sterner', u'test', u'black'] [u'hurt', u'crash'] [u'unifi', u'bodi', u'boost', u'seafood', u'industri', u'promot'] [u'upgrad', u'ellinbank', u'centr', u'open'] [u'uralla', u'council', u'union', u'flag'] [u'hop', u'sharpli', u'iraq', u'forc', u'year'] [u'vanston', u'seek', u'explan', u'student', u'detent'] [u'vcat', u'reject', u'subdivis', u'appeal'] [u'govt', u'urg', u'road', u'link', u'plan'] [u'labor', u'legal', u'squabbl', u'continu'] [u'waff', u'say', u'saudi', u'sheep', u'trade', u'reap', u'million'] [u'wagga', u'stab', u'victim', u'hospit'] [u'wallac', u'join', u'final', u'debat'] [u'wallac', u'underestim', u'place', u'blue'] [u'miner', u'beat', u'copper', u'plan'] [u'public', u'servant', u'particip', u'griffith'] [u'research', u'announc', u'seed', u'germin', u'discoveri'] [u'shark', u'number', u'microscop'] [u'top', u'access', u'econom', u'invest', u'report'] [u'western', u'power', u'charg', u'great', u'southern'] [u'fail', u'meet', u'aid', u'drug', u'goal'] [u'win', u'din', u'best', u'woo', u'women'] [u'woman', u'face', u'court', u'long', u'cancel', u'licenc'] [u'wood', u'recommend', u'inspector', u'post'] [u'wood', u'tune'] [u'worker', u'abl', u'cash', u'entitl'] [u'donat', u'help', u'fli', u'doctor'] [u'abduct', u'attempt', u'prompt', u'polic', u'warn'] [u'acoust', u'tower', u'help', u'cane', u'toad', u'fight'] [u'adelaid', u'bank', u'profit', u'soar'] [u'close', u'end', u'prelim', u'final', u'disput'] [u'alleg', u'serial', u'spiker', u'stand', u'trial'] [u'support', u'ethanol', u'blend', u'fuel'] [u'anderson', u'alleg', u'state', u'welsh', u'road', u'fund'] [u'land', u'death', u'anger', u'indigen', u'leader'] [u'appeal', u'see', u'bind', u'eleph', u'remain', u'thailand'] [u'appl', u'doesnt', u'exist', u'microsoft', u'virtual', u'earth'] [u'armi', u'reject', u'granni', u'fight', u'iraq'] [u'asic', u'admit', u'vizard', u'case', u'great'] [u'audit', u'critici', u'defenc', u'troop', u'project'] [u'auditor', u'blast', u'troop', u'carrier', u'upgrad'] [u'aussi', u'face', u'lanka'] [u'aust', u'academ', u'lose', u'botswana', u'deport', u'appeal'] [u'aust', u'asia', u'pacif', u'climat', u'pact'] [u'australia', u'host', u'inaugur', u'kyoto', u'meet'] [u'ballarat', u'compani', u'donat', u'gold', u'game', u'medal'] [u'ballroom', u'dancer', u'acquit', u'offenc'] [u'bank', u'market', u'win', u'streak'] [u'bathurst', u'consid', u'seek', u'ministeri', u'spot'] [u'unveil', u'onlin', u'soap', u'opera'] [u'beatti', u'ministri', u'get'] [u'bega', u'mayor', u'reveal', u'power', u'plan'] [u'betfair', u'woo', u'independ'] [u'clean', u'regular', u'event'] [u'birney', u'staff', u'poach', u'plan'] [u'black', u'applaud', u'outgo', u'carr'] [u'bomb', u'expert', u'involv', u'embassi', u'attack', u'jakarta'] [u'bomb', u'hit', u'iraqi', u'train'] [u'bomb', u'threat', u'forc', u'caltex', u'plant', u'evacu'] [u'boomer', u'strong', u'puerto', u'rico'] [u'broom', u'plan', u'strategi', u'consid', u'climat', u'chang'] [u'bunburi', u'lose', u'second', u'church', u'build'] [u'bureaucrat', u'departur', u'govt', u'retribut'] [u'busi', u'seek', u'park', u'support'] [u'busi', u'group', u'pledg', u'closer', u'relationship'] [u'buyer', u'boycott', u'bathurst', u'sheep', u'sale'] [u'cadet', u'suicid', u'case', u'deserv', u'tribun', u'hear', u'scutt'] [u'calf', u'death', u'investig'] [u'panel', u'countri', u'race', u'club'] [u'canberra', u'imag', u'need', u'improv', u'summit', u'hear'] [u'carr', u'bid', u'farwel', u'union', u'movement'] [u'carr', u'decis', u'spark', u'mix', u'respons'] [u'carr', u'replac', u'expect', u'impact', u'alburi'] [u'centacar', u'get', u'prais', u'year', u'work'] [u'charg', u'lay', u'polic', u'bust', u'drug', u'ring'] [u'chasten', u'henjak', u'say', u'wallabi', u'career'] [u'children', u'releas', u'detent'] [u'china', u'plan', u'antarct', u'expedit'] [u'china', u'diseas', u'toll', u'rise'] [u'chopper', u'inquest', u'tell', u'doctor', u'lack', u'formal', u'induct'] [u'citrus', u'canker', u'inquiri', u'evid', u'emerald'] [u'climat', u'chang', u'deal', u'better', u'kyoto', u'howard'] [u'communiti', u'villag', u'educ', u'program'] [u'concern', u'air', u'mental', u'peopl'] [u'contamin', u'oyster', u'farm', u'reopen', u'year'] [u'contend', u'hand'] [u'coron', u'find', u'accident', u'electrocut'] [u'council', u'delay', u'lose', u'fund', u'decis'] [u'council', u'releas', u'strand', u'report'] [u'council', u'rethink', u'increas', u'charg'] [u'council', u'retir', u'karri', u'resort', u'redevelop'] [u'council', u'agre', u'staff', u'entitl'] [u'council', u'standardis', u'water', u'restrict'] [u'council', u'decid', u'staff', u'flood', u'issu'] [u'council', u'vow', u'improv', u'consult', u'wind'] [u'court', u'consid', u'branch', u'stack', u'disput'] [u'court', u'fin', u'woodchip', u'protest'] [u'court', u'hear', u'pearl', u'oyster', u'farm', u'fight'] [u'court', u'undermin', u'immigr'] [u'cross', u'border', u'agreement', u'streamlin', u'disabl'] [u'crowd', u'turn', u'rail', u'station', u'open'] [u'democrat', u'seek', u'tuckshop', u'audit'] [u'dental', u'hear', u'head', u'port', u'macquari'] [u'discoveri', u'dock'] [u'discoveri', u'near', u'space', u'station'] [u'doctor', u'give', u'evid', u'polic', u'cell', u'inquest'] [u'doctor', u'action', u'hospit', u'servic'] [u'downer', u'commit', u'asean', u'aggress', u'pact'] [u'draper', u'call', u'equal', u'treatment', u'region'] [u'drought', u'affect', u'farm', u'children'] [u'famili', u'member', u'jail', u'brawl'] [u'email', u'pass', u'teen'] [u'emiss', u'pact', u'formal', u'unveil'] [u'detent', u'centr', u'remain', u'oper'] [u'export', u'plan', u'carnarvon'] [u'fact', u'irish', u'republican', u'armi'] [u'fear', u'trial', u'threaten', u'free', u'canola'] [u'feder', u'fund', u'tackl', u'indigen', u'drug', u'abus'] [u'firefight', u'clean', u'hospit', u'chemic', u'spill'] [u'pandem', u'fear', u'health', u'minist', u'confer'] [u'pandem', u'prepar', u'test'] [u'fodera', u'role', u'earn', u'apra'] [u'food', u'label', u'roadshow', u'arriv', u'mildura'] [u'food', u'regul', u'consid', u'countri', u'origin'] [u'fortress', u'law', u'appli', u'appropri', u'polic'] [u'gladston', u'council', u'deliv', u'budget'] [u'goldfield', u'lose', u'rare', u'obstetrician'] [u'goldfield', u'nativ', u'titl', u'claim', u'resolv'] [u'govt', u'cost', u'shift', u'bleed', u'rural', u'council'] [u'govt', u'criticis', u'agricultur', u'cut'] [u'govt', u'defend', u'campaign'] [u'govt', u'pressur', u'stall', u'polic', u'deploy'] [u'govt', u'stall', u'west', u'infrastructur', u'bid'] [u'groundbreak', u'indigen', u'educ', u'program'] [u'group', u'seek', u'action', u'dual', u'lane', u'goulburn', u'valley'] [u'hackett', u'edg', u'thorp', u'record', u'gold'] [u'hollywood', u'agre', u'digit', u'movi', u'standard'] [u'hop', u'carr', u'replac', u'address', u'coastal'] [u'hospit', u'board', u'urg', u'releas', u'patholog', u'decis'] [u'hundr', u'ralli', u'import', u'food', u'threat'] [u'hunter', u'woman', u'die', u'accid'] [u'immigr', u'scrambl', u'meet', u'child', u'releas'] [u'india', u'heaviest', u'rain', u'leav', u'fear', u'dead'] [u'indigen', u'leader', u'question', u'dump', u'plan'] [u'indonesia', u'plan', u'naval', u'shake'] [u'industri', u'promot', u'smaller', u'banana'] [u'injur', u'cyclist', u'walk'] [u'interview', u'payment', u'fund', u'guard', u'murder', u'defenc'] [u'iran', u'vow', u'resum', u'uranium', u'enrich', u'program'] [u'statement', u'arm', u'campaign'] [u'arm'] [u'jetti', u'manag', u'debat', u'rag'] [u'jone', u'vow', u'silenc', u'doubter'] [u'judg', u'decid', u'charg', u'newspap'] [u'juri', u'retir', u'dancer', u'abus', u'case'] [u'lender', u'upper', u'hous', u'chang'] [u'lennon', u'proud', u'pointi', u'head'] [u'london', u'polic', u'chief', u'warn', u'bomb'] [u'london', u'raid', u'bomb', u'suspect'] [u'mackay', u'mayor', u'stand', u'rate', u'rise'] [u'macquari', u'boost', u'profit', u'eye', u'india'] [u'maliss', u'ralli', u'oust', u'defend', u'champion', u'haa'] [u'manag', u'ask', u'pineappl', u'financ'] [u'arrest', u'overnight', u'stand'] [u'arrest', u'wagga', u'wagga', u'stab'] [u'citi', u'barton', u'fin', u'gross', u'misconduct'] [u'plead', u'guilti', u'counterfeit', u'cash'] [u'mayor', u'urg', u'accept', u'question', u'time', u'plan'] [u'chief', u'take', u'critic', u'board'] [u'melbourn', u'drug', u'bust', u'arrest', u'count'] [u'mental', u'health', u'find', u'today'] [u'miner', u'safe', u'zinifex'] [u'mine', u'compani', u'busi', u'know'] [u'mine', u'compani', u'seek', u'expans'] [u'minist', u'forc', u'defend', u'decis', u'school'] [u'mix', u'reaction', u'carr', u'departur'] [u'minist', u'discuss', u'break', u'hill', u'council', u'problem'] [u'remain', u'tight', u'lip', u'premier', u'debat'] [u'communiti', u'speed', u'cossack', u'plan'] [u'mudge', u'shop', u'phone', u'troubl'] [u'error', u'remind', u'check', u'statement'] [u'reimburs', u'overcharg', u'custom'] [u'nasa', u'ground', u'shuttl', u'fleet'] [u'nasa', u'ground', u'shuttl'] [u'nation', u'contest', u'elect'] [u'nation', u'welcom', u'carr', u'resign'] [u'councillor', u'loom', u'warrnambool'] [u'record', u'slow', u'later', u'hackett', u'admit'] [u'newspap', u'escap', u'censur', u'falconio', u'case', u'report'] [u'ngukurr', u'tension', u'rise', u'propos', u'grog'] [u'close', u'galleri', u'cost'] [u'evid', u'support', u'beckham', u'spit', u'claim'] [u'novacar', u'map', u'hospit', u'plan'] [u'nudist', u'bare', u'nake', u'truth'] [u'nuke', u'north', u'korea', u'secur', u'downer'] [u'leader', u'attack', u'muslim', u'milit', u'underbelli'] [u'dead', u'injur', u'collis'] [u'opposit', u'call', u'work', u'harder', u'amidst', u'cabinet'] [u'otten', u'cat', u'fight', u'final', u'place'] [u'overwork', u'santa', u'xmas', u'come'] [u'pakistan', u'arrest', u'pearl', u'murder', u'suspect'] [u'parol', u'board', u'boss', u'tell', u'paedophil', u'live', u'near'] [u'patel', u'reluct', u'transfer', u'patient', u'inquiri', u'tell'] [u'phenomen', u'hackett', u'set', u'record'] [u'pill', u'size', u'camera', u'provid', u'snapshot', u'intestin'] [u'pittman', u'world'] [u'plan', u'boost', u'overpass', u'safeti'] [u'polic', u'defend', u'action', u'greenpeac'] [u'polic', u'hope', u'arrest', u'bring', u'closer'] [u'polic', u'issu', u'calder', u'highway', u'warn'] [u'polic', u'probe', u'babi', u'death'] [u'polic', u'probe', u'cherri', u'picker', u'theft'] [u'polic', u'raid', u'drug', u'steal', u'good'] [u'polic', u'road', u'kill', u'accid', u'say', u'offic'] [u'polic', u'tell', u'baxter', u'centr', u'assault'] [u'polit', u'jostl', u'begin', u'labor'] [u'prelim', u'final', u'decis', u'week'] [u'prison', u'come', u'forward', u'corbi', u'case'] [u'detect', u'head', u'patel', u'investig'] [u'govt', u'criticis', u'handl', u'canker'] [u'rank', u'file', u'vote', u'decid', u'maroubra', u'candid'] [u'region', u'teacher', u'meet'] [u'report', u'call', u'urgent', u'land', u'slip', u'work'] [u'miguel', u'feel', u'pressur', u'merg', u'berri'] [u'scientist', u'identifi', u'weapon', u'fight', u'fraud'] [u'sculli', u'stand', u'firm', u'despit', u'dirti', u'trick'] [u'search', u'find', u'miss', u'angler', u'safe'] [u'second', u'prison', u'claim', u'knowledg', u'corbi', u'drug'] [u'shop', u'fin', u'porn', u'sale'] [u'shire', u'condemn', u'western', u'power', u'great', u'southern'] [u'sixteen', u'bomb', u'london', u'attack', u'report'] [u'solomon', u'wait', u'whale', u'explan'] [u'stem', u'cell', u'research', u'creat', u'brain', u'cell'] [u'strachan', u'feel', u'heat', u'celtic', u'humili'] [u'studi', u'find', u'echinacea', u'useless', u'cold'] [u'studi', u'find', u'north', u'west', u'shelf', u'emiss', u'okay'] [u'teacher', u'vie', u'region', u'achiev', u'award'] [u'telstra', u'admit', u'rural', u'servic', u'unsustain'] [u'telstra', u'deni', u'abandon', u'bush', u'custom'] [u'telstra', u'servic', u'comment', u'disturb', u'vail'] [u'threaten', u'speci', u'haven', u'north', u'coast'] [u'women', u'hold', u'london', u'bomb', u'probe'] [u'trader', u'warn', u'print'] [u'biki', u'face', u'drug', u'deal', u'charg'] [u'charg', u'adelaid', u'drug', u'bust'] [u'polic', u'arrest', u'bomb', u'suspect'] [u'hear', u'zimbabw', u'slum', u'report'] [u'union', u'warn', u'ongo', u'alic', u'hospit', u'shortag'] [u'uranium', u'explor', u'back', u'despit', u'mine'] [u'join', u'region', u'particip', u'studi'] [u'probe', u'possibl', u'case'] [u'swelter', u'dead', u'heatwav'] [u'uzbek', u'refuge', u'head', u'australia'] [u'vail', u'announc', u'prawn', u'licenc'] [u'vanston', u'mull', u'visa', u'rule', u'appeal'] [u'vanston', u'consid', u'coupl', u'right', u'visa'] [u'govt', u'seek', u'nation', u'foreign', u'train', u'doctor'] [u'victori', u'dismiss', u'premiership', u'hop'] [u'virtual', u'cattl', u'grid', u'outsmart', u'cattl'] [u'vizard', u'ban', u'compani', u'directorship'] [u'vizard', u'fin'] [u'vizard', u'fin', u'ban', u'board'] [u'compani', u'fin', u'school', u'photo', u'scaffold'] [u'giant', u'admit', u'increas', u'mercuri', u'pollut'] [u'polic', u'backpack'] [u'crime', u'charg', u'worri', u'soldier'] [u'memori', u'thiev', u'outrag'] [u'tell', u'china', u'trade', u'opportun'] [u'zimbabw', u'say', u'shantytown', u'demolit', u'finish'] [u'catch', u'phone', u'drive'] [u'jobless', u'factori', u'close'] [u'academ', u'refus', u'retir', u'race'] [u'chang', u'promot', u'greener', u'mine'] [u'activist', u'pulp', u'campaign', u'hit', u'road'] [u'acupunctur', u'show', u'reliev', u'tension', u'headach'] [u'adelaid', u'mini', u'casino', u'provok', u'outcri'] [u'agassi', u'book', u'quarter', u'final', u'date', u'paradorn'] [u'back', u'ethanol', u'blend', u'fuel'] [u'gillett', u'farewel', u'funer'] [u'andren', u'say', u'telstra', u'gambl', u'commonwealth'] [u'anglican', u'church', u'face', u'financi', u'shake'] [u'asean', u'meet', u'strike', u'counter', u'terror', u'deal'] [u'asylum', u'seeker', u'leav', u'detent'] [u'athlet', u'chief', u'unveil', u'massiv', u'anti', u'dope', u'campaign'] [u'aussi', u'claim', u'schipper', u'rob', u'gold'] [u'aust', u'commit', u'land', u'clear'] [u'australian', u'teen', u'drug', u'traffic', u'case', u'adjourn'] [u'author', u'launch', u'investig', u'piggeri'] [u'award', u'recognis', u'child', u'hous', u'blaze', u'braveri'] [u'bowyer', u'hand', u'newcastl', u'lifelin'] [u'bathurst', u'livestock', u'sale', u'proceed', u'despit'] [u'bennett', u'faze', u'tough', u'lead', u'final'] [u'crowd', u'expect', u'townsvill'] [u'biker', u'plan', u'protect', u'child', u'abus', u'victim'] [u'bird', u'kill', u'vietnam'] [u'bodi', u'joelen', u'mill', u'identifi'] [u'bomb', u'victim', u'lay', u'rest', u'melbourn'] [u'bone', u'marrow', u'potenti', u'sourc', u'cell'] [u'budget', u'shed', u'light', u'cecil', u'plain'] [u'bulldog', u'brad', u'eye', u'premiership', u'ahead'] [u'busi', u'hear', u'older', u'worker', u'advantag'] [u'button', u'confid', u'remain'] [u'byron', u'top', u'nation', u'babi', u'boomer'] [u'canker', u'hear', u'tell', u'citrus', u'grower', u'fear', u'sue'] [u'crash', u'victim', u'death', u'stun', u'nurs'] [u'cat', u'final', u'hop', u'loss', u'bomber'] [u'chamber', u'rais', u'wondai', u'hospit', u'concern'] [u'chopper', u'inquest', u'tell', u'high', u'aero', u'medic', u'cost'] [u'church', u'meet', u'drought'] [u'citylink', u'remov', u'automat', u'fine'] [u'civoniceva', u'clear', u'canberra', u'clash'] [u'clemenc', u'seek', u'aussi', u'death'] [u'commission', u'highlight', u'gippsland', u'build'] [u'contractor', u'polic', u'station', u'brief'] [u'coral', u'genet', u'complex', u'human'] [u'council', u'chief', u'highlight', u'alcohol', u'manag'] [u'council', u'consid', u'draft', u'develop', u'plan'] [u'council', u'concili', u'hear'] [u'councillor', u'air', u'fluorid', u'fear'] [u'council', u'reaffirm', u'nuclear', u'wast', u'transport', u'stanc'] [u'council', u'art', u'centr', u'snub'] [u'counter', u'terror', u'expert', u'fault', u'strategi'] [u'court', u'halt', u'parti', u'elect'] [u'court', u'rule', u'crimin', u'charg', u'roofer', u'death'] [u'credit', u'figur', u'boost', u'expect', u'rat', u'hold'] [u'crisi', u'payment', u'releas', u'inmat', u'simplifi'] [u'crowd', u'gather', u'menageri', u'race'] [u'crown', u'seek', u'year', u'spread'] [u'currumbin', u'land', u'slip', u'victim', u'build', u'stop'] [u'criticis', u'perth', u'hostel', u'closur'] [u'drought', u'fund', u'run'] [u'defenc', u'justic', u'chang', u'immin'] [u'detent', u'centr', u'oper', u'maltreat'] [u'dinosaur', u'egg', u'babi', u'bear', u'helpless'] [u'disabl', u'group', u'meet', u'coff', u'harbour'] [u'discoveri', u'dock'] [u'downer', u'ham', u'asean', u'summit'] [u'downer', u'sign', u'asean', u'treati'] [u'resum', u'hostil', u'govt', u'ashbourn'] [u'draft', u'horticultur', u'code', u'worri'] [u'driver', u'accus', u'abus', u'polic', u'charg'] [u'elder', u'end', u'wool', u'process', u'australia'] [u'energex', u'work', u'improv', u'power', u'secur'] [u'famili', u'contact', u'scheme', u'open', u'offic'] [u'farmer', u'earn', u'prais', u'salin', u'fight'] [u'fatal', u'street', u'race', u'driver', u'send', u'youth', u'centr'] [u'fewer', u'fund', u'target', u'illeg', u'deer', u'hunt'] [u'figur', u'highlight', u'fardel', u'cost', u'campaign'] [u'societi', u'head', u'win', u'defam', u'case'] [u'probe', u'american', u'idol', u'claim'] [u'fund', u'seek', u'indigen', u'represent'] [u'fund', u'drug', u'rehab', u'scheme'] [u'gallop', u'discuss', u'esper', u'issu'] [u'gasnier', u'trick', u'propel', u'dragon', u'victori'] [u'gather', u'focus', u'boat', u'safeti'] [u'genit', u'wart', u'vaccin', u'trial', u'begin'] [u'giant', u'squid', u'secret', u'reveal'] [u'giant', u'squid', u'spill', u'cannib', u'secret'] [u'gladston', u'council', u'set', u'road', u'prioriti'] [u'goulburn', u'valley', u'polic', u'raid', u'net', u'drug'] [u'governor', u'seek', u'region', u'mental', u'health', u'boost'] [u'govt', u'fund', u'children', u'program', u'palmerston', u'tiwi'] [u'govt', u'help', u'fund', u'cenotaph', u'vandal', u'clean'] [u'govt', u'releas', u'aquacultur', u'protect', u'plan'] [u'govt', u'urg', u'open', u'maryborough', u'patholog'] [u'greenpeac', u'protest', u'spark', u'secur', u'fear'] [u'har', u'race', u'shake', u'begin'] [u'hazelwood', u'replac'] [u'health', u'fund', u'increas', u'mean', u'servic', u'cut'] [u'health', u'minist', u'pressur', u'doctor', u'shortag'] [u'hensbi', u'omalley', u'content', u'sweden'] [u'hervey', u'interst', u'flight'] [u'high', u'tech', u'exhibit', u'stir', u'passion'] [u'hobart', u'wharf', u'spill', u'inquiri', u'continu'] [u'husband', u'charg', u'wife', u'slay'] [u'iemma', u'avoid', u'specul', u'parti', u'support'] [u'india', u'prim', u'seri', u'say', u'chappel'] [u'indigen', u'communiti', u'get', u'green', u'facelift'] [u'indigen', u'leader', u'welcom', u'bank', u'program'] [u'injuri', u'blow', u'lion', u'akermani', u'rule'] [u'insur', u'premium', u'rise', u'disast', u'increas'] [u'island', u'excis', u'mean', u'tricki'] [u'jone', u'disappoint', u'cannib', u'questionnair', u'leak'] [u'justic', u'dept', u'chief', u'retir', u'public', u'servic'] [u'kalbarri', u'blackout', u'predict', u'continu'] [u'katherin', u'split', u'nuclear', u'dump', u'site'] [u'killer', u'appeal', u'failur', u'pleas', u'victim', u'famili'] [u'lachlan', u'murdoch', u'quit', u'news', u'job'] [u'lennon', u'lyric', u'sheet', u'fetch'] [u'lismor', u'warn', u'flood', u'wari'] [u'london', u'bomb', u'mastermind', u'hold', u'africa', u'report'] [u'london', u'edgwar', u'road', u'underground', u'reopen'] [u'jail', u'indec', u'assault', u'boy'] [u'market', u'put', u'loss'] [u'martin', u'declar', u'alic', u'success'] [u'martin', u'open', u'chang', u'uranium', u'mine', u'polici'] [u'mcdonald', u'franchise', u'back', u'clearer', u'food', u'label'] [u'mcgrath', u'gilli', u'warn', u'rest', u'tour', u'match'] [u'meet', u'highlight', u'fluorid', u'opposit'] [u'minist', u'challeng', u'controversi', u'school'] [u'minist', u'warn', u'chang', u'small', u'busi'] [u'mix', u'view', u'air', u'dive', u'wreck', u'benefit'] [u'monsoon', u'death', u'india'] [u'confid', u'coal', u'market'] [u'morri', u'question', u'offens', u'remark'] [u'mother', u'award', u'damag', u'son', u'death', u'custodi'] [u'mourner', u'rememb', u'gillett'] [u'want', u'men', u'club', u'boycott'] [u'want', u'telstra', u'debat', u'focus', u'servic', u'woe'] [u'nation', u'face', u'challeng', u'prove', u'align'] [u'nation', u'fear', u'green', u'levi', u'blow'] [u'nation', u'plan', u'barwon', u'candid', u'timet'] [u'nation', u'debat', u'bottl', u'shop', u'impact'] [u'fenc', u'improv', u'prison', u'farm', u'secur'] [u'group', u'mildura', u'indoor', u'pool'] [u'leader', u'pay', u'tribut', u'carr', u'sculli'] [u'vizard', u'charg', u'possibl', u'costello', u'say'] [u'decis', u'traralgon', u'express', u'train'] [u'mroe', u'children', u'detent'] [u'noroc', u'chief', u'call', u'split', u'dual', u'carriageway'] [u'time', u'wast', u'toad', u'fight', u'frogwatch'] [u'notori', u'paedophil', u'deport', u'england'] [u'leadership', u'race', u'narrow'] [u'govt', u'tip', u'challeng', u'nativ', u'titl', u'decis'] [u'nude', u'rider', u'fin'] [u'opposit', u'want', u'minist', u'question', u'cabinet'] [u'phelp', u'stick', u'freestyl', u'despit', u'poor', u'result'] [u'pietersen', u'fire', u'line'] [u'disappoint', u'vizard'] [u'polic', u'charg', u'norwegian', u'nation', u'fatal'] [u'polic', u'chief', u'condemn', u'stun', u'london', u'bomb'] [u'polic', u'give', u'year', u'prepar', u'drug', u'case'] [u'polic', u'highlight', u'need', u'reunit', u'child', u'mother'] [u'polic', u'investig', u'attempt', u'child', u'abduct'] [u'polic', u'launch', u'raid', u'west', u'london'] [u'polic', u'arrest', u'drug'] [u'polic', u'offic', u'bash', u'melbourn'] [u'polic', u'question', u'offic', u'bash'] [u'polic', u'raid', u'offic', u'home', u'drug', u'blitz'] [u'polic', u'farewel', u'offic', u'kill', u'road', u'crash'] [u'polic', u'volunt', u'prepar', u'rescu', u'exercis'] [u'poll', u'labour'] [u'popul', u'report', u'puzzl', u'cunderdin', u'shire', u'chief'] [u'primus', u'expect', u'play', u'kangaroo'] [u'public', u'urg', u'youth', u'support', u'scheme'] [u'public', u'warn', u'whoop', u'cough', u'rise'] [u'nation', u'renew', u'call', u'coalit'] [u'refshaug', u'reassur', u'deputi', u'role'] [u'report', u'dispel', u'health', u'payout', u'myth'] [u'report', u'highlight', u'age', u'care', u'industri'] [u'rescu', u'plan', u'form', u'meatwork'] [u'rescuer', u'free', u'trap', u'whale'] [u'research', u'track', u'travel', u'rare', u'fli'] [u'resid', u'fight', u'communiti'] [u'revamp', u'improv', u'fresco', u'lifestyl'] [u'rooney', u'win', u'backstrok', u'gold'] [u'rwanda', u'free', u'thousand', u'genocid', u'suspect'] [u'scanner', u'help', u'museum', u'creat', u'exhibit'] [u'school', u'volunt', u'stay', u'tap', u'controversi'] [u'scientist', u'push', u'uptak', u'crop'] [u'sculli', u'make', u'premier', u'iemma'] [u'eagl', u'slap', u'hoppa', u'report'] [u'senat', u'mackay', u'resign', u'post'] [u'seven', u'citi', u'bid', u'winter', u'olymp'] [u'shire', u'sack', u'sustain', u'plan', u'director'] [u'smoke', u'tip', u'disappear'] [u'solomon', u'warn', u'drink', u'water', u'contamin'] [u'south', u'african', u'striker', u'clash', u'polic'] [u'speed', u'reduct', u'help', u'lower', u'great', u'ocean'] [u'springborg', u'renew', u'liber', u'partnership', u'talk'] [u'star', u'turn', u'hall', u'creek', u'rodeo'] [u'stretch', u'health', u'blame', u'psychiatrist'] [u'studi', u'confirm', u'drug', u'cocktail', u'fight', u'aid'] [u'studi', u'show', u'declin', u'fish', u'hotspot'] [u'suicid', u'bomber', u'kill', u'northern', u'iraq'] [u'summit', u'address', u'futur', u'farm'] [u'sydney', u'shoot', u'victim', u'die'] [u'sydney', u'mooloolaba', u'race', u'lose', u'stand'] [u'tasmanian', u'devil', u'threaten', u'speci', u'scientist'] [u'telstra', u'chief', u'go', u'bush'] [u'territorian', u'overwhelm', u'dump', u'martin'] [u'tiger', u'seven', u'surpris', u'leader', u'michigan'] [u'timber', u'industri', u'mini', u'port', u'plan', u'moot'] [u'off', u'lead', u'drug', u'raid', u'arrest'] [u'townsvill', u'inner', u'citi', u'violenc', u'wan'] [u'cancel', u'controversi', u'academ', u'class'] [u'union', u'fail', u'interim', u'halt'] [u'union', u'stand', u'firm', u'teacher', u'aid'] [u'union', u'crack', u'anti', u'log', u'protest'] [u'uranium', u'miner', u'stumbl', u'miner', u'deposit'] [u'vail', u'float', u'telstra', u'plan'] [u'vail', u'outlin', u'condit', u'telstra', u'sale'] [u'vail', u'stand', u'telstra', u'fund', u'cost'] [u'vanguard', u'skipper', u'beat', u'sydney', u'gold', u'coast'] [u'vanston', u'announc', u'detent', u'facil'] [u'video', u'game', u'ban', u'scene'] [u'vizard', u'everybodi'] [u'vizard', u'public', u'hamper', u'futur', u'trial'] [u'wallabi', u'feel', u'heat'] [u'reveal', u'christma', u'trade', u'hour'] [u'whale', u'watch', u'season', u'greater', u'signific'] [u'windsor', u'urg', u'govt', u'abandon', u'telstra', u'sale', u'plan'] [u'woman', u'hospit', u'hous', u'blaze'] [u'wool', u'innov', u'develop', u'program', u'cost'] [u'workshop', u'help', u'councillor'] [u'yass', u'farmer', u'hope', u'warmer', u'weather'] [u'labor', u'gather', u'annual', u'confer'] [u'adelaid', u'newcastl', u'fight', u'preseason', u'draw'] [u'say', u'act', u'submarin', u'problem'] [u'afghan', u'blast', u'wound'] [u'agassi', u'hold', u'paradorn', u'book', u'semi', u'final', u'place'] [u'qaeda', u'iraq', u'say', u'attack', u'kill'] [u'anger', u'detent', u'centr', u'plan'] [u'annual', u'rubbish', u'survey', u'worst', u'marin'] [u'arctic', u'depth', u'teem', u'life'] [u'armstrong', u'lose', u'court', u'joust', u'british', u'newspap'] [u'astronaut', u'prepar', u'discoveri', u'spacewalk'] [u'astronaut', u'step', u'spacewalk'] [u'aussi', u'coach', u'continu', u'press', u'video', u'replay'] [u'aussi', u'palmer', u'beat', u'squash', u'final'] [u'black', u'hawk'] [u'black', u'hawk', u'southern', u'migrat'] [u'booklet', u'aim', u'boost', u'indign', u'learn'] [u'boomer', u'lose', u'shorten', u'match'] [u'british', u'dismantl', u'secur', u'post', u'amid', u'shutdown'] [u'bronco', u'canberra', u'challeng'] [u'bruce', u'scott', u'take', u'rein', u'nation'] [u'bulldog', u'upset', u'lion'] [u'businessman', u'hold', u'polic', u'raid'] [u'elect', u'campaign', u'kick'] [u'elect', u'candid', u'begin', u'canvass', u'punter'] [u'elect', u'quinn', u'prioriti'] [u'cemeteri', u'camper', u'stake', u'claim', u'afterlif'] [u'collingwood', u'press', u'ash', u'case'] [u'conserv', u'senat', u'leader', u'back', u'stem', u'cell'] [u'contend', u'weigh', u'option', u'shock', u'senat', u'vacanc'] [u'convict', u'paedophil', u'arriv'] [u'crow', u'hold', u'swan'] [u'crow', u'hold', u'swan'] [u'detaine', u'releas', u'christma', u'island'] [u'detent', u'centr', u'oper'] [u'diaz', u'win', u'damag', u'snog', u'claim'] [u'discoveri', u'crew', u'scan', u'damag'] [u'eagl', u'return', u'winner', u'list'] [u'editor', u'propos', u'rat', u'game'] [u'easi', u'injuri', u'end', u'season'] [u'england', u'spin', u'hope', u'lazi', u'jenner'] [u'famili', u'remain', u'iemma', u'number', u'prioriti'] [u'fiji', u'play', u'pride', u'world', u'qualifi'] [u'caus', u'damag'] [u'discoveri', u'spacewalk', u'delay'] [u'candid', u'warn', u'islam', u'school'] [u'friend', u'tribut', u'brazilian', u'shoot', u'london'] [u'govt', u'demonis', u'blame', u'detaine'] [u'henri', u'claim', u'second', u'world', u'gold'] [u'high', u'price', u'stock'] [u'high', u'school', u'refus', u'enrol', u'gift', u'year'] [u'hobart', u'seek', u'passion', u'loudmouth'] [u'iemma', u'tight', u'lip', u'direct'] [u'immigr', u'mistreat', u'enrag', u'vanston'] [u'chang', u'labor', u'greatest', u'threat', u'stanhop'] [u'loss', u'tout', u'amid', u'cater', u'liquid'] [u'johnson', u'lead', u'bulldog', u'victori'] [u'john', u'star', u'knight', u'stun', u'storm'] [u'john', u'career', u'newcastl'] [u'kestrel', u'squeez', u'past', u'oriol'] [u'kidnap', u'australian', u'worker', u'free', u'gaza'] [u'labor', u'back', u'plan', u'reloc', u'black', u'hawk'] [u'lawyer', u'critic', u'paedophil', u'deport'] [u'leisel', u'demolish', u'world', u'record'] [u'lethal', u'leisel', u'seek', u'second', u'titl'] [u'lethal', u'seek', u'second', u'titl'] [u'london', u'bomb', u'suspect', u'face', u'grill'] [u'london', u'bomb', u'suspect', u'arrest'] [u'london', u'polic', u'confirm', u'arrest', u'raid'] [u'attack', u'saddam', u'court'] [u'kill', u'hous'] [u'manu', u'face', u'court', u'traffic', u'offenc', u'bail', u'breach'] [u'massiv', u'clean', u'indian', u'flood'] [u'mcdonald', u'chief', u'visit', u'tasmania'] [u'call', u'melbourn', u'cleric', u'leav', u'australia'] [u'planet', u'solar'] [u'news', u'farewel', u'lachlan', u'murdoch'] [u'wait', u'cane', u'toad', u'fund'] [u'urg', u'expat', u'vote', u'general', u'elect'] [u'panther', u'ralli', u'warrior'] [u'peac', u'memori', u'complet', u'hiroshima'] [u'pilot', u'charg', u'murder', u'prosecutor'] [u'polic', u'investig', u'inhuman', u'treatment', u'detaine'] [u'polic', u'probe', u'attempt', u'abduct'] [u'polic', u'probe', u'fake', u'money', u'order'] [u'polic', u'quiz', u'london', u'bomb', u'suspect'] [u'prison', u'chief', u'retir', u'intensifi'] [u'detent', u'centr', u'land', u'investig', u'say', u'beatti'] [u'raikkonen', u'fight', u'hungari'] [u'real', u'madrid', u'santo', u'reach', u'deal', u'robinho'] [u'report', u'find', u'detaine', u'treat', u'inhuman'] [u'resid', u'leav', u'detent', u'decis'] [u'resort', u'plan', u'recycl', u'water', u'snow'] [u'review', u'find', u'pill', u'increas', u'cancer', u'risk'] [u'romania', u'heatwav', u'kill', u'hundr', u'hospit'] [u'russia', u'outrag', u'chechen', u'rebel', u'interview'] [u'sack', u'docker', u'coach', u'award', u'damag'] [u'saint', u'send', u'demon', u'pack'] [u'schumach', u'secur', u'hungarian', u'pole'] [u'senat', u'wonder', u'dump', u'review'] [u'servic', u'fail', u'region', u'cancer', u'survivor'] [u'hurt', u'disney', u'park', u'crash'] [u'sleep', u'woman', u'darwin'] [u'socceroo', u'captain', u'moor', u'join', u'newcastl'] [u'spacewalk', u'begin'] [u'springbok', u'favourit', u'nation', u'kick'] [u'suicid', u'bomber', u'kill'] [u'swan', u'crow', u'prepar', u'adelaid', u'blockbust'] [u'swift', u'eas', u'past', u'firebird'] [u'sydney', u'away', u'liverpool', u'match'] [u'tasmania', u'defend', u'devil', u'protect', u'effort'] [u'tasmanian', u'orchestra', u'nab', u'market', u'award'] [u'thousand', u'mourn', u'brazilian', u'shoot', u'polic'] [u'thousand', u'predict', u'famin', u'grip', u'niger'] [u'toll', u'iraq', u'bomb', u'climb'] [u'toyota', u'fuel', u'cell', u'ventur', u'report'] [u'traffic', u'safeti', u'campaign', u'net', u'drink', u'drive'] [u'briton', u'kill', u'iraq'] [u'hospitalis', u'gyrocopt', u'crash'] [u'hurt', u'gyrocopt', u'crash'] [u'begin', u'food', u'airlift', u'niger'] [u'donat', u'need', u'equip'] [u'waterhous', u'fin', u'hors', u'cocain', u'test'] [u'win', u'arsenal', u'porto', u'amsterdam', u'tournament'] [u'wit', u'seek', u'fatal', u'crash', u'investig'] [u'wood', u'chase', u'singh', u'cours', u'record', u'tie'] [u'work', u'dog', u'round', u'cattl', u'trial', u'honour'] [u'worksaf', u'concern', u'road', u'transport', u'practic'] [u'young', u'tell', u'need', u'fresh', u'idea'] [u'injur', u'armi', u'exercis'] [u'accc', u'boss', u'defend', u'watchdog', u'refocus'] [u'agassi', u'reach', u'final'] [u'reach', u'niger', u'hungri'] [u'alexand', u'downer', u'say', u'partnership', u'clean'] [u'tasmanian', u'worri', u'sick'] [u'armi', u'accid', u'injur'] [u'astronaut', u'finish', u'hour', u'spacewalk'] [u'chief', u'defend', u'vizard', u'outcom'] [u'blue', u'break', u'drought', u'impress'] [u'bomb', u'kill', u'brit', u'iraq'] [u'boomer', u'lose', u'china'] [u'brogden', u'back', u'possibl', u'vendor', u'duti', u'abolit'] [u'brother', u'london', u'bomb', u'suspect', u'arrest'] [u'bomb', u'kill', u'iraq'] [u'carr', u'back', u'premiership', u'successor'] [u'carr', u'bow', u'offici', u'function'] [u'carr', u'hand', u'agenda', u'victori', u'union'] [u'celt', u'motherwel', u'share', u'spoil', u'goal'] [u'child', u'driveway'] [u'chilean', u'woman', u'pursu', u'presid'] [u'cowboy', u'edg', u'eagl', u'thriller'] [u'deport', u'paedophil', u'arriv', u'britain'] [u'discoveri', u'crew', u'move', u'tonn', u'cargo'] [u'docker', u'spoil', u'buckley', u'celebr'] [u'downer', u'open', u'asean', u'join', u'climat', u'pact'] [u'driver', u'ignor', u'mobil', u'phone'] [u'england', u'unchang', u'second', u'test'] [u'famili', u'centr', u'announc', u'bring', u'angri', u'dad'] [u'festiv', u'reveal', u'interact', u'game'] [u'fighter', u'jet', u'simul', u'warfar', u'darwin'] [u'fiji', u'samoa', u'fall', u'short', u'requir', u'target'] [u'govt', u'urg', u'address', u'stagnat', u'canberra'] [u'govt', u'urg', u'mobil', u'phone', u'tower', u'near', u'school'] [u'grain', u'crop', u'soak', u'favour', u'weather'] [u'grandstand', u'interview'] [u'hackett', u'best', u'qualifi'] [u'home', u'offic', u'minist', u'meet', u'muslim', u'leader'] [u'india', u'rain', u'death', u'toll', u'near'] [u'indigen', u'rat', u'buck', u'trend', u'studi'] [u'injur', u'jayasuriya', u'guid', u'lanka', u'victori'] [u'investig', u'kayak', u'bodi'] [u'iran', u'set', u'nuclear', u'offer', u'deadlin'] [u'abus', u'domest', u'violenc', u'link'] [u'itali', u'raid', u'home', u'bomb', u'case'] [u'kookaburra', u'gear', u'game'] [u'lebanes', u'meet', u'syria', u'assad'] [u'lebanon', u'win', u'confid', u'vote'] [u'lightsabr', u'reap', u'auction'] [u'london', u'bomb', u'suspect', u'fight', u'extradit'] [u'incom', u'home', u'ownership', u'scheme', u'consid'] [u'macgil', u'interview'] [u'maintain', u'uniti', u'sydney', u'muslim', u'tell'] [u'die', u'victorian', u'skydiv', u'accid'] [u'face', u'fine', u'kakadu', u'bodi'] [u'mcgrath', u'delay', u'worcestershir', u'return'] [u'medico', u'divid', u'rural', u'colleg', u'plan'] [u'miatk', u'strike', u'gold', u'canada'] [u'miss', u'kayak', u'bodi'] [u'rain', u'add', u'mumbai', u'miseri'] [u'motorcyclist', u'kill', u'road', u'smash'] [u'nation', u'readi', u'play', u'hard', u'ball', u'sale'] [u'nation', u'spell', u'telstra', u'sale', u'term'] [u'centr', u'target', u'famili', u'breakdown'] [u'dive', u'site', u'creat'] [u'shuttl', u'launch', u'come', u'year'] [u'rush', u'sign', u'nation', u'train', u'agreement'] [u'launch', u'elect', u'campaign'] [u'opposit', u'urg', u'cockburn', u'beach', u'closur'] [u'pakistan', u'say', u'hold', u'wake', u'london', u'bomb'] [u'parent', u'ignor', u'childhood', u'obes', u'research'] [u'polic', u'deni', u'crash', u'follow', u'high', u'speed', u'pursuit'] [u'polic', u'honour', u'offic', u'kill', u'motorcycl', u'accid'] [u'policeman', u'say', u'limit', u'high'] [u'polic', u'mull', u'charg', u'sleep', u'woman', u'death'] [u'polic', u'arrest', u'like', u'london', u'bomb'] [u'powel', u'helsinki'] [u'probe', u'launch', u'gyrocopt', u'crash'] [u'veto', u'detent', u'centr', u'mayor', u'say'] [u'govt', u'local', u'council', u'criticis', u'detent', u'centr'] [u'labor', u'leav', u'polit'] [u'nation', u'mull', u'telstra', u'sale', u'condit'] [u'quak', u'rattl', u'indonesia', u'aceh'] [u'rabbitoh', u'upset', u'bulldog'] [u'refuge', u'group', u'push', u'royal', u'commiss'] [u'report', u'confirm', u'rise', u'fund', u'pressur', u'ngos'] [u'rescuer', u'resum', u'search', u'miss'] [u'roar', u'knight'] [u'rooney', u'rais', u'roof', u'unit', u'finish', u'asian', u'tour'] [u'roo', u'steal', u'thrill', u'victori'] [u'rudd', u'urg', u'china', u'soft', u'loan', u'zimbabw'] [u'scott', u'rue', u'shorten', u'cours', u'despit', u'card'] [u'self', u'defenc', u'place', u'despit', u'asean', u'sign', u'downer'] [u'shuttl', u'spend', u'extra'] [u'singh', u'duel', u'wood'] [u'springbok', u'come', u'toppl', u'wallabi'] [u'sydney', u'landown', u'ralli', u'blueprint'] [u'talk', u'cheap', u'macgil', u'tell', u'england'] [u'tasmania', u'claim', u'popular', u'resurg'] [u'teacher', u'tell', u'boycott', u'unwork', u'report', u'card'] [u'teen', u'charg', u'man', u'murder'] [u'telstra', u'sale', u'condit'] [u'thousand', u'mark', u'nation', u'tree'] [u'thousand', u'watch', u'navi', u'ship', u'scuttl'] [u'tiger', u'sink', u'shark'] [u'timet', u'chang', u'train', u'driver'] [u'debat', u'duke', u'tasmania'] [u'tornado', u'kill', u'china'] [u'suspect', u'caus', u'fatal'] [u'question', u'alleg', u'abduct'] [u'teen', u'kill', u'racist', u'attack'] [u'deni', u'report', u'saddam', u'attack'] [u'uzbekistan', u'evict', u'base'] [u'view', u'coach'] [u'waterhous', u'mull', u'drug', u'fine', u'appeal'] [u'zambia', u'confirm', u'arrest', u'london', u'bomb', u'suspect'] [u'zambia', u'hand', u'london', u'bomb', u'suspect'] [u'sayyaf', u'bomb', u'suspect', u'arrest', u'philippin'] [u'academ', u'involv', u'race', u'allow', u'campus'] [u'academ', u'predict', u'maywald'] [u'consid', u'calvari', u'hospit', u'control'] [u'agassi', u'seal', u'career', u'titl'] [u'analyst', u'hit', u'vail', u'propos', u'telstra', u'fund'] [u'rfds', u'plane', u'fli', u'townsvill'] [u'apolog', u'seek', u'arrest', u'aborigin', u'council'] [u'arroyo', u'claim', u'wit', u'pay', u'testifi'] [u'assault', u'prompt', u'polic', u'safeti', u'warn'] [u'astronaut', u'begin', u'second', u'spacewalk'] [u'atkin', u'diet', u'compani', u'file', u'bankruptci'] [u'aussi', u'cricket', u'tribut', u'birthday', u'brown'] [u'aussi', u'davi', u'finish', u'cyclass'] [u'australian', u'doctor', u'arrest', u'uganda', u'wife'] [u'bank', u'holiday', u'quieten', u'market', u'activ'] [u'beazley', u'attack', u'telstra', u'sale', u'slush', u'fund'] [u'hillsong', u'phenomenon'] [u'belyando', u'council', u'deliv', u'rate', u'rise'] [u'bendigo', u'experi', u'tourism', u'boost'] [u'crowd', u'expect', u'flock', u'sheepvent'] [u'crowd', u'meet', u'citi', u'strategi'] [u'blair', u'plan', u'clean', u'break', u'polit', u'report'] [u'boomer', u'finish', u'china'] [u'bounti', u'hackett'] [u'break', u'hill', u'act', u'stop', u'councillor', u'critic'] [u'bulldog', u'focus', u'say', u'ead'] [u'cancer', u'institut', u'play', u'birth', u'control', u'pill'] [u'canegrow', u'examin', u'deal', u'complianc'] [u'cash', u'tabl', u'fergi', u'ponder', u'owen'] [u'chamber', u'back', u'vest'] [u'chelsea', u'milan', u'tour', u'draw'] [u'chopper', u'paramed', u'retriev'] [u'church', u'unabl', u'confirm', u'papal', u'visit', u'rumour'] [u'clijster', u'beat', u'exhaust', u'venus', u'stanford'] [u'communic', u'breakdown', u'muddi', u'territori', u'nuclear'] [u'contain', u'offer', u'temporari', u'hous', u'solut'] [u'corbi', u'legal', u'team', u'frustrat', u'ellison'] [u'coria', u'defeat', u'moya', u'umag', u'titl'] [u'cotton', u'grower', u'seek', u'compo', u'trade', u'loss'] [u'cotton', u'industri', u'show', u'sign', u'reviv'] [u'council', u'group', u'meet', u'transport', u'need'] [u'councillor', u'highlight', u'phone', u'woe'] [u'council', u'plan', u'focus', u'sustain'] [u'council', u'seek', u'long', u'term', u'deakin', u'plan'] [u'council', u'benefit', u'airport', u'revamp'] [u'council', u'urg', u'plan', u'better', u'chang'] [u'council', u'consid', u'hous', u'rezon'] [u'council', u'final', u'plan', u'polic', u'station'] [u'council', u'wari', u'worker', u'protect', u'charter'] [u'cowboy', u'boost', u'william', u'brillianc'] [u'crocodil', u'smile', u'return', u'landslip'] [u'cross', u'cite', u'match', u'review', u'committe'] [u'curfew', u'consid', u'penguin', u'attack'] [u'dairi', u'compani', u'organ', u'claim', u'investig'] [u'debat', u'begin', u'identif', u'scheme', u'cost'] [u'discoveri', u'command', u'surpris', u'launch', u'problem'] [u'doc', u'involv', u'bathurst', u'famili', u'babi'] [u'doctor', u'tell', u'inquiri', u'hide', u'patient', u'patel'] [u'dog', u'kill', u'penguin', u'popular', u'rookeri'] [u'dorset', u'mayor', u'air', u'sawmil', u'job', u'fear'] [u'dragon', u'mourn', u'death', u'club', u'legend'] [u'dravid', u'guid', u'india', u'victori', u'west', u'indi'] [u'drought', u'take', u'toll', u'milk', u'suppli'] [u'walk', u'away', u'light', u'plane', u'belli', u'land'] [u'email', u'confirm', u'hick', u'wont', u'fair', u'trial', u'lawyer'] [u'england', u'open', u'warn', u'waugh'] [u'baggag', u'handler', u'face', u'second', u'terror', u'charg'] [u'extend', u'backpack', u'stay', u'unlik'] [u'fail', u'drug', u'compani', u'boss', u'ban'] [u'falun', u'gong', u'drop', u'action', u'keelti'] [u'fardel', u'ask', u'iemma', u'region', u'project', u'guarante'] [u'farmer', u'defend', u'environment', u'asset'] [u'farmer', u'clearer', u'food', u'label'] [u'discrep', u'cost', u'nannup', u'tourism', u'dollar'] [u'figo', u'snub', u'liverpool', u'inter', u'report'] [u'film', u'maker', u'highlight', u'need', u'local', u'expert'] [u'fisher', u'lament', u'fall', u'carp', u'number'] [u'forest', u'worker', u'bodi'] [u'prosecutor', u'slam', u'guantanamo', u'commiss'] [u'fund', u'renew', u'road', u'safeti', u'task', u'forc'] [u'gippsland', u'taxi', u'join', u'convoy', u'protest'] [u'glenormiston', u'campus', u'decis', u'loom'] [u'govern', u'announc', u'tent', u'embassi', u'rethink'] [u'govt', u'stand', u'militari', u'tribun'] [u'govt', u'urg', u'focus', u'develop', u'ethanol'] [u'govt', u'urg', u'rethink', u'hors', u'unit'] [u'govt', u'wari', u'claim', u'lade', u'financ', u'bomb'] [u'green', u'accus', u'carr', u'drag', u'feet', u'super'] [u'gruell', u'calendar', u'leav', u'swimmer', u'home'] [u'guantanamo', u'claim', u'pursu', u'prove'] [u'gyrocopt', u'crash', u'wont', u'deter', u'pilot'] [u'hackett', u'class', u'perkin'] [u'hackett', u'set', u'world', u'victori'] [u'hackett', u'soak', u'gold', u'medal', u'win'] [u'health', u'servic', u'play', u'fluorid', u'concern'] [u'higher', u'price', u'affect', u'ravensthorp', u'road'] [u'hughenden', u'council', u'help', u'local', u'govt', u'inclin'] [u'india', u'look', u'aust', u'commod', u'boost'] [u'indigen', u'group', u'seek', u'tradit', u'right', u'extens'] [u'indigen', u'team', u'centuri', u'name'] [u'indonesia', u'name', u'timor', u'commiss', u'member'] [u'industri', u'urg', u'safer', u'adventur'] [u'injur', u'cyclist', u'arriv', u'home', u'germani'] [u'injur', u'rider', u'memori', u'german', u'crash'] [u'inquest', u'tell', u'detail', u'palm', u'island', u'man', u'arrest'] [u'iraq', u'cours', u'unveil', u'constitut'] [u'maxwel', u'speak', u'matthew', u'hayden'] [u'maxwel', u'wrap', u'tour', u'match'] [u'korp', u'write', u'die', u'wife'] [u'kaiser', u'put', u'hand', u'labor', u'vacanc'] [u'korp', u'pay', u'psychic', u'protect', u'court', u'hear'] [u'land', u'council', u'want', u'rubibi', u'claim', u'resolut'] [u'launceston', u'council', u'move', u'credit', u'union'] [u'lawsuit', u'detail', u'emerg', u'iraq', u'intellig'] [u'lawyer', u'want', u'nurs', u'inquiri'] [u'leak', u'email', u'claim', u'guantanamo', u'trial', u'rig'] [u'legal', u'centr', u'meet', u'focus', u'welfar', u'chang'] [u'lion', u'injuri', u'list', u'continu', u'grow'] [u'liverpool', u'celtic', u'face', u'contrast', u'euro', u'mission'] [u'ljungberg', u'doubl', u'give', u'arsenal', u'victori', u'amsterdam'] [u'local', u'tell', u'feder', u'govt', u'basic'] [u'macdougal', u'sign', u'rabbitoh'] [u'malaysia', u'passeng', u'plane', u'land', u'safe', u'perth'] [u'charg', u'capsicum', u'spray', u'incid'] [u'die', u'highway', u'crash'] [u'face', u'court', u'drug', u'smuggl', u'charg'] [u'plead', u'guilti', u'manslaught', u'chatroom'] [u'manufactur', u'sector', u'remain', u'flat'] [u'maverick', u'face', u'grand', u'final', u'chanc'] [u'mayor', u'see', u'opportun', u'council', u'work', u'practic'] [u'mayor', u'lobbi', u'costello', u'telstra', u'sale'] [u'mayor', u'welcom', u'hospit', u'rethink'] [u'mcdonald', u'offer', u'vegi', u'grower', u'late'] [u'median', u'hous', u'price', u'rise'] [u'boss', u'refus', u'bail', u'drug', u'charg'] [u'minist', u'back', u'polic', u'hand'] [u'minist', u'promis', u'action', u'hous', u'shortag'] [u'miss', u'person', u'week', u'target', u'prevent'] [u'modest', u'homecom', u'poker', u'champ'] [u'mercuri', u'remov', u'hamilton', u'board', u'hous'] [u'truck', u'creat', u'west', u'road', u'concern'] [u'demand', u'answer', u'mental', u'health', u'claim'] [u'play', u'impact', u'black', u'hawk', u'squadron'] [u'men', u'club', u'boycott'] [u'worri', u'higher', u'firefight', u'levi', u'impact'] [u'mugab', u'return', u'china', u'bail', u'deal'] [u'murray', u'hail', u'williamss', u'brillianc'] [u'mysteri', u'skin', u'escap'] [u'rogu', u'trader', u'face', u'court'] [u'nasa', u'consid', u'shuttl', u'heat', u'shield', u'repair'] [u'nation', u'citrus', u'canker', u'compens'] [u'nation', u'divis', u'cruis', u'ship', u'termin'] [u'neighbour', u'council', u'bore', u'access'] [u'group', u'lobbi', u'jack', u'jumper', u'sting', u'vaccin'] [u'news', u'launch', u'real', u'estat', u'websit'] [u'campaign', u'target', u'senat'] [u'embassi', u'bomb', u'claim', u'say', u'ruddock'] [u'seek', u'clarif', u'minist', u'illeg'] [u'nude', u'rocker', u'caus', u'music', u'show', u'cancel'] [u'oliv', u'tree', u'leav', u'high', u'anti', u'oxid', u'studi'] [u'opposit', u'urg', u'action', u'organ', u'wast'] [u'orthopaed', u'surgeon', u'stay', u'year'] [u'overfish', u'blame', u'albatross', u'race', u'death'] [u'ozjet', u'canberra', u'flight', u'delay'] [u'pair', u'court', u'club', u'assault'] [u'monitor', u'school', u'staff', u'level'] [u'parachut', u'bodi', u'defend', u'nagambi'] [u'pearl', u'compani', u'prepar', u'fraser', u'harvest'] [u'pearl', u'oyster', u'farm', u'propon', u'beat', u'plan'] [u'perth', u'record', u'driest', u'juli', u'year'] [u'perth', u'teen', u'english', u'channel'] [u'turtl', u'trek', u'quest', u'love', u'owner', u'say'] [u'philippin', u'fishermen', u'save', u'wound', u'whale', u'report'] [u'plane', u'crash', u'probe', u'week'] [u'urg', u'admit', u'rais', u'terror', u'risk'] [u'polic', u'chief', u'lobbi', u'iemma', u'anti', u'terror', u'power'] [u'polic', u'confirm', u'sister', u'kill', u'highway', u'crash'] [u'polic', u'terrorist', u'report'] [u'polic', u'want', u'anti', u'terror', u'power'] [u'port', u'augusta', u'council', u'visit', u'land'] [u'powel', u'world', u'championship'] [u'public', u'urg', u'help', u'knife', u'bandit'] [u'qanta', u'deni', u'plan', u'cut', u'counter', u'fuel'] [u'race', u'club', u'look', u'host', u'event'] [u'racist', u'academ', u'allow', u'teach', u'nelson'] [u'racist', u'academ', u'defi', u'univers'] [u'ranger', u'win', u'start'] [u'rape', u'victim', u'mother', u'urg', u'speak'] [u'real', u'brazilian', u'spark', u'owen', u'transfer', u'specul'] [u'report', u'recommend', u'tasmania', u'pursu', u'food'] [u'riot', u'break', u'vice', u'presid', u'death'] [u'road', u'death', u'claim', u'live', u'south', u'east'] [u'rspca', u'unhappi', u'goat', u'kill', u'sentenc'] [u'ruddock', u'deni', u'motiv', u'embassi', u'bomber'] [u'sack', u'worker', u'victim', u'individu', u'contract', u'union'] [u'sailor', u'like', u'sidelin', u'knee', u'injuri'] [u'nation', u'demand', u'tougher', u'telstra', u'sale'] [u'saudi', u'king', u'fahd', u'die'] [u'sculli', u'retain', u'polic', u'portfolio'] [u'second', u'arrest', u'attack'] [u'settlement', u'reach', u'chairlift', u'collaps'] [u'shark', u'deni', u'player', u'rift'] [u'singh', u'hold', u'late', u'wood', u'charg', u'retain', u'buick'] [u'slow', u'wicket', u'help', u'australia', u'say', u'hayden'] [u'smelli', u'fungus', u'spark', u'corps', u'hunt'] [u'specialist', u'highlight', u'hospit', u'contract', u'woe'] [u'strachan', u'receiv', u'back', u'board', u'report'] [u'strict', u'supervis', u'continu', u'baldi'] [u'struggl', u'demon', u'savag', u'injuri'] [u'submiss', u'flow', u'wagerup', u'refineri', u'plan'] [u'sudan', u'vice', u'presid', u'kill', u'crash'] [u'tarrant', u'face', u'match'] [u'telstra', u'fund', u'impact', u'rat', u'costello'] [u'telstra', u'sale', u'depend', u'decent', u'rural', u'servic'] [u'tenni', u'centr', u'host', u'swim', u'championship'] [u'thousand', u'tip', u'whale', u'watch', u'hervey'] [u'torrenti', u'rain', u'caus', u'chao', u'mumbai'] [u'townsvill', u'famili', u'relationship', u'centr'] [u'transport', u'exercis', u'highlight', u'fatigu', u'breach'] [u'trial', u'clark', u'polic', u'escort', u'begin'] [u'tribun', u'ask', u'dump', u'law', u'vilif', u'charg'] [u'women', u'charg', u'cenotaph', u'vandal'] [u'polic', u'arrest', u'seven', u'terror', u'investig'] [u'unionist', u'head', u'labor', u'senat', u'nomin'] [u'univers', u'hone', u'transport', u'surveil'] [u'play', u'uzbek', u'evict'] [u'vail', u'nation', u'unit', u'telstra'] [u'vail', u'open', u'lismor', u'flood', u'levi'] [u'vanguard', u'vie', u'sydney', u'gold', u'coast', u'yacht'] [u'vermeulen', u'second', u'suzuka', u'hour'] [u'victori', u'hackett', u'cap', u'record', u'equal', u'meet'] [u'week', u'highlight', u'miss', u'person'] [u'wine', u'produc', u'attract', u'market'] [u'wollongong', u'famili', u'relationship', u'centr'] [u'zabel', u'quit', u'mobil', u'year'] [u'deal', u'boost', u'rescu', u'servic'] [u'aborigin', u'cultur', u'centr', u'build', u'local', u'pride'] [u'actor', u'gulpilil', u'lose', u'licenc', u'drink', u'drive'] [u'adelaid', u'polic', u'seek', u'pair', u'motel', u'stab'] [u'argentin', u'samuel', u'move', u'inter'] [u'arthur', u'prevail', u'aussi', u'teen', u'fall', u'debut'] [u'ashburton', u'shire', u'quit'] [u'australia', u'maintain', u'lead', u'test', u'rank'] [u'australian', u'drop', u'go', u'asia'] [u'australian', u'teen', u'complet', u'channel', u'cross'] [u'award', u'go', u'floodgat', u'restor', u'project'] [u'ballarat', u'median', u'hous', u'price', u'drop'] [u'beatti', u'seek', u'back', u'implement', u'forster', u'report'] [u'billiton', u'secur', u'percent', u'stake'] [u'blaze', u'damag', u'narrabri', u'train', u'station'] [u'blue', u'simpson', u'latest', u'rise', u'star', u'nomine'] [u'bodi', u'miss', u'childer', u'woman'] [u'bomb', u'attack', u'target', u'palestinian'] [u'face', u'court', u'accid'] [u'brack', u'outlaw', u'cocain', u'kit'] [u'brack', u'protect', u'public', u'servant', u'chang'] [u'burn', u'specialist', u'look', u'applic'] [u'busi', u'expect', u'slowdown', u'despit', u'better', u'sale'] [u'busi', u'group', u'boss', u'resign'] [u'wild', u'research'] [u'shark', u'rethink', u'whale', u'death'] [u'canberra', u'driver', u'manner', u'slight', u'averag'] [u'cdep', u'manag', u'mix', u'feel', u'chang'] [u'centr', u'aim', u'develop', u'diseas', u'treatment'] [u'charg', u'drop', u'zimbabw', u'opposit', u'leader'] [u'coast', u'resid', u'hospit'] [u'colombian', u'rebel', u'kill', u'polic', u'ambush'] [u'commiss', u'look', u'road', u'train', u'rego'] [u'maintain', u'log', u'protest'] [u'corpor', u'offer', u'water', u'suppli', u'pledg'] [u'councillor', u'call', u'quit'] [u'council', u'reject', u'wallarah', u'peninsula', u'suburb'] [u'council', u'form', u'creativ', u'industri', u'polici'] [u'csiro', u'continu', u'blue', u'lake', u'research'] [u'damag', u'award', u'bushfir', u'alleg'] [u'democrat', u'want', u'nativ', u'veget', u'corridor'] [u'dire', u'strait', u'guitarist', u'drop', u'bass', u'brush'] [u'disabl', u'group', u'look', u'closer', u'relationship'] [u'dozen', u'kill', u'sudanes', u'clash'] [u'draft', u'focus', u'attract', u'industri'] [u'dredg', u'oper', u'start', u'benefit'] [u'drought', u'part', u'blame', u'stock', u'shortag'] [u'take', u'toll', u'wheatbelt', u'crop'] [u'ekka', u'exhibit', u'highlight', u'wool', u'industri'] [u'elat', u'iemma', u'premier'] [u'elder', u'fail', u'overturn', u'child', u'abus'] [u'elder', u'welcom', u'tent', u'embassi', u'rethink'] [u'energi', u'properti', u'retail', u'stock', u'push', u'ord'] [u'esper', u'emerg', u'servic', u'communic'] [u'policeman', u'face', u'perjuri', u'charg'] [u'shire', u'presid', u'critic', u'boulter', u'sack'] [u'driver', u'discuss', u'safeti', u'govern', u'bodi'] [u'famili', u'care', u'servic', u'unhappi', u'feder', u'fund', u'loss'] [u'famili', u'rais', u'question', u'man', u'hotel', u'death'] [u'fear', u'tafe', u'chang', u'wide', u'reach', u'impact'] [u'figur', u'reveal', u'coast', u'high', u'methamphetamin'] [u'parti', u'coalit', u'domin', u'fiji', u'elect'] [u'care', u'worker', u'jail'] [u'ganguli', u'join', u'india', u'squad', u'serv'] [u'lodg', u'discrimin', u'claim'] [u'gazza', u'hop', u'unearth', u'portugues', u'talent'] [u'goorjian', u'pleas', u'boomer', u'perform'] [u'govt', u'award', u'school', u'campus', u'contract'] [u'govt', u'look', u'close', u'drug', u'traffic', u'loophol'] [u'govt', u'pressur', u'fund', u'indigen', u'student', u'project'] [u'govt', u'reject', u'council', u'request', u'elect'] [u'govt', u'satisfi', u'militari', u'commiss', u'advic'] [u'govt', u'forgo', u'power', u'station'] [u'govt', u'urg', u'school', u'adopt', u'healthi'] [u'great', u'alpin', u'plan', u'move', u'ahead'] [u'green', u'light', u'bendigo', u'traffic', u'light'] [u'harbour', u'festiv', u'organis', u'welcom', u'fund'] [u'health', u'see', u'children', u'ward', u'close'] [u'hear', u'australian', u'captain', u'ricki', u'pont'] [u'hensbi', u'jump', u'world'] [u'hinch', u'turn', u'pointi', u'head', u'debat'] [u'hope', u'music', u'instrument', u'busselton'] [u'hospit', u'manag', u'overhaul', u'unnecessari'] [u'howard', u'consid', u'nation', u'telstra', u'rural'] [u'hunter', u'look', u'record', u'good', u'rainfal'] [u'iemma', u'scrap', u'vendor'] [u'iemma', u'urg', u'orang', u'model', u'parent'] [u'indigen', u'communiti', u'tell', u'school', u'import'] [u'injur', u'soldier', u'hospit', u'treatment'] [u'inquiri', u'probe', u'manag', u'imprison'] [u'investig', u'launch', u'plane', u'emerg', u'land'] [u'inzamam', u'lead', u'asia', u'africa'] [u'israel', u'prepar', u'withdraw', u'protest'] [u'itali', u'lay', u'charg', u'london', u'plot'] [u'jackson', u'buy', u'bahrain', u'home', u'report'] [u'jail', u'lover', u'think', u'korp', u'murder', u'plot'] [u'jail', u'lover', u'appear', u'korp', u'committ', u'hear'] [u'japanes', u'postal', u'reform', u'intensifi'] [u'japan', u'keep', u'china', u'militari', u'spend'] [u'japan', u'settl', u'word', u'wwii', u'resolut'] [u'maxwel', u'wrap', u'tour', u'match'] [u'john', u'howard', u'begin', u'visit', u'rural', u'area'] [u'john', u'withdraw', u'test', u'exempt', u'applic'] [u'joineri', u'apprenticeship', u'train', u'earn', u'award'] [u'juvenil', u'whale', u'dead', u'near', u'shark'] [u'kewel', u'manag', u'fail'] [u'fin', u'workplac', u'injuri'] [u'korp', u'lover', u'murder', u'court', u'tell'] [u'labor', u'caucus', u'elect', u'iemma', u'premier'] [u'laidley', u'budget', u'fund', u'indoor', u'sport', u'complex'] [u'land', u'auction', u'fund', u'recreat', u'centr'] [u'languag', u'centr', u'talk', u'job', u'scheme'] [u'lawyer', u'back', u'concili', u'confer'] [u'legal', u'servic', u'air', u'hous', u'concern'] [u'liber', u'nation', u'odd'] [u'liber', u'welcom', u'nation', u'support', u'elect'] [u'lion', u'pike', u'call'] [u'local', u'angler', u'urg', u'review'] [u'makyb', u'diva', u'head', u'nomin'] [u'charg', u'yeppoon', u'sieg'] [u'plead', u'guilti', u'massiv', u'cocain', u'import'] [u'unit', u'chase', u'ballack'] [u'mareeba', u'offer', u'hospit', u'help'] [u'mayor', u'hop', u'negat', u'impact', u'road', u'comment'] [u'mayor', u'vote', u'give', u'crown', u'plan', u'ahead'] [u'mayor', u'unhappi', u'immigr', u'centr', u'plan'] [u'meet', u'focus', u'coal', u'plan'] [u'melbourn', u'polic', u'ensur', u'safe', u'passag', u'dredg'] [u'mildura', u'famili', u'relationship', u'centr'] [u'milit', u'deni', u'lade', u'statement', u'aust'] [u'death', u'investig'] [u'miss', u'peopl', u'urg', u'contact', u'famili'] [u'fund', u'seek', u'disabl', u'support', u'servic'] [u'morri', u'fear', u'health', u'dept', u'hide', u'inform'] [u'morri', u'inquiri', u'move', u'townsvill'] [u'mount', u'kosciuszko', u'view'] [u'flag', u'legisl', u'protect', u'rural'] [u'say', u'labor', u'faction', u'choke', u'parti'] [u'murali', u'eye', u'test', u'wicket'] [u'nasa', u'emerg', u'discoveri', u'repair'] [u'flood', u'warn', u'heavi', u'rain', u'continu'] [u'opportun', u'austop', u'worker'] [u'law', u'help', u'child', u'bride'] [u'measur', u'fight', u'snowi', u'blackberri', u'spread'] [u'south', u'wale', u'deputi', u'premier', u'andrew', u'refshaug'] [u'telstra', u'boss', u'go', u'bush'] [u'evid', u'sydney', u'abduct', u'attempt', u'connect'] [u'scanner', u'hamper', u'hospit', u'accredit'] [u'tendon', u'damag', u'jayasuriya'] [u'overcrowd', u'address', u'doctor', u'say'] [u'palm', u'island', u'inquest', u'hear', u'evid'] [u'passeng', u'prepar', u'second'] [u'patient', u'die', u'get', u'wrong', u'food', u'inquest', u'hear'] [u'patterson', u'pass', u'indigen', u'school', u'term'] [u'pfizer', u'beef', u'arthriti', u'drug', u'warn'] [u'plucki', u'pooch', u'escap', u'alcatraz'] [u'brush', u'plan', u'challeng'] [u'like', u'face', u'question', u'hickss', u'treatment'] [u'polic', u'arrest', u'fail', u'london'] [u'polic', u'file', u'reveal', u'jagger', u'cohort', u'dreg'] [u'polic', u'hope', u'solv', u'miss', u'woman', u'mysteri'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'optimist', u'domest', u'violenc', u'strategi'] [u'public', u'input', u'park', u'manag', u'plan'] [u'public', u'urg', u'help', u'miss', u'chinchilla', u'woman'] [u'quilpi', u'shire', u'deliv', u'rate', u'rise'] [u'rabbitoh', u'pick', u'elford'] [u'raider', u'cross', u'accept', u'match', u'suspens'] [u'rain', u'forecast', u'clear', u'western'] [u'raper', u'tell', u'player', u'shut'] [u'rathbon', u'eye', u'injur', u'sailor', u'spot'] [u'real', u'unveil', u'recruit', u'baptista'] [u'recis', u'motion', u'discuss', u'free', u'decis'] [u'cross', u'urg', u'chang', u'polici'] [u'reform', u'group', u'reject', u'graincorp', u'share', u'offer'] [u'refshaug', u'quit', u'polit'] [u'releas', u'leav', u'baxter', u'detaine', u'despond'] [u'resid', u'await', u'deliveri', u'bin'] [u'resid', u'boost', u'recept'] [u'retail', u'trade', u'climb'] [u'review', u'find', u'gap', u'health'] [u'reward', u'offer', u'penguin', u'maul', u'dog', u'captur'] [u'richo', u'docker', u'clash'] [u'river', u'group', u'consid', u'wilcannia', u'committe'] [u'riverina', u'resid', u'quiz', u'assault'] [u'roebuck', u'school', u'near', u'complet'] [u'royal', u'fli', u'doctor', u'servic', u'townsvill'] [u'rspca', u'lose', u'pound', u'tender'] [u'ruddock', u'brush', u'asid', u'critic', u'guantanamo'] [u'govt', u'welcom', u'singapor', u'airlin', u'servic'] [u'santo', u'discov', u'field'] [u'salin', u'invest', u'get', u'boost'] [u'saudi', u'offici', u'predict', u'smooth', u'transit', u'power'] [u'saudi', u'prepar', u'buri', u'king'] [u'seafood', u'label', u'hotlin', u'launch'] [u'seidler', u'aust', u'citizenship'] [u'shire', u'seal', u'louth'] [u'shire', u'form', u'region', u'local', u'govt'] [u'shire', u'path', u'better', u'infrastructur'] [u'siberia', u'slaughter', u'poultri', u'stop', u'bird'] [u'sivivatu', u'matfield', u'suffer', u'nation', u'injuri', u'scar'] [u'small', u'explos', u'target', u'british', u'interest', u'iran'] [u'editor', u'quit'] [u'spat', u'break', u'birthplac', u'star', u'trek'] [u'submiss', u'seek', u'residenti', u'tenanc', u'law'] [u'support', u'kimberley', u'review'] [u'surg', u'price', u'hit'] [u'tangl', u'humpback', u'whale', u'die'] [u'tarrant', u'risk', u'match'] [u'tarrant', u'suspend', u'match'] [u'taxi', u'fee', u'rise', u'subsidi', u'doubl'] [u'tebbutt', u'deputi', u'premier'] [u'teen', u'charg', u'fake', u'abduct'] [u'tidi', u'town', u'judg', u'inspect', u'horsham'] [u'militari', u'condemn', u'guantanamo', u'trial'] [u'tourist', u'pull', u'girl', u'burn', u'jabiru'] [u'trade', u'halt', u'mine', u'compani'] [u'turf', u'club', u'consid', u'race', u'light'] [u'union', u'threaten', u'action', u'hospit', u'staff', u'number'] [u'review', u'estim', u'iran', u'bomb', u'make'] [u'send', u'envoy', u'quell', u'violenc', u'sudan'] [u'uzbek', u'govt', u'condemn', u'airlift', u'refuge'] [u'vail', u'telstra', u'boss', u'hold', u'talk', u'region', u'servic'] [u'vail', u'trujillo', u'hold', u'talk', u'region', u'servic'] [u'veteran', u'vidmar', u'announc', u'retir'] [u'govt', u'calder', u'fund'] [u'wagga', u'host', u'landcar', u'gather'] [u'wallabi', u'code', u'conduct', u'need', u'review', u'jone'] [u'wast', u'strategi', u'perform'] [u'water', u'author', u'downplay', u'sewag', u'spill', u'impact'] [u'urg', u'develop', u'ethanol', u'industri'] [u'chairman', u'move', u'asid'] [u'wine', u'industri', u'feel', u'retail', u'pressur'] [u'wit', u'infer', u'victim', u'assault', u'death', u'custodi'] [u'woman', u'die'] [u'woman', u'stuart', u'highway'] [u'work', u'continu', u'nebo', u'sewerag'] [u'marin', u'interpret', u'kill', u'iraq'] [u'accid', u'prompt', u'navi', u'replac', u'submarin', u'hose'] [u'actu', u'appeal', u'govt', u'work', u'famili', u'balanc'] [u'campaign', u'aim', u'boost', u'troubl', u'ferri', u'rout'] [u'adida', u'reebok'] [u'back', u'match', u'review'] [u'franc', u'crash', u'hell', u'roller', u'coaster'] [u'franc', u'land', u'late', u'minist'] [u'airport', u'base', u'second', u'outlet', u'creat', u'job'] [u'bomb', u'dizzi', u'ash', u'tour'] [u'anti', u'violenc', u'summit', u'call', u'tumbarumba'] [u'astronaut', u'space', u'walk', u'shuttl'] [u'attack', u'piggeri', u'leav', u'anim', u'dead'] [u'train', u'urg', u'rural', u'school'] [u'australian', u'year', u'offer', u'advic', u'alic'] [u'australian', u'towel', u'pool', u'duel'] [u'aust', u'woman', u'guilti', u'bomb', u'hoax'] [u'bali', u'court', u'refus', u'corbi', u'time'] [u'ballack', u'deni', u'agreement'] [u'black', u'cap', u'touch', u'zimbabw'] [u'bolivian', u'face', u'life', u'sentenc', u'cocain'] [u'boomer', u'strengthen', u'squad', u'nation', u'tournament'] [u'chief', u'urg', u'corpor', u'action', u'climat', u'chang'] [u'brain', u'dead', u'woman', u'give', u'birth'] [u'builder', u'attack', u'hous', u'energi', u'plan'] [u'build', u'approv', u'continu', u'rise'] [u'busi', u'council', u'welcom', u'vendor', u'demis'] [u'easier', u'wheatbelt', u'blood', u'donat'] [u'canberra', u'pleas', u'rank'] [u'sale'] [u'carter', u'black', u'nation', u'open'] [u'celtic', u'exit', u'champion', u'race'] [u'chamber', u'concern', u'despit', u'increas', u'retail'] [u'collingwood', u'vow', u'come', u'fight'] [u'communiti', u'group', u'plan', u'approach', u'nuclear', u'dump'] [u'oppos', u'xstrata', u'river', u'divers'] [u'back', u'vendor', u'demis'] [u'costello', u'want', u'tax', u'remov'] [u'cotton', u'trader', u'order', u'grower', u'damag'] [u'council', u'consid', u'gladston', u'land'] [u'council', u'group', u'outlin', u'altern', u'inland', u'rail'] [u'council', u'darci', u'hous', u'oper'] [u'council', u'urg', u'truck', u'restrict'] [u'countri', u'cabbi', u'seek', u'govt', u'help', u'depot', u'closur'] [u'rank', u'high', u'good', u'univers', u'guid'] [u'score', u'mark', u'good', u'guid'] [u'dairi', u'cooper', u'doubl', u'dividend', u'payment'] [u'danih', u'tell', u'demon', u'focus', u'present'] [u'dead', u'cadet', u'case', u'high', u'court'] [u'dead', u'fish', u'death', u'threat', u'sour', u'pulp', u'clash'] [u'deak', u'cut', u'helsinki', u'program', u'half'] [u'death', u'custodi', u'video', u'show', u'inquest'] [u'develop', u'plan', u'worri', u'progress', u'associ'] [u'diamond', u'earn', u'award', u'apprentic', u'train'] [u'dizzi', u'express', u'safeti', u'concern'] [u'doctor', u'lobbi', u'bureaucrat', u'public', u'hospit'] [u'drill', u'uncov', u'signific', u'nickel', u'deposit'] [u'time', u'south', u'west'] [u'eagl', u'unlik', u'chang', u'bulldog', u'clash'] [u'legal', u'action'] [u'european', u'trio', u'warn', u'iran', u'nuclear', u'resumpt'] [u'polic', u'chief', u'apologis', u'anwar', u'ibrahim'] [u'farmer', u'hope', u'nuttal', u'back', u'canker', u'compo', u'plan'] [u'fear', u'dog', u'return', u'penguin', u'coloni'] [u'fear', u'health', u'disput', u'wider', u'impact'] [u'feder', u'make', u'master', u'object'] [u'figur', u'increas', u'domest', u'wine', u'sale'] [u'forestri', u'chief', u'return', u'asian', u'lobbi', u'campaign'] [u'asio', u'offic', u'issu', u'terror', u'warn'] [u'judg', u'win', u'challeng', u'pic'] [u'leader', u'lang', u'lose'] [u'forster', u'highlight', u'gold', u'coast', u'health', u'need'] [u'fund', u'announc', u'homestead', u'revamp'] [u'concern', u'rais', u'militari', u'commiss'] [u'gallop', u'get', u'esper', u'port', u'plan'] [u'german', u'mother', u'admit', u'role', u'babi', u'death'] [u'gerrard', u'inspir', u'liverpool'] [u'gippsland', u'taxi', u'oper', u'join', u'melbourn', u'meet'] [u'glass', u'worker', u'ralli', u'holden', u'import', u'decis'] [u'gold', u'coast', u'team', u'peopl', u'choic'] [u'govt', u'alloc', u'broule', u'skate', u'fund'] [u'govt', u'odd', u'corbi', u'lawyer'] [u'govt', u'need', u'increas', u'fund', u'ail'] [u'govt', u'stand', u'plan', u'dredg'] [u'grant', u'aim', u'encourag', u'nurs', u'age', u'care'] [u'health', u'servic', u'urg', u'chang', u'cultur'] [u'hick', u'tri', u'aust', u'lawyer'] [u'howard', u'visit', u'affect', u'farm'] [u'hull', u'maintain', u'telstra', u'split', u'stanc'] [u'iemma', u'ask', u'timber', u'worker'] [u'iemma', u'swear', u'premier'] [u'indian', u'ocean', u'tsunami', u'warn', u'near'] [u'industri', u'feel', u'squeez', u'navel', u'orang', u'price'] [u'injur', u'cyclist', u'intens', u'care'] [u'inquiri', u'chief', u'defend', u'individu', u'contract'] [u'inquiri', u'hear', u'doctor', u'employ', u'accredit'] [u'wide', u'show', u'south', u'east', u'chip'] [u'rat', u'remain', u'percent'] [u'iranian', u'presid', u'appeal', u'wmds'] [u'iraqi', u'constitut', u'talk', u'stall', u'attack', u'kill'] [u'back', u'long', u'servic'] [u'jacob', u'seek', u'assault', u'counsel', u'servic'] [u'jetstar', u'cross', u'tasman'] [u'korp', u'stand', u'trial'] [u'keelti', u'confirm', u'terror', u'network', u'aust'] [u'kidman', u'snatch', u'role'] [u'knowl', u'quit', u'iemma', u'free', u'hand'] [u'korp', u'lawyer', u'expect', u'murder', u'charg'] [u'labor', u'split', u'uranium', u'say', u'mine', u'compani'] [u'landmark', u'orbit', u'space', u'shuttl', u'repair', u'success'] [u'legal', u'wrangl', u'tobacco', u'continu'] [u'liber', u'rais', u'school', u'safeti', u'elect'] [u'livestock', u'sale', u'despit', u'plan', u'boycott'] [u'lose', u'pound', u'contract', u'stop', u'anim', u'shelter', u'plan'] [u'macfarlan', u'happi', u'ranger', u'uranium'] [u'maharoof', u'star', u'lanka', u'victori'] [u'maitland', u'council', u'lose', u'rat', u'appeal'] [u'fin', u'sheep', u'cruelti'] [u'plan', u'solo', u'row', u'trip'] [u'face', u'attempt', u'murder', u'committ', u'hear'] [u'media', u'report', u'forc', u'judg', u'dismiss', u'juri'] [u'meet', u'focus', u'central', u'gippsland', u'health'] [u'miner', u'announc', u'pilbara', u'explor', u'plan'] [u'miner', u'kill', u'china', u'accid'] [u'minist', u'share', u'agreement', u'rais', u'concern'] [u'question', u'great', u'southern', u'salt', u'plan'] [u'moder', u'alcohol', u'drinker', u'better', u'thinker', u'studi'] [u'prais', u'water', u'save', u'effort'] [u'want', u'longernong', u'colleg', u'futur', u'know'] [u'murray', u'darl', u'slice', u'green', u'fund'] [u'namoi', u'cotton', u'reject', u'takeov', u'offer'] [u'nation', u'target', u'mildura', u'gippsland', u'seat'] [u'nation', u'welcom', u'labor', u'resign'] [u'newcastl', u'join', u'unit', u'owen', u'chase'] [u'warn', u'impact', u'reform', u'farmer'] [u'niger', u'food', u'crisi', u'eas', u'presid'] [u'korea', u'laud', u'kim', u'memori', u'train'] [u'death', u'canada', u'plane', u'crash'] [u'quick', u'like', u'bridg', u'rout'] [u'blog', u'creat', u'second'] [u'optus', u'chief', u'call', u'reform', u'bush', u'fund'] [u'world', u'seek', u'planet'] [u'passeng', u'flame', u'canada'] [u'passeng', u'accept', u'rail', u'reform', u'time', u'iemma'] [u'passeng', u'crew', u'escap', u'canada', u'plane', u'crash'] [u'pentagon', u'ban', u'anonym', u'quot', u'press', u'releas'] [u'say', u'extremist', u'surveil'] [u'take', u'trujillo', u'task', u'regul'] [u'polic', u'appeal', u'inform', u'miss'] [u'polic', u'awar', u'terrorist', u'cell', u'keelti'] [u'polic', u'claim', u'success', u'port', u'wakefield', u'road', u'blitz'] [u'polic', u'close', u'arm', u'bandit'] [u'polic', u'disarm', u'explos', u'perth'] [u'polic', u'probe', u'kyneton', u'death'] [u'polic', u'releas', u'descript', u'abduct'] [u'polic', u'open', u'perth', u'foreshor', u'explos'] [u'polic', u'releas', u'imag', u'knife', u'bandit'] [u'poll', u'consid', u'wimmera', u'skill', u'shortag'] [u'pork', u'produc', u'face', u'carcass', u'levi', u'hike'] [u'prais', u'wetland', u'protect', u'effort'] [u'prawn', u'fleet', u'head', u'gulf'] [u'pressur', u'aust', u'wheat', u'price', u'affect', u'grower'] [u'primus', u'admit', u'port', u'rid', u'luck'] [u'public', u'snap', u'communiti', u'telco', u'share'] [u'public', u'warn', u'rubbish', u'collect', u'chang'] [u'farmer', u'face', u'weather', u'extrem'] [u'rat', u'decis', u'reflect', u'solid', u'growth', u'costello'] [u'real', u'estat', u'institut', u'back', u'vendor', u'decis'] [u'resid', u'voic', u'concern', u'nuclear', u'dump'] [u'tinto', u'result', u'fail', u'lift'] [u'rspca', u'probe', u'armidal', u'kitten', u'abus'] [u'rural', u'ambul', u'time', u'bomb', u'disgrac', u'union'] [u'rural', u'elect'] [u'rural', u'train', u'medic', u'student', u'outperform', u'citi'] [u'russian', u'hungri', u'meat'] [u'russia', u'network', u'journalist'] [u'sale', u'mitsubishi', u'plant', u'expect', u'month'] [u'salvo', u'warn', u'homeless', u'shelter', u'shortag'] [u'catch', u'amass', u'cold', u'tablet'] [u'coupl', u'feel', u'itch', u'hitch'] [u'join', u'legal', u'challeng', u'chang'] [u'school', u'join', u'anti', u'bulli', u'program'] [u'scud', u'misfir', u'washington'] [u'senat', u'see', u'good', u'indigen', u'work', u'agreement'] [u'sentenc', u'stand', u'drug', u'dealer', u'caccamo'] [u'servic', u'industri', u'grow'] [u'servic', u'provid', u'work'] [u'shaq', u'sign', u'year', u'heat', u'deal'] [u'shoulder', u'surgeri', u'sidelin', u'larkham'] [u'simplot', u'finalis', u'price'] [u'socceroo', u'squad', u'announc', u'dutch', u'train', u'camp'] [u'soldier', u'receiv', u'afghanistan', u'campaign', u'medal'] [u'soni', u'settl', u'bogus', u'film', u'critic', u'suit'] [u'spur', u'complet', u'david', u'sign'] [u'stoner', u'disagre', u'oakeshott', u'iemma', u'claim'] [u'student', u'ralli', u'voluntari', u'union', u'plan'] [u'submiss', u'flow', u'enterpris', u'centr'] [u'sudan', u'bashir', u'urg', u'violenc'] [u'sunday', u'market', u'continu'] [u'super', u'flood', u'rais', u'nuke', u'dump', u'hazard'] [u'survey', u'highlight', u'benefit', u'long', u'term'] [u'survey', u'work', u'cours', u'golf', u'cours', u'revamp'] [u'sydney', u'water', u'worker', u'kill', u'boat', u'capsiz'] [u'task', u'forc', u'investig', u'indigen', u'child'] [u'teacher', u'leav', u'public', u'school', u'door'] [u'telstra', u'burden', u'regul', u'coonan'] [u'telstra', u'fund', u'bush', u'aapt'] [u'thousand', u'expect', u'attend', u'field', u'day'] [u'tiger', u'clash', u'litmus', u'test', u'connolli'] [u'time', u'frame', u'cossack', u'hous', u'plan'] [u'time', u'corbi', u'appeal'] [u'tongan', u'soldier', u'transfer', u'weekend', u'accid'] [u'traci', u'damag', u'iron', u'reopen'] [u'treasur', u'welcom', u'adb', u'sydney', u'offic'] [u'tribun', u'examin', u'doctor', u'conduct'] [u'trio', u'charg', u'teenag', u'rape'] [u'troop', u'block', u'mauritania', u'street', u'appar', u'coup'] [u'troop', u'mauritanian', u'capit'] [u'truck', u'lose', u'paper', u'roll', u'load', u'highway', u'crash'] [u'trujillo', u'understand', u'telstra', u'oblig', u'joyc'] [u'trujillo', u'tell', u'farmer', u'commit', u'bush'] [u'union', u'concern', u'abattoir', u'outsourc'] [u'get', u'high', u'mark', u'graduat', u'satisfact'] [u'journalist', u'kill', u'iraq'] [u'vanston', u'reject', u'church', u'critic', u'indigen'] [u'vaughan', u'prove', u'say', u'pont'] [u'govt', u'pour', u'cold', u'water', u'calder', u'finish'] [u'warn', u'say', u'spin', u'better'] [u'webb', u'return', u'cowboy', u'georg', u'clash'] [u'wildcat', u'sign', u'veteran', u'roger'] [u'wollongong', u'score', u'high', u'good', u'guid'] [u'woman', u'die', u'north', u'road', u'crash'] [u'women', u'jail', u'assault', u'hostag'] [u'young', u'tasmanian', u'leav', u'european', u'pilgrimag'] [u'zambia', u'deport', u'terror', u'suspect'] [u'zimbabw', u'opposit', u'readi', u'talk', u'mugab'] [u'green', u'scheme', u'south', u'west'] [u'abbott', u'back', u'cape', u'york', u'alcohol', u'plan'] [u'academ', u'politician', u'consilium'] [u'accus', u'rapist', u'persi', u'play', u'communiti'] [u'adida', u'salomon', u'launch', u'reebok', u'takeov'] [u'afghan', u'polic', u'seiz', u'kilogram', u'heroin'] [u'agricultur', u'school', u'futur', u'safe', u'say'] [u'airport', u'owner', u'undermin', u'plan', u'strategi'] [u'aloisi', u'name', u'unit', u'captain'] [u'qaeda', u'deputi', u'warn', u'attack'] [u'amphetamin', u'slow', u'parkinson', u'studi'] [u'antarct', u'shelf', u'collaps', u'link', u'global'] [u'complet', u'telescop', u'hawaii'] [u'close', u'steadi'] [u'aussi', u'healey', u'fall', u'resurg', u'rusedski'] [u'aussi', u'england', u'tail'] [u'australian', u'islam', u'leader', u'defend', u'jihad'] [u'ballack', u'focus', u'bayern', u'munich'] [u'ballarat', u'council', u'monitor', u'wast', u'dump', u'plan'] [u'bank', u'england', u'cut', u'rat'] [u'bathurst', u'mayor', u'say', u'saleyard', u'redevelop', u'viabl'] [u'beatti', u'reject', u'health', u'cover', u'claim'] [u'beazley', u'urg', u'uniform', u'approach', u'terror', u'fight'] [u'beef', u'price', u'remain', u'high', u'despit', u'export', u'slump'] [u'nervous', u'terrorist', u'strike', u'ruddock'] [u'bichel', u'rewrit', u'hampshir', u'record', u'book'] [u'crowd', u'hop', u'land', u'conserv', u'gather'] [u'gun', u'test', u'shoalwat'] [u'biosecur', u'aust', u'continu', u'brazil', u'beef', u'review'] [u'brain', u'dead', u'woman', u'die', u'give', u'birth'] [u'brisban', u'fin', u'board', u'hous', u'blaze'] [u'broom', u'region', u'head', u'indigen', u'doctor', u'group'] [u'collect', u'stir', u'intern', u'buzz'] [u'businessman', u'predict', u'grim', u'futur', u'domest'] [u'esper', u'mental', u'health', u'halfway', u'hous'] [u'camera', u'flaw', u'defenc', u'fail', u'speed', u'case'] [u'campbel', u'retain', u'portfolio'] [u'chines', u'produc', u'eye', u'woodsid', u'santo', u'report'] [u'civoniceva', u'prove', u'fit', u'man', u'clash'] [u'commission', u'flag', u'merger', u'health', u'servic'] [u'compani', u'say', u'mine', u'takeov', u'viabl'] [u'competit', u'hit', u'optus', u'profit'] [u'corbi', u'lawyer', u'meet', u'ellison'] [u'coron', u'condemn', u'polic', u'shoot', u'mental'] [u'coron', u'rule', u'arson', u'supermarket', u'blaze'] [u'council', u'ask', u'develop', u'scale', u'unit', u'plan'] [u'councillor', u'question', u'confer', u'expens'] [u'council', u'support', u'mitchel', u'youth', u'detent', u'centr'] [u'council', u'tell', u'causeway', u'upgrad', u'year'] [u'court', u'consid', u'inadequ', u'sentenc'] [u'court', u'rule', u'citizen', u'lose', u'aust', u'citizenship'] [u'crash', u'prompt', u'call', u'highway', u'upgrad'] [u'crawford', u'happi', u'decis', u'step'] [u'price', u'airfar', u'singapor'] [u'damag', u'thermal', u'blanket', u'requir'] [u'dandi', u'warhol', u'headlin', u'fall', u'festiv'] [u'defend', u'champion', u'determin', u'aveng', u'olymp'] [u'earth', u'moon'] [u'educ', u'dept', u'investig', u'girl', u'lock'] [u'emerald', u'council', u'administr', u'build'] [u'emerg', u'food', u'deliveri', u'reach', u'remot', u'communiti'] [u'england', u'steadi', u'start'] [u'esper', u'record', u'cargo', u'handl', u'figur'] [u'timor', u'record', u'world', u'highest', u'birth', u'rate'] [u'faction', u'stoush', u'brew', u'elect', u'deputi'] [u'famili', u'unimpress', u'bomb', u'compo'] [u'farmer', u'fear', u'phone', u'woe', u'prove', u'cost'] [u'farmer', u'hail', u'salin', u'scheme'] [u'farmer', u'prepar', u'flood', u'river', u'rise'] [u'farmer', u'mccain', u'crisi', u'meet', u'crucial'] [u'feder', u'govt', u'take', u'control', u'uranium'] [u'damag', u'salvo', u'citadel'] [u'flight', u'attend', u'get', u'year', u'drug', u'smuggl'] [u'judg', u'back', u'repatri', u'hick'] [u'knight', u'flyer', u'albert', u'sign', u'shark'] [u'premier', u'claim', u'ignor', u'bank', u'bust'] [u'student', u'innov', u'contest'] [u'fourth', u'space', u'walk', u'possibl', u'nasa'] [u'review', u'food', u'preserv', u'level'] [u'gallop', u'back', u'upgrad', u'ravensthorp', u'servic'] [u'gang', u'rapist', u'sentenc', u'uphold'] [u'rich', u'poor', u'grow'] [u'pipelin', u'talk', u'advanc'] [u'gippsland', u'ralli', u'hospit', u'downsiz', u'fear'] [u'gippsland', u'irrig', u'water', u'price', u'astound', u'farmer'] [u'govt', u'bankrol', u'pilbara', u'school', u'ventur'] [u'govt', u'afford', u'fund', u'second', u'hick', u'lawyer'] [u'govt', u'defend', u'action', u'corbi', u'case'] [u'govt', u'defend', u'soldier', u'medal', u'delay'] [u'govt', u'plan', u'chang', u'campaign'] [u'govt', u'readi', u'assist', u'corbi', u'case', u'reopen', u'ellison'] [u'govt', u'reject', u'armchair', u'critic', u'hick'] [u'govt', u'campaign', u'wont', u'work', u'labor'] [u'govt', u'mull', u'involv', u'cyclist', u'memori'] [u'govt', u'take', u'control', u'uranium', u'industri'] [u'govt', u'reveal', u'telstra', u'plan', u'kendal'] [u'govt', u'toughen', u'telstra', u'region', u'servic', u'condit'] [u'govt', u'urg', u'offer', u'drought', u'busi'] [u'gregan', u'believ', u'wallabi', u'crack', u'south', u'africa'] [u'group', u'wait', u'dredg', u'decis'] [u'hobart', u'teacher', u'charg', u'child', u'offenc'] [u'hop', u'lose', u'wife', u'confess', u'fake'] [u'hospit', u'manag', u'beat', u'contract'] [u'hospit', u'staff', u'need', u'effici'] [u'human', u'right', u'group', u'examin', u'crimin', u'claim'] [u'iemma', u'vow', u'restor', u'status', u'econom'] [u'industri', u'group', u'laud', u'wine', u'tourism'] [u'inquest', u'hear', u'arrest', u'offic', u'wasnt', u'angri'] [u'intens', u'earthquak', u'record', u'eastern', u'indonesia'] [u'investig', u'franc', u'jet', u'black', u'box'] [u'islam', u'council', u'attack', u'terror', u'comment'] [u'isra', u'polic', u'block', u'gaza', u'march'] [u'isra', u'protest', u'suspend', u'march', u'plan'] [u'jewish', u'group', u'investig', u'crime', u'suspect', u'claim'] [u'maxwel', u'speak', u'ricki', u'pont'] [u'kasper', u'dizzi', u'break'] [u'korean', u'clone'] [u'legal', u'prolong', u'homeless', u'report'] [u'legendari', u'rock', u'critic', u'die'] [u'lightn', u'strike', u'vineyard', u'worker'] [u'london', u'bomb', u'suspect', u'extradit', u'hear'] [u'magpi', u'fin', u'malthous', u'comment'] [u'hospit', u'crash'] [u'surveil', u'speak'] [u'martin', u'snub', u'minist', u'uranium', u'mine'] [u'maryborough', u'resid', u'fight', u'patholog', u'plan'] [u'mayor', u'ponder', u'cabinet', u'chang', u'impact'] [u'mcgrath', u'doubt', u'train', u'mishap'] [u'mcgrath', u'edgbaston', u'test'] [u'mcgrath', u'target', u'vaughan', u'edgbaston'] [u'melbourn', u'arm', u'bandit', u'strike'] [u'mildura', u'rift', u'threaten', u'child', u'welfar', u'reform', u'govt'] [u'miner', u'plan', u'high', u'tech', u'map', u'near', u'break', u'hill'] [u'miss', u'girl', u'school', u'sick'] [u'monkey', u'see', u'rescu', u'injur', u'companion', u'report'] [u'sophist', u'bomb', u'mark', u'iraq', u'attack'] [u'fear', u'anaesthetist', u'drive', u'away'] [u'seek', u'sunshin', u'coast', u'polic', u'boost'] [u'murray', u'resid', u'warn', u'flood'] [u'nation', u'search', u'moor', u'offic'] [u'nation', u'advertis', u'seat', u'candid'] [u'nauru', u'hop', u'dirti', u'money', u'black', u'list'] [u'newcastl', u'adio', u'europ'] [u'compani', u'search', u'uranium'] [u'regul', u'telstra'] [u'zealand', u'bank', u'return', u'paceman', u'bond'] [u'sight', u'luca', u'aim', u'game'] [u'investig', u'budget', u'leak'] [u'northam', u'shire', u'clear', u'quarri', u'wrongdo'] [u'northern', u'river', u'rental', u'price', u'skyrocket'] [u'nuttal', u'visit', u'emerald', u'amidst', u'canker', u'compo', u'call'] [u'labour', u'parti', u'limit', u'maori', u'claim'] [u'odriscol', u'target', u'return', u'wallabi', u'black'] [u'outback', u'get', u'landcar'] [u'owen', u'talk', u'premiership', u'club'] [u'palm', u'inquest', u'hear', u'liaison', u'offic', u'keep', u'quiet'] [u'parent', u'remind', u'chickenpox', u'vaccin'] [u'pari', u'scene', u'win', u'connor', u'dobel'] [u'grower', u'brief', u'simplot', u'price', u'cut'] [u'penguin', u'attack', u'north'] [u'pilot', u'error', u'crash', u'aceh'] [u'plan', u'begin', u'thuringowa', u'sport', u'stadium'] [u'plan', u'continu', u'loxton', u'hospit', u'revamp'] [u'plan', u'oper', u'famili', u'centr', u'lismor', u'welcom'] [u'flag', u'chang', u'terror', u'law'] [u'polic', u'forc', u'london'] [u'polic', u'prepar', u'chariti', u'shuffl'] [u'polic', u'raid', u'uncov', u'hydropon', u'oper'] [u'polic', u'investig', u'sydney', u'water', u'accid'] [u'polic', u'warn', u'driver', u'woodend', u'snow'] [u'protein', u'discoveri', u'offer', u'alzheim', u'hope'] [u'public', u'fear', u'radioact', u'wast', u'unreason'] [u'public', u'show', u'roxbi', u'down', u'plan'] [u'public', u'urg', u'speak', u'council', u'sack'] [u'qanta', u'plane', u'make', u'emerg', u'land'] [u'cotton', u'deni', u'underbid', u'claim'] [u'racist', u'murder', u'suspect', u'detain', u'return'] [u'rat', u'bleed', u'council', u'more', u'mayor'] [u'region', u'develop', u'board', u'member', u'converg'] [u'region', u'tourism', u'group', u'cheap', u'flight'] [u'report', u'highlight', u'heavi', u'council', u'workload'] [u'research', u'pinpoint', u'breast', u'cancer', u'gene'] [u'rise', u'price', u'rural', u'busi'] [u'rocker', u'melissa', u'etheridg', u'say', u'shes', u'cancer', u'free'] [u'ronaldson', u'lead', u'wildcat'] [u'presid', u'defend', u'gallipoli', u'roadwork'] [u'ruddock', u'tour', u'cyclon', u'ravag', u'tiwi', u'island'] [u'rural', u'taxi', u'fold', u'govt', u'support'] [u'driver', u'urg', u'dirt', u'road', u'train'] [u'africa', u'agre', u'bail', u'zimbabw', u'debt'] [u'scheme', u'aim', u'improv', u'biodivers'] [u'school', u'ask', u'explain', u'girl', u'overnight', u'lock'] [u'school', u'closur', u'heat'] [u'scientist', u'identifi', u'alzheim', u'protein'] [u'sheep', u'breeder', u'score', u'ram', u'price'] [u'shuttl', u'crew', u'complet', u'repair'] [u'snow', u'help', u'boost', u'resort', u'cover'] [u'snowi', u'subdivis', u'plan', u'reveal'] [u'question', u'stab', u'murder'] [u'south', u'east', u'share', u'feder', u'green', u'fund'] [u'specul', u'continu', u'health', u'merger', u'job'] [u'lanka', u'crash', u'ganguli', u'parti'] [u'state', u'battl', u'govt', u'tibbl', u'case'] [u'steadi', u'rain', u'expect', u'clear'] [u'struggl', u'victori', u'hop', u'attract', u'investor'] [u'sudan', u'death', u'toll', u'rise'] [u'sugar', u'cane', u'grower', u'introduc', u'asian', u'trend', u'cane'] [u'suspect', u'remand', u'custodi', u'london', u'attack'] [u'sydney', u'arrest', u'rail', u'shutdown'] [u'tasmania', u'alert', u'earli', u'bushfir', u'season'] [u'offic', u'target', u'medium', u'size', u'busi'] [u'tebbutt', u'pull', u'deputi', u'premier', u'race'] [u'teen', u'jail', u'life', u'execut', u'style', u'kill'] [u'teen', u'kill', u'sleep', u'road'] [u'telstra', u'face', u'tougher', u'licenc', u'condit'] [u'timor', u'seek', u'health', u'help'] [u'toffe', u'sign', u'phil', u'nevill', u'unit'] [u'wallabi', u'profession', u'honour'] [u'kill', u'istanbul', u'explos'] [u'unit', u'liverpool', u'face', u'eastern', u'europ', u'trip'] [u'unlicens', u'driver', u'plead', u'guilti', u'drive'] [u'clear'] [u'militari', u'commiss', u'criticis'] [u'resum', u'issu', u'year', u'treasuri', u'bond'] [u'tortur', u'detaine', u'secret', u'locat', u'amnesti'] [u'vail', u'open', u'highway', u'revamp'] [u'vaughan', u'readi', u'australia'] [u'polic', u'monitor', u'terror', u'suspect'] [u'prison', u'deni', u'assault', u'disabl', u'woman'] [u'weak', u'sale', u'push', u'alumina', u'profit'] [u'contribut', u'bush', u'servic', u'optus'] [u'white', u'tweak', u'bok', u'squad', u'black', u'clash'] [u'wine', u'aim', u'boost', u'cellar', u'door', u'visit'] [u'woman', u'awak', u'knife', u'wield', u'thief'] [u'woman', u'die', u'pacif', u'highway', u'crash'] [u'zidan', u'shock', u'return', u'french'] [u'health', u'defend', u'psychiatr', u'unit', u'revamp'] [u'actu', u'prais', u'labor', u'stanc', u'chang'] [u'adelaid', u'servic', u'tribut', u'gillett'] [u'freedom', u'speech', u'dead', u'buri'] [u'amphetamin', u'fuel', u'violenc', u'hospit'] [u'anti', u'nuclear', u'group', u'warn', u'protest', u'wake'] [u'arnhem', u'land', u'tune', u'garma', u'festiv'] [u'asbesto', u'dust', u'high', u'school', u'scienc', u'block'] [u'aust', u'kill', u'slope'] [u'australia', u'lunch'] [u'bailey', u'dragon', u'year'] [u'batchelor', u'consid', u'causeway', u'revamp'] [u'beef', u'quota', u'chang', u'breath', u'life', u'mudge'] [u'bekel', u'ditch', u'world', u'doubl'] [u'bishop', u'odd', u'vanston', u'indigen', u'comment'] [u'blair', u'outlin', u'anti', u'terror', u'measur'] [u'bligh', u'unabash', u'asbesto', u'remov'] [u'book', u'outlin', u'indigen', u'group', u'challeng'] [u'breast', u'cancer', u'treatment', u'switch', u'boost', u'chanc'] [u'build', u'societi', u'post', u'record', u'profit'] [u'bushfir', u'victim', u'seek', u'rapid', u'open', u'inquest'] [u'shoot', u'bloodthirsti', u'jewish', u'terror'] [u'fairer', u'council', u'rat', u'scheme'] [u'public', u'input', u'harbour', u'redevelop'] [u'cat', u'saint', u'clash', u'tip', u'tough'] [u'centr', u'help', u'dementia', u'patient'] [u'channel', u'produc', u'charg', u'knife', u'flight'] [u'chappel', u'insist', u'india', u'best', u'come'] [u'chase', u'end', u'polic', u'roll'] [u'chelsea', u'statement', u'intent'] [u'china', u'charg', u'journalist'] [u'cleric', u'comment', u'concern', u'beazley'] [u'compens', u'settlement', u'close', u'anglican', u'abus'] [u'consult', u'look', u'govt', u'respons', u'island'] [u'cooloola', u'council', u'probe', u'sign', u'claim'] [u'coron', u'close', u'fatal', u'hous', u'case'] [u'councillor', u'oppos', u'mall', u'traffic'] [u'council', u'tough', u'citi', u'drink'] [u'court', u'clear', u'drink', u'drive', u'case'] [u'court', u'declar', u'miss', u'pair', u'dead'] [u'court', u'dismiss', u'attempt', u'disqualifi', u'bushfir'] [u'court', u'sentenc', u'teen', u'jacker'] [u'cowboy', u'coach', u'look', u'dragon', u'clash', u'crowd', u'pleaser'] [u'allow', u'challeng', u'asbesto', u'case', u'rule'] [u'darwin', u'festiv', u'administr', u'quit'] [u'depart', u'avoid', u'fair', u'wage', u'agreement', u'union'] [u'detaine', u'question', u'food', u'protest'] [u'discoveri', u'crew', u'readi', u'trip', u'home'] [u'domin', u'dragon', u'overpow', u'cowboy'] [u'await', u'korp', u'autopsi', u'result'] [u'dredg', u'trial', u'ahead'] [u'driver', u'warn', u'tricki', u'condit'] [u'educ', u'dept', u'probe', u'schoolgirl', u'overnight', u'lock'] [u'year', u'old', u'drug'] [u'england', u'prayer', u'half', u'answer'] [u'essien', u'threaten', u'lyon', u'strike', u'report'] [u'explos', u'hit', u'scienc'] [u'farmer', u'help', u'rescu', u'driver', u'burn', u'wreck'] [u'farmer', u'buoy', u'eas', u'drought', u'condit'] [u'farmer', u'tell', u'industri', u'futur', u'hand'] [u'farmer', u'welcom', u'mine', u'leas', u'decis'] [u'fear', u'rout', u'tender', u'hamper', u'tourism'] [u'fear', u'grow', u'suppli', u'russia', u'mini', u'crew'] [u'feder', u'govt', u'urg', u'boost', u'region', u'rental'] [u'fisheri', u'staff', u'illeg', u'prawn', u'fisher'] [u'kill', u'turkey', u'bomb'] [u'fonterra', u'prepar', u'bonlac', u'takeov'] [u'footbal', u'leagu', u'tackl', u'drink', u'problem'] [u'forecast', u'say', u'nino', u'unlik'] [u'forestri', u'offer', u'voluntari', u'redund'] [u'armidal', u'hors', u'trainer', u'die', u'rail'] [u'polic', u'hurt', u'clash', u'belfast'] [u'forum', u'discuss', u'treat', u'sewag', u'fertilis'] [u'charg', u'polic', u'shoot'] [u'freedom', u'speech', u'dead', u'buri'] [u'fund', u'address', u'remot', u'child', u'nutrit'] [u'gallop', u'say', u'parol', u'board', u'issu', u'need', u'attent'] [u'gang', u'rapist', u'face', u'retrial'] [u'gillett', u'husband', u'struggl', u'forgiv', u'driver'] [u'gladston', u'consid', u'zinc', u'project'] [u'gold', u'coast', u'shark', u'net', u'review'] [u'good', u'snow', u'creat', u'macedon', u'excit'] [u'govt', u'add', u'fund', u'beat', u'cane', u'toad'] [u'govt', u'announc', u'gippsland', u'extens'] [u'govt', u'dept', u'wrap', u'casino', u'tiger', u'probe'] [u'govt', u'review', u'terror', u'law'] [u'great', u'britain', u'long', u'link', u'south'] [u'green', u'group', u'see', u'threat', u'biodivers', u'bank'] [u'group', u'upset', u'charg', u'lay', u'river', u'open'] [u'gryll', u'back', u'telstra', u'sale', u'condit'] [u'hackett', u'look', u'forward', u'break', u'montreal'] [u'hall', u'creek', u'join', u'youth', u'festiv'] [u'health', u'confer', u'hear', u'benefit', u'earli'] [u'heavi', u'cyclon', u'activ', u'predict', u'north'] [u'highway', u'audit', u'highlight', u'good'] [u'homosexu', u'bangladeshi', u'fear', u'persecut'] [u'husband', u'plead', u'guilti', u'wife', u'slay'] [u'illawarra', u'host', u'event'] [u'investig', u'focus', u'plan', u'brake', u'crash'] [u'iraqi', u'constitut', u'meet', u'postpon'] [u'give', u'develop', u'nation', u'help', u'hand'] [u'chang', u'worri', u'local', u'union'] [u'islam', u'group', u'blast', u'british'] [u'islam', u'leader', u'comment', u'scrutini'] [u'israel', u'plan', u'hous', u'west', u'bank'] [u'jackson', u'juror', u'spill', u'bean', u'trial', u'wrangl'] [u'japanes', u'exchang', u'student', u'head', u'break', u'hill'] [u'kelli', u'turn', u'wellington', u'jail'] [u'kojonup', u'council', u'beat', u'financ'] [u'korean', u'hiroshima', u'victim', u'rememb'] [u'korp', u'lawyer', u'seek', u'clarif', u'charg'] [u'land', u'council', u'welcom', u'uranium', u'decis'] [u'langer', u'gilli', u'australia'] [u'langer', u'vigil'] [u'late', u'ralli', u'push', u'market', u'higher'] [u'lawyer', u'predict', u'nation', u'cadet'] [u'lead', u'busi', u'figur', u'die'] [u'lollypop', u'peopl', u'extens'] [u'london', u'bomb', u'everyday', u'item'] [u'london', u'bomb', u'suspect', u'appear', u'court'] [u'mackay', u'driver', u'jail', u'dead', u'crash'] [u'charg', u'mother', u'murder'] [u'jail', u'molest', u'sleep', u'woman', u'plane'] [u'jail', u'launceston', u'rape'] [u'plead', u'guilti', u'sydney', u'woman', u'murder'] [u'maralinga', u'survivor', u'speak', u'uranium', u'mine'] [u'maria', u'korp', u'die'] [u'marshal', u'holler', u'local', u'knowledg', u'help'] [u'mayor', u'urg', u'public', u'vandal'] [u'play', u'ball', u'final', u'negoti'] [u'mcgrath', u'aim', u'fourth', u'test', u'return', u'freak'] [u'memori', u'servic', u'recognis', u'cyclist', u'determin'] [u'militari', u'coup', u'hindranc', u'woodsid', u'african'] [u'militari', u'prepar', u'futur', u'iraq', u'deploy'] [u'minist', u'lament', u'inabl', u'overturn'] [u'minist', u'open', u'landcar', u'forum'] [u'crop', u'late', u'plant'] [u'multivitamin', u'supplement', u'fail', u'prevent'] [u'muslim', u'cleric', u'follow', u'risk'] [u'nasa', u'clear', u'discoveri', u'land'] [u'nation', u'consid', u'moor', u'offic'] [u'nation', u'stir', u'forest', u'privatis', u'claim'] [u'counter', u'terror', u'measur', u'consid'] [u'date', u'cross', u'citi', u'tunnel', u'open'] [u'deal', u'benefit', u'carer'] [u'newmont', u'pollut', u'trial', u'begin', u'indonesia'] [u'nineteen', u'african', u'migrant', u'drown', u'morocco'] [u'preview', u'round'] [u'govern', u'unveil', u'plan', u'cope'] [u'govt', u'announc', u'sydney', u'evacu', u'plan'] [u'govt', u'royalti'] [u'move', u'closer', u'bush', u'road', u'fund'] [u'correct', u'say', u'union', u'bulli', u'offic'] [u'onlin', u'applic', u'help', u'albani', u'gap'] [u'parrot', u'zone', u'stop', u'barmah', u'log'] [u'peel', u'valley', u'irrig', u'alloc'] [u'phoenix', u'snap', u'swift', u'streak'] [u'plane', u'make', u'emerg', u'land', u'beach'] [u'plan', u'icon', u'desert', u'knowledg'] [u'call', u'special', u'terror', u'summit'] [u'conven', u'terror', u'summit'] [u'polic', u'arrest', u'fail', u'london', u'attack'] [u'polic', u'charg', u'sister', u'london', u'bomb', u'probe'] [u'polic', u'didnt', u'mean', u'deceiv', u'mulrunji', u'partner'] [u'policeman', u'seek', u'liber', u'preselect', u'ripon'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'recov', u'steal', u'camera', u'gear'] [u'polic', u'warn', u'calder', u'crackdown'] [u'potato', u'grower', u'disappoint', u'mccain', u'turn'] [u'prehypertens', u'tripl', u'heart', u'attack', u'risk', u'studi'] [u'public', u'leisur', u'centr', u'pool'] [u'public', u'wait', u'recycl', u'bin'] [u'cotton', u'press', u'ahead', u'namoi', u'deal'] [u'stand', u'uranium', u'mine', u'opposit'] [u'region', u'airlin', u'lobbi', u'telco', u'servic'] [u'reliev', u'flintoff', u'rue', u'run', u'away'] [u'rescuer', u'free', u'boy', u'drain'] [u'rescuer', u'free', u'trap', u'whale'] [u'resid', u'fear', u'hotel', u'extend', u'trade', u'hour', u'plan'] [u'resid', u'oppos', u'woodsid', u'process', u'plant'] [u'resort', u'heart', u'improv', u'snow', u'condit'] [u'rider', u'trek', u'help', u'break', u'child', u'poverti', u'cycl'] [u'river', u'flood', u'level', u'eas'] [u'rockhampton', u'hospit', u'wait', u'worri'] [u'club', u'get', u'repriev'] [u'rspca', u'outrag', u'latest', u'puppi', u'dump'] [u'rural', u'apprentic', u'plan', u'help', u'address', u'work', u'shortag'] [u'russian', u'mini', u'stick', u'seab'] [u'saint', u'extend', u'cat', u'out'] [u'sale', u'save', u'caravan', u'park'] [u'head', u'resign'] [u'selga', u'look', u'transport', u'plan', u'detail'] [u'senat', u'brush', u'expuls', u'threat'] [u'servic', u'rememb', u'cowra', u'breakout', u'victim'] [u'sever', u'burn', u'girl', u'critic'] [u'shear', u'school', u'popular', u'rural', u'worker'] [u'sleep', u'judg', u'rule', u'unfit', u'bench'] [u'plan', u'evacu', u'sydney', u'terrorist', u'strike'] [u'campbel', u'miss', u'premiership', u'open'] [u'south', u'east', u'attract', u'includ', u'guid'] [u'speargun', u'killer', u'jail', u'year'] [u'state', u'request', u'guarante'] [u'state', u'challeng', u'law'] [u'storm', u'recoveri', u'fund', u'help', u'rebuild', u'effort'] [u'student', u'strike', u'compulsori', u'union', u'plan'] [u'studi', u'tran', u'continent', u'rail', u'line'] [u'sudan', u'riot', u'death', u'toll', u'hit'] [u'surgeon', u'describ', u'patel', u'techniqu', u'uniqu'] [u'workplac', u'relat', u'staff', u'strike'] [u'telecom', u'lift', u'profit'] [u'telstra', u'distanc'] [u'thomson', u'river', u'flow', u'boost'] [u'thousand', u'visit', u'machineri', u'field', u'day'] [u'tourism', u'chief', u'step'] [u'transport', u'firm', u'creditor', u'meet'] [u'trio', u'charg', u'sydney', u'brawl'] [u'union', u'fear', u'indigen', u'institut'] [u'unregist', u'surgeon', u'danger', u'patient'] [u'unsettl', u'jena', u'report', u'quit', u'newcastl'] [u'uranium', u'creat', u'confus'] [u'firm', u'buy', u'adelaid', u'game', u'maker'] [u'navi', u'join', u'russia', u'submarin', u'rescu'] [u'plan', u'mass', u'guantanamo', u'prison', u'transfer'] [u'voluntari', u'vote', u'nation', u'agenda'] [u'wast', u'dump', u'oppon', u'seek', u'ballarat', u'support'] [u'watkin', u'deni', u'cabinet', u'resign', u'claim'] [u'welfar', u'propos', u'discuss'] [u'wenger', u'wont', u'imit', u'chelsea', u'cash', u'splash'] [u'whale', u'calf', u'stick', u'rope'] [u'whale', u'drawcard', u'west', u'coast', u'tourist'] [u'white', u'face', u'toughest', u'examin'] [u'windsor', u'attack', u'telstra', u'rural', u'plan'] [u'woman', u'robberi', u'sentenc', u'suspend'] [u'worker', u'shortag', u'put', u'squeez', u'citrus', u'industri'] [u'workingman', u'club', u'record', u'loss'] [u'yackandandah', u'die', u'road', u'crash'] [u'yahoo', u'launch', u'audio', u'search', u'servic'] [u'million', u'evacu', u'typhoon', u'hit', u'china'] [u'accid', u'clean', u'close', u'pacif', u'highway'] [u'base', u'evacu', u'plan', u'sydney', u'model'] [u'program', u'focus', u'darwin', u'rioli'] [u'franc', u'plane', u'land'] [u'alic', u'spring', u'resid', u'rememb', u'hiroshima', u'explos'] [u'australian', u'mauritania', u'account', u'dfat'] [u'anchor', u'hinder', u'rescu', u'russian'] [u'annan', u'urg', u'action', u'nuclear', u'prolifer'] [u'answer', u'seek', u'polic', u'complaint', u'blunder'] [u'anti', u'insurg', u'oper', u'target', u'western', u'iraq'] [u'ashley', u'gile'] [u'australia', u'trail', u'run'] [u'bashir', u'final', u'appeal', u'bali', u'bomb', u'reject'] [u'beat', u'classic', u'road', u'screen'] [u'beatti', u'urg', u'target', u'counter', u'terror', u'measur'] [u'bond', u'licens', u'bowl'] [u'britain', u'team', u'join', u'russian', u'rescu'] [u'bushfir', u'coron', u'challeng', u'appropri', u'stanhop'] [u'camp', u'cull', u'postpon'] [u'captain', u'concern', u'detain', u'crew', u'welfar'] [u'caus', u'garang', u'crash', u'death', u'unclear'] [u'ceremoni', u'mark', u'hiroshima', u'horror'] [u'civic', u'rebuild', u'current', u'agenc', u'properti'] [u'civoniceva', u'miss', u'man', u'clash'] [u'cocain', u'cours', u'italian', u'waterway'] [u'craig', u'smith', u'interview'] [u'crew', u'detent', u'concern', u'maritim', u'union'] [u'crow', u'count', u'home', u'final'] [u'crow', u'prolong', u'demon', u'woe'] [u'davenport', u'serena', u'withdraw', u'open'] [u'detent', u'centr', u'detail', u'firm'] [u'discoveri', u'crew', u'prepar', u'trip', u'home'] [u'discoveri', u'undock'] [u'discoveri', u'undock', u'space', u'station'] [u'eel', u'romp', u'home', u'warrior'] [u'england', u'take', u'inning', u'lead'] [u'english', u'offici', u'swear', u'clamp', u'refere'] [u'explod', u'cylind', u'kill'] [u'expo', u'showcas', u'region', u'work', u'opportun'] [u'famili', u'hear', u'aussi', u'ski', u'death'] [u'figo', u'complet', u'inter'] [u'finnish', u'discus', u'coach', u'catch', u'drug'] [u'flintoff', u'counterattack', u'amid', u'carnag'] [u'forestri', u'chief', u'deni', u'exagger', u'lobbi', u'threat'] [u'gatlin', u'champion', u'stumbl'] [u'prais', u'late', u'king', u'saudi', u'arabia', u'visit'] [u'gilchrist', u'gillespi', u'australia'] [u'govt', u'dismiss', u'move', u'undermin', u'chang'] [u'grant', u'lead', u'demolit', u'eagl'] [u'gronholm', u'edg', u'loeb', u'lead', u'ralli', u'finland'] [u'guantanamo', u'repatri', u'plan', u'wont', u'includ', u'hick'] [u'hall', u'help', u'swan', u'histor'] [u'hiroshima', u'honour', u'bomb', u'victim'] [u'hiroshima', u'ralli', u'seek', u'iraq'] [u'hiroshima', u'rememb'] [u'iemma', u'stand', u'decis', u'releas', u'evacu', u'plan'] [u'inquest', u'seek', u'mental', u'health', u'patient', u'death'] [u'rate', u'concern', u'depress', u'market'] [u'iran', u'presid', u'pledg', u'defend', u'islam'] [u'japanes', u'charg', u'continu', u'diego'] [u'judg', u'rule', u'vinci', u'code', u'reproduct'] [u'justin', u'langer', u'interview'] [u'knight', u'dent', u'bulldog', u'final', u'hop'] [u'labor', u'urg', u'cooper', u'counter', u'terror'] [u'strike', u'lunch'] [u'lennon', u'move', u'undermin', u'chang'] [u'spark', u'power', u'action'] [u'mini', u'emerg', u'continu'] [u'worldcom', u'execut', u'jail'] [u'mosqu', u'warn', u'polic', u'bomber'] [u'nasa', u'readi', u'launch', u'despit', u'foam', u'problem'] [u'nathan', u'fien', u'john', u'morri', u'interview'] [u'advic', u'hardlin', u'group', u'ruddock', u'say'] [u'regret'] [u'opposit', u'call', u'central', u'coast', u'water'] [u'retain', u'uranium', u'mine', u'royalti'] [u'pest', u'blame', u'hermit', u'crab', u'boom'] [u'ogilvi', u'touch', u'colorado'] [u'ogilvi', u'lead', u'intern', u'field'] [u'kill', u'typhoon', u'lash', u'china'] [u'outcri', u'promot'] [u'pavlich', u'keep', u'docker', u'final', u'hop', u'aliv'] [u'pavlich', u'star', u'docker', u'stay', u'aliv'] [u'petrol', u'changeov', u'link', u'crime', u'rise'] [u'polic', u'inform', u'miss', u'biki'] [u'polic', u'deni', u'complaint', u'blunder', u'warrant', u'inquiri'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'privaci', u'breach', u'regrett', u'minist', u'say'] [u'polit', u'meet', u'literatur', u'byron', u'festiv'] [u'premiership', u'transfer', u'million', u'pound'] [u'privaci', u'breach', u'blame', u'human', u'error'] [u'protest', u'warn', u'clear', u'dredg'] [u'racq', u'seek', u'updat', u'withdraw', u'radar'] [u'ratbag', u'offer', u'good', u'refus'] [u'rescuer', u'expect', u'whale', u'recoveri'] [u'roddick', u'paradorn', u'washington', u'semi', u'final'] [u'ross', u'johnson', u'quarter'] [u'russia', u'attempt', u'drag', u'safeti'] [u'russia', u'find', u'bird', u'case'] [u'santo', u'hold', u'high', u'hop', u'kyrgyzstan', u'explor'] [u'search', u'call', u'injur', u'whale'] [u'secret', u'tap', u'reveal', u'monro', u'muse'] [u'secur', u'tight', u'garang', u'funer'] [u'seven', u'shark', u'torch', u'storm'] [u'sheikh', u'invit', u'muslim', u'confer', u'question'] [u'strip', u'club', u'sign', u'raci', u'neighbour'] [u'studi', u'connect', u'dream', u'wake', u'life'] [u'sudan', u'bid', u'rebel', u'leader', u'farewel'] [u'tasmanian', u'servic', u'mark', u'hiroshima', u'bomb'] [u'tasmanian', u'lead', u'drug', u'bust'] [u'scrap', u'benefit', u'busi', u'iemma', u'say'] [u'technolog', u'centr', u'improv', u'hardwood'] [u'terror', u'law', u'preserv', u'aust', u'valu', u'bishop'] [u'thousand', u'isra', u'farewel', u'shoot', u'victim'] [u'thousand', u'rememb', u'anniversari', u'hiroshima'] [u'charg', u'bomb', u'probe'] [u'thunderbird', u'strong', u'darter'] [u'charg', u'sydney', u'drug', u'raid'] [u'terror', u'power', u'generat', u'human', u'right', u'fear'] [u'underwat', u'bomb', u'test', u'greenpeac'] [u'team', u'head', u'iran', u'nuclear', u'monitor'] [u'back', u'solut', u'nuclear', u'disput'] [u'britain', u'join', u'russian', u'rescu', u'effort'] [u'lift', u'censorship', u'dead', u'soldier', u'return'] [u'warn', u'give', u'australia', u'hope'] [u'warn', u'england', u'slide'] [u'seek', u'assur', u'underwat', u'bomb', u'test'] [u'stargaz', u'chanc', u'shuttl'] [u'webster', u'foster', u'shine', u'gleneagl'] [u'welfar', u'author', u'focus', u'famili', u'unit'] [u'whale', u'entangl', u'coast'] [u'wollongong', u'road', u'crack', u'riverb'] [u'woman', u'bodi', u'backyard'] [u'reward', u'offer', u'murder', u'probe'] [u'nigerian', u'vigilant', u'custodi'] [u'dead', u'mexico', u'firework', u'explos'] [u'afghan', u'polic', u'seiz', u'tonn', u'explos'] [u'alleg', u'bomber', u'charg', u'london', u'attack'] [u'call', u'elect', u'law', u'overhaul'] [u'anti', u'protest', u'march', u'bush', u'ranch'] [u'asbesto', u'task', u'forc', u'hand', u'report'] [u'australia', u'deep', u'troubl', u'seven'] [u'beazley', u'back', u'fair', u'dinkum', u'food', u'campaign'] [u'beckman', u'grab', u'lead', u'intern'] [u'bioterror', u'diseas', u'track', u'expand'] [u'bird', u'vaccin', u'test', u'promis'] [u'birney', u'blast', u'union', u'term'] [u'black', u'cap', u'maintain', u'field', u'focus'] [u'bok', u'beat', u'black', u'nation', u'thriller'] [u'bomb', u'kill', u'iraq'] [u'british', u'foreign', u'secretari', u'robin', u'cook', u'die'] [u'british', u'robot', u'resum', u'work', u'free', u'russian'] [u'british', u'soldier', u'injur', u'iraq', u'blast'] [u'bronco', u'confid', u'break', u'brookval', u'jinx'] [u'celtic', u'kick', u'start', u'season', u'easi', u'victori'] [u'clark', u'martyn', u'australia', u'past'] [u'confus', u'surround', u'stricken', u'sub', u'status'] [u'coonan', u'see', u'learn', u'curv', u'telstra', u'boss'] [u'cuban', u'singer', u'ibrahim', u'ferrer', u'die'] [u'davi', u'claim', u'benelux', u'stage'] [u'death', u'donat', u'anim', u'worri', u'keeper'] [u'dept', u'defend', u'ruddock', u'comment', u'islam', u'group'] [u'develop', u'plan', u'threaten', u'rid', u'school'] [u'dibaba', u'cut', u'rival', u'olymp', u'champion', u'feel'] [u'discoveri', u'crew', u'complet', u'final', u'check'] [u'discoveri', u'land', u'schedul'] [u'dredg', u'protest', u'call'] [u'drought', u'caus', u'macadamia', u'price', u'rise'] [u'dyer', u'sign', u'newcastl'] [u'earthquak', u'toppl', u'thousand', u'chines', u'home'] [u'england', u'snatch', u'edgbaston'] [u'excel', u'award', u'tourist', u'attract'] [u'expert', u'gather', u'review', u'blood', u'disord', u'treatment'] [u'father', u'call', u'hickss', u'return'] [u'flexibl', u'stem', u'cell', u'placenta'] [u'flintoff', u'put', u'australia', u'rope'] [u'flintoff', u'revel', u'round', u'super'] [u'book', u'slam', u'hawk'] [u'foreign', u'secretari', u'robin', u'cook', u'die'] [u'gene', u'leukaemia', u'treatment'] [u'govt', u'rule', u'agenc', u'nurs', u'hobart', u'hospit'] [u'govt', u'stand', u'firm', u'telstra', u'sale', u'talk'] [u'govt', u'urg', u'recognis', u'hick', u'trial', u'concern'] [u'green', u'plan', u'senat', u'presid'] [u'green', u'plan', u'food', u'label'] [u'green', u'withhold', u'prefer', u'elect'] [u'gronholm', u'extend', u'lead', u'loeb', u'finland'] [u'hackett', u'plan', u'program', u'short', u'cours', u'meet'] [u'hackett', u'schipper', u'continu', u'world', u'form'] [u'heat', u'jone', u'ahead', u'black', u'showdown'] [u'hiddink', u'wont', u'time', u'turn', u'socceroo', u'round'] [u'howard', u'plan', u'meet', u'muslim', u'cleric'] [u'howard', u'spell', u'uranium', u'polici'] [u'howard', u'meet', u'muslim', u'leader'] [u'hundr', u'attend', u'protest'] [u'india', u'pakistan', u'nuclear', u'deal'] [u'internet', u'time', u'high'] [u'interview', u'andrew', u'flintoff', u'shane', u'warn'] [u'investig', u'suspect', u'arson', u'shop', u'raze'] [u'iran', u'reject', u'nuclear', u'compromis'] [u'iraq', u'hammer', u'bush', u'poll', u'rat'] [u'chang', u'concern', u'terror', u'beazley'] [u'israel', u'approv', u'batch', u'evacu'] [u'israel', u'consid', u'lock', u'pullout', u'oppon'] [u'maxwel', u'wrap'] [u'john', u'lang', u'ricki', u'stuart', u'interview'] [u'jone', u'fin', u'hayden', u'send'] [u'kestrel', u'demolish', u'firebird'] [u'kyli', u'minogu', u'plight', u'boost', u'cancer', u'screen'] [u'labor', u'seek', u'fair', u'trial', u'hick'] [u'lion', u'smash', u'hapless', u'hawk', u'gabba'] [u'local', u'council', u'confer', u'mull', u'merger'] [u'london', u'attempt', u'bomb', u'suspect', u'charg'] [u'hospitalis', u'bike', u'accid'] [u'mauritanian', u'coup', u'leader', u'wont', u'elect'] [u'melbourn', u'factori', u'blaze', u'prompt', u'health', u'warn'] [u'troubl', u'hear', u'women', u'research'] [u'michael', u'vaughan', u'andrew', u'flintoff', u'interview'] [u'muslim', u'leader', u'back', u'howard', u'anti', u'terror', u'meet'] [u'abduct', u'alert', u'safeguard', u'children'] [u'korean', u'nuclear', u'talk', u'recess'] [u'ralli', u'challeng', u'agenda'] [u'ormsbi', u'fire', u'gleneagl', u'content'] [u'pakistan', u'close', u'refuge', u'camp'] [u'panther', u'surviv', u'rooster', u'charg'] [u'vendor', u'sack', u'opposit'] [u'perth', u'build', u'industri', u'feel', u'coerciv', u'power'] [u'photograph', u'stake', u'britney', u'spear', u'shoot'] [u'polic', u'investig', u'suspect', u'murder'] [u'polic', u'warn', u'speed', u'wont', u'toler'] [u'port', u'final', u'content'] [u'quick', u'tell', u'leav', u'labor'] [u'rare', u'tree', u'plant', u'brisban'] [u'suggest', u'halt', u'fight'] [u'rescuer', u'race', u'save', u'russian', u'crew'] [u'rescuer', u'russian', u'free'] [u'roar', u'hold', u'sydney', u'scoreless', u'miss', u'semi', u'spot'] [u'roddick', u'dump', u'paradorn', u'reach', u'washington', u'final'] [u'ross', u'secur', u'semi', u'final', u'spot'] [u'russian', u'sailor', u'rescu'] [u'russian', u'resurfac'] [u'look', u'british', u'doctor', u'eas', u'shortag'] [u'trial', u'home', u'treatment', u'respons', u'team'] [u'saudi', u'pass', u'inform', u'london', u'attack'] [u'save', u'russian', u'sailor', u'take', u'hospit'] [u'scientist', u'work', u'har', u'oliv', u'tree', u'anti', u'oxid'] [u'scorch', u'heat', u'fuel', u'european', u'fire'] [u'sculli', u'say', u'polic', u'riot', u'gear', u'problem', u'solv'] [u'eagl', u'extend', u'bronco', u'brookval', u'hoodoo'] [u'secur', u'govt', u'number', u'prioriti'] [u'sicili', u'crash', u'land', u'kill'] [u'springbok', u'lock', u'matfield', u'cite'] [u'steve', u'folk', u'michael', u'hagan', u'interview'] [u'steve', u'menzi', u'michael', u'monaghan', u'wayn', u'bennett'] [u'stuart', u'raper', u'craig', u'bellami', u'interview'] [u'submarin', u'satisfactori', u'rescu'] [u'sydney', u'melbourn', u'host', u'semi'] [u'teen', u'injur', u'boat', u'accid'] [u'telstra', u'sale', u'rank', u'terror', u'issu', u'howard'] [u'tent', u'embassi', u'legitim', u'protest', u'site', u'founder'] [u'termin', u'protest', u'grin', u'spin'] [u'thompson', u'roo', u'narrow'] [u'thousand', u'attend', u'protest'] [u'tiger', u'roll', u'raider'] [u'sheen', u'matthew', u'elliott', u'interview'] [u'tonga', u'order', u'public', u'servant', u'work'] [u'appeal', u'urgent', u'niger'] [u'union', u'struggl', u'fee', u'strand', u'crew'] [u'warn', u'end', u'flintoff', u'defianc'] [u'warn', u'go', u'rearguard', u'continu'] [u'weari', u'peng', u'end', u'pierc', u'sugiyama', u'meet'] [u'wender', u'work', u'earn', u'leopard', u'honour'] [u'windi', u'stun', u'lanka', u'hop', u'aliv'] [u'wolv', u'ukrain', u'attack', u'dozen'] [u'worker', u'compo', u'stoush', u'disrupt', u'labor', u'confer'] [u'york', u'struggl', u'adapt', u'littbarski', u'admit'] [u'zambia', u'extradit', u'terror', u'suspect', u'britain'] [u'zimbabw', u'toss', u'field'] [u'abalon', u'fish', u'fine', u'wont', u'deter', u'atsic'] [u'await', u'court', u'decis', u'gungahlin', u'project'] [u'govt', u'scrap', u'assembl', u'size'] [u'adamson', u'career', u'prematur'] [u'tribun', u'busi', u'week'] [u'agenc', u'join', u'forc', u'campaign', u'blackberri'] [u'condit', u'compani', u'admit', u'price', u'fix'] [u'franc', u'plane', u'land', u'late'] [u'call', u'review', u'natur', u'resourc', u'group'] [u'black', u'replac', u'scrum', u'half'] [u'argo', u'profit', u'surg'] [u'armidal', u'punter', u'tribut', u'trainer'] [u'art', u'student', u'protest', u'bathurst'] [u'asparagus', u'contain', u'earn', u'award', u'cliff', u'firm'] [u'aztec', u'reveal', u'koolan', u'project'] [u'babi', u'whale', u'bodi', u'tow'] [u'weather', u'delay', u'shuttl', u'land'] [u'beatti', u'appeal', u'environment', u'vote'] [u'beatti', u'order', u'patel', u'patient'] [u'bendigo', u'bank', u'offic', u'develop', u'contractor'] [u'bendigo', u'rental', u'market', u'remain', u'steadi'] [u'board', u'chief', u'highlight', u'meninde', u'pooncari'] [u'board', u'play', u'secur', u'breach'] [u'brindal', u'focus', u'famili', u'affair'] [u'break', u'hill', u'confer'] [u'break', u'thumb', u'sherwin'] [u'implement', u'petrol', u'sniff'] [u'go', u'public', u'hous'] [u'cane', u'toad', u'prompt', u'better', u'croc', u'autopsi'] [u'cat', u'ponder', u'punish', u'drunken', u'pair'] [u'chamber', u'back', u'govt', u'skill', u'shortag', u'scheme'] [u'chamber', u'beat', u'retail', u'market'] [u'chang', u'afoot', u'hunter', u'servic'] [u'charg', u'lay', u'wodonga', u'theft'] [u'chile', u'consid', u'limit', u'easter', u'immigr'] [u'christian', u'kick', u'nation', u'campaign'] [u'cleric', u'warn', u'polic', u'london', u'suspect'] [u'clerk', u'warn', u'greater', u'senat', u'effici', u'unlik'] [u'club', u'race', u'bonus', u'track', u'improv'] [u'commission', u'deni', u'put', u'kid', u'risk'] [u'commission', u'receiv', u'brief', u'confidenti'] [u'communiti', u'group', u'help', u'cost'] [u'compani', u'director', u'jail', u'steal', u'stamp', u'duti'] [u'corser', u'extend', u'lead', u'superbik', u'stand'] [u'costello', u'find', u'vail', u'telstra', u'plan', u'reason'] [u'costello', u'prais', u'vail', u'telstra', u'fund', u'plan'] [u'council', u'rais', u'hous', u'afford', u'concern'] [u'court', u'unsympathet', u'repeat', u'abalon', u'poacher'] [u'cousin', u'confid', u'eagl', u'rebound'] [u'cruis', u'ship', u'expect', u'lift', u'bunburi', u'job'] [u'cyclist', u'die', u'truck', u'collis'] [u'databas', u'highlight', u'citi', u'countri', u'incom', u'divid'] [u'demolit', u'start', u'renov', u'public', u'hous', u'estat'] [u'discoveri', u'crew', u'readi', u'land'] [u'doctor', u'group', u'back', u'local', u'hospit', u'board'] [u'engin', u'firm', u'lose', u'worker'] [u'england', u'win', u'epic', u'second', u'test'] [u'enter', u'bayu', u'undan', u'pipelin'] [u'forest', u'industri', u'assn', u'condemn', u'green', u'campaign'] [u'lynch', u'iraq', u'symbol'] [u'parliamentari', u'clerk', u'face', u'corrupt'] [u'funer', u'industri', u'rep', u'statewid'] [u'coincid', u'meatwork', u'upgrad'] [u'geelong', u'fin', u'young', u'cat'] [u'genet', u'screen', u'help', u'prevent', u'heart', u'relat'] [u'giant', u'advanc', u'semi', u'final'] [u'goosen', u'captur', u'intern'] [u'govt', u'paper', u'canvass', u'indigen', u'educ'] [u'govt', u'ipswich', u'motorway', u'upgrad'] [u'govt', u'higher', u'water', u'price'] [u'gronholm', u'end', u'loeb', u'win', u'streak', u'finland'] [u'gulf', u'resid', u'warn', u'opposit', u'uranium', u'mine'] [u'hanson', u'elector', u'windfal', u'spark', u'concern'] [u'harri', u'potter', u'popular', u'guantanamo', u'detaine'] [u'health', u'servic', u'make', u'surgeri', u'pledg'] [u'hoteli', u'unconvinc', u'nightclub', u'licens', u'chang'] [u'howard', u'refus', u'iraq', u'deadlin'] [u'husband', u'killer', u'seek', u'pardon', u'refus', u'reason'] [u'iaea', u'inspector', u'arriv', u'iranian', u'nuclear', u'plant'] [u'iemma', u'seek', u'brief', u'clearanc'] [u'immigr', u'dept', u'deni', u'stymi', u'solon', u'inquiri'] [u'immigr', u'learn', u'palmer', u'committe'] [u'incontin', u'devic', u'undergo', u'trial'] [u'india', u'ride', u'yuvraj', u'centuri', u'enter', u'seri'] [u'inflat', u'forecast', u'push', u'market', u'record', u'close'] [u'injuri', u'worri', u'lion', u'player'] [u'iran', u'restart', u'uranium', u'convers', u'facil'] [u'iraqi', u'soldier', u'fear', u'leav', u'train', u'base'] [u'chang', u'mask', u'real', u'econom', u'issu', u'beazley'] [u'chang', u'includ', u'parent', u'right', u'rule'] [u'irrig', u'higher', u'water', u'price'] [u'islam', u'group', u'question', u'time', u'threat'] [u'japanes', u'charter', u'flight', u'boost', u'alic', u'tourism'] [u'japanes', u'tip', u'snap', u'elect'] [u'japanes', u'polit', u'leader', u'face', u'post'] [u'retail', u'trade', u'slip'] [u'kalgoorli', u'base', u'mine', u'forum', u'prove', u'popular'] [u'kimberley', u'resid', u'prepar', u'german', u'pilgrimag'] [u'kluft', u'retain', u'heptathlon', u'titl'] [u'koizumi', u'call', u'snap', u'japanes', u'elect'] [u'lake', u'entranc', u'cri', u'foul', u'snub'] [u'council', u'sign', u'environment', u'agreement'] [u'latham', u'doubt', u'black', u'clash'] [u'legal', u'proceed', u'cost', u'govern', u'time'] [u'lenton', u'smash', u'freestyl', u'short', u'cours'] [u'liber', u'dental', u'practic', u'scrutini'] [u'liber', u'parti', u'select', u'braddon', u'candid'] [u'liber', u'strong', u'field', u'ballarat', u'seat'] [u'listen', u'cosgrov', u'iraq', u'exit', u'beazley'] [u'lord', u'mayor', u'push', u'save', u'water', u'messag'] [u'loss', u'weaken', u'bear', u'minor', u'premiership', u'hop'] [u'die', u'highway', u'road', u'crash'] [u'match', u'review', u'panel', u'seven', u'charg'] [u'mayor', u'push', u'deniliquin', u'benefit', u'expo'] [u'mccain', u'work', u'farmer', u'potato', u'cost'] [u'mccullum', u'vettori', u'spare', u'zealand', u'blush'] [u'meet', u'boost', u'selga', u'transport', u'confid'] [u'meet', u'discuss', u'hospit', u'site'] [u'meet', u'debat', u'alburi', u'hospit', u'manag'] [u'militari', u'exercis', u'invad', u'north', u'coast'] [u'minist', u'sympathet', u'road', u'fund'] [u'mock', u'rescu', u'crew', u'test'] [u'peopl', u'urg', u'join', u'voluntari', u'fish', u'scheme'] [u'rainwat', u'tank', u'futur'] [u'talk', u'seek', u'scallop', u'trawler', u'woe'] [u'isra', u'gaza', u'pullout', u'poll'] [u'motorist', u'smaller', u'car', u'petrol', u'price', u'rise'] [u'call', u'action', u'fatigu', u'accid'] [u'baldi', u'agre', u'ongo', u'supervis'] [u'narromin', u'blaze', u'burn', u'day'] [u'netanyahu', u'resign'] [u'auction', u'centr', u'anger', u'woolgrow'] [u'banana', u'shire'] [u'roster', u'lure', u'staff'] [u'news', u'anchor', u'jen', u'die'] [u'senat', u'urg', u'oppos', u'student', u'union', u'law'] [u'work', u'govt', u'address', u'rural', u'skill'] [u'clue', u'mysteri', u'piano'] [u'nowra', u'gather', u'discuss', u'chang'] [u'judiciari', u'hand', u'charg'] [u'premiership', u'wide', u'open', u'bennett'] [u'revamp', u'polic', u'promot'] [u'govt', u'fight', u'uranium', u'mine'] [u'field', u'brawl', u'rais', u'curung', u'readmiss'] [u'offici', u'urg', u'fan', u'support', u'leagu'] [u'price', u'record', u'high'] [u'opposit', u'call', u'simpl', u'evacu', u'procedur'] [u'opposit', u'highlight', u'fall', u'japanes', u'tourist'] [u'opposit', u'parti', u'senat', u'relev'] [u'opposit', u'rehous', u'parliament', u'secur', u'upgrad'] [u'opposit', u'say', u'survey', u'highlight', u'standard'] [u'outback', u'pastor', u'countri', u'continu', u'market', u'boom'] [u'pakenham', u'bypass', u'work', u'start'] [u'parent', u'leav', u'condit'] [u'pedestrian', u'die', u'highway', u'mishap'] [u'pest', u'detect', u'program', u'save', u'forest', u'industri'] [u'pierc', u'thrash', u'sugiyama', u'diego', u'titl'] [u'plan', u'commiss', u'await', u'gunn', u'pulp', u'detail'] [u'polic', u'hope', u'post', u'mortem', u'clue', u'murder'] [u'polic', u'investig', u'ident', u'dead'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'reaffirm', u'winter', u'road', u'safeti', u'warn'] [u'polic', u'warn', u'fake', u'money'] [u'pont', u'confid', u'test'] [u'power', u'station', u'pollut', u'upgrad'] [u'privaci', u'commission', u'investig', u'polic', u'bungl'] [u'probe', u'launch', u'sawmil', u'blaze'] [u'properti', u'investor', u'warn', u'price', u'soft', u'land'] [u'public', u'input', u'griffith', u'health', u'plan'] [u'public', u'yamba', u'effluent'] [u'public', u'urg', u'taxi', u'review'] [u'public', u'urg', u'ignor', u'sack', u'claim'] [u'nation', u'weigh', u'telstra', u'trust', u'fund'] [u'question', u'rais', u'saleyard', u'sale', u'reject'] [u'ralli', u'highlight', u'opposit', u'chang'] [u'ralli', u'offer', u'support', u'timber', u'worker'] [u'see', u'inflat', u'risk', u'drop'] [u'signal', u'stabl', u'rat', u'continu'] [u'region', u'race', u'group', u'hold', u'meet'] [u'rescuer', u'scrambl', u'free', u'trap', u'chines', u'miner'] [u'research', u'aim', u'elimin', u'antibiot'] [u'road', u'death', u'worri', u'polic'] [u'russia', u'thank', u'submarin', u'rescuer'] [u'trial', u'treatment', u'program'] [u'savill', u'world', u'champ'] [u'scientist', u'address', u'exploit', u'world'] [u'secur', u'upgrad', u'forc', u'parliamentari', u'offic'] [u'shire', u'sell', u'alpin', u'asset'] [u'resort', u'welcom', u'overnight', u'snow'] [u'south', u'african', u'gold', u'miner', u'strike', u'disput'] [u'stagnant', u'fund', u'impact', u'patient', u'diabet', u'bodi'] [u'state', u'fund', u'improv', u'live', u'children'] [u'storm', u'photo', u'winner', u'decid'] [u'strike', u'worker', u'appeal', u'tongan', u'princess'] [u'student', u'protest', u'union', u'move'] [u'support', u'grow', u'push', u'wast', u'dump'] [u'survey', u'highlight', u'need', u'infrastructur', u'upgrad'] [u'tate', u'confid', u'ankl', u'injuri'] [u'tebbutt', u'contest', u'marrickvill', u'elect'] [u'teen', u'jail', u'sword', u'attack', u'gang', u'fight'] [u'teen', u'plead', u'guilti', u'case'] [u'ball', u'kasper', u'forget'] [u'thousand', u'flock', u'louth', u'picnic', u'race'] [u'threat', u'close', u'mission', u'saudia', u'arabia'] [u'remand', u'fail', u'london', u'bomb'] [u'timber', u'plantat', u'industri', u'expans', u'stall'] [u'tour', u'boat', u'oper', u'thank', u'whale', u'rescu', u'effort'] [u'train', u'express', u'pull', u'southern'] [u'transport', u'woe', u'scuttl', u'sculli', u'premiership', u'hop'] [u'travel', u'advic', u'saudi', u'arabia', u'updat'] [u'trucki', u'want', u'light', u'shed', u'road', u'safeti', u'issu'] [u'charg', u'attempt', u'london', u'bomb'] [u'charg', u'fail', u'london', u'attack'] [u'consid', u'treason', u'charg', u'radic'] [u'union', u'seek', u'berri', u'worker', u'assur'] [u'boss', u'hop', u'aust', u'timor', u'energi', u'deal'] [u'launch', u'livestock', u'electron', u'identif'] [u'vaughan', u'tell', u'england', u'maintain', u'momentum'] [u'vermeulen', u'battl', u'world', u'superbik'] [u'worri', u'fertilis', u'ban'] [u'vision', u'summit', u'air', u'local', u'issu'] [u'water', u'desalinis', u'plant', u'agenda'] [u'weather', u'delay', u'shuttl', u'return', u'hour'] [u'weed', u'tast', u'test', u'book', u'guid', u'produc'] [u'win', u'maverick', u'frankston', u'blue'] [u'wollongong', u'plan', u'expect', u'chang'] [u'wood', u'blast', u'put', u'pair', u'hospit'] [u'woodsid', u'spend', u'billion', u'plan'] [u'worker', u'die', u'coal', u'accid'] [u'work', u'right', u'rule', u'short', u'live'] [u'world', u'leader', u'join', u'environ', u'school'] [u'yarraman', u'beat', u'communiti', u'bank', u'plan'] [u'yarram', u'water', u'treatment'] [u'young', u'knight', u'keen', u'continu', u'win', u'way'] [u'taliban', u'soldier', u'ambush'] [u'abalon', u'poacher', u'owe', u'fin'] [u'agassi', u'cruis', u'second', u'round', u'roger'] [u'alcan', u'indigen', u'leader'] [u'aldermen', u'urg', u'tough', u'pollut'] [u'black', u'delay', u'name', u'team', u'wallabi', u'clash'] [u'anderson', u'unlik', u'elect'] [u'tour', u'rais', u'awar', u'child', u'abus'] [u'asian', u'relat', u'time', u'high', u'downer'] [u'asic', u'order', u'closur', u'invest', u'scheme'] [u'attack', u'leav', u'dead', u'iraq'] [u'aussi', u'look', u'cover', u'mcgrath'] [u'australia', u'uranium', u'talk', u'china'] [u'australian', u'die', u'thailand', u'drink', u'bing'] [u'ban', u'islam', u'group', u'backfir', u'academ'] [u'beazley', u'school', u'shut'] [u'bodi', u'mildura', u'backyard'] [u'bomb', u'survivor', u'hit', u'polit', u'rhetor'] [u'bosnian', u'serb', u'crime', u'suspect', u'arrest'] [u'brack', u'back', u'polic', u'watchdog', u'amid', u'bungl'] [u'brack', u'defend', u'respons', u'polic', u'file', u'bungl'] [u'break', u'hill', u'forum', u'canva', u'skill', u'shortag'] [u'buckley', u'confid', u'didak', u'play'] [u'busi', u'condit', u'slump', u'juli'] [u'busi', u'offer', u'work', u'safeti', u'assess'] [u'busi', u'group', u'seek', u'kickstart'] [u'entri', u'indian', u'ocean', u'row', u'race'] [u'canberra', u'bishop', u'voic', u'concern', u'brief'] [u'cannabi', u'polic', u'oper'] [u'crash', u'hous', u'roof'] [u'rammer', u'reginit', u'solo', u'polic', u'patrol', u'debat'] [u'census', u'measur', u'antarct', u'marin', u'life'] [u'volunt', u'hear', u'bushfir', u'report', u'recommend'] [u'chamber', u'see', u'benefit', u'chang'] [u'chang', u'speed', u'feder', u'drought'] [u'charg', u'file', u'refineri', u'worker', u'death'] [u'chef', u'jail', u'child', u'porn'] [u'citrus', u'grower', u'seek', u'compo'] [u'clan', u'back', u'wider', u'nativ', u'titl', u'decis'] [u'clark', u'call', u'injuri', u'plagu', u'test', u'squad'] [u'coalit', u'squabbl', u'univers', u'fund'] [u'coalit', u'warn', u'uniti', u'equal', u'success'] [u'cobar', u'shire', u'seek', u'replac'] [u'colleg', u'seek', u'merger', u'support'] [u'commission', u'deni', u'railway', u'tunnel', u'death', u'trap'] [u'commiss', u'seek', u'uniform', u'law', u'product', u'safeti'] [u'council', u'committe', u'discuss', u'queen', u'baton', u'detail'] [u'council', u'crack', u'showground', u'camper'] [u'council', u'declin', u'liabil', u'beach', u'home', u'storm'] [u'council', u'insur', u'compens'] [u'councillor', u'upset', u'delay', u'heritag', u'list'] [u'council', u'merger', u'issu', u'wont', u'away'] [u'council', u'decid', u'heritag', u'cottag', u'disput'] [u'court', u'hear', u'woman', u'rob', u'die'] [u'cure', u'dog', u'offer', u'hope', u'haemophiliac'] [u'darwin', u'fring', u'festiv', u'near'] [u'dept', u'reject', u'ralli', u'transport', u'cost', u'claim'] [u'develop', u'reject', u'footpath', u'upgrad'] [u'discoveri', u'clear', u'california', u'land'] [u'discoveri', u'prepar', u'second', u'land', u'attempt'] [u'discoveri', u'return', u'earth'] [u'earli', u'result', u'buoy'] [u'kill', u'berlin', u'apart', u'block'] [u'electr', u'firm', u'begin', u'power', u'pole'] [u'back', u'option', u'alumina', u'refineri', u'expans'] [u'koolan', u'iron', u'mine', u'submiss'] [u'escort', u'agenc', u'open', u'residenti', u'area'] [u'evid', u'weigh', u'carb', u'diet'] [u'expuls', u'lie', u'rodent', u'slur', u'surpris'] [u'fair', u'dinkum', u'food', u'campaign', u'meet', u'politician'] [u'famili', u'powerless', u'help', u'petrol', u'sniffer', u'inquest'] [u'farmer', u'warn', u'dairi', u'compani', u'workplac', u'fine'] [u'farm', u'group', u'govt', u'meet', u'rural', u'skill', u'shortag'] [u'farrel', u'get', u'england', u'rugbi'] [u'fatal', u'crash', u'spark', u'overpass', u'safeti', u'fear'] [u'fee', u'better', u'livestock', u'weed'] [u'concern', u'air', u'cemeteri', u'plan'] [u'fisheri', u'offic', u'applaud', u'poacher', u'jail'] [u'flood', u'water', u'reced', u'india'] [u'food', u'label', u'senat', u'agenda'] [u'footi', u'player', u'bring', u'intern', u'flavour'] [u'member', u'ballarat', u'swear'] [u'tiger', u'skipper', u'campbel', u'retir'] [u'offic', u'admit', u'corrupt'] [u'fund', u'fight', u'push', u'retir'] [u'fund', u'avail', u'lantana', u'remov'] [u'gallop', u'rule', u'awa', u'western', u'power'] [u'garrett', u'deliv', u'film', u'industri', u'lectur'] [u'swear', u'senat'] [u'govern', u'criticis', u'recherch', u'delay'] [u'govt', u'face', u'intern', u'dissent'] [u'govt', u'pressur', u'parent', u'leav', u'right'] [u'goward', u'back', u'parent', u'leav'] [u'griffith', u'multicultur', u'centr', u'reopen'] [u'guantanamo', u'detaine', u'take', u'case', u'suprem', u'court'] [u'harvey', u'releas', u'contract'] [u'health', u'servic', u'offer', u'disput', u'assur'] [u'health', u'servic', u'take', u'paediatr', u'registrar'] [u'helpman', u'award', u'honour', u'williamson', u'sutherland'] [u'hill', u'share', u'profit', u'leap'] [u'hospit', u'attack', u'investig'] [u'hospit', u'program', u'work', u'opposit'] [u'howard', u'give', u'guarante', u'parent', u'leav'] [u'human', u'trial', u'underway', u'haemophila', u'therapi'] [u'hunt', u'continu', u'escap', u'mental', u'health', u'patient'] [u'hunter', u'driver', u'rout', u'safeti', u'fear'] [u'hurley', u'pledg', u'hold', u'govt', u'account'] [u'iemma', u'finalis', u'cabinet', u'normal', u'faction', u'brawl'] [u'indonesian', u'unanim', u'aceh', u'peac', u'deal'] [u'inquest', u'focus', u'fatal', u'polic', u'shoot'] [u'rat', u'forecast', u'offer', u'home', u'owner'] [u'iraqi', u'citi', u'riot', u'better', u'servic'] [u'protest', u'travel', u'cost'] [u'island', u'local', u'welcom', u'detent', u'centr', u'plan'] [u'jackson', u'urg', u'warden', u'accept', u'offer'] [u'jail', u'staff', u'level', u'worri', u'union'] [u'jayasuriya', u'pass', u'run'] [u'kafelnikov', u'european', u'golf', u'debut'] [u'kangaroo', u'decapit', u'melbourn'] [u'knight', u'consid', u'newton', u'earli', u'guilti'] [u'koschitzk', u'hook'] [u'lantana', u'ban'] [u'launceston', u'brace', u'heavi', u'rain'] [u'step', u'asid', u'bentley', u'board'] [u'lenton', u'look', u'improv', u'world', u'record'] [u'lenton', u'smash', u'world', u'record'] [u'month', u'jail', u'convict', u'drug'] [u'liber', u'rais', u'joyc', u'concern', u'parliament'] [u'liber', u'blast', u'nation', u'telstra', u'spat'] [u'liber', u'oust', u'member', u'lie', u'rodent', u'comment'] [u'lionor', u'highlight', u'import', u'nickel', u'asset'] [u'lose', u'vivaldi', u'work', u'strike', u'chord', u'listen'] [u'face', u'nimbin', u'murder', u'charg'] [u'marsh', u'saca', u'role'] [u'maryborough', u'mari', u'poppin', u'statu'] [u'mathematician', u'reveal', u'flaw', u'japan', u'code'] [u'mayor', u'call', u'forc', u'council', u'merger'] [u'medal', u'recognis', u'esper', u'shire', u'presid', u'effort'] [u'question', u'ecstasi', u'seizur'] [u'meteor', u'jump', u'start', u'life'] [u'militari', u'court', u'convict', u'cambodian', u'opposit'] [u'miner', u'confid', u'contain', u'kangaroo', u'flat', u'cost'] [u'miner', u'encourag', u'explor', u'australia'] [u'miner', u'take', u'foreign', u'worker'] [u'minist', u'look', u'stronger', u'indigen', u'link'] [u'detail', u'seek', u'nurs', u'home', u'plan'] [u'leav', u'polit', u'affair', u'reveal'] [u'nagasaki', u'mark', u'year', u'atom', u'bomb'] [u'negoti', u'telstra', u'your', u'finish', u'beazley'] [u'home', u'loan', u'drop', u'valu', u'rise'] [u'roster', u'rais', u'staff', u'retent', u'hop'] [u'nguiu', u'school', u'remain', u'cathol', u'control'] [u'nation', u'plan', u'immigr', u'benefit'] [u'opposit', u'issu', u'polici', u'nurs', u'shortag'] [u'paedophil', u'psychiatrist', u'claim', u'investig'] [u'paedophil', u'holiday', u'plan', u'prompt', u'polic', u'warn'] [u'peta', u'temporarili', u'lift', u'wool', u'boycott'] [u'pickett', u'face', u'week'] [u'pickl', u'pigeon', u'prove', u'headach'] [u'pilot', u'accus', u'activist', u'murder', u'face', u'court'] [u'polic', u'arrest', u'nimbin', u'death'] [u'polic', u'cast', u'doubt', u'clark', u'motorcad', u'stori'] [u'polic', u'concern', u'rise', u'road', u'crime'] [u'polic', u'hunt', u'woman', u'attack'] [u'polic', u'seek', u'teenag', u'death'] [u'polic', u'give', u'power', u'anti', u'terror'] [u'power', u'compani', u'consid', u'million', u'coal'] [u'power', u'firm', u'spend', u'south', u'east'] [u'prestigi', u'eureka', u'scienc', u'prize', u'award'] [u'primari', u'health', u'care', u'net', u'million', u'profit'] [u'prison', u'face', u'lockdown', u'disput'] [u'probuild', u'build', u'bendigo', u'bank'] [u'profit', u'report', u'push', u'market', u'record', u'high'] [u'prospector', u'target', u'radium', u'hill'] [u'public', u'urg', u'embrac'] [u'govern', u'elect', u'mcgradi', u'speaker'] [u'qualiti', u'help', u'beef', u'meat', u'export'] [u'question', u'time', u'limit', u'sign', u'arrog'] [u'region', u'anaesthetist', u'seek', u'boost'] [u'region', u'busi', u'confid', u'dip'] [u'religi', u'leader', u'attempt', u'influenc', u'gaza', u'pullout'] [u'reloc', u'confus', u'griffin', u'centr', u'tenant'] [u'repco', u'rev', u'profit'] [u'report', u'find', u'need', u'medic', u'staff', u'incent'] [u'research', u'focus', u'endang', u'giant', u'worm'] [u'rocker', u'dust', u'instrument', u'alic'] [u'roughead', u'take', u'rise', u'star', u'nomin'] [u'ruddock', u'take', u'control', u'foreign', u'troop', u'case'] [u'safe', u'space', u'creat', u'student'] [u'govt', u'urg', u'fuel', u'price'] [u'opera', u'take', u'helpmann', u'storm'] [u'satellit', u'broadband', u'network', u'triall', u'remot'] [u'school', u'face', u'legal', u'action', u'decis'] [u'schwab', u'consid', u'quit', u'match', u'review', u'panel'] [u'second', u'stage', u'heeswijk', u'tour'] [u'senat', u'joyc', u'plan', u'sit'] [u'senat', u'urg', u'welfar', u'chang', u'check'] [u'senat', u'face', u'court', u'drive', u'incid'] [u'shake', u'moot', u'polic', u'promot'] [u'shark', u'net', u'support', u'reject', u'remov'] [u'ship', u'contain', u'crush', u'woman'] [u'shire', u'ponder', u'hand', u'road', u'govt'] [u'shire', u'want', u'tafe', u'closur', u'plan', u'detail'] [u'smith', u'snack', u'sakata'] [u'speed', u'camera', u'slow', u'albani', u'driver'] [u'storag', u'upgrad', u'help', u'summer', u'water', u'suppli'] [u'student', u'converg', u'hall', u'creek', u'youth', u'festiv'] [u'tasmania', u'outfox', u'anim', u'pest'] [u'technolog', u'gold', u'leas', u'life'] [u'teenag', u'charg', u'hammer', u'attack'] [u'thiev', u'ransack', u'beslan', u'school'] [u'timber', u'propon', u'beat', u'nois', u'test'] [u'blaze', u'control'] [u'toronto', u'develop', u'get', u'council', u'approv'] [u'trap', u'chines', u'miner', u'number'] [u'trio', u'caus', u'environment', u'damag', u'court', u'tell'] [u'trio', u'face', u'charg', u'drug', u'raid'] [u'tweed', u'host', u'golden', u'nugget', u'bowl', u'action'] [u'umaga', u'hope', u'play', u'australia'] [u'chief', u'welcom', u'concern'] [u'staff', u'withhold', u'result', u'urg', u'speak'] [u'uranium', u'export', u'safe'] [u'author', u'stop', u'alleg', u'paedophil'] [u'utai', u'contest', u'high', u'tackl', u'charg'] [u'vivaldi', u'perform'] [u'express', u'shock', u'charg', u'clerk'] [u'seek', u'nation', u'liabil', u'law'] [u'wedg', u'facelift', u'continu'] [u'wesfarm', u'predict', u'robust', u'profit'] [u'wollongong', u'stadium', u'host', u'semi'] [u'woodsid', u'apprentic', u'award', u'safeti', u'effort'] [u'zorro', u'fin', u'lack', u'busi', u'record'] [u'miss', u'helicopt', u'crash', u'estonia'] [u'feedlot', u'hold'] [u'laverton', u'polic', u'station', u'unveil'] [u'nepales', u'soldier', u'kill', u'clash', u'rebel'] [u'gascoyn', u'cross', u'open'] [u'reward', u'offer', u'catch', u'playground', u'vandal'] [u'charg', u'child', u'sexual', u'offenc'] [u'accc', u'rule', u'telstra', u'line', u'share', u'charg'] [u'promot', u'sustain', u'live', u'sydney'] [u'action', u'group', u'seek', u'highway', u'revamp'] [u'adelaid', u'possibl', u'ozjet', u'headquart'] [u'reject', u'extra', u'judg', u'launceston'] [u'black', u'umaga', u'time'] [u'criticis', u'govt', u'royal', u'hobart', u'problem'] [u'anderson', u'back', u'govt', u'telstra', u'agenda'] [u'anderson', u'defend', u'telstra', u'sale', u'stanc'] [u'anglicar', u'look', u'oper', u'cost'] [u'applebi', u'prepar', u'tame', u'beast'] [u'applic', u'prison', u'murder', u'case'] [u'aussi', u'astronaut', u'mull', u'futur', u'nasa'] [u'australian', u'accent', u'hear', u'milit', u'broadcast'] [u'autopsi', u'bateman', u'whale'] [u'beatti', u'seek', u'immigr', u'answer', u'amidst', u'doctor'] [u'best', u'western', u'apart', u'promis', u'visitor', u'boost'] [u'boomer', u'lithuania', u'gaze'] [u'bun', u'lose', u'stop', u'appeal'] [u'bureau', u'predict', u'snow', u'hobart', u'level'] [u'byron', u'blue', u'festiv', u'hit', u'high', u'note', u'award'] [u'protect', u'farmer'] [u'radar', u'station', u'heritag', u'list'] [u'canberra', u'offic', u'space', u'time'] [u'cardiologist', u'air', u'bulli', u'claim', u'patel', u'inquiri'] [u'carmont', u'tanner', u'sign', u'knight'] [u'profit', u'top', u'market', u'forecast'] [u'citrus', u'grower', u'award', u'packag'] [u'clark', u'readi', u'ash'] [u'club', u'meet', u'poki'] [u'probe', u'north', u'jail', u'claim'] [u'coalit', u'attack', u'infight'] [u'coalit', u'tension', u'continu'] [u'coff', u'host', u'region', u'develop', u'ministeri'] [u'columbia', u'play', u'astronaut', u'mind'] [u'commonwealth', u'deni', u'short', u'chang', u'uluru'] [u'consolid', u'miner', u'boost', u'product', u'fivefold'] [u'consum', u'confid', u'bounc'] [u'coron', u'hear', u'evid', u'petrol', u'sniff'] [u'costello', u'ask', u'clear', u'chariti', u'rule'] [u'councillor', u'call', u'rock', u'wall', u'combat', u'beach'] [u'council', u'grant', u'approv', u'optus', u'phone', u'tower'] [u'counsellor', u'worri', u'drought', u'farmer'] [u'countri', u'race', u'group', u'seek', u'prize', u'money', u'boost'] [u'court', u'allow', u'widow', u'plane', u'crash'] [u'darwin', u'port', u'like', u'handl', u'return', u'nuclear', u'wast'] [u'defenc', u'fail', u'attract', u'recruit'] [u'demon', u'chanc', u'saloon', u'danih'] [u'dench', u'defend', u'money', u'launder', u'charg'] [u'discoveri', u'command', u'plead', u'support'] [u'discoveri', u'land', u'safe'] [u'dissent', u'linger', u'coalit', u'rank'] [u'donat', u'boost', u'chopper', u'rescu', u'servic'] [u'drinker', u'cancer', u'risk', u'folat', u'studi', u'find'] [u'driver', u'warn', u'danger', u'winter', u'condit'] [u'dutch', u'channel', u'plan', u'sperm', u'donor', u'search'] [u'kill', u'german', u'apart', u'block'] [u'elect', u'chief', u'campaign'] [u'england', u'near', u'string', u'say', u'gile'] [u'exchang', u'upgrad', u'appeas', u'joyc', u'labor', u'say'] [u'famili', u'senat', u'question', u'econom', u'focus'] [u'farm', u'death', u'prompt', u'nation', u'campaign'] [u'farmer', u'delay', u'drought', u'subsidi', u'applic'] [u'farmer', u'tractor', u'head', u'canberra', u'protest'] [u'firefight', u'extinguish', u'blaze'] [u'forum', u'address', u'issu', u'age', u'work', u'forc'] [u'soldier', u'kill', u'iraq', u'attack'] [u'futur', u'work', u'entitl', u'unclear', u'despit'] [u'close', u'southbound', u'bridg'] [u'gilchrist', u'back', u'trafford', u'test'] [u'giteau', u'frontrunn', u'half', u'flatley'] [u'gold', u'coast', u'host', u'second', u'children'] [u'govt', u'accus', u'appoint', u'cover'] [u'govt', u'builder', u'stop', u'condit'] [u'govt', u'consid', u'admit', u'pacif', u'worker'] [u'govt', u'continu', u'talk', u'vietnam', u'vet', u'occup'] [u'govt', u'credit', u'transit', u'offic', u'drop', u'rail'] [u'govt', u'seek', u'hear', u'industri', u'disput'] [u'govt', u'settl', u'steal', u'babi', u'part', u'case'] [u'govt', u'sign', u'sugar', u'market', u'agreement'] [u'govt', u'stop', u'elect', u'surgeri', u'hobart', u'hospit'] [u'govt', u'skill', u'shortag'] [u'govt', u'urg', u'hold', u'china', u'uranium', u'export'] [u'grain', u'farmer', u'mood', u'shift'] [u'green', u'challeng', u'uranium', u'power', u'shift'] [u'group', u'applaud', u'sustain', u'live', u'trial'] [u'grower', u'await', u'govt', u'respons', u'horticultur', u'plan'] [u'grower', u'face', u'juic', u'fruit', u'price'] [u'grower', u'urg', u'mind', u'cotton', u'offer'] [u'guild', u'air', u'voluntari', u'student', u'union', u'fear'] [u'high', u'demand', u'see', u'tourist', u'turn', u'away'] [u'iemma', u'confirm', u'kurnel', u'desalin', u'plant', u'plan'] [u'hewitt', u'pull', u'montreal', u'master'] [u'indonesian', u'activist', u'murder', u'trial', u'whitewash'] [u'infight', u'report', u'overblown', u'say'] [u'ingram', u'reject', u'polit', u'donat'] [u'injur', u'sculthorp', u'nation', u'seri'] [u'injuri', u'forc', u'hawk', u'holland', u'retir'] [u'inquiri', u'urg', u'trial', u'controversi', u'anorexia'] [u'jackson', u'win', u'hurdl', u'titl', u'sanchez', u'crash'] [u'japanes', u'tuna', u'boat', u'accus', u'pollut'] [u'johnson', u'blow', u'cours', u'record'] [u'kite', u'surfer', u'lucki', u'escap'] [u'upbeat', u'mcgrath', u'keep', u'pray'] [u'liber', u'seek', u'tough', u'anti', u'terror', u'stanc'] [u'liber', u'accus', u'brigalow', u'backflip'] [u'local', u'branch', u'rack', u'year'] [u'local', u'govt', u'compulsori', u'vote', u'support', u'surpris'] [u'accus', u'child', u'assault', u'get', u'bail'] [u'charg', u'apart', u'burglari'] [u'market', u'climb', u'wake', u'rat', u'rise'] [u'markov', u'pole', u'vault', u'final'] [u'mayor', u'back', u'free', u'public', u'transport'] [u'mayor', u'oppos', u'heritag', u'plan'] [u'mayor', u'seek', u'bushfir', u'mistak', u'detail'] [u'milit', u'video', u'authent', u'downer'] [u'minist', u'approv', u'civic', u'develop'] [u'minist', u'discuss', u'veget', u'industri', u'overhaul'] [u'minist', u'hear', u'need', u'transport', u'exchang'] [u'miss', u'tourist', u'suffer', u'hypothermia'] [u'mitchel', u'play', u'wallabi'] [u'seek', u'council', u'review'] [u'magnet', u'vanadium', u'reopen'] [u'multicultur', u'resourc', u'centr', u'offer', u'improv'] [u'name', u'execut', u'director'] [u'nasa', u'delay', u'mar', u'orbit', u'launch'] [u'nelson', u'commit', u'despit', u'legitim', u'concern'] [u'nelson', u'quiet', u'nation', u'region', u'fund'] [u'port', u'hedland', u'start', u'work'] [u'consid', u'migrat', u'scheme', u'address', u'skill'] [u'nixon', u'voic', u'support', u'polic', u'integr', u'director'] [u'norman', u'withdraw'] [u'north', u'wont', u'recontest', u'elect'] [u'nuclear', u'safeguard', u'remain', u'despit', u'china', u'deal', u'downer'] [u'opposit', u'attack', u'leak', u'polic', u'integr'] [u'opposit', u'reveal', u'nurs', u'plan'] [u'outag', u'leav', u'resid', u'dark'] [u'pace', u'farm', u'compani', u'fin', u'pollut'] [u'parapleg', u'claim', u'world', u'record'] [u'parent', u'leav', u'worri', u'rural', u'small', u'busi'] [u'parliament', u'pass', u'cut'] [u'petrol', u'sniffer', u'interrupt', u'remot', u'inquest', u'hear'] [u'petrol', u'sniff', u'inquest', u'hear', u'evid', u'remot'] [u'plan', u'afoot', u'lithgow', u'aquat', u'centr'] [u'polic', u'accus', u'trickeri', u'interview'] [u'polic', u'appeal', u'deliv', u'footag'] [u'polic', u'hope', u'dental', u'record', u'identifi', u'dead', u'woman'] [u'polic', u'hunt', u'canungra', u'knife', u'bandit'] [u'polic', u'investig', u'forgeri', u'claim'] [u'polic', u'return', u'supermarket', u'protest', u'site'] [u'polic', u'stage', u'snowi', u'crime', u'oper'] [u'polici', u'bring', u'parent', u'child', u'crime', u'fight'] [u'power', u'consid', u'appeal', u'pickett', u'verdict'] [u'power', u'appeal', u'pickett', u'suspens'] [u'power', u'worker', u'reject', u'offer'] [u'public', u'invit', u'view', u'coburn', u'environment', u'report'] [u'qanta', u'mull', u'fuel', u'surcharg', u'hike'] [u'govt', u'announc', u'duck', u'hunt'] [u'winemak', u'tell', u'oversea', u'opportun'] [u'rabbitoh', u'cowboy', u'play', u'mackay', u'season'] [u'race', u'group', u'say', u'right', u'hurt', u'region'] [u'radio', u'station', u'slap', u'smackfest', u'fine'] [u'readymix', u'downsiz', u'tweed', u'quarri', u'plan'] [u'real', u'want', u'unsettl', u'owen', u'stay', u'sacchi'] [u'record', u'high', u'despit', u'sluggish', u'bank', u'mine', u'stock'] [u'refineri', u'staff', u'return', u'work'] [u'roadwork', u'indigen', u'group'] [u'robinson', u'case', u'return', u'court'] [u'russian', u'open', u'crimin', u'probe', u'mini', u'accid'] [u'search', u'continu', u'miss'] [u'senat', u'debat', u'china', u'uranium', u'sale'] [u'settlement', u'issu', u'hit', u'sharon', u'poll'] [u'sharapova', u'struggl', u'round'] [u'shire', u'stand', u'wind', u'farm', u'polici'] [u'shuttl', u'touch'] [u'sister', u'appeal', u'murder', u'inform'] [u'resort', u'welcom', u'good', u'snow'] [u'sleep', u'research', u'studi', u'pilot', u'fli', u'east', u'west'] [u'snowfal', u'continu', u'southern', u'australia'] [u'snow', u'fall', u'victoria'] [u'snow', u'surpris', u'southern', u'australia'] [u'solomon', u'peacekeep', u'report', u'criticis'] [u'southern', u'star', u'promis', u'start', u'test'] [u'speed', u'camera', u'rule', u'concern', u'say', u'opposit'] [u'lanka', u'india', u'triangular', u'seri'] [u'stalem', u'persist', u'south', u'africa', u'gold', u'strike'] [u'strand', u'land', u'return', u'communiti'] [u'strike', u'action', u'loom', u'prison', u'offic', u'disput'] [u'strike', u'boe', u'worker', u'seek', u'feder', u'action'] [u'student', u'converg', u'gold', u'coast', u'eisteddfod'] [u'student', u'doubt', u'grant', u'cover', u'loss', u'union'] [u'student', u'attent', u'earli', u'high', u'school'] [u'student', u'protest', u'student', u'union', u'move'] [u'student', u'union', u'cautious', u'welcom', u'nation'] [u'student', u'union', u'plan', u'creat', u'region', u'fear'] [u'superman', u'widow', u'dana', u'reev', u'lung', u'cancer'] [u'support', u'show', u'refuge', u'reloc', u'scheme'] [u'survey', u'consid', u'busi', u'need'] [u'talk', u'focus', u'cottag', u'rent'] [u'taxpay', u'foot', u'wharf', u'repair'] [u'teacher', u'suspend', u'exam', u'breach', u'investig'] [u'telstra', u'sale', u'court', u'challeng', u'stumbl'] [u'thoma', u'swap', u'space', u'grape', u'say'] [u'minist', u'swear'] [u'toddler', u'return', u'take', u'steal'] [u'tongan', u'public', u'servant', u'await', u'decis', u'strike'] [u'trio', u'stand', u'trial', u'tree', u'fern', u'scam'] [u'troop', u'stay', u'southern', u'iraq', u'unrest', u'hill'] [u'consid', u'close', u'court', u'terrorist'] [u'union', u'urg', u'polic', u'recruit', u'rethink'] [u'unit', u'seat', u'qualifi'] [u'watchdog', u'meet', u'iranian', u'nuclear', u'work'] [u'accus', u'iran', u'suppli', u'iraqi', u'insurg', u'bomb'] [u'band', u'battl', u'kerrang', u'honour'] [u'court', u'overturn', u'cuban', u'spi', u'convict'] [u'utai', u'high', u'tackl', u'charg', u'downgrad'] [u'dijck', u'win', u'tour', u'benelux', u'penultim', u'stage'] [u'charg', u'teenag', u'death', u'sexual', u'assault'] [u'volcan', u'erupt', u'caus', u'australian', u'island', u'grow'] [u'protest', u'hold', u'countri'] [u'warn', u'hard', u'graft'] [u'watchdog', u'cancel', u'iran', u'nuclear', u'meet'] [u'winegrap', u'harvest', u'suffer', u'downturn'] [u'woman', u'die', u'hous'] [u'woolgrow', u'pursu', u'peta'] [u'woolmer', u'begin', u'work', u'shabbir', u'action'] [u'wool', u'produc', u'reject', u'peta', u'mules', u'plan'] [u'work', u'coolac', u'bypass', u'expect', u'octob'] [u'work', u'begin', u'year', u'plant'] [u'year', u'woman', u'face', u'reveal'] [u'kill', u'haitian', u'violenc'] [u'forum', u'focus', u'indigen', u'wellb'] [u'agassi', u'advanc', u'montreal'] [u'airlin', u'end', u'sunshin', u'coast', u'servic'] [u'andrew', u'order', u'scrutini', u'awa'] [u'atom', u'watchdog', u'stick', u'diplomaci', u'iran'] [u'attitud', u'nuclear', u'power', u'chang', u'say', u'inquiri'] [u'australia', u'name', u'mcgrath', u'play'] [u'australian', u'resid', u'booker', u'finalist'] [u'say', u'negoti', u'peta', u'damag'] [u'babi', u'part', u'settlement', u'wont', u'stop', u'grief'] [u'baldwin', u'aim', u'secur', u'defenc', u'contract'] [u'bank', u'revamp', u'spark', u'busi', u'region', u'rethink'] [u'bar', u'muslim', u'convert', u'deni', u'support', u'terror'] [u'bartlett', u'seek', u'senat', u'support', u'disallow', u'island'] [u'beatti', u'defend', u'fast', u'track', u'law'] [u'beatti', u'fast', u'track', u'protect'] [u'biosecur', u'australia', u'better', u'agenc', u'boss'] [u'bland', u'undergo', u'build', u'boom'] [u'bleep', u'bikini', u'bust', u'beach', u'burn'] [u'bok', u'laugh', u'matfield', u'hoax'] [u'boomer', u'bounc', u'understrength', u'china'] [u'charg', u'sexual', u'assault', u'teen'] [u'escap', u'abduct', u'attempt'] [u'boyl', u'suggest', u'public', u'hear', u'gold', u'coast'] [u'british', u'polic', u'charg', u'juli', u'attack'] [u'build', u'industri', u'watchdog', u'jump', u'hurdl'] [u'busi', u'advoc', u'reform'] [u'busway', u'stand', u'school'] [u'cabinet', u'consid', u'frontlin', u'role', u'women'] [u'calder', u'open', u'truck', u'crash'] [u'second', u'highway', u'bypass', u'archaeolog'] [u'campaign', u'kick', u'mackay', u'hotel', u'sale'] [u'canadian', u'uranium', u'giant', u'back', u'feder', u'regul'] [u'cane', u'toad', u'thriller', u'take', u'judg', u'award'] [u'carr', u'minist', u'clear', u'orang', u'grove'] [u'channel', u'seven', u'cutter', u'case', u'dismiss'] [u'chelsea', u'step', u'secur', u'measur'] [u'clubber', u'curfew', u'trial', u'short', u'bendigo'] [u'cobalt', u'discoveri', u'boost', u'job'] [u'coldest', u'august', u'year', u'bendigo'] [u'commiss', u'celebr', u'coast', u'secur'] [u'confid', u'singh', u'aim', u'defend', u'titl'] [u'controversi', u'follow', u'niger', u'presid', u'famin'] [u'coron', u'hear', u'petrol', u'sniff', u'dead', u'toll'] [u'council', u'appoint', u'director'] [u'councillor', u'condemn', u'industri', u'propos'] [u'council', u'merger', u'inevit'] [u'council', u'review', u'ignor', u'england', u'allianc', u'govt'] [u'court', u'approv', u'contenti', u'high', u'rise', u'develop'] [u'court', u'find', u'favour', u'sack', u'polic', u'offic'] [u'dalla', u'actress', u'barbara', u'gedd', u'die'] [u'deputi', u'mayor', u'condemn', u'hospit', u'bridg', u'decis'] [u'driver', u'urg', u'care', u'snowi', u'mountain', u'road'] [u'driver', u'urg', u'watch', u'breed', u'koala'] [u'driver', u'warn', u'road'] [u'droughtmast', u'cattl', u'fetch', u'price', u'broom'] [u'emerg', u'declar', u'smoke', u'choke', u'malaysia'] [u'england', u'fight', u'southern', u'star'] [u'england', u'look', u'flintoff', u'insid', u'knowledg'] [u'england', u'promis', u'start', u'test'] [u'european', u'rocket', u'put', u'huge', u'thai', u'satellit', u'aloft'] [u'fall', u'creek', u'develop'] [u'farmer', u'angri', u'biosecur', u'measur'] [u'farmer', u'face', u'rural', u'labour', u'crisi'] [u'farmer', u'pledg', u'food', u'label'] [u'fatal', u'hunt', u'accid', u'lead', u'manslaught', u'charg'] [u'faulti', u'clock', u'fatal', u'hous', u'blaze'] [u'feder', u'fund', u'flood', u'work'] [u'awa', u'undercut', u'award', u'court', u'find'] [u'filipino', u'author', u'fear', u'suicid', u'bomber', u'plan'] [u'tamworth', u'mayor', u'die'] [u'commission', u'urg', u'govt', u'secur', u'hick'] [u'fortescu', u'seek', u'transport', u'infrastructur', u'share'] [u'galaxi', u'bigger', u'look'] [u'gallop', u'condemn', u'blue'] [u'gemfest', u'open', u'today'] [u'gerrard', u'confid', u'liverpool', u'sofia'] [u'group', u'get'] [u'status', u'consid', u'unsustain'] [u'gold', u'coast', u'offic', u'space', u'demand', u'grow'] [u'govern', u'issu', u'lead', u'glen', u'eira', u'council', u'sack'] [u'govt', u'accus', u'limit', u'hospit', u'perform', u'data'] [u'govt', u'buy', u'treasur', u'trove', u'aborigin', u'histori'] [u'govt', u'consid', u'telstra', u'fund'] [u'govt', u'consid', u'yarralumla', u'brickwork', u'futur'] [u'govt', u'defend', u'action', u'elect', u'surgeri'] [u'govt', u'landfil', u'upgrad'] [u'govt', u'urg', u'combat', u'salin'] [u'govt', u'urg', u'resolv', u'industri', u'disput'] [u'govt', u'urg', u'stop', u'blue', u'critic'] [u'green', u'finger', u'senat', u'rude', u'gestur'] [u'group', u'plan', u'islam', u'summit', u'discuss', u'radic'] [u'group', u'tussl', u'live', u'recommend'] [u'grower', u'cast', u'doubt', u'canker', u'deal'] [u'haddin', u'captain', u'team'] [u'hold', u'foreign', u'ship', u'crew', u'hop', u'home'] [u'higher', u'uranium', u'price', u'lift', u'honeymoon', u'hop'] [u'hospit', u'mainten', u'crisi', u'disrupt', u'servic'] [u'hospit', u'trial', u'bowel', u'diseas', u'drug'] [u'household', u'spend', u'rise'] [u'howard', u'beazley', u'tribut', u'wwii', u'soldier'] [u'icpa', u'lobbi', u'fund', u'appropri', u'educ'] [u'condit', u'close', u'blue', u'mountain', u'road'] [u'indigen', u'poverti', u'child', u'mortal', u'remain', u'high'] [u'indonesian', u'timor', u'launch', u'truth', u'commiss'] [u'interview', u'ricki', u'pont'] [u'iran', u'resum', u'nuclear', u'process'] [u'chang', u'pitch', u'difficult', u'detail', u'say'] [u'islam', u'group', u'escap'] [u'jetstar', u'chang', u'hobart', u'travel'] [u'jobless', u'rate', u'steadi', u'year'] [u'johnson', u'snare', u'final', u'spot'] [u'jone', u'warn', u'black', u'counterattack'] [u'jubile', u'award', u'record', u'rise'] [u'labor', u'bypass', u'scandal'] [u'council', u'remain', u'odd', u'govt', u'hick'] [u'declar', u'mcgrath', u'chanc'] [u'liber', u'tighten', u'campaign', u'fund', u'rule'] [u'lithgow', u'support', u'union', u'work', u'right', u'charter'] [u'local', u'farmer', u'food', u'label', u'ralli'] [u'lose', u'student', u'union', u'job', u'blame', u'plan'] [u'die', u'kingaroy', u'crash'] [u'jail', u'stepdaught'] [u'manna', u'hous', u'move', u'bigger', u'premis'] [u'mccain', u'contract', u'potato', u'farmer'] [u'mcgrath', u'face', u'minut', u'fit', u'test'] [u'minist', u'defend', u'offic', u'block', u'plan', u'civic'] [u'molik', u'tee', u'long', u'await', u'return'] [u'mourinho', u'cole', u'lose', u'appeal', u'fin'] [u'notic', u'keep', u'peac', u'polic'] [u'say', u'brigalow', u'decis', u'stay'] [u'murray', u'river', u'spill', u'clean'] [u'muslim', u'leader', u'surpris', u'british', u'convert', u'entri'] [u'navi', u'apprehend', u'illeg', u'fish', u'boat'] [u'network', u'announc'] [u'group', u'aim', u'boost', u'apprenticeship', u'energi'] [u'polic', u'oper', u'drink', u'driver'] [u'newscorp', u'profit', u'surg'] [u'newscorp', u'reveal', u'record', u'profit'] [u'sudanes', u'vice', u'presid', u'swear'] [u'urg', u'telstra', u'action', u'trujillo', u'meet'] [u'blank', u'chequ', u'anaesthetist', u'iemma'] [u'sniff', u'petrol', u'rollout', u'cost', u'despit', u'death'] [u'opposit', u'expect', u'defenc', u'upgrad', u'plan'] [u'norfolk', u'resid', u'fear', u'phone', u'bug'] [u'nurs', u'group', u'question', u'coalit', u'health', u'plan'] [u'nuttal', u'forc', u'admit', u'sugar', u'blunder'] [u'offic', u'fear', u'life', u'shoot', u'court', u'hear'] [u'ogradi', u'extend', u'stay', u'cofidi'] [u'ozjet', u'announc', u'melbourn', u'sydney', u'rout', u'plan'] [u'pakistan', u'test', u'fire', u'nuclear', u'capabl', u'cruis', u'missil'] [u'perth', u'accus', u'teen', u'death', u'link', u'anim'] [u'plan', u'moot', u'boost', u'lake', u'level', u'treat', u'wast'] [u'player', u'drop', u'afro', u'asia', u'seri'] [u'polar', u'aviat', u'chief', u'unhappi', u'casa', u'deal'] [u'polic', u'probe', u'dubbo', u'mug'] [u'polic', u'probe', u'hous', u'blaze'] [u'polic', u'raid', u'remot', u'western', u'drug'] [u'polic', u'raid', u'reveal', u'north', u'nowra', u'drug'] [u'polic', u'remov', u'greenpeac', u'activist'] [u'port', u'piri', u'footbal', u'kyle', u'atkinson', u'funer', u'today'] [u'port', u'rule', u'pickett', u'legal', u'challeng'] [u'power', u'cut', u'jam', u'loos'] [u'prosecutor', u'seek', u'death', u'embassi', u'bomb', u'suspect'] [u'psych', u'guilti', u'misconduct'] [u'public', u'urg', u'midland', u'highway'] [u'public', u'warn', u'flood', u'damag', u'vehicl'] [u'race', u'board', u'chang', u'mind', u'betfair', u'penalti'] [u'rain', u'stop', u'glenburni', u'race', u'meet'] [u'report', u'show', u'number', u'drop'] [u'resourc', u'bank', u'stock', u'push', u'ord', u'higher'] [u'revitalis', u'julich', u'win', u'tour', u'benelux'] [u'row', u'team', u'train', u'rockhampton'] [u'back', u'women', u'combat', u'zone'] [u'rural', u'group', u'govern', u'address', u'skill'] [u'salvo', u'boost', u'illawarra', u'fundrais'] [u'school', u'princip', u'learn'] [u'school', u'catch', u'rort', u'exam', u'lose'] [u'scott', u'head', u'australia', u'conting'] [u'senat', u'regret', u'obscen', u'gestur'] [u'shellharbour', u'council', u'agre', u'airport', u'park'] [u'shiit', u'demand', u'separ', u'southern', u'iraqi', u'state'] [u'skill', u'boost', u'need', u'whyalla', u'mine', u'boom'] [u'smoke', u'choke', u'malaysia', u'declar', u'emerg'] [u'snow', u'block', u'highway', u'reopen'] [u'snow', u'cut', u'tasmania', u'west', u'coast'] [u'snow', u'keep'] [u'south', u'african', u'polic', u'arrest', u'striker'] [u'ardmona', u'help', u'coke', u'profit'] [u'stargaz', u'asteroid', u'moon'] [u'star', u'war'] [u'stosur', u'california'] [u'strike', u'tongan', u'public', u'servant', u'forward'] [u'survey', u'highlight', u'riverland', u'busi'] [u'survey', u'look', u'boost', u'servic', u'assault'] [u'swedish', u'firm', u'insur', u'speed', u'fin'] [u'telstra', u'boss', u'govt', u'construct', u'talk'] [u'telstra', u'cri', u'poor', u'despit', u'record', u'profit'] [u'telstra', u'profit', u'top'] [u'tender', u'call', u'hospit'] [u'thousand', u'ralli', u'gaza', u'settlement', u'closur'] [u'tiger', u'hunt', u'major', u'piec', u'histori'] [u'todd', u'deni', u'drug', u'ring', u'role'] [u'tourism', u'grow', u'tree', u'cooma', u'unltd'] [u'town', u'deal', u'petrol', u'sniff', u'problem'] [u'trucki', u'escap', u'jail', u'cyclist', u'death'] [u'trujillo', u'plan', u'reveal', u'telstra', u'truth'] [u'tuckey', u'continu', u'tirad', u'joyc'] [u'turkish', u'polic', u'deni', u'milit', u'arrest'] [u'union', u'highlight', u'faulti', u'rail', u'wagon'] [u'uranium', u'group', u'chart', u'industri', u'progress'] [u'plane', u'bomb', u'near', u'miss'] [u'varnik', u'depriv', u'finland', u'javelin', u'gold'] [u'vaughan', u'superb', u'centuri'] [u'veteran', u'welsh', u'hanson', u'swim', u'gold'] [u'industri', u'urg', u'uranium', u'mine'] [u'wait', u'time', u'come', u'admiss'] [u'wall', u'street', u'fall', u'soar'] [u'warn', u'small', u'farmer'] [u'vet', u'head', u'townsvill'] [u'water', u'cart', u'grampian', u'resort'] [u'welfar', u'group', u'seek', u'welfar', u'work', u'decis'] [u'wide', u'group', u'offer', u'health', u'plan', u'govt'] [u'windsor', u'back', u'joyc', u'stand', u'countri'] [u'win', u'inter', u'liverpool', u'sport', u'lose'] [u'wodonga', u'jail', u'stepson', u'slay'] [u'women', u'join', u'armi', u'line'] [u'wool', u'buyer', u'protest', u'auction', u'hous'] [u'worker', u'believ', u'economi', u'ripe', u'rise'] [u'worker', u'rescu', u'snow', u'cut', u'town'] [u'worksaf', u'probe', u'chemic', u'incid', u'kununurra'] [u'wran', u'deni', u'pressur', u'bank', u'bust', u'litig'] [u'xstrata', u'boost', u'half', u'year', u'profit'] [u'xstrata', u'plan', u'expans', u'profit', u'boom'] [u'young', u'rural', u'resid', u'like'] [u'aborigin', u'elder', u'criticis', u'bypass', u'delay'] [u'chief', u'say', u'women', u'combat'] [u'adventur', u'drive', u'surg', u'cattl', u'industri'] [u'close', u'mouth', u'terror', u'video', u'investig'] [u'agricultur', u'minist', u'support', u'increas', u'cattl'] [u'alcohol', u'permit', u'abolish', u'remot', u'communiti'] [u'mackay', u'expect', u'health', u'shake'] [u'analyst', u'predict', u'relat', u'infrastructur', u'boost'] [u'applebi', u'share', u'lead'] [u'arrest', u'damag', u'intern', u'drug', u'ring'] [u'asio', u'recommend', u'legisl', u'assembl', u'secur'] [u'aussi', u'fight', u'earli'] [u'aust', u'philippin', u'work', u'terror'] [u'australia', u'freddi'] [u'australia', u'asthma', u'level', u'high', u'comparison'] [u'banana', u'council', u'look', u'grower', u'levi', u'feedback'] [u'bendigo', u'crime', u'wan'] [u'bendigo', u'inform', u'ride', u'honour', u'gillett'] [u'bodi', u'start', u'campaign', u'attract', u'outback'] [u'britain', u'ban', u'radic', u'cleric', u'omar', u'bakri'] [u'broom', u'attract', u'thousand'] [u'burketown', u'get', u'second', u'groceri', u'store'] [u'bush', u'expect', u'iraq', u'meet', u'draft', u'constitut'] [u'busi', u'lobbi', u'seek', u'payrol', u'review'] [u'busselton', u'polic', u'raid', u'uncov', u'drug'] [u'cambodia', u'grant', u'citizenship', u'angelina', u'joli'] [u'caravan', u'tourism', u'drop', u'north'] [u'cautious', u'support', u'nuclear', u'wast', u'dump'] [u'challeng', u'masculin', u'make', u'macho'] [u'chamber', u'welcom', u'blue', u'condemn'] [u'chanc', u'monitor', u'stone', u'fruit', u'plan'] [u'chines', u'offici', u'examin', u'correct', u'program'] [u'clarenc', u'valley', u'area', u'get', u'flood'] [u'clark', u'battl', u'injuri'] [u'urg', u'prosecut', u'mass', u'fish', u'kill'] [u'constanc', u'seek', u'lower', u'highway', u'speed'] [u'construct', u'firm', u'back', u'rail', u'link', u'plan'] [u'consult', u'studi', u'sandon', u'indigen'] [u'costello', u'promot', u'holt', u'achiev'] [u'council', u'play', u'staff', u'wage', u'concern'] [u'council', u'reject', u'propos', u'home', u'counsel'] [u'council', u'rethink', u'tulip', u'time', u'insur'] [u'council', u'upset', u'curfew'] [u'craig', u'prais', u'final', u'harden', u'port'] [u'crew', u'repair', u'home', u'damag', u'storm'] [u'crime', u'dont', u'come', u'wash', u'studi'] [u'delay', u'council', u'decis'] [u'develop', u'issu', u'elector', u'contribut'] [u'devil', u'continu', u'win', u'form'] [u'diamond', u'get', u'expans'] [u'doctor', u'group', u'back', u'plan', u'stop', u'elect', u'surgeri'] [u'downer', u'warn', u'terrorist', u'face', u'indefinit', u'detent'] [u'defend', u'citrus', u'canker', u'action'] [u'drink', u'driver', u'plead', u'guilti', u'schoolyard', u'crash'] [u'driver', u'urg', u'look', u'wander', u'koala'] [u'eagl', u'western', u'derbi'] [u'earli', u'menstruat', u'isnt', u'precursor', u'adult', u'obes'] [u'eel', u'crippl', u'dog', u'final', u'hop'] [u'eel', u'wari', u'desper', u'dog'] [u'elder', u'jail', u'sleep', u'teen', u'wife'] [u'express', u'close', u'retir'] [u'teacher', u'get', u'period', u'detent', u'child', u'porn'] [u'adelaid', u'circuit'] [u'farmer', u'claim', u'food', u'label', u'campaign'] [u'farmer', u'impress', u'govt', u'food', u'label'] [u'farmer', u'urg', u'expert', u'advic'] [u'figur', u'highlight', u'improv', u'wait', u'time'] [u'partner', u'custodi', u'woman', u'murder'] [u'worldcom', u'financi', u'offic', u'jail'] [u'forum', u'put', u'tourism', u'zone', u'brand', u'spotlight'] [u'friend', u'famili', u'honour', u'maria', u'korp'] [u'fruit', u'picker', u'accus', u'overstay', u'welcom'] [u'gatlin', u'grab', u'golden', u'doubl'] [u'govt', u'revamp', u'telco', u'competit'] [u'govt', u'industri', u'pledg', u'farmer'] [u'govt', u'market', u'part', u'oversea'] [u'govt', u'approv'] [u'govt', u'pressur', u'islam', u'preacher'] [u'govt', u'wont', u'away', u'forest', u'agreement'] [u'grand', u'hotel', u'closur', u'sadden', u'gladston', u'mayor'] [u'grape', u'grower', u'urg', u'check', u'fungicid', u'stock'] [u'green', u'rais', u'highway', u'safeti', u'fear'] [u'hama', u'vow', u'arm'] [u'health', u'minist', u'seek', u'yeppoon', u'hospit'] [u'heathrow', u'strike', u'ground', u'australia', u'bind', u'flight'] [u'home', u'lend', u'rise'] [u'hospit', u'healthi', u'fund', u'boost'] [u'howard', u'urg', u'holist', u'solut', u'petrol', u'sniff'] [u'indigen', u'land', u'paper', u'expect', u'face'] [u'injuri', u'wrack', u'port', u'ahead', u'adelaid', u'derbi'] [u'injuri', u'lion', u'sydney', u'clash'] [u'show', u'toowoomba', u'produc', u'sport'] [u'interviewshan', u'warn'] [u'japanes', u'plead', u'guilti', u'wildlif', u'smuggl'] [u'job', u'process', u'plant'] [u'johnson', u'battl', u'royal'] [u'judg', u'delay', u'decis', u'girl', u'fight', u'stay'] [u'claim', u'global', u'warm', u'melt', u'away'] [u'labor', u'endors', u'brown', u'vacant', u'senat', u'spot'] [u'langer', u'england', u'attempt', u'regain', u'control'] [u'lawyer', u'tip', u'delay', u'hick'] [u'lebanon', u'releas', u'british', u'base', u'cleric', u'bakri'] [u'logic', u'recruit', u'armi', u'role', u'chang', u'hill'] [u'lung', u'cancer', u'kill', u'victorian', u'women'] [u'machet', u'bandit', u'target', u'servic', u'station'] [u'mainten', u'disput', u'rais', u'question', u'speed'] [u'arrest', u'worth', u'marijuana'] [u'charg', u'drive', u'hotel'] [u'marin', u'preseason', u'final'] [u'marrickvill', u'deputi', u'mayor', u'elect'] [u'mar', u'orbit', u'blast'] [u'mayor', u'promis', u'fight', u'save', u'doctor', u'hospit'] [u'mcgrath', u'inspir', u'injuri', u'fight', u'umaga'] [u'mental', u'health', u'task', u'forc', u'meet', u'soon'] [u'microsoft', u'warn', u'window', u'secur', u'hole'] [u'militari', u'accid', u'happen', u'hill', u'say'] [u'minist', u'look', u'stronger', u'china', u'trade', u'relat'] [u'minist', u'expect', u'announc', u'highway'] [u'minist', u'urg', u'resolv', u'council'] [u'fund', u'tackl', u'bug'] [u'morri', u'inquiri', u'reveal', u'long', u'wait', u'list'] [u'attack', u'feder', u'drought', u'scheme'] [u'urg', u'road', u'upgrad'] [u'want', u'quicker', u'decis', u'technic', u'colleg'] [u'murder', u'student', u'parent', u'head', u'canberra'] [u'nadal', u'agassi', u'montreal', u'quarter'] [u'natasha', u'ryan', u'boyfriend', u'jail', u'perjuri'] [u'nation', u'highlight', u'coast', u'health', u'fund'] [u'nation', u'pledg', u'abolish', u'health', u'servic'] [u'nevill', u'expect', u'tough', u'reunion', u'unit', u'brother'] [u'law', u'allow', u'indefinit', u'jail', u'offend'] [u'port', u'minist', u'newcastl', u'facil'] [u'pulp', u'design', u'unveil'] [u'water', u'suppli', u'manag', u'seek', u'council'] [u'want', u'telco', u'debat', u'focus', u'legisl'] [u'norfolk', u'govt', u'reject', u'phone', u'monitor', u'claim'] [u'wit', u'support', u'boston', u'wast'] [u'bomb', u'near', u'miss', u'mayor', u'worri'] [u'number', u'hungri', u'africa', u'soar', u'report'] [u'offic', u'take', u'hospit', u'alterc'] [u'price', u'break', u'barrel'] [u'spill', u'culprit', u'face', u'fine'] [u'opposit', u'want', u'legal', u'advic', u'bushfir', u'action'] [u'origin', u'lead', u'leagu', u'push', u'melbourn'] [u'petrol', u'sniff', u'death', u'prevent'] [u'petrol', u'sniff', u'inquest', u'wind'] [u'pie', u'pair', u'reach', u'game', u'mileston'] [u'pipelin', u'design', u'work', u'begin'] [u'consid', u'bush', u'fund', u'concern'] [u'consid', u'telstra', u'fund'] [u'encourag', u'indigen', u'public', u'servant'] [u'reserv', u'judgement', u'qaeda', u'video'] [u'say', u'milit', u'video', u'chill', u'stuff'] [u'polic', u'charg', u'drink', u'drive'] [u'polic', u'warn', u'road', u'safeti', u'crackdown'] [u'port', u'know', u'score', u'demetriou'] [u'potato', u'grower', u'angri', u'food', u'plant', u'collaps'] [u'power', u'appeal', u'process'] [u'premier', u'call', u'railcorp', u'improv', u'servic'] [u'premier', u'defend', u'council', u'dismiss'] [u'probe', u'continu', u'fatal', u'level', u'cross', u'crash'] [u'project', u'supervisor', u'receiv', u'work', u'dole', u'award'] [u'propos', u'nuclear', u'dump', u'sit', u'untest'] [u'protest', u'convict', u'enter', u'exclus', u'zone'] [u'protest', u'hold', u'plan', u'road', u'improv'] [u'psychic', u'fail', u'predict', u'crystal', u'ball'] [u'public', u'revis', u'apart', u'plan'] [u'public', u'urg', u'busi', u'apprentic'] [u'public', u'warn', u'port', u'gunshot', u'nois'] [u'govt', u'urg', u'extend', u'petrol', u'subsidi'] [u'quick', u'exit', u'beazley', u'elect', u'chanc'] [u'boss', u'see', u'rat', u'stay'] [u'region', u'uni', u'success', u'surpris', u'nelson'] [u'resourc', u'lead', u'market', u'record'] [u'rock', u'lobster', u'fishermen', u'outrag', u'propos', u'permit'] [u'rspca', u'hop', u'tiger', u'death', u'messag', u'hear'] [u'russia', u'mark', u'kursk', u'disast', u'anniversari'] [u'schipper', u'claim', u'petria', u'record'] [u'school', u'anti', u'terror', u'plan'] [u'search', u'miss', u'great', u'southern'] [u'second', u'appear', u'court', u'woman', u'murder'] [u'second', u'phase', u'port', u'dredg', u'begin'] [u'secur', u'agenc', u'continu', u'examin', u'milit'] [u'singer', u'rock', u'putrid', u'venu'] [u'skier', u'hope', u'tasmanian', u'snowfal'] [u'slight', u'drop', u'drought', u'affect', u'area'] [u'smith', u'brave', u'pain', u'raider'] [u'smith', u'play', u'pain', u'raider'] [u'snake', u'bite', u'camper', u'face'] [u'snow', u'close', u'nation', u'park'] [u'snowi', u'water', u'help', u'riverina', u'rice', u'grower'] [u'specialist', u'nurs', u'help', u'refuge'] [u'strike', u'affect', u'freight', u'rail', u'servic'] [u'strike', u'threaten', u'mobil', u'phone', u'internet', u'servic'] [u'submiss', u'inland', u'rail', u'plan'] [u'super', u'seri', u'squad', u'name', u'ash'] [u'survey', u'highlight', u'recreat', u'fish', u'boom'] [u'suspect', u'arrest', u'indonesian', u'activist', u'murder'] [u'suspend', u'sentenc', u'vizard', u'bookkeep'] [u'sydney', u'charg', u'anim', u'cruelti', u'bestial'] [u'sydney', u'face', u'bestial', u'cruelti', u'charg'] [u'tafe', u'graduat', u'choic'] [u'tasmanian', u'council', u'fin', u'sewag', u'spill'] [u'taxpay', u'need', u'guid', u'telstra', u'fund', u'decis'] [u'teenag', u'girl', u'bail', u'sexual', u'assault', u'charg'] [u'telstra', u'upgrad', u'sensibl', u'howard', u'say'] [u'thousand', u'protest', u'jewish', u'settlement'] [u'thousand', u'strand', u'british', u'airway', u'strike'] [u'arrest', u'bash', u'abduct'] [u'townsvill', u'celebr', u'anniversari', u'wwii'] [u'troop', u'stay', u'chief'] [u'trucki', u'hurt', u'freeway', u'crash'] [u'tweed', u'council', u'open', u'tidal', u'floodgat'] [u'seek', u'deport', u'foreign', u'nation'] [u'campus', u'prepar', u'open'] [u'union', u'picket', u'mushroom', u'factori', u'campaign'] [u'rank', u'provid', u'shock'] [u'unit', u'look', u'strike', u'earli', u'premiership', u'blow'] [u'univers', u'poor', u'rank', u'surpris', u'student'] [u'uranium', u'compani', u'rewrit', u'industri', u'rule'] [u'vice', u'chancellor', u'see', u'poor', u'rank', u'opportun'] [u'virgin', u'blue', u'reject', u'kalgoorli', u'servic', u'plan'] [u'vizard', u'bookkeep', u'walk', u'free'] [u'vodafon', u'chang', u'competit', u'winner'] [u'wage', u'case', u'prompt', u'suit', u'bakeri', u'franchise'] [u'warn', u'dedic', u'wicket', u'children'] [u'weather', u'disast', u'kill', u'china'] [u'whim', u'creek', u'copper', u'run'] [u'windsor', u'honour', u'local', u'govt', u'stalwart'] [u'woman', u'admit', u'role', u'norfolk', u'sieg'] [u'woman', u'resolv', u'love', u'triangl', u'kill', u'facto'] [u'work', u'reopen', u'vanadium'] [u'weav', u'win', u'indigen', u'award'] [u'wwii', u'veteran', u'mark', u'victori', u'townsvill'] [u'youth', u'festiv', u'declar', u'success'] [u'iraqi', u'dead', u'gunfir', u'doctor'] [u'milan', u'sign', u'australian', u'keeper', u'kalac'] [u'black', u'retain', u'bledislo'] [u'urg', u'face', u'wait', u'list', u'problem'] [u'ambros', u'pole', u'oran', u'park'] [u'asic', u'relax', u'rule', u'bank', u'remot', u'area'] [u'attack', u'leav', u'dead', u'indian', u'kashmir'] [u'aussi', u'rope', u'trafford'] [u'australian', u'coupl', u'arrest', u'argentina', u'drug'] [u'resum', u'heathrow', u'flight'] [u'barnett', u'birni', u'odd', u'uranium'] [u'bicker', u'cost', u'coalit', u'elect', u'gryll', u'say'] [u'blue', u'claim', u'consol'] [u'boomer', u'overcom', u'tall', u'black', u'secur', u'titl'] [u'die', u'ski', u'accid'] [u'british', u'booki', u'tip', u'england', u'ash'] [u'bush', u'open', u'forc', u'iran'] [u'carlton'] [u'castro', u'celebr', u'birthday'] [u'cat', u'despit', u'ablett', u'debut'] [u'chase', u'blue', u'guid'] [u'child', u'hospit', u'servic', u'lack', u'studi', u'say'] [u'cold', u'snap', u'hit', u'southern', u'queensland'] [u'colour', u'cod', u'aim', u'refere', u'abus'] [u'coupl', u'attack', u'home', u'invas'] [u'crow', u'lead', u'showdown'] [u'crow', u'triumph', u'showdown'] [u'drug', u'council', u'doubt', u'use', u'petrol', u'sniff'] [u'dyer', u'schole', u'extend', u'contract'] [u'england', u'forc', u'draw', u'women', u'ash', u'open'] [u'england', u'hold', u'card', u'test'] [u'klansman', u'grant', u'bail', u'mississippi', u'burn'] [u'firebird', u'season'] [u'gilchrist', u'set', u'keeper', u'bat', u'record'] [u'gile', u'put', u'aussi', u'spin'] [u'gile', u'put', u'aussi', u'rope'] [u'googl', u'paus', u'book', u'search', u'plan', u'copyright'] [u'governor', u'general', u'salut', u'wwii', u'veteran'] [u'govt', u'ignor', u'union', u'advic', u'vice', u'chancellor', u'say'] [u'train', u'lead', u'saint', u'seventh', u'straight'] [u'half', u'price', u'colombian', u'fighter', u'offer', u'iraq'] [u'heathrow', u'servic', u'return', u'normal'] [u'hudson', u'star', u'hockeyroo'] [u'indonesia', u'jail', u'term', u'bali', u'bomber'] [u'insur', u'sue', u'limp', u'bizkit', u'death'] [u'interview', u'simon', u'jone'] [u'korp', u'dead'] [u'korp', u'take', u'life'] [u'korp', u'leav', u'note'] [u'korp', u'husband', u'dead'] [u'langer', u'england', u'attempt', u'regain', u'control'] [u'malaysia', u'lift', u'smog', u'warn'] [u'martin', u'defend', u'effort', u'fight', u'nuclear', u'wast', u'dump'] [u'martin', u'say', u'petrol', u'sniff', u'time'] [u'media', u'warn', u'korp', u'children'] [u'mickelson', u'seiz', u'lead'] [u'miss'] [u'miss', u'toddler'] [u'miss', u'toddler', u'reunit', u'mother'] [u'mount', u'warn', u'indigen'] [u'mourner', u'farewel', u'minist', u'robin', u'cook'] [u'accus', u'offic', u'person', u'gain'] [u'nadal', u'reach', u'semi', u'rain', u'disrupt', u'agassi'] [u'detent', u'centr', u'asylum', u'seeker'] [u'tripl', u'gold', u'gatlin', u'baton', u'blunder'] [u'opposit', u'question', u'opera', u'hous', u'secur', u'upgrad'] [u'orford', u'make', u'storm'] [u'palestinian', u'march', u'celebr', u'isra', u'pullout'] [u'pentagon', u'move', u'block', u'ghraib', u'photo'] [u'spectat', u'injur', u'fall', u'tree', u'limb'] [u'unlik', u'chang', u'polic', u'immun', u'law'] [u'polar', u'bear', u'make', u'arctic', u'swim'] [u'polic', u'search', u'miss', u'toddler'] [u'premier', u'veto', u'islam', u'group', u'invit', u'terror'] [u'prison', u'worker', u'maintain', u'overtim', u'ban'] [u'rabbitoh', u'deal', u'blow', u'raider', u'final', u'hop'] [u'raider', u'ahead', u'pivot', u'battl', u'rabbitoh'] [u'rain', u'delay', u'trafford', u'restart'] [u'redempt', u'marathon', u'effort', u'radcliff'] [u'ronaldo', u'set', u'goal', u'target', u'season'] [u'rooster', u'shark', u'half', u'time'] [u'rooster', u'return', u'winner', u'list'] [u'school', u'driver', u'face', u'drink', u'drive', u'charg'] [u'septemb', u'record', u'public'] [u'seven', u'illeg', u'immigr', u'arrest'] [u'slaveri', u'law', u'fail'] [u'silent', u'bush', u'drive', u'past', u'anti', u'protest'] [u'spectat', u'injur', u'fall', u'tree', u'limb'] [u'lankan', u'assassin', u'spark', u'emerg'] [u'lankan', u'foreign', u'minist', u'assassin'] [u'steffensen', u'eighth', u'aussi', u'reach', u'relay', u'final'] [u'tamil', u'tiger', u'deni', u'kill', u'lankan', u'minist'] [u'tasmanian', u'labor', u'deni', u'forc', u'quick'] [u'telstra', u'sale', u'sure', u'thing', u'minchin'] [u'remand', u'argentin', u'cocain', u'smuggl', u'case'] [u'envoy', u'bar', u'zimbabw', u'camp'] [u'envoy', u'call', u'haitian', u'rebel', u'releas', u'scandal'] [u'stock', u'record'] [u'trade', u'deficit', u'near', u'time', u'high'] [u'wallabi', u'brush', u'asid', u'critic'] [u'nation', u'telstra', u'inquiri'] [u'nation', u'telstra', u'sale', u'condit'] [u'teacher', u'warn', u'nelson', u'stop', u'play', u'polit'] [u'weaver', u'indigen', u'award'] [u'woman', u'win', u'million', u'arm', u'bandit'] [u'reject', u'nation', u'abort', u'law'] [u'campaign', u'focus', u'train', u'timet', u'chang'] [u'ambul', u'union', u'road', u'rescu', u'rule', u'chang'] [u'aussi', u'relay', u'team', u'run', u'fifth'] [u'aussi', u'chase', u'england', u'declar'] [u'aussi', u'content'] [u'australian', u'leader', u'tribut', u'lang'] [u'australia', u'world', u'veteran', u'honour'] [u'pain', u'threaten', u'clark', u'career'] [u'beatti', u'play', u'wait', u'list', u'woe'] [u'brown', u'urg', u'visit', u'petrol', u'sniff', u'communiti'] [u'bulldog', u'dream', u'aliv'] [u'busi', u'regul', u'cut', u'prioriti', u'howard'] [u'compromis', u'student', u'union', u'need', u'labor'] [u'concern', u'rais', u'paedophil', u'releas'] [u'court', u'tell', u'kidnap', u'link', u'biki', u'gang'] [u'crew', u'clean', u'storm', u'hit', u'perth'] [u'cyclist', u'condit', u'improv'] [u'cypriot', u'airlin', u'crash', u'greec'] [u'david', u'lang', u'dead'] [u'dead', u'whale', u'wash', u'ashor'] [u'hasler', u'michael', u'hagan', u'interview'] [u'doubl', u'round', u'dibaba', u'lead', u'night', u'first'] [u'dragon', u'confirm', u'favourit', u'down', u'brisban'] [u'dragon', u'look', u'good', u'brisban'] [u'enforc', u'vital', u'food', u'label', u'rule'] [u'england', u'solid', u'start', u'second', u'inning'] [u'destroy', u'hill', u'factori'] [u'zealand', u'lang', u'die'] [u'germani', u'reject', u'iran', u'militari', u'option'] [u'gharib', u'retain', u'world', u'marathon', u'titl'] [u'gippsland', u'cheddar', u'name', u'chees'] [u'glori', u'condemn', u'sydney', u'loss'] [u'govt', u'fund', u'search', u'hmas', u'sydney'] [u'govt', u'pressur', u'site', u'rural', u'dump'] [u'govt', u'fund', u'search', u'sydney'] [u'graham', u'murray', u'sheen', u'interview'] [u'green', u'anger', u'firework', u'review', u'delay'] [u'green', u'want', u'petrol', u'sniff', u'stop'] [u'hama', u'vow', u'continu', u'resist', u'gaza', u'pullout'] [u'hawk', u'pay', u'bomber'] [u'hockeyroo', u'regist', u'straight'] [u'iemma', u'brush', u'sydney', u'centric', u'critic'] [u'iemma', u'want', u'paedophil', u'return'] [u'ingal', u'win', u'round'] [u'interview', u'billi', u'slater'] [u'interview', u'duncan', u'fletcher'] [u'interview', u'mitchel', u'rokocoko', u'gregan'] [u'iran', u'warn', u'bush', u'attack'] [u'iraqi', u'roadsid', u'bomb', u'kill', u'soldier'] [u'law', u'surpris', u'reliev', u'vail', u'say'] [u'isra', u'soldier', u'injur', u'gaza', u'friend'] [u'jone', u'scrambl', u'option', u'injuri', u'crisi'] [u'jone', u'pressur', u'wallabi', u'lose'] [u'kestrel', u'clash', u'thunderbird'] [u'knight', u'roll', u'go', u'down', u'man'] [u'kookaburra', u'trounc', u'germani'] [u'lang', u'dead', u'age'] [u'unit', u'premiership', u'rival', u'notic'] [u'minist', u'urg', u'colleagu', u'forestri'] [u'mix', u'signal', u'iraqi', u'constitut'] [u'muslim', u'meet', u'combat', u'backlash'] [u'plan', u'takeov', u'report'] [u'nadal', u'battl', u'agassi', u'montreal', u'final'] [u'nasa', u'congratul', u'tidbinbilla', u'space', u'messag'] [u'nation', u'health', u'reform', u'need', u'beatti'] [u'nation', u'leader', u'reassur', u'region', u'uni'] [u'sign', u'greek', u'plane', u'crash', u'survivor'] [u'sign', u'miss', u'bushwalk'] [u'seek', u'improv', u'public', u'confid', u'court'] [u'polic', u'chief', u'promis', u'work', u'staff', u'resourc'] [u'polic', u'close', u'watch', u'tweed', u'head', u'paedophil'] [u'powel', u'confirm', u'starter', u'melbourn'] [u'princip', u'seek', u'review', u'report', u'card'] [u'bush', u'anti', u'demonstr', u'squar', u'texa'] [u'quick', u'wrong', u'beazley', u'say'] [u'rain', u'swing', u'odd', u'australia', u'favour'] [u'reform', u'busi', u'rule', u'brack'] [u'restor', u'trust', u'govern', u'confer', u'tell'] [u'eagl', u'lead', u'knight', u'half', u'time'] [u'shaun', u'mcrae', u'matthew', u'elliott', u'interview'] [u'goal', u'hall', u'inspir', u'swan'] [u'southern', u'brown', u'bandicoot', u'live', u'adelaid'] [u'strand', u'heathrow', u'passeng', u'arriv', u'home'] [u'swan', u'easi', u'lion'] [u'tanzanian', u'win', u'straight', u'citi', u'surf'] [u'polic', u'search', u'miss', u'woman'] [u'teacher', u'prepar', u'negoti', u'govt'] [u'thousand', u'rememb', u'wwii', u'hero'] [u'charg', u'alleg', u'toddler', u'abduct'] [u'kill', u'crash'] [u'tidbinbilla', u'space', u'complex', u'celebr', u'birthday'] [u'tiger', u'lead', u'cowboy'] [u'tiger', u'seven', u'straight'] [u'toni', u'kemp', u'craig', u'bellami', u'interview'] [u'display', u'high', u'tech', u'iraq', u'battl', u'tool'] [u'diplomaci', u'forc', u'schroeder'] [u'vail', u'say', u'telstra', u'futur', u'fund'] [u'veteran', u'rememb', u'victori', u'pacif'] [u'beef', u'farmer', u'fear', u'export'] [u'investig', u'cement', u'produc', u'water', u'limit'] [u'nation', u'warn', u'chang'] [u'warn', u'fall', u'short', u'maiden', u'test'] [u'warn', u'save', u'follow', u'jone', u'blunder'] [u'wayn', u'bennett', u'nathan', u'brown', u'interview'] [u'weightlift', u'power'] [u'weightlift', u'power'] [u'stick', u'iraq', u'bush'] [u'year', u'tourism', u'plan', u'cater', u'region', u'need'] [u'accc', u'investig', u'state', u'own', u'wast', u'dispos'] [u'gaza', u'israel', u'quit', u'west', u'bank', u'abba'] [u'hour', u'palliat', u'care', u'servic', u'review'] [u'alumina', u'compani', u'court', u'spill'] [u'angler', u'survey', u'catch'] [u'anti', u'terror', u'focus', u'allow', u'boom', u'drug', u'trade'] [u'argentin', u'polic', u'confid', u'jail', u'elder', u'drug'] [u'artist', u'paint', u'differ', u'pictur', u'steal', u'work'] [u'assault', u'predict', u'rise', u'western'] [u'atherton', u'rememb', u'soldier', u'care'] [u'aussi', u'hold', u'test'] [u'australian', u'expat', u'untap', u'resourc'] [u'australia', u'chanc', u'victori', u'mcgrath'] [u'bali', u'case', u'hand', u'prosecutor'] [u'bank', u'express', u'london', u'stock', u'exchang'] [u'bank', u'share', u'slide', u'market', u'move'] [u'bass', u'expect', u'lure', u'angler', u'gippsland'] [u'beatti', u'say', u'wasnt', u'push', u'quit'] [u'beazley', u'econom', u'benefit', u'chang'] [u'beef', u'compani', u'forc', u'worker', u'leav', u'amid'] [u'bendigo', u'bank', u'boost', u'profit'] [u'blaze', u'damag', u'firm', u'offic'] [u'boomer', u'sweep', u'gaze'] [u'hospit', u'abseil', u'accid'] [u'boy', u'death', u'prompt', u'child', u'safeti', u'dept', u'question'] [u'stabl', u'cliff', u'fall'] [u'brogden', u'promis', u'major', u'verdict'] [u'broom', u'hous', u'price', u'near'] [u'brumbi', u'cast', u'doubt', u'lake', u'entranc'] [u'bundaberg', u'retir'] [u'bushfir', u'expert', u'assist', u'sumatran', u'battl'] [u'bushfir', u'inquiri', u'chief', u'return', u'ravag'] [u'elect', u'delay', u'poker', u'machin', u'decis'] [u'cabinet', u'hear', u'nation', u'telstra', u'demand'] [u'centr', u'link', u'fraud'] [u'effort', u'save', u'beef', u'processor'] [u'cheaper', u'hec', u'moot', u'eas', u'engin', u'shortag'] [u'children', u'driver', u'charg', u'drink', u'drive'] [u'citrus', u'grower', u'remain', u'firm', u'food', u'label'] [u'clearanc', u'parliament', u'guard', u'question'] [u'clijster', u'storm', u'second', u'titl'] [u'clinton', u'condemn', u'lankan', u'assassin'] [u'commerci', u'complex', u'develop', u'plough'] [u'communiti', u'support', u'campaign', u'better', u'dental'] [u'complac', u'consid', u'indigen', u'poverti', u'biggest'] [u'concern', u'delay', u'offend', u'regist', u'put'] [u'council', u'get', u'tougher', u'illeg', u'build'] [u'council', u'mini', u'port', u'fear'] [u'council', u'decid', u'retir', u'villag', u'builder'] [u'council', u'highlight', u'renew', u'energi', u'park'] [u'countri', u'urg', u'learn', u'dairi', u'deregul'] [u'darwin', u'celebr'] [u'deakin', u'avenu', u'honour', u'district', u'servic'] [u'dean', u'dash', u'glori', u'final', u'date'] [u'decis', u'loom', u'banana', u'levi', u'ballot'] [u'direct', u'vote', u'soon', u'begin', u'lobster', u'council'] [u'doctor', u'want', u'real', u'toowoomba', u'wait', u'list', u'reveal'] [u'drag', u'air', u'meninde', u'lake', u'studi', u'concern'] [u'driver', u'record', u'calder', u'highway'] [u'driver', u'face', u'cabl', u'beach', u'cost'] [u'dunn', u'rid', u'bull', u'australia'] [u'edward', u'meet', u'alcoa', u'spillag'] [u'england', u'turn', u'screw', u'australia'] [u'lead', u'peac', u'mission', u'aceh'] [u'expert', u'meet', u'develop', u'malaria', u'check'] [u'explos', u'truck', u'driver', u'strike'] [u'extrem', u'weather', u'hit', u'china'] [u'famili', u'ponder', u'public', u'farewel', u'lang'] [u'fear', u'live', u'risk', u'bypass', u'investig'] [u'fiji', u'minist', u'acquit', u'coup', u'charg'] [u'filipino', u'armi', u'claim', u'possess', u'bali', u'suspect'] [u'firefight', u'contain', u'north', u'bushfir'] [u'face', u'charg'] [u'hurt', u'motorcycl', u'crash'] [u'charg', u'hear', u'girl', u'cupboard', u'case'] [u'geraldton', u'hous', u'price', u'rise', u'percent'] [u'govern', u'oppos', u'bashir', u'sentenc', u'downer'] [u'govt', u'decid', u'deer', u'park', u'bypass'] [u'helmet', u'help', u'save', u'young', u'cyclist'] [u'higher', u'fuel', u'price', u'drive', u'demand', u'convers'] [u'high', u'price', u'fail', u'boost', u'wool', u'market'] [u'number', u'caus', u'death', u'hospit'] [u'hmas', u'anzac', u'home', u'month', u'stint'] [u'hmas', u'sydney', u'search', u'hope', u'fund'] [u'horror', u'weekend', u'central', u'western', u'road'] [u'hous', u'remain', u'cheap', u'kalgoorli'] [u'howard', u'reflect', u'debt', u'wwii', u'dead'] [u'ident', u'theft', u'warrant', u'access', u'think', u'say'] [u'illawarra', u'celebr', u'anniversari', u'wwii'] [u'indian', u'centr', u'sell', u'australian', u'detail'] [u'indonesia', u'aceh', u'rebel', u'sign', u'truce'] [u'industri', u'group', u'want', u'apprenticeship', u'overhaul'] [u'injur', u'cyclist', u'return', u'home', u'soon'] [u'injur', u'cyclist', u'olymp', u'hop'] [u'interview', u'glenn', u'mcgrath'] [u'investig', u'continu', u'fatal', u'south', u'east', u'crash'] [u'investig', u'cypriot', u'plane', u'crash', u'begin'] [u'law', u'face', u'senat', u'inquiri'] [u'israel', u'begin', u'gaza', u'strip', u'withdraw'] [u'japanes', u'repeat', u'wwii', u'apolog'] [u'reject', u'perform', u'rank'] [u'jewish', u'settler', u'ask', u'leav', u'gaza'] [u'judd', u'clear', u'seven', u'face', u'charg'] [u'judd', u'clear', u'seven', u'charg'] [u'kookaburra', u'second', u'germani'] [u'lead', u'recycl', u'plant', u'await', u'approv'] [u'lithgow', u'adult', u'store', u'wait', u'approv'] [u'lockyer', u'sidelin', u'final'] [u'long', u'time', u'championship', u'brave'] [u'receiv', u'formal', u'approach', u'macquari', u'bank'] [u'magic', u'merlyn', u'gat'] [u'die', u'speed', u'boat', u'mishap'] [u'march', u'wwii', u'commemor'] [u'martin', u'defend', u'indonesia', u'visit'] [u'maverick', u'coach', u'lament', u'grand', u'final', u'loss'] [u'mayor', u'women', u'claim', u'fail', u'earn', u'award'] [u'memor', u'commemor', u'despit', u'weather'] [u'memori', u'remain', u'vivid'] [u'michael', u'play', u'lion', u'injuri', u'toll', u'mount'] [u'michael', u'clear', u'lion', u'injuri', u'toll', u'mount'] [u'mickelson', u'edg', u'elkington', u'thriller'] [u'mine', u'compani', u'fin', u'nois', u'pollut'] [u'minist', u'defend', u'newborn', u'facil'] [u'minist', u'urg', u'driver', u'public', u'transport'] [u'chairman', u'stand'] [u'mottram', u'take', u'bronz', u'helsinki'] [u'clear', u'thailand', u'travel', u'rort'] [u'rais', u'alarm', u'gambl', u'legisl'] [u'reject', u'govt', u'food', u'label', u'pledg'] [u'nadal', u'overcom', u'agassi', u'lift', u'montreal', u'titl'] [u'nation', u'propos', u'million', u'road', u'develop'] [u'nationwid', u'strike', u'shut', u'bangladesh'] [u'group', u'breath', u'life', u'research', u'station'] [u'newli', u'autonom', u'bougainvill', u'flood'] [u'region', u'parti', u'tackl', u'green', u'polici'] [u'telstra', u'plan', u'bandaid', u'solut'] [u'zealand', u'lose', u'carter', u'break'] [u'danger', u'univers', u'takeov', u'stirl', u'say'] [u'engin', u'futur'] [u'plan', u'chang', u'taiwan', u'leader', u'downer'] [u'north', u'coast', u'rememb', u'wwii'] [u'sign', u'iraqi', u'constitut', u'deal'] [u'welcom', u'communiti', u'polic', u'post'] [u'nrma', u'call', u'cross', u'citi', u'tunnel', u'fee'] [u'move', u'transfer', u'paedophil'] [u'nuclear', u'dump', u'decis', u'pure', u'polit'] [u'nyiapar', u'peopl', u'claim', u'fortescu', u'forc'] [u'oppos', u'bali', u'bomb', u'sentenc', u'cut', u'howard', u'urg'] [u'opposit', u'question', u'delay'] [u'opposit', u'say', u'oversea', u'trip', u'show', u'martin'] [u'opposit', u'propos', u'censur', u'stanhop'] [u'orang', u'grove', u'owner', u'carr'] [u'paedophil', u'worri', u'tweed', u'resid'] [u'pair', u'face', u'court', u'drug'] [u'panther', u'seek', u'port', u'macquari', u'club'] [u'patel', u'past', u'know', u'govt', u'public', u'inquiri'] [u'paul', u'mortlock', u'mackay', u'fail', u'medic'] [u'rent', u'land', u'oxfam', u'tell', u'govern'] [u'phone', u'help', u'lose', u'skier'] [u'pilot', u'bodi', u'cypriot', u'plane', u'wreckag'] [u'plan', u'mildura', u'emerg', u'hour', u'clinic'] [u'plan', u'increas', u'speed', u'camera', u'zone', u'capit'] [u'oppn', u'tribut', u'wwii', u'generat'] [u'pledg', u'chang', u'wont', u'hurt', u'ordinari'] [u'polic', u'alert', u'indian', u'centr', u'fraud', u'claim'] [u'polic', u'halt', u'search', u'miss', u'bushwalk'] [u'polic', u'lose', u'appeal', u'fine'] [u'polic', u'probe', u'stop', u'shoot'] [u'polic', u'promis', u'continu', u'road', u'safeti', u'crackdown'] [u'polic', u'search', u'attempt', u'abduct'] [u'polic', u'search', u'miss', u'scooter'] [u'pope', u'look', u'youth', u'renew', u'church'] [u'portug', u'honour', u'humanitarian', u'work'] [u'post', u'mortem', u'road', u'crash', u'victim'] [u'protest', u'ralli', u'egyptian', u'presid'] [u'public', u'abus', u'drive', u'mayor', u'resign'] [u'push', u'women', u'councillor'] [u'plan', u'perman', u'hamilton', u'paramed'] [u'queensland', u'respons', u'health', u'beatti'] [u'quick', u'felt', u'pressur', u'retir'] [u'race', u'club', u'merger', u'discuss'] [u'radcliff', u'limo', u'final', u'enter', u'golden'] [u'rann', u'protest', u'possibl', u'bashir', u'sentenc'] [u'region', u'driver', u'warn', u'rise', u'fuel', u'price'] [u'renmark', u'club', u'back', u'plan', u'borrow'] [u'rescuer', u'help', u'beach', u'whale'] [u'resid', u'group', u'consid', u'flood', u'legal', u'action'] [u'review', u'recommend', u'land', u'right', u'reform'] [u'rice', u'industri', u'consid', u'diversifi'] [u'safeti', u'fear', u'spark', u'tree', u'remov'] [u'scientist', u'identifi', u'pine', u'forest', u'pest'] [u'screen', u'produc', u'seek', u'rescu', u'packag'] [u'search', u'bushwalk', u'resum', u'tomorrow'] [u'settlement', u'payment', u'consid', u'oberon'] [u'settler', u'notic', u'evacu', u'gaza', u'strip'] [u'sewerag', u'pipe', u'woe', u'close', u'broom', u'street'] [u'sexi', u'driver', u'direct', u'jam', u'bond'] [u'shire', u'plan', u'charg', u'driver', u'beach', u'access'] [u'shire', u'beat', u'saleyard', u'revamp'] [u'small', u'screen', u'replac', u'clergi', u'countri'] [u'speaker', u'investig', u'travel', u'rort', u'alleg'] [u'speed', u'motorcad', u'trial', u'overshadow', u'clark'] [u'strauss', u'warn', u'england', u'kill'] [u'studi', u'find', u'famili', u'fish', u'promot', u'harmoni'] [u'studi', u'show', u'strong', u'support', u'test'] [u'success', u'rodeo', u'mark'] [u'suicid', u'bomber', u'wound', u'baghdad', u'polic'] [u'sydney', u'pay', u'tribut', u'celebr'] [u'syphili', u'epidem', u'hit', u'sydney', u'communiti'] [u'return', u'paedophil', u'minist', u'say'] [u'accommod', u'industri', u'boom'] [u'tasmanian', u'mark', u'anniversari'] [u'telstra', u'competitor', u'protect', u'bush', u'servic'] [u'telstra', u'criticis', u'phone', u'outag'] [u'telstra', u'reject', u'exchang', u'secur', u'critic'] [u'telstra', u'contractor', u'pose', u'secur', u'risk'] [u'tender', u'call', u'natur', u'discoveri', u'centr'] [u'tender', u'close', u'pack', u'centr'] [u'thousand', u'mark'] [u'thousand', u'seek', u'market', u'bargain'] [u'tiger', u'announc', u'secur', u'review'] [u'townsvill', u'hold', u'dawn', u'servic', u'celebr'] [u'wound', u'blast', u'near', u'egypt', u'militari', u'airport'] [u'uncertain', u'futur', u'follow'] [u'defend', u'dentistri', u'cours', u'equip', u'shortag'] [u'union', u'fear', u'school', u'downgrad'] [u'review', u'buller', u'cours'] [u'unhappi', u'rank'] [u'test', u'iran', u'nuke', u'trace', u'diplomat'] [u'uranium', u'mine', u'debat', u'subsid', u'compani', u'say'] [u'victorian', u'commemor'] [u'visitor', u'centr', u'closur', u'caus', u'tourism'] [u'commemor', u'continu', u'today'] [u'thanksgiv', u'servic', u'enact'] [u'veteran', u'celebr'] [u'urg', u'parol', u'paedophil'] [u'wheat', u'grower', u'support', u'reform'] [u'wetland', u'park', u'plan', u'move', u'closer', u'realiti'] [u'whale', u'pair', u'spot', u'near', u'nineti', u'mile', u'beach'] [u'windsor', u'invit', u'rejoin', u'nation'] [u'catch', u'wheel', u'parent'] [u'dead', u'nato', u'helicopt', u'crash', u'afghanistan'] [u'job', u'chang', u'health', u'merger'] [u'dead', u'guatemala', u'prison', u'gang', u'battl'] [u'conting', u'plan', u'rail', u'timet'] [u'abattoir', u'closur', u'cost', u'communiti'] [u'aborigin', u'astronom', u'mytholog', u'star'] [u'accc', u'put', u'children', u'nightwar', u'safeti'] [u'aceh', u'rebel', u'leap', u'faith'] [u'acquisit', u'computershar', u'profit'] [u'actu', u'urg', u'inquiri', u'clear', u'confus'] [u'aid', u'drug', u'deal', u'improv', u'avail'] [u'spend', u'fair', u'poor', u'nation', u'chariti'] [u'anaesthetist', u'debat', u'deal', u'tonight'] [u'andamooka', u'water', u'pipelin', u'need', u'volunt'] [u'angler', u'carp', u'reservoir', u'fish', u'woe'] [u'annan', u'order', u'procur', u'inspect'] [u'australia', u'hold', u'draw'] [u'author', u'search', u'fear', u'take'] [u'pois', u'fall', u'gillespi'] [u'bali', u'blast', u'victim', u'mother'] [u'bangkok', u'base', u'trawler', u'catch', u'darwin'] [u'bank', u'telco', u'push', u'ord', u'record', u'close'] [u'barrichello', u'leav', u'ferrari'] [u'beazley', u'address', u'trucki', u'ralli'] [u'bok', u'pressur', u'wallabi', u'scrum', u'ball'] [u'brack', u'consid', u'fund', u'plug', u'polic', u'file'] [u'brother', u'move', u'sell', u'korp', u'diari'] [u'bundaberg', u'hospit', u'inquiri', u'deadlin', u'slip'] [u'bush', u'hail', u'effort', u'forg', u'iraqi', u'constitut'] [u'cana', u'determin', u'fight', u'dope'] [u'captainci', u'grab', u'hird', u'signal'] [u'chang', u'duti', u'care', u'onus', u'corpor', u'farm'] [u'chimp', u'shed', u'light', u'handed'] [u'smith', u'develop', u'challeng', u'continu'] [u'claim', u'author', u'regul', u'unqualifi'] [u'cole', u'myer', u'consid', u'split'] [u'cole', u'myer', u'sale'] [u'competitor', u'woe', u'boost', u'cochlear', u'profit'] [u'consular', u'assist', u'offer', u'crash', u'victim', u'famili'] [u'coron', u'find', u'safeti', u'breach', u'fatal', u'truck', u'crash'] [u'council', u'back', u'develop', u'plan'] [u'council', u'code', u'conduct', u'report', u'loom'] [u'council', u'consid', u'hospit', u'develop', u'plan'] [u'council', u'consid', u'clarenza', u'hous', u'plan'] [u'court', u'allow', u'releas', u'korp', u'video'] [u'crash', u'victim', u'famili', u'head', u'cyprus'] [u'cutjar', u'consid', u'deputi', u'mayor', u'role'] [u'decis', u'loom', u'mall', u'birdcag', u'cover'] [u'develop', u'snap', u'shop', u'centr', u'project'] [u'downer', u'hail', u'aceh', u'peac', u'deal'] [u'downer', u'prais', u'israel', u'gaza', u'strip', u'withdraw'] [u'dozen', u'injur', u'japan', u'quak'] [u'drink', u'drive', u'father', u'await', u'sentenc', u'son'] [u'driver', u'accus', u'drink', u'breath'] [u'driver', u'licenc', u'chang', u'help', u'work', u'backpack'] [u'elkington', u'snub', u'presid'] [u'engin', u'promot', u'career'] [u'england', u'deserv', u'australia', u'respect'] [u'explos', u'detect', u'get', u'million', u'grant'] [u'fail', u'legal', u'action', u'coron', u'cost', u'million'] [u'farmer', u'urg', u'safe'] [u'feder', u'overhaul', u'hewitt', u'rank', u'record'] [u'feder', u'struggl', u'past', u'blake', u'return', u'match'] [u'home', u'buyer', u'urg', u'bush'] [u'charg', u'million', u'super', u'scam'] [u'flower', u'tree', u'attract', u'apiarist'] [u'stand', u'nativ', u'titl', u'agreement'] [u'food', u'shortag', u'threaten', u'niger', u'nomad', u'oxfam'] [u'health', u'minist', u'like', u'morri'] [u'sport', u'teacher', u'admit', u'student'] [u'woolnorth', u'manag', u'fin', u'anim', u'cruelti'] [u'fossil', u'forest', u'point', u'rapid', u'climat', u'chang'] [u'fourth', u'person', u'charg', u'businessman', u'kidnap'] [u'fresh', u'alleg', u'iraqi', u'prison', u'abus', u'emerg'] [u'fund', u'seek', u'youth', u'work', u'studi'] [u'gallop', u'ask', u'interven', u'paedophil', u'parol'] [u'garden', u'revamp'] [u'gerrard', u'pin', u'owen', u'return'] [u'govt', u'know', u'green', u'woe'] [u'govt', u'reject', u'cootamundra', u'tumut', u'rail', u'line', u'fund'] [u'govt', u'urg', u'realiti', u'check', u'indigen'] [u'grand', u'hotel', u'like', u'sell', u'despit', u'reopen'] [u'gregan', u'defiant', u'face', u'quit', u'call'] [u'group', u'fight', u'rail', u'bridg', u'roadwork'] [u'gryll', u'cast', u'doubt', u'local', u'govt', u'merger'] [u'higher', u'fuel', u'price', u'prompt', u'switch'] [u'high', u'temp', u'impact', u'spring', u'rain', u'forecast'] [u'human', u'like', u'skin', u'help', u'robot', u'sens', u'heat'] [u'hundr', u'arrest', u'violent', u'gaza', u'protest'] [u'hussey', u'brother', u'run'] [u'iemma', u'face', u'crisi'] [u'independ', u'bodi', u'overse', u'heritag', u'list'] [u'independ', u'prepar', u'nation', u'fight'] [u'inquiri', u'examin', u'local', u'govt', u'financi'] [u'internet', u'fuel', u'illeg', u'wildlif', u'trade', u'studi'] [u'investig', u'begin', u'brisban', u'river', u'collis'] [u'iranian', u'form', u'human', u'chain', u'disput', u'nuclear', u'plant'] [u'irrig', u'trust', u'doubt', u'water', u'restrict', u'respit'] [u'think', u'blow', u'pont'] [u'japan', u'quak', u'trigger', u'tsunami', u'alert'] [u'japan', u'rock', u'power', u'quak'] [u'japan', u'upgrad', u'quak', u'magnitud'] [u'joyc', u'oppos', u'telstra', u'sale'] [u'juri', u'dismiss', u'petroulia', u'trial'] [u'kidnap', u'iraqi', u'canadian', u'dead'] [u'land', u'right', u'chang', u'secondari', u'concern'] [u'latest', u'doctor', u'resign', u'trigger', u'patient'] [u'latham', u'rule', u'bok', u'test'] [u'lennon', u'music', u'imagin', u'life', u'beatl'] [u'local', u'busi', u'benefit', u'buy', u'centr'] [u'lockyer', u'tahu', u'face', u'time', u'sidelin'] [u'lockyer', u'final', u'bronco'] [u'malaysian', u'logger', u'take', u'revenu', u'expert'] [u'give', u'girl', u'heroin', u'exchang', u'court'] [u'kill', u'hous'] [u'lie', u'asio', u'terror', u'suspect', u'court', u'tell'] [u'risk', u'backstair', u'passag', u'swim', u'chariti'] [u'matai', u'challeng', u'high', u'tackl', u'charg'] [u'mcgrath', u'best', u'number'] [u'measur', u'seek', u'improv', u'traffic', u'flow'] [u'medibank', u'privat', u'sale', u'consider'] [u'suffer', u'cook', u'burn', u'unit', u'blaze'] [u'industri', u'urg', u'encourag', u'safeti'] [u'mix', u'respons', u'delay', u'council', u'meet'] [u'evid', u'need', u'cemeteri', u'attack'] [u'govern', u'support', u'conserv', u'scheme'] [u'speed', u'camera', u'overreact'] [u'submiss', u'take', u'marin', u'park'] [u'water', u'coorong', u'urgent', u'need'] [u'motorist', u'urg', u'slow'] [u'back', u'poki', u'review'] [u'threaten', u'quit', u'power', u'plant'] [u'mulan', u'petrol', u'bowser'] [u'murder', u'charg', u'drop', u'death', u'custodi', u'case'] [u'mysteri', u'reptil', u'elud', u'captur', u'park'] [u'nation', u'accus', u'steal', u'credit', u'telstra'] [u'caloundra', u'courthous', u'open'] [u'hous', u'plan', u'incom', u'earner'] [u'decis', u'telstra', u'sale', u'costello', u'say'] [u'suburb', u'name', u'orang'] [u'survivor', u'venezuela', u'plane', u'crash', u'offici'] [u'know', u'paedophil', u'move'] [u'cattl', u'export', u'buck', u'nationwid', u'trend'] [u'parliament', u'pass', u'nuclear', u'dump', u'motion'] [u'reward', u'game'] [u'oilse', u'plant', u'provid', u'job', u'boost'] [u'spill', u'clean', u'cost', u'reach'] [u'oliv', u'spring', u'carniv'] [u'onesteel', u'post', u'profit'] [u'opposit', u'claim', u'busi', u'ask', u'bale', u'water'] [u'opposit', u'question', u'huge', u'surplus'] [u'opposit', u'say', u'drug', u'court', u'better', u'late'] [u'outlook', u'cotton', u'price', u'remain', u'grim'] [u'parliament', u'toughen', u'bail', u'repeat'] [u'pearl', u'farm', u'get', u'ahead'] [u'consid', u'lang', u'condol', u'motion'] [u'encourag', u'push', u'reform'] [u'polic', u'charg', u'drug', u'oper'] [u'policeman', u'save', u'woman', u'burn', u'hous'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'young', u'road', u'crash', u'victim'] [u'polic', u'rethink', u'drug', u'fight', u'tactic'] [u'polic', u'review', u'nightclub', u'loiter', u'incid'] [u'polic', u'work', u'stop', u'illeg', u'trail', u'bike', u'rid'] [u'potenti', u'crop', u'export', u'china'] [u'power', u'worker', u'discuss', u'disciplinari', u'penalti'] [u'premier', u'chang', u'region', u'tour'] [u'premier', u'ponder', u'scrap', u'leaki', u'polic', u'file'] [u'probe', u'continu', u'bucca', u'fatal', u'crash'] [u'public', u'school', u'princip', u'seek', u'pariti'] [u'public', u'warn', u'escape', u'danger'] [u'coalit', u'joyc', u'say'] [u'worker', u'extra', u'week'] [u'rail', u'crash', u'investig', u'return', u'home'] [u'rain', u'boost', u'wheatbelt', u'crop'] [u'rainwat', u'tank', u'supplier', u'question', u'rebat', u'condit'] [u'region', u'stage', u'protest'] [u'renew', u'energi', u'plant', u'consider'] [u'research', u'centr', u'take', u'nation', u'approach'] [u'resid', u'worri'] [u'reynold', u'defend', u'child', u'safeti', u'effort'] [u'road', u'crash', u'victim', u'trap', u'wreckag'] [u'rodeo', u'chariti', u'cash', u'look', u'good'] [u'rugbi', u'player', u'famili', u'good', u'behaviour', u'bond'] [u'russia', u'admit', u'bird', u'outbreak', u'dead', u'strain'] [u'russia', u'cosmonaut', u'set', u'record', u'day', u'space'] [u'salvo', u'domest', u'violenc', u'program', u'win', u'repriev'] [u'savag', u'wont', u'join', u'countri', u'allianc'] [u'school', u'upset', u'wimmera'] [u'scientist', u'grow', u'pure', u'nerv', u'stem', u'cell'] [u'scientist', u'search', u'croc', u'biotic'] [u'search', u'fail', u'miss', u'bushwalk'] [u'search', u'resum', u'miss', u'bushwalk'] [u'search', u'miss', u'bushwalk'] [u'senat', u'decid', u'inquiri'] [u'septic', u'tank', u'waterway', u'pollut', u'claim'] [u'sever', u'weather', u'warn', u'continu'] [u'sexual', u'assault', u'rise', u'rockhampton'] [u'sharapova', u'head', u'gold', u'coast'] [u'sharon', u'say', u'strip', u'retain', u'forev'] [u'sky', u'limit', u'england', u'vaughan', u'insist'] [u'snow', u'season', u'pick'] [u'socceroo', u'start', u'hiddink'] [u'springborg', u'dial', u'need', u'better', u'urban', u'servic'] [u'stanhop', u'rule', u'bushfir', u'coron', u'challeng'] [u'state', u'bicker', u'paedophil', u'transfer'] [u'studi', u'highlight', u'prom', u'blaze', u'tourism', u'impact'] [u'surfer', u'group', u'manag', u'schooli'] [u'suspens', u'sidelin', u'brown', u'season'] [u'tambellup', u'footi', u'club', u'hop', u'bounc'] [u'technolog', u'bring', u'medic', u'screen', u'remot', u'kid'] [u'telstra', u'plan', u'caus', u'friction'] [u'tiger', u'hawk', u'clash', u'graham'] [u'time', u'run', u'shire', u'merger', u'plan'] [u'tornado', u'coastal', u'town'] [u'trio', u'refus', u'bail', u'million', u'super', u'scam'] [u'troubl', u'meatwork', u'continu', u'trade'] [u'truck', u'driver', u'strike', u'continu'] [u'trucki', u'drive', u'home', u'messag'] [u'trujillo', u'regul', u'gripe', u'beli', u'telstra', u'record'] [u'umpir', u'rule', u'border', u'pathet', u'thoma'] [u'urg', u'poor', u'rank', u'wake'] [u'urin', u'power', u'micro', u'batteri', u'help', u'test'] [u'firm', u'win', u'australian', u'defenc', u'design', u'contract'] [u'vet', u'chariti', u'walk', u'get', u'strong', u'support'] [u'govt', u'ponder', u'tougher', u'law', u'young', u'driver'] [u'violent', u'crime', u'rise', u'gippsland'] [u'visit', u'doctor', u'person', u'disput'] [u'visit', u'doctor', u'hand', u'resign'] [u'water', u'pipelin', u'work', u'go', u'smooth'] [u'water', u'polic', u'reject', u'fundrais', u'claim'] [u'water', u'restrict', u'longer', u'barrier', u'clean'] [u'accus', u'horsham', u'focus'] [u'wollongong', u'host', u'nation', u'netbal', u'semi'] [u'woman', u'win', u'right', u'access', u'merci', u'document'] [u'women', u'cricket', u'steal'] [u'worldwid', u'hunt', u'begin', u'eas', u'skill', u'shortag'] [u'bomb', u'explod', u'bangladesh'] [u'super', u'fraud', u'accus', u'give', u'bail'] [u'free', u'melbourn', u'crash'] [u'wetland', u'project', u'criticis'] [u'wheelchair', u'taxi', u'plat'] [u'accc', u'concern', u'price', u'fix', u'dismiss'] [u'accus', u'millionair', u'murder', u'refus', u'bail'] [u'group', u'help', u'beef', u'produc'] [u'alinta', u'plan', u'boost', u'profit'] [u'peopl', u'kill', u'biggest'] [u'andren', u'slam', u'cabinet', u'telstra', u'sell'] [u'anti', u'protest', u'anger', u'local', u'texan'] [u'urg', u'nation', u'fruiti', u'cig'] [u'australian', u'missionari', u'killer', u'appeal'] [u'author', u'focus', u'bush', u'area', u'miss'] [u'author', u'investig', u'croc', u'attack'] [u'author', u'sell', u'charact', u'name', u'right'] [u'baker', u'happi', u'stay', u'deputi', u'mayor'] [u'balaclava', u'bandit', u'storm', u'mildura', u'golf', u'club'] [u'bashir', u'bali', u'bomb', u'sentenc'] [u'berdych', u'belt', u'nadal', u'derail', u'spaniard', u'streak'] [u'crowd', u'expect', u'oppos', u'civic', u'centr', u'plan'] [u'biki', u'gang', u'charg', u'shoot'] [u'billboard', u'highway'] [u'blast', u'rock', u'bangladeshi', u'citi', u'injur'] [u'brogden', u'propos', u'name', u'young', u'offend'] [u'power', u'price', u'rethink'] [u'yard', u'continu', u'despit'] [u'citrus', u'grower', u'resign', u'accept', u'canker', u'packag'] [u'clark', u'battl', u'injuri'] [u'coast', u'confer', u'film', u'industri'] [u'connolli', u'predict', u'subiaco', u'shoot'] [u'council', u'consid', u'opposit'] [u'council', u'urg', u'reject', u'chang'] [u'countri', u'allianc', u'bendigo', u'candid'] [u'court', u'overturn', u'ballarat', u'petrol', u'price', u'fix', u'rule'] [u'cowboy', u'coach', u'readi', u'demot', u'player'] [u'critic', u'umpir', u'worsfold'] [u'crowd', u'call', u'reopen', u'hickey', u'inquest'] [u'dairi', u'factori', u'tri', u'worker'] [u'dairi', u'worker', u'return', u'work'] [u'danger', u'weapon', u'destroy', u'polic', u'crackdown'] [u'consid', u'court', u'judgment', u'catt', u'retrial'] [u'delay', u'name', u'colleg', u'oper'] [u'demand', u'stretch', u'ambul', u'servic', u'resourc'] [u'disabl', u'carer', u'protest'] [u'dollar', u'deal', u'secur', u'convent', u'centr', u'upgrad'] [u'downer', u'play', u'china', u'assassin', u'claim'] [u'consid', u'appeal', u'aborigin', u'elder'] [u'eat', u'fruit', u'veget', u'arthriti'] [u'odwyer', u'sign', u'gold', u'coast'] [u'ekka', u'holiday', u'risk', u'chang', u'actu'] [u'ellison', u'reject', u'estim', u'slave', u'number'] [u'famili', u'friend', u'mourn', u'leader', u'privat'] [u'fan', u'rock', u'memori', u'elvi'] [u'fear', u'independ', u'propos', u'children'] [u'feder', u'accus', u'mayor', u'intimid'] [u'govt', u'criticis', u'food', u'label', u'law'] [u'field', u'back', u'senat', u'approv', u'govt'] [u'resid', u'evict', u'main', u'gaza', u'settlement'] [u'flood', u'affect', u'farmer', u'financi'] [u'fli', u'liquor', u'licens', u'squad', u'check', u'central'] [u'leagu', u'captain', u'farrel', u'readi', u'union'] [u'fourth', u'charg', u'super', u'fund', u'fraud'] [u'court', u'cannabi'] [u'franc', u'slump', u'post', u'world', u'rank'] [u'freddi', u'rise'] [u'gascoyn', u'festiv', u'start', u'back'] [u'geoffrey', u'william', u'shooter', u'releas'] [u'govt', u'promis', u'continu', u'maryborough', u'support'] [u'govt', u'talk', u'year', u'hous', u'plan'] [u'govt', u'urg', u'protect', u'northern', u'water'] [u'govt', u'decid', u'tweed', u'council', u'legal', u'action'] [u'grain', u'produc', u'forecast', u'healthi', u'season'] [u'green', u'concern', u'gunn', u'wast', u'dump', u'plan'] [u'griffith', u'water', u'contamin', u'scare'] [u'group', u'suggest', u'event', u'licens', u'solut'] [u'gunn', u'amend', u'pulp', u'propos'] [u'gunn', u'order', u'legal', u'cost', u'payment'] [u'gunn', u'order', u'court', u'cost'] [u'hamstr', u'injuri', u'forc', u'gerrard', u'withdraw'] [u'hewitt', u'return', u'win', u'form', u'ill'] [u'hexham', u'factori', u'blaze', u'investig'] [u'hiddink', u'impress', u'socceroo'] [u'hill', u'unveil', u'militari', u'tech', u'futur'] [u'hors', u'breed', u'dynasti', u'call'] [u'bemus', u'code', u'conduct'] [u'hudson', u'crow', u'premiership'] [u'hull', u'chang', u'telstra', u'stanc'] [u'humpback', u'see', u'townsvill'] [u'respons', u'blame', u'sharon'] [u'iemma', u'open', u'hospit', u'emerg', u'dept', u'extens'] [u'index', u'find', u'econom', u'growth'] [u'indonesia', u'free', u'aceh', u'rebel'] [u'iraqi', u'warn', u'turmoil', u'constitut', u'delay'] [u'chang', u'includ', u'tougher', u'bulli', u'law'] [u'chang', u'worri', u'western', u'teacher'] [u'isra', u'troop', u'polic', u'expect', u'troubl'] [u'isra', u'troop', u'expel', u'gaza', u'settler'] [u'isra', u'troop', u'pour', u'gaza'] [u'itali', u'question', u'thousand', u'extremist', u'crackdown'] [u'itali', u'extradit', u'london', u'bomb', u'suspect'] [u'jam', u'hardi', u'urg', u'finalis', u'compo', u'fund'] [u'joint', u'ventur', u'writedown', u'slash', u'ansel', u'profit'] [u'jone', u'make', u'chang', u'nation', u'clash'] [u'jone', u'stand', u'gregan'] [u'kerin', u'launch', u'liber', u'gambier', u'campaign'] [u'help', u'stroke', u'victim', u'launch'] [u'knight', u'prepar', u'face', u'pump', u'warrior'] [u'landown', u'enter', u'voluntari', u'conserv', u'agreement'] [u'leighton', u'profit', u'track'] [u'lend', u'leas', u'report', u'busi', u'wide', u'growth'] [u'lightn', u'take', u'denmark', u'recept'] [u'local', u'telstra', u'manag', u'quit'] [u'local', u'vmos', u'plan', u'disput'] [u'macquari', u'bank', u'open', u'newcastl', u'offic'] [u'mayor', u'angri', u'virgin', u'flight', u'decis'] [u'milan', u'offer', u'solv', u'juve', u'goalkeep', u'crisi'] [u'minist', u'highlight', u'success', u'indigen'] [u'miss', u'fisherman', u'island'] [u'mitchel', u'helidon', u'driver', u'return', u'work', u'wage'] [u'momentum', u'mcgrath'] [u'morwel', u'plead', u'guilti', u'murder'] [u'murray', u'readi', u'demot', u'perform', u'cowboy'] [u'music', u'lover', u'snap', u'ticket', u'fall', u'festiv'] [u'nation', u'approv', u'polit', u'group'] [u'nation', u'stanc'] [u'nat', u'want', u'black', u'resign', u'health', u'loss'] [u'flinder', u'hand', u'record', u'fine', u'blackout'] [u'fulli', u'suspend', u'yuendumu', u'council'] [u'kill', u'wound', u'buddhist', u'templ', u'bomb'] [u'opinion', u'divid', u'report', u'card', u'chang'] [u'opposit', u'want', u'infect', u'report'] [u'paedophil', u'imprison', u'say'] [u'pain', u'free', u'mules', u'begin'] [u'pair', u'charg', u'polic', u'assault'] [u'parol', u'offic', u'suspend', u'paedophil', u'transfer'] [u'partial', u'telstra', u'sale', u'option'] [u'passeng', u'throw'] [u'perth', u'miner', u'look', u'invest'] [u'philippin', u'say', u'foil', u'bomb', u'plot', u'embassi'] [u'apologis', u'bashir', u'sentenc', u'reduct'] [u'honour', u'solomon', u'island', u'highest', u'award'] [u'premier', u'dragon', u'eel'] [u'polic', u'academi', u'cut', u'water'] [u'polic', u'arrest', u'moroccan', u'want', u'madrid', u'bomb'] [u'polic', u'ball', u'cancel'] [u'polic', u'charg', u'pursuit'] [u'polic', u'consid', u'schooli', u'safeti', u'improv'] [u'polic', u'council', u'sign', u'fin', u'deal'] [u'polic', u'crack', u'kava', u'ring'] [u'polic', u'drop', u'abus', u'charg', u'foster', u'mother'] [u'polic', u'road', u'crash', u'trio', u'final', u'moment'] [u'polic', u'recaptur', u'escape'] [u'polic', u'triall', u'random', u'drug', u'test', u'driver'] [u'polic', u'road', u'crash', u'victim'] [u'poll', u'show', u'drop', u'support', u'beatti'] [u'pont', u'mark', u'graduat', u'captain', u'waugh'] [u'power', u'boat', u'event', u'insur', u'spotlight'] [u'pressur', u'group', u'lobbi', u'hume', u'highway'] [u'primus', u'corn', u'doubt', u'lion', u'clash'] [u'public', u'urg', u'deep', u'vinni', u'doorknock'] [u'author', u'shoot', u'metr', u'crocodil'] [u'firefight', u'embark', u'oversea', u'mission'] [u'quoll', u'surpris', u'magnet'] [u'rain', u'improv', u'africa', u'crop', u'outlook'] [u'ranger', u'shoot', u'suspect', u'killer', u'croc'] [u'ranger', u'spot', u'suspect', u'killer', u'croc'] [u'want', u'defibril', u'mildura', u'airport'] [u'redcliff', u'chatsworth', u'elect', u'loom'] [u'report', u'disput', u'polic', u'account', u'brazilian', u'man'] [u'rescu', u'servic', u'disappoint', u'fund', u'snub'] [u'resid', u'offer', u'storag', u'safeti', u'assur'] [u'resid', u'unit', u'rais', u'opposit'] [u'resourc', u'group', u'seek', u'better', u'safeti'] [u'respons', u'roll', u'broom', u'growth', u'report'] [u'retir', u'care', u'australia', u'buy', u'age', u'care', u'centr'] [u'risdon', u'prison', u'guard', u'lift', u'overtim', u'ban'] [u'riverland', u'town', u'face', u'challeng'] [u'road', u'safeti', u'group', u'tougher', u'stanc', u'young'] [u'ruddock', u'reject', u'fraser', u'terror', u'critic'] [u'jungl', u'tip', u'uranium'] [u'rumsfeld', u'reiter', u'iran', u'weapon', u'smuggl', u'claim'] [u'earthquak', u'independ', u'japanes', u'tremor'] [u'searcher', u'fail', u'miss', u'bushwalk'] [u'search', u'suspend', u'amid', u'poor', u'weather'] [u'search', u'miss', u'fishermen'] [u'sexual', u'predat', u'jail', u'teen', u'girl'] [u'skywest', u'licenc', u'lift', u'esper', u'tourism', u'hop'] [u'sonni', u'charg', u'drink', u'drive'] [u'sonni', u'sorri', u'drink', u'drive'] [u'south', u'east', u'forest', u'product', u'council', u'input'] [u'specialist', u'worri', u'prospect', u'vmos', u'walkout'] [u'spray', u'contracept', u'prevent', u'weed', u'seed'] [u'springbok', u'unchang', u'squad', u'play', u'wallabi'] [u'state', u'govt', u'ask', u'help', u'search', u'sydney'] [u'strong', u'market', u'put', u'ahead', u'profit', u'target'] [u'studi', u'find', u'fund', u'boost', u'eas', u'teacher'] [u'supermarket', u'develop', u'approv', u'loom'] [u'govt', u'urg', u'offset', u'rise', u'petrol', u'price', u'cost'] [u'teen', u'hospit', u'meningococc'] [u'telstra', u'critic', u'govern', u'sale', u'condit'] [u'telstra', u'sale', u'edg', u'closer'] [u'telstra', u'sale'] [u'thoma', u'strife', u'say', u'demetriou'] [u'charg', u'drug', u'raid'] [u'tommi', u'suharto', u'get', u'reduct', u'prison', u'sentenc'] [u'ranger', u'monitor', u'buffalo'] [u'tornado', u'astound', u'polic', u'offic'] [u'tour', u'tasmania'] [u'traine', u'specialist', u'posit', u'announc'] [u'tripl', u'bomb', u'baghdad', u'kill'] [u'charg', u'cannabi', u'claim'] [u'dead', u'bomb', u'explod'] [u'unqualifi', u'staff', u'rais', u'concern', u'school'] [u'fall', u'resourc', u'drag', u'market'] [u'zealand', u'defenc', u'tie', u'warm'] [u'vandal', u'blame', u'broom', u'power', u'cut'] [u'vanston', u'agre', u'releas', u'detaine', u'inform'] [u'vizard', u'secret', u'cash', u'fund', u'bookkeep', u'say'] [u'vmos', u'expect', u'affect', u'hospit'] [u'threaten', u'canberra', u'childcar', u'beazley'] [u'wag', u'growth', u'unlik', u'impact', u'reserv', u'bank'] [u'wallsend', u'age', u'care', u'facil'] [u'wellington', u'school', u'cope', u'influx', u'student'] [u'wesley', u'colleg', u'head', u'resign'] [u'wind', u'farm', u'call', u'public', u'opinion'] [u'woman', u'die', u'road', u'crash'] [u'woodsid', u'profit', u'drop'] [u'wool', u'price', u'impact', u'pastor', u'properti', u'valu'] [u'worker', u'replac', u'cross', u'citi', u'tunnel', u'fan'] [u'worker', u'welcom', u'long', u'contract', u'reviv'] [u'wrong', u'detent', u'news', u'vanston'] [u'yarram', u'seek', u'fund', u'indigen'] [u'zimbabw', u'reject', u'report', u'demolit'] [u'accc', u'pleas', u'sell', u'plan'] [u'trial', u'fourth', u'field', u'umpir'] [u'trial', u'field', u'umpir'] [u'arrest', u'bangladesh', u'bomb'] [u'welcom', u'health', u'dept', u'shake'] [u'amaz', u'ash', u'drag', u'cricket', u'britain'] [u'american', u'serengeti', u'need', u'save', u'larg', u'mammal'] [u'arrent', u'council', u'aim', u'avoid', u'mistak', u'past'] [u'asbesto', u'scare', u'close', u'latec', u'redevelop'] [u'aussi', u'master', u'sultan', u'swing', u'say', u'langer'] [u'aust', u'parent', u'italian', u'traffic', u'accid'] [u'aust', u'soldier', u'know', u'iraq', u'prison', u'issu'] [u'author', u'need', u'time', u'croc', u'attack', u'victim'] [u'author', u'clear', u'shell', u'refineri', u'pollut'] [u'averag', u'week', u'earn', u'rise'] [u'launch', u'probe', u'heathrow', u'strike'] [u'bali', u'blast', u'victim', u'criticis', u'bashir', u'sentenc'] [u'bali', u'victim', u'slam', u'govt', u'bashir', u'effort'] [u'beaudesert', u'mayor', u'question', u'telstra', u'sale'] [u'berrigan', u'bronco'] [u'quak', u'region', u'citi'] [u'bok', u'fear', u'gregan', u'wound', u'pride'] [u'broom', u'leader', u'plant', u'brief'] [u'elect', u'candid', u'leav', u'phone', u'messag'] [u'public', u'protect', u'rail', u'trail'] [u'yard', u'blaze', u'prove', u'cost'] [u'casino', u'see', u'northern', u'river', u'industri'] [u'central', u'west', u'seek', u'brand', u'brag'] [u'virus', u'hold', u'holden', u'car', u'product'] [u'worm', u'hit', u'media', u'compani'] [u'concern', u'plan', u'iraqi', u'hang'] [u'coron', u'urg', u'public', u'help', u'identifi', u'bodi'] [u'council', u'approv', u'black', u'beach', u'hous', u'estat'] [u'council', u'consid', u'fate', u'year', u'parti'] [u'council', u'interview', u'director', u'candid'] [u'council', u'say', u'drive', u'bottl', u'shop'] [u'council', u'outlin', u'fund', u'distribut'] [u'council', u'welcom', u'warehous'] [u'court', u'send', u'sale', u'youth', u'train', u'centr'] [u'credit', u'card', u'reform', u'save', u'busi', u'reserv', u'say'] [u'crow', u'death', u'investig'] [u'danc', u'parti', u'promot', u'face', u'sexual', u'assault', u'trial'] [u'deak', u'keen', u'overcom', u'hamstr', u'injuri'] [u'decis', u'pend', u'south', u'coast', u'water', u'pipelin'] [u'dept', u'head', u'order', u'review', u'polic', u'file', u'leak'] [u'educ', u'offic', u'stand', u'colleg', u'announc'] [u'eel', u'lose', u'morrison'] [u'emerald', u'grower', u'guarante', u'canker'] [u'engin', u'troubl', u'spark', u'fuel', u'test'] [u'england', u'humili', u'zidan', u'reborn'] [u'english', u'tourist', u'rescu', u'kimberley'] [u'soldier', u'escap', u'prison', u'stab'] [u'fall', u'japanes', u'visitor', u'number', u'worri', u'tourism'] [u'famili', u'buri', u'victim', u'cypriot', u'plane', u'crash'] [u'famili', u'wineri', u'urg', u'success', u'plan'] [u'farm', u'group', u'want', u'better', u'telstra', u'deal'] [u'north', u'attack', u'spark', u'central', u'croc', u'fear'] [u'fatal', u'road', u'crash', u'trigger', u'polic', u'safeti', u'warn'] [u'father', u'jail', u'kill', u'drink', u'drive'] [u'fear', u'damag', u'swansea', u'bridg'] [u'fleme', u'sidestep', u'issu', u'zimbabw', u'test', u'status'] [u'flight', u'centr', u'profit', u'drop', u'percent'] [u'foreign', u'train', u'doctor', u'salari'] [u'forget', u'pope', u'ask', u'pilgrim', u'forgiv'] [u'forum', u'hop', u'solut', u'forster', u'health'] [u'troop', u'kill', u'roadsid', u'bomb', u'militari'] [u'french', u'famili', u'lucki', u'number', u'come'] [u'fuel', u'price', u'cut', u'airlin', u'profit'] [u'fund', u'seek', u'causeway', u'revamp'] [u'garrett', u'question', u'approv', u'abalon', u'farm'] [u'gaza', u'evacu', u'move', u'faster', u'expect', u'armi'] [u'gillespi', u'skipper'] [u'gold', u'coast', u'happi', u'odwyer', u'sign'] [u'govt', u'ask', u'embrac', u'colli', u'rescu', u'deal'] [u'govt', u'consid', u'stagger', u'telstra', u'sale'] [u'govt', u'increas', u'afghanistan', u'troop', u'commit'] [u'govt', u'tell', u'hospit', u'recruit', u'tape'] [u'govt', u'afghan', u'troop', u'commit'] [u'govt', u'urg', u'help', u'subsidis', u'merger', u'cost'] [u'govt', u'urg', u'review', u'john', u'ambul', u'contract'] [u'govt', u'wont', u'jump', u'truck', u'rego', u'fee'] [u'green', u'expand', u'sniff', u'fuel', u'roll'] [u'gregan', u'forc', u'media', u'jone'] [u'group', u'threaten', u'burn', u'tongan', u'govt', u'build'] [u'half', u'settlement', u'clear'] [u'hammer', u'complet', u'bellion', u'deal', u'takeov', u'loom'] [u'har', u'club', u'consid', u'financ', u'track', u'upgrad'] [u'health', u'dept', u'urg', u'calm', u'doubl'] [u'hewitt', u'play', u'adelaid', u'tournament'] [u'hiddink', u'field', u'strength'] [u'holm', u'consid', u'commonwealth'] [u'howard', u'relish', u'labor', u'senat', u'telstra', u'comment'] [u'hull', u'reject', u'grant', u'rort', u'claim'] [u'iemma', u'visit', u'state', u'central', u'west'] [u'import', u'adelaid', u'darwin', u'rail', u'link', u'benefit'] [u'indonesian', u'militari', u'accus', u'rape', u'tortur'] [u'injur', u'cyclist', u'return', u'home'] [u'injur', u'lappin', u'aim', u'xmas'] [u'decid', u'ferri', u'futur'] [u'isra', u'forc', u'storm', u'gaza', u'synagogu'] [u'isra', u'troop', u'showdown', u'gaza', u'settler'] [u'isra', u'troop', u'milit', u'settlement'] [u'jackson', u'fin', u'court'] [u'joyc', u'commit'] [u'juventus', u'abbiati', u'loan', u'rival', u'milan'] [u'kalgoorli', u'fight', u'better', u'telstra'] [u'korp', u'rule', u'moral', u'respons', u'wife', u'death'] [u'land', u'slip', u'victim', u'air', u'levi', u'reluct'] [u'lectur', u'focus', u'ningaloo', u'reef', u'preserv'] [u'littl', u'bashir', u'sentenc', u'howard'] [u'london', u'polic', u'increas', u'pressur'] [u'macquari', u'generat', u'water', u'licenc', u'review'] [u'malaysia', u'anwar', u'win', u'damag', u'libel', u'book'] [u'fin', u'tri', u'post', u'reptil', u'japan'] [u'trial', u'charg', u'murder', u'girlfriend'] [u'guilti', u'murder', u'babi'] [u'jail', u'prostitut', u'murder'] [u'mar', u'snicker', u'sale', u'packag', u'unchang'] [u'martin', u'rule', u'discuss', u'bashir', u'indonesian'] [u'meatwork', u'creditor', u'decid', u'liquid'] [u'mediat', u'work', u'bega', u'respit', u'facil', u'disput'] [u'meet', u'shed', u'littl', u'light', u'futur', u'taxi'] [u'meet', u'focus', u'polic', u'transfer', u'plan'] [u'member', u'hume', u'wont', u'vote', u'telstra', u'privatis'] [u'mickelson', u'peopl', u'champion'] [u'closur', u'put', u'job', u'doubt'] [u'miner', u'open', u'cobalt'] [u'minist', u'accus', u'lie', u'leak', u'polic', u'file'] [u'minist', u'claim', u'media', u'alert', u'polic'] [u'minist', u'refus', u'read', u'polic', u'leak', u'brief'] [u'miss', u'bushwalk', u'famili', u'continu', u'search'] [u'mix', u'view', u'competit', u'post', u'telstra', u'sale'] [u'singapor', u'exercis', u'urg', u'central'] [u'maintain', u'telstra', u'sale', u'opposit'] [u'lobbi', u'longreach', u'airport', u'upgrad'] [u'urg', u'help', u'stop', u'skyrocket', u'truck', u'rego', u'fee'] [u'multiplex', u'shrug', u'wembley', u'profit', u'hike'] [u'nation', u'sell', u'telstra', u'plan'] [u'look', u'pastoralist', u'head', u'kimberley'] [u'newman', u'polic', u'begin', u'work', u'station'] [u'shop', u'centr', u'propos', u'east', u'orang'] [u'wheat', u'varieti', u'save', u'grower', u'million'] [u'celebr', u'mark', u'toad', u'anniversari'] [u'contract', u'labour', u'plan', u'cargil'] [u'senat', u'miss', u'nuclear', u'dump', u'vote'] [u'odwyer', u'sign', u'import', u'gold', u'coast'] [u'giant', u'plan', u'expans', u'victoria'] [u'onlin', u'scammer', u'pose', u'exec', u'spear', u'phish'] [u'opposit', u'rais', u'concern', u'hospit', u'mental'] [u'opposit', u'urg', u'inquiri', u'meatwork'] [u'outpati', u'quiz', u'hospit', u'servic'] [u'paedophil', u'fli'] [u'parliamentari', u'committe', u'back', u'govt', u'plan', u'chang'] [u'parliament', u'guard', u'tell', u'mate'] [u'parol', u'paedophil', u'serv', u'jail', u'sentenc'] [u'patienc', u'beat', u'bok', u'jone'] [u'philippin', u'arrest', u'milit', u'suspect', u'juli'] [u'opposit', u'leader', u'arrest'] [u'polglas', u'unfaz', u'inquiri', u'legal', u'implic'] [u'polic', u'blame', u'gang', u'spate', u'theft'] [u'polic', u'investig', u'farm', u'bodi'] [u'polic', u'probe', u'break', u'knife', u'attack'] [u'polic', u'probe', u'death', u'threat', u'anti'] [u'polic', u'probe', u'murder', u'search'] [u'polic', u'raid', u'steal', u'wine'] [u'polic', u'tight', u'lip', u'patel', u'investig'] [u'pont', u'return', u'grass', u'root'] [u'pork', u'industri', u'tell', u'improv', u'competit'] [u'port', u'lincoln', u'council', u'welcom', u'rejoin', u'eplga'] [u'public', u'servic', u'shakeup', u'follow', u'bureaucrat'] [u'public', u'urg', u'help', u'catch', u'countri', u'club', u'bandit'] [u'qanta', u'ponder', u'fuel', u'levi', u'increas', u'despit', u'profit'] [u'qanta', u'worker', u'sick', u'cut', u'threat'] [u'nation', u'restat', u'commit', u'coalit'] [u'nation', u'concern', u'telstra', u'sale'] [u'ranger', u'human', u'remain', u'croc'] [u'rat', u'rise', u'expect'] [u'redevelop', u'geraldton', u'hospit', u'readi', u'open'] [u'reef', u'recoveri', u'year'] [u'releas', u'paedophil', u'return', u'custodi', u'perth'] [u'report', u'warn', u'hold', u'women', u'children'] [u'research', u'address', u'remot', u'area', u'labour', u'shortag'] [u'resid', u'opposit', u'civic', u'centr', u'plan'] [u'resort', u'construct', u'start', u'year'] [u'resourc', u'sector', u'drag', u'market', u'lower'] [u'roddick', u'edg', u'ferrero', u'feder', u'battl'] [u'sterilis', u'plan'] [u'vote', u'club', u'shop'] [u'rural', u'news', u'podcast', u'avail'] [u'sale', u'hospit', u'pictur', u'health'] [u'nation', u'push', u'share', u'bush', u'phone', u'fund'] [u'saudi', u'forc', u'kill', u'suspect', u'milit'] [u'search', u'continu', u'miss', u'fisherman'] [u'senat', u'urg', u'rethink', u'pulp', u'fund'] [u'worker', u'miss', u'woman'] [u'shell', u'reject', u'concern', u'geelong', u'refineri'] [u'soil', u'garden', u'scheme', u'attract'] [u'son', u'gwalia', u'founder', u'face', u'damag', u'claim'] [u'southern', u'seek', u'medic', u'specialist'] [u'spine', u'road', u'bypass', u'project', u'progress'] [u'lanka', u'extend', u'state', u'emerg'] [u'stock', u'shortag', u'forc', u'abattoir', u'open', u'delay'] [u'stun', u'waitress', u'get', u'porsch'] [u'scallop', u'fisherman', u'quota', u'suspens'] [u'teenag', u'safe', u'abduct', u'home'] [u'telstra', u'blame', u'norlink', u'failur'] [u'telstra', u'regul', u'find', u'balanc', u'say', u'coonan'] [u'telstra', u'phone', u'decis', u'shock', u'mother'] [u'thoma', u'await', u'fate', u'umpir', u'comment'] [u'toowoomba', u'silver', u'spike', u'team', u'good'] [u'increas', u'pressur'] [u'tourist', u'urg', u'awar', u'croc', u'danger'] [u'trio', u'face', u'court', u'accus', u'drink', u'drive'] [u'trucki', u'offer', u'tear', u'apolog', u'fatal', u'accid'] [u'tube', u'shoot', u'victim', u'famili', u'call', u'inquiri'] [u'turtl', u'gulf', u'clean'] [u'polic', u'chief', u'face', u'resign', u'tube'] [u'envoy', u'visit', u'burma', u'messag', u'annan'] [u'unhappi', u'vmos', u'meet', u'disput'] [u'union', u'pressur', u'jam', u'hardi', u'asbesto', u'compo'] [u'union', u'say', u'manag', u'deni', u'access'] [u'union', u'ralli', u'mildura', u'chang'] [u'secur', u'rare', u'wollemi', u'pine'] [u'victorian', u'urg', u'advic', u'revers', u'mortgag'] [u'vietnam', u'veteran', u'mark', u'north', u'queensland'] [u'vietnam', u'vet', u'honour', u'long', u'digger'] [u'vietnam', u'vet', u'wreath', u'long', u'anniversari'] [u'virgin', u'blue', u'issu', u'profit', u'warn'] [u'wallabi', u'ashley', u'cooper'] [u'parliament', u'tell', u'telstra', u'fund'] [u'wast', u'plant', u'site', u'committe', u'form', u'local'] [u'water', u'corp', u'monitor', u'ravensthorp', u'water', u'woe'] [u'bounc', u'denmark', u'fiasco', u'vow', u'beckham'] [u'wellington', u'council', u'sack', u'staff'] [u'wentworth', u'mayor', u'stand'] [u'wild', u'weather', u'wallop', u'wheatbelt'] [u'windsor', u'wont', u'telstra', u'bribe', u'claim'] [u'youth', u'charg', u'launceston', u'burglari'] [u'zimbabw', u'rais', u'tax', u'prop', u'economi'] [u'uranium', u'export', u'possibl', u'say'] [u'flour', u'boost', u'employ'] [u'win', u'dirti', u'ashtray', u'award'] [u'adelaid', u'unit', u'step'] [u'administr', u'appoint', u'grain', u'trader'] [u'administr', u'stand', u'son', u'gwalia', u'neglig'] [u'agreement', u'allow', u'pretti', u'pool', u'hous'] [u'amateur', u'taxidermist', u'bird', u'collect', u'earn'] [u'analyst', u'expect', u'price', u'downturn'] [u'anvil', u'concern', u'polic', u'investig'] [u'ash', u'seri', u'reviv', u'test', u'cricket', u'say', u'miandad'] [u'asylum', u'seeker', u'children', u'lose', u'fight', u'stay'] [u'thiev'] [u'attract', u'tourism', u'centr'] [u'ayr', u'guilti', u'sour', u'grape', u'thompson'] [u'bait', u'scheme', u'aim', u'number'] [u'bali', u'judg', u'deni', u'corbi', u'sentenc', u'rumour'] [u'baryugil', u'resid', u'join', u'hardi', u'protest'] [u'bashir', u'corbi', u'sentenc', u'imposs', u'understand'] [u'belong', u'miss', u'fisherman', u'discov'] [u'billabong', u'share', u'dive'] [u'build', u'compani', u'tell', u'lift', u'game'] [u'burn', u'victim', u'succumb', u'injuri'] [u'burundi', u'post', u'transit', u'presid', u'elect'] [u'cadav', u'exhibit', u'open', u'despit'] [u'qualifi', u'presser', u'australia'] [u'call', u'woorabinda', u'alcohol', u'ban'] [u'carbon', u'monoxid', u'poison', u'rule', u'cyprus'] [u'central', u'coast', u'marin', u'unchart', u'water'] [u'chang', u'afoot', u'pearl', u'festiv'] [u'chelsea', u'complet', u'deal', u'essien'] [u'children', u'book', u'council', u'winner', u'announc'] [u'ciobo', u'call', u'govt', u'releas', u'hospit', u'plan'] [u'coff', u'council', u'approv', u'banana', u'club', u'rezon'] [u'coff', u'host', u'match'] [u'committ', u'hear', u'begin', u'hostel', u'accus'] [u'communiti', u'group', u'end', u'supermarket', u'legal', u'battl'] [u'compani', u'talk', u'uranium', u'prospect'] [u'consult', u'examin', u'option', u'west', u'belconnen'] [u'cootamundra', u'track', u'rail', u'celebr'] [u'council', u'offer', u'condit', u'support', u'coal'] [u'council', u'staff', u'quiz', u'satisfact'] [u'court', u'fin', u'illeg', u'foreign', u'fishermen'] [u'court', u'rule', u'favour', u'transsexu', u'legal', u'action'] [u'cowboy', u'movi', u'inspir', u'worker'] [u'critic', u'stop', u'umpir', u'volunt', u'demetriou'] [u'cunnamulla', u'face', u'doctor', u'shortag', u'crisi'] [u'deep', u'creatur', u'discov'] [u'docker', u'snatch', u'gasp'] [u'downer', u'check', u'corbi', u'sentenc', u'rumour'] [u'appeal', u'tradit', u'elder', u'child', u'sentenc'] [u'drink', u'driver', u'get', u'year', u'jail', u'kill'] [u'drug', u'dealer', u'give', u'year', u'drive', u'shoot'] [u'eat', u'fruit', u'vege', u'arthriti', u'risk'] [u'eminem', u'hospitalis', u'sleep', u'pill', u'addict'] [u'eriksson', u'promis', u'better', u'england'] [u'fuel', u'tank', u'worker', u'offer', u'compens'] [u'farmer', u'safeti', u'needl', u'prevent', u'self'] [u'feder', u'hewitt', u'cincinnati', u'quarter'] [u'film', u'retain', u'rat'] [u'fitzroy', u'cross', u'airport', u'secur', u'upgrad'] [u'foetal', u'cell', u'help', u'heal', u'burn'] [u'forest', u'compani', u'make', u'record', u'profit'] [u'detaine', u'cop', u'life', u'outsid'] [u'minist', u'mowlam', u'die'] [u'worker', u'declar', u'compo'] [u'forum', u'hear', u'horticultur', u'code', u'concern'] [u'fruit', u'busi', u'look', u'better', u'financ', u'ahead'] [u'gaza', u'pull', u'complet'] [u'gehrig', u'play', u'injuri'] [u'geraldton', u'resid', u'hear', u'plan', u'nightclub'] [u'gippsland', u'green', u'unfaz', u'countri', u'allianc'] [u'golden', u'treasur', u'unearth', u'bulgaria'] [u'govt', u'provid', u'public', u'hous', u'boost'] [u'grain', u'trader', u'place', u'administr'] [u'group', u'call', u'action', u'prison', u'overcrowd'] [u'group', u'urg', u'discuss', u'indigen', u'represent'] [u'grower', u'frustrat', u'canker', u'compens'] [u'gust', u'korp', u'cash', u'brother', u'suicid'] [u'hammer', u'boost', u'takeov', u'talk'] [u'henjak', u'call', u'amid', u'gregan', u'injuri', u'concern'] [u'highway', u'death', u'trap', u'motorist', u'racq'] [u'homesick', u'teggart', u'leav', u'perth', u'glori'] [u'hop', u'injur', u'seal', u'return', u'natur', u'habitat'] [u'hundr', u'famili', u'homeless', u'action', u'group'] [u'post', u'profit', u'jump'] [u'india', u'bangladesh', u'border', u'guard', u'gunbattl'] [u'indigen', u'communiti', u'reflect', u'land', u'right'] [u'indigen', u'women', u'demand', u'chang', u'child'] [u'indonesia', u'reject', u'papua', u'abus', u'report'] [u'internet', u'busi', u'perth', u'address'] [u'investig', u'continu', u'illeg', u'river', u'mouth'] [u'iraq', u'protest', u'leav', u'bush', u'ranch'] [u'israel', u'clear', u'gaza', u'violent', u'synagogu', u'stand'] [u'isra', u'soldier', u'storm', u'synagogu'] [u'isra', u'troop', u'evict', u'settler', u'gaza', u'synagogu'] [u'crew', u'success', u'complet', u'spacewalk'] [u'jam', u'hardi', u'doubl', u'quarter', u'profit'] [u'jam', u'hardi', u'tell', u'hurri'] [u'jordanian', u'soldier', u'kill', u'twin', u'rocket', u'attack'] [u'joyc', u'wont', u'support', u'current'] [u'kiama', u'librari', u'award', u'homework', u'phone', u'servic'] [u'labrador', u'miss', u'final'] [u'lone', u'audit', u'cane', u'toad', u'await', u'inspect'] [u'luke', u'schenscher', u'make', u'australian'] [u'mainten', u'work', u'leav', u'resid'] [u'malaysia', u'start', u'cloud', u'seed', u'indonesia'] [u'arrest', u'alleg', u'hold', u'woman', u'captiv'] [u'jail', u'german', u'case', u'retrial'] [u'remand', u'bestial', u'tortur', u'case'] [u'marina', u'negoti', u'remain', u'fragil'] [u'matthew', u'back', u'umpir', u'critic'] [u'mayor', u'seek', u'coordin', u'year', u'celebr'] [u'mccain', u'hit', u'potato', u'grower', u'price'] [u'meat', u'industri', u'brief', u'latest', u'green'] [u'melbourn', u'victori', u'victori', u'spoil'] [u'mental', u'health', u'forum', u'tackl', u'access', u'transport'] [u'miner', u'search', u'gold', u'copper', u'near', u'break', u'hill'] [u'mirvac', u'post', u'profit'] [u'charg', u'like', u'cattl', u'death'] [u'doctor', u'work', u'rural', u'area', u'report'] [u'morri', u'question', u'clinic', u'proport'] [u'aust', u'tsunami', u'reach', u'aceh', u'world', u'bank'] [u'move', u'afoot', u'chang', u'sunric', u'cooper', u'status'] [u'worri', u'timet', u'chang', u'disrupt', u'cityrail'] [u'muslim', u'group', u'criticis', u'summit'] [u'nairn', u'support', u'telstra', u'sale'] [u'nanotech', u'window', u'conduct', u'electr'] [u'narrabri', u'chemic', u'scare', u'forc', u'evacu'] [u'narrow', u'send', u'phoenix', u'final'] [u'nativ', u'titl', u'group', u'want', u'deal', u'shelv'] [u'neitz', u'readi', u'face', u'dog'] [u'newcastl', u'econom', u'outlook', u'good'] [u'famili', u'court', u'judg', u'swear'] [u'manag', u'plan', u'problem', u'roo'] [u'region', u'plan', u'threaten', u'state', u'flora'] [u'river', u'plan', u'drive', u'away', u'tourist'] [u'news', u'name', u'lachlan', u'replac'] [u'zealand', u'knight', u'outsid'] [u'reject', u'telstra', u'sale', u'plan'] [u'room', u'loss'] [u'stop', u'desalin', u'plant', u'iemma', u'say'] [u'can', u'anti', u'smoke', u'record'] [u'fund', u'help', u'improv', u'indonesian', u'nurs', u'train'] [u'oppn', u'urg', u'iraq', u'inquiri', u'respons'] [u'orica', u'share', u'shock', u'departur'] [u'paedophil', u'discov', u'live', u'near', u'school'] [u'parent', u'tell', u'heed', u'warn', u'meningococc'] [u'partnership', u'develop', u'methan', u'plant'] [u'payment', u'loom', u'walter', u'construct', u'worker'] [u'pedestrian', u'respons', u'death', u'court', u'hear'] [u'pedestrian', u'hospit', u'strike', u'car'] [u'penalti', u'need', u'council', u'honest'] [u'perth', u'glori', u'glori', u'day'] [u'pig', u'enlist', u'fight', u'grape', u'skin', u'wastag'] [u'play', u'base', u'david', u'hick', u'open', u'darwin'] [u'forc', u'defend', u'summit', u'decis'] [u'reject', u'extremist', u'inclus', u'islam', u'summit'] [u'polic', u'effort', u'target', u'repeat', u'offend'] [u'polic', u'probe', u'fatal', u'head', u'crash'] [u'polic', u'search', u'miss', u'kimberley', u'tourist'] [u'potato', u'grower', u'reject', u'mccain', u'offer'] [u'power', u'insist', u'corn', u'play'] [u'premier', u'power', u'chang', u'depart', u'health'] [u'process', u'danger', u'receivership'] [u'protest', u'demand', u'hardi', u'deliv', u'compens'] [u'pulp', u'mill', u'increas', u'health', u'risk', u'forum', u'hear'] [u'farm', u'group', u'call', u'tighter', u'law', u'ahead'] [u'queensland', u'roar', u'build', u'come'] [u'radio', u'station', u'risk', u'univers', u'withdraw'] [u'ratepay', u'maintain', u'richmond', u'council'] [u'region', u'telecom', u'stand', u'feder', u'invest'] [u'report', u'highlight', u'melbourn', u'resurg'] [u'rescuer', u'free', u'whale', u'shark', u'net'] [u'research', u'develop', u'vaccin', u'fight', u'bioterror'] [u'robert', u'back', u'commission', u'patrol'] [u'rocket', u'attack', u'jordan', u'israel'] [u'rodeo', u'abandon', u'bronco', u'brand', u'competit'] [u'roger', u'injur', u'gerrard'] [u'roo', u'worri', u'clandestin', u'taggercam'] [u'school', u'benefit', u'upgrad', u'plan'] [u'scud', u'hand', u'open', u'wildcard'] [u'scullion', u'confirm', u'opposit', u'nuclear', u'wast', u'dump'] [u'seafood', u'industri', u'repres', u'meet'] [u'secretari', u'take', u'polic', u'bungl'] [u'secur', u'fenc', u'seal', u'salmon', u'pen'] [u'senat', u'clerk', u'criticis', u'govt', u'spend'] [u'senat', u'clerk', u'criticis', u'spend'] [u'senat', u'clerk', u'claim', u'disingenu'] [u'senat', u'say', u'telstra', u'fund', u'inadequ'] [u'share', u'market', u'end', u'week', u'high'] [u'sheep', u'graze', u'end', u'help', u'save', u'river', u'murray'] [u'shire', u'fail', u'meet', u'govern', u'target'] [u'slim', u'hop', u'find', u'fisherman', u'aliv'] [u'sol', u'stay', u'insist', u'gunner'] [u'sonni', u'drink', u'drive', u'suspend', u'licenc'] [u'southern', u'highland', u'farmer', u'face', u'drought', u'woe'] [u'space', u'shuttl', u'uncertain', u'futur', u'fuel', u'concern'] [u'state', u'farmer', u'feder', u'join', u'nation'] [u'strike', u'nickel', u'project', u'worker', u'resum', u'work'] [u'submiss', u'roll', u'pacif', u'highway', u'revamp'] [u'submiss', u'strong', u'opposit'] [u'sugar', u'industri', u'boost', u'economi'] [u'coast', u'vmos', u'quit'] [u'sunric', u'plan', u'restructur'] [u'superboat', u'race', u'gold', u'coast'] [u'superbug', u'crisi', u'wors', u'surgeon', u'warn'] [u'swan', u'kangaroo', u'showcas'] [u'tasmania', u'win', u'clean', u'ashtray', u'award'] [u'tassi', u'devil', u'studi', u'surviv', u'tumour'] [u'telstra', u'deal', u'good', u'get'] [u'theft', u'impact', u'employ', u'firm'] [u'thurston', u'doubt', u'raider', u'clash'] [u'toowoomba', u'miss', u'specialist'] [u'deni', u'cover'] [u'tourism', u'minist', u'sign', u'agreement'] [u'tourism', u'minist', u'unhappi', u'chang'] [u'tourist', u'lodg', u'world', u'heritag', u'area'] [u'train', u'driver', u'accus', u'take', u'long', u'crash'] [u'troubl', u'fish', u'shop', u'sale'] [u'trucki', u'hope', u'deal', u'rego', u'cost'] [u'boat', u'tackl', u'reef', u'ground'] [u'arrest', u'casino', u'assault'] [u'umpir', u'critic', u'absolut', u'unaccept', u'demetriou'] [u'underpay', u'wag', u'decis', u'like', u'appeal'] [u'union', u'worri', u'loss', u'juic', u'merger'] [u'vaughan', u'dismiss', u'talk', u'aussi', u'advantag'] [u'deni', u'bail', u'manslaught', u'case'] [u'victim', u'compens', u'paltri'] [u'water', u'restrict', u'tougher'] [u'water', u'storag', u'develop'] [u'grant', u'hopkin', u'titl', u'rematch'] [u'western', u'power', u'meet', u'union'] [u'west', u'bandwagon', u'roll', u'bulldog'] [u'wool', u'price', u'year'] [u'work', u'medic', u'centr'] [u'world', u'qualif', u'start'] [u'abba', u'hail', u'sacrific', u'isra', u'withdraw'] [u'ablett', u'star', u'cat', u'stun', u'eagl'] [u'administr', u'work', u'reopen', u'green', u'abattoir'] [u'teach', u'latest', u'forens', u'techniqu', u'thai'] [u'artist', u'seek', u'tree', u'stump', u'sculptur'] [u'court', u'award', u'million', u'compens'] [u'aust', u'doctor', u'deni', u'bail', u'spous', u'murder', u'charg'] [u'australian', u'join', u'suit', u'drug', u'giant'] [u'australian', u'vioxx', u'maker'] [u'batter', u'saint', u'lick', u'wound'] [u'bold', u'buchanan', u'tell', u'australia'] [u'bold', u'coach', u'tell', u'australian', u'cricket'] [u'blaze', u'raze', u'high', u'school', u'central', u'west'] [u'bok', u'extend', u'wallabi', u'lose'] [u'bok', u'wari', u'back', u'wall', u'wallabi'] [u'boomer', u'wrap', u'seri'] [u'plead', u'guilti', u'drive'] [u'bulli', u'boy', u'tafe', u'fund'] [u'cancer', u'bodi', u'hop', u'turn', u'mock', u'award', u'fund'] [u'charg', u'lay', u'canadian', u'station', u'death'] [u'china', u'hold', u'citizen', u'accus', u'spi'] [u'face', u'elect', u'loss'] [u'concern', u'rais', u'nurs', u'resign'] [u'cook', u'tour', u'return', u'germani'] [u'coron', u'probe', u'death', u'mental', u'health', u'facil'] [u'count', u'begin', u'poll', u'close', u'elect'] [u'courtney', u'love', u'admit', u'probat', u'violat'] [u'cowboy', u'raider', u'final', u'hop'] [u'dajka', u'remain', u'custodi', u'second', u'arrest'] [u'darwin', u'hospit', u'limit', u'risk', u'superbug'] [u'demon', u'vault', u'final', u'content'] [u'desalin', u'plant', u'rais', u'water', u'price', u'stoner'] [u'discoveri', u'get', u'piggyback', u'home'] [u'docker', u'snatch', u'gasp'] [u'drink', u'driver', u'right', u'seek', u'blood', u'test'] [u'earli', u'count', u'see', u'liber', u'edg', u'ahead'] [u'ecuador', u'defenc', u'minist', u'quit', u'amid', u'crisi'] [u'ecuador', u'threaten', u'troop', u'action'] [u'elector', u'commiss', u'clear', u'labor', u'vote'] [u'evacu', u'continu', u'gaza'] [u'famili', u'appeal', u'wit', u'taxi', u'murder', u'case'] [u'funer', u'hold', u'spanish', u'soldier', u'kill'] [u'gaza', u'pullout', u'peac'] [u'geelong', u'control', u'destini'] [u'gillespi', u'drop', u'tour', u'match'] [u'granni', u'seed', u'help', u'bird', u'high'] [u'gregan', u'clear', u'lead', u'australia', u'springbok'] [u'griev', u'relat', u'arriv', u'venezuela', u'crash', u'site'] [u'gunshot', u'lead', u'polic', u'cannabi', u'stash'] [u'hewitt', u'cincinnati', u'semi', u'finalist'] [u'iaea', u'test', u'iran', u'nuke', u'explan', u'diplomat'] [u'indonesia', u'pledg', u'aceh', u'rebel', u'safeti', u'disarm'] [u'infrastructur', u'chariti', u'work', u'katherin'] [u'iraq', u'need', u'feder', u'prevent', u'civil'] [u'isra', u'hardlin', u'prepar', u'defend'] [u'joyc', u'seek', u'parti', u'feedback'] [u'joyc', u'seek', u'feedback', u'telstra', u'deal'] [u'kelso', u'high', u'school', u'build', u'burn', u'grind'] [u'knight', u'spoil', u'joness', u'farewel'] [u'kookaburra', u'final', u'amsterdam'] [u'labor', u'back', u'cleaner', u'compo', u'fight'] [u'labor', u'target', u'govt', u'advertis'] [u'liber', u'elect'] [u'local', u'council', u'share', u'fund'] [u'injur', u'polic', u'chase'] [u'kill', u'hous'] [u'face', u'adelaid', u'court', u'extradit'] [u'marin', u'confid', u'beat', u'glori', u'defenc'] [u'marin', u'preseason', u'final'] [u'merck', u'verdict', u'keep', u'market', u'check'] [u'mine', u'urg', u'consid', u'tourism', u'option'] [u'nation', u'urg', u'joyc', u'time', u'telstra'] [u'nervous', u'leader', u'elect', u'hust'] [u'hous', u'afford', u'opposit'] [u'zealand', u'farewel', u'prime', u'minist'] [u'zealand', u'honour', u'lang'] [u'offici', u'probe', u'gunn'] [u'dead', u'california', u'prison', u'clash'] [u'polic', u'search', u'mother', u'critic'] [u'polic', u'urg', u'review', u'file', u'misus', u'case'] [u'pope', u'germani'] [u'pope', u'warn', u'rise', u'anti', u'semit'] [u'port', u'dump', u'lion'] [u'power', u'worker', u'hold', u'industri', u'action'] [u'queensland', u'elect'] [u'rabbitoh', u'surg', u'home', u'edg', u'rooster'] [u'raikkonen', u'claim', u'istanbul', u'pole', u'webber', u'vent', u'anger'] [u'raikkonen', u'quickest', u'final', u'practic'] [u'rail', u'upgrad'] [u'rainfal', u'predict', u'good', u'news', u'crop'] [u'school', u'holiday', u'chang', u'discuss'] [u'search', u'continu', u'cane', u'toad', u'darwin'] [u'second', u'largest', u'wind', u'farm', u'open'] [u'senat', u'clerk', u'claim', u'reckless'] [u'senat', u'barnabi', u'joyc', u'keep', u'govt'] [u'seven', u'arrest', u'illeg', u'log', u'borneo'] [u'state', u'play', u'polit', u'leav', u'claim'] [u'stone', u'deliv', u'brutal', u'review', u'clps', u'loss'] [u'street', u'perform', u'welcom', u'art', u'festiv'] [u'student', u'charg', u'rap'] [u'surg', u'crow', u'spot'] [u'tafe', u'fund', u'condit', u'hurt', u'student', u'macklin'] [u'tasmania', u'trial', u'children', u'case', u'program'] [u'host', u'apec', u'small', u'busi', u'ministeri', u'forum'] [u'threat', u'terror', u'attack', u'south', u'east', u'asia'] [u'thunderbird', u'face', u'swift', u'preliminari', u'final'] [u'nation', u'scale', u'world', u'year'] [u'truck', u'driver', u'urg', u'avoid', u'crash'] [u'polic', u'review', u'shoot', u'kill', u'polici', u'report'] [u'compens', u'africa', u'medic', u'brain', u'drain'] [u'marin', u'afghan', u'soldier', u'kill', u'clash'] [u'track', u'star', u'continu', u'shine'] [u'vioxx', u'maker', u'guilti', u'wrong', u'death', u'case'] [u'wallabi', u'face', u'behaviour', u'crackdown'] [u'wilkinson', u'rush', u'hospit', u'inflam', u'appendix'] [u'win', u'kookaburra', u'hockeyroo'] [u'woodsid', u'pipelin', u'win', u'engin', u'award'] [u'worker', u'trap', u'flood', u'coal', u'china'] [u'zimbabw', u'replac', u'soccer', u'player', u'home'] [u'grab', u'school', u'band'] [u'hurt', u'qanta', u'flight', u'make', u'emerg', u'land'] [u'accc', u'telstra', u'regul'] [u'accc', u'warn', u'telstra', u'line'] [u'qanta', u'plane', u'forc', u'emerg'] [u'armstrong', u'finish', u'bush', u'tour', u'crawford'] [u'asic', u'want', u'crimin', u'case', u'vizard'] [u'australian', u'teen', u'kidnap', u'philippin', u'report'] [u'author', u'search', u'remot', u'bushland', u'miss'] [u'aviat', u'bodi', u'sack', u'cypriot', u'airlin', u'crash'] [u'bali', u'polic', u'question', u'australian', u'woman', u'drug'] [u'beatti', u'blame', u'voter', u'backlash', u'patel', u'affair'] [u'beatti', u'look', u'regroup', u'elect', u'backlash'] [u'belgian', u'pair', u'meet', u'toronto', u'final'] [u'walker', u'john', u'cartwright', u'interview'] [u'pauls', u'ban', u'week', u'kick'] [u'bomber', u'hammer', u'hapless', u'blue'] [u'boomer', u'record', u'clean', u'sweep'] [u'brack', u'back', u'minist', u'polic', u'file', u'leak'] [u'bush', u'step', u'defenc', u'iraq'] [u'blast', u'kill', u'policemen', u'russia'] [u'elect', u'review', u'recommend'] [u'coag', u'urg', u'increas', u'infrastructur', u'audit'] [u'council', u'tell', u'bold', u'group', u'remov', u'bras'] [u'deadlock', u'trap', u'burn', u'hous'] [u'defo', u'fire', u'spur', u'spot'] [u'dragon', u'stake', u'claim', u'minor', u'premiership'] [u'elder', u'join', u'action', u'protect', u'perth', u'beach'] [u'armi', u'chief', u'threaten', u'oust', u'ivori', u'coast'] [u'farmer', u'cut', u'power', u'eyr', u'peninsula', u'home'] [u'film', u'draw', u'legal', u'threat', u'dictat', u'famili'] [u'film', u'reveal', u'plight', u'zimbabwean', u'demolit'] [u'crew', u'attend', u'blaze', u'involv', u'cooker'] [u'littl', u'delay', u'senior', u'student', u'studi'] [u'flatley', u'face', u'test', u'latest', u'setback'] [u'docker', u'dead', u'crash'] [u'teen', u'kill', u'north', u'crash'] [u'soldier', u'kill', u'afghanistan', u'bomb', u'attack'] [u'gambl', u'studi', u'meaning'] [u'govt', u'dismiss', u'concern', u'nurs', u'staff'] [u'govt', u'telstra', u'share', u'futur', u'fund'] [u'govt', u'resist', u'pressur', u'hous', u'inquiri'] [u'graham', u'murray', u'matthew', u'elliott', u'interview'] [u'gregan', u'rule', u'japan'] [u'hayden', u'clark', u'fourth', u'test', u'centuri'] [u'health', u'base', u'parti', u'contest', u'elect'] [u'hockeyroo'] [u'intern', u'polic', u'probe', u'continu', u'case'] [u'interview', u'eddi', u'jone'] [u'interview', u'russel', u'crow'] [u'push', u'button', u'william', u'say', u'webber'] [u'iraq', u'urg', u'resum', u'execut'] [u'israel', u'approv', u'final', u'stage', u'settlement'] [u'japanes', u'woman', u'die', u'lion', u'attack'] [u'john', u'lang', u'wayn', u'bennett'] [u'join', u'telstra', u'coalit', u'urg', u'joyc'] [u'jone', u'warn', u'rugbi', u'risk', u'bore'] [u'kidnap', u'teen', u'philippin', u'australian', u'dfat'] [u'labor', u'backlash', u'elect'] [u'lanc', u'thompson', u'trent', u'barrett', u'nathan', u'brown'] [u'languag', u'hinder', u'claim', u'daughter', u'bodi'] [u'liverpool', u'confirm', u'club', u'champ', u'particip'] [u'major', u'parti', u'unveil', u'elect', u'campaign'] [u'die', u'fall'] [u'mcdonald', u'boss', u'discuss', u'farmer', u'concern'] [u'tour', u'offer', u'side', u'view'] [u'minist', u'deni', u'wyong', u'hospit'] [u'vow', u'carri', u'despit', u'cancer'] [u'chang', u'england', u'squad', u'fourth', u'test'] [u'number', u'pregnant', u'women', u'smoke', u'disappoint'] [u'parti', u'prepar', u'launch', u'elect', u'bid'] [u'opposit', u'optimist', u'elect'] [u'opposit', u'question', u'trip', u'offend'] [u'pain', u'congress', u'improv', u'health', u'manag'] [u'pakistan', u'hang', u'soldier', u'plot', u'kill'] [u'panther', u'deni', u'bronco', u'bell'] [u'polic', u'arrest', u'alleg', u'internet', u'paedophil'] [u'polic', u'search', u'crocodil', u'attack', u'victim'] [u'polic', u'hunt', u'milit', u'jordan', u'rocket', u'attack'] [u'polic', u'seek', u'women', u'death'] [u'pope', u'admit', u'church', u'shortcom'] [u'pope', u'benedict', u'speak', u'open', u'mass'] [u'portug', u'seek', u'help', u'fire', u'devast', u'forest'] [u'qanta', u'regret', u'injuri', u'caus', u'plane', u'evacu'] [u'quak', u'shake', u'northern', u'japan'] [u'ranger', u'outclass', u'underman', u'celtic'] [u'ranger', u'wind', u'search', u'croc', u'victim'] [u'releas', u'submiss', u'public', u'opposit'] [u'roddick', u'roll', u'hewitt', u'feder', u'clash'] [u'coupl', u'hope', u'review', u'lead', u'legal', u'right'] [u'scientist', u'continu', u'test', u'isol', u'weed', u'diseas'] [u'scotland', u'yard', u'deni', u'offer', u'money', u'brazilian'] [u'search', u'miss', u'fisherman', u'wind'] [u'send', u'job', u'offshor', u'econom', u'benefit', u'leader'] [u'shark', u'inflict', u'record', u'loss', u'eagl'] [u'sick', u'girl', u'urgent', u'appeal'] [u'soldier', u'instruct', u'abus', u'ghraib', u'prison'] [u'son', u'gwalia', u'report', u'concern', u'asic'] [u'springbok', u'celebr', u'ugli'] [u'springbok', u'winger', u'cite', u'kick'] [u'lankan', u'help', u'asian', u'level', u'seri'] [u'strike', u'blast', u'paralys', u'bangladesh', u'polic'] [u'stuart', u'raper', u'hasler'] [u'student', u'rediscov', u'einstein', u'manuscript'] [u'swan', u'confirm', u'place'] [u'sydney', u'await', u'pope', u'vote', u'host', u'citi'] [u'sydney', u'host', u'cathol', u'world', u'youth'] [u'telstra', u'share', u'fund', u'region', u'trust'] [u'zealand', u'govern', u'opposit'] [u'queensland', u'premier', u'say', u'voter', u'give'] [u'treasur', u'say', u'possibl', u'sale'] [u'thompson', u'farewel', u'ash', u'fire', u'cannon'] [u'thorp', u'retir', u'season'] [u'thousand', u'pilgrimag', u'attend', u'pope', u'mass'] [u'roof', u'juvenil', u'justic', u'centr'] [u'tiger', u'snatch', u'hawk'] [u'tini', u'speed', u'eater', u'chew', u'challeng'] [u'tonn', u'cocain', u'seiz', u'venezuelan', u'boat'] [u'torrenti', u'rain', u'kill', u'south', u'china'] [u'transfer', u'paedophil', u'compli'] [u'trucki', u'group', u'back', u'safeti', u'upgrad'] [u'kill', u'injur', u'afghan', u'crash'] [u'polic', u'foil', u'parliament', u'attack', u'report'] [u'shoot', u'kill', u'polici', u'stay'] [u'award', u'honour', u'howard', u'leadership'] [u'vietnam', u'vet', u'line', u'annual', u'march'] [u'volunt', u'seek', u'remot', u'island'] [u'voter', u'enrol', u'begin', u'land', u'council', u'elect'] [u'watchdog', u'probe', u'court', u'corrupt', u'claim'] [u'weather', u'stall', u'discoveri', u'flight', u'home'] [u'dont', u'care', u'minor', u'premiership', u'worsfold'] [u'wood', u'perri', u'share', u'lead', u'akron'] [u'yaxley', u'arriv', u'home', u'cycl', u'accid'] [u'horror', u'weekend', u'road'] [u'iraqi', u'polic', u'shoot', u'dead'] [u'abattoir', u'tri', u'eas', u'burden', u'second', u'shutdown'] [u'abbott', u'pull', u'debat', u'amid', u'safeti', u'concern'] [u'adelaid', u'model', u'bali', u'drug', u'arrest'] [u'administr', u'wing', u'arrernt', u'council', u'falter'] [u'servic', u'trial', u'deem', u'success'] [u'backbench', u'seek', u'uranium', u'mine', u'debat'] [u'apprehens', u'buyer', u'steer', u'clear', u'pastor'] [u'armi', u'fli', u'museum', u'move', u'secur', u'reason'] [u'aussi', u'evan', u'win', u'german', u'stage'] [u'australia', u'seek', u'closer', u'tie', u'singapor'] [u'australia', u'urg', u'increas', u'renew', u'energi'] [u'half', u'year', u'profit', u'climb'] [u'banana', u'shire', u'budget', u'address', u'infrastructur'] [u'barnabi', u'joyc', u'pressur', u'telstra', u'sale'] [u'bear', u'look', u'qualifi', u'semi', u'lose'] [u'govt', u'reach', u'royalti', u'concess', u'deal'] [u'bird', u'rescuer', u'tell', u'leav', u'expert'] [u'blaze', u'destroy', u'famili', u'care', u'equip'] [u'bomb', u'kill', u'afghan', u'polic'] [u'bouncer', u'face', u'trial', u'hook', u'death'] [u'bouncer', u'trial', u'begin', u'hook', u'death'] [u'bowravill', u'adopt', u'share', u'respons', u'agreement'] [u'brisban', u'airport', u'link', u'consult', u'launch'] [u'brown', u'season', u'lion', u'face', u'crunch'] [u'bushfir', u'jump', u'trail'] [u'busier', u'time', u'broom', u'airport'] [u'busi', u'aim', u'boost', u'export', u'potenti'] [u'businesswoman', u'plead', u'guilti', u'rotari', u'theft'] [u'driver', u'push', u'fare', u'price', u'rise'] [u'canberra', u'archbishop', u'tender', u'resign'] [u'theft', u'mar', u'bash', u'event'] [u'cemeteri', u'ponder', u'burial', u'plot', u'reclam'] [u'china', u'want', u'quarantin', u'address'] [u'clijster', u'dump', u'henin', u'hardenn', u'toronto', u'titl'] [u'club', u'urg', u'feisti', u'soccer', u'support'] [u'conserv', u'face', u'polit', u'mountain', u'analyst', u'say'] [u'cooper', u'face', u'trial', u'charg'] [u'cooper', u'plead', u'guilti', u'charg'] [u'coraki', u'fight', u'save', u'hospit'] [u'councillor', u'push', u'pool', u'fee'] [u'council', u'ward', u'scheme'] [u'court', u'appear', u'follow', u'drug', u'raid'] [u'cowboy', u'coach', u'see', u'posit'] [u'cypriot', u'plane', u'crash', u'probe', u'find', u'cabin', u'pressur'] [u'dean', u'fli', u'glori', u'complet', u'prepar'] [u'deftero', u'case', u'reopen', u'nixon'] [u'demon', u'gain', u'confid', u'white'] [u'dfat', u'assist', u'mother', u'bring', u'daughter', u'bodi'] [u'discoveri', u'lift', u'prematur', u'say', u'thoma'] [u'dragon', u'look', u'forward', u'earn', u'break'] [u'driver', u'face', u'knife', u'bandit', u'more'] [u'driver', u'unhurt', u'highway', u'truck', u'blaze'] [u'drogba', u'fluke', u'goal', u'sink', u'arsenal'] [u'dubbo', u'communiti', u'threat', u'polic'] [u'pack', u'plant', u'blaze', u'think', u'arson'] [u'england', u'women', u'thriller'] [u'unconcern', u'melbourn', u'river', u'arsenic'] [u'extra', u'tote', u'fund', u'boost', u'race', u'stake'] [u'fall', u'madonna', u'feet', u'trot'] [u'farmer', u'telstra', u'plan'] [u'fear', u'fuel', u'cost', u'finish', u'farmer'] [u'feder', u'claim', u'cincinnati', u'crown'] [u'financi', u'advis', u'ban', u'asic'] [u'australian', u'woman', u'receiv', u'tripl', u'organ'] [u'flood', u'watch', u'cancel', u'temp', u'rise'] [u'footbal', u'serious', u'hurt', u'weekend', u'match'] [u'gatton', u'youth', u'hope', u'chanc', u'golf'] [u'gaza', u'settler', u'bloc', u'evacu', u'complet'] [u'gillard', u'slam', u'abbott', u'cheap', u'shoot', u'polic'] [u'gold', u'coast', u'vmos', u'resign', u'offer'] [u'govern', u'ask', u'explain', u'cityrail', u'incid'] [u'govern', u'commit', u'telstra', u'sale', u'minchin'] [u'govt', u'condit', u'worri', u'yacht', u'club'] [u'govt', u'intent', u'telstra', u'stake', u'sell', u'minchin'] [u'govt', u'backpeddl', u'anti', u'social', u'behaviour'] [u'govt', u'urg', u'bail', u'harvey', u'meatwork'] [u'govt', u'urg', u'camel', u'meat', u'industri'] [u'govt', u'urg', u'help', u'warrnambool', u'jail', u'fiji'] [u'govt', u'urg', u'oppos', u'truck', u'rego', u'rise'] [u'greenpeac', u'focus', u'climat', u'chang', u'impact'] [u'green', u'hope', u'highway', u'inquiri'] [u'health', u'issu', u'cost', u'labor', u'beatti'] [u'heavi', u'demand', u'kimberley', u'caravan', u'park', u'sit'] [u'heavi', u'rainfal', u'south', u'west', u'water'] [u'hewitt', u'confid', u'strong', u'open', u'show'] [u'hobb', u'urg', u'govt', u'boost', u'rural', u'doctor'] [u'hostil', u'tait', u'press', u'ash', u'claim'] [u'hous', u'boost', u'push', u'roo', u'rural', u'residenti'] [u'howard', u'welcom', u'youth', u'annouc'] [u'iemma', u'confid', u'labor', u'chanc'] [u'india', u'bangladesh', u'border', u'guard', u'resolv', u'disput'] [u'indigen', u'mother', u'join', u'earli', u'childhood', u'confer'] [u'indonesia', u'pull', u'troop', u'aceh'] [u'injur', u'webck', u'hope', u'final', u'chanc'] [u'interview', u'justin', u'langer'] [u'iraq', u'constitut', u'deadlin', u'loom', u'charter'] [u'iraqi', u'abductor', u'free', u'foreign', u'worker'] [u'iraqi', u'face', u'constitut', u'deadlin', u'headach'] [u'jordan', u'arrest', u'arab', u'aqaba', u'rocket', u'attack'] [u'kearn', u'call', u'time', u'game', u'career'] [u'keeper', u'obsess', u'cost', u'goal'] [u'kiama', u'council', u'start', u'recycl', u'scheme'] [u'kidnap', u'accus', u'hospitalis'] [u'landcar', u'award', u'recognis', u'riverina', u'effort'] [u'legal', u'group', u'beat', u'disabl', u'fund'] [u'lille', u'want', u'tait', u'test', u'team'] [u'london', u'polic', u'chief', u'defend', u'handl', u'shoot'] [u'loxton', u'shake', u'famili', u'holiday', u'tragedi'] [u'macdougal', u'face', u'week', u'spear', u'tackl'] [u'major', u'player', u'arrest', u'drug', u'raid', u'polic'] [u'charg', u'sydney', u'shoot'] [u'front', u'court', u'internet', u'porn', u'investig'] [u'question', u'sydney', u'shoot'] [u'face', u'suprem', u'court', u'teen', u'drug', u'rape'] [u'want', u'murder', u'extradit'] [u'mayor', u'rais', u'crisi', u'accommod', u'shortag'] [u'mayor', u'unsur', u'hockey', u'facil', u'plan'] [u'meatwork', u'make', u'kyneton'] [u'men', u'sexual', u'health', u'high', u'confer', u'agenda'] [u'miner', u'oppos', u'moranbah', u'hous', u'plan'] [u'minist', u'defend', u'handl', u'bali', u'case'] [u'miss', u'safe'] [u'offer', u'surgeri', u'assur'] [u'model', u'drug', u'charg'] [u'molik', u'tumbl', u'return'] [u'talk', u'hold', u'marina', u'plan'] [u'motorcyclist', u'succumb', u'crash', u'injuri'] [u'mottram', u'win', u'mile', u'race'] [u'play', u'airport', u'secur', u'worri'] [u'want', u'cape', u'york', u'croc', u'hunt', u'safari'] [u'murder', u'conspiraci', u'charg', u'lawyer'] [u'muslim', u'group', u'unveil', u'plan', u'tackl', u'radic'] [u'nation', u'kelli', u'support', u'telstra', u'share'] [u'newcastl', u'jet', u'true', u'form'] [u'newcrest', u'annual', u'profit', u'rise'] [u'legal', u'offic', u'assist', u'local', u'justic'] [u'newton', u'john', u'partner', u'miss'] [u'decis', u'olymp', u'expans'] [u'nolan', u'paint', u'hammer'] [u'quick', u'break', u'bridg', u'glass'] [u'north', u'west', u'host', u'fair', u'dinkum', u'food', u'campaign', u'barbecu'] [u'opposit', u'offer', u'billion', u'cut'] [u'offic', u'energi', u'reject', u'power', u'grid', u'call'] [u'bubbl', u'preserv', u'ancient', u'alga'] [u'pacif', u'highway', u'black', u'spot', u'claim', u'life'] [u'pair', u'face', u'charg', u'match', u'review'] [u'palestinian', u'gunmen', u'free', u'french', u'journalist'] [u'patrick', u'push', u'record', u'high'] [u'patrick', u'knock', u'takeov'] [u'peacock', u'charg', u'drink', u'drive'] [u'pill', u'test', u'adelaid', u'model', u'hold', u'bali'] [u'receiv', u'award'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'charg', u'drug', u'raid'] [u'polic', u'leap', u'databas', u'replac'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'question', u'pair', u'warialda', u'murder'] [u'premier', u'head', u'break', u'hill', u'wednesday'] [u'qanta', u'land', u'perth', u'japanes', u'emerg'] [u'qanta', u'pilot', u'face', u'question', u'forc', u'land'] [u'qmag', u'announc', u'expans', u'plan'] [u'raikkonen', u'cruis', u'victori', u'turkey'] [u'rain', u'help', u'boost', u'farmer', u'crop', u'hop'] [u'rain', u'wash', u'afro', u'asia', u'decid'] [u'region', u'airport', u'secur', u'upgrad'] [u'report', u'prompt', u'seek', u'younger', u'crowd'] [u'review', u'help', u'council', u'prepar', u'emerg'] [u'rhode', u'home', u'cycl', u'accid'] [u'rooster', u'drop', u'premiership', u'stake'] [u'sack', u'forc', u'command', u'award', u'compens'] [u'infrastructur', u'score', u'bad', u'engin', u'report'] [u'face', u'charg', u'drug', u'possess'] [u'satellit', u'track', u'sputnik', u'croc'] [u'scientist', u'send', u'skin', u'cell', u'embryo', u'stage'] [u'scrap', u'prioriti', u'pick', u'sheedi'] [u'search', u'continu', u'miss', u'fisherman'] [u'settler', u'pray', u'evacu', u'gaza'] [u'shake', u'passeng', u'arriv', u'perth'] [u'shake', u'qanta', u'passeng', u'tell', u'scari', u'land'] [u'sharapova', u'claim', u'world', u'number', u'rank'] [u'sharon', u'blast', u'settler', u'hooligan'] [u'sharon', u'lash', u'violent', u'protest'] [u'sheedi', u'say', u'prioriti', u'pick', u'reward', u'mediocr'] [u'sheep', u'breed', u'trial', u'show', u'promis', u'altern'] [u'shepparton', u'trucki', u'jail', u'savag', u'bash'] [u'shire', u'budget', u'boost', u'grant'] [u'showground', u'trust', u'doubl', u'fee'] [u'snow', u'fall', u'drought', u'stricken', u'monaro', u'area'] [u'space', u'shuttl', u'return', u'florida'] [u'staff', u'concern', u'remain', u'region', u'polic'] [u'stone', u'kick', u'world', u'tour', u'boston'] [u'strike', u'forc', u'form', u'investig', u'school'] [u'sydney', u'glamour', u'hard', u'edg'] [u'tait', u'itch', u'dish', u'england'] [u'tare', u'council', u'seek', u'rate', u'peg', u'chang'] [u'teen', u'die', u'kart', u'crash'] [u'teen', u'die', u'accid'] [u'telstra', u'share', u'doubt', u'absurd', u'beazley', u'say'] [u'tender', u'call', u'soon', u'winton', u'bore'] [u'toll', u'hold', u'unveil', u'patrick'] [u'toni', u'abbott', u'criticis', u'polic'] [u'travel', u'advic', u'tonga', u'upgrad'] [u'truck', u'driver', u'work', u'place', u'inquiri'] [u'trucki', u'die', u'fieri', u'blaze'] [u'tsunami', u'victim', u'process', u'year'] [u'tunnel', u'oper', u'defend', u'speed', u'camera'] [u'home', u'damag', u'west', u'dubbo'] [u'question', u'sydney', u'shoot'] [u'embassi', u'staff', u'hurt', u'blast', u'near', u'afghan'] [u'unicef', u'mourn', u'tasmanian', u'execut', u'death'] [u'mourn', u'victim', u'death'] [u'union', u'predict', u'mix', u'respons', u'school', u'holiday'] [u'union', u'predict', u'riverina', u'wool', u'comb', u'plant', u'closur'] [u'union', u'step', u'opposit', u'feder', u'work', u'chang'] [u'student', u'order', u'campus', u'leaflet'] [u'deliv', u'forestri', u'cours'] [u'veteran', u'hockeyroo', u'happi', u'pass', u'experi'] [u'vintag', u'truck', u'outback', u'trek', u'alic'] [u'walkaway', u'wind', u'power', u'farm', u'project'] [u'water', u'confer', u'tackl', u'salin', u'crisi'] [u'webber', u'hit', u'unsport', u'schumach'] [u'wildlif', u'freezer', u'hand', u'suspend', u'jail', u'term'] [u'woman', u'hurt', u'motorcycl', u'crash'] [u'woman', u'win', u'right', u'hospit', u'parent'] [u'women', u'head', u'line'] [u'women', u'line', u'role'] [u'wood', u'take', u'titl', u'mistak', u'cost', u'applebi'] [u'woolworth', u'report', u'profit', u'jump'] [u'yemen', u'flash', u'flood', u'kill', u'day'] [u'youth', u'detaine', u'recaptur', u'launceston', u'escap'] [u'abba', u'phone', u'sharon', u'gaza', u'pullout'] [u'call', u'bank', u'inquiri'] [u'aceh', u'rebel', u'leav', u'mountain', u'hideout'] [u'rule', u'affect', u'westralia', u'inquest'] [u'adelaid', u'arrest', u'sumatra', u'drug', u'charg'] [u'adelaid', u'sumatra', u'drug', u'arrest'] [u'launch', u'probe', u'claim'] [u'agquip', u'happi', u'growth'] [u'black', u'pick', u'macdonald', u'half'] [u'alloc', u'region', u'airport', u'secur', u'fund'] [u'ord', u'dip', u'record', u'high'] [u'accus', u'uranium', u'debat', u'stunt'] [u'anaesthetist', u'work', u'disput', u'continu'] [u'annan', u'visit', u'niger', u'inspect', u'deliveri'] [u'apollo', u'master', u'plan', u'harbour'] [u'armstrong', u'deni', u'claim'] [u'armi', u'fear', u'weapon', u'stockpil', u'evacu'] [u'arson', u'blame', u'tongan', u'king', u'home'] [u'aussi', u'hold', u'larg', u'quantiti', u'drug', u'downer'] [u'aussi', u'win', u'death', u'penalti', u'repriev'] [u'australia', u'japan', u'sign', u'rugbi', u'accord'] [u'australia', u'muslim', u'leader', u'reject', u'terror'] [u'aust', u'singapor', u'team', u'region', u'terror'] [u'author', u'unsur', u'arson', u'hous', u'blaze'] [u'billiton', u'sign', u'north', u'nickel', u'joint', u'ventur'] [u'bluescop', u'report', u'consecut', u'record', u'profit'] [u'bomb', u'blast', u'hit', u'christian', u'area', u'near', u'beirut'] [u'book', u'deal', u'report', u'paedophil'] [u'bowler', u'spot', u'grab', u'merv'] [u'boy', u'face', u'court', u'teen', u'rape'] [u'critic', u'horror', u'crash'] [u'britain', u'call', u'zimbabw', u'cricket'] [u'break', u'pipe', u'forc', u'untreat', u'sewag', u'tamar'] [u'bronco', u'lose', u'health', u'sponsorship'] [u'bronco', u'lose', u'health', u'sponsorship', u'morri'] [u'build', u'collaps', u'kill', u'mumbai'] [u'bunburi', u'dental', u'clinic', u'delay', u'start', u'bite'] [u'access', u'colleg', u'cours'] [u'coastal', u'eros', u'plan'] [u'rural', u'recycl'] [u'canada', u'send', u'warship', u'defend', u'arctic', u'land'] [u'chappel', u'grim', u'warn', u'india'] [u'chick', u'anim', u'magnet'] [u'child', u'refuge', u'sue', u'detent', u'centr', u'stay'] [u'china', u'wool', u'auction', u'hail', u'success'] [u'demand', u'probe', u'travel', u'allow'] [u'communiti', u'meet', u'foundri', u'concern'] [u'cooper', u'offer', u'bribe', u'beer', u'wit', u'say'] [u'coron', u'examin', u'danger', u'sleep'] [u'council', u'highlight', u'social', u'isol', u'blue'] [u'council', u'ask', u'consid', u'resourc', u'share'] [u'council', u'spend', u'park', u'revamp'] [u'court', u'find', u'chief', u'breach', u'duti'] [u'court', u'reject', u'govt', u'applic', u'forest', u'case'] [u'dajka', u'releas', u'jail', u'strict', u'curfew'] [u'dallaglio', u'ponder', u'england', u'return'] [u'develop', u'consid', u'waterfront', u'hotel', u'plan'] [u'dfat', u'defend', u'effort', u'help', u'aussi', u'jail', u'fiji'] [u'district', u'expect', u'contribut', u'cathol', u'youth'] [u'doctor', u'help', u'resolv', u'cunnamulla', u'crisi'] [u'dream', u'offici', u'pitt', u'aniston'] [u'drug', u'model'] [u'dutch', u'bird', u'indoor', u'amid', u'fear'] [u'eager', u'buyer', u'home', u'nolan', u'work'] [u'environ', u'friend', u'slasher'] [u'mayor', u'fight', u'shop', u'centr'] [u'expert', u'urg', u'nation', u'approach', u'combat', u'youth'] [u'farmer', u'condemn', u'communic', u'servic'] [u'father', u'unhappi', u'investig', u'daughter'] [u'fear', u'develop', u'push', u'toppl', u'mayor'] [u'firefight', u'continu', u'extinguish', u'blaze'] [u'firm', u'harvey', u'beef'] [u'fitzroy', u'cross', u'teacher', u'recognis', u'achiev'] [u'flood', u'hit', u'thousand', u'bouganvill'] [u'footi', u'academi', u'prove', u'success', u'indigen', u'boy'] [u'foreign', u'get', u'rich', u'vanuatu', u'land', u'minist'] [u'australian', u'hockey', u'star', u'join', u'zealand'] [u'face', u'court', u'drug', u'charg'] [u'fund', u'seal', u'cultur', u'centr', u'roma'] [u'goddard', u'jone', u'accept', u'penalti'] [u'gold', u'coast', u'hospit', u'vmos', u'quit'] [u'govt', u'criticis', u'breast', u'screen', u'rat'] [u'govt', u'tackl', u'dodgi', u'tour', u'oper'] [u'govt', u'maintain', u'deer', u'park', u'bypass', u'pressur'] [u'govt', u'highway', u'patrol', u'number'] [u'govt', u'urg', u'boost', u'doctor', u'retent', u'effort'] [u'govt', u'urg', u'refus', u'treatment', u'abus', u'patient'] [u'group', u'applaud', u'grain', u'board', u'member', u'dismiss'] [u'habib', u'tell', u'attack', u'mask'] [u'health', u'minist', u'surviv', u'confid', u'motion'] [u'heartbroken', u'newton', u'john', u'ask', u'prayer'] [u'heroin', u'addict', u'sentenc', u'theft'] [u'high', u'school', u'get', u'clear', u'asbesto', u'scare'] [u'hous', u'plan', u'creat', u'turtl', u'fear'] [u'howard', u'meet', u'islam', u'leader'] [u'student', u'return', u'lesson', u'school'] [u'hull', u'support', u'women', u'defenc', u'polici'] [u'human', u'bone', u'near', u'croc', u'attack', u'site'] [u'hunt', u'gippsland', u'firefight'] [u'unveil', u'super', u'seri', u'squad'] [u'iemma', u'defend', u'secur', u'spend'] [u'impound', u'saudi', u'ship', u'sell'] [u'indigen', u'group', u'seek', u'independ', u'bridg', u'probe'] [u'indigen', u'sport', u'train', u'academi', u'open'] [u'indonesian', u'drug', u'crackdown', u'net', u'australian'] [u'injur', u'footi', u'player', u'condit', u'improv'] [u'iraq', u'parliament', u'present', u'draft', u'constituit'] [u'iraq', u'presenc', u'vital', u'freedom', u'say', u'bush'] [u'reform', u'wont', u'help', u'skill', u'shortag', u'beazley'] [u'isra', u'forc', u'storm', u'sanur', u'citadel'] [u'japanes', u'popul', u'fall'] [u'jetstar', u'sorri', u'communic', u'breakdown'] [u'journalist', u'face', u'contempt', u'charg'] [u'kennett', u'lead', u'hawk'] [u'kennington', u'bottl', u'shop', u'plan', u'spark', u'opposit'] [u'kewel', u'name', u'strength', u'socceroo', u'squad'] [u'ladyfing', u'grower', u'frustrat', u'panama', u'diseas'] [u'langer', u'go', u'kasper'] [u'lennon', u'urg', u'mcdonald', u'loyal', u'aussi'] [u'lesbian', u'mother', u'grant', u'equal', u'biolog', u'status'] [u'lifeguard', u'servic', u'extend', u'patrol'] [u'lobbi', u'group', u'want', u'mountain', u'cattl', u'graze'] [u'local', u'branch', u'tell', u'iemma', u'visit'] [u'lockyer', u'chanc', u'face', u'eel'] [u'lord', u'mayor', u'want', u'king', u'cross'] [u'macdougal', u'accept', u'match'] [u'mackay', u'perman', u'continu', u'merger', u'push'] [u'mainten', u'review', u'ground', u'navi', u'chopper'] [u'accus', u'child', u'rape', u'refus', u'bail'] [u'arrest', u'seattl', u'bomb', u'plot'] [u'south', u'durra', u'stab', u'case'] [u'mccain', u'price', u'unaccept', u'potato', u'grower'] [u'meet', u'hear', u'swim', u'centr', u'financi', u'woe'] [u'merger', u'help', u'stock', u'fend', u'fear'] [u'miner', u'hop', u'share', u'releas', u'rais'] [u'model', u'appoint', u'bali', u'lawyer'] [u'question', u'art', u'festiv', u'cost'] [u'muslim', u'bridg', u'build', u'summit'] [u'navi', u'helicopt', u'ground', u'mainten', u'review'] [u'newcrest', u'mine', u'lift', u'revenu'] [u'newspap', u'fin', u'suburban', u'terrorist', u'label'] [u'nixon', u'consid', u'quit', u'polic', u'file', u'affair'] [u'invest', u'self', u'milk', u'scheme'] [u'step', u'port', u'secur'] [u'govt', u'ask', u'reconsid', u'customari'] [u'danc', u'storm', u'cathol', u'celebr'] [u'nurs', u'return', u'kimberley', u'communiti'] [u'pakistani', u'sultan', u'swing', u'say', u'england', u'bowler'] [u'paracetamol', u'effect', u'treat', u'osteoarthr'] [u'pistachio', u'compani', u'centralis', u'oper'] [u'polic', u'search', u'miss', u'angler'] [u'polic', u'investig', u'fatal', u'black', u'spot', u'crash'] [u'polic', u'probe', u'reveal', u'doctor', u'take', u'work'] [u'polic', u'adopt', u'plan', u'home', u'burglari', u'rate'] [u'port', u'macquari', u'host', u'dental', u'inquiri'] [u'power', u'station', u'spark', u'energi', u'rethink'] [u'power', u'target', u'pavlich'] [u'prize', u'money', u'boost', u'australian'] [u'hart', u'famili', u'dismiss', u'ill', u'report'] [u'prosector', u'seek', u'death', u'embassi', u'bomb', u'suspect'] [u'call', u'smoke', u'alarm', u'dubbo', u'courthous'] [u'public', u'protect', u'kennedi', u'rang'] [u'public', u'hous', u'boost', u'plan', u'gippsland'] [u'public', u'urg', u'meat'] [u'public', u'urg', u'help', u'solv', u'port', u'lincoln', u'man'] [u'public', u'warn', u'unlicens', u'builder'] [u'push', u'wimmera', u'rural', u'ambul', u'victoria', u'boost'] [u'qanta', u'crew', u'return', u'tokyo', u'emerg'] [u'qanta', u'increas', u'fuel', u'surcharg'] [u'rain', u'help', u'lift', u'cereal', u'crop'] [u'rebel', u'grain', u'grower', u'group', u'secur', u'resign'] [u'region', u'airport', u'secur', u'upgrad', u'misdirect'] [u'resid', u'reject', u'clear', u'claim'] [u'resid', u'vent', u'opposit', u'desalin', u'plant'] [u'resid', u'council', u'petit', u'oppos', u'civic'] [u'retir', u'judg', u'mediat', u'tonga', u'strike'] [u'roo', u'urg', u'critic', u'ump'] [u'satan', u'music', u'influenc', u'church', u'arson', u'court', u'tell'] [u'scarlet', u'fever', u'hit', u'coast', u'children'] [u'schoolboy', u'murder', u'investig', u'open', u'scotland'] [u'schoolkid', u'hurt', u'hit', u'shelter'] [u'schumach', u'shrug', u'merced', u'rumour'] [u'search', u'local', u'firefight'] [u'seven', u'network', u'suffer', u'percent', u'profit', u'plung'] [u'seven', u'year', u'blaze', u'soon'] [u'skier', u'die', u'snowfield'] [u'small', u'busi', u'expect', u'slowdown'] [u'snowdon', u'criticis', u'telstra', u'bush', u'fund'] [u'sonic', u'healthcar', u'post', u'profit'] [u'studi', u'focus', u'fuel', u'transport'] [u'studi', u'highlight', u'princ', u'highway', u'revamp', u'save'] [u'summit', u'commit', u'combat', u'terror'] [u'symond', u'rack', u'counti'] [u'synthesis', u'pioneer', u'die'] [u'task', u'forc', u'overse', u'northern', u'tourism'] [u'tasmanian', u'riski', u'survey'] [u'polic', u'offic', u'recognis', u'catch', u'serial'] [u'tenni', u'coach', u'victim', u'seek', u'compens'] [u'test', u'pill', u'ecstasi', u'bali', u'polic'] [u'theft', u'spark', u'paint', u'sniff', u'concern'] [u'thousand', u'tip', u'flock', u'countri', u'music', u'muster'] [u'tiwi', u'landown', u'support', u'expans'] [u'tourism', u'market', u'chief', u'spread', u'beat', u'messag'] [u'travel', u'catch', u'lizard', u'snake'] [u'trawler', u'crew', u'recov', u'central', u'sink'] [u'trekker', u'retrac', u'step', u'fat', u'explor'] [u'truck', u'bring', u'powerlin'] [u'kill', u'boat', u'sink', u'queensland'] [u'kill', u'flood', u'sweep', u'switzerland'] [u'refus', u'bail', u'super', u'fraud'] [u'chief', u'visit', u'famin', u'stricken', u'niger'] [u'move', u'establish', u'singapor', u'campus'] [u'uninvit', u'guest', u'crash', u'hous'] [u'union', u'fight', u'worker', u'entitl'] [u'union', u'want', u'probe', u'fieri', u'fatal', u'truck', u'crash'] [u'vandal', u'blame', u'blackout'] [u'vandal', u'leav', u'trail', u'yard', u'damag'] [u'govt', u'legisl', u'plan', u'chang'] [u'vickerman', u'join', u'wallabi', u'injuri', u'list'] [u'victorian', u'faction', u'settl', u'disput'] [u'villag', u'chief', u'kill', u'southern', u'thailand'] [u'threat', u'childcar', u'macklin'] [u'wade', u'high', u'student', u'resit', u'exam'] [u'tafe', u'fund', u'risk', u'deadlin', u'approach'] [u'water', u'recycl', u'expert', u'join', u'council', u'campaign'] [u'western', u'district', u'affect', u'skill', u'shortag'] [u'wit', u'say', u'hook', u'resist', u'hotel', u'eject'] [u'wollongong', u'get', u'flood', u'manag', u'fund'] [u'wood', u'stretch', u'rank', u'lead', u'scott', u'slip', u'eighth'] [u'wool', u'grower', u'hope', u'improv', u'condit'] [u'work', u'start', u'forestri', u'offic', u'revamp'] [u'work', u'begin', u'holiday', u'cabin', u'sick', u'children'] [u'wound', u'wallabi', u'delay', u'squad', u'announc'] [u'wright', u'name', u'world', u'coach', u'super', u'seri'] [u'save', u'mumbai', u'rubbl'] [u'budget', u'isisford', u'shire'] [u'aborigin', u'activist', u'elect', u'local', u'council'] [u'actor', u'sean', u'penn', u'share', u'journal', u'iran', u'trip'] [u'ponder', u'action', u'thoma', u'comment'] [u'ponder', u'thoma', u'comment'] [u'return'] [u'amcor', u'profit', u'fail', u'reach', u'expect'] [u'englishman', u'welshman', u'gift', u'pakistan'] [u'ararat', u'polic', u'crack', u'violenc'] [u'artist', u'ask', u'return', u'controversi', u'project'] [u'ash', u'battl', u'grip', u'million', u'asia'] [u'aust', u'china', u'satisfi', u'free', u'trade', u'talk', u'progress'] [u'aust', u'face', u'thai', u'child', u'charg'] [u'aust', u'philippin', u'discuss', u'closer', u'defenc', u'tie'] [u'australian', u'aboard', u'peru', u'crash', u'flight'] [u'australian', u'peru', u'crash', u'victim', u'unconfirm'] [u'australian', u'scientist', u'say', u'lanc', u'test'] [u'australia', u'sweat', u'mcgrath', u'fit'] [u'aust', u'teacher', u'face', u'indonesian', u'heroin', u'charg'] [u'beatti', u'call', u'senat', u'vote', u'telstra', u'sale'] [u'announc', u'annual', u'profit'] [u'billiton', u'net', u'profit'] [u'shut', u'briquett', u'plant'] [u'forward', u'school', u'closur'] [u'bluescop', u'enjoy', u'record', u'profit'] [u'bouncer', u'threaten', u'kill', u'hook', u'court', u'hear'] [u'brack', u'defend', u'leap', u'replac'] [u'brambl', u'profit', u'surg'] [u'britain', u'list', u'unaccept', u'behaviour'] [u'british', u'airway', u'negoti', u'continu', u'cater'] [u'brogden', u'plan', u'slash', u'job', u'fund', u'cut'] [u'brogden', u'vow', u'payrol'] [u'broom', u'wast', u'water', u'pump', u'station'] [u'build', u'work'] [u'crash', u'china', u'kill'] [u'centr', u'hail', u'taxi', u'firm', u'pick'] [u'tasmanian', u'convert'] [u'cannabi', u'grower', u'get', u'month', u'jail'] [u'central', u'face', u'harsh', u'water', u'ban'] [u'charlevill', u'drome', u'secur'] [u'citrus', u'industri', u'call', u'care', u'manag'] [u'coast', u'hop', u'brisban', u'accept', u'cancer', u'patient'] [u'communiti', u'group', u'consid', u'tuna', u'farm', u'plan'] [u'compani', u'probe', u'clear', u'anvil', u'congo', u'right', u'abus'] [u'compani', u'result', u'resourc', u'push', u'market', u'lower'] [u'concern', u'air', u'sewag', u'spill'] [u'conserv', u'societi', u'speak', u'protect'] [u'contractor', u'error', u'stop', u'melbourn', u'train'] [u'coron', u'seek', u'review', u'polic', u'murder', u'probe'] [u'council', u'apolog', u'overcharg', u'rat'] [u'council', u'blame', u'sewag', u'releas', u'infrastructur'] [u'council', u'help', u'tram', u'insur'] [u'council', u'draw', u'log', u'protest', u'debat'] [u'councillor', u'heat', u'hospit', u'draft'] [u'council', u'appli', u'power', u'extens'] [u'council', u'quiz', u'ratepay', u'need'] [u'council', u'vote', u'ballina', u'byron', u'airport', u'review'] [u'cowboy', u'rest', u'injur', u'rauhihi'] [u'cowra', u'want', u'councillor', u'number'] [u'crash', u'wit', u'negus', u'fight', u'highway', u'black', u'spot'] [u'croc', u'sight', u'prompt', u'darwin', u'beach', u'warn'] [u'csiro', u'softwar', u'assist', u'water', u'catchment'] [u'doubl', u'annual', u'profit'] [u'cunningham', u'seek', u'polic', u'boost'] [u'date', u'porteous', u'court', u'hear'] [u'diver', u'take', u'shark'] [u'diver', u'take', u'shark', u'report'] [u'doubt', u'rais', u'undera', u'rave', u'parti'] [u'recommend', u'mcgee', u'face', u'charg'] [u'dual', u'state', u'councillor', u'doubt'] [u'duck', u'alarm', u'bell', u'ring', u'royal', u'hideaway'] [u'earthquak', u'shake', u'southern', u'flinder', u'rang'] [u'educ', u'dept', u'say', u'shouldnt', u'impact'] [u'elect', u'turnout', u'highest', u'review', u'find'] [u'environment', u'friend', u'broom', u'hous', u'win', u'award'] [u'expert', u'boost', u'local', u'busi'] [u'famili', u'consid', u'legal', u'action', u'immigr'] [u'farm', u'confer', u'offer', u'region', u'outlook'] [u'farm', u'gate', u'tech'] [u'feder', u'environ', u'minist', u'head', u'pilbara'] [u'feder', u'prim', u'leav', u'rival', u'hungri'] [u'feedlot', u'plan', u'nose', u'resid'] [u'drown', u'overload', u'boat', u'sink'] [u'flinder', u'student', u'condemn', u'labor', u'chang'] [u'foetal', u'pain', u'unlik', u'trimest', u'studi'] [u'insur', u'agent', u'get', u'month', u'jail'] [u'forum', u'tackl', u'increas', u'case', u'aid'] [u'face', u'wallabi', u'squad'] [u'fund', u'dragon', u'boat', u'regatta', u'plan'] [u'extens', u'offer', u'macedon', u'rang', u'econom'] [u'gather', u'focus', u'attract', u'worker'] [u'geraldton', u'extend', u'christma', u'trade', u'hour'] [u'gillespi', u'ax', u'favour', u'tait'] [u'govt', u'ask', u'allow', u'region', u'taxi'] [u'govt', u'pressur', u'islam', u'school', u'teach', u'aust', u'valu'] [u'govt', u'push', u'wag', u'labor', u'say'] [u'govt', u'stand', u'time', u'take', u'help', u'indigen'] [u'govt', u'take', u'gambl', u'voter', u'support'] [u'govt', u'enter', u'mosqu', u'anti', u'terror', u'crackdown'] [u'govt', u'peel', u'deviat', u'commit'] [u'govt', u'urg', u'confront', u'indigen', u'literaci', u'rat'] [u'govt', u'urg', u'woolgrow', u'negoti'] [u'graduat', u'boost', u'indigen', u'essenti', u'servic'] [u'harrop', u'keen', u'commonwealth', u'game'] [u'harvey', u'beef', u'woe', u'spark', u'rescu', u'packag'] [u'hewitt', u'molik', u'seed', u'flush', u'meadow'] [u'higher', u'fuel', u'price', u'brake', u'self', u'drive'] [u'icpa', u'back', u'telstra', u'sale', u'safeguard'] [u'iemma', u'celebr', u'poll', u'result'] [u'india', u'deni', u'plan', u'tiger', u'eleph', u'parad'] [u'india', u'guarante', u'work', u'rural', u'household'] [u'inquest', u'hold', u'canadian', u'death'] [u'inquest', u'tell', u'mother', u'sleep', u'daughter', u'drown'] [u'inquiri', u'tell', u'dental', u'servic', u'inadequ'] [u'insurg', u'attack', u'baghdad', u'polic'] [u'interst', u'tourist', u'kill', u'north', u'accid'] [u'investig', u'continu', u'death'] [u'inzi', u'hurt', u'world', u'snub'] [u'iraq', u'sunni', u'face', u'choic', u'constitut', u'bush'] [u'israel', u'settler', u'evacu', u'complet'] [u'journalist', u'minchin'] [u'joyc', u'back', u'labor', u'deal'] [u'joyc', u'urg', u'wider', u'rethink', u'reef', u'author'] [u'king', u'face', u'bruton', u'poach', u'threat'] [u'labor', u'offer', u'deal'] [u'labor', u'outrag', u'immigr', u'dept', u'treatment'] [u'leader', u'farewel', u'afghan', u'bind', u'troop'] [u'leak', u'advic', u'add', u'case', u'labor', u'say'] [u'show', u'council', u'committe'] [u'lehmann', u'tell', u'court', u'trauma', u'hook', u'death'] [u'lehmann', u'tell', u'hook', u'trauma'] [u'leipheim', u'triumph', u'tour', u'germani'] [u'lille', u'thomson', u'inspir', u'tearaway', u'tait'] [u'macquari', u'airport', u'profit', u'take'] [u'charg', u'mackay', u'rape'] [u'recov', u'gladston', u'accid'] [u'rescu', u'smoki', u'unit'] [u'stab', u'peak', u'hill'] [u'mayn', u'group', u'profit'] [u'mayor', u'john', u'chadban', u'threat'] [u'mayor', u'warn', u'roadsid', u'sale'] [u'mayor', u'worri', u'negat', u'council'] [u'mcdonald', u'stand', u'firm', u'oversea', u'import'] [u'meatwork', u'liquid'] [u'minchin', u'set', u'case', u'telstra', u'sale'] [u'miner', u'keen', u'uranium', u'search'] [u'minist', u'disput', u'phone', u'claim'] [u'minist', u'tell', u'muslim', u'accept', u'aussi', u'valu'] [u'minist', u'urg', u'consult', u'communiti'] [u'model', u'face', u'drug', u'charg', u'meet', u'lawyer'] [u'mortgag', u'broker', u'record', u'profit', u'increas'] [u'motion', u'civic', u'centr', u'review', u'fail'] [u'murchison', u'metal', u'second', u'share', u'placement'] [u'myob', u'track', u'revenu'] [u'nelson', u'commit', u'student', u'rank', u'despit'] [u'nelson', u'meet', u'muslim', u'leader'] [u'newcastl', u'confirm', u'record', u'owen'] [u'home', u'plan', u'rural', u'clinic', u'school'] [u'scheme', u'improv', u'walbundri', u'rand', u'water'] [u'newspap', u'admit', u'fabric', u'timberlak', u'affair'] [u'nightfal', u'halt', u'search', u'shark', u'attack', u'victim'] [u'nimbin', u'coffe', u'compani', u'brew', u'plan', u'world'] [u'evacu', u'plan', u'canberra'] [u'mysteri', u'fevola', u'absenc', u'pagan'] [u'northern', u'fish', u'plan', u'spark', u'respons'] [u'infrastructur', u'ahead', u'nation'] [u'unveil', u'indigen', u'educ', u'strategi'] [u'ogradi', u'snub', u'australia', u'mcewen', u'feud'] [u'opposit', u'highlight', u'poki', u'impact'] [u'half', u'world', u'popul', u'surviv'] [u'parent', u'guilti', u'imprison', u'teenag', u'daughter'] [u'person', u'scammer', u'jail'] [u'petti', u'crime', u'target', u'countri', u'peopl'] [u'pilbara', u'volunt', u'rescu', u'group', u'win', u'award'] [u'plan', u'build', u'star', u'hotel', u'lithgow'] [u'express', u'disbelief', u'asia', u'drug', u'carri'] [u'pngs', u'program', u'salvag'] [u'polic', u'dismiss', u'civic', u'safeti', u'concern'] [u'polic', u'fear', u'miss'] [u'polic', u'beat', u'drug', u'arrest'] [u'polic', u'urg', u'fast', u'food', u'shop', u'trade', u'hour'] [u'plate', u'driver', u'admit', u'kill', u'friend'] [u'premier', u'urg', u'boost', u'rail', u'servic'] [u'protest', u'continu', u'supermarket', u'opposit'] [u'public', u'patient', u'abl', u'access', u'cobb'] [u'public', u'urg', u'fuel', u'theft', u'victim'] [u'extradit'] [u'quarri', u'public', u'green', u'space'] [u'raaf', u'crew', u'treat', u'scare'] [u'racv', u'highlight', u'unregist', u'driver'] [u'report', u'criticis', u'growth', u'compo', u'fund'] [u'resourc', u'strain', u'report', u'child', u'abus'] [u'retir', u'offic', u'lose', u'govt', u'naval'] [u'urg', u'black', u'spot', u'upgrad'] [u'ryan', u'rais', u'polic', u'file', u'fear'] [u'salin', u'crisi', u'plan', u'present'] [u'medic', u'work', u'forc', u'rise'] [u'school', u'celebr', u'life', u'miss', u'teacher'] [u'search', u'newton', u'john', u'partner', u'continu'] [u'search', u'shark', u'attack', u'diver'] [u'seymour', u'add', u'bronco', u'injuri', u'woe'] [u'shatter', u'bulldog', u'look', u'bright'] [u'shire', u'back', u'boat', u'launch', u'facil'] [u'skier', u'die', u'hotham', u'mishap'] [u'skill', u'vacanc', u'drop'] [u'southern', u'cross', u'profit', u'rise'] [u'spirit', u'tasmania', u'doubl', u'book'] [u'springbok', u'barri'] [u'studi', u'consid', u'north', u'west', u'copper', u'gold'] [u'task', u'forc', u'investig', u'latest', u'raid'] [u'plan', u'tighten', u'anim', u'welfar', u'law'] [u'teacher', u'await', u'govt', u'respons', u'strike', u'vote'] [u'teen', u'court', u'school', u'blaze'] [u'telstra', u'requir', u'fault'] [u'countri', u'hour', u'go', u'cooktown'] [u'thoma', u'pay', u'price', u'umpir', u'comment'] [u'price', u'teacher', u'vie', u'award'] [u'wag', u'gamba', u'grass'] [u'tourism', u'group', u'back', u'plan', u'oust', u'dodgi', u'oper'] [u'train', u'servic', u'south', u'east', u'melbourn', u'resum'] [u'truck', u'compani', u'post', u'record', u'half', u'year', u'profit'] [u'offer', u'solut', u'nurs', u'shortag'] [u'focus', u'iran', u'nuclear', u'network'] [u'reject', u'call', u'chavez', u'assassin'] [u'vail', u'upbeat', u'telstra', u'talk'] [u'venezuela', u'demand', u'apolog', u'assassin'] [u'govt', u'workplac', u'right', u'plan', u'polit'] [u'viduka', u'best', u'say', u'manag'] [u'hold', u'thai', u'child', u'offenc'] [u'wanga', u'retir', u'rethink'] [u'warwick', u'credit', u'union', u'mark', u'year'] [u'women', u'champion'] [u'wind', u'caus', u'yacht', u'capsiz', u'polic'] [u'wit', u'seek', u'accid'] [u'woman', u'injur', u'crash'] [u'young', u'muslim', u'choos', u'sept', u'action'] [u'seek', u'robberi', u'polic', u'brief'] [u'abba', u'accus', u'israel', u'wreck', u'peac'] [u'abetz', u'accus', u'undermin', u'toler'] [u'academ', u'suggest', u'fewer', u'wheatbelt', u'town'] [u'accus', u'rapist', u'charg', u'break', u'bail'] [u'anglican', u'seek', u'dialogu', u'muslim'] [u'urg', u'drop', u'court', u'action', u'peta'] [u'barn', u'start', u'half', u'brisban', u'lose', u'seymour'] [u'condemn', u'govt', u'infrastructur', u'plan'] [u'betfair', u'inquiri', u'launch', u'tasmania'] [u'wheel', u'continu', u'roll', u'reunion'] [u'biosecur', u'plan', u'launch', u'grain', u'industri'] [u'blackburn', u'spur', u'draw'] [u'bolton', u'urg', u'speed', u'propos', u'negoti'] [u'boycott', u'hurt', u'farmer', u'mcdonald'] [u'brack', u'rule', u'speed', u'camera', u'review'] [u'break', u'straw', u'histor'] [u'brief', u'insight', u'malle', u'toxic', u'wast', u'dump'] [u'brogden', u'say', u'iemma', u'cut', u'bolder'] [u'broom', u'albani', u'footi', u'academi'] [u'bucket', u'state', u'money', u'research', u'self'] [u'council', u'merger', u'talk'] [u'council', u'reject', u'wind', u'farm', u'plan'] [u'payrol', u'busi'] [u'casa', u'wait', u'qanta', u'brief', u'engin', u'troubl'] [u'cattl', u'produc', u'plan', u'million', u'dollar', u'beef', u'campaign'] [u'caucau', u'ban', u'nation'] [u'citrus', u'grower', u'hope', u'higher', u'price', u'market'] [u'confer', u'studi', u'synthet', u'herbicid', u'altern'] [u'conserv', u'group', u'wari', u'kaili', u'consult'] [u'corrupt', u'fighter', u'resign'] [u'council', u'ask', u'govern', u'subsidis'] [u'council', u'complain', u'miss', u'function'] [u'council', u'plan', u'decis', u'prove', u'cost'] [u'council', u'tafe', u'work', u'train', u'opportun'] [u'council', u'work', u'water', u'manag', u'plan'] [u'court', u'award', u'crash', u'victim'] [u'court', u'tell', u'kill', u'lover', u'abort'] [u'decor', u'offic', u'replac', u'yench'] [u'detaine', u'ankl', u'break', u'baxter', u'incid'] [u'confirm', u'myer', u'store'] [u'doctor', u'quit', u'seymour', u'hospit'] [u'dodgi', u'knee', u'end', u'maxfield', u'season'] [u'drug', u'dealer', u'life', u'sentenc'] [u'condit', u'drive', u'demand', u'groundwat'] [u'earthcor', u'organis', u'consid', u'altern', u'site'] [u'edmond', u'say', u'half', u'specialist', u'list', u'wont', u'need'] [u'green', u'famili', u'member', u'confid', u'firm', u'come'] [u'engin', u'fault', u'produc', u'spark', u'qanta'] [u'european', u'flood', u'kill', u'dozen'] [u'evangelist', u'say', u'sorri', u'chavez', u'assassin'] [u'expert', u'dismiss', u'water', u'bomb', u'sumatra', u'fire'] [u'famili', u'call', u'mcdonald', u'spud', u'boycott'] [u'famili', u'miss', u'speak', u'tragic', u'loss'] [u'famili', u'sue', u'death', u'custodi'] [u'farmer', u'urg', u'rethink', u'drought', u'status'] [u'fatal', u'crash', u'prompt', u'polic', u'safeti', u'warn'] [u'feder', u'court', u'judg', u'die'] [u'financi', u'group', u'support', u'credit', u'law'] [u'florida', u'alert', u'tropic', u'storm', u'katrina'] [u'forest', u'feder', u'execut', u'reject', u'compo', u'rort'] [u'kill', u'west', u'bank', u'raid'] [u'licenc', u'criticis', u'say', u'malthous'] [u'clock', u'get', u'tick'] [u'gold', u'miner', u'recruit', u'indigen', u'worker', u'plan'] [u'googl', u'stride', u'chat', u'voip', u'land'] [u'googl', u'talk', u'launch'] [u'govt', u'act', u'like', u'brother', u'labor'] [u'govt', u'ask', u'loss', u'communiti'] [u'govt', u'blame', u'hospit', u'cancer', u'care', u'crisi'] [u'govt', u'deni', u'telstra', u'backflip'] [u'govt', u'toughen', u'environment', u'standard'] [u'govt', u'urg', u'review', u'water', u'agreement'] [u'group', u'say', u'local', u'doctor', u'shortag', u'worsen'] [u'gunn', u'profit', u'expect'] [u'health', u'care', u'issu', u'macquari', u'field', u'iemma'] [u'health', u'watchdog', u'seek', u'fund', u'boost'] [u'health', u'worker', u'focus', u'remot', u'work', u'woe'] [u'heathcot', u'prepar', u'communiti', u'bank', u'open'] [u'henri', u'close', u'wright', u'record'] [u'heritag', u'site', u'list', u'australia', u'govt'] [u'hewitt', u'nemesi', u'feder', u'open'] [u'hobart', u'islam', u'studi', u'centr', u'suspici'] [u'hook', u'knock', u'hit', u'grind', u'wit'] [u'hook', u'friend', u'wrap', u'evid', u'bouncer', u'trial'] [u'hotlin', u'runaway', u'croc'] [u'hous', u'price', u'fall', u'illawarra'] [u'hunt', u'shark', u'continu'] [u'iemma', u'offer', u'west', u'health', u'assur'] [u'increas', u'book', u'devonport', u'sydney', u'ferri'] [u'independ', u'panel', u'rule', u'industri', u'land', u'plan'] [u'injur', u'cyclist', u'begin', u'recoveri', u'northern'] [u'internet', u'help', u'farmer', u'fight', u'crime'] [u'japanes', u'opposit', u'promis', u'iraq', u'pullout'] [u'cut', u'plan', u'port', u'piri', u'smelter'] [u'jone', u'urg', u'blood', u'johansson'] [u'joyc', u'back', u'telstra', u'sale'] [u'kangaroo', u'mckernan', u'finish'] [u'karzai', u'criticis', u'soldier', u'sentenc', u'abus'] [u'kelso', u'high', u'school', u'student', u'send'] [u'latrob', u'valley', u'paper', u'expand'] [u'legal', u'team', u'keep', u'quiet', u'model', u'case'] [u'lemar', u'lead', u'mobo', u'nomin'] [u'lion', u'white', u'announc', u'retir'] [u'liverpool', u'ponder', u'owen'] [u'major', u'supplier', u'catch', u'ecstasi', u'haul'] [u'mall', u'submiss', u'near', u'complet'] [u'thailand', u'face', u'paedophilia', u'charg'] [u'man', u'marlin', u'deni', u'hopoat', u'book'] [u'ranger', u'march', u'miseri'] [u'mayor', u'push', u'cancer', u'treatment', u'fund'] [u'mcmahon', u'expect', u'good', u'test', u'marin'] [u'west', u'phone', u'tower'] [u'mildura', u'marina', u'site', u'test', u'complet'] [u'miner', u'buy', u'cape', u'lambert', u'iron', u'project'] [u'mine', u'sector', u'send', u'market', u'lower'] [u'minist', u'water', u'factori', u'plan'] [u'minist', u'hear', u'gold', u'coast', u'health', u'woe'] [u'minist', u'urg', u'controversi', u'hous', u'estat'] [u'mirani', u'council', u'cap', u'rate', u'rise'] [u'mix', u'respons', u'port', u'hedland', u'iron', u'plant', u'closur'] [u'oversea', u'visitor', u'flock', u'agquip'] [u'vmos', u'continu', u'tender', u'resign'] [u'surveil', u'camera', u'armidal'] [u'make', u'telstra', u'sale', u'pledg'] [u'want', u'tenfold', u'increas', u'wild', u'bounti'] [u'nation', u'concern', u'plant', u'water', u'treatment', u'plan'] [u'negoti', u'visit', u'medic', u'offic'] [u'plan', u'smith', u'beach'] [u'chairman', u'fairfax'] [u'law', u'shock', u'young', u'offend', u'crime'] [u'unit', u'focus', u'heal', u'abus'] [u'nine', u'difficult', u'year', u'hit', u'profit'] [u'chang', u'afoot', u'berri', u'riverland', u'plant'] [u'forc', u'redund', u'govt', u'say'] [u'sniff', u'fuel', u'spur', u'addict', u'katherin'] [u'north', u'road', u'toll', u'continu', u'climb'] [u'downplay', u'bird', u'risk', u'hunter'] [u'govt', u'urg', u'senat', u'guarante', u'telco'] [u'offici', u'disciplin', u'timor', u'data'] [u'ogradi', u'injuri', u'solv', u'mcewen', u'friction'] [u'price', u'push', u'santo', u'record', u'profit'] [u'orang', u'host', u'workplac', u'safeti', u'summit'] [u'overcrowd', u'central', u'palm', u'island', u'problem'] [u'oversea', u'train', u'doctor', u'clear', u'patient', u'death'] [u'pay', u'park', u'plan', u'sunshin', u'coast', u'airport'] [u'pakistan', u'confirm', u'religi', u'school', u'crackdown', u'plan'] [u'perish', u'blue', u'get', u'owner'] [u'plan', u'water', u'factori', u'latrob', u'valley'] [u'plenti', u'stake', u'leagu'] [u'polic', u'investig', u'alleg', u'schoolgirl', u'abduct'] [u'polic', u'investig', u'kerang', u'hous'] [u'polic', u'investig', u'warrawong', u'death'] [u'polic', u'truck', u'crash', u'victim'] [u'polic', u'promis', u'countri', u'road', u'crackdown'] [u'potato', u'grower', u'contract', u'price', u'plan'] [u'prais', u'indigen', u'agreement'] [u'premier', u'announc', u'farm', u'safeti', u'packag'] [u'profit', u'poki', u'power', u'promina'] [u'public', u'servant', u'disciplin', u'intellig'] [u'push', u'continu', u'northern', u'power', u'plant'] [u'push', u'boost', u'nimbin', u'polic', u'rank'] [u'qanta', u'deni', u'engin', u'flight'] [u'queensland', u'rugbi', u'futur'] [u'rail', u'station', u'master', u'quit', u'porn', u'charg'] [u'rain', u'hold', u'england'] [u'rain', u'influenc', u'fourth', u'ash', u'test'] [u'rain', u'record', u'west', u'kimberley'] [u'rare', u'orang', u'sapphir', u'rubi'] [u'reconcili', u'bond', u'program', u'launch'] [u'red', u'futur', u'connor'] [u'research', u'centr', u'tackl', u'terror', u'psycholog'] [u'return', u'iraq', u'soldier', u'face', u'physic', u'mental', u'risk'] [u'robert', u'defend', u'mayor'] [u'rocket', u'fire', u'southern', u'israel'] [u'plan', u'chao', u'push', u'driver', u'tunnel', u'nrma'] [u'rural', u'health', u'scheme', u'push', u'hospit'] [u'russian', u'region', u'leader', u'wound', u'bomb', u'attack'] [u'safeti', u'bureau', u'probe', u'qanta', u'incid'] [u'safeti', u'hous', u'group', u'seek', u'polic', u'help'] [u'santo', u'announc', u'record', u'profit'] [u'scullion', u'pressur', u'stanc'] [u'seafood', u'hotlin', u'take', u'gold', u'coast', u'complaint'] [u'secur', u'revamp', u'plan', u'learmonth', u'airport'] [u'sewag', u'spill', u'worri', u'fisher'] [u'shark', u'attack', u'victim', u'love'] [u'shark', u'net', u'wouldnt', u'stop', u'attack', u'rann'] [u'shoot', u'dead', u'iraqi', u'cafe'] [u'skywest', u'profit'] [u'southern', u'light', u'brighten', u'night'] [u'speaker', u'expect', u'bipartisan', u'support', u'code'] [u'speed', u'camera', u'bungl', u'prompt', u'network', u'review'] [u'springborg', u'back', u'joyc', u'telstra'] [u'state', u'govt', u'minist', u'visit', u'orang'] [u'state', u'pilchard', u'fisheri', u'close', u'dolphin', u'death'] [u'state', u'releas', u'land', u'coal', u'rush'] [u'stelio', u'pile', u'miseri', u'newcastl'] [u'stock', u'death', u'poor', u'lamb', u'rat', u'border', u'farmer'] [u'student', u'highlight', u'region', u'internet', u'woe'] [u'student', u'protest', u'street'] [u'submiss', u'seek', u'basin', u'manag', u'plan'] [u'swift', u'secur', u'grand', u'final', u'berth'] [u'sydney', u'traffic', u'problem', u'expect', u'worsen'] [u'tait', u'stick', u'know'] [u'tassi', u'shark', u'patrol', u'helicopt', u'adelaid'] [u'level', u'rise'] [u'telstra', u'legisl', u'meet', u'nation', u'concern'] [u'test', u'preview'] [u'kill', u'victorian', u'road'] [u'hold', u'fatal', u'stab', u'collingwood'] [u'tonga', u'beef', u'polic', u'presenc', u'king'] [u'tougher', u'gold', u'coast', u'water', u'ban', u'loom'] [u'trescothick', u'exploit', u'australia', u'bowl', u'woe'] [u'union', u'negoti', u'settlement', u'sack', u'council'] [u'union', u'see', u'benefit', u'report', u'have', u'parent'] [u'court', u'reject', u'man', u'appeal', u'overturn'] [u'soldier', u'sentenc', u'afghan', u'prison', u'abus'] [u'boost', u'iraq', u'troop', u'number', u'vote'] [u'victim', u'tri', u'fight', u'shark', u'wit', u'say'] [u'victori', u'leijer', u'excit', u'york', u'challeng'] [u'wandal', u'hous', u'fire', u'street', u'away'] [u'wanga', u'boost', u'port', u'play', u'decis'] [u'warn', u'break', u'australia'] [u'water', u'storag', u'concern', u'air'] [u'wayn', u'pearc', u'rooster'] [u'west', u'bank', u'death', u'toll', u'revis'] [u'wit', u'tell', u'shark', u'attack', u'victim', u'final'] [u'wodonga', u'face', u'court', u'father', u'daughter'] [u'yacht', u'rescu', u'prompt', u'prais'] [u'yawn', u'order', u'parliament'] [u'fund', u'assist', u'holden', u'worker'] [u'abbott', u'rebuff', u'beatti', u'challeng', u'health'] [u'ablett', u'doubt', u'clash', u'tiger'] [u'govt', u'chang', u'shock', u'therapi', u'polici'] [u'adelaid', u'model', u'dump', u'indonesian', u'lawyer'] [u'adelaid', u'inaugur', u'leagu', u'clash'] [u'umpir', u'clear', u'inappropri', u'behaviour'] [u'agreement', u'boost', u'indigen', u'group', u'wallabi'] [u'agreement', u'remain', u'bullock', u'educ', u'cours'] [u'say', u'nile', u'abort', u'propos', u'help'] [u'ambul', u'organis', u'face', u'staff', u'shortag'] [u'anaesthetist', u'recal', u'critic', u'patel'] [u'approv', u'give', u'stage', u'pain', u'free'] [u'armstrong', u'consid', u'lawsuit', u'dope', u'alleg'] [u'arrest', u'forest', u'demonstr'] [u'aust', u'missionari', u'bodi', u'ugandan', u'waterfal'] [u'aust', u'philippin', u'strengthen', u'anti', u'terror', u'cooper'] [u'australian', u'confirm', u'dead', u'peru', u'aircrash'] [u'author', u'probe', u'light', u'plane', u'crash'] [u'author', u'seek', u'contract', u'prison', u'welfar'] [u'auto', u'part', u'compani', u'sell'] [u'autopsi', u'hous', u'blaze', u'victim'] [u'babi', u'kill', u'crash'] [u'ballarat', u'fuel', u'discount', u'scheme'] [u'ball', u'celebr', u'year', u'fli', u'doctor'] [u'beatti', u'offer', u'health', u'rein', u'commonwealth'] [u'beatti', u'health', u'challeng', u'stunt', u'springborg'] [u'belgian', u'get', u'year', u'wheeli', u'murder'] [u'box', u'tsunami', u'reach', u'america', u'studi'] [u'bridg', u'final', u'link'] [u'bronco', u'lose', u'spot'] [u'broom', u'shire', u'announc', u'annual', u'budget'] [u'buchanan', u'see', u'aussi', u'overstep', u'mark'] [u'bulldog', u'humbl', u'pie', u'dockland'] [u'bulldog', u'remain', u'final', u'race'] [u'byron', u'council', u'consid', u'holiday', u'let'] [u'caltex', u'confid', u'despit', u'profit', u'drop'] [u'caltex', u'profit', u'drop'] [u'captain', u'bell', u'provid', u'major', u'boost', u'docker'] [u'captain', u'break', u'clash', u'rooster'] [u'church', u'worker', u'jail', u'bash', u'woman'] [u'civic', u'blame', u'attract', u'drug', u'dealer'] [u'clean', u'continu', u'chemic', u'factori', u'blaze'] [u'clear', u'iraqi', u'civilian', u'compo', u'rumour', u'opposit'] [u'close', u'school', u'go', u'suprem', u'court'] [u'power', u'promis', u'econom', u'viabl', u'report'] [u'coach', u'craig', u'readi', u'strength', u'eagl'] [u'commiss', u'underspend', u'poki', u'fund'] [u'communiti', u'hold', u'network', u'forum'] [u'communiti', u'reject', u'hous', u'deal'] [u'complaint', u'prompt', u'nation', u'telemarket'] [u'concern', u'remain', u'canker', u'compo'] [u'constitut', u'push', u'freedom'] [u'convict', u'prostitut', u'murder', u'lose', u'appeal'] [u'coron', u'recommend', u'prison', u'health', u'servic', u'upgrad'] [u'cotton', u'surplus', u'impact', u'price'] [u'council', u'allow', u'rat', u'payment', u'credit', u'card'] [u'council', u'consid', u'waterfront', u'traffic', u'option'] [u'council', u'push', u'water'] [u'council', u'reject', u'land', u'tender'] [u'council', u'seek', u'cotton', u'assur'] [u'council', u'fear', u'lose', u'rate', u'incom'] [u'council', u'driver', u'merger', u'hickey'] [u'crow', u'settl'] [u'cuba', u'blame', u'fatal', u'shipwreck'] [u'defenc', u'forc', u'consid', u'south', u'pacif', u'recruit'] [u'desper', u'souness', u'break', u'clash'] [u'detaine', u'claim', u'ankl', u'deliber', u'break', u'guard'] [u'disput', u'brew', u'tower', u'hill', u'plan'] [u'diva', u'crack'] [u'dont', u'focus', u'reform', u'rich', u'beazley'] [u'doubt', u'cast', u'payrol', u'plan'] [u'die', u'dolphin', u'forc', u'fisheri', u'closur'] [u'eel', u'lose', u'hindmarsh', u'raider', u'clash'] [u'elli', u'play', u'final', u'despit', u'injuri'] [u'england', u'charg', u'lunch'] [u'esper', u'group', u'urg', u'join', u'tuna', u'committe'] [u'mayor', u'say', u'road', u'litig', u'continu'] [u'factori', u'destroy'] [u'famili', u'peru', u'crash', u'victim', u'identifi'] [u'famili', u'seek', u'compo', u'student', u'death'] [u'farmer', u'unawar', u'drought'] [u'farmer', u'seek', u'telstra', u'legisl', u'detail'] [u'farmland', u'worri', u'local', u'resid'] [u'father', u'lose', u'hope', u'hickss', u'freedom'] [u'fiji', u'court', u'overturn', u'australian', u'sodomi', u'convict'] [u'fire', u'control', u'flood', u'reced', u'europ'] [u'flatley', u'futur', u'unclear', u'doctor', u'order', u'rest'] [u'flintoff', u'star', u'england', u'set', u'strong', u'total'] [u'forc', u'fee', u'convict', u'sniper', u'judg', u'rule'] [u'commission', u'action', u'investig'] [u'rugbi', u'intern', u'convict', u'ecstasi'] [u'friend', u'famili', u'tribut', u'famili', u'kill'] [u'froggi', u'founder', u'appear', u'court'] [u'gallop', u'attack', u'uranium', u'silenc'] [u'get', u'cooktown'] [u'govern', u'defend', u'work', u'welfar', u'program'] [u'govt', u'accus', u'ignor', u'matern', u'review'] [u'govt', u'seek', u'bank', u'tender', u'telstra', u'sale'] [u'govt', u'stand', u'welfar', u'work', u'program'] [u'grain', u'council', u'urg', u'altern', u'grain', u'market'] [u'grain', u'industri', u'probe', u'canola', u'contamin'] [u'green', u'group', u'air', u'paper', u'worri'] [u'grog', u'run', u'penalti', u'draconian'] [u'group', u'toxic', u'dump', u'cost', u'malle', u'million'] [u'health', u'group', u'label', u'wellington', u'hospit', u'dump'] [u'health', u'servic', u'ask', u'patient', u'overload'] [u'henri', u'play', u'lenton', u'rivalri'] [u'heritag', u'bodi', u'decid', u'drome', u'fate'] [u'hickey', u'confid', u'western', u'administr'] [u'holden', u'cut', u'flow', u'impact', u'research'] [u'holden', u'job'] [u'hook', u'ringlead', u'bouncer', u'fight', u'court', u'tell'] [u'hook', u'main', u'aggressor', u'court', u'tell'] [u'howard', u'defend', u'herald', u'legal', u'action'] [u'howard', u'hint', u'rate'] [u'hurrican', u'katrina', u'batter', u'florida', u'south', u'east', u'coast'] [u'hurrican', u'katrina', u'make', u'landfal', u'florida'] [u'iemma', u'fail', u'includ', u'kelso', u'region', u'tour'] [u'indigen', u'communiti', u'collect', u'cultur', u'data'] [u'indigen', u'health', u'improv', u'abbott'] [u'investig', u'begin', u'melbourn', u'chemic'] [u'irrig', u'tough', u'drought', u'continu'] [u'jetstar', u'face', u'renew', u'communic', u'breakdown'] [u'land', u'purchas', u'prompt', u'bulli', u'pass', u'rout'] [u'largest', u'coast', u'develop', u'knock'] [u'chang', u'affect', u'region', u'media', u'ownership'] [u'leon', u'robinson', u'case', u'return', u'court'] [u'light', u'plane', u'crash', u'tasmania'] [u'lion', u'look', u'send', u'white', u'winner'] [u'malaysia', u'aust', u'free', u'trade', u'deal'] [u'maleni', u'school', u'vow', u'human', u'right', u'fight'] [u'charg', u'fatal', u'motorbik', u'accid'] [u'mandatori', u'sentenc', u'troubl', u'outgo', u'magistr'] [u'face', u'court', u'teen', u'rape', u'charg'] [u'order', u'repay', u'welfar', u'money'] [u'man', u'secur', u'licenc', u'child'] [u'stand', u'trial', u'jewelleri', u'theft'] [u'market', u'finish', u'week', u'stronger', u'amid', u'resourc', u'ralli'] [u'mayor', u'attack', u'joyc', u'telstra', u'sale', u'stanc'] [u'mayor', u'hop', u'updat', u'premier', u'break', u'hill', u'need'] [u'meet', u'put', u'focus', u'age', u'care', u'plan'] [u'meninga', u'interest', u'queensland', u'origin'] [u'mexican', u'drench', u'caus', u'chao'] [u'creditor', u'face', u'struggl', u'recov', u'fund'] [u'minchin', u'back', u'sunric', u'monopoli'] [u'owner', u'run', u'away', u'blast', u'kill'] [u'miner', u'rais', u'fund', u'south', u'east', u'gold', u'project'] [u'minist', u'stand', u'asid', u'lie', u'alleg'] [u'park', u'open', u'snow', u'damag'] [u'angri', u'coast', u'transport'] [u'highlight', u'rail', u'freight', u'near', u'miss'] [u'plead', u'improv', u'ambul', u'servic'] [u'multi', u'million', u'dollar', u'rural', u'clinic', u'approv'] [u'musharraf', u'assassin', u'plotter', u'sentenc', u'death'] [u'nebo', u'council', u'announc', u'record', u'budget'] [u'newcastl', u'get', u'coal', u'loader'] [u'centr', u'help', u'save', u'valuabl', u'tree', u'speci'] [u'superintend', u'look', u'albani', u'crime', u'rate'] [u'tourism', u'manag', u'name', u'soon'] [u'join', u'fight', u'horticultur', u'code'] [u'nhulunbuy', u'top', u'groceri', u'cost', u'survey'] [u'nile', u'abort', u'highlight', u'foetus', u'pain', u'issu'] [u'guidelin', u'breach', u'sponsor', u'sign', u'minist', u'say'] [u'number', u'bulk', u'bill', u'increas', u'govt'] [u'opal', u'mine', u'go', u'tough', u'time'] [u'open', u'sewer', u'channel'] [u'pacif', u'palm', u'studi', u'hold', u'independ', u'studi'] [u'pari', u'build', u'kill'] [u'partnership', u'need', u'address', u'communiti', u'violenc'] [u'peru', u'plane', u'crash', u'victim', u'cheat', u'london', u'bomber'] [u'pesticid', u'handler', u'train', u'remind'] [u'petrol', u'sniffer', u'influx', u'claim', u'unsubstanti'] [u'pike', u'open', u'ambul', u'station', u'upgrad'] [u'plenti', u'play', u'rooster', u'tackl', u'bronco'] [u'contradict', u'costello', u'rate'] [u'float', u'cut', u'idea'] [u'polic', u'interview', u'fatal'] [u'polic', u'probe', u'knife', u'attack'] [u'previous', u'explor', u'fast', u'track', u'project'] [u'public', u'urg', u'crim'] [u'punter', u'offer', u'altern'] [u'agre', u'nation', u'trade', u'qualif'] [u'govt', u'ethanol', u'blend', u'fuel'] [u'rebel', u'report', u'clash', u'soldier', u'aceh'] [u'repeat', u'drink', u'driver', u'baffl', u'polic'] [u'resid', u'concern', u'land'] [u'resid', u'hospit', u'revamp'] [u'resid', u'support', u'water', u'scheme'] [u'return', u'star', u'excit', u'leagu'] [u'road', u'close', u'unseason', u'downpour'] [u'road', u'narrow', u'wind', u'danger'] [u'rumford', u'share', u'earli', u'lead', u'munich'] [u'santo', u'profit', u'boost', u'project', u'success'] [u'polic', u'consid', u'charg', u'mcgee', u'brother'] [u'scientist', u'compar', u'rock', u'lobster'] [u'scientist', u'float', u'bodi', u'theori'] [u'seafood', u'council', u'elect'] [u'search', u'sexual', u'assault'] [u'senior', u'judg', u'criticis', u'nation', u'plan'] [u'skier', u'jump', u'chanc', u'compet', u'hoppet'] [u'smorgon', u'share', u'surg', u'profit', u'report'] [u'snake', u'seiz', u'wildlif', u'crackdown'] [u'speedway', u'option', u'tout', u'devonport', u'hoon'] [u'springbok', u'coach', u'say', u'stand', u'jone'] [u'springborg', u'highlight', u'gold', u'coast', u'health', u'woe'] [u'struggl', u'abattoir', u'apologis', u'creditor'] [u'suncorp', u'profit', u'percent'] [u'surf', u'club', u'criticis', u'council', u'lack', u'support'] [u'sydney', u'qaeda', u'target', u'investig', u'say'] [u'tait', u'show', u'promis', u'england', u'squander', u'great', u'start'] [u'talk', u'continu', u'horsham', u'melbourn', u'flight'] [u'tariff', u'cut', u'blame', u'loss'] [u'telstra', u'sale', u'fuel', u'perth'] [u'tenterfield', u'hold', u'fluorid', u'referendum'] [u'thorp', u'return', u'commonwealth', u'game', u'trial'] [u'school', u'award'] [u'trescothick', u'predict', u'crucial', u'morn', u'session'] [u'trucki', u'busi', u'scrutini', u'reunion'] [u'truck', u'industri', u'control', u'judg', u'say'] [u'appear', u'court', u'fatal', u'stab'] [u'plead', u'guilti', u'manslaught', u'adelaid'] [u'uzbekistan', u'evict', u'militari'] [u'famili', u'head', u'peru', u'crash', u'site'] [u'water', u'problem', u'hamper', u'hous', u'battl'] [u'water', u'storag', u'reach', u'crisi'] [u'woman', u'kill', u'peru', u'crash'] [u'wild', u'fenc', u'collar', u'feder', u'environ', u'minist'] [u'woewodin', u'davi', u'celebr', u'mileston', u'pie', u'start'] [u'abbott', u'plan', u'condit', u'health', u'moni'] [u'activist', u'heckl', u'adelaid'] [u'adelaid', u'model', u'sack', u'lawyer', u'say', u'spokesman'] [u'seiz', u'fake', u'document', u'haul', u'drug'] [u'black', u'nation', u'aliv'] [u'say', u'bulk', u'bill', u'effort', u'fall', u'short'] [u'astonish', u'bekel', u'smash', u'world', u'record'] [u'aussi', u'forc', u'follow'] [u'author', u'mull', u'perman', u'measur', u'water'] [u'beslan', u'sieg', u'mastermind', u'name', u'chechen', u'deputi', u'leader'] [u'blame', u'bush', u'happen', u'chavez'] [u'bond', u'blow', u'india', u'away'] [u'camera', u'technolog', u'aid', u'devil', u'diseas', u'project'] [u'staff', u'lock', u'contract', u'disput'] [u'child', u'refuge', u'sue', u'detent', u'trauma'] [u'ciss', u'lead', u'liverpool', u'super'] [u'clijster', u'plan', u'quit'] [u'communiti', u'honour', u'indigen', u'educ', u'aunti', u'molli'] [u'crow', u'minor', u'premiership'] [u'davenport', u'reclaim', u'number', u'rank'] [u'diva', u'resum', u'spell', u'memsi', u'stake'] [u'weigh', u'rayner', u'charg'] [u'employ', u'make', u'crimin', u'record'] [u'england', u'ash', u'seat'] [u'england', u'women', u'brink', u'ash'] [u'england', u'turn', u'tabl', u'aussi'] [u'final', u'race', u'open', u'man'] [u'destroy', u'block', u'board', u'school'] [u'add', u'bronco', u'casualti', u'list'] [u'arrest', u'drug', u'bust'] [u'fuel', u'shortag', u'sydney', u'flight'] [u'gilchrist', u'australia', u'face', u'ultim', u'challeng'] [u'govt', u'prison', u'spi', u'spark', u'outrag'] [u'green', u'rais', u'worri', u'electr', u'shock', u'treatment'] [u'gregan', u'slap', u'retir', u'report'] [u'gunn', u'deni', u'green', u'campaign', u'caus', u'profit', u'drop'] [u'hagan', u'step', u'maroon', u'coach'] [u'health', u'spend', u'muct', u'increas', u'opposit', u'say'] [u'health', u'worker', u'mull', u'strike', u'disput'] [u'heed', u'judg', u'warn', u'sydney', u'threat', u'expert', u'say'] [u'drug', u'caus', u'heart', u'problem'] [u'success', u'pose', u'problem'] [u'hoggard', u'flintoff', u'england'] [u'homeopathi', u'ineffect', u'studi', u'find'] [u'hurrican', u'head', u'florida'] [u'hurrican', u'katrina', u'strengthen', u'gulf'] [u'indonesian', u'lawyer', u'say', u'lesli', u'demand'] [u'form', u'knight', u'humbl', u'shark'] [u'interview', u'ricki', u'stuart', u'wayn', u'bennett'] [u'iraq', u'await', u'sunni', u'respons', u'charter'] [u'iraqi', u'politician', u'time', u'complet'] [u'maxwel', u'trent', u'bridg', u'wrap'] [u'langer', u'lead', u'australian', u'resist'] [u'leader', u'pledg', u'action', u'pari', u'tragedi'] [u'arrest', u'fake', u'paper', u'seiz'] [u'charg', u'rail', u'bomb', u'hoax'] [u'hold', u'thailand', u'suspicion', u'london'] [u'mistak', u'see', u'protect', u'forest', u'log'] [u'mask', u'teenag', u'arrest', u'anti', u'howard', u'protest'] [u'mcginti', u'admit', u'mistak', u'corrupt', u'fighter'] [u'media', u'law', u'risk', u'irrelev', u'accc', u'say'] [u'urg', u'declar', u'telstra', u'share'] [u'mufti', u'snub', u'islam', u'summit'] [u'price', u'slide', u'hurrican', u'fear', u'eas'] [u'opal', u'wrap', u'world', u'champ', u'spot'] [u'opposit', u'criticis', u'primari', u'industri'] [u'parent', u'charg', u'babi', u'murder'] [u'parrot', u'habitat', u'enlarg', u'log', u'mistak'] [u'parti', u'elect', u'campaign'] [u'peruvian', u'woman', u'believ', u'kill', u'crash', u'aliv'] [u'petrol', u'sniff', u'claim', u'katherin', u'exagger'] [u'confront', u'angri', u'protestor', u'adelaid'] [u'polic', u'arrest', u'trespass', u'look', u'jennif'] [u'polic', u'bodi', u'stunt', u'pilot'] [u'polic', u'free', u'hold', u'terror', u'law'] [u'polic', u'probe', u'nightclub', u'shoot'] [u'polic', u'recov', u'bodi', u'pilot'] [u'port', u'final', u'docker', u'expens'] [u'port', u'final', u'fremantl', u'expens'] [u'qanta', u'say', u'airport', u'job'] [u'channel', u'countri', u'aliv', u'flower'] [u'nation', u'attack', u'rural', u'lobbi', u'telstra'] [u'region', u'hospit', u'staff', u'disput', u'intensifi'] [u'rise', u'fuel', u'price', u'busi', u'hard'] [u'rossi', u'set', u'pace', u'czech', u'practic'] [u'royal', u'feather', u'ruffl', u'queen', u'pigeon', u'escap'] [u'rumford', u'continu', u'charg', u'munich'] [u'russian', u'satellit', u'track', u'despit', u'problem'] [u'saint', u'inflict', u'record', u'loss', u'lion'] [u'schumach', u'welcom', u'raikkonen', u'ferrari'] [u'search', u'sydney', u'plane', u'crash', u'pilot'] [u'sept', u'link', u'muslim', u'convers'] [u'sharon', u'osbourn', u'admit', u'cut', u'iron', u'maiden', u'sound'] [u'shiit', u'final', u'propos', u'iraq', u'constitut'] [u'softdrink', u'maker', u'warn', u'explod', u'can'] [u'spencer', u'strike', u'see', u'marin', u'home'] [u'spend', u'fear', u'prompt', u'stock', u'fall'] [u'sperm', u'donor', u'realiti', u'outrag', u'politician'] [u'spread', u'relief', u'labor', u'urg'] [u'storm', u'tiger'] [u'swan', u'swamp', u'hawk', u'finish'] [u'sydney', u'terror', u'target', u'expert', u'say'] [u'approv', u'explor', u'licenc'] [u'cut', u'high', u'earner', u'need', u'emerson'] [u'water', u'suppli', u'safe', u'amoeba', u'flush'] [u'offic', u'concern', u'iraq', u'percept'] [u'turkmenistan', u'shoot', u'star'] [u'year', u'guilti', u'rap', u'year'] [u'arrest', u'worm'] [u'union', u'rue', u'tafe', u'backdown'] [u'cycl', u'back', u'lanc', u'dope', u'disput'] [u'releas', u'iraqi', u'prison'] [u'soldier', u'kill', u'wound', u'afghan', u'blast'] [u'extra', u'aussi', u'sugar'] [u'vintag', u'plane', u'crash', u'sydney'] [u'virgin', u'blue', u'deni', u'plan', u'shift', u'job', u'offshor'] [u'indigen', u'mortal', u'rat', u'drop'] [u'want', u'palestinian', u'milit', u'resurfac', u'video'] [u'declar', u'crisi', u'africa'] [u'wool', u'price', u'hold', u'kilo'] [u'wound', u'philippin', u'ferri', u'bomb', u'attack'] [u'account', u'struggl', u'creativ', u'studi'] [u'aceh', u'rebel', u'accus', u'violat', u'peac', u'pact'] [u'actor', u'robert', u'downey', u'remarri'] [u'black', u'collin', u'ban', u'nation', u'decid'] [u'black', u'wari', u'wound', u'wallabi'] [u'deni', u'telstra', u'stanc', u'cost', u'coffer'] [u'ambul', u'staff', u'govt', u'interven'] [u'armi', u'need', u'mull', u'recruit'] [u'aussi', u'joker', u'name', u'edinburgh', u'fring'] [u'aussi', u'battl', u'save', u'fourth', u'test'] [u'aussi', u'lack', u'hunger', u'say', u'waugh'] [u'aust', u'plane', u'crash', u'victim', u'buri', u'cyprus'] [u'eye', u'music', u'download', u'busi'] [u'biker', u'upset', u'plan', u'safeti', u'levi'] [u'blair', u'warn', u'muslim', u'extrem', u'year', u'report'] [u'blast', u'derail', u'train', u'russia'] [u'british', u'armi', u'make', u'pride', u'march', u'join'] [u'brosqu', u'baird', u'roar', u'victori'] [u'bush', u'warn', u'american', u'iraq', u'sacrific'] [u'headscarv', u'criticis', u'muslim'] [u'trap', u'monster', u'pothol'] [u'cat', u'thriller', u'gain', u'home', u'final'] [u'chelsea', u'cruis', u'victori', u'spur'] [u'clubber', u'know', u'shoot', u'suspect', u'polic'] [u'collin', u'cite', u'punch'] [u'consum', u'warn', u'fish', u'restrict'] [u'cowboy', u'exact', u'reveng', u'rabbitoh'] [u'davenport', u'claim', u'haven', u'titl'] [u'demon', u'chase', u'final', u'berth'] [u'destroy', u'take', u'guitar', u'crown'] [u'downer', u'back', u'bali', u'drug', u'crackdown'] [u'syndrom', u'group', u'seek', u'nation', u'mouthpiec'] [u'dream', u'fiorentina', u'debut', u'toni'] [u'eel', u'surg', u'spot'] [u'england', u'need', u'victori'] [u'england', u'women', u'ash'] [u'england', u'women', u'ash'] [u'fire', u'flare', u'portug'] [u'foreign', u'student', u'hospit', u'road', u'accid'] [u'graham', u'nab', u'start', u'spot'] [u'fuel', u'shortag', u'see', u'flight', u'cancel'] [u'game', u'victori', u'hold', u'sydney', u'draw'] [u'gibernau', u'steal', u'czech', u'pole', u'hayden'] [u'giteau', u'succumb', u'injuri'] [u'govt', u'consid', u'militari', u'recruit'] [u'hoggard', u'put', u'england', u'charg'] [u'holden', u'staff', u'face', u'stress', u'time', u'union', u'say'] [u'hull', u'snatch', u'dramat', u'challeng', u'glori'] [u'hurrican', u'katrina', u'aim', u'orlean'] [u'sorri', u'lose', u'cool', u'say', u'pont'] [u'indian', u'make', u'histor', u'trip', u'kabul'] [u'indian', u'rebel', u'make', u'porn', u'film', u'rais', u'money'] [u'india', u'inspir', u'australian', u'fightback'] [u'injuri', u'threaten', u'scupper', u'holm', u'final'] [u'interview', u'duncan', u'fletcher'] [u'interview', u'toni', u'kemp'] [u'iran', u'promis', u'breakthrough', u'nuclear', u'talk'] [u'iraq', u'constitut', u'parliamentari', u'vote'] [u'iraq', u'parliament', u'consid', u'charter', u'sunni', u'oppos'] [u'iraq', u'sunni', u'offer', u'draft', u'constitut'] [u'maxwel', u'trent', u'bridg'] [u'jone', u'get', u'boot', u'ankl', u'injuri'] [u'jone', u'stand', u'embattl', u'gregan'] [u'jone', u'suffer', u'ankl', u'injuri'] [u'kangaroo', u'book', u'date', u'power'] [u'labor', u'seek', u'polici', u'budget', u'review'] [u'labor', u'select', u'candid', u'carr', u'seat'] [u'legaci', u'appeal'] [u'loeb', u'cruis', u'victori', u'germani'] [u'lose', u'catch', u'train', u'home'] [u'macklin', u'stand', u'tough', u'decis'] [u'releas', u'uninjur', u'hostag', u'ordeal'] [u'matt', u'orford', u'robbi', u'kearn'] [u'mayor', u'say', u'pretti', u'leg', u'requir', u'miniskirt'] [u'mcgee', u'spain', u'tour', u'open'] [u'melbourn', u'honour', u'olympian', u'gaze'] [u'melbourn', u'overcom', u'don', u'final'] [u'michael', u'hagan', u'stuart', u'raper', u'interview'] [u'model', u'await', u'decis', u'bali', u'drug', u'charg'] [u'model', u'meet', u'lawyer', u'await', u'charg'] [u'urg', u'school', u'headscarf'] [u'nation', u'parol', u'deal', u'seek', u'offend'] [u'needl', u'exchang', u'curb', u'hiv', u'spread', u'australia'] [u'nelson', u'reject', u'school', u'headscarf'] [u'nelson', u'clear', u'comment', u'labor', u'say'] [u'orlean', u'resid', u'order', u'evacu'] [u'korea', u'parti', u'talk', u'postpon', u'thai', u'minist'] [u'camp', u'reject', u'keep', u'barca'] [u'trial', u'electron', u'track', u'offend'] [u'honour', u'indigen', u'musician'] [u'hop', u'clear', u'jabiru', u'water', u'suppli', u'tomorrow'] [u'deleg', u'return', u'home', u'fail', u'tongan'] [u'offici', u'probe', u'sydney', u'stunt', u'plane', u'crash'] [u'juvenil', u'detaine', u'indigen'] [u'opal', u'sweep', u'tall', u'fern'] [u'opposit', u'conced', u'promis'] [u'palestinian', u'suicid', u'bomber', u'strike', u'israel'] [u'panther', u'bulldog', u'season'] [u'parent', u'lock', u'hospit', u'famili', u'support', u'room'] [u'philippin', u'ferri', u'blast', u'injur'] [u'pilot', u'injur', u'chopper', u'crash'] [u'polic', u'probe', u'boy', u'fall', u'septic', u'tank'] [u'polic', u'probe', u'fatal', u'stab', u'sydney'] [u'prawn', u'industri', u'feel', u'pinch', u'import'] [u'stop', u'accept', u'parol', u'paedophil'] [u'resid', u'fight', u'detent', u'centr', u'propos'] [u'rumford', u'stay', u'touch', u'munich'] [u'liber', u'elect', u'presid'] [u'saudi', u'dissid', u'close', u'london', u'jihadi', u'internet', u'site'] [u'southern', u'bunker', u'hurrican', u'return'] [u'survivor', u'pari', u'hold', u'silent', u'march'] [u'sydney', u'airport', u'fuel', u'restrict', u'lift'] [u'sydney', u'glamour', u'boy', u'face', u'field', u'test'] [u'sydney', u'glamour', u'boy', u'face', u'field', u'test'] [u'sydney', u'tunnel', u'open', u'amid', u'protest'] [u'tasmanian', u'action', u'dismal'] [u'debat', u'step'] [u'teen', u'charg', u'doubl', u'stab'] [u'teen', u'charg', u'school'] [u'toilet', u'train', u'tread', u'tertiari', u'pathway'] [u'toll', u'confid', u'accc', u'allow', u'patrick', u'takeov'] [u'tourist', u'bali', u'submit', u'drug', u'test'] [u'trucki', u'parad', u'thrill', u'alic', u'spring'] [u'turnbul', u'deni', u'split', u'costello'] [u'trial', u'electron', u'track', u'paedophil'] [u'woman', u'kill', u'injur', u'remot', u'accid'] [u'writer', u'amo', u'pick', u'german', u'prize', u'life', u'work'] [u'lose', u'screen', u'film', u'child', u'killer'] [u'acci', u'urg', u'nuclear', u'power', u'rethink'] [u'accus', u'model', u'don', u'burkah', u'question'] [u'colleg', u'provid', u'know', u'tomorrow'] [u'ail', u'offend', u'give', u'minimum', u'sentenc'] [u'alcohol', u'admit', u'murder', u'parent'] [u'alderman', u'seek', u'continu', u'push', u'sniff', u'fuel'] [u'leagu', u'hail', u'instant', u'success'] [u'angler', u'line', u'longreach'] [u'anti', u'protest', u'clear', u'opera', u'hous', u'debt'] [u'atsb', u'rule', u'forc', u'land', u'probe'] [u'australia', u'close', u'lose', u'ash'] [u'australia', u'head', u'unknown'] [u'author', u'investig', u'brother', u'birth'] [u'award', u'recognis', u'brave', u'bank', u'manag'] [u'award', u'recognis', u'polic', u'braveri'] [u'balgo', u'help', u'kalumburu', u'store', u'reopen'] [u'bear', u'beat', u'north', u'semi', u'spot'] [u'beatti', u'appeal', u'patienc', u'health', u'worker'] [u'beatti', u'hop', u'share', u'shower', u'plan', u'strike', u'chord'] [u'beatti', u'want', u'quick', u'action', u'nation', u'health'] [u'bendigo', u'bank', u'play', u'secur', u'concern'] [u'bishop', u'defiant', u'headscarf'] [u'blake', u'beat', u'lopez', u'haven', u'titl'] [u'blizzard', u'condit', u'forecast', u'alpin', u'region'] [u'bonvill', u'deviat', u'high', u'meet', u'agenda'] [u'brogden', u'forc', u'quit', u'racial', u'slur'] [u'break', u'hill', u'public', u'urg', u'shop', u'local'] [u'bronco', u'hobbl', u'eel', u'clash'] [u'brosqu', u'replac', u'kewel', u'socceroo', u'squad'] [u'build', u'collaps', u'rais', u'mumbai', u'flood', u'toll'] [u'bulk', u'bill', u'rate', u'rise', u'south', u'west'] [u'cairn', u'forum', u'spotlight', u'indigen', u'issu'] [u'campaign', u'stop', u'pigeon', u'woe'] [u'canberra', u'hospit', u'accommod', u'open'] [u'canberra', u'resid', u'award', u'braveri'] [u'cancer', u'treatment', u'target', u'individu', u'cell'] [u'carr', u'wife', u'shrug', u'brogden', u'slur'] [u'cattl', u'price', u'forc', u'cutback'] [u'centuri', u'plan', u'shed', u'program'] [u'cessnock', u'hous', u'rescu', u'prompt', u'braveri', u'award'] [u'chamber', u'back', u'birney', u'india', u'trade', u'mission'] [u'child', u'refuge', u'sue', u'detent', u'trauma'] [u'church', u'defend', u'right', u'public', u'comment'] [u'elect', u'probe', u'concern', u'mayor'] [u'communiti', u'feel', u'effect', u'ambul', u'crisi'] [u'communiti', u'launch', u'prospectus'] [u'corrupt', u'policeman', u'face', u'jail'] [u'costello', u'refus', u'enter', u'debat', u'spark'] [u'councillor', u'urg', u'boycott', u'meet'] [u'council', u'form', u'syring', u'plan'] [u'council', u'invest', u'broadband'] [u'council', u'stand', u'supermarket', u'site', u'reject'] [u'council', u'tabulam', u'jail', u'applic'] [u'council', u'vote', u'carlton', u'park', u'meter'] [u'court', u'hear', u'refuge', u'compens', u'case'] [u'cowboy', u'club', u'win', u'record'] [u'cowra', u'look', u'attract', u'servic'] [u'crash', u'spark', u'warn', u'farmer', u'mend', u'fenc'] [u'creditor', u'farmer', u'frustrat', u'beef', u'processor'] [u'crime', u'figur', u'rise', u'attribut', u'polic', u'oper'] [u'darwin', u'breast', u'cancer', u'treatment', u'take', u'leap', u'forward'] [u'darwin', u'festiv', u'attend', u'encourag'] [u'desert', u'spring', u'prompt', u'mar', u'studi', u'rethink'] [u'dishonour', u'behaviour', u'forc', u'brogden', u'quit'] [u'dragon', u'pair', u'fin', u'hotel', u'incid'] [u'drink', u'driver', u'worri', u'bendigo', u'polic'] [u'driver', u'fatigu', u'contribut', u'monaro', u'road', u'crash'] [u'driver', u'leav', u'kindergarten', u'children', u'lock'] [u'driver', u'urg', u'rethink', u'road', u'safeti'] [u'eat', u'wont', u'help', u'live', u'longer', u'research'] [u'eleph', u'landmin', u'victim', u'fit', u'prosthet'] [u'england', u'claim', u'fourth', u'test'] [u'england', u'coach', u'vow', u'attack', u'oval'] [u'essex', u'titl'] [u'extraordinari', u'australian', u'honour', u'braveri'] [u'fairfax', u'see', u'earn', u'growth', u'despit', u'profit', u'drop'] [u'farm', u'accid', u'claim', u'girl', u'life'] [u'farmer', u'face', u'charg', u'mass', u'sheep', u'death'] [u'farmer', u'rejoic', u'south', u'east', u'rain'] [u'farmer', u'unclear', u'ongo', u'drought'] [u'farmer', u'warn', u'whitefli', u'threat'] [u'farm', u'fuel', u'heist', u'go', u'flame'] [u'feder', u'politician', u'urg', u'declar', u'telstra'] [u'command', u'lead', u'terror', u'fight'] [u'freight', u'custom', u'urg', u'realist'] [u'fund', u'seek', u'bridg', u'tourism', u'plan'] [u'fund', u'allow', u'sacr', u'sit', u'protect'] [u'futur', u'look', u'brighter', u'threaten', u'lili'] [u'govt', u'accus', u'short', u'chang', u'region', u'public'] [u'govt', u'back', u'polic', u'effort', u'drink', u'drive', u'rate'] [u'govt', u'deliv', u'club', u'fund'] [u'govt', u'talk', u'remov', u'tent', u'embassi', u'camper'] [u'govt', u'commit', u'south', u'west', u'rescu'] [u'govt', u'urg', u'appoint', u'local', u'health', u'planner'] [u'great', u'southern', u'warn', u'high', u'wind'] [u'green', u'sweep', u'video', u'award'] [u'green', u'urg', u'govt', u'scrap', u'bill', u'immigr'] [u'hall', u'fame', u'pleas', u'truck', u'parad', u'support'] [u'hall', u'lead', u'swan', u'final', u'charg'] [u'hancock', u'brogden', u'quit', u'leadership'] [u'health', u'dept', u'track', u'coli', u'sourc'] [u'high', u'cattl', u'price', u'blame', u'shift'] [u'high', u'court', u'hear', u'advertis', u'challeng'] [u'victim', u'father', u'urg', u'driver', u'come'] [u'victim', u'famili', u'grate', u'public', u'support'] [u'holden', u'worker', u'redund', u'packag', u'detail'] [u'hook', u'manslaught', u'accus', u'role', u'model'] [u'howard', u'costello', u'page', u'cut'] [u'hundr', u'tribut', u'loxton', u'crash', u'famili'] [u'hunt', u'rapist', u'escape'] [u'iemma', u'urg', u'reject', u'plan'] [u'india', u'better', u'ganguli', u'admit'] [u'india', u'pakistan', u'hold', u'anti', u'terror', u'cooper', u'talk'] [u'indigen', u'communiti', u'mainten', u'contract'] [u'indonesia', u'presid', u'warn', u'terror', u'attack'] [u'injur', u'cyclist', u'return', u'hospit'] [u'injur', u'saint', u'return', u'crow', u'clash'] [u'investig', u'continu', u'fuel', u'suppli'] [u'factori', u'sign', u'deal', u'odour', u'nois', u'limit'] [u'iranian', u'judg', u'give', u'green', u'light', u'carri', u'gun'] [u'irrig', u'fin', u'steal', u'water'] [u'israel', u'blame', u'hama', u'suicid', u'attack'] [u'israel', u'blame', u'hama', u'suicid', u'bomb'] [u'japanes', u'interest', u'solomon', u'nickel'] [u'jondaryan', u'mayor', u'await', u'grey', u'water', u'detail'] [u'jone', u'doubt', u'ash', u'decid'] [u'juve', u'fail', u'shine', u'adriano', u'inspir', u'inter'] [u'kaino', u'add', u'black', u'squad'] [u'katrina', u'sweep', u'orlean'] [u'launceston', u'farewel', u'aunti', u'molli'] [u'doesnt', u'condon', u'rape', u'promis', u'wive'] [u'liber', u'cut', u'costello'] [u'lithgow', u'council', u'order', u'remov', u'sludg', u'face'] [u'loos', u'nuclear', u'materi', u'dirti', u'bomb'] [u'accus', u'ram', u'children', u'insid'] [u'die', u'blue', u'mountain', u'crash'] [u'face', u'court', u'alic', u'spring', u'pursuit'] [u'mcdonald', u'urg', u'support', u'farmer'] [u'medic', u'board', u'decid', u'misconduct', u'claim'] [u'charg', u'nightclub', u'shoot'] [u'north', u'coast', u'bulk', u'bill', u'rat', u'rise'] [u'million', u'dollar', u'program', u'tackl', u'childhood', u'obes'] [u'moor', u'add', u'wallabi', u'injuri', u'list'] [u'more', u'attack', u'prompt', u'polic', u'warn'] [u'money', u'need', u'combat', u'africa', u'hunger', u'annan'] [u'say', u'brogden', u'comment', u'inappropri'] [u'seek', u'gippsland', u'wind', u'farm', u'moratorium'] [u'urg', u'commonwealth', u'control', u'health'] [u'nation', u'cautious', u'cut'] [u'negoti', u'continu', u'barrack'] [u'neitz', u'confid', u'line', u'cat'] [u'commission', u'appoint', u'corrupt', u'bodi'] [u'orlean', u'empti', u'hurrican', u'near'] [u'orlean', u'order', u'evacu', u'hurrican'] [u'report', u'card', u'school'] [u'rescu', u'chopper', u'prove', u'worth'] [u'korea', u'nuclear', u'talk', u'date', u'import'] [u'reason', u'nightclub', u'shoot'] [u'north', u'burleigh', u'secur', u'rescu', u'boat', u'comp'] [u'premier', u'unmov', u'brogden', u'downfal'] [u'opposit', u'gain', u'clark'] [u'offici', u'deni', u'whip', u'swaziland', u'princess'] [u'develop', u'victoria', u'self'] [u'sale', u'help', u'origin', u'profit', u'jump'] [u'opera', u'hous', u'secur', u'confer'] [u'palm', u'fear', u'land', u'sell'] [u'parol', u'staff', u'high', u'stress', u'inquiri', u'hear'] [u'partnership', u'evalu', u'health', u'promot'] [u'petrol', u'sniffer', u'death', u'scrutini'] [u'plan', u'wheatbelt', u'town', u'criticis'] [u'accus', u'deceiv', u'worker', u'wag', u'increas'] [u'deni', u'wag', u'stagnant'] [u'polic', u'hunt', u'tractor', u'thiev'] [u'polic', u'probe', u'footscray', u'shoot'] [u'polic', u'probe', u'gold', u'coast', u'arm', u'robberi'] [u'polic', u'probe', u'griffith', u'stab'] [u'polic', u'promis', u'sunshin', u'coast', u'hoon', u'crackdown'] [u'polic', u'identifi', u'launceston', u'park', u'bodi'] [u'polic', u'road', u'crash', u'victim'] [u'pont', u'katich', u'fin', u'test', u'outburst'] [u'pope', u'meet', u'head', u'rebel', u'cathol', u'traditionalist'] [u'portland', u'honour', u'braveri', u'award'] [u'port', u'lincoln', u'rat', u'state', u'highest'] [u'poultri', u'farmer', u'diseas', u'vaccin', u'remind'] [u'power', u'cabl', u'failur'] [u'power', u'boost', u'north', u'west'] [u'prison', u'director', u'stand', u'confidenti'] [u'push', u'femal', u'wool', u'classer'] [u'push', u'plastic'] [u'racial', u'slur', u'brogden', u'step', u'asid'] [u'real', u'surviv', u'cadiz', u'scare'] [u'region', u'better', u'place', u'tackl', u'danger', u'period'] [u'resid', u'flee', u'hurrican', u'katrina'] [u'retir', u'villag', u'move', u'closer', u'realiti'] [u'ricciuto', u'miss', u'kilda', u'clash'] [u'ricciuto', u'wait', u'news', u'charg'] [u'tinto', u'subsidiari', u'seal', u'korean', u'contract'] [u'rise', u'price', u'shake'] [u'road', u'safeti', u'plan', u'target', u'driver', u'attent'] [u'safin', u'hewitt'] [u'govt', u'criticis', u'babi', u'part', u'payout', u'delay'] [u'saint', u'player', u'get', u'life'] [u'savag', u'back', u'headscarf'] [u'school', u'headscarf', u'impract', u'howard'] [u'send', u'offend', u'home', u'state', u'nation'] [u'shire', u'need', u'fund', u'dead', u'cross'] [u'slaughter', u'method', u'cost', u'abbatoir', u'malaysian'] [u'starv', u'roo', u'free', u'brisban', u'sewag'] [u'state', u'rule', u'school', u'headscarf'] [u'studi', u'highlight', u'need', u'small', u'busi', u'plan'] [u'sunni', u'group', u'urg', u'chang', u'iraq', u'charter'] [u'sunric', u'turnov', u'fall'] [u'teacher', u'credit', u'strike', u'secur', u'deal'] [u'tough', u'competit', u'cut', u'austereo', u'profit'] [u'turf', u'club', u'incid', u'focus', u'attent', u'ambul'] [u'tweed', u'council', u'seek', u'sponsor', u'kenya', u'water', u'plan'] [u'fraud', u'prompt', u'regul', u'organ'] [u'union', u'member', u'face', u'court', u'alleg', u'assault'] [u'union', u'differ', u'health', u'deal', u'protest'] [u'union', u'seek', u'mine', u'equip', u'chang'] [u'union', u'want', u'green', u'answer'] [u'surg', u'record', u'hurrican', u'fear'] [u'home', u'fiji', u'crime', u'ordeal'] [u'polic', u'investig', u'surveil', u'tap', u'leak'] [u'warburton', u'polic', u'spotlight', u'domest', u'violenc'] [u'webb', u'gordon', u'escap', u'suspens'] [u'weekend', u'drink', u'driver', u'worri', u'polic'] [u'western', u'australian', u'award', u'braveri'] [u'woman', u'die', u'church', u'park', u'mishap'] [u'woman', u'die', u'hinterland', u'crash'] [u'work', u'begin', u'year', u'bigger', u'snowi', u'council'] [u'world', u'fall', u'calam', u'jam'] [u'writer', u'poet', u'margaret', u'scott', u'die'] [u'youth', u'arrest', u'chase'] [u'abbott', u'reluct', u'pressur', u'health', u'insur'] [u'afghanistan', u'opium', u'product', u'fall'] [u'announc', u'medal', u'line'] [u'african', u'airlin', u'danger'] [u'agreement', u'pave', u'desert', u'drill'] [u'agreement', u'reach', u'help', u'abattoir', u'worker'] [u'alic', u'spring', u'council', u'lobbi', u'govt'] [u'black', u'chang', u'wallabi', u'clash'] [u'qaeda', u'connect', u'prompt', u'compani', u'tighten'] [u'adelaid', u'base', u'supplier', u'unwit'] [u'angler', u'welcom', u'fish', u'law'] [u'anti', u'globalis', u'activist', u'march', u'forb'] [u'aqi', u'invas', u'gypsi', u'moth', u'coal', u'ship'] [u'beauti', u'actress', u'tee', u'ugli', u'golf'] [u'betfair', u'talk', u'econom', u'benefit'] [u'birdsvill', u'tourist', u'encourag', u'rock'] [u'brewer', u'wine', u'group', u'foster', u'report'] [u'brown', u'know', u'knight', u'walkov'] [u'build', u'industri', u'code', u'chang', u'extrem', u'cfmeu'] [u'bumper', u'season', u'prompt', u'tourist', u'develop', u'think'] [u'crash', u'kill', u'china'] [u'busi', u'contempl', u'flee', u'close', u'airport'] [u'calder', u'highway', u'upgrad', u'top', u'racv', u'prioriti'] [u'canberra', u'polic', u'seek', u'extra', u'offic'] [u'cancer', u'patient', u'jail', u'drug', u'possess'] [u'cancer', u'patient', u'bus', u'hospit', u'servic', u'end'] [u'car', u'unafford', u'racv'] [u'child', u'obes', u'studi', u'result', u'shock', u'research'] [u'codan', u'sale', u'terrorist', u'lesson', u'downer'] [u'collina', u'quit', u'sponsor'] [u'committe', u'look', u'increas', u'number', u'indigen'] [u'communiti', u'join', u'scientist', u'record', u'coastal'] [u'costello', u'back', u'board', u'cut'] [u'costello', u'fuel', u'leadership', u'specul'] [u'costello', u'plan', u'critic', u'turnbul'] [u'costello', u'play', u'alleg', u'rift'] [u'councillor', u'frighten', u'health', u'loss'] [u'councillor', u'tell', u'contractor', u'work', u'harder'] [u'council', u'revisit', u'zone', u'hous', u'develop'] [u'council', u'trial', u'youth', u'transport', u'scheme'] [u'coupl', u'final', u'claim'] [u'creditor', u'approv', u'resurrect', u'son', u'gwalia'] [u'crow', u'troop', u'cover', u'ricciuto', u'craig'] [u'custom', u'offic', u'seiz', u'tobacco', u'worth', u'million'] [u'defenc', u'slam', u'aust', u'embassi', u'bomb', u'suspect', u'trial'] [u'develop', u'urg', u'continu', u'estat', u'propos'] [u'disgrac', u'psychiatrist', u'say', u'patient', u'danger'] [u'dog', u'woof', u'brazilian', u'puppi', u'love', u'motel'] [u'domest', u'violenc', u'expand', u'murder', u'stat'] [u'greet', u'wind', u'farm'] [u'secur', u'chief', u'arrest', u'hariri', u'murder'] [u'fear', u'rife', u'jail', u'popul'] [u'fear', u'polio', u'spread', u'virus', u'emerg'] [u'feder', u'treasur', u'peter', u'costello', u'deni'] [u'flood', u'trap', u'hundr', u'southern'] [u'food', u'campaign', u'benefit', u'govt'] [u'foster', u'profit', u'bubbl'] [u'fraser', u'name', u'sexiest', u'island'] [u'fraud', u'mar', u'improv', u'crime', u'statist'] [u'fuel', u'crisi', u'hit', u'hard'] [u'governor', u'open'] [u'govt', u'consid', u'wider', u'anti', u'terror', u'law'] [u'govt', u'hide', u'extent', u'staff', u'cut'] [u'hall', u'honour', u'lead', u'swan'] [u'health', u'servic', u'target', u'child', u'obes'] [u'high', u'court', u'reserv', u'decis'] [u'hoggard', u'secret', u'boycott', u'live', u'room'] [u'home', u'lose', u'power', u'storm', u'sweep'] [u'hook', u'wit', u'accus', u'self', u'promot'] [u'hope', u'lobbi', u'ahead', u'fluid', u'liber', u'vote'] [u'hospit', u'campaign', u'reveal', u'wish', u'list'] [u'host', u'defend', u'tight', u'secur', u'busi', u'confer'] [u'hurrican', u'death', u'toll', u'expect', u'rise'] [u'hurrican', u'katrina', u'leav', u'trail', u'destruct'] [u'hurrican', u'katrina', u'forc', u'blunt'] [u'hurrican', u'recoveri', u'long', u'difficult'] [u'indigen', u'group', u'discuss', u'fill', u'atsic'] [u'indonesia', u'announc', u'amnesti', u'aceh', u'rebel'] [u'indonesia', u'presid', u'urg', u'calm', u'fall', u'rupiah'] [u'indonesia', u'struggl', u'stabilis', u'rupiah'] [u'inmat', u'pregnanc', u'prompt', u'prison', u'secur', u'concern'] [u'ion', u'outlook', u'posit', u'despit', u'loss'] [u'irwin', u'plan', u'helicopt', u'flight', u'welcom'] [u'japanes', u'elect', u'campaign', u'begin'] [u'jone', u'doubt', u'ash', u'decid'] [u'labor', u'welcom', u'brogden', u'resign'] [u'land', u'valuat', u'pressur'] [u'launceston', u'council', u'tell', u'consid', u'mayor'] [u'leak', u'poison', u'remov', u'shed'] [u'love', u'contest', u'freddi'] [u'light', u'captur', u'pave', u'power'] [u'littl', u'overnight', u'rain'] [u'local', u'bulk', u'bill', u'rat', u'increas'] [u'local', u'increas', u'assault', u'vandal'] [u'lockyer', u'improv', u'eel', u'rest', u'easi'] [u'longerenong', u'welcom', u'provid', u'announc'] [u'clear', u'plane', u'secur', u'breach', u'bomb'] [u'imprison', u'attack', u'girlfriend'] [u'jail', u'bash', u'friend', u'death'] [u'lose', u'appeal', u'singapor', u'extradit'] [u'rescu', u'fall', u'lighthous'] [u'market', u'recov', u'price', u'drop'] [u'mayor', u'confid', u'pipelin', u'avert', u'water', u'crisi'] [u'mayor', u'finalist', u'busi', u'award'] [u'mcewen', u'reject', u'sell', u'claim'] [u'mcgee', u'keep', u'spanish', u'lead', u'petacchi', u'win', u'stage'] [u'mcgradi', u'want', u'telstra', u'sale', u'fund', u'zonal'] [u'medic', u'certif', u'contradict', u'immigr'] [u'merger', u'acquisit', u'push', u'tabcorp', u'profit'] [u'mickel', u'start', u'palm', u'reform', u'process'] [u'mine', u'industri', u'welcom', u'father', u'workshop'] [u'minist', u'hop', u'mediat', u'solv', u'hospit', u'disput'] [u'minist', u'predict', u'nation', u'coup', u'follow', u'liber'] [u'minist', u'urg', u'pacif', u'highway', u'action'] [u'molik', u'fall', u'nadal', u'sharapova', u'advanc'] [u'molik', u'fall', u'nadal', u'sharapova', u'progress'] [u'want', u'probe', u'tullamarin', u'secur'] [u'multicultur', u'minist', u'reject', u'scarf'] [u'nadal', u'storm', u'second', u'round', u'kuznetsova', u'fall'] [u'neitz', u'recov', u'faster', u'expect'] [u'nepal', u'militari', u'disappear', u'peopl'] [u'netanyahu', u'launch', u'replac', u'sharon'] [u'pari', u'blaze', u'kill', u'seven', u'african'] [u'remot', u'start', u'aborigin', u'recruit'] [u'test', u'spot', u'type', u'diseas', u'blood'] [u'korea', u'delay', u'nuclear', u'talk'] [u'telstra', u'worker'] [u'nrma', u'welcom', u'road', u'safeti', u'measur'] [u'liber', u'say', u'chikarovski'] [u'liber', u'vote', u'brogden', u'replac'] [u'flow', u'gippsland', u'field', u'week', u'away'] [u'ombudsman', u'hear', u'dali', u'river', u'complaint'] [u'oneil', u'award', u'franc', u'highest', u'honour'] [u'opec', u'chief', u'concern', u'price', u'rise'] [u'opposit', u'call', u'weston', u'creek', u'librari'] [u'owen', u'agre', u'join', u'newcastl'] [u'owen', u'hold', u'talk', u'newcastl', u'liverpool'] [u'paedophil', u'dunn', u'lose', u'inquiri'] [u'parent', u'defend', u'driver', u'preschool'] [u'pathan', u'agarkar', u'lead', u'rout', u'zimbabw'] [u'penfold', u'want', u'visa', u'categori', u'attract', u'migrant'] [u'petrol', u'hike', u'tip', u'hurrican'] [u'polic', u'identifi', u'loxton', u'remain'] [u'polic', u'outnumb', u'protestor', u'sydney', u'street'] [u'polic', u'seek', u'help', u'identifi', u'ash'] [u'polic', u'crack', u'busi', u'confer'] [u'pont', u'attack', u'england', u'tactic'] [u'power', u'confid', u'charg', u'eighth'] [u'princip', u'back', u'island', u'behaviour', u'crackdown'] [u'probe', u'begin', u'redbank', u'rail', u'death'] [u'profit', u'fall', u'natur', u'investor'] [u'properti', u'crime', u'fall'] [u'putin', u'readi', u'meet', u'beslan', u'mother'] [u'queensland', u'troop', u'head', u'iraq'] [u'rain', u'expect', u'boost', u'machineri', u'expo', u'sale'] [u'raid', u'foil', u'sydney'] [u'record', u'fuel', u'price', u'influenc', u'homebuy'] [u'remot', u'program', u'address'] [u'research', u'find', u'cane', u'farmer', u'industri'] [u'resid', u'communiti', u'radio', u'station'] [u'resid', u'wait', u'emerg', u'hurrican', u'shelter'] [u'rogerson', u'sue', u'polic', u'surnam', u'discrimin'] [u'rural', u'doctor', u'welcom', u'increas', u'rate', u'bulk'] [u'rugbi', u'investig', u'smite', u'racism', u'alleg'] [u'scullion', u'urg', u'altern', u'dump', u'site'] [u'secreci', u'keep', u'protest', u'forb', u'meet'] [u'secreci', u'surround', u'busi', u'dinner', u'protest'] [u'secur', u'exercis', u'continu', u'airport'] [u'selfish', u'businessman', u'ask', u'fund', u'search'] [u'seven', u'arrest', u'protest', u'forb'] [u'sexual', u'assault', u'charg', u'court'] [u'sheep', u'smarter', u'peopl', u'think', u'research'] [u'ship', u'send', u'help', u'stricken', u'yacht', u'bight'] [u'soldier', u'face', u'dismiss', u'drug', u'test'] [u'sport', u'hero', u'motiv', u'youth'] [u'storm', u'predict', u'south', u'wale'] [u'studi', u'fire', u'power', u'station'] [u'studi', u'reveal', u'fall', u'farm', u'number'] [u'survey', u'find', u'small', u'busi'] [u'survey', u'find', u'support', u'telstra', u'sale', u'citi'] [u'teacher', u'attack', u'prompt', u'tougher', u'stanc'] [u'teacher', u'vote', u'condit'] [u'teacher', u'serv', u'minimum', u'year'] [u'thai', u'polic', u'slim', u'job'] [u'tiger', u'face', u'fine', u'illeg', u'kick'] [u'tourist', u'stabl', u'snake', u'bite'] [u'trade', u'deficit', u'widen'] [u'truck', u'driver', u'hospit', u'rollov'] [u'uganda', u'reject', u'condom', u'shortag', u'claim'] [u'underworld', u'tape', u'leak', u'prompt', u'crimin', u'investig'] [u'union', u'blame', u'holden', u'staff', u'cut'] [u'strike', u'kill', u'qaeda', u'suspect', u'iraq'] [u'author', u'assess', u'damag', u'wake', u'katrina'] [u'consid', u'emerg', u'reserv'] [u'forc', u'kill', u'afghan', u'taliban', u'command'] [u'stock', u'bounc', u'earli', u'loss'] [u'vacant', u'hous', u'depress', u'valu', u'surround', u'real'] [u'vet', u'welcom', u'mules', u'anaesthet'] [u'council', u'meet', u'bendigo'] [u'walnut', u'produc', u'target', u'asia', u'europ'] [u'warm', u'august', u'night', u'set', u'hobart', u'temperatur'] [u'warn', u'health', u'insur', u'push', u'young'] [u'webb', u'gordon', u'free', u'play'] [u'windsor', u'enter', u'debat'] [u'wollongong', u'establish', u'stock', u'exchang'] [u'world', u'oldest', u'person', u'die', u'age'] [u'foetus', u'garag'] [u'fear', u'dead', u'baghdad', u'stamped'] [u'dead', u'wake', u'katrina'] [u'abattoir', u'resum', u'meat', u'product'] [u'accc', u'rais', u'woolworth', u'concern'] [u'govt', u'sell', u'citi', u'park'] [u'retail', u'sale', u'growth', u'nation', u'rate'] [u'agreement', u'sign', u'harboursid', u'develop'] [u'airport', u'plan', u'boost', u'secur'] [u'black', u'juggl', u'injuri', u'ahead', u'wallabi', u'test'] [u'anti', u'globalis', u'protest', u'target', u'forb'] [u'apprentic', u'tool', u'program', u'start', u'soon'] [u'arthur', u'henman', u'crash', u'feder', u'cruis'] [u'arthur', u'stosur', u'crash', u'feder', u'cruis'] [u'australia', u'rank', u'fourth', u'global', u'effort'] [u'baghdad', u'stamped', u'toll', u'pass'] [u'beatti', u'prais', u'toowoomba', u'water', u'recycl', u'effort'] [u'bigger', u'servic', u'sydney'] [u'birney', u'face', u'question', u'uranium', u'mine'] [u'brogden', u'attempt', u'suicid'] [u'brogden', u'discharg', u'hospit', u'attempt'] [u'brogden', u'hospit', u'suicid', u'attempt'] [u'brogden', u'releas', u'hospit'] [u'brogden', u'suicid', u'attempt', u'shock', u'liber'] [u'bush', u'approv', u'rat', u'sink', u'lower', u'poll'] [u'tighter', u'control', u'wild', u'poison'] [u'caterpillar', u'wipe', u'desert', u'bloom'] [u'chief', u'minist', u'back', u'public', u'inquest'] [u'china', u'suspend', u'coal', u'mine', u'safeti', u'drive'] [u'ciss', u'want', u'stay', u'liverpool'] [u'urg', u'widen', u'council', u'corrupt', u'inquiri'] [u'coalit', u'leadership', u'tension', u'grow'] [u'cockl', u'farm', u'get', u'ahead'] [u'comment', u'time', u'immin', u'citi', u'centr', u'strategi'] [u'commod', u'price', u'rein', u'deficit'] [u'compani', u'emphas', u'quick', u'start', u'benefit', u'fire'] [u'consult', u'back', u'break', u'hill', u'educ'] [u'coonan', u'eas', u'media', u'ownership', u'rule'] [u'cooper', u'enter', u'european', u'market'] [u'coron', u'criticis', u'john', u'patient', u'death'] [u'costello', u'laugh', u'turnbul', u'plan'] [u'costello', u'warn', u'high', u'price'] [u'council', u'state', u'agre', u'waterfront', u'develop'] [u'councillor', u'criticis', u'handl', u'supermarket'] [u'council', u'staff', u'discuss', u'water', u'usag'] [u'council', u'consult', u'tourist', u'offic', u'locat'] [u'csiro', u'parti', u'spend', u'conjur', u'critic'] [u'current', u'account', u'deficit', u'tip', u'narrow'] [u'dairi', u'bodi', u'take', u'educ', u'role'] [u'dane', u'discuss', u'royal', u'success', u'chang'] [u'davenport', u'work', u'groov'] [u'dead', u'blaze', u'shock', u'chirac'] [u'dead', u'highway', u'toll', u'dead', u'day'] [u'dowerin', u'water', u'harvest', u'model'] [u'downer', u'offer', u'qualifi', u'support', u'cut'] [u'dragon', u'readi', u'final', u'creagh'] [u'editor', u'reject', u'attack', u'brogden', u'coverag'] [u'england', u'structur', u'worth', u'studi', u'say', u'buchanan'] [u'england', u'women', u'level', u'seri'] [u'etsa', u'rat', u'storm', u'state', u'worst'] [u'famili', u'help', u'melon', u'harvest'] [u'fear', u'dairi', u'cours', u'decis', u'affect'] [u'feasibl', u'studi', u'assess', u'drainag'] [u'feder', u'fli', u'open', u'second', u'round'] [u'firefight', u'contain', u'huge', u'factori', u'blaze'] [u'firefight', u'urg', u'local', u'consid', u'action', u'plan'] [u'fire', u'prompt', u'danger', u'period', u'declar'] [u'fishermen', u'predict', u'compens', u'reef'] [u'flood', u'frog', u'surfac', u'fee', u'breed'] [u'flood', u'hit', u'northern', u'tasmania'] [u'footbal', u'camp', u'melbourn', u'indigen'] [u'forb', u'deleg', u'mull', u'rise', u'price'] [u'southcorp', u'staff', u'offer', u'job'] [u'franc', u'take', u'measur', u'bird', u'threat'] [u'french', u'recognis', u'oneil', u'generous', u'contribut'] [u'fund', u'arriv', u'child', u'care', u'centr'] [u'garfunkel', u'arrest', u'marijuana', u'possess'] [u'german', u'court', u'throw', u'weight', u'hefti', u'driver'] [u'gippsland', u'water', u'seek', u'feedback', u'perman'] [u'goosen', u'sole', u'player', u'wentworth', u'field'] [u'govt', u'apologis', u'send', u'paedophil', u'piano'] [u'govt', u'close', u'decis', u'cruis', u'ship', u'termin'] [u'govt', u'renew', u'indonesian', u'travel', u'warn'] [u'govt', u'upgrad', u'power', u'line', u'boost', u'suppli'] [u'green', u'investig', u'nambucca', u'develop'] [u'gregan', u'equal', u'leonard', u'test', u'cap'] [u'hannay', u'melbourn', u'clash'] [u'health', u'servic', u'detaine', u'inadequ', u'ozdowski'] [u'helen', u'coonan', u'speak', u'nation', u'press', u'club'] [u'henin', u'hardenn', u'readi', u'open', u'challeng'] [u'histori', u'buff', u'investig', u'burk', u'will', u'site'] [u'hopper', u'lose', u'assault', u'appeal'] [u'hospit', u'strike', u'threat', u'decreas'] [u'spot', u'saturn', u'moon'] [u'howard', u'prais', u'portfolio', u'leader'] [u'humpback', u'whale', u'popul', u'rise'] [u'hundr', u'indian', u'enceph', u'outbreak'] [u'hundr', u'fear', u'dead', u'storm', u'ravag', u'coast'] [u'hurrican', u'katrina', u'death', u'toll', u'rise'] [u'didnt', u'hook', u'hard', u'bouncer'] [u'immigr', u'face', u'review', u'elder', u'woman', u'death'] [u'indigen', u'train', u'develop', u'pilbara'] [u'injuri', u'rule', u'england', u'terri', u'month'] [u'inquest', u'hear', u'mental', u'health', u'guidelin', u'need'] [u'iraq', u'stamped', u'death', u'toll', u'rise'] [u'iraq', u'sunni', u'leader', u'vow', u'work', u'draft'] [u'irrig', u'unhappi', u'water', u'rate', u'schedul'] [u'jam', u'wood', u'retir', u'suprem', u'court'] [u'japan', u'urg', u'beef', u'restrict'] [u'jone', u'hope', u'make', u'ash', u'showdown'] [u'kangaroo', u'stay', u'jump', u'ahead', u'germani'] [u'kenya', u'probe', u'claim', u'generic', u'vioxx', u'sale'] [u'kosovo', u'presid', u'health', u'deterior'] [u'kyli', u'soak', u'sunshin', u'pari'] [u'landcorp', u'promis', u'compens', u'nois', u'pollut'] [u'requir', u'nurs', u'report', u'child', u'abus'] [u'leadership', u'comment', u'ruffl', u'coalit', u'feather'] [u'lebanes', u'free', u'hariri', u'probe'] [u'legisl', u'need', u'petrol', u'sniff', u'senat'] [u'lesli', u'test', u'posit', u'drug', u'polic'] [u'local', u'winemak', u'posit', u'foster', u'wineri'] [u'lockyer', u'return', u'minor', u'premiership', u'showdown'] [u'love', u'fund', u'help', u'iranian', u'coupl', u'marri'] [u'secur', u'prison', u'extens', u'open'] [u'beat', u'aviat', u'secur', u'charg', u'urg'] [u'extradit', u'face', u'child', u'charg'] [u'fin', u'chastis', u'tri', u'improv', u'view'] [u'plead', u'guilti', u'babi', u'manslaught'] [u'strike', u'remov', u'tree', u'road'] [u'wash', u'flood', u'road'] [u'maori', u'seat', u'nation', u'sight'] [u'market', u'higher', u'despit', u'surg', u'price'] [u'media', u'scrutini', u'blame', u'brogden', u'suicid', u'attempt'] [u'meet', u'tackl', u'staff', u'crisi', u'park', u'polic'] [u'melbourn', u'alert', u'fresh', u'storm'] [u'minist', u'accus', u'slur', u'dyslex'] [u'minist', u'concern', u'escal', u'child', u'abus'] [u'mix', u'respons', u'water', u'plan'] [u'mobil', u'phone', u'steal', u'shop', u'raid'] [u'morri', u'inquiri', u'member', u'head', u'rockhampton'] [u'mortar', u'attack', u'target', u'shiit', u'worshipp'] [u'moth', u'egg', u'pleas', u'quarantin', u'servic'] [u'muller', u'give', u'roddick', u'birthday', u'blue'] [u'nation', u'claim', u'health', u'fund', u'shortfal'] [u'nation', u'fear', u'govt', u'duck', u'hunt'] [u'neck', u'injuri', u'end', u'tyran', u'smith', u'career'] [u'neitz', u'miss', u'train', u'play', u'cat'] [u'orlean', u'plung', u'deeper', u'chao'] [u'orlean', u'resid', u'wait', u'month', u'return'] [u'support', u'howard', u'costello'] [u'liber', u'search', u'answer', u'today'] [u'ofarrel', u'drop', u'leadership'] [u'price', u'hit', u'high', u'hurrican', u'katrina'] [u'oper', u'defend', u'power', u'project', u'viabil'] [u'owen', u'admit', u'newcastl', u'second', u'choic'] [u'petacchi', u'win', u'mcgee', u'keep', u'overal', u'lead'] [u'petroleum', u'group', u'welcom', u'govt', u'explor', u'plan'] [u'piano', u'teacher', u'face', u'paedophilia', u'charg'] [u'polic', u'appeal', u'wit', u'knife', u'attack'] [u'polic', u'chief', u'moroney', u'extend', u'contract'] [u'polic', u'foil', u'courthous', u'escap'] [u'polic', u'investig', u'hous', u'explos'] [u'polic', u'investig', u'latest', u'teacher', u'attack'] [u'pope', u'tell', u'cathol', u'multipli'] [u'primus', u'go', u'knife', u'lade', u'sign', u'deal'] [u'prison', u'releas', u'fulfil', u'aceh', u'peac', u'condit'] [u'queensland', u'remind', u'alert', u'terror'] [u'rail', u'consult', u'process', u'upset', u'farmer'] [u'rain', u'wreak', u'havoc', u'tassi', u'north'] [u'ralli', u'fund', u'sustain', u'indigen', u'health', u'program'] [u'record', u'passeng', u'number', u'prompt', u'airport', u'upgrad'] [u'rescuer', u'bypass', u'hurrican', u'dead', u'save', u'live'] [u'rescuer', u'warn', u'bushwalk', u'stay', u'track'] [u'return', u'player', u'boost', u'saint'] [u'reuter', u'cameraman', u'hold', u'ghraib'] [u'rise', u'childcar', u'cost', u'strain', u'famili'] [u'robert', u'dividend'] [u'robot', u'trainer', u'improv', u'stroke', u'recoveri'] [u'rural', u'teen', u'messag', u'burn'] [u'clean', u'destruct', u'storm'] [u'salari', u'work', u'gallop'] [u'satellit', u'highlight', u'widen', u'ozon', u'hole'] [u'screen', u'industri', u'offic', u'chang'] [u'senat', u'helen', u'coonan', u'address', u'nation'] [u'senat', u'helen', u'coonan', u'speak', u'nation', u'press'] [u'sewer', u'upgrad', u'cost'] [u'shake', u'financi', u'counsel', u'servic'] [u'shire', u'eas', u'water', u'restrict'] [u'shire', u'releas', u'plan', u'smaller', u'boat', u'harbour'] [u'shopper', u'love', u'home', u'brand', u'survey'] [u'slack', u'smith', u'successor', u'line'] [u'socceroo', u'star', u'slice', u'take'] [u'springsteen', u'make', u'academ', u'grade'] [u'state', u'water', u'confer', u'start', u'narrabri'] [u'steve', u'waugh', u'predict', u'ash', u'turnaround'] [u'storm', u'rip', u'south', u'east'] [u'storm', u'continu', u'eastern', u'victoria'] [u'stosur', u'open'] [u'student', u'kill', u'wild', u'wind', u'batter', u'victoria'] [u'student', u'kill', u'overnight', u'storm'] [u'studi', u'find', u'brain', u'cancer', u'link', u'mobil', u'phone'] [u'summit', u'tell', u'aust', u'perfect', u'place', u'desalin'] [u'tasmania', u'victoria', u'batter', u'heavi', u'storm'] [u'tasmania', u'brace', u'flood'] [u'tasmania', u'flood', u'watch', u'focus', u'river'] [u'tassi', u'devil', u'receiv', u'greater', u'protect'] [u'telstra', u'admit', u'monitor', u'staff'] [u'tiger', u'deledio', u'win', u'afl', u'rise', u'star', u'award'] [u'transgrid', u'public', u'display'] [u'transplant', u'athlet', u'die'] [u'line', u'unconvinc', u'campaign', u'boost', u'ferri'] [u'tuna', u'boat', u'join', u'stricken', u'yacht', u'rescu', u'effort'] [u'tuna', u'boat', u'rescu', u'strand', u'yacht', u'coupl'] [u'turinui', u'consid', u'futur', u'captainci'] [u'cycl', u'slam', u'armstrong', u'drug', u'claim'] [u'airstrik', u'kill', u'taliban', u'governor'] [u'hurrican', u'spark', u'australian', u'weather', u'warn'] [u'stock', u'fall', u'price', u'rise'] [u'releas', u'strateg', u'petroleum', u'reserv'] [u'victoria', u'wild', u'weather', u'eas'] [u'green', u'nuclear', u'dump', u'protest'] [u'wallabi', u'roger', u'half', u'black'] [u'warn', u'back', u'australia', u'come', u'good'] [u'weather', u'expert', u'warn', u'increas', u'cyclon', u'activ'] [u'westfield', u'announc', u'half', u'profit'] [u'wild', u'storm', u'claim', u'life', u'leav', u'trial'] [u'wild', u'wind', u'whip', u'canberra'] [u'woman', u'night', u'bush'] [u'world', u'worri', u'forc', u'owen'] [u'zimbabw', u'rule', u'parti', u'vote', u'chang', u'constitut'] [u'high', u'court', u'child', u'killer', u'stori'] [u'academ', u'call', u'boost', u'indigen', u'student'] [u'begin', u'reach', u'hurrican', u'victim'] [u'alcohol', u'pregnanc', u'studi', u'disturb', u'salvo'] [u'black', u'wari', u'pressur', u'gregan'] [u'endors', u'sit'] [u'arrest', u'warrant', u'issu', u'concord', u'pari', u'crash', u'case'] [u'australia', u'say', u'border'] [u'austrian', u'thiev', u'train', u'open', u'safe'] [u'aust', u'fund', u'librari', u'facelift'] [u'year', u'anger', u'linger', u'beslan'] [u'baghdad', u'stamped', u'leav', u'hundr', u'dead'] [u'baghdad', u'stamped', u'shake', u'iraqi', u'govt'] [u'beef', u'industri', u'renew', u'pressur'] [u'benaud', u'believ', u'australia', u'ash'] [u'benaud', u'stun', u'aussi', u'ash'] [u'beslan', u'mark', u'school', u'sieg', u'anniversari'] [u'beslan', u'rememb', u'horror', u'school', u'tragedi'] [u'birdsvill', u'popul', u'swell', u'ahead', u'race'] [u'team', u'confid', u'grab', u'titl'] [u'bouncer', u'deni', u'target', u'hook'] [u'brisban', u'experi', u'indi', u'atmospher'] [u'british', u'actor', u'michael', u'sheard', u'die'] [u'briton', u'kidnap', u'afghanistan'] [u'brogden', u'thank', u'support'] [u'bushfir', u'danger', u'period', u'start', u'earli'] [u'bush', u'vow', u'zero', u'toler', u'post', u'hurrican', u'loot'] [u'servic', u'rise', u'fuel', u'price'] [u'child', u'claim', u'trio', u'charg', u'defam'] [u'chimp', u'shed', u'light', u'human'] [u'commonwealth', u'boost', u'fund', u'histor', u'replica'] [u'communiti', u'project', u'benefit', u'nation', u'park'] [u'contamin', u'soil', u'forc', u'closur', u'motor', u'park'] [u'coonan', u'reject', u'telstra', u'loser', u'claim'] [u'corrupt', u'accus', u'resign', u'polic', u'forc'] [u'councillor', u'slam', u'magistr', u'tree', u'lop', u'case'] [u'council', u'unveil', u'brisban', u'master', u'plan'] [u'countri', u'women', u'converg', u'orang', u'confer'] [u'crash', u'murray', u'tour'] [u'crow', u'readi', u'kilda', u'physic', u'challeng'] [u'custom', u'foil', u'fish', u'smuggl', u'attempt'] [u'debnam', u'look', u'ahead', u'tragic', u'week'] [u'debnam', u'liber', u'leader'] [u'debnam', u'vow', u'team', u'track'] [u'dirti', u'cockl', u'creek', u'site', u'clean'] [u'doc', u'blame', u'industri', u'disput', u'refug', u'closur'] [u'domaszewicz', u'unfit', u'face', u'leski', u'inquest'] [u'downer', u'confid', u'iraq', u'stamped', u'wont', u'stop', u'referendum'] [u'embassi', u'offici', u'tell', u'solon', u'deport'] [u'emerg', u'releas', u'help', u'eas', u'price'] [u'environment', u'group', u'concern', u'cruis', u'ship'] [u'europ', u'hold', u'sanction', u'iran', u'refer'] [u'speaker', u'stand', u'worker'] [u'famili', u'await', u'news', u'aust', u'woman', u'orlean'] [u'famili', u'await', u'news', u'backpack', u'miss', u'india'] [u'farmer', u'enjoy', u'bumper', u'pearl', u'harvest'] [u'farmer', u'urg', u'heed', u'grind', u'water', u'restrict'] [u'fight', u'desalin', u'plant'] [u'fingleton', u'get', u'coast'] [u'land', u'anim', u'shuffl', u'walk'] [u'forecast', u'good', u'flood', u'clean'] [u'hold', u'terror', u'plot'] [u'freight', u'firm', u'creat', u'job', u'plant', u'site'] [u'time', u'riot', u'squad'] [u'oblig', u'joyc', u'tell', u'telstra'] [u'head', u'independ', u'celebr'] [u'giant', u'centiped', u'leg', u'london'] [u'contamin', u'canola', u'sampl'] [u'gold', u'coaster', u'struggl', u'japan', u'event'] [u'govt', u'brush', u'telstra', u'complaint'] [u'govt', u'deni', u'airport', u'secur', u'breach', u'accus'] [u'govt', u'fear', u'bait', u'decis', u'affect', u'wildlif'] [u'greyhound', u'owner', u'ban', u'own', u'dog'] [u'group', u'continu', u'develop', u'stanc'] [u'guantanamo', u'trial', u'chang', u'desper'] [u'gulf', u'countri', u'petrol', u'price', u'alarm', u'local'] [u'hart', u'tip', u'act', u'crow', u'captain'] [u'harvey', u'norman', u'fin', u'open', u'hour'] [u'harvey', u'futur', u'depend', u'abattoir', u'fate', u'murray'] [u'hewitt', u'clijster', u'defi', u'difficult', u'wind', u'advanc'] [u'hurrican', u'kill', u'hundr', u'mayor'] [u'hurrican', u'impact', u'grain', u'cotton', u'market'] [u'hurrican', u'katrina', u'worst', u'american', u'histori'] [u'hushovd', u'win', u'vuelta', u'fifth', u'stage', u'mcgee', u'lead'] [u'didnt', u'target', u'hook', u'bouncer', u'say'] [u'illawarra', u'august', u'rainfal', u'averag'] [u'impeach', u'arroyo', u'reject'] [u'interim', u'safeti', u'work', u'horror', u'section'] [u'iraq', u'carri', u'post', u'saddam', u'execut'] [u'iraqi', u'mourn', u'hundr', u'kill', u'stamped'] [u'israel', u'cede', u'control', u'egypt', u'gaza', u'border'] [u'jackson', u'wnba'] [u'student', u'launch', u'campaign'] [u'johansson', u'punch', u'bench', u'jone'] [u'jone', u'replac', u'selwood', u'eagl'] [u'joyc', u'back', u'ethanol', u'blend', u'petrol', u'fuel', u'price'] [u'prison', u'juvenil', u'centr', u'close', u'opposit'] [u'kimberley', u'polic', u'finalist', u'offic', u'award'] [u'late', u'put', u'nadal', u'open', u'round'] [u'lawyer', u'await', u'lesli', u'drug', u'test', u'result'] [u'leader', u'celebr', u'year', u'solidar'] [u'lesli', u'bribe', u'offer', u'reveal'] [u'lion', u'nathan', u'make', u'cooper'] [u'lockyer', u'webck', u'seymour', u'bronco'] [u'loot', u'hamper', u'orlean', u'rescu', u'effort'] [u'major', u'opal', u'find', u'increas', u'coober', u'pedi'] [u'malle', u'farmer', u'hope', u'rain', u'mild', u'weather'] [u'charg', u'assault'] [u'jail', u'steal', u'credit', u'card', u'receipt'] [u'jail', u'basebal', u'attack'] [u'leav', u'semi', u'conscious', u'metal', u'attack'] [u'manufactur', u'index', u'hit', u'year'] [u'mayor', u'back', u'minist', u'comment', u'develop'] [u'mayor', u'launch', u'stage', u'sewerag', u'work'] [u'melbourn', u'jail', u'murder', u'parent'] [u'mice', u'interact', u'studi', u'lead', u'better'] [u'miner', u'aim', u'increas', u'gold', u'explor'] [u'miner', u'explor', u'disus', u'mine', u'deposit'] [u'mine', u'construct', u'push', u'market', u'higher'] [u'minist', u'put', u'mind', u'clean'] [u'miss'] [u'mock', u'bomb', u'put', u'bali', u'polic', u'alert'] [u'modern', u'human', u'neanderth', u'share', u'earth'] [u'molybdenum', u'demand', u'drive', u'develop'] [u'mooney', u'back', u'plug', u'north', u'state', u'power', u'grid'] [u'mourinho', u'unveil', u'chelsea', u'year', u'plan'] [u'tell', u'accus', u'lie'] [u'urg', u'maintain', u'bridg', u'communiti'] [u'nadal', u'round', u'open'] [u'nativ', u'titl', u'agreement', u'clear', u'path', u'iron'] [u'atlas', u'highlight', u'plight', u'world', u'great', u'ape'] [u'newcastl', u'spur', u'transfer', u'action'] [u'digit', u'channel', u'make', u'debut'] [u'owner', u'envisag', u'good', u'prospect', u'outback'] [u'evid', u'weed', u'outbreak', u'reach', u'gulf'] [u'nrma', u'move', u'allay', u'concern', u'quot'] [u'liber', u'elect', u'debnam', u'leader'] [u'govt', u'wont', u'nuclear', u'wast', u'dump', u'fight'] [u'pastoralist', u'hop', u'good', u'season'] [u'rottweil', u'tuckerbox'] [u'pilot', u'ground', u'quip', u'late'] [u'offici', u'year', u'peopl'] [u'kill', u'turkish', u'blast'] [u'optim', u'dowerin', u'machineri', u'field', u'day'] [u'owen', u'readi', u'rekindl', u'english', u'passion'] [u'page', u'back', u'black', u'health', u'servic', u'loss'] [u'perman', u'squad', u'examin', u'serial', u'kill'] [u'petit', u'aim', u'stop', u'busi', u'regul'] [u'petrol', u'price', u'stay', u'high', u'time'] [u'philippoussi', u'undaunt', u'latest', u'slam', u'failur'] [u'retir', u'want', u'downer'] [u'chip', u'fund', u'tasmanian', u'leve'] [u'sidestep', u'question'] [u'proud', u'polic', u'rap', u'beat', u'minist'] [u'polic', u'campaign', u'focus', u'snatcher'] [u'polic', u'item', u'search', u'miss', u'year'] [u'polic', u'investig', u'student', u'death'] [u'polic', u'step', u'effort', u'solv', u'claremont', u'murder'] [u'polic', u'warn', u'motorist', u'black'] [u'port', u'face', u'injuri', u'crisi'] [u'princip', u'hit', u'media', u'report'] [u'prison', u'offic', u'await', u'offer'] [u'program', u'tackl', u'high', u'sid', u'rate', u'aborigin'] [u'prosecutor', u'seek', u'year', u'aust', u'embassi', u'blast'] [u'protest', u'greet', u'northern', u'tasmania'] [u'govt', u'promis', u'council', u'road'] [u'health', u'inquiri', u'bias', u'court', u'rule'] [u'health', u'inquiri', u'limbo'] [u'rain', u'miss', u'central', u'catchment'] [u'recoveri', u'hurrican', u'year', u'bush'] [u'region', u'partnership', u'rig', u'truss'] [u'report', u'find', u'ethanol', u'damag', u'grain', u'export'] [u'rescu', u'coupl', u'arriv', u'port', u'lincoln'] [u'rescu', u'sailor', u'tell', u'vulner', u'time'] [u'resid', u'assur', u'staff', u'shortag', u'affect'] [u'resid', u'accept', u'council', u'civic', u'centr'] [u'ricciuto', u'play', u'support', u'role', u'crow', u'final'] [u'riverbank', u'clear', u'concern', u'fisheri'] [u'robot', u'watchdog', u'keep', u'overeat', u'tight', u'leash'] [u'ronaldinho', u'barca', u'till'] [u'ruddock', u'back', u'hick', u'trial', u'chang'] [u'host', u'swan', u'final'] [u'school', u'shut', u'machet', u'attack'] [u'search', u'begin', u'miss', u'india'] [u'search', u'resum', u'tomorrow'] [u'seed', u'stay', u'cours', u'wind', u'whip', u'open'] [u'high', u'grind'] [u'shellcov', u'wetland', u'near', u'complet'] [u'shire', u'welcom', u'bypass', u'progress'] [u'sleepi', u'traffic', u'control', u'leav', u'flight'] [u'socceroo', u'learn', u'trick', u'viduka'] [u'storm', u'affect', u'household', u'elig', u'compens'] [u'storm', u'batter', u'bushfir', u'survivor'] [u'sunric', u'announc', u'restructur', u'plan'] [u'suprem', u'court', u'rule', u'health', u'inquiri', u'bias'] [u'survey', u'find', u'salari', u'lower', u'darwin'] [u'survivor', u'flee', u'orlean'] [u'swan', u'readi', u'tough', u'test', u'subi'] [u'swimmer', u'tackl', u'backstair', u'passag', u'chariti'] [u'sydney', u'slump', u'except', u'hous', u'price'] [u'tait', u'clear', u'shoulder', u'problem'] [u'offici', u'move', u'immigr', u'dept'] [u'teacher', u'feder', u'campaign', u'save', u'school'] [u'telstra', u'loser', u'claim', u'strengthen', u'case', u'sale'] [u'temporari', u'hospit', u'worker', u'hous', u'caravan'] [u'tendulkar', u'pull', u'zimbabw', u'test', u'seri'] [u'thai', u'polic', u'test', u'perth', u'child', u'case'] [u'day', u'mourn', u'declar', u'stamped'] [u'tomato', u'fight', u'draw', u'spain'] [u'tourist', u'oper', u'welcom', u'jetstar', u'flight', u'news'] [u'escap', u'helicopt', u'crash'] [u'typhoon', u'pound', u'taiwan', u'leav', u'dead'] [u'chang', u'hick', u'trial', u'structur'] [u'compani', u'sell', u'carter', u'holt', u'harvey'] [u'militari', u'make', u'chang', u'commiss'] [u'launch', u'research', u'databas'] [u'vaughan', u'problem', u'substitut', u'polici'] [u'venezuela', u'offer', u'hurrican', u'batter'] [u'venic', u'film', u'festiv', u'open', u'martial', u'art', u'epic'] [u'victoria', u'aim', u'recycl', u'wast'] [u'vmos', u'dismiss', u'govt', u'latest', u'offer'] [u'governor', u'end', u'gascoyn', u'visit'] [u'wallabi', u'black', u'admit', u'cheat', u'ruck'] [u'warmer', u'august', u'weather', u'canberra'] [u'warn', u'fodder', u'stock', u'price', u'increas'] [u'water', u'alloc', u'come', u'relief', u'farmer'] [u'water', u'author', u'hop', u'fast', u'track', u'pipelin'] [u'waterfront', u'develop', u'uncertainti', u'threaten'] [u'watson', u'make', u'case', u'doubl', u'centuri'] [u'wattl', u'reignit', u'republ', u'debat'] [u'webck', u'backbon', u'say', u'smith'] [u'woman', u'safe', u'night', u'nation', u'park'] [u'wooli', u'takeov', u'rais', u'accc', u'concern'] [u'young', u'farmer', u'debat', u'wide', u'rang', u'issu'] [u'zimbabw', u'save', u'face', u'loss'] [u'revamp', u'southern', u'highland', u'cement'] [u'academ', u'claim', u'australia', u'toler', u'societi'] [u'adelaid', u'forc', u'roar', u'draw'] [u'alcohol', u'industri', u'play', u'label', u'call'] [u'alic', u'spring', u'elect', u'candid', u'finalis'] [u'alleg', u'qaeda', u'tape', u'claim', u'respons'] [u'anderson', u'launch', u'land', u'manag', u'tender', u'report'] [u'angler', u'join', u'fight', u'cruis', u'ship', u'termin'] [u'ansett', u'transport', u'museum', u'hop'] [u'aust', u'famili', u'fear', u'relat', u'orlean'] [u'australian', u'fear', u'live', u'orlean'] [u'australia', u'offer', u'expert', u'team', u'hurrican', u'respons'] [u'aust', u'feel', u'pinch', u'hurrican', u'costello'] [u'bait', u'plan', u'aim', u'bite', u'wild', u'woe'] [u'beamer', u'push', u'list'] [u'beatti', u'vow', u'finish', u'junk', u'inquiri'] [u'beatti', u'wait', u'bundaberg', u'inquiri', u'limbo'] [u'betham', u'leav', u'warrior', u'wildcat'] [u'bird', u'buddi', u'hope', u'turn', u'littl', u'tern'] [u'black', u'explain', u'stand'] [u'blake', u'set', u'nadal', u'showdown'] [u'boati', u'warn', u'stay', u'clear', u'nurs', u'whale'] [u'bomb', u'expert', u'begin', u'wharf', u'survey'] [u'buchanan', u'put', u'talk'] [u'burn', u'eas', u'hornsbi', u'fuel', u'load'] [u'busi', u'peopl', u'quiz', u'jail', u'plan'] [u'traralgon', u'radiolog', u'patient', u'equal'] [u'jacker', u'jail', u'appal', u'offenc'] [u'champion', u'brazil', u'verg', u'world', u'final'] [u'church', u'chime', u'defend', u'richmond', u'belltow'] [u'serv', u'warrant', u'burnett', u'council'] [u'cole', u'recal', u'potenti', u'harm', u'babi', u'jumpsuit'] [u'colli', u'coal', u'miner', u'accept', u'rescu', u'packag'] [u'confer', u'focus', u'mood', u'disord', u'treatment'] [u'contractor', u'repair', u'fairbairn', u'park', u'barrier'] [u'convict', u'killer', u'question', u'cemeteri', u'murder'] [u'coonan', u'comment', u'support', u'telstra', u'sale', u'rethink', u'mayor'] [u'cooper', u'rule', u'slow', u'lion', u'nathan'] [u'coron', u'rule', u'holt', u'conspiraci', u'theori', u'fanci'] [u'costello', u'join', u'chorus', u'dismiss', u'telstra', u'complaint'] [u'council', u'adopt', u'christma', u'tree', u'plan'] [u'council', u'seek', u'rule', u'letter'] [u'council', u'urg', u'rethink', u'pool', u'plan'] [u'court', u'disqualifi', u'morri', u'bundaberg', u'inquiri'] [u'court', u'rule', u'morgan', u'shooter', u'crimin'] [u'croc', u'beat', u'razorback', u'clash'] [u'poker', u'machin', u'levi', u'opposit', u'urg'] [u'debnam', u'pledg', u'shut', u'inject', u'room'] [u'desalin', u'plant', u'declar', u'critic', u'infrastructur'] [u'doc', u'stand', u'refug', u'closur'] [u'downpour', u'damag', u'local', u'road'] [u'appeal', u'elder', u'child', u'sentenc'] [u'dredg', u'test', u'caus', u'massiv', u'damag'] [u'driver', u'warn', u'flood', u'threat'] [u'drought', u'leav', u'sheep', u'produc', u'unabl', u'meet'] [u'drug', u'supplier', u'escap', u'jail', u'sentenc'] [u'eagl', u'edg', u'swan', u'thriller'] [u'eagl', u'faith', u'forward'] [u'eel', u'secur', u'minor', u'premiership', u'lose', u'hindmarsh'] [u'england', u'play', u'test', u'seven', u'dayer'] [u'eurobodalla', u'matern', u'servic', u'face', u'obstetrician'] [u'exhibit', u'advoc', u'siev', u'memori'] [u'explos', u'rock', u'orlean'] [u'export', u'discrep', u'worri', u'cattl', u'produc'] [u'fall', u'tree', u'clean', u'begin', u'storm'] [u'farmer', u'forum', u'provid', u'voic', u'youth'] [u'fatal', u'crash', u'close', u'highway'] [u'fat', u'domino', u'miss', u'hurrican', u'katrina', u'wake'] [u'fat', u'domino', u'rescu', u'daughter', u'say'] [u'feedlot', u'beat', u'cattl', u'plan'] [u'aussi', u'hurrican', u'zone'] [u'fingleton', u'say', u'brother'] [u'fingleton', u'payout', u'spur', u'hanson', u'compo'] [u'brigad', u'unabl', u'identifi', u'supermarket', u'fume'] [u'turn', u'bendigo', u'bank', u'revamp'] [u'arrest', u'japanes', u'expo', u'porn'] [u'flight', u'commit', u'antarctica', u'howard'] [u'flood', u'boost', u'hydro', u'power', u'storag'] [u'flood', u'cost', u'insur', u'half', u'million', u'dollar'] [u'folbigg', u'lose', u'appeal', u'child', u'murder'] [u'jail', u'brutal', u'murder', u'wrong'] [u'fuel', u'price', u'climb', u'litr'] [u'govt', u'deni', u'abandon', u'sexual', u'assault', u'support'] [u'govt', u'probe', u'dead', u'highway', u'section'] [u'govt', u'reject', u'airport', u'secur', u'claim'] [u'govt', u'stand', u'child', u'care', u'centr', u'fund'] [u'govt', u'support', u'deniliquin', u'servic', u'move'] [u'govt', u'talk', u'fast', u'rail', u'timet', u'chang'] [u'govt', u'welfar', u'work', u'plan'] [u'govt', u'urg', u'fitzroy', u'cross', u'school'] [u'gregan', u'dismiss', u'retir', u'talk'] [u'groot', u'eylandt', u'violenc', u'decreas', u'polic'] [u'guantanamo', u'hunger', u'strike', u'report', u'investig'] [u'harvey', u'norman', u'profit', u'slip'] [u'henri', u'head', u'unchart', u'water'] [u'hewson', u'highlight', u'liber', u'parti', u'fight'] [u'hickey', u'monitor', u'great', u'lake', u'council'] [u'high', u'fuel', u'cost', u'boost', u'commut', u'number'] [u'high', u'school', u'automot', u'skill', u'centr'] [u'howard', u'pledg', u'hurrican'] [u'hurrican', u'death', u'toll', u'rise', u'rescu', u'effort'] [u'hurrican', u'katrina', u'crisi', u'continu'] [u'hurrican', u'refug', u'like', u'concentr', u'camp'] [u'hurrican', u'survivor', u'queue', u'water', u'fuel'] [u'illeg', u'worker', u'hire', u'labour', u'compani'] [u'industri', u'flag', u'post', u'hurrican', u'insur', u'shake'] [u'inquiri', u'close'] [u'quot', u'chao', u'orlean'] [u'iran', u'put', u'rare', u'see', u'western', u'display'] [u'israel', u'finish', u'demolish', u'gaza', u'settler', u'home'] [u'israel', u'freez', u'settlement', u'project'] [u'itali', u'continu', u'troop', u'withdraw', u'iraq'] [u'patel', u'patient', u'morri'] [u'jail', u'term', u'pram', u'theft', u'month'] [u'kerin', u'promis', u'bail', u'crackdown'] [u'kimmorley', u'put', u'famili'] [u'lion', u'nathan', u'continu', u'fight', u'cooper'] [u'longford', u'short', u'chang', u'leve', u'fund'] [u'admit', u'pinjarra', u'doubl', u'murder'] [u'guilti', u'casino', u'murder', u'attempt'] [u'mango', u'grower', u'urg', u'action', u'chang'] [u'jail', u'fatal', u'stunt'] [u'stand', u'trial', u'omagh', u'bomb'] [u'market', u'slip', u'morn', u'peak'] [u'martin', u'admit', u'school', u'violenc', u'rise'] [u'medal', u'honour', u'fesa', u'staff'] [u'west', u'polli', u'seek', u'uranium', u'mine', u'talk'] [u'upgrad', u'prevent', u'water', u'pollut'] [u'minist', u'face', u'angri', u'colli', u'coal', u'miner'] [u'minist', u'spruik', u'benefit', u'govt', u'reform'] [u'miss', u'believ', u'safe'] [u'injuri', u'heartbreak', u'port', u'primus'] [u'mother', u'avoid', u'jail', u'hous'] [u'question', u'mobil', u'phone', u'servic', u'delay'] [u'say', u'telstra', u'sale', u'boost', u'bush', u'servic'] [u'urg', u'memori', u'includ', u'peac', u'park'] [u'nation', u'flag', u'celebr'] [u'neitz', u'step', u'closer', u'meet', u'cat'] [u'kempsey', u'sydney', u'servic'] [u'newmont', u'explor', u'boon', u'orang'] [u'orlean', u'hospit', u'break', u'point'] [u'kill', u'indonesian', u'landslid'] [u'nobel', u'win', u'anti', u'nuclear', u'campaign', u'rotblat', u'die'] [u'conspiraci', u'coron', u'rule'] [u'sens', u'tri', u'unseat', u'howard', u'hewson'] [u'minor', u'premiership', u'grab'] [u'liber', u'hit', u'parti', u'right', u'wing'] [u'lib', u'leader', u'deni', u'right', u'wing', u'takeov'] [u'charg', u'illeg', u'drug', u'import'] [u'opposit', u'condemn', u'water', u'charg'] [u'opposit', u'urg', u'fund', u'sexual', u'assault', u'servic'] [u'orang', u'hospit', u'introduc', u'patient', u'chang'] [u'paedophil', u'accus', u'unfaz', u'defam', u'charg'] [u'parad', u'kick', u'desert', u'festiv'] [u'parti', u'organis', u'urg', u'regist', u'polic'] [u'patient', u'seek', u'complet', u'bundaberg', u'inquiri'] [u'pilbara', u'woe', u'affect', u'woodsid', u'share'] [u'plan', u'aim', u'protect', u'indigen', u'shopper'] [u'plan', u'moot', u'green'] [u'meet', u'cystic', u'fibrosi', u'suffer'] [u'snap', u'telstra', u'exec'] [u'stand', u'iraq', u'commit', u'despit', u'qaeda'] [u'take', u'telstra', u'exec', u'task', u'comment'] [u'polic', u'chief', u'reflect', u'newcastl', u'achiev'] [u'polic', u'crack', u'magic', u'mushroom', u'possess'] [u'polic', u'evacu', u'pari', u'squat', u'dead', u'fire'] [u'polic', u'fire', u'warn', u'shot', u'orlean', u'tourist'] [u'polic', u'mull', u'charg', u'ephedrin', u'bust'] [u'polic', u'train', u'explos', u'alarm', u'resid'] [u'port', u'face', u'leadership', u'vacuum'] [u'prioriti', u'school', u'fund', u'program', u'continu'] [u'prison', u'audit', u'reveal', u'porn', u'secret', u'surf'] [u'prison', u'manag', u'skimp', u'staff', u'offic'] [u'push', u'communiti', u'bank', u'franchis'] [u'question', u'rais', u'zimbabw', u'multi', u'million'] [u'race', u'fan', u'flock', u'birdsvill'] [u'rayner', u'misconduct', u'case', u'refer', u'polic'] [u'raze', u'islam', u'centr', u'seek', u'donat'] [u'razorback', u'replac', u'guard', u'vanish'] [u'report', u'card', u'highlight', u'need', u'feder', u'road'] [u'rise', u'petrol', u'price', u'pressur', u'rural', u'patient'] [u'riverland', u'public', u'school', u'lift', u'attend', u'rat'] [u'cricket', u'question', u'teen', u'alleg', u'assault'] [u'saint', u'lose', u'maguir', u'hart', u'captain', u'crow'] [u'search', u'miss', u'intensifi'] [u'sectarian', u'tension', u'rise', u'iraqi', u'shiit', u'buri'] [u'shire', u'face', u'road', u'repair', u'cost', u'blowout'] [u'shoalhaven', u'defenc', u'contract'] [u'soil', u'contamin', u'forc', u'closur', u'fairbairn', u'park'] [u'solomon', u'launch', u'democraci', u'educ', u'program'] [u'strong', u'typhoon', u'cours', u'japan'] [u'student', u'decid', u'futur', u'earli'] [u'support', u'group', u'condemn', u'quick', u'adhd', u'diagnos'] [u'surfest', u'wave', u'goodby', u'sponsor'] [u'suspend', u'polic', u'live', u'workcov', u'claim'] [u'swift', u'phoenix', u'continu', u'grand', u'final', u'rivalri'] [u'sydney', u'airport', u'fuel', u'shortag', u'end'] [u'sydney', u'post', u'leagu'] [u'sydney', u'charg', u'philippin', u'tour'] [u'tafe', u'chief', u'reject', u'opposit', u'claim'] [u'talk', u'begin', u'health', u'servic', u'cut', u'plan'] [u'tamoxifen', u'tumour', u'link', u'caus', u'alarm'] [u'tasmanian', u'build', u'vessel', u'assist', u'hurrican', u'relief'] [u'teacher', u'refus', u'return', u'class', u'machet'] [u'teenag', u'jail', u'crash', u'kill', u'friend'] [u'teen', u'court', u'assault', u'senior'] [u'test', u'decid', u'workcov', u'recipi', u'polic', u'minist'] [u'theori', u'link', u'diseas', u'funer', u'rite'] [u'thousand', u'trap', u'chaotic', u'orlean'] [u'thredbo', u'skier', u'aim', u'record'] [u'timber', u'giant', u'sale', u'expect', u'impact', u'oberon'] [u'time', u'heal', u'danish', u'wind', u'say', u'ferdinand'] [u'tongan', u'public', u'servant', u'temporari', u'rise'] [u'townsvill', u'vmos', u'quit'] [u'treasur', u'unfaz', u'turnbul', u'paper'] [u'troop', u'tell', u'shoot', u'kill', u'orlean'] [u'troubl', u'stockfe', u'sell'] [u'typhoon', u'kill', u'china', u'taiwan'] [u'confirm', u'troop', u'kill', u'reuter', u'journalist'] [u'need', u'world', u'help', u'annan', u'say'] [u'pois', u'plutonium', u'rocket'] [u'relax', u'nuclear', u'restrict', u'india'] [u'vegi', u'grower', u'odd', u'review', u'recommend'] [u'viduka', u'captain', u'socceroo'] [u'vigil', u'urg', u'child', u'charg', u'lay'] [u'walker', u'can', u'ralph', u'canal', u'develop'] [u'wallabi', u'complet', u'prepar', u'black', u'test'] [u'water', u'author', u'look', u'speed', u'pipelin'] [u'water', u'price', u'increas', u'higher', u'expect'] [u'waugh', u'back', u'hayden', u'macgil'] [u'waugh', u'name', u'australia', u'best'] [u'uranium', u'polici', u'utter', u'discredit', u'opposit'] [u'week', u'call', u'action', u'child', u'protect'] [u'wife', u'jail', u'sydney', u'man', u'murder'] [u'wine', u'industri', u'cybernos', u'leav', u'chanc'] [u'crocodil', u'begin', u'season', u'win', u'note'] [u'flag', u'canberra', u'site', u'siev', u'memori'] [u'advocaci', u'group', u'seek', u'remov', u'polic', u'sergeant'] [u'black', u'wari', u'confid'] [u'aussi', u'coach', u'graf', u'return', u'wnbl'] [u'aussi', u'trail', u'goosen', u'china'] [u'base', u'jumper', u'rescu', u'blue', u'mountain', u'mishap'] [u'beatti', u'meet', u'patel', u'patient'] [u'beslan', u'hold', u'minut', u'silenc', u'victim'] [u'brisban', u'home', u'evacu', u'drug', u'dismantl'] [u'brisban', u'women', u'leav', u'hurrican', u'citi'] [u'bush', u'hurrican'] [u'bush', u'tell', u'orlean', u'wont', u'forget'] [u'bush', u'hurrican', u'respons'] [u'australian', u'right'] [u'categori', u'storm', u'threaten', u'okinawa', u'island'] [u'cat', u'book', u'semi', u'final', u'showdown', u'swan'] [u'chines', u'typhoon', u'death', u'toll', u'climb'] [u'chirac', u'hospit', u'treatment'] [u'continu', u'morri', u'inquiri', u'nation'] [u'cole', u'take', u'tap', u'case'] [u'coupl', u'road', u'diabet', u'awar', u'campaign'] [u'cowboy', u'sink', u'storm', u'fifth', u'spot'] [u'cricket', u'face', u'rape', u'charg'] [u'darwin', u'harbour', u'dredg', u'search', u'wwii', u'bomb'] [u'deep', u'diver', u'discov', u'fluoresc', u'surpris'] [u'dent', u'prepar', u'hewitt', u'rattl'] [u'dent', u'hard', u'work', u'hewitt'] [u'develop', u'bodi', u'reject', u'siev', u'monument'] [u'differ', u'time', u'right', u'say'] [u'doctor', u'begin', u'vocal', u'campaign'] [u'doubl', u'player', u'defend', u'legal', u'fight'] [u'dozen', u'australian', u'trap', u'orlean'] [u'england', u'face', u'real', u'australia', u'kasper'] [u'european', u'promis', u'suppress', u'price'] [u'explor', u'croc', u'fossil'] [u'final', u'settl', u'penalti', u'shoot'] [u'final', u'differ', u'ball', u'game', u'thompson'] [u'flight', u'attend', u'custodi', u'drug', u'offenc'] [u'green', u'warn', u'royal', u'hobart', u'staff'] [u'green', u'welcom', u'air', u'liber', u'concern'] [u'guarante', u'seek', u'ralph', u'sit', u'futur'] [u'harvey', u'hero', u'saint', u'crow'] [u'hewitt', u'feder', u'women', u'seed', u'progress'] [u'hewson', u'move', u'quell', u'lib', u'faction', u'fight'] [u'hewson', u'warn', u'liber', u'faction', u'fight'] [u'hiddink', u'work', u'acceler', u'kewel', u'rehab'] [u'huge', u'spill', u'cover', u'louisiana', u'marsh'] [u'leav', u'australia', u'say', u'hurrican'] [u'india', u'crush', u'black', u'cap', u'wicket'] [u'india', u'say', u'natur', u'field', u'discov'] [u'inquiri', u'shutdown', u'threaten', u'patel', u'extradit'] [u'interview', u'jarad', u'rook'] [u'investig', u'look', u'hous', u'fire'] [u'japanes', u'tourist', u'bodi', u'identifi', u'afghanistan'] [u'katrina', u'jitter', u'knock', u'wall', u'street'] [u'kenya', u'drop', u'charg', u'sydney', u'missionari'] [u'kotz', u'step', u'elect'] [u'macgil', u'select', u'frame', u'buchanan'] [u'malaysian', u'prison', u'hotel', u'seek', u'masochist', u'tourist'] [u'critic'] [u'free', u'collis', u'tram'] [u'mcgrath', u'final', u'warm', u'match'] [u'mclaren', u'look', u'sharp', u'schumach', u'crash', u'practic'] [u'militari', u'convoy', u'arriv', u'hurrican'] [u'minist', u'defend', u'illeg', u'gambl', u'inquiri'] [u'munro', u'fan', u'rid', u'high', u'japan'] [u'nepales', u'rebel', u'announc', u'temporari', u'ceasefir'] [u'orlean', u'chao', u'expos', u'bush', u'racism', u'say', u'rapper'] [u'back', u'nation', u'regist', u'limit', u'telemarket'] [u'offici', u'refus', u'access', u'strand', u'australian'] [u'petrol', u'sniff', u'inquiri', u'wast', u'time', u'scullion'] [u'phoenix', u'claim', u'fifth', u'netbal', u'titl'] [u'pietersen', u'confid', u'jone', u'play'] [u'plane', u'make', u'emerg', u'land', u'near', u'melbourn'] [u'thank', u'tasmanian', u'liber', u'loyalti'] [u'polic', u'continu', u'search', u'miss', u'teen'] [u'polic', u'sydney', u'prison', u'escape'] [u'prison', u'escap', u'hospit'] [u'prison', u'fell', u'barb', u'wire', u'water'] [u'public', u'opinion', u'seek', u'tidbinbilla', u'natur'] [u'coupl', u'drive', u'safeti', u'orlean'] [u'rabbitoh', u'hand', u'newcastl', u'wooden', u'spoon'] [u'raikkonen', u'titl', u'challeng', u'engin', u'chang'] [u'railway', u'group', u'optimist', u'avoid', u'closur'] [u'rolton', u'go', u'rampag'] [u'roo', u'blame', u'umpir', u'narrow', u'loss'] [u'rossi', u'test', u'regular', u'ferrari'] [u'russian', u'offici', u'charg', u'money', u'launder'] [u'cricket', u'face', u'rape', u'charg'] [u'saddam', u'trial', u'open', u'octob'] [u'saint', u'readi'] [u'eagl', u'secur', u'eighth', u'place'] [u'eagl', u'secur', u'eighth', u'spot'] [u'paterson', u'curs', u'outbreak', u'forecast'] [u'servic', u'farewel', u'shark', u'attack', u'victim'] [u'taliban', u'claim', u'kill', u'kidnap', u'elect'] [u'tharanga', u'fire', u'lanka', u'seri', u'clinch'] [u'appeal', u'hurrican'] [u'boe', u'worker', u'strike', u'contract', u'offer'] [u'congress', u'pass', u'billion', u'hurrican'] [u'hurrican', u'survivor', u'welcom', u'basic', u'suppli'] [u'soldier', u'afghan', u'interpret', u'kill'] [u'thank', u'countri', u'offer'] [u'vainikolo', u'explod', u'record', u'break', u'haul'] [u'viduka', u'star', u'easi', u'socceroo'] [u'violenc', u'restrict', u'rescu', u'australian'] [u'wallabi', u'fight'] [u'watchdog', u'reserv', u'decis', u'iran', u'nuclear', u'program'] [u'monitor', u'inmat', u'comput'] [u'australian', u'strand', u'orlean'] [u'abbott', u'admit', u'insensit', u'brogden', u'comment'] [u'abbott', u'offer', u'apolog', u'insensit', u'brogden'] [u'abbott', u'renew', u'control', u'public', u'health'] [u'actu', u'pick', u'nation', u'protest'] [u'actu', u'plan', u'nation', u'communiti', u'protest'] [u'afghanistan', u'offer', u'hurrican', u'hand'] [u'allenbi', u'lurk', u'wood', u'toil'] [u'criticis', u'hour', u'clinic'] [u'aussi', u'rower', u'strike', u'gold'] [u'aussi', u'gold', u'japan'] [u'aust', u'offici', u'frustrat', u'limit', u'access'] [u'bar', u'door', u'open', u'rain', u'hail', u'hurrican'] [u'beatti', u'boost', u'fund', u'patel', u'patient'] [u'beatti', u'reject', u'talk', u'feder', u'control', u'health'] [u'beazley', u'slam', u'govt', u'hurrican', u'respons'] [u'bell', u'cramp', u'caus', u'england', u'concern'] [u'british', u'church', u'mosqu', u'popular'] [u'bush', u'order', u'extra', u'troop', u'hurrican', u'katrina'] [u'bush', u'promis', u'troop', u'hurrican', u'state'] [u'bush', u'orlean', u'tour', u'photo'] [u'focus', u'psycholog', u'impact'] [u'cane', u'toad', u'fatal', u'attract', u'disco', u'light'] [u'claim', u'liber', u'ultra', u'conserv', u'faction'] [u'cole', u'fire', u'lacklustr', u'england', u'home'] [u'consular', u'offici', u'frustrat', u'lack', u'access'] [u'craig', u'bellami', u'interview'] [u'crew', u'work', u'rescu', u'children', u'trap', u'sink'] [u'darwin', u'council', u'deni', u'revenu', u'rais', u'market'] [u'date', u'saddam', u'trial'] [u'detaine', u'mount', u'hunger', u'strike', u'visa', u'decis'] [u'dragon', u'triumph', u'knight'] [u'ecuador', u'paraguay', u'closer', u'world'] [u'ervin', u'propel', u'hampshir', u'trophi', u'victori'] [u'essex', u'aussi', u'attack', u'sword'] [u'final', u'comeback', u'card', u'hindmarsh'] [u'fisherman', u'kill', u'miss', u'boat', u'capsiz'] [u'fred', u'hollow', u'foundat', u'consid', u'expans'] [u'govt', u'address', u'internet', u'safeti', u'children', u'coonan'] [u'govt', u'defend', u'plan', u'real', u'time', u'info'] [u'govt', u'plan', u'recreat', u'fish', u'licenc', u'fish'] [u'govt', u'step', u'campaign', u'sport', u'fan'] [u'gregan', u'equal', u'record', u'futur', u'remain', u'doubt'] [u'heath', u'ledger', u'score', u'casanova', u'romp', u'venic'] [u'hotel', u'chang', u'alcohol', u'sale'] [u'hundr', u'car', u'impound', u'hoon', u'crackdown'] [u'boss', u'warn', u'global', u'energi', u'crisi'] [u'interview', u'john', u'lang', u'sheen'] [u'interview', u'nathan', u'brown', u'michael', u'hagan'] [u'interview', u'ricki', u'stuart', u'luke', u'ricketson'] [u'investig', u'continu', u'cricket', u'rape'] [u'iraqi', u'polic', u'soldier', u'kill', u'baquba', u'attack'] [u'chang', u'threaten', u'communiti', u'servic', u'sector', u'task'] [u'maker', u'futur', u'unclear'] [u'john', u'allay', u'warrington', u'fear', u'injuri'] [u'kidman', u'film', u'obvious', u'swipe', u'mugab'] [u'kidnap', u'briton', u'dead', u'afghanistan'] [u'order', u'restor', u'orlean'] [u'ledger', u'casanova', u'seduc', u'venic'] [u'liber', u'urg', u'tariff', u'save', u'manufactur'] [u'liber', u'confer', u'releas', u'polici'] [u'malaysia', u'build', u'half', u'bridg', u'troubl'] [u'marin', u'fight', u'snatch', u'draw'] [u'matthew', u'elliott', u'interview'] [u'mcgrath', u'declar', u'final', u'test'] [u'kill', u'polic', u'india'] [u'minist', u'play', u'feder', u'leadership', u'specul'] [u'troop', u'head', u'chaotic', u'orlean'] [u'tasmanian', u'dentist', u'visit', u'say', u'studi'] [u'muscat', u'penalti', u'rescu', u'victori'] [u'nadal', u'rock', u'agassi', u'davenport', u'advanc'] [u'nadal', u'rock', u'agassi', u'dementieva', u'surviv'] [u'nation', u'leader', u'tell', u'liber', u'disun'] [u'nepal', u'rebel', u'announc', u'ceasefir'] [u'effort', u'sunni', u'iraq', u'constitut'] [u'orlean', u'ghost', u'town', u'rescu', u'effort', u'kick'] [u'orlean', u'citi', u'centr', u'abandon'] [u'bull', u'rule', u'unfair', u'target', u'breed', u'say'] [u'port', u'river', u'bridg', u'need', u'say', u'opposit'] [u'tighten', u'fertilis', u'control'] [u'panther', u'consign', u'tiger', u'fourth'] [u'panther', u'edg', u'tiger', u'half', u'time'] [u'pari', u'blaze', u'kill', u'injur'] [u'patient', u'renew', u'call', u'patel', u'inquiri'] [u'polic', u'arrest', u'nightclub', u'stab'] [u'polic', u'search', u'shoot', u'suspect'] [u'port', u'semi', u'showdown'] [u'premier', u'accus', u'ralph', u'develop', u'loss'] [u'raikkonen', u'fastest', u'montoya', u'take', u'pole'] [u'rooster', u'season', u'high', u'note'] [u'saddam', u'lawyer', u'reject', u'trial', u'date', u'earli'] [u'safeti', u'audit', u'stall', u'highway', u'fund', u'releas', u'say'] [u'search', u'continu', u'miss', u'teen'] [u'search', u'miss', u'fisherman', u'resum', u'morn'] [u'servic', u'station', u'seek', u'petrol', u'price'] [u'shaun', u'mcrae', u'stuart', u'raper', u'interview'] [u'slow', u'negoti', u'hurt', u'miller', u'say', u'timber'] [u'taipan', u'toppl', u'breaker'] [u'liber', u'accus', u'conflict'] [u'telstra', u'chief', u'blame', u'woe', u'say', u'coonan'] [u'texa', u'struggl', u'cope', u'hurrican', u'influx'] [u'tiger', u'demolish', u'hawk'] [u'time', u'overhaul', u'say', u'jone'] [u'tongan', u'govt', u'agre', u'consid', u'democrat', u'reform'] [u'ugandan', u'murder', u'suspect', u'die', u'custodi'] [u'ukrain', u'qualifi', u'world', u'fever', u'intensifi'] [u'chief', u'justic', u'die', u'cancer', u'battl'] [u'media', u'slam', u'hurrican', u'respons'] [u'erad', u'bull'] [u'violent', u'student', u'need', u'boot', u'camp', u'say'] [u'weaken', u'typhoon', u'remain', u'threat', u'japan'] [u'white', u'pointer', u'attack', u'surfer'] [u'wildcard', u'blake', u'stun', u'nadal'] [u'youth', u'homeless', u'target', u'katherin'] [u'fear', u'dead', u'indonesian', u'plane', u'crash'] [u'taliban', u'kill', u'arrest', u'raid', u'offici'] [u'clear', u'queer', u'comment'] [u'drown', u'illeg', u'cross', u'yemen'] [u'abbott', u'consid', u'posit', u'mental', u'health', u'bodi'] [u'base', u'citi', u'hill', u'revamp', u'privat', u'fund'] [u'consid', u'teacher', u'registr', u'board'] [u'acupunctur', u'reliev', u'heartburn', u'symptom'] [u'agronomist', u'warn', u'farmer', u'check', u'stripe', u'rust'] [u'reach', u'orlean'] [u'condit', u'factori', u'destroy'] [u'pollut', u'threaten', u'aborigin', u'rock'] [u'allenbi', u'stay', u'hunt'] [u'armi', u'contractor', u'fire', u'orlean'] [u'kill', u'indonesia', u'plane', u'crash'] [u'aussi', u'crest', u'wave', u'japanes', u'tour', u'event'] [u'aussi', u'wave', u'japan'] [u'aussi', u'team', u'head'] [u'basebal', u'killer', u'jail', u'year'] [u'bear', u'coach', u'prais', u'young', u'gun'] [u'beatti', u'deni', u'inquiri', u'closur', u'spar'] [u'beatti', u'seek', u'advic', u'inquiri', u'shutdown', u'appeal'] [u'breakfast', u'industri', u'discuss'] [u'moot', u'gold', u'coast', u'water', u'secur'] [u'birdsvill', u'race', u'draw', u'stronger', u'field', u'mayor', u'say'] [u'boe', u'lock', u'hinder', u'forc', u'union'] [u'bomb', u'kill', u'british', u'soldier', u'iraq'] [u'bond', u'corp', u'exec', u'didnt', u'flee', u'court', u'tell'] [u'charg', u'manslaught', u'pedestrian'] [u'brazil', u'rout', u'chile', u'secur', u'place'] [u'brogden', u'comment', u'tacki', u'abbott'] [u'bureau', u'ask', u'specif', u'rain', u'predict'] [u'burnett', u'mayor', u'confid', u'ahead', u'investig'] [u'bush', u'tap', u'robert', u'chief', u'justic'] [u'bush', u'hurrican', u'respons'] [u'busi', u'encourag', u'budget', u'fuel', u'price', u'rise'] [u'cameroon', u'final', u'stun', u'ivori', u'coast'] [u'campaign', u'west', u'coast', u'conserv', u'park', u'gain'] [u'seek'] [u'chavez', u'accept', u'apolog', u'assassin'] [u'childhood', u'diabet', u'spike', u'alarm', u'doctor'] [u'child', u'pornographi', u'case', u'gympi', u'court'] [u'children', u'beat', u'stick', u'mother', u'arrest'] [u'children', u'defin', u'famili', u'survey', u'find'] [u'clark', u'play', u'poll', u'elect', u'loom'] [u'communiti', u'influenc', u'school', u'violenc', u'respons'] [u'communiti', u'urg', u'comment', u'foreshor', u'plan'] [u'concern', u'secur', u'breach', u'ambul', u'station'] [u'confer', u'discuss', u'local', u'govern', u'amalgam'] [u'contractor', u'plead', u'guilti', u'teen', u'forklift'] [u'coonan', u'rule', u'inquiri', u'telstra', u'sale'] [u'costello', u'push', u'indonesia', u'lower', u'price'] [u'councillor', u'vow', u'fight', u'cruis', u'ship', u'termin'] [u'councillor', u'win', u'elect', u'despit', u'appeal'] [u'council', u'hear', u'flack', u'bridg', u'closur'] [u'council', u'unimpress', u'feder', u'grant', u'road', u'work'] [u'council', u'want', u'user', u'friend', u'hose', u'hour'] [u'council', u'welcom', u'night', u'safeti', u'plan', u'citi'] [u'coupl', u'move', u'brisban', u'hospit', u'burn'] [u'coupl', u'seek', u'crisi', u'help', u'network'] [u'court', u'hear', u'drug', u'properti', u'charg'] [u'crew', u'escap', u'injuri', u'orlean', u'helicopt', u'crash'] [u'criddl', u'push', u'retent', u'northampton', u'polic'] [u'crisi', u'centr', u'coordin', u'counter', u'terror'] [u'cruis', u'liner', u'free', u'hit', u'reef'] [u'csiro', u'conduct', u'lower', u'cotter', u'catchment', u'studi'] [u'benefit', u'weekend', u'rain'] [u'dead', u'babi', u'mother', u'appear', u'wit', u'trial'] [u'dive', u'bomb', u'championship', u'splash'] [u'door', u'open', u'brogden', u'debnam', u'frontbench'] [u'dope', u'alleg', u'continu', u'haunt', u'armstrong'] [u'downer', u'defend', u'staff'] [u'dozen', u'kill', u'indonesian', u'plane', u'crash'] [u'driver', u'troubl', u'rocca', u'polic', u'escort'] [u'dubbo', u'call', u'mental', u'health', u'bed'] [u'face', u'fals', u'imprison', u'charg', u'dramat'] [u'eel', u'hope', u'hindmarsh'] [u'egypt', u'prepar', u'multi', u'candid', u'poll'] [u'england', u'squad', u'fifth', u'test'] [u'evacu', u'orlean', u'continu'] [u'famili', u'dfat', u'want', u'katrina'] [u'farmer', u'suggest', u'soil', u'manag', u'activ'] [u'western', u'check', u'rain', u'effect'] [u'fatah', u'leader', u'convict', u'terror', u'charg'] [u'fear', u'fuel', u'price', u'hike', u'chariti'] [u'file', u'reveal', u'nazi', u'chocol', u'grenad', u'plan'] [u'file', u'share', u'softwar', u'break', u'copyright', u'court'] [u'meet', u'address', u'fuel', u'reduct', u'coastal'] [u'fisherman', u'hit', u'marin', u'safeti'] [u'kill', u'orlean', u'shoot'] [u'fuel', u'cost', u'hit', u'patient', u'transport'] [u'garcia', u'european', u'master', u'shoot'] [u'genet', u'improv', u'knowledg', u'spina', u'bifida'] [u'govt', u'aim', u'acceler', u'region', u'industri'] [u'govt', u'flag', u'child', u'protect', u'order', u'chang'] [u'govt', u'move', u'closer', u'telstra', u'sale'] [u'govt', u'question', u'telstra', u'oblig'] [u'govt', u'stamp', u'duti', u'increas'] [u'grass', u'fire', u'investig'] [u'greenpeac', u'prais', u'albani', u'record'] [u'grim', u'predict', u'driver'] [u'grow', u'demand', u'prompt', u'uranium'] [u'gunmen', u'attack', u'iraq', u'interior', u'ministri', u'report'] [u'hayden', u'hodg', u'impress', u'ahead', u'ash', u'final'] [u'hewitt', u'hold', u'dent', u'thriller'] [u'high', u'fuel', u'price', u'forc', u'chang', u'helicopt'] [u'high', u'tobacco', u'fuel', u'illeg', u'import'] [u'home', u'raze', u'aveng', u'muslim', u'woman', u'dishonour'] [u'hous', u'hous', u'search', u'begin', u'orlean'] [u'hrbati', u'get', u'shirti', u'open'] [u'indonesian', u'fishermen', u'fin', u'court'] [u'infrastructur', u'shortfal', u'concern', u'council'] [u'injur', u'cyclist', u'return', u'home', u'penguin'] [u'inland', u'rail', u'line', u'run', u'year'] [u'inquest', u'investig', u'soldier', u'death'] [u'intox', u'driver', u'worri', u'polic'] [u'iraq', u'lash', u'arab', u'state', u'lack', u'compass'] [u'iron', u'close', u'slater'] [u'island', u'visit', u'enlighten', u'chief', u'justic'] [u'jane', u'fonda', u'join', u'anti', u'bush', u'tour'] [u'jet', u'heart', u'draw', u'gosford'] [u'joey', u'name', u'kangaroo', u'squad'] [u'kangaroo', u'industri', u'plan', u'target', u'diet', u'industri'] [u'katrina', u'strain', u'drive', u'polic', u'suicid'] [u'kelso', u'high', u'school', u'gear', u'rock', u'challeng'] [u'beazley', u'speak', u'support', u'local'] [u'stand', u'readi', u'final'] [u'liber', u'disput', u'ombudsman', u'wait', u'list', u'find'] [u'lifeguard', u'want', u'swimmer', u'wait', u'patrol'] [u'local', u'support', u'amnesti', u'campaign'] [u'award', u'sexual', u'assault'] [u'convict', u'arson', u'assault'] [u'face', u'court', u'chase'] [u'injur'] [u'kill', u'weekend', u'road', u'smash'] [u'plead', u'guilti', u'norfolk', u'sieg'] [u'spend', u'near', u'year', u'jail'] [u'map', u'exercis', u'locat'] [u'match', u'review', u'put', u'cat', u'clear'] [u'matthew', u'hayden', u'justin', u'langer'] [u'miner', u'flag', u'renew', u'industri', u'action'] [u'moonshin', u'deni', u'london', u'bomb', u'link'] [u'morri', u'inquiri', u'evid', u'taint', u'judg'] [u'urg', u'inclus', u'uranium', u'debat'] [u'tell', u'minist', u'accept', u'commonwealth', u'road'] [u'multiplex', u'deni', u'mislead', u'sharehold'] [u'multiplex', u'know', u'financi', u'concern'] [u'napcan', u'happi', u'progress', u'overhaul', u'child'] [u'orlean', u'collect', u'dead'] [u'newspap', u'rise', u'august'] [u'tasmanian', u'senat', u'swear'] [u'train', u'timet', u'pass', u'peak', u'hour', u'test'] [u'dead', u'austrian', u'cabl', u'plung', u'polic'] [u'place', u'extrem', u'muslim', u'polit', u'parti'] [u'north', u'coast', u'deleg', u'leav', u'health', u'meet'] [u'nurs', u'consid', u'walkout'] [u'offic', u'warn', u'train', u'danger', u'inquest', u'hear'] [u'pari', u'death', u'toll', u'rise', u'fourth', u'girl', u'hold'] [u'perth', u'fear', u'life', u'superdom'] [u'pike', u'warn', u'hospit', u'privatis'] [u'accus', u'doubl', u'standard', u'abbott'] [u'apologis', u'orlean', u'respons'] [u'back', u'abbott', u'despit', u'brogden', u'joke'] [u'refus', u'sack', u'abbott', u'brogden', u'joke'] [u'regret', u'australian', u'hurrican', u'chao'] [u'polic', u'diver', u'join', u'search', u'miss'] [u'polic', u'happi', u'anti', u'hoon', u'administr'] [u'polic', u'injur', u'weekend', u'riot'] [u'polic', u'probe', u'airli', u'beach', u'bash', u'alleg'] [u'pressur', u'mount', u'resign', u'wake', u'katrina'] [u'probe', u'launch', u'rocca', u'polic', u'escort'] [u'prosecutor', u'close', u'argument', u'hook', u'case'] [u'push', u'marin', u'park', u'protect', u'fish', u'stock'] [u'putin', u'sack', u'russian', u'navi', u'chief'] [u'pyromaniac', u'come', u'scrutini', u'seminar'] [u'railway', u'bring', u'tourism', u'develop'] [u'rain', u'bring', u'relief', u'time', u'farmer'] [u'rain', u'improv', u'pastur', u'increas', u'rural'] [u'rais', u'concern', u'propos', u'recreat', u'fish'] [u'regul', u'hit', u'line', u'telstra'] [u'rescu', u'chopper', u'servic', u'worri', u'fuel', u'cost'] [u'ricciuto', u'lead', u'australian'] [u'rich', u'nation', u'moral', u'oblig', u'trade', u'barrier'] [u'roar', u'import', u'head', u'home', u'korea'] [u'launch', u'harvey', u'world', u'travel'] [u'sceptic', u'galleri', u'goer', u'slash', u'lichtenstein'] [u'schu', u'hail', u'alonso', u'successor'] [u'search', u'begin', u'miss'] [u'search', u'miss', u'fisherman', u'resum'] [u'senior', u'liber', u'deni', u'conflict', u'claim'] [u'separ', u'fire', u'dubbo', u'investig'] [u'trailer', u'steal'] [u'share', u'unaffect', u'woodsid', u'infrastructur'] [u'shark', u'victim', u'rememb', u'servic'] [u'shark', u'victim', u'tell', u'battl', u'white', u'pointer'] [u'donor', u'heed', u'hurrican', u'victim', u'help'] [u'slipper', u'float', u'toll', u'road'] [u'smith', u'famili', u'push', u'career', u'counsel'] [u'soldier', u'train', u'exercis', u'death', u'prevent'] [u'passeng', u'surviv', u'indonesian', u'crash', u'airlin'] [u'lanka', u'beat', u'bangladesh', u'wicket'] [u'stanley', u'urg', u'govt', u'children'] [u'state', u'urg', u'uranium', u'mine'] [u'student', u'initi', u'aim', u'boost', u'school', u'retent'] [u'student', u'mourn', u'drown', u'friend'] [u'support', u'parti', u'leader', u'drop', u'elect', u'loom'] [u'support', u'group', u'urg', u'beatti', u'appeal', u'inquiri'] [u'suspect', u'milit', u'kill', u'saudi', u'arabia', u'clash'] [u'telstra', u'profit', u'warn', u'drag', u'market'] [u'telstra', u'see', u'share', u'plummet'] [u'telstra', u'share', u'plung', u'profit', u'warn'] [u'thousand', u'dead', u'india', u'enceph', u'outbreak'] [u'teen', u'hold', u'latest', u'dead', u'pari', u'blaze'] [u'timet', u'herald', u'slower', u'safer', u'train', u'cityrail'] [u'town', u'upgrad', u'final'] [u'trujillo', u'accus', u'deliber', u'devalu', u'telstra'] [u'tuna', u'farmer', u'dismiss', u'link', u'shark', u'attack'] [u'turner', u'fight', u'temerair', u'vote', u'best'] [u'dead', u'crash'] [u'kill', u'crash'] [u'typhoon', u'pois', u'japan', u'south', u'korea'] [u'unflapp', u'goosen', u'blitz', u'china', u'field'] [u'union', u'continu', u'lobbi', u'stop', u'chang'] [u'hold', u'graduat', u'ceremoni', u'china', u'great'] [u'unmark', u'grave', u'disturb', u'cemeteri'] [u'upbeat', u'william', u'talk', u'crow'] [u'uruguay', u'socceroo', u'sight'] [u'offici', u'katrina', u'death', u'toll'] [u'util', u'target', u'busi', u'water'] [u'venus', u'win', u'battl', u'williams'] [u'vermeulen', u'close', u'corser'] [u'violenc', u'orlean'] [u'volunt', u'govt', u'fund', u'littl', u'tern', u'program'] [u'furnitur', u'industri', u'battl', u'vietnames', u'assembl'] [u'warm', u'weather', u'aid', u'flight', u'bumbl', u'be'] [u'energi', u'industri', u'showcas', u'offshor'] [u'webb', u'moimoi', u'face', u'suspens', u'final'] [u'woman', u'die', u'tasman', u'highway', u'crash'] [u'women', u'heart', u'risk', u'underestim'] [u'work', u'begin', u'hospit', u'upgrad'] [u'yuvraj', u'lift', u'india', u'wicket', u'victori'] [u'kill', u'afghan', u'clash'] [u'kill', u'typhoon', u'hit', u'japan'] [u'chief', u'head', u'channel'] [u'abus', u'alleg', u'princip', u'uphold'] [u'accc', u'dismiss', u'petrol', u'profit', u'claim'] [u'leader', u'start', u'plan', u'birthday', u'bash'] [u'advis', u'confid', u'compani', u'qualifi'] [u'agassi', u'davenport', u'reach'] [u'agforc', u'invit', u'blueprint', u'input'] [u'agshow', u'promis'] [u'ainsli', u'shop', u'centr', u'control'] [u'ambul', u'offic', u'work', u'ban'] [u'american', u'delight', u'agassi', u'blake', u'ginepri', u'reach'] [u'armstrong', u'marri', u'sheryl', u'crow'] [u'arroyo', u'surviv', u'impeach', u'attempt'] [u'ash', u'seri', u'best', u'langer', u'career'] [u'asylum', u'seeker', u'deport', u'breach', u'convent'] [u'aussi', u'draft', u'clark', u'cover', u'mcgrath'] [u'aust', u'famili', u'launch', u'search', u'houston'] [u'australia', u'lobbi', u'world'] [u'barcoo', u'face', u'rate', u'hike', u'budget'] [u'beazley', u'warn', u'telstra', u'sale'] [u'bendigo', u'group', u'trader', u'voic'] [u'brown', u'end', u'year', u'titl', u'drought'] [u'bundaberg', u'evid', u'review', u'virtual', u'inquiri'] [u'busi', u'activ', u'year'] [u'cabl', u'compani', u'fin', u'toxic', u'spill'] [u'better', u'monitor', u'mental', u'health'] [u'cassini', u'saturn', u'data', u'stun', u'scientist'] [u'cassisi', u'accept', u'fine', u'umpir', u'bump'] [u'caus', u'fatal', u'crash', u'unknown'] [u'centrelink', u'chang', u'improv', u'servic', u'govt'] [u'chernobyl', u'death', u'toll', u'expect'] [u'children', u'head', u'call', u'graphic', u'imag', u'limit'] [u'citrus', u'grower', u'feel', u'hurrican', u'impact'] [u'clean', u'tank'] [u'club', u'face', u'poki'] [u'commiss', u'welcom', u'investig'] [u'communiti', u'continu', u'push', u'sniffabl', u'fuel'] [u'compani', u'give', u'green', u'light', u'extend', u'power', u'station'] [u'concern', u'pollut', u'tyre', u'busi'] [u'consul', u'orlean', u'search', u'yield', u'result'] [u'cooper', u'director', u'cold', u'brewer'] [u'costello', u'announc', u'boost', u'aceh'] [u'costello', u'visit', u'aceh'] [u'cotton', u'grower', u'hold', u'better', u'price'] [u'council', u'admit', u'defeat', u'wind', u'turbin', u'fight'] [u'council', u'committe', u'push', u'batteri', u'point', u'heritag'] [u'council', u'reject', u'teralba', u'subdivis'] [u'council', u'telstra', u'cash', u'highway', u'upgrad'] [u'council', u'complain', u'minist', u'bridg'] [u'court', u'tell', u'murder', u'order'] [u'court', u'tripl', u'compani', u'fine', u'worker', u'death'] [u'crop', u'duster', u'spray', u'hit', u'group', u'aborigin'] [u'crop', u'dust', u'pilot', u'face', u'charg'] [u'crop', u'outlook', u'predict', u'better', u'time', u'farmer'] [u'crow', u'refus', u'surrend'] [u'crustacean', u'trap', u'permit', u'approv'] [u'reject', u'pont', u'critic'] [u'dept', u'reject', u'call', u'shark', u'cull'] [u'diver', u'search', u'murray', u'miss', u'teen'] [u'doctor', u'welcom', u'prevent', u'heart', u'diseas'] [u'dont', u'chang', u'thing', u'thompson', u'tell', u'king'] [u'dope', u'chief', u'back', u'french', u'armstrong', u'affair'] [u'dragon', u'shrug', u'weight', u'expect'] [u'egyptian', u'theatr', u'kill'] [u'engin', u'start', u'drain', u'orlean'] [u'england', u'paceman', u'jone', u'ash', u'decid'] [u'european', u'trade', u'subdu', u'market', u'close'] [u'worker', u'reject', u'compens', u'offer'] [u'farmer', u'angri', u'anti', u'terror', u'rule', u'fertilis'] [u'farmer', u'develop', u'urg', u'soil', u'eros'] [u'farmer', u'manag', u'debt', u'despit', u'drought'] [u'farmer', u'urg', u'assist', u'packag'] [u'father', u'drown', u'boy', u'releas', u'charg'] [u'fine', u'evad', u'target', u'sheriff', u'campaign'] [u'cat', u'readi', u'swan'] [u'footbal', u'club', u'help', u'drown', u'boy', u'famili'] [u'homicid', u'squad', u'detect', u'appoint', u'chifley'] [u'foul', u'play', u'unlik', u'medan', u'crash'] [u'free', u'properti', u'sell'] [u'galleri', u'turn', u'offer', u'kandinski'] [u'gaza', u'hous', u'explos', u'kill', u'wound'] [u'global', u'warm', u'effect', u'see', u'north'] [u'govt', u'follow', u'proper', u'process', u'deport', u'case'] [u'govt', u'tie', u'telstra', u'share', u'price', u'minchin'] [u'govt', u'pressur', u'identifi', u'taint', u'canola'] [u'govt', u'enforc', u'anti', u'smoke', u'law'] [u'govt', u'special', u'need', u'class'] [u'govt', u'urg', u'prevent', u'weed', u'outbreak'] [u'grain', u'farmer', u'want', u'biofuel', u'product', u'govt'] [u'great', u'lake', u'manag', u'seek', u'legal', u'advic'] [u'grenad', u'cotteslo', u'risk'] [u'griffith', u'land', u'council', u'investig'] [u'health', u'provid', u'fin', u'psychiatr', u'hospit'] [u'health', u'servic', u'test', u'ahead', u'popul', u'growth'] [u'hewitt', u'play', u'place'] [u'hiddink', u'unhappi', u'sloppi', u'socceroo'] [u'high', u'water', u'level', u'lead', u'quiet', u'trout', u'season', u'kick'] [u'highway', u'land', u'plane', u'short', u'fuel'] [u'home', u'loan', u'healthi', u'level'] [u'homicid', u'squad', u'question', u'father', u'drown', u'boy'] [u'honour', u'citizen', u'plead', u'guilti', u'attack', u'woman'] [u'hook', u'friend', u'collud', u'trial', u'court', u'hear'] [u'immigr', u'deport', u'return', u'asylum', u'seeker'] [u'india', u'set', u'condit', u'kashmir', u'troop', u'cut'] [u'indigen', u'australian', u'fuel', u'plea', u'canberra'] [u'indigen', u'obes', u'program', u'extend'] [u'indonesian', u'plane', u'crash', u'toll', u'hit'] [u'industri', u'action', u'privat', u'prison'] [u'iraq', u'charter', u'head', u'printer', u'unchang'] [u'israel', u'plan', u'expans', u'west', u'bank', u'settlement'] [u'come'] [u'itali', u'detain', u'australian', u'cocain', u'smuggl'] [u'servic', u'nearer', u'ravensthorp'] [u'jone', u'face', u'fit', u'test'] [u'joyc', u'want', u'teeth', u'telstra', u'regul'] [u'katrina', u'aftermath'] [u'katrina', u'survivor', u'critic', u'aust', u'govt', u'respons'] [u'katter', u'resist', u'joyc', u'advanc'] [u'kazaa', u'rule', u'spur', u'industri', u'song', u'swap', u'fight'] [u'kogan', u'creek', u'view', u'platform', u'offici', u'open', u'today'] [u'label', u'law', u'need', u'process', u'food'] [u'latest', u'inquest', u'leski', u'death', u'end'] [u'aim', u'prevent', u'sheep', u'fee', u'contamin'] [u'recal', u'wash', u'machin', u'dishwash'] [u'lockyer', u'bronco'] [u'sentenc', u'year', u'babi', u'manslaught'] [u'sob', u'court', u'admit', u'kill', u'babi'] [u'martian', u'dun', u'hold'] [u'matern', u'servic', u'cutback', u'huge', u'cost', u'rural'] [u'mayor', u'promis', u'gold', u'coast', u'cooper', u'water'] [u'medan', u'crash', u'survivor', u'tell', u'final', u'moment'] [u'minist', u'play', u'psych', u'unit', u'escap'] [u'mobil', u'deni', u'profit', u'alleg'] [u'mobil', u'morgu', u'orlean'] [u'liberian', u'schoolgirl', u'trade'] [u'extrem', u'view', u'question', u'hockey'] [u'mundin', u'confid', u'weigh', u'okay'] [u'neighbour', u'rescu', u'elder', u'aust', u'hurrican'] [u'orlean', u'polic', u'chief', u'laud', u'offic'] [u'contamin', u'canola'] [u'sight', u'high', u'petrol', u'price'] [u'word', u'victorian', u'orlean'] [u'polic', u'defend', u'hoax', u'investig'] [u'nurs', u'return', u'kimberley', u'assault'] [u'nurs', u'home', u'oper', u'hope', u'wage', u'offer'] [u'kenobi', u'cloak', u'fanci', u'dress', u'shop'] [u'oyster', u'grower', u'want', u'fund', u'review'] [u'oyster', u'region', u'forum', u'octob'] [u'pakistan', u'readi', u'australia', u'seri'] [u'park', u'mayor', u'seek', u'term'] [u'peac', u'tapestri', u'arriv', u'year', u'late'] [u'pierc', u'turn', u'tabl', u'henin', u'hardenn'] [u'outrag', u'telstra', u'comment'] [u'polic', u'attack', u'ireland', u'raid'] [u'polic', u'break', u'brawl'] [u'polic', u'probe', u'death', u'young', u'boy', u'melbourn'] [u'polic', u'road', u'sign', u'fatal', u'crash'] [u'port', u'bodi', u'prais', u'coal', u'berth', u'decis'] [u'prima', u'faci', u'evid', u'deputi', u'mayor'] [u'prison', u'offic', u'fear', u'return', u'jail', u'overcrowd'] [u'psychiatrist', u'face', u'year'] [u'psychiatrist', u'appeal', u'deregistr'] [u'abl', u'meet', u'hurrican', u'claim'] [u'racehors', u'map', u'guid', u'buyer'] [u'raikkonen', u'hop', u'alonso', u'blunder'] [u'ralph', u'project', u'demis', u'catastroph'] [u'report', u'whitewash', u'chernobyl', u'impact', u'greenpeac'] [u'research', u'hope', u'find', u'miss', u'peke'] [u'resid', u'fear', u'collieri', u'subdivis', u'risk'] [u'resourc', u'boom', u'leav', u'pastoralist', u'short', u'staff'] [u'retir', u'judg', u'overse', u'collaps', u'morri', u'inquiri'] [u'ricketson', u'lead', u'xiii'] [u'rixon', u'predict', u'oval', u'pitch', u'produc', u'result'] [u'rockhampton', u'woman', u'orlean', u'ordeal'] [u'rychart', u'win', u'honour'] [u'lone', u'teacher', u'plead', u'guilti'] [u'king', u'concern', u'rais', u'superior', u'inquest'] [u'king', u'crash', u'inquiri', u'begin'] [u'king', u'inquiri', u'find', u'mainten', u'fault'] [u'search', u'continu', u'miss'] [u'keep', u'busi', u'strong', u'wind', u'lash', u'perth'] [u'korea', u'troop', u'iraq'] [u'socceroo', u'sweat', u'world', u'draw'] [u'socceroo', u'world', u'play', u'off'] [u'soldier', u'heat', u'relat', u'death', u'avoid'] [u'solomon', u'confid', u'troubl', u'free', u'qualifi'] [u'south', u'coast', u'fish', u'limit', u'halv'] [u'south', u'west', u'prepar', u'storm'] [u'spring', u'bloom', u'spectacular', u'centr'] [u'storm', u'aftermath', u'danger', u'gippsland', u'road'] [u'stress', u'fractur', u'saint', u'fisher', u'season'] [u'strong', u'wind', u'damag', u'resort', u'south', u'west'] [u'studi', u'investig', u'bushfir', u'recoveri', u'process'] [u'submiss', u'wrap', u'hook', u'case'] [u'sulphur', u'emiss', u'investig', u'ill'] [u'superman', u'boost', u'gold', u'coast', u'economi'] [u'surf', u'life', u'save', u'program', u'defend', u'despit'] [u'system', u'failur', u'armi', u'train', u'protocol'] [u'debat', u'undermin', u'costello', u'labor'] [u'teenag', u'die', u'quad', u'bike', u'accid'] [u'telescop', u'function', u'despit', u'pullout'] [u'telstra', u'deni', u'breach'] [u'telstra', u'fail', u'stop', u'market', u'rise'] [u'telstra', u'feud', u'continu'] [u'telstra', u'refer', u'coverag', u'problem', u'watchdog'] [u'telstra', u'sale', u'doubt'] [u'telstra', u'sale', u'fund', u'indigen', u'program'] [u'thai', u'boat', u'fish', u'illeg', u'govt'] [u'thailand', u'aust', u'tsunami', u'victim'] [u'thousand', u'sign', u'anti', u'whale', u'petit'] [u'thurston', u'edg', u'john', u'dalli', u'race'] [u'tibet', u'council', u'object', u'chines', u'deleg', u'visit'] [u'treasuri', u'examin', u'turnbul', u'propos'] [u'umbakumba', u'school', u'incid'] [u'deni', u'colleg'] [u'union', u'launch', u'campaign', u'govt', u'health'] [u'union', u'seek', u'opposit', u'public', u'sector', u'job', u'assur'] [u'vanston', u'order', u'clark', u'legal', u'cost'] [u'farmer', u'confid', u'despit', u'rain'] [u'warn', u'prepar', u'final', u'curtain'] [u'wash', u'away', u'haul', u'river'] [u'watchdog', u'probe', u'telstra', u'profit', u'warn'] [u'water', u'compani', u'begin', u'sydney', u'access'] [u'webb', u'bid', u'season', u'aliv'] [u'wellington', u'choos', u'develop', u'tour'] [u'bush'] [u'whale', u'station', u'get', u'heritag', u'status'] [u'wit', u'admit', u'lie', u'royal', u'commiss'] [u'young', u'rep', u'visit', u'kempsey', u'jail'] [u'alloc', u'region', u'fight', u'salin'] [u'call', u'govt', u'promot', u'conserv'] [u'action', u'take', u'noisi', u'truck', u'stop'] [u'adelaid', u'count', u'showdown', u'semi'] [u'allianc', u'lobbi', u'marin', u'life'] [u'alloc', u'murray', u'valley', u'irrig', u'lift'] [u'analyst', u'predict', u'rat', u'stay', u'strong'] [u'andrew', u'defend', u'build', u'industri', u'control'] [u'angler', u'warn', u'measur', u'protect', u'spawn'] [u'angri', u'armstrong', u'consid', u'return', u'race'] [u'anti', u'depress', u'warn', u'issu', u'pregnant', u'women'] [u'arm', u'robber', u'sentenc', u'year', u'jail'] [u'armi', u'take', u'step', u'combat', u'heat', u'ill'] [u'astl', u'lead', u'final', u'victori', u'india'] [u'attitud', u'chang', u'need', u'rehabilit', u'judg'] [u'aust', u'cameraman', u'orlean'] [u'australia', u'safe', u'tourist', u'destin', u'survey'] [u'australian', u'hold', u'itali', u'drug', u'haul'] [u'australian', u'tell', u'orlean', u'devast'] [u'australian', u'workplac', u'agreement', u'adjourn'] [u'bank', u'miner', u'lead', u'market', u'higher'] [u'beatti', u'defend', u'bundaberg', u'inquiri', u'backflip'] [u'beatti', u'urg', u'clarifi', u'term', u'refer'] [u'gun', u'join', u'club', u'countri', u'court', u'action'] [u'tonnag', u'woodchip', u'predict', u'esper'] [u'bronco', u'accus', u'grappl', u'tackl', u'paranoia'] [u'bush', u'remain', u'sceptic', u'telstra', u'sale', u'guarante'] [u'bush', u'lead', u'inquiri'] [u'businesswoman', u'thief', u'addict', u'gambl', u'court', u'tell'] [u'butler', u'accus', u'stifl', u'poverti', u'reduct'] [u'cancer', u'fund', u'work', u'patient', u'transport'] [u'canowindra', u'farmer', u'donat', u'land', u'station'] [u'cashcard', u'retail', u'activ'] [u'children', u'hospit', u'remain', u'parkvill'] [u'china', u'death', u'toll', u'typhoon', u'talim', u'jump'] [u'chines', u'citi', u'ban', u'bald', u'shaggi', u'cabbi'] [u'citrus', u'canker', u'outbreak', u'impact', u'resid'] [u'claim', u'copyright', u'barramundi', u'fail'] [u'senat', u'unconvinc', u'petrol', u'sniff'] [u'coalit', u'tell', u'clean', u'mess', u'decid'] [u'command', u'tell', u'pride', u'king', u'crew'] [u'communiti', u'urg', u'respons'] [u'communiti', u'asham', u'school', u'violenc', u'incid', u'say'] [u'communiti', u'unsur', u'desalin', u'plant', u'propos'] [u'concern', u'tonga', u'struggl', u'fund', u'rise'] [u'speak', u'threaten', u'speci'] [u'costello', u'fear', u'hurrican', u'caus', u'iraq', u'fallout'] [u'costello', u'look', u'export', u'growth'] [u'costello', u'meet', u'indonesian', u'leader'] [u'costello', u'remain', u'tight', u'lip', u'leadership'] [u'cotton', u'bale', u'expect', u'smoulder', u'day'] [u'cotton', u'bale', u'destroy', u'gippsland'] [u'council', u'announc', u'tender', u'shepparton'] [u'cousin', u'focus', u'win', u'flag'] [u'cowboy', u'defenc', u'good', u'say', u'captain'] [u'cowboy', u'defenc', u'good', u'say', u'norton'] [u'crack', u'secret', u'life', u'spaghetti'] [u'crash', u'indonesia', u'fuel', u'problem'] [u'credit', u'card', u'trace', u'fail', u'turn', u'miss'] [u'critic', u'injur', u'teenag', u'lie'] [u'darwin', u'teen', u'appeal', u'murder', u'sentenc'] [u'deep', u'impact', u'expos', u'fragil', u'comet'] [u'demon', u'swap', u'tassi', u'gold', u'coast'] [u'derbi', u'win', u'gold', u'coast', u'gallop', u'return', u'home'] [u'doctor', u'grasp', u'english', u'question', u'coroni'] [u'dont', u'blame', u'lose', u'ash', u'say', u'pont'] [u'driver', u'die', u'semi', u'trailer', u'catch'] [u'drug', u'alcohol', u'blame', u'resort', u'misbehaviour'] [u'eagl', u'forward', u'say', u'worsfold'] [u'defend', u'sale', u'grand', u'final', u'ticket'] [u'econom', u'growth', u'bounc'] [u'elder', u'expat', u'tell', u'hurrican', u'horror'] [u'elder', u'confid', u'petrol', u'sniff', u'inquiri'] [u'electr', u'leav', u'video', u'product', u'hous'] [u'urg', u'farmer', u'dump', u'dead', u'anim'] [u'famili', u'reunit'] [u'farm', u'debt', u'level', u'increas'] [u'farmsaf', u'emphasis', u'need', u'care', u'atv'] [u'join', u'hunt', u'miss', u'australian'] [u'fear', u'fuel', u'cost', u'forc', u'countri', u'driver'] [u'fear', u'smoke', u'free', u'venu', u'cost', u'job'] [u'feder', u'hewitt', u'close', u'open', u'rematch'] [u'finnish', u'public', u'broadcast', u'strike'] [u'bond', u'exec', u'oat', u'custodi'] [u'green', u'fear', u'rock'] [u'mayor', u'consid', u'repres', u'bendigo', u'east'] [u'russian', u'leader', u'yeltsin', u'break'] [u'secur', u'chief', u'shoot', u'dead', u'gaza', u'strip'] [u'boat', u'catch', u'suspicion', u'illeg', u'fish'] [u'fuel', u'cost', u'threaten', u'swap', u'meet'] [u'hous', u'expect', u'elect', u'protest', u'meet'] [u'futur', u'food', u'label', u'law', u'decid', u'soon'] [u'giant', u'jellyfish', u'creation', u'take', u'souvenir'] [u'gilligan', u'actor', u'denver', u'die'] [u'gilligan', u'go'] [u'govt', u'dismiss', u'scar', u'gawler', u'matern'] [u'govt', u'drag', u'feet', u'solon', u'case', u'support'] [u'govt', u'powerless', u'eas', u'petrol', u'pain', u'say'] [u'govt', u'foreign', u'telstra', u'board'] [u'grass', u'hail', u'sourc', u'clean', u'energi'] [u'grazier', u'bear', u'brunt', u'higher', u'fuel', u'price'] [u'group', u'hit', u'refug', u'closur', u'critic'] [u'grower', u'tenterhook', u'foster', u'contract'] [u'hand', u'gel', u'help', u'famili', u'fight', u'stomach', u'ill'] [u'hec', u'doubl', u'year', u'opposit', u'say'] [u'hewitt', u'feder', u'open'] [u'hewitt', u'win', u'place'] [u'hillari', u'clinton', u'reject', u'bush', u'probe', u'katrina'] [u'holden', u'redund', u'demand'] [u'horticultur', u'develop', u'aborigin', u'land'] [u'hospit', u'say', u'treatment', u'wait', u'time', u'safe'] [u'hurrican', u'victim', u'better', u'texa', u'barbara', u'bush'] [u'indian', u'death', u'toll', u'enceph', u'pass'] [u'industri', u'watch', u'lettuc', u'leaf', u'blight'] [u'inquiri', u'review', u'region', u'transport', u'effici'] [u'investor', u'truth', u'telstra'] [u'iraq', u'presid', u'say', u'saddam', u'hang', u'time'] [u'jackson', u'write', u'singl', u'katrina', u'victim'] [u'jail', u'term', u'follow', u'child', u'porn', u'parliament'] [u'king', u'white', u'clash', u'freak', u'footi', u'say', u'sanderson'] [u'knee', u'problem', u'sidelin', u'hodg'] [u'labor', u'appli', u'heat', u'asic', u'open', u'telstra', u'probe'] [u'labor', u'turn', u'telstra', u'heat'] [u'legal', u'help', u'itali', u'charg', u'drug'] [u'lesli', u'deni', u'wear', u'burqa', u'favour'] [u'liber', u'urg', u'ethanol', u'blend', u'fuel'] [u'local', u'author', u'welcom', u'govt', u'support', u'fight'] [u'lockyer', u'confid', u'grappl', u'tackl', u'polic'] [u'clear', u'sieg', u'charg'] [u'mayor', u'appoint', u'develop', u'commiss', u'board', u'chief'] [u'mayor', u'order', u'forc', u'evacu', u'orlean'] [u'mayor', u'return', u'term', u'offic'] [u'mayor', u'wont', u'specul', u'road', u'signag', u'review'] [u'mcgrath', u'mend', u'jone'] [u'medicar', u'offer', u'exercis', u'rebat'] [u'miner', u'export', u'profit', u'soar'] [u'minist', u'move', u'protect', u'calv', u'whale'] [u'minist', u'order', u'piti', u'palestinian'] [u'minist', u'warn', u'aust', u'veget'] [u'mitsubishi', u'motor', u'seek', u'challeng'] [u'moimoi', u'suspend', u'match'] [u'mother', u'dead', u'boy', u'commit', u'institut'] [u'mother', u'desper', u'letterbox', u'plea', u'kidney'] [u'mother', u'polic', u'guard', u'boy', u'death'] [u'move', u'great', u'lake', u'council', u'infight'] [u'nation', u'galleri', u'accus', u'oper', u'secreci'] [u'nation', u'speak', u'telstra', u'sale'] [u'nation', u'want', u'revenu', u'petrol', u'price'] [u'nation', u'welcom', u'hazelwood', u'expans'] [u'nelson', u'deni', u'hec', u'fee', u'creat', u'overwhelm', u'debt'] [u'netbal', u'member'] [u'barley', u'varieti', u'unveil', u'agshow'] [u'zealand', u'rule', u'coalit', u'major'] [u'residenti', u'develop', u'foreshor', u'minist'] [u'notori', u'highway', u'stretch', u'claim', u'life'] [u'liber', u'deni', u'extremist', u'agenda'] [u'nurs', u'merci', u'health', u'come', u'truce'] [u'nurs', u'employ', u'reach', u'agreement'] [u'offici', u'punish', u'player', u'drunken'] [u'food', u'report', u'call', u'shake'] [u'olex', u'face', u'fine', u'pollut'] [u'opposit', u'want', u'govt', u'stop', u'yanga', u'station'] [u'outback', u'busi', u'lament', u'petrol', u'price'] [u'pakistani', u'presid', u'meet', u'kashmiri', u'separatist'] [u'palestinian', u'shoot', u'dead', u'near', u'gaza', u'settlement'] [u'histor', u'macquari', u'hous', u'mark'] [u'perth', u'petrol', u'price', u'reach', u'high'] [u'deni', u'cover', u'state', u'telstra'] [u'stand', u'telstra', u'manag', u'rebuk'] [u'polic', u'downplay', u'pilot', u'stunt'] [u'polic', u'investig', u'substat', u'tamper'] [u'polic', u'prepar', u'report', u'coron', u'girl', u'death'] [u'polic', u'reopen', u'highway', u'lane', u'fatal', u'crash'] [u'polic', u'seek', u'test', u'boy', u'death'] [u'polic', u'sampl', u'mother'] [u'poll', u'open', u'egypt', u'elect'] [u'premier', u'insist', u'cruis', u'ship', u'berth', u'benefit'] [u'presid', u'favour', u'egypt', u'go', u'poll'] [u'pressur', u'australia', u'say', u'warn'] [u'racehors', u'trainer', u'rail', u'track', u'flood'] [u'rat', u'stay'] [u'reef', u'industri', u'worth', u'aust', u'economi'] [u'research', u'institut', u'expand'] [u'govt', u'defend', u'secur', u'spend'] [u'senior', u'offic', u'spearhead', u'polic', u'review'] [u'sharehold', u'match', u'takeov', u'price', u'cooper'] [u'shire', u'unconvinc', u'aquif', u'tap', u'plan'] [u'skidoo', u'boost', u'snowi', u'rescu', u'servic'] [u'sleep', u'depriv', u'doctor', u'drink'] [u'sloppi', u'socceroo', u'fail', u'impress', u'hiddink'] [u'studi', u'find', u'infrastructur', u'need', u'attent'] [u'sulphur', u'dioxid', u'emiss', u'investig'] [u'sunraysia', u'grower', u'face', u'challeng', u'time', u'counsellor'] [u'surf', u'subject', u'school', u'rule'] [u'sven', u'confess', u'doubt', u'owen', u'match', u'fit'] [u'swan', u'look', u'forward'] [u'tamworth', u'residenti', u'develop', u'plan', u'unveil'] [u'tasmania', u'mourn', u'loss', u'elder', u'aunti', u'alma'] [u'teen', u'charg', u'hospit', u'park', u'stab'] [u'telstra', u'legisl', u'introduc'] [u'telstra', u'sale', u'go', u'parliament'] [u'terror', u'focus', u'hurrican', u'respons', u'minist'] [u'toowoomba', u'flower', u'carniv', u'bloom'] [u'seed', u'sharapova', u'meet', u'clijster', u'open'] [u'tough', u'season', u'face', u'mango', u'grower'] [u'tradit', u'landown', u'agre', u'subdivis'] [u'trujillo', u'approach', u'surpris', u'regul'] [u'famili', u'homeless', u'blaze'] [u'union', u'talk', u'beef', u'processor'] [u'union', u'join', u'push', u'kimberley', u'school'] [u'union', u'campaign', u'west', u'chang'] [u'union', u'seek', u'explan', u'detaine', u'work', u'claim'] [u'report', u'urg', u'global', u'chang', u'stem', u'poverti'] [u'uranium', u'mine', u'expect'] [u'blame', u'stifl', u'poverti', u'reduct'] [u'deal', u'iraq', u'hurrican', u'aftermath'] [u'offici', u'struggl', u'cope', u'corps'] [u'say', u'hundr', u'foreign', u'miss'] [u'dissect', u'katrina', u'respons'] [u'see', u'liberationist', u'disrupt', u'sheep'] [u'victorian', u'trace', u'baton', u'roug', u'motel'] [u'brace', u'wild', u'weather'] [u'govt', u'commit', u'irrig', u'review', u'question'] [u'govt', u'want', u'tougher', u'test', u'import', u'seed'] [u'wall', u'street', u'gain', u'long', u'weekend'] [u'water', u'cost', u'predict', u'rise', u'despit', u'nation'] [u'water', u'level', u'drop', u'orlean'] [u'weapon', u'seiz', u'confront', u'famili'] [u'winemak', u'view', u'expans', u'long', u'term', u'invest'] [u'wit', u'tell', u'cooper', u'trial', u'bribe'] [u'word', u'test', u'provid', u'alzheim', u'clue'] [u'workplac', u'studi', u'find', u'young', u'worker', u'exploit'] [u'work', u'begin', u'denison', u'canal', u'dredg'] [u'abattoir', u'worker', u'lose', u'job'] [u'abba', u'cancel', u'visit', u'ahead', u'gaza', u'pullout'] [u'accc', u'confid', u'fuel', u'price', u'fall'] [u'govt', u'urg', u'limit', u'develop', u'propos'] [u'administr', u'appoint', u'perth', u'meat', u'export'] [u'afghan', u'woman', u'elect', u'trail', u'escap'] [u'agassi', u'complet', u'stun', u'fight', u'beat', u'blake'] [u'appeal', u'wooli', u'bottl', u'shop', u'licenc'] [u'question', u'vail', u'telstra', u'disclosur'] [u'armstrong', u'train', u'discoveri', u'team', u'decemb'] [u'astronom', u'assess', u'comet', u'threat'] [u'drop', u'resourc', u'lose', u'grind'] [u'asylum', u'seeker', u'famili', u'grant', u'perman', u'resid'] [u'windfal', u'expos', u'legal', u'grey', u'area'] [u'australia', u'prepar', u'ash', u'final'] [u'author', u'donald', u'horn', u'die'] [u'azaria', u'chamberlain', u'dress', u'display'] [u'beatti', u'back', u'push', u'nation', u'health', u'inquiri'] [u'bennett', u'posit', u'johnss', u'warrington', u'stint'] [u'die', u'enter', u'burn', u'home'] [u'kill', u'hous'] [u'brogden', u'reassur', u'parti', u'support'] [u'bronwyn', u'bishop', u'blame', u'rumour', u'leak'] [u'foster', u'carer', u'exempt', u'welfar'] [u'church', u'pressur', u'council', u'sale', u'heritag'] [u'cleric', u'direct', u'muslim', u'leav'] [u'coastal', u'polici', u'hop', u'help', u'local', u'plan'] [u'colli', u'cotton', u'gin', u'sell'] [u'comment', u'seek', u'abalon', u'futur', u'plan'] [u'council', u'ask', u'help', u'fight', u'firewe'] [u'council', u'hear', u'remot', u'communiti', u'water', u'concern'] [u'councillor', u'want', u'ymca', u'help', u'council', u'loan'] [u'council', u'board', u'review', u'streamlin', u'exercis', u'clark'] [u'council', u'board', u'review', u'streamlin', u'exercis'] [u'council', u'govt', u'overhaul', u'western', u'transport', u'rout'] [u'council', u'interview', u'applic'] [u'court', u'disrupt', u'slow', u'aussi', u'releas'] [u'cowboy', u'readi', u'face', u'tiger'] [u'credit', u'union', u'member', u'support', u'strengthen', u'measur'] [u'crouch', u'urg', u'swan', u'fan'] [u'crow', u'port', u'semi', u'final', u'sell'] [u'crow', u'port', u'struggl', u'showdown', u'semi'] [u'darwin', u'resid', u'cash', u'malfunct'] [u'daughter', u'jail', u'parent', u'murder'] [u'dementieva', u'upset', u'davenport', u'reach', u'open', u'semi'] [u'doctor', u'sleep', u'mass', u'resign', u'decis'] [u'donald', u'horn', u'die'] [u'down', u'school', u'band', u'carniv', u'build'] [u'appear', u'fund', u'boost'] [u'draft', u'coastal', u'polici', u'draw', u'mix', u'respons'] [u'driver', u'switch', u'petrol', u'price', u'soar'] [u'ecstasi', u'user', u'prone', u'diseas'] [u'emerg', u'servic', u'recognis', u'effort'] [u'england', u'bright', u'start'] [u'england', u'pick', u'collingwood', u'ash', u'decid'] [u'england', u'stun', u'belfast', u'franc', u'ireland'] [u'england', u'suffer', u'humili', u'belfast'] [u'epilepsi', u'patient', u'prone', u'bipolar', u'disord'] [u'export', u'start', u'feel', u'pinch', u'high', u'fuel'] [u'fall', u'price', u'boost', u'market'] [u'famili', u'donat', u'rare', u'chines', u'artwork'] [u'famili', u'elat', u'aussi'] [u'farmer', u'scrutinis', u'telstra', u'sale'] [u'fatal', u'increas', u'south', u'coast', u'crash'] [u'fatigu', u'factor', u'miner', u'road', u'crash', u'studi'] [u'fear', u'govt', u'indigen', u'health', u'bodi'] [u'feder', u'minist', u'applaud', u'stanc', u'uranium'] [u'fiji', u'electr', u'worker', u'stage', u'strike'] [u'damag', u'onesteel', u'coke', u'plant'] [u'forens', u'show', u'help', u'crimin', u'studi'] [u'deputi', u'polic', u'chief', u'win', u'high', u'court'] [u'energex', u'chairman', u'stand', u'trial'] [u'health', u'inquiri', u'chief', u'take', u'part', u'swipe'] [u'decid', u'reviv', u'career'] [u'foster', u'sell', u'second', u'wine', u'subsidiari'] [u'fourth', u'person', u'charg', u'servic', u'station', u'robberi'] [u'fresh', u'lockyer', u'threat', u'say', u'bellami'] [u'fuel', u'price', u'stay', u'high', u'economist', u'say'] [u'fuel', u'watchdog', u'moot', u'boycott', u'respons', u'high', u'price'] [u'fund', u'reject', u'trash', u'fee', u'project'] [u'convers', u'car', u'rise'] [u'geelong', u'play', u'chapman', u'enright'] [u'gehrig', u'undecid', u'retir'] [u'genet', u'divers', u'concern', u'thoroughbr', u'industri'] [u'german', u'thief', u'catch', u'onlin', u'sale', u'victim'] [u'goat', u'meat', u'export', u'expand'] [u'govt', u'announc', u'help', u'abattoir', u'worker'] [u'govt', u'approv', u'cattl', u'transact', u'levi', u'increas'] [u'govt', u'drag', u'chain', u'militari', u'justic'] [u'govt', u'expedit', u'pluto', u'field', u'develop'] [u'govt', u'telstra', u'problem', u'opposit'] [u'govt', u'hope', u'retain', u'doctor', u'deal'] [u'govt', u'decis', u'roma', u'colleg', u'anger', u'local'] [u'govt', u'urg', u'push', u'biofuel', u'industri', u'eas'] [u'govt', u'consid', u'cloth', u'free', u'beach'] [u'govt', u'urg', u'fund', u'senior', u'legal', u'servic'] [u'drain', u'extend', u'wait', u'time'] [u'group', u'consid', u'class', u'action', u'swansea', u'bridg'] [u'group', u'warn', u'mass', u'shortfal'] [u'gunnedah', u'host', u'triathlon', u'time', u'trial'] [u'health', u'specialist', u'look', u'best', u'time'] [u'helicopt', u'crash', u'amid', u'hurrican', u'relief', u'effort'] [u'high', u'court', u'overturn', u'detaine', u'paedophil', u'rule'] [u'high', u'court', u'rule', u'emphasis', u'need', u'fair'] [u'holm', u'name', u'english', u'game', u'team'] [u'hoon', u'suburb', u'central', u'speed', u'limit'] [u'hop', u'forum', u'sway', u'govt'] [u'household', u'warn', u'spiral', u'fuel', u'cost'] [u'howard', u'defend', u'telstra', u'report', u'surfac'] [u'hurrican', u'katrina', u'report', u'diari'] [u'india', u'agre', u'boost', u'trade', u'fight', u'terror'] [u'inquest', u'hear', u'father', u'didnt', u'consult'] [u'inquiri', u'wouldnt', u'bring', u'petrol', u'price'] [u'insur', u'worst', u'case', u'scenario', u'bushfir', u'victim'] [u'israel', u'close', u'main', u'cross', u'egypt', u'gaza', u'border'] [u'juici', u'return', u'mango', u'grower'] [u'juri', u'hook', u'manslaught', u'case'] [u'katrina', u'fallout', u'prompt', u'iraq', u'exit', u'strategi'] [u'kimberley', u'galleri', u'stagger', u'local'] [u'land', u'near', u'acquir', u'highway', u'upgrad'] [u'legal', u'action', u'consid', u'noll', u'concert'] [u'letterbox', u'organ', u'donat', u'plea', u'illeg'] [u'lion', u'nathan', u'appeal', u'cooper', u'court', u'rule'] [u'lion', u'lose', u'backroom', u'stalwart'] [u'lithgow', u'divid', u'aquat', u'centr', u'develop'] [u'local', u'erect', u'warn', u'sign', u'highway'] [u'log', u'contractor', u'ponder', u'futur', u'demand'] [u'malaysia', u'order', u'increas', u'polio', u'immunis'] [u'charg', u'internet', u'contact', u'girl'] [u'die', u'motorcycl', u'crash'] [u'face', u'murder', u'trial', u'rank', u'death'] [u'plead', u'guilti', u'xmas', u'assault'] [u'maralinga', u'land', u'administr', u'stand'] [u'market', u'rat', u'dollar', u'jump', u'strong', u'figur'] [u'marsh', u'take', u'global', u'coach', u'role'] [u'mayor', u'claim', u'telstra', u'cabl'] [u'mccain', u'call', u'meet', u'ballarat', u'potato', u'farmer'] [u'mine', u'bodi', u'hail', u'tour', u'success'] [u'minist', u'hear', u'argument', u'woodchip'] [u'money', u'distribut', u'hurrican', u'victim'] [u'charg', u'lay', u'maitland'] [u'call', u'remot', u'defenc', u'staff'] [u'petit', u'parliament', u'health', u'servic'] [u'renew', u'hour', u'tannum', u'sand', u'polic'] [u'mudge', u'resid', u'lobbi', u'chang', u'council'] [u'multiplex', u'sharehold', u'class', u'action'] [u'mundin', u'readi', u'green'] [u'chang', u'child', u'protect', u'group'] [u'nation', u'jobless', u'rate', u'remain', u'steadi'] [u'nation', u'park', u'outlaw', u'unattend', u'camp', u'fire'] [u'nation', u'respond', u'biofuel', u'critic'] [u'nativ', u'titl', u'applic', u'lodg', u'propos', u'coal'] [u'wont', u'stop', u'industri', u'action', u'cfmeu'] [u'whale', u'regul', u'describ', u'knee', u'jerk'] [u'north', u'popular', u'intern', u'tourist'] [u'cooper', u'uranium', u'manag'] [u'oat', u'sentenc', u'signal', u'say', u'asic'] [u'price', u'domin', u'apec', u'financ', u'minist', u'meet'] [u'opposit', u'claim', u'fraud', u'egypt', u'poll'] [u'opposit', u'supermarket', u'evapor'] [u'soldier', u'fear', u'dead', u'india', u'bridg'] [u'oversea', u'tourist', u'flock', u'gold', u'coast'] [u'outlin', u'tougher', u'anti', u'terror', u'law'] [u'blame', u'telstra', u'report', u'inact', u'labor'] [u'polic', u'investig', u'semi', u'trailer', u'crash', u'death'] [u'polic', u'probe', u'perth', u'man', u'alleg', u'crime'] [u'portrait', u'citi', u'founder', u'restor'] [u'posit', u'england', u'deserv', u'ash', u'say', u'marsh'] [u'premier', u'accus', u'suppress', u'freedom', u'speech'] [u'princip', u'promis', u'cash', u'incent', u'indigen'] [u'team', u'develop', u'sleep', u'research', u'tool'] [u'rauhihi', u'friday', u'mind'] [u'reilli', u'ricciuto', u'bock', u'torney', u'return'] [u'ricki', u'pont', u'talk', u'maxwel'] [u'stewart', u'order', u'return', u'million', u'advanc'] [u'rudd', u'urg', u'govt', u'push', u'millennium', u'goal'] [u'damag', u'reef', u'research'] [u'saddam', u'confess', u'mass', u'kill', u'lawyer'] [u'savag', u'want', u'feder', u'abstain', u'telstra', u'vote'] [u'king', u'servic', u'delay', u'visit'] [u'search', u'canola'] [u'senat', u'open', u'debat', u'telstra', u'bill'] [u'senat', u'debat', u'telstra'] [u'senat', u'defer', u'petrol', u'sniff', u'inquiri', u'motion'] [u'sexual', u'assault', u'investig', u'imped', u'victim'] [u'slide', u'door', u'catch', u'swiss', u'thief'] [u'stem', u'cell', u'review', u'hear', u'continu', u'sydney'] [u'stock', u'fee', u'administr', u'recommend', u'liquid'] [u'straggler', u'remain', u'orlean', u'author'] [u'strauss', u'flintoff', u'steadi', u'england'] [u'studi', u'stress', u'fatigu', u'factor', u'miner', u'road'] [u'stun', u'agassi', u'fight', u'beat', u'blake'] [u'supercar', u'boss', u'celebr', u'bahrain', u'breakthrough'] [u'surgeon', u'see', u'hospit', u'fund', u'risk', u'patient'] [u'surgic', u'servic', u'review', u'bega', u'valley'] [u'sven', u'savag', u'insipid', u'england'] [u'talk', u'address', u'fund', u'countri', u'council'] [u'teacher', u'jail', u'boy'] [u'teacher', u'consid', u'industri', u'action', u'wake'] [u'teacher', u'uncomfort', u'return', u'school'] [u'telstra', u'reserv', u'dip', u'news', u'say', u'govt'] [u'jail', u'embassi', u'blast'] [u'thirti', u'dead', u'orlean', u'nurs', u'home'] [u'tighten', u'clone', u'definit', u'research', u'urg'] [u'tourism', u'author', u'step', u'mackay', u'market'] [u'tourist', u'guid', u'showcas', u'goldfield', u'region'] [u'tuna', u'farm', u'win', u'fund', u'boost'] [u'tweed', u'council', u'stretch', u'resourc', u'recycl'] [u'back', u'chief', u'critic', u'report'] [u'ukrain', u'presid', u'sack', u'govern'] [u'union', u'fear', u'loss', u'mitsubishi', u'resign'] [u'union', u'welcom', u'polic', u'station', u'upgrad'] [u'unit', u'confid', u'victori', u'upset'] [u'unseed', u'ginepri', u'reach', u'open', u'semi'] [u'uranium', u'price', u'hike', u'tip', u'lift'] [u'urban', u'score', u'countri', u'music', u'award', u'nomin'] [u'count', u'katrina', u'cost'] [u'seek', u'nato', u'help', u'katrina'] [u'vaughan', u'weigh', u'select', u'option'] [u'vegi', u'grower', u'urg', u'unit'] [u'warn', u'put', u'england', u'foot'] [u'warrior', u'appoint', u'cleari', u'head', u'coach'] [u'know', u'what', u'need', u'say', u'pont'] [u'whale', u'free', u'gold', u'coast', u'shark', u'net'] [u'whale', u'trap', u'gold', u'coast', u'shark', u'net'] [u'wheat', u'export', u'iraq'] [u'woolclass', u'urg', u'qualiti'] [u'xstrata', u'lead', u'close', u'decemb'] [u'yahoo', u'provid', u'data', u'lead', u'chines', u'journalist'] [u'school', u'roof', u'replac'] [u'upgrad', u'navi', u'defenc', u'system'] [u'detaine', u'hunger', u'strike', u'guantanamo'] [u'aborigin', u'seek', u'recognit', u'nativ', u'titl', u'reform'] [u'businesswoman', u'year', u'announc'] [u'adelaid', u'victori'] [u'adelaid', u'brain', u'victori'] [u'afghan', u'elect', u'face', u'multi', u'million', u'dollar'] [u'katrina', u'famili'] [u'prayer', u'hurrican', u'victim'] [u'aircraft', u'flight', u'battl', u'britain'] [u'alic', u'youth', u'worker', u'fear', u'petrol', u'sniffer', u'influx'] [u'alleg', u'reptil', u'smuggler', u'remand', u'custodi'] [u'ord', u'lower', u'telstra', u'share', u'slip'] [u'ambul', u'offic', u'await', u'talk'] [u'anti', u'terror', u'law', u'rais', u'polic', u'state', u'concern'] [u'appar', u'hunter', u'thompson', u'suicid', u'note', u'publish'] [u'aquanaut', u'long', u'swim', u'mankind'] [u'honour', u'wallabi', u'great'] [u'aussi', u'buckl', u'surg', u'singapor', u'lead'] [u'aust', u'surveil', u'team', u'iraq', u'mission'] [u'bail', u'suspect', u'drug', u'traffic'] [u'beach', u'goer', u'urg', u'stay', u'flag'] [u'bilbi', u'festiv', u'rais', u'endang', u'speci', u'profil'] [u'propos', u'extend', u'deadlin', u'bushfir'] [u'blind', u'driver', u'set', u'speed', u'record'] [u'brack', u'consid', u'tougher', u'anti', u'terror', u'propos'] [u'british', u'author', u'julian', u'barn', u'favourit', u'booker'] [u'british', u'medic', u'journal', u'savag', u'publish'] [u'buckalow', u'grazier', u'smith', u'die'] [u'build', u'cottag', u'site', u'bulldoz'] [u'burgoyn', u'late', u'ill', u'scare', u'port'] [u'burnett', u'council', u'vote', u'webcast', u'plan'] [u'busi', u'chamber', u'want', u'debnam', u'stanc'] [u'busi', u'group', u'pull', u'finland', u'trip'] [u'cabbi', u'receiv', u'high', u'tech', u'secur', u'camera'] [u'canker', u'affect', u'orchard', u'subdivid'] [u'cardin', u'pell', u'open', u'church'] [u'casa', u'investig', u'crop', u'duster', u'joke'] [u'cat', u'confid', u'turn', u'tabl', u'swan'] [u'caus', u'fatal', u'motorbik', u'crash', u'unknown'] [u'cereal', u'best', u'breakfast', u'waistlin'] [u'chef', u'serv', u'downhil', u'ski', u'record'] [u'china', u'defend', u'foreign', u'relat', u'rogu', u'state'] [u'clinic', u'misconduct', u'alleg', u'doctor'] [u'colin', u'powel', u'slam', u'katrina', u'effort'] [u'colosimo', u'lift', u'impress', u'guus', u'mcmahon'] [u'committ', u'hear', u'tell', u'speed', u'damag'] [u'convict', u'paedophil', u'die', u'jail'] [u'coron', u'call', u'allergi', u'train'] [u'councillor', u'urg', u'voter', u'consid', u'disput'] [u'court', u'pull', u'compani', u'properti', u'seminar', u'scam'] [u'court', u'recommend', u'law', u'peanut', u'butter', u'death'] [u'cowboy', u'play', u'final', u'advantag'] [u'creditor', u'seek', u'prioriti', u'green', u'administr'] [u'crew', u'abandon', u'whale', u'rescu', u'night'] [u'cycl', u'boss', u'wont', u'pursu', u'armstrong', u'dope'] [u'daili', u'stress', u'stop', u'breast', u'cancer', u'studi'] [u'davi', u'hero', u'swan', u'prevail'] [u'dead', u'man', u'children', u'pain', u'increas', u'employ'] [u'dengu', u'fever', u'outbreak', u'overwhelm', u'singapor'] [u'deniliquin', u'council', u'question', u'polic', u'payment'] [u'deputi', u'challeng', u'west', u'tamar', u'mayor'] [u'desalin', u'wont', u'solv', u'water', u'crisi', u'expert'] [u'detaine', u'claim', u'voluntari', u'work', u'exploit'] [u'detaine', u'work', u'voluntarili', u'vanston', u'say'] [u'develop', u'outlin', u'south', u'coast', u'vision'] [u'dole', u'project', u'improv', u'school', u'ground'] [u'eastern', u'distributor', u'toll', u'rise', u'cent'] [u'east', u'timores', u'refuge', u'grant', u'resid'] [u'econom', u'growth', u'figur', u'push', u'dollar', u'higher'] [u'econom', u'summit', u'build', u'busi', u'confid'] [u'elder', u'challeng', u'boat', u'harbour', u'land', u'sale'] [u'exchang', u'fault', u'list', u'proof', u'region', u'area', u'ignor'] [u'famili', u'leader', u'want', u'return', u'shark', u'siren'] [u'famili', u'friend', u'mourn', u'girl', u'kill', u'school', u'trip'] [u'feder', u'task', u'forc', u'target', u'build', u'sit'] [u'feder', u'set', u'hewitt', u'showdown'] [u'feedlot', u'seek', u'permiss', u'expand'] [u'field', u'trial', u'begin', u'feral', u'anim', u'poison'] [u'film', u'fundrais', u'medic', u'research'] [u'forc', u'evacu', u'begin', u'orlean'] [u'bond', u'execut', u'releas', u'prison'] [u'forum', u'consid', u'report', u'recommend'] [u'fossil', u'reveal', u'prehistor', u'fli', u'giant'] [u'foster', u'carer', u'urgent', u'demand', u'queensland'] [u'freight', u'compani', u'worri', u'rise', u'fuel', u'cost'] [u'fuel', u'price', u'put', u'communiti', u'risk', u'say'] [u'fulham', u'prison', u'staff', u'begin', u'industri', u'action'] [u'fund', u'alloc', u'school', u'upgrad'] [u'germani', u'russia', u'seal', u'billion', u'pipelin', u'deal'] [u'gippsland', u'drought', u'decis'] [u'googl', u'name', u'internet', u'found', u'father', u'chief'] [u'govt', u'accus', u'anti', u'terror', u'divers', u'tactic'] [u'govt', u'consid', u'allow', u'overcom', u'rural', u'doctor'] [u'govt', u'defend', u'spend', u'packag', u'sack'] [u'govt', u'rule', u'fuel'] [u'govt', u'seek', u'doctor'] [u'govt', u'anti', u'terror', u'measur', u'reason'] [u'govt', u'urg', u'reveal', u'petrol', u'windfal', u'plan'] [u'govt', u'urg', u'rule', u'nowingi', u'nuclear', u'dump'] [u'govt', u'urg', u'sort', u'marin', u'park', u'fish', u'bungl'] [u'grain', u'grower', u'alert', u'leaf', u'diseas'] [u'grape', u'grower', u'continu', u'nation', u'committe', u'push'] [u'great', u'darl', u'pipelin', u'tender', u'call'] [u'grower', u'like', u'reject', u'second', u'mccain', u'offer'] [u'hanson', u'petit', u'premier', u'damag'] [u'hantuchova', u'bhupathi', u'claim', u'mix', u'crown'] [u'hazard', u'wast', u'export', u'option', u'danger'] [u'health', u'group', u'local', u'issu'] [u'helicopt', u'widen', u'search', u'miss'] [u'hewitt', u'dig', u'deep', u'book', u'semi', u'spot'] [u'hewitt', u'face', u'major', u'hurdl', u'feder'] [u'high', u'fuel', u'price', u'wipe', u'farmer', u'profit'] [u'highway', u'group', u'seek', u'feder', u'fund', u'assur'] [u'histor', u'sydney', u'cinema', u'win', u'protect'] [u'holiday', u'crackdown', u'target', u'tire', u'speed', u'driver'] [u'indigen', u'famili', u'support', u'servic', u'launch'] [u'indigen', u'heart', u'diseas', u'rate', u'highest'] [u'interim', u'deal', u'see', u'hospit', u'bed', u'reopen'] [u'interview', u'shane', u'warn', u'andrew', u'strauss'] [u'island', u'team', u'await', u'holiday', u'teen'] [u'isra', u'court', u'approv', u'raze', u'gaza', u'settler'] [u'jakara', u'bomb', u'victim', u'rememb'] [u'joyc', u'telstra', u'doubt', u'return'] [u'kalumburu', u'visit', u'challeng', u'polic', u'minist'] [u'kelso', u'rise', u'ash', u'eisteddfod'] [u'koutoufid', u'name', u'blue', u'best'] [u'labor', u'seek', u'asia', u'region', u'bird', u'forum'] [u'land', u'sale', u'boost', u'tropic', u'timber', u'industri'] [u'langer', u'hayden', u'steer', u'australia', u'lunch'] [u'langer', u'lead', u'australian', u'repli'] [u'liber', u'push', u'detail', u'shack', u'owner'] [u'littbarski', u'face', u'tough', u'striker'] [u'local', u'exchang', u'telstra', u'worst'] [u'lockyer', u'look', u'sharp', u'bennett'] [u'mackay', u'perman', u'continu', u'takeov'] [u'charg', u'cannabi', u'seiz', u'drug', u'raid'] [u'fin', u'destroy', u'dun'] [u'kill', u'head', u'crash'] [u'mayor', u'urg', u'quick', u'releas', u'bushfir', u'report'] [u'mcguir', u'signal', u'free', u'match'] [u'memori', u'servic', u'honour', u'student'] [u'minist', u'bypass', u'highway', u'upgrad', u'summit'] [u'miss', u'australian', u'releas', u'jail'] [u'seek', u'answer', u'exclus', u'island'] [u'muslim', u'group', u'attack', u'howard', u'anti', u'terror', u'plan'] [u'extinguish', u'cut', u'wall'] [u'law', u'wont', u'deter', u'terrorist', u'beazley'] [u'newcastl', u'feder', u'magistr', u'take', u'post'] [u'orlean', u'pressur', u'leav'] [u'rule', u'protect', u'caravan', u'park', u'resid'] [u'news', u'corp', u'expand', u'internet', u'portfolio'] [u'northern', u'exchang', u'worst', u'worst', u'list'] [u'north', u'shore', u'granni', u'killer', u'dead'] [u'consid', u'advic', u'allergi', u'train'] [u'opposit', u'leader', u'controversi', u'ahead', u'poll'] [u'object', u'spong', u'farm', u'unlik'] [u'appropri', u'telstra', u'debat'] [u'opposit', u'describ', u'telstra', u'inquiri', u'joke'] [u'orang', u'exchang', u'countri', u'worst', u'crean'] [u'pearc', u'citi', u'reviv', u'derbi', u'test'] [u'peta', u'end', u'benetton', u'campaign'] [u'planet', u'provid', u'rare', u'treat', u'stargaz'] [u'prove', u'terror', u'law', u'help', u'stanhop'] [u'rule', u'petrol', u'excis'] [u'polic', u'allianc', u'tackl', u'driver', u'fatigu'] [u'polic', u'hunt', u'pair', u'geelong', u'shoot'] [u'polic', u'probe', u'fatal', u'shoot', u'geelong'] [u'powel', u'regret', u'speech', u'iraq', u'wmds'] [u'premier', u'reach', u'deal', u'underpay', u'vmos'] [u'govt', u'urg', u'revers', u'uranium'] [u'railcorp', u'backtrack', u'platform', u'ticket'] [u'record', u'season', u'boost', u'truffl', u'industri'] [u'report', u'highlight', u'geelong', u'port', u'contribut'] [u'riverland', u'meet', u'consid', u'labour', u'shortag'] [u'robot', u'child', u'aid', u'hospit', u'train', u'program'] [u'ruddock', u'dismiss', u'anti', u'terror', u'fear'] [u'sailor', u'pluck', u'ground', u'yacht'] [u'sale', u'legisl', u'swamp', u'telstra', u'warn'] [u'salmon', u'produc', u'kick', u'start', u'batch'] [u'scientist', u'give', u'ahead', u'dual', u'mother', u'embryo'] [u'senat', u'slam', u'telstra', u'inquiri', u'farc'] [u'senior', u'german', u'master', u'content'] [u'servic', u'mark', u'anniversari', u'embassi', u'attack'] [u'assault', u'teacher', u'lose', u'jail', u'term', u'appeal'] [u'sharehold', u'declar', u'telstra', u'interest'] [u'sheikh', u'deni', u'question', u'sept', u'event'] [u'wont', u'movi', u'world', u'perform'] [u'sieg', u'compens', u'polic'] [u'signag', u'improv', u'tweed', u'valley', u'flood', u'awar'] [u'unscath', u'plane', u'crash'] [u'resid', u'refus', u'leav', u'katrina', u'clean'] [u'murder', u'militari', u'chief', u'releas'] [u'south', u'coast', u'fishermen', u'shape', u'industri', u'direct'] [u'state', u'territori', u'leader', u'baulk', u'anti', u'terror'] [u'stepdad', u'guilti', u'sexual', u'relat', u'girl'] [u'stirl', u'question', u'time', u'anti', u'terror', u'law'] [u'strong', u'quak', u'hit'] [u'subdu', u'profit', u'predict', u'push', u'market'] [u'sunshin', u'coast', u'kiwi', u'destin'] [u'tafe', u'downgrad', u'decis'] [u'takeov', u'panel', u'clear', u'toll', u'patrick'] [u'tarle', u'make', u'labor', u'worst', u'telephon', u'exchang', u'list'] [u'teacher', u'jail', u'term', u'outrag', u'victim', u'famili'] [u'teacher', u'push', u'clear', u'rule', u'deal'] [u'technic', u'campus', u'develop', u'tandem'] [u'teenag', u'bash', u'victim', u'die'] [u'telephon', u'exchang', u'fail', u'perform', u'test'] [u'telstra', u'exchang', u'fault', u'see'] [u'telstra', u'play', u'faulti', u'exchang', u'list'] [u'telstra', u'move', u'senat', u'inquiri'] [u'termin', u'evacu', u'disrupt', u'flight'] [u'territori', u'get', u'firearm', u'sniffer'] [u'tiger', u'rampant', u'cowboy'] [u'tight', u'match', u'continu'] [u'citizen', u'suggest', u'contain', u'refund'] [u'turnbul', u'seek', u'lifelong', u'pigeonhol'] [u'union', u'hope', u'prison', u'disput', u'resolv'] [u'rais', u'alarm', u'death', u'squad', u'tortur', u'iraq'] [u'vanston', u'cut', u'villawood', u'razor', u'wire', u'amid', u'protest'] [u'violenc', u'teacher', u'live'] [u'warn', u'dismiss', u'oval', u'retir', u'talk'] [u'warn', u'take', u'wicket', u'fifth', u'ash', u'test'] [u'warn', u'recommend', u'potassium', u'tablet'] [u'seek', u'feder', u'fund', u'fisheri', u'patrol'] [u'westpac', u'cut', u'home', u'loan', u'rat'] [u'whale', u'catch', u'craypot', u'line', u'coast'] [u'women', u'saddl', u'breast', u'cancer', u'fundrais'] [u'women', u'refug', u'closur', u'worri', u'doc'] [u'word', u'local', u'law', u'upset', u'ratepay'] [u'worker', u'ralli', u'canadian', u'asbesto', u'export'] [u'workshop', u'shape', u'desert', u'tourism', u'cooper'] [u'world', u'bank', u'help', u'solomon', u'busi', u'advic'] [u'world', u'trade', u'talk', u'jeopardi'] [u'zimbabw', u'set', u'graft', u'bust', u'commiss'] [u'afghan', u'defenc', u'minist', u'escap', u'assassin'] [u'reject', u'graffiti', u'websit', u'critic'] [u'airport', u'bodi', u'back', u'anti', u'terror', u'plan'] [u'ambiti', u'global', u'vaccin', u'program', u'launch'] [u'anim', u'human', u'organ', u'transplant', u'near', u'realiti'] [u'armstrong', u'boost', u'support', u'legal'] [u'aussi', u'triathlet', u'perform', u'japan'] [u'aust', u'embassi', u'bomb', u'victim', u'wait', u'italian'] [u'australia', u'pakistan', u'match', u'tour'] [u'australia', u'skipper', u'haddin', u'tout', u'test', u'prospect'] [u'australian', u'tell', u'louisiana', u'prison', u'nightmar'] [u'autism', u'group', u'concern', u'lack', u'govt', u'access'] [u'back', u'uranium', u'mine'] [u'backpack', u'airlift', u'brisban', u'fatal'] [u'backpack', u'kill', u'bundaberg', u'crash'] [u'balloon', u'fiesta', u'float', u'fund', u'request'] [u'beatti', u'await', u'advic', u'hanson', u'petit'] [u'brandi', u'tell', u'southern', u'colleagu', u'unit'] [u'britain', u'nake', u'rambler', u'strip', u'liberti'] [u'bryan', u'open', u'men', u'doubl'] [u'bundaberg', u'accid', u'kill', u'injur'] [u'canola', u'field', u'trial', u'safe', u'contamin'] [u'seek', u'suspici', u'death', u'investig'] [u'championship', u'leader', u'belgian'] [u'civil', u'liberti', u'sacrific', u'head'] [u'clijster', u'step', u'closer', u'grand', u'slam', u'dream'] [u'clijster', u'win', u'crack', u'grand', u'slam', u'titl'] [u'legal', u'block', u'orlean', u'censorship'] [u'croatia', u'prepar', u'crime', u'case', u'perth'] [u'crow', u'target', u'eagl', u'demolit', u'derbi'] [u'crow', u'target', u'power', u'midfield'] [u'davi', u'play', u'win', u'snap'] [u'debnam', u'call', u'mini', u'budget'] [u'debt', u'financ', u'offer', u'get', u'tom', u'gulli'] [u'defenc', u'contract', u'boost', u'economi'] [u'despotovski', u'fire', u'glori', u'victori'] [u'dismay', u'greet', u'cottag', u'decis'] [u'dragon', u'surviv', u'shark', u'scare'] [u'dragon', u'wari', u'inconsist', u'shark'] [u'dredg', u'damag', u'keep', u'port', u'phillip', u'head', u'limit'] [u'drought', u'farmer', u'feel', u'fuel', u'price', u'pinch'] [u'dubai', u'plan', u'citi', u'wonder', u'world', u'replica'] [u'effici', u'home'] [u'farmer', u'tell', u'stop', u'pick', u'telstra'] [u'fuel', u'toll', u'hike', u'affect', u'incom', u'earner', u'ncoss'] [u'fund', u'chang', u'wont', u'affect', u'fisheri', u'patrol'] [u'fund', u'open', u'coast', u'illeg', u'fish', u'say'] [u'german', u'brew', u'knockout', u'beer'] [u'govt', u'move', u'enabl', u'levi', u'waiver', u'investor'] [u'govt', u'stadium', u'decis', u'birney'] [u'groper', u'studi', u'ensur', u'emblem', u'surviv'] [u'hayden', u'hit', u'fight', u'centuri'] [u'highway', u'pedestrian', u'kill', u'accid'] [u'honey', u'heal', u'qualiti', u'stump', u'scientist'] [u'hurrican', u'anger', u'fade', u'aussi', u'return', u'home'] [u'hurrican', u'death', u'toll', u'lower', u'initi'] [u'hurrican', u'ophelia', u'turn', u'coastlin'] [u'illeg', u'fish', u'suspect', u'arriv', u'hobart'] [u'give', u'zimbabw', u'chanc', u'shape'] [u'interview', u'justin', u'langer'] [u'iraqi', u'forc', u'launch', u'attack', u'afar'] [u'isra', u'armi', u'gaza', u'base', u'empti', u'flatten'] [u'japan', u'go', u'poll'] [u'japan', u'miyazaki', u'get', u'golden', u'lion', u'venic'] [u'joyc', u'reconsid', u'telstra', u'sale', u'support'] [u'joyc', u'undecid', u'telstra'] [u'katrina', u'emerg', u'respons', u'head', u'replac'] [u'king', u'hold', u'hawk'] [u'king', u'hold', u'hawk', u'grand', u'final', u'rematch'] [u'knight', u'shock', u'marin', u'gosford'] [u'labor', u'face', u'uphil', u'battl', u'chandler', u'hinchliff'] [u'langer', u'eye', u'australia', u'tighten', u'grip'] [u'legal', u'advic', u'rule', u'morri', u'rule', u'appeal', u'beatti'] [u'liber', u'parti', u'claim', u'brisban', u'elect'] [u'liber', u'fund', u'brogden', u'staff', u'payout'] [u'mari', u'contrari', u'claim', u'dementieva'] [u'maximus', u'upbeat', u'ahead', u'stock', u'float'] [u'mcdonald', u'recount', u'jail', u'nightmar'] [u'mclaren', u'sweep', u'belgian', u'qualifi'] [u'mekong', u'delta', u'flood', u'forc', u'evacu'] [u'melbourn', u'race', u'half', u'time', u'lead'] [u'merck', u'vow', u'fight', u'vioxx', u'suit'] [u'mubarak', u'win', u'egyptian', u'presidenti', u'vote'] [u'orlean', u'death', u'toll', u'lower', u'think'] [u'newton', u'nation'] [u'orford', u'inspir', u'storm', u'final'] [u'orford', u'inspir', u'storm', u'victori'] [u'organis', u'defend', u'finnish', u'pulp', u'studi', u'trip'] [u'paper', u'mubarak', u'ahead', u'egypt', u'vote'] [u'pierc', u'ralli', u'reach', u'open', u'final'] [u'play', u'delay', u'oval'] [u'urg', u'prevent', u'stymi', u'poverti', u'plan'] [u'polic', u'acquit', u'right', u'abus', u'papua'] [u'polic', u'recov', u'worth', u'steal', u'cigarett'] [u'doctor', u'urg', u'accept', u'genuin', u'offer'] [u'raikkonen', u'fastest', u'wash'] [u'rann', u'signal', u'support', u'counter', u'terror', u'plan'] [u'rescu', u'crew', u'fail', u'tangl', u'whale'] [u'rescuer', u'confid', u'free', u'whale', u'catch'] [u'rural', u'doctor', u'question', u'recruit', u'drive'] [u'sack', u'ukrainian', u'hit'] [u'studi', u'find', u'diabet', u'natur', u'defenc'] [u'scientist', u'unveil', u'plan', u'quiet', u'fli', u'wing'] [u'scott', u'strike', u'distanc', u'michael'] [u'sehwag', u'gambhir', u'dravid', u'score', u'centuri', u'india'] [u'senat', u'need', u'telstra', u'debat', u'delay', u'green'] [u'kill', u'kashmir', u'milit', u'target', u'famili'] [u'socceroo', u'hop', u'luck', u'play', u'draw'] [u'suspect', u'illeg', u'fish', u'vessel'] [u'tander', u'lead', u'qualifi', u'sandown'] [u'research', u'trail', u'hydro', u'car'] [u'tcci', u'turn', u'colleg', u'board', u'post'] [u'telstra', u'execut', u'rise', u'disgrac'] [u'telstra', u'packag', u'delight', u'scullion'] [u'tiger', u'contend', u'murray'] [u'time', u'australia', u'say', u'langer'] [u'sheen', u'benji', u'marshal', u'interview'] [u'travel', u'take', u'breather', u'darwin'] [u'darwin', u'fatal', u'accid', u'investig'] [u'germani', u'senior', u'slip'] [u'umbakumba', u'council', u'defend', u'island', u'reput'] [u'fund', u'african', u'countri', u'face', u'disast'] [u'bomb', u'iraqi', u'town', u'report'] [u'militari', u'bar', u'media', u'katrina', u'corps', u'recoveri'] [u'step', u'offens', u'near', u'syrian', u'border'] [u'work', u'annan', u'despit', u'food'] [u'wall', u'street', u'shrug', u'katrina', u'slowdown', u'fear'] [u'weather', u'halt', u'australia', u'charg'] [u'telstra', u'penni'] [u'suspect', u'milit', u'kill', u'afghanistan'] [u'road', u'toll', u'hit', u'doubl', u'figur'] [u'ratifi', u'australia', u'entri', u'asia'] [u'afghanistan', u'shoot', u'assassin', u'attempt'] [u'agassi', u'advanc', u'open', u'final'] [u'ageless', u'agassi', u'advanc', u'final'] [u'attack', u'like', u'week', u'final'] [u'qaeda', u'plot', u'kill', u'blair', u'polic', u'chief'] [u'apprentic', u'celebr', u'train', u'award'] [u'aussi', u'doubl', u'world', u'triathlon', u'champ'] [u'aussi', u'urg', u'inspir', u'wwii'] [u'backpack', u'accid', u'investig', u'focus'] [u'bangladesh', u'polic', u'raid', u'explos', u'suspect'] [u'bat', u'sourc', u'sar'] [u'baxter', u'detaine', u'attempt', u'suicid', u'scuffl'] [u'beatti', u'address', u'labor', u'faith', u'bathurst'] [u'beazley', u'call', u'practic', u'terror', u'fight'] [u'border', u'close', u'mayor', u'resign', u'troop', u'attack', u'iraqi'] [u'buchanan', u'contract', u'talk', u'hold', u'ash'] [u'bush', u'alli', u'secur', u'post', u'katrina', u'rebuild'] [u'bush', u'plea', u'uniti'] [u'bush', u'recal', u'sept', u'plea', u'uniti'] [u'bush', u'rat', u'time'] [u'celta', u'shock', u'slack', u'real', u'madrid'] [u'chelsea', u'capitalis', u'arsenal', u'unit', u'falter'] [u'civilian', u'shoot', u'belfast', u'loyalist', u'unrest'] [u'clijster', u'claim', u'open', u'crown'] [u'clijster', u'win', u'open'] [u'communiti', u'access', u'lack', u'woden', u'plan', u'green'] [u'coonan', u'offer', u'reassur', u'telstra', u'fund'] [u'crew', u'resum', u'search', u'tangl', u'whale'] [u'doctor', u'seek', u'broader', u'hospit', u'inquiri'] [u'driver', u'abandon', u'move', u'polic', u'pursuit'] [u'eel', u'good', u'man'] [u'egyptian', u'troop', u'deploy', u'gaza', u'border'] [u'england', u'fan', u'sing', u'rain', u'aussi', u'charg'] [u'feder', u'conquer', u'hewitt'] [u'feder', u'open', u'final'] [u'govt', u'urg', u'address', u'rural', u'age', u'care'] [u'flintoff', u'hoggard', u'halt', u'australia', u'progress'] [u'flintoff', u'hoggard', u'rout', u'australia'] [u'forecast', u'right', u'dairi', u'farmer', u'delight'] [u'foster', u'carer', u'payment', u'link'] [u'cowboy', u'tale', u'take', u'home', u'golden', u'lion'] [u'govt', u'firm', u'telstra', u'fund'] [u'govt', u'weigh', u'anti', u'terror', u'sunset', u'claus'] [u'graffiti', u'recruit', u'websit', u'resurrect', u'opposit'] [u'hook', u'juri', u'reach', u'verdict'] [u'howard', u'push', u'trade', u'solut', u'poverti'] [u'indonesia', u'ground', u'plan', u'fatal', u'crash'] [u'indonesian', u'fishermen', u'detain', u'broom'] [u'inter', u'trip', u'milan', u'walk', u'tall'] [u'interview', u'andrew', u'flintoff'] [u'interview', u'craig', u'bellami', u'wayn', u'bennett'] [u'interview', u'matthew', u'hayden', u'justin', u'langer'] [u'interview', u'nathan', u'brown'] [u'iraq', u'govt', u'take', u'rebel', u'town'] [u'israel', u'okay', u'gaza', u'pullout'] [u'israel', u'leav', u'gaza', u'synagogu', u'intact', u'pullout'] [u'italian', u'report', u'safe', u'gaza', u'abduct'] [u'jackadgeri', u'worst', u'phone', u'exchang', u'surpris'] [u'jet', u'hold', u'sydney'] [u'joey', u'inspir', u'warrington'] [u'joyc', u'reconsid', u'telstra', u'posit'] [u'joyc', u'seek', u'time', u'telstra'] [u'katrina', u'damag', u'tip', u'billion'] [u'kearn', u'slater', u'fit', u'race', u'storm'] [u'koizumi', u'pois', u'elect'] [u'koizumi', u'victori', u'predict', u'japanes', u'poll'] [u'lownd', u'take', u'sandown'] [u'arrest', u'adelaid', u'sieg'] [u'mcewen', u'warm', u'world', u'pari', u'brussel'] [u'minardi', u'boss', u'stoddart', u'leav'] [u'miss', u'whyalla', u'boy', u'safe'] [u'hotel', u'need', u'pace', u'tourism'] [u'ship', u'cruis', u'darwin'] [u'muslim', u'communiti', u'express', u'concern', u'anti'] [u'muslim', u'leader', u'gather', u'anti', u'terror', u'summit'] [u'damag', u'earthquak', u'shake', u'aceh'] [u'drought', u'zone', u'eas'] [u'trial', u'singl', u'school', u'class'] [u'offici', u'normal', u'return', u'orlean'] [u'open', u'defi', u'england', u'weather'] [u'ozhelp', u'receiv', u'suicid', u'prevent', u'award'] [u'park', u'time', u'chang', u'benefit', u'busi'] [u'petrol', u'price', u'tip', u'peak'] [u'philip', u'ruddock', u'say', u'govern'] [u'picnick', u'celebr', u'author', u'scott', u'life'] [u'put', u'case', u'anti', u'terror', u'law'] [u'poll', u'close', u'japan'] [u'popul', u'growth', u'decid', u'pool', u'plan'] [u'post', u'match', u'interview', u'timana', u'tahu', u'nathan'] [u'prison', u'offic', u'threaten', u'block', u'secur', u'area'] [u'protest', u'decri', u'peac', u'activist', u'arrest'] [u'reliev', u'hayden', u'relish', u'oval'] [u'religi', u'minor', u'suffer', u'fallout'] [u'ricciuto', u'talk', u'crow', u'chanc'] [u'rise', u'petrol', u'price', u'sound', u'death', u'knell', u'road'] [u'talk', u'crow', u'chanc'] [u'saudi', u'king', u'slap', u'hand', u'kiss'] [u'scott', u'grab', u'glori', u'singapor'] [u'septemb', u'victim', u'rememb', u'silenc'] [u'shop', u'centr', u'open', u'caus', u'airport', u'delay'] [u'tourist', u'hospit', u'minibus', u'crash'] [u'slam', u'glori', u'gutsi', u'clijster'] [u'socceroo', u'host', u'second', u'play'] [u'suspect', u'illeg', u'fish', u'crew', u'face', u'question'] [u'sydney', u'water', u'hail', u'leak', u'reduct'] [u'taipan', u'triumphant', u'north', u'queensland', u'derbi'] [u'isol', u'increas', u'risk', u'suicid', u'lifelin'] [u'tasmanian', u'rout', u'bolster', u'jetstar', u'growth'] [u'tast', u'uniqu', u'person'] [u'teacher', u'extra', u'train', u'day'] [u'telstra', u'trust', u'plan', u'woefulli', u'inadequ', u'labor'] [u'hurt', u'light', u'plane', u'mishap'] [u'toothfish', u'haul', u'focus', u'cambodian', u'boat'] [u'tougher', u'boat', u'test', u'reduc', u'accid'] [u'typhoon', u'hit', u'eastern', u'china'] [u'activist', u'arrest', u'visa', u'revok'] [u'back', u'katrina', u'media'] [u'volatil', u'elector', u'warn', u'politician'] [u'weather', u'aid', u'england'] [u'tonn', u'toothfish', u'cambodian', u'vessel'] [u'forcibl', u'sterilis', u'china', u'report'] [u'activist', u'arrest', u'prompt', u'question', u'secur'] [u'afghanistan', u'disqualifi', u'elect', u'candid'] [u'alic', u'spring', u'festiv', u'director', u'wont', u'stay'] [u'alien', u'fingleton', u'return', u'legal', u'fold'] [u'qaeda', u'europ', u'vow', u'aveng', u'slay', u'muslim'] [u'armidal', u'offic', u'sell'] [u'dead', u'typhoon', u'sweep', u'eastern'] [u'aussi', u'brisco', u'hospitalis', u'indi', u'crash'] [u'australia', u'hop', u'sunshin'] [u'australia', u'pray', u'warn', u'miracl'] [u'award', u'recognis', u'ambul', u'offic', u'effort'] [u'deni', u'wrongdo', u'iraq', u'food', u'program'] [u'baxter', u'visit', u'prompt', u'schoolgirl', u'cross', u'countri', u'ride'] [u'bear', u'focus', u'tough', u'grand', u'final', u'clash'] [u'bear', u'lion', u'grand', u'final', u'clash'] [u'beatti', u'reflect', u'mini', u'crash', u'tragedi'] [u'bigland', u'preliminari', u'final'] [u'bishop', u'hop', u'femal', u'replac'] [u'blue', u'good', u'western', u'suburb'] [u'bouncer', u'guilti', u'death', u'david', u'hook'] [u'sentenc', u'drive', u'death'] [u'brown', u'seek', u'sniffabl', u'fuel', u'roll'] [u'busi', u'chamber', u'attack', u'year', u'fund', u'plan'] [u'busi', u'road', u'safeti', u'boost'] [u'busi', u'redund', u'termin', u'updat'] [u'busi', u'lobbi', u'call', u'accc', u'watch', u'petrol'] [u'cabbi', u'await', u'decis'] [u'cabbi', u'hope', u'attack', u'decreas', u'camera'] [u'calcavecchia', u'claim', u'canadian', u'open'] [u'floodplain', u'health', u'rethink'] [u'wider', u'rang', u'bush', u'blueprint', u'submiss'] [u'call', u'poki', u'machin', u'modifi'] [u'nation', u'sustain', u'charter'] [u'caltex', u'defend', u'high', u'petrol', u'price'] [u'caltex', u'say', u'sorri', u'high', u'petrol', u'price'] [u'campaign', u'aim', u'fatigu', u'crash'] [u'campbel', u'consid', u'croc', u'hunt', u'propos'] [u'canberran', u'high', u'incom', u'earner', u'figur'] [u'carter', u'holt', u'harvey', u'issu', u'profit', u'warn'] [u'chariti', u'ride', u'rais', u'bush', u'chaplainci', u'fund'] [u'citrus', u'grower', u'vote', u'nation', u'biosecur', u'levi'] [u'clarenc', u'gatemouth', u'brown', u'die'] [u'comment', u'seek', u'conserv', u'plan'] [u'communiti', u'move', u'cyclon', u'ingrid'] [u'communiti', u'ralli', u'afghan', u'famili'] [u'condobolin', u'hous', u'damag', u'earli', u'morn'] [u'council', u'get', u'troubl', u'ymca'] [u'councillor', u'back', u'plan', u'expand', u'alcohol', u'free'] [u'councillor', u'seek', u'divis'] [u'council', u'consid', u'shop', u'centr', u'plan'] [u'coupl', u'rocki', u'orlean', u'nightmar'] [u'cousin', u'dismiss', u'brownlow', u'talk'] [u'crime', u'go', u'rann'] [u'crow', u'away', u'grand', u'final'] [u'cubbi', u'station', u'sale', u'say', u'manag'] [u'death', u'threat', u'alleg', u'aussi'] [u'detaine', u'continu', u'hunger', u'strike', u'hospit'] [u'doctor', u'help', u'amid', u'enceph', u'outbreak'] [u'owner', u'feel', u'bite', u'higher', u'fin'] [u'drought', u'eas', u'part', u'western'] [u'drought', u'tighten', u'grip', u'hunter'] [u'focus', u'prevent', u'tangl', u'whale'] [u'eagl', u'better', u'prepar', u'say', u'worsfold'] [u'educ', u'law', u'updat', u'rais', u'school', u'standard'] [u'educ', u'fund', u'chang', u'receiv', u'mix'] [u'green', u'administr', u'seek', u'possibl', u'buyer'] [u'elat', u'palestinian', u'claim', u'gaza', u'settlement'] [u'etoo', u'target', u'barca', u'bounc'] [u'famili', u'industri', u'accid', u'victim', u'disput', u'compo'] [u'farm', u'tuna', u'menu', u'seal', u'lion'] [u'farmer', u'urg', u'remain', u'moth', u'vigil'] [u'north', u'get', u'support', u'blind'] [u'fear', u'chang', u'crippl', u'profit', u'sector'] [u'feder', u'court', u'case', u'chang', u'face'] [u'feder', u'defend', u'open', u'titl'] [u'feder', u'best', u'play', u'agassi'] [u'ferri', u'oper', u'face', u'court', u'school', u'row'] [u'fischer', u'outlin', u'newcastl', u'rail', u'plan'] [u'execut', u'trial', u'begin'] [u'frustrat', u'await', u'bush', u'hurrican', u'zone'] [u'fuel', u'effici', u'car', u'option', u'rural'] [u'fullham', u'correct', u'centr', u'wage', u'disput', u'continu'] [u'gene', u'base', u'pattern', u'point', u'cancer', u'risk'] [u'govt', u'get', u'explain', u'road', u'fund'] [u'govt', u'investig', u'claim', u'wealthi', u'receiv', u'famili'] [u'govt', u'maintain', u'uranium', u'mine', u'opposit'] [u'govt', u'revis', u'welfar', u'work', u'rule', u'child'] [u'govt', u'tight', u'lip', u'airport', u'secur', u'report'] [u'govt', u'appeal', u'osland', u'rule'] [u'govt', u'build', u'stadium', u'tender', u'process'] [u'support', u'oakaje', u'deep', u'water', u'port'] [u'hama', u'vow', u'fight', u'disarm'] [u'health', u'chief', u'happi', u'paediatr', u'ward', u'oper'] [u'heavi', u'rain', u'strong', u'wind', u'lash', u'tasmania'] [u'henri', u'injuri', u'blow', u'franc'] [u'high', u'fuel', u'price', u'impact', u'region', u'age', u'care'] [u'hodg', u'wont', u'rush', u'recoveri'] [u'hoggard', u'expect', u'ash', u'twist'] [u'home', u'renov', u'activ', u'rebound'] [u'hope', u'opal', u'bring', u'shine', u'industri'] [u'howard', u'york', u'summit'] [u'human', u'bone', u'prompt', u'analysi'] [u'hunt', u'underway', u'cathi', u'freeman'] [u'india', u'pakistan', u'begin', u'prison', u'exchang'] [u'inquest', u'wont', u'investig', u'rockhampton', u'hospit'] [u'inquiri', u'find', u'govt', u'insensit', u'chen', u'defect'] [u'insur', u'open', u'reward', u'healthi', u'member'] [u'interview', u'john', u'buchanan'] [u'interview', u'matthew', u'hoggard'] [u'investig', u'begin', u'possibl', u'illeg', u'fish'] [u'islam', u'festiv', u'herald', u'cattl', u'export'] [u'israel', u'complet', u'gaza', u'pullout'] [u'ivori', u'coast', u'opposit', u'leader', u'return', u'exil'] [u'journalist', u'protect', u'backbench', u'say'] [u'joyc', u'remain', u'wari', u'telstra', u'bill', u'rush'] [u'joyc', u'vote', u'telstra', u'delay'] [u'judg', u'hand', u'tougher', u'sentenc', u'council'] [u'juri', u'clear', u'bouncer', u'hook', u'case'] [u'juri', u'seek', u'clarif', u'hook', u'case'] [u'kearn', u'hope', u'quick', u'recoveri'] [u'kearn', u'give', u'cowboy', u'clash'] [u'kennedi', u'join', u'kangaroo', u'squad'] [u'koizumi', u'win', u'landslid'] [u'kosovar', u'famili', u'await', u'resid', u'decis'] [u'larg', u'australian', u'deleg', u'attend', u'china', u'spin'] [u'legal', u'brew', u'floriad', u'event'] [u'librari', u'hous', u'communiti', u'sport', u'gear'] [u'local', u'govt', u'look', u'cancer', u'council', u'partnership'] [u'die', u'wollongong', u'domest', u'incid'] [u'hospit', u'hang', u'glider', u'crash'] [u'jail', u'year', u'horrif'] [u'man', u'charg'] [u'plead', u'guilti', u'manslaught', u'adelaid'] [u'steal', u'drouin', u'bar', u'take'] [u'maryborough', u'council', u'consid', u'societi'] [u'maryborough', u'shout', u'town', u'crier', u'champ'] [u'matera', u'prove', u'fit', u'preliminari'] [u'meatwork', u'open', u'door'] [u'meet', u'air', u'traffic', u'manag', u'concern'] [u'meet', u'answer', u'question'] [u'melbourn', u'name', u'terrorist', u'target'] [u'melburnian', u'urg', u'ignor', u'qaeda', u'video'] [u'fin', u'anim', u'welfar', u'breach'] [u'milit', u'offer', u'bounti', u'iraqi', u'report'] [u'minist', u'decid', u'citizen', u'juri'] [u'miss', u'cenotaph', u'rifl', u'come'] [u'rain', u'need', u'break', u'drought'] [u'rain', u'need', u'break', u'north', u'west', u'drought'] [u'rain', u'need', u'eas', u'water', u'ban'] [u'motorist', u'warn', u'hazard', u'road', u'condit'] [u'call', u'privileg', u'probe', u'travel'] [u'ban', u'don', u'team', u'colour'] [u'muswellbrook', u'await', u'mayor', u'elect', u'result'] [u'naiqama', u'catch', u'drive', u'licenc'] [u'nation', u'parti', u'promis', u'slash', u'petrol', u'price'] [u'nation', u'seek', u'apprenticeship', u'shake'] [u'nation', u'seek', u'aquif', u'detail'] [u'neiwand', u'give', u'suspend', u'sentenc', u'breach'] [u'newcastl', u'unit', u'good', u'sydney'] [u'kill', u'train', u'hit', u'school', u'truck', u'thailand'] [u'chang', u'terror', u'threat', u'level', u'ruddock', u'say'] [u'mission', u'imposs', u'say', u'buchanan'] [u'elect', u'campaign', u'go', u'wire'] [u'opposit', u'pour', u'cold', u'water', u'rainwat', u'tank', u'plan'] [u'outback', u'road', u'council', u'urg', u'fund', u'upgrad'] [u'palestinian', u'demolish', u'abandon', u'gaza', u'synagogu'] [u'founder', u'committ', u'hear', u'begin'] [u'park', u'host', u'age', u'care', u'symposium'] [u'peac', u'activ', u'reason', u'deport', u'beazley'] [u'perilya', u'persist', u'jewel'] [u'petrol', u'price', u'summit', u'pointless'] [u'pickett', u'hook', u'bigland', u'bump'] [u'pietersen', u'punish', u'australia'] [u'polic', u'continu', u'search', u'miss', u'woman'] [u'polic', u'declar', u'highway', u'campaign', u'success'] [u'polic', u'investig', u'hospit', u'properti', u'blaze'] [u'polic', u'drink', u'drive', u'arrest'] [u'polic', u'probe', u'school', u'arson', u'attack'] [u'polic', u'search', u'robber'] [u'power', u'year'] [u'profession', u'crimin', u'jail', u'antiqu', u'scam'] [u'public', u'show', u'littl', u'health', u'plan'] [u'public', u'warn', u'loom', u'danger'] [u'punter', u'aplenti', u'turn', u'kalgoorli', u'race'] [u'quoll', u'manag', u'plan', u'releas', u'late', u'trust', u'say'] [u'rain', u'help', u'crop', u'growth', u'condit'] [u'rain', u'put', u'flood', u'stand'] [u'rain', u'lift', u'level'] [u'region', u'hous', u'price', u'increas'] [u'repriev', u'threaten', u'speci'] [u'research', u'warn', u'grow', u'muslim', u'alien'] [u'resourc', u'stock', u'market', u'lift'] [u'rise', u'fuel', u'price', u'floriad', u'attend'] [u'road', u'death', u'prompt', u'traffic', u'polic'] [u'rock', u'star', u'burgl', u'stag', u'mega', u'concert'] [u'saint', u'lose', u'hamil', u'koschitzk'] [u'play', u'catch', u'polic', u'number', u'opposit'] [u'sceptic', u'greet', u'miner', u'sand', u'mine', u'applic'] [u'king', u'survivor', u'tell', u'brace', u'crash'] [u'search', u'begin', u'miss', u'freez'] [u'search', u'continu', u'miss', u'sydney'] [u'search', u'suspend', u'miss'] [u'secondari', u'school', u'receiv', u'canberra', u'educ', u'kit'] [u'selwood', u'readi', u'ricciuto'] [u'senat', u'inquiri', u'okay', u'telstra', u'bill'] [u'south', u'east', u'gear', u'local', u'govt', u'elect'] [u'spinner', u'plot', u'bangladeshi', u'collaps'] [u'springborg', u'keep', u'coalit', u'talk'] [u'stoke', u'sport', u'collus', u'case', u'begin'] [u'stradbrok', u'task', u'forc', u'evict', u'schooli', u'revel'] [u'summit', u'focus', u'region', u'develop'] [u'sydney', u'morgu', u'face', u'post', u'mortem', u'backlog'] [u'sydney', u'shoot', u'victim', u'famili', u'target', u'drive'] [u'farmer', u'monitor', u'potato', u'deal'] [u'telstra', u'fate', u'tie', u'nation', u'senat'] [u'tourism', u'event', u'help', u'promot', u'gold', u'coast', u'area'] [u'trade', u'agreement', u'promot', u'fish', u'industri', u'export'] [u'trio', u'surviv', u'gambier', u'crash'] [u'truss', u'get', u'goulburn', u'valley', u'highway', u'brief'] [u'look', u'boost', u'interst', u'student', u'number'] [u'vermeulen', u'power', u'home', u'german', u'superbik', u'round'] [u'vieira', u'hail', u'perfect', u'juve'] [u'visitor', u'flock', u'wildflow', u'spectacl'] [u'govt', u'reject', u'secess'] [u'warn', u'mcgrath', u'wreak', u'havoc'] [u'wentworthvill', u'factori', u'smoulder'] [u'western', u'farmer', u'hop', u'drought', u'declar'] [u'western', u'mayor', u'prepar', u'china', u'tour'] [u'wheat', u'grower', u'help', u'hand'] [u'wilkinson', u'lay'] [u'woman', u'charg', u'alic', u'stab', u'death'] [u'woman', u'fin', u'import', u'stun', u'gun'] [u'wood', u'retain', u'world', u'crown'] [u'add', u'indonesia', u'anti', u'polio', u'fight'] [u'leav', u'quadripleg', u'shallow'] [u'aborigin', u'continu', u'push', u'nation', u'park', u'control'] [u'investig', u'solomon', u'island', u'brawl'] [u'ord', u'wine', u'group', u'retail', u'report'] [u'match', u'even', u'pois', u'pakistan'] [u'cremat', u'follow', u'jamberoo', u'crash'] [u'armi', u'call', u'help', u'stop', u'cane', u'toad', u'spread'] [u'ash', u'defeat', u'wake', u'say', u'test', u'great'] [u'asio', u'thumb', u'affect', u'activist', u'travel'] [u'injur', u'philippin', u'polic', u'armouri'] [u'aussi'] [u'defend', u'lavish', u'shanghai', u'offic', u'launch'] [u'barbequ', u'menu', u'baxter', u'detaine'] [u'baxter', u'menu', u'fail', u'meet', u'standard'] [u'bang', u'explos', u'shed', u'light', u'star'] [u'black', u'bullet', u'line'] [u'bluescop', u'cost'] [u'boost', u'rare', u'speci', u'protect', u'water'] [u'boyl', u'launch', u'sewag', u'treatment', u'plant', u'upgrad'] [u'brand', u'highway', u'overtak', u'lane', u'sooner'] [u'breaker', u'keen', u'latham', u'join'] [u'breaker', u'keen', u'snare', u'latham'] [u'broom', u'take', u'deliveri', u'rescu', u'boat'] [u'budget', u'crisi', u'blame', u'lack', u'school', u'secur'] [u'bush', u'declar', u'emerg', u'post', u'katrina', u'arizona'] [u'bush', u'wrap', u'hurrican', u'tour'] [u'busi', u'group', u'issu', u'stadium', u'project', u'caution'] [u'businessman', u'face', u'jail', u'contempt', u'charg'] [u'bypass', u'rout', u'indigen', u'survey', u'continu'] [u'cadel', u'escap', u'custodi'] [u'step', u'polic', u'amid', u'fish', u'ident'] [u'canberra', u'archbishop', u'formal', u'resign'] [u'cane', u'transport', u'crash', u'spark', u'safeti'] [u'carenn', u'school', u'parent', u'hire', u'therapist'] [u'carer', u'fund', u'fight', u'canberra'] [u'children', u'blame', u'weekend', u'crime'] [u'colombian', u'plane', u'hijack', u'surrend'] [u'commonwealth', u'address', u'pierc', u'creek', u'report'] [u'communiti', u'farewel', u'young', u'crash', u'victim'] [u'consum', u'affair', u'investig', u'trader'] [u'correct', u'servic', u'exec', u'appoint', u'manag'] [u'costello', u'unsur', u'telstra', u'sale', u'famili', u'impact'] [u'council', u'back', u'tallawarra', u'rezon'] [u'council', u'committe', u'consid', u'year', u'alcohol'] [u'council', u'consid', u'aerodrom', u'master', u'plan'] [u'council', u'consid', u'tourist', u'villag', u'plan'] [u'cranki', u'magpi', u'land', u'pair', u'hospit'] [u'cricket', u'real', u'winner', u'ash', u'say'] [u'croker', u'island', u'rebuild', u'top'] [u'cunningham', u'question', u'patient', u'train', u'transfer'] [u'custom', u'dud', u'build', u'insur', u'industri'] [u'dairi', u'export', u'prepar', u'contamin', u'canola'] [u'dead', u'intersect', u'upgrad'] [u'debat', u'focus', u'aquif', u'manag'] [u'disabl', u'pension', u'wors', u'welfar'] [u'dodd', u'injuri', u'cloud'] [u'lover', u'internet', u'remark', u'earn', u'singaporean'] [u'doyl', u'keep', u'toll', u'polici'] [u'drought', u'affect', u'murray', u'gum', u'imit', u'flood'] [u'drought', u'relief', u'payment', u'extend'] [u'egan', u'stay', u'geriatr', u'fairytal'] [u'england', u'reclaim', u'ash'] [u'england', u'ecstasi', u'histor', u'ash'] [u'england', u'triumph', u'ash', u'year'] [u'english', u'media', u'delight', u'australia', u'ash', u'defeat'] [u'evan', u'tate', u'post', u'loss'] [u'extra', u'search', u'power', u'plan', u'polic'] [u'farmer', u'feel', u'impact', u'rise', u'fuel', u'price'] [u'farmer', u'recognis', u'tilt', u'train', u'crash'] [u'feder', u'govt', u'indigen', u'educ', u'chang', u'worri'] [u'feder', u'parliament', u'hear', u'push', u'wollongong'] [u'govt', u'stand', u'quoll', u'plan', u'delay'] [u'field', u'vote', u'telstra', u'sale'] [u'fifa', u'line', u'wada', u'code', u'insist', u'blatter'] [u'saint', u'prove', u'fit'] [u'food', u'storag', u'niger', u'children', u'starv'] [u'foodland', u'profit', u'demerg', u'loom'] [u'footbal', u'finger', u'game'] [u'bronco', u'star', u'ralli', u'troop'] [u'fuel', u'price', u'consid', u'taxi', u'fare', u'review'] [u'fund', u'shortfal', u'hamper', u'seawe', u'industri', u'plan'] [u'fund', u'address', u'cape', u'york', u'domest', u'violenc'] [u'legal', u'fight', u'woman', u'free', u'kill'] [u'veteran', u'mark', u'japanes', u'surrend'] [u'gippsland', u'carer', u'join', u'fight', u'fund'] [u'govt', u'announc', u'sheep', u'tag', u'polici'] [u'govt', u'criticis', u'withhold', u'blood', u'lead', u'level'] [u'govt', u'fund', u'philippin', u'polic', u'centr'] [u'govt', u'look', u'build', u'region', u'skill'] [u'govt', u'extradit', u'accus', u'singapor', u'murder'] [u'govt', u'riverland', u'roadwork'] [u'govt', u'urg', u'help', u'lower', u'cost', u'convers'] [u'gower', u'replac', u'rooney', u'xiii'] [u'grafton', u'die', u'crash', u'near', u'glen', u'inn'] [u'green', u'group', u'question', u'project'] [u'gunn', u'begin', u'invest', u'drive'] [u'harewood', u'trick', u'lift', u'hammer', u'villa'] [u'health', u'servic', u'offer', u'assur'] [u'hook', u'bouncer', u'face', u'civil', u'case'] [u'hook', u'wife', u'pursu', u'bouncer', u'civil', u'case'] [u'hormon', u'growth', u'promot', u'make', u'cattl', u'meat'] [u'hospit', u'inquiri', u'need', u'time', u'wider', u'scope'] [u'urg', u'reform', u'strong', u'aust', u'economi'] [u'immigr', u'jail', u'wife', u'brutal', u'murder'] [u'indigen', u'affair', u'dept', u'examin', u'heritag', u'site'] [u'indigen', u'communiti', u'access', u'land', u'care'] [u'indonesian', u'embassi', u'bomb', u'figur', u'sentenc'] [u'industri', u'magpi', u'salut', u'countri', u'standard'] [u'itali', u'court', u'uphold', u'extradit', u'bomb', u'suspect'] [u'jakarta', u'court', u'sentenc', u'embassi', u'bomber', u'death'] [u'joint', u'winner', u'name', u'jack', u'bett', u'medal'] [u'karzai', u'call', u'anti', u'terror', u'rethink'] [u'katrina', u'victim', u'homeless', u'year'] [u'labor', u'accus', u'govt', u'ident', u'fraud'] [u'labor', u'urg', u'releas', u'telstra', u'job', u'document'] [u'lake', u'macquari', u'council', u'quit'] [u'final', u'catch', u'arm', u'robber'] [u'group', u'suggest', u'legal', u'action', u'late', u'doctor'] [u'lord', u'mayor', u'hit', u'increas'] [u'lucki', u'select', u'sydney', u'deputi', u'mayor'] [u'die', u'sovereign', u'truck', u'crash'] [u'guilti', u'amphetamin', u'drug'] [u'jail', u'murder'] [u'man', u'ban'] [u'manslaught', u'stereo', u'nois', u'earn', u'sentenc'] [u'mayor', u'warn', u'widespread', u'fallout', u'gold', u'coast'] [u'meet', u'spotlight', u'school', u'asbesto', u'concern'] [u'mental', u'problem', u'plagu', u'young', u'australian', u'veteran'] [u'miller', u'see', u'long', u'term', u'gain', u'cost', u'restructur'] [u'millic', u'hurt', u'shed', u'blaze'] [u'mine', u'industri', u'worker', u'leav', u'littl', u'time'] [u'mine', u'warn', u'price', u'effect'] [u'motorcycl', u'levi', u'rise', u'greedi', u'grab'] [u'mugab', u'legalis', u'seizur', u'white', u'farm'] [u'murilla', u'council', u'deliv', u'record', u'budget'] [u'muslim', u'group', u'withdraw', u'polit', u'parti', u'applic'] [u'nation', u'seek', u'power', u'chang'] [u'leadership', u'team', u'blayney', u'council'] [u'support', u'telstra', u'sale'] [u'investig', u'plan', u'rocki', u'hospit'] [u'polit', u'activist', u'detent', u'ruddock'] [u'rest', u'feder'] [u'north', u'korea', u'vow', u'continu', u'peac', u'nuclear'] [u'norwegian', u'conced', u'defeat'] [u'parliament', u'usher'] [u'seek', u'nation', u'rule', u'junk', u'food'] [u'smoke', u'clear', u'say', u'lobbi', u'group'] [u'call', u'sniffabl', u'petrol', u'fund'] [u'outback', u'council', u'look', u'save', u'water'] [u'oyster', u'farmer', u'slam', u'govt', u'test', u'delay'] [u'pakistan', u'propos', u'fenc', u'afghan', u'border'] [u'palestinian', u'tell', u'loot', u'start', u'rebuild'] [u'paramed', u'disput', u'escal'] [u'park', u'gear', u'transport', u'forum'] [u'pasco', u'continu', u'wagga', u'mayor'] [u'peopl', u'skill', u'busi'] [u'pietersen', u'centuri', u'help', u'england', u'ash'] [u'pietersen', u'happi', u'share', u'ash', u'spoil'] [u'pilot', u'kill', u'plane', u'crash', u'southern'] [u'poki', u'worri', u'reject'] [u'polic', u'appeal', u'help', u'kimberley', u'pearl', u'theft'] [u'polic', u'doubl', u'reward', u'decad', u'murder', u'case'] [u'polic', u'fear', u'thredbo', u'skier', u'die'] [u'polic', u'weapon', u'footi', u'match'] [u'polic', u'hunt', u'riverland', u'escap'] [u'polic', u'hunt', u'robina', u'servic', u'station', u'bandit'] [u'polic', u'rais', u'fund', u'sick', u'children'] [u'power', u'line', u'broadband', u'threaten', u'telstra', u'market'] [u'power', u'worker', u'blame', u'blackout'] [u'progress', u'china', u'good', u'howard'] [u'public', u'urg', u'help', u'catch', u'graffiti', u'vandal'] [u'public', u'urg', u'help', u'miss', u'woman'] [u'public', u'urg', u'speak', u'draft', u'disast', u'studi'] [u'public', u'warn', u'explos', u'danger'] [u'push', u'help', u'campasp', u'irrig'] [u'brothel', u'legalis', u'escort', u'servic'] [u'racq', u'call', u'petrol', u'compani', u'lower', u'price'] [u'racv', u'predict', u'eas', u'fuel', u'price'] [u'rain', u'lift', u'catchment', u'level'] [u'random', u'search', u'anti', u'terror', u'law'] [u'ravensthorp', u'airport', u'share', u'secur', u'upgrad'] [u'record', u'price', u'cattl', u'sale'] [u'report', u'highlight', u'strong', u'coast', u'tourism', u'industri'] [u'river', u'award', u'recognis', u'environ', u'kimberley'] [u'rspca', u'campaign', u'target', u'live', u'export', u'pork'] [u'rspca', u'volunt', u'fin', u'anim', u'cruelti'] [u'team', u'lead', u'cooma', u'monaro', u'shire'] [u'sculptur', u'honour', u'shire', u'presid'] [u'seller', u'biopic', u'scoop', u'creativ', u'art', u'emmi'] [u'senat', u'close', u'approv', u'telstra', u'sale'] [u'failur', u'patel', u'appoint'] [u'shop', u'seek', u'approv'] [u'sherman', u'see', u'long', u'career', u'lion'] [u'sherman', u'show', u'loyalti', u'lion'] [u'shire', u'seek', u'fund', u'industri', u'park', u'plan'] [u'sikh', u'communiti', u'highway', u'talk'] [u'soutbound', u'bridg', u'stay', u'close', u'work'] [u'south', u'east', u'feel', u'impact', u'hoon', u'law'] [u'storm', u'reject', u'illeg', u'tackl', u'claim'] [u'storm', u'toll', u'towong', u'shire', u'infrastructur'] [u'studi', u'focus', u'passiv', u'smoke', u'asthma', u'link'] [u'studi', u'examin', u'impact', u'resourc', u'issu'] [u'super', u'school', u'report', u'recommend', u'ginninderra', u'site'] [u'sustain', u'citi', u'report', u'pleas'] [u'swan', u'play', u'saint', u'final', u'break'] [u'tasmanian', u'invest', u'home', u'renov'] [u'tasmanian', u'trial', u'broadband', u'power', u'line'] [u'teen', u'face', u'court', u'assault'] [u'telford', u'lose', u'appeal', u'fraud', u'convict'] [u'telstra', u'sale', u'australian', u'famili', u'field'] [u'test', u'confirm', u'wrong', u'hors', u'send'] [u'outplay', u'pont', u'admit'] [u'thousand', u'expect', u'flock', u'westech', u'field', u'day'] [u'tiger', u'sign', u'hodgson'] [u'tough', u'condit', u'cork', u'mcguigan', u'profit'] [u'townsvill', u'get', u'long', u'await', u'cruis', u'ship', u'termin'] [u'tradit', u'owner', u'dont', u'want', u'nuclear', u'wast', u'dump'] [u'tripodi', u'defend', u'auslink', u'delay'] [u'mous', u'take', u'hand', u'wring', u'chang'] [u'union', u'air', u'indigen', u'student', u'concern'] [u'union', u'doesnt', u'want', u'jail', u'manag', u'bonus', u'pay'] [u'union', u'say', u'hospit', u'troubl', u'shooter', u'appoint'] [u'open', u'prove', u'popular'] [u'student', u'shout', u'zealand'] [u'chief', u'justic', u'nomine', u'promis', u'open', u'mind'] [u'deni', u'gas', u'iraqi', u'town'] [u'firm', u'sourc', u'silver', u'perilya'] [u'readi', u'help', u'bird', u'outbreak', u'say', u'rudd'] [u'voter', u'satisfi', u'howard'] [u'opposit', u'criticis', u'secess', u'plan'] [u'warn', u'test', u'futur'] [u'waugh', u'caution', u'aussi', u'team', u'blood', u'let'] [u'wheatbelt', u'salin', u'research', u'help', u'save', u'town'] [u'wheat', u'grower', u'warn', u'threat'] [u'wine', u'industri', u'boom', u'attract', u'record', u'entri'] [u'wit', u'recal', u'rescu', u'king', u'survivor'] [u'women', u'discuss', u'impact', u'fisheri', u'closur'] [u'need', u'telstra', u'servic'] [u'boost', u'coal', u'seam', u'field'] [u'aborigin', u'spear', u'hobart', u'beach'] [u'activist', u'agre', u'deport'] [u'hope', u'crowd'] [u'agforc', u'see', u'benefit', u'telstra', u'packag'] [u'antarctica', u'host', u'snow'] [u'ash', u'deliv', u'citizenship', u'victori', u'coach'] [u'ash', u'seri', u'hail', u'greatest'] [u'asic', u'drop', u'investig', u'telstra', u'remark'] [u'australia', u'suffer', u'seven', u'wicket', u'loss'] [u'award', u'recognis', u'region', u'ambul', u'station'] [u'baghdad', u'bomber', u'lure', u'victim', u'kill', u'score'] [u'bank', u'push', u'market', u'high'] [u'bemax', u'record', u'profit', u'rise'] [u'await', u'council', u'worker', u'agreement', u'repli'] [u'compani', u'pull', u'mine', u'expo'] [u'blaze', u'destroy', u'histor', u'gold', u'coast', u'home'] [u'blue', u'delist', u'clark', u'bowyer', u'bow'] [u'bodi', u'float', u'murray', u'river'] [u'boyl', u'inspect', u'plan', u'moranbah', u'hous', u'site'] [u'bullet', u'hunt', u'say', u'wright'] [u'busi', u'chamber', u'chief', u'look', u'direct'] [u'perman', u'wentworth', u'ambul', u'servic'] [u'cattlemen', u'threaten', u'return', u'high', u'countri'] [u'cfmeu', u'claim', u'feder', u'govt', u'blackmail', u'road'] [u'chamber', u'highlight', u'roster', u'improv'] [u'champion', u'leagu', u'win', u'lyon', u'liverpool'] [u'chopper', u'help', u'rescu', u'nation', u'park', u'fall'] [u'committe', u'hear', u'final', u'raaf', u'base', u'submiss'] [u'compani', u'collaps', u'leav', u'grain', u'grower'] [u'cook', u'seventh', u'second', u'stage'] [u'council', u'chang', u'zone', u'biodiesel', u'plant'] [u'council', u'consid', u'chang', u'societi', u'agreement'] [u'council', u'debat', u'moral', u'hotel', u'licenc', u'hear'] [u'council', u'hold', u'busi', u'plan'] [u'councillor', u'question', u'escort', u'industri', u'plan'] [u'council', u'form', u'museum', u'committe'] [u'council', u'predict', u'grow', u'opposit', u'dump', u'plan'] [u'council', u'urg', u'unit', u'stanc'] [u'council', u'quiz', u'minist', u'transport', u'option'] [u'coupl', u'deport', u'albania', u'vanston'] [u'court', u'consid', u'evid', u'murder', u'convict'] [u'cowboy', u'readi', u'face', u'loom', u'storm'] [u'cpsu', u'worri', u'futur', u'telstra', u'centr'] [u'cranki', u'magpi', u'captur', u'reloc'] [u'crow', u'confid', u'repeat'] [u'decis', u'loom', u'troubl', u'stock', u'fee'] [u'deliveri', u'caesarean', u'section', u'link', u'cow', u'milk'] [u'diver', u'join', u'search', u'miss', u'skier'] [u'doctor', u'highlight', u'hospit', u'exodus'] [u'dress', u'standard', u'question', u'parliament'] [u'driver', u'question', u'crash', u'hous'] [u'drought', u'stop', u'hockey', u'field'] [u'drink', u'driver', u'kill', u'seven', u'cambodia'] [u'earthquak', u'rattl', u'central', u'australia'] [u'eel', u'seek', u'appeal', u'moimoi'] [u'emerg', u'worker', u'ralli', u'chang'] [u'england', u'edg', u'closer', u'number', u'rank'] [u'england', u'world', u'domin'] [u'english', u'cricket', u'fan', u'continu', u'celebr', u'ash'] [u'famili', u'seek', u'compens', u'suicid'] [u'farmer', u'critic', u'nffs', u'telstra', u'sale', u'back'] [u'farmer', u'hope', u'rain', u'break', u'drought'] [u'fear', u'unknown', u'keep', u'sydneysid', u'home'] [u'firm', u'say', u'accc', u'soft', u'telstra'] [u'food', u'get', u'longer', u'extend', u'hour', u'trial'] [u'bronco', u'question', u'tiger', u'tough'] [u'health', u'minist', u'deni', u'patel', u'scandal'] [u'free', u'tonic', u'freddi', u'ash', u'reward'] [u'fresh', u'claim', u'immigr', u'peopl', u'smuggl', u'tactic'] [u'fuel', u'shortag', u'hamper', u'deliveri', u'sudan'] [u'gilchrist', u'back', u'pont'] [u'govt', u'deni', u'plan', u'close', u'school'] [u'govt', u'eye', u'pacif', u'island', u'boost'] [u'govt', u'hop', u'action', u'bear', u'fruit'] [u'govt', u'oppos', u'western', u'power', u'amend'] [u'govt', u'respond', u'rspca', u'live', u'export', u'critic'] [u'govt', u'telstra', u'tactic'] [u'govt', u'surpris', u'fish', u'ident', u'boat', u'seizur'] [u'govt', u'abandon', u'extraordinari', u'drive', u'licenc'] [u'govt', u'literaci', u'fund', u'delay'] [u'govt', u'urg', u'boost', u'oversea', u'meet', u'target'] [u'great', u'lake', u'council', u'lock', u'mayor', u'vote', u'date'] [u'guantanamo', u'hunger', u'strike', u'grow'] [u'hama', u'blow', u'hole', u'gaza', u'border'] [u'hay', u'retain', u'mayor', u'spot'] [u'higgin', u'lead', u'aria', u'award', u'nomine', u'list'] [u'hous', u'construct', u'figur', u'surg'] [u'howard', u'foreshadow', u'spend', u'foreign'] [u'hull', u'reject', u'telstra', u'vote', u'claim'] [u'hurrican', u'death', u'toll', u'climb', u'past'] [u'investig', u'continu', u'gove', u'blackout'] [u'iraqi', u'qaeda', u'claim', u'suicid', u'bomb', u'campaign'] [u'iraq', u'troop', u'withdraw', u'plan', u'unclear', u'say', u'labor'] [u'joyc', u'close', u'back', u'telstra', u'sale'] [u'joyc', u'signal', u'support', u'telstra', u'legisl'] [u'joyc', u'suffer', u'health', u'scare'] [u'group', u'profit', u'defi', u'expect'] [u'karzai', u'urg', u'rethink', u'terror', u'fight'] [u'kean', u'injuri', u'blow', u'unit'] [u'kelso', u'freight', u'termin', u'propon', u'work'] [u'kid', u'hold', u'cell', u'foster', u'home'] [u'kimberley', u'host', u'camp', u'men', u'group'] [u'labour', u'student', u'loan', u'cost', u'pledg', u'wrong', u'treasuri'] [u'lagoon', u'manag', u'plan'] [u'landcar', u'report', u'offer', u'blueprint', u'greener', u'farm'] [u'letterman', u'kidnap', u'accus', u'jail', u'lesser', u'charg'] [u'liber', u'director', u'urg', u'ditch', u'dirt', u'unit', u'tactic'] [u'liquid', u'sell', u'meatwork', u'asset'] [u'lismor', u'urg', u'poultri', u'plan'] [u'local', u'carer', u'join', u'push', u'support'] [u'locust', u'expect', u'central', u'west', u'spring'] [u'london', u'celebr', u'england', u'ash'] [u'plead', u'guilti', u'danger', u'drive', u'girl'] [u'suffer', u'percent', u'burn'] [u'matera', u'prove', u'fit'] [u'mcguigan', u'look', u'boost', u'loxton', u'wineri', u'effici'] [u'mcguigan', u'profit', u'drop', u'wont', u'affect', u'hunter'] [u'mcguigan', u'focus', u'mildura', u'oper'] [u'meatwork', u'penalis', u'pollut', u'oversight'] [u'armi', u'uniform', u'kill', u'near', u'baghdad'] [u'microsoft', u'exec', u'clear', u'work', u'googl'] [u'milk', u'product', u'continu', u'increas'] [u'minist', u'focus', u'govern', u'mornington'] [u'miss', u'man', u'bodi', u'thredbo', u'river'] [u'miss', u'townsvill', u'woman', u'aliv'] [u'molik', u'winner', u'circl'] [u'fund', u'seek', u'boost', u'region', u'infrastructur'] [u'nation', u'park', u'subject', u'wild'] [u'air', u'golf', u'club', u'develop', u'fear'] [u'murali', u'doubl', u'strike', u'bangladesh', u'rope'] [u'muralitharan', u'bag', u'test', u'bangladesh'] [u'nation', u'parti', u'edg', u'ahead', u'poll'] [u'nation', u'secur', u'reli'] [u'law', u'parent', u'brief', u'children'] [u'seafood', u'standard', u'ensur', u'qualiti', u'say', u'minist'] [u'test', u'dead', u'chicken', u'virus'] [u'govt', u'fund', u'cairn', u'cruis', u'ship', u'termin'] [u'extend', u'crop'] [u'pressur', u'boost', u'live', u'murray', u'effort'] [u'nurs', u'home', u'owner', u'charg', u'hurrican', u'death'] [u'outback', u'festiv', u'zani', u'event', u'attract', u'crowd'] [u'pair', u'charg', u'drink', u'drive'] [u'pair', u'face', u'court', u'jail', u'escap', u'chase'] [u'palmerston', u'school', u'abandon', u'project'] [u'paramilitari', u'group', u'ceasefir', u'longer', u'recognis'] [u'past', u'worker', u'suspect', u'pearl', u'heist'] [u'peacock', u'fin', u'drink', u'drive', u'guilti', u'plea'] [u'peacock', u'front', u'court', u'drink', u'drive', u'charg'] [u'petit', u'seek', u'fund', u'lake', u'entranc', u'sand'] [u'petrol', u'price', u'drive', u'drop', u'confid'] [u'petrol', u'price', u'top', u'list', u'aussi', u'woe'] [u'polic', u'clear', u'mcgrath', u'letter'] [u'polic', u'investig', u'dead', u'hous', u'blaze'] [u'polic', u'probe', u'mcgrath', u'letter', u'ebay'] [u'polic', u'probe', u'plane', u'crash', u'releas', u'victim'] [u'polic', u'step', u'search', u'miss', u'teen'] [u'polic', u'warn', u'hydropon', u'drug', u'plant'] [u'polic', u'plane', u'crash', u'victim'] [u'politician', u'broom', u'base'] [u'pont', u'return', u'home'] [u'pont', u'return', u'home', u'ash', u'loss'] [u'port', u'hedland', u'health', u'servic', u'brief'] [u'princess', u'mari', u'hospitalis'] [u'probe', u'continu', u'redan', u'hous', u'blaze'] [u'public', u'help', u'seek', u'rescu', u'histor', u'tree'] [u'public', u'want', u'good', u'telstra', u'servic'] [u'public', u'urg', u'blood'] [u'farm', u'urg', u'diversifi', u'maximum', u'impact'] [u'govt', u'consid', u'hanson', u'compo'] [u'public', u'hospit', u'doctor', u'rise'] [u'region', u'invest', u'fund', u'offer'] [u'remain', u'wwii', u'airmen', u'buri', u'germani'] [u'rotari', u'hous', u'open', u'wimmera'] [u'saff', u'hold', u'telstra', u'sale', u'crisi', u'meet'] [u'move', u'uniform', u'defam', u'law'] [u'seagul', u'cull', u'urg', u'port', u'lincoln'] [u'second', u'sentenc', u'death', u'embassi', u'bomb'] [u'secur', u'guard', u'death', u'prompt', u'safeti', u'shake'] [u'senat', u'approv', u'telstra', u'sale'] [u'urg', u'flood', u'caution'] [u'seven', u'shoot', u'dead', u'elect', u'taliban', u'attack'] [u'sheen', u'call', u'tiger', u'defenc'] [u'sikh', u'communiti', u'form', u'highway', u'work', u'group'] [u'singh', u'join', u'grand', u'slam', u'field'] [u'south', u'africa', u'labour', u'mediat', u'strike'] [u'staff', u'reinstat', u'paedophil', u'transfer'] [u'student', u'learn', u'drug', u'awar'] [u'surfer', u'court', u'shoot', u'death', u'statement'] [u'swan', u'poor', u'final', u'record', u'irrelev', u'say', u'thoma'] [u'taibu', u'half', u'centuri', u'lift', u'zimbabw', u'india'] [u'tasmanian', u'devil', u'lifelin', u'ignor', u'park'] [u'tasmanian', u'woman', u'win', u'nation', u'volunt', u'award'] [u'tasmania', u'traine', u'specialist', u'privat'] [u'teacher', u'threaten', u'industri', u'action', u'special'] [u'teacher', u'stand', u'asid', u'claim'] [u'telstra', u'job', u'guarante', u'say', u'govt'] [u'termin', u'work', u'includ', u'residenti'] [u'countri', u'hour', u'roadshow', u'go', u'hyden'] [u'thousand', u'nigerian', u'protest', u'fuel', u'price'] [u'seed', u'nadal', u'eas', u'china', u'open'] [u'tourism', u'industri', u'hop', u'fuel', u'price', u'relief'] [u'tourism', u'plan', u'breath', u'life', u'gold'] [u'town', u'farewel', u'drown', u'children'] [u'townsvill', u'woman', u'swim', u'english', u'channel'] [u'turnbul', u'say', u'busi', u'interest', u'fulli', u'disclos'] [u'shoot', u'dead', u'exclus', u'london', u'store'] [u'union', u'fear', u'coast', u'telstra', u'loss'] [u'union', u'fear', u'telstra', u'region', u'job', u'threat'] [u'union', u'fear', u'toowoomba', u'telstra', u'job'] [u'union', u'offici', u'fin', u'assault'] [u'union', u'telstra', u'plan', u'cut'] [u'union', u'vow', u'continu', u'western', u'power', u'fight'] [u'vanston', u'deni', u'ident', u'fraud', u'claim'] [u'vanston', u'releas', u'document', u'fals'] [u'back', u'telstra', u'sale', u'legisl'] [u'ombudsman', u'grant', u'phone', u'tap', u'power'] [u'vietnames', u'firm', u'eye', u'kalgoorli', u'opportun'] [u'wall', u'street', u'take', u'katrina'] [u'warn', u'skipper', u'say', u'lille'] [u'shire', u'join', u'italian', u'exhibit'] [u'water', u'author', u'battl', u'woe'] [u'track', u'threaten', u'delay', u'plaster', u'spring'] [u'windi', u'train', u'squad', u'australia'] [u'woman', u'convict', u'lamb', u'chop', u'stab', u'releas'] [u'woman', u'sentenc', u'lamb', u'chop', u'stab'] [u'work', u'begin', u'graduat', u'school', u'medicin'] [u'work', u'women', u'remain', u'famili', u'caretak', u'studi'] [u'world', u'leader', u'gather', u'talk'] [u'kill', u'indian', u'factori', u'blaze'] [u'tariff', u'recommend', u'affect'] [u'win', u'right', u'latham', u'interview'] [u'acehnes', u'rebel', u'begin', u'weapon', u'handov'] [u'acoust', u'spi', u'decod', u'typist', u'tap'] [u'action', u'group', u'oppos', u'marina'] [u'activist', u'block', u'highway', u'rais', u'safeti', u'messag'] [u'snapshot', u'reflect', u'hous', u'price', u'boom'] [u'airport', u'futur', u'spotlight'] [u'alic', u'council', u'step', u'push', u'sniff', u'petrol'] [u'alleg', u'peopl', u'smuggler', u'case', u'adjourn'] [u'andren', u'nomin', u'millthorp', u'heritag', u'list'] [u'annan', u'plead', u'uniti'] [u'term', u'ahead', u'wingecarribe', u'mayor'] [u'anti', u'cancer', u'compound', u'bean', u'nut', u'cereal'] [u'bank', u'launch', u'cambodia'] [u'queensland', u'woman', u'recov', u'hospit'] [u'arm', u'cach', u'gaza', u'tunnel'] [u'arsenal', u'ajax', u'grab', u'late', u'winner'] [u'arson', u'suspect', u'southport', u'high', u'blaze'] [u'asbesto', u'diseas', u'epidem', u'northern', u'town'] [u'senat', u'inquiri', u'critic', u'immigr'] [u'aust', u'barley', u'qualiti', u'boost', u'japanes', u'beer'] [u'australian', u'women', u'get', u'fatter', u'quicker'] [u'australia', u'england', u'slump', u'fifa', u'rank'] [u'author', u'polic', u'murder', u'book', u'act', u'uneth'] [u'batavia', u'begin', u'intens', u'uranium', u'quest'] [u'beazley', u'consid', u'legal', u'option'] [u'beazley', u'consid', u'legal', u'option', u'latham', u'attack'] [u'beazley', u'dismiss', u'errat', u'latham'] [u'shortag', u'leav', u'pension', u'emerg', u'dept'] [u'bendigo', u'central', u'counter', u'terror', u'exercis'] [u'bigger', u'brain', u'bird', u'adapt'] [u'price', u'rise', u'telstra', u'region', u'broadband'] [u'board', u'seek', u'motel', u'fund'] [u'bodi', u'think', u'miss', u'melbourn'] [u'bolton', u'readi', u'turn', u'tabl', u'saint'] [u'bomber', u'strike', u'baghdad', u'second'] [u'britney', u'spear', u'give', u'birth'] [u'break', u'hill', u'resid', u'address', u'health', u'gather'] [u'brown', u'doubt', u'senat', u'pass', u'food', u'label'] [u'brumbi', u'criticis', u'opposit', u'toll', u'fund', u'plan'] [u'bulldog', u'darwin'] [u'cane', u'toad', u'larger', u'faster', u'expect', u'research'] [u'plough', u'hervey', u'loung', u'room'] [u'cattlemen', u'telstra', u'servic', u'cost', u'guarante'] [u'centr', u'predict', u'averag', u'spring', u'rainfal'] [u'chilean', u'suprem', u'court', u'lift', u'pinochet', u'immun'] [u'citrus', u'grower', u'contract', u'destroy', u'tree'] [u'scrutinis', u'illeg', u'escort', u'servic'] [u'coff', u'airport', u'passeng', u'number'] [u'communiti', u'bank', u'plan', u'moot', u'creswick'] [u'communiti', u'group', u'attack', u'dust'] [u'concern', u'surround', u'perri', u'lake', u'redevelop'] [u'coroni', u'inquiri', u'delay', u'highway', u'upgrad', u'call'] [u'council', u'appoint', u'tourism', u'manag'] [u'council', u'look', u'educ', u'tourism'] [u'court', u'order', u'west', u'bank', u'barrier'] [u'cricket', u'team', u'come', u'home', u'ash', u'defeat'] [u'crop', u'destroy', u'amidst', u'contamin', u'concern'] [u'cultur', u'problem', u'blame', u'solon', u'case'] [u'defeat', u'tiger', u'shatter', u'berrigan'] [u'direct', u'copper', u'ship', u'happen', u'soon'] [u'dismay', u'minist', u'reinstat', u'develop'] [u'doyl', u'drop', u'toll', u'free', u'road', u'promis'] [u'driver', u'catch', u'travel'] [u'drum', u'group', u'boost', u'member', u'confid'] [u'educ', u'dept', u'say', u'anson', u'street', u'special', u'school'] [u'effort', u'afoot', u'improv', u'waterway', u'condit'] [u'rope', u'latham', u'interview', u'injunct', u'lift'] [u'eumundi', u'dive', u'swim', u'centr', u'plan'] [u'famili', u'leav', u'gambier', u'doctor', u'dilemma'] [u'famili', u'overjoy', u'woman', u'surviv', u'day', u'bush'] [u'father', u'guilti', u'kill', u'babi'] [u'fear', u'polic', u'fee', u'rural', u'event'] [u'feder', u'court', u'hear', u'round', u'constitut'] [u'final', u'saint'] [u'forestri', u'outlin', u'year', u'log', u'plan'] [u'liber', u'leader', u'andrew', u'peacock', u'guilti'] [u'forum', u'spotlight', u'south', u'east', u'road', u'safeti'] [u'gaza', u'pullout', u'celebr', u'end', u'disord'] [u'genet', u'council', u'trace', u'canola', u'contamin'] [u'work', u'tie'] [u'gillespi', u'pledg', u'fight', u'test', u'place'] [u'glen', u'inn', u'severn', u'shire', u'mayor', u'stand'] [u'woe', u'highlight', u'need', u'strong', u'test', u'waff'] [u'goat', u'transplant', u'freez', u'ovari', u'produc'] [u'govt', u'lift', u'purchas', u'price', u'home', u'buyer'] [u'govt', u'reject', u'petrol', u'sniff', u'inquiri'] [u'govt', u'seek', u'consult', u'super', u'school'] [u'govt', u'protect', u'gold', u'coast', u'hinterland', u'sit'] [u'govt', u'urg', u'tax', u'help', u'ail', u'build'] [u'gregan', u'name', u'european', u'tour', u'squad'] [u'grind', u'water', u'agreement', u'worri', u'nation'] [u'group', u'want', u'fish', u'contest', u'lake', u'wivenho'] [u'grower', u'fear', u'import', u'pineappl', u'threaten'] [u'hall', u'defend', u'final', u'form'] [u'hawk', u'footbal', u'manag', u'hail', u'player', u'commit'] [u'health', u'chief', u'speak', u'ballarat', u'seminar'] [u'health', u'dept', u'program', u'focus', u'suicid', u'prevent'] [u'health', u'inquiri', u'shine', u'spotlight', u'hervey'] [u'hervey', u'surgeon', u'tell', u'inquiri', u'neglig'] [u'high', u'rise', u'plan', u'get', u'snub'] [u'hop', u'appeal', u'panel', u'approv', u'communiti', u'school'] [u'howard', u'delight', u'telstra', u'sale', u'clear'] [u'hudghton', u'struggl', u'saint', u'train'] [u'hunter', u'pirat', u'dethron', u'king'] [u'hurrican', u'homicid', u'charg', u'ridicul', u'say', u'lawyer'] [u'hurrican', u'katrina', u'report', u'diari'] [u'hurrican', u'ophelia', u'pound', u'north', u'carolina', u'coast'] [u'hurrican', u'survivor', u'day'] [u'encourag', u'util', u'adopt', u'safeti'] [u'immigr', u'dept', u'fail', u'solon', u'senat', u'inquiri', u'find'] [u'indigen', u'group', u'unabl', u'stop', u'forest', u'log'] [u'seek', u'swan', u'hill', u'virtual'] [u'isol', u'parent', u'urg', u'voic', u'telstra', u'failur'] [u'jetti', u'concern', u'spark', u'public', u'liabil'] [u'labor', u'brace', u'latham', u'diari', u'storm'] [u'landmark', u'world', u'summit', u'begin'] [u'latham', u'regret', u'diari', u'labor', u'presid', u'say'] [u'laxman', u'dravid', u'india', u'control'] [u'legal', u'action', u'halt', u'latham', u'interview'] [u'lender', u'attend', u'malle', u'wast', u'dump', u'talk'] [u'liber', u'pounc', u'latham', u'accus'] [u'life', u'knock', u'harder', u'women', u'studi'] [u'local', u'fish', u'ident', u'net', u'award'] [u'manag', u'post', u'tafe', u'concern', u'teacher'] [u'die', u'cabin', u'mudge', u'district'] [u'jail', u'assault', u'unconsci', u'friend'] [u'serious', u'injur', u'forklift', u'accid'] [u'face', u'court', u'log', u'protest'] [u'mark', u'latham', u'launch', u'scath', u'memoir'] [u'mayor', u'hop', u'massacr', u'claim', u'wont', u'stop', u'bypass'] [u'mcgrath', u'say', u'form', u'unaffect', u'letter', u'affair'] [u'mcgrath', u'shrug', u'letter', u'leak'] [u'miner', u'announc', u'iron', u'deposit'] [u'minist', u'defend', u'draft', u'park', u'manag', u'plan'] [u'minist', u'dismiss', u'boost', u'assembl'] [u'minist', u'urg', u'probe', u'byron', u'year', u'fund'] [u'minist', u'vow', u'wont', u'return', u'upper', u'hous'] [u'miss', u'hiker', u'safe'] [u'angri', u'women', u'refug', u'manag'] [u'back', u'feder', u'action', u'china', u'fruit', u'trade'] [u'hit', u'relationship', u'comment'] [u'warn', u'nation', u'price', u'telstra', u'stanc'] [u'brief', u'raid'] [u'multin', u'game', u'resum'] [u'murray', u'irrig', u'welcom', u'water', u'alloc'] [u'nation', u'accus', u'polit', u'payback'] [u'nation', u'dismiss', u'fear', u'voter', u'backlash'] [u'nation', u'oppos', u'farm', u'work', u'experi'] [u'telstra', u'stanc', u'hurt', u'saff', u'relat'] [u'hiker', u'miss', u'tasmania'] [u'exempt', u'ash', u'review', u'buchanan'] [u'npws', u'stand', u'poison', u'bait', u'research'] [u'nuttal', u'show', u'incompet', u'opposit'] [u'citi', u'centr', u'limit', u'bomb', u'threat', u'continu'] [u'citi', u'street', u'evacu', u'threat'] [u'price', u'soar', u'wall', u'street', u'slide'] [u'opposit', u'predict', u'custom', u'wors', u'telstra'] [u'parkin', u'escort', u'airport', u'ahead', u'deport'] [u'parti', u'differ', u'benefit', u'telstra', u'sale'] [u'peac', u'activist', u'throw', u'australia'] [u'pinochet', u'face', u'charg', u'immun', u'lift'] [u'polic', u'begin', u'road', u'safeti', u'crackdown'] [u'polic', u'investig', u'spate', u'theft'] [u'policeman', u'fin', u'misus', u'databas'] [u'polic', u'target', u'latest', u'iraq', u'bomb'] [u'pondeljak', u'sydney', u'encount'] [u'pont', u'dismiss', u'lille', u'spray'] [u'pont', u'mcgrath', u'gilchrist', u'flintoff', u'player'] [u'public', u'transport', u'ticket', u'senior'] [u'push', u'councillor', u'sack', u'anti', u'comment'] [u'govt', u'begin', u'doctor', u'recruit', u'drive'] [u'govt', u'drag', u'chain', u'sniff', u'fuel', u'subsidi'] [u'rain', u'help', u'boost', u'murray', u'water', u'alloc'] [u'ramon', u'inspir', u'berlin', u'museum'] [u'ranger', u'shoot', u'straight', u'titl'] [u'rape', u'charg', u'father', u'hire', u'hitman'] [u'rech', u'link', u'kosmina', u'adelaid'] [u'research', u'focus', u'reef', u'fish', u'catch', u'releas'] [u'resid', u'drop', u'bell', u'complaint', u'church', u'cost'] [u'rooney', u'champ', u'leagu', u'card'] [u'rspca', u'welcom', u'anim', u'cruelti', u'fin'] [u'rural', u'group', u'sceptic', u'telstra', u'deal'] [u'russian', u'billionair', u'seek', u'delay', u'fraud', u'appeal'] [u'russian', u'billionair', u'seek', u'delay', u'fraud', u'hear'] [u'govt', u'urg', u'adopt', u'petrol', u'subsidi'] [u'saint', u'chang', u'swan', u'clash'] [u'santo', u'begin', u'product', u'coast'] [u'score', u'kill', u'baghdad', u'attack'] [u'seven', u'detain', u'secur', u'raid', u'britain'] [u'offend', u'get', u'year', u'jail', u'hostag', u'ordeal'] [u'sharehold', u'right', u'claim', u'loss'] [u'shire', u'look', u'boost', u'care', u'centr', u'staff', u'number'] [u'sound', u'music', u'director', u'die'] [u'staff', u'boost', u'kalgoorli', u'race'] [u'stamp', u'honour', u'england', u'cricket'] [u'sydney', u'celebr', u'olymp', u'anniversari'] [u'tafe', u'chief', u'say', u'sale', u'wont', u'affect', u'educ', u'qualiti'] [u'teeth', u'nuclear', u'fallout', u'reveal', u'true'] [u'telstra', u'bill', u'dont', u'guarante', u'price', u'pariti'] [u'telstra', u'custom', u'wors', u'labor', u'say'] [u'telstra', u'share', u'ralli', u'senat', u'clear', u'sale'] [u'tendulkar', u'give', u'week', u'prove', u'super', u'seri'] [u'ash', u'match', u'match'] [u'senat', u'approv', u'sale', u'telstra'] [u'toni', u'collett', u'turn', u'movi', u'tune'] [u'traralgon', u'water', u'storag', u'boost', u'summer'] [u'treadmil', u'trim', u'eleph', u'winter', u'weight', u'gain'] [u'trio', u'surviv', u'griffith', u'boat', u'capsiz'] [u'troop', u'welcom', u'home', u'iraq'] [u'airlin', u'announc', u'bankruptci'] [u'niger', u'plan', u'concern', u'medic', u'bodi', u'say'] [u'activist', u'deport', u'polit', u'brown', u'say'] [u'pledg', u'salvag', u'trade', u'talk'] [u'offici', u'defend', u'recoveri', u'effort'] [u'util', u'support', u'govt', u'emiss', u'reduct', u'scheme'] [u'seek', u'produc', u'vote', u'right'] [u'govt', u'urg', u'bait', u'nation'] [u'waff', u'angri', u'telstra', u'sale', u'approv'] [u'forum', u'highlight', u'male', u'depress'] [u'memori', u'rememb', u'battl', u'britain'] [u'water', u'suppli', u'boost', u'plan', u'central'] [u'pave', u'mundin', u'green', u'bout'] [u'westech', u'event', u'hail', u'best'] [u'whitsunday', u'council', u'refer', u'airport'] [u'wimmera', u'malle', u'face', u'tougher', u'water', u'ban'] [u'win', u'bullet', u'pirat'] [u'woman', u'aliv', u'day', u'miss'] [u'woman', u'knock', u'twice', u'bush', u'ordeal'] [u'world', u'leader', u'incit'] [u'zarqawi', u'declar', u'shiit'] [u'zarqawi', u'declar', u'shiit', u'muslim'] [u'burni', u'waterfront', u'plan', u'get', u'approv'] [u'accid', u'spark', u'pedestrian', u'safeti', u'warn'] [u'agforc', u'put', u'focus', u'farm', u'safeti'] [u'akram', u'say', u'england', u'apologis', u'revers'] [u'need', u'examin', u'latham', u'claim', u'gillard'] [u'back', u'call', u'increas', u'disabl', u'servic'] [u'appeal', u'urg', u'gang', u'rapist', u'sentenc'] [u'armstrong', u'rule', u'comeback'] [u'set', u'provinci', u'competit'] [u'aurukun', u'communiti', u'see', u'opportun', u'bauxit'] [u'australia', u'join', u'global', u'fight', u'bird'] [u'australian', u'grand', u'prix', u'sue', u'competit'] [u'barmi', u'armi', u'salt', u'aussi', u'wound'] [u'bar', u'club', u'race', u'reopen', u'orlean'] [u'beekeep', u'overcom', u'hive', u'threat'] [u'council', u'meet', u'industri', u'agreement'] [u'crowd', u'turn', u'wast', u'dump', u'ralli'] [u'leas', u'rise'] [u'diesel', u'fuel', u'facil', u'construct'] [u'blaze', u'claim', u'kyogl', u'timber', u'factori'] [u'border', u'taylor', u'join', u'ash', u'inquest'] [u'bowden', u'hail', u'richmond', u'best'] [u'bowler', u'seek', u'kookyni', u'diesel', u'discount'] [u'kill'] [u'brumbi', u'ask', u'govt', u'freeway', u'fund'] [u'buchanan', u'park', u'tender', u'call'] [u'build', u'industri', u'plagu', u'thuggeri'] [u'bushfir', u'inquest', u'welcom', u'delay', u'queri'] [u'amend', u'nuclear', u'treati'] [u'canker', u'affect', u'farmer', u'benefit', u'land'] [u'child', u'case', u'prompt', u'abus', u'investig'] [u'china', u'provinc', u'close', u'coal', u'mine'] [u'chines', u'textil', u'industri', u'fail', u'wool'] [u'chip', u'induc', u'charm', u'make', u'robot', u'human'] [u'clark', u'talk', u'sack', u'council', u'director'] [u'clark', u'pull', u'stump', u'year', u'career'] [u'clipsal', u'close', u'plant'] [u'cloth', u'factori', u'blame', u'closur', u'cheap', u'import'] [u'commonwealth', u'takeov', u'health'] [u'communiti', u'want', u'women', u'refug', u'control', u'draper'] [u'compens', u'deport', u'activist', u'unlik', u'ruddock'] [u'council', u'decid', u'wast', u'plant', u'purchas'] [u'councillor', u'urg', u'stop', u'infight'] [u'council', u'argu', u'irrig', u'woe'] [u'council', u'warn', u'infrastructur', u'fund', u'fight'] [u'council', u'continu', u'help'] [u'council', u'warn', u'tourism', u'industri', u'face', u'tougher', u'time'] [u'court', u'strike', u'awi', u'conspiraci', u'applic'] [u'cowboy', u'look', u'passion', u'stormi', u'clash'] [u'cowboy', u'sweat', u'odonnel', u'fit'] [u'creditor', u'shut', u'stock', u'fee', u'compani'] [u'croc', u'readi', u'attack'] [u'crow', u'perth'] [u'dept', u'make', u'chang', u'children', u'lock'] [u'desert', u'communiti', u'criticis', u'youth', u'fund'] [u'dragon', u'support', u'highlight', u'poki', u'woe'] [u'eagl', u'crow', u'complet', u'prepar'] [u'employ', u'offset', u'petrol', u'price', u'hike', u'union'] [u'england', u'lack', u'warn', u'imran'] [u'expert', u'examin', u'print', u'tasmania'] [u'famili', u'wonder', u'mother', u'surviv'] [u'farmer', u'fight', u'food', u'crop', u'extens'] [u'fear', u'consum', u'buy', u'import', u'pineappl'] [u'floriad', u'celebr', u'year', u'rock', u'roll'] [u'food', u'label', u'chang', u'cost', u'consum'] [u'weightlift', u'avoid', u'jail', u'steroid'] [u'forum', u'debat', u'road', u'safeti', u'idea'] [u'gang', u'rapist', u'sentenc', u'reduc'] [u'gillard', u'back', u'beazley', u'thank', u'latham'] [u'gippsland', u'global', u'warm', u'talk'] [u'global', u'warm', u'stronger', u'hurrican'] [u'gold', u'push', u'market', u'record', u'high'] [u'golf', u'club', u'lose', u'appeal', u'damag', u'payout'] [u'googl', u'launch', u'blog', u'search', u'tool'] [u'govt', u'accus', u'reneg', u'park', u'mine'] [u'govt', u'announc', u'islam', u'consult', u'group'] [u'govt', u'charg', u'deport', u'activist'] [u'govt', u'reduc', u'sentenc', u'earli', u'guilti', u'plea'] [u'govt', u'urg', u'market', u'bundaberg', u'patel'] [u'graincorp', u'cut', u'job', u'streamlin', u'servic'] [u'green', u'group', u'attack', u'cruis', u'ship', u'termin', u'plan'] [u'group', u'lose', u'battl', u'gungahlin', u'drive'] [u'gunnedah', u'council', u'give', u'school', u'hall'] [u'health', u'worker', u'stop', u'work', u'disput'] [u'heidfeld', u'sign', u'long', u'term', u'deal'] [u'heinz', u'injuri', u'blow', u'unit'] [u'hensbi', u'world', u'match', u'play'] [u'hewitt', u'contest', u'thailand', u'open'] [u'high', u'fuel', u'price', u'worri', u'tourism', u'industri'] [u'honeysuckl', u'corp', u'chief', u'quit'] [u'hospit', u'dialysi', u'servic', u'expand'] [u'howard', u'applaud', u'isra', u'gaza', u'pullout'] [u'hunter', u'record', u'lower', u'jobless', u'rate'] [u'hunter', u'shoot', u'bounti'] [u'hurrican', u'ophelia', u'weaken', u'north', u'carolina'] [u'hyde', u'park', u'tree'] [u'iemma', u'brace', u'swing', u'latham', u'revel'] [u'immigr', u'reinstat', u'visa', u'bungl'] [u'independ', u'cinema', u'oper', u'increas', u'screen'] [u'india', u'thrash', u'dog', u'zimbabw'] [u'indonesia', u'confirm', u'fourth', u'human', u'bird', u'death'] [u'iran', u'presid', u'meet', u'leader'] [u'iraqi', u'civilian', u'die', u'violent', u'death', u'chief', u'say'] [u'iraq', u'slip', u'civil', u'presid', u'say'] [u'irrig', u'fairer', u'water', u'law'] [u'jail', u'chang', u'avoid', u'prison', u'rape', u'repeat'] [u'jail', u'sentenc', u'reduc', u'group', u'sydney', u'gang'] [u'jam', u'retir', u'footbal'] [u'jam', u'quit', u'footbal'] [u'joint', u'effort', u'fight', u'illeg', u'fish'] [u'judg', u'order', u'actor', u'sizemor', u'stay', u'rehab'] [u'katherin', u'lobbi', u'group', u'fight', u'nuclear', u'dump', u'plan'] [u'labor', u'know', u'latham', u'like', u'howard'] [u'late', u'marin', u'goal', u'sink', u'sydney'] [u'latham', u'attack', u'colleagu'] [u'latham', u'book', u'wont', u'long', u'term', u'effect'] [u'latham', u'say', u'diari', u'correct', u'public', u'record'] [u'lennon', u'music', u'slam', u'critic', u'close'] [u'liber', u'polici', u'promis', u'gippsland', u'road', u'boost'] [u'light', u'finger', u'green', u'thumb', u'pinch', u'public', u'plant'] [u'liverpool', u'look', u'pounc', u'struggl', u'unit'] [u'main', u'street', u'receiv', u'facelift'] [u'award', u'damag', u'partner', u'fail'] [u'build', u'volt', u'static', u'electr'] [u'charg', u'real', u'estat', u'agent', u'death'] [u'jail', u'life', u'murder', u'babi'] [u'question', u'real', u'estat', u'agent', u'death'] [u'market', u'rise', u'price', u'drop'] [u'mayor', u'elect', u'strong', u'contest'] [u'mayor', u'vote', u'intensifi'] [u'mayor', u'understand', u'daintre', u'build', u'reason'] [u'maywald', u'angri', u'telstra', u'sale', u'approv'] [u'mice', u'stem', u'cell', u'treat', u'sheep'] [u'mildura', u'plan', u'wast', u'dump', u'protest'] [u'miner', u'kill', u'accid'] [u'minist', u'apologis', u'highway', u'accid', u'victim'] [u'seek', u'nation', u'contamin', u'protocol'] [u'vegi', u'curb', u'pancreat', u'cancer', u'risk'] [u'mosqu', u'bomb', u'kill'] [u'move', u'afoot', u'cemeteri', u'dreamtim', u'place'] [u'apologis', u'affair', u'scandal'] [u'call', u'negoti', u'pierc', u'creek', u'impass'] [u'criticis', u'countri', u'summit'] [u'elli', u'deni', u'latham', u'harass'] [u'pleas', u'support', u'biofuel', u'task', u'forc'] [u'seek', u'surgeri', u'resourc'] [u'murder', u'charg', u'drop', u'snowtown', u'accus'] [u'nanotechnolog', u'help', u'develop', u'artifici'] [u'nation', u'disappoint', u'coalit', u'talk', u'leak'] [u'nation', u'voic', u'concern', u'irrig', u'plan'] [u'nativ', u'titl', u'law', u'overhaul'] [u'lithgow', u'wast', u'centr', u'servic', u'citi'] [u'orlean', u'rise', u'bush'] [u'fund', u'help', u'condobolin', u'health', u'woe'] [u'time', u'ferrari', u'test', u'say', u'rossi'] [u'elect', u'test', u'impact', u'mark', u'latham'] [u'nurs', u'help', u'sexual', u'assault', u'victim'] [u'opposit', u'call', u'fast', u'track', u'helen', u'doctor'] [u'opposit', u'drive', u'ahead', u'region', u'road', u'plan'] [u'opposit', u'fear', u'futur', u'illawarra', u'health'] [u'parti', u'minut', u'elect', u'campaign'] [u'parti', u'offer', u'support', u'geraldton', u'greenough'] [u'peden', u'prim', u'vega', u'showdown'] [u'perform', u'question', u'cost', u'nuditi'] [u'photograph', u'jail', u'cameron', u'diaz', u'topless', u'photo'] [u'chow', u'murdoch'] [u'name', u'whitlam', u'jeffrey', u'chief'] [u'polic', u'baffl', u'boy', u'disappear'] [u'polic', u'consid', u'bushfir', u'suspici'] [u'polic', u'investig', u'alic', u'spring', u'stab', u'death'] [u'polic', u'investig', u'delacomb', u'hous', u'attack'] [u'polic', u'investig', u'fourth', u'coffe', u'shop', u'break'] [u'polic', u'probe', u'child', u'shoplift', u'claim'] [u'polic', u'recommend', u'lesli', u'face', u'illeg', u'possess'] [u'polic', u'search', u'robber'] [u'polic', u'suspect', u'real', u'estat', u'agent', u'strangl'] [u'polic', u'tackl', u'riot', u'belfast'] [u'public', u'pipelin', u'plan'] [u'publish', u'condemn', u'latham', u'interview'] [u'favourit', u'anticip', u'tough', u'match'] [u'railcorp', u'boss', u'deni', u'job'] [u'rapist', u'film', u'attack', u'mobil', u'phone', u'jail'] [u'urg', u'bank', u'reform'] [u'refuge', u'glimps', u'outback'] [u'region', u'urg', u'rental', u'push'] [u'robert', u'urg', u'gympi', u'anti'] [u'rooney', u'urg', u'shrink'] [u'roo', u'worri', u'hall', u'slump'] [u'rossi', u'struggl', u'japan', u'practic'] [u'rumour', u'aris', u'timber', u'compani', u'takeov'] [u'rural', u'women', u'overweight', u'citi', u'counterpart'] [u'santo', u'begin', u'newest', u'carnarvon', u'basin', u'product'] [u'scientist', u'urg', u'farm', u'chang', u'combat'] [u'search', u'continu', u'miss', u'india'] [u'senat', u'presid', u'deni', u'telstra', u'conflict'] [u'senat', u'call', u'medicar', u'cover', u'obes'] [u'senat', u'call', u'combat', u'child', u'abus'] [u'senat', u'prais', u'beazley', u'support', u'suicid'] [u'brace', u'storm'] [u'seventh', u'afghan', u'elect', u'candid', u'kill'] [u'shark', u'counterblow', u'grand', u'final', u'clash'] [u'shire', u'continu', u'drought'] [u'smash', u'repair', u'beat', u'nrma', u'disput', u'talk'] [u'snowdon', u'sceptic', u'telstra', u'sale'] [u'steal', u'rembrandt', u'paint', u'recov'] [u'strict', u'protocol', u'place', u'grand', u'final'] [u'strong', u'look', u'break', u'truck', u'pull', u'record'] [u'strong', u'wind', u'warn', u'issu', u'south', u'east'] [u'studi', u'investig', u'effect', u'burn', u'off', u'rare'] [u'swan', u'slam', u'saint', u'late', u'onslaught'] [u'govt', u'urg', u'reduc', u'size', u'health', u'dept'] [u'teen', u'die', u'capel', u'crash'] [u'labor', u'parti', u'tri', u'deal'] [u'thousand', u'expect', u'attend', u'carniv', u'flower'] [u'trio', u'arrest', u'drug', u'bust'] [u'trio', u'jail', u'man', u'death', u'forc', u'evict'] [u'tsunami', u'worker', u'seek', u'kimberley', u'support'] [u'injur', u'skydiv', u'accid'] [u'kill', u'gunmen', u'open', u'baghdad', u'worker'] [u'allow', u'longer', u'detent', u'terror', u'suspect'] [u'criticis', u'poverti', u'outcom'] [u'union', u'worri', u'job', u'sack', u'nestl', u'worker'] [u'submit', u'enterpris', u'agreement'] [u'uranium', u'explor', u'plan', u'despit', u'mine'] [u'vaughan', u'award', u'freedom', u'home', u'town'] [u'want', u'fuel', u'excis', u'reform', u'fast', u'track'] [u'vote', u'loom', u'hard', u'fight', u'campaign'] [u'wada', u'rule', u'caffein'] [u'wagga', u'labor', u'criticis', u'latham', u'comment'] [u'hop', u'clarifi', u'plan', u'nativ', u'titl', u'chang'] [u'weather', u'warn'] [u'west', u'coast', u'readi', u'kick', u'matera'] [u'woman', u'foot', u'amput', u'bush', u'ordeal'] [u'women', u'close', u'accid', u'stake'] [u'worker', u'look', u'employ', u'fuel', u'cost', u'compo'] [u'worker', u'stress', u'leav', u'follow', u'prison'] [u'zellweg', u'marriag', u'month'] [u'taliban', u'arrest', u'afghanistan'] [u'power', u'wind', u'lash'] [u'accc', u'urg', u'join', u'petrol', u'price', u'forum'] [u'fail', u'save', u'starv', u'niger', u'children'] [u'reject', u'latham', u'allianc', u'stanc'] [u'anger', u'mount', u'musharraf', u'rape', u'remark'] [u'applebi', u'seiz', u'lead'] [u'author', u'probe', u'explos', u'melbourn', u'home'] [u'banana', u'grower', u'seek', u'nation', u'levi'] [u'beazley', u'stanc', u'iraq', u'defeatist'] [u'beirut', u'bomb', u'kill'] [u'beirut', u'bomb', u'scene', u'like', u'hell'] [u'boast', u'barmi', u'armi', u'parad', u'sydney'] [u'builder', u'applaud', u'gungahlin', u'drive', u'rule'] [u'bush', u'rule', u'rais', u'tax', u'hurrican'] [u'bush', u'nephew', u'arrest', u'texa'] [u'bush', u'urg', u'katrina', u'victim', u'look', u'futur'] [u'elect', u'candid', u'talk', u'contest'] [u'elect', u'hold'] [u'cane', u'toad', u'imit', u'human', u'life'] [u'caulfield', u'contend', u'line', u'melbourn'] [u'channel', u'warn', u'brother'] [u'counsellor', u'face', u'tougher', u'regul'] [u'count', u'elect'] [u'courtney', u'love', u'jail', u'parol', u'breach'] [u'cowboy', u'send', u'storm', u'pack'] [u'craig', u'promis', u'crow', u'attack'] [u'crew', u'work', u'repair', u'wind', u'ravag', u'brisban'] [u'croc', u'cat', u'notch', u'victori'] [u'crow', u'bunni'] [u'cyclon', u'risk', u'demand', u'action', u'climat', u'chang'] [u'digit', u'mammographi', u'improv', u'cancer', u'detect'] [u'kit', u'help', u'driver', u'fight', u'crime'] [u'dont', u'play', u'blame', u'game', u'say', u'labour'] [u'eagl', u'crow', u'reach', u'decid'] [u'farmer', u'watch', u'telstra', u'like', u'hawk'] [u'firefight', u'battl', u'larg', u'bushfir'] [u'geal', u'take', u'belt'] [u'rooney', u'break', u'say', u'gascoign'] [u'green', u'urg', u'review', u'sexual', u'assault', u'law'] [u'guilti', u'verdict', u'pochopien', u'case'] [u'gunn', u'chip', u'away', u'takeov', u'specul'] [u'gusti', u'wind', u'swirl', u'south', u'east'] [u'hama', u'milit', u'ralli', u'settlement', u'ruin'] [u'helicopt', u'race', u'rescu', u'injur'] [u'hensbi', u'crash', u'match', u'play'] [u'hmas', u'sydney', u'search', u'give', u'govt', u'back'] [u'hodg', u'face', u'tiger'] [u'hollywood', u'produc', u'luft', u'die'] [u'howard', u'urg', u'pursu', u'nuclear', u'disarma'] [u'human', u'traffic', u'rife', u'europ'] [u'hundr', u'palestinian', u'polic', u'deploy', u'border'] [u'hunter', u'killer', u'jail', u'life'] [u'indi', u'driver', u'brisco', u'critic', u'care', u'wreck'] [u'interview', u'johnathan', u'thurston', u'paul', u'bowman'] [u'joey', u'lose', u'championship', u'open'] [u'john', u'lift', u'wolv'] [u'joyc', u'set', u'sight', u'deal'] [u'king', u'dodg', u'bullet', u'razorback', u'clip', u'hawk'] [u'labor', u'sweep', u'elect'] [u'labor', u'tip', u'elect'] [u'labour', u'elect'] [u'labour', u'opposit', u'level', u'vote', u'count'] [u'languag', u'teacher', u'oversea', u'fellowship'] [u'latham', u'blame', u'labor', u'elect', u'failur'] [u'malaysia', u'issu', u'death', u'sentenc', u'acehnes', u'drug'] [u'question', u'stab'] [u'middl', u'age', u'seek', u'attempt', u'abduct'] [u'miner', u'explor', u'spend', u'soar'] [u'miss', u'diver'] [u'mix', u'respons', u'stone', u'mastic', u'review', u'find'] [u'mix', u'result', u'hay', u'stabl'] [u'mosqu', u'attack', u'kill'] [u'murali', u'deni', u'bet', u'claim'] [u'murdocca', u'brace', u'tough', u'clash', u'victori'] [u'narrow', u'lead', u'rule', u'labour', u'parti'] [u'zealand', u'vote'] [u'ngos', u'mchale', u'child', u'abus'] [u'ireland', u'protest', u'pull', u'polic', u'talk'] [u'player', u'nation', u'scrabbl', u'comp'] [u'north', u'korea', u'drop', u'summit'] [u'north', u'korea', u'talk', u'continu'] [u'take', u'ticket', u'flop'] [u'oecd', u'confirm', u'china', u'export', u'domin'] [u'opposit', u'support', u'allianc'] [u'opposit', u'take', u'earli', u'lead', u'elect'] [u'ozon', u'layer', u'hole', u'near', u'record', u'size'] [u'paul', u'roo', u'interview'] [u'perth', u'storm', u'damag', u'home', u'cut', u'power'] [u'pilot', u'threaten', u'crash', u'steal', u'plane'] [u'plane', u'crash', u'tower', u'threat'] [u'polic', u'investig', u'fatal', u'hunt', u'accid'] [u'polic', u'probe', u'sight', u'miss', u'teen'] [u'polic', u'search', u'dump', u'mawson', u'murder', u'clue'] [u'poll', u'booth', u'open'] [u'poll', u'violenc', u'continu', u'afghanistan'] [u'puppi', u'join', u'prayer'] [u'qanta', u'defend', u'handl', u'flight', u'delay'] [u'storm', u'leav', u'thousand', u'power'] [u'quigley', u'regret', u'conduct', u'laps'] [u'rain', u'fail', u'stop', u'river', u'regatta'] [u'record', u'give', u'capirossi', u'japan', u'pole'] [u'rock', u'roll', u'bloom', u'canberra', u'festiv'] [u'schwarzenegg', u'say', u'hell'] [u'hurt', u'geelong', u'hotel'] [u'hurt', u'melbourn', u'multi', u'accid'] [u'steal', u'renoir'] [u'stroke', u'tie', u'increas', u'risk', u'epilepsi'] [u'sydney', u'school', u'remain', u'open', u'despit', u'number'] [u'synod', u'hear', u'progress', u'abus', u'mediat'] [u'taliban', u'kill', u'policemen', u'kabul'] [u'taliban', u'urg', u'afghan', u'boycott', u'poll'] [u'teen', u'shoot', u'dead', u'hunt', u'accid'] [u'telstra', u'sale', u'vote', u'difficult', u'nation', u'say'] [u'thoma', u'accept', u'blame', u'saint', u'loss'] [u'troop', u'pull', u'orlean', u'inch'] [u'tyson', u'stenglein', u'dean', u'peter', u'sumich'] [u'summit', u'back', u'weaker', u'reform'] [u'summit', u'outcom', u'disappoint', u'howard'] [u'upgrad', u'price', u'bolster', u'market'] [u'allianc', u'outdat', u'latham'] [u'plan', u'travel', u'sanction', u'mugab'] [u'vail', u'call', u'offset', u'scheme', u'review'] [u'vail', u'call', u'labor', u'account', u'latham'] [u'vail', u'call', u'labor', u'explain', u'committ'] [u'vaughan', u'warn', u'ash', u'hero'] [u'malpractic', u'case'] [u'voter', u'follow', u'instinct', u'poll'] [u'voter', u'tight', u'elect'] [u'vote', u'begin', u'elect'] [u'vote', u'close', u'general', u'elect'] [u'warn', u'katich', u'return', u'counti', u'action'] [u'wild', u'wind', u'extend', u'brisban', u'blackout'] [u'wind', u'continu', u'whip', u'havoc', u'brisban'] [u'young', u'gun', u'captur', u'queensland'] [u'yudhoyono', u'confirm', u'jail', u'term', u'cut', u'review'] [u'aceh', u'rebel', u'exceed', u'weapon', u'turn', u'target'] [u'urg', u'accept', u'feder', u'skill', u'shortag', u'fund'] [u'adelaid', u'maintain', u'unbeaten', u'streak'] [u'adelaid', u'unit', u'maintain', u'unbeaten', u'streak'] [u'afghan', u'begin', u'vote', u'landmark', u'poll'] [u'afghan', u'poll'] [u'alp', u'star', u'recruit', u'plan', u'surpris'] [u'applebi', u'lose', u'farmington', u'lead'] [u'ash', u'take', u'vaughan', u'surpris'] [u'australian', u'movi', u'win', u'toronto', u'festiv', u'honour'] [u'blair', u'bias', u'bbcs', u'hurrican', u'report', u'murdoch'] [u'border', u'secur', u'boost', u'afghan', u'poll'] [u'brisban', u'polic', u'investig', u'girl', u'death'] [u'busi', u'peopl', u'return', u'orlean'] [u'campbel', u'shock', u'goosen', u'reach', u'match', u'play', u'final'] [u'bomb', u'kill', u'market', u'east', u'baghdad'] [u'chelsea', u'rival'] [u'church', u'compens', u'offer', u'insult', u'abus', u'victim'] [u'weigh', u'releas', u'classifi', u'sept', u'report'] [u'clark', u'brash', u'claim', u'right', u'govern'] [u'clash', u'athen'] [u'driver', u'park', u'kill', u'ralli', u'great', u'britain'] [u'critic', u'aust', u'allianc', u'warrant', u'expert'] [u'cyclist', u'sutherland', u'drop', u'posit', u'dope', u'test'] [u'defiant', u'iran', u'stand', u'nuclear', u'program'] [u'democrat', u'defend', u'mchale', u'foster', u'care'] [u'deportivo', u'hang', u'draw'] [u'dive', u'industri', u'credit', u'rescu', u'safeti', u'rule'] [u'diver', u'recov', u'north', u'ordeal'] [u'driver', u'quiz', u'alleg'] [u'export', u'deal', u'boost', u'tasmania', u'wool', u'industri'] [u'flintoff', u'pietersen', u'subcontin'] [u'fund', u'squeez', u'cut', u'shark', u'patrol'] [u'ganguli', u'chappel', u'feud', u'simmer'] [u'cylind', u'examin', u'die'] [u'germani', u'vote', u'close', u'elect'] [u'girl', u'risk', u'rid', u'relat', u'brain', u'injuri'] [u'guantanamo', u'hunger', u'strike', u'unnerv', u'author'] [u'hindmarsh', u'miss', u'cowboy', u'clash'] [u'hobart', u'dual', u'stab', u'suspect', u'charg'] [u'injur', u'hospit', u'helicopt', u'rescu'] [u'intens', u'polit', u'campaign', u'continu', u'germani'] [u'inter', u'bounc'] [u'interview', u'graham', u'murray', u'craig', u'bellami'] [u'interview', u'triumphant', u'tiger'] [u'iranian', u'presid', u'deni', u'hostag', u'claim'] [u'iran', u'nuclear', u'speech', u'disappoint', u'straw'] [u'iran', u'warn', u'iaea', u'secur', u'council', u'referr'] [u'iraqi', u'parliament', u'member', u'kill'] [u'iraq', u'parliament', u'approv', u'constitut'] [u'islam', u'leader', u'prais', u'advisori', u'group'] [u'jet', u'thrash', u'hapless', u'knight'] [u'karzai', u'grate', u'australian', u'troop', u'presenc'] [u'labor', u'presid', u'urg', u'return', u'core', u'valu'] [u'labor', u'waugh', u'plan', u'surpris'] [u'latham', u'book', u'releas'] [u'latham', u'diari', u'cloud', u'elect'] [u'latham', u'claim', u'froth', u'bubbl'] [u'latham', u'prove', u'beazley', u'claim', u'tanner'] [u'lawyer', u'welcom', u'issu', u'kit', u'driver'] [u'lennon', u'forestri', u'industri', u'pocket', u'latham'] [u'lennon', u'wife', u'put', u'beatl'] [u'live', u'tasmanian', u'artist', u'writer'] [u'catch', u'alleg', u'drive'] [u'custodi', u'fatal', u'shoot'] [u'mauresmo', u'crush', u'myskina', u'level', u'franc'] [u'million', u'afghan', u'head', u'poll'] [u'mix', u'reaction', u'mark', u'latham'] [u'moss', u'keep', u'contract', u'despit', u'drug', u'photo'] [u'motorcyclist', u'speed', u'limit', u'protest'] [u'musharraf', u'deni', u'rape', u'remark'] [u'nation', u'greater', u'altern', u'fuel'] [u'nation', u'council', u'pull', u'telstra', u'motion'] [u'drug', u'law', u'introduc'] [u'orlean', u'resid', u'warn', u'hardship'] [u'rice', u'dinner', u'women', u'right'] [u'north', u'korea', u'talk', u'stretch', u'monday'] [u'nottinghamshir', u'year', u'titl', u'drought'] [u'polic', u'probe', u'aircraft', u'crash', u'threat'] [u'obasanjo', u'hint', u'ivori', u'coast', u'diplomaci', u'review'] [u'dead', u'ringwood', u'east', u'shoot'] [u'opec', u'want', u'stabilis', u'price', u'presid', u'say'] [u'opposit', u'pledg', u'improv', u'disgrac'] [u'parti', u'ditch', u'effort', u'north', u'korea'] [u'peden', u'lose', u'belt', u'vega'] [u'piggin', u'wari', u'crow', u'takeov'] [u'plane', u'crash', u'threat', u'polit', u'polic'] [u'nuclear', u'stanc', u'hypocrit', u'green'] [u'xiii', u'outclass', u'kumul'] [u'podium', u'finish', u'stoner', u'japan'] [u'polic', u'search', u'mental', u'health', u'facil', u'escape'] [u'polic', u'shortag', u'compound', u'stress', u'studi'] [u'poll', u'close', u'afghanistan'] [u'poll', u'open', u'germani'] [u'pollut', u'fear', u'remain', u'hurrican', u'wake'] [u'poor', u'nutrit', u'cut', u'worker', u'product'] [u'rabbitoh', u'spell', u'crow', u'sale', u'condit'] [u'research', u'seek', u'speed', u'contribut', u'accid'] [u'rice', u'call', u'last', u'revolut', u'reform'] [u'ricketson'] [u'rossi', u'crash', u'capirossi', u'win', u'japan'] [u'urg', u'leadership', u'right'] [u'secreci', u'surround', u'solar', u'challeng', u'entrant'] [u'sharon', u'threaten', u'hamper', u'palestinian', u'elect'] [u'sheepish', u'twist', u'realiti', u'program'] [u'year', u'girl', u'dead'] [u'snake', u'take', u'care', u'littl', u'thing'] [u'super', u'coach', u'bennett', u'feel', u'buchanan'] [u'swan', u'believ', u'hall', u'play'] [u'swan', u'sweat', u'hall', u'braun', u'doubt', u'eagl'] [u'tanner', u'say', u'latham', u'take', u'gossip', u'serious'] [u'tcci', u'applaud', u'skill', u'migrant', u'initi'] [u'thredbo', u'death', u'murder', u'say', u'twin'] [u'tiger', u'book', u'date', u'dragon'] [u'tight', u'finish', u'expect', u'german', u'ballot'] [u'toll', u'patrick', u'tussl', u'threaten', u'joint', u'rail', u'ventur'] [u'tram', u'derail', u'caus', u'traffic', u'delay'] [u'trio', u'escap', u'injuri', u'emerg', u'land'] [u'week', u'elect', u'result', u'know'] [u'deni', u'scrap', u'iraq', u'withdraw', u'plan'] [u'union', u'urg', u'council', u'scrap', u'awa'] [u'reform', u'stop', u'terror', u'say', u'rice'] [u'train', u'derail', u'kill', u'injur'] [u'vail', u'urg', u'parti', u'focus', u'debat'] [u'vatican', u'late', u'pope', u'day'] [u'victori', u'snatch', u'late', u'draw', u'underman', u'roar'] [u'wild', u'wind', u'leav', u'major', u'damag'] [u'wind', u'caus', u'brisban', u'blackout'] [u'woman', u'quiz', u'child', u'death'] [u'women', u'woodchop', u'rejoin', u'program'] [u'tonn', u'truck', u'barrier', u'strongman', u'world'] [u'accc', u'investig', u'petrol', u'price', u'hike', u'beazley'] [u'event', u'concern', u'environ', u'group'] [u'afghan', u'turn', u'poll', u'year'] [u'afghan', u'voter', u'turn', u'larg', u'number', u'despit'] [u'investig', u'baxter', u'mattress'] [u'alic', u'spring', u'host', u'citizenship', u'ceremoni'] [u'alleg', u'thief', u'drive', u'owner', u'bonnet'] [u'ord', u'close', u'flat'] [u'latham', u'book', u'releas'] [u'chief', u'call', u'revamp', u'hospit'] [u'award', u'cave', u'garden', u'work'] [u'applebi', u'pampl', u'trail', u'gore', u'claim', u'maiden'] [u'argentina', u'seek', u'falkland', u'talk', u'britain'] [u'arson', u'suspect', u'wynyard', u'school', u'blaze'] [u'artist', u'fight', u'theft', u'charg'] [u'australian', u'receiv', u'number', u'award'] [u'weather', u'doesnt', u'deter', u'kalgoorli', u'punter'] [u'barra', u'group', u'look', u'season', u'gulf'] [u'baxter', u'detaine', u'food', u'choic', u'activ'] [u'baxter', u'upgrad', u'wont', u'stop', u'self', u'harm', u'act'] [u'beach', u'rescu', u'spark', u'hole', u'dig', u'warn'] [u'bear', u'narwan', u'celebr', u'grand', u'final', u'win'] [u'beazley', u'deni', u'abandon', u'suicid'] [u'beazley', u'exploit', u'daughter', u'naiveti', u'latham'] [u'belgian', u'win', u'town', u'crier', u'titl'] [u'better', u'manag', u'vital', u'health'] [u'crowd', u'turn', u'shinju', u'matsuri', u'festiv'] [u'blayney', u'industri', u'subdivis'] [u'breast', u'cancer', u'awar', u'ride', u'hail', u'success'] [u'brisban', u'theft', u'accus', u'deni', u'heist', u'claim'] [u'brisban', u'face', u'tougher', u'water', u'restrict'] [u'broadband', u'custom', u'pass', u'million'] [u'bronco', u'search', u'answer'] [u'brother', u'hous', u'alight', u'fight'] [u'brownlow', u'winner', u'cousin', u'eye', u'flag'] [u'govt', u'review', u'school', u'cost'] [u'research', u'miner', u'sand', u'project'] [u'chariti', u'feel', u'pinch', u'fuel', u'price', u'rise'] [u'citrus', u'canker', u'erad', u'program', u'enter', u'final'] [u'citi', u'centr', u'strategi', u'creat', u'plan', u'worri'] [u'civil', u'liberti', u'group', u'urg', u'choic', u'bushfir'] [u'clark', u'begin', u'minor', u'parti', u'talk', u'wait'] [u'coach', u'prais', u'hawk', u'wild', u'weather'] [u'committe', u'consid', u'diesel', u'plant', u'plan'] [u'commod', u'jump', u'bolster', u'export', u'earn'] [u'communiti', u'council', u'call', u'local', u'plan'] [u'condom', u'protect', u'crime'] [u'confid', u'predict', u'ahead', u'wheat', u'harvest'] [u'coron', u'warn', u'parent', u'sleep', u'risk'] [u'council', u'begin', u'hyde', u'park', u'tree', u'cull'] [u'council', u'fear', u'helicopt', u'servic', u'futur'] [u'councillor', u'reduct', u'agenda'] [u'council', u'seek', u'fund', u'airport', u'secur'] [u'council', u'beat', u'raaf', u'base', u'expans'] [u'croc', u'snap', u'wildcat'] [u'davenport', u'win', u'bali', u'intern'] [u'piero', u'inspir', u'juve', u'milan', u'crash'] [u'dementia', u'case', u'tripl'] [u'democrat', u'want', u'dump', u'blaze', u'dous'] [u'dive', u'firm', u'confid', u'crew', u'respons', u'miss'] [u'downer', u'pledg', u'fund', u'assist', u'afghan', u'elect'] [u'doyl', u'announc', u'local', u'candid'] [u'dragon', u'wari', u'form', u'tiger'] [u'england', u'bring', u'fresh', u'talent', u'pakistan'] [u'expert', u'cull', u'impact', u'penguin'] [u'expert', u'want', u'action', u'lobster', u'recoveri', u'plan'] [u'famili', u'flee', u'burn', u'hous'] [u'fan', u'welcom', u'cowboy', u'home'] [u'feder', u'govt', u'tell', u'lead', u'mental', u'health'] [u'film', u'maker', u'set', u'sight', u'kakadu', u'croc', u'film'] [u'final', u'loser', u'add', u'kangaroo', u'train', u'squad'] [u'firefight', u'continu', u'battl', u'blaze'] [u'servic', u'underestim', u'eyr', u'condit', u'report'] [u'flintoff', u'look', u'horizon'] [u'dublin', u'tool', u'shed', u'snap'] [u'fuel', u'price', u'prompt', u'taxi', u'fare', u'hike'] [u'leak', u'near', u'servic', u'station', u'prompt', u'evacu'] [u'gippsland', u'passeng', u'train', u'consid'] [u'girl', u'die', u'train'] [u'gold', u'coast', u'commonwealth', u'game'] [u'govt', u'bodi', u'tour', u'indigen', u'communiti'] [u'govt', u'call', u'extend', u'electr', u'concess'] [u'govt', u'call', u'commonwealth', u'releas', u'road', u'fund'] [u'govt', u'offer', u'kyogl', u'blaze', u'help'] [u'govt', u'pay', u'support', u'cane', u'industri'] [u'govt', u'tanker', u'stanc', u'see', u'reef', u'threat'] [u'servic', u'lodg', u'fund', u'applic'] [u'grant', u'boost', u'communiti', u'effort', u'save', u'threaten'] [u'grower', u'push', u'ahead', u'biocan', u'project'] [u'hall', u'face', u'grand', u'final', u'suspens'] [u'health', u'safeti', u'issu', u'domin', u'polic'] [u'health', u'profession', u'resolut', u'say'] [u'hera', u'claim', u'fourth', u'tour', u'spain', u'titl'] [u'high', u'wind', u'blame', u'skydiv', u'mishap'] [u'high', u'wind', u'stop', u'carniv', u'flower', u'street', u'parad'] [u'hop', u'survey', u'identifi', u'disabl'] [u'hospit', u'issu', u'manag', u'doctor'] [u'hospit', u'report', u'hold', u'beatti', u'order'] [u'hundr', u'attempt', u'self', u'harm', u'detent'] [u'iaea', u'seek', u'access', u'north', u'korea', u'nuke', u'pledg'] [u'iemma', u'await', u'counter', u'terror', u'plan', u'detail'] [u'illeg', u'fishermen', u'releas', u'good', u'behaviour', u'bond'] [u'indian', u'board', u'probe', u'ganguli', u'chappel'] [u'jackman', u'rush', u'snatch', u'emmi'] [u'jackson', u'beat', u'award'] [u'kaiser', u'take', u'premier'] [u'wit', u'balibo', u'kill', u'die'] [u'kiwi', u'campbel', u'take', u'match', u'play', u'titl'] [u'labor', u'damag', u'control', u'latham', u'diari'] [u'labor', u'recov', u'attack', u'mark'] [u'labor', u'urg', u'stay', u'calm', u'elect', u'scare'] [u'laugh', u'caus', u'man', u'death'] [u'leader', u'main', u'parti', u'claim', u'victori'] [u'leagu', u'star', u'tackl', u'pngs', u'aid', u'threat'] [u'legal', u'worker', u'strike', u'condit'] [u'local', u'busi', u'urg', u'silver', u'citi'] [u'local', u'council', u'discuss', u'humpti'] [u'lodger', u'urg', u'secur', u'accommod'] [u'macquari', u'bank', u'consortium', u'acquir', u'dyno', u'nobel'] [u'arrest', u'ringwood', u'east', u'shoot'] [u'charg', u'ram', u'garbag', u'bin'] [u'die', u'highway', u'crash'] [u'face', u'court', u'real', u'estat', u'agent', u'murder'] [u'guilti', u'stab', u'murder'] [u'hospit', u'rock', u'rescu'] [u'meander', u'project', u'rule'] [u'meat', u'export', u'fall', u'disrupt', u'gympi', u'meatwork'] [u'meatwork', u'feel', u'impact', u'stock', u'shortag'] [u'meet', u'focus', u'equex', u'centr', u'futur'] [u'venus'] [u'minchin', u'seek', u'compulsori', u'vote'] [u'miner', u'hop', u'locat', u'site'] [u'miner', u'deep', u'grand', u'final'] [u'minist', u'apologis', u'black', u'ars', u'remark'] [u'minist', u'sound', u'warn', u'local', u'council'] [u'miss', u'girl', u'safe'] [u'burn', u'off', u'possibl', u'brindabella', u'nation'] [u'car', u'impound', u'hoon', u'crackdown'] [u'morphin', u'overdos', u'possibl', u'canberra', u'hospit'] [u'rais', u'forens', u'counsellor', u'worri'] [u'sister', u'back', u'latham', u'suicid', u'claim'] [u'dismiss', u'cairn', u'protest'] [u'angl', u'make', u'trigonometri', u'ration'] [u'campaign', u'highland', u'tourism'] [u'wage', u'bodi', u'independ', u'andrew', u'say'] [u'zealand', u'elect', u'result', u'like', u'close'] [u'korea', u'abandon', u'nuclear', u'program'] [u'north', u'korea', u'back', u'dramat', u'nuclear'] [u'north', u'west', u'tech', u'wind', u'farm'] [u'health', u'worker', u'report', u'problem', u'commiss'] [u'croc', u'wire', u'scienc'] [u'nurs', u'manag', u'posit', u'restructur'] [u'nuttal', u'warn', u'patel', u'time', u'inquiri'] [u'offici', u'want', u'orlean', u'resid', u'return', u'delay'] [u'price', u'rise', u'affect', u'sugar', u'price'] [u'opposit', u'highlight', u'school', u'high', u'attend'] [u'opposit', u'freeway', u'plan', u'afford', u'brumbi'] [u'outdat', u'statist', u'mask', u'hospit', u'problem', u'journal'] [u'pakistan', u'youhana', u'convert', u'islam'] [u'panel', u'overse', u'fish', u'grant', u'spend'] [u'panther', u'snatch', u'grand', u'final'] [u'paralympian', u'conquer', u'kilimanjaro', u'crutch'] [u'patagonian', u'toothfish', u'trial', u'open', u'perth'] [u'paul', u'kanaar', u'miss', u'european', u'tour'] [u'paul', u'miss', u'european', u'tour'] [u'petrol', u'factor', u'actu', u'wage', u'claim'] [u'pipelin', u'adaminabi', u'water', u'woe'] [u'urg', u'interven', u'auslink', u'stalem'] [u'urg', u'global', u'effort', u'wmds'] [u'polic', u'alarm', u'motorbik', u'death', u'toll', u'outstrip'] [u'polic', u'charg', u'drug', u'raid'] [u'polic', u'examin', u'southern', u'hous', u'fire'] [u'polic', u'probe', u'railwaytown', u'theft'] [u'polic', u'probe', u'ringwood', u'east', u'shoot'] [u'polic', u'raid', u'drug', u'weapon', u'steal', u'good'] [u'polic', u'seek', u'gang', u'attack', u'wit'] [u'polic', u'seiz', u'trucki', u'key'] [u'polic', u'charg', u'teen', u'shoot'] [u'polic', u'warn', u'driver', u'school', u'holiday', u'blitz'] [u'port', u'upgrad', u'near', u'complet'] [u'princip', u'sack', u'find', u'fund', u'say'] [u'project', u'help', u'boost', u'frog', u'number'] [u'provision', u'count', u'put', u'schroeder', u'parti'] [u'public', u'yarragade', u'aquif', u'plan'] [u'public', u'invit', u'attend', u'catchment', u'meet'] [u'quiet', u'return', u'alic', u'biki', u'leav'] [u'rann', u'warn', u'nowingi', u'radioact', u'wast'] [u'real', u'slump', u'loss', u'atletico', u'beat', u'barca'] [u'report', u'highlight', u'high', u'region', u'polic', u'stress'] [u'rescu', u'servic', u'beat', u'chopper', u'capabl'] [u'resid', u'consid', u'take', u'civic', u'centr', u'fight'] [u'royal', u'darwin', u'defend', u'hospit', u'secur'] [u'opposit', u'lobbi', u'govt', u'wast', u'dump'] [u'scienc', u'attempt', u'thwart', u'pearl', u'thiev'] [u'second', u'problem', u'croc', u'bind', u'home'] [u'seven', u'guilti', u'murder', u'sword', u'attack'] [u'shark', u'celebr', u'final', u'bear', u'lament', u'grand'] [u'shiit', u'converg', u'karbala', u'despit', u'threat'] [u'signific', u'rain', u'mark', u'snow', u'season'] [u'singtel', u'issu', u'profit', u'warn'] [u'site', u'decis', u'loom', u'townsvill', u'technic'] [u'slater', u'win', u'california'] [u'snowtown', u'killer', u'cook', u'victim', u'flesh'] [u'state', u'coron', u'investig', u'teenag', u'railway', u'death'] [u'steelwork', u'law', u'creat', u'legal', u'concern'] [u'student', u'studi', u'focus', u'wild', u'pig'] [u'submiss', u'seek', u'petrol', u'price'] [u'suicid', u'prevent', u'effort', u'earn', u'award'] [u'suncorp', u'metway', u'recruit', u'telstra', u'chief'] [u'suspect', u'toothfish', u'poacher', u'move', u'villawood'] [u'swan', u'expect', u'fight', u'hall', u'charg'] [u'taipan', u'protest', u'rychart', u'late', u'winner'] [u'health', u'worker', u'consid', u'industri', u'action'] [u'teen', u'die', u'cycl', u'accid'] [u'thiev', u'steal', u'litr', u'fuel'] [u'charg', u'ecstasi', u'seizur'] [u'toon', u'lift', u'pressur', u'souness'] [u'tram', u'servic', u'track', u'despit', u'derail'] [u'traralgon', u'end', u'maffra', u'win', u'streak'] [u'tripodi', u'play', u'polit', u'auslink'] [u'appeal', u'aust', u'embassi', u'bomb', u'death', u'sentenc'] [u'question', u'miss', u'teen'] [u'unemploy', u'work', u'buchannon', u'park', u'revamp'] [u'union', u'leader', u'deni', u'latham', u'claim', u'trade', u'deal'] [u'vintag', u'plan', u'prepar', u'outback', u'safari'] [u'govt', u'chip', u'sydney', u'search'] [u'govt', u'pressur', u'offer', u'fuel', u'price', u'relief'] [u'potato', u'grower', u'attend', u'confer'] [u'water', u'leak', u'close', u'star', u'hotel'] [u'western', u'welcom', u'visit', u'refuge'] [u'west', u'avoid', u'overconfid', u'princ'] [u'west', u'grand', u'final'] [u'whitlam', u'shed', u'light', u'latham', u'fallout'] [u'woman', u'charg', u'child', u'murder'] [u'woman', u'face', u'drug', u'charg', u'postal', u'search'] [u'woman', u'interview', u'alleg', u'abduct'] [u'woodsid', u'win', u'green', u'award'] [u'jewel', u'thief', u'shoot', u'arm', u'robberi'] [u'river', u'divers', u'allow', u'coal', u'access'] [u'armi', u'cadet', u'suffer', u'food', u'poison'] [u'voter', u'particip', u'afghan', u'poll'] [u'abar', u'criticis', u'veget', u'law'] [u'abar', u'fear', u'crop', u'farmer', u'cost'] [u'lead', u'nazi', u'hunter', u'die'] [u'qaeda', u'claim', u'london', u'bomb'] [u'qaeda', u'pledg', u'spare', u'iraqi', u'shiit'] [u'welcom', u'child', u'obes', u'plan'] [u'america', u'space', u'program', u'go', u'futur'] [u'femal', u'judg', u'high', u'court'] [u'armi', u'call', u'commonwealth', u'game', u'secur'] [u'ash', u'fallout', u'begin', u'senior', u'player', u'ax'] [u'australian', u'open', u'revert', u'tradit', u'timeslot'] [u'australian', u'paint', u'excit', u'melbourn', u'buyer'] [u'australia', u'selector', u'swing'] [u'beatti', u'deni', u'health', u'report', u'cover'] [u'beatti', u'hospit', u'inquiri', u'springborg'] [u'belgian', u'boost', u'mcewen', u'world'] [u'bendigo', u'famili', u'feel', u'higher', u'fuel', u'price'] [u'berrigan', u'shire', u'experi', u'hous', u'boom'] [u'hand', u'pilbara', u'accommod', u'villag'] [u'brack', u'deni', u'discrimin', u'union', u'firm'] [u'britain', u'accept', u'term', u'gulf', u'syndrom'] [u'bronco', u'chief', u'rule', u'cowboy'] [u'build', u'societi', u'hit', u'mark'] [u'bundaberg', u'get', u'medic', u'servic', u'director'] [u'bush', u'cautious', u'welcom', u'north', u'korea', u'pledg'] [u'bushfir', u'claim', u'agenda', u'assembl', u'sit'] [u'busi', u'chamber', u'unhappi', u'sunday', u'trade', u'snub'] [u'busi', u'expo', u'plan', u'riverina'] [u'busi', u'owner', u'welcom', u'council', u'park', u'decis'] [u'cabonn', u'council', u'councillor', u'ward'] [u'farmer', u'plantat'] [u'govt', u'action', u'crop', u'contamin'] [u'govt', u'simplifi', u'super', u'choic', u'process'] [u'canal', u'develop', u'requir', u'care', u'plan'] [u'canberra', u'revamp', u'mental', u'health', u'servic'] [u'cattl', u'export', u'brace', u'downturn'] [u'cfmeu', u'attack', u'prematur', u'attack'] [u'china', u'refus', u'death', u'penalti', u'repriev'] [u'chines', u'condom', u'compani', u'unit', u'clinton', u'lewinski'] [u'clarenc', u'council', u'elect', u'mayor'] [u'clean', u'begin', u'convent', u'centr', u'site'] [u'coal', u'miner', u'lobbi', u'long', u'servic', u'leav'] [u'council', u'defend', u'civic', u'centr', u'plan'] [u'council', u'give', u'hous', u'plan'] [u'council', u'rat', u'plan', u'worri', u'farm', u'group'] [u'council', u'share', u'flood', u'damag', u'fund'] [u'crown', u'plaza', u'reopen', u'water', u'woe'] [u'dairi', u'price', u'rise', u'unlik', u'reach', u'farmer', u'waff'] [u'deal', u'unclear', u'north', u'korea', u'demand', u'reactor'] [u'defeat', u'bear', u'beat', u'season'] [u'demand', u'high', u'coast', u'holiday', u'accommod'] [u'doc', u'deni', u'receiv', u'notif', u'year'] [u'doctor', u'call', u'dementia', u'support'] [u'doctor', u'want', u'tougher', u'drink', u'drive', u'stanc'] [u'ducat', u'get', u'armidal', u'mayor', u'spot'] [u'east', u'timores', u'fin', u'cock', u'fight'] [u'educ', u'jargon', u'get', u'better', u'govt'] [u'eel', u'defenc', u'target', u'thurston'] [u'eel', u'prepar', u'unpredict', u'cowboy'] [u'electr', u'steal', u'cannabi', u'crop', u'polic'] [u'australian', u'footbal', u'hall', u'fame'] [u'employe', u'meatwork', u'resum'] [u'fair', u'commiss', u'traine', u'wag'] [u'famili', u'age', u'record', u'jackpot', u'jobless'] [u'farmer', u'tell', u'stock', u'poison', u'plant'] [u'father', u'question', u'boy', u'drown'] [u'fear', u'farmer', u'miss', u'wyangala', u'flow'] [u'fear', u'offic', u'decis', u'compromis'] [u'femal', u'judg', u'appoint', u'high', u'court'] [u'femal', u'judg', u'high', u'court', u'appoint', u'applaud'] [u'crew', u'tackl', u'juke', u'blaze'] [u'fish', u'die', u'lagoon'] [u'florida', u'key', u'empti', u'rita', u'approach'] [u'fuel', u'excis', u'increas', u'petrol', u'price', u'burden'] [u'fuel', u'hike', u'drive', u'canberran', u'bike', u'shop'] [u'fund', u'squeez', u'cut', u'angola', u'food', u'program'] [u'cost'] [u'good', u'behaviour', u'deal', u'wipe', u'slater', u'grope', u'charg'] [u'gough', u'hop', u'world', u'select'] [u'govern', u'urg', u'seek', u'mental', u'health', u'solut'] [u'govt', u'scrap', u'fuel', u'plan'] [u'govt', u'analys', u'armi', u'food'] [u'govt', u'urg', u'fund', u'servic'] [u'grower', u'urg', u'adopt', u'super', u'vege'] [u'gusmao', u'await', u'deal', u'contract'] [u'hall', u'free', u'play', u'final'] [u'hall', u'gaspar', u'chanc', u'tribun'] [u'health', u'group', u'warn', u'govt', u'strike', u'action'] [u'health', u'right', u'bodi', u'reveal', u'patel', u'patient', u'complaint'] [u'health', u'worker', u'face', u'charg', u'alleg'] [u'hollywood', u'studio', u'team', u'fight', u'piraci'] [u'hop', u'cook', u'tourism', u'boost'] [u'hospit', u'speak', u'patient', u'treatment'] [u'hunter', u'coal', u'export', u'draw', u'green', u'protest'] [u'hydro', u'tasmania', u'deal', u'fund', u'wind', u'farm'] [u'iemma', u'refus', u'sack', u'racial', u'slur'] [u'indonesian', u'troop', u'begin', u'aceh', u'withdraw'] [u'indi', u'team', u'boss', u'confid', u'podium', u'finish'] [u'injuri', u'forc', u'allan', u'retir'] [u'injuri', u'forc', u'bomber', u'allan', u'retir'] [u'inquiri', u'prompt', u'deputi', u'polic', u'commission', u'quit'] [u'show', u'stock', u'fee', u'mill'] [u'tri', u'motiv', u'ganguli', u'chappel', u'say'] [u'jetstar', u'defend', u'decis', u'delay', u'veteran', u'flight'] [u'jetstar', u'draw', u'veteran'] [u'judici', u'commiss', u'reject', u'coron'] [u'kapunda', u'prompt', u'tougher', u'reckless', u'drive', u'penalti'] [u'labor', u'recov', u'latham', u'damag', u'rudd', u'say'] [u'land', u'right', u'law', u'hand', u'govt', u'power'] [u'latham', u'trash', u'labor', u'reput', u'beazley'] [u'laugh', u'incid', u'claim', u'second', u'life'] [u'journal', u'knock', u'race', u'intellig', u'articl'] [u'leda', u'face', u'life', u'sentenc', u'fatal', u'beat'] [u'peopl', u'defend', u'home', u'fire', u'govt', u'urg'] [u'london', u'transport', u'bomber', u'stag', u'polic'] [u'lower', u'import', u'worri', u'coal', u'analyst'] [u'malaysia', u'deputi', u'anwar', u'mahathir'] [u'face', u'court', u'video', u'store', u'bomb', u'hoax'] [u'give', u'suspend', u'sentenc', u'home', u'bomb'] [u'hospit', u'cliff', u'fall'] [u'jail', u'wife', u'manslaught'] [u'martin', u'open', u'kununurra', u'offic'] [u'massacr', u'claim', u'stall', u'darfur', u'peac', u'talk'] [u'mayor', u'call', u'better', u'south', u'burnett', u'road'] [u'mayor', u'beat', u'shoalwat', u'road', u'fund'] [u'mcgauran', u'meet', u'wool', u'grower', u'peta', u'deal'] [u'melbourn', u'woman', u'launch', u'chook'] [u'merkel', u'schroeder', u'amid', u'elect', u'limbo'] [u'mildura', u'hold', u'driver', u'restrict', u'forum'] [u'militari', u'enlist', u'commonwealth', u'game', u'secur'] [u'mine', u'compani', u'push', u'market', u'higher'] [u'molik', u'slump'] [u'moon', u'plan', u'take', u'nasa', u'futur'] [u'mosley', u'dismiss', u'threat', u'breakaway', u'seri'] [u'hop', u'bushfir', u'report', u'support'] [u'maintain', u'support', u'telstra', u'sale'] [u'unfaz', u'citizenship', u'claim'] [u'urg', u'accc', u'probe', u'rise', u'fuel', u'price'] [u'museum', u'pay', u'tribut', u'fossil', u'tourism', u'pioneer'] [u'mutant', u'stem', u'rust', u'africa'] [u'nasa', u'announc', u'return', u'moon'] [u'nation', u'tamworth', u'seat'] [u'nation', u'reviv', u'flat', u'propos'] [u'nazi', u'hunter', u'simon', u'wiesenth', u'die'] [u'newcastl', u'council', u'face', u'sack', u'mayor'] [u'newer', u'motorcycl', u'train', u'scheme', u'best'] [u'newmont', u'pollut', u'trial', u'ahead', u'court', u'say'] [u'orlean', u'return', u'halt', u'storm', u'loom'] [u'safeti', u'measur', u'help', u'save', u'british', u'diver', u'tour'] [u'korea', u'demand', u'reactor', u'disarma'] [u'korea', u'reactor', u'demand', u'put', u'deal', u'limbo'] [u'noll', u'say', u'promot', u'firm', u'hurt', u'reput'] [u'northern', u'face', u'chickenpox', u'woe'] [u'north', u'korean', u'nuclear', u'promis', u'shaki', u'grind'] [u'price', u'surg', u'depress', u'market'] [u'opec', u'hold', u'spare', u'capac'] [u'opinion', u'seek', u'tent', u'embassi'] [u'organ', u'olymp', u'adelaid'] [u'pair', u'lose', u'antarct', u'crevass'] [u'parol', u'board', u'slam', u'jewelleri', u'store', u'shoot'] [u'passeng', u'airport', u'secur', u'upgrad'] [u'pathan', u'leav', u'zimbabw', u'troubl', u'second', u'test'] [u'owner', u'urg', u'advantag', u'registr'] [u'petrol', u'excis', u'increas', u'review'] [u'pickett', u'quit', u'port'] [u'plan', u'govern', u'fuel', u'excis', u'increas'] [u'plan', u'restrict', u'fear', u'hospit', u'site'] [u'short', u'chang', u'traine', u'labor', u'say'] [u'polic', u'escap', u'charg', u'bulldog', u'phone'] [u'polic', u'probe', u'south', u'gippsland', u'school', u'blaze'] [u'polic', u'question', u'bundaberg', u'hospit', u'mental', u'health'] [u'polic', u'shoot', u'arm', u'robberi'] [u'polic', u'upgrad', u'charg', u'incid'] [u'poor', u'outlook', u'wheat', u'export'] [u'power', u'restor', u'blackout', u'stop', u'surgeri'] [u'princ', u'charl', u'open', u'organ', u'confer'] [u'public', u'urg', u'push', u'medic', u'school'] [u'puppi', u'dump', u'move'] [u'push', u'perman', u'facil', u'frustrat', u'ambul'] [u'quadripleg', u'lose', u'battl', u'mountain', u'buggi', u'rego'] [u'queensland', u'roar', u'yong', u'shin', u'retir'] [u'radiat', u'machin', u'cancer', u'treatment', u'time'] [u'turn', u'away', u'mental', u'health', u'patient', u'memo'] [u'rain', u'boost', u'prospect', u'field', u'day'] [u'recommend', u'deliv', u'bushfir'] [u'region', u'media', u'spotlight', u'bathurst'] [u'region', u'report', u'highlight', u'healthi', u'popul'] [u'replac', u'lancast', u'gerran', u'road', u'team'] [u'research', u'question', u'lake', u'entranc', u'dredg'] [u'resid', u'flee', u'storm', u'follow', u'katrina', u'path'] [u'restaur', u'wont', u'high', u'rise', u'accid'] [u'rise', u'petrol', u'price', u'fuel', u'tourism', u'concern'] [u'rockhampton', u'hop', u'retain', u'beef', u'expo'] [u'ronaldinho', u'win', u'player', u'award'] [u'rural', u'learn', u'palliat', u'care'] [u'govt', u'prepar', u'angri', u'respons', u'bushfir'] [u'sartor', u'urg', u'quit', u'racist', u'comment'] [u'introduc', u'danger', u'drive', u'penalti'] [u'scientist', u'studi', u'risk'] [u'scientist', u'urg', u'rescu', u'amphibian'] [u'seatbelt', u'safeti', u'plan', u'forklift', u'oper'] [u'selector', u'deni', u'career'] [u'sharon', u'prepar', u'showdown', u'netanyahu'] [u'sheedi', u'tip', u'west', u'coast', u'flag'] [u'sikh', u'communiti', u'rais', u'highway', u'upgrad', u'concern'] [u'doubl', u'gunner'] [u'specialist', u'assault', u'nurs', u'work', u'break'] [u'student', u'board', u'tourism', u'train'] [u'super', u'seri', u'squad', u'unveil', u'today'] [u'tank', u'attack', u'iraqi', u'detain', u'soldier'] [u'tank', u'break', u'iraqi', u'jail', u'free', u'soldier'] [u'vegi', u'grower', u'applaud', u'market', u'push'] [u'teen', u'sentenc', u'theft'] [u'teen', u'surviv', u'bussel', u'highway', u'crash'] [u'govern', u'decid', u'increas', u'fuel'] [u'offic', u'say', u'reput', u'hurt', u'phone'] [u'tour', u'oper', u'urg', u'care', u'japanes', u'visitor'] [u'townsvill', u'airport', u'prepar', u'jetstar'] [u'tradit', u'owner', u'dump', u'protest'] [u'trial', u'loom', u'cooper', u'share', u'fight'] [u'tuna', u'threaten', u'speci', u'list', u'good'] [u'charg', u'teen', u'kidnap'] [u'face', u'court', u'kidnap', u'charg'] [u'kill', u'crash', u'tractor', u'driver', u'trap'] [u'admit', u'smash', u'jail', u'wall', u'rescu'] [u'deni', u'storm', u'iraqi', u'jail', u'free', u'soldier'] [u'unfinish', u'busi', u'intern'] [u'unlicens', u'builder', u'advantag', u'owner'] [u'valu', u'coal', u'export', u'tip', u'soar'] [u'victorian', u'writer', u'win', u'vogel', u'prize'] [u'waist', u'size', u'wast', u'heart', u'diseas', u'warn'] [u'water', u'bomber', u'help', u'bushfir', u'victim'] [u'water', u'plan', u'worri', u'south', u'west', u'town'] [u'water', u'suppli', u'fluorid'] [u'wollongong', u'council', u'lower', u'deficit'] [u'woodi', u'weed', u'power', u'town'] [u'acn', u'treatment', u'link', u'respiratori', u'infect'] [u'govt', u'mental', u'health', u'propos'] [u'law', u'boost', u'tree', u'protect'] [u'actu', u'lodg', u'minimum', u'wage', u'case'] [u'actu', u'delay', u'wage', u'claim', u'say', u'busi', u'group'] [u'afp', u'child', u'porn', u'unit', u'make', u'arrest'] [u'agforc', u'welcom', u'veget', u'law', u'report'] [u'agricultur', u'sector', u'seek', u'guest', u'worker', u'visa'] [u'airport', u'secur', u'boost'] [u'albani', u'reject', u'high', u'rise', u'applic'] [u'alcan', u'plead', u'guilti', u'worker', u'death'] [u'armidal', u'murder', u'probe', u'spread', u'brisban', u'sydney'] [u'australian', u'miss', u'thailand', u'give', u'crown'] [u'base', u'jumper', u'charg', u'crane', u'plung'] [u'beatti', u'join', u'critic', u'latham', u'diari'] [u'beatti', u'see', u'need', u'health', u'inquiri'] [u'beij', u'revolut', u'flush', u'toilet', u'foul', u'reput'] [u'beresford', u'look', u'forward', u'rebuild', u'bundaberg'] [u'fuel', u'research', u'boost'] [u'bomber', u'resign'] [u'brack', u'seek', u'sunset', u'claus', u'counter', u'terror'] [u'brain', u'surgeon', u'front', u'court', u'cocain', u'possess'] [u'braun', u'jone', u'rule', u'grand', u'final'] [u'braun', u'jone', u'miss', u'grand', u'final'] [u'british', u'polic', u'probe', u'kate', u'moss', u'drug', u'claim'] [u'burma', u'need', u'help', u'democrat', u'reform', u'report'] [u'busi', u'ravensthorp', u'project'] [u'caus', u'mackay', u'unknown'] [u'back', u'merkel', u'amid', u'german', u'elect', u'stalem'] [u'childhood', u'obes', u'easili', u'accept', u'nutritionist'] [u'children', u'remov', u'properti', u'girl', u'death'] [u'citi', u'slicker', u'bone', u'properti', u'manag'] [u'coast', u'busi', u'prepar', u'open'] [u'coat', u'fine', u'wool'] [u'communiti', u'concern', u'toxic', u'wast', u'plan', u'dump'] [u'contact', u'keen', u'work'] [u'cooper', u'pacif', u'island', u'futur'] [u'corbi', u'reaction', u'disappoint', u'depart', u'indonesian'] [u'cordingley', u'return', u'red'] [u'costello', u'talk', u'benefit', u'china', u'econom'] [u'council', u'confid', u'holiday', u'let', u'restrict'] [u'council', u'fee', u'tripl', u'newcastl', u'suburb'] [u'councillor', u'threaten', u'boycott', u'mayor', u'vote'] [u'councillor', u'rise'] [u'council', u'fund', u'pyap', u'restor'] [u'court', u'hear', u'crime', u'case', u'februari'] [u'croc', u'rest', u'breaker', u'clash'] [u'crow', u'consid', u'motlop'] [u'cyclon', u'hamper', u'tiwi', u'forestri', u'project'] [u'depress', u'patient', u'better', u'choos', u'treatment'] [u'develop', u'deni', u'put', u'spin', u'canal', u'rock'] [u'district', u'manag', u'quit', u'frustrat'] [u'dolphin', u'stab', u'brutal', u'attack'] [u'dolphin', u'track', u'decad', u'stab', u'death'] [u'doubt', u'cast', u'bushfir', u'report'] [u'seek', u'paedophil', u'sentenc', u'court'] [u'drought', u'see', u'reduc', u'cotton', u'plant'] [u'electron', u'keep', u'tab', u'sheep'] [u'timor', u'doesnt', u'need', u'disput', u'field', u'research'] [u'move', u'internet', u'phone', u'communic'] [u'excis', u'decis', u'wont', u'petrol', u'price'] [u'farmer', u'mccain', u'cut', u'broccoli', u'quota'] [u'farmer', u'urg', u'boycott', u'water'] [u'fear', u'steal', u'generat', u'legaci', u'affect', u'children'] [u'feder', u'anti', u'terror', u'plan', u'breach', u'law'] [u'govt', u'blame', u'health', u'work', u'forc', u'shortag'] [u'final', u'close', u'hall', u'walk', u'free'] [u'firebug', u'jail', u'year'] [u'firefight', u'battl', u'morgan', u'blaze'] [u'firefight', u'unsur', u'recycl', u'water'] [u'fish', u'review', u'deadlin', u'extend'] [u'focus', u'remain', u'road', u'safeti'] [u'fuel', u'price', u'bite', u'sale'] [u'industri', u'action', u'loom', u'fulham', u'prison'] [u'gasnier', u'nurs', u'calf', u'injuri'] [u'gasnier', u'play', u'crowd', u'factor'] [u'get', u'older', u'better', u'thousand', u'recruit'] [u'global', u'warm', u'blame', u'hurrican'] [u'gold', u'council', u'warn', u'declin', u'explor'] [u'govt', u'call', u'releas', u'lead', u'report'] [u'govt', u'expect', u'soften', u'welfar', u'work', u'packag'] [u'govt', u'increas', u'control', u'burn', u'lead'] [u'govt', u'pledg', u'leav', u'ngaringga', u'ngurra'] [u'govt', u'profil'] [u'govt', u'urg', u'crack', u'privat', u'school'] [u'govt', u'work', u'walk', u'school', u'safer'] [u'fear', u'bigger', u'workload', u'dementia', u'clinic'] [u'grazier', u'seek', u'water', u'resourc', u'boost'] [u'hannay', u'chanc', u'face', u'eel'] [u'hartley', u'call', u'injur', u'haddin'] [u'health', u'inquiri', u'chief', u'decid', u'wit', u'recal'] [u'hickss', u'defenc', u'team', u'readi', u'trial'] [u'hickss', u'lawyer', u'plenti', u'time', u'ruddock'] [u'hick', u'tribun'] [u'higher', u'petrol', u'price', u'fuel', u'fish', u'concern'] [u'high', u'hop', u'cape', u'cattl', u'plan'] [u'hobart', u'airport', u'polic', u'command'] [u'human', u'stem', u'cell', u'repair', u'mice', u'spinal', u'cord'] [u'hurrican', u'rita', u'aim', u'gulf', u'mexico'] [u'hurrican', u'rita', u'spar', u'florida', u'key', u'worst'] [u'ilfracomb', u'expand', u'dam'] [u'illawarra', u'hous', u'unit', u'price', u'fall', u'land', u'price'] [u'indigen', u'leader', u'offer', u'help', u'eas', u'sartor', u'damag'] [u'indonesia', u'face', u'bird', u'epidem'] [u'indonesian', u'boat', u'flee', u'author'] [u'indonesian', u'girl', u'die', u'show', u'bird'] [u'injuri', u'knight', u'squad'] [u'insurg', u'insid', u'iraqi', u'polic', u'forc', u'offici'] [u'investor', u'rattl', u'rat', u'rise'] [u'isra', u'armi', u'leav', u'abandon', u'settlement'] [u'israel', u'iran', u'clash', u'nuclear', u'program'] [u'joey', u'crash', u'mexico'] [u'karzai', u'queri', u'tactic', u'afghan', u'count', u'vote'] [u'killer', u'whale', u'spot', u'gold', u'coast'] [u'kiwi', u'campbel', u'lead', u'aussi', u'presid'] [u'koizumi', u'confirm', u'japan'] [u'labor', u'angri', u'parliamentari', u'sit', u'chang'] [u'labor', u'attack', u'elect', u'campaign'] [u'latham', u'diari', u'sicken', u'rann'] [u'lennon', u'deni', u'sack', u'governor', u'butler'] [u'lion', u'seek', u'rehn', u'help', u'revitalis', u'ruckmen'] [u'llama', u'trial', u'sheep', u'minder'] [u'local', u'author', u'urg', u'solv', u'afford'] [u'mailer', u'receiv', u'lifetim', u'achiev', u'award'] [u'admit', u'cabbi', u'kill', u'behead', u'threat'] [u'kill', u'milk', u'truck', u'accid'] [u'question', u'stab', u'death'] [u'shoot', u'buttock', u'adelaid'] [u'mareeba', u'host', u'rodeo', u'school'] [u'market', u'dip', u'yesterday', u'gain'] [u'mayor', u'confid', u'estat', u'plan', u'consid', u'storm'] [u'medic', u'board', u'consid', u'action', u'african'] [u'minist', u'appal', u'string', u'domest', u'violenc'] [u'minist', u'tight', u'lip', u'polic', u'deputi', u'quit'] [u'minist', u'warn', u'govt', u'road', u'fund'] [u'moder', u'quak', u'rattl', u'indonesia', u'aceh'] [u'monto', u'secur', u'ilmenit', u'contract'] [u'alleg', u'death', u'young', u'sydney'] [u'chang', u'welfar', u'work', u'program'] [u'mortlock', u'young', u'rest', u'european', u'tour'] [u'offer', u'roll', u'sleav', u'coff', u'harbour'] [u'promot', u'abstin', u'aid', u'reduct', u'strategi'] [u'murder', u'admit', u'culpabl', u'freeway', u'death'] [u'murray', u'cycl', u'event', u'adopt', u'format'] [u'muslim', u'leader', u'seek', u'reassur', u'law'] [u'nasa', u'see', u'sign', u'marsquak'] [u'nativ', u'oil', u'fight', u'bacteria'] [u'hospit', u'weipa'] [u'chancellor', u'urg', u'flexibl'] [u'reject', u'telstra', u'dirti', u'deal', u'claim'] [u'firm', u'date', u'open', u'mudge', u'abattoir'] [u'magic', u'solut', u'fuel', u'price'] [u'northern', u'top', u'unemploy', u'list'] [u'titl', u'need', u'cover', u'wolf', u'novel'] [u'nurs', u'strike', u'hospit', u'secur'] [u'olymp', u'champion', u'brown', u'join', u'dutch', u'cycl', u'team'] [u'opec', u'suspend', u'quota'] [u'opposit', u'seek', u'time', u'bushfir', u'victim'] [u'miss', u'indian', u'storm'] [u'overtim', u'concern', u'contribut', u'sieg', u'death'] [u'pacif', u'nation', u'freight', u'train', u'worker', u'strike'] [u'pacif', u'nation', u'rail', u'strike', u'court', u'rule'] [u'parent', u'warn', u'girl', u'attack'] [u'parliament', u'sit', u'chang', u'room'] [u'parliament', u'hear', u'case', u'foster', u'care', u'abus'] [u'parson', u'face', u'possibl', u'action', u'bulldog'] [u'peta', u'maintain', u'mules', u'campaign', u'face', u'lawsuit'] [u'piano', u'teacher', u'guilti', u'abus'] [u'pittman', u'track', u'injuri', u'plagu', u'year'] [u'pittman', u'track', u'decemb', u'return'] [u'unveil', u'airport', u'secur', u'upgrad'] [u'polic', u'consid', u'death', u'suspici'] [u'polic', u'deni', u'drug', u'girl', u'death'] [u'polic', u'express', u'frustrat', u'driver', u'blitz'] [u'polic', u'investig', u'train', u'truck', u'collis'] [u'polic', u'seek', u'wheel', u'drive', u'owner', u'search'] [u'polic', u'treat', u'hermannsburg', u'death', u'murder'] [u'premier', u'outlin', u'plan', u'tasmania'] [u'price', u'mainten', u'fine', u'cost', u'firm'] [u'princ', u'charl', u'help', u'open', u'organ', u'confer'] [u'purtil', u'balranald', u'mayor'] [u'indonesian', u'drug', u'arrest'] [u'quartet', u'urg', u'palestinian', u'dismantl', u'militia'] [u'race', u'club', u'photo', u'finish'] [u'record', u'break', u'stud', u'worth', u'cent', u'say', u'owner'] [u'record', u'surplus', u'warrant', u'cut', u'say', u'opposit'] [u'research', u'undertak', u'larg', u'nationwid'] [u'reveng', u'killer', u'jail', u'year'] [u'rita', u'upgrad', u'categori', u'gulf', u'journey'] [u'riverland', u'move', u'address', u'obstetr', u'shortag'] [u'road', u'death', u'trigger', u'polic', u'safeti', u'messag'] [u'roger', u'bid', u'histor', u'titl'] [u'santo', u'sell', u'timor', u'permit'] [u'vow', u'oppos', u'toxic', u'wast', u'dump', u'plan'] [u'seccomb', u'hang', u'glove'] [u'secur', u'upgrad', u'australian', u'airport'] [u'sensit', u'student', u'file', u'miss'] [u'shark', u'death', u'prompt', u'extra', u'aerial', u'patrol'] [u'shiba', u'lane', u'detail', u'broom', u'japanes', u'connect'] [u'shine', u'dome', u'join', u'nation', u'heritag', u'list'] [u'shoalhaven', u'bird', u'project', u'win', u'nation', u'award'] [u'skill', u'vacanc', u'fall'] [u'solar', u'challeng', u'team', u'face', u'car', u'dilemma'] [u'south', u'africa', u'consid', u'lift', u'eleph', u'cull'] [u'southern', u'thai', u'unrest', u'worsen', u'servicemen', u'kill'] [u'spur', u'humbl', u'tini', u'grimsbi'] [u'stanhop', u'back', u'bushfir', u'lawsuit', u'extens'] [u'state', u'urg', u'airport', u'secur', u'upgrad'] [u'state', u'urg', u'rethink', u'nativ', u'veget'] [u'studi', u'profil', u'miner', u'industri', u'femal', u'worker'] [u'sudan', u'power', u'share', u'govt', u'complet'] [u'sugar', u'grower', u'miller', u'warn', u'reform', u'grant'] [u'support', u'emerg', u'airport', u'secur', u'upgrad'] [u'survey', u'predict', u'month', u'steadi', u'rat'] [u'boat', u'firm', u'look', u'build', u'polic', u'contract'] [u'tendulkar', u'pull', u'super', u'seri'] [u'thorp', u'rediscov', u'competit', u'spirit'] [u'tobacco', u'product', u'slump', u'hit', u'zimbabw', u'economi'] [u'trend', u'indic', u'strong', u'econom', u'recoveri'] [u'ukrainian', u'parliament', u'reject', u'nomine'] [u'union', u'accus', u'fear', u'monger', u'chang'] [u'union', u'defend', u'campaign', u'cost'] [u'union', u'question', u'workplac', u'respons', u'accid'] [u'author', u'googl', u'librari', u'project'] [u'vasil', u'lawyer', u'argu', u'dope', u'equip', u'faulti'] [u'vatican', u'accus', u'shield', u'crime', u'suspect'] [u'veget', u'law', u'hamper', u'mine', u'explor'] [u'verif', u'north', u'korea', u'deal'] [u'vicforest', u'admit', u'log', u'nation', u'park'] [u'govt', u'hand', u'polic', u'power'] [u'visit', u'uncov', u'concern', u'cooma', u'oper'] [u'cattl', u'sell', u'roma'] [u'govt', u'reveal', u'record', u'budget', u'surplus'] [u'step', u'help', u'fledgl', u'footi', u'player'] [u'welfar', u'chang', u'dont', u'help', u'vulner', u'aussi', u'labor'] [u'welfar', u'work', u'program', u'rule', u'eas'] [u'wilcannia', u'murder', u'trial', u'move', u'sydney'] [u'wine', u'featur', u'heavili', u'foster', u'restructur'] [u'woman', u'die', u'attack'] [u'women', u'equal', u'award', u'recognis', u'lead', u'workplac'] [u'work', u'begin', u'bena', u'bypass'] [u'minut', u'bibl', u'design', u'time', u'starv'] [u'million', u'order', u'rita', u'path'] [u'chief', u'magistr', u'prais', u'psych', u'unit'] [u'court', u'agre', u'effici', u'measur'] [u'health', u'system', u'break', u'point'] [u'adelaid', u'arrest', u'child', u'porn'] [u'administr', u'control', u'disput', u'cooper', u'share'] [u'final', u'fever', u'sweep', u'australia'] [u'resolv', u'anthem', u'fiasco'] [u'school', u'decis', u'dishearten'] [u'airport', u'chief', u'expect', u'secur', u'chang'] [u'airport', u'lack', u'inform', u'fight', u'crime', u'report'] [u'albani', u'hospit', u'get', u'extra'] [u'age', u'involv', u'orang', u'brawl'] [u'alleg', u'thiev', u'nab', u'nois', u'complaint'] [u'ambul', u'crew', u'solut', u'good', u'union'] [u'passeng', u'plane', u'make', u'amaz', u'emerg'] [u'apolog', u'demand', u'joyc', u'canberra'] [u'arsonist', u'blame', u'currumbin', u'restaur', u'blaze'] [u'attack', u'car', u'forc', u'school', u'closur'] [u'australia', u'help', u'indonesia', u'fight', u'bird'] [u'bakeri', u'fin', u'food', u'breach'] [u'ballina', u'address', u'fuel', u'summit'] [u'basra', u'withdraw', u'cooper', u'british', u'raid'] [u'beatti', u'accus', u'media', u'lazi', u'health', u'report'] [u'beatti', u'liabil'] [u'bicycl', u'bomb', u'kill', u'pakistan'] [u'bouncer', u'jail', u'manslaught'] [u'brendan', u'honour', u'victim'] [u'brisban', u'face', u'indonesian', u'drug', u'charg'] [u'brit', u'probe', u'bulli', u'claim', u'swim', u'coach'] [u'broadacr', u'land', u'valu', u'rise'] [u'broom', u'hospit', u'share', u'budget', u'surplus', u'fund'] [u'bunburi', u'miss', u'hospit', u'servic', u'fund'] [u'burdekin', u'land', u'manag', u'plan', u'finalis'] [u'burnett', u'council', u'consid', u'nude', u'beach', u'plan'] [u'busi', u'pass', u'fuel', u'cost'] [u'cairn', u'water', u'cheap', u'environment', u'group', u'say'] [u'accc', u'regul', u'fuel', u'price', u'summit'] [u'action', u'curb', u'loss', u'rural', u'obstetrician'] [u'urgent', u'review', u'indigen', u'school'] [u'chesney', u'okay', u'zellweg', u'split'] [u'claim', u'polic', u'consult', u'terror', u'debat'] [u'clarenc', u'valley', u'mayor', u'stand', u'financ'] [u'cole', u'myer', u'announc', u'profit'] [u'communiti', u'group', u'seek', u'invest', u'properti'] [u'compani', u'threaten', u'legal', u'action', u'union', u'disput'] [u'concern', u'contract', u'worker', u'overlook', u'airport'] [u'cooma', u'hospit', u'good', u'shape'] [u'council', u'consid', u'run', u'esper', u'visitor', u'centr'] [u'council', u'forc', u'bank', u'give', u'loan'] [u'councillor', u'caloundra', u'airport', u'tour'] [u'councillor', u'seek', u'advic', u'mayor', u'vote', u'boycott'] [u'council', u'seek', u'industri', u'back', u'safer', u'highway'] [u'council', u'seek', u'pioneer', u'settlement', u'fund'] [u'council', u'staffer', u'sack', u'love', u'letter', u'deni'] [u'council', u'eas', u'mile', u'beach', u'build', u'ban'] [u'countri', u'hospit', u'ignor', u'nation'] [u'cricket', u'minnow', u'battl', u'shoot', u'world'] [u'croesus', u'boss', u'quit', u'cite', u'person', u'reason'] [u'crossbow', u'outlaw'] [u'crow', u'drop', u'south'] [u'deal', u'steal', u'generat', u'flow'] [u'delta', u'make', u'line'] [u'demand', u'fuel', u'eas'] [u'democrat', u'accus', u'onesteel', u'bulli', u'lawyer'] [u'deport', u'activist', u'reject', u'violenc', u'accus'] [u'deterg', u'spill', u'rais', u'environ', u'concern'] [u'develop', u'rethink', u'albani', u'unit', u'complex', u'plan'] [u'dfat', u'issu', u'bird', u'warn'] [u'diver', u'search', u'miss', u'filipina', u'student'] [u'doctor', u'ban', u'public', u'air', u'hospit'] [u'doncast', u'knock', u'citi', u'leagu'] [u'dont', u'write', u'cowboy', u'murray'] [u'doubl', u'murder', u'trial', u'hear', u'kill', u'threat', u'claim'] [u'downer', u'warn', u'chief', u'zimbabw', u'visit'] [u'driver', u'warn', u'watch', u'wander', u'cattl'] [u'drought', u'take', u'toll', u'number'] [u'eagl', u'welcom', u'matera', u'final'] [u'educ', u'dept', u'tell', u'improv', u'file', u'handl'] [u'appoint', u'communiti', u'advoc'] [u'faith', u'summit', u'pledg', u'erad', u'extrem'] [u'famili', u'call', u'inform'] [u'farm', u'group', u'seek', u'fuel', u'cost', u'respit'] [u'fatigu', u'navig', u'factor', u'fish', u'boat'] [u'establish', u'base', u'sydney'] [u'fear', u'length', u'hickss', u'detent', u'affect', u'trial'] [u'ferri', u'head', u'quit', u'drug', u'test'] [u'caus', u'damag', u'perth', u'school'] [u'fisher', u'fin', u'gippsland', u'abalon', u'poach'] [u'fisheri', u'offic', u'darwin'] [u'fisherman', u'concern', u'illeg', u'boat', u'spot'] [u'fishermen', u'concern', u'illeg', u'inshor', u'poach'] [u'follow', u'drought', u'meet', u'plan', u'park'] [u'forb', u'ask', u'vail', u'open', u'saleyard'] [u'foreign', u'fishermen', u'anger', u'local'] [u'formal', u'qualif', u'boost', u'pacif', u'polic'] [u'french', u'condemn', u'armstrong', u'dope', u'slur'] [u'fuel', u'boycott', u'predict', u'affect', u'small', u'independ'] [u'fuel', u'summit', u'discuss', u'compani', u'profit', u'margin'] [u'fuel', u'watch', u'high', u'hop', u'petrol', u'summit'] [u'furious', u'scottish', u'ref', u'threaten', u'strike', u'lennon'] [u'project', u'russian', u'worker', u'worri', u'union'] [u'gather', u'focus', u'women', u'role'] [u'glori', u'scrape', u'away', u'victori'] [u'gold', u'coast', u'fan', u'think'] [u'good', u'samaritan', u'hand'] [u'govt', u'call', u'investig', u'uranium', u'mine'] [u'govt', u'defend', u'loxton', u'polic', u'station'] [u'govt', u'defend', u'region', u'employ', u'effort'] [u'govt', u'increas', u'school', u'fuel', u'rebat'] [u'govt', u'pressur', u'fine', u'vicforest', u'nation'] [u'govt', u'promot', u'ethanol'] [u'govt', u'send', u'mental', u'health', u'expert', u'nauru', u'detaine'] [u'grazier', u'warn', u'expect', u'longer', u'period'] [u'groom', u'fin', u'kiss', u'bride'] [u'hama', u'reject', u'disarm'] [u'hospit', u'data', u'caus', u'concern', u'inquiri', u'tell'] [u'human', u'remain', u'spark', u'miss', u'person', u'check'] [u'hurrican', u'katrina', u'death', u'toll', u'top'] [u'hurrican', u'rita', u'churn', u'texa'] [u'hurrican', u'rita', u'near', u'american', u'coastlin'] [u'hurrican', u'survivor', u'flee', u'storm', u'threat'] [u'icac', u'discredit', u'whistleblow', u'nurs'] [u'iemma', u'defend', u'minist', u'indigen', u'slur'] [u'indian', u'crowd', u'shoot', u'say', u'flintoff'] [u'indian', u'crowd', u'shoot', u'say', u'freddi'] [u'indigen', u'educ', u'say', u'crisi', u'point'] [u'indigen', u'star', u'gather', u'dead', u'night'] [u'indonesian', u'offic', u'kill', u'wife', u'judg', u'divorc'] [u'intern', u'student', u'plan', u'doubl', u'standard'] [u'irrig', u'chang', u'spark', u'council', u'revenu', u'loss', u'fear'] [u'jervi', u'marina', u'plan', u'discuss'] [u'joyc', u'call', u'remot', u'senat', u'vote'] [u'labor', u'pressur', u'govt', u'homeland', u'secur', u'dept'] [u'lara', u'give', u'mandela', u'torment', u'south'] [u'light', u'smoke', u'tripl', u'heart', u'diseas', u'risk'] [u'london', u'bomb', u'suspect', u'extradit', u'itali'] [u'london', u'bomb', u'suspect', u'leav', u'italian', u'prison'] [u'london', u'shoot', u'inform', u'mishandl', u'polic', u'chief'] [u'longreach', u'unlik', u'extra', u'paramed'] [u'machineri', u'field', u'day', u'draw', u'close'] [u'hospit', u'head', u'crash'] [u'remand', u'custodi', u'tamworth', u'murder'] [u'market', u'make', u'small', u'gain'] [u'market', u'cast', u'nervous', u'watch', u'hurrican', u'rita'] [u'matera', u'name', u'grand', u'final'] [u'mayor', u'prais', u'control', u'despit', u'dead', u'attack'] [u'meatwork', u'strike', u'process', u'rat'] [u'meet', u'discuss', u'road', u'safeti', u'concern'] [u'meet', u'offer', u'advic', u'potenti', u'councillor'] [u'mexican', u'minist', u'die', u'helicopt', u'crash'] [u'million', u'urg', u'evacu', u'hurrican', u'approach'] [u'minist', u'defend', u'comment', u'portfolio', u'alloc'] [u'seat', u'avail', u'tiger', u'fan'] [u'moroney', u'seek', u'cash', u'anti', u'terror', u'command'] [u'mother', u'puzzl', u'sudden', u'discoveri', u'school', u'file'] [u'cast', u'doubt', u'bundaberg', u'market', u'plan'] [u'stepdad', u'arrest', u'year', u'old', u'death'] [u'campaign', u'push', u'valu', u'money', u'holiday'] [u'newcastl', u'build', u'contractor', u'order', u'improv'] [u'insight', u'danger', u'global', u'bird'] [u'mayor', u'central', u'darl', u'council'] [u'theatr', u'compani', u'head', u'appoint'] [u'north', u'korea', u'lock', u'nuclear', u'pact', u'negoti'] [u'announc', u'heritag', u'grant'] [u'govt', u'pressur', u'scullion', u'communic'] [u'jail', u'australian', u'embassi', u'blast'] [u'onslow', u'readi', u'school', u'open'] [u'opposit', u'pursu', u'minist', u'polic', u'resign'] [u'opposit', u'question', u'bushfir', u'report', u'discrep'] [u'opposit', u'question', u'school', u'demolit', u'propos'] [u'optus', u'invest', u'broadband'] [u'pacif', u'brand', u'sheriden'] [u'pakistan', u'push', u'ban', u'shabbir', u'return', u'england'] [u'parent', u'school', u'disput', u'protest', u'parliament'] [u'time', u'work', u'trend', u'lead', u'underemploy'] [u'plane', u'touch', u'safe', u'emerg'] [u'flag', u'fuel', u'price', u'discuss', u'group'] [u'reject', u'call', u'homeland', u'secur', u'dept'] [u'polic', u'colonel', u'kill', u'latest', u'iraq', u'violenc'] [u'polic', u'defend', u'emerg', u'respons', u'time'] [u'polic', u'protest', u'africa'] [u'polic', u'investig', u'currumbin'] [u'polic', u'issu', u'drink', u'drive', u'warn'] [u'polic', u'charg', u'supermarket', u'attempt'] [u'polit', u'determin', u'uranium', u'explor'] [u'pont', u'play', u'clash'] [u'pont', u'play', u'tasmania'] [u'popul', u'hit'] [u'premier', u'leagu', u'probe', u'disappear', u'crowd'] [u'pulp', u'expect', u'hurt', u'hous', u'price'] [u'bull', u'break', u'price', u'barrier'] [u'nurs', u'seek', u'pariti'] [u'report', u'claim', u'govt', u'airport', u'plan', u'work'] [u'report', u'predict', u'global', u'warm', u'dead', u'impact'] [u'resist', u'anti', u'drug', u'increas', u'studi'] [u'rise', u'fuel', u'price', u'boost', u'ticket', u'cost'] [u'roar', u'relish', u'york', u'challeng'] [u'robber', u'chat', u'room', u'lure', u'victim'] [u'roger', u'cycl', u'time', u'trial', u'gold'] [u'roo', u'say', u'swan', u'readi', u'season', u'decid'] [u'safeti', u'breach', u'nuclear', u'reactor', u'site'] [u'liber', u'face', u'elect', u'wipe', u'poll'] [u'treasur', u'brand', u'mobil', u'distrust'] [u'scientist', u'angl', u'improv', u'fish', u'surviv', u'rat'] [u'scientist', u'hail', u'dinosaur'] [u'seafood', u'industri', u'tri', u'manag'] [u'sharapova', u'stutter', u'china', u'open', u'quarter', u'final'] [u'shellharbour', u'independ', u'protest', u'committe'] [u'kill', u'blast', u'pakistan'] [u'snail', u'scuttl', u'orang', u'export'] [u'lanka', u'complet', u'seri', u'rout'] [u'student', u'magazin', u'defend', u'date', u'rape', u'articl'] [u'student', u'teacher', u'encourag', u'visit', u'bush', u'school'] [u'summit', u'featur', u'ethanol', u'push'] [u'summit', u'urg', u'watchdog', u'monitor', u'fuel', u'price'] [u'supermarket', u'protest', u'begin', u'court', u'case'] [u'swan', u'campaign', u'save', u'histor', u'melbourn'] [u'swan', u'hope', u'grand', u'final', u'spot', u'save'] [u'alli', u'health', u'worker', u'strike'] [u'task', u'forc', u'probe', u'jetti', u'repair', u'fund'] [u'tassi', u'cyclist', u'come', u'sixth', u'madrid'] [u'teen', u'arrest', u'school', u'incid'] [u'thirti', u'case', u'forward', u'hospit', u'inquiri'] [u'nomin', u'liverpool', u'plain', u'council'] [u'train', u'hit', u'escap', u'transit', u'offic'] [u'tremor', u'shake', u'wheatbelt'] [u'tropic', u'storm', u'kill', u'philippin'] [u'typhoon', u'edg', u'japan'] [u'union', u'lose', u'appeal', u'rail', u'strike', u'injunct'] [u'union', u'say', u'health', u'worker', u'talk', u'stall'] [u'union', u'urg', u'direct', u'talk', u'resolv', u'disabl'] [u'plan', u'research', u'centr', u'echidna'] [u'golfer', u'send', u'captain', u'jack', u'high'] [u'visitor', u'centr', u'onlin', u'book', u'grant'] [u'govt', u'boost', u'counter', u'terror', u'spend'] [u'water', u'author', u'stand', u'toxic', u'soil', u'permit', u'plan'] [u'water', u'manag', u'beat', u'summer', u'demand'] [u'welfar', u'work', u'scheme', u'blackmail', u'social'] [u'whitsunday', u'trader', u'box', u'battl'] [u'wimmera', u'malle', u'driver', u'feel', u'rise', u'fuel', u'price'] [u'workplac', u'bulli', u'increas'] [u'zimbabw', u'struggl', u'despit', u'heath', u'heroic'] [u'draglin', u'build', u'near', u'emerald'] [u'dead', u'vietnam', u'flood'] [u'abbott', u'back', u'anti', u'petrol', u'sniff', u'initi'] [u'academ', u'attack', u'plan', u'protect', u'southern'] [u'delay', u'offici', u'bushfir', u'season'] [u'fan', u'boost', u'outback', u'busi'] [u'african', u'refuge', u'wrap', u'tour'] [u'forc', u'redo', u'judg', u'appoint'] [u'airport', u'secur', u'review', u'consid', u'sensibl'] [u'alic', u'spring', u'miss', u'unsniff', u'petrol'] [u'issu', u'asthma', u'warn', u'launceston'] [u'american', u'citi', u'galveston', u'prepar', u'hurrican'] [u'anim', u'test', u'statist', u'label', u'alarm'] [u'injuri', u'setback', u'solskjaer'] [u'appeal', u'aim', u'rais', u'money', u'affect'] [u'australian', u'ethanol', u'cautious', u'welcom', u'govt'] [u'australian', u'soldier', u'wound', u'afghanistan'] [u'babi', u'buy', u'claim', u'shock', u'minist'] [u'injuri', u'sidelin', u'croc', u'lowrey'] [u'beatti', u'promis', u'unedit', u'hospit', u'report'] [u'bendigo', u'driver', u'feel', u'cost', u'rise', u'fuel', u'price'] [u'berrigan', u'council', u'want', u'quadripleg', u'payout', u'delay'] [u'betfair', u'illeg', u'bet', u'inquiri', u'delay', u'find'] [u'blockad', u'delay', u'return', u'school', u'student'] [u'bomb', u'threaten', u'australia', u'cricket'] [u'break', u'hill', u'want', u'exempt', u'water', u'price'] [u'budget', u'surplus', u'exceed', u'predict'] [u'bullet', u'suffer', u'straight', u'loss'] [u'bureau', u'predict', u'averag', u'rainfal', u'summer'] [u'busi', u'urg', u'market', u'savvi'] [u'byron', u'council', u'properti', u'investor', u'discuss'] [u'land', u'parcel', u'attract', u'south', u'east', u'industri'] [u'senat', u'inquiri', u'peac', u'activist'] [u'call', u'water', u'share', u'issu', u'resolv'] [u'candid', u'prepar', u'alic', u'poll'] [u'capper', u'say', u'swan', u'damag'] [u'capsicum', u'spray', u'complaint', u'lodg', u'teen'] [u'pray', u'rain', u'near', u'dam'] [u'chappel', u'want', u'ganguli', u'sourc'] [u'charg', u'lay', u'parkin', u'leak', u'brown', u'say'] [u'chariti', u'space', u'expand', u'meet', u'grow', u'demand'] [u'child', u'protect', u'worker', u'demand', u'staff', u'increas'] [u'child', u'methadon', u'death', u'investig', u'iemma'] [u'claim', u'polic', u'want', u'refurbish', u'station'] [u'clinic', u'corica', u'inspir', u'sydney'] [u'clipsal', u'pressur', u'worker', u'plant', u'closur', u'union'] [u'open', u'inquiri', u'gold', u'coast', u'council'] [u'communiti', u'concern', u'air', u'summit'] [u'communiti', u'station', u'open', u'gambier'] [u'construct', u'worker', u'walk'] [u'contractor', u'unearth', u'wwii', u'bomb', u'school'] [u'costello', u'back', u'doyl', u'toll', u'polici'] [u'costello', u'fuel', u'suggest', u'deflect', u'tactic'] [u'costello', u'urg', u'state', u'offer', u'fuel', u'relief'] [u'council', u'promis', u'hunt', u'fatal', u'attack'] [u'council', u'auction', u'hous', u'land'] [u'council', u'finalis', u'environ', u'plan'] [u'council', u'meet', u'draft', u'local'] [u'court', u'battl', u'seiz', u'fish', u'ship', u'fuel'] [u'defenc', u'dept', u'criticis', u'patrol', u'plane', u'upgrad'] [u'digniti', u'therapi', u'make', u'die', u'easier'] [u'doctor', u'tell', u'inquiri', u'botch', u'hervey'] [u'enrol', u'vote', u'elect'] [u'dog', u'fox', u'threaten', u'penguin', u'coloni'] [u'dragon', u'rest', u'readi', u'final'] [u'eagl', u'feed', u'banfield', u'experi'] [u'effort', u'combat', u'fruit', u'fli', u'continu'] [u'emerald', u'citrus', u'tree', u'destruct', u'continu'] [u'energi', u'ombudsman', u'gear', u'western', u'power', u'break'] [u'ethanol', u'group', u'welcom', u'biofuel', u'announc'] [u'ethanol', u'plant', u'consid', u'increas', u'product'] [u'europ', u'mar', u'express', u'mission', u'extend'] [u'champ', u'johnson', u'die', u'brain', u'injuri'] [u'extrem', u'motorcycl', u'group', u'wont', u'perform', u'tennant'] [u'famili', u'confid', u'find', u'miss'] [u'farmer', u'deliveri', u'fuel', u'price', u'rise'] [u'farmer', u'trade', u'opportun', u'brief'] [u'farm', u'group', u'say', u'dont', u'destroy', u'contamin', u'canola'] [u'farm', u'group', u'see', u'posit', u'biofuel', u'commit'] [u'father', u'eagl', u'player', u'proud', u'punch'] [u'fear', u'welfar', u'rule', u'save'] [u'festiv', u'tourist', u'longer'] [u'final', u'delay', u'delta', u'sing'] [u'firefight', u'eyr', u'bushfir', u'report', u'critic'] [u'follow', u'studi', u'focus', u'swift', u'creek'] [u'forest', u'industri', u'look', u'indigen', u'worker'] [u'fresh', u'evid'] [u'nation', u'club', u'rugbi', u'william', u'home'] [u'frost', u'devast', u'wheatbelt', u'farmer'] [u'fuel', u'price', u'blame', u'bega', u'valley', u'tourism', u'slump'] [u'futur', u'longreach', u'airport', u'discuss'] [u'gallop', u'rebuk', u'treasuri', u'western', u'power', u'advic'] [u'gallop', u'tight', u'lip', u'polic', u'offic'] [u'gatton', u'golfer', u'help', u'aust', u'jump', u'lead', u'japan'] [u'girl', u'methadon', u'death', u'accid', u'say'] [u'gold', u'coast', u'water', u'restrict', u'boost'] [u'govt', u'bank', u'telstra', u'bush', u'fund', u'money'] [u'govt', u'grant', u'award', u'indigen', u'music'] [u'govt', u'move', u'allay', u'biofuel', u'fear'] [u'govt', u'biofuel', u'push', u'farmer'] [u'govt', u'travel', u'contract', u'benefit', u'region', u'centr'] [u'govt', u'work', u'indonesia', u'bird', u'threat'] [u'grand', u'final', u'parad', u'take', u'melbourn', u'street'] [u'grigorieva', u'train', u'game', u'oversea'] [u'hair', u'murali', u'meet', u'super', u'seri'] [u'health', u'servic', u'say', u'bill', u'pay'] [u'hindmarsh', u'emerg', u'chanc', u'face', u'cowboy'] [u'hospit', u'pleas', u'helipad'] [u'hurrican', u'evacue', u'kill', u'highway'] [u'hurrican', u'rita', u'rain', u'orlean'] [u'indian', u'author', u'fight', u'diseas', u'storm', u'aftermath'] [u'intern', u'telstra', u'review', u'result', u'delay'] [u'intern', u'achiev', u'earli', u'edg', u'presid'] [u'investig', u'continu', u'mine', u'death'] [u'inzi', u'gayl', u'come', u'super', u'seri'] [u'irrig', u'water', u'review', u'happen'] [u'israel', u'farewel', u'nazi', u'hunter', u'wiesenth'] [u'joey', u'finish', u'tournament'] [u'liber', u'sale', u'hydro', u'compani'] [u'local', u'knowledg', u'name', u'band', u'dead'] [u'london', u'bomb', u'suspect', u'charg', u'attempt'] [u'lower', u'hous', u'pass', u'perri', u'lake', u'redevelop'] [u'macgil', u'urg', u'cautious', u'approach', u'selector'] [u'mackay', u'doctor', u'unlik', u'inquiri'] [u'mallacoota', u'play', u'swan', u'grand', u'final'] [u'feel', u'respons', u'murder', u'court', u'hear'] [u'jail', u'rape', u'dementia', u'patient'] [u'jail', u'rape'] [u'face', u'court', u'fatal', u'drive', u'shoot'] [u'market', u'end', u'week', u'flat'] [u'matera', u'stake', u'claim', u'place'] [u'mayor', u'reject', u'group', u'break', u'away', u'plan'] [u'medic', u'centr', u'face', u'poor', u'hygien', u'investig'] [u'meet', u'fail', u'head', u'nurs', u'industri', u'action'] [u'melbourn', u'commiss', u'centr', u'feder'] [u'mental', u'health', u'scheme', u'wont', u'suffer', u'doctor'] [u'methadon', u'kill', u'year', u'court', u'hear'] [u'mincor', u'make', u'nickel', u'discoveri'] [u'minist', u'blame', u'council', u'school', u'attack'] [u'minist', u'deni', u'hydro', u'sale', u'break', u'elect', u'promis'] [u'minist', u'plead', u'poor', u'alli', u'health', u'worker'] [u'miss', u'murder', u'polic'] [u'moimoi', u'stand'] [u'mother', u'charg', u'son', u'murder'] [u'want', u'quick', u'action', u'bushfir', u'report'] [u'murchison', u'metal', u'secur', u'year', u'sale'] [u'murder', u'accus', u'face', u'retrial'] [u'nativ', u'titl', u'negoti', u'break'] [u'nevill', u'miss', u'england', u'qualifi'] [u'home', u'sale'] [u'indigen', u'offic', u'coff', u'harbour'] [u'newli', u'open', u'circuit', u'host', u'road', u'race'] [u'newman', u'area', u'need', u'dialysi', u'machin', u'oper'] [u'orbost', u'medic', u'clinic', u'open'] [u'korea', u'want', u'talk', u'reactor'] [u'polic', u'murder', u'german', u'hitchhik'] [u'sailor', u'bear', u'mark', u'nuclear', u'test', u'year'] [u'offici', u'head', u'hurrican', u'affect', u'area'] [u'ogradi', u'quit', u'cofidi'] [u'compani', u'need', u'investig', u'minist'] [u'opposit', u'question', u'court', u'staff', u'reloc'] [u'opposit', u'seek', u'detail', u'ferri', u'drug', u'test'] [u'owner', u'driver', u'block', u'pacif', u'highway', u'high'] [u'king', u'walton', u'domin', u'forb', u'rich', u'list'] [u'petrol', u'price', u'forc', u'rat'] [u'admit', u'petrol', u'price', u'affect', u'inflat'] [u'polic', u'apologis', u'famili', u'death', u'investig'] [u'polic', u'investig', u'launceston', u'stab'] [u'polic', u'offic', u'face', u'stalk', u'charg'] [u'polic', u'suspect', u'arson', u'gold', u'coast', u'hous'] [u'polic', u'union', u'attack', u'airport', u'secur', u'plan'] [u'polic', u'urg', u'fan', u'behav'] [u'polic', u'warn', u'driver', u'obey', u'road', u'rule'] [u'polic', u'warn', u'scalper', u'ticket'] [u'premier', u'flag', u'wager'] [u'prison', u'guard', u'await', u'decis'] [u'prison', u'offic', u'accept', u'deal'] [u'public', u'respond', u'controversi', u'nation', u'park', u'plan'] [u'probe', u'fatal', u'train', u'tractor', u'crash'] [u'rape', u'charg', u'cricket', u'drop'] [u'region', u'airport', u'secur', u'poor', u'union'] [u'consid', u'increas', u'cooma', u'flight', u'network'] [u'roadsid', u'bomb', u'kill', u'polic', u'latest', u'thai', u'unrest'] [u'rosberg', u'partner', u'webber'] [u'safeti', u'issu', u'umbakumba', u'school', u'close'] [u'african', u'govt', u'seiz', u'white', u'own', u'farm'] [u'scientist', u'implant', u'human', u'mice'] [u'sentenc', u'suspend', u'internet', u'crime', u'offend'] [u'shire', u'presid', u'welcom', u'muir', u'highway', u'repair'] [u'soap', u'lipstick', u'endang', u'orang', u'utan', u'report'] [u'south', u'burnett', u'meatwork', u'close', u'temporarili'] [u'stirl', u'vow', u'improv', u'indigen', u'school'] [u'storm', u'death', u'toll', u'hit', u'philippin'] [u'strawberri', u'grower', u'avoid', u'rotten', u'luck', u'sell'] [u'stutter', u'best', u'treat', u'school', u'studi'] [u'suicid', u'bomber', u'strike', u'central', u'baghdad'] [u'summer', u'beach', u'patrol', u'begin', u'northern'] [u'sunday', u'doubl', u'header', u'featur', u'tabl'] [u'supermarket', u'protest', u'doesnt', u'care', u'maleni'] [u'suspend', u'jail', u'term', u'photo', u'culprit'] [u'swan', u'eagl', u'prepar', u'grand', u'final', u'parad'] [u'swansea', u'plead', u'guilti', u'showground'] [u'sydney', u'plan', u'parad', u'swan'] [u'consid', u'live', u'rehab'] [u'taxi', u'queue', u'prompt', u'late', u'night', u'servic'] [u'tcci', u'reject', u'wilder', u'societi', u'pulp', u'tour'] [u'teacher', u'say', u'focus', u'negat', u'school'] [u'tension', u'rise', u'tini', u'french', u'pacif', u'island'] [u'test', u'herbicid', u'pollut', u'river'] [u'tire', u'cahil', u'everton', u'break'] [u'surgeri', u'stall', u'farrel', u'convers'] [u'toxic', u'dump', u'fear', u'forc', u'review', u'geelong', u'plan'] [u'truck', u'blockad', u'pass', u'mount', u'gambier'] [u'truck', u'driver', u'blockad', u'highway', u'fuel', u'protest'] [u'trucki', u'blockad', u'wont', u'chang', u'thing', u'say', u'union'] [u'trucki', u'threaten', u'shut', u'nation', u'highway'] [u'truck', u'bodi', u'urg', u'member', u'blockad'] [u'truck', u'firm', u'suffer', u'fuel', u'price', u'rise'] [u'palestinian', u'kill', u'west', u'bank', u'raid'] [u'umbakumba', u'polic', u'forc', u'surrend', u'detaine'] [u'union', u'criticis', u'indigen', u'educ', u'cutback'] [u'unit', u'seek', u'return', u'win', u'way'] [u'citi', u'rita', u'loom'] [u'vow', u'fight', u'afghanistan'] [u'victor', u'harbor', u'road', u'close', u'crash'] [u'western', u'power', u'break', u'region', u'nation'] [u'winemak', u'withhold', u'payment', u'grape', u'grower'] [u'wing', u'walk', u'tour', u'offer', u'uniqu', u'jumbo', u'view'] [u'women', u'sever', u'injur', u'shop', u'centr', u'plung'] [u'wool', u'grower', u'accus', u'peta', u'moratorium', u'breach'] [u'world', u'wackiest', u'immort', u'record', u'book'] [u'year', u'assess', u'face', u'review'] [u'abandon', u'diesel', u'excis', u'increas', u'labor', u'urg'] [u'grand', u'final', u'kick'] [u'album', u'danc', u'cancer', u'beat'] [u'qaeda', u'member', u'arrest', u'somalia'] [u'anti', u'terror', u'law', u'unjustifi'] [u'arrest', u'abort', u'lobbi', u'group', u'clash'] [u'arrest', u'warrant', u'issu', u'british', u'troop', u'iraq'] [u'beatti', u'hospit', u'report', u'releas'] [u'busi', u'bodi', u'welcom', u'western', u'power', u'break'] [u'canberra', u'wine', u'steal', u'murrumbateman'] [u'capirossi', u'grab', u'sepang', u'pole'] [u'caribbean', u'coral', u'warm', u'storm', u'spawn', u'sea'] [u'catastroph', u'night', u'fear', u'rita', u'near', u'coast'] [u'chemic', u'receptor', u'link', u'placebo', u'effect'] [u'childcar', u'centr', u'face', u'draw', u'critic'] [u'children', u'malawi', u'food', u'shortag'] [u'complex', u'work', u'help', u'ward', u'alzheim'] [u'concern', u'rais', u'uranium', u'transport', u'licenc'] [u'council', u'defend', u'cull', u'maul', u'death'] [u'cowboy', u'look', u'say', u'murray'] [u'effect', u'make', u'case', u'hard', u'prove', u'lawyer'] [u'davi', u'semi', u'final', u'knife', u'edg'] [u'denison', u'candid', u'downplay', u'societi', u'probe'] [u'dumb', u'dumber', u'bank', u'robber', u'jail'] [u'eccleston', u'fret', u'calendar'] [u'elder', u'man', u'bodi'] [u'english', u'class', u'arent', u'dumb', u'say', u'union'] [u'galleri', u'worker', u'demand', u'inquiri', u'cancer'] [u'fatah', u'blame', u'hama', u'ralli', u'death'] [u'ferrari', u'wait', u'rossi', u'say', u'brawn'] [u'fine', u'condit', u'prevail'] [u'fine', u'condit', u'prevail', u'final'] [u'form', u'team', u'clash', u'grand', u'final', u'berth'] [u'foul', u'play', u'rule', u'cairn', u'death'] [u'call', u'crude', u'output', u'increas'] [u'nation', u'financ', u'debt', u'cancel'] [u'ganguli', u'want', u'team', u'shield', u'chappel'] [u'girl', u'narrowli', u'escap', u'abduct'] [u'grand', u'final', u'excit', u'build'] [u'grand', u'final', u'highlight'] [u'grenad', u'attack', u'danc', u'parti', u'kill'] [u'groot', u'eylandt', u'communiti', u'need', u'help', u'warn'] [u'hall', u'surround', u'countrysid', u'protect'] [u'hurrican', u'rita', u'storm', u'ashor'] [u'iemma', u'back', u'airport', u'secur', u'measur'] [u'indian', u'invest', u'reopen', u'coal'] [u'israel', u'launch', u'second', u'strike', u'gaza', u'strip'] [u'israel', u'strike', u'gaza', u'strip', u'rocket', u'attack'] [u'jakarta', u'regist', u'bird', u'patient'] [u'japanes', u'scuba', u'diver', u'die', u'queensland'] [u'japan', u'releas', u'endang', u'stork', u'wild'] [u'labor', u'commit', u'allianc', u'say', u'smith'] [u'london', u'bomber', u'mind', u'twist', u'radic', u'say', u'widow'] [u'dead', u'outsid', u'cairn', u'unit'] [u'face', u'charg', u'psychiatrist', u'alleg'] [u'matera', u'rule', u'west', u'coast'] [u'mcewen', u'warm', u'rainbow', u'jersey', u'duel'] [u'media', u'echo', u'govt', u'muslim', u'stereotyp', u'academ'] [u'mental', u'health', u'reform', u'urg', u'patient', u'death'] [u'mock', u'terror', u'attack', u'stag', u'itali'] [u'motorcyclist', u'kill', u'crash'] [u'motorway', u'close', u'fatal', u'accid'] [u'nation', u'galleri', u'report'] [u'nelson', u'prioriti', u'union'] [u'seek', u'second', u'opinion', u'cancer', u'cluster'] [u'nrma', u'call', u'road', u'spend'] [u'price', u'slide', u'gulf', u'product', u'halt'] [u'oprah', u'book', u'club', u'return', u'live', u'writer'] [u'palestinian', u'rocket', u'hit', u'israel', u'milit'] [u'persian', u'gazell', u'miss', u'world', u'solar', u'challeng'] [u'bull', u'attack', u'toddler', u'backyard'] [u'polic', u'arm', u'stun', u'gun', u'year'] [u'pope', u'elect', u'rival', u'back', u'away', u'report'] [u'power', u'houston', u'rita'] [u'press', u'confer', u'barri', u'hall', u'paul', u'roo'] [u'press', u'confer', u'john', u'worsfold'] [u'rain', u'hit', u'presid'] [u'rat', u'notic', u'spell', u'water'] [u'rita', u'delug', u'spill', u'orlean', u'leve'] [u'rita', u'expect', u'flood', u'texan', u'citi', u'smash', u'home'] [u'rita', u'fan', u'island', u'blaze'] [u'rita', u'lose', u'steam', u'coast', u'cross'] [u'rita', u'cross', u'coast'] [u'rita', u'weaken', u'citi'] [u'river', u'result', u'rosi', u'green'] [u'rocket', u'attack', u'injur', u'isra'] [u'round', u'clock', u'train', u'plan', u'prompt', u'secur'] [u'royal', u'adelaid', u'hospit', u'nurs', u'impos', u'work', u'ban'] [u'safeti', u'patient', u'right', u'doctor'] [u'sato', u'schumach', u'clear'] [u'senden', u'touch', u'texa'] [u'visitor', u'invit', u'eagl'] [u'skydiv', u'hurt', u'championship', u'parachut', u'mishap'] [u'lankan', u'elect', u'chief', u'heart'] [u'staff', u'save', u'japanes', u'tourist'] [u'steadi', u'go', u'swan'] [u'surfer', u'punch', u'shark', u'escap', u'attack'] [u'swan', u'edg', u'eagl', u'quarter', u'time'] [u'swan', u'year', u'premiership', u'drought'] [u'swan', u'hold', u'narrow', u'lead'] [u'swan', u'half', u'time'] [u'swan', u'premiership', u'drought', u'break'] [u'syria', u'blame', u'iraq', u'infiltr'] [u'tasmanian', u'skiier', u'farewel', u'disappoint', u'season'] [u'kill', u'gaza', u'hama', u'ralli', u'blast'] [u'ten', u'thousand', u'march', u'iraq'] [u'tiger', u'ignor', u'pain', u'presid'] [u'tiger', u'toppl', u'dragon', u'reach', u'grand', u'final'] [u'trio', u'injur', u'crash', u'hous'] [u'kill', u'suicid', u'bomber', u'target', u'iraqi', u'armi'] [u'kill', u'gaza', u'blast'] [u'warrior', u'get', u'year', u'terror', u'offenc'] [u'union', u'concern', u'western', u'power', u'split'] [u'soldier', u'tell', u'abus', u'iraq', u'afghanistan'] [u'stock', u'mix', u'ahead', u'rita', u'impact'] [u'teacher', u'need', u'exam', u'scrutini'] [u'water', u'review', u'consid', u'qualiti', u'access', u'issu'] [u'wenger', u'back', u'henri', u'stay', u'arsenal'] [u'wind', u'lash', u'gulf', u'coast'] [u'women', u'recov', u'storey', u'shop', u'centr'] [u'wood', u'win', u'bronz', u'road', u'race'] [u'worker', u'take', u'hospit', u'leak'] [u'youth', u'invit', u'join', u'ministeri', u'advisori', u'council'] [u'zimbabw', u'player', u'disappear', u'british', u'tour'] [u'kill', u'afghanistan', u'chopper', u'crash'] [u'actu', u'educ', u'worker', u'second', u'campaign'] [u'age', u'perform', u'bring', u'matur', u'danc', u'scene'] [u'alonso', u'closer', u'titl', u'brazil', u'pole'] [u'welcom', u'hospit', u'report', u'law'] [u'apart', u'develop', u'guidelin', u'implement'] [u'aussi', u'walker', u'win', u'silver', u'road', u'race'] [u'aust', u'immigr', u'strong', u'generous', u'vanston'] [u'backpack', u'injur', u'darwin', u'crash'] [u'beatti', u'critic', u'anti', u'terror', u'plan'] [u'beatti', u'tell', u'nelson', u'butt', u'educ'] [u'blacklock', u'trick', u'end', u'johnss', u'stint'] [u'brain', u'inflamm', u'initi', u'parkinson'] [u'canberra', u'farmer', u'tell', u'expect', u'averag', u'rain'] [u'cancel', u'ambul', u'prompt', u'investig'] [u'china', u'india', u'fresh', u'border', u'talk'] [u'cole', u'myer', u'chief', u'stick', u'target'] [u'cowboy', u'stun', u'shell', u'shock', u'eel'] [u'croatia', u'slovakia', u'inch', u'davi', u'final'] [u'croc', u'kill', u'snorkel'] [u'disappoint', u'eagl', u'welcom', u'perth'] [u'drug', u'charg', u'lay', u'danc', u'parti', u'raid'] [u'eel', u'favour', u'slip', u'past', u'cowboy'] [u'kill', u'troop', u'fight', u'cleric', u'follow'] [u'farmer', u'assess', u'drought', u'help'] [u'fisherman', u'drown', u'south', u'west'] [u'gasnier', u'wallabi', u'target', u'report'] [u'gaza', u'strip', u'violenc'] [u'gaza', u'violenc', u'prompt', u'intervent'] [u'govt', u'urg', u'sign', u'auslink', u'agreement'] [u'grand', u'dream', u'cowboy'] [u'hamilton', u'local', u'angri', u'council', u'offic', u'closur'] [u'helicopt', u'search', u'find', u'miss', u'snorkler', u'bodi'] [u'predict', u'industri', u'consolid'] [u'hick', u'seek', u'passport', u'freedom'] [u'hong', u'kong', u'democrat', u'visit', u'china'] [u'hurrican', u'hoot', u'staff'] [u'infant', u'buri', u'mammoth', u'bone'] [u'drop', u'poor', u'countri', u'debt'] [u'indian', u'offici', u'probe', u'ganguli', u'chappel', u'spat'] [u'inquiri', u'order', u'motorcyclist', u'death'] [u'interview', u'disappoint', u'dragon'] [u'interview', u'grandstand', u'speak', u'sheen'] [u'interview', u'jubil', u'cowboy'] [u'interview', u'triumphant', u'tiger'] [u'iran', u'dismiss', u'nuclear', u'resolut'] [u'iranian', u'nuclear', u'issu', u'head', u'secur', u'council'] [u'iraq', u'insurg', u'wors', u'anticip', u'blair'] [u'israel', u'arrest', u'west', u'bank', u'crackdown'] [u'japanes', u'team', u'lead', u'world', u'solar', u'challeng'] [u'klitschko', u'ralli', u'knockdown'] [u'lampard', u'keep', u'chelsea', u'track', u'unit', u'stumbl'] [u'lucki', u'escap', u'prompt', u'smoke', u'detector', u'warn'] [u'macgil', u'mystifi', u'ash', u'snub'] [u'call', u'petrol', u'price', u'rise', u'warn'] [u'pakistani', u'accid', u'kill'] [u'pilgrim', u'kill', u'pakistan', u'crash'] [u'polanski', u'unveil', u'children', u'film', u'oliv', u'twist'] [u'policeman', u'serious', u'injur', u'perth', u'smash'] [u'power', u'fourth', u'qualifi'] [u'relief', u'worker', u'hurrican', u'zone'] [u'rescu', u'oper', u'rita', u'survivor'] [u'retir', u'offic', u'fear', u'sale', u'histor', u'barrack'] [u'rita', u'aftermath'] [u'rita', u'caus', u'widespread', u'damag', u'death'] [u'road', u'fund', u'negoti', u'ongo', u'hargreav'] [u'rossi', u'win', u'fifth', u'straight', u'world', u'titl'] [u'secur', u'debat'] [u'senden', u'content', u'texa'] [u'solar', u'car', u'batteri', u'pose', u'risk', u'environ'] [u'southlink', u'review', u'safeti', u'rock', u'throw'] [u'starcraft', u'win', u'queen', u'elizabeth', u'stake'] [u'state', u'airport', u'polic', u'tricki', u'say', u'ellison'] [u'stoner', u'take', u'chequer', u'flag', u'malaysia'] [u'stormwat', u'levi', u'ratepay', u'opposit'] [u'suicid', u'bomber', u'target', u'elit', u'polic', u'unit'] [u'sulawesi', u'bomb', u'suspect', u'catch'] [u'surfer', u'escap', u'shark', u'attack', u'cut'] [u'surfer', u'recov', u'shark', u'attack'] [u'suspect', u'poultri', u'seiz', u'bird', u'fight'] [u'swan', u'celebr', u'grand', u'final', u'glori'] [u'swan', u'toast', u'sydney'] [u'swan', u'triumphant'] [u'minist', u'pan', u'standard', u'exam'] [u'urg', u'refus', u'implement', u'terorr', u'law'] [u'territorian', u'warn', u'spread', u'fruit', u'pest'] [u'thousand', u'march', u'london', u'washington', u'iraq'] [u'ticket', u'inspector', u'ankl', u'break', u'train', u'assault'] [u'tiger', u'roll', u'cairn'] [u'tonn', u'orang', u'dump', u'amid', u'glut'] [u'triumphant', u'swan', u'celebr', u'home'] [u'truck', u'bomb', u'explod', u'warn'] [u'custodi', u'wild', u'gold', u'coast', u'brawl'] [u'unbeaten', u'getaf'] [u'intern', u'level', u'play'] [u'victori', u'swan', u'head', u'home'] [u'victori', u'notch', u'maiden'] [u'vieira', u'strike', u'juve', u'maintain', u'perfect'] [u'law', u'delay', u'leav', u'servic', u'limbo'] [u'water', u'deal', u'affect', u'communiti', u'group', u'say'] [u'world', u'greatest', u'treasur', u'expedit', u'claim'] [u'young', u'peopl', u'struggl', u'properti'] [u'accc', u'educ', u'motorist', u'petrol', u'price'] [u'accid', u'prompt', u'warn', u'driver'] [u'accommod', u'scheme', u'offer', u'skill'] [u'actu', u'back', u'penalti', u'rat', u'inquiri'] [u'adelaid', u'miner', u'join', u'forc', u'beer'] [u'airport', u'polic', u'plan', u'rais', u'afpa', u'concern'] [u'effort', u'noxious', u'weed', u'victoria'] [u'alonso', u'take', u'world', u'titl'] [u'qaeda', u'claim', u'iraq', u'suicid', u'attack'] [u'aust', u'increas', u'bird', u'indonesia'] [u'australian', u'thank', u'author', u'hurrican'] [u'barramundi', u'break', u'end', u'local', u'line'] [u'beazley', u'spell', u'anti', u'terror', u'prioriti'] [u'board', u'continu', u'plan', u'chines', u'worker', u'scheme'] [u'bomber', u'kill', u'iraqi', u'worker'] [u'bomb', u'injur', u'lebanon', u'journalist'] [u'boonen', u'triumphant', u'mcewen', u'fail', u'medal'] [u'bushfir', u'season', u'prepar'] [u'canegrow', u'condemn', u'sugar', u'push'] [u'catchment', u'group', u'urg', u'lift', u'profil'] [u'volunt', u'bushfir', u'find'] [u'chappel', u'ganguli', u'escal'] [u'china', u'tiger', u'trade', u'doom', u'speci'] [u'china', u'tighten', u'noos', u'media', u'rule'] [u'church', u'arsonist', u'spend', u'year', u'youth', u'train'] [u'citrus', u'grower', u'tell', u'join', u'forc', u'save', u'industri'] [u'civil', u'libertarian', u'anti', u'terror', u'control'] [u'commission', u'lament', u'disloyalti', u'dump', u'deputi'] [u'communiti', u'mourn', u'wiradjuri', u'languag', u'revivalist'] [u'regroup', u'southern', u'forest'] [u'construct', u'worker', u'continu', u'strike', u'safeti'] [u'contest', u'launch', u'unearth', u'opera', u'talent'] [u'costa', u'applaud', u'nsws', u'financi', u'rat'] [u'cost', u'fuel', u'hit', u'fish'] [u'council', u'keep', u'abreast', u'woodchip', u'port', u'plan'] [u'councillor', u'seek', u'compassion', u'approach', u'work'] [u'council', u'offer', u'qualifi', u'support', u'grey', u'water'] [u'count', u'continu', u'alic', u'elect'] [u'court', u'budget', u'review'] [u'cowboy', u'confid', u'captain', u'play', u'final'] [u'cowboy', u'gear', u'decid'] [u'cowboy', u'grand', u'final', u'build', u'begin'] [u'cowboy', u'return', u'home', u'rock', u'star', u'recept'] [u'croatia', u'slovakia', u'reach', u'davi', u'final'] [u'croc', u'blame', u'snorkel', u'death'] [u'crocodil', u'coach', u'say', u'team', u'go', u'sleep'] [u'dairi', u'farmer', u'angri', u'water', u'plan'] [u'darwin', u'turbo', u'charg', u'solar', u'team', u'power'] [u'deadlin', u'loom', u'project', u'contract'] [u'demi', u'moor', u'ashton', u'kutcher', u'report'] [u'demon', u'help', u'build', u'school', u'broadbridg', u'memori'] [u'denmark', u'plan', u'lift', u'presenc', u'iraq'] [u'campaign', u'target', u'australian', u'labor'] [u'downer', u'know', u'hickss', u'citizenship'] [u'driver', u'plead', u'guilti', u'fatal', u'crash', u'case'] [u'dutch', u'runner', u'lead', u'pack', u'alic'] [u'green', u'save', u'intern', u'trade'] [u'elbaradei', u'get', u'iaea', u'term'] [u'evid', u'shortfal', u'wast', u'court', u'time'] [u'famili', u'seek', u'penalti', u'rat', u'inquiri'] [u'farmer', u'hope', u'rain', u'soak', u'crop'] [u'farm', u'help', u'boost', u'indigen', u'potenti'] [u'fear', u'skill', u'shortag', u'hamper', u'build', u'growth'] [u'fibr', u'optic', u'trial', u'start', u'soon'] [u'result', u'heighten', u'fear', u'militari', u'heritag'] [u'forecast', u'warn', u'skill', u'shortag'] [u'kill', u'afghanistan', u'bomb', u'blast'] [u'fund', u'tourist', u'trek', u'right', u'path'] [u'vine', u'worri', u'french', u'winemak'] [u'gold', u'star', u'scheme', u'target', u'communiti', u'facil'] [u'govt', u'approv', u'pipelin', u'bowen', u'mine'] [u'govt', u'tell', u'drop', u'stick', u'approach', u'remot'] [u'govt', u'urg', u'implement', u'rural', u'health', u'shake'] [u'guilti', u'verdict', u'head', u'spanish', u'qaeda', u'cell'] [u'hama', u'vow', u'stop', u'attack', u'israel'] [u'health', u'servic', u'say', u'doctor', u'leav', u'decis', u'wont'] [u'hick', u'appli', u'british', u'citizen'] [u'hick', u'hop', u'british', u'help'] [u'hick', u'lawyer', u'welcom', u'passport'] [u'hick', u'seek', u'citizenship'] [u'hiddink', u'name', u'squad', u'socceroo', u'train', u'camp'] [u'hockey', u'player', u'floorbal'] [u'hope', u'communiti', u'bank', u'inspir'] [u'hospit', u'report', u'rule', u'frustrat', u'bureaucrat'] [u'human', u'right', u'summit', u'lawyer', u'say'] [u'hunter', u'leasehold', u'decis', u'expect'] [u'ibi', u'pill', u'solv', u'popul', u'woe'] [u'indian', u'board', u'gag', u'player', u'ganguli', u'chappel'] [u'indonesia', u'ask', u'donor', u'fulfil', u'tsunami', u'pledg'] [u'indonesian', u'boat', u'accid', u'kill'] [u'industri', u'relat', u'chang', u'farm', u'actu'] [u'industri', u'woe', u'continu', u'fulham', u'prison'] [u'keen', u'council', u'properti', u'auction'] [u'iraqi', u'gunmen', u'murder', u'teacher', u'school'] [u'island', u'communiti', u'get', u'rural', u'transact', u'centr'] [u'isra', u'strike', u'continu', u'despit', u'hama', u'truce'] [u'keep', u'petrol', u'price', u'accc'] [u'knee', u'injuri', u'sidelin', u'beltram'] [u'law', u'reduc', u'terror', u'risk', u'howard'] [u'longreach', u'name'] [u'lower', u'bulk', u'wine', u'price', u'hit', u'grower', u'payment'] [u'arrest', u'violent', u'attack'] [u'charg', u'rockhampton', u'murder'] [u'mancini', u'find', u'fault', u'despit', u'inter', u'victori'] [u'mander', u'refere', u'grand', u'final'] [u'surviv', u'wagga', u'bridg', u'plung'] [u'face', u'court', u'currumbin', u'brawl'] [u'face', u'court', u'attack'] [u'face', u'court', u'weekend', u'sieg'] [u'markov', u'progress', u'ankl', u'surgeri'] [u'marsh', u'face', u'tribun', u'john', u'face', u'kiwi'] [u'massiv', u'clean', u'oper', u'underway', u'wake'] [u'medicar', u'campaign', u'scrap'] [u'merino', u'wool', u'promot'] [u'camera', u'insight', u'newcastl', u'histori'] [u'miner', u'bank', u'push', u'market', u'high'] [u'minist', u'stop', u'short', u'forc', u'council', u'allianc'] [u'miss', u'woman', u'contact', u'emerg', u'servic'] [u'rain', u'need', u'lift', u'water', u'storag'] [u'support', u'urg', u'trucki', u'join', u'protest'] [u'moruya', u'celebr', u'busi', u'acumen'] [u'motorist', u'pay'] [u'nation', u'want', u'plan', u'water', u'entitl', u'chang'] [u'newcastl', u'get', u'world', u'duathlon', u'championship'] [u'director', u'elect', u'grain', u'grower'] [u'peta', u'threat', u'fail', u'worri', u'wool', u'grower'] [u'prize', u'music', u'artist', u'ear'] [u'famili', u'relationship', u'centr', u'coff'] [u'north', u'coast', u'cyclist', u'die', u'crash'] [u'norton', u'fit', u'race', u'play', u'final'] [u'redistribut', u'unwant', u'grand', u'final', u'ticket'] [u'nrma', u'board', u'candid', u'seek', u'reform'] [u'build', u'boom', u'predict', u'wane'] [u'terror', u'probabl', u'cover', u'howard', u'plan'] [u'politician', u'keep', u'elect', u'promis', u'streak', u'ahead'] [u'price', u'fall', u'rita', u'pass'] [u'ombudsman', u'probe', u'long', u'term', u'detaine', u'case'] [u'opera', u'launch', u'search', u'star'] [u'opposit', u'parti', u'reform', u'coalit'] [u'pakistan', u'crash', u'kill', u'pilgrim'] [u'peru', u'quak', u'kill', u'injur'] [u'petrol', u'station', u'owner', u'issu', u'bowser', u'warn'] [u'piquet', u'give', u'brazil', u'win', u'debut'] [u'polic', u'break', u'azerbaijan', u'demonstr'] [u'polic', u'charg', u'teen', u'christma', u'blaze'] [u'polic', u'defend', u'handl', u'groot', u'eylandt', u'clinic'] [u'polic', u'drink', u'drive', u'messag', u'ignor'] [u'polic', u'investig', u'highway', u'camel', u'shoot'] [u'polic', u'investig', u'lismor', u'stab'] [u'polic', u'investig', u'teen', u'scooter', u'death'] [u'polic', u'seek', u'assist', u'vampir', u'murder'] [u'polic', u'smash', u'skim', u'scam'] [u'polic', u'subdu', u'heyfield', u'knife'] [u'polish', u'conserv', u'confirm', u'elect'] [u'power', u'typhoon', u'hit', u'southern', u'china'] [u'public', u'urg', u'pacif', u'highway', u'work'] [u'quarantin', u'offici', u'warn', u'bird', u'threat'] [u'rain', u'need', u'soak', u'central', u'crop'] [u'ratepay', u'group', u'back', u'paddl', u'steamer', u'repair'] [u'raus', u'lawyer', u'call', u'royal', u'commiss'] [u'review', u'show', u'strong', u'bank', u'sector'] [u'record', u'rain', u'give', u'hope', u'eyr', u'peninsula'] [u'region', u'museum', u'learn', u'protect'] [u'renew', u'coalit', u'fail', u'faze', u'beatti'] [u'report', u'clear', u'council', u'staff', u'properti'] [u'retail', u'like', u'feel', u'higher', u'fuel', u'price', u'impact'] [u'retir', u'politician', u'pass', u'away'] [u'reward', u'offer', u'rock', u'throw', u'inform'] [u'richard', u'chanc', u'grand', u'final'] [u'rita', u'damag', u'reach'] [u'robinson', u'announc', u'england', u'retir'] [u'rspca', u'program', u'target', u'pet', u'expos', u'domest'] [u'rural', u'communic', u'fund', u'get', u'billion'] [u'safeti', u'deal', u'eas', u'aviat', u'export', u'cost'] [u'senat', u'urg', u'alcohol', u'advertis', u'rethink'] [u'email', u'disloyalti', u'deputi', u'commission'] [u'shanghai', u'offic', u'help', u'boost', u'canberra', u'busi'] [u'shark', u'attack', u'survivor', u'extrem', u'lucki'] [u'sharon', u'face', u'crunch', u'vote', u'leadership'] [u'shoalhaven', u'contribut', u'bushfir', u'recommend'] [u'shoulder', u'problem', u'forc', u'begley', u'retir'] [u'accus', u'drive', u'mum', u'hous'] [u'star', u'club', u'cricket'] [u'state', u'territori', u'leader', u'confid', u'counter'] [u'state', u'premier', u'demand', u'safeguard', u'propos'] [u'state', u'hope', u'anti', u'terror', u'law', u'deal'] [u'stoke', u'face', u'hear'] [u'stoke', u'take', u'stand', u'case'] [u'strike', u'continu', u'milit', u'sharon'] [u'sunderland', u'long', u'victori', u'wait'] [u'swan', u'heap', u'prais', u'coach', u'roo'] [u'swan', u'lose', u'player', u'club', u'roo'] [u'swazi', u'king', u'pick', u'wife', u'number'] [u'sweden', u'beat', u'india', u'stay', u'tenni', u'world', u'group'] [u'tare', u'encourag', u'join', u'chang', u'task', u'forc'] [u'teenag', u'boy', u'death', u'haunt', u'robert'] [u'teen', u'die', u'cabooltur', u'crash'] [u'tennant', u'creek', u'polic', u'fear', u'miss'] [u'thousand', u'ralli', u'taiwan', u'support', u'arm', u'budget'] [u'horror', u'perth', u'road', u'crash'] [u'trader', u'tell', u'expect', u'higher', u'freight', u'rat'] [u'train', u'servic', u'track', u'union'] [u'truce', u'time', u'latest', u'surg'] [u'kill', u'gaza', u'strike'] [u'union', u'consult', u'nation', u'galleri', u'cancer', u'case'] [u'union', u'lose', u'battl', u'long', u'pollster'] [u'unit', u'marin', u'share', u'point', u'adelaid'] [u'announc', u'ghraib', u'prison', u'releas'] [u'clinch', u'presid'] [u'premier', u'consult', u'terror', u'summit'] [u'secur', u'camera'] [u'winton', u'resid', u'turn', u'movi', u'come'] [u'woman', u'bash', u'raywood', u'home', u'invas'] [u'woman', u'die', u'dune', u'buggi', u'crash'] [u'world', u'bank', u'agre', u'debt', u'relief', u'plan'] [u'chequ', u'fraud', u'case', u'court'] [u'aborigin', u'hostel', u'reopen', u'door', u'refug', u'intak'] [u'chief', u'reject', u'pacif', u'island', u'recruit'] [u'afghanistan', u'dismiss', u'legalis', u'opium'] [u'lack', u'number', u'fulfil', u'airport', u'duti', u'union'] [u'airport', u'share', u'secur', u'fund'] [u'alburi', u'mayor', u'secur', u'second', u'term'] [u'american', u'urg', u'conserv', u'fuel'] [u'analogu', u'shutdown', u'delay'] [u'appal', u'anti', u'terror', u'law', u'draw', u'critic'] [u'arafura', u'share', u'revenu', u'fund', u'uranium', u'quest'] [u'armi', u'examin', u'mortar', u'dump'] [u'aussi', u'dump', u'french', u'surf'] [u'aust', u'indonesia', u'defenc', u'relationship', u'good'] [u'urg', u'labor', u'mine', u'uranium', u'polici'] [u'bali', u'charg', u'carri', u'death', u'penalti'] [u'bali', u'face', u'death', u'penalti'] [u'bank', u'miner', u'continu', u'boost', u'market'] [u'beazley', u'visit', u'coast', u'highlight', u'region', u'airport'] [u'belconnen', u'crash', u'boost', u'road', u'toll'] [u'billiton', u'admit', u'blow', u'out', u'nickel', u'project'] [u'birney', u'pursu', u'offshor', u'project', u'revenu'] [u'team', u'unchang', u'line'] [u'brack', u'confid', u'terror', u'law', u'agreement'] [u'brewer', u'takeov', u'go', u'court'] [u'bundaberg', u'feel', u'fuel', u'price', u'drop'] [u'burn', u'permit', u'need', u'bushfir', u'danger', u'begin'] [u'cairn', u'drop', u'kiwi'] [u'support', u'region', u'race'] [u'canegrow', u'seek', u'redistribut', u'reform', u'fund'] [u'centrelink', u'union', u'threaten', u'strike', u'action'] [u'certain', u'group', u'singl'] [u'christma', u'detent', u'centr', u'spark', u'mental', u'health'] [u'citrus', u'industri', u'royal', u'commiss', u'need'] [u'citrus', u'peel', u'machin', u'see', u'oversuppli', u'solut'] [u'coach', u'replac', u'vline', u'train', u'fast', u'rail'] [u'coalit', u'deal', u'give', u'parti', u'platform', u'challeng'] [u'coco', u'island', u'tourism', u'brainstorm'] [u'colleagu', u'disappoint', u'upper', u'hous'] [u'consum', u'home', u'hous'] [u'corbi', u'judg', u'seek', u'time'] [u'councillor', u'question', u'croc', u'risk', u'assess'] [u'councillor', u'brief', u'bird', u'outbreak', u'plan'] [u'council', u'want', u'communiti', u'help', u'protect', u'penguin'] [u'cowboy'] [u'cowboy', u'thurston'] [u'dead', u'fungus', u'threaten', u'platypus', u'popul'] [u'decis', u'loom', u'privat', u'jail', u'contract'] [u'defo', u'goal', u'lift', u'spur'] [u'demerg', u'melbourn', u'mission'] [u'detaine', u'mental', u'health', u'care'] [u'develop', u'continu', u'port', u'campbel', u'hotel', u'push'] [u'develop', u'caus', u'hous', u'headach', u'say', u'welfar'] [u'disgrac', u'millar', u'tour', u'comeback'] [u'dodson', u'back', u'indigen', u'land', u'ownership'] [u'driver', u'accus', u'caus', u'pile', u'face', u'court'] [u'dutch', u'solar', u'track', u'break', u'race', u'record'] [u'dutch', u'solar', u'stay', u'ahead'] [u'educ', u'voucher', u'consid', u'poorer', u'famili'] [u'eurobodalla', u'poll', u'get', u'briberi', u'claim'] [u'evan', u'downplay', u'australia', u'terror', u'risk'] [u'expert', u'consid', u'climat', u'chang', u'impact', u'mossi'] [u'fake', u'platypus', u'fetch', u'auction'] [u'dog', u'life', u'zealand'] [u'farmer', u'concern', u'western', u'power', u'break', u'rush'] [u'fergi', u'defens', u'unit'] [u'ferguson', u'unit', u'falter'] [u'firm', u'reject', u'claim', u'financi', u'woe'] [u'fish', u'group', u'want', u'action', u'stop', u'angler', u'death'] [u'footi', u'club', u'plan', u'stay', u'time'] [u'redback', u'hit', u'chappel'] [u'found', u'bishop', u'lay', u'rest', u'hobart'] [u'soldier', u'kill', u'southern', u'thailand'] [u'fresh', u'approach', u'age', u'care', u'need', u'bishop'] [u'fruit', u'roadblock', u'plan', u'hold'] [u'fulham', u'prison', u'guard', u'work', u'ban', u'ongo'] [u'fund', u'woe', u'creat', u'goulburn', u'hospit', u'hazard'] [u'smart', u'actor', u'adam', u'die'] [u'global', u'warm', u'earth', u'biggest', u'threat', u'flanneri'] [u'gold', u'coast', u'host', u'intern', u'aviat', u'talk'] [u'golf', u'club', u'member', u'vote', u'extend', u'hous'] [u'googl', u'debut', u'chris', u'rock', u'comedi'] [u'govt', u'develop', u'bird', u'action', u'plan', u'rudd'] [u'govt', u'say', u'dilapid', u'school', u'rebuild'] [u'govt', u'urg', u'boost', u'blueprint', u'remot', u'train'] [u'group', u'equal', u'input', u'technic', u'colleg'] [u'grower', u'want', u'valu', u'merino', u'test', u'market'] [u'havilah', u'report', u'bumper', u'copper', u'cobalt', u'drill'] [u'hawk', u'back', u'aust', u'nuclear', u'wast', u'repositori'] [u'hawk', u'dump', u'plan', u'easi', u'coast', u'dweller'] [u'health', u'expert', u'seek', u'popul', u'plan'] [u'health', u'figur', u'reveal', u'rat', u'free'] [u'hear', u'date', u'give', u'hick', u'breath', u'space'] [u'hope', u'biosecur', u'plan', u'save', u'grain', u'industri'] [u'hope', u'head', u'canberra', u'draft'] [u'hospit', u'inquiri', u'hear', u'second', u'rogu', u'surgeon'] [u'hudson', u'stay', u'power', u'coach'] [u'hurrican', u'damag', u'platform'] [u'illeg', u'dump', u'spot', u'patrol', u'yield', u'fine'] [u'independ', u'school', u'sector', u'expect', u'grow'] [u'indian', u'troop', u'kill', u'seven', u'rebel', u'kashmir'] [u'industri', u'action', u'begin', u'health', u'talk'] [u'iran', u'threaten', u'resum', u'uranium', u'enrich'] [u'hear', u'iluka', u'level', u'cross', u'disput'] [u'irympl', u'group', u'find', u'buyer'] [u'islam', u'leader', u'hit', u'anti', u'terror', u'law'] [u'judg', u'cast', u'illawarra', u'beach'] [u'kelli', u'gang', u'mysteri', u'swing', u'develop'] [u'afghan', u'cabinet', u'minist', u'resign'] [u'labor', u'parti', u'reject', u'hawk', u'nuclear', u'dump', u'plan'] [u'landslid', u'avalanch', u'kill', u'india'] [u'latham', u'claim', u'labor', u'support', u'diari'] [u'latham', u'diari', u'labor', u'poll'] [u'leader', u'agre', u'sweep', u'counter', u'terror', u'power'] [u'leader', u'confid', u'anti', u'terror', u'agreement'] [u'leader', u'divid', u'disarma'] [u'liber', u'nation', u'joint', u'approach', u'gold'] [u'limit', u'immigr', u'detent', u'month'] [u'lloyd', u'lead', u'bomber'] [u'lloyd', u'bomber', u'captainci'] [u'loxton', u'polic', u'station', u'claim', u'label', u'elect'] [u'maitland', u'urg', u'rethink', u'promot'] [u'major', u'crop', u'area', u'forecast', u'smaller', u'harvest'] [u'charg', u'year', u'murder', u'case'] [u'manufactur', u'activ', u'drop', u'septemb'] [u'marsh', u'accept', u'match', u'suspens'] [u'marsh', u'miss', u'start', u'domest', u'cricket', u'season'] [u'mass', u'shoot', u'outrag', u'camel', u'industri'] [u'mayor', u'look', u'vote', u'cutjar', u'deputi'] [u'mayor', u'project', u'approv', u'despit', u'work', u'start'] [u'miller', u'enter', u'term', u'mayor'] [u'miner', u'capitalis', u'grow', u'support', u'uranium'] [u'minist', u'reject', u'stormwat', u'stealth', u'claim'] [u'minist', u'tell', u'councillor', u'stop', u'behav', u'like'] [u'minium', u'wage', u'wont', u'skill', u'shortag', u'minist'] [u'blast', u'hous', u'jailbird'] [u'say', u'park', u'fine', u'rule', u'harsh'] [u'nation', u'park', u'shack', u'ministeri', u'repriev'] [u'nation', u'beat', u'newli', u'form', u'coalit'] [u'neighbour', u'friend', u'measur', u'consid', u'wast'] [u'bendigo', u'polic', u'station', u'work'] [u'newcastl', u'rugbi', u'union', u'stand', u'player', u'exclus'] [u'newcom', u'take', u'medal', u'ballarat', u'wine'] [u'cronj', u'book', u'outsel', u'harri', u'potter'] [u'port', u'chief', u'readi', u'work'] [u'nicol', u'kidman', u'lead', u'headhunt'] [u'bail', u'accus', u'child', u'crime'] [u'world', u'wast', u'macfarlan'] [u'northern', u'fan', u'urg', u'cowboy'] [u'quartet', u'sign', u'toulous'] [u'coalit', u'discuss', u'tweed', u'candid'] [u'fail', u'sway', u'howard', u'nuclear', u'dump'] [u'nuclear', u'wast', u'dump', u'plan', u'cop', u'critic'] [u'nurs', u'question', u'chang', u'impact'] [u'price', u'forecast', u'virgin', u'blue', u'profit'] [u'price', u'eas', u'costello'] [u'opinion', u'poll', u'concern', u'beazley'] [u'outgo', u'chairman', u'look', u'challeng'] [u'oversuppli', u'hit', u'cattl', u'market'] [u'parent', u'question', u'assault', u'leav', u'child'] [u'paul', u'newman', u'help', u'drought', u'famili'] [u'pension', u'highlight', u'countrylink', u'problem'] [u'pentagon', u'set', u'hick', u'hear', u'date'] [u'peru', u'quak', u'toll', u'rise'] [u'player', u'target', u'clampdown'] [u'polic', u'book', u'drug', u'ring', u'syndic'] [u'polic', u'detain', u'boy', u'attempt', u'theft'] [u'polic', u'hunt', u'pair', u'teen', u'attack'] [u'polic', u'immun', u'alarm', u'right', u'watchdog'] [u'polic', u'issu', u'illeg', u'gun', u'warn'] [u'polic', u'probe', u'suspici', u'death'] [u'poor', u'driver', u'behaviour', u'worri', u'polic'] [u'port', u'hedland', u'pump', u'underground', u'power'] [u'power', u'remain', u'lion'] [u'protest', u'leader', u'reject', u'northern', u'ireland', u'power'] [u'protest', u'dont', u'stop', u'funer', u'home', u'cremat'] [u'public', u'meet', u'civic', u'centr', u'urg'] [u'patron', u'bruis', u'rubbish', u'truck', u'compactor'] [u'opposit', u'reject', u'govt', u'mini', u'budget'] [u'opposit', u'reveal', u'shadow', u'cabinet'] [u'rain', u'help', u'soak', u'parch', u'wetland'] [u'rain', u'need', u'harsher', u'restrict'] [u'rann', u'put', u'pandem', u'coag', u'agenda'] [u'report', u'prompt', u'salin', u'action'] [u'report', u'urg', u'maryborough', u'emerg', u'dept', u'upgrad'] [u'richard', u'fit', u'battl', u'tiger'] [u'river', u'clean', u'opposit', u'list'] [u'rough', u'market', u'philippin', u'pineappl'] [u'shake', u'ensur', u'debt', u'clear'] [u'timber', u'compani', u'cut', u'job'] [u'sceptic', u'doubt', u'weapon', u'decommiss'] [u'scientist', u'wider', u'use', u'cholesterol', u'drug'] [u'scientist', u'panda', u'habit'] [u'scud', u'tip', u'australian', u'open', u'wildcard'] [u'senat', u'examin', u'baxter', u'impact', u'mental', u'health'] [u'senat', u'seek', u'tough', u'action', u'petrol'] [u'seven', u'rita', u'relat', u'death'] [u'sever', u'frost', u'damag', u'threaten', u'wheatbelt', u'harvest'] [u'shark', u'attack', u'plan', u'help', u'surfer'] [u'sharon', u'win', u'leadership', u'vote'] [u'sheen', u'claim', u'underdog', u'status'] [u'shoalhaven', u'busi', u'boost', u'job'] [u'specialist', u'team', u'prepar', u'season', u'start'] [u'sport', u'figur', u'target', u'offic', u'clampdown'] [u'spray', u'drift', u'incid', u'prompt', u'pesticid', u'review'] [u'state', u'approv', u'anti', u'terror', u'law'] [u'stoke', u'accus', u'lie'] [u'stoke', u'deni', u'fabric', u'evid'] [u'strong', u'gold', u'price', u'boost', u'charter', u'tower'] [u'studi', u'find', u'incom', u'earner', u'shut'] [u'sydney', u'squadron', u'wrap', u'kimberley', u'program'] [u'talk', u'baxter', u'health', u'handov'] [u'tate', u'defend', u'remov', u'religi', u'work'] [u'temperatur', u'forecast', u'soar', u'western'] [u'tent', u'embassi', u'consult', u'continu'] [u'terror', u'suspect', u'lawyer', u'avoid', u'secur', u'check'] [u'test', u'star', u'kick', u'domest', u'season'] [u'victorian', u'countri', u'hour', u'royal', u'melbourn'] [u'thousand', u'expect', u'flock', u'field', u'day'] [u'timbercorp', u'push', u'woodchip', u'export', u'option'] [u'toler', u'take', u'seat', u'citi', u'owner'] [u'mark', u'mcpharlin', u'judd', u'win', u'goal', u'gong'] [u'tougher', u'water', u'ban', u'possibl'] [u'soldier', u'kill', u'afghanistan'] [u'typhoon', u'blow', u'vietnam'] [u'union', u'reject', u'claim', u'campaign', u'hurrah'] [u'upgrad', u'risdon', u'prison', u'kitchen', u'open'] [u'anti', u'protest', u'cindi', u'sheehan', u'arrest'] [u'islam', u'scholar', u'prefer', u'imam', u'trainer'] [u'soldier', u'guilti', u'ghraib', u'abus', u'charg'] [u'wall', u'street', u'edg', u'higher'] [u'water', u'firm', u'defend', u'toxic', u'soil', u'treatment', u'plan'] [u'wilson', u'take', u'charg', u'firebird'] [u'wimmera', u'irrig', u'concern', u'pipelin', u'water'] [u'wine', u'industri', u'eye', u'indian', u'market'] [u'woodsid', u'reward', u'environment', u'excel'] [u'world', u'challeng', u'hohn'] [u'world', u'famous', u'author', u'head', u'north', u'workshop'] [u'zarqawi', u'right', u'hand', u'kill'] [u'ghraib', u'abus', u'england', u'jail'] [u'accc', u'take', u'court', u'action', u'today', u'tonight', u'stori'] [u'adelaid', u'hope', u'rech', u'play'] [u'exempt', u'equal', u'opportun', u'law'] [u'airport', u'secur', u'delay', u'worri', u'council'] [u'alleg', u'fake', u'psychiatrist', u'bash', u'jail'] [u'qaeda', u'death', u'major', u'blow', u'say'] [u'aqi', u'happi', u'bird', u'prepar'] [u'asbesto', u'fear', u'close', u'demolit', u'site'] [u'australia', u'allow', u'briton', u'extradit'] [u'australia', u'point', u'prove', u'pont'] [u'australian', u'wool', u'trade', u'target', u'anim', u'right'] [u'australia', u'skill', u'migrant', u'recruit', u'campaign'] [u'author', u'meet', u'indi', u'emerg', u'plan'] [u'avalon', u'airport', u'expans', u'pave', u'mildura'] [u'babi', u'galaxi', u'heavi'] [u'beazley', u'reinforc', u'telstra', u'sale', u'worri'] [u'biofuel', u'deal', u'reduc', u'relianc', u'petrol'] [u'biosecur', u'plan', u'aim', u'protect', u'grain', u'industri'] [u'birthrat', u'buck', u'year', u'downward', u'trend'] [u'blair', u'confer', u'speech', u'leav', u'labour', u'guess'] [u'blood', u'bond', u'unit', u'tiger', u'sheen'] [u'blundston', u'tramp', u'tasmania'] [u'bodi', u'sydney', u'hous', u'blaze'] [u'broadbridg', u'team', u'mat', u'tribut', u'thailand'] [u'build', u'compani', u'face', u'prosecut', u'worker'] [u'buri', u'carbon', u'dioxid', u'isnt', u'answer', u'green'] [u'bushland', u'search', u'miss', u'parapleg', u'begin'] [u'size', u'giant', u'squid', u'make', u'exclus', u'appear'] [u'cairn', u'record', u'state', u'highest', u'needl'] [u'call', u'sheep', u'diseas', u'vaccin', u'safer'] [u'chappel', u'ganguli', u'stay', u'privat'] [u'chemic', u'emerg', u'shut', u'narrabri', u'street'] [u'citi', u'collis', u'driver', u'court'] [u'civil', u'liberti', u'group', u'fear', u'anti', u'terror', u'law'] [u'coach', u'warn', u'croc', u'complac'] [u'coalit', u'move', u'closer', u'announc', u'tweed'] [u'comcar', u'take', u'action', u'soldier', u'heat', u'relat'] [u'concern', u'rais', u'coal', u'seam', u'drill', u'water'] [u'construct', u'activ', u'boost', u'job'] [u'coron', u'decis', u'deal', u'blow', u'kelli', u'claim'] [u'council', u'consid', u'appeal', u'compo', u'rule'] [u'council', u'offer', u'help', u'food', u'victim'] [u'council', u'reject', u'propos', u'site', u'civic', u'centr'] [u'council', u'reject', u'resid', u'road', u'claim'] [u'countrylink', u'price', u'rise', u'announc'] [u'countrylink', u'reform', u'packag', u'news'] [u'cowboy', u'enemi', u'territori'] [u'cowboy', u'leav', u'hype'] [u'cowboy', u'worri', u'past', u'loss', u'tiger'] [u'croc', u'urg', u'complac', u'bullet'] [u'crow', u'confid', u'win', u'draw', u'concess'] [u'cultur', u'differ', u'see', u'reason', u'poor'] [u'decis', u'urg', u'technic', u'colleg', u'approv'] [u'demon', u'sign'] [u'post', u'record', u'break', u'profit'] [u'driver', u'urg', u'protest', u'high', u'fuel', u'price'] [u'dutch', u'power', u'solar'] [u'educ', u'author', u'abandon', u'english', u'plan'] [u'educ', u'minist', u'avoid', u'educ', u'confrenc'] [u'egan', u'announc', u'retir'] [u'ellison', u'defend', u'handl', u'bali', u'case'] [u'employ', u'hire', u'intent', u'slump'] [u'endang', u'mala', u'reloc'] [u'continu', u'stop', u'log'] [u'plead', u'guilti', u'ranger', u'injuri', u'charg'] [u'evid', u'prove', u'bakhtiari', u'genuin'] [u'explos', u'factori', u'upgrad', u'begin', u'year'] [u'famili', u'debt', u'prompt', u'scheme'] [u'famili', u'deni', u'extradit', u'polit', u'motiv'] [u'famili', u'flee', u'burn', u'unit'] [u'fear', u'darl', u'river', u'debat', u'polaris'] [u'feder', u'govern', u'stand', u'beef'] [u'fed', u'inflat', u'remark', u'reassur', u'trader'] [u'damag', u'swan', u'hill', u'restaur'] [u'food', u'ineffici', u'studi'] [u'footbal', u'club', u'concern', u'nation', u'park', u'plan'] [u'footbal', u'club', u'hit', u'gardin', u'graffiti'] [u'footbal', u'coach', u'sentenc', u'abus', u'reduc'] [u'forb', u'rural', u'land', u'protect', u'board', u'reclassifi'] [u'foreign', u'fishermen', u'question', u'catch'] [u'forens', u'centr', u'delay', u'frustrat', u'court'] [u'fuel', u'price', u'fail', u'discourag', u'albani', u'visitor'] [u'fund', u'shortfal', u'forc', u'librari', u'closur'] [u'gallop', u'defend', u'night', u'final'] [u'gallop', u'wont', u'rule', u'queensland', u'grand', u'final'] [u'ambul', u'chopper', u'ambassador'] [u'gillard', u'put', u'econom', u'atop', u'labor', u'agenda'] [u'gillard', u'challeng', u'beazley'] [u'govern', u'happi', u'scarborough', u'high', u'rise', u'limit'] [u'great', u'lake', u'council', u'mayor', u'vote', u'continu'] [u'green', u'group', u'back', u'water', u'buy', u'murray'] [u'grower', u'fear', u'import', u'swamp'] [u'hand', u'tie', u'airport', u'levi', u'conlon'] [u'hawk', u'nuclear', u'wast', u'idea', u'reckless'] [u'hawk', u'urg', u'push', u'uranium', u'lift'] [u'health', u'concern', u'rais', u'steal', u'oyster'] [u'hospit', u'inquiri', u'find', u'govt'] [u'hospit', u'benefit', u'mango', u'mad'] [u'hous', u'plan', u'propon', u'long', u'wait'] [u'hreoc', u'tri', u'interven', u'promis', u'wife', u'case'] [u'huge', u'diamond', u'kimberley'] [u'husband', u'charg', u'year', u'murder'] [u'brogden', u'quit', u'polit'] [u'illeg', u'fish', u'quarantin', u'threat'] [u'indigen', u'group', u'sign', u'region', u'land', u'deal'] [u'irrig', u'grazier', u'urg', u'work'] [u'isra', u'raid', u'leav', u'gaza', u'citi', u'dark'] [u'johnson', u'pleas', u'retain', u'opposit', u'polic'] [u'kalamburu', u'celebr', u'store', u'reopen'] [u'kewel', u'comeback', u'trail'] [u'kiwi', u'bear', u'england', u'squad', u'place', u'wilko'] [u'korong', u'vale', u'drainag', u'replac'] [u'labor', u'seek', u'releas', u'bird', u'plan'] [u'land', u'council', u'continu', u'swamp', u'claim'] [u'liber', u'swear', u'springborg', u'talk'] [u'live', u'beef', u'export', u'outlook', u'good'] [u'local', u'govt', u'chief', u'criticis', u'break', u'hill', u'council'] [u'ignor', u'favour', u'cane', u'grower', u'vacc'] [u'mall', u'revamp', u'step', u'closer'] [u'believ', u'girlfriend', u'deserv', u'court'] [u'guilti', u'kill', u'brisban', u'worker'] [u'marsh', u'undergo', u'shoulder', u'surgeri'] [u'mayor', u'seek', u'build', u'task', u'forc'] [u'media', u'pour', u'scorn', u'chappel', u'ganguli', u'patch'] [u'middl', u'east', u'summit', u'postpon'] [u'west', u'policeman', u'name', u'best'] [u'miner', u'loss', u'market', u'flat'] [u'miss', u'bairnsdal'] [u'mitsubishi', u'futur', u'rest', u'model'] [u'mother', u'refus', u'bail', u'methadon', u'death', u'case'] [u'mourinho', u'liverpool'] [u'movi', u'goer', u'face', u'jail', u'secret', u'tap', u'film'] [u'focus', u'small', u'busi', u'portfolio'] [u'want', u'better', u'safeguard', u'state', u'timber'] [u'murder', u'case', u'mother'] [u'determin', u'shed', u'job'] [u'open', u'branch'] [u'nation', u'concern', u'countrylink', u'restructur'] [u'nativ', u'titl', u'tribun', u'talk', u'indigen', u'land'] [u'nelson', u'cancel', u'talk', u'save', u'polic', u'resourc'] [u'nelson', u'chicken', u'face', u'student'] [u'build', u'bring', u'cafe', u'shop', u'honeysuckl'] [u'christchurch', u'cathedr', u'build', u'ahead'] [u'committe', u'work', u'polic', u'indigen'] [u'fund', u'speed', u'bird', u'research'] [u'measur', u'help', u'defenc', u'famili'] [u'orlean', u'polic', u'chief', u'quit'] [u'rolleston', u'coal', u'open'] [u'school', u'plan', u'orang'] [u'disappoint', u'stand', u'trade', u'talk'] [u'ningaloo', u'fish', u'rule', u'finalis'] [u'expect', u'auslink', u'help', u'rail', u'freight'] [u'northern', u'support', u'help', u'lift', u'cowboy'] [u'islam', u'group', u'question', u'anti', u'terror', u'law'] [u'opposit', u'alarm', u'pilbara', u'technic', u'colleg'] [u'outcom', u'base', u'school', u'fail', u'children', u'nelson'] [u'pacif', u'island', u'consid', u'bulk', u'buy', u'fuel'] [u'pacif', u'nation', u'contain', u'servic'] [u'pair', u'remand', u'custodi', u'child', u'cruelti', u'charg'] [u'pakistan', u'confirm', u'bakhtiari', u'citizenship', u'vanston'] [u'panther', u'meet', u'consid', u'clubhous', u'sale'] [u'parent', u'encourag', u'teach', u'children', u'healthi', u'habit'] [u'park', u'cost', u'mount', u'canberra', u'driver'] [u'perform', u'group', u'teach', u'children', u'theatr', u'music'] [u'perth', u'royal', u'tri', u'eas', u'skill', u'shortag'] [u'peta', u'protest', u'bare', u'bum', u'mules'] [u'pip', u'remov', u'swansea', u'bridg', u'build'] [u'author', u'bird', u'alert'] [u'polic', u'boost', u'lismor', u'safeti'] [u'polic', u'beat', u'perman', u'vincent'] [u'polic', u'crack', u'tijuana', u'tint', u'car'] [u'polic', u'death', u'photo', u'leak', u'websit'] [u'polic', u'govt', u'group', u'tackl', u'troublesom', u'teen'] [u'polic', u'investig', u'corps', u'photo', u'leak'] [u'polic', u'probe', u'narrandera', u'bank', u'theft'] [u'polic', u'union', u'queri', u'resourc', u'airport', u'secur'] [u'polic', u'warn', u'fuel', u'theft', u'threat'] [u'polici', u'chang', u'meat', u'countri'] [u'port', u'augusta', u'triall', u'citi', u'wide', u'zone'] [u'prison', u'offic', u'clear', u'paedophil', u'transfer'] [u'dump', u'scorecard', u'rule'] [u'rail', u'network', u'mainten', u'govt'] [u'railway', u'confer', u'discuss', u'tourism', u'opportun'] [u'record', u'cotton', u'yield', u'northern', u'farm'] [u'replac', u'refuge', u'tribun', u'judg', u'inquiri', u'tell'] [u'report', u'identifi', u'lack', u'cruis', u'ship', u'facil'] [u'resid', u'seek', u'stop', u'lake', u'plan'] [u'resid', u'urg', u'step', u'protect'] [u'return', u'tradit', u'syllabus', u'card'] [u'road', u'rage', u'concern', u'illawarra', u'road'] [u'ruddock', u'reject', u'extremist', u'report'] [u'inspector', u'monitor', u'ammonium', u'nitrat'] [u'liber', u'back', u'hawk', u'nuclear', u'wast', u'push'] [u'search', u'miss', u'plane'] [u'shake', u'council', u'conduct', u'committe'] [u'shell', u'boss', u'blame', u'fuel', u'price', u'global', u'pressur'] [u'good', u'see', u'soften', u'market'] [u'charg', u'mother', u'murder'] [u'guilti', u'assault', u'judg'] [u'spring', u'carniv', u'contend'] [u'stoke', u'unawar', u'crucial', u'present'] [u'storm', u'leav', u'crop', u'damag'] [u'storm', u'wreak', u'havoc', u'melbourn', u'ballarat'] [u'strict', u'secur', u'plan', u'rocki', u'parliamentari'] [u'suicid', u'bomber', u'kill', u'iraqi', u'armi', u'recruit'] [u'surgeon', u'boycott', u'surgeri', u'failur'] [u'suspect', u'toothfish', u'poacher', u'bail'] [u'suspend', u'vasil', u'miss', u'spring', u'carniv'] [u'swan', u'jumper', u'grab'] [u'tare', u'council', u'econom', u'studi', u'lure'] [u'health', u'worker', u'strike'] [u'team', u'spirit', u'super', u'seri', u'say', u'world'] [u'teen', u'die', u'east', u'gippsland', u'crash'] [u'teen', u'jail', u'groot', u'eylandt', u'machet', u'incid'] [u'telstra', u'plan', u'countri', u'whing', u'opposit'] [u'tender', u'open', u'kununurra', u'child', u'care', u'centr'] [u'dead', u'afghan', u'bomb', u'blast'] [u'tiger', u'shrug', u'pressur'] [u'timber', u'administr', u'job', u'doubt'] [u'timber', u'worker', u'meet', u'concern'] [u'tourism', u'chief', u'fear', u'patel', u'scandal', u'hurt'] [u'trader', u'expect', u'reopen', u'scare'] [u'tsunami', u'impact', u'scrutini'] [u'charg', u'broom', u'apart', u'robberi'] [u'typhoon', u'damrey', u'toll', u'rise'] [u'offici', u'threaten', u'halt', u'darfur', u'oper'] [u'union', u'fight', u'secur', u'nestl', u'job'] [u'union', u'urg', u'iluka', u'worker', u'return', u'work'] [u'union', u'worri', u'asbesto', u'handl', u'demolit'] [u'western', u'greyhound', u'track', u'merg'] [u'winegrow', u'consid', u'legal', u'action', u'payment'] [u'win', u'barca', u'juve', u'bayern', u'arsenal'] [u'wollondilli', u'resid', u'report', u'crime'] [u'women', u'dont', u'know', u'breast', u'cancer', u'basic', u'survey', u'find'] [u'woodbin', u'worker', u'continu', u'industri', u'action'] [u'world', u'price', u'blame'] [u'abattoir', u'expans', u'get', u'condit', u'approv'] [u'govt', u'accus', u'politicis', u'floriad'] [u'advis', u'updat', u'medicin'] [u'afghanistan', u'fear', u'iraq', u'style', u'milit', u'attack'] [u'afghan', u'offici', u'investig', u'suicid', u'blast'] [u'agforc', u'unhappi', u'wild', u'river', u'legisl'] [u'aker', u'join', u'power', u'stay', u'lion'] [u'weigh', u'option', u'brogden', u'seat'] [u'comeback', u'seve'] [u'arctic', u'melt', u'away'] [u'artefact', u'return', u'indigen', u'council'] [u'aust', u'strengthen', u'trade', u'tie', u'indonesia'] [u'aust', u'withdraw', u'help', u'bali', u'case'] [u'bali', u'face', u'court', u'week'] [u'beazley', u'defend', u'challeng'] [u'beef', u'associ', u'warn', u'infect'] [u'berri', u'charg', u'child', u'rape'] [u'crowd', u'honour', u'fall', u'polic'] [u'rise', u'tip', u'mackay', u'popul'] [u'boat', u'factori', u'damag', u'bibra', u'lake'] [u'bodi', u'locat', u'plane', u'crash', u'site'] [u'brampton', u'killer', u'seek', u'pardon'] [u'brazilian', u'look', u'relax', u'train', u'shoot'] [u'break', u'hill', u'host', u'dementia', u'workshop'] [u'broom', u'consid', u'growth', u'report'] [u'bundaberg', u'administr', u'sick', u'face', u'inquiri'] [u'caltex', u'warn', u'biofuel', u'bring', u'price'] [u'cancer', u'fund', u'say', u'ban', u'help', u'smoker', u'break', u'habit'] [u'canegrow', u'welcom', u'rise', u'sugar', u'price'] [u'carniv', u'flower', u'fail', u'return', u'profit'] [u'vandal', u'prompt', u'polic', u'warn'] [u'ceremoni', u'honour', u'polic', u'kill', u'line', u'duti'] [u'chiltern', u'station', u'theft', u'ring', u'alarm', u'bell'] [u'china', u'lay', u'bird', u'plan'] [u'coach', u'suspens', u'wont', u'hamper', u'railway', u'plan'] [u'coalit', u'laud', u'parliamentari', u'debut'] [u'construct', u'crackdown', u'delay'] [u'consum', u'group', u'seek', u'power', u'price', u'pledg'] [u'corrupt', u'rampant', u'chines', u'govt', u'report'] [u'cosgrov', u'unfit', u'play', u'redback'] [u'council', u'get', u'aboard', u'trial', u'plan'] [u'council', u'help', u'affect', u'communiti', u'servic'] [u'coupl', u'cling', u'boat', u'south', u'coast', u'lake'] [u'court', u'order', u'mental', u'health', u'check', u'accus'] [u'cowboy', u'expect', u'support', u'continu', u'enemi'] [u'crown', u'seek', u'doubl', u'convict', u'murder'] [u'custom', u'confisc', u'perform', u'prop'] [u'custom', u'fire', u'shot', u'illeg', u'fish', u'pursuit'] [u'custom', u'use', u'machin', u'illeg', u'boat'] [u'dampier', u'highway', u'feedback', u'flow'] [u'davi', u'draw', u'set', u'hewitt', u'feder', u'showdown'] [u'death', u'spark', u'better', u'educ', u'rock'] [u'design', u'say', u'robert', u'diaz', u'resembl', u'ladi'] [u'develop', u'flag', u'golf', u'club', u'hous', u'plan'] [u'develop', u'claim', u'strong', u'support', u'rothburi'] [u'diver', u'kill', u'suspect', u'croc', u'attack'] [u'diver', u'think', u'kill', u'crocodil'] [u'dog', u'eagleton'] [u'dont', u'panic', u'bird'] [u'doubl', u'murder', u'trial', u'continu', u'burni'] [u'play', u'prospect', u'success', u'hilton'] [u'driver', u'caution', u'urg', u'road', u'reopen', u'flood'] [u'educ', u'warn', u'rank', u'stifl', u'learn'] [u'electr', u'blanket', u'blame', u'disabl', u'group', u'home'] [u'emerg', u'blow', u'hospit', u'elect', u'surgeri', u'list'] [u'emerg', u'crew', u'busi', u'storm', u'batter', u'central'] [u'emerg', u'servic', u'declar', u'mock', u'disast', u'exercis'] [u'english', u'tactic', u'beat', u'australia', u'pollock'] [u'eriksson', u'dismiss', u'player', u'revolt', u'talk'] [u'chanc', u'finalis', u'doha', u'deal'] [u'explos', u'plant', u'upgrad', u'await', u'feder'] [u'export', u'suffer', u'soar', u'diesel', u'price'] [u'wolv', u'mascot', u'face', u'charg'] [u'fake', u'stone', u'take', u'mick'] [u'fatal', u'granni', u'flat', u'investig'] [u'firm', u'look', u'tackl', u'coal', u'seam', u'drill', u'worri'] [u'flash', u'flood', u'cut', u'town'] [u'pandem', u'inevit'] [u'forb', u'industri', u'park'] [u'teacher', u'jail', u'child', u'porn'] [u'forum', u'address', u'refug', u'manag', u'problem'] [u'kill', u'baghdad', u'attack'] [u'kill', u'morocco', u'spain', u'border', u'crush'] [u'gavaskar', u'defend', u'princ', u'charl', u'ganguli'] [u'genet', u'disord', u'claim', u'rais', u'murder', u'case'] [u'giant', u'squid', u'catch', u'film'] [u'gillard', u'sing', u'labor', u'song', u'sheet', u'beazley'] [u'power', u'asic', u'sharehold'] [u'goalless', u'deadlock', u'english', u'champion', u'leagu'] [u'govt', u'back', u'health', u'report', u'find'] [u'govt', u'criticis', u'croc', u'remov', u'refus'] [u'govt', u'doesnt', u'regret', u'handl', u'bali', u'case'] [u'govt', u'offer', u'oliv', u'branch', u'small', u'busi'] [u'govt', u'urg', u'offer', u'electr', u'deregul'] [u'green', u'group', u'reject', u'wild', u'river', u'legisl', u'concern'] [u'gulf', u'group', u'highlight', u'health', u'servic', u'imbal'] [u'hawk', u'nuclear', u'wast', u'idea', u'merit', u'nelson'] [u'hayden', u'go', u'pont'] [u'heavi', u'rain', u'prompt', u'flood', u'watch'] [u'heritag', u'council', u'chief', u'question', u'futur'] [u'hewitt', u'feder', u'haa', u'test', u'thailand'] [u'high', u'court', u'reject', u'complaint'] [u'high', u'petrol', u'price', u'prompt', u'rise', u'fuel', u'theft'] [u'honda', u'disqualifi', u'coron', u'fail'] [u'honey', u'prize', u'queensland', u'apiarist'] [u'hope', u'weather', u'chang', u'eas', u'danger'] [u'howard', u'offer', u'legal', u'sack', u'worker'] [u'human', u'bone', u'near', u'croc', u'attack', u'site'] [u'hundr', u'bodi', u'unidentifi', u'katrina'] [u'iluka', u'worker', u'agre', u'strike'] [u'injur', u'pair', u'expect', u'train', u'light', u'cowboy'] [u'move', u'resolv', u'jail', u'disput'] [u'vacanc', u'drop'] [u'jockey', u'nikol', u'fight'] [u'kumbl', u'warn', u'australia', u'backlash'] [u'labor', u'eye', u'pacif', u'island', u'worker'] [u'labor', u'unveil', u'skill', u'school', u'plan'] [u'labour', u'sorri', u'eject', u'octogenarian'] [u'tomorrow', u'sack', u'nestl', u'worker'] [u'lennon', u'lyric', u'prove', u'snooz', u'christi'] [u'lion', u'head', u'carrara'] [u'lismor', u'mayor', u'urg', u'sensibl', u'approach', u'public'] [u'local', u'church', u'join', u'internet'] [u'local', u'govt', u'fear', u'rail', u'contain', u'servic'] [u'magistr', u'dismiss', u'charg', u'bomb', u'threat', u'case'] [u'charg', u'armidal', u'assault'] [u'die', u'south', u'east', u'crash'] [u'plead', u'guilti', u'child', u'porn', u'charg'] [u'market', u'surg', u'record', u'close'] [u'mass', u'grave', u'unearth', u'afghanistan'] [u'mayor', u'upbeat', u'develop', u'process'] [u'migrant', u'carri', u'passport', u'detent', u'fear'] [u'militari', u'pursu', u'nigerian', u'hostag', u'taker'] [u'minimum', u'year', u'jail', u'schoolgirl', u'killer'] [u'minist', u'refer', u'coast', u'doctor', u'case', u'health', u'probe'] [u'miss', u'plane', u'search', u'continu'] [u'parent', u'involv', u'stop', u'school', u'drift'] [u'rock', u'throw', u'adelaid', u'traffic'] [u'mose', u'save', u'venic'] [u'motor', u'group', u'cast', u'doubt', u'biofuel', u'push'] [u'seek', u'improv', u'develop', u'decis'] [u'highlight', u'region', u'airport', u'secur', u'worri'] [u'nake', u'road', u'accid', u'case', u'puzzl', u'polic'] [u'nasa', u'team', u'googl', u'space', u'research'] [u'nation', u'accredit', u'urg', u'oversea', u'doctor'] [u'nativ', u'plant', u'stop', u'termit', u'munch'] [u'power', u'meter', u'offer', u'choic'] [u'asian', u'artwork', u'unveil'] [u'liaison', u'offic', u'indigen', u'forest'] [u'mayor', u'wellington'] [u'drought', u'summit', u'focus', u'support'] [u'orlean', u'allow', u'resid', u'home'] [u'regul', u'provid', u'clariti'] [u'bird', u'threat', u'illeg', u'fish', u'boat'] [u'grand', u'finalist', u'share', u'breakfast'] [u'reluct', u'join', u'auslink', u'deal'] [u'ocean', u'acid', u'scientist'] [u'south', u'australian', u'live', u'poverti'] [u'year', u'west', u'coast', u'banfield'] [u'opposit', u'attack', u'paedophil', u'transfer', u'report'] [u'opposit', u'doubt', u'govt', u'wast', u'dump', u'monitor', u'plan'] [u'opposit', u'fear', u'region', u'rego', u'subsidi'] [u'survey', u'north', u'driver', u'drive'] [u'pacif', u'nation', u'warn', u'fuel', u'rail'] [u'parmalat', u'fraud', u'trail', u'adjourn'] [u'petit', u'question', u'australia', u'extradit', u'treati'] [u'philippin', u'prepar', u'bird', u'outbreak'] [u'deni', u'legal', u'help', u'concess'] [u'polic', u'hunt', u'conveni', u'store', u'knife', u'bandit'] [u'polic', u'probe', u'mudge', u'infant', u'death'] [u'polic', u'wont', u'merci', u'offend', u'motorist'] [u'poor', u'govern', u'cost', u'pacif', u'island', u'billion'] [u'princess', u'ann', u'meet', u'patient'] [u'process', u'meat', u'eye', u'fall', u'live', u'export'] [u'produc', u'high', u'hop', u'joh', u'chees'] [u'public', u'quiz', u'emerg', u'prioriti'] [u'public', u'urg', u'bushfir', u'readi'] [u'health', u'deputi', u'admit', u'hospit', u'report', u'mislead'] [u'quinn', u'moot', u'zonal', u'daylight', u'save', u'trial'] [u'rain', u'bring', u'parch', u'waterway', u'life'] [u'remembr', u'servic', u'rais', u'awar', u'polic'] [u'report', u'find', u'microwav', u'cancer', u'treatment', u'unproven'] [u'reserv', u'bank', u'downplay', u'threat', u'world', u'economi'] [u'road', u'rage', u'rev', u'tasmania'] [u'rural', u'council', u'feel', u'pressur', u'industri', u'growth'] [u'santo', u'tell'] [u'urg', u'water', u'buy', u'help', u'river', u'murray'] [u'scientist', u'flabbergast', u'arctic', u'melt'] [u'scientist', u'perfect', u'sandcastl', u'recip'] [u'sculli', u'reject', u'polic', u'wollondilli', u'claim'] [u'searcher', u'bodi', u'north', u'coast', u'nation', u'park'] [u'secur', u'justifi', u'discrimin', u'exempt'] [u'finish', u'storm', u'clean'] [u'seven', u'sit', u'design', u'aborigin', u'burial', u'ground'] [u'shire', u'urg', u'biosolid'] [u'shop', u'centr', u'plan', u'approach', u'worri', u'council'] [u'skill', u'migrat', u'wont', u'help', u'long', u'term', u'say', u'beazley'] [u'sniffer', u'dog', u'check', u'chines', u'sugar', u'ship'] [u'snowi', u'mountain', u'pipelin', u'shire', u'agenda'] [u'soccer', u'labor', u'club', u'disput', u'civic'] [u'son', u'like', u'rort', u'parent'] [u'state', u'fund', u'terror', u'communiti', u'impact', u'studi'] [u'state', u'join', u'forc', u'fight', u'indigen', u'communiti'] [u'steer', u'clear', u'indonesian', u'protest', u'dfat', u'warn'] [u'steer', u'break', u'hill', u'deputi', u'mayor'] [u'struggl', u'oyster', u'farmer', u'rat', u'repriev'] [u'studi', u'examin', u'social', u'impact', u'muswellbrook', u'mine'] [u'sydney', u'airport', u'trial', u'biometr'] [u'talk', u'focus', u'road', u'toll', u'reduct'] [u'govt', u'defend', u'primari', u'school', u'standard'] [u'taxman', u'allow', u'witchcraft', u'write'] [u'tcci', u'urg', u'best', u'technolog', u'pulp'] [u'terror', u'legisl', u'hit', u'mildura', u'airport', u'coffer'] [u'thailand', u'ask', u'victim', u'famili', u'tsunami'] [u'alic', u'get', u'ax'] [u'thirst', u'rise', u'temperatur'] [u'tiger', u'respect', u'danger', u'cowboy'] [u'timber', u'worker', u'meet', u'loss'] [u'republican', u'face', u'crimin', u'charg'] [u'tribut', u'pay', u'fall', u'polic'] [u'truck', u'crash', u'clean', u'continu'] [u'truck', u'driver', u'jail', u'fatal', u'crash'] [u'truck', u'driver', u'jail', u'mass', u'pile'] [u'umbakumba', u'nurs', u'seek', u'safeti', u'guarante'] [u'union', u'govt', u'negoti', u'health', u'deal'] [u'union', u'target', u'outdoor', u'labour', u'contract'] [u'massacr', u'report', u'rais', u'anvil', u'alleg'] [u'general', u'cast', u'doubt', u'iraq', u'pullout'] [u'market', u'steadi', u'hit', u'record'] [u'politician', u'seek', u'sanction', u'japan'] [u'victori', u'marin', u'vulner'] [u'treasur', u'push', u'relax', u'clone', u'law'] [u'warn', u'appeal', u'privaci', u'rebuild', u'marriag'] [u'water', u'pipelin', u'plan', u'get', u'status', u'boost'] [u'western', u'mark', u'polic', u'remembr'] [u'lose', u'year', u'tiger', u'sheen'] [u'woman', u'condit', u'hard', u'diagnos', u'coron'] [u'workcov', u'union', u'build', u'death', u'prosecut'] [u'work', u'start', u'year', u'gladston', u'toowoomba'] [u'seven', u'mile', u'beach', u'develop', u'propos'] [u'equip', u'upgrad', u'riverland', u'hospit'] [u'activist', u'deni', u'spiderman', u'stunt', u'nuisanc'] [u'algerian', u'approv', u'partial', u'amnesti', u'rebel'] [u'alic', u'spring', u'host', u'octob', u'busi', u'month', u'launch'] [u'urg', u'effort', u'boost', u'region', u'specialist'] [u'american', u'tourist', u'prepar', u'space', u'launch'] [u'anger', u'minist', u'ban', u'dolphin', u'feed'] [u'anger', u'princ', u'highway', u'exclud', u'auslink'] [u'take', u'dive'] [u'atsb', u'probe', u'fatal', u'light', u'plane', u'crash'] [u'auction', u'proceed', u'help', u'griev', u'famili'] [u'aussi', u'jone', u'end', u'footbal', u'career'] [u'aust', u'pilot', u'blame', u'poor', u'land', u'marit', u'issu'] [u'backpack', u'killer', u'seek', u'high', u'court', u'appeal'] [u'bead', u'seek', u'papuan', u'dancer', u'seizur'] [u'bidder', u'line', u'beef', u'processor'] [u'bird', u'pandem', u'kill', u'warn'] [u'birney', u'opt', u'uranium', u'debat'] [u'recov', u'near', u'drown'] [u'brack', u'launch', u'bendigo', u'year', u'plan'] [u'brag', u'land', u'hooker', u'jail'] [u'britain', u'stamp', u'ash'] [u'broadbridg', u'rememb', u'thailand'] [u'govern', u'improv', u'drought'] [u'local', u'firm', u'bundaberg'] [u'birdsvill', u'health', u'clinic', u'fund'] [u'toowoomba', u'includ', u'daylight'] [u'call', u'govt', u'fund', u'mildura', u'airport'] [u'canadian', u'provinc', u'clear', u'tobacco', u'giant'] [u'cancer', u'group', u'public', u'fund'] [u'cane', u'field', u'fall', u'silent', u'grand', u'final'] [u'capot', u'long', u'lose', u'novel', u'publish'] [u'bomb', u'hit', u'market', u'hillah'] [u'recommend', u'polic', u'power', u'combat'] [u'coast', u'secur', u'top', u'howard', u'gallop', u'talk', u'agenda'] [u'cole', u'recal', u'tropic', u'muesli'] [u'communiti', u'group', u'seek', u'holiday', u'let', u'restrict'] [u'communiti', u'want', u'refug', u'control'] [u'communiti', u'wish', u'local', u'best'] [u'compani', u'consid', u'reloc', u'maryborough'] [u'compani', u'buoy', u'hotter', u'rock'] [u'consum', u'ignor', u'fuel', u'price', u'hike'] [u'consum', u'urg', u'avoid', u'fenc', u'contractor'] [u'coron', u'recommend', u'train', u'speed', u'review', u'death', u'site'] [u'cotton', u'harvest', u'seek', u'higher', u'incom'] [u'council', u'consid', u'wind', u'farm', u'plan'] [u'councillor', u'question', u'code', u'conduct', u'scheme'] [u'council', u'mackay', u'sugar', u'sign', u'water', u'agreement'] [u'council', u'rat', u'today'] [u'court', u'dismiss', u'east', u'point', u'project', u'appeal'] [u'court', u'rule', u'koizumi', u'shrine', u'visit', u'violat'] [u'croc', u'attack', u'victim', u'name'] [u'damag', u'award', u'shop', u'centr', u'fall', u'case'] [u'death', u'prompt', u'crocodil', u'cull'] [u'debat', u'continu', u'finland', u'pulp', u'tour'] [u'demon', u'open', u'broadbridg', u'memori', u'school'] [u'denmark', u'shire', u'play', u'land', u'purchas', u'fear'] [u'dredg', u'trial', u'impress', u'port', u'melbourn'] [u'driver', u'warn', u'long', u'weekend', u'doubl', u'demerit'] [u'drug', u'accus', u'face', u'court'] [u'dvds', u'lure', u'student', u'miner', u'cours'] [u'edith', u'cross', u'overlook', u'upgrad'] [u'elder', u'patient', u'increas', u'countri', u'workload'] [u'everton', u'crash', u'bolton', u'celebr', u'uefa'] [u'fear', u'rural', u'ambul', u'centr', u'close'] [u'fiji', u'militari', u'chief', u'assert', u'right', u'polit'] [u'finland', u'bird', u'drug', u'entir', u'popul'] [u'water', u'festiv', u'kick'] [u'fitzi', u'plan', u'feder', u'play', u'davi'] [u'women', u'famili', u'hold', u'drug', u'raid'] [u'flintoff', u'itch', u'australia'] [u'flip', u'toad', u'spray', u'poison', u'execution'] [u'forc', u'stand', u'offic', u'warn', u'shoot'] [u'beef', u'expo', u'chief', u'say', u'event', u'leav', u'rocki'] [u'freddi', u'itch', u'australia'] [u'fuel', u'price', u'drop', u'accc', u'launch', u'snapshot'] [u'fund', u'offer', u'local', u'sportswomen'] [u'gold', u'coast', u'airport', u'record', u'strong', u'passeng', u'growth'] [u'govt', u'defend', u'healthcar', u'cost', u'surg'] [u'govt', u'fail', u'deliv', u'technic', u'colleg', u'promis'] [u'govt', u'guilti', u'unfair', u'dismiss', u'judg', u'say'] [u'govt', u'keep', u'polic', u'forc', u'promis', u'minist'] [u'govt', u'reject', u'opposit', u'wast', u'dump', u'claim'] [u'govt', u'help', u'fiji', u'elect', u'cost'] [u'govt', u'withdraw', u'support', u'rudd', u'indonesia', u'trip'] [u'hawk', u'right', u'nuclear', u'wast', u'spokesman'] [u'hewitt', u'pull', u'bangkok'] [u'high', u'profil', u'councillor', u'wont', u'contest', u'elect'] [u'holiday', u'let', u'byron', u'continu'] [u'home', u'renov', u'warn', u'asbesto', u'hazard'] [u'hope', u'auslink', u'deal', u'secur', u'myall'] [u'hope', u'power', u'station', u'attract', u'industri'] [u'horsham', u'aerodrom', u'readi', u'melbourn', u'flight'] [u'hospit', u'fin', u'doubl', u'dip'] [u'hundr', u'flee', u'bushfir'] [u'illeg', u'fisher', u'net', u'fine'] [u'iluka', u'resourc', u'consid', u'mine', u'method'] [u'increas', u'level', u'water', u'restrict'] [u'industri', u'develop', u'site', u'appropri'] [u'investig', u'launch', u'prison', u'assault'] [u'iraqi', u'secur', u'capabl', u'shrink', u'general', u'say'] [u'iri', u'remain', u'research', u'compani', u'say', u'outgo'] [u'irrig', u'group', u'label', u'murray', u'river', u'plan', u'prematur'] [u'odysseuss', u'ithaca', u'peninsula'] [u'jone', u'reappoint', u'spark', u'port', u'arthur', u'author'] [u'kalgoorli', u'paint', u'ideal', u'adventur', u'holiday', u'spot'] [u'kean', u'career', u'celtic'] [u'killer', u'croc', u'ranger', u'say'] [u'king', u'snap', u'crosswhit'] [u'labor', u'warn', u'health', u'spend', u'push', u'tax'] [u'nestl', u'tongala', u'worker'] [u'launceston', u'secur', u'game'] [u'communiti', u'choos', u'mayor', u'councillor', u'say'] [u'peopl', u'decid', u'year', u'term', u'labor', u'say'] [u'lismor', u'council', u'hope', u'secur', u'airport'] [u'littbarski', u'expect', u'york'] [u'liverpool', u'offer', u'fresh', u'hope', u'chase', u'pack'] [u'local', u'trio', u'join', u'health', u'advisori', u'council'] [u'macdonald', u'keep', u'marin', u'park', u'propos'] [u'magistr', u'clamp', u'drink', u'driver'] [u'child', u'investig', u'public', u'opposit'] [u'slash', u'time', u'robberi'] [u'extradit', u'face', u'murder', u'charg'] [u'face', u'court', u'accus', u'bash', u'partner'] [u'mayor', u'faze', u'investig'] [u'mayor', u'unhappi', u'sawmil', u'closur'] [u'melbourn', u'council', u'consid', u'advertis'] [u'mental', u'health', u'ambassador', u'assist', u'teen'] [u'merrick', u'predict', u'open', u'victori', u'marin', u'clash'] [u'methadon', u'murder', u'suspect', u'make', u'assault', u'claim'] [u'militari', u'machin', u'display', u'tamworth'] [u'militia', u'attack', u'darfur', u'camp'] [u'milk', u'price', u'increas', u'begin', u'warn'] [u'milk', u'price', u'rise', u'sound', u'inflat', u'alert'] [u'plan', u'suffer', u'setback'] [u'miner', u'abandon', u'dampier', u'peninsula', u'plant', u'plan'] [u'mine', u'traffic', u'worri', u'local'] [u'ministeri', u'council', u'reject', u'water', u'buy', u'murray'] [u'minist', u'favour', u'year', u'parliamentari', u'term'] [u'miss', u'trio', u'safe'] [u'call', u'public', u'meet', u'toxic', u'wast'] [u'deni', u'make', u'council', u'complaint'] [u'seek', u'chang', u'govt', u'apprenticeship', u'scheme'] [u'lead', u'open'] [u'legal', u'challeng', u'possibl', u'bridg', u'saga'] [u'mental', u'health', u'fund', u'token', u'effort', u'opposit'] [u'review', u'insid', u'trade', u'convict', u'rivkin'] [u'north', u'west', u'mark', u'polic', u'remembr'] [u'fan', u'rous', u'final', u'team'] [u'canola', u'sorghum', u'malt', u'barley', u'market', u'deregul'] [u'govt', u'stand', u'fund', u'ax', u'alic'] [u'nurs', u'claim', u'mental', u'health', u'servic'] [u'time', u'report', u'free', u'jail'] [u'opera', u'hous', u'world', u'heritag', u'list'] [u'opposit', u'urg', u'govt', u'rethink', u'distanc'] [u'oyster', u'produc', u'want', u'cost', u'water', u'monitor'] [u'pair', u'commit', u'trial', u'loss'] [u'permit', u'issu', u'sacr', u'papuan', u'drum'] [u'probe', u'uncov', u'polic', u'drug'] [u'pietersen', u'defend', u'warn', u'privaci'] [u'plastic', u'surgeon', u'gather', u'gold', u'coast'] [u'plea', u'domest', u'violenc', u'educ'] [u'respons', u'north', u'west', u'secur', u'issu', u'gallop'] [u'visit'] [u'polic', u'fatal', u'free', u'long', u'weekend'] [u'polic', u'tough', u'drink', u'danger', u'driver'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'silent', u'call', u'stun', u'trial'] [u'polic', u'target', u'danger', u'driver', u'long'] [u'polic', u'trace', u'movement', u'coupl', u'dead'] [u'polic', u'warn', u'long', u'weekend', u'doubl', u'demerit'] [u'policewoman', u'hurt', u'town', u'camp', u'incid'] [u'pont', u'hit', u'chappelli'] [u'pont', u'rubbish', u'chappel', u'lara', u'cautious'] [u'port', u'hinchinbrook', u'develop', u'plan', u'scrap'] [u'price', u'hike', u'prompt'] [u'prison', u'guard', u'lift', u'work', u'ban'] [u'psychiatr', u'patient', u'guilti', u'intent'] [u'psych', u'ward', u'secur', u'mental', u'health', u'group'] [u'smoke', u'restrict', u'increas'] [u'question', u'rais', u'passport', u'technolog'] [u'rain', u'water', u'tank', u'compulsori', u'hous'] [u'recent', u'suicid', u'lead', u'renew', u'mental', u'health'] [u'red', u'farewel', u'ballymor'] [u'refineri', u'evacu', u'leak', u'lethal'] [u'report', u'seek', u'reform', u'health'] [u'research', u'consid', u'salin', u'crisi'] [u'resid', u'pass', u'confid', u'vote', u'renmark'] [u'retail', u'number', u'unlik', u'affect', u'rat'] [u'retail', u'sale', u'defi', u'petrol', u'price', u'pressur'] [u'rock', u'fall', u'close', u'ainsli', u'summit', u'road'] [u'rooney', u'reunion'] [u'round', u'leagu', u'close'] [u'ruddock', u'tell', u'contempt', u'trial', u'plan', u'chang'] [u'safe', u'ocean', u'swim', u'teach', u'outback'] [u'govt', u'address', u'skill', u'shortag', u'crisi'] [u'salvo', u'consid', u'hobart', u'refug', u'expans'] [u'pair', u'shine', u'draft', u'camp'] [u'sar', u'probabl', u'origin', u'bat'] [u'scientif', u'studi', u'focus', u'flinder', u'bushfir'] [u'search', u'lose', u'crevass'] [u'sharehold', u'unhappi', u'cooper', u'famili', u'approach'] [u'shoalhaven', u'look', u'imag', u'overhaul'] [u'shoot', u'friend', u'end', u'year', u'jail', u'term'] [u'smuggl', u'fossil', u'heritag', u'hand', u'china'] [u'snowi', u'pipe', u'plan', u'concern'] [u'south', u'east', u'hospit', u'fund', u'boost'] [u'spain', u'promis', u'inquiri', u'moroccan', u'death'] [u'state', u'build', u'standard', u'overrid', u'local', u'cod'] [u'stop', u'reviv', u'surviv', u'long', u'weekend'] [u'substanc', u'abus', u'tackl', u'tasmania'] [u'swan', u'bring', u'sydney', u'halt'] [u'sydney', u'standstil', u'swan', u'victori', u'parad'] [u'talisman', u'mine', u'releas', u'share'] [u'teen', u'sentenc', u'fatal', u'bash', u'rule', u'appropri'] [u'terror', u'challeng', u'face', u'communiti', u'aspinal', u'say'] [u'tiger', u'wait', u'richard'] [u'turtl', u'conserv', u'project', u'expand'] [u'charg', u'make', u'airport', u'threat'] [u'jail', u'feed', u'south', u'african', u'lion'] [u'polic', u'rescu', u'traffic', u'women'] [u'unregul', u'ultrasound', u'clinic', u'caus', u'concern'] [u'appoint', u'chief', u'justic'] [u'chief', u'flag', u'greater', u'intellig', u'share'] [u'dairi', u'farmer', u'expect', u'milk', u'price', u'rise'] [u'victori', u'come', u'sink', u'marin'] [u'dairi', u'farmer', u'push', u'price', u'rise'] [u'wall', u'confid', u'jobless', u'claim', u'drop'] [u'warn', u'shot', u'fire', u'fuel', u'price', u'protest'] [u'word', u'erupt', u'highway', u'fund'] [u'weapon', u'cach', u'sydney', u'raid'] [u'play', u'possibl', u'bird', u'toll'] [u'wildcat', u'pirat', u'thriller'] [u'wild', u'gorilla', u'see', u'tool', u'time'] [u'wild', u'river', u'legisl', u'disast', u'cape'] [u'wilkinson', u'eye', u'latest', u'comeback'] [u'wind', u'farm', u'guidelin', u'releas'] [u'wnbl', u'start', u'tonight'] [u'woodi', u'reveal', u'lleyton', u'sensit'] [u'year', u'lotteri', u'jackpot', u'remain', u'unclaim'] [u'home', u'readi', u'aceh', u'tsunami', u'victim'] [u'forc', u'scar', u'santa', u'reindeer', u'death'] [u'atkinson', u'make', u'solid', u'start', u'japan'] [u'bali', u'blast', u'target', u'tourist', u'area'] [u'beatti', u'defend', u'decis', u'withhold', u'forster', u'report'] [u'bell', u'slalom', u'histori'] [u'blast', u'bali', u'tourist', u'area'] [u'boost', u'tiger', u'richard', u'clear'] [u'brain', u'damag', u'imprison', u'crime'] [u'bulleen', u'adelaid', u'open', u'wnbl', u'season', u'win'] [u'cambodian', u'polic', u'close', u'khmer', u'roug', u'cafe'] [u'campbel', u'win', u'alic', u'spring', u'elect'] [u'capirossi', u'take', u'pole', u'qatar', u'motogp'] [u'child', u'care', u'cost', u'spiral'] [u'china', u'xinjiang', u'mark', u'anniversari'] [u'civic', u'revamp', u'includ', u'stop', u'upgrad', u'green'] [u'clark', u'close', u'form', u'govern'] [u'clark', u'win', u'poll'] [u'clark', u'win', u'term'] [u'confucius', u'movi', u'show', u'onlin'] [u'cousin', u'award', u'eagl', u'best', u'fairest'] [u'danish', u'soldier', u'kill', u'bomb', u'iraq'] [u'day', u'week', u'identifi', u'human', u'bird', u'strain'] [u'congo', u'warn', u'militia'] [u'find', u'worri', u'fraud', u'afghan', u'poll'] [u'faith', u'join', u'forc', u'peac', u'confer'] [u'govt', u'blame', u'child', u'care', u'cost'] [u'firefight', u'contain', u'blaze'] [u'flintoff', u'leav', u'practic', u'game'] [u'forc', u'launch', u'attack', u'western', u'iraq'] [u'offici', u'criticis', u'black', u'abort'] [u'fuel', u'price', u'queensland', u'spend'] [u'gillespi', u'renew', u'bowl', u'coach'] [u'govt', u'urg', u'deal', u'high', u'child', u'care', u'cost'] [u'govt', u'warn', u'busi', u'rise', u'price'] [u'guantanamo', u'detaine', u'continu', u'hunger', u'strike'] [u'homeless', u'servic', u'doubt', u'fund'] [u'hundr', u'ralli', u'indonesia', u'fuel', u'price', u'hike'] [u'india', u'enceph', u'toll', u'near'] [u'indonesian', u'boat', u'secur', u'alleg', u'board'] [u'indonesian', u'fishermen', u'board', u'aust', u'fish', u'boat'] [u'interview', u'jason', u'gillespi'] [u'interview', u'matthew', u'hayden'] [u'investig', u'light', u'plane', u'accid'] [u'iron', u'put', u'heat', u'slater', u'world', u'titl', u'race'] [u'irrig', u'replenish', u'giant', u'forest', u'water'] [u'italian', u'dancer', u'strike'] [u'soap', u'opera', u'stone', u'like'] [u'journalist', u'welcom', u'contempt', u'chang'] [u'legal', u'action', u'drop', u'mountain', u'log'] [u'lomu', u'relaunch', u'career', u'wale'] [u'makyb', u'diva', u'take', u'turnbul', u'stake'] [u'arrest', u'alleg'] [u'martyn', u'drop', u'peak', u'form', u'hayden'] [u'miner', u'hop', u'explor', u'bass', u'strait', u'gold'] [u'moder', u'muslim', u'need', u'support', u'downer'] [u'motorcyclist', u'kill', u'head', u'crash'] [u'nasa', u'delay', u'shuttl', u'launch'] [u'york', u'time', u'report', u'testifi', u'leak', u'case'] [u'north', u'coast', u'lead', u'soybean', u'product'] [u'govt', u'stockpil', u'bird', u'vaccin'] [u'warn', u'fruit', u'risk'] [u'opposit', u'conced', u'defeat', u'poll'] [u'opposit', u'seek', u'action', u'recommend'] [u'opposit', u'want', u'health', u'minist', u'sack'] [u'overdos', u'probe', u'heroin', u'ring', u'bust', u'polic'] [u'appeal', u'reform', u'support'] [u'polic', u'appeal', u'inform', u'hotel', u'murder'] [u'policeman', u'break'] [u'polic', u'seek', u'woman', u'attempt', u'babi', u'abduct'] [u'pont', u'focus', u'reclaim', u'ash'] [u'prehistor', u'spider', u'spark', u'jurass', u'park', u'hop'] [u'primus', u'hang', u'boot'] [u'proflig', u'roar', u'edg', u'jet'] [u'rech', u'clear', u'face', u'knight'] [u'resid', u'return', u'orlean', u'despit', u'leve', u'fear'] [u'richard', u'play'] [u'rival', u'cautious', u'makyb', u'diva'] [u'roadsid', u'bomb', u'injur', u'troop', u'afghanistan'] [u'rumsfeld', u'downplay', u'loss', u'iraqi', u'battalion'] [u'search', u'continu', u'illeg', u'fish', u'boat'] [u'senat', u'want', u'tougher', u'rule', u'vote', u'enrol'] [u'slow', u'boat', u'britain', u'complet', u'atlant', u'odyssey'] [u'star', u'suburb'] [u'stoner', u'close', u'rossi', u'take'] [u'student', u'bear', u'hec', u'burden', u'report'] [u'studi', u'find', u'student', u'lack', u'literaci', u'skill'] [u'studi', u'assess', u'nativ', u'fish', u'stock', u'recoveri'] [u'sydney', u'come', u'glori'] [u'consid', u'review', u'rail', u'freight'] [u'tasmanian', u'aust', u'shopper'] [u'tasmania', u'switch', u'daylight', u'save', u'overnight'] [u'teenag', u'murray', u'book', u'date'] [u'teen', u'turn', u'internet', u'counsel', u'servic'] [u'tendulkar', u'comeback'] [u'thailand', u'promis', u'drug', u'hivaid', u'suffer'] [u'kill', u'israel', u'west', u'bank', u'raid'] [u'tiger', u'hop', u'draw', u'home', u'town', u'support'] [u'tiger', u'wari', u'underdog', u'cowboy'] [u'truss', u'warn', u'busi', u'price', u'hike'] [u'typhoon', u'damrey', u'toll', u'pass'] [u'polic', u'chief', u'block', u'brazilian', u'death', u'probe'] [u'union', u'defend', u'primari', u'school', u'curriculum'] [u'union', u'welcom', u'forster', u'report'] [u'free', u'detaine', u'ghraib', u'jail'] [u'space', u'tourist', u'blast', u'aboard', u'soyuz'] [u'stock', u'rise', u'best', u'quarter'] [u'liber', u'debat', u'debt', u'recoveri'] [u'liber', u'unmov', u'reform', u'plan'] [u'liber', u'wont', u'howard', u'plan'] [u'wenger', u'hit', u'booki', u'chelsea', u'out'] [u'westgat', u'bridg', u'speed', u'camera'] [u'talk', u'aust', u'bird', u'readi'] [u'win', u'hawk', u'king', u'sixer'] [u'woman', u'pull', u'river', u'rescu'] [u'zimbabw', u'bank', u'chief', u'call', u'farm', u'seizur'] [u'india', u'drink', u'bootleg', u'alcohol'] [u'kill', u'blast'] [u'abbott', u'visit', u'bali', u'bomb', u'victim'] [u'adelaid', u'sink', u'knight', u'soak', u'auckland'] [u'aker', u'name', u'lion', u'best'] [u'atkinson', u'podium', u'loeb', u'secur', u'ralli', u'titl'] [u'aussi', u'photograph', u'talk', u'blast'] [u'aussi', u'readi', u'bounc', u'say'] [u'australian', u'agenc', u'consid', u'bali', u'respons'] [u'australian', u'bali', u'dead'] [u'australian', u'tell', u'stori', u'bali', u'bomb'] [u'aust', u'terror', u'alert', u'level', u'unchang', u'despit'] [u'backpack', u'bali', u'blast', u'sit'] [u'bali', u'bomb', u'indonesia', u'economi'] [u'barcelona', u'draw', u'zaragoza', u'getaf'] [u'beatti', u'ask', u'costello', u'health', u'help'] [u'blast', u'bali'] [u'blast', u'target', u'democraci', u'howard', u'say'] [u'breaker', u'upset', u'razorback'] [u'burni', u'celebr', u'bumper', u'turn'] [u'busi', u'urg', u'rethink', u'freight', u'network', u'closur'] [u'busselton', u'teen', u'kill', u'bali', u'blast'] [u'cafe', u'close', u'reviv', u'memori'] [u'child', u'care', u'need', u'afford', u'union', u'say'] [u'china', u'shut', u'exhibit'] [u'investig', u'alleg', u'cover'] [u'countdown', u'tiger', u'toss'] [u'darwin', u'return', u'bali', u'second', u'close'] [u'darwin', u'prepar', u'bali', u'bomb', u'injur'] [u'dead', u'blast', u'bali', u'tourist', u'spot'] [u'defenc', u'forc', u'bring', u'home', u'injur', u'aussi'] [u'dfat', u'staff', u'bali', u'blast', u'sit'] [u'doctor', u'wit', u'attack'] [u'downer', u'issu', u'travel', u'advic'] [u'dravid', u'pollock', u'star', u'world', u'warm'] [u'egyptian', u'detaine', u'free', u'guantanamo'] [u'eildon', u'upgrad', u'unveil'] [u'salvador', u'volcano', u'erupt'] [u'salvador', u'volcano', u'prompt', u'evacu'] [u'expert', u'blame', u'bali', u'blast'] [u'feder', u'down', u'murray', u'thai', u'final'] [u'finger', u'point'] [u'firefight', u'blaze'] [u'lynx'] [u'skipper', u'lift', u'booz', u'black'] [u'govt', u'put', u'surgeri', u'dental', u'work'] [u'govt', u'urg', u'work', u'child', u'care'] [u'gregan', u'rule', u'retir'] [u'hospit', u'redevelop', u'million', u'budget'] [u'iaquinta', u'return', u'udines', u'win', u'way'] [u'indonesia', u'investig', u'bali', u'bomb'] [u'indonesian', u'leader', u'visit', u'blast', u'sit'] [u'indonesian', u'market', u'brace', u'fallout'] [u'indonesian', u'rout', u'broom', u'board'] [u'investig', u'launch', u'attack'] [u'iran', u'deni', u'threat'] [u'iran', u'threaten', u'withhold'] [u'israel', u'scale', u'gaza', u'offens'] [u'japanes', u'woman', u'kill', u'bali', u'attack'] [u'kidnap', u'offens', u'iraq', u'constitut', u'talk'] [u'liber', u'tribut'] [u'liber', u'expand', u'power'] [u'lomu', u'sign', u'cardiff'] [u'look', u'like', u'work', u'terrorist', u'expert', u'say'] [u'jail', u'role', u'girlfriend', u'murder'] [u'milit', u'spread', u'iraq', u'train'] [u'minist', u'warn', u'solarium', u'visit'] [u'mother', u'unhappi', u'sentenc', u'teen', u'death'] [u'muslim', u'speaker', u'discuss', u'religion', u'terror', u'link'] [u'naasi', u'win', u'half', u'marathon', u'world', u'titl'] [u'nation', u'park', u'extend', u'kosciuszko', u'brumbi', u'control'] [u'newcastl', u'coupl', u'catch', u'bomb'] [u'grand', u'final', u'highlight'] [u'grand', u'final', u'kick', u'sydney'] [u'grand', u'final', u'post', u'match', u'interview'] [u'minist', u'reject', u'call', u'crocodil', u'cull'] [u'olymp', u'champ', u'injur', u'crash'] [u'australian', u'dead', u'critic', u'bali'] [u'australian', u'kill', u'bali', u'blast'] [u'perth', u'hospit', u'stand', u'follow', u'bali', u'attack'] [u'photograph', u'visit', u'injur', u'hospit'] [u'pilot', u'kill', u'crash'] [u'polic', u'kill', u'wit', u'chang', u'live'] [u'polic', u'search', u'assault'] [u'premier', u'welcom', u'probe', u'brogden', u'suicid', u'note'] [u'probe', u'order', u'brogden', u'suicid', u'note', u'leak'] [u'qanta', u'put', u'extra', u'bali', u'flight'] [u'ranger', u'battl', u'past', u'flame'] [u'marshal', u'cowboy', u'tell'] [u'shorten', u'season', u'matilda', u'campaign'] [u'respons', u'bali', u'bomb', u'plot', u'polic'] [u'student', u'unit', u'debat', u'forestri', u'issu'] [u'suicid', u'bomber', u'bali', u'blast', u'yudhoyono'] [u'teacher', u'union', u'optimist', u'claim'] [u'tiger', u'claim', u'histor', u'premiership'] [u'tiger', u'favourit', u'ahead', u'final'] [u'tiger', u'lead', u'half', u'time'] [u'timelin', u'indonesia', u'bomb', u'attack'] [u'earli', u'blame', u'jone', u'say'] [u'croc', u'victim', u'foolhardi'] [u'tourist', u'target', u'bali'] [u'tredrea', u'vote', u'port', u'best'] [u'salvador', u'volcano', u'erupt'] [u'soldier', u'kill', u'afghanistan'] [u'claim', u'sydney', u'premier', u'titl'] [u'warn', u'darfur', u'crime', u'action'] [u'nistelrooy', u'lift', u'unit', u'spur', u'stun', u'charlton'] [u'liber', u'push', u'uranium', u'mine'] [u'warn', u'say', u'aussi', u'bali'] [u'wit', u'victim', u'recount', u'experi'] [u'world', u'leader', u'condemn', u'bali', u'bomb'] [u'wound', u'australian', u'fli', u'bali'] [u'yudhoyono', u'condemn', u'bali', u'blast'] [u'kill', u'south', u'korea', u'concert', u'stamped'] [u'bali', u'blast', u'victim', u'reconsid', u'travel', u'plan'] [u'kill', u'tajikistan', u'collis'] [u'kill', u'afghanistan', u'attack'] [u'abbott', u'prais', u'stoic', u'aussi', u'bali'] [u'boast', u'better', u'recycl', u'figur'] [u'activ', u'aplenti', u'labour', u'weekend'] [u'actu', u'seek', u'support', u'reform', u'inquiri'] [u'age', u'popul', u'put', u'pressur', u'local'] [u'alic', u'airport', u'drive', u'cinema', u'heritag', u'list'] [u'alic', u'elect', u'winner', u'seek', u'lift', u'council'] [u'name', u'elect', u'candid'] [u'alumina', u'refineri', u'health', u'concern', u'remain'] [u'amateur', u'video', u'show', u'bali', u'attack'] [u'ambul', u'servic', u'reject', u'staff', u'claim'] [u'anti', u'terror', u'drill', u'bring', u'rome', u'standstil'] [u'asbesto', u'remov', u'money', u'languish'] [u'asian', u'beef', u'export', u'improv'] [u'attack', u'expect', u'weaken', u'bali', u'tourism', u'industri'] [u'australian', u'death', u'toll', u'expect', u'rise'] [u'australian', u'nobel', u'gastriti', u'discoveri'] [u'australia', u'lead', u'pacif'] [u'award', u'highlight', u'indigen', u'cultur', u'preserv'] [u'award', u'win', u'turf', u'club', u'face', u'tough', u'season'] [u'bali', u'attack', u'fail', u'shake', u'aussi', u'market'] [u'bali', u'attack', u'affect', u'melbourn', u'game', u'secur'] [u'bali', u'blast', u'prompt', u'region', u'airport', u'secur'] [u'bali', u'blast', u'littl', u'impact', u'aust', u'tourism'] [u'bali', u'bomb', u'death', u'shock', u'newcastl'] [u'bali', u'bomb', u'investig', u'continu'] [u'bali', u'bomb', u'unlik', u'affect', u'terror', u'law'] [u'bali', u'evid', u'point', u'keelti'] [u'bali', u'polic', u'reveal', u'bomber', u'photo'] [u'bali', u'victim', u'famili', u'treat', u'hospit'] [u'bendigo', u'reflect', u'latest', u'bali', u'blast'] [u'bird', u'blame', u'elder', u'indonesian', u'death'] [u'bird', u'fear', u'benefit', u'biota'] [u'birney', u'rule', u'nuclear', u'power', u'wast', u'dump'] [u'blaze', u'damag', u'church', u'communiti', u'centr'] [u'bomb', u'death', u'shock', u'newcastl'] [u'bomb', u'victim', u'releas', u'hospit'] [u'british', u'rocker', u'pete', u'doherti', u'hold', u'drug', u'raid'] [u'brit', u'flock', u'aust', u'skill', u'expo'] [u'bubbl', u'studi', u'fizz', u'champagn'] [u'bundaberg', u'faction', u'deal'] [u'bush', u'pick', u'white', u'hous', u'suprem', u'court'] [u'busselton', u'mourn', u'teenag', u'bomb', u'victim'] [u'buyer', u'warn', u'bewar', u'drug', u'poni'] [u'bypass', u'delay', u'heighten', u'road', u'death', u'fear'] [u'bypass', u'rambo', u'look', u'pastur'] [u'cairn', u'shutterbug', u'snap', u'finalist', u'spot', u'photo'] [u'privat', u'tourism', u'nation', u'park'] [u'campbel', u'smith', u'england', u'squad'] [u'carlton', u'pair', u'centr', u'trade', u'specul'] [u'chain', u'smoke', u'chimp', u'kick', u'habit', u'year'] [u'chines', u'blast', u'leav', u'dead'] [u'choi', u'win', u'greensboro', u'classic'] [u'clijster', u'make', u'win', u'return'] [u'commerci', u'diver', u'croc', u'warn', u'devic'] [u'communiti', u'help', u'secur', u'helen', u'rescu', u'boat'] [u'confus', u'stall', u'clipsal', u'redund'] [u'corser', u'crown', u'world', u'superbik', u'champion'] [u'council', u'question', u'alcohol', u'restrict'] [u'council', u'unlik', u'attend', u'civic', u'centr', u'meet'] [u'council', u'unlik', u'delay', u'brothel', u'decis'] [u'court', u'urg', u'consid', u'domest', u'violenc', u'histori'] [u'cpsu', u'discuss', u'push', u'nation', u'galleri'] [u'croc', u'attack', u'year', u'northern'] [u'darwin', u'hospit', u'releas', u'bomb', u'victim'] [u'delay', u'push', u'north', u'gold'] [u'democrat', u'overturn', u'abort', u'drug'] [u'denmark', u'host', u'land', u'care', u'gather'] [u'dental', u'group', u'back', u'fluorid'] [u'develop', u'abandon', u'bateman', u'plan'] [u'dragon', u'come', u'grand', u'final'] [u'dupe', u'retir', u'meet', u'invest', u'administr'] [u'dutch', u'master', u'fail', u'break', u'impressionist'] [u'earthquak', u'jolt', u'jordan', u'valley'] [u'educ', u'health', u'servic', u'sign', u'deal'] [u'salvador', u'fear', u'volcano', u'erupt'] [u'famili', u'farewel', u'kill', u'rollov'] [u'famili', u'seek', u'fuel', u'excis'] [u'farmer', u'vote', u'grow', u'canola'] [u'ferri', u'collaps', u'hand', u'link', u'titl', u'monti'] [u'fisher', u'hope', u'lobster', u'price', u'boost'] [u'bali', u'victim', u'critic', u'darwin', u'hospit'] [u'australian', u'believ', u'dead', u'downer'] [u'frost', u'toll', u'wheatbelt', u'harvest'] [u'fund', u'woe', u'cancel', u'indigen', u'substanc', u'abus'] [u'geraldton', u'women', u'avoid', u'bali', u'blast'] [u'gilchrist', u'throw', u'martyn'] [u'good', u'south', u'east', u'jobless', u'figur'] [u'govt', u'expect', u'delay', u'wind', u'farm', u'decis'] [u'grass', u'head', u'lake', u'macquari', u'properti'] [u'grassfir', u'prompt', u'warn', u'burn', u'off'] [u'green', u'rush', u'fund', u'pacif', u'nation'] [u'green', u'push', u'chemic', u'devil', u'diseas'] [u'group', u'consid', u'coal', u'seam', u'salin', u'spin'] [u'hawk', u'refus', u'trade', u'everitt'] [u'health', u'review', u'forc', u'beatti', u'rethink'] [u'hewitt', u'edg', u'rank'] [u'hogg', u'tait', u'super', u'seri'] [u'holiday', u'driver', u'urg', u'stay', u'safe'] [u'indian', u'crash', u'toll', u'rise', u'rescu', u'work', u'continu'] [u'injur', u'australian', u'arriv', u'home'] [u'iraq', u'insurg', u'commit', u'crime', u'right', u'group'] [u'iraq', u'minist', u'surviv', u'bomb', u'attack'] [u'juve', u'beat', u'inter', u'seri', u'control'] [u'kempsey', u'hospit', u'await', u'mental', u'health', u'decis'] [u'labour', u'begin', u'talk', u'form', u'govt'] [u'lake', u'macquari', u'contain'] [u'landmark', u'deal', u'loom', u'river', u'develop'] [u'launceston', u'council', u'reject', u'silverdom', u'ultimatum'] [u'launceston', u'council', u'decid', u'silverdom'] [u'lifesav', u'busi', u'sunshin', u'coast', u'beach'] [u'local', u'council', u'back', u'south', u'sister', u'log'] [u'local', u'doubt', u'rais', u'health', u'review'] [u'local', u'resid', u'escap', u'bali', u'blast'] [u'local', u'breath', u'life', u'cunderdin', u'hotel'] [u'price', u'blame', u'closur'] [u'charg', u'bathurst', u'home', u'invas'] [u'die', u'fall', u'tray'] [u'die', u'highland', u'road', u'crash'] [u'court', u'accus', u'prank', u'emerg', u'call'] [u'marshal', u'halatau', u'doubt', u'nation', u'open'] [u'marshal', u'tout', u'princ', u'kangaroo', u'select'] [u'master', u'game', u'featur', u'extra', u'event'] [u'mayor', u'accus', u'limit', u'councillor', u'role'] [u'mcgrath', u'support', u'specialist', u'coach'] [u'mickelberg', u'face', u'offic', u'wrong', u'convict'] [u'mitchel', u'deni', u'booz', u'cultur', u'claim'] [u'mitchel', u'place', u'pressur', u'forc'] [u'motorcyclist', u'face', u'court', u'policeman'] [u'motorist', u'warn', u'complac'] [u'mum', u'attent', u'rural', u'matern', u'report'] [u'murdoch', u'sell', u'educ', u'titl'] [u'ghraib', u'act', u'worst', u'england'] [u'nanni', u'goat', u'play', u'surrog', u'orphan', u'foal'] [u'approach', u'bomber'] [u'newcastl', u'servic', u'pay', u'tribut', u'bali', u'victim'] [u'committe', u'test', u'communiti', u'respons', u'apollo'] [u'post', u'kimberley', u'educ', u'chief'] [u'nobel', u'interrupt', u'dinner', u'australian', u'winner'] [u'north', u'central', u'victoria', u'experi', u'septemb'] [u'north', u'west', u'pray', u'bali', u'blast', u'victim'] [u'offer', u'bali', u'bomb', u'hotlin'] [u'fund', u'lifelin', u'tech', u'upgrad'] [u'outback', u'secur', u'tourism', u'award'] [u'pacif', u'nation', u'defend', u'fund', u'demand'] [u'palestinian', u'polic', u'stage', u'parliament', u'protest'] [u'pedestrian', u'die', u'bowravill'] [u'petrol', u'boss', u'fin', u'speed', u'ticket'] [u'phone', u'trigger', u'bali', u'bomb'] [u'planet', u'xena', u'moon', u'name', u'gabriell'] [u'discuss', u'bali', u'blast'] [u'play', u'warn', u'report'] [u'leader', u'delay', u'australian', u'trip'] [u'polic', u'hurt', u'swan', u'hill', u'brawl'] [u'polic', u'investig', u'weekend', u'violenc'] [u'policeman', u'break', u'roadsid', u'mishap'] [u'polic', u'pleas', u'overal', u'muster', u'behaviour'] [u'polic', u'probe', u'broadford', u'man', u'fatal', u'crash'] [u'polic', u'probe', u'fatal', u'ultralight', u'accid'] [u'polic', u'probe', u'northern', u'opal', u'heist'] [u'polic', u'probe', u'overnight', u'alic', u'stab'] [u'polic', u'widen', u'search', u'miss'] [u'poor', u'condit', u'delay', u'rescu', u'injur', u'yachtsman'] [u'porteous', u'case', u'hear', u'melbourn'] [u'port', u'question', u'secur', u'card', u'cost'] [u'portug', u'get', u'glimps', u'eclips'] [u'power', u'restor', u'northern'] [u'princ', u'odonnel', u'name', u'kangaroo', u'squad'] [u'princ', u'upset', u'kangaroo', u'omiss'] [u'privat', u'disabl', u'carer', u'threaten', u'industri'] [u'rain', u'caus', u'wellington', u'overflow'] [u'rain', u'offer', u'riverland', u'farmer', u'hope', u'crucial'] [u'rampant', u'chelsea', u'demolish', u'liverpool'] [u'real', u'brazilian', u'overwhelm', u'mallorca'] [u'region', u'doctor', u'travel', u'subsidi', u'boost'] [u'resort', u'say', u'overal', u'snow', u'season', u'good'] [u'retir', u'villag', u'plan', u'shape'] [u'review', u'find', u'fault', u'hervey', u'treatment'] [u'riverina', u'theatr', u'compani', u'lose', u'fund'] [u'roar', u'uruguayan', u'stand'] [u'rural', u'doctor', u'medicar', u'overhaul'] [u'govt', u'push', u'water', u'purchas', u'murray', u'plan'] [u'hospit', u'standbi', u'bali', u'victim'] [u'second', u'dairi', u'compani', u'increas', u'milk', u'price'] [u'second', u'gungahlin', u'petrol', u'station', u'year', u'away'] [u'south', u'east', u'water', u'restrict', u'intensifi'] [u'space', u'tourist', u'dock'] [u'spend', u'parliament', u'tour', u'money', u'health', u'liber'] [u'state', u'converg', u'saleyard', u'cabinet', u'meet'] [u'stem', u'cell', u'polici', u'risk', u'brain', u'drain', u'stanhop'] [u'stopwork', u'disrupt', u'centrelink', u'servic'] [u'storm', u'littl', u'eas', u'water', u'storag', u'woe'] [u'strong', u'month', u'loom', u'gold', u'coast', u'tourism'] [u'strong', u'wind', u'hamper', u'gippsland', u'firefight'] [u'suicid', u'bomber', u'blame', u'bali', u'attack'] [u'sydney', u'bus', u'secur', u'upgrad'] [u'teacher', u'attack', u'give', u'indefinit', u'sentenc'] [u'teen', u'die', u'gippsland', u'mishap'] [u'tender', u'close', u'cloncurri', u'river'] [u'terrorist', u'attack', u'rumour', u'inevit', u'say'] [u'thoma', u'see', u'china', u'space', u'power'] [u'thousand', u'narromin'] [u'tiger', u'fevola'] [u'toddler', u'surviv', u'snake', u'bite'] [u'tourist', u'ignor', u'dolphin', u'feed'] [u'tourist', u'warn', u'croc', u'sight'] [u'townsvill', u'face', u'child', u'porn', u'charg'] [u'train', u'derail', u'kill', u'india'] [u'travel', u'alert', u'terrorist', u'bali', u'busi'] [u'tripodi', u'highway', u'stanc', u'puzzl', u'gilmor'] [u'kill', u'bangladesh', u'court', u'bomb'] [u'union', u'question', u'rail', u'staff', u'plan'] [u'union', u'warn', u'chang', u'threaten', u'australian'] [u'check', u'captur', u'marin', u'iraq'] [u'general', u'talk', u'iraq', u'prospect'] [u'playwright', u'august', u'wilson', u'die'] [u'tourist', u'boat', u'accid', u'leav', u'dead'] [u'vandal', u'target', u'perth', u'cenotaph'] [u'viduka', u'schwarzer', u'doubt', u'socceroo'] [u'visitor', u'number', u'fall', u'resort'] [u'opposit', u'look', u'lift', u'resourc', u'sector'] [u'water', u'shortag', u'river', u'impact', u'worri', u'catchment', u'group'] [u'websit', u'connect', u'tasmanian', u'health', u'initi'] [u'western', u'get', u'land', u'protect', u'offic'] [u'western', u'har', u'racer', u'set', u'world', u'record'] [u'whitnal', u'fevola', u'centr', u'trade'] [u'woman', u'airlift', u'scene', u'mountain', u'fall'] [u'woman', u'charg', u'crash', u'taxi'] [u'woman', u'stabl', u'condit', u'mountain', u'fall'] [u'women', u'warn', u'sydney', u'assault', u'threat'] [u'work', u'start', u'marina', u'expans'] [u'wound', u'aussi', u'vulner', u'lara'] [u'chines', u'evacu', u'floodwat', u'rise'] [u'trap', u'latest', u'chines', u'accid'] [u'abba', u'ask', u'appoint', u'govt'] [u'abetz', u'moot', u'wide', u'rang', u'elector', u'reform'] [u'cop', u'critic', u'draw'] [u'agforc', u'welcom', u'govt', u'nlis', u'fund'] [u'ainsli', u'resid', u'discuss', u'plan', u'develop'] [u'arrest', u'zimbabw', u'blitz'] [u'qaeda', u'call', u'iraq', u'attack', u'ramadan'] [u'aquif', u'plan', u'feedback', u'prove', u'posit'] [u'aussi', u'cancel', u'bali', u'trip'] [u'aussi', u'soldier', u'hurt', u'afghan', u'clash'] [u'aussi', u'nobel', u'prize'] [u'aust', u'promis', u'bali'] [u'australian', u'bird', u'team', u'bind', u'indonesia'] [u'australian', u'bird', u'vaccin', u'trial', u'begin'] [u'australia'] [u'author', u'conduct', u'saleyard', u'counter', u'terror'] [u'award', u'trick', u'pat'] [u'bali', u'blast', u'long', u'term', u'impact', u'hard', u'predict'] [u'bali', u'polic', u'play', u'inquiri', u'progress'] [u'bali', u'resort', u'plan', u'abandon', u'bomb'] [u'bali', u'shrapnel', u'wound', u'consist'] [u'bali', u'travel', u'advic', u'updat'] [u'bali', u'video', u'maker', u'ident', u'reveal'] [u'bashir', u'condemn', u'bali', u'attack'] [u'bendigo', u'bank', u'chief', u'begin', u'nation', u'tour'] [u'best', u'intens', u'care', u'kidney', u'infect'] [u'chang', u'plan', u'marron', u'fisheri'] [u'bomb', u'victim', u'face', u'repeat', u'surgeri'] [u'bomb', u'victim', u'remain', u'singapor', u'hospit'] [u'bomb', u'maker', u'high', u'prioriti', u'bali', u'probe'] [u'bomb', u'shrapnel', u'victim', u'stay', u'darwin', u'hospit'] [u'boswel', u'oppos', u'voluntari', u'vote'] [u'busi', u'welcom', u'river', u'scheme', u'agreement'] [u'cabbi', u'protest', u'train', u'demand'] [u'calvari', u'hospit', u'chief', u'promis', u'improv', u'bill'] [u'maker', u'urg', u'explor', u'green', u'option'] [u'cartwright', u'excit', u'laffranchi'] [u'cccs', u'come', u'scrutini'] [u'centrelink', u'employe', u'industri', u'action'] [u'centrelink', u'servic', u'unaffect', u'industri', u'action'] [u'china', u'tighten', u'internet', u'control'] [u'citi', u'take', u'visitor', u'centr'] [u'clown', u'help', u'patient', u'annoy', u'doctor'] [u'coach', u'hop', u'laffranchi', u'experi'] [u'coal', u'termin', u'declar', u'signific', u'project'] [u'comedian', u'ronni', u'barker', u'die'] [u'communiti', u'surpris', u'develop', u'commiss'] [u'concern', u'air', u'sober', u'centr', u'futur'] [u'coonan', u'put', u'telstra', u'servic', u'chang', u'rule'] [u'coraki', u'golf', u'club', u'break'] [u'costello', u'enter', u'betfair', u'fray'] [u'council', u'elect', u'deal', u'claim', u'worri', u'mayor'] [u'council', u'face', u'legal', u'action', u'subdivis'] [u'council', u'like', u'approv', u'brothel'] [u'council', u'offer', u'effluent', u'pond', u'assur'] [u'council', u'give', u'time', u'properti', u'valu', u'restructur'] [u'council', u'tough', u'skateboard'] [u'cowra', u'wood', u'water'] [u'croc', u'attack', u'girl', u'stabl', u'condit'] [u'crop', u'dust', u'pilot', u'surviv', u'midair'] [u'cultur', u'belief', u'hinder', u'breast', u'cancer', u'treatment'] [u'dalbi', u'mayor', u'hop', u'power', u'station', u'approv'] [u'davenport', u'hail', u'phenomen', u'clijster'] [u'dear', u'bank', u'million', u'pound'] [u'defenc', u'order', u'enter', u'plea', u'rise', u'case'] [u'depardieu', u'headbutt', u'italian', u'photograph'] [u'dfat', u'travel', u'warn', u'inadequ', u'labor'] [u'attack', u'put', u'ellalong', u'hospit'] [u'drink', u'drive', u'number', u'worri', u'polic'] [u'drug', u'scheme', u'reach', u'gold', u'coast'] [u'dubbo', u'council', u'claim', u'refer', u'minist'] [u'emerg', u'worker', u'protest', u'super', u'chang'] [u'england', u'confid', u'deliv', u'sven'] [u'environment', u'scientist', u'win', u'women', u'award'] [u'wont', u'formal', u'saleyard', u'assess'] [u'exercis', u'lower', u'alzheim', u'risk', u'research', u'find'] [u'minist', u'alan', u'wood', u'die'] [u'eyr', u'peninsula', u'fire', u'suspect', u'plead', u'guilti'] [u'farmer', u'trial', u'apricot', u'plum', u'cross'] [u'fear', u'rais', u'australian', u'wing'] [u'feder', u'state', u'deal', u'put', u'train', u'program'] [u'floriad', u'draw', u'record', u'crowd'] [u'hurt', u'head', u'crash', u'near', u'orang'] [u'freddi', u'fever', u'grip', u'australia'] [u'googl', u'plan', u'francisco', u'wireless'] [u'govt', u'aim', u'cattl', u'cost'] [u'govt', u'audit', u'focus', u'water', u'save'] [u'govt', u'ax', u'multicultur', u'affair', u'advisori', u'council'] [u'govt', u'grant', u'fail', u'address', u'ongo', u'afford'] [u'govt', u'help', u'seek', u'local', u'oyster', u'farmer'] [u'govt', u'beat', u'mine', u'despit', u'closur'] [u'govt', u'urg', u'boost', u'land', u'polic', u'number'] [u'govt', u'urg', u'help', u'stop', u'forest', u'log'] [u'group', u'maintain', u'lake'] [u'group', u'rais', u'rural', u'depress', u'awar'] [u'grow', u'land', u'valu', u'rais', u'revenu'] [u'complet', u'south', u'korean', u'doubl'] [u'helicopt', u'blade', u'fractur', u'man', u'skull'] [u'hervey', u'famili', u'continu', u'bali', u'holiday'] [u'hindmarsh', u'rule', u'nation'] [u'hold', u'phone', u'crow', u'host', u'afi'] [u'hope', u'plan', u'fuel', u'region', u'tourism'] [u'hoteli', u'discuss', u'smoke', u'ban', u'hobart'] [u'weather', u'prompt', u'bushfir', u'season', u'warn'] [u'howard', u'rule', u'voluntari', u'vote'] [u'howard', u'discuss', u'indonesia'] [u'hydrogen', u'realiti', u'year'] [u'indefinit', u'sentenc', u'draw', u'civil', u'libertarian'] [u'indigen', u'group', u'urg', u'health', u'model', u'chang'] [u'indonesian', u'polic', u'launch', u'public', u'blitz'] [u'indonesia', u'fuel', u'price', u'rise', u'hit', u'cattl', u'demand'] [u'internet', u'robust', u'think'] [u'inverel', u'council', u'consid', u'gaol'] [u'disput', u'wont', u'affect', u'payment', u'centrelink', u'say'] [u'junior', u'doctor', u'supervis', u'inquiri', u'tell'] [u'katherin', u'initi', u'target', u'domest', u'violenc'] [u'kewel', u'come', u'bench', u'jamaica'] [u'knight', u'john', u'buderus', u'join', u'kangaroo'] [u'labor', u'faction', u'caus', u'damag'] [u'land', u'seek', u'disabl', u'respit', u'unit'] [u'liber', u'look', u'exclud', u'certain', u'voter', u'beazley'] [u'lismor', u'council', u'urg', u'rodeo'] [u'littl', u'rain', u'mean', u'summer', u'water', u'restrict'] [u'local', u'govern', u'review'] [u'macquari', u'float', u'media', u'fund'] [u'charg', u'bowravill'] [u'court', u'policeman', u'incid'] [u'face', u'court', u'woman', u'assault'] [u'market', u'ignor', u'widen', u'trade', u'deficit'] [u'marshal', u'halatau', u'nation'] [u'mayor', u'back', u'polic', u'chrome', u'power'] [u'mayor', u'claim', u'polit', u'influenc', u'highway'] [u'mayor', u'see', u'cape', u'york', u'benefit'] [u'beat', u'headquart'] [u'mclaren', u'appear', u'roar'] [u'mclaren', u'appear', u'roar'] [u'melbourn', u'academ', u'win', u'scienc', u'prize'] [u'miner', u'accus', u'let', u'communiti'] [u'minist', u'council', u'remain', u'odd', u'sport', u'fund'] [u'minist', u'wont', u'rule', u'canola', u'trial'] [u'reliev', u'hurt', u'bali', u'blast'] [u'time', u'lobster', u'fisher', u'vote'] [u'rais', u'doubt', u'plan', u'health', u'chang'] [u'shed', u'light', u'road', u'safeti', u'plan'] [u'want', u'windfal', u'spend', u'pacif', u'highway'] [u'multicultur', u'council', u'import', u'chair', u'say'] [u'face', u'join', u'cabinet'] [u'obstetrician', u'eas', u'gawler', u'concern'] [u'nichol', u'oval', u'reopen', u'follow', u'improv', u'rain'] [u'nicotin', u'beer'] [u'nobel', u'physic', u'prize', u'honour', u'optic', u'pioneer'] [u'guarante', u'beef', u'expo', u'stay', u'rockhampton'] [u'voluntari', u'vote'] [u'nrma', u'highlight', u'need', u'pacif', u'highway', u'attent'] [u'charg', u'alic', u'spring', u'stab'] [u'opposit', u'play', u'aborigin', u'leasehold', u'chang'] [u'opposit', u'outlin', u'plan', u'tackl', u'skill'] [u'orang', u'school', u'teacher', u'aust', u'bali'] [u'pair', u'guilti', u'father', u'murder'] [u'patrol', u'net', u'reef', u'fish', u'breach'] [u'polic', u'continu', u'countri', u'road', u'crackdown'] [u'polic', u'frustrat', u'breath', u'test', u'read'] [u'polic', u'hope', u'identifi', u'bali', u'bomber'] [u'polic', u'investig', u'armi', u'recruit', u'gang', u'rape'] [u'polic', u'charg', u'drug', u'raid'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'probe', u'fatal', u'crash', u'stab'] [u'polic', u'record', u'weekend', u'speed', u'driver'] [u'polic', u'seek', u'help', u'follow', u'man', u'disappear'] [u'polic', u'investig', u'asio', u'leak', u'activist'] [u'polic', u'road', u'crash', u'victim'] [u'priest', u'petit', u'vatican', u'marriag', u'right'] [u'public', u'urg', u'manag', u'plan'] [u'public', u'urg', u'watch', u'turtl'] [u'anti', u'terror', u'campaign', u'target', u'public'] [u'question', u'remain', u'breast', u'screen', u'locat'] [u'rathbon', u'doubt', u'wallabi', u'tour'] [u'recheck', u'properti', u'valu', u'urg', u'ombudsman'] [u'remot', u'communiti', u'receiv', u'defibril'] [u'research', u'work', u'bird', u'vaccin'] [u'announc', u'share', u'offer'] [u'tinto', u'step', u'iron', u'search'] [u'road', u'widen', u'plan', u'trigger', u'green', u'fear'] [u'sawmil', u'propon', u'hear', u'object', u'hand'] [u'second', u'charg', u'liverpool', u'stab'] [u'select', u'harvest', u'south', u'sister', u'site', u'resum'] [u'senat', u'mull', u'bali', u'condol', u'motion'] [u'shire', u'accus', u'govt', u'cost', u'shift'] [u'shire', u'back', u'insur', u'scheme'] [u'shire', u'consult', u'bali', u'blast', u'victim', u'famili'] [u'showground', u'share', u'fund'] [u'organis', u'turn', u'spotlight', u'away', u'brawl'] [u'small', u'busi', u'group', u'hit', u'propos', u'merger'] [u'speaker', u'call', u'central', u'qlder', u'watch'] [u'strategi', u'consid', u'south', u'coast', u'develop', u'issu'] [u'support', u'servic', u'offer', u'church', u'communiti'] [u'suspect', u'hold', u'bali', u'bomb'] [u'tait', u'injuri', u'expos', u'bowl', u'depth'] [u'tanami', u'gold', u'plan', u'great', u'sandi', u'desert', u'project'] [u'telstra', u'sale', u'haunt', u'nation', u'report'] [u'tenni', u'snare', u'prime', u'time', u'coverag'] [u'thoma', u'terror', u'trial', u'night'] [u'kill', u'baghdad', u'bomb', u'blast'] [u'tiger', u'apologis', u'post', u'match', u'explet'] [u'timbercorp', u'sell', u'loxton', u'citrus', u'orchard'] [u'tourism', u'group', u'see', u'benefit', u'nation', u'park'] [u'tourist', u'need', u'educ', u'croc', u'risk'] [u'tour', u'switzerland', u'rural', u'report'] [u'trade', u'deficit', u'hit', u'billion'] [u'travel', u'agent', u'say', u'bali', u'blast', u'deter'] [u'travel', u'agent', u'expect', u'bali', u'trip', u'cancel'] [u'troppo', u'season', u'hit'] [u'truss', u'seek', u'evalu', u'tasmanian', u'rail', u'option'] [u'detain', u'bali', u'blast'] [u'detain', u'bali', u'bomb'] [u'arrest', u'mccartney', u'murder', u'ireland'] [u'health', u'worker', u'lure'] [u'urg', u'speed', u'hick', u'citizenship'] [u'decid', u'strength', u'afghanistan', u'deploy'] [u'warn', u'loom', u'malawi', u'famin'] [u'worker', u'shoot', u'dead', u'somalia'] [u'vermuelen', u'baylisss', u'seat', u'phillip', u'island'] [u'govt', u'timber', u'loss'] [u'victoria', u'reform', u'homicid', u'law'] [u'famili', u'return', u'home', u'lucki', u'escap'] [u'walk', u'sand', u'tradit', u'owner', u'urg'] [u'watt', u'trade', u'kilda'] [u'weekend', u'crime', u'keep', u'polic', u'busi'] [u'weekend', u'drink', u'drive', u'worri', u'polic'] [u'western', u'tasmania', u'defi', u'weather', u'trend'] [u'white', u'look', u'world', u'spin'] [u'whitsunday', u'place', u'fifth', u'nation', u'competit'] [u'widow', u'yacht', u'club', u'race', u'death'] [u'woman', u'plead', u'guilti', u'drug', u'charg'] [u'woodsid', u'decis', u'upset', u'busi'] [u'world', u'play', u'spinner'] [u'yachtsmen', u'thank', u'rescuer', u'bass', u'strait', u'ordeal'] [u'zimbabw', u'track', u'clear', u'debt', u'report'] [u'submiss', u'gbrmpa', u'review'] [u'alloc', u'tackl', u'indigen', u'domest', u'violenc'] [u'academ', u'predict', u'bali', u'blast', u'trade'] [u'govt', u'readi', u'lodg', u'jail', u'develop'] [u'launch', u'centenari', u'logo', u'competit'] [u'adelaid', u'toppl', u'tiger', u'thriller'] [u'tribun', u'review'] [u'plan', u'auckland', u'adelaid', u'flight'] [u'alic', u'woman', u'jail', u'kill', u'husband'] [u'back', u'bodi', u'theft', u'claim', u'investig'] [u'anim', u'liber', u'criticis', u'rodeo'] [u'anti', u'log', u'protest', u'stage', u'tree', u'campaign'] [u'anti', u'terror', u'law', u'right', u'risk', u'fraser'] [u'aquat', u'centr', u'budget', u'expect', u'blow'] [u'armi', u'wont', u'comment', u'rape', u'claim'] [u'aussi', u'cruis', u'victori', u'world'] [u'aussi', u'world'] [u'australia', u'council', u'region', u'fund'] [u'australia', u'dockland'] [u'arriv', u'polic', u'famili', u'feud'] [u'bakhtiari', u'boy', u'seek', u'return', u'australia'] [u'bali', u'bomb', u'conspir', u'want', u'latest', u'blast'] [u'bali', u'bomb', u'hunt', u'widen'] [u'bali', u'bomb', u'injur', u'continu', u'recoveri', u'singapor'] [u'bali', u'paus', u'prayer', u'hunt', u'widen'] [u'bali', u'victim', u'recal', u'bomb', u'blast'] [u'bali', u'victim', u'return', u'home'] [u'bateman', u'bali', u'victim', u'home'] [u'beazley', u'urg', u'govt', u'step', u'border', u'control'] [u'bennett', u'will', u'risk', u'hindmarsh'] [u'billiton', u'reopen', u'illawarra', u'coal'] [u'bird', u'kill', u'seventh', u'indonesian'] [u'bodi', u'theft', u'claim', u'forens'] [u'bomb', u'victim', u'head', u'home'] [u'breach', u'prompt', u'leap', u'procedur', u'chang'] [u'bridgetown', u'greenbush', u'resid', u'face', u'rate', u'rise'] [u'brisban', u'host', u'asia', u'pacif', u'bird', u'summit'] [u'brother', u'monitor', u'bali', u'blast', u'victim', u'condit'] [u'build', u'approv', u'fall', u'surpris', u'economist'] [u'build', u'face', u'categori', u'cyclon', u'test'] [u'bush', u'seek', u'right', u'militari', u'enforc', u'bird'] [u'busi', u'fear', u'shop', u'complex', u'impact'] [u'busi', u'group', u'tout', u'cctv', u'levi'] [u'dementia', u'strategi'] [u'calm', u'schoolgirl', u'help', u'polic', u'quick', u'arrest'] [u'canadian', u'minist', u'grill', u'pizza', u'expens'] [u'cazali', u'defend', u'iron', u'action'] [u'cctv', u'review', u'find', u'govern', u'cooper', u'lack'] [u'china', u'record', u'mine', u'accid', u'day'] [u'church', u'speak', u'compo', u'offer', u'reject'] [u'colleg', u'work', u'gaol', u'plan'] [u'communiti', u'group', u'share', u'poki', u'revenu'] [u'copper', u'miner', u'sign', u'cooper', u'agreement', u'deal'] [u'costello', u'meet', u'ballarat', u'group', u'bypass', u'fund'] [u'coughlin', u'confirm', u'sydney', u'meet'] [u'council', u'look', u'secur', u'naracoort', u'railway', u'land'] [u'councillor', u'defend', u'develop', u'vote', u'amidst'] [u'council', u'reject', u'station', u'plan'] [u'court', u'protect', u'dolphin', u'stun', u'feeder'] [u'court', u'punish', u'servic', u'fraud'] [u'court', u'rule', u'open', u'door', u'deport', u'payout'] [u'court', u'hear', u'quadripleg', u'damag', u'claim'] [u'criminologist', u'hit', u'propos', u'elector'] [u'custom', u'seiz', u'illeg', u'weapon'] [u'databas', u'help', u'polic', u'clean', u'crime'] [u'debat', u'continu', u'merit', u'region'] [u'debat', u'continu', u'wheatbelt', u'scienc', u'academi'] [u'defenc', u'forc', u'perman', u'court'] [u'demon', u'pickett'] [u'test', u'identifi', u'year', u'old', u'rapist'] [u'downer', u'lobbi', u'indonesia'] [u'decid', u'catt', u'retrial'] [u'dream', u'holiday', u'tear', u'apart', u'terror'] [u'drink', u'drive', u'rat', u'worri', u'polic'] [u'driver', u'warn', u'fuel', u'price', u'respit', u'soon'] [u'drug', u'drive', u'worri', u'polic'] [u'dubbo', u'mayor', u'concern', u'council', u'polit'] [u'jail', u'kidnap', u'tortur', u'flatmat'] [u'earli', u'morn', u'toll', u'mccrossin'] [u'electr', u'fault', u'spark', u'hospit'] [u'emerg', u'servic', u'hold', u'hope', u'miss'] [u'emerg', u'worker', u'protest', u'superannu', u'chang'] [u'england', u'cole', u'world', u'qualifi'] [u'health', u'servic', u'chief', u'join', u'indigen', u'health'] [u'policeman', u'jail', u'dole', u'program', u'fraud'] [u'expo', u'offer', u'student', u'career', u'option'] [u'extra', u'polic', u'quell', u'kalumburu', u'riot'] [u'fall', u'build', u'approv'] [u'fallon', u'bail', u'march'] [u'famili', u'identifi', u'bali', u'bomber'] [u'farmer', u'aerial', u'bait', u'trial'] [u'fear', u'financ', u'woe', u'affect', u'health', u'servic'] [u'care', u'facil', u'worker', u'face', u'abus', u'charg'] [u'lewi', u'staffer', u'face', u'court', u'crimin'] [u'forum', u'focus', u'holiday', u'let'] [u'sentenc', u'death', u'musharraf', u'plot'] [u'french', u'chemist', u'nobel', u'carbon', u'danc'] [u'fruit', u'grower', u'embrac', u'sticker'] [u'fuel', u'price', u'committe', u'inspect', u'ethanol', u'plant'] [u'girl', u'tell', u'croc', u'attack'] [u'girl', u'tell', u'escap', u'croc', u'jaw'] [u'gladston', u'coal', u'port', u'expans', u'show', u'faith'] [u'goodnight'] [u'googl', u'microsoft', u'offic'] [u'goulburn', u'prepar', u'summer'] [u'govern', u'brothel', u'flip'] [u'govt', u'detail', u'indigen', u'leas', u'plan'] [u'govt', u'silenc', u'bashir', u'labor'] [u'govt', u'ask', u'collect', u'larg', u'ghost', u'net'] [u'govt', u'publicis', u'park', u'price'] [u'green', u'seek', u'inquiri', u'suppli'] [u'growth', u'slow', u'servic', u'sector'] [u'health', u'probe', u'hear', u'patient'] [u'hewitt', u'nadal', u'confirm', u'sydney', u'intl'] [u'highway', u'clear', u'truck', u'crash'] [u'case', u'set', u'legal', u'preced'] [u'hop', u'award', u'boost', u'scienc', u'teacher', u'profil'] [u'illeg', u'brothel', u'claim', u'worri', u'shepparton', u'council'] [u'independ', u'concern', u'cloud', u'militari', u'justic'] [u'indigen', u'land', u'reform', u'govt'] [u'indonesian', u'polic', u'silent', u'progress', u'bomb'] [u'indonesian', u'remand', u'custodi', u'fish', u'charg'] [u'ingal', u'hunt', u'ambros', u'panorama'] [u'injur', u'bali', u'survivor', u'reunit', u'famili'] [u'inquiri', u'clear', u'booki', u'illeg', u'betfair'] [u'rat', u'unchang'] [u'iraq', u'turn', u'constitut', u'vote', u'rule'] [u'japanes', u'win', u'court', u'case', u'shrine'] [u'jone', u'england', u'tour', u'pakistan'] [u'land', u'valuat', u'good'] [u'lara', u'get', u'green', u'light', u'sponsor', u'resolv'] [u'late', u'tanker', u'jeopardis', u'fuel', u'suppli'] [u'liber', u'continu', u'voluntari', u'vote', u'debat'] [u'lift', u'childcar', u'subsidi', u'twos'] [u'charg', u'fatal', u'melbourn', u'stab'] [u'savag', u'dog'] [u'charg', u'chainsaw', u'threat'] [u'mayor', u'say', u'bypass', u'delay', u'mean', u'road', u'death'] [u'mayor', u'urg', u'long', u'term', u'contract'] [u'mechan', u'deni', u'take', u'shortcut', u'king'] [u'meet', u'address', u'greenough', u'geraldton', u'merger'] [u'meteorologist', u'tri', u'warn', u'race', u'organis'] [u'minist', u'council', u'clash', u'silverdom', u'fund'] [u'minist', u'help', u'progress', u'woodchip', u'plan'] [u'minist', u'say', u'review', u'start', u'council', u'merger'] [u'minist', u'pulp', u'decis'] [u'mother', u'meet', u'matern', u'servic', u'worri'] [u'angri', u'highway', u'safeti', u'sign', u'vandal'] [u'back', u'council', u'develop', u'warn'] [u'murder', u'arm', u'robber', u'fight', u'stay'] [u'mysteri', u'ill', u'claim', u'live', u'toronto'] [u'nation', u'defend', u'farmer', u'river', u'salin'] [u'nauruan', u'weightlift', u'trial', u'prostitut'] [u'newcastl', u'injur', u'treat', u'singapor'] [u'frigat', u'toowoomba', u'head', u'brisban'] [u'fund', u'eas', u'public', u'hospit', u'workload'] [u'orlean', u'administr', u'cut', u'job'] [u'secur', u'year', u'phase', u'chang'] [u'prosecut', u'illeg', u'river', u'open'] [u'norco', u'consid', u'milk', u'price', u'rise'] [u'govt', u'reject', u'revenu', u'fuel'] [u'olymp', u'swim', u'coach', u'face', u'charg'] [u'onesteel', u'accus', u'bulli', u'worker'] [u'oper', u'issu', u'delay', u'dedic', u'road', u'traffic'] [u'oppn', u'call', u'public', u'debat', u'propos', u'elector'] [u'opposit', u'quiz', u'govt', u'water', u'bomber', u'reject'] [u'opposit', u'birth', u'servic', u'claim'] [u'option', u'narrow', u'upgrad'] [u'orang', u'water', u'restrict', u'scale'] [u'overhaul', u'militari', u'justic'] [u'owen', u'want', u'stay'] [u'palm', u'death', u'custodi', u'inquest', u'resum'] [u'palm', u'hear', u'adjourn'] [u'paramed', u'like', u'accept', u'offer'] [u'parole', u'plead', u'guilti', u'kill', u'cousin', u'crash'] [u'patel', u'patient', u'invit', u'submit', u'compo', u'claim'] [u'perth', u'teacher', u'scientist', u'scienc', u'prize'] [u'philippin', u'deni', u'bali', u'bomber', u'train', u'soil'] [u'plan', u'indigen', u'divers', u'centr', u'worri'] [u'polic', u'arrest', u'drug', u'theft'] [u'polic', u'arrest', u'long', u'drug', u'oper'] [u'polic', u'releas', u'long', u'weekend', u'western', u'traffic', u'figur'] [u'pollock', u'pressur', u'white'] [u'pont', u'buy', u'underdog'] [u'rare', u'kimberley', u'lamb'] [u'rescu', u'yacht', u'reach', u'east', u'coast'] [u'resid', u'concern', u'help', u'council', u'reject', u'shed', u'plan'] [u'resid', u'pluck', u'chicken', u'farm', u'land'] [u'rice', u'grower', u'support', u'restructrur', u'plan'] [u'rush', u'launch', u'heritag', u'award'] [u'saddam', u'defenc', u'team', u'money', u'lawyer'] [u'govt', u'urg', u'offer', u'fuel', u'price', u'respit'] [u'scientist', u'look', u'boost', u'reef', u'water', u'qualiti'] [u'scientist', u'work', u'pay'] [u'secur', u'firm', u'upset', u'crime', u'clean', u'snub'] [u'abus', u'survivor', u'speak', u'townsvill'] [u'abus', u'victim', u'reject', u'church', u'payout'] [u'sheep', u'meat', u'processor', u'consid', u'peta', u'talk'] [u'silvagni', u'join', u'bulldog'] [u'sister', u'citi', u'committe', u'win', u'award', u'china', u'effort'] [u'soldier', u'evict', u'ugandan', u'rebel', u'northern'] [u'southern', u'river', u'water', u'salti'] [u'space', u'trek', u'dream', u'come', u'true', u'tourist'] [u'srebrenica', u'massacr', u'list', u'name', u'troop'] [u'staff', u'cut', u'plan', u'defenc', u'command', u'centr'] [u'stan', u'downgrad', u'mexico', u'cross'] [u'stripe', u'rust', u'hit', u'grain', u'farmer'] [u'studi', u'evalu', u'pacif', u'nation', u'fund', u'demand'] [u'super', u'newcom', u'home', u'start'] [u'swimmer', u'warn', u'stinger', u'threat'] [u'tasmania', u'join', u'scheme', u'improv', u'teach', u'skill'] [u'teacher', u'speak', u'outcom', u'base', u'educ'] [u'teacher', u'stop', u'work', u'support', u'centr', u'inact'] [u'teen', u'stab', u'school', u'scuffl'] [u'teen', u'star', u'lohan', u'hospit', u'crash'] [u'telstra', u'result', u'stand', u'test', u'time', u'switkowski'] [u'thousand', u'flock', u'elmor', u'field', u'day'] [u'tilt', u'train', u'crash', u'report', u'recommend', u'speed', u'limit'] [u'toowoomba', u'nation', u'livestock', u'diseas', u'test'] [u'tourism', u'group', u'reflect', u'bali', u'blast', u'travel', u'impact'] [u'tradit', u'owner', u'allow', u'leas', u'land'] [u'traffic', u'offic', u'lose', u'licenc', u'drink', u'drive'] [u'truck', u'driver', u'charg', u'child', u'death', u'freeway'] [u'highway', u'crash'] [u'spotter', u'swap', u'tale'] [u'uniform', u'approach', u'need', u'fraud', u'cyber', u'terror'] [u'market', u'lower', u'stormi', u'trade'] [u'vandal', u'attack', u'bali', u'bomb', u'memori'] [u'upset', u'lack', u'water', u'chang', u'consult'] [u'wall', u'volatil', u'spark', u'market', u'dive'] [u'water', u'corpor', u'post', u'record', u'profit'] [u'western', u'adopt', u'tourism', u'volunt', u'plan'] [u'west', u'indi', u'hand', u'welcom', u'cash', u'boost'] [u'whitnal', u'remain', u'blue'] [u'wimmera', u'meet', u'hear', u'crop', u'fear'] [u'worker', u'tackl', u'indigen', u'substanc', u'abus'] [u'workplac', u'privaci', u'law', u'overhaul', u'recommend'] [u'zinifex', u'smelter', u'turn', u'natur'] [u'polic', u'face', u'action', u'photo', u'leak'] [u'board', u'promot', u'gallagh'] [u'aborigin', u'site', u'protect'] [u'account', u'firm', u'review', u'fund'] [u'aerodrom', u'leas', u'wont', u'extend'] [u'afghanistan', u'releas', u'elect', u'result'] [u'qaeda', u'post', u'week', u'news', u'bulletin'] [u'anderson', u'clear', u'elect', u'bribe', u'claim'] [u'anim', u'liber', u'group', u'fight', u'chicken', u'farm', u'plan'] [u'ansar', u'sunna', u'post', u'behead', u'iraqi', u'spi'] [u'apra', u'slap', u'directorship', u'chair'] [u'arrest', u'calm', u'death', u'court', u'hear'] [u'attorney', u'general', u'pledg', u'brothel', u'crackdown'] [u'stockmarket', u'follow', u'wall', u'street', u'dive'] [u'australia', u'meddl', u'bashir', u'sentenc'] [u'australian', u'market', u'plung', u'continu'] [u'author', u'probe', u'possibl', u'dump'] [u'bali', u'blast', u'survivor', u'face', u'infect', u'risk'] [u'bali', u'bomb', u'victim', u'recuper'] [u'bali', u'victim', u'honour', u'canberra'] [u'bank', u'fall', u'surrealist', u'sting', u'mastermind', u'escap'] [u'bathurst', u'practic', u'begin', u'today'] [u'beatrix', u'potter', u'farm', u'sale', u'spark', u'protest'] [u'betfair', u'defend', u'inquiri', u'evid'] [u'biofuel', u'plant', u'put', u'order', u'tonn'] [u'blast', u'near', u'iraq', u'ministri', u'kill'] [u'blue', u'chip', u'firm', u'fight', u'contract', u'secret'] [u'bonker', u'rider', u'set', u'cycl', u'record'] [u'charg', u'anim', u'cruelti', u'death'] [u'brannen', u'play', u'nude', u'photo', u'scandal'] [u'brisban', u'threat', u'eas'] [u'british', u'museum', u'free', u'return', u'indigen', u'remain'] [u'bunburi', u'hous', u'crisi', u'worsen', u'welfar'] [u'calvi', u'murder', u'trial', u'open', u'year'] [u'campaign', u'chicken', u'litter', u'power', u'station'] [u'campbel', u'book', u'coolum', u'date'] [u'campbel', u'confirm', u'coolum'] [u'cannabi', u'cash', u'seiz', u'pull'] [u'bomb', u'explod', u'lankan', u'capit'] [u'carpent', u'shortag', u'highlight', u'skill', u'crisi', u'labor'] [u'cashcard', u'index', u'rise'] [u'centacar', u'chief', u'question', u'bakhtiari', u'teen', u'critic'] [u'centrelink', u'custom', u'warn', u'expect', u'delay'] [u'centrelink', u'stop', u'work', u'caus', u'minim', u'disrupt'] [u'centrelink', u'worker', u'stop', u'work', u'negoti'] [u'chemic', u'scare', u'forc', u'evacu'] [u'child', u'critic', u'condit', u'fall'] [u'agent', u'escap', u'perform', u'review'] [u'order', u'chang', u'cloncurri', u'council'] [u'concern', u'dockland', u'surfac'] [u'council', u'order', u'reassess', u'power', u'line', u'applic'] [u'counsellor', u'offer', u'work', u'busi', u'propos'] [u'crackdown', u'plan', u'food', u'label', u'law'] [u'crew', u'battl', u'north', u'coast', u'fire'] [u'crocodil', u'victim', u'rememb', u'famili'] [u'croc', u'safari', u'rule'] [u'croc', u'fall', u'fifth', u'ladder'] [u'croc', u'studi', u'dive', u'beneath', u'surfac'] [u'cruis', u'holm', u'expect', u'babi'] [u'dadswel', u'bridg', u'fund', u'connect', u'water'] [u'debat', u'continu', u'deputi', u'mayor', u'allow'] [u'defenc', u'cutback', u'disappoint', u'mayor'] [u'disabl', u'seek', u'payment', u'prostitut', u'visit'] [u'discuss', u'begin', u'blueprint', u'bush'] [u'attack', u'prompt', u'muzzl', u'standard', u'rethink'] [u'dole', u'threat', u'rais', u'school', u'attend'] [u'doyl', u'whistleblow', u'claim'] [u'tip', u'beef', u'product', u'boost', u'sugar'] [u'driver', u'catch', u'speed', u'limit'] [u'dutch', u'govt', u'rethink', u'iraq', u'invas', u'support'] [u'ellison', u'deni', u'custom', u'ignor', u'illeg', u'fish'] [u'environment', u'group', u'aerial', u'bait'] [u'environment', u'group', u'oppos', u'arcadia', u'forest', u'log'] [u'eucalyptus', u'shoot', u'ahead', u'say', u'locat'] [u'expert', u'warn', u'bird', u'anti', u'viral', u'rush'] [u'famili', u'polic', u'leak', u'corps', u'photo'] [u'farmer', u'confid', u'salti', u'river', u'treat'] [u'farmer', u'warn', u'protect', u'stock', u'sheep', u'theft'] [u'feder', u'roddick', u'agassi', u'kooyong', u'classic'] [u'flanneri', u'warn', u'alic', u'heatwav'] [u'fonterra', u'rule', u'futur', u'restructur'] [u'food', u'wine', u'festiv'] [u'forest', u'storm', u'clean', u'top'] [u'policeman', u'consid', u'legal', u'action'] [u'policeman', u'jail', u'corrupt', u'burglari'] [u'accus', u'alleg', u'armi', u'gang', u'rape'] [u'fuel', u'shipment', u'shortag'] [u'german', u'beer', u'call', u'round'] [u'global', u'warm', u'spawn', u'femal', u'turtl', u'group'] [u'glori', u'frustrat', u'shaki', u'start', u'mcmahon'] [u'gordon', u'estat', u'meet', u'criticis'] [u'govt', u'blame', u'damn', u'glenelg', u'council', u'report'] [u'govt', u'criticis', u'croc', u'safari', u'decis'] [u'govt', u'go', u'court', u'stop', u'dolphin', u'feed'] [u'govt', u'pressur', u'gippsland', u'lake', u'entranc'] [u'govt', u'urg', u'inquiri', u'forens', u'centr'] [u'elder', u'patient', u'skill', u'need', u'report', u'say'] [u'haddin', u'readi', u'ditch', u'glove', u'chase', u'place'] [u'halatau', u'stress', u'commit'] [u'hardwar', u'store', u'owner', u'charg'] [u'helicopt', u'call', u'fight', u'brisban', u'blaze'] [u'hick', u'lawyer', u'threaten', u'legal', u'action'] [u'hiddink', u'flag', u'kewel', u'return'] [u'hill', u'defend', u'militari', u'justic', u'chang'] [u'histor', u'mine', u'build', u'add', u'heritag'] [u'homecom', u'newcastl', u'resid', u'wound', u'bali'] [u'hospit', u'lose', u'obstetrician', u'gynaecologist'] [u'huge', u'python', u'allig', u'death', u'match'] [u'hurrican', u'stan', u'death', u'toll', u'climb'] [u'immigr', u'treatment', u'solon', u'catastroph'] [u'indonesia', u'lower', u'bird', u'death', u'toll'] [u'inflat', u'worri', u'scare', u'investor'] [u'interject', u'leav', u'stott', u'despoja', u'tear'] [u'investig', u'begin', u'stab', u'incid'] [u'iran', u'accus', u'aid', u'iraq', u'insurg'] [u'iraq', u'sunni', u'threaten', u'constitut', u'boycott'] [u'irish', u'policeman', u'arrest', u'costum', u'caper'] [u'islam', u'council', u'condemn', u'law'] [u'jagger', u'dismiss', u'yoko', u'girlfriend', u'claim'] [u'jaqu', u'sign', u'worcestershir'] [u'jone', u'rule', u'defam', u'boss'] [u'land', u'council', u'welcom', u'petrol', u'sniff', u'inquiri'] [u'hand', u'hygien', u'blame', u'superbug', u'infect'] [u'leas', u'plan', u'wont', u'help', u'aborigin', u'oxfam', u'say'] [u'legal', u'technician'] [u'let', u'forum', u'yield', u'posit', u'result'] [u'process', u'train', u'product'] [u'long', u'time', u'councillor', u'retir', u'loddon', u'council'] [u'lownd', u'lead', u'bathurst', u'practic'] [u'charg', u'assault', u'girlfriend'] [u'charg', u'woman', u'assault'] [u'face', u'court', u'peirc', u'shoot'] [u'gaol', u'iron', u'attack'] [u'injur', u'polic', u'shoot'] [u'mcgrath', u'rest', u'second', u'dayer'] [u'meander', u'ahead', u'despit', u'limit', u'investor'] [u'memori', u'servic', u'hold', u'bali', u'victim'] [u'mildura', u'psych', u'pump', u'reopen'] [u'oper', u'reduct', u'nativ', u'timber'] [u'mine', u'compani', u'urg', u'address', u'skill', u'shortag'] [u'minist', u'call', u'great', u'lake', u'council', u'unit'] [u'minist', u'refus', u'respons', u'solon'] [u'miss', u'coupl', u'bodi', u'identifi', u'bali'] [u'miss', u'south', u'hedland'] [u'restat', u'govt', u'commit', u'wind', u'farm'] [u'mother', u'complain', u'astronaut', u'meet'] [u'move', u'reduc', u'highway', u'road', u'kill'] [u'muslim', u'leader', u'anti', u'terror', u'law'] [u'muslim', u'leader', u'support', u'anti', u'terror', u'legisl'] [u'nation', u'want', u'free', u'region', u'transport', u'comm'] [u'nativ', u'titl', u'deal', u'clear', u'irrig', u'scheme'] [u'nato', u'send', u'extra', u'troop', u'afghanistan'] [u'newcastl', u'bali', u'bomb', u'victim', u'improv'] [u'giant', u'coach', u'look', u'forward', u'season'] [u'guidelin', u'pave', u'wind', u'farm'] [u'land', u'right', u'law', u'littl', u'benefit'] [u'nickel', u'refineri', u'get', u'major', u'project', u'status'] [u'nikol', u'clear', u'ride', u'melbourn'] [u'question', u'rational', u'land', u'chang'] [u'north', u'coast', u'nation', u'park', u'prepar', u'season'] [u'offic', u'recognis', u'braveri'] [u'olymp', u'boss', u'sue', u'jone', u'defam'] [u'kill', u'western', u'helicopt', u'crash'] [u'onesteel', u'case', u'answer', u'dust'] [u'organis', u'hope', u'attend', u'launceston'] [u'head', u'cattl', u'regist'] [u'overdu', u'yacht'] [u'owner', u'welcom', u'recherch', u'log', u'approv'] [u'pacif', u'nation', u'set', u'rail', u'shutdown', u'deadlin'] [u'palestinian', u'investig', u'arafat', u'death'] [u'palm', u'island', u'hopeless', u'dysfunct'] [u'parliament', u'tell', u'brain', u'cancer', u'test', u'bungl'] [u'parmalat', u'resum', u'trade', u'milan', u'stock', u'market'] [u'patel', u'face', u'manslaught', u'charg'] [u'philippoussi', u'win'] [u'plan', u'applic', u'process', u'chang', u'welcom'] [u'playstat', u'modif', u'rule', u'legal'] [u'polic', u'escap', u'injuri', u'melbourn', u'blast'] [u'polic', u'investig', u'berri', u'theft'] [u'policeman', u'order', u'albani'] [u'polic', u'headquart'] [u'polic', u'probe', u'blaze', u'day'] [u'polic', u'rule', u'terror', u'blaze'] [u'polic', u'unabl', u'identifi', u'presum', u'bomber'] [u'pollock', u'demand', u'improv', u'world'] [u'power', u'montgomeri'] [u'princ', u'upgrad', u'vital', u'south', u'coast'] [u'produc', u'ralli', u'natur', u'resourc'] [u'puerta', u'deni', u'take', u'ban', u'drug'] [u'timber', u'compani', u'receiv', u'approv'] [u'question', u'rais', u'lack', u'report'] [u'redback', u'smart', u'titl', u'quest'] [u'report', u'put', u'ruddock', u'vanston'] [u'resid', u'urg', u'pressur', u'govt', u'rural', u'medic'] [u'retir', u'villag', u'propos', u'park'] [u'revamp', u'communiti', u'centr', u'open'] [u'review', u'criticis', u'alcohol', u'plan', u'implement'] [u'review', u'prompt', u'rule', u'polic', u'pursuit'] [u'richmond', u'pull', u'fevola'] [u'rural', u'parent', u'meet', u'educ', u'confer'] [u'salmonella', u'outbreak', u'make'] [u'second', u'drought', u'support', u'worker', u'appoint', u'region'] [u'sell', u'anti', u'terror', u'law', u'muslim'] [u'shane', u'watson', u'shaun', u'pollock', u'ricki', u'pont'] [u'shepparton', u'make', u'plan', u'emerg', u'situat'] [u'shire', u'toughen', u'water', u'restrict'] [u'compani', u'includ', u'secur', u'upgrad'] [u'stanhop', u'back', u'prison', u'right', u'vote'] [u'stanhop', u'unfaz', u'report', u'critic'] [u'state', u'leader', u'attend', u'bali', u'bomb', u'prayer', u'servic'] [u'kilda', u'improv', u'injuri', u'manag'] [u'suicid', u'victim', u'father', u'attack', u'militari', u'justic'] [u'surgeri', u'patient', u'reject', u'payment', u'offer'] [u'swimmer', u'urg', u'stay', u'patrol', u'area'] [u'sydney', u'dancer', u'expel', u'china'] [u'teen', u'charg', u'high', u'school', u'stab'] [u'thoma', u'adelaid', u'launch', u'airport'] [u'race', u'rooney', u'boot'] [u'tourism', u'spend', u'outdo', u'internet', u'mobil', u'phone'] [u'speci', u'fli', u'reptil', u'china'] [u'upstream', u'rain', u'boost', u'irrig', u'alloc'] [u'court', u'urg', u'chang', u'suicid'] [u'senat', u'move', u'prison', u'tortur'] [u'valencia', u'harvest', u'add', u'suppli', u'woe'] [u'vanston', u'defend', u'land', u'right', u'chang'] [u'vanston', u'stay', u'despit', u'solon', u'case'] [u'victoria', u'budget', u'surplus', u'exceed', u'expect'] [u'victor', u'peirc', u'jnrs', u'shoot', u'domest', u'matter'] [u'labor', u'begin', u'search', u'presid'] [u'warfar', u'confer', u'tell', u'import'] [u'western', u'power', u'deni', u'problem', u'weather', u'gear'] [u'white', u'hous', u'worker', u'arrest', u'spi'] [u'winton', u'showground', u'upgrad'] [u'yeppoon', u'hospit', u'build', u'site'] [u'hunger', u'strike', u'guantanamo'] [u'adelaid', u'open', u'long', u'await', u'airport'] [u'alic', u'protest', u'continu', u'dump', u'fight'] [u'alleg', u'gang', u'rapist', u'bail', u'revok'] [u'qaeda', u'post', u'internet'] [u'argentinian', u'tenni', u'rock', u'drug', u'claim'] [u'armi', u'recruit', u'interview', u'wagga', u'rape', u'claim'] [u'arthur', u'lose', u'japan'] [u'aussi', u'golf', u'trio', u'place'] [u'australia', u'bat', u'dockland'] [u'australia', u'cruis', u'huge', u'total'] [u'australian', u'develop', u'vaccin', u'prevent', u'cervic'] [u'australia', u'rack', u'huge', u'total'] [u'author', u'investig', u'salmonella', u'outbreak'] [u'bali', u'attack', u'suspect', u'arrest', u'java', u'report'] [u'bali', u'bomber', u'remain', u'mysteri'] [u'bali', u'drug', u'accus', u'alleg', u'breach'] [u'bali', u'survivor', u'progress', u'pleas', u'medic'] [u'bali', u'victim', u'famili', u'thank', u'support'] [u'bass', u'coast', u'consid', u'afford', u'hous'] [u'bathurst', u'build', u'qualifi'] [u'beatti', u'defend', u'alcohol', u'manag', u'plan'] [u'beef', u'processor', u'consid', u'murgon', u'oper'] [u'mitsubishi', u'build', u'malaysian', u'smelter'] [u'name', u'move', u'trade'] [u'boswel', u'dismiss', u'resign', u'rumour'] [u'bracken', u'swing', u'worcestershir'] [u'broomehil', u'tambellup', u'shire', u'share'] [u'bus', u'replac', u'train', u'line', u'close'] [u'bush', u'highlight', u'success', u'stop', u'qaeda'] [u'busi', u'confid', u'benefit', u'nativ', u'titl'] [u'camplin', u'injur'] [u'part', u'maker', u'lose', u'job'] [u'carragh', u'swallow', u'pride', u'cole', u'vacanc'] [u'carter', u'black', u'boost'] [u'centrelink', u'back', u'scheme', u'encourag', u'better', u'school'] [u'centrelink', u'union', u'websit', u'breach'] [u'cervic', u'cancer', u'vaccin', u'creat'] [u'charg', u'lay', u'teen'] [u'chopper', u'pilot', u'disorient', u'fatal', u'crash'] [u'claim', u'breach'] [u'claus', u'set', u'santa', u'standard'] [u'cocain', u'seri', u'artist', u'jail', u'drug', u'import'] [u'communiti', u'continu', u'fight', u'toxic', u'wast'] [u'communiti', u'radio', u'station', u'prepar', u'begin'] [u'concern', u'rais', u'chang', u'lime', u'facil'] [u'concern', u'rais', u'matern', u'unit', u'closur'] [u'confer', u'focus'] [u'congo', u'soldier', u'face', u'mass', u'rape', u'trial'] [u'costello', u'odd', u'inflat', u'risk'] [u'councillor', u'rais', u'concern', u'lyon', u'road'] [u'council', u'want', u'penalti', u'ship', u'dump', u'wast'] [u'crew', u'fight', u'fire'] [u'crew', u'work', u'contain', u'north', u'coast', u'bushfir'] [u'crude', u'drop', u'cooler', u'demand'] [u'csiro', u'help', u'develop', u'standard'] [u'hostel', u'open', u'bed', u'age', u'care'] [u'damag', u'yacht', u'port'] [u'david', u'frost', u'join', u'jazeera'] [u'davi', u'sign', u'year', u'swan'] [u'dedic', u'depart', u'handl', u'water', u'issu'] [u'democrat', u'question', u'rann', u'terror', u'law', u'support'] [u'dentist', u'shortag', u'expect'] [u'dfat', u'fault', u'solon', u'case', u'labor'] [u'world'] [u'doyl', u'push', u'deer', u'park', u'bypass'] [u'driver', u'face', u'manslaught', u'charg', u'man', u'death'] [u'dutch', u'reprimand', u'foreign', u'minist', u'iraq', u'slip'] [u'elbaradei', u'win', u'nobel', u'peac', u'prize'] [u'expert', u'appoint', u'probe', u'armstrong', u'dope', u'claim'] [u'emerg', u'interrupt', u'brisban', u'flight'] [u'farmer', u'small', u'busi', u'time', u'qualifi'] [u'fighter', u'remov', u'brisban', u'airport', u'runway'] [u'firefight', u'brace', u'tough', u'condit'] [u'drug', u'drive', u'case', u'hear'] [u'flintoff', u'dravid', u'dockland'] [u'citi', u'council', u'director', u'accept', u'settlement'] [u'offic', u'procur', u'polic', u'info'] [u'forum', u'tackl', u'mental', u'health', u'issu'] [u'fourth', u'juvenil', u'prison', u'escape', u'catch'] [u'task', u'forc', u'shift', u'focus', u'arthur', u'lake'] [u'frog', u'sniff', u'scientist', u'nobel'] [u'gilchrist', u'depart', u'quickfir', u'centuri'] [u'gilchrist', u'lead', u'australia', u'seri'] [u'govt', u'give', u'geraldton', u'boat', u'lifter'] [u'govt', u'share', u'blame', u'solon', u'case', u'minor', u'parti'] [u'grain', u'council', u'play', u'canola'] [u'great', u'white', u'shark', u'lap', u'indian', u'ocean'] [u'green', u'group', u'seek', u'live', u'river', u'status', u'dali'] [u'green', u'step', u'campaign', u'countrylink', u'chang'] [u'gunn', u'pulp', u'give', u'control', u'action', u'status'] [u'steal', u'warfar', u'confer'] [u'health', u'servic', u'make', u'plan', u'better', u'budget'] [u'hiddink', u'rest', u'socceroo', u'star', u'away', u'qualifi'] [u'high', u'court', u'justic', u'call', u'judg'] [u'howard', u'deni', u'forestri', u'union', u'deal', u'keep', u'secret'] [u'howard', u'deni', u'negoti', u'union', u'boss'] [u'howard', u'grim', u'solon', u'report'] [u'howard', u'see', u'inflat', u'threat', u'fuel', u'price'] [u'iaea', u'chief', u'elbaradei', u'win', u'nobel', u'peac', u'prize'] [u'iemma', u'pledg', u'support', u'bali', u'victim', u'children'] [u'indigen', u'player', u'head', u'perth', u'basketbal'] [u'indonesia', u'review', u'automat', u'jail', u'term', u'cut'] [u'inquiri', u'recommend', u'investig'] [u'crime', u'link', u'fear', u'trigger', u'raid'] [u'iran', u'interfer', u'iraq', u'claim', u'baseless'] [u'iraqi', u'raid', u'target', u'anti', u'british', u'fighter'] [u'iraqi', u'voter', u'sneak', u'peek', u'draft', u'constitut'] [u'irrig', u'water', u'restrict', u'lift'] [u'irwin', u'influenc', u'stop', u'croc', u'safari', u'say'] [u'israel', u'ban', u'palestinian', u'human', u'shield'] [u'kangaroo', u'hopper', u'badg', u'kisser', u'place'] [u'blaze', u'claim', u'batman', u'hous'] [u'labor', u'opt', u'pittwat', u'elect'] [u'lara', u'kalli', u'world', u'slide'] [u'bogong', u'bogong', u'parliament'] [u'local', u'govt', u'associ', u'wari', u'council', u'amalgam'] [u'lownd', u'fire', u'bathurst', u'practic'] [u'lownd', u'sizzl', u'bathurst'] [u'lownd', u'throw', u'bathurst', u'gauntlet'] [u'shift', u'broom', u'detent', u'camp', u'unfair'] [u'mango', u'mad', u'grip', u'brisban', u'market'] [u'plead', u'guilti', u'boy', u'manslaught'] [u'recov', u'cliff', u'fall'] [u'mayor', u'warn', u'york', u'subway', u'threat'] [u'mcgee', u'answer', u'charg', u'protest'] [u'medic', u'program', u'lithgow', u'doctor'] [u'meyer', u'aim', u'bronco', u'heartbreak'] [u'migrat', u'endang', u'trade', u'victim'] [u'mine', u'compani', u'begin', u'pilbara', u'iron'] [u'minist', u'check', u'cultur', u'centr', u'progress'] [u'minor', u'muslim', u'target', u'pakistan', u'attack'] [u'moorabool', u'want', u'toxic', u'wast', u'transport'] [u'launceston', u'salmonella', u'case', u'confirm'] [u'renew', u'fuel', u'compani', u'seek', u'list'] [u'mottram', u'aim', u'commonwealth', u'gold'] [u'mourner', u'tribut', u'teen', u'bali', u'bomb', u'victim'] [u'call', u'action', u'stop', u'petrol', u'theft'] [u'unmov', u'hospit', u'site', u'critic'] [u'nation', u'concern', u'elector', u'boundari', u'chang'] [u'nation', u'agre', u'climat', u'chang', u'meet', u'date'] [u'coeliac', u'diseas', u'treatment', u'easi', u'digest'] [u'resort', u'plan', u'anna'] [u'nigerian', u'rebel', u'leader', u'face', u'treason', u'charg'] [u'note', u'philanthropist', u'jail', u'fraud'] [u'brace', u'bushfir', u'season'] [u'nation', u'netbal', u'final'] [u'govt', u'negoti', u'land', u'owner'] [u'cowboy', u'immortalis', u'reef', u'name'] [u'boost', u'subway', u'secur', u'terror', u'threat', u'doubt'] [u'ombudsman', u'reveal', u'wrong', u'detent', u'case'] [u'ombudsman', u'urg', u'improv', u'watch', u'hous', u'surveil'] [u'oper', u'rule', u'tunnel', u'toll'] [u'outback', u'week', u'idea', u'gain', u'support'] [u'pakistan', u'hotel', u'brace', u'barmi', u'armi', u'invas'] [u'parent', u'push', u'school'] [u'peac', u'prize', u'shoot', u'elbaradei'] [u'pickett', u'head', u'demon', u'motlop', u'power'] [u'reject', u'call', u'vanston', u'sack'] [u'polic', u'handcuff', u'bodi', u'iraq'] [u'polic', u'investig', u'bash', u'death'] [u'policeman', u'death', u'command'] [u'polic', u'chopper', u'crash', u'victim'] [u'polic', u'pursu', u'pimpli', u'popsicl', u'pincher'] [u'polic', u'road', u'blitz', u'result', u'anger', u'polic'] [u'polic', u'seek', u'occup', u'fatal', u'crash'] [u'polic', u'union', u'meet', u'combat', u'attack'] [u'premier', u'dismiss', u'concern', u'tree', u'clear'] [u'princess', u'portrait', u'unveil'] [u'princesss', u'portrait', u'hang', u'canberra', u'galleri'] [u'prison', u'procedur', u'defend', u'birni', u'suicid'] [u'privat', u'guard', u'bolster', u'game', u'secur'] [u'produc', u'recruit', u'fight', u'exot', u'diseas'] [u'program', u'studi', u'help', u'curb', u'unemploy', u'rate'] [u'properti', u'break', u'record', u'price', u'pay', u'acr'] [u'push', u'continu', u'water', u'fluorid'] [u'raikkonen', u'engin', u'failur', u'japan'] [u'rain', u'allow', u'irrig', u'receiv', u'entitl'] [u'cross', u'confirm', u'guantanamo', u'hunger', u'strike'] [u'report', u'look', u'boost', u'indigen', u'doctor', u'number'] [u'revok', u'patel', u'licenc', u'appropri'] [u'plane', u'make', u'emerg', u'land'] [u'roar', u'marin', u'stalem', u'brisban'] [u'roar', u'gain', u'advantag', u'heat'] [u'robot', u'fish', u'caus', u'splash'] [u'erupt', u'howard', u'forest', u'deal'] [u'rspca', u'open', u'talk', u'industri'] [u'move', u'limit', u'game', u'venu', u'cash', u'withdraw'] [u'school', u'expel', u'children', u'author', u'crap', u'fart'] [u'scientist', u'seek', u'pedestrian', u'risk', u'warn'] [u'search', u'begin', u'britain', u'ugliest', u'veget'] [u'search', u'continu', u'miss', u'wollongong', u'girl'] [u'serial', u'killer', u'commit', u'suicid', u'jail'] [u'shoulder', u'surgeri', u'bring', u'good', u'news', u'tait'] [u'site', u'broom', u'anglican', u'school'] [u'south', u'american', u'scrambl', u'world', u'place'] [u'south', u'west', u'water', u'restrict', u'lift'] [u'stain', u'glass', u'window', u'unveil', u'rememb'] [u'state', u'forest', u'announc', u'surpris', u'landown'] [u'state', u'fund', u'food', u'label', u'chang'] [u'state', u'rule', u'gambl', u'venu'] [u'state', u'wont', u'receiv', u'extra', u'fund', u'food'] [u'stock', u'market', u'slump', u'continu'] [u'stand', u'asid', u'hospit', u'offici', u'evid'] [u'studi', u'call', u'wheat', u'industri', u'revamp'] [u'success', u'hole', u'better'] [u'talk', u'begin', u'crime', u'prevent', u'strategi'] [u'tamworth', u'countrylink', u'staff', u'number'] [u'polic', u'worri', u'enforc', u'brothel'] [u'teenag', u'plead', u'guilti', u'pedestrian', u'death'] [u'thiev', u'culcairn', u'footbal', u'club'] [u'thousand', u'flee', u'chines', u'flood'] [u'contractor', u'highway', u'upgrad'] [u'dead', u'victorian', u'crash'] [u'toxic', u'dump', u'plan', u'pose', u'littl', u'risk', u'studi'] [u'truck', u'driver', u'injur', u'crash'] [u'quiz', u'melbourn'] [u'puerta', u'lose', u'arthur', u'win', u'japan'] [u'unhappi', u'ciss', u'plan', u'liverpool', u'exit'] [u'union', u'confid', u'worker', u'wont', u'quit', u'face', u'major'] [u'union', u'warn', u'restrict', u'build', u'site', u'access'] [u'union', u'want', u'driver', u'fatigu', u'report', u'recommend'] [u'unit', u'hope', u'protect', u'unbeaten', u'start'] [u'unit', u'play', u'rech', u'sydney'] [u'medic', u'board', u'revok', u'patel', u'licenc'] [u'offer', u'bali', u'bomb', u'suspect'] [u'vail', u'tackl', u'subsidi', u'trade', u'talk'] [u'nistelrooy', u'reprimand', u'attack', u'team'] [u'vaughan', u'demand', u'victori', u'pakistan', u'india'] [u'wall', u'experi', u'fall'] [u'stockpil', u'drug'] [u'wide', u'busi', u'produc', u'akoya', u'pearl'] [u'william', u'delight', u'recruit'] [u'wind', u'fuel', u'bushfir', u'concern'] [u'woman', u'take', u'hospit', u'drink', u'spike'] [u'worker', u'adjust', u'power', u'line', u'protect', u'eagl', u'nest'] [u'world', u'batsmen', u'look', u'aton'] [u'yeppoon', u'hospit', u'decis', u'welcom'] [u'cricket', u'magazin'] [u'trade', u'week', u'movement'] [u'qaeda', u'letter', u'reveal', u'concern', u'say'] [u'anti', u'nuclear', u'candid', u'criticis', u'nobel', u'iaea'] [u'australian', u'give', u'chariti'] [u'bailey', u'win', u'dragon'] [u'bali', u'bomb', u'victim', u'bodi', u'fli', u'home'] [u'bali', u'mastermind', u'narrowli', u'evad', u'captur'] [u'bali', u'polic', u'reissu', u'photo', u'bomber'] [u'bangladesh', u'flood', u'kill', u'damag', u'crop'] [u'bank', u'warn', u'withdraw', u'limit'] [u'beachley', u'malibu'] [u'borneo', u'veteran', u'hold', u'reunion'] [u'georg', u'arrest', u'drug', u'charg'] [u'british', u'firm', u'fin', u'hatfield', u'train', u'crash'] [u'bull', u'celebr', u'hape', u'glori'] [u'businessman', u'offer', u'land', u'sweeten', u'develop', u'deal'] [u'bypass', u'fund', u'hop', u'focus', u'costello'] [u'cairn', u'break', u'duck'] [u'call', u'petrol', u'avoid', u'tourism', u'slump'] [u'camplin', u'wont', u'injuri'] [u'cayless', u'tahu', u'name', u'eel', u'best'] [u'clijster', u'blow', u'chanc', u'clinch', u'spot'] [u'cole', u'withdraw', u'credit', u'card'] [u'committe', u'chairman', u'say', u'uranium', u'safeti'] [u'confus', u'desalin', u'plant', u'environ'] [u'costello', u'ask', u'dump', u'tax'] [u'crew', u'battl', u'fire', u'wind', u'gust', u'intensifi'] [u'croat', u'donat', u'blood', u'footbal', u'ticket'] [u'cum', u'break', u'year', u'group', u'drought'] [u'deer', u'park', u'bypass', u'ahead'] [u'driver', u'licenc', u'fine', u'payment', u'blitz'] [u'earthquak', u'rock', u'indian', u'subcontin'] [u'eriksson', u'hous', u'vandal'] [u'offer', u'emerg', u'quak'] [u'farmer', u'urg', u'look', u'locust', u'hatch'] [u'favourit', u'domin'] [u'feder', u'govt', u'fund', u'heritag', u'project'] [u'crew', u'brace', u'brisban', u'flare'] [u'fugit', u'bali', u'polic'] [u'gilchrist', u'hail', u'form', u'revers'] [u'glori', u'trounc', u'jet', u'newcastl'] [u'greek', u'land', u'registri', u'safeguard', u'expat', u'pension'] [u'hacker', u'jail', u'global', u'worm'] [u'health', u'servic', u'investig', u'launceston', u'salmonella'] [u'hospit', u'record', u'boost', u'elect', u'surgeri', u'number'] [u'hospit', u'tighten', u'check', u'babi'] [u'india', u'world'] [u'interview', u'andrew', u'symond'] [u'interview', u'craig', u'lownd'] [u'investor', u'murdoch', u'poison', u'pill'] [u'chang', u'extrem', u'divis'] [u'islam', u'council', u'chief', u'deni', u'split', u'terror'] [u'take', u'drug', u'moss', u'critic', u'robbi', u'william'] [u'time', u'vengeanc', u'eriksson', u'tell', u'england'] [u'labor', u'seek', u'review', u'bali', u'case'] [u'lawyer', u'deni', u'deal', u'sign', u'return', u'solon'] [u'lownd', u'grab', u'bathurst', u'pole'] [u'mcgrath', u'return', u'katich', u'doubt'] [u'minist', u'say', u'mistak', u'tunnel', u'deal'] [u'mobil', u'phone', u'fest', u'celebr', u'small', u'screen', u'cinema'] [u'monti', u'lead', u'wood', u'applebi', u'lurk'] [u'moor', u'hop', u'world', u'play', u'off'] [u'fear', u'dead', u'quak'] [u'morocco', u'accus', u'dump', u'immigr'] [u'muslim', u'refer', u'group', u'split', u'terror', u'law'] [u'nation', u'galleri', u'staff', u'weigh', u'option'] [u'adelaid', u'airport', u'open', u'public', u'view'] [u'newcastl', u'famili', u'tribut', u'bali', u'victim'] [u'york', u'defend', u'terror', u'alert'] [u'convict', u'kangaroo', u'cull', u'trespass'] [u'crown', u'nation', u'netbal', u'champ'] [u'complet', u'pastor', u'industri', u'survey'] [u'offici', u'step', u'secur'] [u'opposit', u'vow', u'maintain', u'fight'] [u'parmalat', u'share', u'slump', u'strong', u'launch'] [u'patterson', u'accus', u'state', u'fail', u'problem'] [u'peopl', u'power', u'secur', u'dolphin', u'feed'] [u'pepper', u'spray', u'blame', u'fight'] [u'pietersen', u'doubt', u'final', u'game'] [u'pietersen', u'scan', u'hamstr'] [u'polic', u'work', u'lead', u'rare', u'paint', u'discoveri'] [u'politician', u'hand', u'dirti', u'redfern'] [u'bag', u'order', u'camel', u'beach', u'rid'] [u'power', u'restor', u'upper', u'eyr', u'peninsula'] [u'premier', u'await'] [u'psychic', u'seek', u'reward', u'saddam', u'captur'] [u'raaf', u'apologis', u'emerg', u'land'] [u'rain', u'bring', u'relief', u'farmer'] [u'ralf', u'put', u'toyota', u'pole', u'japan'] [u'ranger', u'snatch', u'go', u'away', u'present'] [u'rann', u'downplay', u'strong', u'opinion', u'poll', u'show'] [u'rawl', u'look', u'fresh', u'start'] [u'romania', u'detect', u'bird', u'case'] [u'royal', u'hobart', u'accredit', u'threat'] [u'schumach', u'hit', u'wall', u'suzuka'] [u'score', u'fear', u'dead', u'pakistan', u'quak'] [u'scud', u'french', u'sojourn'] [u'brace', u'bushfir'] [u'sever', u'storm', u'hit'] [u'sixer', u'look', u'straight'] [u'solon', u'lawyer', u'deni', u'deal'] [u'state', u'territori', u'leader', u'fight', u'law'] [u'strong', u'quak', u'rock', u'indian', u'subcontin'] [u'strong', u'visitor', u'turnout', u'launceston'] [u'sunni', u'discuss', u'boycott', u'iraqi', u'vote'] [u'timber', u'yard', u'caus', u'damag'] [u'total', u'ban', u'region'] [u'tropic', u'storm', u'devast', u'central', u'america'] [u'union', u'wari', u'safeguard'] [u'union', u'urg', u'legal', u'action', u'centrelink'] [u'soldier', u'kill', u'iraq', u'offens'] [u'stock', u'creep', u'higher', u'job', u'data'] [u'welcom', u'elbaradei', u'peac', u'prize'] [u'victim', u'regret', u'birni', u'wasnt', u'execut'] [u'victim', u'pleas', u'patel', u'licenc', u'revok'] [u'wenger', u'deni', u'henri', u'rift'] [u'world', u'coach', u'defend', u'super', u'seri'] [u'airport', u'termin', u'evacu', u'white', u'powder'] [u'airport', u'termin', u'reopen', u'powder', u'scare'] [u'applebi', u'chanc', u'californian'] [u'armi', u'engin', u'tasmania', u'relief', u'effort'] [u'atm', u'need', u'pub', u'club', u'say'] [u'australia', u'close', u'clean', u'sweep'] [u'australian', u'wicket', u'tumbl'] [u'australia', u'romp', u'clean', u'sweep'] [u'bali', u'bomb', u'victim', u'leav', u'newcastl', u'hospit'] [u'bali', u'victim', u'bodi', u'fli', u'sydney'] [u'beckham', u'see', u'england', u'hang'] [u'bronco', u'enni', u'second', u'attempt'] [u'campaign', u'aim', u'stop', u'driver', u'mobil', u'phone'] [u'canin', u'casanova', u'catcher', u'busi'] [u'child', u'abus', u'support', u'group', u'join', u'burni'] [u'costa', u'rica', u'blank', u'secur', u'world', u'place'] [u'crew', u'battl', u'cabooltur', u'pine', u'plantat', u'blaze'] [u'crew', u'continu', u'fight', u'blaze'] [u'cross', u'citi', u'tunnel', u'opposit', u'say'] [u'crowd', u'seek', u'relief', u'beach', u'high', u'temp'] [u'boss', u'rule', u'bird', u'windfal'] [u'death', u'toll', u'quak', u'pass', u'offici'] [u'docker', u'eagl', u'london'] [u'famili', u'appeal', u'help', u'sydney', u'murder'] [u'favourit', u'domin'] [u'firefight', u'control', u'brisban', u'blaze'] [u'threat', u'eas'] [u'fishermen', u'apprehend', u'kimberley', u'coast'] [u'british', u'hurt', u'afghan', u'suicid', u'attack'] [u'global', u'warm', u'satellit', u'crash', u'ocean'] [u'googong', u'boat', u'ramp', u'reopen'] [u'govt', u'soften', u'packag', u'combet', u'say'] [u'helicopt', u'call', u'battl', u'blaze'] [u'hop', u'find', u'miss', u'fisherman', u'fade', u'polic'] [u'hussein', u'beat', u'vega'] [u'indian', u'offer', u'quak', u'pakistan'] [u'dri', u'nativ', u'titl', u'deal'] [u'interview', u'ricki', u'pont', u'adam', u'gilchrist', u'shane'] [u'iran', u'say', u'nuclear', u'warhead', u'alleg'] [u'want', u'australia', u'freddi', u'watson'] [u'labor', u'back', u'away', u'tighter', u'uranium', u'mine'] [u'lownd', u'confid', u'ahead', u'bathurst'] [u'lynx', u'open', u'account', u'boomer', u'flame'] [u'open', u'christma'] [u'martyn', u'clark', u'promot'] [u'mudslid', u'buri', u'guatemala'] [u'muslim', u'parti', u'back', u'sentenc', u'cleric', u'bashir'] [u'care', u'place', u'sydney', u'melbourn'] [u'guard', u'lead', u'africa', u'world', u'charg'] [u'runner', u'win', u'burni'] [u'warn', u'complac', u'drought'] [u'opposit', u'call', u'sport', u'oval', u'reopen'] [u'opposit', u'criticis', u'regress', u'land'] [u'opposit', u'demand', u'guarante', u'worker'] [u'guatemalan', u'miss', u'flood', u'kill'] [u'dead', u'south', u'asian', u'quak'] [u'pakistani', u'kashmir', u'worst', u'quak', u'agenc'] [u'perth', u'stage', u'intern', u'race'] [u'unveil', u'fair', u'plan'] [u'pont', u'hit', u'australia', u'consolid'] [u'propos', u'plan', u'unveil'] [u'quak', u'death', u'toll', u'continu', u'rise'] [u'quak', u'kill', u'militari', u'say'] [u'quak', u'toll', u'rise'] [u'raikkonen', u'win', u'japanes', u'thriller', u'webber', u'fourth'] [u'report', u'link', u'unemploy', u'mental', u'health', u'problem'] [u'resort', u'propos', u'riski', u'conserv', u'group', u'say'] [u'robot', u'vehicl', u'conquer', u'desert', u'race'] [u'rower', u'miss', u'yarra', u'river'] [u'ruddock', u'defend', u'relationship', u'centr', u'propos'] [u'salmonella', u'outbreak', u'time', u'warn'] [u'search', u'continu', u'fisherman', u'wash', u'rock'] [u'search', u'miss', u'fisherman', u'call'] [u'search', u'miss', u'rower', u'call'] [u'senat', u'criticis', u'school', u'fund', u'wait'] [u'busi', u'adelaid', u'storm'] [u'shooter', u'say', u'bag', u'urban', u'legend', u'puma'] [u'european', u'team'] [u'skaif', u'bring', u'holden', u'home', u'bathurst'] [u'socceroo', u'play', u'oppon', u'unknown'] [u'sting', u'beat', u'sapphir', u'nation', u'soccer', u'titl'] [u'sydney', u'snatch', u'close', u'unit'] [u'hold', u'attack', u'plan', u'report'] [u'reckon', u'polic', u'whistleblow'] [u'thousand', u'compet', u'hour', u'bike', u'challeng'] [u'thousand', u'fear', u'dead', u'quak'] [u'thousand', u'turn', u'visit', u'airport', u'termin'] [u'todd', u'carv', u'malibu', u'drought', u'break'] [u'trade', u'deleg', u'prepar', u'china', u'trip'] [u'turkey', u'take', u'action', u'bird', u'case'] [u'vaidisova', u'win', u'japan', u'open'] [u'plan', u'life', u'ghost', u'town'] [u'watson', u'aussi', u'clean', u'sweep'] [u'win', u'taipan', u'breaker'] [u'fear', u'dead', u'quak'] [u'abolish', u'justic', u'depart', u'inquiri', u'tell'] [u'adelaid', u'festiv', u'program', u'releas'] [u'ask', u'court', u'dismiss', u'bali', u'action'] [u'pour', u'pakistan', u'wake', u'earthquak'] [u'label', u'plan', u'danger'] [u'ancient', u'pregnant', u'rhino', u'unearth'] [u'bali', u'blast', u'victim', u'leav', u'hospit'] [u'anti', u'terror', u'law', u'attack', u'person', u'freedom'] [u'appeal', u'return', u'olymp', u'torch', u'break'] [u'argentina', u'sink', u'peru', u'bolivia', u'hold', u'brazil'] [u'armstrong', u'detractor', u'pedal'] [u'kill', u'afghan', u'blast'] [u'aussi', u'davi', u'fire', u'castleford', u'super', u'leagu'] [u'aust', u'militari', u'stretch', u'report', u'find'] [u'australia', u'promis', u'quak', u'relief'] [u'weather', u'stop', u'manangatang'] [u'bali', u'bomb', u'victim', u'condit', u'improv'] [u'bali', u'protest', u'urg', u'execut', u'bomber'] [u'beatti', u'play', u'wild', u'river', u'protect', u'fear'] [u'best', u'drought', u'figur', u'year'] [u'bickerton', u'end', u'long', u'wait', u'victori'] [u'bradman', u'foundat', u'chip', u'indian'] [u'bradtk', u'reach', u'mileston'] [u'bronco', u'deni', u'bennett', u'untouch'] [u'bronco', u'unveil', u'coach', u'team'] [u'bulldog', u'sign', u'veteran', u'grant'] [u'busi', u'chamber', u'get', u'presid'] [u'busi', u'seek', u'compo', u'blackout', u'loss'] [u'busi', u'lobbi', u'oppos', u'rise', u'health'] [u'businessmen', u'work', u'safeti', u'award'] [u'busi', u'seek', u'work', u'govt', u'dolphin'] [u'cairn', u'doctor', u'consid', u'propos'] [u'hec', u'chang', u'stem', u'skill', u'drift'] [u'camplin', u'undergo', u'knee', u'surgeri'] [u'centrelink', u'staff', u'hold', u'stop', u'work', u'meet'] [u'centrelink', u'worker', u'walk'] [u'chappel', u'want', u'tendulkar', u'mentor'] [u'chariti', u'launch', u'appeal', u'quak', u'homeless'] [u'children', u'treat', u'suspect', u'meningococc', u'case'] [u'chilli', u'condit', u'ideal', u'good', u'night', u'sleep'] [u'chopper', u'servic', u'continu', u'push', u'govt', u'support'] [u'begin', u'probe', u'gold', u'coast', u'council'] [u'coca', u'cola', u'come', u'famili'] [u'concern', u'emerg', u'access', u'waterfront'] [u'consortium', u'hop', u'futur', u'expans'] [u'coraki', u'push', u'youth', u'liaison', u'offic'] [u'coron', u'demand', u'offici', u'petrol', u'sniff'] [u'coron', u'investig', u'nurs', u'home', u'death'] [u'council', u'crack', u'yacht', u'club', u'drink'] [u'council', u'decid', u'hous', u'subdivis'] [u'dali', u'gift', u'wood', u'titl', u'play'] [u'darfur', u'rebel', u'releas', u'hostag'] [u'dartmoor', u'homestead', u'win', u'tourism', u'award'] [u'davenport', u'claim', u'titl'] [u'dealer', u'warn', u'port', u'kembla', u'rais', u'price'] [u'death', u'toll', u'central', u'american', u'flood', u'climb'] [u'death', u'toll', u'hit', u'guatemala'] [u'disciplinari', u'action', u'councillor', u'unlik'] [u'test', u'determin', u'claim'] [u'doctor', u'honour', u'servic', u'mental', u'health'] [u'document', u'doctor', u'disput'] [u'downer', u'warn', u'nuclear', u'terror', u'threat'] [u'dragon', u'reject', u'crisi', u'claim'] [u'drought', u'condit', u'eas', u'break', u'hill'] [u'drug', u'money', u'earmark', u'prevent', u'treatment'] [u'win', u'nobel', u'econom', u'prize', u'game', u'theori'] [u'earthquak', u'hit', u'south', u'asia'] [u'earthquak', u'rattl', u'jakarta', u'casualti'] [u'eastman', u'plead', u'judici', u'review'] [u'emerald', u'airport', u'record', u'strong', u'growth'] [u'bash', u'death', u'botan', u'garden'] [u'estat', u'agent', u'talk', u'land', u'debat'] [u'ban', u'turkey', u'bird', u'import', u'avian'] [u'extradit', u'threat', u'loom', u'warrnambool'] [u'famili', u'friend', u'iraq', u'bind', u'troop', u'farewel'] [u'farm', u'make', u'school'] [u'ferdinand', u'prove', u'wrong', u'eriksson'] [u'firebug', u'worri', u'south', u'coast', u'author'] [u'bali', u'trial'] [u'flintoff', u'declar', u'test'] [u'flood', u'work', u'grasstre', u'beach'] [u'boost', u'cloud', u'break', u'estim'] [u'forum', u'address', u'aborigin', u'heritag', u'law'] [u'leak', u'shut', u'leach'] [u'gold', u'coast', u'probe', u'reveal', u'develop'] [u'govt', u'announc', u'commit', u'matern', u'care'] [u'govt', u'defend', u'mental', u'health', u'plan'] [u'govt', u'move', u'replac', u'asbesto', u'school', u'roof'] [u'govt', u'predict', u'slide', u'cattl', u'industri'] [u'govt', u'consid', u'public', u'view', u'food', u'label'] [u'green', u'urg', u'public', u'scrutini', u'draft', u'climat'] [u'harvest', u'damag', u'cane', u'crop'] [u'heavi', u'swell', u'hamper', u'search', u'miss', u'fisherman'] [u'hewitt', u'drop', u'rank', u'spot'] [u'hiddink', u'know', u'there'] [u'higher', u'fuel', u'price', u'take', u'toll', u'uralla', u'tourism'] [u'high', u'school', u'resum', u'work', u'blaze'] [u'highway', u'reopen', u'fatal', u'crash'] [u'home', u'loan', u'continu', u'declin'] [u'home', u'owner', u'urg', u'clear', u'backyard', u'debri'] [u'hospit', u'upgrad', u'benefit', u'cancer', u'patient'] [u'hous', u'accus', u'firebomb'] [u'hous', u'lend', u'slide'] [u'howard', u'deni', u'freez', u'union', u'welfar', u'group'] [u'howard', u'flag', u'quak'] [u'howard', u'reassur', u'labor'] [u'iemma', u'reloc', u'import', u'port', u'kembla'] [u'illeg', u'fisher', u'process', u'broom', u'turf', u'club'] [u'industri', u'chang', u'worri', u'throsbi'] [u'inquest', u'water', u'tower', u'death', u'begin'] [u'interview', u'bronco', u'bruno', u'cullen'] [u'chang', u'impact', u'public', u'servant', u'union'] [u'plan', u'enhanc', u'worker', u'market', u'howard'] [u'isol', u'parent', u'seek', u'teacher', u'retent'] [u'japanes', u'launch', u'superson', u'test', u'aircraft'] [u'growth', u'rate', u'tip', u'eas'] [u'john', u'home', u'green', u'gold'] [u'king', u'brother', u'stand', u'trial', u'bank', u'fraud'] [u'kowen', u'forest', u'race', u'organis', u'look', u'extend', u'cours'] [u'landslid', u'interrupt', u'gold', u'product'] [u'leader', u'condol', u'bali', u'blast', u'victim'] [u'liber', u'water', u'polici', u'help', u'ballarat'] [u'littl', u'weigh', u'jockey', u'dilemma'] [u'ljubic', u'take', u'french', u'titl'] [u'lyon', u'rathbon', u'miss', u'european', u'tour'] [u'mackay', u'bucasia', u'work', u'begin', u'year'] [u'charg', u'basebal', u'incid'] [u'crush', u'tree', u'kyogl'] [u'hurt', u'cave', u'garden', u'fall'] [u'court', u'priest', u'bash'] [u'court', u'snatch'] [u'market', u'begin', u'week', u'strong', u'perform'] [u'market', u'slump', u'prompt', u'grower', u'move', u'load', u'wool'] [u'mayor', u'push', u'water', u'pipelin', u'support'] [u'merkel', u'german', u'chancellor'] [u'mildura', u'driver', u'share', u'bathurst', u'honour'] [u'mill', u'firm', u'boost', u'dimboola', u'job'] [u'mine', u'stock', u'push', u'market', u'higher'] [u'minist', u'accus', u'ignor', u'fuel', u'suppli', u'report'] [u'minist', u'highlight', u'need', u'stronger', u'land', u'council'] [u'moodi', u'upset', u'ancic', u'titl'] [u'more', u'plain', u'council', u'chang'] [u'mother', u'admit', u'poison', u'infant'] [u'predict', u'role', u'sidetrack', u'snowdon'] [u'urg', u'oppos', u'perri', u'lake', u'develop', u'law'] [u'crab', u'number', u'healthi', u'despit', u'catch'] [u'mudslid', u'delay', u'anger', u'guatemalan', u'villag'] [u'nelson', u'accus', u'hide', u'fallback', u'plan'] [u'date', u'shoot', u'murder', u'trial'] [u'staff', u'scheme', u'promis', u'central', u'benefit'] [u'madonna', u'song', u'prompt', u'accus', u'sacrileg'] [u'protein', u'cancer', u'fight'] [u'rule', u'crack', u'camel', u'tourism'] [u'ward', u'open', u'deal', u'hospit', u'overflow'] [u'northern', u'river', u'focus', u'youth', u'retent'] [u'norwegian', u'spar', u'jail', u'term', u'fatal', u'crash'] [u'farmer', u'welcom', u'averag', u'rainfal'] [u'nullarbor', u'servic', u'prove', u'cost'] [u'older', u'women', u'virgin', u'discrimin', u'case'] [u'opposit', u'attack', u'plan'] [u'opposit', u'seek', u'polic', u'road', u'patrol', u'boost'] [u'option', u'lay', u'torr', u'strait', u'govt'] [u'pakistani', u'expat', u'pray', u'quak', u'victim'] [u'pakistan', u'quak', u'death', u'toll', u'doubl'] [u'parti', u'split', u'elector', u'chang'] [u'patchi', u'improv', u'drought', u'condit'] [u'perrot', u'claim', u'lpga', u'titl'] [u'platsearch', u'record', u'loss'] [u'defend', u'chang'] [u'polic', u'free', u'releas', u'mugshot', u'media', u'minist'] [u'polic', u'investig', u'northam', u'murder'] [u'polic', u'investig', u'begin', u'alight'] [u'polic', u'seek', u'race', u'assault'] [u'polic', u'suspect', u'arson', u'church'] [u'powerlin', u'delay', u'spark', u'blackout', u'fear'] [u'premier', u'reject', u'fund', u'health', u'reform'] [u'premier', u'highlight', u'port', u'kembla', u'growth', u'plan'] [u'premier', u'urg', u'help', u'speed', u'deer', u'park', u'project'] [u'whale', u'vote', u'cost', u'solomon', u'minist'] [u'public', u'urg', u'weed', u'awar'] [u'public', u'urg', u'remain', u'water', u'vigil'] [u'tight', u'lip', u'compens', u'detail'] [u'quak', u'kill', u'generat'] [u'record', u'ship', u'predict', u'zinifex', u'karumba'] [u'rescu', u'work', u'continu', u'pakistani', u'griev'] [u'resign', u'spark', u'surgeri', u'reshuffl'] [u'roar', u'striker', u'sidelin', u'week'] [u'erupt', u'emerg', u'servic', u'super', u'plan'] [u'rspca', u'unhappi', u'poni', u'cruelti', u'penalti'] [u'consid', u'fuel', u'suppli', u'law'] [u'labor', u'consid', u'plan', u'second', u'term'] [u'opposit', u'fear', u'wast', u'dump', u'riverland', u'threat'] [u'scientist', u'bring', u'everest', u'notch'] [u'search', u'continu', u'quak', u'toll', u'top'] [u'search', u'miss', u'cradl', u'mountain', u'walker'] [u'sheedi', u'name', u'look', u'australian', u'team'] [u'sheep', u'death', u'research', u'find', u'mortal', u'rate'] [u'shire', u'resourc', u'share', u'deal', u'near'] [u'shire', u'legal', u'action', u'land', u'contract'] [u'soldier', u'prepar', u'iraq', u'deploy'] [u'solon', u'case', u'minist', u'fault', u'bureaucrat'] [u'spat', u'reveal', u'intens', u'battl', u'skaif'] [u'spat', u'reveal', u'intens', u'battl', u'skaif'] [u'strong', u'wind', u'leav', u'damag', u'trail'] [u'sudan', u'rebel', u'releas', u'worker'] [u'support', u'agenc', u'welcom', u'effort', u'curb', u'child', u'abus'] [u'surgeon', u'premier', u'sort', u'hospit'] [u'sydney', u'search', u'group', u'seek', u'lock', u'fund'] [u'tactic', u'pivot', u'herald', u'cycl', u'tour'] [u'talk', u'focus', u'bunburi', u'hous', u'crisi'] [u'doctor', u'secur', u'research', u'fund'] [u'liber', u'oppos', u'nation', u'commiss'] [u'teen', u'driver', u'sentenc', u'youth', u'fatal'] [u'teen', u'lose', u'foot', u'train', u'mishap'] [u'teen', u'death', u'prompt', u'mandatori'] [u'palestinian', u'teen', u'kill', u'report'] [u'timber', u'worker', u'offer', u'voluntari'] [u'tourism', u'group', u'cossack', u'plan'] [u'tourism', u'keep', u'motor'] [u'trainer', u'weigh', u'jockey', u'dilemma'] [u'trucki', u'die', u'highway', u'crash'] [u'break', u'deadlock', u'trade', u'talk'] [u'vail', u'join', u'effort', u'salvag', u'world', u'trade', u'talk'] [u'victori', u'defeat', u'hapless', u'knight'] [u'victori', u'outclass', u'hapless', u'knight'] [u'virgin', u'blue', u'consid', u'appeal', u'anti'] [u'busi', u'lobbi', u'seek', u'chang'] [u'newspap', u'buy', u'local', u'own', u'geraldton'] [u'word', u'erupt', u'smith', u'beach', u'plan'] [u'warrior', u'lose', u'ervin', u'season'] [u'water', u'ski', u'trial', u'lake', u'burley', u'griffin'] [u'weve', u'prove', u'say', u'pont'] [u'wind', u'farm', u'plan', u'pick', u'pace'] [u'wool', u'industri', u'lobbi', u'govt'] [u'work', u'start', u'latrob', u'valley', u'cancer', u'hous'] [u'world', u'mental', u'health', u'prompt'] [u'zabel', u'bow', u'style', u'davi'] [u'abba', u'sharon', u'summit', u'delay'] [u'polic', u'welcom', u'eastman', u'rule'] [u'actu', u'rule', u'nonsens', u'talk'] [u'adelaid', u'retain', u'build', u'height'] [u'agil', u'wallabi', u'number', u'improv'] [u'aird', u'betfair', u'concern'] [u'alleg', u'cain', u'killer', u'trial'] [u'ord', u'finish'] [u'aloisi', u'clear', u'injuri'] [u'anti', u'obes', u'research', u'win', u'grant'] [u'apolog', u'issu', u'overdu', u'account'] [u'appeal', u'launch', u'bali', u'bomb', u'victim'] [u'armi', u'chopper', u'leav', u'townsvill', u'year'] [u'astronaut', u'return', u'badg', u'space', u'odyssey'] [u'aussi', u'troop', u'hunt', u'milit'] [u'australia', u'urg', u'embrac', u'uranium', u'demand'] [u'aust', u'quak'] [u'broker', u'rais', u'concern'] [u'award', u'recognis', u'polic', u'servic'] [u'awex', u'review', u'oper', u'elder', u'walk'] [u'reject', u'claim', u'financi', u'troubl'] [u'babi', u'crocodil', u'escap', u'darwin', u'farm'] [u'bali', u'monument', u'fix', u'vandal'] [u'bali', u'face', u'trial'] [u'bali', u'call', u'wit'] [u'billi', u'show', u'danger', u'union'] [u'bomber', u'strike', u'iraq', u'near', u'dead'] [u'brisban', u'hospit', u'win', u'clinic', u'excel', u'award'] [u'broccoli', u'cauliflow', u'farmer', u'comeback'] [u'brookton', u'shire', u'govt', u'loan'] [u'bruce', u'highway', u'shortcom', u'highlight'] [u'buoyant', u'hous', u'defi', u'nation', u'trend', u'stirl'] [u'bushwalk', u'airlift', u'nation', u'park'] [u'busi', u'group', u'advertis', u'back', u'chang'] [u'busi', u'group', u'back', u'workplac', u'law', u'shake'] [u'busi', u'outlook', u'improv'] [u'canal', u'clear', u'start'] [u'import', u'help', u'illawarra', u'economi', u'iemma'] [u'church', u'criticis', u'chang'] [u'church', u'concern', u'unfound', u'andrew'] [u'club', u'urg', u'sign', u'coalit', u'pledg'] [u'commission', u'play', u'indigen', u'centr', u'fear'] [u'commod', u'price', u'jump', u'boost', u'rural', u'trade'] [u'confection', u'leav', u'caulfield', u'field'] [u'council', u'crack', u'attack'] [u'council', u'hope', u'smooth', u'museum', u'manag', u'chang'] [u'council', u'seek', u'rail', u'meet', u'mcewen'] [u'council', u'stand', u'high', u'rise', u'reject'] [u'council', u'urg', u'join', u'forc', u'fight', u'calder'] [u'council', u'claim', u'compens', u'nativ', u'titl'] [u'council', u'tell', u'renegoti', u'sport', u'facil'] [u'council', u'meet', u'mayor', u'appoint'] [u'council', u'urg', u'rethink', u'park', u'issu'] [u'council', u'urg', u'coal'] [u'coupl', u'fin', u'model', u'scam'] [u'court', u'halt', u'cooper', u'anti', u'takeov', u'meet'] [u'cricket', u'chief', u'tight', u'lip', u'buchanan', u'futur'] [u'dept', u'explain', u'sexual', u'assault', u'servic', u'chang'] [u'doctor', u'group', u'back', u'matern', u'servic', u'trial'] [u'doubt', u'cast', u'swap', u'meet', u'futur'] [u'downer', u'effort', u'half', u'heart', u'labor'] [u'drought', u'cut', u'western', u'risk'] [u'drought', u'maintain', u'grip', u'region'] [u'speak', u'public', u'hospit', u'inquiri'] [u'eden', u'visitor', u'whale', u'time'] [u'elder', u'alert', u'bank', u'scam'] [u'elder', u'black', u'american', u'beat', u'arrest'] [u'elliott', u'enthusiast'] [u'elliott', u'put', u'hand'] [u'emerg', u'chang', u'bring', u'faster', u'respons', u'time'] [u'employ', u'soft', u'spot', u'survey', u'suggest'] [u'england', u'poor', u'owen', u'admit'] [u'escap', u'croc', u'pose', u'littl', u'threat'] [u'explor', u'unearth', u'tiwi', u'miner', u'treasur'] [u'eye', u'window', u'likelihood', u'stroke'] [u'falconio', u'famili', u'arriv', u'murder', u'trial'] [u'farmer', u'hope', u'rain', u'boost'] [u'feder', u'plan', u'restor', u'alpin', u'graze', u'right'] [u'fight', u'fund', u'plan', u'kiss', u'land'] [u'fine', u'art', u'communiti', u'honour', u'award'] [u'firefight', u'hope', u'weather', u'aid', u'effort', u'tackl'] [u'firefight', u'tackl', u'northern', u'bushfir'] [u'bali', u'trial', u'begin'] [u'face', u'trial', u'home', u'invas'] [u'flexibl', u'help', u'famili', u'say'] [u'footbal', u'time', u'final', u'arriv', u'lowi'] [u'forest', u'protest', u'camp', u'worri', u'minist'] [u'charg', u'attack', u'polic'] [u'grant', u'bail', u'fraud'] [u'gerrard', u'mend'] [u'giant', u'pool', u'head', u'highway'] [u'gilchrist', u'label', u'world', u'favourit'] [u'govt', u'claim', u'decept', u'elliot', u'richmond'] [u'govt', u'criticis', u'blue', u'legal', u'case'] [u'govt', u'criticis', u'treatment', u'indonesian'] [u'govt', u'look', u'boost', u'public', u'educ', u'enrol'] [u'govt', u'prepar', u'money', u'launder', u'law'] [u'govt', u'ask', u'interven', u'factori', u'cut'] [u'govt', u'step', u'illeg', u'fish', u'fight'] [u'govt', u'quiz', u'public', u'water', u'need'] [u'grain', u'harvest', u'farmer', u'look', u'fine', u'weather'] [u'grant', u'boost', u'cancer', u'gene', u'research'] [u'hanson', u'secur', u'poll', u'windfal'] [u'look', u'forward', u'fresh', u'start'] [u'hazard', u'reduct', u'burn', u'spark', u'fire'] [u'health', u'union', u'urg', u'adequ', u'bird', u'drug', u'suppli'] [u'hollywood', u'movi', u'misfir', u'core', u'audienc'] [u'india', u'rejoic', u'tendulkar', u'take', u'field'] [u'india', u'seek', u'permiss', u'world'] [u'inflat', u'fear', u'spark', u'market', u'slide'] [u'intern', u'raider', u'invad', u'melbourn'] [u'interst', u'firefight', u'chopper', u'upset'] [u'investig', u'begin', u'workplac', u'death'] [u'joondalup', u'inquiri', u'call', u'council', u'overhaul'] [u'kookaburra', u'wari', u'improv', u'kiwi'] [u'lake', u'macquari', u'council', u'seek'] [u'langer', u'reject', u'world', u'excus'] [u'largest', u'credit', u'union', u'merg'] [u'foreign', u'entri', u'arriv', u'melbourn'] [u'lismor', u'council', u'urg', u'altern', u'fuel'] [u'maher', u'earn', u'mark', u'sixer'] [u'mailout', u'begin', u'council', u'ballot', u'paper'] [u'die', u'head', u'injuri', u'ship', u'accid'] [u'hold', u'bali', u'blast'] [u'plead', u'guilti', u'fraud', u'relat', u'charg'] [u'face', u'court', u'northam', u'death'] [u'martin', u'overhaul', u'ministeri', u'travel', u'allow'] [u'master', u'irish', u'writer', u'win', u'booker', u'prize'] [u'mayor', u'fear', u'rail', u'mean', u'lose', u'servic'] [u'mayor', u'lose', u'polic'] [u'court', u'teen', u'kidnap'] [u'messag', u'stick', u'honour', u'pope', u'speech'] [u'migrant', u'reunion', u'travel', u'fund', u'fail', u'meet', u'demand'] [u'minist', u'order', u'review', u'health', u'servic', u'credit'] [u'minist', u'seek', u'feder', u'support', u'river', u'murray'] [u'miss', u'fisherman', u'simpli', u'disappear'] [u'molik', u'arthur', u'team', u'hopman'] [u'molopo', u'take', u'explor', u'permit'] [u'moneghetti', u'name', u'mayor', u'game', u'villag'] [u'irrig', u'alloc', u'possibl'] [u'reserv', u'power', u'need', u'summer', u'loom'] [u'morocco', u'repatri', u'detain', u'african'] [u'mother', u'refus', u'bail', u'child', u'case'] [u'mount', u'hoon', u'catch'] [u'highlight', u'bali', u'blast', u'impact', u'newcastl'] [u'newcastl', u'hous', u'market', u'remain', u'robust'] [u'propos', u'impetus', u'talk'] [u'charg', u'lay', u'armi', u'gang', u'rape', u'claim'] [u'nois', u'setback', u'line', u'project'] [u'quick', u'like', u'palm', u'land', u'tenur'] [u'vcat', u'option', u'resid', u'oppos', u'saleyard'] [u'name', u'newcom', u'nation', u'test'] [u'odonnel', u'king', u'debut', u'kangaroo'] [u'million', u'await'] [u'million', u'await', u'quak', u'pakistan'] [u'opposit', u'question', u'tunnel', u'payment'] [u'pair', u'assault', u'mackay', u'home', u'invas'] [u'pair', u'face', u'court', u'child', u'assault', u'charg'] [u'parasit', u'writer', u'prompt', u'nobel', u'revolt'] [u'patel', u'boss', u'defend', u'action'] [u'pipelin', u'boost', u'wimmera', u'malle', u'lake'] [u'defend', u'chang'] [u'polic', u'crack', u'wayward', u'youth'] [u'polic', u'fear', u'macquari', u'field', u'rioter', u'avoid'] [u'polic', u'investig', u'oombulgurri', u'drown'] [u'polic', u'progress', u'bali', u'blast', u'investig'] [u'policemen', u'kill', u'afghanistan', u'ambush'] [u'polic', u'probe', u'port', u'hedland', u'theft'] [u'poll', u'open', u'liberia'] [u'probe', u'begin', u'shop', u'blaze'] [u'propos', u'roper', u'river', u'grog', u'upset', u'fishermen'] [u'protest', u'criticis', u'coupl', u'law'] [u'public', u'servic', u'need', u'recruit', u'overhaul'] [u'push', u'council', u'nuclear', u'free', u'zone'] [u'queen', u'elizabeth', u'hospit', u'stage', u'detail'] [u'rain', u'halt', u'relief', u'effort', u'pakistan'] [u'rape', u'trial', u'close', u'woman', u'evid'] [u'spell', u'price', u'risk'] [u'real', u'estat', u'agent', u'sell', u'lake', u'feder', u'resort'] [u'rebel', u'massacr', u'villag', u'congo'] [u'region', u'median', u'hous', u'rise'] [u'report', u'consid', u'lindesaynorth', u'beaudesert', u'growth'] [u'report', u'highlight', u'kalgoor', u'indigen', u'child'] [u'report', u'highlight', u'loom', u'energi', u'demand'] [u'resid', u'urg', u'cyclon', u'tsunami', u'readi'] [u'retail', u'complain', u'unfair', u'milk', u'price', u'increas'] [u'rooney', u'vow', u'ditch', u'temper'] [u'rowena', u'wallac', u'escap', u'jail', u'term', u'fraud'] [u'salmonella', u'outbreak', u'spread', u'south'] [u'saltwat', u'croc', u'loos'] [u'plan', u'pandem', u'threat'] [u'sartor', u'approv', u'luna', u'park', u'develop'] [u'scheme', u'offer', u'port', u'hedland', u'fauna', u'protect'] [u'secur', u'fear', u'bali', u'bomber', u'move'] [u'seven', u'join', u'wallabi', u'squad', u'game'] [u'sharapova', u'want', u'play'] [u'shooter', u'help', u'control', u'park', u'feral', u'anim'] [u'skydiv', u'die', u'collis'] [u'space', u'tourist', u'come', u'earth'] [u'speed', u'bruce', u'highway', u'driver', u'worri', u'polic'] [u'starcraft'] [u'sting', u'attack', u'duti', u'policeman'] [u'stop', u'work', u'meet', u'wont', u'close', u'branch', u'centrelink'] [u'strong', u'expect', u'cattl', u'station'] [u'student', u'evacu', u'transform', u'explos'] [u'sunshin', u'coast', u'enrol', u'rise'] [u'sunshin', u'motorway', u'work', u'finish'] [u'superson', u'success', u'lift', u'japanes', u'research'] [u'support', u'beazley', u'hit', u'year'] [u'survivor', u'pull', u'quak', u'ruin'] [u'teari', u'newton', u'john', u'keep', u'quiet', u'miss', u'lover'] [u'thiev', u'poach', u'rare', u'beech', u'tree'] [u'thousand', u'sleep', u'rough', u'relief', u'rush', u'continu'] [u'tougher', u'jail', u'answer', u'say', u'prison', u'group'] [u'truck', u'roll', u'forc', u'highway', u'closur'] [u'turnbul', u'brush', u'costello', u'attack'] [u'aliv', u'pakistani', u'quak', u'rubbl'] [u'uganda', u'leader', u'obot', u'die'] [u'make', u'small', u'iraq', u'troop', u'number'] [u'elect', u'secur', u'council', u'member'] [u'govt', u'refus', u'extens', u'wast', u'dump', u'comment'] [u'potato', u'grower', u'retain', u'wholesal'] [u'virgin', u'rule', u'send', u'signal', u'employ', u'goward'] [u'wallabi', u'welcom', u'face', u'europ', u'tour'] [u'weather', u'critic', u'search', u'miss', u'angler'] [u'websit', u'show', u'busi', u'loophol', u'union'] [u'western', u'health', u'servic', u'microscop'] [u'wheel', u'death', u'spark', u'safeti', u'warn'] [u'win', u'gippi', u'girl', u'nation', u'championship'] [u'woman', u'accus', u'make', u'bomb', u'hama'] [u'wood', u'ahead', u'rank'] [u'worker', u'warn', u'workplac', u'chang', u'impact'] [u'workload', u'jump', u'strain', u'famili', u'servic'] [u'worst', u'road', u'year'] [u'boost', u'region', u'mental', u'health'] [u'abar', u'investig', u'viabil', u'produc'] [u'aborigin', u'skull', u'return', u'descend'] [u'releas', u'small', u'busi', u'disput', u'mediat', u'plan'] [u'adelaid', u'pray', u'bali', u'victim'] [u'adelaid', u'prepar', u'counter', u'terror', u'exercis'] [u'airport', u'fault', u'delay', u'termin', u'off'] [u'alcohol', u'restrict', u'answer', u'palm'] [u'armi', u'consid', u'gang', u'rape', u'claim'] [u'australian', u'mourn', u'bali', u'attack', u'victim'] [u'australia', u'post', u'record', u'small', u'profit', u'rise'] [u'australia', u'stand', u'indonesia', u'downer'] [u'author', u'urg', u'explain', u'fuel', u'price', u'dispar'] [u'weather', u'hit', u'quak', u'stricken', u'pakistan'] [u'balines', u'protest', u'storm', u'prison'] [u'bali', u'lawyer', u'challeng', u'legal', u'case'] [u'bali', u'trial', u'continu'] [u'bali', u'victim', u'sister', u'appeal', u'understand'] [u'bank', u'miner', u'bolster'] [u'barrett', u'unsur', u'thompson', u'futur'] [u'price', u'rise', u'loom', u'high', u'secur', u'water', u'user'] [u'blatter', u'attack', u'wild', u'west', u'spend', u'bing'] [u'blaze', u'take', u'heavi', u'toll', u'clean', u'firm'] [u'burberri', u'ferret', u'furri', u'offend'] [u'buyer', u'snap', u'motorway', u'tyre'] [u'spirit', u'trade', u'sydney', u'cairn', u'rout'] [u'camel', u'industri', u'hop', u'live', u'export'] [u'campfir', u'long', u'run', u'blaze'] [u'canadian', u'miner', u'invest', u'copper', u'gold', u'project'] [u'carlton', u'memori', u'mark', u'bali', u'bomb'] [u'cart', u'diamond', u'deserv', u'caulfield', u'chanc', u'say'] [u'cash', u'king', u'catch', u'hand', u'till'] [u'cattleman', u'defi', u'nation', u'park'] [u'central', u'miner', u'tripl', u'export'] [u'china', u'launch', u'second', u'man', u'space', u'mission'] [u'probe', u'north', u'complaint'] [u'committe', u'address', u'agricultur', u'land', u'develop'] [u'concern', u'mount', u'dimia', u'medic', u'provid'] [u'concern', u'kangaroo', u'cull', u'dismiss'] [u'consum', u'confid', u'slide', u'continu'] [u'contest', u'help', u'cull', u'pest', u'fish'] [u'corbi', u'lawyer', u'plan', u'appeal'] [u'corbi', u'sentenc', u'year'] [u'council', u'stop', u'work', u'meet', u'hold'] [u'council', u'debat', u'nuclear', u'free', u'zone'] [u'council', u'unhappi', u'plan', u'survey', u'respons'] [u'count', u'begin', u'liberian', u'elect'] [u'court', u'allow', u'builder', u'lift', u'accid'] [u'court', u'hear', u'bali', u'case'] [u'court', u'rule', u'lion', u'nathan', u'case', u'week'] [u'cray', u'fishermen', u'plan', u'recoveri', u'strategi'] [u'crime', u'commiss', u'boss', u'face', u'corrupt', u'charg'] [u'crimin', u'grind', u'breaker', u'galbal', u'die'] [u'custom', u'net', u'better', u'fish', u'resourc', u'protect'] [u'cyclist', u'speak', u'bendigo'] [u'level', u'melbourn', u'water', u'rise'] [u'desert', u'park', u'celebr', u'bird', u'breed', u'success'] [u'discard', u'gilham', u'depart', u'port', u'regret'] [u'diver', u'join', u'search', u'miss', u'angler'] [u'probe', u'launceston', u'mayor', u'candid'] [u'dravid', u'tip', u'replac', u'ganguli', u'indian', u'captain'] [u'draw', u'put', u'segundo', u'rail'] [u'drought', u'come', u'shoe'] [u'earthquak', u'leav', u'thousand', u'homeless', u'kashmir'] [u'earthquak', u'relief', u'effort', u'ramp', u'storm'] [u'educ', u'confer', u'hear', u'iraq', u'situat'] [u'emerg', u'servic', u'wont', u'strike', u'govt'] [u'emerg', u'servic', u'wont', u'strike', u'govt'] [u'employ', u'group', u'reject', u'law', u'critic'] [u'european', u'polic', u'smash', u'peopl', u'smuggl', u'ring'] [u'export', u'urg', u'advantag', u'global', u'market'] [u'farmer', u'streamlin', u'drought'] [u'farmer', u'warn', u'mous', u'plagu', u'threat'] [u'fear', u'plan', u'chang', u'hurt', u'worker'] [u'flintoff', u'share', u'cricket', u'award', u'glori'] [u'region', u'telstra', u'execut', u'say', u'dont', u'sell'] [u'forum', u'focus', u'fitzroy', u'develop', u'option'] [u'forum', u'highlight', u'rural', u'dentist', u'shortag'] [u'forum', u'discuss', u'kimberley', u'economi'] [u'french', u'koala', u'head', u'home'] [u'giant', u'pumpkin', u'carv', u'win', u'streak'] [u'govt', u'approv', u'wind', u'farm', u'near', u'goulburn'] [u'govt', u'look', u'privatis'] [u'govt', u'outlin', u'plan', u'alcohol', u'court'] [u'govt', u'urg', u'indonesian', u'fish', u'deal'] [u'green', u'group', u'urg', u'grey', u'nurs', u'shark', u'protect'] [u'green', u'claim', u'govt', u'overlook', u'chines', u'detaine'] [u'gympi', u'face', u'court', u'child', u'charg'] [u'harrison', u'hang', u'footi', u'boot'] [u'health', u'servic', u'prepar', u'bird', u'threat'] [u'heritag', u'council', u'consid', u'cascad', u'breweri', u'site'] [u'high', u'mark', u'uni', u'learn', u'manag', u'degre'] [u'hobbit', u'arm', u'point', u'african', u'relat'] [u'hope', u'improv', u'drought', u'condit', u'continu'] [u'hop', u'indigen', u'drama', u'seri'] [u'howard', u'reject', u'rsls', u'anzac', u'fear'] [u'hundr', u'face', u'wait', u'telstra', u'reconnect'] [u'icac', u'urg', u'probe', u'health', u'servic', u'tender'] [u'donat', u'pakistan', u'quak', u'relief'] [u'decid', u'world', u'host', u'year'] [u'india', u'warn', u'earthquak', u'death'] [u'indigen', u'land', u'partnership', u'fund', u'extend'] [u'indigen', u'survey', u'find', u'famili', u'better', u'mental'] [u'industri', u'wont', u'affect', u'centrelink', u'payment'] [u'inflat', u'fear', u'cloud', u'trade'] [u'injur', u'camplin', u'confid', u'olymp', u'chanc'] [u'injur', u'teen', u'return', u'home', u'bali', u'bomb'] [u'spend', u'justifi', u'say'] [u'iraqi', u'suicid', u'bomber', u'kill', u'polic'] [u'joyc', u'cross', u'floor'] [u'joyc', u'stymi', u'nelson', u'plan'] [u'joyc', u'vote', u'govt'] [u'kalgoorli', u'boulder', u'trade', u'hour'] [u'kasper', u'battl', u'hamstr', u'injuri'] [u'kerin', u'confid', u'defeat', u'challeng'] [u'kerin', u'face', u'leadership', u'challeng'] [u'labor', u'uranium', u'decis', u'hit', u'miner', u'explor'] [u'lara', u'pledg', u'test', u'fight'] [u'magistr', u'urg', u'circl', u'court'] [u'die', u'south', u'west', u'crash'] [u'disqualifi', u'drive', u'life'] [u'fin', u'illeg', u'fish'] [u'overboard', u'prompt', u'search', u'coast'] [u'mari', u'rise', u'anchor', u'lift', u'year'] [u'mayor', u'impress', u'aberdeen', u'doctor', u'push'] [u'mayor', u'china', u'citi', u'summit'] [u'miner', u'make', u'precious', u'metal'] [u'miner', u'lose', u'challeng', u'power'] [u'miner', u'techniqu', u'miner', u'search'] [u'miner', u'unhappi', u'mayor', u'request'] [u'miner', u'welcom', u'alp', u'uranium', u'debat'] [u'mine', u'council', u'welcom', u'labor', u'stanc', u'uranium'] [u'minist', u'consid', u'updat', u'forens', u'test'] [u'minist', u'name', u'shark', u'world', u'heritag'] [u'mnemosyn', u'win', u'thousand', u'guinea'] [u'mobil', u'ask', u'bring', u'forward', u'refineri', u'review'] [u'bali', u'trial', u'open'] [u'bed', u'open', u'gold', u'coast', u'hospit'] [u'moruya', u'blaze', u'threaten', u'properti'] [u'motogp', u'strike', u'threat', u'reced'] [u'fear', u'pipelin', u'fund'] [u'beat', u'calder', u'fund'] [u'mum', u'dad', u'heed', u'appeal', u'pakistan'] [u'nation', u'galleri', u'doubl', u'display', u'space'] [u'attack', u'bali', u'survivor', u'grief', u'gallop'] [u'bone', u'weight', u'hobbit', u'theori'] [u'csiro', u'fungus', u'spray', u'plagu', u'locust', u'away'] [u'mudslid', u'kill', u'guatemala'] [u'nichol', u'school', u'project', u'includ', u'communiti'] [u'nomin', u'close', u'chaffey', u'nation'] [u'north', u'east', u'join', u'water', u'sustain', u'bodi'] [u'north', u'west', u'begin', u'prepar', u'cyclon', u'season'] [u'telco', u'consid', u'aapt', u'purchas', u'offer'] [u'odonnel', u'nation', u'select', u'surpris', u'cowboy'] [u'offic', u'face', u'action', u'leap', u'data', u'releas'] [u'footbal', u'rule', u'women', u'know', u'best'] [u'opposit', u'back', u'plan', u'crimin', u'code', u'chang'] [u'opposit', u'seek', u'amend', u'murder', u'law'] [u'ovarian', u'cancer', u'vaccin', u'trial', u'expand'] [u'patel', u'boss', u'complaint'] [u'perth', u'rememb', u'bali', u'bomb', u'victim'] [u'petit', u'clarenc', u'river', u'second', u'cross'] [u'phone', u'technolog', u'boost', u'illawarra'] [u'announc', u'move', u'tape'] [u'chat', u'defeat', u'accc'] [u'polic', u'continu', u'fatal', u'crash', u'investig'] [u'polic', u'arrest', u'gunshot'] [u'polic', u'minist', u'silent', u'lacklustr', u'crime', u'solv'] [u'polic', u'identifi', u'cliff', u'bodi'] [u'port', u'smelter', u'blame', u'kid', u'lead', u'level'] [u'portug', u'honour', u'annan', u'timor', u'role'] [u'priest', u'reject', u'marri', u'ordin', u'debat'] [u'public', u'ask', u'fund', u'wish', u'list'] [u'public', u'urg', u'catchment', u'action', u'plan'] [u'push', u'debat', u'child', u'smack'] [u'boost', u'renal', u'servic', u'budget'] [u'rain', u'fail', u'deter', u'bali', u'memori', u'crowd'] [u'rann', u'back', u'kerin', u'liber', u'leader'] [u'reef', u'line', u'fish', u'studi', u'near'] [u'refresh', u'minichiello', u'keen', u'nation', u'mark'] [u'region', u'fuel', u'price', u'worri', u'racq'] [u'report', u'criticis', u'mental', u'health'] [u'report', u'face', u'leak', u'inquiri'] [u'rescuer', u'work', u'save', u'strand', u'mink', u'whale'] [u'retail', u'price', u'reflect', u'wholesal', u'cost'] [u'tinto', u'choos', u'improv', u'project', u'firm'] [u'road', u'rage', u'attack', u'clear', u'manslaught'] [u'roadshow', u'deliv', u'safeti', u'messag'] [u'savag', u'hailstorm', u'sweep', u'gold', u'coast'] [u'schroeder', u'confirm', u'departur', u'offic'] [u'scientist', u'renew', u'effort', u'clone', u'tassi', u'tiger'] [u'scott', u'confirm', u'johnni', u'walker', u'defenc'] [u'seafood', u'council', u'welcom', u'nativ', u'titl', u'rule'] [u'search', u'miss', u'rock', u'fisherman', u'call'] [u'search', u'survivor', u'continu'] [u'secker', u'label', u'govt', u'water', u'stunt'] [u'senat', u'look', u'support', u'inquiri'] [u'shire', u'offer', u'nickel', u'assur'] [u'simpli', u'petrol', u'sniffer', u'say', u'abbott'] [u'skydiv', u'death', u'overshadow', u'cycl', u'race'] [u'south', u'coast', u'face', u'weed', u'woe'] [u'spin', u'king', u'battl'] [u'stage', u'thousand', u'guinea'] [u'star', u'cement', u'stewart', u'glitter', u'career'] [u'stock', u'die', u'south', u'east', u'truck', u'crash'] [u'stoddart', u'leav', u'door', u'open', u'comeback'] [u'stoke', u'right', u'plan'] [u'stoke', u'deni', u'knowledg', u'rival'] [u'storm', u'sweep', u'gold', u'coast'] [u'support', u'boost', u'separ', u'shoalhaven', u'father'] [u'support', u'grow', u'boat', u'harbour', u'plan'] [u'swim', u'bodi', u'push', u'video', u'replay'] [u'sydney', u'hobart', u'neglig', u'case', u'settl'] [u'vegi', u'industri', u'fear', u'plan', u'food', u'label'] [u'wait', u'list', u'declin'] [u'teenag', u'face', u'firearm', u'charg'] [u'predict', u'gloomi', u'despit', u'profit', u'hike'] [u'tourism', u'bodi', u'plead', u'handout'] [u'tradit', u'owner', u'clear', u'fortescu', u'metal', u'project'] [u'truck', u'crash', u'delay', u'mail', u'deliveri'] [u'envoy', u'accus', u'israel', u'stifl', u'human', u'right'] [u'union', u'bodi', u'warn', u'chang'] [u'union', u'boss', u'meet', u'staff', u'vote'] [u'union', u'surg', u'riverland'] [u'union', u'maintain', u'power', u'plant', u'wage', u'rise', u'campaign'] [u'union', u'monitor', u'water', u'tower', u'inquest'] [u'uranium', u'mine', u'equal', u'nuclear', u'weapon', u'confer'] [u'honour', u'penfold', u'winemak'] [u'vandal', u'attack', u'servic', u'station'] [u'vicroad', u'compromis', u'tree', u'remov'] [u'ward', u'attend', u'face', u'patient', u'rape', u'charg'] [u'warrnambool', u'airborn', u'record'] [u'wildcat', u'lose', u'roger', u'ankl', u'injuri'] [u'work', u'ban', u'threaten', u'phillip', u'island'] [u'wreath', u'lay', u'canberra', u'mark', u'bali', u'anniversari'] [u'abbott', u'resist', u'legalis', u'abort', u'pill'] [u'accus', u'bali', u'ringlead', u'front', u'court'] [u'teacher', u'seek', u'rise', u'ahead', u'chang'] [u'aftershock', u'scar', u'jitteri', u'pakistani'] [u'aloisi', u'unit'] [u'fear', u'doctor', u'deal', u'settl'] [u'anti', u'terror', u'law', u'draw', u'right', u'watchdog'] [u'armidal', u'polic', u'station', u'work', u'begin'] [u'armi', u'call', u'grenad', u'discoveri'] [u'arson', u'suspect', u'eurobodalla', u'fire'] [u'australia', u'draw', u'england', u'comm', u'game', u'rugbi'] [u'australian', u'polic', u'undermin', u'halloran'] [u'australian', u'troop', u'come', u'iraq'] [u'australian', u'troop', u'iraq'] [u'negoti', u'futur', u'iraq', u'wheat'] [u'board', u'member', u'concern', u'budget', u'figur'] [u'baggaley', u'test', u'posit', u'steroid'] [u'bali', u'bomb', u'detaine', u'free'] [u'bali', u'ringlead', u'mule', u'face', u'court'] [u'bank', u'queensland', u'profit', u'jump'] [u'crowd', u'turn', u'rememb', u'bali', u'victim'] [u'biker', u'urg', u'care', u'travel'] [u'bird', u'confirm', u'romania'] [u'blair', u'dig', u'anti', u'terror', u'law', u'fight'] [u'blue', u'chip', u'plung', u'drag', u'lower'] [u'bolkus', u'win', u'australian', u'libel', u'action'] [u'boss', u'happi', u'serv'] [u'boswel', u'quiet', u'joyc', u'vote', u'talk'] [u'bradman', u'famili', u'lash', u'indian', u'biscuit', u'deal'] [u'british', u'playwright', u'win', u'nobel', u'literatur', u'prize'] [u'bundi', u'special', u'doubl', u'mango', u'crop'] [u'bush', u'warn', u'syria', u'lebanon', u'iraq'] [u'busi', u'school', u'boss', u'head', u'fair', u'commiss'] [u'camel', u'industri', u'prospect', u'continu', u'improv'] [u'cane', u'train', u'spark', u'blaze'] [u'capsicum', u'spray', u'fail', u'halt', u'attack', u'polic'] [u'careless', u'rid', u'suspens', u'cost', u'boss'] [u'sale', u'acceler', u'mark'] [u'cattl', u'breeder', u'tour', u'celebr', u'breed', u'centenari'] [u'centrelink', u'worker', u'threaten', u'stop', u'work', u'meet'] [u'charg', u'lay', u'australian', u'model'] [u'chechen', u'rebel', u'attack', u'russian', u'town', u'dead'] [u'children', u'death', u'investig'] [u'chill', u'newborn', u'better', u'abl', u'avoid', u'brain', u'damag'] [u'circl', u'sentenc', u'need', u'care', u'introduct'] [u'clipsal', u'closur', u'concern', u'air', u'meet'] [u'commission', u'happi', u'talk', u'halloran'] [u'communiti', u'idea', u'seek', u'heritag', u'protect'] [u'concern', u'rais', u'smith', u'famili', u'emerg'] [u'conflict', u'forc', u'kucera', u'resign'] [u'corbi', u'hear', u'sentenc', u'reduct'] [u'corbi', u'prosecutor', u'challeng', u'sentenc'] [u'corbi', u'sentenc', u'harsh', u'say', u'bali', u'court'] [u'cotton', u'market', u'surg', u'month', u'high'] [u'council', u'endur', u'ratepay', u'wrath', u'saleyard'] [u'council', u'look', u'road', u'mainten', u'worri'] [u'council', u'support', u'mine', u'explor', u'break', u'push'] [u'council', u'challeng', u'telstra', u'servic'] [u'court', u'jail', u'bundaberg', u'rapist', u'year'] [u'cross', u'citi', u'tunnel', u'toll', u'waiv', u'sydney'] [u'cycl', u'tourism', u'promis', u'spin', u'off'] [u'deadlin', u'loom', u'govt', u'appeal', u'gang'] [u'demand', u'coal', u'expect', u'power'] [u'disney', u'offer', u'desper', u'itun', u'download'] [u'outlin', u'charg', u'corrupt', u'bodi', u'head'] [u'want', u'wolf', u'creek', u'delay'] [u'driver', u'train', u'go', u'mobil'] [u'eastman', u'case', u'spark', u'public', u'hous', u'rethink'] [u'drought', u'assist', u'chang', u'elimin', u'delay'] [u'find', u'bird', u'romania'] [u'extra', u'pledg', u'fight', u'bird'] [u'fear', u'budget', u'airlin', u'forc', u'region', u'airport'] [u'feder', u'fund', u'seek', u'irrig', u'infrastructur'] [u'fight', u'corner', u'scratch', u'give', u'lachlan', u'river'] [u'intl', u'rule'] [u'fix', u'speed', u'camera', u'road', u'death', u'govt'] [u'fli', u'caus', u'headach', u'grazier'] [u'bureaucrat', u'reviv', u'bushfir'] [u'franc', u'serbia', u'montenegro', u'sweden', u'world'] [u'fraser', u'honour', u'high', u'profil', u'lawyer', u'pass'] [u'fund', u'boost', u'benefit', u'hundr', u'cardiac'] [u'fund', u'address', u'mount', u'rental', u'issu'] [u'gibbon', u'suspend', u'parliament', u'highway'] [u'gippsland', u'firm', u'exclud', u'raaf', u'base', u'contract'] [u'govt', u'ask', u'rail', u'servic', u'confirm'] [u'govt', u'defend', u'handl', u'fairbairn', u'park', u'leas'] [u'govt', u'dismiss', u'anzac', u'damag', u'find'] [u'govt', u'legisl', u'erod', u'state', u'right', u'joyc'] [u'govt', u'discuss', u'abort', u'pill', u'say'] [u'govt', u'urg', u'thwart', u'australia', u'trademark'] [u'govt', u'urg', u'calm', u'tourism', u'slow'] [u'govt', u'vow', u'train', u'vandal'] [u'group', u'beat', u'technic', u'colleg', u'meet'] [u'guatemala', u'storm', u'orphan', u'children'] [u'battl', u'erupt', u'russian', u'town'] [u'gunman', u'escap', u'chines', u'schoolyard', u'shoot'] [u'herald', u'journalist', u'charg', u'contempt'] [u'warn', u'loom', u'accommod', u'crisi'] [u'hop', u'find', u'earthquak', u'survivor', u'fade'] [u'hous', u'blaze', u'victim', u'thank', u'communiti'] [u'immigr', u'fund', u'reward', u'deport', u'labor'] [u'indigen', u'group', u'land', u'access', u'deal'] [u'industri', u'pressur', u'lower', u'ethanol', u'blend'] [u'inflat', u'fear', u'continu', u'weigh', u'wall'] [u'break', u'rule', u'elector', u'bodi'] [u'jam', u'hardi', u'staff', u'strike', u'contract', u'disput'] [u'jobless', u'rate', u'post', u'small', u'rise'] [u'joyc', u'open', u'govt', u'divis'] [u'joyc', u'vote', u'fallout', u'overreact'] [u'kangaroo', u'wari', u'kiwi'] [u'kashmir', u'relief', u'oper', u'gain', u'pace'] [u'kerin', u'challeng', u'shut'] [u'labor', u'call', u'region', u'airport', u'secur', u'audit'] [u'labor', u'fear', u'inquiri', u'short'] [u'lake', u'eyr', u'basin', u'panel', u'meet', u'studi', u'resourc'] [u'lampard', u'help', u'england', u'world', u'group'] [u'societi', u'seek', u'review', u'famili', u'violenc'] [u'liber', u'ask', u'abort', u'drug', u'review'] [u'lion', u'wont', u'probe', u'misbehaviour', u'claim'] [u'local', u'govt', u'group', u'take', u'unit', u'stanc', u'issu'] [u'jail', u'hall', u'creek', u'attack'] [u'plead', u'guilti', u'murder', u'acquaint'] [u'market', u'campaign', u'focus', u'great', u'sandi', u'strait'] [u'medic', u'head', u'umbakumba', u'guard'] [u'meninga', u'readi', u'lead', u'queensland'] [u'meninga', u'coach', u'maroon'] [u'mental', u'health', u'boost', u'mackay', u'moranbah'] [u'miller', u'sack', u'red', u'coach', u'report'] [u'industri', u'group', u'support', u'chang'] [u'miner', u'conduct', u'grenfel', u'prospect'] [u'miner', u'see', u'long', u'futur', u'bowen', u'basin', u'coal'] [u'minist', u'appreci', u'region', u'rapid', u'growth'] [u'minist', u'tell', u'truth', u'leap', u'leak', u'say', u'doyl'] [u'minist', u'wife', u'share', u'deal', u'prompt', u'sack'] [u'minist', u'warn', u'nationalis', u'dole', u'threat'] [u'minist', u'warn', u'rate', u'exempt', u'danger'] [u'mitsubishi', u'peg', u'hop'] [u'money', u'defraud', u'narrandera', u'bank', u'account'] [u'free', u'breast', u'screen', u'hunter'] [u'polic', u'patrol', u'great', u'ocean'] [u'secur', u'announc', u'mildura'] [u'mother', u'charg', u'newborn', u'murder'] [u'pleas', u'swansea', u'bridg', u'normal'] [u'fail', u'support', u'council', u'nuclear', u'free', u'zone'] [u'press', u'ahead', u'opposit', u'leadership'] [u'museum', u'asset', u'creat', u'communiti', u'anger'] [u'musharraf', u'call', u'patienc', u'roll'] [u'nasa', u'hail', u'china', u'man', u'space', u'mission'] [u'nation', u'resum', u'servic'] [u'nation', u'urg', u'action', u'bypass', u'bridg'] [u'nelson', u'thwart', u'dump', u'opposit'] [u'mitsubishi', u'symbolis', u'teamwork'] [u'reward', u'offer', u'solv', u'murder', u'mysteri'] [u'bid', u'telstra', u'fund', u'invest'] [u'north', u'doctor', u'head', u'recruit', u'drive'] [u'govt', u'appeal', u'rapist', u'sentenc', u'reduct'] [u'challeng', u'gang', u'rapist', u'sentenc'] [u'nurs', u'discuss', u'chang'] [u'ombudsman', u'highlight', u'polic', u'rort', u'inconsist'] [u'ombudsman', u'make', u'scath', u'critic', u'transit'] [u'opposit', u'highlight', u'communic', u'woe'] [u'organis', u'predict', u'comm', u'game', u'sell'] [u'outrag', u'govt', u'promis', u'nuclear', u'wast', u'dump', u'fight'] [u'parol', u'process', u'includ', u'victim'] [u'patel', u'complaint', u'regist', u'boss'] [u'centrelink', u'custom', u'servic', u'centr'] [u'plan', u'focus', u'snug', u'cove', u'develop'] [u'plastic', u'declin', u'report'] [u'player', u'bodi', u'hit', u'blatter'] [u'polic', u'crack', u'street', u'crime'] [u'polic', u'search', u'overboard'] [u'polic', u'road', u'crash', u'victim'] [u'polic', u'remov', u'babi', u'drug', u'raid'] [u'pregnant', u'aborigin', u'test', u'stds'] [u'prevent', u'assist', u'death', u'penalti', u'case'] [u'public', u'urg', u'fuel', u'price'] [u'pulp', u'document', u'reveal', u'truth', u'say', u'beazley'] [u'qanta', u'boss', u'back', u'chang'] [u'ponder', u'origin', u'coach', u'appoint'] [u'urg', u'rethink', u'repeat', u'drink', u'driver'] [u'remot', u'villag', u'begin', u'receiv'] [u'resid', u'quiz', u'caravan', u'park', u'sale'] [u'resid', u'urg', u'consid', u'tunnel', u'benefit'] [u'boost', u'west', u'wyalong', u'flight'] [u'right', u'watchdog', u'blast', u'anti', u'terror', u'law'] [u'roadwork', u'destroy', u'anzac', u'sit', u'inquiri'] [u'rowl', u'dylan', u'quill'] [u'ruddock', u'deni', u'incent', u'pay', u'dimia'] [u'runner', u'accident', u'spark', u'emerg', u'respons'] [u'russian', u'street', u'battl', u'kill'] [u'saddam', u'face', u'public', u'trial'] [u'saltwat', u'croc', u'remain', u'loos'] [u'senat', u'inquiri', u'fair', u'howard'] [u'busi', u'aftermath', u'gold', u'coast', u'storm'] [u'shelter', u'manag', u'month', u'chang', u'hand'] [u'ship', u'rescu', u'sunshin', u'coast'] [u'singapor', u'prepar', u'exercis'] [u'slurp', u'china', u'invent', u'noodl'] [u'smack', u'fail', u'opposit', u'support'] [u'socceroo', u'meet', u'uruguay', u'world', u'qualifi'] [u'sperm', u'donor', u'order', u'child', u'support'] [u'stanthorp', u'moon', u'asteroid', u'honour'] [u'stoner', u'chase', u'championship', u'phillip', u'island'] [u'student', u'welcom', u'voluntari', u'student', u'union', u'delay'] [u'subsidi', u'possibl', u'sniff', u'fuel'] [u'teen', u'send', u'suprem', u'court', u'sentenc'] [u'teen', u'face', u'court', u'accus', u'rap', u'year'] [u'thwait', u'reject', u'pipelin', u'fund', u'claim'] [u'tooth', u'decay', u'bite', u'dental', u'wait', u'list'] [u'tourism', u'gather', u'spotlight', u'visitor', u'centr', u'effort'] [u'town', u'look', u'develop', u'fuel', u'purchas', u'group'] [u'town', u'lament', u'loss', u'busi', u'centr'] [u'truck', u'industri', u'reject', u'nullarbor', u'hitchhik', u'call'] [u'turkey', u'bird', u'dead', u'type', u'commiss'] [u'tweed', u'council', u'work', u'disrupt', u'local'] [u'ultralight', u'crash', u'occur', u'test'] [u'union', u'brief', u'pilbara', u'worker', u'plan', u'chang'] [u'uruguay', u'threaten', u'unfriend', u'welcom'] [u'lead', u'spam', u'dirti', u'dozen'] [u'journalist', u'free', u'gaza', u'abduct'] [u'vail', u'see', u'hope', u'talk'] [u'vasil', u'hand', u'caulfield', u'lifelin'] [u'vaughan', u'book', u'expos', u'childish', u'smith'] [u'set', u'cool', u'period', u'late', u'abort'] [u'delay', u'upset', u'rivcol'] [u'govt', u'pressur', u'rethink', u'uranium'] [u'wale', u'skipper', u'thoma', u'assault', u'charg'] [u'waratah', u'come', u'cost'] [u'wast', u'plan', u'review', u'consid', u'recycl', u'option'] [u'water', u'user', u'fight', u'price', u'rise'] [u'watson', u'macgil', u'super', u'test'] [u'woman', u'charg', u'caravan', u'park', u'stab'] [u'woman', u'hurt', u'advancetown', u'crash'] [u'xstrata', u'ground', u'continu', u'gretley'] [u'zimbabw', u'opposit', u'boycott', u'senat', u'elect'] [u'adelaid', u'hawk'] [u'age', u'australian', u'posit', u'life'] [u'airport', u'secur', u'boost', u'fund'] [u'airport', u'secur', u'upgrad', u'plan'] [u'alpin', u'graze', u'fight', u'hold'] [u'back', u'propos', u'medicar', u'claim'] [u'announc', u'boss'] [u'arm', u'rebel', u'hole', u'russian', u'citi'] [u'asylum', u'seeker', u'leav', u'nauru'] [u'aussi', u'rebuild', u'loss', u'langer'] [u'aust', u'handl', u'bird', u'research', u'say'] [u'australia', u'bat', u'super', u'test'] [u'australia', u'lose', u'quick', u'wicket'] [u'murder', u'jail', u'year'] [u'ton', u'hayden'] [u'baggaley', u'speak', u'posit', u'drug', u'test'] [u'baggaley', u'hear', u'drug', u'posit'] [u'beethoven', u'manuscript', u'rediscov', u'year'] [u'belmont', u'hospit', u'improv', u'ambul', u'access'] [u'bennett', u'role', u'play', u'say', u'meninga'] [u'crowd', u'enjoy'] [u'crowd', u'expect', u'farewel', u'bali', u'blast', u'victim'] [u'biker', u'ride', u'honour', u'sheen'] [u'blue', u'trounc', u'woeful', u'bull', u'gabba'] [u'bordertown', u'civic', u'centr', u'plan'] [u'bradman', u'foundat', u'reject', u'biscuit', u'critic'] [u'branch', u'line', u'give', u'road'] [u'bruce', u'highway', u'fire', u'think', u'deliber'] [u'buchanan', u'coach', u'australia'] [u'campaign', u'launch', u'debt', u'collector', u'misconduct'] [u'canegrow', u'offer', u'assur'] [u'cannabi', u'scheme', u'eas', u'court', u'burden'] [u'caravan', u'park', u'poll', u'late'] [u'chemic', u'blast', u'put', u'pair', u'hospit'] [u'chines', u'spacecraft', u'correct', u'orbit'] [u'lead', u'network'] [u'civil', u'case', u'hook', u'death', u'delay'] [u'coast', u'secur', u'famili', u'relationship', u'centr'] [u'code', u'conduct', u'recommend', u'regul', u'winegrap'] [u'compani', u'cape', u'york', u'bauxit', u'mine', u'leas'] [u'coast', u'poultri'] [u'contract', u'harvest', u'unhappi', u'protocol'] [u'coonan', u'detail', u'digit', u'radio', u'roll'] [u'corbi', u'appeal', u'drug', u'sentenc', u'lawyer'] [u'costello', u'accus', u'hold', u'cut'] [u'council', u'accus', u'inact', u'smelter', u'lead', u'level'] [u'council', u'back', u'woodchip', u'opposit'] [u'council', u'move', u'stop', u'broule', u'year', u'beach'] [u'council', u'bodi', u'urg', u'back', u'night', u'patrol'] [u'council', u'merger', u'issu', u'agenda'] [u'council', u'hold', u'meet', u'civic', u'centr', u'plan'] [u'council', u'veto', u'detent', u'centr', u'plan'] [u'court', u'consid', u'guantanamo', u'access', u'petit'] [u'dalbi', u'crack', u'water'] [u'dalgeti', u'bredbo', u'award'] [u'dental', u'clinic', u'minus', u'dentist'] [u'downer', u'accus', u'muddl', u'messag'] [u'dravid', u'replac', u'ganguli', u'india', u'captain'] [u'dump', u'fight', u'say', u'comment'] [u'dunn', u'sack', u'opposit', u'whip'] [u'dutch', u'master', u'offer', u'boost', u'economi'] [u'dutch', u'polic', u'arrest', u'suspect', u'anti', u'terror', u'raid'] [u'english', u'actor', u'name', u'blond', u'bond'] [u'bird', u'expert', u'hold', u'crisi', u'talk'] [u'extra', u'paperwork', u'weigh', u'rural', u'women'] [u'north', u'vie', u'tourism', u'award'] [u'ferri', u'death', u'prompt', u'call', u'mannum', u'bridg'] [u'film', u'maker', u'go', u'west'] [u'offic', u'free', u'assault', u'convict'] [u'fund', u'hold', u'phase', u'highway', u'duplic'] [u'gallop', u'deni', u'cover', u'kucera', u'scandal'] [u'glebe', u'island', u'termin', u'worker', u'industri', u'action'] [u'gold', u'coast', u'storm', u'generat', u'damag'] [u'govt', u'abl', u'appeal', u'osland', u'vcat', u'order'] [u'govt', u'agre', u'opera', u'australia', u'fund'] [u'govt', u'announc', u'digit', u'radio', u'rollout'] [u'govt', u'ask', u'council', u'explain', u'montvill', u'golf'] [u'govt', u'bring', u'nauru', u'detaine'] [u'govt', u'play', u'nation', u'open', u'esper', u'offic'] [u'govt', u'promot', u'nurs', u'practition', u'scholarship'] [u'govt', u'implement', u'nation', u'anim', u'welfar', u'strategi'] [u'govt', u'urg', u'boost', u'region', u'job'] [u'grazier', u'warn', u'orang', u'fee'] [u'green', u'urg', u'compo', u'contamin', u'loss'] [u'gungahlin', u'drive', u'legal', u'challeng', u'drop'] [u'gunner', u'battl', u'injuri', u'woe'] [u'harper', u'promis', u'consult', u'rule'] [u'harper', u'question', u'experi'] [u'hayden', u'clark', u'lunch'] [u'hayden', u'gilchrist', u'australia'] [u'hayden', u'silenc', u'critic', u'gritti'] [u'health', u'servic', u'highlight', u'grow', u'locum'] [u'highway', u'heavi', u'vehicl', u'speed', u'limit'] [u'high', u'wind', u'batter', u'boggabilla'] [u'infect', u'apologis', u'victim'] [u'hospit', u'train', u'program', u'smooth', u'search'] [u'hospit', u'warn', u'stomach', u'epidem'] [u'howard', u'play', u'model', u'claim'] [u'hungri', u'australia', u'brand', u'tougher', u'argentina'] [u'indecis', u'trade', u'leav', u'market'] [u'indigen', u'protocol', u'advis', u'visitor'] [u'indonesia', u'eye', u'expand', u'live', u'cattl', u'trade'] [u'instruct', u'william', u'leav', u'nikol', u'confus'] [u'interview', u'matthew', u'hayden'] [u'invent', u'aid', u'safer', u'scalpel'] [u'jam', u'hardi', u'urg', u'remov', u'asbesto'] [u'jet', u'hope', u'turn', u'loss'] [u'jet', u'score', u'upset', u'adelaid'] [u'jobless', u'rate', u'rise', u'wimmera', u'malle'] [u'kalgoorli', u'go', u'high', u'tech', u'combat', u'stray', u'dog'] [u'katherin', u'gorg', u'croc', u'elud', u'author'] [u'kerin', u'confid', u'hold', u'liber', u'leadership'] [u'kucera', u'scandal', u'prompt', u'disclosur', u'rule'] [u'kyogl', u'consid', u'higher', u'water', u'cost'] [u'bali', u'front', u'court'] [u'lawrenc', u'testifi', u'bali', u'accus'] [u'lawrenc', u'trial', u'begin'] [u'leav', u'kakadu', u'toad', u'tourist', u'oper', u'tell'] [u'lee', u'arriv', u'falconio', u'murder', u'trial'] [u'legal', u'stoush', u'brew', u'famili', u'violenc'] [u'liber', u'call', u'leadership'] [u'lift', u'boss', u'tell', u'world'] [u'lihir', u'gold', u'resum', u'product'] [u'littl', u'pebbl', u'jail', u'sexual', u'abus'] [u'local', u'histor', u'maritim', u'artefact'] [u'mackay', u'polic', u'enforc', u'anti', u'terror', u'law'] [u'mainten', u'worker', u'die', u'sydney', u'airport'] [u'hang', u'yacht'] [u'face', u'court', u'mildura', u'drug', u'raid'] [u'maryborough', u'water', u'face', u'blue', u'green', u'alga', u'threat'] [u'mayor', u'back', u'plan', u'law', u'review'] [u'melbourn', u'take', u'risk', u'student', u'fee'] [u'meninga', u'court', u'walter', u'origin', u'role'] [u'meninga', u'bennett'] [u'mildura', u'euthanasia', u'rate', u'creat', u'concern'] [u'milk', u'post', u'loss'] [u'miner', u'make', u'west', u'whundo', u'copper', u'assess'] [u'mine', u'stock', u'drag', u'market'] [u'minist', u'fail', u'agre', u'polic', u'train', u'fund'] [u'minist', u'meet', u'longernong', u'colleg', u'offici'] [u'mitsubishi', u'pin', u'hop', u'model'] [u'moodi', u'say', u'vouvray'] [u'coupl'] [u'rain', u'forecast', u'central'] [u'mother', u'evict', u'highlight', u'hous', u'crisi', u'tascoss'] [u'mourner', u'farewel', u'year', u'kill', u'methadon'] [u'say', u'telstra', u'manag', u'comment', u'naiv'] [u'urg', u'govt', u'subsidis', u'sniffabl', u'petrol'] [u'murgon', u'mayor', u'quit'] [u'nauruan', u'weightlift', u'guilti', u'kill'] [u'nauru', u'detent', u'outstand', u'success'] [u'aviat', u'radio', u'network', u'begin', u'oper'] [u'newcastl', u'court', u'cell', u'revamp'] [u'newcastl', u'mourn', u'bali', u'bomb', u'victim'] [u'newcastl', u'hall', u'head', u'england'] [u'depot', u'expect', u'boost', u'firefight', u'effort'] [u'look', u'koala', u'hospit', u'reopen'] [u'nrac', u'see', u'benefit', u'simplifi', u'drought'] [u'push', u'wast', u'dump'] [u'nurseri', u'urg', u'help', u'tackl', u'weed', u'problem'] [u'women', u'drive', u'saudi', u'king', u'say'] [u'orang', u'council', u'urg', u'indoor', u'pool', u'sport'] [u'owen', u'confid', u'england', u'world', u'prospect'] [u'page', u'join', u'critic', u'alstonvill', u'bypass', u'delay'] [u'pakistan', u'militari', u'deni', u'quak', u'survivor', u'search'] [u'papua', u'refuge', u'give', u'resid'] [u'plan', u'afoot', u'extend', u'tuross', u'head', u'cycl', u'path'] [u'defend', u'terror', u'legisl', u'inquiri'] [u'downplay', u'overhaul', u'rumour'] [u'poki', u'reloc', u'stall'] [u'polic', u'bomb', u'isol', u'incid'] [u'polic', u'investig', u'explos', u'theft'] [u'polic', u'prepar', u'plan', u'communic', u'centr'] [u'port', u'botani', u'expans', u'plan', u'unwarr', u'inquiri'] [u'prehistor', u'pine', u'sydney'] [u'premier', u'defend', u'port', u'botani', u'expans'] [u'previous', u'repair', u'caus', u'worker', u'injuri', u'court', u'hear'] [u'public', u'brief', u'polic', u'kangaroo', u'flat', u'crime', u'concern'] [u'putin', u'throw', u'steel', u'ring', u'attack', u'town'] [u'rain', u'bring', u'mix', u'bless'] [u'rattl', u'play', u'beazley'] [u'rebel', u'kill', u'hostag', u'save', u'russian', u'town'] [u'report', u'hold', u'hope', u'narrabri'] [u'revfest', u'turn', u'council', u'support'] [u'riverland', u'driver', u'die', u'highway', u'crash'] [u'robinson', u'stun', u'baggaley', u'drug', u'posit'] [u'rossi', u'fastest', u'phillip', u'island'] [u'russian', u'forc', u'free', u'hostag'] [u'russian', u'polic', u'tackl', u'rebel', u'holdout'] [u'samsung', u'admit', u'price', u'fix'] [u'seve', u'find', u'tough', u'return'] [u'seven', u'brazilian', u'fifa', u'award', u'shortlist'] [u'share', u'market', u'buzz', u'boost', u'profit'] [u'sheep', u'research', u'consid', u'genet', u'answer', u'mules'] [u'shire', u'introduc', u'dump', u'charg'] [u'singapor', u'exercis', u'boost', u'central', u'economi'] [u'slack', u'slam', u'miller', u'sack'] [u'spiritu', u'leader', u'jail'] [u'staff', u'shortag', u'hamper', u'auditor', u'general', u'audit'] [u'star', u'bear', u'near', u'black', u'hole', u'surpris', u'scientist'] [u'state', u'urg', u'reject', u'propos', u'food', u'label'] [u'stem', u'cell', u'help', u'fight', u'leukaemia', u'relaps'] [u'storm', u'leav', u'wagga', u'damag', u'trail'] [u'stosur', u'beat', u'russia'] [u'sunshin', u'coast', u'make', u'food', u'market', u'push'] [u'tait', u'aim', u'comeback', u'month'] [u'opposit', u'unveil', u'rail', u'network', u'plan'] [u'teacher', u'seek', u'cancel', u'feder', u'award', u'agreement'] [u'teenag', u'drink', u'driver', u'give', u'suspend', u'sentenc'] [u'teen', u'refus', u'bail', u'grandmoth', u'stab'] [u'teen', u'face', u'court', u'accus', u'child', u'indec'] [u'telstra', u'reject', u'local', u'govt', u'impost', u'claim'] [u'telstra', u'reject', u'phone', u'exchang', u'critic'] [u'test', u'prove', u'bakeri', u'sourc', u'salmonella'] [u'tight', u'time', u'frame', u'bring', u'critic'] [u'timbercorp', u'plan', u'prompt', u'robe', u'concern'] [u'judg', u'fear', u'anti', u'terror', u'law', u'threaten', u'human'] [u'tourism', u'oper', u'welcom', u'visitor', u'centr'] [u'town', u'evacu', u'begin', u'leak'] [u'tremlett', u'rule', u'pakistan', u'tour'] [u'union', u'threaten', u'disrupt', u'cargo', u'ship', u'passag'] [u'fast', u'track', u'nurs', u'train'] [u'evacu', u'essenti', u'staff', u'west', u'darfur'] [u'uranium', u'explor', u'confid', u'industri', u'futur'] [u'reject', u'lobster', u'shipment'] [u'vasil', u'livid', u'court', u'rule'] [u'govt', u'blame', u'gippsland', u'jobless', u'rise'] [u'fear', u'apprentic', u'traine', u'chang'] [u'wast', u'plant', u'spotlight'] [u'water', u'tower', u'inquest', u'hear', u'safeti', u'concern'] [u'wilkinson', u'start', u'newcastl'] [u'windscreen', u'washer', u'futur', u'review'] [u'woman', u'distress', u'burial', u'plot', u'blunder'] [u'youth', u'centr', u'concern', u'worri', u'tenant', u'group'] [u'adelaid', u'airport', u'termin', u'run'] [u'remak', u'award', u'categori'] [u'aftershock', u'rattl', u'northern', u'pakistan'] [u'lock', u'nation', u'open'] [u'alonso', u'put', u'renault', u'drive', u'seat', u'china'] [u'concern', u'propos', u'chang', u'medic'] [u'anti', u'terror', u'leak', u'inevit'] [u'free', u'rang', u'pork', u'product', u'consum', u'urg'] [u'australian', u'economi', u'grow', u'expert', u'say'] [u'australian', u'troop', u'farewel'] [u'australia', u'world'] [u'bakeri', u'centr', u'outbreak', u'undergo', u'safeti'] [u'beach', u'reopen', u'shark', u'sight'] [u'bird', u'pose', u'risk', u'public', u'say'] [u'bronz', u'cunnamulla', u'fella', u'pay', u'tribut', u'slim', u'dusti'] [u'bush', u'advis', u'testifi', u'leak'] [u'call', u'temporari', u'magistr'] [u'carro', u'clear', u'roar'] [u'celebr', u'mark', u'warlukurlangu'] [u'china', u'say', u'better', u'bird', u'vaccin'] [u'china', u'tibet', u'railway', u'final', u'complet'] [u'chines', u'presid', u'talk', u'astronaut'] [u'clash', u'erupt', u'iraqi', u'vote'] [u'concern', u'baggag', u'sort', u'machin', u'sydney'] [u'darwin', u'flight', u'reschedul', u'secur', u'scare'] [u'dead', u'bird', u'confirm', u'romania'] [u'dismay', u'anti', u'terror', u'law'] [u'ebay', u'finalis', u'skype', u'deal'] [u'engin', u'inspect', u'leak'] [u'poll', u'sit', u'western', u'iraq', u'activist', u'claim'] [u'filipino', u'women', u'flee', u'domest', u'slaveri'] [u'fishermen', u'concern', u'nativ', u'titl', u'appeal'] [u'collaps', u'build', u'spain'] [u'flintoff', u'finish', u'tail'] [u'meet', u'kick', u'china'] [u'vow', u'combat', u'economi', u'risk'] [u'gilchrist', u'eye', u'super', u'centuri'] [u'gilchrist', u'fall', u'short', u'centuri'] [u'guatemala', u'warn', u'villag', u'mudslid'] [u'gungahlin', u'drive', u'extens', u'work'] [u'hawk', u'win', u'caulfield', u'rail'] [u'hayden', u'snare', u'phillip', u'island', u'pole', u'stoner', u'chase'] [u'hill', u'discuss', u'terror', u'secur', u'philippin'] [u'hop', u'find', u'remain', u'quak', u'survivor', u'fade'] [u'inquiri', u'insur', u'withdraw'] [u'interview', u'greg', u'child'] [u'iraq', u'bind', u'troop', u'farewel'] [u'iraqi', u'vote', u'constitut'] [u'iraq', u'milit', u'raze', u'sunni', u'offic'] [u'concern', u'warrant', u'govt', u'listen', u'beazley'] [u'reform', u'design', u'lower', u'wag'] [u'kean', u'quit', u'intern', u'footbal'] [u'king', u'bullet', u'wildcat', u'record', u'home', u'win'] [u'kiwi', u'shock', u'australia', u'nation', u'boilov'] [u'labor', u'back', u'anti', u'terror', u'leak'] [u'lawyer', u'seek', u'guantanamo', u'hunger', u'strike', u'medic'] [u'luxford', u'bennett', u'book', u'game', u'berth'] [u'marijuana', u'improv', u'memori', u'research'] [u'martin', u'want', u'nuclear', u'wast', u'plan', u'stop'] [u'mcgrath', u'make', u'histori', u'lara', u'expens'] [u'michelangelo', u'draw', u'grab'] [u'minist', u'talk', u'emerg', u'servic', u'cooper'] [u'minor', u'parti', u'scath', u'anti', u'terror', u'legisl'] [u'mix', u'result', u'aussi', u'squash', u'player'] [u'mosman', u'mayor', u'horrifi', u'muslim', u'comment'] [u'motorcyclist', u'crash', u'pole'] [u'patrol', u'boat', u'name'] [u'nikol', u'race', u'begin', u'tonight'] [u'quick', u'sale', u'surplus', u'car', u'schwarten', u'say'] [u'nuclear', u'wast', u'dump', u'oppon', u'fight'] [u'nullarbor', u'meteor', u'project', u'look', u'planet'] [u'babi', u'report', u'communiti', u'servic'] [u'pair', u'arrest', u'cannabi', u'plant'] [u'pampl', u'touch', u'vega'] [u'paraglid', u'rescu', u'rock', u'face'] [u'paul', u'name', u'wallabi'] [u'perth', u'shark', u'patrol'] [u'play', u'game', u'bennett', u'tell', u'kangaroo'] [u'congratul', u'mother', u'mari'] [u'polic', u'issu', u'warn', u'attempt', u'abduct'] [u'polic', u'probe', u'darwin', u'airport', u'secur', u'threat'] [u'poll', u'open', u'iraq'] [u'princess', u'mari', u'admit', u'hospit', u'report'] [u'princess', u'mari', u'give', u'birth'] [u'princess', u'mari', u'give', u'birth', u'princ'] [u'putin', u'talk', u'tough', u'russian', u'forc', u'crush', u'rebel'] [u'govt', u'panic', u'steal', u'explos'] [u'quak', u'death', u'toll', u'increas'] [u'quak', u'toll', u'rise'] [u'rail', u'cruis', u'victori'] [u'resid', u'ask', u'away', u'leaki'] [u'rossi', u'set', u'fastest', u'final', u'practic', u'stoner'] [u'royal', u'overwhelm', u'bundl'] [u'ruddock', u'launch', u'bushfir', u'awar', u'campaign'] [u'look', u'electr', u'reserv'] [u'search', u'boat', u'miss', u'torr', u'strait'] [u'secur', u'forc', u'alert', u'iraqi', u'vote'] [u'secur', u'tight', u'iraq', u'vote'] [u'shark', u'sight', u'shut', u'cotteslo', u'beach'] [u'spielberg', u'move', u'video', u'game', u'realm'] [u'spin', u'twin', u'break'] [u'spin', u'twin', u'bring', u'world'] [u'stage', u'water', u'restrict', u'remain', u'canberra'] [u'stanhop', u'defend', u'decis', u'post', u'anti', u'terror'] [u'stanhop', u'defi', u'govt', u'anti', u'terror', u'leak'] [u'stanhop', u'leak'] [u'star', u'trek', u'scotti', u'beam'] [u'stoltenberg', u'secur', u'coach', u'role'] [u'torren', u'sign', u'huddersfield'] [u'town', u'flood', u'threat', u'leak', u'slow'] [u'hospit', u'knife', u'attack'] [u'offici', u'accus', u'starv', u'iraqi', u'civilian'] [u'warn', u'pakistan', u'humanitarian', u'disast'] [u'ambassador', u'lucki', u'zimbabw', u'incid'] [u'ambassador', u'say', u'iran', u'lie', u'nuclear', u'weapon'] [u'captur', u'qaeda', u'disguis', u'expert', u'iraq'] [u'wall', u'upbeat', u'report', u'eas', u'inflat', u'fear'] [u'wilkinson', u'escap', u'injuri', u'rough', u'return'] [u'year', u'need', u'rebuild', u'pakistan'] [u'journalist', u'honour', u'media', u'award'] [u'arrest', u'cocain', u'charg'] [u'inform', u'explos', u'theft'] [u'alonso', u'cap', u'season', u'victori', u'china'] [u'anti', u'terror', u'law', u'need', u'year', u'futur'] [u'armidal', u'start', u'patrol', u'nothern', u'water'] [u'asio', u'number', u'boost'] [u'dead', u'india', u'boat', u'accid'] [u'aussi', u'look', u'drive', u'home', u'advantag'] [u'aussi', u'trio', u'advanc', u'british', u'open', u'semi', u'final'] [u'australia', u'crumbl', u'world', u'fight'] [u'light', u'stop', u'play'] [u'weather', u'halt', u'quak', u'relief', u'effort'] [u'weather', u'limit', u'pakistan', u'relief', u'oper'] [u'beatti', u'inject', u'hospit'] [u'boat', u'miss', u'north', u'queensland'] [u'bomb', u'kill', u'south', u'west', u'iran'] [u'bonfir', u'plan', u'mark', u'princ', u'birth'] [u'britain', u'brace', u'bird', u'outbreak'] [u'bull', u'super', u'leagu', u'grand', u'final'] [u'cabinet', u'size', u'stay', u'rann'] [u'open', u'kashmir', u'border'] [u'cane', u'toad', u'gas', u'kakadu', u'rule'] [u'chelsea', u'maintain', u'win', u'record'] [u'china', u'readi', u'spacecraft', u'return'] [u'claim', u'vehicl', u'damag', u'coastlin'] [u'commentari', u'highlight', u'super', u'test'] [u'count', u'underway', u'iraq', u'referendum'] [u'denmark', u'celebr', u'birth', u'futur', u'king'] [u'denmark', u'welcom', u'princ'] [u'downer', u'prais', u'high', u'voter', u'turnout', u'iraq'] [u'extra', u'aircraft', u'join', u'search', u'miss', u'immigr'] [u'falconio', u'famili', u'wait', u'trial', u'start'] [u'attack', u'poll', u'close'] [u'crew', u'talk', u'tactic', u'bushfir', u'season'] [u'damag', u'paint', u'factori'] [u'arrest', u'melbourn', u'drug', u'bust'] [u'flat', u'rate', u'cost', u'costello', u'say'] [u'countri', u'stabl', u'price'] [u'summit', u'excel', u'opportun', u'australia'] [u'game', u'health', u'chief', u'prepar', u'bird', u'emerg'] [u'gauci', u'suspend', u'caulfield', u'ride'] [u'gerard', u'whateley', u'tribut', u'mummifi'] [u'gerran', u'take', u'herald', u'honour'] [u'govt', u'accus', u'spin'] [u'govt', u'hop', u'unemploy'] [u'govt', u'minist', u'defend', u'chang'] [u'govt', u'urg', u'releas', u'fund', u'homeless', u'hous'] [u'gungahlin', u'drive', u'legal', u'action', u'cost', u'million'] [u'harmison', u'strike', u'australia', u'march'] [u'howard', u'doubl', u'asio', u'number'] [u'advic', u'line', u'open', u'student'] [u'huge', u'need', u'relationship', u'centr', u'chifley'] [u'hunter', u'road', u'open', u'spill'] [u'industri', u'oper', u'discuss', u'illeg', u'fish', u'option'] [u'interview', u'andrew', u'flintoff'] [u'iranian', u'adulteress', u'face', u'death', u'stone'] [u'iraq', u'referendum', u'hail', u'success'] [u'juve', u'march'] [u'kangaroo', u'smart', u'shock', u'loss'] [u'kerin', u'announc', u'reduc', u'frontbench'] [u'macgil', u'urg', u'selector', u'employ', u'spin'] [u'malawi', u'leader', u'declar', u'disast', u'food', u'crisi'] [u'marin', u'rout', u'glori', u'break', u'home', u'drought'] [u'massiv', u'search', u'miss', u'immigr', u'boat'] [u'mcgrath', u'captur', u'fast', u'bowl', u'record'] [u'memori', u'honour', u'volunt'] [u'million', u'turn', u'iraqi', u'referendum'] [u'moder', u'quak', u'jolt', u'tokyo'] [u'seek', u'oncolog', u'unit', u'trade', u'nuclear', u'wast'] [u'nazi', u'march', u'spark', u'riot', u'citi'] [u'altern', u'nuclear', u'dump', u'site'] [u'deal', u'ferrari', u'say', u'raikkonen'] [u'excus', u'nation', u'loss', u'bennett'] [u'sign', u'miss', u'immigr', u'boat'] [u'crew', u'join', u'forc', u'support', u'awar'] [u'opposit', u'seek', u'legal', u'advic', u'tunnel', u'deal'] [u'pakistan', u'quak', u'caus', u'damag'] [u'say', u'australia', u'deal', u'terror', u'threat'] [u'polanski', u'draw', u'childhood', u'oliv', u'twist'] [u'pork', u'industri', u'say', u'practic', u'promot', u'anim', u'welfar'] [u'prayer', u'hold', u'sydney', u'quak', u'victim'] [u'fund', u'water', u'fluorid', u'project'] [u'rice', u'say', u'iraq', u'constitut', u'probabl', u'pass'] [u'right', u'group', u'warn', u'fair', u'trial', u'risk', u'saddam'] [u'roar', u'beat', u'cellar', u'dwell', u'knight'] [u'romania', u'begin', u'cull', u'bird', u'confirm'] [u'ronaldo', u'ecstasi', u'agoni', u'real'] [u'russian', u'provinc', u'mourn', u'attack'] [u'search', u'continu', u'miss', u'immigr', u'boat'] [u'search', u'miss', u'bushwalk'] [u'kill', u'pakistani', u'chopper', u'crash'] [u'solon', u'hop', u'birthday', u'homecom'] [u'south', u'australian', u'diabet', u'cure'] [u'stoner', u'titl', u'dream'] [u'stoner', u'titl', u'dream', u'rossi', u'win', u'moto'] [u'storm', u'kill', u'india'] [u'sydney', u'parkland', u'design', u'competit', u'open'] [u'tiger', u'capit', u'record', u'basketbal', u'win'] [u'prize', u'scottish', u'parliament', u'build'] [u'tragic', u'mummifi', u'career'] [u'tribut', u'fazeer'] [u'ralli', u'highlight', u'racial', u'inequ'] [u'wont', u'iraq'] [u'boost', u'health', u'fund', u'game', u'emerg'] [u'victori', u'smash', u'sydney', u'lead', u'leagu'] [u'voter', u'turnout', u'high', u'million'] [u'minist', u'slam', u'govt', u'minimum', u'wage', u'record'] [u'want', u'nazi', u'trace', u'spain'] [u'expert', u'warn', u'bird', u'pandem'] [u'work', u'continu', u'drain', u'leaki'] [u'world', u'player', u'troop'] [u'world', u'close', u'sydney'] [u'milan', u'beat', u'cagliari', u'leader', u'juve'] [u'acoss', u'urg', u'nation', u'anti', u'poverti', u'plan'] [u'agreement', u'reach', u'basin', u'meet'] [u'call', u'scrutini', u'terror', u'law'] [u'miss', u'boat', u'capsiz', u'nepal'] [u'aussi', u'pair', u'british', u'open', u'squash', u'final'] [u'aussi', u'close', u'super', u'test'] [u'aussi', u'world'] [u'aussi', u'thrash', u'world', u'super', u'test'] [u'aussi', u'tighten', u'grip', u'super', u'test'] [u'aust', u'engin', u'join', u'quak', u'relief', u'effort'] [u'aust', u'philippin', u'boost', u'anti', u'terror', u'exchang'] [u'australian', u'detain', u'lankan', u'assassin'] [u'australian', u'ponder', u'twin', u'spin', u'option'] [u'australia', u'boost', u'train', u'philippin', u'armi'] [u'australia', u'test', u'anti', u'terror', u'capabl'] [u'babi', u'boomer', u'drive', u'melbourn', u'apart', u'market'] [u'bank', u'help', u'market', u'modest', u'gain'] [u'barrett', u'name', u'tour', u'jamaica'] [u'beatti', u'moot', u'interst', u'migrant'] [u'be', u'faster', u'whoosh', u'factor'] [u'crowd', u'flock', u'esper'] [u'bird', u'battl', u'buttock', u'bike', u'prize'] [u'birney', u'alleg', u'cover', u'kucera', u'share'] [u'birney', u'back', u'anti', u'terror', u'law'] [u'blaze', u'claim', u'wimmera', u'farm', u'gear'] [u'blaze', u'rip', u'melbourn', u'fruit', u'shop'] [u'boat', u'mishap', u'claim', u'british', u'tourist', u'life'] [u'kill', u'school', u'gate', u'accid'] [u'brief', u'hold', u'councillor'] [u'bush', u'blueprint', u'get', u'respons'] [u'bushrang', u'tough', u'say', u'hussey'] [u'contamin', u'tribun'] [u'chechen', u'leader', u'claim', u'dead', u'russian', u'raid'] [u'chees', u'compani', u'perform', u'despit', u'drought'] [u'china', u'ask', u'uranium', u'access'] [u'church', u'talk', u'theolog', u'degre'] [u'citrus', u'industri', u'say', u'chemic', u'livestock', u'risk'] [u'clark', u'form', u'coalit', u'lead'] [u'coast', u'mayor', u'fluorid', u'plan'] [u'commonwealth', u'veto', u'siev', u'memori', u'canberra'] [u'confer', u'focus', u'coastal', u'develop'] [u'confus', u'prompt', u'alcohol', u'risk', u'label'] [u'controversi', u'politician', u'foreign'] [u'costello', u'promot', u'energi', u'freeway', u'china'] [u'councillor', u'divulg', u'donat'] [u'council', u'help', u'preschool', u'rat', u'dilemma'] [u'counter', u'terrorist', u'exercis', u'prompt', u'alert'] [u'court', u'vow', u'speed', u'bali', u'bomber', u'execut'] [u'reach', u'domest', u'cricket', u'mileston'] [u'croc', u'breed', u'season'] [u'darwin', u'readi', u'falconio', u'trial'] [u'depress', u'studi', u'parkinson', u'treatment'] [u'devilish', u'pair', u'tasmania', u'gift', u'home', u'grow', u'princess'] [u'diseas', u'threaten', u'guatemalan', u'mudslid', u'survivor'] [u'match', u'link', u'murdoch', u'lee', u'court', u'tell'] [u'downer', u'receiv', u'barossa', u'baron', u'titl'] [u'dozen', u'kill', u'strike', u'iraq'] [u'draft', u'terror', u'law', u'alarm', u'muslim'] [u'email', u'warn', u'canberra', u'bushfir', u'inquest', u'hear'] [u'exercis', u'test', u'prepared', u'terrorist'] [u'expert', u'probe', u'possibl', u'histor', u'shipwreck', u'item'] [u'explos', u'theft', u'trigger', u'calm'] [u'falconio', u'famili', u'arriv', u'darwin', u'court'] [u'famili', u'violenc', u'law', u'rais', u'resourc', u'issu'] [u'farmer', u'welcom', u'weekend', u'rain'] [u'fight', u'fraser', u'cane', u'toad', u'free'] [u'soldier', u'kill', u'iraq', u'bomb'] [u'fluorid', u'plan', u'draw', u'critic'] [u'forum', u'focus', u'poverti', u'fight'] [u'getaf', u'celta', u'lose', u'leav', u'real'] [u'ghan', u'boost', u'peak', u'season', u'servic'] [u'gilmor', u'keep', u'surf', u'crown'] [u'glenn', u'mitchel', u'speak', u'matthew', u'hayden', u'ricki'] [u'godolphin', u'make', u'earli', u'carniv', u'exit'] [u'govt', u'tougher', u'high', u'risk', u'offend'] [u'govt', u'move', u'head', u'csiro', u'drought', u'assist'] [u'govt', u'offer', u'prompt', u'council', u'fluorid', u'debat'] [u'govt', u'educ', u'expert', u'rais', u'prospect', u'nation'] [u'govt', u'sell', u'golf', u'cours'] [u'govt', u'unveil', u'nativ', u'titl', u'review'] [u'govt', u'beat', u'busi', u'outlook', u'report'] [u'govt', u'urg', u'appeal', u'drink', u'driver', u'sentenc'] [u'greenpeac', u'back', u'solar', u'power', u'water', u'plant'] [u'hagan', u'reject', u'lockyer', u'sack'] [u'hailstorm', u'flatten', u'crop'] [u'hall', u'suggest', u'base', u'motorhom', u'user'] [u'harrop', u'kahlefeldt', u'add', u'comm', u'game', u'team'] [u'harrop', u'name', u'game', u'triathlon', u'squad'] [u'helicopt', u'resum', u'pakistan', u'quak', u'relief'] [u'help', u'closer', u'hand', u'famili', u'relationship'] [u'highway', u'polic', u'chase', u'reach'] [u'hindmarsh', u'recal', u'kangaroo'] [u'hospit', u'administr', u'forc', u'health'] [u'hospit', u'chief', u'stand', u'lengthi', u'revamp'] [u'hunter', u'student', u'begin', u'exam'] [u'shelv', u'super', u'seri', u'plan'] [u'take', u'cautious', u'approach', u'technolog', u'trial'] [u'illeg', u'fish', u'undermin', u'stock', u'manag'] [u'immigr', u'boat', u'search', u'expand'] [u'iran', u'deni', u'link', u'iraqi', u'bomb', u'attack'] [u'iraqi', u'vote', u'blow', u'terrorist', u'bush'] [u'hear', u'muswellbrook', u'hospit', u'staff', u'issu'] [u'israel', u'freez', u'contact', u'palestinian'] [u'journalist', u'invit', u'attract'] [u'koertzen', u'techno', u'cricket'] [u'koizumi', u'pray', u'controversi', u'shrine'] [u'koizumi', u'reject', u'object', u'shrine', u'visit'] [u'labor', u'turn', u'stanhop', u'terror', u'legisl'] [u'landhold', u'urg', u'season', u'readi'] [u'leasehold', u'fine', u'tune', u'block', u'buy'] [u'lee', u'arriv', u'falconio', u'trial'] [u'leica', u'falcon', u'trainer', u'await'] [u'leica', u'falcon', u'trainer', u'await', u'melbourn'] [u'back', u'freight', u'transport', u'review'] [u'liber', u'preselect', u'northern', u'candid'] [u'littl', u'pebbl', u'order', u'vow', u'carri'] [u'livestock', u'agent', u'wont', u'support', u'plan', u'nlis'] [u'locum', u'help', u'sustain', u'north', u'coast', u'hospit'] [u'health', u'advisori', u'council', u'know', u'soon'] [u'accus', u'tri', u'burn', u'women'] [u'die', u'highway', u'crash'] [u'charg', u'repeat', u'roof', u'jump'] [u'martin', u'vow', u'target', u'senat', u'fight'] [u'mari', u'parent', u'dote', u'littl', u'princ'] [u'matilda', u'hold', u'stalem'] [u'mcleod', u'johnson', u'lead', u'australia'] [u'meatwork', u'face', u'court', u'action', u'worker', u'union'] [u'merger', u'expect', u'boost', u'wine', u'export'] [u'migratori', u'bird', u'threat', u'aqi'] [u'miner', u'begin', u'geraldton', u'servic'] [u'miss', u'teenag', u'beachsid', u'suburb'] [u'miss', u'woman', u'safe'] [u'mix', u'respons', u'technic', u'colleg', u'plan'] [u'lake', u'entranc', u'strand', u'predict'] [u'mother', u'riot', u'kill', u'argentin', u'prison'] [u'mugab', u'presenc', u'dismay', u'food', u'summit', u'deleg'] [u'murder', u'trial', u'hear', u'trace', u'miss', u'father'] [u'murdoch', u'deni', u'kill', u'falconio'] [u'nation', u'maywald', u'preselect', u'chaffey'] [u'nation', u'determin', u'tamworth', u'preselect', u'time'] [u'neethl', u'confirm', u'sydney', u'skin'] [u'rule', u'encourag', u'cowboy', u'oper', u'cfmeu'] [u'nrma', u'join', u'fight', u'poki', u'increas'] [u'govt', u'claim', u'credit', u'reduc', u'drug'] [u'govt', u'urg', u'offer', u'tour', u'industri', u'fuel', u'relief'] [u'nuclear', u'dump', u'health', u'link'] [u'inflat', u'creep', u'upper', u'target'] [u'duti', u'policeman', u'die', u'crash'] [u'offici', u'predict', u'iraqi', u'referendum', u'success'] [u'opposit', u'tip', u'earli', u'elect'] [u'pack', u'attack', u'father', u'leav', u'newborn', u'injur', u'court'] [u'paedophil', u'victim', u'reject', u'compens', u'offer'] [u'palm', u'leader', u'welcom', u'govt', u'prioriti'] [u'parent', u'ask', u'school', u'fund', u'petit'] [u'pierc', u'world'] [u'plan', u'roll', u'armidal', u'transport', u'museum'] [u'deni', u'soften', u'anti', u'terror', u'law'] [u'unsur', u'need', u'uniform', u'year', u'exam'] [u'polic', u'lament', u'dean', u'crime'] [u'polic', u'minist', u'seek', u'brief', u'airport', u'bomb', u'hoax'] [u'plater', u'catch', u'drive'] [u'premier', u'counter', u'terror', u'law'] [u'probe', u'launch', u'hospit', u'mishap'] [u'public', u'ask', u'worri'] [u'public', u'impati', u'princ', u'appear'] [u'public', u'oppos', u'harbour', u'plan', u'nation', u'trust'] [u'public', u'urg', u'learn', u'court', u'appeal'] [u'extend', u'subsidi', u'sniffabl', u'fuel'] [u'quak', u'rock', u'indonesia', u'nia', u'island'] [u'qualiti', u'asio', u'recruit', u'hard'] [u'racv', u'pessimist', u'govt', u'effort', u'fuel'] [u'rain', u'dispers', u'spill'] [u'rain', u'fail', u'eas', u'brisban', u'water', u'restrict'] [u'rain', u'help', u'brighten', u'sorghum', u'prospect'] [u'ramadi', u'violenc', u'kill'] [u'region', u'forum', u'consid', u'doctor', u'hospit'] [u'rescu', u'lift', u'pakistani', u'spirit', u'rain', u'fall'] [u'research', u'hone', u'altern', u'stem', u'cell', u'techniqu'] [u'resourc', u'boom', u'wont', u'forev', u'report'] [u'rise', u'fuel', u'price', u'cost', u'region', u'thousand'] [u'rudd', u'talk', u'trade', u'bird', u'china'] [u'wine', u'fetch', u'auction'] [u'sawlog', u'protest', u'chain', u'build'] [u'school', u'push', u'healthi', u'eat', u'plan'] [u'search', u'continu', u'sourc', u'sulphur', u'dioxid'] [u'search', u'fail', u'locat', u'miss', u'immigr', u'boat'] [u'season', u'victori', u'coach', u'warn', u'player'] [u'senat', u'reject', u'stop', u'nuclear', u'dump'] [u'septic', u'tank', u'compost', u'trial', u'success'] [u'busi', u'clean', u'hail', u'damag'] [u'offend', u'jail', u'year'] [u'shear', u'shortag', u'caus', u'delay'] [u'ship', u'builder', u'austal', u'land', u'militari', u'contract'] [u'injur', u'earthquak', u'rattl', u'turkey'] [u'smoke', u'alarm', u'remind', u'issu', u'hous'] [u'sorenstam', u'march', u'lpga', u'mileston'] [u'staff', u'boost', u'hydrotherapi', u'pool'] [u'stall', u'inquiri', u'bushfir', u'resum'] [u'stanhop', u'flag', u'doubt', u'hasti', u'terror'] [u'state', u'demand', u'consult', u'chang'] [u'stinger', u'season', u'prepar'] [u'student', u'begin', u'exam'] [u'sugar', u'industri', u'move', u'market', u'deregul'] [u'taikonaut', u'touch', u'china'] [u'tasmanian', u'princ', u'devilish', u'gift'] [u'tassi', u'tail', u'fight', u'gabba'] [u'teen', u'driver', u'accus', u'highway', u'drive'] [u'terror', u'exercis', u'begin'] [u'thousand', u'attend', u'mildura'] [u'thredbo', u'host', u'region', u'develop', u'gather'] [u'prefer', u'sit', u'choos', u'biosolid', u'trial'] [u'tiger', u'fight', u'lose', u'open'] [u'timber', u'haul', u'trucki', u'code', u'conduct'] [u'tunbridg', u'leak', u'threat', u'eas'] [u'goal', u'cole', u'fire', u'citi', u'fourth'] [u'kill', u'wound', u'west', u'bank', u'ambush'] [u'union', u'air', u'cargo', u'ship', u'safeti', u'concern'] [u'see', u'need', u'hunger'] [u'vote', u'begin', u'condit'] [u'weather', u'hinder', u'search', u'immigr', u'boat'] [u'whale', u'festiv', u'attract', u'crowd'] [u'woman', u'get', u'suspend', u'jail', u'term', u'knife', u'attack'] [u'head', u'upbeat', u'doha', u'round', u'talk'] [u'fight', u'walli', u'lake', u'water', u'pollut'] [u'abbott', u'consid', u'nationwid', u'bird', u'jab'] [u'remain', u'sceptic', u'medicin', u'cannabi'] [u'call', u'reduc', u'apprenticeship', u'train', u'time'] [u'aircraft', u'antarct', u'research', u'effort'] [u'albani', u'doesnt', u'seek', u'airport', u'passeng', u'screen', u'gear'] [u'alic', u'spring', u'communiti'] [u'presid', u'urg', u'reform', u'unhealthi', u'parti'] [u'move', u'improv', u'access'] [u'tropic', u'storm', u'build', u'caribbean'] [u'shark', u'switch', u'prey', u'human'] [u'aurukun', u'pump', u'opal', u'combat', u'petrol', u'sniff'] [u'australia', u'help', u'east', u'timor', u'fend', u'bird'] [u'australialos', u'digger'] [u'aust', u'troop', u'head', u'philippin', u'plan'] [u'author', u'continu', u'assess', u'hailstorm', u'damag'] [u'bali', u'blast', u'victim', u'condit', u'improv'] [u'bali', u'trial', u'hear', u'custom', u'offic', u'account'] [u'ballarat', u'boost', u'share', u'reservoir'] [u'barmah', u'face', u'charg'] [u'barri', u'jone', u'choos', u'coal', u'patron'] [u'bathurst', u'honour', u'navi', u'boat', u'name'] [u'beatti', u'deni', u'pass', u'buck', u'water'] [u'beatti', u'dismiss', u'earli', u'elect', u'claim'] [u'beatti', u'outlin', u'indigen', u'health', u'spend', u'boost'] [u'bendigo', u'join', u'counter', u'terror', u'train'] [u'boro', u'xavier', u'suspend', u'drug', u'test'] [u'bowen', u'mayor', u'attack', u'beatti', u'fluorid', u'plan'] [u'brazil', u'confirm', u'case', u'foot', u'mouth'] [u'bruton', u'name', u'player', u'week'] [u'buffalo', u'export', u'resum'] [u'bulletproof', u'tshirt', u'form'] [u'bull', u'fight', u'tiger'] [u'bureau', u'predict', u'warm', u'start', u'summer'] [u'driver', u'charg', u'hurrican', u'evacu', u'death'] [u'bushfir', u'probe', u'tell', u'canberra', u'firefight'] [u'busselton', u'mozzi', u'control', u'face', u'hurdl'] [u'attack', u'mark', u'start', u'saddam', u'trial'] [u'canadian', u'miner', u'open', u'kalgoorli', u'boulder', u'offic'] [u'casino', u'murwillumbah', u'rail', u'line', u'reopen'] [u'cattl', u'price', u'rise', u'rain'] [u'centrelink', u'worker', u'stop', u'work', u'disput'] [u'advertis', u'blitz', u'rais', u'bushfir', u'awar'] [u'champ', u'driver', u'indi'] [u'china', u'put', u'japan', u'foreign', u'minist', u'visit'] [u'citi', u'author', u'accus', u'wast', u'water'] [u'clark', u'defend', u'choic', u'immigr', u'minist'] [u'probe', u'hear', u'deputi', u'mayor', u'help', u'rais'] [u'compani', u'implement', u'chang', u'follow', u'ammonia'] [u'confer', u'shin', u'spotlight', u'famili', u'violenc'] [u'cooper', u'barrett', u'omeley', u'kangaroo'] [u'cooper', u'lawyer', u'attack', u'prosecut', u'wit'] [u'cooper', u'tip', u'join', u'gasnier', u'centr'] [u'coron', u'rule', u'inquest', u'hospit', u'death'] [u'council', u'studi', u'consid', u'admin', u'centr'] [u'council', u'introduc', u'water', u'wise', u'sprinkler'] [u'council', u'urg', u'chang'] [u'council', u'worker', u'vote', u'offer'] [u'court', u'quash', u'order', u'kidman', u'case'] [u'court', u'reject', u'govt', u'staffer', u'appeal'] [u'court', u'nativ', u'titl', u'evid'] [u'creek', u'aliv', u'outlin', u'waterway', u'health'] [u'csiro', u'drought', u'report'] [u'custom', u'work', u'problem'] [u'demand', u'rise', u'industri', u'land'] [u'dept', u'investig', u'cruelti', u'claim'] [u'deputi', u'governor', u'shoot', u'dead', u'iraq'] [u'devil', u'drag', u'govt', u'polit', u'snarl'] [u'digger', u'die', u'age'] [u'diva', u'draw', u'perfect', u'barrier'] [u'diva', u'firm', u'plate'] [u'downer', u'condemn', u'disgrac', u'mugab', u'speech'] [u'drought', u'review', u'area'] [u'drought', u'tour', u'west'] [u'emerg', u'delay', u'flight'] [u'european', u'commiss', u'order', u'bird', u'test'] [u'farmer', u'cautious', u'approach', u'plant', u'cotton'] [u'farm', u'group', u'consid', u'grain', u'fight', u'support'] [u'fear', u'hold', u'north', u'coast', u'public', u'hospit'] [u'firefight', u'test'] [u'forc', u'membership', u'continu', u'rise'] [u'fring', u'player', u'fail', u'push', u'test', u'claim', u'waca'] [u'gaol', u'staff', u'readi', u'order', u'work'] [u'face', u'nation'] [u'girl', u'surviv', u'day', u'quak', u'rubbl'] [u'tobacco', u'stock', u'boost', u'wall', u'street'] [u'golf', u'resort', u'land', u'sale', u'soon'] [u'govt', u'accus', u'fail', u'control', u'public'] [u'govt', u'agre', u'releas', u'secret', u'cross', u'citi', u'tunnel'] [u'govt', u'consid', u'bird', u'vaccin', u'program'] [u'govt', u'urg', u'fluorid', u'drink', u'water'] [u'great', u'lake', u'psychiatr', u'ward', u'close'] [u'greenspan', u'tip', u'moder', u'price', u'toll'] [u'hope', u'rain', u'stay', u'away', u'expo'] [u'howard', u'suitabl', u'dump', u'site', u'labor'] [u'indigen', u'station', u'look', u'local', u'program'] [u'indonesia', u'pull', u'troop', u'aceh'] [u'infect', u'doctor', u'monitor', u'effect', u'hookworm'] [u'inquiri', u'tell', u'bundaberg', u'hospit', u'grossli'] [u'chang', u'mockeri', u'farmer', u'opposit'] [u'chang', u'uneth', u'salvo'] [u'mayor', u'welcom', u'opal', u'fuel', u'initi'] [u'jackson', u'wnbl', u'season'] [u'jfks', u'unwant', u'gift', u'find', u'buyer'] [u'jockey', u'chang', u'leica', u'falcon'] [u'johnson', u'back', u'japan', u'world'] [u'juri', u'fail', u'reach', u'murder', u'trial', u'verdict'] [u'katich', u'lead', u'near', u'test', u'strength', u'blue'] [u'kelli', u'dolan'] [u'kiwi', u'chang', u'return', u'test'] [u'australian', u'fighter', u'die'] [u'lead', u'doctor', u'hookoworm', u'discoveri'] [u'lee', u'describ', u'alleg', u'attack', u'falconio', u'trial'] [u'lee', u'falconio', u'murder', u'accus'] [u'lee', u'punch', u'tie', u'attack'] [u'lennon', u'attack', u'liber', u'elect', u'promis'] [u'local', u'council', u'cast', u'doubt', u'fluorid', u'plan'] [u'macgil', u'face', u'despit', u'super', u'perform'] [u'magnet', u'field', u'map', u'mar', u'tecton', u'plat'] [u'maher', u'lead', u'bull', u'inning', u'point'] [u'custodi', u'accus', u'tortur', u'stepdaught'] [u'mayor', u'highlight', u'fluorid', u'cost', u'council'] [u'mayor', u'seek', u'public', u'debat', u'fluorid', u'plan'] [u'mayor', u'welcom', u'power', u'upgrad'] [u'mcevoy', u'ride', u'leica', u'falcon'] [u'meet', u'debat', u'wagga', u'hospit', u'plan'] [u'learn', u'british', u'manner'] [u'miner', u'market', u'boost'] [u'staff', u'interview', u'explos', u'theft'] [u'minist', u'order', u'probe', u'leak'] [u'minist', u'question', u'elder', u'woman', u'death'] [u'minist', u'breach', u'doesnt', u'warrant', u'dismiss', u'gallop'] [u'model', u'doctor', u'letter', u'say'] [u'hold', u'talk', u'boost', u'organ', u'industri'] [u'stand', u'steelwork', u'indentur'] [u'worri', u'councillor', u'tri', u'avoid', u'scrutini'] [u'mugab', u'target', u'bush', u'blair'] [u'murphi', u'rescu', u'point', u'charlton', u'london', u'derbi'] [u'narrow', u'loss', u'good', u'montevideo', u'farina'] [u'nativ', u'titl', u'scheme', u'review'] [u'council', u'committe', u'consid', u'develop'] [u'foreign', u'minist', u'send', u'wrong', u'messag'] [u'therapi', u'provid', u'relief', u'burn', u'victim'] [u'dog', u'life', u'pamper', u'pet'] [u'north', u'west', u'woman', u'societi', u'chief'] [u'govt', u'criticis', u'greedi', u'poker', u'machin', u'tax'] [u'govt', u'deregul', u'domest', u'rice', u'market'] [u'polic', u'defend', u'rise', u'number', u'arrest'] [u'polic', u'give', u'power', u'fight', u'violenc'] [u'price', u'busi', u'nervous'] [u'opposit', u'claim', u'independ', u'plan', u'group', u'gag'] [u'form', u'molik', u'prepar', u'titl', u'defenc'] [u'owen', u'griev'] [u'panda', u'famili', u'mark', u'tradit', u'mileston'] [u'parliament', u'conduct', u'inquiri', u'morri', u'say'] [u'patrick', u'reject', u'conceiv', u'toll'] [u'plan', u'milk', u'price', u'agenc', u'like', u'scuttl'] [u'appeal', u'calm', u'spread', u'bird'] [u'dismiss', u'gallipoli', u'theme', u'park', u'idea'] [u'benefit', u'aust', u'busi', u'somar'] [u'polic', u'revfest', u'claim'] [u'polic', u'investig', u'suspect', u'kidnap'] [u'polic', u'investig', u'suspici', u'hous'] [u'polic', u'wait', u'bali', u'court', u'hear'] [u'polic', u'probe', u'fatal', u'crash'] [u'polic', u'record', u'play', u'murder', u'trial'] [u'posit', u'financi', u'result', u'tourism', u'group'] [u'pressur', u'mount', u'pipelin', u'fund'] [u'probe', u'continu', u'son', u'mother', u'kill', u'claim'] [u'project', u'status', u'boost', u'timber', u'process', u'plant'] [u'proud', u'parent', u'princ'] [u'push', u'promot', u'tertiari', u'studi'] [u'race', u'club', u'beat', u'nomin'] [u'rain', u'cut', u'oodnadatta'] [u'ratepay', u'fund', u'flood', u'mitig'] [u'ravlich', u'unsur', u'nation', u'educ', u'certif'] [u'reactor', u'worker', u'radiat', u'scare'] [u'bull', u'need', u'speed'] [u'redesign', u'holey', u'build', u'rise', u'fear'] [u'remain', u'ironman', u'program', u'detail', u'know', u'soon'] [u'report', u'bring', u'raceway', u'oper'] [u'report', u'show', u'tasmanian', u'parent', u'fear', u'poverti'] [u'rickett', u'squash', u'willstrop', u'british', u'open'] [u'rise', u'malnutrit', u'prompt', u'malawi', u'appeal'] [u'rise', u'petrol', u'price', u'fuel', u'busi', u'cost'] [u'romania', u'detect', u'suspect', u'bird', u'case'] [u'ronaldo', u'miss', u'real', u'champion', u'clash'] [u'bag', u'gallipoli', u'theme', u'park'] [u'rural', u'cannabi', u'clinic', u'open', u'door'] [u'sailor', u'cast', u'solo', u'aust'] [u'irrig', u'reject', u'csiro', u'water', u'plan'] [u'sale', u'confer', u'consid', u'water', u'manag'] [u'salvat', u'armi', u'label', u'chang', u'uneth'] [u'school', u'recognis', u'green', u'effort'] [u'scott', u'play', u'australian', u'open'] [u'serbian', u'royal', u'seek', u'wive', u'classifi'] [u'seek', u'coast', u'volunt'] [u'sewerag', u'treatment', u'plant', u'begin', u'oper'] [u'sheep', u'farmer', u'warn', u'poison', u'threat'] [u'sizemor', u'jail', u'term', u'suspend'] [u'smoke', u'alarm', u'divert', u'qanta', u'flight'] [u'snowtown', u'helper', u'passiv', u'manserv'] [u'socceroo', u'threaten', u'world', u'walk'] [u'speedi', u'bali', u'execut', u'lead', u'attack'] [u'state', u'urg', u'care', u'consid', u'increas'] [u'sign', u'miss', u'immigr', u'boat'] [u'stoner', u'make', u'grafton', u'bridg', u'pledg'] [u'student', u'restraint', u'urg', u'muck'] [u'survey', u'find', u'support', u'cathedr'] [u'swear', u'polic', u'case', u'dismiss', u'spark', u'outrag'] [u'taxi', u'fare', u'rise', u'cover', u'fuel', u'cost'] [u'teen', u'die', u'dead', u'hous', u'blaze'] [u'termin', u'migrant', u'sue', u'wrong', u'detent'] [u'tough', u'penalti', u'anim', u'cruelti'] [u'tribut', u'flow', u'fighter'] [u'tripodi', u'reject', u'highway', u'claim'] [u'bali', u'court', u'second', u'appear'] [u'union', u'cast', u'doubt', u'heywood', u'pulp'] [u'unit', u'ferguson', u'say'] [u'troop', u'kill', u'afghan', u'polic', u'governor', u'say'] [u'vegi', u'grower', u'face', u'irrig'] [u'vet', u'cape', u'retreat', u'transfer', u'indigen'] [u'virgin', u'blue', u'tip', u'profit'] [u'vline', u'blame', u'upgrad', u'train', u'delay'] [u'wagga', u'triathlet', u'name', u'game', u'squad'] [u'warrior', u'troubl', u'bushrang'] [u'warrior', u'skittl', u'waca'] [u'water', u'initi', u'depend', u'cooper', u'expert'] [u'watson', u'say', u'super', u'seri', u'stay'] [u'weak', u'econom', u'growth', u'cost', u'pacif', u'nation', u'million'] [u'welcom', u'bird', u'drug', u'product'] [u'wine', u'group', u'back', u'code', u'conduct', u'recommend'] [u'wise', u'water', u'promot', u'north', u'west'] [u'woman', u'injur', u'assault'] [u'young', u'australian', u'stretch', u'super'] [u'yulara', u'airport', u'get', u'emerg', u'servic'] [u'accredit', u'boost', u'local', u'breast', u'screen'] [u'aftershock', u'hit', u'pakistan'] [u'alcohol', u'free', u'zone', u'plan', u'open', u'plan'] [u'anderson', u'urg', u'action', u'save', u'farmer', u'grain', u'crop'] [u'anti', u'viral', u'drug', u'stop', u'lead', u'bird'] [u'aussi', u'need', u'bowl', u'coach', u'say', u'pakistani'] [u'australian', u'missionari', u'killer', u'appeal'] [u'australian', u'year', u'speak', u'northern', u'doctor'] [u'australia', u'fish', u'interest', u'protect'] [u'aust', u'scientist', u'antarct', u'clean', u'mission'] [u'award', u'recognis', u'indigen', u'cultur', u'preserv'] [u'backbench', u'express', u'anti', u'terror', u'concern'] [u'balco', u'chief', u'jail', u'month'] [u'bali', u'bomb', u'victim', u'return', u'newcastl'] [u'ballarat', u'water', u'elect', u'issu'] [u'beazley', u'back', u'filipino', u'counter', u'terror', u'tie'] [u'beazley', u'challeng', u'howard', u'debat'] [u'beazley', u'outlin', u'labor', u'energi', u'polici'] [u'billiton', u'open', u'port', u'hedland', u'communiti', u'offic'] [u'bigger', u'thing', u'expect', u'australian', u'indi', u'team'] [u'boro', u'xavier', u'vow', u'fight', u'dope', u'charg'] [u'bracken', u'unwrap', u'swing', u'secret'] [u'british', u'space', u'societi', u'urg', u'man', u'mission'] [u'broker', u'protect', u'wool', u'auction'] [u'bull', u'tiger', u'rope'] [u'bushrang', u'warrior'] [u'byron', u'indigen', u'cultur', u'centr'] [u'trawl'] [u'maker', u'approv', u'ethanol', u'blend', u'fuel'] [u'cat', u'allerg', u'human'] [u'cattlemen', u'maintain', u'pressur', u'alpin', u'graze'] [u'centrelink', u'penalti', u'hurt', u'unemploy', u'report'] [u'centrelink', u'stop', u'work', u'wont', u'hamper', u'payment'] [u'senat', u'ask', u'vote', u'wast', u'dump'] [u'communiti', u'bank', u'lift', u'profit'] [u'consolid', u'miner', u'quit'] [u'cootamundra', u'council', u'wont', u'gaol'] [u'corrupt', u'index', u'highlight', u'african', u'issu'] [u'council', u'agre', u'reduc', u'road', u'widen'] [u'council', u'investig', u'librari', u'option'] [u'councillor', u'remind', u'correct', u'meet'] [u'council', u'seek', u'delay', u'water', u'fluorid'] [u'council', u'seek', u'longer', u'dutson', u'down', u'consult'] [u'council', u'hear', u'senior', u'accommod', u'crisi'] [u'council', u'mediat', u'health'] [u'council', u'urg', u'lift', u'lake', u'level'] [u'council', u'worker', u'accept', u'rise', u'deal'] [u'counter', u'terror', u'exercis', u'move', u'netbal', u'stadium'] [u'critic', u'bennett', u'unfair', u'say', u'barrett'] [u'cunderdin', u'beat', u'pay', u'debt'] [u'cut', u'electr', u'bill', u'expect'] [u'danish', u'princ'] [u'dead', u'bird', u'carrier', u'unlik', u'migrat'] [u'defenc', u'reject', u'push', u'rais', u'recruit'] [u'doctor', u'group', u'urg', u'flexibl', u'work', u'arrang'] [u'document', u'seek', u'guarante', u'futur', u'wollemi', u'pin'] [u'dwight', u'back', u'sydney', u'bounc'] [u'evalu', u'begin', u'counter', u'terror', u'exercis'] [u'farmer', u'defend', u'chemic', u'compani', u'stock', u'death'] [u'farmer', u'prompt', u'rememb', u'work', u'safeti'] [u'farmer', u'urg', u'reappli', u'drought'] [u'fatal', u'construct', u'accid', u'charg', u'dismiss'] [u'fear', u'ecstasi', u'continu', u'grow'] [u'feather', u'hen', u'night', u'end', u'fight'] [u'affect', u'student', u'abl', u'lodg', u'appeal'] [u'crime', u'outlin', u'case', u'saddam'] [u'fitzroy', u'river', u'water', u'pipelin', u'see', u'vital'] [u'flatmat', u'question', u'kill', u'hammer'] [u'fluorid', u'opposit', u'surpris', u'townsvill'] [u'footbal', u'diplomaci', u'boost', u'australia', u'stand'] [u'footbal', u'regain', u'conscious'] [u'forest', u'campaign', u'free', u'speech', u'push'] [u'forestri', u'group', u'plantat', u'promot', u'fund'] [u'forest', u'search', u'begin', u'miss'] [u'bank', u'advis', u'face', u'fraud', u'charg'] [u'alli', u'tell', u'ashbourn', u'inquiri'] [u'forum', u'focus', u'wheatbelt', u'futur'] [u'gallop', u'reject', u'minist', u'sack'] [u'ganguli', u'clear', u'play'] [u'govt', u'allow', u'time', u'dump', u'plan', u'studi'] [u'govt', u'block', u'censur', u'motion', u'share'] [u'govt', u'launch', u'apprenticeship', u'drive'] [u'govt', u'offer', u'steelwork', u'assur'] [u'govt', u'countri', u'origin', u'label'] [u'govt', u'urg', u'close', u'port', u'hedland', u'detent', u'centr'] [u'govt', u'urg', u'rethink', u'anim', u'cruelti', u'law'] [u'green', u'tassi', u'devil', u'concern'] [u'barrel', u'lee', u'testifi'] [u'health', u'bureaucrat', u'damn', u'mental'] [u'health', u'servic', u'work', u'bird', u'treatment'] [u'health', u'overhaul', u'includ', u'mean', u'test'] [u'henri', u'set', u'arsenal', u'goal', u'record', u'bayern', u'juve'] [u'death', u'attract', u'manslaught', u'charg'] [u'hope', u'remain', u'coast', u'flight'] [u'hospit', u'put', u'clinic', u'servic', u'shake', u'hold'] [u'hundr', u'lose', u'game', u'spot'] [u'hurrican', u'caus', u'fatal', u'mudslid', u'haiti'] [u'hurrican', u'wilma', u'strengthen', u'categori'] [u'hussey', u'roger', u'lead', u'waca', u'fightback'] [u'illeg', u'fish', u'focus', u'ministeri', u'talk'] [u'lose', u'touch', u'player', u'admit', u'buchanan'] [u'index', u'suggest', u'ongo', u'solid', u'econom', u'growth'] [u'indigen', u'tourism', u'bodi', u'eye', u'grow', u'demand'] [u'industri', u'hemp', u'seed', u'crop', u'mackay'] [u'inquiri', u'tell', u'conflict', u'whistleblow'] [u'irrig', u'offer', u'incent'] [u'jam', u'hardi', u'industri', u'disput', u'escal'] [u'joyc', u'urg', u'help', u'save', u'telstra', u'job'] [u'kalgoorli', u'boulder', u'quit'] [u'kimberley', u'polic', u'probe', u'murder', u'suicid'] [u'korean', u'veteran', u'health', u'wors', u'averag'] [u'kosmina', u'hit', u'bleiberg'] [u'labor', u'releas', u'altern', u'fuel', u'polici'] [u'prosecut', u'wit', u'call', u'gulf'] [u'lee', u'cross', u'examin', u'falconio'] [u'lee', u'express', u'uncertainti', u'cross', u'examin'] [u'leess', u'pay', u'interview', u'desper'] [u'lion', u'nathan', u'court', u'blow', u'cooper', u'takeov'] [u'lion', u'satisfi', u'nation', u'squad'] [u'listen', u'stori', u'mental', u'offici', u'urg'] [u'lone', u'ranger', u'comic', u'artist', u'die'] [u'longford', u'fish', u'kill', u'investig'] [u'machet', u'burn', u'pole', u'struggl'] [u'face', u'murder', u'charg', u'boy', u'death'] [u'mayor', u'hope', u'port', u'stage', u'approv'] [u'mayor', u'hop', u'desalin', u'plant', u'wont', u'need'] [u'mcewen', u'push', u'shack', u'secur', u'tenur'] [u'meatwork', u'face', u'uncertain', u'futur'] [u'melbourn', u'regain', u'second', u'team'] [u'mental', u'health', u'report', u'damn', u'democrat'] [u'minist', u'welcom', u'maker', u'ethanol', u'deal'] [u'minist', u'welcom', u'coron', u'chopper', u'crash'] [u'miss', u'person', u'famili', u'control'] [u'molik', u'ill', u'career', u'setback', u'alexand'] [u'molik', u'retir', u'hurt', u'zurich'] [u'moor', u'injur', u'newcastl', u'debut'] [u'moor', u'injuri', u'blow', u'socceroo'] [u'chang', u'echuca', u'melbourn', u'rail', u'line'] [u'angri', u'loom', u'centr', u'closur'] [u'call', u'townsvill', u'hospit', u'bed'] [u'quit', u'frontbench', u'parliament', u'scuffl'] [u'seek', u'uranium', u'mine', u'debat'] [u'suspend', u'attack', u'minist'] [u'suspend', u'attack', u'minist'] [u'mutil', u'shark', u'dump', u'park'] [u'nation', u'reach', u'floor', u'cross', u'joyc'] [u'nativ', u'titl', u'author', u'welcom', u'review'] [u'christian', u'school', u'seek', u'registr'] [u'inflat', u'worri', u'wall', u'street'] [u'jail', u'build', u'south', u'coast'] [u'polic', u'power', u'target', u'cyber', u'predat'] [u'power', u'wont', u'help', u'domest', u'violenc', u'victim'] [u'kill', u'chechen', u'violenc'] [u'bail', u'woman', u'accus', u'child', u'offenc'] [u'need', u'deregul', u'rice', u'industri', u'hull'] [u'announc', u'refresh', u'team'] [u'offic', u'acquit', u'child', u'charg', u'return', u'home'] [u'jeun', u'stake', u'melbourn', u'claim'] [u'oper', u'correct', u'orbit', u'fail'] [u'opposit', u'call', u'assembl', u'subjudic', u'chang'] [u'opposit', u'burn', u'defeat'] [u'opposit', u'seiz', u'leak', u'hospit', u'report'] [u'panel', u'find', u'aquif', u'water', u'suppli'] [u'panel', u'hear', u'wind', u'farm', u'submiss'] [u'parent', u'group', u'plan', u'kindi', u'manag', u'shake'] [u'parliament', u'tell', u'mental', u'women', u'detent'] [u'partnership', u'promis', u'better', u'deal', u'refuge'] [u'patrick', u'invest', u'million', u'port', u'kembla'] [u'perilya', u'look', u'extend', u'life'] [u'plaster', u'campaign', u'debacl', u'trainer'] [u'play', u'georgious', u'critic', u'anti', u'terror'] [u'polic', u'arrest', u'bali', u'blast', u'probe'] [u'polic', u'head', u'prais', u'counter', u'terrorist', u'exercis'] [u'polic', u'minist', u'urg', u'apologis', u'bungl'] [u'polic', u'yorkshir', u'ripper', u'hoaxer'] [u'polic', u'promot', u'communiti', u'safeti'] [u'polic', u'investig', u'second', u'backyard', u'grave'] [u'prison', u'worker', u'union', u'claim'] [u'privat', u'farm', u'forest', u'receiv', u'fund', u'boost'] [u'probe', u'consid', u'local', u'govt', u'perform'] [u'promin', u'lawyer', u'farewel', u'melbourn'] [u'propos', u'rise', u'anger', u'western'] [u'protest', u'bust', u'secur', u'line', u'function'] [u'psychologist', u'henti', u'jail', u'schoolboy', u'assault'] [u'suppli', u'braemar'] [u'rain', u'affect', u'waterway', u'rat'] [u'ratepay', u'group', u'unconcern', u'incorrect', u'land'] [u'ratepay', u'support', u'seek', u'council', u'legal'] [u'region', u'econom', u'forum', u'hold', u'regular'] [u'report', u'fail', u'shed', u'light', u'fatal', u'plane', u'crash'] [u'reveget', u'project'] [u'ricegrow', u'urg', u'deregul', u'rethink'] [u'road', u'rage', u'take', u'mean'] [u'roar', u'unit', u'hot'] [u'rumsfeld', u'use', u'china', u'trip', u'question', u'militari', u'aim'] [u'rupert', u'murdoch', u'offer', u'lunch', u'date'] [u'saddam', u'trial', u'adjourn', u'novemb'] [u'salmonella', u'victim', u'consid', u'sue', u'bakeri'] [u'saroff', u'quit', u'gold', u'coast', u'council'] [u'scientist', u'embark', u'antarct', u'clean'] [u'scientist', u'warn', u'grow', u'natur', u'disast'] [u'seafood', u'council', u'chief', u'resign', u'amid', u'illeg', u'fish'] [u'search', u'expand', u'miss', u'immigr', u'boat'] [u'senior', u'liber', u'break', u'rank', u'terror'] [u'servic', u'offer', u'support', u'abduct', u'children'] [u'shabbir', u'give', u'green', u'light', u'face', u'england'] [u'share', u'market', u'plung', u'inflat', u'fear'] [u'shire', u'plan', u'includ', u'howlong', u'truck', u'bypass'] [u'shrink', u'ozon', u'hole', u'prove', u'pact', u'work'] [u'sixer', u'seven', u'straight'] [u'smash', u'repair', u'maintain', u'nrma', u'protest'] [u'sweden', u'receiv', u'hopman'] [u'fail', u'mental', u'report'] [u'upper', u'hous', u'approv'] [u'upper', u'hous', u'debat', u'contenti'] [u'tiger', u'bright', u'start', u'second', u'inning'] [u'townsvill', u'host', u'super', u'clash'] [u'toyota', u'recal', u'car'] [u'truck', u'firm', u'downsiz'] [u'uruguay', u'game', u'sell'] [u'uruguay', u'want', u'qualifi', u'date', u'chang'] [u'uruguay', u'want', u'qualifi', u'date', u'chang'] [u'disput', u'iraqi', u'civilian', u'death', u'report'] [u'meet', u'focus', u'stall', u'global', u'trade', u'talk'] [u'vegi', u'grower', u'oppos', u'irrig', u'idea'] [u'visa', u'chang', u'boost', u'remot', u'work', u'forc'] [u'watson', u'miss', u'sport', u'portfolio'] [u'wheatbelt', u'hail', u'storm', u'damag', u'reach'] [u'winton', u'tran', u'tasman', u'trial'] [u'woman', u'die', u'central', u'coast', u'hous', u'blaze'] [u'woolworth', u'clear', u'action', u'supermarket'] [u'woolworth', u'report', u'rise', u'sale'] [u'wotif', u'move', u'list'] [u'accc', u'criticis', u'oppos', u'wooli', u'takeov'] [u'accc', u'investig', u'elder', u'beef'] [u'actew', u'forse', u'eas', u'water', u'cap'] [u'liber', u'squabbl', u'continu'] [u'afghanistan', u'order', u'investig', u'alleg'] [u'pleas', u'industri', u'outcom'] [u'airlin', u'say', u'emerg', u'incid'] [u'albani', u'harbour', u'bomb', u'battl', u'head', u'court'] [u'alcohol', u'allergi', u'barrier', u'make', u'wine'] [u'bali', u'bomb', u'suspect', u'releas'] [u'night', u'sit', u'pass', u'pitjantjatjara', u'land'] [u'ambros', u'ingal', u'expect', u'surfer'] [u'anglo', u'american', u'invest', u'million', u'australian'] [u'anim', u'liber', u'continu', u'live', u'anim', u'export'] [u'aust', u'boost', u'cambodia', u'landmin', u'clear', u'program'] [u'australian', u'expand', u'indian', u'softwar', u'firm'] [u'australian', u'fund', u'grow', u'asian', u'market'] [u'lead', u'state', u'base', u'award'] [u'bali', u'bomber', u'refus', u'seek', u'pardon'] [u'beatti', u'brack', u'foul', u'shoot', u'kill'] [u'beatti', u'hear', u'prison', u'guard', u'roster', u'worri'] [u'billiton', u'reveal', u'extens', u'subsid', u'plan'] [u'bleiberg', u'keep', u'unit', u'feud', u'simmer'] [u'blind', u'woman', u'die', u'microwav', u'mishap'] [u'bonfir', u'firework', u'mark', u'futur', u'king', u'birth'] [u'bono', u'lunch', u'bush'] [u'boof', u'unhappi', u'super', u'rule'] [u'brack', u'propos', u'yarra', u'drink', u'water', u'melbourn'] [u'break', u'prompt', u'polic', u'secur', u'warn'] [u'breast', u'cancer', u'drug', u'halv', u'relaps', u'rate'] [u'break', u'hill', u'host', u'medic', u'educ', u'retreat'] [u'busselton', u'school', u'rememb', u'bali', u'blast', u'victim'] [u'govt', u'support', u'senior', u'servic'] [u'hospit', u'site', u'talk'] [u'calmer', u'condit', u'help', u'miss', u'immigr'] [u'campaign', u'underag', u'schooli'] [u'camp', u'alcohol', u'consid', u'histor'] [u'bomb', u'kill', u'iraq'] [u'maker', u'pledg', u'help', u'boost', u'fuel', u'sale'] [u'centrelink', u'say', u'stop', u'work', u'wont', u'affect', u'client'] [u'centrelink', u'stop', u'work', u'disrupt', u'servic'] [u'chamber', u'boost', u'aust', u'canada', u'trade', u'tie'] [u'chavez', u'claim', u'plan', u'invad', u'venezuela'] [u'chicken', u'dispos', u'site', u'earmark', u'case', u'bird'] [u'ciss', u'lift', u'liverpool', u'past', u'anderlecht', u'kewel'] [u'coff', u'promis', u'continu', u'highway', u'campaign'] [u'coleman', u'xcellent', u'choic', u'say', u'trainer'] [u'problem', u'caus', u'cargo', u'backlog'] [u'concern', u'air', u'nativ', u'titl', u'shake'] [u'conlon', u'comfort', u'energi', u'reserv'] [u'council', u'get', u'condit', u'allow', u'assess'] [u'council', u'give', u'caravan', u'park'] [u'council', u'hop', u'schooli', u'number', u'manag'] [u'councillor', u'motiv', u'question', u'meet'] [u'council', u'consid', u'termin', u'option'] [u'council', u'offer', u'public', u'saleyard', u'detail'] [u'court', u'strip', u'pinochet', u'immun'] [u'court', u'hear', u'harbour', u'bomb'] [u'curtain', u'opera', u'favourit'] [u'custom', u'boost', u'combat', u'illeg', u'fish'] [u'custom', u'offic', u'reinforc', u'northern', u'border'] [u'deadlin', u'health', u'inquiri', u'submiss', u'extend'] [u'democrat', u'launch', u'chaffey', u'candid', u'campaign'] [u'dept', u'focus', u'investig', u'child', u'abus'] [u'divers', u'import', u'small', u'town', u'surviv'] [u'doctor', u'group', u'boss', u'see', u'benefit', u'public'] [u'dorey', u'put', u'warrior', u'shout'] [u'downer', u'deni', u'militia', u'timor', u'violenc'] [u'target', u'solicitor', u'general', u'annual', u'report'] [u'dwight', u'ralli', u'troop'] [u'east', u'timor', u'rule', u'indonesian', u'aggress'] [u'timor', u'minist', u'go', u'troubl', u'enclav', u'amid'] [u'govt', u'blame', u'state', u'mental', u'health', u'crisi'] [u'festiv', u'goer', u'hear', u'hear', u'care', u'chang'] [u'figur', u'reveal', u'region', u'rat'] [u'fin', u'incent', u'power', u'firm', u'avoid', u'outag'] [u'firm', u'cement', u'altern', u'fuel', u'approv'] [u'injur', u'greek', u'train', u'derail'] [u'floodwat', u'oodnadatta', u'isol'] [u'floodwat', u'suck', u'girl', u'pipe'] [u'best', u'mat', u'hewitt', u'mcleod', u'slug'] [u'fraser', u'attack', u'anti', u'terror', u'legisl'] [u'fuel', u'problem', u'delay', u'airport', u'termin', u'swap'] [u'fund', u'boost', u'hospit', u'emerg', u'dept'] [u'fund', u'boost', u'hospit', u'elect', u'surgeri'] [u'gaol', u'decis', u'polit', u'motiv'] [u'govt', u'reject', u'medic', u'school', u'fund', u'claim'] [u'govt', u'fund', u'weir', u'work', u'investig'] [u'govt', u'urg', u'adopt', u'long', u'term', u'plan', u'sydney'] [u'grazier', u'hop', u'drought', u'review', u'panel'] [u'green', u'electr', u'rise'] [u'green', u'group', u'say', u'govt', u'murray', u'strategi'] [u'halloran', u'keen', u'return', u'victoria', u'polic'] [u'headless', u'mummi', u'unearth', u'peru'] [u'health', u'servic', u'chief', u'head', u'tingha'] [u'hickss', u'jail', u'time', u'count', u'downer'] [u'hickss', u'jail', u'time', u'count', u'sentenc'] [u'high', u'school', u'get', u'perform', u'art', u'centr'] [u'hobart', u'showground', u'futur', u'review'] [u'hospit', u'intens', u'care', u'boost'] [u'howard', u'hail', u'success', u'campaign'] [u'howard', u'reject', u'fraser', u'anti', u'terror', u'concern'] [u'immigr', u'dept', u'say', u'detent', u'centr'] [u'import', u'pigeon', u'expos', u'bird'] [u'independ', u'back', u'nuclear', u'reactor', u'australia'] [u'internet', u'babi', u'sale', u'spark', u'investig'] [u'invinc', u'arsenal', u'team'] [u'worker', u'await', u'redund', u'news'] [u'chang', u'nurs', u'number', u'union'] [u'itali', u'stand', u'firm', u'dope', u'law', u'winter'] [u'jone', u'confid', u'return', u'tour', u'india'] [u'judg', u'warn', u'lengthi', u'court', u'delay'] [u'kangaroo', u'prepar', u'crunch', u'nation', u'clash'] [u'king', u'hop', u'young', u'windi', u'talent'] [u'lachlan', u'shire', u'drought', u'condit', u'eas'] [u'landhold', u'warn', u'bushfir', u'readi'] [u'lawyer', u'urg', u'grain', u'industri', u'grower', u'protect'] [u'lee', u'finish', u'give', u'evid', u'murdoch', u'trial'] [u'lee', u'show', u'court', u'escap', u'move'] [u'lee', u'bruis'] [u'leggi', u'mushtaq', u'close', u'pakistan', u'comeback'] [u'liber', u'claim', u'tripodi'] [u'lion', u'nathan', u'deni', u'takeov', u'troubl'] [u'lyon', u'chelsea', u'liverpool', u'stake', u'champion', u'claim'] [u'macquari', u'steer', u'ferri', u'purchas'] [u'malaysia', u'mourn', u'wife'] [u'utd', u'ronaldo', u'arrest', u'suspicion', u'rape'] [u'matilda', u'mexico', u'paso', u'friend'] [u'maximum', u'sentenc', u'debt', u'killer'] [u'mental', u'health', u'report', u'surpris'] [u'mental', u'health', u'servic', u'transfer', u'logic', u'abbott'] [u'migrant', u'centr', u'concern', u'increas', u'racial'] [u'miner', u'plan', u'pilbara', u'upgrad'] [u'miner', u'urg', u'conduct', u'hold', u'public', u'forum'] [u'minist', u'deni', u'interfer', u'paedophil', u'parol'] [u'mock', u'accid', u'benefit', u'medic', u'student'] [u'movi', u'star', u'shelley', u'winter', u'rush', u'hospit'] [u'question', u'plan', u'boat', u'safeti', u'rule'] [u'surpris', u'minist', u'wish', u'differ'] [u'nation', u'census', u'prepar', u'begin'] [u'nation', u'reject', u'govt', u'plan', u'water', u'chang'] [u'newborn', u'princ', u'tambo', u'teddi'] [u'helipad', u'boost', u'pakistani', u'effort'] [u'legisl', u'offer', u'bridg', u'hope'] [u'tank', u'shore', u'water', u'suppli', u'north', u'west', u'town'] [u'breakthrough', u'stall', u'highway', u'project'] [u'nrma', u'seek', u'bypass', u'bridg', u'explan'] [u'build', u'code', u'cyclon', u'proof'] [u'obes', u'bigger', u'risk', u'liver', u'alcohol'] [u'opera', u'thrive', u'pavarotti'] [u'opposit', u'maintain', u'pressur', u'govt'] [u'pakistan', u'need', u'urgent', u'annan'] [u'pakistan', u'quak', u'relief', u'situat', u'wors', u'tsunami'] [u'philippoussi', u'offer', u'adelaid', u'wildcard'] [u'pirat', u'prove', u'good', u'hapless', u'croc'] [u'pirat', u'townsvill'] [u'plan', u'afoot', u'address', u'esper', u'water', u'need'] [u'plaster', u'melbourn'] [u'danger', u'protest', u'polic'] [u'premier', u'split', u'terror', u'law'] [u'polic', u'high', u'speed', u'chase'] [u'polic', u'probe', u'break'] [u'port', u'back', u'custom', u'tackl', u'softwar', u'troubl'] [u'port', u'piri', u'plan', u'law', u'chang', u'combat', u'lead'] [u'premier', u'speak', u'shoot', u'kill', u'provis'] [u'preschool', u'hope', u'financi', u'relief'] [u'publican', u'rais', u'rfds', u'fund'] [u'publish', u'googl', u'print', u'librari'] [u'race', u'victoria', u'stand', u'race', u'industri', u'offer'] [u'rain', u'boost', u'grain', u'grower', u'hop'] [u'rain', u'end', u'bull', u'victori', u'hop'] [u'rain', u'interrupt', u'bull', u'victori', u'push', u'tiger'] [u'rare', u'stamp', u'sell', u'near'] [u'cun', u'outsmart', u'scientist', u'month'] [u'renew', u'fuel', u'group', u'prais', u'maker'] [u'report', u'lift', u'coast', u'river', u'rat'] [u'research', u'highlight', u'cost', u'king', u'highway', u'crash'] [u'resourc', u'stock', u'lead', u'market', u'lower'] [u'roch', u'guid', u'india', u'mirza'] [u'rspca', u'raid', u'alleg', u'cock', u'fight', u'venu'] [u'rural', u'financi', u'servic', u'edg'] [u'rural', u'mosquito', u'spray', u'practic'] [u'saddam', u'lawyer', u'want', u'time'] [u'rang', u'water', u'flow', u'proscrib'] [u'satellit', u'concern', u'surfac', u'murder', u'trial'] [u'wait', u'feedback', u'terror', u'exercis'] [u'sawmil', u'fear', u'compo', u'fund', u'shortfal'] [u'school', u'leaver', u'defer', u'univers', u'studi'] [u'school', u'share', u'improv', u'project', u'fund'] [u'scone', u'host', u'australian', u'premier', u'gallipoli', u'doco'] [u'search', u'continu', u'miss'] [u'search', u'find', u'miss', u'nation', u'park', u'tourist'] [u'section', u'famili', u'violenc', u'worri', u'societi'] [u'prepar', u'melbourn', u'storm'] [u'shack', u'fail', u'pass'] [u'ship', u'dock', u'despit', u'custom', u'problem'] [u'shire', u'say', u'report', u'confirm', u'aquif', u'fear'] [u'shire', u'merger', u'surpris', u'minist'] [u'shoalhaven', u'council', u'site', u'mind', u'gaol'] [u'shoot', u'kill', u'plan', u'arent', u'say'] [u'socceroo', u'join', u'asian', u'giant', u'nation'] [u'socceroo', u'reject', u'play', u'date', u'chang'] [u'spanish', u'judg', u'issu', u'warrant', u'soldier'] [u'springborg', u'question', u'kalpow', u'titl', u'transfer'] [u'stanthorp', u'council', u'crack', u'water'] [u'storm', u'savag', u'outback', u'communiti'] [u'student', u'muck', u'warn'] [u'survey', u'find', u'turk', u'honour', u'kill'] [u'sweet', u'swing', u'secret', u'joke', u'say', u'bracken'] [u'telstra', u'consid', u'scrap', u'cdma', u'mobil', u'phone'] [u'tender', u'call', u'ambul', u'station'] [u'thailand', u'confirm', u'bird', u'death'] [u'tough', u'condit', u'auckland', u'test'] [u'tree', u'provid', u'fuel'] [u'charg', u'airport', u'secur', u'incid'] [u'consid', u'hick', u'citizenship', u'lawyer'] [u'union', u'rais', u'concern', u'abalon', u'ship', u'accid'] [u'union', u'warn', u'sack', u'public', u'sector', u'trim'] [u'unit', u'shortcom', u'expos', u'lill'] [u'unit', u'ronaldo', u'deni', u'rape', u'claim'] [u'probe', u'claim', u'soldier', u'burn', u'milit', u'bodi'] [u'readi', u'biggest', u'storm'] [u'vail', u'deni', u'split', u'joyc'] [u'premier', u'deni', u'race', u'alleg'] [u'wagga', u'hospit', u'report', u'near', u'complet'] [u'wall', u'street', u'stock', u'headway'] [u'warrior', u'build', u'lead', u'bushrang'] [u'warrior', u'build', u'lead', u'martyn', u'earli'] [u'welfar', u'advoc', u'question', u'safe'] [u'west', u'go', u'steal', u'duck'] [u'wilma', u'inspir', u'bravado', u'fear', u'florida', u'key'] [u'windi', u'face', u'tough', u'summer'] [u'wine', u'lover', u'leav', u'smile', u'vintner', u'struggl'] [u'win', u'record', u'stop', u'socceroo', u'slide'] [u'wooli', u'decis', u'prompt', u'disband', u'accc'] [u'deal', u'danger', u'geneva', u'talk', u'fail'] [u'yeppoon', u'fin', u'child', u'porn', u'pic'] [u'abramovich', u'reveal', u'grandios', u'year', u'plan'] [u'accc', u'ask', u'probe', u'abort', u'counsellor'] [u'actor', u'sue', u'neighbour', u'produc'] [u'adelaid', u'owner', u'donat', u'land', u'protect', u'bandicoot'] [u'adelaid', u'symphoni', u'orchestra', u'hop', u'strike', u'chord'] [u'agricultur', u'catchment', u'council', u'earn', u'ministeri'] [u'airport', u'arrest', u'rais', u'secur', u'concern'] [u'ancient', u'greek', u'onlin'] [u'armi', u'investig', u'rape', u'claim'] [u'take', u'dive'] [u'august', u'sale', u'jump', u'percent'] [u'aussi', u'line', u'ireland', u'clash'] [u'aust', u'help', u'stem', u'mcdonald', u'declin'] [u'australia', u'ban', u'canadian', u'bird'] [u'australian', u'broadband', u'subscript', u'jump'] [u'australia', u'prepar', u'case', u'disast'] [u'barthez', u'inspir', u'marseill', u'uefa', u'steaua', u'rout'] [u'beatti', u'outlin', u'health', u'reform', u'fund'] [u'beazley', u'will', u'reconsid', u'republ', u'stanc'] [u'beck', u'pop', u'british', u'kid'] [u'berri', u'threat', u'hoax'] [u'pump', u'brazil', u'oper'] [u'blood', u'test', u'detect', u'rare', u'cancer'] [u'bolivian', u'get', u'life', u'term', u'cocain', u'bust'] [u'bougainvill', u'elect', u'ahead', u'despit'] [u'bourdai', u'streak', u'indi', u'qualifi'] [u'bourdai', u'tear', u'indi', u'qualifi'] [u'brack', u'roll', u'school', u'broadband', u'initi'] [u'british', u'profil', u'help', u'search', u'miss'] [u'crash', u'anniversari', u'highway', u'fund', u'push'] [u'bush', u'abba', u'meet', u'white', u'hous'] [u'bushland', u'search', u'continu', u'flee', u'teen'] [u'bushrang', u'warrior'] [u'bush', u'renew', u'palestinian', u'state'] [u'busi', u'usual', u'ford', u'australia'] [u'anti', u'terror', u'chang', u'reveal'] [u'camera', u'snapshot', u'reef', u'water', u'qualiti'] [u'campervan', u'buff', u'keen', u'head', u'break', u'hill'] [u'canada', u'play', u'bird', u'scare'] [u'canberra', u'warship', u'stop', u'geraldton'] [u'confirm', u'call', u'olymp', u'bronz'] [u'centrelink', u'upset', u'stop', u'work'] [u'chemic', u'transport', u'worri', u'temora', u'shire'] [u'chines', u'book', u'quick', u'getaway', u'space'] [u'ciss', u'caution', u'assault', u'teenag'] [u'civic', u'busi', u'suffer', u'citi', u'park', u'shortag'] [u'civil', u'libertarian', u'urg', u'rethink', u'industri'] [u'claim', u'global', u'warm', u'ignor', u'approv'] [u'communiti', u'concern', u'ferri', u'gold'] [u'compani', u'profit', u'inflat', u'fear', u'wall', u'street'] [u'blame', u'port', u'delay', u'stay'] [u'concert', u'rais', u'money', u'bush', u'music', u'student'] [u'council', u'back', u'imag', u'recommend'] [u'council', u'fear', u'rail', u'station', u'public', u'liabil', u'risk'] [u'councillor', u'outlin', u'currumbin', u'retain', u'wall', u'cost'] [u'councillor', u'seek', u'chang', u'hand', u'hold', u'hose', u'hour'] [u'council', u'support', u'local', u'govt', u'financ', u'probe'] [u'council', u'thank', u'beatti', u'dolphin', u'feed'] [u'council', u'save', u'park', u'water'] [u'credit', u'cultur', u'rampant'] [u'cudicini', u'extend', u'chelsea', u'contract'] [u'custom', u'charg', u'weapon', u'seizur'] [u'dead', u'highway', u'claim', u'life'] [u'dead', u'get', u'park', u'ticket'] [u'death', u'sentenc', u'uphold', u'aust', u'singapor'] [u'denmark', u'queen', u'welcom', u'devil', u'gift'] [u'develop', u'rule', u'chang', u'lord', u'howe'] [u'doctor', u'contradict', u'lee', u'evid', u'falconio'] [u'doctor', u'say', u'lee', u'deni', u'head'] [u'doctor', u'seek', u'licenc', u'issu', u'abort', u'pill'] [u'doctor', u'group', u'see', u'fund', u'vital', u'health'] [u'dodgi', u'tradesmen', u'approach', u'hail', u'victim'] [u'economist', u'say', u'beatti', u'health', u'reform', u'moral'] [u'educ', u'dept', u'rule', u'intellig', u'design'] [u'member', u'draw', u'bird', u'plan'] [u'evid', u'syrian', u'involv', u'hariri', u'death'] [u'expert', u'reveal', u'link', u'anim', u'abus'] [u'farmer', u'angri', u'milk', u'price'] [u'firm', u'talk', u'major', u'project', u'status', u'plan'] [u'flee', u'teen', u'rescu', u'bushland'] [u'forc', u'timber', u'redund', u'unlik'] [u'forest', u'group', u'promis', u'action', u'fake', u'jarrah'] [u'gallop', u'urg', u'lift', u'alinta', u'veil', u'secreci'] [u'genet', u'mutat', u'dead', u'children', u'court'] [u'georg', u'town', u'back', u'waterfront', u'plan'] [u'geraldton', u'breakwat', u'finish'] [u'gillard', u'call', u'medicar', u'number', u'midwiv'] [u'girl', u'brave', u'effort', u'earn', u'award'] [u'gold', u'coast', u'probe', u'hear', u'campaign', u'evid'] [u'gold', u'medal', u'brand', u'scheme', u'help', u'struggl', u'dairi'] [u'googl', u'report', u'seven', u'fold', u'profit', u'surg'] [u'govt', u'accus', u'shut', u'parliament'] [u'govt', u'exploit', u'tunnel', u'loophol', u'lawyer', u'say'] [u'govt', u'cost', u'plus'] [u'govt', u'retali', u'leak', u'stanhop'] [u'govt', u'seed', u'fund', u'drug', u'program', u'truss'] [u'govt', u'stand', u'firm', u'tunnel', u'contract'] [u'govt', u'consid', u'propos', u'altern', u'dump', u'site'] [u'govt', u'urg', u'rethink', u'welfar', u'chang'] [u'govt', u'weigh', u'live', u'bird', u'import'] [u'grain', u'grower', u'count', u'cost', u'frost', u'damag'] [u'grandmoth', u'call', u'standardis', u'carer', u'payment'] [u'greek', u'bird', u'test', u'negat'] [u'greenland', u'icecap', u'thicken', u'despit', u'warm'] [u'grower', u'bulldoz', u'valencia', u'tree'] [u'gulf', u'murder', u'trial', u'near'] [u'hail', u'storm', u'spar', u'coalfield'] [u'hariri', u'probe', u'put', u'syria', u'collis', u'cours'] [u'hayden', u'intent', u'regain', u'spot'] [u'hope', u'trucki', u'memori', u'spark', u'highway', u'upgrad'] [u'hunter', u'valley', u'consid', u'way', u'bali'] [u'hurrican', u'wilma', u'lash', u'mexico'] [u'import', u'bird', u'test', u'posit', u'bird', u'antibodi'] [u'indigen', u'group', u'tender', u'wast', u'manag'] [u'indigen', u'group', u'vote', u'site', u'wast', u'dump'] [u'indonesian', u'fishermen', u'australian', u'mainland'] [u'challeng', u'lose', u'technic', u'roxon', u'say'] [u'jackson', u'call', u'juri', u'duti'] [u'jockey', u'posit', u'continu', u'leagu'] [u'judg', u'attack', u'resourc', u'justic'] [u'judg', u'criticis', u'lenienc', u'show', u'drink'] [u'kangaroo', u'hang', u'auckland'] [u'kangaroo', u'loss', u'good', u'leagu', u'say', u'bennett'] [u'kangaroo', u'option', u'attack', u'bennett'] [u'kiama', u'unlik', u'gaol'] [u'kimberley', u'minist', u'inspect', u'worst', u'school'] [u'lack', u'resourc', u'blame', u'court', u'delay'] [u'lawyer', u'saddam', u'trial', u'kidnap', u'baghdad'] [u'lawyer', u'saddam', u'trial', u'shoot', u'dead'] [u'lead', u'sick', u'children'] [u'lee', u'bind', u'tight', u'wit', u'say'] [u'littl', u'fish', u'make', u'splash', u'nomin', u'pool'] [u'littl', u'pebbl', u'charg', u'abus'] [u'local', u'aborigin', u'submit', u'nativ', u'titl', u'evid'] [u'local', u'busi', u'export', u'award'] [u'local', u'recognis', u'brave', u'effort'] [u'avoid', u'jail', u'term', u'shoot', u'neighbour'] [u'guilti', u'best', u'friend', u'manslaught'] [u'marshal', u'second', u'fastest', u'indi', u'practic'] [u'martin', u'urg', u'brake', u'anti', u'terror'] [u'mayor', u'korea', u'highlight', u'healthi', u'citi', u'scheme'] [u'mayor', u'ponder', u'water', u'park', u'challeng'] [u'meat', u'industri', u'reject', u'water'] [u'meat', u'processor', u'plan', u'abattoir'] [u'meatwork', u'look', u'american', u'worker'] [u'melbourn', u'frontlin', u'bird', u'battl'] [u'melbourn', u'hang'] [u'suit', u'take', u'slay', u'saddam', u'trial', u'lawyer'] [u'minist', u'defend', u'indigen', u'literaci', u'program'] [u'declar', u'share', u'appropri'] [u'move', u'afoot', u'protect', u'lighthous', u'platform'] [u'hurt', u'school', u'crash'] [u'muswellbrook', u'bypass', u'prefer', u'rout', u'announc'] [u'nation', u'target', u'syria', u'hariri', u'death', u'link'] [u'archbishop', u'expedit', u'abus', u'compo', u'claim'] [u'harri', u'potter', u'film', u'scari'] [u'announc', u'bowen', u'basin'] [u'charg', u'beslan', u'heavi', u'weapon'] [u'formal', u'decis', u'expo', u'futur'] [u'north', u'west', u'tourism', u'look', u'boost'] [u'jail', u'horrifi', u'murder'] [u'paralysi', u'pair', u'deni', u'damag'] [u'ogilvi', u'shoot', u'pace', u'orlando'] [u'opposit', u'want', u'veget', u'concern', u'deal'] [u'orthodontist', u'attempt', u'sydney', u'hobart', u'record'] [u'pakistan', u'quak', u'toll', u'doubl'] [u'paper', u'reveal', u'govt', u'bind', u'tunnel', u'traffic'] [u'parliament', u'slash', u'timefram', u'sue', u'doctor'] [u'pilbara', u'iron', u'demand', u'expect', u'remain'] [u'open', u'debat', u'nanni', u'rebat'] [u'seek', u'shoot', u'kill', u'agreement', u'state'] [u'polic', u'hunt', u'miss'] [u'polic', u'investig', u'attempt', u'schoolgirl', u'abduct'] [u'polic', u'probe', u'caus', u'dead', u'unit', u'blaze'] [u'polic', u'probe', u'claim', u'tortur', u'poker'] [u'polic', u'probe', u'mildura'] [u'polic', u'seek', u'help', u'solv', u'decad', u'death'] [u'pont', u'disappoint', u'fletcher', u'attack'] [u'possibl', u'tornado', u'cut', u'swath', u'curung'] [u'qanta', u'accus', u'outsourc', u'plan'] [u'qanta', u'chief', u'deni', u'restructur', u'cover'] [u'qanta', u'offshor', u'plan', u'anger', u'union', u'opposit'] [u'region', u'area', u'target', u'credit', u'card', u'scam'] [u'region', u'develop', u'minist', u'converg', u'coff'] [u'region', u'join', u'forc', u'remot', u'mine', u'network'] [u'retail', u'group', u'want', u'trade', u'hour', u'decis'] [u'retir', u'villag', u'resid', u'health', u'servic'] [u'issu', u'burn', u'warn'] [u'rider', u'reliv', u'light', u'hors', u'journey'] [u'ronaldo', u'readi', u'face', u'tottenham'] [u'rural', u'skill', u'train', u'hear', u'come', u'newcastl'] [u'add', u'opposit', u'wast', u'dump', u'plan'] [u'attorney', u'general', u'investig', u'anti'] [u'busi', u'confid', u'drop'] [u'scheme', u'help', u'lower', u'sexual', u'transmit', u'diseas'] [u'search', u'call', u'miss', u'torr', u'strait'] [u'search', u'miss', u'torr', u'strait', u'continu'] [u'shire', u'delay', u'beach', u'review'] [u'shoot', u'kill', u'provis', u'polic', u'chief'] [u'smyth', u'stand', u'firm', u'face', u'instabl', u'claim'] [u'solar', u'energi', u'power', u'armi', u'train', u'base'] [u'staff', u'order', u'kyrgyz', u'prison', u'kill'] [u'strong', u'earthquak', u'kill', u'turkey'] [u'studi', u'highlight', u'coast', u'strong', u'econom', u'growth'] [u'support', u'superpit', u'child', u'care', u'plan'] [u'survey', u'support', u'freeway', u'extens'] [u'sydney', u'knight', u'victori'] [u'sydney'] [u'sydney', u'water', u'attempt', u'hose', u'pipe', u'outrag'] [u'syria', u'involv', u'hariri', u'death', u'say'] [u'thai', u'beat', u'bird', u'outbreak', u'asia'] [u'illeg', u'fish', u'boat', u'spot', u'day'] [u'threat', u'halt', u'berri', u'product'] [u'put', u'ganguli'] [] [u'tourist', u'reflect', u'nation', u'park', u'rescu'] [u'ultralight', u'crash', u'scene', u'investig'] [u'hariri', u'report', u'bias', u'syria'] [u'tempo', u'australian', u'aim', u'intern'] [u'uranium', u'miner', u'optimist', u'project'] [u'damag', u'control', u'taliban', u'bodi', u'burn'] [u'jitter'] [u'student', u'face', u'write', u'exam'] [u'vet', u'bird', u'import'] [u'victorian', u'opposit', u'attack', u'land', u'chang'] [u'victoria', u'urg', u'boost', u'anim', u'cruelti', u'law'] [u'wallabi', u'announc', u'disciplin', u'crackdown'] [u'water', u'suppli', u'see', u'vital', u'growth'] [u'week', u'rais', u'south', u'east', u'poverti', u'awar'] [u'wilma', u'head'] [u'wind', u'farm', u'give', u'environment', u'green', u'light'] [u'wine', u'expert', u'put', u'posit', u'spin', u'grape', u'glut'] [u'wool', u'industri', u'mull', u'reloc', u'yennora', u'sell'] [u'woosnam', u'readi', u'wnbl', u'comeback'] [u'xcellent', u'doubt', u'plate'] [u'young', u'pup', u'savag', u'ireland'] [u'croc', u'pull', u'river'] [u'obscen'] [u'grandstand', u'speak', u'greg', u'murphi'] [u'grandstand', u'speak', u'freedman'] [u'grandstand', u'speak', u'ricki', u'pont', u'jimmi'] [u'wont', u'miss', u'terror', u'law', u'draft', u'howard'] [u'extend', u'benefit', u'coupl'] [u'afghanistan', u'karzai', u'condemn', u'taliban', u'bodi', u'burn'] [u'anti', u'terror', u'law', u'open', u'abus', u'brown'] [u'anti', u'terror', u'law', u'protest', u'hold'] [u'auckland', u'titl'] [u'australian', u'zealand', u'kill', u'plane', u'crash'] [u'author', u'apprehend', u'illeg', u'fish', u'boat'] [u'babi', u'injur', u'accid'] [u'banner', u'herald', u'union', u'campaign', u'workplac'] [u'beatti', u'steal', u'tree', u'landhold', u'joyc'] [u'bird', u'patient', u'hous', u'hangar'] [u'boomer', u'power'] [u'botox', u'benefit', u'scrutini', u'cereb', u'palsi'] [u'brazil', u'find', u'foot', u'mouth', u'case'] [u'britain', u'arrest', u'intern', u'terror'] [u'bull', u'hang', u'victori', u'tiger'] [u'bush', u'alli', u'front', u'court', u'conspiraci', u'charg'] [u'caterpillar', u'move', u'lower'] [u'cdma', u'talk', u'worri', u'telstra', u'repres'] [u'chicken', u'farm', u'step', u'bird', u'defenc'] [u'connect', u'bite', u'bullet', u'xcellent'] [u'council', u'tell', u'construct', u'law'] [u'council', u'urg', u'fluorid', u'vote'] [u'democrat', u'want', u'intellig', u'design', u'lesson'] [u'diva', u'confirm', u'legendari', u'status'] [u'doubt', u'hang', u'diva'] [u'drink', u'driver', u'time', u'legal', u'limit'] [u'egyptian', u'mummi', u'arriv', u'exhibit'] [u'faction', u'crippl', u'labor', u'faulkner'] [u'faction', u'caus', u'labor', u'faulkner'] [u'farmer', u'welcom', u'continu', u'rain'] [u'faulkner', u'attack', u'labor', u'parti'] [u'damag', u'retir', u'villag'] [u'fisheri', u'defend', u'shark', u'catch', u'limit'] [u'flame', u'strong', u'capit'] [u'arrest', u'bomb', u'make', u'materi'] [u'injur', u'arm', u'robberi'] [u'student', u'hospit', u'crash'] [u'gallop', u'stand', u'school', u'seat', u'belt', u'polici'] [u'giant', u'corps', u'flower', u'rare', u'bloom'] [u'googl', u'chang', u'set', u'stock', u'sail'] [u'govt', u'urg', u'hous', u'avail'] [u'govt', u'urg', u'boost', u'foster', u'carer', u'recruit'] [u'gronholm', u'hit', u'troubl'] [u'gympi', u'miss', u'chanc', u'host', u'gold', u'pan', u'comp'] [u'hariri', u'report', u'put', u'syria', u'pressur'] [u'hariri', u'hail', u'report'] [u'hewitt', u'clinch', u'master', u'berth'] [u'hurrican', u'wilma', u'lash', u'mexico'] [u'hurrican', u'wilma', u'weaken'] [u'impuls', u'cheer', u'peopl', u'cost'] [u'indigen', u'control', u'good', u'cape', u'environ'] [u'indonesia', u'rap', u'australia', u'illeg', u'fish'] [u'injuri', u'excus', u'say', u'ferguson'] [u'injuri', u'threaten', u'joey', u'nation', u'campaign'] [u'inquiri', u'prompt', u'monitor', u'hous', u'tender'] [u'iraqi', u'rule', u'move', u'saddam', u'trial'] [u'macgil'] [u'jazz', u'great', u'shirley', u'horn', u'die'] [u'philippin', u'threat'] [u'jone', u'line', u'britain'] [u'king', u'squeez', u'home', u'hawk'] [u'kyli', u'deni', u'seek', u'altern', u'cancer', u'treatment'] [u'male', u'model', u'featur', u'champ'] [u'male', u'model', u'featur', u'tenni', u'championship'] [u'kill', u'light', u'plane', u'crash'] [u'releas', u'charg', u'abduct', u'attempt'] [u'mayor', u'repeat', u'singl', u'transport', u'author'] [u'melandri', u'shade', u'rossi', u'record'] [u'memori', u'park', u'build', u'burial', u'grind'] [u'molik', u'crossroad'] [u'molik', u'camp', u'deni', u'retir', u'rumour'] [u'moodi', u'say', u'india', u'tough', u'beat', u'home'] [u'charg', u'lay', u'food', u'program'] [u'motorist', u'warn', u'heavi', u'rain', u'cut', u'road'] [u'murdoch', u'hear', u'poison', u'pill', u'anger'] [u'murphi', u'win', u'race'] [u'nato', u'deploy', u'troop', u'pakistani', u'effort'] [u'nato', u'effort'] [u'archbishop', u'urg', u'anglican', u'address', u'abus'] [u'bird', u'case', u'discov', u'europ'] [u'pope', u'draw', u'bigger', u'crowd', u'john', u'paul'] [u'zealand', u'bowler'] [u'afghan', u'policemen', u'kill'] [u'nobl', u'call', u'fan', u'great', u'britain'] [u'need', u'panic', u'say'] [u'liber', u'leader', u'foreshadow', u'major', u'reform'] [u'offici', u'accus', u'store', u'quak', u'relief', u'suppli'] [u'ogilvi', u'retain', u'second', u'spot', u'florida'] [u'iraqi', u'provinc', u'reject', u'constitut'] [u'opposit', u'propos', u'salt', u'mount'] [u'pakistan', u'quak', u'total', u'inadequ', u'musharraf'] [u'parent', u'risk', u'jail', u'discuss', u'children', u'detent'] [u'phoenix', u'domin', u'netbal', u'award'] [u'photograph', u'come', u'mosss', u'defenc'] [u'polic', u'confus', u'woman', u'injuri', u'drunken'] [u'polic', u'head', u'driver', u'strand', u'birdsvill', u'track'] [u'polic', u'investig', u'suspici', u'death'] [u'polic', u'seek', u'help', u'dog', u'killer'] [u'polic', u'warn', u'pesticid', u'theft'] [u'pool', u'leak', u'wont', u'affect', u'game', u'say', u'govt'] [u'princ', u'william', u'report', u'duti', u'sandhurst'] [u'probe', u'miss', u'immigr', u'boat', u'begin'] [u'health', u'payment', u'plan', u'like', u'unstopp'] [u'quadripleg', u'bequest', u'spinal', u'cord', u'research'] [u'quak', u'survivor'] [u'rain', u'caus', u'flood'] [u'rann', u'urg', u'ramp', u'dump', u'opposit'] [u'salt', u'plan', u'open', u'public', u'comment'] [u'servia', u'claim', u'indi', u'pole'] [u'sick', u'radiologist', u'caus', u'breast', u'screen', u'backlog'] [u'super', u'sink', u'roar'] [u'taiwan', u'ignor', u'drug', u'patent'] [u'tasmanian', u'teacher', u'seek', u'state', u'award'] [u'polic', u'monitor', u'threat'] [u'telstra', u'manag', u'oppos', u'network', u'shutdown'] [u'tendulkar', u'track', u'sparkl', u'return'] [u'thousand', u'mourn', u'revil', u'uganda', u'obot', u'rival'] [u'tiger', u'bat', u'gabba'] [u'tiger', u'bowl', u'gabba'] [u'miss', u'light', u'plane', u'crash'] [u'palestinian', u'kill', u'west', u'bank'] [u'year', u'iraqi', u'armi', u'speed'] [u'unitab', u'director', u'jump', u'despit', u'opposit'] [u'venus', u'express', u'launch', u'postpon'] [u'wallabi', u'great', u'babi', u'injur', u'accid'] [u'wallabi', u'great', u'daughter', u'critic', u'accid'] [u'waugh', u'take', u'book'] [u'weather', u'forecast', u'keep', u'east', u'coast', u'road', u'close'] [u'wenger', u'remain', u'fear', u'lose', u'henri'] [u'wilma', u'flood', u'mexican', u'citi'] [u'woman', u'bodi', u'birdsvill', u'track', u'properti'] [u'world', u'week', u'save', u'darfur'] [u'talk', u'life', u'support'] [u'yachtsman', u'fall', u'short', u'sydney', u'hobart', u'record'] [u'arrest', u'earli', u'morn', u'street', u'brawl'] [u'wilma', u'inch', u'mexico'] [u'firearm', u'chicken', u'shed'] [u'half', u'resid', u'overweight', u'survey'] [u'alpha', u'break', u'atlant', u'storm', u'record'] [u'amnesti', u'lobbi', u'save', u'death', u'australian'] [u'apprenticeship', u'train', u'time', u'reduc'] [u'surviv', u'nigerian', u'plane', u'crash'] [u'steal', u'wag', u'payment'] [u'australia', u'add', u'pakistani', u'relief', u'effort'] [u'author', u'probe', u'fatal', u'plane', u'crash'] [u'benefit', u'coupl', u'lawyer'] [u'blue', u'make', u'solid', u'progress'] [u'blue', u'snatch', u'thrill', u'redback'] [u'bourdai', u'celebr', u'titl', u'indi', u'victori'] [u'britain', u'call', u'live', u'wild', u'bird', u'import'] [u'britain', u'send', u'helicopt', u'quak', u'region'] [u'bushrang', u'bat', u'warrior'] [u'bushrang', u'struggl', u'warrior'] [u'call', u'retali', u'video', u'show', u'taliban'] [u'chelsea', u'smile', u'unit', u'stutter'] [u'civic', u'communiti', u'centr', u'open'] [u'coastwatch', u'seiz', u'indonesian', u'fish', u'boat'] [u'colleagu', u'kearn', u'driveway', u'accid'] [u'colleagu', u'support', u'devast', u'kearn'] [u'confer', u'explor', u'marin', u'area', u'benefit'] [u'coron', u'consid', u'birdsvill', u'track', u'death'] [u'council', u'call', u'reform', u'poor'] [u'defiant', u'glori', u'strong', u'victori'] [u'dizzi', u'gilli', u'turn', u'dayer'] [u'dutch', u'govt', u'mull', u'prison', u'centr'] [u'etoo', u'bag', u'brace', u'barca'] [u'kill', u'earthquak', u'rattl', u'eastern'] [u'face', u'black', u'tour', u'squad'] [u'flood', u'mersey', u'river', u'continu', u'rise'] [u'gallop', u'seatbelt', u'decis', u'astound', u'opposit'] [u'govt', u'defend', u'reform', u'work', u'poor', u'claim'] [u'govt', u'pledg', u'extra', u'quak', u'ravag', u'pakistan'] [u'govt', u'urg', u'fund', u'hospit', u'bird', u'prepar'] [u'govt', u'urg', u'reopen', u'currong', u'apart'] [u'hariri', u'probe', u'arrest', u'suspect', u'link', u'presid'] [u'health', u'check', u'reduc', u'incid', u'diseas'] [u'heavi', u'rain', u'threaten', u'helen', u'oyster', u'stock'] [u'honda', u'push', u'rossi'] [u'hope', u'float', u'goondiwindi', u'water', u'park'] [u'hurrican', u'wilma', u'lash', u'caribbean', u'coast'] [u'india', u'offer', u'relief', u'centr', u'kashmir', u'frontier'] [u'inmat', u'tunnel', u'guatemala', u'prison'] [u'interview', u'craig', u'lownd'] [u'reform', u'creat', u'work', u'poor'] [u'japanes', u'mark', u'quak', u'anniversari'] [u'jet', u'sink', u'marin', u'late', u'goal'] [u'refus', u'centrelink', u'payment', u'govt'] [u'kemp', u'blast', u'south', u'africa', u'victori'] [u'king', u'breez', u'past', u'breaker'] [u'labor', u'seek', u'shed', u'light', u'budget'] [u'latrob', u'home', u'threaten', u'flood', u'continu'] [u'leader', u'mourn', u'jawoyn', u'elder'] [u'leaflet', u'oppos', u'chang'] [u'lehmann', u'lead', u'competit', u'total'] [u'loeb', u'pois', u'victori', u'corsica'] [u'lownd', u'break', u'gold', u'coast', u'duck'] [u'lownd', u'return', u'win', u'way'] [u'lynx', u'score', u'adelaid'] [u'collect', u'bargain', u'legal', u'right', u'combet'] [u'charg', u'fatal', u'stab'] [u'die', u'stab', u'brawl'] [u'martyn', u'centuri', u'help', u'warrior', u'victori'] [u'missi', u'clean', u'aria'] [u'aftershock', u'rock', u'quak', u'pakistan'] [u'worri', u'bjelk', u'petersen'] [u'nadal', u'match', u'feder', u'master', u'haul'] [u'bird', u'case', u'emerg'] [u'newman', u'nomin', u'tunnel', u'airport', u'link'] [u'nigerian', u'airlin', u'presum', u'crash', u'board'] [u'nigerian', u'offici', u'retract', u'comment', u'crash'] [u'player', u'catch', u'hurrican', u'path'] [u'player', u'hurrican', u'path'] [u'govt', u'pledg', u'action', u'eas', u'pressur', u'prison'] [u'ogilvi', u'stalk', u'beem'] [u'hospit', u'site', u'sale'] [u'dead', u'polic', u'injur', u'clash', u'birmingham'] [u'pire', u'apologis', u'penalti', u'howler'] [u'rule', u'immedi', u'bird', u'fund', u'increas'] [u'say', u'govt', u'chang', u'death', u'verdict'] [u'say', u'anti', u'terror', u'law', u'wont', u'singl', u'group'] [u'want', u'anti', u'terror', u'law', u'place', u'year'] [u'pole', u'vote', u'close', u'presidenti', u'race'] [u'polic', u'seek', u'inform', u'murder', u'suicid'] [u'polish', u'pianist', u'win', u'prestigi', u'chopin', u'competit'] [u'pope', u'canonis', u'saint'] [u'quak', u'helicopt', u'explod', u'azerbaijan'] [u'radio', u'station', u'devast', u'bomb'] [u'rain', u'fail', u'eas', u'sydney', u'water', u'restrict'] [u'real', u'beckham', u'deni', u'contract', u'negot'] [u'redback', u'steadi', u'send'] [u'report', u'feud', u'see', u'burley', u'leav', u'heart'] [u'report', u'reveal', u'pressur', u'darwin', u'jail'] [u'reward', u'offer', u'healesvill', u'murder', u'case'] [u'rice', u'honour', u'girl', u'kill', u'klux', u'klan'] [u'rumsfeld', u'fear', u'impact', u'bodi', u'burn', u'claim'] [u'influenc', u'nowingi', u'dump', u'plan'] [u'search', u'continu', u'byron', u'plane', u'crash', u'victim'] [u'secur', u'issu', u'pacif', u'leader', u'meet'] [u'singleton', u'tidiest', u'town', u'year'] [u'joh', u'seek', u'nation', u'preselect'] [u'lanka', u'slump', u'pratic', u'match', u'loss'] [u'stanhop', u'grate', u'includ', u'talk'] [u'stoner', u'claim', u'fifth', u'rossi', u'fall', u'short'] [u'sudanes', u'immigr', u'celebr', u'live'] [u'sudan', u'inact', u'right', u'abus'] [u'syria', u'hariri', u'probe'] [u'tasmanian', u'driver', u'urg', u'heed', u'flood', u'sign'] [u'toll', u'patrick', u'disput', u'cloud', u'pacif', u'nation'] [u'toni', u'trebl', u'punish', u'parma'] [u'unemploy', u'warn', u'lose', u'benefit'] [u'confirm', u'contractor', u'kill', u'iraq'] [u'heer', u'murphi', u'attempt', u'game', u'comeback'] [u'vatican', u'synod', u'rule', u'marri', u'priest'] [u'warn', u'join', u'queue', u'say', u'pont'] [u'warrior', u'recov', u'shaki', u'start'] [u'waterloo', u'vote', u'best', u'eurovis', u'song'] [u'waugh', u'deni', u'polit'] [u'waugh', u'felt', u'betray', u'booz', u'cultur'] [u'waugh', u'hop', u'help', u'struggl', u'cricket', u'nation'] [u'western', u'diet', u'rais', u'asian', u'bowel', u'diseas', u'risk'] [u'wilma', u'pummel', u'mexico', u'kill'] [u'wilma', u'wind', u'wave', u'pound', u'mexico'] [u'wood', u'miss', u'florida'] [u'wreckag', u'miss', u'nigerian', u'plane'] [u'yellabinna', u'region', u'grant', u'wilder', u'area', u'status'] [u'dead', u'storm', u'sweep', u'southern', u'itali'] [u'abalon', u'council', u'check', u'southern', u'stock', u'level'] [u'accc', u'warn', u'stiff', u'penalti', u'fals', u'label'] [u'teacher', u'push', u'better', u'deal'] [u'airport', u'laser', u'prankster', u'warn', u'charg'] [u'airport', u'tunnel', u'plan', u'draw', u'communiti', u'group'] [u'alcoa', u'play', u'refineri', u'protest'] [u'nation', u'blame', u'crisi', u'wolfowitz'] [u'alpha', u'kill', u'haiti'] [u'angler', u'warn', u'abus', u'fisheri', u'offic'] [u'apex', u'club', u'seek', u'gorok', u'accommod', u'fund'] [u'galleri', u'assess', u'flood', u'damag'] [u'aussi', u'safe', u'amid', u'hurrican', u'destruct'] [u'aussi', u'look', u'clean', u'sweep', u'ireland'] [u'australian', u'winemak', u'win', u'germani', u'highest', u'honour'] [u'author', u'seiz', u'indonesian', u'fish', u'boat'] [u'autopsi', u'carri', u'coupl'] [u'beatti', u'await', u'nuttal', u'decis'] [u'berri', u'juic', u'threat', u'prompt', u'secur', u'upgrad'] [u'barossa', u'vintag', u'add', u'wine', u'industri', u'woe'] [u'black', u'box', u'nigerian', u'plane', u'crash'] [u'blaze', u'claim', u'barley', u'crop'] [u'brazil', u'reject', u'sale', u'referendum'] [u'build', u'hiccup', u'delay', u'nurs', u'home', u'bed'] [u'bull', u'hayden', u'watson', u'west', u'indi', u'clash'] [u'bushfir', u'warn', u'earli', u'inquiri', u'hear'] [u'busi', u'urg', u'improv', u'fall', u'injuri', u'rat'] [u'busi', u'urg', u'plan', u'bird', u'pandem'] [u'busi', u'warn', u'store', u'credit', u'card', u'data'] [u'cheaper', u'fare', u'boost', u'spirit', u'tasmania', u'number'] [u'child', u'abus', u'complaint', u'neglect', u'report'] [u'claim', u'govt', u'fob', u'dental', u'care'] [u'compani', u'consult', u'wind', u'farm', u'plan'] [u'concert', u'aid', u'drought', u'famili'] [u'councillor', u'push', u'maryborough', u'immigr'] [u'council', u'reflect', u'cost', u'hail', u'storm', u'clean'] [u'council', u'reject', u'citi', u'hall', u'critic'] [u'council', u'desalin', u'plant', u'concern'] [u'council', u'review', u'fundrais'] [u'criminologist', u'recommend', u'specialist', u'child', u'abus'] [u'current', u'cattl', u'price', u'unsustain'] [u'daruda', u'australia', u'squad'] [u'debat', u'rag', u'chang'] [u'dfat', u'find', u'australian', u'catch', u'hurrican'] [u'dighton', u'month', u'break', u'hand'] [u'disqualifi', u'driver', u'arrest', u'time'] [u'eight', u'great', u'leader', u'juve'] [u'engin', u'grow'] [u'european', u'venus', u'express', u'probe', u'launch', u'delay'] [u'everton', u'chelsea', u'streak'] [u'extort', u'threat', u'boost', u'leeton', u'berri', u'factori'] [u'falconio', u'murder', u'trial', u'resum'] [u'famili', u'friend', u'await', u'news', u'hurrican', u'zone'] [u'farmer', u'await', u'drought', u'decis'] [u'farmer', u'plan', u'highway', u'upgrad'] [u'farm', u'properti', u'auction', u'benefit', u'local', u'chariti'] [u'father', u'guilti', u'rap', u'children'] [u'govt', u'confid', u'improv', u'state', u'cooper'] [u'consid', u'uruguay', u'charter', u'flight'] [u'food', u'writer', u'tast', u'eyr', u'peninsula', u'treat'] [u'foster', u'cash', u'chang', u'tast'] [u'freedman', u'train', u'plaster'] [u'fund', u'alloc', u'waterway', u'protect'] [u'germani', u'legend', u'matthaus', u'world', u'draw'] [u'gillespi', u'hop', u'test', u'recal', u'blow'] [u'gillespi', u'wait', u'news'] [u'girl', u'hurt', u'woodford', u'mishap'] [u'girl', u'lose', u'fight', u'life', u'pool', u'mishap'] [u'goodfella', u'top', u'greatest', u'movi', u'list'] [u'goulburn', u'valley', u'walker', u'rais', u'thousand', u'cancer'] [u'govt', u'accus', u'block', u'report'] [u'govt', u'accus', u'wast', u'fund', u'health'] [u'govt', u'ask', u'hospit', u'wait', u'time', u'explan'] [u'govt', u'flip', u'flop', u'compulsori', u'seatbelt'] [u'govt', u'mull', u'blanket', u'bird', u'import'] [u'govt', u'plan', u'stop', u'death', u'sentenc'] [u'govt', u'commit', u'newcastl'] [u'govt', u'huge', u'rent', u'rise'] [u'govt', u'urg', u'boost', u'malle', u'research', u'station', u'fund'] [u'green', u'group', u'cast', u'doubt', u'uranium', u'inquiri'] [u'group', u'oppos', u'wagga', u'rate', u'rise'] [u'hail', u'storm', u'sweep', u'southern'] [u'hatcheri', u'project', u'boost', u'nativ', u'fish', u'stock'] [u'health', u'servic', u'address', u'mental', u'health'] [u'health', u'servic', u'reject', u'coraki', u'critic'] [u'hickey', u'stand', u'rate', u'peg'] [u'hospit', u'teach', u'facil'] [u'hundr', u'turn', u'camel'] [u'hurrican', u'head', u'florida', u'coast'] [u'hurrican', u'wilma', u'upgrad', u'categori', u'storm'] [u'iemma', u'launch', u'review', u'road', u'project', u'contract'] [u'imran', u'khan', u'slat', u'quak', u'relief', u'effort'] [u'indigen', u'rock', u'vandal', u'earn', u'fine'] [u'indi', u'offici', u'overjoy', u'event'] [u'investig', u'continu', u'fatal', u'crash'] [u'irrig', u'pass', u'confid', u'vote', u'minist'] [u'isra', u'soldier', u'kill', u'west', u'bank', u'milit'] [u'israel', u'pledg', u'hamper', u'palestinian', u'vote'] [u'john', u'pessimist', u'nation', u'chanc'] [u'john', u'miss', u'rest', u'nation'] [u'joyc', u'fin', u'post', u'game', u'outburst'] [u'kalgoorli', u'host', u'nation', u'reconcili', u'forum'] [u'kalgoorli', u'polic', u'accus', u'slack', u'attitud'] [u'katherin', u'funer', u'plan', u'jawoyn', u'elder'] [u'korp', u'famili', u'abandon', u'posthum', u'convict'] [u'land', u'council', u'seek', u'greater', u'mine', u'contract', u'right'] [u'minut', u'goal', u'secur', u'jet', u'marin'] [u'littl', u'hope', u'death', u'australian'] [u'local', u'deleg', u'grafton', u'bridg', u'fight'] [u'local', u'school', u'share', u'feder', u'fund'] [u'loeb', u'complet', u'uniqu', u'clean', u'sweep'] [u'macquari', u'buy', u'stake', u'chines', u'river', u'port'] [u'break', u'time', u'shoaib'] [u'makyb', u'diva', u'accept', u'melbourn', u'entri'] [u'accus', u'famili', u'stick', u'assault'] [u'arrest', u'hour', u'hostag', u'sieg'] [u'charg', u'student', u'bash'] [u'charg', u'illeg', u'weapon', u'possess'] [u'face', u'court', u'laverton', u'rape', u'charg'] [u'martyn', u'prove', u'class', u'coach'] [u'martyn', u'hungri', u'test', u'action', u'say', u'langer'] [u'media', u'giant', u'mull', u'apolog', u'slur'] [u'melbourn', u'distract', u'actu'] [u'urg', u'check', u'breast', u'cancer', u'sign'] [u'mexico', u'race', u'evacu', u'trap', u'tourist'] [u'miller', u'speak', u'red', u'snub'] [u'minist', u'open', u'griffith', u'beauti', u'train', u'centr'] [u'minist', u'reject', u'hurrican', u'rescu', u'complaint'] [u'miss', u'plan', u'pilot', u'unlicenc'] [u'missi', u'higgin', u'winner', u'aria'] [u'monaghan', u'play', u'storm', u'rag'] [u'mooney', u'hope', u'china', u'water', u'work'] [u'indonesian', u'troop', u'pull', u'aceh'] [u'traffic', u'expect', u'tunnel', u'drop', u'toll'] [u'mori', u'forc', u'wed', u'ring'] [u'morri', u'accus', u'health', u'wait', u'list', u'cover'] [u'england', u'leav', u'alabaman', u'bemus'] [u'nadal', u'stag', u'heroic', u'fight', u'madrid'] [u'nation', u'effort', u'need', u'combat', u'child', u'abus'] [u'nativ', u'anim', u'friend', u'poison', u'trial'] [u'bird', u'outbreak', u'southern', u'siberia'] [u'law', u'unnecessari', u'deal', u'crop', u'studi'] [u'nguyen', u'lawyer', u'plead', u'step'] [u'nigeria', u'mourn', u'plane', u'crash', u'victim'] [u'nigeria', u'hold', u'day', u'mourn'] [u'northern', u'road', u'remain', u'flood', u'delug'] [u'childcar', u'worker', u'seek', u'rise'] [u'politician', u'remain', u'quiet', u'dump', u'plan'] [u'defend', u'pacif', u'region', u'integr', u'plan'] [u'ogilvi', u'miss', u'florida', u'play'] [u'outback', u'student', u'state', u'problem', u'solv', u'comp'] [u'oversea', u'adopt', u'increas'] [u'pair', u'accus', u'nake', u'highway', u'danc', u'face', u'court'] [u'pakistani', u'effort', u'ramp'] [u'pakistani', u'armi', u'move', u'clear', u'bodi', u'kashmiri'] [u'pakistan', u'relief', u'effort', u'week', u'deliv'] [u'paper', u'ask', u'apologis', u'falconio', u'stori'] [u'patterson', u'push', u'workplac', u'famili', u'care'] [u'cost', u'cut', u'deal', u'near', u'complet'] [u'penguin', u'jail', u'year', u'murder'] [u'pilbara', u'iron', u'shell', u'turtl', u'fund'] [u'pilot', u'vote', u'qanta'] [u'downplay', u'hop', u'nguyen', u'clemenc'] [u'polic', u'close', u'drug', u'raid'] [u'polic', u'investig', u'mildura', u'death'] [u'policeman', u'hurt', u'robinval', u'brawl'] [u'polish', u'right', u'victori', u'presidenti', u'elect'] [u'port', u'backlog', u'turn', u'ship', u'away', u'freight', u'compani'] [u'port', u'expans', u'hing', u'rail', u'freight', u'decis'] [u'prof', u'see', u'ground', u'oppos', u'leve', u'road'] [u'public', u'urg', u'chang', u'pool', u'hour'] [u'govt', u'hatch', u'plan', u'free', u'drink', u'water'] [u'race', u'club', u'meet', u'best'] [u'rann', u'look', u'strategi', u'combat', u'bird'] [u'card', u'beckham', u'real', u'crash'] [u'reef', u'manag', u'win', u'prais', u'warn', u'govt'] [u'reef', u'rezon', u'compo', u'reach', u'seafood', u'group'] [u'region', u'famili', u'relationship', u'servic'] [u'renmark', u'hold', u'meet', u'dump', u'concern'] [u'repair', u'work', u'close', u'roebourn', u'pool'] [u'research', u'ponder', u'menus', u'save', u'fisheri'] [u'ricegrow', u'embark', u'larg', u'crop', u'plant'] [u'riverland', u'share', u'famili', u'servic'] [u'road', u'safeti', u'plan', u'need', u'region', u'tweak'] [u'rocki', u'croc', u'leather', u'itali'] [u'scheme', u'promot', u'tertiari', u'studi'] [u'school', u'concert', u'rais', u'fund', u'boy', u'memori'] [u'search', u'continu', u'crash', u'plane', u'near', u'byron'] [u'search', u'fail', u'crash', u'plane'] [u'second', u'case', u'bird', u'confirm', u'croatia'] [u'selector', u'pick', u'macgil', u'waugh'] [u'ship', u'group', u'warn', u'port', u'gridlock'] [u'ship', u'wont', u'turn', u'away', u'port', u'botani', u'custom'] [u'joh', u'confid', u'coalit'] [u'korean', u'sister', u'citi', u'deleg', u'head', u'toowoomba'] [u'skywatch', u'cast', u'eye', u'mar', u'spectacular'] [u'social', u'develop', u'council', u'beat', u'futur'] [u'south', u'west', u'host', u'water', u'alloc', u'forum'] [u'stanhop', u'fear', u'terror', u'law', u'impact', u'right'] [u'state', u'math', u'curriculum', u'chaotic'] [u'statist', u'highlight', u'hunter', u'hospit', u'fail'] [u'summit', u'discuss', u'child', u'abus', u'epidem'] [u'surfer', u'fishermen', u'stoush', u'head', u'govern'] [u'doctor', u'fear', u'incorrect', u'identif', u'bodi'] [u'tender', u'seek', u'ferri', u'black', u'box'] [u'tension', u'rise', u'amid', u'pacif', u'nation', u'rail', u'deal'] [u'thousand', u'syrian', u'protest', u'inquiri'] [u'threat', u'rain', u'delay', u'latrob', u'clean'] [u'arrest', u'drug', u'charg'] [u'time', u'colour', u'north', u'battalion'] [u'tourist', u'finger', u'reattach', u'wood', u'chop'] [u'trapez', u'artist', u'injur', u'circus', u'fall'] [u'tuna', u'magnat', u'face', u'court', u'alleg', u'spill'] [u'head', u'road', u'crash'] [u'palestinian', u'kill', u'tulkarm', u'shootout'] [u'australian', u'hurrican', u'zone', u'dfat'] [u'urban', u'servic', u'shed', u'plan', u'track'] [u'vehicl', u'test', u'declin', u'add', u'road', u'safeti'] [u'polic', u'probe', u'alleg', u'kidnap'] [u'volleybal', u'group', u'look', u'attract', u'intern'] [u'shearer', u'snare', u'record'] [u'water', u'corp', u'seek', u'biosolid'] [u'waugh', u'say', u'teammat', u'fear'] [u'weak', u'mine', u'stock', u'push', u'market'] [u'weapon', u'haul', u'accus', u'avid', u'collector'] [u'white', u'lead', u'world', u'seri'] [u'wholesal', u'inflat', u'rise', u'exceed', u'expect'] [u'wilma', u'downgrad', u'categori', u'hurrican'] [u'wilma', u'head', u'florida'] [u'wit', u'contradict', u'lee', u'roadhous', u'stop'] [u'wit', u'tell', u'falconio', u'debt'] [u'wodonga', u'rail', u'bypass', u'decis', u'loom'] [u'women', u'urg', u'regular', u'breast', u'cancer', u'check'] [u'work', u'start', u'bunburi', u'silo', u'apart', u'plan'] [u'kill', u'suicid', u'attack'] [u'southern', u'highland', u'environment'] [u'accus', u'afghan', u'drug', u'lord', u'extradit'] [u'accus', u'drug', u'dealer', u'face', u'charg'] [u'govt', u'wont', u'rule', u'cut'] [u'african', u'women', u'particip', u'anti', u'trial'] [u'agricultur', u'minist', u'determin', u'crop'] [u'andrew', u'deni', u'polici', u'poll', u'slump'] [u'ansto', u'appoint', u'research', u'chief'] [u'post', u'record', u'profit'] [u'articl', u'support', u'pulp', u'fear', u'union'] [u'aussi', u'selector', u'chang', u'second', u'irish'] [u'award', u'recognis', u'young', u'apprentic', u'achiev'] [u'beatti', u'accus', u'interfer'] [u'beatti', u'throw', u'health'] [u'beazley', u'reiter', u'coastguard'] [u'industri', u'project', u'plan', u'bathurst'] [u'storm', u'batter', u'stroud'] [u'blair', u'threaten', u'iran', u'isol'] [u'bleiberg', u'escap', u'punish', u'sidelin', u'clash'] [u'blue', u'blewett', u'play'] [u'brack', u'say', u'australia', u'prepar', u'bird'] [u'brack', u'urg', u'help', u'death', u'australian'] [u'bradford', u'snap', u'star'] [u'bruce', u'highway', u'option', u'releas', u'soon'] [u'bulldog', u'fine', u'hugh', u'alterc'] [u'bush', u'admit', u'leak', u'case'] [u'bushfir', u'inquiri', u'wit', u'question', u'report'] [u'bush', u'say', u'diplomaci', u'chanc', u'syria'] [u'businessman', u'jail', u'karratha', u'fraud'] [u'cabinet', u'group', u'give', u'power', u'avoid', u'project'] [u'halt', u'beach', u'drive', u'turtl', u'nest'] [u'canberra', u'bushfir', u'inquest', u'wrap'] [u'canberra', u'hous', u'scheme', u'continu', u'despit', u'poor'] [u'cane', u'worker', u'urg', u'look', u'live'] [u'cart', u'diamond', u'crash'] [u'cart', u'diamond', u'melbourn'] [u'centrelink', u'fraud', u'land', u'year', u'jail'] [u'chariti', u'ask', u'prove', u'fundrais', u'credenti'] [u'chemic', u'compani', u'begin', u'hunt', u'toxic', u'dump', u'site'] [u'citrus', u'board', u'reflect', u'berri', u'threat', u'impact'] [u'commod', u'forecast', u'give', u'farmer', u'confid'] [u'communiti', u'leader', u'urg', u'help', u'quell', u'violenc'] [u'compani', u'push', u'ahead', u'wind', u'farm'] [u'confus', u'reign', u'dock'] [u'contain', u'start', u'move'] [u'corbi', u'lawyer', u'appeal', u'jail', u'term'] [u'councillor', u'see', u'need', u'currumbin', u'landslip'] [u'councillor', u'fear', u'poki', u'chang', u'harm', u'bundaberg'] [u'council', u'satisfi', u'nois', u'issu', u'handl'] [u'crown', u'appeal', u'offend', u'sentenc'] [u'challeng', u'landmark', u'asbesto', u'compens', u'case'] [u'cultur', u'test', u'give', u'clear', u'race'] [u'curfew', u'order', u'accus', u'bash', u'student'] [u'custom', u'say', u'port', u'backlog', u'clear'] [u'dairi', u'farmer', u'report', u'loss'] [u'data', u'privaci', u'concern', u'rais', u'passport'] [u'desir', u'mother', u'kidnap', u'court', u'hear'] [u'devil', u'head', u'enclosur'] [u'doyl', u'concern', u'leadership', u'rumour'] [u'earth', u'fall', u'hamper', u'product'] [u'electr', u'worker', u'protest', u'chang'] [u'ellison', u'defend', u'custom'] [u'england', u'number', u'say', u'fletcher'] [u'english', u'refere'] [u'want', u'strict', u'condit', u'timber', u'project'] [u'eriksson', u'back', u'beckham', u'skipper'] [u'adopt', u'knockout', u'qualifi'] [u'fairfax', u'editori', u'job'] [u'fairfax', u'correct', u'slur'] [u'falconio', u'juri', u'view', u'crime', u'scene', u'video'] [u'famili', u'victim', u'plea', u'inform'] [u'farmer', u'count', u'cost', u'sever', u'storm'] [u'farm', u'group', u'focus', u'altern', u'fuel'] [u'whale', u'save', u'mass', u'strand'] [u'film', u'archiv', u'showcas', u'classic', u'nanni', u'state'] [u'fish', u'import', u'prawn'] [u'veteran', u'boost', u'india', u'lanka'] [u'fodera', u'grant', u'bail', u'charg'] [u'forest', u'fan', u'invit', u'slam', u'player', u'person'] [u'bomb', u'explod', u'spain'] [u'fourth', u'person', u'die', u'bird', u'indonesia'] [u'fruit', u'protest', u'highlight', u'wast', u'dump', u'worri'] [u'govt', u'accus', u'wind', u'farm', u'land', u'grab'] [u'govt', u'agre', u'teacher', u'rise'] [u'govt', u'ask', u'rural', u'financi', u'counsellor'] [u'govt', u'issu', u'high', u'tech', u'passport'] [u'govt', u'pledg', u'extra', u'vietnam', u'bird', u'fight'] [u'govt', u'seek', u'tougher', u'law', u'illeg', u'fish'] [u'govt', u'lobbi', u'indonesia', u'illeg', u'fish', u'power'] [u'govt', u'tabl', u'wednesday'] [u'hope', u'bigger', u'public', u'health', u'role'] [u'greec', u'win', u'sole', u'right', u'feta', u'chees', u'label'] [u'green', u'sedit', u'claus'] [u'groth', u'get', u'australia'] [u'groth', u'shock', u'kangaroo'] [u'group', u'question', u'need', u'highway', u'bypass'] [u'health', u'minist', u'head', u'north', u'coast'] [u'health', u'servic', u'pleas', u'abort', u'plan', u'reject'] [u'health', u'servic', u'record', u'case'] [u'honeywood', u'hose', u'leadership', u'challeng'] [u'hospit', u'inquiri', u'cost', u'taxpay', u'million'] [u'hospit', u'patholog', u'unit', u'boost', u'servic'] [u'hurrican', u'wilma', u'hit'] [u'hurrican', u'wilma', u'reach', u'florida'] [u'iemma', u'act', u'speed', u'infrastructur', u'project'] [u'illeg', u'fish', u'boat', u'pose', u'dengu', u'threat'] [u'indonesian', u'polic', u'baffl', u'bali', u'blast', u'probe'] [u'indonesian', u'polic', u'slow', u'tail', u'bali'] [u'interst', u'egg', u'threaten', u'market'] [u'iraqi', u'constitut', u'approv'] [u'israel', u'mount', u'strike', u'gaza', u'rocket', u'attack'] [u'katich', u'put', u'blue', u'control'] [u'council', u'back', u'concern', u'anti', u'terror'] [u'lawyer', u'bali', u'bomber', u'final', u'appeal'] [u'lebanon', u'syria', u'presid', u'vow', u'stay'] [u'liber', u'phillip', u'job', u'mat', u'claim'] [u'lord', u'mayor', u'fear', u'urban', u'ghetto', u'darwin'] [u'loyal', u'pooch', u'trek', u'home'] [u'court', u'arrow', u'shoot'] [u'market', u'upbeat', u'amid', u'improv', u'energi', u'stock'] [u'mayor', u'councillor', u'rat', u'matter'] [u'mayor', u'push', u'chang', u'water', u'hour'] [u'meet', u'focus', u'bridg', u'issu'] [u'melbourn', u'debut', u'counter', u'terror'] [u'miner', u'start', u'explor'] [u'hing', u'govern', u'howard'] [u'mother', u'dead', u'sydney', u'home'] [u'offer', u'wast', u'dump', u'submiss', u'help'] [u'name', u'releas', u'lose', u'light', u'plane', u'crash'] [u'nation', u'wait', u'preselect', u'announc'] [u'navi', u'honour', u'fighter'] [u'contamin', u'case', u'report'] [u'initi', u'eas', u'pressur'] [u'wild', u'poison', u'trial'] [u'disappoint', u'drought', u'propos'] [u'indonesian', u'plead', u'guilti', u'illeg', u'fish'] [u'nobel', u'winner', u'present', u'key', u'perth'] [u'normanton', u'consid', u'build', u'detent', u'centr'] [u'north', u'coast', u'food', u'shortag', u'caus', u'concern'] [u'teacher', u'vote', u'offer'] [u'open', u'centr', u'suspend', u'student'] [u'chief', u'minist', u'face', u'defam', u'action'] [u'depart', u'defend', u'child', u'abus', u'case', u'respons'] [u'commit', u'remot', u'health', u'issu'] [u'nurs', u'home', u'expect', u'quick'] [u'inmat', u'hold', u'van', u'combat', u'overcrowd'] [u'offic', u'tell', u'falconio', u'evid', u'search', u'delay'] [u'ombudsman', u'probe', u'possibl', u'unlaw', u'immigr'] [u'bendigo', u'east', u'candid', u'surpris', u'doyl'] [u'opposit', u'ask', u'narrabri', u'hospit'] [u'opposit', u'predict', u'budget', u'cutback'] [u'oversea', u'race', u'interest', u'oppos', u'bet'] [u'pacif', u'island', u'seek', u'bring', u'progress'] [u'parent', u'help', u'curb', u'internet', u'child', u'porn'] [u'parent', u'grant', u'bail', u'neglect', u'charg'] [u'pearson', u'push', u'solut', u'indigen'] [u'perth', u'charg', u'bomb', u'threat'] [u'plan', u'steal', u'wag', u'insult', u'leader'] [u'plaster', u'saga', u'twist'] [u'plaster', u'futur', u'undecid'] [u'agre', u'counter', u'terror', u'summit'] [u'announc', u'north', u'educ', u'fund'] [u'commit', u'chang'] [u'deni', u'terror', u'law'] [u'say', u'pacif', u'season', u'worker', u'australia'] [u'vow', u'press', u'chang'] [u'polic', u'crash', u'victim'] [u'polic', u'seek', u'public', u'help', u'murder', u'case'] [u'poll', u'show', u'howard', u'slide'] [u'port', u'author', u'reject', u'suppli', u'base', u'specul'] [u'power', u'storm', u'leav', u'damag', u'trail'] [u'probe', u'launch', u'school', u'blaze'] [u'protest', u'fail', u'stop', u'forest', u'log'] [u'public', u'view', u'seek', u'manag'] [u'produc', u'lose', u'million', u'storm', u'damag'] [u'union', u'lobbi', u'joyc', u'concern'] [u'rail', u'corridor', u'suggest', u'highway', u'upgrad'] [u'rain', u'littl', u'boost', u'level'] [u'report', u'see', u'conflict', u'stand'] [u'resid', u'await', u'sewerag', u'connect'] [u'resid', u'invit', u'sign', u'giant', u'greet', u'card'] [u'rocki', u'distanc', u'educ', u'campus', u'stay', u'open'] [u'rooney', u'grow'] [u'erupt', u'school', u'seatbelt'] [u'rural', u'workplac', u'safeti', u'spotlight'] [u'saddam', u'defenc', u'seek', u'action', u'lawyer', u'murder'] [u'drench', u'record', u'rainfal', u'octob'] [u'ferri', u'give', u'clear', u'tragic', u'accid'] [u'underag', u'gambl', u'problem'] [u'charg', u'sexual', u'assault', u'teenag'] [u'remand', u'custodi', u'polic', u'sieg'] [u'opposit', u'call', u'account'] [u'secret', u'print', u'cod', u'allow', u'govern', u'track'] [u'section', u'park', u'name', u'crowd', u'hous'] [u'shepparton', u'mayor', u'stand'] [u'shire', u'move', u'closer', u'share'] [u'civilian', u'kill', u'afghanistan', u'attack'] [u'whale', u'strand'] [u'snail', u'experi', u'alzheim', u'research'] [u'socceroo', u'scrambl', u'charter', u'flight'] [u'socceroo', u'world', u'qualifi', u'push'] [u'spirit', u'tasmania', u'vital', u'reviv', u'region'] [u'stepfath', u'grant', u'bail', u'child', u'methadon', u'death'] [u'storm', u'take', u'toll', u'echuca', u'shop'] [u'strand', u'tourist', u'start', u'leav', u'hurrican'] [u'summer', u'snow', u'fall', u'alp'] [u'surfer', u'happi', u'lobster', u'fish', u'chang'] [u'survey', u'highlight', u'region', u'teeth', u'problem'] [u'govt', u'defend', u'campaign'] [u'taxi', u'oper', u'plan', u'legal', u'action', u'botch'] [u'teacher', u'soccer', u'effort', u'award'] [u'telstra', u'chairman', u'renew', u'attack', u'govt'] [u'telstra', u'need', u'better', u'trujillo'] [u'tendulkar', u'inspir', u'india', u'emphat', u'victori'] [u'tendulkar', u'inspir', u'india', u'massiv', u'total'] [u'trader', u'help', u'deal', u'arm', u'robberi'] [u'tribal', u'death', u'penalti', u'rais', u'murder', u'trial'] [u'trujillo', u'hint', u'telstra', u'loss'] [u'tuna', u'magnat', u'defend', u'spill', u'claim', u'court'] [u'twin', u'centuri', u'blue'] [u'unicef', u'launch', u'aid', u'campaign', u'adelaid'] [u'union', u'attack', u'birney', u'polic', u'slack', u'claim'] [u'union', u'want', u'time', u'school', u'holiday', u'chang'] [u'civil', u'right', u'icon', u'rosa', u'park', u'dead'] [u'seek', u'shield', u'detaine', u'rule', u'report'] [u'valentin', u'good', u'posit', u'return', u'hobart'] [u'veteran', u'concern', u'beatti', u'stanc', u'cape'] [u'victoria', u'abandon', u'abort', u'cool', u'period'] [u'warn', u'light', u'blame', u'abort', u'flight'] [u'water', u'scheme', u'boost', u'murray', u'flow'] [u'water', u'tower', u'inquest', u'delay', u'worri', u'union'] [u'wed', u'ring', u'fiasco', u'repercuss', u'mcmahon'] [u'west', u'indi', u'unfaz', u'lara', u'form', u'slump'] [u'willandra', u'lake', u'region', u'celebr', u'local', u'heritag'] [u'wilma', u'pound', u'florida', u'flood', u'cuba', u'kill'] [u'woman', u'die', u'motorcycl', u'collis'] [u'woman', u'jail', u'fals', u'assault', u'claim'] [u'worker', u'charg', u'attempt', u'murder'] [u'worker', u'like', u'explos', u'thief', u'polic'] [u'abbott', u'confid', u'australia', u'prepared'] [u'aborigin', u'leader', u'back', u'nuclear', u'wast', u'facil'] [u'aborigin', u'manag', u'nation', u'park', u'hail'] [u'access', u'scheme', u'help', u'rural', u'student', u'succeed'] [u'acropoli', u'museum', u'head', u'complet'] [u'opposit', u'want', u'attent', u'local', u'art'] [u'reject', u'supermarket', u'pharmaci'] [u'actu', u'seek', u'percent', u'award', u'wage', u'rise'] [u'adelaid', u'readi', u'form', u'wildcat'] [u'alburi', u'polic', u'bike'] [u'qaeda', u'claim', u'australian', u'target', u'iraq', u'attack'] [u'qaeda', u'hold', u'morocco', u'embassi', u'staff'] [u'ambul', u'worker', u'disput', u'wont', u'affect', u'emerg'] [u'anim', u'harvest', u'certif', u'rspca', u'back'] [u'annan', u'commend', u'iraqi', u'constitut', u'vote'] [u'anti', u'terror', u'law', u'imprecis', u'human', u'right'] [u'auction', u'hous', u'offer', u'afford', u'picasso', u'work'] [u'aussi', u'tell', u'readi', u'life', u'mcgrath'] [u'aust', u'armi', u'deal', u'insurg', u'better'] [u'australian', u'citizen', u'lose', u'right', u'british'] [u'australia', u'pledg', u'fight', u'pacif', u'bird'] [u'australia', u'pois', u'ireland', u'kick'] [u'australia', u'urg', u'support', u'trawl', u'moratorium'] [u'author', u'examin', u'plane', u'airport', u'emerg'] [u'author', u'meet', u'thai', u'airlin', u'offici', u'plane'] [u'bali', u'drug', u'accus', u'reappear', u'court'] [u'barri', u'jone', u'blast', u'nguyen', u'hick', u'action'] [u'bashir', u'like', u'receiv', u'jail', u'time'] [u'beatti', u'prematur', u'fund', u'boost'] [u'beckham', u'win', u'real', u'appeal'] [u'bendigo', u'council', u'seek', u'closer', u'tie', u'communiti'] [u'bendigo', u'health', u'staff', u'mull', u'condit', u'respons'] [u'consid', u'option', u'olymp', u'water', u'suppli'] [u'biodivers', u'help', u'slow', u'diseas', u'spread', u'studi'] [u'blue', u'claim', u'earli', u'wicket', u'redback'] [u'bomb', u'explod', u'near', u'court', u'spain'] [u'serious', u'injur', u'backyard', u'chemic'] [u'british', u'wife', u'water', u'australian', u'tour'] [u'build', u'start', u'airport', u'develop'] [u'bulok', u'council', u'open', u'road', u'discuss'] [u'campaign', u'target', u'domest', u'violenc', u'bystand'] [u'burglar', u'remain', u'promin', u'burni'] [u'castaigned', u'franc'] [u'say', u'endeavour', u'problem', u'short', u'term'] [u'challeng', u'equal', u'opportun', u'exempt', u'rule'] [u'chanc', u'want', u'quarantin', u'law', u'tighten'] [u'cherri', u'fetch', u'record', u'price', u'chariti', u'auction'] [u'child', u'killer', u'jail', u'year'] [u'civic', u'centr', u'develop', u'domin', u'council'] [u'clark', u'power', u'blue'] [u'communiti', u'surveil', u'spot', u'illeg', u'fisher'] [u'communiti', u'want', u'patrol', u'illeg', u'poacher'] [u'coober', u'pedi', u'alic', u'spring', u'flight'] [u'coron', u'offic', u'eager', u'find', u'death', u'inquest'] [u'cossack', u'japanes', u'cemeteri', u'restor'] [u'court', u'rule', u'counter', u'terror', u'law', u'costello'] [u'custom', u'softwar', u'stay', u'ellison', u'say'] [u'dallaglio', u'want', u'lion', u'snip'] [u'dickenson', u'lead', u'launceston', u'mayor', u'race'] [u'diver', u'unveil', u'java', u'treasur', u'trove'] [u'dravid', u'hail', u'return', u'tendulkar'] [u'drought', u'break', u'macquari', u'marsh'] [u'drug', u'drive', u'studi', u'alarm'] [u'drug', u'reduc', u'post', u'vomit'] [u'jail', u'robberi'] [u'bite', u'bondi', u'brawl'] [u'whale', u'rescu', u'mass', u'strand'] [u'elect', u'hold', u'wimmera', u'malle', u'area'] [u'ellison', u'outlin', u'port', u'solut'] [u'england', u'cricket', u'arriv', u'pakistan'] [u'europ', u'slap', u'global', u'bird', u'import'] [u'expens', u'owner', u'urg', u'vigil'] [u'fact', u'find', u'mission', u'marin', u'zone'] [u'fals', u'memori', u'explain', u'alien', u'abduct', u'studi'] [u'farmer', u'want', u'offer', u'mccain'] [u'farmer', u'warn', u'fever', u'threat'] [u'farmer', u'alli', u'softwood', u'timber', u'fight'] [u'film', u'maker', u'scout', u'goulburn', u'locat'] [u'command', u'hold', u'backpack', u'death'] [u'boy', u'plead', u'guilti', u'attempt', u'rape'] [u'fuel', u'price', u'drive', u'inflat'] [u'gallop', u'confid', u'fund', u'improv', u'schooli'] [u'garrett', u'renew', u'call', u'indigen', u'apolog'] [u'gippsland', u'water', u'test', u'factori', u'morwel'] [u'gold', u'coast', u'water', u'propos', u'council'] [u'govern', u'committ', u'meander'] [u'govt', u'control', u'opposit'] [u'govt', u'push', u'ahead', u'anti', u'terror', u'law'] [u'govt', u'tell', u'court', u'instead', u'whale'] [u'govt', u'urg', u'consid', u'bird', u'generic', u'drug'] [u'handicapp', u'go', u'light', u'makyb'] [u'hanson', u'blast', u'beatti', u'lose', u'compo', u'claim'] [u'hawk', u'slam', u'immor', u'chang'] [u'hope', u'protect', u'tumut', u'river'] [u'hous', u'damag', u'sever', u'hail', u'storm'] [u'howard', u'happi', u'chang', u'counter', u'terror'] [u'indigo', u'shire', u'elect', u'need'] [u'industri', u'seek', u'chang', u'yellowcak', u'transport'] [u'inflat'] [u'injuri', u'black'] [u'injuri', u'put', u'lazaridi', u'doubt', u'uruguay'] [u'iraq', u'constitut', u'vote', u'accur', u'say'] [u'israel', u'launch', u'gaza', u'raid', u'rocket', u'attack'] [u'japan', u'close', u'allow', u'femal', u'emperor'] [u'japan', u'pressur', u'lift', u'beef', u'import'] [u'juri', u'retir', u'consid', u'cooper', u'verdict'] [u'kangaroo', u'concern', u'forestri', u'industri'] [u'kangaroo', u'midfield', u'pair'] [u'kewel', u'play', u'liverpool', u'emerton', u'neill'] [u'labor', u'step', u'critic', u'anti', u'terror', u'law'] [u'lekka', u'decid', u'hang', u'boot'] [u'probe', u'respons', u'road', u'fund'] [u'lobbi', u'group', u'form', u'swansea', u'bridg', u'replac'] [u'local', u'farmer', u'benefit', u'develop'] [u'lord', u'vote', u'increas', u'safeguard', u'freedom'] [u'macair', u'begin', u'week', u'flight', u'zinifex'] [u'guilti', u'murder', u'fellow', u'lodger'] [u'mango', u'duffer', u'grade', u'fruit'] [u'market', u'surg', u'amid', u'upbeat', u'resourc', u'bank', u'stock'] [u'maroochi', u'councillor', u'reject', u'radio', u'comment'] [u'martin', u'prais', u'land', u'ownership', u'recognit'] [u'maryborough', u'blue', u'green', u'alga', u'accept', u'level'] [u'mass', u'whale', u'strand'] [u'melbourn', u'airport', u'reopen', u'plane', u'emerg'] [u'miner', u'hail', u'success', u'canadian', u'negoti', u'deal'] [u'mini', u'budget', u'target', u'hospit', u'delay', u'staff'] [u'minist', u'ban', u'shark', u'fish'] [u'minist', u'hope', u'veteran', u'cape', u'retreat'] [u'minist', u'prais', u'flood', u'effort'] [u'minist', u'announc', u'food', u'label', u'law'] [u'mix', u'reaction', u'beatti', u'mini', u'budget'] [u'mobil', u'phone', u'complaint', u'soar'] [u'mokbel', u'charg'] [u'mokbel', u'custodi', u'ecstasi', u'import', u'charg'] [u'whale', u'strand', u'tasmania'] [u'muswellbrook', u'interest', u'toxic', u'wast', u'dump'] [u'navi', u'distanc', u'whale', u'beach'] [u'newcastl', u'servic', u'honour', u'bali', u'bomb', u'victim'] [u'odriscol', u'video', u'spark', u'spear', u'tackl', u'warn'] [u'test', u'procedur', u'announc', u'live', u'bird'] [u'seatbelt', u'poor', u'road', u'danger', u'combin'] [u'spend', u'cartridg', u'falconio', u'crime', u'scene', u'court'] [u'north', u'coast', u'storm', u'continu'] [u'teacher', u'agre', u'deal'] [u'numurkah', u'nab', u'drink', u'drive'] [u'offic', u'tell', u'possibl', u'falconio', u'crime', u'scene'] [u'gold', u'price', u'jump', u'weather', u'worri', u'market'] [u'ombudsman', u'call', u'releas', u'child', u'protect'] [u'ombudsman', u'flag', u'immigr', u'chang'] [u'outag', u'loot', u'hamper', u'hurrican', u'wilma', u'recoveri'] [u'overwhelm', u'respons', u'cyclon', u'clean'] [u'pakistan', u'quak', u'death', u'toll', u'rise'] [u'paper', u'apologis', u'falconio', u'articl'] [u'pendragon', u'hand', u'wide', u'draw'] [u'plane', u'emerg', u'shut', u'melbourn', u'airport'] [u'plan', u'servic', u'depend', u'partnership'] [u'announc', u'pacif', u'plan'] [u'back', u'anti', u'terror', u'law'] [u'plan', u'trade', u'colleg', u'pacif'] [u'polic', u'deni', u'evid', u'plant', u'falconio', u'crime'] [u'polic', u'investig', u'babi', u'suspici', u'death'] [u'poll', u'show', u'major', u'paringa', u'caravan', u'park'] [u'port', u'delay', u'affect', u'farm', u'import'] [u'port', u'delay', u'damag', u'economi'] [u'power', u'sign', u'experi', u'trio'] [u'promot', u'bodi', u'welcom', u'power', u'station', u'fund'] [u'prosecutor', u'free', u'plan', u'bali', u'bomber', u'execut'] [u'public', u'comment', u'fire', u'power', u'station'] [u'public', u'come', u'round', u'chang', u'say', u'joyc'] [u'govt', u'reject', u'hanson', u'compo', u'claim'] [u'tri', u'shake', u'greedi', u'water', u'user', u'imag'] [u'rainbow', u'trout', u'trial', u'modifi', u'better', u'harvest'] [u'redback', u'struggl', u'rampant', u'blue'] [u'report', u'find', u'intellig', u'track', u'london', u'bomber'] [u'resid', u'want', u'bushfir', u'inquiri', u'find', u'hand'] [u'retire', u'fin', u'accident', u'shoot', u'woman'] [u'robinval', u'mele', u'predict'] [u'roger', u'eye', u'half', u'role'] [u'rome', u'ban', u'cruel', u'goldfish', u'bowl'] [u'rough', u'sea', u'hamper', u'search', u'miss', u'plane'] [u'mainten', u'work'] [u'rudd', u'issu', u'direct', u'appeal', u'save', u'death', u'aussi'] [u'ruddock', u'confid', u'anti', u'terror', u'law'] [u'ruddock', u'vanston', u'resign', u'labor', u'say'] [u'rural', u'financi', u'counsel', u'chang', u'deter'] [u'rural', u'financi', u'counsellor', u'fund', u'continu'] [u'russia', u'oppos', u'sanction', u'syria'] [u'saddam', u'lawyer', u'boycott', u'court'] [u'elector', u'wors', u'welfar', u'chang'] [u'santo', u'announc', u'record', u'earn'] [u'opposit', u'want', u'answer', u'bushfir', u'disast'] [u'scud', u'lose', u'stosur', u'win'] [u'season', u'work', u'solut', u'pacif', u'unemploy'] [u'sheep', u'nlis', u'roll', u'year'] [u'shoaib', u'threaten', u'dog', u'tail', u'comment'] [u'south', u'durra', u'murder', u'trial', u'adjourn'] [u'stanhop', u'advic', u'anti', u'terror', u'law'] [u'storm', u'damag', u'forc', u'cancel', u'school', u'class'] [u'support', u'want', u'spinal', u'injuri', u'specialist', u'program'] [u'syria', u'urg', u'gap', u'hariri', u'death'] [u'tamworth', u'polic', u'probe', u'alleg', u'sexual', u'assault'] [u'tamworth', u'resid', u'target', u'pool', u'safeti'] [u'team', u'harmoni', u'high', u'say', u'chanderpaul'] [u'tourist', u'flee', u'hurrican', u'cancun', u'beach', u'ruin'] [u'tradit', u'owner', u'mark', u'uluru', u'handback', u'anniversari'] [u'troop', u'leav', u'darwin', u'iraq'] [u'tuna', u'farmer', u'lawyer', u'challeng', u'evid'] [u'arrest', u'man', u'death', u'caravan', u'park'] [u'univers', u'mull', u'use', u'nurs', u'home'] [u'resolut', u'forc', u'hariri', u'suspect', u'arrest'] [u'militari', u'death', u'toll', u'iraq', u'reach'] [u'vatican', u'list', u'condit', u'tie', u'china'] [u'vinni', u'prim'] [u'virus', u'hit', u'wheat', u'crop'] [u'art', u'group', u'govern', u'grant'] [u'govt', u'accus', u'hide', u'school', u'fund'] [u'wallabi', u'europ'] [u'warracknab', u'disabl', u'provid', u'staff', u'strike'] [u'welfar', u'chang', u'region', u'area', u'hard', u'acoss'] [u'wellington', u'shire', u'target', u'mosquito', u'breed', u'sit'] [u'western', u'govt', u'criticis', u'quak', u'respons'] [u'whale', u'strand', u'tasmania'] [u'wheat', u'outlook', u'optimist'] [u'white', u'hous', u'ask', u'onion', u'stop', u'seal'] [u'white', u'world', u'seri'] [u'willow', u'park', u'slat', u'pool'] [u'woman', u'bodi', u'water'] [u'women', u'wors', u'chang', u'goward'] [u'zimbabw', u'opposit', u'split', u'poll', u'boycott'] [u'dead', u'amsterdam', u'airport'] [u'shark', u'fish', u'research'] [u'aborigin', u'free'] [u'accc', u'urg', u'investig', u'fuel', u'profit', u'claim'] [u'acoss', u'critic', u'welfar', u'benefit'] [u'alburi', u'polic', u'drink', u'crackdown'] [u'anti', u'terror', u'law', u'delay', u'brack', u'say'] [u'anti', u'terror', u'law', u'analyst'] [u'anti', u'terror', u'law', u'threaten', u'tent', u'embassi'] [u'armstrong', u'successor', u'readi'] [u'australia', u'place', u'intern', u'univers'] [u'bahrain', u'pole', u'formula', u'season'] [u'beazley', u'seek', u'rebuild', u'labor', u'tie', u'corpor'] [u'beazley', u'polici', u'target', u'middl', u'incom', u'earner'] [u'beef', u'industri', u'product', u'gain', u'match', u'grain'] [u'blue', u'comfort'] [u'blue', u'redback'] [u'border', u'close', u'event', u'bird', u'pandem'] [u'boss', u'hope', u'makyb', u'contest'] [u'bull', u'tail', u'hold', u'west', u'indi'] [u'burst', u'water', u'main', u'reveal', u'hide', u'cavern'] [u'bush', u'suprem', u'court', u'pick', u'withdraw'] [u'carr', u'deni', u'climat', u'consult', u'role', u'conflict'] [u'cathol', u'agenc', u'urg', u'govt', u'save', u'nguyen'] [u'charlton', u'knock', u'holder', u'chelsea', u'leagu'] [u'charter', u'oper', u'prais', u'safeti', u'stanc'] [u'chief', u'minist', u'call', u'legisl', u'assembl'] [u'circumcis', u'cut', u'risk', u'studi'] [u'compani', u'receiv', u'govern', u'support', u'power'] [u'concern', u'delay', u'counter', u'terror', u'law'] [u'constitut', u'concern', u'plagu', u'counter', u'terror'] [u'constitut', u'question', u'plagu', u'anti', u'terror', u'law'] [u'copper', u'product', u'billiton'] [u'coral', u'project', u'ensur', u'sustain', u'environ'] [u'coron', u'like', u'rule', u'natur', u'caus', u'post'] [u'council', u'doubt', u'valid', u'caravan', u'park', u'poll'] [u'council', u'prais', u'industri', u'contribut', u'airstrip'] [u'council', u'seek', u'comment', u'river', u'foreshor', u'upgrad'] [u'current', u'water', u'plan', u'best', u'palaszczuk'] [u'dairi', u'farmer', u'reap', u'benefit', u'chees', u'price'] [u'decis', u'near', u'extradit', u'broom'] [u'develop', u'board', u'chair', u'wast', u'dump'] [u'spell', u'genet', u'variat'] [u'duel', u'pendragon', u'say', u'rogerson'] [u'einstein', u'darwin', u'genius', u'writ', u'larg'] [u'elder', u'drug', u'offend', u'remain', u'confisc'] [u'england', u'winger', u'cohen', u'win', u'recal'] [u'english', u'smoke', u'prompt'] [u'explos', u'rock', u'isra', u'seasid', u'town'] [u'prison', u'hit'] [u'factori', u'worker', u'take', u'strike', u'action'] [u'fairfax', u'journalist', u'hold', u'stop', u'work', u'cut'] [u'govt', u'accus', u'vicious', u'cutback', u'road'] [u'festiv', u'showcas', u'local', u'wineri'] [u'firefight', u'control', u'west', u'sydney', u'blaze'] [u'fluorid', u'process', u'delay'] [u'footbal', u'legend', u'best', u'fight', u'life', u'hospit'] [u'solicitor', u'general', u'speak'] [u'teacher', u'plead', u'guilti', u'child', u'charg'] [u'fresh', u'suppli', u'expect', u'oodnadatta'] [u'ghost', u'cast', u'shadow', u'summit'] [u'giant', u'impact', u'add', u'earth', u'core'] [u'girl', u'descript', u'prais', u'alleg', u'abduct'] [u'giteau', u'want', u'wallabi', u'number'] [u'govt', u'hail', u'budget', u'surplus'] [u'govt', u'overhaul', u'rural', u'financi', u'counsel'] [u'govt', u'reject', u'mayor', u'toll', u'suggest'] [u'govt', u'step', u'scheme', u'negoti'] [u'greec', u'want', u'ancient', u'treasur', u'return'] [u'green', u'light', u'nation', u'exot', u'plant', u'pest', u'plan'] [u'group', u'urg', u'singapor', u'stop', u'australian', u'execut'] [u'grower', u'prais', u'label', u'chang'] [u'gunn', u'talk', u'pulp'] [u'owner', u'storag', u'facil', u'inspect'] [u'halloran', u'rejoin', u'polic', u'forc'] [u'health', u'council', u'member', u'name'] [u'health', u'offici', u'discuss', u'bird', u'global', u'fund'] [u'heat', u'debat', u'expect', u'highway', u'upgrad'] [u'hodg', u'bracken', u'west', u'indi', u'open'] [u'hoon', u'driver', u'wont', u'toler'] [u'hop', u'deal', u'boost', u'wool', u'profil', u'ahead'] [u'hotel', u'worker', u'dous', u'petrol', u'attack'] [u'howard', u'criticis', u'iranian', u'presid', u'israel'] [u'howard', u'dismiss', u'critic', u'pacif', u'worker'] [u'human', u'right', u'protect', u'counter', u'terror', u'law'] [u'indigen', u'australian', u'price', u'law'] [u'indigen', u'communiti', u'growth', u'prioriti'] [u'indigen', u'ranger', u'ignor', u'illeg', u'fish'] [u'indonesia', u'investig', u'sourc', u'bird'] [u'industri', u'accid', u'cost', u'compani'] [u'infrastructur', u'vital', u'econom', u'develop'] [u'injuri', u'real', u'fail'] [u'inquiri', u'hear', u'bundaberg', u'nurs'] [u'interpol', u'chief', u'outlin', u'organis', u'crime', u'concern'] [u'iraqi', u'militia', u'clash', u'insurg', u'dead'] [u'iraqi', u'sunni', u'parti', u'form', u'allianc'] [u'israel', u'launch', u'strike', u'gaza'] [u'japanes', u'compani', u'claim', u'fibr', u'optic', u'data', u'transfer'] [u'japan', u'shrug', u'pressur', u'beef'] [u'judg', u'urg', u'counter', u'terror'] [u'juri', u'rule', u'world', u'trade', u'centr', u'bomb', u'victim'] [u'kangaroo', u'wari', u'great', u'britain'] [u'kerbsid', u'collect', u'blow', u'away'] [u'kewel', u'undergo', u'extra', u'train', u'world'] [u'stock', u'weaken', u'wall'] [u'labor', u'reach', u'busi', u'leader'] [u'land', u'council', u'agre', u'negoti', u'pandanus'] [u'lehmann', u'centuri', u'lift', u'redback'] [u'lehmann', u'stand', u'blue', u'inning'] [u'liber', u'critic', u'govt'] [u'lightn', u'strike', u'twice', u'airport'] [u'liquid', u'hinder', u'invest', u'scam', u'fund'] [u'london', u'bomb', u'ringlead', u'link', u'bali', u'plotter'] [u'macgil', u'watson', u'name', u'test', u'squad'] [u'makyb', u'diva', u'decis', u'loom'] [u'makyb', u'diva', u'work', u'ahead', u'decis'] [u'makyb', u'firm', u'melbourn'] [u'acquit', u'boy', u'manslaught', u'boat'] [u'man', u'fine', u'monaghan', u'cancun', u'trip'] [u'plead', u'guilti', u'porn', u'charg'] [u'marin', u'lobbyist', u'happi', u'fish', u'busi'] [u'market', u'dip', u'amid', u'resourc', u'media', u'stock', u'slide'] [u'meet', u'discuss', u'pacif', u'highway', u'upgrad'] [u'melbourn', u'airport', u'domest', u'flight', u'return'] [u'meningococc', u'suspect', u'toddler', u'death'] [u'methamphetamin', u'drug', u'choic', u'australian'] [u'methamphetamin', u'increas', u'report'] [u'microsoft', u'plan', u'onlin', u'librari'] [u'pledg', u'pakistan', u'quak', u'relief'] [u'mother', u'deni', u'bail', u'child', u'methadon', u'death', u'case'] [u'murray', u'down', u'henman', u'battl', u'brit'] [u'musharraf', u'defend', u'quak', u'respons'] [u'netbal', u'test', u'warm'] [u'climat', u'bodi', u'address', u'region'] [u'counter', u'terror', u'legisl', u'likley'] [u'famili', u'make', u'west', u'wimmera', u'home'] [u'contamin', u'law', u'protect', u'grower'] [u'launceston', u'mayor', u'consult', u'approach'] [u'train', u'line', u'see', u'boost', u'rail', u'freight'] [u'northern', u'power', u'station', u'promis', u'mooney'] [u'nowra', u'look', u'address', u'park', u'problem'] [u'polic', u'hunt', u'near', u'derail'] [u'economi', u'suffer', u'welfar', u'chang', u'acoss'] [u'church', u'ditch', u'rugbi'] [u'rat', u'rise'] [u'oppn', u'want', u'hospit', u'contract', u'public'] [u'opposit', u'applaud', u'distanc', u'educ', u'decis'] [u'opposit', u'blame', u'hec', u'rise', u'fall', u'student'] [u'owner', u'urg', u'clean', u'properti', u'ahead'] [u'pacif', u'forum', u'keep', u'pressur', u'howard'] [u'packer', u'deliv', u'upbeat', u'forecast'] [u'pakistan', u'want', u'england', u'player', u'help', u'quak', u'victim'] [u'palestinian', u'attack', u'kill', u'northern', u'israel'] [u'palestinian', u'leader', u'refus', u'disband', u'cabinet'] [u'polic', u'complex', u'provid', u'improv', u'secur', u'mcginti'] [u'polic', u'target', u'parti', u'drug', u'ahead', u'festiv'] [u'polic', u'wait', u'year', u'test', u'falconio', u'evid'] [u'polic', u'work', u'identifi', u'bodi'] [u'pork', u'produc', u'allow', u'pursu', u'case'] [u'port', u'problem', u'expos', u'secur', u'risk', u'beazley', u'say'] [u'post', u'mortem', u'reveal', u'murder', u'suicid'] [u'promin', u'anti', u'protest', u'arrest', u'white'] [u'propos', u'counter', u'terror', u'law', u'survey'] [u'protest', u'mark', u'fatal', u'iraq'] [u'public', u'warn', u'lurk', u'croc'] [u'push', u'hour', u'pharmaci', u'servic'] [u'qanta', u'featur', u'pandem', u'plan'] [u'pass', u'law', u'case', u'bird', u'pandem'] [u'speaker', u'face', u'confid', u'motion'] [u'ranger', u'oper', u'extend', u'high', u'uranium', u'price'] [u'redback', u'blue', u'tighten', u'grip'] [u'remand', u'centr', u'secur', u'boost', u'follow', u'rampag'] [u'rescuer', u'save', u'strand', u'whale'] [u'resourc', u'compani', u'urg', u'develop', u'communiti'] [u'rizzo', u'take', u'gold', u'world', u'meet'] [u'roch', u'withhold', u'tamiflu', u'stop', u'hoard'] [u'rome', u'fight', u'fear', u'roast', u'chicken'] [u'rooki', u'inning', u'help', u'bull', u'competit', u'total'] [u'chief', u'sack', u'cross', u'citi', u'tunnel'] [u'head', u'sack', u'cross', u'citi', u'tunnel', u'deal'] [u'rudd', u'continu', u'push', u'save', u'death', u'australian'] [u'rush', u'hour', u'commut', u'train', u'derail'] [u'russian', u'jail', u'traffic', u'control', u'murder'] [u'russia', u'oppos', u'sanction', u'syria'] [u'region', u'market', u'boom'] [u'school', u'stamped', u'china', u'kill'] [u'scott', u'confirm', u'huntingdal'] [u'sever', u'storm'] [u'sharon', u'vow', u'broad', u'offens', u'bomb'] [u'sheedi', u'call', u'review', u'tackl', u'law', u'hybrid'] [u'shire', u'avoid', u'pay', u'greedi', u'polici'] [u'singapor', u'defend', u'decis', u'hang', u'melbourn'] [u'singapor', u'issu', u'statement', u'nguyen', u'loom'] [u'job', u'forecast', u'pooncari', u'project'] [u'smart', u'sydney', u'want', u'reveng', u'jet'] [u'journalist', u'strike', u'action'] [u'societi', u'say', u'illeg', u'fish', u'respons'] [u'spring', u'rain', u'boost', u'wheat', u'harvest'] [u'staff', u'moral', u'concern', u'sunraysia', u'tafe'] [u'steven', u'comment', u'person', u'opposit', u'say'] [u'strike', u'boe', u'worker', u'lead', u'protest'] [u'strong', u'construct', u'activ', u'predict'] [u'suicid', u'bomber', u'kill', u'israel'] [u'govern', u'refus', u'stop', u'pulp'] [u'surplus', u'balloon'] [u'teen', u'injur', u'cross', u'railway', u'track'] [u'terror', u'law', u'shouldnt', u'rush', u'iemma'] [u'test', u'dead', u'bird', u'strain', u'croatia'] [u'fish', u'habitat', u'area', u'close', u'establish'] [u'thompson', u'focus', u'victori'] [u'tiger', u'belt', u'razorback'] [u'toll', u'attack', u'patrick', u'corp', u'takeov', u'block'] [u'union', u'freez', u'public', u'privat', u'deal'] [u'issu', u'indonesian', u'travel', u'warn'] [u'order', u'releas', u'guantanamo', u'hunger', u'strike'] [u'unlik', u'accept', u'tariff', u'offer'] [u'vandal', u'damag', u'nativ', u'tree'] [u'govt', u'pledg', u'polici', u'review', u'amid', u'indigen'] [u'nation', u'warn', u'hospit', u'staff', u'wage', u'cut'] [u'announc', u'futur', u'health', u'plan'] [u'mine', u'compani', u'lead', u'reconcili'] [u'warburton', u'construct', u'go', u'administr'] [u'warwick', u'rodeo', u'expect', u'draw', u'thousand'] [u'waugh', u'scheme', u'help', u'kenyan', u'kid'] [u'welfar', u'chang', u'region', u'area', u'report', u'show'] [u'west', u'drain', u'doctor', u'poor', u'nation'] [u'whale', u'carcass', u'beach'] [u'white', u'sweep', u'astro', u'captur', u'world', u'seri'] [u'wilma', u'victim', u'await'] [u'zinifex', u'push', u'ahead', u'staff', u'reduct'] [u'carnarvon', u'youth', u'base', u'open'] [u'abbott', u'welcom', u'bird', u'drug', u'product', u'increas'] [u'adelaid', u'veteran', u'outfox', u'victori', u'young', u'gun'] [u'aggress', u'windi', u'charg'] [u'commit', u'northern', u'power', u'station'] [u'pollut', u'tie', u'increas', u'stroke', u'risk'] [u'aldermen', u'lose', u'council', u'spot'] [u'lose', u'starcraft'] [u'andrew', u'deni', u'chang', u'hurt', u'indigen'] [u'angri', u'veld', u'tee', u'women'] [u'asylum', u'claim', u'fall', u'consecut', u'year'] [u'australia', u'rule', u'clean', u'sweep'] [u'deni', u'knowledg', u'saddam', u'kickback'] [u'implic', u'food', u'scandal'] [u'bali', u'bomb', u'victim', u'remain', u'stabl', u'condit'] [u'beatti', u'back', u'electr', u'cope'] [u'beauti', u'help', u'elect'] [u'benambra', u'celebr', u'year'] [u'best', u'mend', u'doctor'] [u'best', u'suffer', u'intern', u'bleed'] [u'betfair', u'oper', u'confid', u'despit', u'opposit'] [u'benefit', u'see', u'plan', u'health', u'care', u'complex'] [u'boy', u'death', u'spark', u'hope', u'better', u'boat', u'safeti'] [u'britain', u'underdog', u'nation', u'clash'] [u'brook', u'shield', u'pregnant'] [u'brother', u'face', u'death', u'penalti', u'journalist'] [u'busi', u'communiti', u'await', u'iemma', u'comment'] [u'specialist', u'visit', u'goldfield'] [u'head', u'call', u'regul'] [u'head', u'warn', u'rate', u'pressur'] [u'chemic', u'explos', u'prompt', u'warn'] [u'chevron', u'detail', u'deal'] [u'chief', u'justic', u'back', u'circl', u'sentenc'] [u'china', u'access', u'deal', u'close', u'citrus', u'grower'] [u'communiti', u'farewel', u'millic', u'stock', u'agent'] [u'commut', u'face', u'delay', u'liverpool', u'station', u'bomb'] [u'blame', u'forestri', u'profit', u'plung'] [u'construct', u'compani', u'back', u'govt', u'plan'] [u'cooper', u'need', u'tackl', u'environment', u'crime'] [u'councillor', u'stand', u'state', u'seat'] [u'council', u'play', u'pipelin', u'environ', u'impact'] [u'council', u'seek', u'jail', u'detail'] [u'council', u'urg', u'care', u'weigh', u'jail'] [u'countri', u'origin', u'label', u'approv', u'produc'] [u'countri', u'rail', u'servic', u'face', u'game', u'shutdown'] [u'croc', u'breeder', u'hope', u'bumper', u'year'] [u'csiro', u'plan', u'slash', u'job'] [u'cult', u'leader', u'dismiss', u'charg'] [u'doubt', u'british', u'raider'] [u'danger', u'loom', u'doubt', u'rain', u'expect', u'derbi'] [u'darwin', u'jail', u'lockdown', u'disturb'] [u'dental', u'group', u'lament', u'fluorid', u'reject'] [u'depart', u'criticis', u'wilson', u'promontori'] [u'clarifi', u'countri', u'hospit'] [u'disgrac', u'olymp', u'champion', u'order', u'return', u'medal'] [u'docker', u'wood'] [u'doctor', u'group', u'reflect', u'rural', u'health', u'worri'] [u'drought', u'offici', u'declar'] [u'elvi', u'earner', u'dead', u'celebr'] [u'england', u'cricket', u'play', u'golf', u'pakistan', u'quak'] [u'fin', u'ranger', u'safeti', u'breach'] [u'euthanis', u'devil', u'feasibl', u'tool'] [u'health', u'servic', u'board', u'member', u'stand', u'hospit'] [u'fairfax', u'journo', u'return', u'work'] [u'fall', u'water', u'caus', u'council', u'revenu', u'worri'] [u'farmer', u'fear', u'wagga', u'rate', u'rise', u'plan'] [u'farmer', u'pine', u'plantat', u'plan'] [u'farmer', u'review', u'food', u'label', u'law'] [u'fatigu', u'factor', u'worri', u'mourinho'] [u'feasibl', u'studi', u'consid', u'vermin', u'proof', u'fenc'] [u'feder', u'nadal', u'pari', u'master'] [u'field', u'day', u'receiv', u'hall', u'fame', u'honour'] [u'filan', u'want', u'socceroo', u'return'] [u'footbal', u'guilti', u'assault'] [u'fund', u'gordon', u'estat', u'clean'] [u'gazza', u'enter', u'manag', u'minor', u'leagu'] [u'compani', u'accus', u'contamin', u'seed'] [u'general', u'motor', u'probe', u'rattl', u'investor'] [u'gilchrist', u'appeal', u'quak'] [u'rabbit', u'virus', u'caus', u'concern'] [u'go', u'forget', u'armstrong', u'ignor', u'tour'] [u'good', u'smoke', u'statist'] [u'govt', u'accus', u'neglect', u'region', u'road'] [u'govt', u'amend', u'counter', u'terror', u'law', u'stanhop', u'say'] [u'govt', u'seek', u'cruis', u'ship', u'termin', u'develop'] [u'govt', u'remov', u'calcium', u'tablet'] [u'govt', u'watch', u'bird', u'sign'] [u'govt', u'tri', u'reduc', u'award', u'wag', u'opposit'] [u'govt', u'beat', u'wimmera'] [u'govt', u'urg', u'abandon', u'daylight', u'save'] [u'govt', u'urg', u'appoint', u'second', u'newcastl', u'famili'] [u'govt', u'warn', u'brothel', u'close', u'door'] [u'see', u'tool', u'north', u'west', u'industri'] [u'great', u'southern', u'shire', u'share'] [u'group', u'wait', u'wast', u'dump', u'term'] [u'health', u'minist', u'stress', u'leav', u'rann', u'say'] [u'heavi', u'drink', u'harm', u'sperm', u'studi'] [u'heavi', u'rain', u'india', u'forc', u'thousand', u'evacu'] [u'high', u'hop', u'crime', u'fight', u'plan'] [u'highway', u'rout', u'frustrat', u'public'] [u'hooker', u'moor', u'join', u'wallabi', u'franc'] [u'arriv', u'north', u'korea', u'visit'] [u'hunter', u'economi', u'face', u'slow'] [u'hurrican', u'relief', u'effort', u'criticis'] [u'iemma', u'deni', u'chief', u'scapegoat', u'tunnel'] [u'immigr', u'detent', u'report', u'focus', u'mental'] [u'indonesian', u'jail', u'illeg', u'fish'] [u'institut', u'want', u'stricter', u'condit', u'hous'] [u'iranian', u'presid', u'speech', u'anger', u'blair'] [u'iranian', u'presid', u'stand', u'israel', u'remark'] [u'israel', u'reopen', u'embassi'] [u'jail', u'lock', u'claim', u'reject', u'inmat'] [u'kate', u'moss', u'check', u'rehab'] [u'kemp', u'dismiss', u'italian', u'jail', u'threat'] [u'kewel', u'name', u'socceroo', u'squad'] [u'lesli', u'front', u'court', u'bali', u'drug', u'charg'] [u'live', u'croc', u'exhibit', u'plan', u'darwin'] [u'locust', u'report', u'confirm'] [u'lord', u'mayor', u'consid', u'role', u'disast', u'strategi'] [u'macgil', u'sound', u'class', u'warn'] [u'burn', u'farm', u'mishap'] [u'charg', u'teen', u'offenc', u'philippin'] [u'charg', u'drug', u'offenc', u'asset', u'freez'] [u'face', u'multipl', u'drink', u'drive', u'charg', u'remand'] [u'front', u'court', u'multipl', u'offenc', u'charg'] [u'give', u'communiti', u'servic', u'fell', u'radio'] [u'mangl', u'clue', u'husband', u'fate', u'woman', u'say'] [u'arrest', u'gold', u'coast', u'drug', u'raid'] [u'marshal', u'lead', u'french', u'barbarian'] [u'mari', u'good'] [u'mayor', u'issu', u'jail', u'warn'] [u'meat', u'processor', u'work', u'forc', u'boost'] [u'meet', u'focus', u'wild', u'control'] [u'meningococc', u'death', u'spark', u'health', u'test'] [u'miner', u'nickel', u'expans'] [u'minist', u'say', u'health', u'mend'] [u'model', u'face', u'bali', u'court'] [u'mother', u'acquit', u'murder', u'count'] [u'doesnt', u'regret', u'eject', u'air', u'fli'] [u'reveal', u'complaint'] [u'stand', u'pension', u'train', u'travel', u'cost'] [u'weigh', u'poki', u'support'] [u'nation', u'local', u'trauma', u'impact', u'scheme'] [u'nauru', u'get', u'budget', u'surplus', u'boost'] [u'food', u'label', u'introduc'] [u'tourism', u'chairman', u'name'] [u'deal', u'pacif', u'highway', u'rout'] [u'nomad', u'waterfowl', u'clear', u'bird'] [u'real', u'progress', u'port', u'clearanc', u'rate'] [u'score', u'outright', u'victori'] [u'offic', u'tell', u'falconio', u'evid', u'record'] [u'dead', u'highway', u'crash'] [u'ongo', u'reform', u'need', u'busi', u'council', u'say'] [u'open', u'water', u'swim', u'add', u'olymp'] [u'opposit', u'call', u'secret', u'ballot', u'speaker'] [u'parent', u'lock', u'daughter', u'weekend'] [u'patel', u'compo', u'unfair', u'lawyer', u'say'] [u'perth', u'school', u'trial', u'singl', u'classroom'] [u'pienaar', u'confid', u'cash', u'benefit', u'south'] [u'pilbara', u'project', u'share', u'govt', u'fund'] [u'advoc', u'earli', u'start', u'daylight', u'save'] [u'ask', u'help', u'mall', u'revamp'] [u'urg', u'speak', u'execut'] [u'polic', u'quiet', u'miss', u'teen', u'search'] [u'polic', u'look', u'broadwat', u'bodi'] [u'polic', u'weasley', u'fli'] [u'polic', u'seek', u'help', u'miss'] [u'polic', u'farewel', u'crash', u'colleagu'] [u'polic', u'urg', u'wari', u'child', u'claim'] [u'port', u'author', u'chief', u'beat', u'expans', u'plan'] [u'potato', u'farmer', u'mccain', u'disput', u'remain'] [u'poultri', u'unjustifi'] [u'princ', u'admit', u'kangaroo', u'feel', u'heat'] [u'princ', u'charl', u'call', u'action', u'global', u'warm'] [u'public', u'warn', u'break', u'threat'] [u'qanta', u'suspend', u'price', u'flight', u'bali'] [u'racv', u'question', u'hoon', u'law'] [u'rail', u'bypass', u'servic', u'reloc', u'contract'] [u'rail', u'safeti', u'culprit', u'warn', u'penalti'] [u'rail', u'upgrad', u'reduc', u'sydney', u'melbourn', u'freight'] [u'reef', u'author', u'air', u'spawn', u'site', u'concern'] [u'report', u'father', u'fight', u'win', u'award'] [u'research', u'say', u'gippsland', u'creatur', u'giant'] [u'research', u'begin', u'tricki', u'task', u'track', u'croc'] [u'retir', u'scientist', u'talk', u'aust', u'nuclear', u'prospect'] [u'rise', u'labor', u'star', u'diagnos', u'parkinson', u'diseas'] [u'riverland', u'see', u'vital', u'nation', u'food'] [u'rooney', u'england', u'glori', u'maradona'] [u'saddam', u'lawyer', u'want', u'trial', u'move', u'hagu'] [u'scientist', u'trial', u'whale', u'tag'] [u'senior', u'face', u'higher', u'countrylink', u'cost'] [u'shakespear', u'portrait', u'fake'] [u'sheedi', u'ring', u'chang', u'ireland', u'clash'] [u'journalist', u'consid', u'strike', u'action'] [u'socceroo', u'happi', u'secur', u'arrang'] [u'sociedad', u'dash', u'getaf', u'hop'] [u'solid', u'crew', u'rapper', u'jail', u'life'] [u'speaker', u'unconcern', u'confid', u'motion'] [u'stanhop', u'weigh', u'anti', u'terror', u'support'] [u'storm', u'lash', u'caribbean', u'island'] [u'stosur', u'march', u'belgium'] [u'student', u'investig', u'mules', u'altern'] [u'student', u'wwii', u'flag', u'retriev', u'mission'] [u'student', u'help', u'student', u'avoid', u'drug', u'problem'] [u'submiss', u'close', u'draft', u'water', u'plan'] [u'sugarcan', u'electr', u'plan', u'track'] [u'sydney', u'snare', u'age', u'japanes', u'star', u'guest', u'deal'] [u'tag', u'end', u'need', u'scientif', u'whale'] [u'teenag', u'injur', u'bridg', u'fall'] [u'toddler', u'weight', u'gain', u'link', u'adult', u'heart', u'diseas'] [u'honour', u'stonehaven', u'shiraz'] [u'trucki', u'highlight', u'pacif', u'highway', u'woe'] [u'tougher', u'water', u'ban', u'loom', u'central'] [u'tour', u'eager', u'post', u'armstrong'] [u'tradit', u'owner', u'maintain', u'anti', u'dump', u'stanc'] [u'tuckey', u'comment', u'help', u'nguyen', u'rudd'] [u'charg', u'suspect', u'murder'] [u'union', u'air', u'frustrat', u'disabl', u'worker'] [u'union', u'disappoint', u'applic'] [u'offici', u'criticis', u'govt', u'nguyen', u'case'] [u'report', u'highlight', u'afghan', u'human', u'right', u'concern'] [u'uruguay', u'qualifi', u'warm'] [u'victori', u'tough', u'time', u'merrick', u'admit'] [u'victori', u'tough', u'time', u'merrick', u'admit'] [u'deputi', u'opposit', u'leader', u'resign', u'court'] [u'liber', u'deputi', u'guilti', u'charg'] [u'wall', u'street', u'jitter', u'push', u'market'] [u'aim', u'free'] [u'water', u'author', u'see', u'benefit', u'nation', u'park', u'plan'] [u'watson', u'want', u'repay', u'selector'] [u'western', u'trial', u'manufactur', u'wild', u'bait'] [u'western', u'region', u'record', u'higher', u'domest', u'violenc'] [u'west', u'indi', u'cruis'] [u'wheat', u'industri', u'outrag', u'iraq', u'kickback'] [u'whitsunday', u'council', u'worker', u'sack'] [u'worker', u'strike', u'western', u'power', u'polici'] [u'youth', u'centr', u'plan', u'track'] [u'fear', u'kill', u'delhi', u'blast'] [u'question', u'illeg', u'fish'] [u'abbott', u'caution', u'bird', u'vaccin'] [u'aborigin', u'cannabi', u'fall'] [u'urg', u'begin', u'hemp', u'product'] [u'adelaid', u'coach', u'john', u'kosmina'] [u'adhd', u'diagnos', u'mask', u'condit', u'research'] [u'aftershock', u'hit', u'northern', u'pakistan'] [u'age', u'care', u'group', u'reject', u'staff', u'level', u'claim'] [u'armstrong', u'hit', u'latest', u'leblanc', u'remark'] [u'arsenal', u'henri', u'tottenham', u'clash'] [u'australia', u'rule', u'clean', u'sweep'] [u'babi', u'stress', u'link', u'middl', u'mental', u'declin'] [u'beatti', u'see', u'progress', u'ambul'] [u'benicio', u'add', u'derbi', u'freedman', u'list'] [u'best', u'better', u'life', u'balanc'] [u'beta', u'upgrad', u'hurrican'] [u'fall', u'silent'] [u'blaze', u'destroy', u'broadford', u'tyre', u'factori'] [u'driver', u'jail', u'british', u'bomb', u'hoax'] [u'bush', u'criticis', u'global', u'warm', u'polici'] [u'bush', u'white', u'hous', u'face', u'credibl', u'blow'] [u'call', u'secret', u'ballot', u'speaker', u'increas'] [u'cannabi', u'plant', u'seiz', u'sydney', u'drug', u'raid'] [u'cathol', u'want', u'work', u'right', u'teach', u'school'] [u'christian', u'lobbi', u'warn', u'grow', u'elector'] [u'comic', u'book', u'make', u'mandela', u'famous'] [u'communiti', u'project', u'suffer', u'opposit'] [u'counter', u'terror', u'chang', u'signific', u'stanhop'] [u'court', u'consid', u'berlusconi', u'corrupt', u'trial'] [u'crack', u'langer', u'race', u'clock'] [u'darwin', u'consid', u'option', u'water'] [u'death', u'toll', u'rise', u'cave'] [u'derbi', u'tip'] [u'diva', u'draw', u'favour'] [u'dizzi', u'redback'] [u'drug', u'educ', u'scheme', u'target', u'vulner', u'youth'] [u'econom', u'climat', u'blame', u'cut', u'fairfax'] [u'econom', u'growth', u'bolster', u'market'] [u'england', u'player', u'move', u'plight', u'quak', u'children'] [u'pressur', u'ramp', u'tariff', u'cut'] [u'fair', u'commiss', u'seek', u'divin', u'intervent'] [u'feder', u'govt', u'hide', u'illeg', u'fish', u'threat'] [u'damag', u'doubl', u'hotel'] [u'british', u'peacekeep', u'hurt', u'afghan', u'attack'] [u'dane', u'arrest', u'bosnian', u'terror', u'plot'] [u'freedman', u'hold', u'makyb', u'decis'] [u'french', u'polynesia', u'alleg', u'contamin', u'cover'] [u'fresh', u'isra', u'raid', u'northern', u'gaza'] [u'fund', u'boost', u'improv', u'oper'] [u'funer', u'industri', u'ponder', u'bird', u'risk'] [u'ganguli', u'india', u'futur', u'bleak', u'exclus'] [u'glori', u'forc', u'roar', u'draw'] [u'govt', u'warn', u'rush', u'law'] [u'green', u'inquiri', u'awb', u'food'] [u'grid', u'slow', u'spread', u'tassi', u'devil', u'diseas'] [u'grower', u'seek', u'protect', u'scandal'] [u'hackett', u'target', u'open', u'water', u'beij'] [u'harsh', u'winter', u'loom', u'quak', u'kashmir'] [u'hewitt', u'pull', u'pari', u'master'] [u'hotel', u'defend', u'club', u'poki', u'stanc'] [u'hungarian', u'bird', u'vaccin', u'littl'] [u'hurrican', u'damag', u'pluto', u'mission', u'rocket'] [u'indigen', u'central', u'australian', u'reject', u'dump', u'plan'] [u'injur', u'langer', u'determin', u'play', u'gabba', u'test'] [u'interview', u'elli'] [u'interview', u'noel', u'callow'] [u'iranian', u'ralli', u'condemn', u'anti', u'israel', u'remark'] [u'iran', u'say', u'intent', u'strike', u'israel'] [u'iraqi', u'rush', u'nomin', u'decemb', u'ballot'] [u'islam', u'group', u'welcom', u'stand', u'anti', u'terror', u'law'] [u'israel', u'welcom', u'secur', u'council', u'messag', u'tehran'] [u'warn', u'gilchrist', u'junction', u'oval'] [u'jail', u'term', u'send', u'messag', u'illeg', u'fisher'] [u'japan', u'mull', u'add', u'militari', u'constitut'] [u'judg', u'refus', u'drop', u'kelli', u'porn', u'case'] [u'king', u'battl', u'sydney', u'club'] [u'korp', u'home', u'sell'] [u'labor', u'mate', u'overse', u'health', u'reform'] [u'langer', u'hurt', u'gilli'] [u'langer', u'injur', u'bushrang', u'thrash', u'warrior'] [u'leader', u'reserv', u'decis', u'anti', u'terror', u'law'] [u'libbi', u'face', u'jail'] [u'lindop', u'battl', u'nerv', u'ahead', u'histori', u'make'] [u'live', u'concert', u'turn', u'profit'] [u'makyb', u'confirm'] [u'mayor', u'urg', u'support', u'bushfir', u'region'] [u'meander', u'rescu', u'wast', u'taxpay', u'money'] [u'monti', u'eighth', u'european', u'crown'] [u'kill', u'indian', u'train', u'accid'] [u'music', u'video', u'audienc', u'migrat'] [u'delhi', u'blast', u'accid'] [u'nicaraguan', u'flee', u'villag', u'beta', u'approach'] [u'nicolaou', u'contest', u'pittwat', u'elect'] [u'overhead', u'powerlin', u'decis', u'dismay', u'resid'] [u'pair', u'chariti', u'ride'] [u'pakistan', u'recal', u'shoaib', u'mushtaq', u'england', u'test'] [u'palestinian', u'pledg', u'crackdown', u'illeg', u'arm'] [u'pathan', u'bowl', u'heroic', u'easi', u'india'] [u'petri', u'snare', u'doubl', u'marin', u'roll', u'knight'] [u'plantat', u'project', u'studi', u'greenhous', u'gas'] [u'polic', u'arrest', u'happi', u'valley', u'rape', u'suspect'] [u'polic', u'arrest', u'piraci'] [u'polic', u'crackdown', u'target', u'antisoci', u'behaviour'] [u'polic', u'probe', u'liber', u'parti', u'fraud', u'claim'] [u'polic', u'search', u'happi', u'valley', u'teen', u'rapist'] [u'port', u'botani', u'backlog', u'begin', u'eas'] [u'power', u'blast', u'rock', u'indian', u'capit'] [u'rail', u'upgrad', u'boon', u'region', u'economi'] [u'ralli', u'support', u'villawood', u'hunger', u'striker'] [u'polic', u'seiz', u'lion', u'neighbour', u'uproar'] [u'roar', u'hop', u'kosmina', u'stoush'] [u'samuel', u'star', u'lara', u'fail', u'test', u'warm'] [u'search', u'continu', u'miss', u'toddler'] [u'silver', u'fern', u'trounc', u'aussi', u'netbal'] [u'socceroo', u'coach', u'fraud', u'probe'] [u'south', u'africa', u'despit', u'vincent', u'defianc'] [u'stanhop', u'heed', u'draft', u'confidenti', u'rule'] [u'state', u'leader', u'stick', u'gun'] [u'stem', u'cell', u'turn', u'intern', u'organ', u'cell'] [u'stosur', u'fall', u'belgian', u'quarter', u'final'] [u'student', u'safe', u'hike', u'mishap'] [u'super', u'jumbo', u'land', u'germani'] [u'sydney', u'beach', u'cleanli', u'tick'] [u'syria', u'urg', u'expel', u'islam', u'jihad'] [u'teacher', u'tackl', u'bulli'] [u'team', u'spirit', u'adelaid', u'secret', u'say', u'kosmina'] [u'schoolgirl', u'behead', u'indonesia'] [u'time', u'right', u'mar', u'view'] [u'cheney', u'aid', u'face', u'leak', u'charg'] [u'train', u'derail', u'india'] [u'hurt', u'plane', u'mishap'] [u'suspect', u'bird', u'death', u'vietnam'] [u'union', u'question', u'ludicr', u'fine'] [u'uruguay', u'coach', u'lash', u'choic', u'ref'] [u'economi', u'post', u'robust', u'growth', u'hurrican'] [u'invit', u'right', u'investig', u'guantanamo'] [u'vermeulen', u'switch', u'motogp'] [u'victorian', u'charg', u'gold', u'coast', u'attack'] [u'fear', u'bird', u'flus', u'impact', u'africa'] [u'wildcat', u'upset', u'sixer'] [u'deni', u'nuclear', u'power', u'inevit'] [u'declar', u'drought'] [u'complet', u'armour', u'upgrad'] [u'amnesti', u'death', u'campaign', u'draw', u'record', u'respons'] [u'anti', u'smoke', u'group', u'critic', u'govt', u'effort'] [u'anti', u'terror', u'concern', u'persist'] [u'aziz', u'deni', u'name', u'british', u'probe'] [u'beach', u'build', u'face', u'height', u'limit'] [u'berlusconi', u'tri', u'talk', u'bush', u'iraq'] [u'best', u'make', u'progress'] [u'blast', u'rais', u'terror', u'fear'] [u'bligh', u'dismiss', u'springborg', u'attack'] [u'bodi', u'wakeboard', u'river'] [u'booki', u'face', u'huge', u'loss', u'diva', u'victori'] [u'bull', u'salvag', u'draw', u'windi'] [u'bush', u'search', u'miss', u'toddler'] [u'cafe', u'drive', u'shoot', u'investig'] [u'candl', u'hope', u'convict', u'drug', u'smuggler'] [u'chelsea', u'overcom', u'rover', u'boro', u'shock', u'unit'] [u'childcar', u'black', u'market', u'worth', u'million'] [u'concern', u'lara', u'form', u'ahead', u'gabba', u'test'] [u'coron', u'probe', u'king', u'burn', u'death'] [u'dandenong', u'adelaid', u'score', u'wnbl', u'win'] [u'death', u'toll', u'indian', u'train', u'crash', u'rise'] [u'regist', u'consider'] [u'elli', u'miss', u'commonwealth', u'game'] [u'england', u'receiv', u'india', u'itinerari'] [u'fair', u'campaign', u'counter', u'blitz'] [u'father', u'loss', u'explain', u'son', u'suicid', u'attack'] [u'claim', u'alic', u'spring', u'icon'] [u'foreign', u'doctor', u'need', u'extra', u'support', u'rural'] [u'gleeson', u'play', u'track', u'fear'] [u'govt', u'accus', u'wast', u'fund', u'spin', u'doctor'] [u'greek', u'turkey', u'clear', u'bird'] [u'hockeyroo', u'suffer', u'shock', u'loss'] [u'hospit', u'mark', u'liver', u'transplant', u'anniversari'] [u'india', u'alert', u'delhi', u'blast'] [u'interview', u'norma', u'plummer'] [u'interview', u'roar', u'coach', u'miron', u'bleiberg'] [u'islam', u'jihad', u'halt', u'gaza', u'rocket'] [u'ivori', u'coast', u'accus', u'recruit', u'child', u'soldier'] [u'labor', u'demand', u'govt', u'backdown'] [u'level', u'cross', u'accid', u'kill'] [u'magnific', u'milan', u'halt', u'juve', u'charg'] [u'melbourn', u'stanley', u'skipper', u'sound', u'maxi', u'challeng'] [u'monti', u'let', u'shoot', u'lead', u'slip'] [u'mourinho', u'hail', u'lampard', u'best', u'world'] [u'seek', u'queen', u'help', u'save', u'death'] [u'delhi', u'blast', u'toll', u'rise'] [u'delhi', u'explos', u'toll', u'pass'] [u'fin', u'dummi', u'bidder'] [u'zealand', u'battl', u'brit'] [u'time', u'navel', u'gaze', u'terror', u'law', u'abbott'] [u'nrma', u'back', u'tunnel', u'toll'] [u'pakistan', u'india', u'agre', u'open', u'quak', u'border'] [u'patent', u'limit', u'bird', u'drug', u'suppli', u'abbott'] [u'make', u'anti', u'terror', u'chang'] [u'rein', u'foreign', u'invest'] [u'pope', u'make', u'unannounc', u'mentorella', u'visit'] [u'program', u'aim', u'save', u'purebr', u'dingo'] [u'redfern', u'centr', u'youth', u'futur'] [u'river', u'plan', u'potenti', u'disast'] [u'rychart', u'star', u'sixer', u'sink', u'breaker'] [u'safin', u'doubt', u'hopman'] [u'seek', u'phone', u'card'] [u'urg', u'adopt', u'drug', u'rehab', u'scheme'] [u'search', u'find', u'miss', u'teen', u'safe'] [u'select', u'decis', u'langer', u'hand', u'buchanan'] [u'student', u'union', u'question', u'subject', u'cut'] [u'suicid', u'bomber', u'kill', u'iraqi', u'market'] [u'sydney', u'newcastl', u'share', u'point'] [u'syria', u'hold', u'hariri', u'murder', u'probe'] [u'teen', u'die', u'nepean', u'highway', u'crash'] [u'telemarket', u'face', u'crackdown'] [u'tszyu', u'admit', u'doubt', u'fight', u'futur'] [u'japan', u'revamp', u'militari', u'tie'] [u'militari', u'estim', u'iraqi', u'toll', u'insurg'] [u'team', u'wwii', u'murder', u'mysteri'] [u'vail', u'refus', u'stall', u'talk'] [u'weld', u'blame', u'perth', u'hous'] [u'weld', u'join', u'freedman', u'soft', u'track'] [u'send', u'real'] [u'youth', u'clash', u'polic', u'pari', u'suburb'] [u'abar', u'forecast', u'talk', u'price', u'impact'] [u'anti', u'bulli', u'review', u'cost'] [u'boss', u'criticis', u'miss', u'senat', u'estim'] [u'afghanistan', u'destroy', u'drug', u'lab'] [u'need', u'staff', u'boost', u'enforc', u'anti', u'terror'] [u'age', u'bigger', u'career', u'threat', u'activ'] [u'agent', u'play', u'depardieus', u'quit', u'comment'] [u'buy', u'southern', u'hydro', u'plan', u'demerg'] [u'alic', u'resid', u'consid', u'water', u'option'] [u'qaeda', u'infiltr', u'gaza'] [u'warn', u'bird', u'overreact'] [u'anger', u'farmer', u'assn', u'withdraw', u'support'] [u'anger', u'fail', u'attract', u'school', u'leaver'] [u'girl', u'school', u'burn', u'afghanistan'] [u'anti', u'terror', u'negoti', u'enter', u'final', u'phase'] [u'armi', u'know', u'heat', u'danger', u'soldier', u'death'] [u'artist', u'journalist', u'voic', u'anti', u'terror', u'law'] [u'asic', u'hail', u'cooper', u'convict'] [u'australian', u'face', u'drug', u'charg', u'sumatra'] [u'autopsi', u'gorokan', u'toddler', u'week'] [u'award', u'year'] [u'backbench', u'rais', u'anti', u'terror', u'concern'] [u'bali', u'case', u'meet', u'requir', u'court'] [u'ballarat', u'vice', u'chancellor', u'go', u'west'] [u'bashir', u'includ', u'jail', u'term', u'cut', u'report'] [u'bathurst', u'tafe', u'month', u'visual', u'art', u'cours', u'ax'] [u'beazley', u'pois', u'anti', u'terror', u'law'] [u'bendigo', u'unearth', u'secret', u'chines', u'kiln'] [u'telescop', u'discuss'] [u'bird', u'expert', u'plan', u'respons'] [u'bird', u'pandem', u'risk', u'real'] [u'bomb', u'target', u'convoy', u'kill', u'afghan', u'wound'] [u'borrow', u'push', u'georg', u'record', u'profit'] [u'injur', u'forklift', u'accid'] [u'recov', u'river', u'accid'] [u'brad', u'cooper', u'guilti', u'briberi', u'corrupt'] [u'bundaberg', u'councillor', u'buck', u'poki', u'increas'] [u'bush', u'presid', u'need', u'staff', u'shake'] [u'rabbit', u'fenc', u'payment'] [u'owner', u'urg', u'lock', u'vehicl'] [u'centrelink', u'chief', u'urg', u'join', u'staff', u'talk'] [u'centrelink', u'slam', u'union', u'strike', u'threat'] [u'chabal', u'get', u'french', u'wallabi', u'clash'] [u'chanderpaul', u'keep', u'faith', u'struggl', u'lara'] [u'china', u'aussi', u'citrus', u'export'] [u'chinchilla', u'restrict', u'water'] [u'clijster', u'close', u'davenport', u'spot'] [u'coalit', u'question', u'anti', u'terror', u'legisl'] [u'welcom', u'whale', u'watch', u'law'] [u'cooper', u'guilti', u'charg', u'case'] [u'corbi', u'lodg', u'freedom'] [u'counsel', u'servic', u'uncov', u'dirt', u'debt'] [u'court', u'hear', u'fishermen', u'attack', u'navi', u'offic'] [u'custom', u'tell', u'engag', u'communiti'] [u'dairi', u'farmer', u'enjoy', u'stronger', u'chees', u'price'] [u'dark', u'hors', u'fiorentina'] [u'develop', u'countri', u'want', u'money', u'prepar'] [u'dresden', u'church', u'reconsecr', u'year'] [u'elli', u'commonwealth', u'game'] [u'endang', u'feel', u'heat', u'global', u'warm'] [u'energi', u'stock', u'fuel', u'late', u'market', u'ralli'] [u'environment', u'concern', u'irrig', u'expans'] [u'famili', u'mealtim', u'help', u'teen', u'avoid', u'obes'] [u'farmer', u'failur', u'report', u'stock', u'theft', u'baffl'] [u'farmer', u'question', u'plan'] [u'fear', u'emerg', u'equip', u'theft', u'risk', u'live'] [u'fear', u'plan', u'regul', u'telstra', u'price', u'hurt'] [u'feder', u'fund', u'power', u'station', u'town'] [u'feder', u'ralli', u'nguyen'] [u'manag', u'strategi', u'look', u'scienc'] [u'fisherman', u'wharf', u'celebr', u'cray', u'season', u'start'] [u'flemington', u'track', u'dead', u'concern', u'beat'] [u'flemington', u'track', u'prepar'] [u'fli', u'doctor', u'begin', u'industri'] [u'fonterra', u'plan', u'food', u'nutrit', u'research'] [u'food', u'busi', u'shut', u'salmonella', u'scare'] [u'food', u'label', u'law', u'seafood', u'council'] [u'fountain', u'coin', u'rethink', u'lead', u'chang', u'good'] [u'gate', u'pledg', u'million', u'fight', u'malaria'] [u'govt', u'approv', u'methan', u'fire', u'power', u'station'] [u'govt', u'studi', u'rail', u'corridor', u'highway', u'idea'] [u'govt', u'urg', u'nois', u'death', u'inmat'] [u'grain', u'farmer', u'welcom', u'weekend', u'rain'] [u'grazier', u'clear', u'fine', u'slash'] [u'green', u'group', u'back', u'push', u'tropic', u'timber', u'group'] [u'group', u'claim', u'unenvi', u'asbesto', u'record'] [u'group', u'flag', u'lake', u'burley', u'griffin', u'water', u'taxi', u'plan'] [u'gungahlin', u'drive', u'work', u'move', u'closer', u'complet'] [u'gunmen', u'kill', u'iraq', u'cabinet', u'advis'] [u'health', u'advisori', u'council', u'meet', u'communiti'] [u'health', u'minist', u'hop', u'quick', u'site', u'redevelop'] [u'health', u'servic', u'question', u'outstand', u'debt'] [u'high', u'school', u'student', u'drug', u'test', u'summit'] [u'howard', u'implic', u'rort', u'affair', u'labor', u'say'] [u'howard', u'seek', u'inquiri', u'scandal'] [u'hreoc', u'see', u'polic', u'state', u'terror', u'law'] [u'hurrican', u'beta', u'slam', u'nicaragua', u'jungl', u'coast'] [u'hussey', u'call', u'langer', u'cover'] [u'hydro', u'accus', u'powerlin', u'bulli'] [u'illeg', u'fish', u'report', u'follow', u'inadequ'] [u'indian', u'pledg', u'effort', u'bomb', u'victim'] [u'ipswich', u'councillor', u'call', u'daylight', u'save'] [u'chang', u'deserv', u'bipartisan', u'support', u'say', u'acci'] [u'rule', u'end', u'power', u'worker', u'strike'] [u'japanes', u'scientist', u'recommend', u'lift', u'beef'] [u'jetstar', u'fli', u'townsvill'] [u'jetti', u'open', u'plan', u'boost', u'lake'] [u'joyc', u'consid', u'food', u'inquiri'] [u'judg', u'retir', u'coal', u'approv', u'case'] [u'june', u'prison', u'larg'] [u'beazley', u'readi', u'support', u'terror', u'law'] [u'langer', u'unlik', u'face', u'windi'] [u'lara', u'play', u'despit', u'finger', u'injuri'] [u'lauri', u'join', u'branch', u'line', u'ralli'] [u'lifesav', u'urg', u'caution', u'beachgo', u'weather'] [u'lion', u'list', u'mclaren'] [u'local', u'cyclist', u'veteran', u'champ', u'ballarat'] [u'makyb', u'fan', u'glimps', u'diva'] [u'arrest', u'coburg', u'stab'] [u'kill', u'river', u'dive', u'accid'] [u'mansel', u'fear', u'anti', u'terror', u'law', u'indigen', u'impact'] [u'mayor', u'hooper', u'term'] [u'mcarthur', u'river', u'oper', u'reject', u'green', u'group'] [u'melbourn', u'tip'] [u'melbourn', u'grip', u'fever'] [u'melbourn', u'sack', u'horticultur', u'colleg', u'staff'] [u'milit', u'kill', u'west', u'bank', u'raid'] [u'minist', u'back', u'highway', u'improv'] [u'minist', u'back', u'blair', u'attack', u'greenhous'] [u'mix', u'result', u'child', u'death', u'rate', u'figur'] [u'monti', u'king', u'europ'] [u'mooney', u'back', u'ratepay', u'role', u'mall', u'revamp'] [u'polic', u'send', u'investig', u'schoolgirl'] [u'parliamentari', u'secur', u'staff', u'lack', u'clearanc'] [u'mourner', u'tribut', u'civil', u'right', u'figur'] [u'highlight', u'govt', u'region', u'role'] [u'alert', u'custom', u'email', u'hoax'] [u'nation', u'want', u'compo', u'distribut', u'easter', u'fire'] [u'surf', u'tsunami', u'town', u'warn'] [u'delhi', u'ramp', u'secur', u'blast'] [u'equip', u'boost', u'breast', u'screen', u'program'] [u'evid', u'back', u'hickss', u'tortur', u'claim'] [u'fund', u'speed', u'resourc', u'project'] [u'home', u'sale', u'plummet'] [u'orang', u'council', u'put', u'feet', u'desk'] [u'blood', u'falconio', u'scientist'] [u'sour', u'note', u'airport', u'leav'] [u'fair', u'campaign', u'unfair', u'opposit'] [u'opposit', u'want', u'clarif', u'women', u'refug'] [u'opposit', u'want', u'sculli', u'desalin', u'plant'] [u'osasuna', u'return', u'ronaldinho', u'boost', u'barca'] [u'owen', u'score', u'twice', u'newcastl', u'romp', u'west', u'brom'] [u'paediatrician', u'call', u'children', u'hospit'] [u'pair', u'guilti', u'bash', u'father', u'carri', u'babi'] [u'pair', u'face', u'court', u'high', u'speed', u'chase'] [u'palestinian', u'bomber', u'kill', u'west', u'bank', u'armi'] [u'parent', u'worri', u'prompt', u'student', u'rank', u'rethink'] [u'parliament', u'mate', u'error', u'judgment'] [u'parlt', u'pass', u'motion', u'urg', u'singapor', u'govt', u'spare'] [u'parti', u'unit', u'save', u'death', u'aussi'] [u'frustrat', u'buck', u'pass', u'mosquito', u'problem'] [u'deni', u'newman', u'grant', u'rort'] [u'polic', u'check', u'claim', u'india', u'market', u'bomb'] [u'polic', u'freez', u'million', u'asset', u'charg'] [u'polic', u'hope', u'funer', u'memori'] [u'polic', u'investig', u'teen', u'assault'] [u'polic', u'probe', u'perth', u'raid'] [u'polynesian', u'cemeteri', u'unlock', u'ancient', u'burial', u'secret'] [u'port', u'upgrad', u'like', u'delay', u'harvest', u'handl'] [u'preschool', u'parent', u'survey', u'fund', u'campaign'] [u'probe', u'continu', u'galleri', u'blaze'] [u'punter', u'million', u'dollar', u'plung', u'makyb'] [u'wool', u'indic', u'hit', u'lowest', u'price', u'year'] [u'quit', u'urg', u'total', u'indoor', u'smoke'] [u'rain', u'help', u'boost', u'level', u'need'] [u'record', u'crowd', u'expect', u'melbourn'] [u'recycl', u'take', u'central', u'west'] [u'tape', u'record', u'prompt', u'action'] [u'region', u'airlin', u'wing', u'clip'] [u'region', u'bird', u'confer'] [u'region', u'wast', u'dump', u'sit', u'moot'] [u'report', u'highlight', u'public', u'hospit', u'medic'] [u'report', u'show', u'reform', u'afford', u'labor', u'say'] [u'share', u'offer', u'oversubscrib'] [u'rfds', u'stand', u'disput', u'decis'] [u'road', u'plan', u'help', u'flood', u'proof', u'plantagenet', u'shire'] [u'roddick', u'storm', u'career', u'titl'] [u'roebourn', u'outlin', u'plan', u'attract'] [u'rural', u'doctor', u'seek', u'govt', u'attent'] [u'africa', u'tap', u'phone', u'email', u'fight', u'organis'] [u'govt', u'help', u'fund', u'waikeri', u'treatment', u'plant'] [u'face', u'court', u'suspect', u'murder'] [u'schenscher', u'dream', u'tatter'] [u'seafood', u'group', u'want', u'label', u'chang', u'menu'] [u'seven', u'mecca', u'chariti', u'stamped'] [u'south', u'africa', u'clinch', u'seri'] [u'south', u'east', u'welcom', u'heavi', u'rain'] [u'spanish', u'princess', u'give', u'birth', u'babi', u'girl'] [u'spencer', u'gulf', u'ferri', u'servic', u'near'] [u'stab', u'victim', u'die', u'hospit'] [u'staff', u'doctor', u'hospit', u'crisi', u'claim'] [u'stone', u'upset', u'colleagu', u'support', u'abort'] [u'swan', u'hill', u'awar', u'piggeri', u'concern'] [u'sydney', u'airport', u'plan', u'expans'] [u'govt', u'rethink', u'water', u'right', u'issu'] [u'opposit', u'question', u'govt', u'advertis', u'budget'] [u'salmonella', u'outbreak', u'hit', u'hobart'] [u'test', u'clear', u'migratori', u'bird', u'dead'] [u'hurt', u'tilt', u'train', u'accid'] [u'tiger', u'challeng', u'date', u'bull'] [u'timber', u'job', u'threaten', u'industri', u'sag'] [u'troop', u'break', u'zanzibar', u'opposit', u'celebr'] [u'shoot', u'domest', u'disput'] [u'union', u'slam', u'foreign', u'apprentic', u'recruit'] [u'capitol', u'honour', u'civil', u'right', u'leader', u'park'] [u'soldier', u'charg', u'afghan', u'detaine', u'assault'] [u'vaughan', u'trescothick', u'visit', u'pakistan', u'quak', u'zone'] [u'venus', u'express', u'spacecraft', u'lift'] [u'woman', u'break', u'silenc', u'husband', u'murder'] [u'mine', u'compani', u'begin', u'search', u'sand'] [u'pub', u'club', u'smoke', u'move', u'closer'] [u'water', u'conserv', u'take', u'hold'] [u'water', u'test', u'desalin', u'plant'] [u'wetland', u'rehabilit', u'start'] [u'whale', u'watch', u'season', u'end', u'disappoint'] [u'windi', u'coach', u'deni', u'player', u'attitud', u'problem'] [u'worri', u'load', u'road', u'saleyard'] [u'kill', u'iraq', u'bomb'] [u'academ', u'say', u'resign'] [u'politician', u'sign', u'nguyen', u'petit'] [u'aerial', u'search', u'begin', u'miss', u'german', u'tourist'] [u'respons', u'death', u'penalti', u'law'] [u'agforc', u'back', u'reduc', u'tree', u'clear', u'fine'] [u'hors', u'stop', u'nation'] [u'alleg', u'colombian', u'drug', u'lord', u'arrest'] [u'anti', u'terror', u'legisl', u'step', u'closer'] [u'apec', u'plan', u'bird', u'prepar', u'test'] [u'asio', u'govt', u'court', u'settlement', u'bungl'] [u'aust', u'prepar', u'bird', u'outbreak', u'downer'] [u'australian', u'wager'] [u'aust', u'help', u'asia', u'prepar', u'bird', u'pandem'] [u'award', u'honour', u'local', u'youth', u'train', u'effort'] [u'award', u'honour', u'brave', u'polic', u'effort'] [u'inquiri', u'institut', u'request'] [u'barrick', u'gold', u'announc', u'takeov'] [u'beatti', u'rule', u'daylight', u'save'] [u'beazley', u'chang', u'tack', u'anti', u'terror', u'law'] [u'bedsid', u'court', u'hear', u'polic', u'chase', u'accus'] [u'betfair', u'agenc', u'like', u'ahead'] [u'bonus', u'lure', u'prawn', u'fisher'] [u'book', u'dispel', u'archer', u'melbourn', u'myth'] [u'booki', u'fear', u'makyb', u'diva'] [u'bowen', u'surat', u'basin', u'target', u'explor'] [u'bowl', u'great', u'odd', u'windi', u'chanc'] [u'river', u'ordeal', u'intens', u'care'] [u'brisban', u'council', u'financ', u'black'] [u'burglar', u'get', u'away', u'lot', u'dough'] [u'bush', u'nomin', u'alito', u'suprem', u'court'] [u'bush', u'announc', u'alito', u'suprem', u'court'] [u'call', u'inquiri', u'hick', u'claim'] [u'canada', u'discov', u'virus', u'wild', u'bird'] [u'castro', u'taunt', u'bush', u'chat'] [u'central', u'north', u'victoria', u'rain'] [u'centrelink', u'wag', u'disput', u'cost', u'million'] [u'cheney', u'appoint', u'chief', u'aid'] [u'consum', u'concern', u'manufactur', u'activ'] [u'corbi', u'prosecutor', u'appeal', u'sentenc'] [u'cosgrov', u'put', u'fit', u'issu'] [u'council', u'hose', u'water', u'breakaway'] [u'council', u'join', u'town', u'camp', u'probe'] [u'councillor', u'wont', u'attend', u'plan', u'meet'] [u'council', u'push', u'ahead', u'highway', u'bypass'] [u'coupl', u'win', u'payout', u'asio', u'raid'] [u'courtney', u'get', u'supercar'] [u'croft', u'lead', u'australia', u'barbarian'] [u'crowd', u'flock', u'flemington'] [u'csiro', u'chang', u'rais', u'econom', u'concern'] [u'csiro', u'plan', u'scale', u'rural', u'research'] [u'deal', u'push', u'share', u'market', u'higher'] [u'debat', u'urg', u'china', u'citrus', u'prefer', u'export'] [u'defenc', u'group', u'wont', u'specul', u'fallout'] [u'deleg', u'present', u'nguyen', u'petit'] [u'dhoni', u'lead', u'india', u'lanka'] [u'director', u'recommend', u'carter', u'holt', u'harvey', u'takeov'] [u'diva', u'bow', u'histor', u'victori'] [u'diva', u'owner', u'home', u'town', u'celebr'] [u'diva', u'seal', u'legend'] [u'diwali', u'begin', u'delhi', u'mourn', u'bomb', u'victim'] [u'doctor', u'leav', u'caus', u'patient', u'travel', u'problem'] [u'downer', u'staff', u'know', u'hick', u'abus', u'claim'] [u'employ', u'recruit', u'foreign', u'apprentic'] [u'issu', u'pilbara', u'recommend'] [u'escap', u'prison', u'walk', u'gate'] [u'expert', u'play', u'bird', u'risk'] [u'famili', u'seek', u'wit', u'surfer', u'paradis', u'attack'] [u'farmer', u'concern', u'fail', u'stop', u'rate', u'rise', u'plan'] [u'farm', u'group', u'seek', u'access', u'patient', u'support'] [u'farm', u'group', u'softwood', u'plantat'] [u'fear', u'hold', u'safeti', u'deep', u'fish', u'pair'] [u'fee', u'grain', u'export', u'feel', u'bird', u'impact'] [u'foreign', u'hors', u'fail', u'impress'] [u'children', u'ward', u'nurs', u'jail', u'porn'] [u'singapor', u'defend', u'lack', u'media', u'freedom'] [u'fraser', u'group', u'say', u'fund', u'need', u'world'] [u'freedman', u'weld', u'inspect', u'flemington', u'track'] [u'french', u'firefight', u'slipperi', u'custom'] [u'fuel', u'cost', u'push', u'rfds', u'seek', u'extra', u'fund'] [u'gibb', u'boje', u'slam', u'door', u'india', u'tour'] [u'gibson', u'shoot', u'movi', u'ancient', u'tongu'] [u'goulburn', u'pool', u'reopen', u'door'] [u'govt', u'ignor', u'hick', u'tortur', u'claim', u'council'] [u'govt', u'offer', u'free', u'vaccin', u'children'] [u'govt', u'sign', u'coal', u'revamp'] [u'govt', u'urg', u'boost', u'rural', u'medicar', u'rebat'] [u'greenpeac', u'face', u'fine', u'reef', u'damag'] [u'hacker', u'invad', u'voic', u'mail', u'leav', u'obscen'] [u'healthi', u'debat', u'spend'] [u'hick', u'tortur', u'claim', u'investig', u'downer'] [u'hotel', u'begin', u'earli', u'melbourn', u'festiv'] [u'hoteli', u'question', u'smoke', u'ban', u'impact'] [u'howard', u'disput', u'labor', u'cost'] [u'hunger', u'strike', u'support', u'guantanamo', u'detaine'] [u'hunter', u'experi', u'high', u'child', u'death', u'rate'] [u'hunt', u'restaur', u'shoot', u'culprit'] [u'hushovd', u'contest', u'tour'] [u'iemma', u'listen', u'icac', u'fund', u'fear'] [u'immigr', u'slam', u'slogan', u'cost'] [u'india', u'see', u'foreign', u'link', u'attack'] [u'rat', u'unlik', u'chang', u'economist'] [u'investig', u'miss', u'immigr', u'boat'] [u'minist', u'put', u'cost'] [u'iraq', u'ask', u'forc', u'stay'] [u'kalgoorli', u'boulder', u'council', u'oppos', u'wast', u'dump', u'plan'] [u'koizumi', u'reshuffl', u'cabinet'] [u'kpmg', u'predict', u'tight', u'home', u'lend', u'sector'] [u'labor', u'rais', u'sport', u'rort', u'alleg'] [u'labor', u'seek', u'royal', u'commiss'] [u'labor', u'oppos', u'nuclear', u'dump', u'legisl'] [u'langer', u'like', u'forc', u'test'] [u'langer', u'test'] [u'chang', u'facilit', u'dust', u'diseas', u'damag'] [u'liber', u'candid', u'promis', u'region'] [u'local', u'govt', u'group', u'support', u'rural', u'medicar'] [u'mackay', u'expect', u'melbourn', u'crowd'] [u'makb', u'diva', u'triumph'] [u'makyb', u'diva', u'confirm', u'start'] [u'makyb', u'diva', u'profil'] [u'makyb', u'eas', u'bet', u'ahead'] [u'die', u'cafe', u'shoot', u'south', u'western', u'sydney'] [u'kill', u'injur', u'shoot', u'incid'] [u'market', u'flat', u'fever', u'take', u'hold'] [u'martyn', u'skipper', u'warrior'] [u'mayor', u'question', u'potenti', u'pilbara', u'wast', u'sit'] [u'forecast', u'continu', u'strong', u'hous', u'demand'] [u'melbourn'] [u'militari', u'truck', u'explod', u'south', u'korean', u'tunnel'] [u'forum', u'consid', u'environment', u'manag'] [u'miner', u'start', u'work', u'copper', u'zinc', u'project'] [u'fund', u'seek', u'moruya', u'showground', u'pavilion'] [u'mothbal', u'detent', u'centr', u'cost', u'million'] [u'motorist', u'kill', u'pacif', u'highway', u'collis'] [u'consid', u'prefer', u'swap'] [u'seek', u'time', u'consid', u'anti', u'terror', u'law'] [u'nation', u'criticis', u'absurd', u'irrig', u'jail', u'threat'] [u'nation', u'stop', u'melbourn'] [u'hope', u'pound', u'anim'] [u'scanner', u'offer', u'faster', u'diagnosi'] [u'studi', u'consid', u'eyesight', u'learn', u'problem', u'link'] [u'test', u'citizenship'] [u'visa', u'scheme', u'attract', u'backpack'] [u'date', u'danish', u'royal', u'visit', u'ambassador', u'say'] [u'councillor', u'guilti', u'solicit', u'bribe'] [u'farmer', u'demand', u'improv', u'rail', u'line'] [u'govt', u'releas', u'secret', u'tunnel', u'document'] [u'polic', u'uncov', u'million', u'dollar', u'drug', u'ring'] [u'seek', u'feder', u'fund', u'expand', u'illeg', u'fish'] [u'nuclear', u'dump', u'chang', u'worthless'] [u'price', u'slide', u'forecast', u'warm', u'weather'] [u'omeo', u'meet', u'discuss', u'bushfir', u'experi'] [u'omodei', u'eye', u'return', u'frontbench'] [u'overnight', u'downpour', u'wont', u'huge', u'impact', u'dam'] [u'palm', u'island', u'lose', u'water', u'suppli', u'month'] [u'part', u'tasmania', u'receiv', u'record', u'octob', u'rainfal'] [u'pelous', u'return', u'lead', u'franc', u'australia'] [u'perilya', u'start', u'littl', u'break', u'hill', u'drill'] [u'petrol', u'price', u'hike', u'fuel', u'indonesian', u'inflat'] [u'pilbara', u'town', u'name', u'tidi', u'town', u'finalist'] [u'pluto', u'moon', u'scientist'] [u'polic', u'crack', u'whip', u'melbourn', u'drink'] [u'polic', u'teen', u'knife', u'incid'] [u'polic', u'hunt', u'youth', u'snatch'] [u'polic', u'seek', u'info', u'teen', u'sexual', u'assault'] [u'polic', u'task', u'forc', u'investig', u'fatal', u'cafe', u'shoot'] [u'polic', u'resum', u'search', u'miss', u'tourist'] [u'premier', u'want', u'time', u'anti', u'terror'] [u'marijuana', u'group', u'say', u'driver', u'safer'] [u'public', u'warn', u'loom', u'threat'] [u'public', u'warn', u'follow', u'water', u'ban'] [u'punter', u'enjoy', u'echuca', u'melbourn', u'doubl'] [u'puppi', u'kill', u'sicken', u'polic'] [u'rain', u'mix', u'bless', u'grain', u'grower'] [u'rain', u'offer', u'boost', u'drought', u'crop'] [u'region', u'communiti', u'spirit'] [u'report', u'highlight', u'tourism', u'impact'] [u'resourc', u'industri', u'back', u'push', u'faster', u'approv'] [u'rfds', u'need', u'outback', u'increas'] [u'rocki', u'polic', u'target', u'night', u'time', u'violenc'] [u'plead', u'guilti', u'tasmanian', u'man', u'murder'] [u'road', u'smash', u'leav', u'dead', u'injur'] [u'search', u'miss', u'plane', u'resum'] [u'shire', u'play', u'newman', u'grant', u'rort', u'claim'] [u'shire', u'reflect', u'water', u'suppli', u'saga'] [u'shire', u'worri', u'wast', u'dump', u'plan', u'water', u'impact'] [u'soldier', u'kill', u'roadsid', u'bomb', u'iraq'] [u'skydiv', u'break', u'ankl', u'nagambi', u'accid'] [u'smoke', u'cost', u'wine', u'industri', u'million'] [u'solicitor', u'general', u'urg', u'anti', u'terror', u'chang'] [u'sonni', u'fin', u'drink', u'drive'] [u'south', u'grain', u'crop', u'prove', u'resili'] [u'speed', u'motorcyclist', u'outrun', u'polic'] [u'staff', u'clear', u'bishopscourt', u'handl', u'council'] [u'state', u'territori', u'leader', u'wont', u'meet', u'deadlin'] [u'student', u'hurt', u'footpath', u'mishap'] [u'studi', u'consid', u'indigen', u'educ', u'retent'] [u'survey', u'find', u'toowoomba', u'storm', u'victim'] [u'govt', u'pressur', u'vote', u'betfair'] [u'russian', u'area', u'carri', u'bird'] [u'terror', u'threat', u'warrant', u'law', u'ruddock'] [u'thailand', u'confirm', u'human', u'case', u'bird'] [u'town', u'come', u'grip', u'region', u'airlin'] [u'trader', u'compli', u'slingshot', u'remov'] [u'tremor', u'rock', u'blue', u'mountain'] [u'tripodi', u'reject', u'highway', u'mainten', u'claim'] [u'tshirt', u'match', u'falconio', u'accus', u'court', u'hear'] [u'adopt', u'syria', u'resolut'] [u'reject', u'detaine', u'contact', u'guantanamo'] [u'vassel', u'doubl', u'citi', u'haunt', u'club'] [u'vinni', u'farewel', u'race', u'gutsi', u'eighth'] [u'health', u'disput', u'resolv'] [u'wont', u'anti', u'terror', u'deadlin', u'beatti'] [u'wikipedia', u'print', u'founder', u'say'] [u'wimmera', u'miner', u'want', u'situat'] [u'woman', u'die', u'rid', u'accid'] [u'woodford', u'folk', u'festiv', u'ticket', u'avail'] [u'woomera', u'escap', u'good', u'behaviour', u'bond'] [u'worker', u'heart', u'berri', u'plant', u'futur'] [u'arrest', u'argentina', u'train', u'delay', u'riot'] [u'abattoir', u'reopen', u'januari'] [u'aborigin', u'corpor', u'face', u'anim', u'neglect'] [u'albani', u'waterwork', u'progress'] [u'alcohol', u'rais', u'breast', u'cancer', u'risk', u'studi'] [u'vow', u'watch', u'govt', u'spend', u'hospit'] [u'andrew', u'put', u'faith', u'legal', u'advic'] [u'anger', u'follow', u'govt', u'decis'] [u'anti', u'terror', u'law', u'threaten', u'asio', u'bungl', u'report'] [u'asio', u'warn', u'home', u'grow', u'terror', u'threat'] [u'kill', u'kashmir', u'blast', u'report'] [u'auction', u'show', u'canberra', u'properti'] [u'australia', u'thrash', u'french', u'barbarian'] [u'backpack', u'visa', u'extens', u'welcom'] [u'balconi', u'collaps', u'tunnel', u'hole'] [u'basslink', u'oppon', u'consid', u'project', u'cost'] [u'bird', u'poison', u'cane', u'toad', u'author'] [u'blake', u'play', u'adelaid'] [u'blast', u'affect', u'peac', u'talk', u'pakistan'] [u'blunkett', u'resign', u'british', u'polit'] [u'bogut', u'find', u'feet', u'debut'] [u'bogut', u'find', u'feet'] [u'booni', u'honour', u'cricket', u'work'] [u'brack', u'face', u'intern', u'stoush', u'econom'] [u'brack', u'join', u'anti', u'terror', u'backer'] [u'build', u'approv', u'surg'] [u'bundaberg', u'ask', u'mental', u'health', u'servic'] [u'busi', u'expect', u'econom', u'growth'] [u'bypass', u'beazley', u'terror', u'law', u'unintent'] [u'cabinet', u'meet', u'kiama', u'communiti', u'chanc'] [u'perman', u'suicid', u'coroni', u'inquiri'] [u'canola', u'contamin', u'trace', u'trial'] [u'bomb', u'kill', u'kashmir'] [u'chines', u'coal', u'leak', u'kill'] [u'colleg', u'moot', u'centr', u'region', u'food'] [u'combin', u'drug', u'doubl', u'bird', u'antivir'] [u'commit', u'glori', u'readi', u'leagu', u'leader'] [u'construct', u'firm', u'apologis', u'build', u'teeter'] [u'coron', u'report', u'fisherman', u'death'] [u'corrupt', u'flag', u'threaten', u'fish', u'stock', u'studi'] [u'council', u'keen', u'introduc', u'recycl', u'program'] [u'court', u'ask', u'rethink', u'tyne', u'murder', u'sentenc'] [u'curtin', u'murdoch', u'univers', u'rule', u'merger'] [u'dani', u'busi', u'beti', u'beat', u'chelsea'] [u'defenc', u'make', u'payment', u'injur', u'iraqi'] [u'defenc', u'minist', u'posit', u'secur'] [u'develop', u'group', u'defend', u'link', u'china'] [u'dont', u'write', u'warn', u'dizzi'] [u'draft', u'land', u'polici', u'fair', u'question'] [u'drill', u'turn', u'signific', u'gold', u'silver', u'deposit'] [u'drug', u'dealer', u'appeal', u'sentenc', u'nurs'] [u'east', u'german', u'dope', u'court', u'case', u'begin'] [u'educ', u'dept', u'resolv', u'umbakumba', u'school'] [u'charg', u'drug', u'raid'] [u'face', u'court', u'drug', u'smuggl', u'claim'] [u'investig', u'coal', u'contamin', u'spill'] [u'error', u'forc', u'westpac', u'reschedul', u'result', u'releas'] [u'essenti', u'nuclear', u'dump', u'law', u'pass', u'hurdl'] [u'control', u'gaza', u'egypt', u'border', u'cross'] [u'retir', u'diva', u'rake', u'million'] [u'exmouth', u'plead', u'guilti', u'shoot'] [u'explor', u'compani', u'sink', u'coast'] [u'explos', u'near', u'british', u'offic', u'tehran'] [u'farmer', u'expect', u'invest', u'meander'] [u'fatal', u'crash', u'renew', u'call', u'highway', u'upgrad'] [u'fear', u'goldfield', u'job', u'disappear'] [u'fear', u'hold', u'miss', u'angler'] [u'kill', u'ethiopia', u'protest', u'medic', u'sourc'] [u'flinder', u'rang', u'take', u'rural', u'doctor', u'award'] [u'forest', u'safeti', u'burn', u'start'] [u'british', u'race', u'board', u'chief', u'warn'] [u'model', u'plead', u'guilti', u'properti', u'charg'] [u'french', u'urg', u'calm', u'pari', u'riot'] [u'futur', u'region', u'road', u'need', u'scrutini'] [u'golf', u'club', u'request', u'kangaroo', u'cull', u'reject'] [u'govt', u'accus', u'stall', u'tunnel', u'document'] [u'govt', u'announc', u'truck', u'code', u'conduct'] [u'govt', u'consid', u'benalla', u'emerg', u'servic'] [u'govt', u'consid', u'longer', u'wait', u'provision', u'driver'] [u'govt', u'mull', u'trade', u'sanction', u'combat', u'illeg'] [u'govt', u'secur', u'state', u'agreement', u'anti'] [u'govt', u'mothbal', u'detent', u'centr'] [u'govt', u'urg', u'calcium', u'tablet'] [u'govt', u'vow', u'speed', u'shire', u'water', u'storag'] [u'green', u'group', u'fear', u'wast', u'dump', u'size'] [u'green', u'group', u'worri', u'lower', u'standard'] [u'green', u'want', u'weddin', u'council', u'stop', u'gold'] [u'group', u'deni', u'respons', u'india', u'bomb', u'attack'] [u'heat', u'harsh', u'terrain', u'hinder', u'search', u'miss'] [u'heavi', u'rain', u'south', u'coast', u'river'] [u'high', u'number', u'cancer', u'obes', u'studi'] [u'hop', u'caravan', u'park', u'studi', u'improv', u'safeti'] [u'hous', u'intrud', u'kill', u'break'] [u'howard', u'secur', u'approv', u'terror', u'law'] [u'husband', u'tell', u'inquest', u'health', u'failur'] [u'hussey', u'feel', u'pressur', u'ahead', u'test', u'debut'] [u'iemma', u'flag', u'compens', u'unit', u'block', u'resid'] [u'injuri', u'strike', u'uruguayan', u'keeper'] [u'rate', u'decis', u'dollar', u'slide'] [u'intern', u'save', u'death', u'aussi'] [u'intrud', u'custodi', u'dead', u'home', u'invas'] [u'investig', u'falconio', u'evid'] [u'iraq', u'shoot', u'inquiri', u'clear', u'troop'] [u'head', u'parliament'] [u'chang', u'reveal'] [u'isra', u'strike', u'kill', u'gaza', u'milit'] [u'japan', u'inspect', u'meat', u'process', u'plant', u'amid'] [u'jone', u'impress', u'young', u'wallabi'] [u'kaleidoscop', u'play', u'high', u'child', u'death', u'rate'] [u'kyneton', u'expect', u'draw', u'good', u'crowd'] [u'labor', u'outrag', u'govt', u'tabl'] [u'lappin', u'stay', u'blue'] [u'lawyer', u'protest', u'guantanamo', u'detent'] [u'leader', u'support', u'anti', u'terror', u'propos'] [u'learn', u'centr', u'face', u'uncertain', u'futur'] [u'lightn', u'rob', u'farmer', u'cow'] [u'local', u'booki', u'doesnt', u'rate', u'diva', u'champion'] [u'local', u'want', u'plan', u'drought'] [u'local', u'celebr', u'winner'] [u'macgil', u'drop', u'west', u'indi', u'test'] [u'macgil', u'play', u'bracken', u'australia'] [u'main', u'road', u'tender', u'call'] [u'makyb', u'begin', u'life', u'retir'] [u'face', u'murder', u'life', u'sentenc', u'sack', u'lawyer'] [u'injur', u'rescu', u'elder', u'mother', u'hous'] [u'jail', u'break', u'aniston', u'home'] [u'manslaught', u'charg', u'follow', u'fatal', u'drag', u'race'] [u'man', u'melbourn', u'frivol', u'polic', u'rescu'] [u'mayor', u'face', u'briberi', u'charg', u'elect', u'promis'] [u'memori', u'servic', u'honour', u'london', u'bomb', u'victim'] [u'mental', u'health', u'issu', u'come', u'region'] [u'minist', u'stand', u'firm', u'back', u'renegad', u'joyc'] [u'local', u'pear', u'spark', u'concern'] [u'prepar', u'debat', u'polic', u'power', u'terrorist'] [u'push', u'faster', u'asbesto', u'victim', u'compo'] [u'mules', u'code', u'bring', u'mix', u'respons'] [u'multi', u'million', u'dollar', u'health', u'centr', u'look'] [u'welcom', u'backpack', u'visa'] [u'plan', u'children', u'ward', u'campbelltown'] [u'north', u'south', u'korea', u'compet', u'team', u'olymp'] [u'sign', u'miss', u'deep', u'fishermen'] [u'opposit', u'anger', u'govt', u'introduc', u'workplac'] [u'opposit', u'maintain', u'push', u'royal', u'commiss'] [u'oscar', u'honour', u'screen', u'great', u'olivia', u'havilland'] [u'paedophil', u'doctor', u'lose', u'lesser', u'sentenc'] [u'pastoralist', u'seek', u'singl', u'author'] [u'pickett', u'happi', u'demon'] [u'pigeon', u'remov', u'work'] [u'pilot', u'cite', u'accid', u'fatigu', u'claim'] [u'demand', u'legisl', u'thwart', u'terrorist', u'attack'] [u'exclud', u'anti', u'terror', u'talk'] [u'warn', u'specif', u'terror', u'threat'] [u'polic', u'communiti', u'mourn', u'respect', u'member'] [u'polic', u'confirm', u'woman', u'miss', u'tourist'] [u'polic', u'deal', u'melbourn', u'drunken', u'fight'] [u'polic', u'examin', u'babi', u'death'] [u'polic', u'troubl', u'patrol', u'pick'] [u'polic', u'charg', u'june', u'murder'] [u'polic', u'arrest', u'theft', u'oper'] [u'polic', u'probe', u'bega', u'hous'] [u'polic', u'seek', u'inform', u'burn', u'luxuri'] [u'port', u'worker', u'secur', u'train', u'boost'] [u'premier', u'closer', u'agreement', u'anti'] [u'princ', u'charl', u'camilla', u'launch', u'tour'] [u'princ', u'name', u'replac', u'john'] [u'highlight', u'grow', u'prison', u'popul'] [u'opposit', u'question', u'benefit', u'colleg'] [u'ravin', u'fall', u'woman', u'think', u'miss', u'tourist'] [u'leav', u'rat', u'hold'] [u'cross', u'help', u'suppli', u'water', u'palm'] [u'refuge', u'thank', u'howard', u'come', u'releas'] [u'region', u'airport', u'prepar', u'oper'] [u'region', u'victoria', u'soon', u'know', u'median', u'hous', u'price'] [u'report', u'buoy', u'resid', u'pool', u'hop'] [u'report', u'probe', u'content', u'bush', u'pocket'] [u'resolut', u'plan', u'issu', u'acceler', u'kangaroo'] [u'rocket', u'fail', u'grind', u'chopper'] [u'rock', u'lobster', u'pioneer', u'leav', u'industri'] [u'rowdi', u'session', u'greet', u'law'] [u'rural', u'worker', u'shortag', u'hamper', u'processor'] [u'search', u'begin', u'miss', u'elder'] [u'call', u'cyclon', u'season', u'readi'] [u'singaporean', u'protest', u'nguyen', u'execut'] [u'solomona', u'hand', u'match'] [u'spywear', u'stare', u'window', u'shopper'] [u'stanhop', u'call', u'releas', u'legal', u'advic'] [u'state', u'govern', u'work', u'truck', u'safeti'] [u'sign', u'miss', u'camper'] [u'stoner', u'predict', u'power', u'shortag', u'summer'] [u'stosur', u'beat', u'philadelphia'] [u'substat', u'fire', u'damag', u'remain', u'unknown'] [u'supermarket', u'reject', u'suprem', u'court'] [u'swimmer', u'warn', u'advantag', u'stinger', u'net'] [u'sydney', u'apart', u'block', u'dangl', u'massiv', u'hole'] [u'sydney', u'resid', u'evacu', u'build', u'collaps'] [u'syria', u'defiant', u'vow', u'cooper'] [u'tassi', u'taxi', u'trip', u'cost'] [u'tebbutt', u'reject', u'cut', u'plan', u'special', u'need'] [u'teen', u'charg', u'year', u'old', u'rape'] [u'teen', u'hospit', u'footpath', u'crash'] [u'terror', u'chang', u'thwart', u'possibl', u'threat'] [u'terrorist', u'threat', u'time', u'coincid'] [u'thoma', u'lead', u'wale', u'zealand'] [u'kill', u'hour', u'road'] [u'toad', u'egg', u'prove', u'fatal', u'bird'] [u'toxic', u'wast', u'committe', u'undet', u'quarantin', u'yard'] [u'tradit', u'owner', u'regain', u'island'] [u'train', u'boss', u'highlight', u'process', u'plant', u'benefit'] [u'transport', u'dept', u'bungl', u'prompt', u'fake', u'alert'] [u'tunnel', u'builder', u'reassur', u'sydney', u'resid', u'hole'] [u'tunnel', u'collaps', u'sydney'] [u'marin', u'kill', u'iraq', u'helicopt', u'crash'] [u'typhoon', u'rain', u'kill', u'vietnam'] [u'look', u'sustain', u'boost', u'north'] [u'union', u'say', u'foreign', u'apprentic', u'good'] [u'union', u'promis', u'fight', u'law'] [u'declin', u'request', u'inform'] [u'rat', u'rise'] [u'market', u'fall', u'rate', u'rise'] [u'order', u'buoy', u'tasmanian', u'compani'] [u'say', u'helicopt', u'fire', u'pakistan'] [u'senat', u'hold', u'close', u'session', u'iraq'] [u'stand', u'guantanamo', u'detaine'] [u'unveil', u'avian', u'defenc', u'plan'] [u'vail', u'undergo', u'skin', u'cancer', u'surgeri'] [u'push', u'rat', u'video', u'game'] [u'wallabi', u'tour', u'springboard', u'futur'] [u'water', u'flemington', u'fair', u'manag'] [u'westpac', u'reveal', u'record', u'profit'] [u'wheat', u'watchdog', u'claim', u'knowledg', u'scandal'] [u'winemak', u'welcom', u'research', u'smoke', u'effect'] [u'winter', u'game', u'team', u'biggest'] [u'woden', u'get', u'polic', u'station'] [u'woman', u'face', u'court', u'statewid', u'drug', u'blitz'] [u'workshop', u'aim', u'bring', u'young', u'peopl', u'polit'] [u'grandstand', u'speak', u'ricki', u'pont', u'corey'] [u'agarkar', u'set', u'seri', u'lanka'] [u'agforc', u'secur', u'fund', u'school'] [u'search', u'fishermen', u'call'] [u'forc', u'recruit', u'train', u'wagga'] [u'albani', u'grain', u'harvest', u'gear'] [u'qaeda', u'prison', u'escap', u'detail', u'court', u'martial'] [u'qaeda', u'suspect', u'captur', u'battl'] [u'amnesti', u'hold', u'vigil', u'nguyen'] [u'anderson', u'warn', u'water', u'initi', u'stall'] [u'andrew', u'dismiss', u'court', u'challeng', u'plan'] [u'anglo', u'coal', u'build', u'live', u'quarter'] [u'antivir', u'stockpil', u'bird', u'prepar'] [u'atapattu', u'lead', u'lanka', u'reviv'] [u'aust', u'japan', u'free', u'trade', u'talk', u'begin'] [u'australia', u'bat', u'gabba'] [u'australia', u'take', u'sheep', u'trial', u'holi', u'grail'] [u'australia', u'west', u'indi', u'seri', u'begin', u'perfect'] [u'fear', u'prompt', u'public', u'servic', u'lobbi'] [u'awb', u'iraq', u'contract', u'govt', u'approv', u'labor'] [u'bashir', u'exclud', u'sentenc', u'cut'] [u'bemax', u'build', u'powerlin', u'gingko', u'deposit'] [u'biosecur', u'reject', u'time', u'problem', u'risk'] [u'bird', u'threat', u'asian', u'growth', u'world', u'bank'] [u'blair', u'retreat', u'british', u'anti', u'terror'] [u'blair', u'wannab', u'rock', u'past', u'expos'] [u'bodi', u'miss', u'woman'] [u'broadbent', u'sell', u'govt', u'chang'] [u'build', u'industri', u'warn', u'rate', u'rise'] [u'bundaberg', u'ralli', u'govt', u'mental', u'health', u'servic'] [u'ongo', u'financi', u'assist', u'despit'] [u'china', u'ban', u'poultri', u'import', u'combat', u'bird'] [u'coalit', u'forc', u'chang', u'terror'] [u'coal', u'miner', u'consid', u'industri', u'action'] [u'collector', u'seal', u'deal', u'holi', u'grail', u'stampdom'] [u'commentari', u'highlight'] [u'cooper', u'readi', u'lose', u'time'] [u'cotton', u'grower', u'punt', u'increas', u'water'] [u'councillor', u'allow', u'mayor', u'skip', u'meet'] [u'councillor', u'target', u'public', u'galleri', u'boister'] [u'council', u'concern', u'slow', u'pace', u'highway'] [u'council', u'fund', u'environment', u'manag', u'plan'] [u'counter', u'terror', u'law', u'chang'] [u'countri', u'energi', u'check', u'powerlin', u'summer'] [u'coventri', u'swim', u'sydney', u'world', u'meet'] [u'cunningham', u'condemn', u'law'] [u'death', u'aussi', u'need', u'howard', u'help', u'amnesti'] [u'defenc', u'project', u'seek', u'newcastl', u'industri', u'input'] [u'demand', u'region', u'uni', u'drop'] [u'test', u'falconio', u'gearstick', u'inconclus'] [u'phone', u'list', u'shelv'] [u'downer', u'urg', u'pressur', u'zimbabw'] [u'elvi', u'costello', u'headlin', u'best', u'sydney', u'festiv'] [u'ethanol', u'explos', u'inquest', u'hear', u'wit'] [u'trade', u'offer', u'chanc', u'rebal', u'talk'] [u'farmer', u'claim', u'peta', u'bluff', u'mules', u'case'] [u'farmer', u'fear', u'firewe', u'danger'] [u'announc', u'award', u'honour', u'warren'] [u'ravag', u'tourist', u'attract', u'demolish'] [u'fisher', u'upset', u'wildcat', u'commit'] [u'fli', u'doctor', u'pilot', u'disput'] [u'forc', u'fault', u'fatal', u'shoot', u'polic'] [u'saddam', u'offic', u'focus', u'recuit', u'drive'] [u'freedman', u'dream', u'carniv', u'continu', u'oak'] [u'french', u'youth', u'riot', u'seventh', u'night'] [u'goldfield', u'council', u'commend', u'indigen', u'employ'] [u'govt', u'accus', u'buck', u'pass', u'weir', u'mainten'] [u'govt', u'plan', u'bruce', u'highway', u'upgrad'] [u'govt', u'reject', u'plea', u'save', u'nguyen'] [u'govt', u'stanc', u'season', u'pacif', u'worker'] [u'govt', u'assess', u'review', u'north', u'west', u'salt'] [u'govt', u'unveil', u'afford', u'hous', u'project'] [u'govt', u'urg', u'increas', u'effort', u'curb', u'road', u'toll'] [u'govt', u'vow', u'consult', u'decid', u'toxic'] [u'green', u'urg', u'toler', u'contamin'] [u'green', u'zone', u'scrap', u'land', u'releas'] [u'gregan', u'rugbi', u'cap', u'player'] [u'grind', u'search', u'begin', u'miss', u'walker'] [u'group', u'push', u'chang', u'welfar', u'work', u'plan'] [u'growth', u'continu', u'slow', u'servic', u'sector'] [u'hayden', u'go', u'half', u'pont'] [u'health', u'author', u'fight', u'south', u'east', u'smoke', u'rat'] [u'heat', u'debat', u'see', u'eject'] [u'heritag', u'hold', u'cut', u'manag'] [u'highway', u'upgrad', u'respons', u'road', u'closur'] [u'hockeyroo', u'search', u'harder', u'edg', u'beat', u'kiwi'] [u'home', u'invas', u'accus', u'move', u'secur', u'ward'] [u'howard', u'reject', u'terror', u'threat', u'conspiraci', u'claim'] [u'add', u'weight', u'secret', u'prison', u'claim'] [u'huge', u'crowd', u'expect', u'oak'] [u'hussey', u'go', u'test', u'debut'] [u'injur', u'keeper', u'name', u'uruguay', u'squad'] [u'injur', u'worker', u'access', u'extra', u'benefit'] [u'iran', u'allow', u'inspector', u'militari', u'complex'] [u'isra', u'palestinian', u'clash', u'flare', u'jenin'] [u'japan', u'north', u'korea', u'talk', u'focus', u'abduct'] [u'joyc', u'defend', u'kelli', u'support'] [u'kangaroo', u'trio', u'doubt', u'clash'] [u'kean', u'call', u'januari', u'clear'] [u'nation', u'anti', u'terror', u'bodi', u'activ'] [u'king', u'good', u'wildcat'] [u'knight', u'clash', u'match', u'say', u'jet', u'coach'] [u'labor', u'fear', u'bush', u'suffer', u'impact', u'chang'] [u'labor', u'focus', u'dismiss', u'power', u'debat'] [u'langer', u'captain', u'young', u'prime', u'minist'] [u'expert', u'want', u'trawl', u'fish', u'moratorium'] [u'livestock', u'buyer', u'confid', u'live', u'sheep', u'export'] [u'mackay', u'jail', u'molest', u'daughter'] [u'admit', u'possess', u'child', u'porn'] [u'arrest', u'forb', u'death'] [u'charg', u'flee'] [u'busi', u'celebr', u'work', u'collect', u'pool'] [u'woe', u'continu', u'champion', u'loss'] [u'mayor', u'reassur', u'resid', u'tunnel', u'subsid'] [u'mayor', u'urg', u'stand', u'briberi', u'case'] [u'media', u'tech', u'stock', u'boost', u'market'] [u'miller', u'confid', u'adelaid', u'clash'] [u'uproar', u'legisl'] [u'confid', u'worker', u'welcom', u'chang'] [u'seek', u'answer', u'traffic', u'black', u'spot', u'replac'] [u'boost', u'john', u'tong', u'workload'] [u'news', u'corp', u'buy', u'properti', u'websit'] [u'timor', u'prospect', u'santo'] [u'compens', u'dope', u'victim', u'lagat'] [u'noosa', u'triathlet', u'survey', u'satisfact'] [u'polic', u'sack', u'corps', u'photo', u'leak'] [u'north', u'coast', u'council', u'suffer', u'fund', u'cutback'] [u'council', u'reconsid', u'holiday', u'rental', u'law'] [u'govt', u'challeng', u'law'] [u'teacher', u'condemn', u'cut', u'special', u'class'] [u'nurs', u'band', u'law'] [u'food', u'scandal', u'threaten', u'singl', u'desk', u'wheat'] [u'opposit', u'question', u'medicar', u'cut'] [u'pair', u'guilti', u'cain', u'murder'] [u'pakistan', u'quak', u'toll', u'leap', u'past'] [u'park', u'council', u'knock', u'chemic', u'process'] [u'park', u'servic', u'confid', u'island', u'upgrad', u'wont', u'affect'] [u'rise', u'sweet', u'news', u'chocol', u'factori'] [u'petrol', u'price', u'dispar', u'citi', u'countri'] [u'pinochet', u'psycholog', u'test', u'suspend'] [u'give', u'grind', u'anti', u'terror', u'law'] [u'gold', u'resum', u'oper'] [u'polic', u'hold', u'station', u'plan'] [u'polic', u'investig', u'alleg', u'abduct'] [u'polic', u'investig', u'latest', u'attack', u'homeless'] [u'polic', u'seek', u'assist', u'search', u'boat', u'thiev'] [u'polic', u'seek', u'help', u'solv', u'highway', u'death'] [u'polic', u'step', u'speed', u'camera'] [u'pont', u'fall'] [u'pont', u'forg'] [u'pont', u'hayden', u'rebuild', u'loss', u'hussey'] [u'pont', u'hayden', u'australia', u'lunch'] [u'pont', u'star', u'gabba'] [u'port', u'stephen', u'council', u'bring', u'budget', u'surplus'] [u'possibl', u'sydney', u'melbourn', u'attack', u'prompt', u'law'] [u'postal', u'ballot', u'rout', u'local', u'govt', u'elect'] [u'launch', u'young', u'driver', u'propos', u'cairn'] [u'raaf', u'base', u'expans', u'report', u'tabl'] [u'rain', u'bring', u'relief', u'drought', u'declar'] [u'rayner', u'court', u'corrupt', u'charg'] [u'record', u'birth', u'number', u'forc', u'hospit', u'employ'] [u'region', u'petrol', u'price', u'hit', u'time', u'high'] [u'replica', u'robberi', u'suspect', u'plead', u'guilti'] [u'resid', u'concern', u'plan', u'chang', u'firebreak'] [u'resid', u'face', u'anxious', u'wait', u'return', u'home'] [u'resid', u'face', u'wait', u'tunnel', u'subsid'] [u'resid', u'access', u'teeter', u'build'] [u'resid', u'voic', u'fuel', u'price', u'concern', u'public'] [u'retail', u'trade', u'figur', u'wors', u'expect'] [u'retrial', u'deni', u'lade', u'aid'] [u'rosberg', u'name', u'webber', u'team', u'mate'] [u'rule', u'reserv', u'elder', u'abus', u'sentenc'] [u'art', u'student', u'take', u'bonner', u'scholarship'] [u'schooli', u'urg', u'stick'] [u'scientist', u'detect', u'massiv', u'black', u'hole'] [u'scud', u'grant', u'auckland', u'wildcard'] [u'search', u'fishermen'] [u'search', u'step', u'miss', u'fishermen'] [u'search', u'miss', u'coast'] [u'season', u'worker', u'drink'] [u'educ', u'booklet'] [u'offend', u'releas', u'bail'] [u'shoalhaven', u'implement', u'grandpar', u'support', u'program'] [u'singapor', u'reject', u'nguyen', u'clemenc', u'appeal'] [u'smoker', u'warn', u'emphysema', u'risk'] [u'south', u'west', u'rock', u'consid', u'develop', u'plan'] [u'storm', u'bring', u'relief', u'night'] [u'storm', u'continu', u'batter'] [u'strong', u'public', u'respons', u'propos', u'cabl', u'beach'] [u'student', u'union', u'disappoint', u'uni', u'merger', u'rule'] [u'subarus', u'withdraw', u'strike', u'heart', u'ralli'] [u'suicid', u'inquest', u'mental', u'health'] [u'summit', u'front', u'uranium', u'inquiri', u'develop'] [u'sunshin', u'coast', u'build', u'approv', u'rat', u'surg'] [u'sunshin', u'coast', u'urg', u'learn', u'byron', u'problem'] [u'supermarket', u'develop', u'readi', u'court'] [u'support', u'camp', u'school', u'open'] [u'support', u'mount', u'high', u'court', u'challeng'] [u'swimmer', u'drop', u'hillari', u'water', u'qualiti', u'health', u'dept'] [u'sydney', u'auction', u'fund', u'pool', u'remot'] [u'syria', u'pardon', u'polit', u'prison'] [u'approv', u'betfair', u'deal'] [u'go', u'ahead', u'betfair', u'licens'] [u'tasmania', u'deni', u'betfair', u'deal', u'damag', u'race'] [u'teacher', u'demand', u'break', u'alcohol', u'ban'] [u'teacher', u'prepar', u'strike', u'travel'] [u'temporari', u'accommod', u'eas', u'youth', u'detent'] [u'tent', u'embassi', u'knock', u'heritag', u'list'] [u'terror', u'threat', u'prompt', u'urgent', u'amend', u'gilmor'] [u'thackray', u'test', u'debut', u'australia'] [u'thompson', u'focus', u'victori'] [u'thousand', u'honour', u'right', u'activist', u'rosa', u'park'] [u'thousand', u'turn', u'kyneton', u'race'] [u'toowoomba', u'compani', u'secur', u'energi', u'contract'] [u'bureaucrat', u'flag', u'anti', u'terror', u'job'] [u'tourism', u'campaign', u'identifi', u'emerg', u'market'] [u'tradit', u'owner', u'urg', u'reject', u'nuclear', u'dump'] [u'traffic', u'nois', u'turn', u'bird', u'soprano'] [u'truck', u'tractor', u'market', u'slump'] [u'trucki', u'rise', u'consid', u'good', u'start'] [u'tunnel', u'collaps', u'need', u'independ', u'inquiri'] [u'unauthoris', u'tree', u'mark', u'slow', u'log', u'process'] [u'union', u'defend', u'polic', u'extinguish', u'subdu'] [u'host', u'bird', u'inform', u'night'] [u'brush', u'secret', u'prison', u'report'] [u'season', u'shorten', u'help', u'australia'] [u'troop', u'accus', u'rape', u'philippin'] [u'vail', u'recov', u'skin', u'cancer', u'surgeri'] [u'get', u'bail', u'overdos', u'death', u'charg'] [u'volcano', u'help', u'maintain', u'ocean', u'level'] [u'weak', u'retail', u'figur', u'spark', u'christma', u'worri'] [u'wellb', u'studi', u'mark', u'research', u'institut'] [u'wentworth', u'race', u'track', u'futur', u'safe', u'say', u'countri'] [u'westpac', u'mine', u'stock', u'lift'] [u'wind', u'farm', u'submiss', u'point', u'communiti', u'support'] [u'wood', u'urg', u'fund', u'halt', u'brain', u'drain'] [u'worker', u'hole'] [u'world', u'largest', u'open'] [u'world', u'respons', u'bird', u'threat', u'schedul'] [u'announc', u'mildura', u'school', u'facil'] [u'charg', u'drug', u'offenc'] [u'drown', u'pakistan', u'ferri', u'sink'] [u'backflip', u'collect', u'workplac', u'contract'] [u'accc', u'look', u'green', u'takeov'] [u'ambul', u'station', u'heart', u'equip'] [u'andrew', u'expect', u'joyc', u'law'] [u'anglican', u'church', u'compens', u'offer', u'abus'] [u'anti', u'govern', u'unrest', u'continu', u'ethiopia'] [u'appeal', u'gang', u'rapist', u'sentenc', u'dismiss'] [u'architect', u'enlist', u'pool', u'develop'] [u'armidal', u'top', u'state', u'illeg', u'build', u'work'] [u'auction', u'success', u'help', u'indigen', u'communiti'] [u'artefact', u'safe', u'tallowah', u'rise'] [u'australia'] [u'bass', u'coast', u'rank', u'high', u'illeg', u'build', u'activ'] [u'betfair', u'stop', u'welfar', u'group'] [u'infrastructur', u'revamp', u'store', u'mechan'] [u'bird', u'fear', u'prompt', u'concern', u'local', u'duck'] [u'birney', u'engag', u'boost', u'polit', u'allur', u'expert'] [u'bjelk', u'petersen', u'win', u'parti', u'preselect'] [u'blaze', u'engulf', u'mile', u'creek', u'home'] [u'blue', u'beat', u'warrior', u'waca'] [u'bluescop', u'plung', u'keep', u'market', u'flat'] [u'bluescop', u'share', u'plung', u'profit', u'warn'] [u'blue', u'warrior', u'massiv', u'target'] [u'botmast', u'arrest', u'spam', u'network'] [u'escap', u'abduct', u'attempt'] [u'brack', u'urg', u'commonwealth', u'support', u'school'] [u'bull', u'redback', u'victori'] [u'bush', u'honour', u'muhammad', u'golden', u'bear'] [u'cairn', u'hospit', u'worker', u'strike'] [u'caldecott', u'miss', u'dakar', u'ralli'] [u'carnivor', u'lizard', u'set', u'toddler', u'toilet'] [u'carr', u'unawar', u'tunnel', u'document', u'leak', u'alleg'] [u'cartoon', u'geek', u'plan', u'costum', u'foray', u'space'] [u'burn', u'sicken', u'author'] [u'chelsea', u'aim', u'usurp'] [u'children', u'hospit', u'ask', u'suspend', u'tube', u'feed'] [u'china', u'find', u'fresh', u'bird', u'outbreak'] [u'china', u'link', u'bird', u'outbreak', u'migratori', u'bird'] [u'citi', u'countri', u'fuel', u'price', u'divid', u'reach', u'high'] [u'cityrail', u'close', u'public', u'timet', u'chang'] [u'coffe', u'varianc', u'brew', u'caffein', u'overdos'] [u'commentari', u'highlight', u'gabba'] [u'concern', u'grow', u'chines', u'hunger', u'striker'] [u'cosgrov', u'star', u'redback', u'roll', u'bull'] [u'council', u'bungl', u'delay', u'sawtel', u'develop'] [u'council', u'clock', u'tackl', u'talker', u'councillor'] [u'councillor', u'accus', u'code', u'conduct', u'breach'] [u'councillor', u'reflect', u'shire', u'tension'] [u'council', u'plead', u'govt', u'free', u'age', u'care', u'site'] [u'council', u'welcom', u'youth', u'detent', u'centr'] [u'crowd', u'behaviour', u'deterior', u'oak'] [u'daylight', u'save', u'oppon', u'fight'] [u'debnam', u'target', u'govt', u'leak', u'document'] [u'list', u'mclaren', u'blue'] [u'derbi', u'get', u'rescu', u'boat'] [u'design', u'submit', u'thurgoona', u'librari'] [u'doctor', u'beatti', u'isol', u'incent', u'appli'] [u'dodgi', u'build', u'work', u'worri', u'council'] [u'ask', u'probe', u'crash', u'victim', u'dead', u'drug'] [u'appeal', u'teen', u'drink', u'drive', u'sentenc'] [u'driver', u'caution', u'urg', u'nation', u'park', u'fire'] [u'drought', u'assist', u'deadlin', u'near'] [u'duke', u'tune', u'uefa', u'goal'] [u'elli', u'surgeri'] [u'eurobodalla', u'lose', u'tourist', u'make', u'money'] [u'england', u'star', u'collymor', u'fin', u'cairn'] [u'expect', u'unexpect', u'terror', u'confer', u'tell'] [u'extra', u'cost', u'power', u'station', u'pipelin', u'connect'] [u'famili', u'clash', u'crash', u'death', u'sentenc'] [u'farmer', u'face', u'locust', u'threat'] [u'farmer', u'urg', u'earli', u'spray', u'locust'] [u'farm', u'group', u'question', u'timber', u'plantat', u'approv'] [u'farm', u'suppli', u'firm', u'happier', u'harvest', u'prospect'] [u'fear', u'futur', u'grey', u'nurs', u'shark'] [u'film', u'maker', u'scour', u'western', u'farm', u'doco', u'star'] [u'firewe', u'fear', u'spur', u'govt', u'talk'] [u'fish', u'stock', u'drop', u'great', u'sandi', u'strait'] [u'fitzroy', u'shire', u'readi', u'popul', u'boost'] [u'flood', u'close', u'cataract', u'gorg', u'basin', u'pool'] [u'forb', u'charg', u'murder'] [u'foreign', u'lawyer', u'anti', u'terror', u'concern'] [u'japan', u'striker', u'miura', u'join', u'sydney'] [u'offer', u'messeng', u'posit'] [u'legionnair', u'case', u'investig'] [u'fungus', u'threaten', u'wild', u'wollemi', u'pin'] [u'futur', u'unclear', u'csiro', u'griffith', u'job'] [u'target', u'wont', u'affect', u'alumina', u'refineri', u'locat'] [u'genet', u'discrimin', u'probe', u'scrutinis'] [u'gibb', u'river', u'clean', u'start'] [u'glenn', u'mcgrath', u'reflect', u'gabba', u'test'] [u'cart', u'ride', u'game', u'say', u'court'] [u'govt', u'alarm', u'lockyer', u'farm', u'exodus'] [u'govt', u'face', u'critic', u'cross', u'citi', u'tunnel'] [u'govt', u'fund', u'wagga', u'hospit', u'upgrad'] [u'govt', u'make', u'throw', u'dice', u'boe', u'disput'] [u'govt', u'propos', u'public', u'privat', u'partnership'] [u'govt', u'consid', u'law', u'joyc', u'concern'] [u'govt', u'urg', u'deliv', u'rural', u'exhibit', u'centr', u'fund'] [u'greenpeac', u'apologis', u'reef', u'damag'] [u'hammer', u'spend', u'strengthen', u'squad'] [u'health', u'whistleblow', u'hefti', u'cost', u'confirm'] [u'high', u'tech', u'boost', u'south', u'east', u'tafe', u'student'] [u'histor', u'ironwork', u'protect', u'heritag', u'offic'] [u'hopper', u'number', u'build'] [u'howard', u'hold', u'hope', u'death', u'aussi'] [u'indonesia', u'angri', u'silenc', u'qaeda', u'escape'] [u'inform', u'suggest', u'possibl', u'indonesia', u'terrorist'] [u'insurg', u'kill', u'iraqi', u'checkpoint', u'attack'] [u'discourag', u'agreement', u'make', u'academ'] [u'law', u'worker', u'digest', u'church'] [u'law', u'americanis', u'work', u'forc', u'beazley'] [u'jet', u'wari', u'knight', u'danger', u'game'] [u'joyc', u'deni', u'row', u'team'] [u'judg', u'urg', u'mediat', u'case'] [u'juvenil', u'justic', u'centr', u'upgrad'] [u'kangaroo', u'readi', u'desper', u'great', u'britain'] [u'koski', u'beat', u'longernong', u'futur'] [u'launceston', u'host', u'forest', u'contractor', u'talk'] [u'lawyer', u'anticip', u'terror', u'law', u'affect'] [u'legal', u'victori', u'merck'] [u'lennon', u'stop', u'race', u'board', u'regul', u'betfair'] [u'littl', u'public', u'show', u'foreshor', u'plan'] [u'local', u'govt', u'futur', u'spotlight'] [u'luxuri', u'liner', u'herald', u'twofold', u'tourist', u'influx'] [u'mackay', u'obstetrician', u'face', u'overload'] [u'acquit', u'signific', u'peopl', u'smuggl', u'case'] [u'admit', u'murder', u'mother'] [u'court', u'accus', u'partner', u'assault'] [u'sue', u'glue', u'prank'] [u'face', u'court', u'attempt', u'teen', u'assault'] [u'massiv', u'delay', u'pacif', u'highway', u'work', u'nrma'] [u'mcclaren', u'hail', u'viduka', u'doubl'] [u'mcgrath', u'put', u'windi', u'rope'] [u'medic', u'assoc', u'back', u'call', u'streamlin', u'health'] [u'melbourn', u'clear', u'bird'] [u'melbourn', u'worker', u'ralli', u'chang'] [u'milic', u'fire', u'jet', u'victori'] [u'mine', u'industri', u'safeti', u'regim'] [u'minist', u'confid', u'joyc'] [u'minist', u'downplay', u'palm', u'island', u'water', u'suppli', u'fear'] [u'minist', u'urg', u'caloundra', u'essenti', u'servic'] [u'incent', u'urg', u'doctor'] [u'explor', u'west', u'coast'] [u'work', u'need', u'steadi', u'undermin', u'unit'] [u'call', u'fund', u'save', u'csiro', u'research'] [u'muslim', u'communiti', u'fear', u'terror', u'arrest'] [u'aborigin', u'affair', u'offic', u'north', u'coast'] [u'newcastl', u'set', u'export', u'benchmark'] [u'juvenil', u'detent', u'centr', u'mitchel'] [u'look', u'pipelin', u'cooloola', u'region'] [u'visa', u'apprentic', u'wag', u'labor'] [u'arrest', u'immin', u'howard'] [u'govt', u'play', u'polit', u'boe', u'disput'] [u'nurs', u'stop', u'work', u'equal'] [u'firm', u'ask', u'explain', u'citi', u'rural', u'price'] [u'pagan', u'resign', u'lose', u'camporeal'] [u'palmerston', u'get', u'recreat', u'centr'] [u'parent', u'welcom', u'fitzroy', u'cross', u'school', u'commit'] [u'pilbara', u'iron', u'plan', u'spark', u'indigen', u'worri'] [u'plan', u'offer', u'hope', u'canker', u'affect', u'citrus', u'grower'] [u'deni', u'terror', u'arrest', u'immin'] [u'rule', u'appeal', u'death'] [u'polic', u'focus', u'surveil', u'camera', u'boost'] [u'polic', u'search', u'miss', u'kid'] [u'polic', u'search', u'gypsi', u'joker', u'leader'] [u'polic', u'threaten', u'tough', u'seatbelt'] [u'power', u'restor', u'storm', u'aftermath'] [u'power', u'restor', u'wind', u'home'] [u'life', u'group', u'give', u'pregnanc', u'counsel', u'fund'] [u'public', u'consult', u'colleg', u'campus', u'futur'] [u'farmer', u'reject', u'water', u'critic'] [u'move', u'flat', u'rate', u'tariff', u'electr'] [u'blame', u'vandal', u'tilt', u'train', u'mishap'] [u'race', u'industri', u'seek', u'betfair'] [u'rain', u'clear', u'play', u'gabba'] [u'rain', u'threaten', u'australia', u'momentum'] [u'reef', u'fish', u'closur', u'near'] [u'research', u'consid', u'lure', u'sport', u'versus'] [u'retir', u'villag', u'develop', u'expect', u'high', u'demand'] [u'rfds', u'pilot', u'lift', u'work', u'ban'] [u'roar', u'sink', u'victori'] [u'season', u'close', u'speci'] [u'rossi', u'aim', u'doohan', u'record', u'valencia'] [u'royal', u'park', u'solv', u'newcastl', u'shortag', u'green'] [u'ruddock', u'reject', u'anti', u'terror', u'law', u'breach', u'human'] [u'ruddock', u'want', u'charg', u'journalist'] [u'rule', u'forc', u'open', u'pilbara', u'rail', u'line'] [u'health', u'minist', u'quit', u'portfolio'] [u'satellit', u'lead', u'polic', u'steal'] [u'search', u'joker', u'leader', u'find'] [u'shot', u'fire', u'polic', u'riot', u'continu'] [u'smith', u'lara', u'windi'] [u'south', u'africa', u'ax', u'deputi', u'indict', u'corrupt'] [u'spring', u'race', u'name', u'makyb'] [u'state', u'agre', u'nation', u'energi', u'regim'] [u'state', u'hear', u'indigen', u'justic', u'scheme'] [u'stinger', u'scare', u'close', u'strand'] [u'stirl', u'meet', u'camp', u'school', u'support'] [u'strand', u'bird', u'rescu', u'robot'] [u'strategi', u'accommod', u'grow', u'popul'] [u'sweep', u'start', u'croc', u'broom'] [u'sydney', u'cafe', u'gunmen', u'miss', u'intend', u'target'] [u'tailend'] [u'tasmania', u'fund', u'jumper', u'jack', u'research'] [u'tasmania', u'modernis', u'water', u'manag'] [u'teacher', u'aid', u'jail', u'affair', u'student'] [u'tiger', u'mount', u'beller', u'fight'] [u'toyn', u'investig', u'customari', u'futur'] [u'transport', u'group', u'fear', u'saleyard', u'cost', u'farmer'] [u'trawler', u'sink', u'harrow', u'rescu', u'skipper'] [u'tribut', u'flow', u'elder'] [u'trucki', u'plead', u'guilti', u'danger', u'drive'] [u'trucki', u'surviv', u'road', u'train', u'roll'] [u'tunnel', u'negoti', u'leak', u'dog', u'iemma', u'govt'] [u'tweeti', u'save', u'teeter', u'build'] [u'arrest', u'explos', u'injur', u'waikeri', u'woman'] [u'charg', u'plan', u'terrorist', u'attack'] [u'kill', u'wagga', u'factori', u'accid'] [u'stowaway', u'dead', u'ship', u'bind'] [u'campus', u'go', u'fall', u'enrol'] [u'communic', u'respons', u'audit'] [u'union', u'urg', u'worker', u'oppos', u'law'] [u'court', u'rule', u'wont', u'hurt', u'australian', u'vioxx', u'class'] [u'test', u'bird'] [u'backbench', u'apologis', u'defamatori', u'remark'] [u'water', u'bomber', u'head', u'south', u'coast'] [u'weed', u'pose', u'threat', u'north', u'rainforest'] [u'wellington', u'shire', u'tour', u'target', u'develop'] [u'west', u'tiger', u'begin', u'titl', u'defenc', u'dragon'] [u'wheat', u'group', u'want', u'bar'] [u'wild', u'wind', u'lash', u'southern', u'tasmania'] [u'woman', u'get', u'suspend', u'jail', u'sentenc', u'hotel'] [u'woodsid', u'brief', u'communiti', u'project'] [u'wool', u'market', u'fall'] [u'world', u'fail', u'grasp', u'scale', u'pakistan', u'disast'] [u'wudinna', u'hospit', u'report', u'publicis'] [u'young', u'driver', u'face', u'govt', u'crackdown'] [u'zimbabw', u'opposit', u'accus', u'leader', u'violenc'] [u'mull', u'legisl', u'counter', u'chang'] [u'annan', u'cancel', u'iranian', u'trip', u'amid', u'israel', u'furor'] [u'anti', u'terror', u'law', u'inquiri', u'call', u'submiss'] [u'anti', u'protest', u'turn', u'violent', u'argentina'] [u'archbishop', u'open', u'sale', u'resid'] [u'aussi', u'claim', u'earli', u'wicket'] [u'aussi', u'control', u'gabba', u'test'] [u'bachelor', u'bequeath', u'fortun'] [u'blue', u'beat', u'warrior', u'waca'] [u'builder', u'hop', u'meet', u'need', u'collaps', u'unit'] [u'bushrang', u'horror', u'start', u'inning'] [u'bush', u'refus', u'comment', u'rove', u'futur'] [u'cabbi', u'warn', u'meet', u'peak', u'hour', u'commit'] [u'cairn', u'adelaid', u'melbourn', u'score', u'win'] [u'capit', u'ranger', u'unbeaten', u'streak'] [u'cross', u'border', u'deal', u'improv', u'firefight', u'capac'] [u'debnam', u'alleg', u'cover', u'tunnel', u'paper', u'leak'] [u'diseas', u'threaten', u'earthquak', u'victim', u'camp', u'oxfam'] [u'breakthrough', u'shed', u'light', u'ripper', u'case'] [u'maker', u'sponsor', u'cycl', u'race'] [u'europ', u'demand', u'probe', u'prison', u'claim'] [u'fan', u'warn', u'uruguay', u'trip'] [u'farmer', u'seek', u'help', u'beat', u'firewe', u'infest'] [u'father', u'son', u'guilti', u'honour', u'kill'] [u'ferguson', u'readi', u'pull', u'rooney', u'argentina'] [u'erupt', u'malaysia', u'twin', u'tower'] [u'firefight', u'battl', u'nation', u'park', u'blaze'] [u'kuwaiti', u'releas', u'guantanamo'] [u'charg', u'steal', u'militari', u'secret'] [u'fundrais', u'aim', u'prevent', u'recherch', u'log'] [u'gabba', u'test', u'highlight'] [u'govt', u'announc', u'extra', u'drought', u'fund'] [u'govt', u'consid', u'appeal', u'viarsa', u'fishermen'] [u'green', u'seek', u'transpar', u'complaint'] [u'gregan', u'focus', u'perform', u'world', u'record'] [u'guidelin', u'gunnss', u'pulp', u'plan', u'amend'] [u'hayden', u'gabba', u'centuri'] [u'hayden', u'pont', u'pile', u'run'] [u'hayden', u'pont', u'game', u'reach'] [u'hid', u'warn', u'parti', u'leader', u'memoir'] [u'hill', u'take', u'health', u'portfolio'] [u'hockeyroo', u'qualifi', u'world'] [u'hometown', u'hayden'] [u'hundr', u'car', u'burn', u'pari', u'violenc'] [u'iaea', u'meet', u'unabl', u'rule', u'iran'] [u'icrc', u'expand', u'pakistani', u'effort'] [u'indonesia', u'confirm', u'fifth', u'human', u'bird', u'death'] [u'indonesian', u'woman', u'die', u'bird'] [u'inquiri', u'push', u'delay', u'betfair', u'deal'] [u'insurg', u'weapon', u'come', u'iran', u'general'] [u'iraq', u'fuel', u'terror', u'british'] [u'israel', u'begin', u'mark', u'rabin', u'assassin'] [u'john', u'paul', u'beatif', u'hear', u'begin'] [u'juri', u'clear', u'toothfish', u'poach'] [u'labor', u'call', u'releas', u'treasuri', u'research'] [u'log', u'contractor', u'urg', u'truck', u'accid'] [u'hospit', u'hang', u'glider', u'crash'] [u'matthew', u'hayden', u'interview'] [u'melandri', u'set', u'pace', u'practic', u'valencia'] [u'melbourn', u'public', u'transport', u'fail', u'studi'] [u'support', u'seek', u'children', u'mental'] [u'muslim', u'group', u'condemn', u'anti', u'terror', u'law'] [u'nasa', u'scale', u'ambit', u'amid', u'fund', u'crisi'] [u'near', u'vehicl', u'torch', u'french', u'riot'] [u'northern', u'mariana', u'go', u'poll'] [u'consid', u'feral', u'anim', u'hunt'] [u'builder', u'pick', u'award'] [u'target', u'high', u'yield', u'tourist'] [u'nurs', u'pedal', u'mental', u'health', u'awar'] [u'opposit', u'call', u'govt', u'releas', u'treasuri'] [u'opposit', u'defend', u'town', u'camp', u'school'] [u'opposit', u'take', u'campaign', u'street'] [u'pakistan', u'revis', u'ferri', u'sink', u'toll'] [u'parti', u'goer', u'attack', u'perth', u'polic'] [u'payrol', u'report', u'leav', u'investor', u'loss'] [u'perth', u'rainfal', u'annual', u'averag'] [u'petrovski', u'trick', u'inspir', u'sydney', u'victori'] [u'polic', u'minist', u'deni', u'cover', u'complaint'] [u'pregnanc', u'counsel', u'fund', u'fall', u'short'] [u'prison', u'escap', u'pose', u'ident', u'twin'] [u'protest', u'clash', u'polic', u'america', u'summit'] [u'quak', u'respons', u'good', u'british', u'minist'] [u'quigley', u'cabinet', u'post'] [u'rain', u'end', u'south', u'africa', u'record'] [u'rough', u'sea', u'expect', u'lifesav', u'busi'] [u'search', u'continu', u'miss'] [u'shane', u'warn', u'dinesh', u'ramdin', u'interview'] [u'shelter', u'expect', u'public', u'hous', u'debat'] [u'skier', u'face', u'kosciuszko', u'upgrad'] [u'speaker', u'urg', u'abandon', u'busi'] [u'state', u'hous', u'benefit', u'disabl', u'peopl'] [u'suharto', u'hospit'] [u'suharto', u'health', u'condit', u'improv', u'exhaust'] [u'sink', u'trawler', u'leak', u'diesel', u'gulf'] [u'sydney', u'protest', u'terror', u'law', u'concern'] [u'taipan', u'razorback', u'break', u'lose', u'streak'] [u'advoc', u'seek', u'test', u'aborigin'] [u'tasmanian', u'continu', u'wind', u'damag', u'clean'] [u'thailand', u'produc', u'generic', u'treatment', u'bird'] [u'thousand', u'stage', u'anti', u'bush', u'protest', u'summit'] [u'threat', u'alert', u'erod', u'howard', u'credibl', u'beazley'] [u'tiger', u'look', u'build', u'competit', u'total'] [u'tiger', u'sword', u'bushrang', u'beller'] [u'tougher', u'test', u'public', u'hous', u'applic'] [u'treasuri', u'deni', u'prepar', u'cabinet', u'report'] [u'tunnel', u'bush', u'suit', u'iemma'] [u'turnbul', u'say', u'sedit', u'provis', u'anti'] [u'turnbul', u'urg', u'review', u'sedit', u'law'] [u'collid', u'train'] [u'unesco', u'honour', u'zorba', u'greek', u'compos'] [u'launch', u'offens', u'near', u'iraqi', u'syrian', u'border'] [u'senat', u'support', u'outlaw', u'prison', u'tortur'] [u'tell', u'repay', u'iraq', u'shoddi', u'work', u'report'] [u'valedictum', u'take', u'stake'] [u'viarsa', u'fishermen', u'glad', u'head', u'home'] [u'defend', u'melbourn', u'public', u'transport'] [u'unveil', u'game', u'transport', u'plan'] [u'villawood', u'hunger', u'striker', u'take', u'hospit'] [u'violenc', u'prompt', u'fear', u'ethiopia', u'stabil'] [u'announc', u'rottnest', u'develop', u'plan'] [u'warn', u'mop', u'tail'] [u'webber', u'pleas', u'sign', u'rosberg'] [u'webb', u'strike', u'distanc', u'japan'] [u'wenger', u'rebuff', u'mourinho', u'peac', u'deal'] [u'worsen', u'riot', u'spread', u'pari'] [u'yachti', u'prais', u'rescu', u'effort'] [u'deal', u'conserv', u'river', u'murray', u'water'] [u'counter', u'terror', u'role'] [u'defend', u'hydro', u'deal'] [u'black', u'step', u'gear', u'crush', u'wale'] [u'qaeda', u'oper', u'kill', u'iraq', u'offens'] [u'qaeda', u'suspect', u'kill', u'pakistan', u'blast'] [u'america', u'summit', u'highlight', u'free', u'trade', u'divis'] [u'ancient', u'church', u'underneath', u'isra', u'prison'] [u'arson', u'destroy', u'dick', u'johnson'] [u'aussi', u'hussein', u'lose', u'titl', u'fight', u'point'] [u'australian', u'okay', u'cruis', u'ship', u'attack'] [u'azerbaijan', u'detain', u'ukrainian', u'elect', u'monitor'] [u'bashir', u'sentenc', u'denial', u'pressur'] [u'blair', u'blast', u'complac', u'terror'] [u'blowhol', u'jump', u'land', u'woman', u'hospit'] [u'blue', u'control', u'waca'] [u'blue', u'steadi', u'progress', u'perth'] [u'blue', u'track', u'strong', u'total'] [u'bomber', u'dyson', u'assault'] [u'bracken', u'rout', u'west', u'indi'] [u'bullet', u'break', u'horror', u'streak'] [u'bush', u'push', u'free', u'trade', u'amid', u'anti', u'protest'] [u'bushrang', u'fight', u'surviv'] [u'bushrang', u'tiger', u'clash', u'even', u'pois'] [u'call', u'action', u'follow', u'cruis', u'liner', u'attack'] [u'canberra', u'airport', u'post', u'record', u'passeng', u'movement'] [u'caus', u'fatal', u'rail', u'crash', u'unknown'] [u'chanderpaul', u'lament', u'windi', u'worst', u'loss'] [u'cheer', u'greet', u'beazley', u'pledg', u'tear', u'reform'] [u'child', u'night', u'bushland'] [u'china', u'rule', u'bird', u'girl', u'death'] [u'citrus', u'crop', u'return', u'emerald', u'pack', u'shed'] [u'look', u'grassroot', u'recoveri'] [u'commentari', u'highlight', u'gabba'] [u'csiro', u'plan', u'ignor', u'nation', u'garrett'] [u'detent', u'destroy', u'hunger', u'striker', u'live'] [u'earthquak', u'aftershock', u'hit', u'pakistan'] [u'ecstasi', u'bulk', u'buyer', u'warn', u'jail', u'term'] [u'exercis', u'better', u'diet', u'lengthen', u'live'] [u'farmer', u'welcom', u'extra', u'drought', u'fund'] [u'favour', u'weather', u'eas', u'diesel', u'spill', u'threat'] [u'franc', u'strong', u'wallabi'] [u'french', u'enjoy', u'doubl', u'australian'] [u'gibernau', u'grab', u'pole', u'valencia'] [u'govt', u'seek', u'wider', u'terror', u'power', u'militari'] [u'govt', u'militari', u'shoot', u'kill', u'power'] [u'hawk', u'upset', u'wildcat', u'perth'] [u'hill', u'plan', u'role', u'defenc', u'counter', u'terror'] [u'hill', u'put', u'cooper', u'health', u'agenda'] [u'hospit', u'unprepar', u'terrorist', u'attack', u'aftermath'] [u'hous', u'sale', u'bath', u'wife'] [u'hous', u'program', u'benefit', u'incom', u'earner'] [u'hundr', u'arrest', u'continu', u'pari', u'unrest'] [u'iemma', u'tunnel', u'joke', u'poor', u'tast'] [u'india', u'delay', u'border', u'open', u'quak', u'victim'] [u'indigen', u'owner', u'stage', u'dump', u'protest', u'sydney'] [u'inter', u'seri', u'hop', u'dent', u'draw', u'lazio'] [u'interview', u'brett', u'nathan', u'bracken'] [u'kangaroo', u'great', u'britain'] [u'klinger', u'lead', u'victorian', u'fight'] [u'klitschko', u'pull', u'titl', u'bout', u'rahman'] [u'kosciuszko', u'increas', u'exempt', u'defend'] [u'lara', u'sarwan', u'windi', u'lunch'] [u'metcash', u'enter', u'second', u'phase', u'foodland', u'purchas'] [u'evid', u'need', u'justifi', u'demerit'] [u'foreign', u'fishermen', u'detain', u'boat', u'seiz'] [u'mori', u'star', u'glori', u'upset', u'unit'] [u'netbal', u'secur', u'seri', u'jamaica'] [u'anti', u'terror', u'power'] [u'zealand', u'green', u'parti', u'leader', u'die'] [u'advic', u'say', u'legal', u'basi', u'nuclear', u'dump'] [u'opposit', u'seek', u'inquiri', u'ashourn', u'affair'] [u'osasuna', u'stay', u'spain'] [u'palestinian', u'mistak', u'gunman', u'die'] [u'passeng', u'escap', u'pirat', u'attack'] [u'patienc', u'wicket', u'virtu', u'expressman'] [u'philippin', u'polic', u'arrest', u'wrong', u'milit'] [u'pirat', u'shoot', u'cruis', u'ship', u'somalia'] [u'polic', u'control', u'ethiopian', u'capit'] [u'pont', u'warn', u'complac'] [u'pope', u'clergi', u'polici', u'boost', u'anglican', u'number'] [u'power', u'pole', u'place', u'poster', u'nairn'] [u'prison', u'system', u'capac', u'disput'] [u'privaci', u'law', u'target', u'peep', u'tom'] [u'project', u'document', u'tiwi', u'histori'] [u'public', u'school', u'starv', u'fund', u'princip'] [u'question', u'militari', u'involv'] [u'quick', u'wicket', u'crippl', u'windi'] [u'ramo', u'horta', u'make', u'plea', u'doctor'] [u'ranger', u'deni', u'crisi', u'draw', u'don'] [u'ranger', u'rebound', u'beat'] [u'recherch', u'plan', u'dismiss'] [u'rehab', u'servic', u'help', u'children', u'reach', u'potenti'] [u'ricki', u'pont', u'interview'] [u'riot', u'continu', u'franc'] [u'school', u'burn', u'pari', u'riot', u'enter', u'night'] [u'crush', u'death', u'india', u'stamped'] [u'snowsil', u'claim', u'noosa', u'peat'] [u'speed', u'camera', u'total', u'solut', u'death', u'toll'] [u'springbok', u'fight', u'defeat', u'puma'] [u'state', u'organis', u'major', u'trauma', u'servic', u'abbott'] [u'suharto', u'leav', u'hospit'] [u'sunni', u'politician', u'serious', u'injur', u'attack'] [u'symond', u'bat', u'bull', u'adelaid', u'match'] [u'symond', u'bat', u'bull', u'solid', u'posit'] [u'tasmania', u'audit', u'surgic', u'death'] [u'magic', u'go', u'jone'] [u'kill', u'queensland', u'road'] [u'sayyaf', u'leader', u'arrest', u'arroyo'] [u'tunnel', u'construct', u'compani', u'say', u'damag', u'unit', u'safe'] [u'demand', u'access', u'guantanamo', u'detaine'] [u'unfanc', u'wigan', u'cement', u'second', u'place'] [u'union', u'predict', u'grow', u'membership', u'counter'] [u'unrest', u'spread', u'parisian', u'tire', u'violenc'] [u'china', u'reach', u'deal', u'textil', u'import'] [u'forc', u'face', u'sporad', u'resist', u'iraq'] [u'releas', u'bahraini', u'guantanamo'] [u'refund', u'iraq', u'halliburton', u'work'] [u'upbeat', u'despit', u'america', u'summit', u'divis'] [u'bite', u'bullet', u'school', u'seatbelt'] [u'watson', u'injuri', u'complic', u'select', u'issu'] [u'windi', u'earli', u'troubl'] [u'zimbabw', u'opposit', u'wont', u'senat'] [u'kill', u'china', u'accid'] [u'rise', u'ballarat', u'univers', u'staff'] [u'minist', u'push', u'nation', u'park', u'discount'] [u'send', u'letter', u'bali', u'arrest'] [u'alburi', u'athlet', u'win', u'freycinet', u'challeng'] [u'leagu', u'surviv', u'socceroo', u'fail', u'say'] [u'anim', u'cruelti', u'park', u'caus', u'payment'] [u'anti', u'gambl', u'work', u'polic', u'council'] [u'survey', u'point', u'employ', u'slowdown'] [u'apvma', u'review', u'sheep', u'treat', u'chemic'] [u'armi', u'plan', u'caus', u'unnecessari', u'alarm'] [u'soldier', u'kill', u'middl', u'east'] [u'aspirin', u'help', u'prevent', u'skin', u'cancer'] [u'aussi', u'tell', u'cruis', u'liner', u'attack'] [u'australian', u'soldier', u'kill', u'middl', u'east', u'accid'] [u'australian', u'warn', u'french', u'riot', u'continu'] [u'awa', u'fund', u'link', u'anger', u'univers', u'lectur'] [u'backbench', u'forc', u'welfar', u'work', u'chang'] [u'beatti', u'back', u'decis', u'publicis', u'terror'] [u'berdych', u'upset', u'ljubic', u'thrill', u'pari', u'final'] [u'betfair', u'confid', u'onlin', u'game', u'provid'] [u'bird', u'caus', u'humanitarian', u'crisi', u'care'] [u'bird', u'matter', u'water', u'close', u'school'] [u'bishop', u'urg', u'caution', u'chang'] [u'blood', u'bank', u'campaign', u'promot', u'donat'] [u'blue', u'declar', u'strong', u'total'] [u'break', u'hill', u'clean', u'sever', u'storm'] [u'break', u'hill', u'declar', u'natur', u'disast', u'area'] [u'bryant', u'provid', u'cinderella', u'finish', u'season'] [u'bullet', u'high', u'drought', u'break'] [u'burma', u'capit'] [u'bush', u'back', u'democraci', u'swipe', u'chavez'] [u'oper', u'unbuckl', u'seatbelt', u'polici'] [u'captainci', u'wont', u'guarante', u'gregan', u'spot', u'horan'] [u'cashcard', u'figur', u'reflect', u'household', u'spend', u'drop'] [u'central', u'rural', u'properti', u'sell'] [u'cessnock', u'council', u'doubl', u'surplus'] [u'chirac', u'promis', u'defeat', u'rioter'] [u'branch', u'darwin', u'palmerston'] [u'cocain', u'trace', u'detect', u'river', u'thame', u'report'] [u'cold', u'add', u'pakistani', u'quak', u'victim', u'woe'] [u'commiss', u'educ', u'combat', u'illeg'] [u'committe', u'support', u'asean', u'treati', u'ratif'] [u'compani', u'sell', u'cattl', u'station'] [u'court', u'acquit', u'driver', u'fatal', u'crash'] [u'court', u'jail', u'sell', u'petrol', u'sniff', u'fuel'] [u'court', u'refus', u'bali', u'accus', u'polic', u'deal'] [u'court', u'hear', u'polic', u'applic', u'close', u'hotel'] [u'crash', u'driver', u'suffer', u'diabet', u'blackout'] [u'crossin', u'seek', u'nuclear', u'wast', u'law', u'probe'] [u'cruis', u'liner', u'attack', u'pirat', u'anchor'] [u'custom', u'bust', u'narcot', u'syndic'] [u'cyclist', u'strike', u'gold', u'moscow'] [u'cyclist', u'sue', u'melbourn', u'radio', u'station'] [u'demand', u'worker', u'see', u'apprenticeship', u'number', u'rise'] [u'democrat', u'seek', u'inquiri', u'terror', u'rush'] [u'democrat', u'seek', u'judici', u'inquiri', u'ashbourn'] [u'democrat', u'want', u'mislead', u'counsel', u'outlaw'] [u'derwent', u'valley', u'vie', u'livabl', u'communiti', u'award'] [u'detain', u'timores', u'asylum', u'seeker'] [u'dilshan', u'guid', u'lanka', u'rare', u'victori'] [u'doctor', u'head', u'hospit', u'breakthrough'] [u'dog', u'remov', u'hous', u'estat'] [u'doyl', u'plung', u'latest', u'newspol'] [u'draft', u'water', u'plan', u'discuss'] [u'driver', u'court', u'polic', u'worth'] [u'dump', u'plan', u'rais', u'tourism', u'threat', u'worri'] [u'epsom', u'develop', u'public'] [u'explos', u'spark', u'fatal', u'unit'] [u'extra', u'crew', u'bring', u'help', u'storm', u'aftermath'] [u'farmer', u'determin', u'solv', u'salin', u'problem'] [u'fatwa', u'issu', u'pari', u'rioter', u'polic'] [u'feder', u'health', u'fund', u'bureaucraci'] [u'game', u'volunt', u'complain', u'duti'] [u'reject', u'uruguay', u'request'] [u'fire', u'damag', u'home'] [u'fishermen', u'offer', u'catch', u'poacher', u'spawn'] [u'flood', u'hit', u'adelaid'] [u'fonterra', u'clear', u'wrongdo', u'food'] [u'boss', u'head', u'futur', u'fund'] [u'group', u'chairman', u'disappoint', u'remov'] [u'liber', u'die', u'battl', u'cancer'] [u'fund', u'flow', u'upgrad'] [u'futur', u'fund', u'legisl', u'introduc', u'soon'] [u'girl', u'injur', u'road', u'rage', u'incid'] [u'gold', u'coast', u'properti', u'price', u'continu', u'increas'] [u'govt', u'criticis', u'anti', u'terror', u'move'] [u'govt', u'green', u'light', u'ainsli', u'age', u'care', u'centr'] [u'govt', u'chang', u'countri', u'labor', u'confer'] [u'govt', u'releas', u'whitebait', u'manag', u'plan'] [u'govt', u'urg', u'poison', u'bait'] [u'govt', u'urg', u'ramp', u'paper', u'recycl'] [u'grain', u'qualiti', u'threaten', u'weekend', u'rain'] [u'group', u'question', u'rat', u'council', u'elect'] [u'high', u'attend', u'gambier', u'ralli'] [u'hope', u'fade', u'miss', u'fishermen'] [u'hospit', u'shortag', u'bird', u'confer', u'tell'] [u'immigr', u'employe', u'admit', u'access', u'confidenti'] [u'inflat', u'figur', u'push', u'rate', u'rise'] [u'internet', u'number', u'fall'] [u'iran', u'convert', u'uranium'] [u'iran', u'propos', u'mideast', u'peac', u'solut'] [u'kashmir', u'border', u'open', u'quak'] [u'kimberley', u'clean', u'pay'] [u'knife', u'wield', u'disarm', u'polic'] [u'labor', u'question', u'time', u'counter', u'terror'] [u'lack', u'high', u'speed', u'internet', u'threaten', u'region'] [u'late', u'penalti', u'give', u'real', u'madrid', u'home'] [u'late', u'surg', u'keep', u'juve', u'clear', u'milan'] [u'lectur', u'call', u'better', u'understand', u'age'] [u'ljubic', u'join', u'kooyong', u'classic', u'field'] [u'macgil', u'confid', u'test', u'return'] [u'mackay', u'mater', u'hospit', u'seek', u'specialist'] [u'arrest', u'heroin', u'destin'] [u'charg', u'fatal'] [u'jail', u'share', u'movi', u'file'] [u'question', u'bomb'] [u'manufactur', u'plant', u'work', u'stop', u'fatal'] [u'mauresmo', u'captur', u'straight', u'philadelphia', u'titl'] [u'mayor', u'urg', u'venu', u'drink', u'price'] [u'mccain', u'farmer', u'begin', u'mediat', u'potato', u'price'] [u'mcevoy', u'releas', u'hospit'] [u'meet', u'kick', u'fight', u'save', u'brown', u'hill', u'pool'] [u'melandri', u'end', u'season', u'high', u'valencia'] [u'meteor', u'shower', u'like', u'caus', u'light'] [u'minist', u'appal', u'time', u'silcraft', u'loss'] [u'minist', u'back', u'push', u'melbourn', u'public', u'transport'] [u'miss', u'man', u'bodi', u'identifi'] [u'public', u'debat', u'seek', u'age', u'care', u'health'] [u'moroccan', u'stowaway', u'death', u'probe'] [u'mourinho', u'dismiss', u'unit', u'titl', u'hop'] [u'attack', u'govt', u'public', u'hous', u'delay'] [u'continu', u'fight', u'clear'] [u'navi', u'ship', u'head', u'home', u'voyag'] [u'newcastl', u'featur', u'latest', u'superman', u'flick'] [u'recruit', u'power', u'train'] [u'way', u'need', u'provid', u'hand', u'teach'] [u'nguyen', u'support', u'voic', u'death', u'penalti', u'opposit'] [u'korea', u'nuclear', u'talk', u'resum'] [u'senat', u'back', u'dump', u'deal'] [u'wine', u'import', u'rise'] [u'obrien', u'notch', u'blue', u'build', u'total'] [u'opposit', u'hit', u'govt', u'follow', u'highway'] [u'outback', u'develop', u'highlight', u'cameron', u'corner'] [u'outback', u'facil', u'begin', u'process', u'wild', u'game'] [u'pari', u'riot', u'continu'] [u'perth', u'galleri', u'join', u'fight', u'cane', u'toad'] [u'peruvian', u'presid', u'arrest', u'chile'] [u'recal', u'urg', u'chang', u'month'] [u'deni', u'tri', u'workplac', u'chang'] [u'welcom', u'swedish', u'royal'] [u'polic', u'probe', u'horsham', u'bash', u'victim', u'death'] [u'polic', u'seek', u'assist', u'hoon', u'crackdown'] [u'polic', u'seek', u'inform', u'bodi', u'tent'] [u'polic', u'unabl', u'rule', u'umbakumba', u'school'] [u'potter', u'premier', u'work', u'magic', u'star'] [u'pressur', u'increas', u'senat', u'oppos', u'nuclear'] [u'princess', u'make', u'splash', u'eden'] [u'princip', u'attack', u'teacher', u'recruit', u'scheme'] [u'privat', u'land', u'threaten', u'lower', u'great', u'southern'] [u'properti', u'crime', u'rise', u'affluenc', u'increas'] [u'prostitut', u'teacher', u'revel', u'forc', u'chang'] [u'prostitut', u'control'] [u'psychologist', u'fear', u'chang', u'fractur'] [u'public', u'school', u'control', u'teacher', u'recruit'] [u'rain', u'interrupt', u'redback', u'bull', u'clash'] [u'rain', u'mar', u'redback', u'bull', u'clash'] [u'rain', u'upset', u'string', u'event'] [u'warn', u'rat', u'rise'] [u'redback', u'lose', u'earli', u'wicket'] [u'cross', u'back', u'drink', u'water', u'donat', u'palm'] [u'refresh', u'cohen', u'return', u'england', u'wing'] [u'research', u'look', u'mother', u'natur', u'anti', u'foul'] [u'research', u'shed', u'light', u'link'] [u'research', u'show', u'hous', u'afford', u'reach'] [u'resourc', u'sector', u'pull', u'market'] [u'roch', u'plan', u'antivir', u'drug', u'million', u'peopl'] [u'rogu', u'bonfir', u'night', u'firework', u'injur'] [u'sale', u'sausag', u'win', u'kabana', u'stake'] [u'school', u'rais', u'fund', u'pay', u'teacher', u'salari', u'union'] [u'sharehold', u'demand', u'apolog', u'wine', u'boss'] [u'societi', u'tell', u'offic'] [u'simul', u'truck', u'crash', u'highlight', u'concern'] [u'smith', u'steer', u'south', u'africa', u'victori'] [u'somalian', u'convoy', u'attack', u'dead'] [u'death', u'care', u'suspici', u'commission'] [u'sorenstam', u'make', u'histori', u'japan'] [u'speaker', u'demand', u'better', u'behaviour'] [u'state', u'urg', u'follow', u'lead', u'seatbelt'] [u'steal', u'wag', u'remain', u'unpaid'] [u'storm', u'forc', u'evacu', u'break', u'hill', u'home'] [u'strait', u'fishermen', u'label', u'nation', u'park', u'report', u'bias'] [u'studi', u'investig', u'flood', u'protect', u'measur'] [u'swedish', u'royal', u'begin', u'week', u'long', u'visit'] [u'sydney', u'unit', u'owner', u'give', u'green', u'light', u'return'] [u'taliban', u'chief', u'call', u'uniti', u'troop'] [u'tasmania', u'boost', u'timor', u'lest', u'care'] [u'terrorist', u'cruis', u'liner', u'attack', u'downer'] [u'thailand', u'rule', u'autonomi', u'south'] [u'thirteen', u'kill', u'china', u'coal', u'explos'] [u'tiger', u'collaps', u'hand', u'bushrang', u'victori'] [u'tiger', u'troubl', u'chase'] [u'toddler', u'serious', u'injur', u'attack'] [u'toddler', u'reattach', u'attack'] [u'tornado', u'kill'] [u'tourist', u'cliff', u'fall', u'accid', u'polic'] [u'tribut', u'flow', u'soldier', u'kill', u'train'] [u'union', u'want', u'bulli', u'work'] [u'envoy', u'urg', u'probe', u'secret', u'prison'] [u'union', u'fear', u'indigen', u'school', u'closur'] [u'unit', u'deep', u'chelsea'] [u'tornado', u'death', u'toll', u'rise'] [u'tornado', u'kill', u'injur', u'dozen'] [u'vaughan', u'injur', u'england', u'bat', u'improv'] [u'effort', u'help', u'lower', u'drown', u'rate'] [u'warrior', u'struggl', u'blue', u'onslaught'] [u'water', u'skier', u'hospit', u'lake', u'mishap'] [u'watson', u'doubt', u'second', u'test'] [u'watson', u'sidelin', u'month'] [u'wellington', u'promot', u'tour', u'reschedul'] [u'whitlam', u'hand', u'alpha', u'omega'] [u'whitlam', u'hand', u'paper'] [u'whitlam', u'donat', u'dismiss', u'letter'] [u'wineri', u'hail', u'water', u'save', u'deal'] [u'wollongong', u'council', u'justifi', u'photograph'] [u'workchoic', u'brochur', u'trash', u'fairer', u'cover'] [u'world', u'bank', u'warn', u'huge', u'cost', u'pandem'] [u'detain', u'overnight', u'raid'] [u'dead', u'tornado', u'destruct'] [u'refus', u'sign', u'water', u'agreement'] [u'adelaid', u'court', u'drug', u'charg', u'refus'] [u'level', u'cross', u'crash', u'avoid'] [u'launch', u'crime', u'crackdown'] [u'airlin', u'take', u'port', u'augusta'] [u'alli', u'health', u'scholarship', u'offer', u'boost', u'rural'] [u'attempt', u'amend', u'sedit', u'law'] [u'andrew', u'confirm', u'welfar', u'packag', u'chang'] [u'hous', u'raid', u'sydney'] [u'anti', u'terror', u'law', u'threaten', u'aborigin', u'custodi'] [u'anti', u'terror', u'raid', u'surpris', u'muslim', u'communiti'] [u'dead', u'spate', u'iraq', u'bomb'] [u'aussi', u'complet', u'clean', u'sweep', u'jamaican', u'seri'] [u'australia', u'prepar', u'nuclear', u'terrorist'] [u'bali', u'blame', u'downer'] [u'banana', u'research', u'levi', u'ballot', u'send', u'grower'] [u'ban', u'secur', u'feder', u'road', u'fund'] [u'benbrika', u'deni', u'terrorist', u'activ'] [u'bigger', u'kosciuszko', u'entri', u'attack'] [u'bird', u'kill', u'vietnames', u'offici', u'say'] [u'blair', u'forc', u'wind', u'anti', u'terror'] [u'bolton', u'spur'] [u'bomber', u'care', u'manag', u'dyson', u'recoveri'] [u'britain', u'honour', u'corr'] [u'british', u'govt', u'push', u'detent', u'plan'] [u'break', u'hill', u'councillor', u'warn', u'pool', u'debt'] [u'break', u'hill', u'water', u'suppli', u'boost'] [u'bureau', u'survey', u'flora', u'fauna', u'chang'] [u'bush', u'defend', u'handl', u'terror', u'suspect'] [u'tasmanian', u'local', u'artist'] [u'call', u'clean', u'fight', u'state', u'elect'] [u'cameraman', u'attack', u'outsid', u'court'] [u'compon', u'maker', u'worker'] [u'cautious', u'optim', u'pakistan', u'quak', u'survivor'] [u'china', u'reach', u'textil', u'trade', u'agreement'] [u'chines', u'paint', u'fetch'] [u'clean', u'wild', u'storm', u'continu', u'break', u'hill'] [u'climat', u'chang', u'high', u'agenda', u'hobart', u'meet'] [u'cloncurri', u'host', u'citi', u'countri', u'footi', u'clash'] [u'coff', u'youth', u'crime', u'problem', u'stat'] [u'comment', u'seek', u'walk', u'track', u'plan'] [u'compress', u'workplac', u'death'] [u'concern', u'land', u'clear', u'agreement'] [u'confer', u'shed', u'light', u'healthi', u'age'] [u'cooper', u'buyback', u'match', u'lion', u'share', u'offer'] [u'coron', u'close', u'case', u'miss', u'teenag'] [u'council', u'critic', u'umbakumba', u'nurs', u'withdraw'] [u'councillor', u'tour', u'wind', u'farm', u'site'] [u'council', u'blame', u'adelaid', u'flood', u'minist', u'say'] [u'council', u'highlight', u'need', u'jetti', u'repair'] [u'court', u'tell', u'suspect', u'discuss', u'suicid', u'bomb'] [u'critic', u'wallabi', u'warrant', u'say', u'latham'] [u'half', u'year', u'profit'] [u'custom', u'confid', u'drug', u'bust', u'deter'] [u'dalbi', u'hous', u'australia', u'grain', u'ethanol', u'plant'] [u'darwin', u'mayor', u'want', u'flag', u'showcas', u'proper'] [u'davenport', u'clijster', u'duel', u'year'] [u'dean', u'leav', u'glori'] [u'debat', u'continu', u'evacu', u'centr'] [u'dolphin', u'resort', u'expans', u'expect', u'bring', u'tourist'] [u'durbridg', u'duel', u'iron'] [u'elect', u'surgeri', u'wait', u'list', u'continu', u'grow'] [u'deliv', u'island', u'iron', u'recommend'] [u'monitor', u'palestinian', u'border', u'rafah'] [u'famili', u'evacu', u'flash', u'flood', u'north'] [u'father', u'wont', u'charg', u'daughter', u'heat', u'stress'] [u'uruguay', u'kick', u'compromis'] [u'fijian', u'plead', u'guilti', u'sydney', u'man', u'murder'] [u'kill', u'southern', u'thailand', u'violenc'] [u'guantanamo', u'detaine', u'charg'] [u'flash', u'flood', u'caus', u'evacu', u'central'] [u'flood', u'forc', u'town', u'resid', u'evacu'] [u'forum', u'shed', u'light', u'problem', u'gambl'] [u'surviv', u'roll'] [u'franc', u'crack', u'rioter'] [u'fraud', u'claim', u'cast', u'shadow', u'azerbaijan', u'elect'] [u'french', u'govern', u'approv', u'curfew', u'power'] [u'govt', u'justifi', u'terror', u'concern'] [u'govt', u'chang', u'travel', u'advic'] [u'govt', u'urg', u'porn'] [u'govt', u'water', u'welfar', u'work', u'packag'] [u'grave', u'obsess', u'mobil', u'phone', u'grow'] [u'green', u'group', u'seek', u'water', u'qualiti', u'report', u'answer'] [u'green', u'forest', u'hunt', u'worri'] [u'gregan', u'wallabi', u'back', u'say', u'gaffney'] [u'group', u'commit', u'jihad', u'court', u'hear'] [u'hamersley', u'iron', u'get', u'expans', u'green', u'light'] [u'hewitt', u'master'] [u'high', u'court', u'swear', u'femal', u'judg'] [u'howard', u'hit', u'critic', u'nation', u'secur'] [u'howard', u'suggest', u'raid', u'vindic', u'law', u'rush'] [u'iemma', u'releas', u'lane', u'cove', u'document'] [u'illeg', u'fishermen', u'oper', u'south'] [u'immigr', u'dept', u'question', u'moroccan', u'stowaway'] [u'implant', u'prevent', u'blind', u'diabet'] [u'indigen', u'group', u'work', u'save', u'cultur'] [u'internet', u'access', u'see', u'vital', u'lift', u'region'] [u'investig', u'begin', u'stowaway', u'death'] [u'investig', u'launch', u'pearl', u'boat', u'death'] [u'chang', u'toll', u'howard', u'actu'] [u'isra', u'parliament', u'reject', u'sharon', u'cabinet'] [u'jail', u'lawyer', u'artwork', u'auction'] [u'japan', u'whale', u'program', u'break', u'intern'] [u'kangaroo', u'blame', u'spread', u'danger', u'weed'] [u'kangaroo', u'wing'] [u'karen', u'hunt'] [u'kate', u'hudson', u'head', u'court', u'weight', u'stori'] [u'kazu', u'expect', u'tough', u'test', u'australia'] [u'keelti', u'seek', u'suppress', u'terror', u'alleg'] [u'kiwi', u'maxi', u'target', u'sydney', u'hobart', u'record'] [u'labor', u'renew', u'push', u'royal', u'commiss'] [u'langer', u'unavail', u'hobart', u'test'] [u'leader', u'critic', u'indigen', u'consult'] [u'leigh', u'radford'] [u'lennon', u'accus', u'inappropri', u'betfair', u'deal'] [u'letter', u'influenc', u'arrest', u'bali', u'court', u'tell'] [u'libbi', u'lurid', u'book', u'demand'] [u'liber', u'appoint', u'buswel', u'deputi', u'role'] [u'lleyton', u'injuri', u'continu'] [u'local', u'govern', u'fund', u'canberra'] [u'locust', u'number', u'swell', u'victoria'] [u'arrest', u'bash'] [u'charg', u'fake', u'death'] [u'mayor', u'problem', u'bridg'] [u'meatwork', u'take', u'foreign', u'worker'] [u'meet', u'focus', u'muswellbrook', u'secur'] [u'melbourn', u'toddler', u'stabl', u'attack'] [u'migrat', u'program', u'reduc', u'skill', u'shortag'] [u'miner', u'announc', u'appoint'] [u'minist', u'make', u'malle', u'fowl', u'project', u'visit'] [u'minist', u'rule', u'legal', u'action', u'japanes'] [u'miss', u'safe'] [u'morley', u'lament', u'lion', u'mistak'] [u'movi', u'guzzl', u'marathon', u'set', u'world', u'record'] [u'say', u'elector', u'oppos', u'chang'] [u'say', u'propos', u'nipper', u'photo', u'go'] [u'murrayland', u'lowest', u'broadband', u'coverag'] [u'survey', u'reveal', u'fall', u'busi', u'condit'] [u'nation', u'park', u'blaze', u'get', u'smaller'] [u'aflca', u'boss', u'reflect', u'challeng'] [u'shire', u'admin', u'build', u'target'] [u'commonwealth', u'game', u'link', u'terror', u'raid'] [u'north', u'queensland', u'lag', u'broadband', u'servic'] [u'farmer', u'face', u'major', u'hike', u'water', u'cost'] [u'southern', u'highland', u'get', u'good', u'rain'] [u'nuclear', u'dump', u'debat', u'adjourn'] [u'price', u'fall', u'boost', u'market'] [u'opal', u'comm', u'game'] [u'pacif', u'countri', u'hold', u'anti', u'terror', u'readi'] [u'pacif', u'highway', u'safeti', u'meet', u'today'] [u'pakistan', u'rais', u'quak', u'death', u'toll'] [u'pharmacist', u'supermarket', u'chemist'] [u'defend', u'decis', u'pulp', u'brochur'] [u'polic', u'confid', u'robinval', u'aborigin', u'night'] [u'polic', u'dismiss', u'drug', u'crime', u'claim'] [u'polic', u'hunt', u'liquor', u'store', u'bandit'] [u'polic', u'stawel', u'drug', u'arrest'] [u'polic', u'probe', u'shoot', u'amid', u'anti', u'terror', u'raid'] [u'polic', u'rescu', u'famili', u'strand', u'derwent'] [u'polic', u'shoot', u'terror', u'suspect'] [u'polic', u'boost', u'random', u'breath', u'test'] [u'pressur', u'step', u'lake', u'fund'] [u'princ', u'charl', u'camilla', u'wrap', u'trip'] [u'question', u'rais', u'child', u'death', u'rate', u'figur'] [u'raid', u'foil', u'terrorist', u'attack', u'polic', u'chief'] [u'rain', u'wash', u'adelaid'] [u'redund', u'step', u'yeoval', u'health'] [u'reef', u'studi', u'focus', u'carbon', u'dioxid', u'impact'] [u'region', u'report', u'offer', u'mix', u'result', u'illawarra'] [u'renew', u'push', u'standardis', u'daylight', u'save'] [u'report', u'find', u'govern', u'fail', u'disabl', u'communiti'] [u'report', u'highlight', u'high', u'number', u'senior', u'work'] [u'report', u'highlight', u'riverina', u'woe'] [u'report', u'reveal', u'lane', u'cove', u'tunnel', u'path', u'move'] [u'report', u'show', u'coast', u'prepar', u'sustain', u'growth'] [u'resourc', u'bank', u'sector', u'boost', u'market'] [u'tinto', u'question', u'safeti', u'levi', u'cost'] [u'riot', u'continu', u'franc'] [u'appoint', u'heart', u'coach'] [u'rocki', u'councillor', u'want', u'action', u'mosquito'] [u'roger', u'lead', u'fight'] [u'russia', u'firm', u'bird', u'outbreak'] [u'govt', u'websit', u'call', u'anti', u'messag'] [u'salvat', u'armi', u'pressur', u'vinni'] [u'secur', u'boost', u'plan', u'forestri', u'machineri'] [u'senat', u'dismiss', u'fear', u'nuclear', u'dump'] [u'showground', u'nois', u'investig'] [u'societi', u'reject', u'council', u'request', u'leav'] [u'socceroo', u'consid', u'gambl', u'kewel'] [u'somali', u'water', u'control'] [u'south', u'african', u'woman', u'kill', u'swarm', u'be'] [u'south', u'east', u'mental', u'health', u'worker'] [u'spacewalk', u'captur'] [u'stinger', u'attack', u'close', u'beach'] [u'strike', u'millmerran', u'power', u'station'] [u'student', u'return', u'water', u'scare'] [u'survey', u'reveal', u'region', u'life', u'shortcom'] [u'suspect', u'custodi', u'anti', u'terror', u'raid'] [u'swedish', u'queen', u'take', u'canberra', u'sight'] [u'sydney', u'tunnel', u'path', u'move', u'safeti', u'reason'] [u'tasmanian', u'govt', u'move', u'safeguard', u'worker', u'right'] [u'opposit', u'renew', u'call', u'health', u'minist'] [u'telstra', u'ask', u'chang', u'site', u'phone', u'tower'] [u'terror', u'suspect', u'appear', u'melbourn', u'court'] [u'terror', u'suspect', u'undergo', u'surgeri'] [u'terrorist', u'attack', u'foil', u'polic'] [u'thiev', u'target', u'market', u'place', u'newsag'] [u'bali', u'bomb', u'polic'] [u'weed', u'thrive', u'extend', u'spell'] [u'tourism', u'chief', u'highlight', u'fall', u'japanes', u'tourist'] [u'tree', u'put', u'stop', u'train', u'trip'] [u'woomera', u'escap'] [u'union', u'deliv', u'mail', u'centr', u'loss', u'warn'] [u'union', u'membership', u'increas', u'amidst', u'chang'] [u'union', u'urg', u'staff', u'turn', u'offer'] [u'nuclear', u'chief', u'say', u'iran', u'transpar'] [u'nuclear', u'chief', u'search', u'airport'] [u'drone', u'crash', u'iran'] [u'vow', u'push', u'ahead', u'hick', u'trial'] [u'vote', u'western', u'victoria'] [u'vuelta', u'star', u'hera', u'ban', u'suspect', u'test'] [u'beef', u'processor', u'debt', u'blow'] [u'want', u'bandit', u'kill', u'india'] [u'warrior', u'forc', u'follow'] [u'warrior', u'resolv', u'second', u'inning'] [u'water', u'ski', u'trial', u'restrict', u'elit', u'athlet'] [u'welfar', u'work', u'chang', u'pathet', u'opposit', u'say'] [u'wellington', u'shire', u'recognit', u'local'] [u'whale', u'fleet', u'set', u'sail', u'antarct'] [u'woewodin', u'aim', u'redempt', u'roo'] [u'timores', u'entitl', u'claim', u'asylum', u'advoc'] [u'yahoo', u'tivo', u'bring', u'closer'] [u'defenc', u'medic', u'assist', u'pakistan', u'relief', u'effort'] [u'adelaid', u'flood', u'woe', u'continu'] [u'afghanistan', u'awar', u'report', u'secret', u'jail'] [u'offic', u'help', u'sudanes', u'peac', u'effort'] [u'back', u'outgo', u'hospit', u'chief'] [u'land', u'perman', u'polic', u'presenc'] [u'asic', u'put', u'resort', u'share', u'offer'] [u'aussi', u'standard', u'pool', u'coughlin'] [u'australia', u'play', u'wale', u'scotland', u'fiji', u'ahead'] [u'bail', u'refus', u'accus', u'fake', u'death'] [u'bail', u'refus', u'terror', u'suspect'] [u'bank', u'resourc', u'sector', u'drag'] [u'beatti', u'step', u'implement', u'anti', u'terror'] [u'blaze', u'caus', u'damag', u'koomarri', u'centr'] [u'blaze', u'destroy', u'unoccupi', u'hous'] [u'blue', u'cruis', u'home', u'perth'] [u'boe', u'continu', u'disput', u'talk'] [u'bomb', u'scare', u'put', u'emerg', u'author', u'high', u'alert'] [u'boost', u'outback', u'tourism', u'train'] [u'bronco', u'grade', u'footi', u'rural', u'youngster'] [u'bull', u'bat', u'redback', u'declar'] [u'busi', u'beat', u'futur'] [u'continu', u'backpack', u'accommod', u'chang'] [u'campaign', u'criticis', u'offend'] [u'canberra', u'arboretum', u'plan'] [u'crash', u'shop', u'window', u'trap'] [u'chief', u'justic', u'notr', u'dame', u'post'] [u'child', u'right', u'advoc', u'win', u'sydney', u'peac', u'prize'] [u'child', u'suicid', u'rate', u'alarm', u'youth', u'commission'] [u'climat', u'chang', u'impact', u'magpi', u'breed'] [u'commission', u'fear', u'media', u'tip', u'suspect'] [u'commonwealth', u'urg', u'help', u'eas', u'illeg', u'fisher'] [u'concern', u'remain', u'greater', u'bunburi', u'region', u'scheme'] [u'consum', u'confid', u'bounc'] [u'coron', u'probe', u'fisher', u'duo', u'disappear'] [u'corri', u'promis', u'merci', u'wound', u'wallabi'] [u'council', u'act', u'eas', u'airli', u'beach', u'park', u'woe'] [u'council', u'apologis', u'memori', u'blunder'] [u'council', u'get', u'support', u'cycleway', u'path'] [u'council', u'green', u'light', u'extend', u'quarri', u'oper'] [u'councillor', u'protest', u'infrastructur', u'fund'] [u'council', u'stage', u'cost', u'shift', u'protest'] [u'council', u'urg', u'disobey', u'govt', u'asbesto', u'fluorid'] [u'council', u'weigh', u'bank', u'cost'] [u'courier', u'launch', u'tenni', u'circuit'] [u'court', u'examin', u'palm', u'inquest', u'evid', u'rule'] [u'court', u'tell', u'recent', u'search', u'falconio', u'remain'] [u'crown', u'casino', u'staff', u'hospit'] [u'cumnock', u'join', u'countri', u'hour', u'anniversari'] [u'davi', u'dwyer', u'unfair', u'contract', u'hear'] [u'dead', u'pigeon', u'rais', u'fear', u'bird', u'malaysia'] [u'deak', u'play', u'hamstr', u'injuri'] [u'dizzi', u'rofe', u'guid', u'redback', u'draw'] [u'doctor', u'rule', u'watson', u'summer'] [u'doctor', u'warn', u'public', u'bat', u'handl', u'threat'] [u'doubt', u'cast', u'gold', u'coast', u'market', u'campaign'] [u'downer', u'say', u'inquiri', u'exclud', u'govt'] [u'driver', u'die', u'highway', u'crash'] [u'earli', u'desalin', u'plant', u'result', u'encourag'] [u'eddi', u'review'] [u'emerg', u'servic', u'worker', u'meet', u'bendigo'] [u'england', u'mull', u'vaughan', u'fit'] [u'england', u'suffer', u'embarrass', u'tour', u'match', u'defeat'] [u'eugowra', u'flood', u'water', u'peak'] [u'europ', u'venus', u'express', u'readi', u'blast'] [u'evid', u'law', u'beef', u'tobacco', u'case'] [u'hospit', u'worker', u'lose', u'needlestick', u'compo', u'appeal'] [u'farmer', u'count', u'cost', u'floodwat', u'reced'] [u'father', u'get', u'life', u'sentenc', u'toddler', u'murder'] [u'feedback', u'seek', u'bateman', u'plan'] [u'forc', u'textil', u'factori', u'evacu'] [u'prefer', u'applic', u'drop'] [u'flood', u'emerg', u'eas', u'central', u'west'] [u'focus', u'turn', u'repair', u'break', u'hill', u'home'] [u'foreign', u'fishermen', u'frighten', u'solo', u'sailer'] [u'hold', u'indonesian', u'schoolgirl', u'behead'] [u'fraud', u'complaint', u'delay', u'final', u'afghan', u'vote', u'result'] [u'french', u'citi', u'impos', u'curfew', u'minor', u'riot'] [u'french', u'minist', u'delay', u'australia', u'trip'] [u'fresh', u'insight', u'terror', u'suspect'] [u'fuel', u'hike', u'tip', u'cost', u'farmer'] [u'fuel', u'price', u'expect', u'drop'] [u'fund', u'sport', u'hall', u'fame'] [u'gorokan', u'toddler', u'stab', u'polic'] [u'govt', u'accus', u'level', u'cross', u'briberi'] [u'govt', u'defend', u'motorway', u'construct', u'plan'] [u'govt', u'help', u'tiger', u'singapor', u'rout'] [u'govt', u'look', u'plug', u'loophol'] [u'govt', u'move', u'improv', u'canberra', u'intersect'] [u'govt', u'outlin', u'research', u'fund'] [u'govt', u'urg', u'commit', u'duck', u'hunt', u'season'] [u'gower', u'lead', u'roo', u'franc'] [u'greater', u'power', u'eas', u'pressur', u'region'] [u'green', u'group', u'forest', u'log'] [u'group', u'welfar', u'work', u'chang', u'fall', u'short'] [u'gunn', u'seek', u'dismiss', u'damag', u'claim'] [u'health', u'worker', u'action', u'stall', u'talk'] [u'hiddink', u'sidestep', u'talk', u'hostil'] [u'home', u'loan', u'rise', u'surpris', u'analyst'] [u'hope', u'roma', u'retain', u'extra', u'week', u'flight'] [u'hop', u'timor', u'deal', u'year'] [u'hous', u'financ', u'level', u'increas', u'surpris', u'analyst'] [u'hydrotherapi', u'fund', u'redirect', u'project'] [u'indigen', u'bodi', u'seek', u'fund', u'languag'] [u'indonesian', u'detaine', u'hold', u'darwin'] [u'indonesia', u'polic', u'battl', u'suspect', u'milit'] [u'bring', u'australia', u'centuri'] [u'debat', u'ahead', u'vote'] [u'islam', u'communiti', u'appeal', u'protect'] [u'jail', u'manag', u'suspend', u'escap'] [u'kearn', u'daughter', u'condit', u'improv'] [u'kimberley', u'group', u'cast', u'doubt', u'illeg', u'fish'] [u'lack', u'mainten', u'blame', u'failur'] [u'learn', u'centr', u'voic', u'unfair', u'treatment', u'concern'] [u'carr', u'win', u'crime', u'writer', u'book', u'honour'] [u'lion', u'send', u'roo', u'home', u'earli', u'nation'] [u'local', u'govt', u'group', u'get', u'broadband', u'push'] [u'local', u'meet', u'debat', u'anti', u'terror', u'law'] [u'longreach', u'student', u'win', u'section', u'nation'] [u'magistr', u'refus', u'bail', u'accus', u'pair'] [u'major', u'rule', u'juri'] [u'admit', u'involv', u'delhi', u'bomb', u'armi'] [u'plead', u'guilti', u'traffic', u'amphetamin'] [u'market', u'retreat', u'amid', u'hous', u'sector', u'concern'] [u'matterson', u'leav', u'raider', u'castleford'] [u'mayor', u'await', u'crowd', u'control', u'offer'] [u'mealamu', u'readi', u'rough', u'ride', u'irish'] [u'meat', u'council', u'back', u'move', u'abattoir', u'foreign'] [u'meet', u'determin', u'obstetrician', u'stay'] [u'megamart', u'store', u'chang', u'hand'] [u'memori', u'honour', u'leprosi', u'victim'] [u'milton', u'target', u'comer', u'record'] [u'miner', u'drill', u'gold', u'adelaid', u'hill'] [u'miner', u'look', u'gold', u'project'] [u'minist', u'proud', u'flood', u'relief', u'effort'] [u'motlop', u'settl', u'power'] [u'fear', u'highway', u'rout', u'cost', u'job'] [u'choos', u'rugbi', u'leagu', u'promot', u'visit'] [u'profit', u'top'] [u'clash', u'erupt', u'franc'] [u'newli', u'list', u'eye', u'expans'] [u'netbal', u'court', u'open'] [u'rush', u'extra', u'palm', u'drink', u'water'] [u'nurs', u'home', u'evacu', u'amid', u'flood'] [u'olymp', u'show', u'rock', u'potenti'] [u'opposit', u'criticis', u'bureaucrat', u'remov'] [u'opposit', u'seek', u'judici', u'inquiri', u'stash', u'cash'] [u'opposit', u'want', u'independ', u'probe', u'hospit'] [u'pair', u'await', u'bail', u'decis', u'terror', u'case'] [u'pelous', u'apologis', u'elbow', u'cannon'] [u'phar', u'lap', u'fake'] [u'philippin', u'probe', u'aust', u'miner', u'contamin'] [u'platypus', u'help', u'award', u'npws'] [u'blame', u'increas', u'terror', u'risk'] [u'deni', u'raid', u'anti', u'muslim'] [u'move', u'reassur', u'muslim', u'communiti'] [u'polic', u'better', u'violent', u'crime'] [u'polic', u'attack', u'sydney'] [u'polic', u'disarm', u'hospit', u'rampag'] [u'polic', u'investig', u'thornli', u'shoot'] [u'polic', u'seek', u'tare', u'shoot', u'wit'] [u'polic', u'review', u'consid', u'south', u'west', u'need'] [u'pont', u'keep', u'faith', u'katich', u'clark'] [u'power', u'station', u'worker', u'strike', u'workplac'] [u'princ', u'naseem', u'plot', u'comeback'] [u'probe', u'continu', u'dead', u'unit', u'blaze'] [u'probe', u'continu', u'pearl', u'worker', u'death'] [u'protest', u'chariti', u'dinner'] [u'union', u'odd', u'workplac', u'agreement'] [u'public', u'keep', u'dark', u'health', u'chang', u'councillor'] [u'public', u'urg', u'speak', u'famili', u'centr'] [u'idol', u'contest', u'victim', u'daylight', u'robberi'] [u'quick', u'attack', u'govt', u'betfair', u'deal'] [u'rain', u'offer', u'respit', u'southern', u'highland', u'farmer'] [u'redback', u'chase', u'victori'] [u'cross', u'call', u'victorian', u'blood', u'donor'] [u'region', u'airport', u'secur', u'risk', u'opposit'] [u'report', u'highlight', u'abus', u'risk', u'older', u'aborigin'] [u'report', u'highlight', u'elect', u'surgeri', u'wait', u'list'] [u'report', u'highlight', u'high', u'jobless', u'rate'] [u'report', u'highlight', u'hospit', u'distrust'] [u'report', u'reveal', u'england', u'profil'] [u'riot', u'decreas', u'amid', u'french', u'curfew', u'threat'] [u'robert', u'step', u'save', u'meander'] [u'roddick', u'join', u'shanghai', u'exodus'] [u'rush', u'anti', u'terror', u'tip', u'suspect'] [u'saddam', u'defenc', u'lawyer', u'shoot', u'dead'] [u'schooli', u'manag', u'board', u'chief', u'appoint'] [u'school', u'indigen', u'educ', u'honour'] [u'scullion', u'back', u'shorter', u'nuclear', u'dump', u'inquiri'] [u'offend', u'face', u'indefinit', u'jail', u'term'] [u'short', u'sharp', u'shock'] [u'shoot', u'suspect', u'charg', u'bedsid', u'hear'] [u'shoot', u'suspect', u'charg', u'attempt', u'murder'] [u'smoke', u'scare', u'virgin'] [u'southern', u'polic', u'chief', u'head', u'anti', u'terror'] [u'stop', u'silli', u'game', u'grella'] [u'stop', u'silli', u'game', u'socceroo'] [u'storm', u'damag', u'assess'] [u'super', u'slater'] [u'super', u'surf', u'titl', u'slater'] [u'survey', u'show', u'stay', u'home', u'christma'] [u'sydney', u'hous', u'raid'] [u'fail', u'woman', u'dead', u'hospit', u'toilet'] [u'govt', u'consid', u'public', u'place', u'photo'] [u'govt', u'unveil', u'game', u'amid', u'betfair'] [u'terror', u'group', u'accus', u'deni', u'bail'] [u'terror', u'threat', u'reignit', u'citizenship', u'debat'] [u'terror', u'suspect', u'move', u'high', u'secur', u'prison'] [u'charg', u'ireland', u'bank', u'raid'] [u'toowoomba', u'gladston', u'rail', u'line', u'develop'] [u'tough', u'time', u'ahead', u'bank'] [u'transport', u'issu', u'surfac', u'council', u'perform'] [u'line', u'post', u'loss'] [u'boss', u'name', u'manag', u'director'] [u'girl', u'wound', u'indonesian', u'shoot'] [u'ulan', u'coal', u'plan', u'discuss'] [u'union', u'reject', u'studi', u'citi', u'countri', u'educ'] [u'uruguay', u'coach', u'tactic', u'logist', u'woe'] [u'direct', u'forbid', u'tortur'] [u'renew', u'list', u'alleg', u'violat', u'religi'] [u'venus', u'express', u'begin', u'mission', u'success'] [u'voluntari', u'sell', u'scheme', u'spark', u'competit', u'fear'] [u'dentist', u'scholarship', u'plan'] [u'order', u'town', u'power'] [u'water', u'bomber', u'base', u'gambier'] [u'accus', u'spiritu', u'leader', u'benbrika'] [u'windi', u'bounc', u'bravo'] [u'wine', u'industri', u'join', u'riski', u'drink', u'campaign'] [u'workshop', u'offer', u'tourism', u'boost', u'local', u'firm'] [u'wright', u'tiger'] [u'introduc', u'electron', u'line', u'call'] [u'young', u'back', u'gregan'] [u'research', u'fund', u'boost'] [u'fix', u'lake', u'entranc'] [u'aborigin', u'flag', u'condom', u'health', u'award'] [u'tout', u'fund', u'drama'] [u'qaeda', u'claim', u'amman', u'blast', u'websit'] [u'call', u'portabl', u'provid', u'number'] [u'angri', u'african', u'torch', u'train', u'delay'] [u'terror', u'suspect', u'arrest', u'sydney'] [u'anti', u'terror', u'debat', u'kick'] [u'arsenal', u'sign', u'year', u'mexican'] [u'aspinal', u'join', u'call', u'nguyen', u'clemenc'] [u'atherton', u'tableland', u'centr'] [u'aussi', u'middleweight', u'soliman', u'face', u'contend'] [u'author', u'respond', u'factori', u'chemic', u'scare'] [u'author', u'thwart', u'coco', u'island', u'ammunit'] [u'inquiri', u'royal', u'commiss', u'power'] [u'focus', u'market', u'promot'] [u'bank', u'need', u'improv', u'servic', u'consum', u'group', u'say'] [u'blair', u'lose', u'counter', u'terror', u'vote'] [u'blast', u'kill', u'baghdad'] [u'bodi', u'appear', u'azahari', u'polic', u'chief'] [u'boxer', u'vitali', u'klitschko', u'retir'] [u'cctv', u'nation', u'guidelin'] [u'independ', u'assess', u'detaine'] [u'infrastructur', u'project', u'tape'] [u'canberra', u'univers', u'welcom', u'fund', u'boost'] [u'carmodi', u'leav', u'post'] [u'case', u'close', u'death', u'race', u'albatross'] [u'celtic', u'firm', u'battl'] [u'charg', u'lay', u'live', u'export', u'death'] [u'check', u'reveal', u'phar', u'lap', u'origin'] [u'china', u'report', u'bird', u'outbreak'] [u'christma', u'shopper', u'urg', u'bag'] [u'coalit', u'urg', u'review', u'sedit', u'law'] [u'coal', u'loader', u'help', u'boost', u'power', u'station'] [u'cole', u'nudg', u'ahead', u'tough', u'retail', u'time'] [u'concess', u'land', u'urban', u'leasehold'] [u'confer', u'tell', u'older', u'worker', u'need', u'option'] [u'council', u'leader', u'protest', u'resourc', u'shortfal'] [u'councillor', u'angri', u'allianc', u'move'] [u'council', u'settl', u'disput'] [u'crime', u'drop', u'record', u'north', u'coast', u'district'] [u'criminologist', u'question', u'crime', u'reduct', u'rat'] [u'crown', u'land', u'rent', u'chang', u'spark', u'concern', u'club'] [u'darwin', u'harbour', u'dredg', u'uncov', u'wwii', u'bomb', u'relic'] [u'debnam', u'target', u'tripodi', u'tunnel', u'hole'] [u'defeat', u'dim', u'clijsterss', u'hop', u'fairytal', u'finish'] [u'squad', u'join', u'search', u'miss', u'toddler'] [u'dont', u'fool', u'england', u'poor', u'form', u'warn', u'wasim'] [u'door', u'close', u'ballendella', u'school'] [u'doubt', u'rais', u'desalin', u'water', u'project'] [u'doubt', u'rais', u'elect', u'surgeri', u'claim'] [u'doubt', u'rais', u'shoalhaven', u'polic', u'level'] [u'dual', u'citizenship', u'terrorist', u'expel'] [u'dump', u'katich', u'lead', u'blue'] [u'elder', u'shock', u'plough', u'home'] [u'hunger', u'strike', u'vanston', u'urg'] [u'england', u'cook', u'cover', u'injur', u'vaughan'] [u'expenditur', u'review', u'head', u'govt', u'prioriti'] [u'explos', u'rock', u'amman', u'hotel'] [u'extra', u'rain', u'excus', u'wast', u'water'] [u'falconio', u'accus', u'abus', u'wit', u'court'] [u'famili', u'seek', u'help', u'grandmoth', u'killer'] [u'farmer', u'market', u'look', u'stallhold'] [u'fear', u'hold', u'telstra', u'research', u'job'] [u'fear', u'law', u'creat', u'tier', u'workforc'] [u'feder', u'nadal', u'draw', u'differ', u'master', u'group'] [u'feral', u'dog', u'blame', u'turtl', u'declin'] [u'ferguson', u'face', u'child', u'charg'] [u'fifa', u'step', u'world', u'kick', u'time'] [u'figur', u'fall', u'mackay', u'violent', u'crime'] [u'fingerprint', u'confirm', u'azahari', u'death', u'polic'] [u'firefight', u'battl', u'power', u'station', u'blaze'] [u'firefight', u'confid', u'park', u'blaze', u'contain'] [u'flood', u'affect', u'grower', u'grant'] [u'forest', u'commiss', u'maintain', u'harvest', u'plan', u'push'] [u'detaine', u'hospitalis', u'amid', u'hunger', u'strike'] [u'french', u'riot', u'lose', u'steam'] [u'time', u'job', u'plung', u'jobless', u'rate'] [u'fund', u'miner', u'extract', u'research'] [u'delay', u'select', u'nation', u'crunch', u'match'] [u'giant', u'panda', u'knot', u'thailand'] [u'glori', u'mori', u'negoti', u'troubl'] [u'govt', u'accus', u'neglig', u'scandal'] [u'govt', u'ask', u'ongo', u'fund', u'hour'] [u'govt', u'defend', u'chang', u'sick', u'leav'] [u'govt', u'deni', u'respons', u'roadwork', u'cost', u'blow'] [u'govt', u'green', u'light', u'coal'] [u'govt', u'refus', u'blanket', u'anti', u'vehicl', u'landmin'] [u'govt', u'commit', u'mulwala', u'site'] [u'govt', u'urg', u'extend', u'homeless', u'game', u'hous', u'plan'] [u'govt', u'victim', u'welcom', u'azahari', u'death'] [u'green', u'group', u'odd', u'timber', u'industri'] [u'green', u'betfair', u'legisl', u'chang'] [u'group', u'protest', u'croc', u'remov'] [u'hackett', u'lenton', u'lead', u'swimmer', u'year', u'nomin'] [u'hardi', u'half', u'year', u'profit'] [u'health', u'author', u'meet', u'famili', u'hospit'] [u'henri', u'magic', u'save', u'gallic', u'honour', u'costa', u'rica'] [u'hid', u'accus', u'doubl', u'standard'] [u'hiddink', u'mull', u'bresciano', u'fit'] [u'high', u'court', u'hear', u'wrong', u'life', u'claim'] [u'highway', u'revamp', u'rout', u'select', u'spotlight'] [u'hirsh', u'rejoin', u'labor', u'drink', u'drive', u'penalti'] [u'hockeyroo', u'gear', u'champion', u'trophi'] [u'hous', u'pass', u'debat', u'gag'] [u'howard', u'consid', u'cut', u'citizenship', u'convict'] [u'illeg', u'mine', u'creat', u'environ', u'concern'] [u'indigen', u'fisherman', u'unhappi', u'confisc'] [u'investig', u'continu', u'death'] [u'law', u'pass'] [u'japan', u'boost', u'drug', u'stockpil', u'combat', u'bird'] [u'johnson', u'hand', u'match'] [u'jone', u'back', u'gregan', u'perform'] [u'jone', u'take', u'blame', u'wallabi', u'lose', u'streak'] [u'joyc', u'oppos', u'sick', u'leav', u'rule'] [u'judg', u'overturn', u'speed', u'driver', u'jail', u'term'] [u'katich', u'symond', u'hodg'] [u'legisl', u'target', u'unpaid', u'fin'] [u'lennon', u'solo', u'work', u'onlin'] [u'local', u'volunt', u'offer', u'flood', u'help'] [u'local', u'join', u'commonwealth', u'game', u'baton', u'relay'] [u'local', u'take', u'petrol', u'price', u'accc', u'fair', u'trade'] [u'loeb', u'aim', u'record', u'break', u'year', u'perth'] [u'macgil', u'expect', u'test'] [u'machineri', u'help', u'tackl', u'burnett', u'river', u'water', u'weed'] [u'magistr', u'highlight', u'grow', u'drink', u'drive', u'case'] [u'charg', u'cannabi'] [u'get', u'month', u'prove', u'rehabilit'] [u'jail', u'credit', u'card', u'fraud', u'scheme'] [u'man', u'futur'] [u'mayor', u'beat', u'colleg', u'futur'] [u'mcginti', u'want', u'dual', u'citizen', u'guilti', u'terror'] [u'medic', u'research', u'institut', u'deliv', u'award'] [u'meteor', u'shower', u'startl', u'riverina', u'resid'] [u'millaa', u'millaa', u'fall', u'heritag', u'regist'] [u'miner', u'get', u'green', u'light', u'extend', u'gawler', u'craton'] [u'mix', u'southern', u'crime', u'stat'] [u'mori', u'keen', u'remain', u'glori'] [u'moroccan', u'stowaway', u'face', u'deport'] [u'optimist', u'propos', u'defenc', u'track'] [u'murray', u'malle', u'water', u'alloc', u'plan', u'start'] [u'hold', u'share', u'market'] [u'short', u'stay', u'centr', u'moot', u'koonana', u'resid'] [u'australian', u'amman', u'victim'] [u'chang', u'notic', u'palm', u'drink', u'water'] [u'immun', u'terror', u'howard'] [u'flood', u'damag', u'top'] [u'doctor', u'shortag', u'crisi', u'point'] [u'nuclear', u'dump', u'inquiri', u'short'] [u'unemploy', u'fall', u'year'] [u'omalley', u'share', u'shanghai', u'lead'] [u'open', u'invit', u'muslim', u'festiv', u'celebr'] [u'optus', u'half', u'year', u'profit', u'slide'] [u'ouyen', u'cathol', u'school', u'face', u'closur'] [u'pack', u'gold'] [u'parliament', u'tree', u'face', u'chop'] [u'pierc', u'battl', u'past', u'clijster', u'championship'] [u'pierc', u'down', u'dementieva'] [u'plan', u'track', u'kununurra', u'child', u'care', u'centr'] [u'polic', u'investig', u'pari', u'hilton', u'crash'] [u'polic', u'search', u'fail', u'miss', u'toddler'] [u'polic', u'review', u'bomb', u'threat', u'handl'] [u'polic', u'road', u'spike', u'chase'] [u'polic', u'work', u'confirm', u'azahari', u'death'] [u'powder', u'plane', u'spark', u'emerg'] [u'power', u'station', u'plan', u'look', u'certain'] [u'prospector', u'dig', u'buri', u'treasur'] [u'protest', u'demand', u'jarrah', u'forest', u'log'] [u'public', u'chanc', u'hear', u'fuel', u'price', u'polici'] [u'public', u'urg', u'look', u'snake', u'threat'] [u'question', u'rais', u'health', u'servic', u'financ'] [u'rail', u'station', u'make', u'heritag', u'list'] [u'rape', u'rise', u'report', u'north'] [u'report', u'dispel', u'myth', u'plantat', u'expans', u'link'] [u'report', u'find', u'bank', u'invest', u'custom'] [u'research', u'studi', u'alcohol', u'effect', u'brain'] [u'retir', u'rfds', u'chief', u'demand', u'greater', u'recognit'] [u'plan', u'port', u'augusta', u'rout'] [u'rural', u'doctor', u'group', u'back', u'scholarship', u'scheme'] [u'sandbag', u'stay', u'despit', u'reced', u'water'] [u'sartor', u'interven', u'develop'] [u'win', u'centr', u'warfar', u'destroy', u'program'] [u'school', u'kid', u'offer', u'swedish', u'queen', u'abba', u'perform'] [u'schwarzenegg', u'spar', u'republican', u'elector'] [u'scientist', u'hope', u'ozon', u'hole', u'shrink'] [u'secreci', u'surround', u'apec', u'outfit'] [u'shimon', u'pere', u'lose', u'labour', u'leadership', u'vote'] [u'arrest', u'terror', u'go'] [u'soldier', u'return', u'iraq'] [u'space', u'tractor', u'avert', u'asteroid', u'armageddon'] [u'storm', u'damag', u'home', u'demolish'] [u'suicid', u'bomber', u'kill', u'baghdad', u'restaur'] [u'suicid', u'bomber', u'amman', u'blast'] [u'swedish', u'royal', u'visit', u'barossa', u'wineri'] [u'symbol', u'peac', u'hope', u'promot', u'festiv'] [u'symond', u'thank', u'second', u'chanc'] [u'tafe', u'meet', u'highlight', u'concern'] [u'govt', u'remain', u'commit', u'struggl', u'line'] [u'parliament', u'approv', u'betfair', u'legisl'] [u'teenag', u'seamer', u'set', u'india', u'emphat'] [u'territorian', u'urg', u'join', u'law', u'protest'] [u'thailand', u'aust', u'sign', u'anti', u'terror', u'pact'] [u'thoma', u'trial', u'delay', u'anti', u'terror', u'raid'] [u'thrumster', u'develop', u'propos'] [u'miner', u'job'] [u'lead', u'drug', u'raid'] [u'torr', u'strait', u'fish', u'reform', u'includ', u'exclus'] [u'transplant', u'student', u'win', u'rhode', u'scholarship'] [u'tribun', u'hear', u'high', u'rise', u'stoush'] [u'true', u'courser', u'take', u'bendigo'] [u'udal', u'hop', u'patienc', u'reward'] [u'doctor', u'express', u'campaign'] [u'union', u'hit', u'learn', u'centr', u'closur'] [u'union', u'lodg', u'wage', u'claim', u'ahead', u'chang'] [u'uranium', u'group', u'pressur', u'govt', u'chang', u'polici'] [u'uruguayan', u'scar', u'socceroo'] [u'uruguay', u'coach', u'hail', u'inspir', u'montero'] [u'victim', u'demand', u'hardi', u'finalis', u'asbesto', u'compo', u'deal'] [u'wallabi', u'ahead', u'theyr', u'jone'] [u'want', u'terrorist', u'suspect', u'suicid'] [u'warm', u'weather', u'offer', u'thiev', u'opportun', u'polic'] [u'water', u'major', u'issu', u'eurobodalla', u'landhold'] [u'water', u'restrict', u'reservoir', u'fault', u'fix'] [u'wealthi', u'countri', u'hold', u'trade', u'talk', u'vail'] [u'west', u'indi', u'target', u'walsh', u'mentor'] [u'wheat', u'harvest', u'forecast', u'near', u'record', u'level'] [u'whitten', u'oval', u'demolit', u'begin'] [u'investig', u'quak', u'victim', u'cholera', u'fear'] [u'widespread', u'buy', u'see', u'wall', u'street', u'edg', u'ahead'] [u'wild', u'dog', u'string', u'tree', u'push', u'aerial'] [u'wit', u'tell', u'drug', u'run', u'falconio', u'accus'] [u'woman', u'die', u'lightn', u'strike'] [u'world', u'trade', u'talk', u'doom', u'fail', u'negoti'] [u'youth', u'face', u'court', u'hous'] [u'zarqawi', u'suspect', u'jordan', u'bomb'] [u'arrest', u'melbourn', u'drug', u'raid'] [u'afghan', u'cargo', u'plane', u'crash'] [u'year', u'youth', u'arrest', u'drive'] [u'year', u'croc', u'argentina'] [u'aborigin', u'input', u'seek', u'land', u'right', u'review'] [u'academ', u'urg', u'fitzgerald', u'reform'] [u'team', u'head', u'quak', u'ravag', u'pakistan'] [u'africa', u'elect', u'femal', u'leader', u'win', u'liberian'] [u'alcohol', u'accord', u'educ', u'ramp'] [u'alcohol', u'seller', u'warn', u'schooli', u'crackdown'] [u'anglican', u'head', u'tamworth', u'event'] [u'aqi', u'close', u'goat', u'meatwork'] [u'aquacultur', u'studi', u'divid', u'communiti'] [u'auction', u'tooth', u'napoleon', u'root'] [u'australian', u'paus', u'rememb', u'dead'] [u'bail', u'refus', u'sydney', u'terror', u'suspect'] [u'bank', u'push', u'market', u'higher'] [u'bartlett', u'urg', u'govt', u'invest', u'meat'] [u'beaut', u'bloke', u'come', u'hyden'] [u'beazley', u'urg', u'coalit', u'vote', u'sedit'] [u'bendigo', u'honour', u'fall', u'soldier'] [u'bistro', u'fin', u'bandaid', u'stir'] [u'bodi', u'azahari', u'identifi'] [u'brisban', u'mayor', u'slam', u'neighbour', u'sprinkler', u'decis'] [u'bushrang', u'build', u'total', u'earli', u'stumbl'] [u'electron', u'bracelet', u'monitor'] [u'higher', u'prescrib', u'burn', u'target'] [u'road'] [u'carlsson', u'crash', u'ralli', u'australia'] [u'child', u'abus', u'notif', u'rise'] [u'china', u'report', u'bird', u'outbreak'] [u'coach', u'urg', u'scout', u'countri', u'area', u'talent'] [u'communiti', u'hous', u'face', u'uncertain', u'futur'] [u'compost', u'tip', u'help', u'fight', u'diseas'] [u'concern', u'rais', u'saleyard', u'submiss', u'process'] [u'council', u'green', u'light', u'gold'] [u'councillor', u'fight', u'insur'] [u'council', u'reject', u'albani', u'foreshor', u'delay', u'claim'] [u'council', u'wasnt', u'tell', u'lane', u'cove', u'tunnel', u'chang'] [u'court', u'hear', u'alleg', u'bomb', u'plot'] [u'court', u'order', u'halt', u'anti', u'log', u'protest'] [u'court', u'reject', u'bail', u'terror', u'suspect'] [u'croc', u'break', u'lose', u'streak'] [u'croc', u'sight', u'spark', u'warn'] [u'croc', u'look', u'shut', u'darnel', u'cattalini'] [u'croc', u'look', u'shut', u'taipan', u'player'] [u'croesus', u'mine', u'chairman', u'quit'] [u'name', u'panda'] [u'cycl', u'death', u'prompt', u'coron', u'road', u'race'] [u'difficulti', u'delay', u'terror', u'case'] [u'doctor', u'see', u'posit', u'deal'] [u'domest', u'violenc', u'project', u'win', u'widespread', u'approv'] [u'donat', u'help', u'theatr', u'group', u'avoid', u'final', u'curtain'] [u'call', u'fund'] [u'drug', u'dealer', u'face', u'charg'] [u'coli', u'pesticid', u'import', u'vegi', u'test'] [u'spring', u'gulli', u'power', u'station'] [u'england', u'offer', u'huge', u'cash', u'bonus', u'world'] [u'euthanasia', u'info', u'forc', u'nitschk', u'offshor'] [u'expert', u'baffl', u'falconio', u'evid'] [u'falconio', u'accus', u'carri', u'gun', u'court', u'tell'] [u'famili', u'flee', u'burn', u'hous'] [u'feedback', u'seek', u'nation', u'park', u'manag', u'plan'] [u'fisher', u'sand', u'clear', u'fund'] [u'fletcher', u'store', u'add', u'heritag', u'regist'] [u'french', u'polic', u'charg', u'assault', u'teen'] [u'fring', u'festiv', u'put', u'emphasi', u'recycl'] [u'fruit', u'grower', u'inspect', u'hail', u'crop'] [u'fund', u'announc', u'gippsland', u'high', u'school'] [u'futur', u'tenni', u'star', u'head', u'berri'] [u'game', u'prepar', u'tick', u'approv'] [u'attend', u'illawarra', u'remembr'] [u'glori', u'knight'] [u'canola', u'contamin', u'report', u'releas'] [u'govern', u'work', u'charlestown', u'masterplan'] [u'govt', u'accus', u'bulli', u'tactic', u'forc'] [u'govt', u'bypass', u'council', u'approv', u'denmark', u'wind'] [u'govt', u'dismiss', u'patronag', u'concern'] [u'govt', u'quiz', u'kosciuszko', u'bait', u'plan'] [u'gower', u'warn', u'french', u'resist'] [u'green', u'seek', u'inquiri', u'jockey', u'offer', u'alleg'] [u'gregan', u'notic', u'horan'] [u'gungahlin', u'roadwork', u'delay', u'slow', u'upgrad'] [u'hacker', u'soni', u'softwar', u'hide'] [u'health', u'servic', u'face', u'fund'] [u'henri', u'take', u'black'] [u'heritag', u'council', u'reject', u'camberwel', u'station', u'list'] [u'heroin', u'addict', u'get', u'year', u'taxi', u'driver', u'murder'] [u'hodg', u'form', u'centuri', u'windi'] [u'hodg', u'justifi', u'test'] [u'hodg', u'tune', u'half', u'centuri'] [u'hope', u'aussi', u'death', u'lose', u'labor'] [u'hope', u'health', u'servic', u'fund', u'continu'] [u'hospit', u'emerg', u'servic', u'delay', u'creat', u'angst'] [u'hunter', u'run', u'senior', u'year', u'award'] [u'idea', u'aplenti', u'harboursid', u'project', u'area'] [u'indonesian', u'polic', u'gunfir', u'kill', u'azahari'] [u'iran', u'free', u'detain', u'aussi', u'british', u'coupl'] [u'japanes', u'growth', u'exceed', u'expect'] [u'jone', u'call', u'meet'] [u'judg', u'rule', u'priest', u'child', u'case'] [u'kearn', u'daughter', u'move', u'intens', u'care'] [u'kimberley', u'pilbara', u'resid', u'aust'] [u'land', u'resumpt', u'plan', u'hospit'] [u'piec', u'world', u'jigsaw', u'fall', u'place'] [u'leader', u'condemn', u'jordan', u'worst', u'bomb', u'attack'] [u'lennon', u'defend', u'race', u'minist', u'jockey', u'claim'] [u'lennon', u'defend', u'race', u'minist'] [u'lion', u'recal', u'horn', u'crunch', u'nation', u'match'] [u'lobbi', u'group', u'urg', u'fuel', u'rebat', u'boost', u'highway'] [u'loeb', u'crash', u'ralli', u'australia'] [u'log', u'firm', u'take', u'legal', u'action', u'forest'] [u'major', u'youth', u'detentiion', u'centr'] [u'make', u'ordinari', u'look', u'extraordinari'] [u'charg', u'drug', u'weapon'] [u'jail', u'teen', u'heroin', u'case'] [u'jail', u'unpaid', u'fin', u'abalon', u'possess'] [u'man', u'bodi', u'recov', u'floodwat'] [u'marshal', u'sign', u'tiger'] [u'mayor', u'talk', u'miner', u'loss'] [u'mental', u'health', u'action', u'plan', u'public', u'view'] [u'mental', u'health', u'tribun', u'chief', u'rais', u'medic'] [u'mike', u'tyson', u'arrest', u'brazil'] [u'corner', u'revamp'] [u'minimis', u'fear', u'terror', u'raid', u'doctor', u'urg'] [u'ministeri', u'prompt', u'treason', u'complaint'] [u'minist', u'join', u'gold', u'coast', u'remembr', u'servic'] [u'minist', u'launch', u'countri', u'health', u'strategi'] [u'minist', u'surpris', u'state', u'mildura', u'rail', u'line'] [u'miss', u'pair', u'safe'] [u'molong', u'flood', u'demolit', u'expect'] [u'morwel', u'mark', u'remembr'] [u'fear', u'loss', u'truck', u'charg', u'plan'] [u'say', u'earli', u'criticis', u'bypass', u'rout', u'option'] [u'see', u'benefit', u'process', u'plant'] [u'nation', u'paus', u'remembr'] [u'news', u'corp', u'report', u'loss'] [u'techniqu', u'halt', u'parkinson'] [u'charg', u'lay', u'suspici'] [u'nois', u'complaint', u'trigger', u'work', u'chang'] [u'north', u'korean', u'nuclear', u'talk', u'littl', u'progress'] [u'flood', u'bring', u'good', u'news'] [u'offici', u'inspect', u'site', u'plan', u'water'] [u'ohern', u'impress', u'shanghai'] [u'opinion', u'mix', u'nude', u'beach', u'plan'] [u'optometrist', u'focus', u'drop', u'dilemma'] [u'palaszczuk', u'stand', u'dept', u'farmer', u'suicid'] [u'palm', u'land', u'woe', u'frustrat', u'beatti'] [u'patrick', u'takeov', u'reduc', u'freight'] [u'pentagon', u'consid', u'hick', u'trial', u'futur'] [u'perman', u'magistr', u'plan', u'region'] [u'perth', u'businessman', u'death', u'investig'] [u'phil', u'kearn', u'daughter', u'move', u'intens'] [u'piano', u'teacher', u'jail', u'abus', u'student'] [u'defend', u'kerr'] [u'upbeat', u'bill', u'chanc'] [u'podiatrist', u'jail', u'secret', u'film', u'teen'] [u'polic', u'help', u'miss', u'filipino'] [u'polic', u'clear', u'motorist', u'drown', u'case'] [u'polic', u'bali', u'bomber', u'videotap'] [u'polic', u'hunt', u'wyndham', u'rapist'] [u'polic', u'drug', u'raid', u'arrest'] [u'polic', u'step', u'search', u'miss', u'sydney', u'toddler'] [u'polic', u'boost', u'number', u'coffin', u'cheater', u'event'] [u'polic', u'warn', u'fals', u'terror', u'alert'] [u'polic', u'farm', u'death', u'victim'] [u'polio', u'erad', u'african', u'state'] [u'polo', u'play', u'brother', u'hall', u'fame', u'honour'] [u'pork', u'industri', u'clear', u'wast', u'diseas'] [u'preschool', u'oper', u'financi', u'pressur'] [u'pressur', u'mount', u'uranium', u'mine', u'licenc'] [u'prosecutor', u'seek', u'month', u'sentenc', u'michell'] [u'prosecutor', u'seek', u'month', u'lesli'] [u'public', u'urg', u'rememb', u'brave', u'soldier'] [u'boe', u'worker', u'ralli', u'colleagu'] [u'rail', u'standardis', u'plan', u'rais', u'region', u'question'] [u'rain', u'fall', u'western'] [u'rain', u'help', u'lift', u'storag'] [u'record', u'size', u'parad', u'tip', u'melbourn', u'hero'] [u'region', u'feel', u'welfar', u'chang', u'impact', u'opposit'] [u'remembr', u'ceremoni', u'fit'] [u'rescuer', u'pluck', u'strand', u'yachti', u'bass', u'strait'] [u'richard', u'lead', u'practic', u'symmon', u'plain'] [u'richmond', u'properti', u'break', u'local', u'auction', u'record'] [u'riverina', u'honour', u'defenc', u'sacrific'] [u'riverland', u'paus', u'remembr'] [u'royal', u'photograph', u'lord', u'lichfield', u'die'] [u'govt', u'hail', u'high', u'elect', u'surgeri', u'procedur'] [u'saleyard', u'feel', u'beef', u'return', u'japan'] [u'sanderon', u'back', u'port', u'young', u'gun'] [u'soldier', u'bodi', u'return', u'perth'] [u'search', u'miss', u'toddler', u'intensifi'] [u'search', u'miss', u'remot', u'area'] [u'sedit', u'law', u'essenti', u'unchang', u'say'] [u'selector', u'lose', u'patienc', u'katich'] [u'crew', u'monitor', u'flood', u'effort'] [u'seven', u'boss', u'say', u'damag', u'claim', u'unwav'] [u'sharapova', u'down', u'davenport'] [u'ship', u'tender', u'delay', u'creat', u'region', u'concern'] [u'socceroo', u'expect', u'physic', u'clash'] [u'south', u'africa', u'inaugur', u'giant', u'telescop'] [u'lanka', u'jayasuriya', u'indian', u'seri'] [u'stepfath', u'charg', u'year', u'old', u'murder'] [u'stoddart', u'ozjet', u'get', u'licenc'] [u'storm', u'damag', u'break', u'hill', u'hous'] [u'storm', u'leav', u'nundl', u'resid', u'dark'] [u'subdu', u'palestinian', u'mark', u'year', u'arafat', u'die'] [u'swedish', u'king', u'queen', u'bush', u'tucker'] [u'swedish', u'royal', u'tast', u'indigen', u'cultur'] [u'tasmanian', u'fail', u'heed', u'anti', u'smoke', u'messag'] [u'taxi', u'driver', u'killer', u'get', u'year'] [u'teen', u'dous', u'petrol', u'violent', u'assault'] [u'teen', u'game', u'bing', u'prompt', u'curfew'] [u'terror', u'accus', u'student', u'sheikh'] [u'thoma', u'fin', u'post', u'match', u'fight', u'franc'] [u'thousand', u'expect', u'attend', u'swap', u'meet'] [u'thousand', u'mark', u'remembr'] [u'tourism', u'campaign', u'help', u'boost', u'visitor', u'kalgoorli'] [u'toyota', u'confirm', u'switch', u'bridgeston'] [u'tradit', u'owner', u'seek', u'memori', u'wave', u'hill'] [u'transmiss', u'latest', u'servic', u'begin', u'soon'] [u'tree', u'help', u'form', u'coloni'] [u'market', u'recov', u'trade', u'deficit', u'setback'] [u'senat', u'demand', u'report', u'prison'] [u'vaughan', u'pakistan', u'test'] [u'veteran', u'join', u'singaporean', u'clemenc'] [u'victori', u'jet', u'battl', u'goalless', u'draw'] [u'victori', u'jet', u'deadlock', u'half', u'time'] [u'govt', u'commit', u'fix', u'perth', u'river'] [u'wallabi', u'need', u'game', u'plan', u'lynagh'] [u'warn', u'go', u'macgil'] [u'weak', u'job', u'figur', u'pull', u'dollar'] [u'western', u'mark', u'remembr'] [u'west', u'indi', u'hodg', u'readi', u'hobart', u'test'] [u'wimmera', u'malle', u'stop', u'remembr'] [u'wineri', u'updat', u'oversea', u'green'] [u'young', u'healthi', u'greater', u'possibl', u'risk', u'bird'] [u'afghan', u'polic', u'kill', u'taliban', u'attack'] [u'baxter', u'detaine', u'evacu'] [u'declar', u'extra', u'public', u'holiday'] [u'govt', u'seek', u'ownership', u'canberra', u'stadium'] [u'advanc', u'uruguayan', u'conting', u'fail', u'arriv'] [u'agassi', u'want', u'year'] [u'qaeda', u'blame', u'jordan', u'suicid', u'blast'] [u'annan', u'make', u'visit', u'baghdad'] [u'anstey', u'push', u'tiger', u'second'] [u'atkinson', u'notch', u'twin', u'stage', u'win', u'perth'] [u'australia', u'england', u'anxious', u'restor', u'credibl'] [u'australian', u'interrog', u'dont', u'involv', u'tortur'] [u'deni', u'iraq', u'wheat', u'order', u'cancel'] [u'azahari', u'death', u'allah'] [u'azahari', u'death', u'prompt', u'warn', u'attack'] [u'bacon', u'vicious', u'ruthless', u'cheek', u'say'] [u'beatti', u'rule', u'interven', u'water', u'stoush'] [u'beij', u'unveil', u'olymp', u'mascot'] [u'better', u'techniqu', u'spain', u'say'] [u'bird', u'threat', u'spread', u'kuwait'] [u'defend', u'delay', u'go', u'public', u'fuel', u'shortag'] [u'briberi', u'document', u'legal', u'lennon'] [u'bullet', u'wildcat', u'singapor', u'showdown'] [u'bushrang', u'lose', u'late', u'wicket'] [u'bushrang', u'windi'] [u'bush', u'say', u'critic', u'rewrit', u'histori', u'iraq'] [u'cambodia', u'approv', u'border', u'treati'] [u'cameroon', u'detain', u'australian', u'report'] [u'canberra', u'airport', u'confid', u'march'] [u'canberra', u'join', u'celebr'] [u'confus', u'iraq', u'suspend', u'aust'] [u'cosgrov', u'hit', u'wicket', u'fall'] [u'court', u'indict', u'sack', u'african', u'deputi', u'presid'] [u'courtney', u'walsh', u'interview'] [u'dana', u'vale', u'call', u'return', u'hick', u'australia'] [u'detaine', u'question', u'baxter', u'fire'] [u'downer', u'rule', u'ask', u'hick', u'releas'] [u'drought', u'figur', u'encourag', u'minist', u'say'] [u'dwight', u'shrug', u'play', u'comparison'] [u'execut', u'warn', u'obstruct', u'accc', u'probe'] [u'famili', u'seek', u'help', u'argentin', u'jail'] [u'fan', u'turn', u'away', u'landsdown'] [u'fiji', u'fight', u'wale'] [u'baxter'] [u'fire', u'baxter', u'detent', u'centr'] [u'franc', u'riot', u'alert', u'holiday', u'weekend'] [u'freddi', u'want', u'vaughan'] [u'german', u'parti', u'finalis', u'coalit', u'deal'] [u'girl', u'die', u'father', u'miss', u'boat', u'accid'] [u'glori', u'class', u'knight'] [u'govt', u'continu', u'fund', u'distast', u'nonsens'] [u'green', u'oppos', u'anti', u'terror'] [u'harmison', u'flintoff', u'wrest', u'initi', u'england'] [u'hetherington', u'vault', u'share', u'lpga', u'lead'] [u'hick', u'stay', u'howard'] [u'hiddink', u'tight', u'lip', u'start', u'line'] [u'home', u'town', u'hero', u'pathan', u'sink', u'lanka'] [u'howard', u'continu', u'push', u'sell', u'chang'] [u'immun', u'respons', u'make', u'dead'] [u'indian', u'bowler', u'troubl', u'lanka'] [u'india', u'pakistan', u'open', u'kshmir', u'relief', u'cross'] [u'indonesian', u'raid', u'world', u'biggest', u'drug', u'plant'] [u'innoc', u'fall', u'foul', u'anti', u'terror', u'law'] [u'japanes', u'honeymoon', u'drown'] [u'jordan', u'question', u'dozen', u'amman', u'bomb'] [u'saddam', u'aid', u'report', u'die'] [u'labor', u'want', u'inquiri', u'probe', u'govt', u'role'] [u'loeb', u'crash', u'ralli', u'australia'] [u'mike', u'hussey', u'interview'] [u'mobil', u'phone', u'rude', u'plumb', u'depth'] [u'mundin', u'criticis', u'home', u'ownership', u'stanc'] [u'korea', u'insist', u'sanction'] [u'evid', u'widespread', u'corrupt', u'polic'] [u'pain', u'gain', u'wallabi', u'sweat'] [u'consid', u'regul', u'chines', u'medicin'] [u'ohern', u'wood', u'lurk', u'china'] [u'pierc', u'maintain', u'unbeaten', u'record'] [u'piraci', u'link', u'mother', u'ship'] [u'commit', u'million', u'ipswich', u'motorway', u'upgrad'] [u'polic', u'baffl', u'toddler', u'disappear'] [u'polic', u'baton', u'charg', u'pakistan', u'quak', u'survivor'] [u'polic', u'check', u'requir', u'child', u'worker', u'govt'] [u'polic', u'close', u'bali', u'bomb', u'associ'] [u'polic', u'close', u'fugit'] [u'polic', u'commission', u'ask', u'investig'] [u'polic', u'investig', u'baxter', u'fire'] [u'princip', u'impress', u'umbakumba', u'number'] [u'propos', u'backyard', u'pool', u'australian'] [u'public', u'meet', u'ban', u'pari'] [u'ranger', u'edg', u'boomer', u'thriller'] [u'redback', u'slump', u'adelaid', u'oval'] [u'get', u'argentina', u'friend'] [u'knock', u'solberg', u'ralli', u'australia'] [u'saddam', u'number', u'dead'] [u'parliament', u'break', u'month'] [u'scientist', u'examin', u'abalon', u'bed'] [u'scot', u'boot', u'british', u'olymp', u'team', u'hop'] [u'search', u'continu', u'miss', u'sydney', u'toddler'] [u'socceroo', u'touch'] [u'stacey', u'jone', u'retir'] [u'stay', u'posit', u'walsh', u'tell', u'windi'] [u'superjumbo', u'land', u'brisban'] [u'swedish', u'royal', u'visit', u'rock', u'paint'] [u'tander', u'take', u'race', u'tasmania'] [u'territorian', u'warn', u'food', u'safeti'] [u'terror', u'suspect', u'innoc', u'prove', u'guilti'] [u'terror', u'suspect', u'remain', u'high', u'secur'] [u'thorp', u'break', u'pool', u'exil'] [u'thousand', u'write', u'letter', u'support', u'nguyen'] [u'kill', u'baghdad', u'market', u'bomb'] [u'toddler', u'get', u'confirm', u'bird'] [u'trio', u'subject', u'mental', u'tortur', u'iran'] [u'hick', u'free', u'coalit', u'say'] [u'tyson', u'front', u'court', u'brazil'] [u'forc', u'tear', u'liberia', u'poll', u'protest'] [u'forc', u'tear', u'weah', u'support'] [u'unit', u'dress', u'room', u'bug', u'chelsea', u'clash'] [u'probe', u'grill', u'lebanon', u'presid', u'hariri', u'murder'] [u'take', u'syria', u'human', u'right'] [u'track', u'symmon', u'plain'] [u'warrior', u'cruis', u'victori', u'adelaid'] [u'toad', u'bust', u'commit', u'welcom'] [u'wheelchair', u'bind', u'hijack', u'sentenc'] [u'windi', u'look', u'shaki', u'bushrang'] [u'windi', u'bushrang'] [u'wound', u'terror', u'suspect', u'transfer', u'jail'] [u'face', u'court', u'alleg', u'cockfight', u'racket'] [u'actu', u'plan', u'protest'] [u'adelaid', u'snatch', u'late', u'gosford'] [u'adf', u'presenc', u'afghanistan', u'boost'] [u'african', u'leader', u'meet', u'nigeria'] [u'airbus', u'touch', u'sydney'] [u'alic', u'spring', u'polic', u'investig', u'woman', u'death'] [u'annan', u'iraq'] [u'aussi', u'cricket', u'famili'] [u'australia', u'half', u'time'] [u'baxter', u'fire', u'desper'] [u'beazley', u'step', u'attack', u'law'] [u'best', u'report', u'skin', u'bone'] [u'blast', u'rock', u'baghdad', u'near', u'green', u'zone'] [u'bodi', u'macleay', u'river'] [u'bomber', u'wife', u'arrest', u'amman', u'blast'] [u'brack', u'rule', u'extra', u'counter', u'terror', u'resourc'] [u'brazil', u'hammer', u'hapless', u'emirati'] [u'brolga', u'award', u'recognis', u'tourism', u'industri'] [u'brown', u'call', u'inquiri', u'senat', u'recal'] [u'bull', u'nerv', u'clinch', u'blue'] [u'burn', u'treatment', u'move', u'closer', u'human', u'trial'] [u'campaign', u'target', u'indigen', u'domest', u'violenc'] [u'capit', u'triumph', u'lynx'] [u'chanderpaul', u'half', u'guid', u'windi', u'lunch'] [u'citi', u'lock', u'apec', u'talk'] [u'clark', u'defend', u'japan', u'titl'] [u'comedian', u'hold', u'protest', u'concert', u'sedit'] [u'commentari', u'highlight', u'australia', u'uruguay'] [u'council', u'unlik', u'approv', u'land', u'rezon', u'request'] [u'czech', u'claim', u'away', u'norway'] [u'dairi', u'industri', u'warn', u'milk', u'shortag'] [u'delhi', u'bomb', u'suspect', u'arrest', u'polic'] [u'democrat', u'defend', u'stanc', u'terror', u'law'] [u'diver', u'join', u'search', u'miss'] [u'dump', u'debat', u'stifl', u'territorian', u'martin', u'say'] [u'dun', u'clear', u'ray'] [u'duval', u'win', u'ralli', u'australia', u'atkinson', u'fourth'] [u'dwight', u'go', u'scoreless', u'trinidad', u'hold', u'bahrain'] [u'england', u'wallabi', u'woe'] [u'expand', u'search', u'fail', u'miss', u'toddler'] [u'question', u'fire'] [u'french', u'monk', u'nun', u'beatifi', u'vatican'] [u'french', u'polic', u'alert', u'pari', u'curfew', u'lyon'] [u'gallop', u'dismiss', u'call', u'lower', u'speed', u'limit'] [u'giro', u'head', u'hill'] [u'govt', u'chang', u'labor', u'power', u'beazley'] [u'great', u'britain', u'shock', u'kiwi'] [u'green', u'continu', u'push', u'nation', u'right'] [u'hetherington', u'shadow', u'alabama', u'lead'] [u'hospit', u'investig', u'man', u'recoveri'] [u'howard', u'criticis', u'ipswich', u'motorway', u'fund'] [u'howel', u'hold', u'tiger', u'shanghai'] [u'industri', u'action', u'didnt', u'hamper', u'flood', u'respons'] [u'inquiri', u'probe', u'alleg', u'shoot'] [u'investig', u'continu', u'baxter', u'fire'] [u'iran', u'reject', u'claim', u'atom', u'weapon', u'work'] [u'iran', u'nuclear', u'stanc', u'concern', u'downer'] [u'iraq', u'deni', u'wheat', u'contract', u'suspend'] [u'iraq', u'suspend', u'aust', u'wheat', u'order'] [u'chang', u'tasmania', u'hard'] [u'isra', u'mark', u'rabin', u'anniversari'] [u'jaqu', u'power', u'blue', u'huge', u'total'] [u'jetstar', u'receiv', u'support', u'govt'] [u'jockey', u'criticis', u'green', u'betfair', u'stoush'] [u'jordanian', u'king', u'pledg', u'zarqawi'] [u'kangaroo', u'bounc', u'franc'] [u'king', u'vow', u'zarqawi'] [u'lib', u'need', u'provid', u'altern'] [u'lifesav', u'warn', u'swimmer', u'rescu'] [u'link', u'spend', u'fund', u'youth', u'educ', u'program'] [u'ljubic', u'outgun', u'coria', u'master'] [u'luxford', u'clinch', u'triathlon', u'world', u'titl'] [u'malaysia', u'islam', u'parti', u'question', u'azahari', u'guilt'] [u'drown', u'coff', u'harbour', u'beach'] [u'marin', u'edg', u'adelaid'] [u'martyn', u'doubt', u'warrior'] [u'mauresmo', u'pierc', u'final'] [u'mcrae', u'forc', u'ralli', u'australia'] [u'miss', u'man', u'bodi', u'harbour'] [u'neethl', u'edmiston', u'target', u'durban'] [u'rail', u'pass', u'aim', u'backpack'] [u'zealand', u'gambl', u'pay', u'ireland'] [u'nguyen', u'mother', u'urg', u'govt', u'execut'] [u'quick', u'scrum', u'say', u'jone'] [u'extend', u'counter', u'terror', u'unit'] [u'opposit', u'want', u'wheat', u'royal', u'commiss'] [u'owen', u'stun', u'argentina', u'late', u'goal'] [u'park', u'reshuffl', u'civic'] [u'pharmacist', u'crack', u'speed', u'traffick'] [u'play', u'uruguay'] [u'polic', u'investig', u'moone', u'pond', u'shoot'] [u'pope', u'tell', u'ambassador', u'ethic', u'polit'] [u'port', u'lincoln', u'pay', u'tribut', u'diva'] [u'ref', u'blunder', u'cost', u'australia', u'hiddink'] [u'ring', u'rusti', u'feder', u'stutter', u'master'] [u'ruddock', u'quiet', u'inform', u'claim'] [u'saddam', u'lawyer', u'stay', u'away', u'trial'] [u'scot', u'flop', u'puma', u'franc', u'crush', u'canada'] [u'scott', u'coupl', u'lead', u'florida'] [u'sharon', u'pressur', u'earli', u'israel', u'poll'] [u'sink', u'hmas', u'sydney', u'rememb'] [u'rescu', u'coast'] [u'socceroo', u'limit', u'loss'] [u'socceroo', u'look', u'unsettl', u'uruguay'] [u'spain', u'thrash', u'slovakia'] [u'superjumbo', u'visit', u'sydney'] [u'switzerland', u'stun', u'turkey', u'play', u'lead'] [u'sydney', u'outclass', u'tenaci', u'roar'] [u'sydney', u'roar', u'lock', u'break'] [u'technic', u'hitch', u'delay', u'arian', u'space', u'launch'] [u'thousand', u'south', u'korean', u'protest', u'apec'] [u'trescothick', u'flay', u'pakistani', u'attack'] [u'tripl', u'treat', u'tander', u'tasmania'] [u'tunnel', u'travel', u'free', u'novemb'] [u'troop', u'iraq', u'year'] [u'chief', u'call', u'iraq', u'uniti'] [u'violenc', u'erupt', u'lyon'] [u'walker', u'rescu', u'cliff', u'fall'] [u'polic', u'imam', u'islam', u'council', u'say'] [u'windi', u'tour', u'match', u'end', u'draw'] [u'young', u'conduct', u'vienna', u'philharmon'] [u'alleg', u'poacher', u'arrest', u'coast'] [u'expo', u'cancel'] [u'accus', u'thief', u'face', u'charg'] [u'dozen', u'injur', u'major', u'north', u'shore', u'collis'] [u'aid', u'group', u'cautious', u'cure', u'claim'] [u'give', u'disarm', u'north', u'korea', u'downer'] [u'presid', u'warn', u'arrog', u'complac'] [u'anti', u'terror', u'hotlin', u'leak', u'inexcus'] [u'arian', u'space', u'launch', u'reschedul'] [u'australian', u'uruguayan', u'soccer', u'team', u'arriv'] [u'aviat', u'industri', u'warn', u'bird', u'threat'] [u'award', u'honour', u'circl', u'sentenc', u'scheme'] [u'azahari', u'apprentic', u'loos', u'indonesian', u'polic'] [u'bathurst', u'visitor', u'injur', u'mount', u'footpath'] [u'baxter', u'fire'] [u'belconnen', u'top', u'theft'] [u'better', u'communic', u'urg', u'duck', u'hunt', u'debat'] [u'rebrand', u'meat'] [u'biggest', u'plane', u'touch', u'melbourn'] [u'boat', u'cook', u'plead', u'guilti', u'pour', u'captain'] [u'boat', u'ramp', u'plan', u'face', u'delay'] [u'boat', u'user', u'remind', u'safeti', u'equip'] [u'bomb', u'explod', u'baghdad', u'near', u'green', u'zone'] [u'brisban', u'bomb', u'threat', u'think', u'hoax'] [u'brisban', u'public', u'transport', u'stop', u'threat'] [u'brisban', u'transport', u'halt', u'right'] [u'brisban', u'transport', u'resum', u'threat'] [u'britain', u'start', u'iraq', u'withdraw'] [u'busi', u'lobbi', u'push', u'govt', u'pass'] [u'butt', u'keep', u'pakistan', u'content'] [u'inform', u'namibian', u'mass', u'grave'] [u'caravan', u'park', u'sale', u'spark', u'lobbi', u'group', u'outcri'] [u'castaway', u'indonesian', u'fishermen', u'return', u'home'] [u'central', u'deleg', u'look', u'attract', u'retrench'] [u'chang', u'medic', u'cours', u'select', u'help'] [u'charg', u'senat', u'dismiss'] [u'children', u'snap', u'remot', u'australian', u'life'] [u'child', u'right', u'concern', u'rais', u'anti', u'terror'] [u'chines', u'group', u'view', u'local', u'safeti', u'initi'] [u'cisco', u'take', u'award'] [u'coast', u'golfer', u'secur', u'championship'] [u'compens', u'chang', u'come', u'effect'] [u'congress', u'push', u'beef', u'program'] [u'corrupt', u'watchdog', u'hold', u'inform', u'session'] [u'council', u'discuss', u'makyb', u'diva', u'recognit'] [u'court', u'document', u'reveal', u'alleg', u'terrorist', u'target'] [u'creek', u'search', u'miss', u'toddler', u'case'] [u'crime', u'close', u'grafton', u'park'] [u'dam', u'damn', u'caus', u'widespread', u'damag'] [u'death', u'underlin', u'life', u'jacket', u'import'] [u'defenc', u'forc', u'begin', u'health', u'care', u'mission', u'quak'] [u'demand', u'grow', u'australian', u'miner', u'india'] [u'district', u'drought', u'situat', u'improv'] [u'downer', u'call', u'deadlock'] [u'downer', u'hold', u'littl', u'hope', u'death', u'aussi'] [u'drought', u'eas', u'grip', u'south', u'east'] [u'drought', u'releas', u'grip', u'south', u'west'] [u'drug', u'traffic', u'illeg', u'immigr', u'escap', u'jail'] [u'england', u'scrum', u'giant', u'brace', u'black'] [u'england', u'sweat', u'vaughan', u'fit'] [u'expert', u'urg', u'caution', u'aid', u'cure', u'claim'] [u'falconio', u'court', u'tell', u'search', u'weapon'] [u'fall', u'put', u'rock', u'climber', u'hospit'] [u'farmer', u'want', u'import', u'risk', u'analysi', u'taiwan'] [u'feel', u'cold', u'link', u'develop', u'cold'] [u'fesa', u'urg', u'emerg', u'servic', u'law', u'revamp'] [u'footbal', u'clubroom', u'rebuild', u'begin'] [u'wallabi', u'winger', u'stapleton', u'pass', u'away'] [u'fund', u'packag', u'grow', u'provinci', u'victoria'] [u'girl', u'die', u'accid', u'injuri'] [u'giteau', u'miss', u'ireland', u'test'] [u'materi', u'grace', u'canola', u'crop'] [u'toler', u'level', u'offer', u'assur', u'grower'] [u'goulburn', u'region', u'drought', u'declar', u'lift'] [u'govt', u'accus', u'refus', u'leav', u'ralli'] [u'govt', u'criticis', u'timor', u'asylum', u'seeker', u'case'] [u'govt', u'defer', u'local', u'govt', u'rat', u'scheme'] [u'govt', u'offer', u'nardi', u'hous', u'solut'] [u'govt', u'chang'] [u'govt', u'urg', u'consult', u'bush', u'blueprint'] [u'govt', u'wont', u'interven', u'boe', u'disput', u'tell'] [u'green', u'group', u'consid', u'buy', u'forest'] [u'group', u'urg', u'place', u'aspir', u'rural'] [u'grower', u'reassur', u'iraq', u'wheat', u'trade'] [u'grower', u'urg', u'greater', u'scrutini', u'mango', u'import'] [u'gunn', u'offer', u'pulp', u'effluent', u'assur'] [u'hackett', u'battl', u'worsen', u'shoulder', u'injuri'] [u'hackett', u'commonwealth', u'game'] [u'hama', u'milit', u'leader', u'kill', u'west', u'bank'] [u'harass', u'leader', u'renew', u'challeng', u'threat'] [u'hetherington', u'second', u'tournament', u'champion'] [u'hewitt', u'mcleod', u'resolv'] [u'hope', u'bathurst', u'dubbo', u'diabet', u'screen', u'centr'] [u'hop', u'aris', u'ozjet', u'port', u'lincoln', u'flight'] [u'howard', u'stand', u'firm', u'sedit', u'provis'] [u'hundr', u'free', u'indian', u'maoist', u'storm', u'jail'] [u'indigen', u'centr', u'reject', u'sacr', u'land', u'claim'] [u'indigen', u'child', u'safeti', u'hous', u'plan'] [u'indigen', u'court', u'scheme', u'wide'] [u'indonesian', u'pair', u'custodi', u'wash'] [u'inquiri', u'adelaid', u'polic', u'shoot'] [u'iraqi', u'presid', u'add', u'weight', u'specul'] [u'jetstar', u'decis', u'boost', u'tourism'] [u'jihad', u'train', u'camp', u'australia', u'document'] [u'judg', u'order', u'guilti', u'verdict', u'execut'] [u'kalgoorli', u'chamber', u'chief', u'bigger', u'role'] [u'kearn', u'daughter', u'intens', u'care'] [u'kid', u'threaten', u'elder', u'drug', u'money', u'say', u'youth'] [u'kiwi', u'play', u'world', u'time', u'zone', u'fear'] [u'labor', u'encourag', u'older', u'tradespeopl', u'work'] [u'labor', u'state', u'minist', u'senat', u'committe'] [u'lampard', u'downplay', u'argentina'] [u'land', u'demand', u'surpris', u'council'] [u'council', u'criticis', u'propos', u'sedit', u'chang'] [u'lehmann', u'eye'] [u'lehmann', u'lead', u'fightback'] [u'local', u'communiti', u'includ', u'land', u'right', u'review'] [u'mackay', u'suffer', u'state', u'snub'] [u'major', u'project', u'ignor', u'environment', u'risk'] [u'accus', u'fake', u'death', u'plead', u'guilti'] [u'charg', u'polic', u'scuffl'] [u'hunt', u'jail', u'escap'] [u'child', u'assault', u'charg', u'refus', u'bail'] [u'plead', u'guilti', u'child', u'offenc'] [u'mansel', u'win', u'master', u'race'] [u'court', u'charg'] [u'market', u'begin', u'week', u'strong', u'perform'] [u'maryborough', u'run', u'jail'] [u'mauresmo', u'win', u'tour', u'championship'] [u'mayor', u'predict', u'water', u'pipelin'] [u'mayor', u'speak', u'pacif', u'highway', u'plan'] [u'meet', u'focus', u'health', u'centr', u'site'] [u'meet', u'talk', u'possibl', u'waterfront', u'chang'] [u'minist', u'air', u'calder', u'highway', u'fund', u'concern'] [u'minist', u'propos', u'nation', u'windfarm', u'code'] [u'minist', u'reject', u'reinstat', u'hospit'] [u'minist', u'quiz', u'jail', u'escap'] [u'minist', u'wind', u'farm', u'decis'] [u'moon', u'unit', u'zappa', u'top', u'bizarr', u'name', u'poll'] [u'rain', u'need', u'secur', u'down', u'crop'] [u'back', u'extend', u'gympi', u'bypass', u'consult', u'period'] [u'say', u'tafe', u'fee', u'soar'] [u'want', u'warship', u'protect', u'northern', u'resourc'] [u'murdoch', u'match', u'secur', u'footag', u'court', u'hear'] [u'mysteri', u'surround', u'gambier', u'man', u'injuri'] [u'nation', u'cast', u'doubt', u'govt', u'region', u'plan'] [u'regul', u'outlaw', u'broadscal', u'land', u'clear'] [u'nightclub', u'bash', u'victim', u'win', u'damag'] [u'north', u'coast', u'enjoy', u'strong', u'tourism'] [u'offic', u'evacu', u'asbesto'] [u'opposit', u'bite', u'recycl'] [u'opposit', u'gather', u'evid', u'jockey', u'briberi'] [u'pair', u'arrest', u'bonnyrigg', u'shoot'] [u'pair', u'experi', u'plane', u'land', u'mishap'] [u'maintain', u'law', u'constitut'] [u'urg', u'meet', u'strike', u'boe', u'worker'] [u'urg', u'rais', u'nguyen', u'case', u'apec'] [u'polic', u'chief', u'reject', u'corrupt', u'report'] [u'polic', u'hunt', u'break', u'hill', u'arsonist'] [u'polic', u'hunt', u'attack'] [u'polic', u'lament', u'drink', u'drive', u'number'] [u'polic', u'oper', u'target', u'drink', u'drive'] [u'polic', u'shoot', u'victim', u'succumb', u'injuri'] [u'polic', u'uncertain', u'bash', u'teenag', u'sexual'] [u'polic', u'urg', u'crack', u'schooli'] [u'polic', u'technolog', u'track', u'newcastl', u'killer'] [u'polic', u'young', u'crash', u'victim'] [u'pont', u'signal', u'hodg', u'play'] [u'possibl', u'threat', u'halt', u'brisban', u'transport'] [u'prop', u'henderson', u'call', u'cover', u'dun'] [u'public', u'urg', u'join', u'communiti', u'health', u'group'] [u'farmer', u'accept', u'drought'] [u'teacher', u'join', u'protest', u'work', u'law'] [u'town', u'mourn', u'soldier', u'road', u'rage', u'death'] [u'region', u'servic', u'station', u'prompt', u'price'] [u'research', u'highlight', u'industri', u'worker', u'turnov'] [u'resid', u'fluorid', u'water'] [u'rice', u'israel', u'reviv', u'peac', u'process'] [u'roadwork', u'readi', u'woolworth'] [u'ruddock', u'dismiss', u'sedit', u'fear'] [u'ruddock', u'probe', u'ident', u'leak', u'terror', u'hotlin'] [u'russian', u'accus', u'sell', u'secret', u'china'] [u'bat', u'warrior'] [u'scholarship', u'boost', u'indigen', u'nurs'] [u'schooli', u'urg', u'commonsens'] [u'scorses', u'scale'] [u'search', u'find', u'miss', u'motorcyclist', u'safe'] [u'search', u'sydney', u'toddler', u'continu', u'tomorrow'] [u'second', u'crash', u'victim', u'succumb', u'injuri'] [u'sedit', u'provis', u'wont', u'threaten', u'media', u'freedom'] [u'senat', u'charg', u'speed', u'incid'] [u'senior', u'doctor', u'support', u'hobart', u'hospit', u'chief'] [u'piec', u'defenc', u'concern', u'schwarzer', u'admit'] [u'seven', u'drop', u'billion', u'dollar', u'claim'] [u'crime', u'polic', u'join', u'bash', u'investig'] [u'sharon', u'blast', u'syria', u'iran', u'axi', u'evil'] [u'shoot', u'man', u'girlfriend', u'appear', u'court'] [u'silver', u'medallist', u'hill', u'return', u'race'] [u'socceroo', u'arriv', u'home'] [u'southern', u'record', u'horror', u'road', u'crash', u'weekend'] [u'state', u'minist', u'senat', u'vote', u'chang'] [u'stem', u'cell', u'improv', u'heart', u'attack'] [u'storm', u'racecours', u'run', u'rail', u'replac'] [u'storm', u'predict', u'research', u'focus', u'darwin'] [u'strong', u'show', u'meat', u'group', u'vote'] [u'strong', u'support', u'regist'] [u'survey', u'highlight', u'communiti', u'preschool', u'woe'] [u'survey', u'highlight', u'mildura', u'crime', u'concern'] [u'swap', u'meet', u'prove', u'popular', u'crowd'] [u'tassi', u'receiv', u'polici', u'wooden', u'spoon'] [u'teen', u'arrest', u'camp', u'death'] [u'tender', u'call', u'illeg', u'fisher', u'detent', u'centr'] [u'tenth', u'terrorist', u'suspect', u'appear', u'court'] [u'thousand', u'evacu', u'chines', u'chemic', u'blast'] [u'thousand', u'briton', u'honour', u'dead'] [u'court', u'soldier', u'murder'] [u'timber', u'worker', u'ralli', u'redund', u'packag'] [u'tourism', u'sector', u'take', u'increas'] [u'trade', u'hall', u'council', u'highlight', u'fear'] [u'train', u'compani', u'seek', u'address', u'worker', u'shortag'] [u'tredrea', u'take', u'captainci'] [u'tredrea', u'take', u'power', u'captainci'] [u'troop', u'search', u'dead', u'saddam', u'aid'] [u'truck', u'run', u'kill', u'chines'] [u'union', u'debat', u'chang'] [u'union', u'ralli', u'worker', u'protest'] [u'uruguay', u'divin', u'right', u'play'] [u'grape', u'threat', u'industri'] [u'vanston', u'refus', u'releas', u'hunger', u'strike'] [u'victoria', u'drop', u'state', u'polici', u'rank'] [u'warrior', u'martyn'] [u'white', u'hous', u'declin', u'rule', u'tortur'] [u'wineri', u'director', u'death', u'investig'] [u'woman', u'charg', u'catch', u'drive'] [u'woman', u'dead', u'hous'] [u'workcov', u'investig', u'construct', u'site', u'fall'] [u'workshop', u'focus', u'aborigin', u'land', u'right'] [u'timores', u'group', u'seek', u'asylum'] [u'arrest', u'zimbabw', u'opposit', u'infight'] [u'abort', u'drug', u'unsaf', u'warn', u'dept'] [u'accus', u'offend', u'victim', u'polic'] [u'afghan', u'bomb', u'kill', u'german', u'soldier'] [u'agassi', u'nadal', u'join', u'master', u'withdraw', u'list'] [u'agenc', u'record', u'minor', u'kalgoorli', u'tremor'] [u'north', u'korea', u'hold', u'nuclear', u'program'] [u'albani', u'receiv', u'legion', u'honour'] [u'black', u'nonu', u'cite', u'danger', u'tackl'] [u'arson', u'rule', u'dead', u'hous', u'blaze'] [u'audienc', u'complaint', u'forc', u'play', u'chang'] [u'aust', u'pledg', u'fight', u'bird'] [u'australian', u'export', u'apec', u'countri', u'jump'] [u'author', u'probe', u'grandstand'] [u'awb', u'suspens', u'program', u'unjustifi'] [u'barrett', u'lockyer', u'kangaroo', u'face', u'crunch'] [u'beatti', u'review', u'bomb', u'scare', u'respons'] [u'beazley', u'pledg', u'repeal', u'law'] [u'bendigo', u'lose', u'doctor'] [u'bottl', u'water', u'chief', u'reject', u'tooth', u'decay', u'claim'] [u'hospit', u'leopard', u'attack'] [u'surgeri', u'leopard', u'attack'] [u'bracken', u'carri', u'drink', u'hodg', u'get'] [u'brown', u'snake', u'antivenom', u'ineffect', u'scientist'] [u'bull', u'sweat', u'avail', u'hop', u'love'] [u'bush', u'eager', u'telstra', u'wireless', u'rollout'] [u'central', u'health', u'profession'] [u'bomb', u'kill', u'pakistan'] [u'cattl', u'truck', u'crash'] [u'central', u'worker', u'join', u'reform', u'protest'] [u'central', u'west', u'join', u'nation', u'reform', u'protest'] [u'chines', u'chemic', u'plant', u'explos', u'kill'] [u'clean', u'beach', u'award', u'ceremoni', u'cancel'] [u'colleg', u'offer', u'train', u'option'] [u'compani', u'offer', u'salmon', u'flavour', u'soda'] [u'compani', u'seek', u'communiti', u'input', u'wind', u'farm', u'plan'] [u'cooper', u'reject', u'lion', u'nathan', u'takeov'] [u'councillor', u'forese', u'chamber', u'wrongdoer'] [u'councillor', u'upset', u'clean', u'beach', u'sponsorship'] [u'council', u'unhappi', u'powerlin', u'plan'] [u'council', u'vote', u'pool'] [u'council', u'fluorid', u'decis'] [u'croc', u'see', u'popular', u'swim', u'spot'] [u'csiro', u'look', u'power', u'station', u'greenhous'] [u'cyclon', u'wind', u'record', u'darwin', u'storm'] [u'close', u'second', u'crocodil', u'sight'] [u'danish', u'court', u'set', u'baptism', u'date', u'mari', u'princ'] [u'death', u'spark', u'renew', u'high', u'school', u'driver'] [u'defenc', u'falconio', u'case', u'question', u'secur'] [u'depart', u'launch', u'review', u'alic', u'prison'] [u'doctor', u'confid', u'toddler', u'save'] [u'dodgi', u'salesmen', u'target', u'indigen', u'communiti'] [u'door', u'handl', u'lock', u'plane', u'mishap', u'report'] [u'downer', u'hop', u'apec', u'free', u'trade', u'support', u'statement'] [u'dudek', u'readi', u'walk', u'liverpool'] [u'plead', u'guilti', u'airport', u'secur', u'breach'] [u'fake', u'death', u'case', u'polic'] [u'falconio', u'evid', u'unverifi', u'court', u'hear'] [u'north', u'join', u'nation', u'protest'] [u'farr', u'jone', u'back', u'japan', u'host', u'world'] [u'flood', u'molong', u'firm', u'reopen'] [u'french', u'visit', u'riot', u'suburb'] [u'gardin', u'seek', u'tour', u'place'] [u'gippsland', u'worker', u'join', u'protest'] [u'goosen', u'confirm', u'classic'] [u'govt', u'flag', u'wiluna', u'hous', u'review'] [u'govt', u'fund', u'seek', u'freight', u'transfer', u'station'] [u'govt', u'investig'] [u'govt', u'move', u'slash', u'super'] [u'govt', u'mull', u'needl', u'exchang', u'program', u'jail', u'inmat'] [u'govt', u'overhaul', u'region', u'grant', u'program'] [u'govt', u'packag', u'promis', u'western', u'benefit'] [u'govt', u'push', u'provinci', u'statement'] [u'govt', u'beef', u'london', u'train', u'station', u'secur'] [u'govt', u'investig'] [u'govt', u'urg', u'speed', u'alarm', u'instal'] [u'green', u'group', u'criticis', u'kosciuszko', u'bait', u'plan'] [u'greenpeac', u'dump', u'protest', u'blair', u'doorstep'] [u'green', u'want', u'contamin', u'canola', u'crop', u'destroy'] [u'group', u'highlight', u'declin', u'possum', u'popul'] [u'hackett', u'knife'] [u'harriet', u'come', u'shell', u'birthday'] [u'hind', u'urg', u'gayl', u'continu', u'aggress'] [u'hobart', u'test', u'pitch', u'ideal', u'macgil'] [u'horan', u'see', u'posit', u'loss', u'england'] [u'hospit', u'stop', u'patient', u'die', u'boredom'] [u'hospit', u'industri', u'welcom', u'chang', u'inquiri'] [u'howard', u'brush', u'ralli'] [u'hundr', u'ralli', u'chang'] [u'hunter', u'worker', u'join', u'nation', u'law', u'protest'] [u'illawarra', u'properti', u'price', u'continu', u'fall'] [u'illawarra', u'worker', u'join', u'workplac', u'law', u'protest'] [u'independ', u'probe', u'continu', u'macleay', u'river'] [u'india', u'pakistan', u'open', u'fourth', u'kashmir', u'cross'] [u'indonesian', u'court', u'dismiss', u'newmont', u'civil', u'suit'] [u'industri', u'group', u'law', u'senat', u'inquiri'] [u'injunct', u'delay', u'law', u'unlik'] [u'jail', u'needl', u'program', u'inappropri'] [u'joyc', u'condemn', u'sneaki', u'telstra', u'announc'] [u'joyc', u'defend', u'stanc', u'trade', u'practic', u'chang'] [u'june', u'jail', u'escape', u'custodi'] [u'bali', u'bomb', u'victim', u'discharg', u'darwin'] [u'latrob', u'nativ', u'anim', u'exhibit', u'close'] [u'lennon', u'dismiss', u'evatt', u'foundat', u'report', u'find'] [u'lightn', u'strike', u'spark', u'fire'] [u'local', u'ralli', u'chang'] [u'lomu', u'expect', u'tough', u'time', u'ahead', u'wale'] [u'macquari', u'record', u'profit'] [u'makyb', u'diva', u'rat', u'world', u'best', u'mare'] [u'malaysian', u'quiz', u'link', u'aust', u'terror'] [u'seek', u'compo', u'alleg', u'cream', u'poison'] [u'manual', u'help', u'assess', u'rainforest', u'visitor', u'impact'] [u'doc', u'staff', u'work', u'background', u'check'] [u'market', u'drub', u'telstra', u'strateg', u'review'] [u'market', u'slip', u'flat', u'trade'] [u'marriag', u'make', u'japanes', u'princess', u'common'] [u'back', u'provinci', u'statement', u'fund'] [u'mayor', u'back', u'tougher', u'danger', u'law'] [u'mayor', u'doesnt', u'want', u'safe', u'haven', u'abus'] [u'mayor', u'question', u'hous', u'stat'] [u'mayor', u'reject', u'bruce', u'highway', u'rout', u'option'] [u'merkel', u'femal', u'german', u'chancellor'] [u'industri', u'urg', u'rethink', u'safeti', u'cultur'] [u'seek', u'meet', u'increas', u'power', u'station', u'demand'] [u'worker', u'ban', u'ralli', u'union', u'say'] [u'mine', u'compani', u'dock', u'worker', u'ralli'] [u'mix', u'respons', u'nativ', u'veget', u'law'] [u'molik', u'rank', u'year'] [u'investig', u'possibl', u'mandatori', u'child'] [u'mori', u'stay', u'glori', u'season'] [u'motel', u'decis', u'expect', u'christma'] [u'multan', u'test', u'even', u'pois', u'say', u'trescothick'] [u'nardi', u'hous', u'reject', u'temporari', u'fund', u'offer'] [u'nauru', u'move', u'restor', u'bank', u'servic'] [u'bird', u'case', u'report', u'asia'] [u'bursari', u'offer', u'tambo', u'blackal', u'student'] [u'hous', u'pose', u'water', u'contamin', u'threat'] [u'newman', u'alcohol', u'restrict', u'remain'] [u'underground', u'coal', u'moot'] [u'nguyen', u'death', u'sentenc', u'irrevers'] [u'nile', u'head', u'cross', u'citi', u'tunnel', u'inquiri'] [u'north', u'west', u'get', u'easier', u'access', u'feder', u'fund'] [u'govt', u'urg', u'help', u'ampute'] [u'nuclear', u'reactor', u'emerg', u'plan', u'review'] [u'ombudsman', u'call', u'intern', u'bodi', u'search'] [u'charg', u'brisban', u'bomb', u'hoax'] [u'state', u'interest', u'prescrib', u'burn'] [u'outlook', u'good', u'harvest'] [u'plant', u'extract', u'stop', u'termit', u'dead'] [u'plant', u'extract', u'stop', u'termit', u'dead'] [u'polic', u'chief', u'consid', u'offic', u'number'] [u'polic', u'chief', u'seek', u'time', u'consid', u'briberi'] [u'polic', u'investig', u'tamworth', u'restaur', u'explos'] [u'polic', u'probe', u'prison', u'labour', u'rort', u'claim'] [u'polic', u'seek', u'public', u'help', u'catch', u'countri', u'club'] [u'polic', u'seek', u'public', u'help', u'solv', u'granni', u'kill'] [u'polic', u'step', u'probe', u'brisban', u'bomb', u'scare'] [u'polic', u'seek', u'inform', u'attack'] [u'polic', u'warn', u'abductor', u'strike'] [u'pool', u'financ', u'like', u'come', u'budget'] [u'port', u'augusta', u'servic', u'talk', u'continu'] [u'premier', u'satisfi', u'bomb', u'threat', u'respons'] [u'prosecutor', u'drop', u'main', u'charg', u'lesli'] [u'prosecutor', u'seek', u'lesser', u'sentenc', u'lesli'] [u'public', u'air', u'wast', u'dump', u'plan', u'worri'] [u'public', u'calm', u'manag', u'plan'] [u'rabbitoh', u'unhappi', u'redfern', u'lock'] [u'rail', u'inform', u'boost', u'plan', u'illawarra', u'line'] [u'ralli', u'hold', u'nationwid'] [u'ralli', u'measur', u'strength', u'concern'] [u'ralli', u'stop', u'traffic'] [u'rann', u'back', u'polic', u'chief', u'jail', u'pursuit'] [u'redfern', u'deal', u'leav', u'south', u'cold'] [u'reef', u'author', u'look', u'boost', u'consult'] [u'region', u'protest'] [u'report', u'citrus', u'riverland', u'caus', u'concern'] [u'rice', u'confirm', u'isra', u'palestinian', u'gaza', u'border', u'deal'] [u'rice', u'see', u'deal', u'access', u'gaza'] [u'riot', u'franc', u'move', u'extend', u'emerg', u'power'] [u'riverina', u'join', u'nation', u'protest'] [u'saff', u'hatch', u'campaign', u'save', u'industri'] [u'senat', u'stand', u'base', u'wast', u'dump', u'probe'] [u'senat', u'wont', u'forc', u'wind', u'farm', u'public'] [u'senior', u'issu', u'committe', u'agenda'] [u'sharon', u'plead', u'guilti', u'isra', u'fund', u'scandal'] [u'shop', u'owner', u'detain', u'woman', u'arm', u'robberi'] [u'kill', u'colombia', u'plane', u'crash'] [u'skill', u'shortag', u'drive', u'high', u'turnov', u'mine'] [u'slash', u'prompt', u'review', u'safeti', u'procedur'] [u'small', u'busi', u'cost', u'soar', u'survey'] [u'socceroo', u'continu', u'world', u'build'] [u'socceroo', u'answer', u'hiddink'] [u'socceroo', u'reap', u'million', u'reward', u'victori'] [u'southern', u'join', u'protest'] [u'stanhop', u'want', u'defenc'] [u'stock', u'hold', u'pattern', u'ahead', u'econom'] [u'storm', u'caus', u'damag', u'warburton'] [u'support', u'port', u'augusta', u'zone', u'declar'] [u'tank', u'death', u'spark', u'work', u'chang'] [u'compani', u'win', u'contract', u'wire', u'pacif', u'nation'] [u'telstra', u'cut', u'plan', u'worri', u'worker'] [u'telstra', u'job'] [u'telstra', u'job'] [u'terror', u'suspect', u'support', u'face', u'court'] [u'terror', u'trade', u'hick', u'agenda', u'aust', u'meet'] [u'terrorist', u'train', u'camp', u'alleg', u'shock', u'local'] [u'thousand', u'protest', u'chang'] [u'thousand', u'protest', u'law'] [u'thousand', u'protest', u'chang'] [u'thousand', u'ralli', u'adelaid', u'law'] [u'worker', u'sack', u'attend', u'ralli', u'union'] [u'creat', u'electr'] [u'await', u'monsoon'] [u'tough', u'season', u'gulf', u'trawler', u'oper'] [u'trade', u'deal', u'hing', u'subsidi', u'cut', u'say', u'downer'] [u'transport', u'disrupt', u'expect', u'amid', u'industri'] [u'trial', u'delay', u'mix', u'news', u'hick', u'lawyer'] [u'truck', u'group', u'problem', u'tollway'] [u'union', u'claim', u'anti', u'ralli', u'success'] [u'union', u'hail', u'anti', u'ralli', u'turnout'] [u'union', u'ralli', u'show', u'worker', u'unit'] [u'union', u'vow', u'legal', u'action', u'govt', u'ralli', u'leav'] [u'feder', u'judg', u'suspend', u'hick', u'trial'] [u'threaten', u'undercut', u'wool', u'export', u'india'] [u'ahead', u'hickss', u'militari', u'trial'] [u'vagana', u'face', u'hear', u'deacon'] [u'veget', u'law'] [u'visitor', u'centr', u'boost', u'white', u'cliff'] [u'reel', u'lehmann', u'tripl'] [u'water', u'author', u'consid', u'highland', u'plan'] [u'webb', u'induct', u'golf', u'hall', u'fame'] [u'western', u'worker', u'join', u'protest'] [u'wild', u'storm', u'hit', u'sydney', u'central', u'coast'] [u'wine', u'industri', u'monitor', u'yeast', u'experi'] [u'worker', u'kill', u'trench', u'collaps'] [u'worker', u'ralli', u'chang'] [u'world', u'vote', u'cantona', u'premiership', u'best'] [u'talk', u'precipic', u'vail'] [u'youth', u'accus', u'petrol', u'sniff', u'hous'] [u'film', u'best', u'documentari', u'oscar'] [u'boost', u'bega', u'high', u'school'] [u'access', u'restrict', u'indigen', u'cave'] [u'accus', u'hoaxer', u'print', u'public', u'phone'] [u'govt', u'accus', u'frustrat', u'queanbeyan'] [u'adelaid', u'lock', u'rumsfeld', u'visit'] [u'age', u'popul', u'put', u'focus', u'financi', u'advis'] [u'airport', u'secur', u'deadlin', u'worri', u'council'] [u'fear', u'allow', u'dodgi', u'doctor', u'appoint'] [u'anim', u'welfar', u'campaign', u'target', u'long', u'haul'] [u'apec', u'confer', u'begin', u'seoul'] [u'apec', u'minist', u'consid', u'trade'] [u'apec', u'address', u'farm', u'subsidi', u'debat'] [u'apec', u'urg', u'flexibl', u'troubl', u'trade', u'talk'] [u'apiarist', u'abuzz', u'season', u'turnaround'] [u'arrest', u'pakistani', u'bomb'] [u'asian', u'demand', u'drive', u'woodchip', u'export', u'boom'] [u'aussi', u'earn', u'european', u'tour', u'card'] [u'australia', u'bermuda', u'join', u'forc', u'combat', u'abus'] [u'australian', u'women', u'arrest', u'syrian', u'airport'] [u'bangladeshi', u'polic', u'search', u'potenti', u'bomber'] [u'bank', u'stock', u'push', u'market', u'higher'] [u'basebal', u'star', u'face', u'game', u'ban'] [u'beatti', u'refus', u'relax', u'adult', u'entertain', u'rule'] [u'bendigo', u'telco', u'experi', u'growth'] [u'crowd', u'expect', u'funer', u'wine', u'ident'] [u'birth', u'rate', u'hit', u'year', u'high'] [u'bridg', u'get'] [u'burk', u'shire', u'experi', u'strong', u'properti', u'price'] [u'bush', u'hold', u'taiwan', u'exampl', u'asian', u'democraci'] [u'bush', u'say', u'deal', u'japan', u'beef', u'import'] [u'bush', u'segway', u'koizumi', u'transport', u'futur'] [u'campaign', u'target', u'skin', u'cancer', u'risk', u'group'] [u'campbel', u'halt', u'warrior', u'slide'] [u'china', u'say', u'test', u'posit', u'bird', u'report'] [u'christian', u'lash', u'reform'] [u'coal', u'miner', u'remain', u'beat', u'despit', u'problem'] [u'concern', u'recycl', u'plant', u'closur'] [u'corn', u'mend', u'surgeri'] [u'council', u'probe', u'hear', u'local', u'govt', u'loophol'] [u'council', u'consid', u'industri', u'area'] [u'councillor', u'say', u'race', u'conflict'] [u'council', u'seek', u'princ', u'highway', u'revamp'] [u'countrywid', u'manag', u'deni', u'job', u'loss', u'north'] [u'creditor', u'question', u'beef', u'processor', u'administr'] [u'crisi', u'centr', u'fund', u'realloc'] [u'develop', u'set', u'deadlin', u'hunter', u'plan'] [u'disgruntl', u'senior', u'solomon', u'offici', u'steal', u'fund'] [u'downer', u'pressur', u'tariff'] [u'downer', u'rice', u'discuss', u'iraq'] [u'dragon', u'glad', u'thompson'] [u'draper', u'histor', u'doubl'] [u'drill', u'highlight', u'diamond', u'prospect'] [u'employ', u'agenc', u'question', u'urgenc'] [u'esso', u'worker', u'meet', u'union', u'wage', u'talk'] [u'timor', u'urg', u'cooper', u'fight', u'poacher'] [u'expert', u'join', u'tamworth', u'blast', u'probe'] [u'falconio', u'trial', u'christma'] [u'famili', u'farewel', u'offic', u'kill', u'oversea'] [u'farina', u'tip', u'bresciano', u'cahil', u'play'] [u'farmer', u'hear', u'flood', u'recoveri'] [u'farmer', u'tell', u'suffer', u'govt', u'failur'] [u'farm', u'group', u'attack', u'nativ', u'veget', u'law'] [u'farm', u'drive', u'hous', u'demand'] [u'fbis', u'trail', u'world', u'biggest', u'theft'] [u'fear', u'chang', u'hurt', u'shoalhaven', u'platypus'] [u'fear', u'telstra', u'job', u'plan'] [u'govt', u'jurisdict', u'plan'] [u'firm', u'reject', u'claim', u'worker', u'sack', u'protest'] [u'black', u'coach', u'mitchel', u'offer', u'help'] [u'raider', u'player', u'drug', u'sentenc', u'suspend'] [u'genet', u'disord', u'caus', u'cerebr', u'palsi'] [u'governor', u'open', u'environment', u'learn', u'centr'] [u'govt', u'approv', u'major', u'steelwork', u'upgrad'] [u'govt', u'employ', u'cleric', u'suspect', u'terrorist', u'link'] [u'govt', u'helpless', u'stop', u'flood', u'cheap', u'interst'] [u'govt', u'hold', u'telstra', u'cdma', u'network', u'shutdown'] [u'govt', u'pressur', u'lift', u'highway', u'fund'] [u'govt', u'pressur', u'releas', u'abort', u'pill'] [u'govt', u'urg', u'stand', u'compani', u'driver'] [u'grain', u'harvest', u'head', u'south', u'work'] [u'grandstand', u'join', u'socceroo', u'fan'] [u'green', u'group', u'critic', u'tourism', u'fund'] [u'grind', u'station', u'promis', u'communic', u'boost'] [u'group', u'condemn', u'wife', u'killer', u'sentenc'] [u'growth', u'continu', u'wage', u'rat'] [u'guus', u'plea', u'fan'] [u'henri', u'accus', u'england', u'spi', u'black'] [u'herbicid', u'damag', u'cotton', u'crop'] [u'hick', u'saga', u'continu'] [u'hiddink', u'plea', u'fan'] [u'high', u'court', u'injunct', u'law', u'unlik'] [u'historian', u'cast', u'doubt', u'fate', u'wwii', u'freighter'] [u'hodg', u'symond', u'test', u'green', u'light'] [u'homebuy', u'develop', u'say'] [u'hospit', u'adopt', u'tare', u'nurs', u'invent'] [u'hous', u'estat', u'shoot', u'worri', u'preschool', u'parent'] [u'hydro', u'profit', u'rise', u'despit', u'fall'] [u'icpa', u'urg', u'govt', u'rethink', u'payment', u'access'] [u'illeg', u'weapon', u'haul', u'seiz', u'tasmania'] [u'milosev', u'win', u'trial', u'suspens'] [u'inexperienc', u'polic', u'artist', u'falconio', u'case'] [u'infect', u'scare', u'riverland', u'hospit'] [u'inquest', u'status', u'review', u'wit', u'death'] [u'interpret', u'vital', u'indigen', u'australian'] [u'anger', u'fuel', u'civil', u'disobedi', u'labor'] [u'iraq', u'admit', u'secret', u'prison'] [u'law', u'boost', u'union', u'membership'] [u'law', u'help', u'boost', u'union', u'movement'] [u'jone', u'battl', u'crisi'] [u'jone', u'wont', u'overhaul', u'coach', u'method'] [u'kandahar', u'bomb', u'kill'] [u'kaneria', u'sami', u'spark', u'england', u'collaps'] [u'kashmir', u'blast', u'kill', u'wound'] [u'land', u'council', u'back', u'zone', u'plan'] [u'leagu', u'club', u'unsecur', u'creditor', u'fund'] [u'lion', u'nathan', u'design', u'neutralis', u'cooper', u'accc'] [u'local', u'telstra', u'manag', u'see', u'benefit', u'work', u'forc'] [u'lie', u'cleric', u'sack', u'school', u'canteen'] [u'mackay', u'youth', u'urg', u'speak'] [u'manag', u'welcom', u'telstra', u'decis'] [u'court', u'accus', u'arrow'] [u'stand', u'trial', u'brigitt', u'lie'] [u'market', u'amid', u'drop', u'sale', u'figur'] [u'melbourn', u'mull', u'cours', u'restructur'] [u'consid', u'high', u'risk', u'skin', u'cancer', u'group'] [u'north', u'coast', u'brace', u'high', u'wind'] [u'death', u'investig', u'begin'] [u'minist', u'challeng', u'abbott', u'abort', u'pill'] [u'mistak', u'ident', u'case', u'spark', u'airport', u'search'] [u'moonscap', u'real', u'estat', u'sale'] [u'victim', u'alleg', u'paedophil', u'come', u'forward'] [u'mount', u'teacher', u'condemn', u'law'] [u'reject', u'defenc'] [u'chang', u'despit', u'protest'] [u'worri', u'telstra', u'cut', u'affect', u'servic'] [u'murdoch', u'defend'] [u'murdoch', u'open', u'advertis'] [u'muscat', u'confid', u'victori'] [u'nairn', u'stanc'] [u'nation', u'park', u'blaze', u'near'] [u'caravan', u'park', u'owner', u'seek', u'work', u'communiti'] [u'catch', u'rule', u'boost', u'crab', u'popul'] [u'korea', u'urg', u'nuclear', u'talk'] [u'nonu', u'leav', u'limbo', u'verdict', u'delay'] [u'govt', u'employ', u'cleric', u'suspect', u'terrorist'] [u'unveil', u'bird', u'outbreak', u'plan'] [u'opposit', u'call', u'review', u'amend', u'report'] [u'opposit', u'demand', u'committe', u'recal', u'report'] [u'outlook', u'summer', u'rain', u'averag'] [u'pattern', u'stupid', u'land', u'drink', u'driver', u'jail'] [u'patterson', u'canvass', u'abort', u'pill', u'conscienc', u'vote'] [u'perth', u'miner', u'restart', u'bigrlyi', u'uranium', u'explor'] [u'plan', u'aim', u'retain', u'sustain', u'sydney'] [u'plan', u'minist', u'accus', u'conflict'] [u'hop', u'apec', u'talk', u'open', u'market'] [u'leav', u'apec'] [u'push', u'speedi', u'hick', u'trial'] [u'rais', u'death', u'case', u'apec'] [u'polic', u'band', u'head', u'north'] [u'polic', u'chief', u'investig', u'motorbik', u'crash', u'death'] [u'polic', u'promis', u'road', u'safeti', u'crackdown'] [u'polic', u'terror', u'train', u'moroney'] [u'polic', u'wont', u'investig', u'briberi', u'alleg'] [u'prescript', u'heart', u'diseas'] [u'primari', u'school', u'damag', u'souther', u'buster'] [u'prison', u'disabl', u'face', u'deport'] [u'prison', u'needl', u'exchang', u'servic', u'problemat', u'say'] [u'qanta', u'chief', u'flag', u'chang', u'busi', u'oper'] [u'qanta', u'turn'] [u'race', u'minist', u'say', u'note', u'clear', u'briberi'] [u'rearrang', u'waterfront', u'build', u'wouldnt', u'chang'] [u'renmark', u'meet', u'urg', u'wast', u'dump', u'opposit'] [u'research', u'highlight', u'skin', u'cancer', u'risk', u'group'] [u'resourc', u'price', u'boost', u'budget', u'outlook'] [u'revis', u'forest', u'polici', u'fail', u'parti'] [u'rice', u'urg', u'apec', u'pressur', u'burma', u'right'] [u'right', u'life', u'support', u'abbott', u'abort', u'pill'] [u'rotari', u'offer', u'suicid', u'prevent', u'fund'] [u'rural', u'aust', u'reject', u'telstra', u'plan', u'scrap', u'cdma'] [u'look', u'outright', u'warrior'] [u'speaker', u'consid', u'protest', u'applic'] [u'school', u'reopen', u'water', u'contamin', u'scare'] [u'scientist', u'optimist', u'cervic', u'cancer'] [u'scientist', u'probe', u'salt', u'project', u'impact'] [u'secur', u'upgrad', u'plan', u'break', u'hill', u'airport'] [u'sharon', u'stone', u'settl', u'lawsuit', u'plastic', u'surgeon'] [u'sheep', u'cattl', u'price', u'forecast', u'drop'] [u'singapor', u'reject', u'death', u'penalti', u'critic'] [u'site', u'earmark', u'slim', u'dusti', u'centr'] [u'sixer', u'keen', u'bounc', u'croc'] [u'socceroo', u'hold', u'lead'] [u'socceroo', u'lead', u'uruguay', u'half', u'time'] [u'socceroo', u'qualifi', u'world'] [u'socceroo', u'readi', u'stand', u'deliv', u'arnold'] [u'socceroo', u'lead', u'world', u'qualifi'] [u'socceroo', u'world', u'qualifi'] [u'solon', u'return', u'day'] [u'soni', u'recal', u'protect'] [u'speed', u'camera', u'bungl', u'jeopardis', u'tenix', u'contract'] [u'stanhop', u'deni', u'stymi', u'queanbeyan', u'growth'] [u'stat', u'major', u'skin', u'cancer', u'risk'] [u'sunni', u'seek', u'independ', u'inquiri', u'jail', u'abus'] [u'surgeri', u'continu', u'despit', u'hospit'] [u'swiss', u'attack', u'shame', u'turkish', u'welcom'] [u'telstra', u'manag', u'say', u'local', u'cut', u'unlik'] [u'telstra', u'region', u'servic', u'plan'] [u'tenni', u'success', u'mind', u'say', u'draper'] [u'thatcher', u'daughter', u'keep', u'gameshow'] [u'thompson', u'leav', u'dragon'] [u'thorp', u'competit', u'comeback', u'world'] [u'thousand', u'protest', u'plan', u'chang'] [u'alleg', u'bali', u'bomber', u'arrest'] [u'arrest', u'bali', u'bomb'] [u'earli', u'specul', u'job', u'telstra'] [u'trimbl', u'get', u'ireland', u'australia'] [u'unexcit', u'growth', u'rate', u'forecast'] [u'announc', u'appoint'] [u'union', u'happi', u'workplac', u'protest'] [u'reinstat', u'food', u'offici'] [u'urban', u'win', u'countri', u'music', u'award'] [u'confirm', u'white', u'phosphorus', u'fallujah'] [u'distanc', u'soldier', u'secret', u'baghdad', u'prison'] [u'lift'] [u'vanston', u'talk', u'asylum', u'seeker', u'arriv'] [u'vietnam', u'find', u'bird', u'variat'] [u'virgin', u'blue', u'profit', u'slide'] [u'wagga', u'worker', u'turn', u'protest', u'chang'] [u'rais', u'school', u'leav'] [u'warburton', u'storm', u'clean'] [u'crime', u'tribun', u'acquit', u'bosnian', u'offic'] [u'weightlift', u'face', u'life', u'dope', u'charg'] [u'wine', u'sit', u'idl', u'tank'] [u'world', u'qualifi', u'extra', u'time'] [u'yuvraj', u'reviv', u'india', u'south', u'africa'] [u'pulp', u'plan', u'south', u'east'] [u'grandstand', u'speak', u'andi', u'harper'] [u'grandstand', u'speak', u'john', u'oneil'] [u'aerial', u'locust', u'spray', u'target', u'nation', u'park'] [u'defend', u'claim', u'forens', u'analysi', u'delay'] [u'airport', u'termin', u'open', u'loom'] [u'alcoa', u'fight'] [u'critic', u'health', u'servic', u'financ'] [u'anti', u'protest', u'target', u'rumsfeld'] [u'arian', u'launch', u'satellit'] [u'asio', u'chief', u'say', u'law', u'wont', u'lessen', u'terror'] [u'auction', u'rais', u'fund', u'bali', u'blast', u'victim'] [u'audio', u'highlight'] [u'aussi', u'expect', u'help', u'boost', u'toowoomba', u'soccer'] [u'aust', u'defenc', u'staffer', u'link', u'scandal'] [u'australian', u'debut', u'impressionist'] [u'australia', u'woeful', u'windi'] [u'australia', u'lizard', u'venom'] [u'averag', u'week', u'wage', u'jump'] [u'backyard', u'mango', u'expect', u'fetch', u'good', u'price'] [u'bacteria', u'scare', u'prompt', u'health', u'servic', u'assur'] [u'bayer', u'call', u'state', u'veto', u'crop'] [u'beard', u'leav', u'option', u'open'] [u'fish', u'drug', u'traffick', u'jail', u'year'] [u'bird', u'vaccin', u'useless'] [u'boati', u'hear', u'cyclon', u'safeti', u'plan', u'chang'] [u'boat', u'damag', u'fremantl', u'harbour', u'explos'] [u'bodi', u'gold', u'coast', u'park'] [u'boycott', u'violenc', u'lankan', u'poll'] [u'kwinana', u'refineri', u'resum', u'oper'] [u'broad', u'follow', u'father', u'footstep'] [u'build', u'boom', u'good', u'buchanan', u'park', u'tender'] [u'busi', u'chamber', u'back', u'camera', u'plan'] [u'bypass', u'underground', u'indigen', u'artefact'] [u'central', u'darl', u'back', u'councillor', u'number'] [u'chang', u'iraqi', u'market', u'pose', u'threat', u'wheat', u'grower'] [u'charg', u'lay', u'elder', u'youth', u'worker', u'murder'] [u'childcar', u'provid', u'take'] [u'child', u'charg', u'quash', u'convict'] [u'claim', u'birthrat', u'drop', u'chang'] [u'clean', u'show', u'gibb', u'river', u'get', u'cleaner'] [u'cobb', u'angri', u'protest', u'attack'] [u'cole', u'myer', u'prowl', u'busi', u'expans'] [u'commerc', u'bodi', u'back', u'chang'] [u'consular', u'offici', u'help', u'detain', u'australian'] [u'contract', u'review', u'speed', u'camera', u'bungl'] [u'cooper', u'confid', u'accc', u'reject', u'takeov'] [u'council', u'await', u'water', u'recycl', u'project'] [u'council', u'probe', u'reveal', u'unaccount', u'elect'] [u'council', u'consid', u'flood', u'prepar', u'pond'] [u'council', u'green', u'light', u'snowi', u'plain', u'wind', u'farm'] [u'councillor', u'urg', u'water', u'hour', u'rethink'] [u'council', u'reject', u'park', u'chang'] [u'council', u'unit', u'push', u'highway', u'dual', u'carriageway'] [u'court', u'hear', u'tap', u'murdoch', u'phone', u'call'] [u'court', u'like', u'close', u'terror', u'trial'] [u'defenc', u'contract', u'net', u'hundr', u'job'] [u'defenc', u'softbal', u'battl', u'honour'] [u'deliri', u'fan', u'celebr', u'socceroo'] [u'design', u'work', u'begin', u'denmark', u'hospit'] [u'detent', u'teen', u'guilti', u'arm', u'robberi'] [u'district', u'await', u'drought', u'news'] [u'drop', u'suppli', u'push', u'potato', u'price'] [u'economist', u'play', u'rise', u'jobless', u'rate'] [u'eel', u'smith'] [u'emerg', u'servic', u'worri', u'chang'] [u'england', u'need', u'thorp', u'say', u'hussain'] [u'england', u'unchang', u'black'] [u'esso', u'worker', u'sceptic', u'roster', u'chang'] [u'expo', u'offer', u'teen', u'career', u'advic'] [u'fatal', u'unit', u'blaze', u'shock', u'communiti'] [u'fear', u'telstra', u'cut', u'plan', u'affect', u'local'] [u'fin', u'follow', u'england', u'defeat'] [u'firework', u'busi', u'plan', u'goulburn', u'mulware'] [u'focus', u'fall', u'stock', u'rout', u'network', u'problem'] [u'focus', u'turn', u'plan', u'multi', u'purpos'] [u'forum', u'discuss', u'book', u'regul'] [u'foster', u'deal', u'curb', u'bundi', u'sale'] [u'french', u'senat', u'pass', u'emerg', u'law'] [u'french', u'violenc', u'level', u'normal'] [u'furi', u'match', u'vagana', u'crash'] [u'expans', u'drive', u'woodsid', u'forecast'] [u'gonzalez', u'hand', u'puerta', u'speedi', u'exit'] [u'govt', u'deni', u'chang', u'hurt', u'famili'] [u'govt', u'outlin', u'region', u'upgrad'] [u'govt', u'urg', u'opposit', u'poki', u'plan'] [u'goward', u'rais', u'concern'] [u'gower', u'name', u'half', u'great', u'britain', u'clash'] [u'group', u'purr', u'reject', u'control', u'law'] [u'gymnast', u'inspir', u'socceroo'] [u'hand', u'crank', u'laptop', u'launch', u'schoolkid'] [u'hayden', u'hussey', u'complet', u'domin'] [u'health', u'meet', u'consid', u'doctor', u'hospit'] [u'hill', u'expect', u'request', u'troop', u'iraq'] [u'hill', u'play', u'aust', u'link', u'scandal'] [u'hill', u'rais', u'hick', u'inform', u'rumsfeld'] [u'hospit', u'locat', u'plan', u'review'] [u'howard', u'unmov', u'milit', u'threat'] [u'hungari', u'investig', u'wwii', u'crime', u'suspect'] [u'hunter', u'bird', u'plan', u'near', u'complet'] [u'icac', u'reject', u'health', u'servic', u'contract', u'probe'] [u'indonesia', u'confirm', u'death', u'bird'] [u'intellig', u'design', u'debat', u'inspir', u'prize', u'win'] [u'iran', u'start', u'convert', u'batch', u'uranium'] [u'isra', u'leader', u'agre', u'elect', u'time'] [u'journalist', u'apologis', u'leak', u'case'] [u'kalgoorli', u'rank', u'high', u'properti', u'fire'] [u'kangaroo', u'flat', u'councillor', u'bendigo', u'mayor'] [u'katter', u'fear', u'cdma', u'plan', u'hurt', u'region'] [u'kempsey', u'council', u'move', u'address', u'youth', u'crime'] [u'kuwaiti', u'jail', u'centrelink', u'fraud'] [u'lawyer', u'question', u'sourc', u'cream', u'poison'] [u'leak', u'add', u'pressur', u'save', u'townsvill', u'water'] [u'lectur', u'charg', u'take', u'student', u'money'] [u'break', u'australia'] [u'accus', u'home', u'invas', u'target', u'senior'] [u'accus', u'multipl', u'child', u'offenc'] [u'arrest', u'murder', u'elder', u'volunt'] [u'face', u'child', u'charg', u'challeng', u'law'] [u'jail', u'theft', u'shoot', u'chase'] [u'lose', u'appeal', u'doubl', u'murder', u'convict'] [u'man', u'hospit', u'temporarili', u'shut', u'matern', u'unit'] [u'martin', u'urg', u'minut', u'dump', u'inquiri', u'submiss'] [u'mask', u'make', u'video', u'threat', u'aust'] [u'mcevoy', u'road', u'recoveri'] [u'member', u'leadership'] [u'memoir', u'win', u'nonfict', u'prize'] [u'minist', u'confid', u'support', u'circl'] [u'miss', u'woman', u'unlik', u'aliv', u'polic'] [u'ethanol', u'blend', u'hit', u'market'] [u'move', u'examin', u'children', u'therapi', u'wait', u'list'] [u'fear', u'network', u'short', u'chang', u'region'] [u'urg', u'govt', u'tear', u'indonesian', u'fish'] [u'murder', u'suspect', u'lock', u'parol', u'breach'] [u'murdoch', u'shoe', u'dont', u'match', u'footprint', u'court', u'hear'] [u'museum', u'manag', u'hand'] [u'music', u'award', u'urban', u'cowboy', u'toast', u'cabooltur'] [u'nation', u'keppel', u'candid'] [u'nelson', u'accus', u'backflip', u'univers'] [u'nelson', u'tell', u'lift', u'game', u'australian', u'school'] [u'board', u'member', u'seek', u'health', u'servic'] [u'contract', u'crack', u'school', u'clean'] [u'group', u'help', u'migrant', u'profession'] [u'nonu', u'clear', u'danger', u'tackl'] [u'northern', u'trawler', u'welcom'] [u'introduc', u'anti', u'terror', u'legisl'] [u'crabber', u'vow', u'fight', u'rule', u'chang'] [u'nurs', u'stop', u'work', u'push'] [u'gold', u'price', u'drive', u'market'] [u'oper', u'cancel', u'hospit', u'fund'] [u'optim', u'mount', u'piper', u'power', u'upgrad'] [u'orang', u'home', u'diseas', u'control'] [u'pair', u'face', u'court', u'drug', u'seiz'] [u'patrick', u'alleg', u'virgin', u'break', u'dividend', u'leak'] [u'patrick', u'profit', u'slide'] [u'arriv', u'apec'] [u'hint', u'abort', u'pill', u'conscienc', u'vote'] [u'govt', u'undermin', u'bougainvill', u'secur'] [u'polic', u'associ', u'urg', u'offic', u'number'] [u'polic', u'hunt', u'tamworth', u'child', u'attack'] [u'polic', u'interview', u'wit'] [u'polic', u'investig', u'death'] [u'polic', u'tweed', u'drug', u'oper', u'arrest'] [u'polic', u'minist', u'deni', u'prioritis', u'nation'] [u'public', u'concern', u'trigger', u'abernethi', u'develop'] [u'public', u'remind', u'colac', u'parliamentari', u'sit'] [u'qualif', u'open', u'door', u'asia', u'lowi'] [u'rare', u'black', u'coral', u'send', u'adelaid', u'museum'] [u'ravensthorp', u'water', u'shortag', u'unlik'] [u'redback', u'skittl', u'warrior', u'victori'] [u'redback', u'warrior', u'even', u'pois'] [u'renmark', u'meet', u'back', u'anti', u'dump', u'stanc'] [u'research', u'highlight', u'sugarcan', u'posit'] [u'resid', u'saleyard', u'protest', u'street'] [u'rumsfeld', u'whisk', u'away', u'arriv', u'adelaid'] [u'rural', u'medico', u'anger', u'abort', u'pill', u'slur'] [u'pulp', u'threat', u'gunn'] [u'search', u'find', u'miss', u'aliv'] [u'senat', u'group', u'look', u'alburi', u'work', u'issu'] [u'shire', u'worker', u'negoti', u'chang'] [u'singapor', u'apologis', u'hang', u'date', u'bungl'] [u'singapor', u'set', u'nguyen', u'execut', u'date'] [u'smyth', u'pay', u'tribut', u'veteran'] [u'socceroo', u'break', u'world', u'drought'] [u'socceroo', u'earn', u'place', u'world'] [u'socceroo', u'score', u'record', u'televis', u'audienc'] [u'soccer', u'sign', u'tip', u'jump'] [u'sorenstam', u'rediscov', u'golf', u'passion'] [u'student', u'opportun', u'discuss', u'health', u'issu'] [u'studi', u'consid', u'natur', u'disast', u'protect'] [u'studi', u'investig', u'chang', u'role', u'farm', u'women'] [u'surg', u'sugar', u'price', u'lift', u'canegrow', u'spirit'] [u'suspect', u'milit', u'threaten', u'australia'] [u'sydney', u'hobart', u'veteran', u'take'] [u'staff', u'walk', u'reloc', u'propos'] [u'govt', u'contribut', u'aquat', u'centr', u'fund'] [u'tast', u'festiv', u'stay', u'waterfront'] [u'telstra', u'talk', u'benefit', u'cdma', u'phase'] [u'terror', u'threat', u'remain', u'despit', u'arrest', u'asio'] [u'life', u'host', u'die'] [u'thousand', u'celebr', u'trinidad', u'clinch', u'world'] [u'thousand', u'expect', u'flock', u'wine', u'festiv'] [u'timber', u'worker', u'ralli', u'compo'] [u'drug', u'investig', u'bust', u'traffic'] [u'tourism', u'industri', u'urg', u'speak'] [u'treasur', u'warn', u'budget', u'problem', u'loom'] [u'trial', u'alleg', u'bali', u'leader', u'proceed'] [u'trio', u'charg', u'woomera', u'fire'] [u'trio', u'recommend', u'braveri', u'award', u'tamworth'] [u'troop', u'remain', u'iraq', u'longer', u'hill'] [u'troop', u'welcom', u'home', u'iraq'] [u'uruguay', u'sicken', u'world', u'oust'] [u'back', u'iraq', u'prison', u'abus', u'probe'] [u'defend', u'phosphorus', u'bomb', u'fallujah'] [u'soldier', u'face', u'detaine', u'abus', u'charg'] [u'util', u'complaint', u'surg'] [u'supercar', u'chief', u'love', u'tight', u'contest'] [u'vietnam', u'search', u'glitter', u'amid', u'abus', u'fear'] [u'virgin', u'reject', u'dividend', u'leak', u'claim'] [u'wallabi', u'feel', u'pressur'] [u'warburton', u'storm', u'clean', u'continu'] [u'warn', u'recov', u'bracken'] [u'warrior', u'deep', u'troubl', u'adelaid'] [u'watch', u'sea', u'swim', u'ban'] [u'weather', u'contribut', u'platypus', u'loss'] [u'wellen', u'aust', u'nation', u'match'] [u'western', u'produc', u'board', u'member'] [u'western', u'salin', u'prove', u'cost'] [u'windi', u'limp', u'lunch'] [u'windi', u'slip', u'deeper', u'troubl'] [u'wind', u'nation', u'park', u'blaze'] [u'wine', u'group', u'consid', u'constitut'] [u'woman', u'die', u'unit', u'blaze'] [u'woolford', u'stand', u'raider', u'captain'] [u'youth', u'suspect', u'motor', u'scooter', u'theft'] [u'abalon', u'diver', u'releas', u'good', u'behaviour', u'bond'] [u'abbott', u'follow', u'govt', u'lead', u'abort', u'pill'] [u'abduct', u'attempt', u'worri', u'polic'] [u'accc', u'flag', u'waterfront', u'competit'] [u'accredit', u'loom', u'plan', u'standardis', u'fish'] [u'aceh', u'weapon', u'handov', u'extend'] [u'economi', u'retain', u'plus', u'rat'] [u'hand', u'remain', u'firek', u'vehicl'] [u'highlight', u'strike', u'boe', u'worker', u'plight'] [u'alic', u'spring', u'forum', u'address', u'anti', u'social', u'behaviour'] [u'await', u'feder', u'boundari', u'announc'] [u'ancient', u'aust', u'deposit', u'earli', u'earth', u'crust'] [u'anger', u'air', u'fish', u'ski'] [u'lose', u'legal', u'fight', u'import', u'pork'] [u'audio', u'highlight'] [u'aussi', u'rush', u'secur', u'world', u'ticket'] [u'australian', u'model', u'guilti', u'drug', u'charg'] [u'australian', u'open', u'bludgeon', u'windi'] [u'aust', u'troop', u'stay', u'iraq', u'howard'] [u'target', u'aust', u'bomb', u'rang'] [u'bail', u'revok', u'accus', u'gang', u'rapist'] [u'beethoven', u'skull', u'identifi'] [u'bichel', u'lead', u'fight'] [u'bishop', u'speak', u'chang'] [u'bond', u'item', u'memorabilia', u'sale'] [u'brain', u'gene', u'link', u'fear'] [u'bring', u'troop', u'home', u'iraq', u'demand', u'congressman'] [u'britain', u'extradit', u'madrid', u'train', u'bomb', u'suspect'] [u'cairn', u'indigen', u'child', u'protect', u'agenc', u'open'] [u'govt', u'negoti', u'iraq', u'exit', u'strategi'] [u'centrelink', u'worker', u'stop', u'work'] [u'chang', u'land', u'right'] [u'chelsea', u'mini', u'slump'] [u'concern', u'global', u'warm', u'affect', u'fish', u'stock'] [u'consortium', u'sign', u'carpark', u'busi', u'deal'] [u'contract', u'agreement', u'end', u'anaesthetist', u'disput'] [u'cook', u'jail', u'pour', u'captain'] [u'cooper', u'sharehold', u'vote', u'lion', u'nathan', u'right'] [u'costello', u'back', u'conscienc', u'vote', u'abort', u'pill'] [u'council', u'fail', u'approv', u'cruis', u'ship', u'termin', u'plan'] [u'councillor', u'prepar', u'toowoomba', u'north', u'campaign'] [u'court', u'hear', u'meatwork', u'clean', u'matter'] [u'cross', u'border', u'rescu', u'squad', u'lose', u'insur'] [u'crow', u'holm', u'court', u'tabl', u'rabbitoh'] [u'applic', u'fall'] [u'reopen', u'search', u'fail', u'croc'] [u'defenc', u'dept', u'releas', u'kiss', u'option'] [u'deregul', u'law', u'dampen', u'ricegrow', u'celebr'] [u'doctor', u'group', u'label', u'provid', u'number', u'plan'] [u'domest', u'cricket', u'start', u'sydney', u'brisban'] [u'domest', u'violenc', u'higher', u'malle'] [u'doubl', u'bomb', u'attack', u'rock', u'baghdad'] [u'dredg', u'boost', u'plan', u'iron'] [u'drug', u'firm', u'confid', u'clear'] [u'educ', u'dept', u'review', u'school', u'fare'] [u'elder', u'drug', u'traffick', u'permit', u'live', u'home'] [u'elliott', u'road', u'recoveri'] [u'emerg', u'servic', u'medal', u'honour', u'mitchel'] [u'end', u'loom', u'pregnanc', u'support', u'servic'] [u'england', u'peak', u'halt', u'rampant', u'black'] [u'entsch', u'unsur', u'byrn', u'leichhardt', u'candidaci'] [u'fairfax', u'employe', u'angri', u'plan'] [u'fairfax', u'lose', u'oshan', u'challeng'] [u'farmer', u'water', u'price'] [u'farr', u'jone', u'rue', u'rugbi', u'miss', u'opportun'] [u'flash', u'flood', u'prove', u'cost', u'council'] [u'fossilis', u'drop', u'dinosaur', u'graze'] [u'freightlink', u'say', u'railway', u'cost', u'competit'] [u'gang', u'driver', u'plead', u'guilti', u'gunn', u'payrol', u'robberi'] [u'gayl', u'heart', u'condit', u'treat', u'seri'] [u'play', u'wait', u'game', u'kangaroo'] [u'german', u'firm', u'lodg', u'wind', u'farm', u'plan'] [u'german', u'world', u'homecom', u'schwarzer'] [u'decis', u'disappoint', u'farmer'] [u'trial', u'abandon', u'mice', u'fall'] [u'gnome', u'owner', u'fall', u'victim', u'schooli', u'prank'] [u'goat', u'death', u'prompt', u'freight', u'overhaul'] [u'gold', u'price', u'hit', u'year', u'high'] [u'govt', u'accus', u'breach', u'polici', u'wind', u'farm'] [u'govt', u'alloc', u'fund', u'calder', u'highway', u'project'] [u'govt', u'ask', u'help', u'save', u'carnarvon', u'basin', u'water'] [u'govt', u'shell', u'fund', u'turtl', u'protect'] [u'govt', u'consid', u'gympi', u'bypass', u'rout', u'option'] [u'govt', u'urg', u'smelter', u'potlin'] [u'problem', u'requir', u'extra', u'medic', u'student'] [u'greek', u'prosecutor', u'charg', u'sprinter', u'fake', u'crash'] [u'green', u'group', u'happi', u'decis', u'tuna', u'farm'] [u'green', u'group', u'see', u'good'] [u'guilti', u'lesli', u'prepar', u'return', u'home'] [u'harvey', u'head', u'west', u'challeng'] [u'health', u'minist', u'agre', u'bird', u'plan'] [u'hensbi', u'lonard', u'pace', u'world'] [u'high', u'court', u'permit', u'logger', u'fight', u'forestri'] [u'high', u'rail', u'cost', u'freight', u'industri', u'away', u'toll'] [u'homeless', u'scheme', u'win', u'polic', u'award'] [u'hope', u'earli', u'finish', u'calder', u'duplic'] [u'hospit', u'interpret', u'lack', u'train', u'danger'] [u'howard', u'warn', u'bird', u'cover'] [u'hussey', u'hayden', u'continu', u'assault'] [u'illawarra', u'jobless', u'rate', u'highest', u'statist'] [u'sexi', u'say', u'tenni', u'king', u'feder'] [u'industri', u'rival', u'lobbi', u'telstra', u'push', u'eas'] [u'injur', u'vaughan', u'hope', u'return', u'second', u'test'] [u'show', u'panther', u'port', u'macquari', u'club'] [u'iraqi', u'mosqu', u'bomb', u'kill'] [u'iraq', u'say', u'aust', u'troop', u'longer', u'need'] [u'ireland', u'australia', u'meet', u'lick', u'wound'] [u'inquiri', u'hear', u'christma', u'basic'] [u'inquiri', u'tell', u'mine', u'boom', u'push', u'wag'] [u'jone', u'confid', u'success', u'ireland'] [u'journalist', u'picket', u'plan', u'fairfax'] [u'juri', u'find', u'chef', u'guilti', u'murder', u'father'] [u'kangaroo', u'drop', u'price', u'great', u'britain', u'clash'] [u'kearn', u'babi', u'expect', u'recoveri'] [u'kearn', u'speak', u'time', u'daughter', u'accid'] [u'kid', u'beach', u'toy', u'recal'] [u'king', u'prove', u'good', u'croc'] [u'kookaburra', u'crush', u'fiji', u'world', u'record'] [u'bali', u'bomb', u'survivor', u'return', u'newcastl'] [u'lawyer', u'back', u'decis', u'extradit', u'assault'] [u'lesli', u'arriv', u'court', u'sentenc'] [u'lesli', u'convict', u'walk', u'free', u'time', u'serv'] [u'life', u'sentenc', u'burn', u'mate', u'death'] [u'lion', u'nathan', u'appeal', u'cooper', u'decis'] [u'local', u'industri', u'upbeat', u'gold', u'price', u'surg'] [u'machin', u'overtak', u'human', u'internet'] [u'arrest', u'doubl', u'murder'] [u'court', u'communiti', u'worker', u'murder'] [u'refus', u'bail', u'bomb', u'possess'] [u'sentenc', u'drug'] [u'marin', u'overpow', u'victori'] [u'meat', u'livestock', u'chairman', u'urg', u'uniti'] [u'meatwork', u'job', u'time'] [u'meet', u'put', u'focus', u'riverland', u'crime'] [u'meet', u'underlin', u'wild', u'fenc', u'upkeep'] [u'miner', u'health', u'studi', u'show', u'depress', u'sleep'] [u'minist', u'consid', u'pacif', u'nation', u'fund'] [u'lesli', u'case', u'trial', u'reveal', u'lawyer', u'say'] [u'mother', u'jail', u'babi', u'death'] [u'fin', u'firearm', u'offenc'] [u'play', u'union', u'fear'] [u'sack', u'staffer', u'fight', u'dismiss'] [u'murdoch', u'similar', u'height', u'suspect', u'court', u'hear'] [u'muslim', u'back', u'weed', u'radic', u'leader'] [u'natoli', u'upset', u'sippi', u'down', u'hospit', u'handl'] [u'project', u'boost', u'resourc', u'confid'] [u'zealand', u'host', u'rugbi', u'world'] [u'nguyen', u'famili', u'hope'] [u'guarante', u'solon', u'case', u'wont', u'repeat'] [u'target', u'share', u'price', u'govt', u'telstra', u'sale'] [u'oecd', u'deleg', u'head', u'riverland'] [u'cancer', u'death', u'avoid'] [u'orang', u'council', u'eas', u'water', u'ban'] [u'pair', u'face', u'court', u'pipe', u'bomb'] [u'palm', u'council', u'reflect', u'death', u'custodi'] [u'park', u'grain', u'close'] [u'parliament', u'mate', u'make', u'intern', u'silli', u'list'] [u'promis', u'council', u'worker', u'protest'] [u'phosphat', u'mine', u'resum', u'nauru'] [u'plan', u'retail', u'outlet', u'spark', u'small', u'busi', u'fear'] [u'wish', u'solon'] [u'polic', u'hunt', u'knife', u'bandit'] [u'polic', u'offic', u'guilti', u'rape'] [u'polic', u'plan', u'includ', u'town', u'centr', u'patrol'] [u'polic', u'probe', u'possibl', u'drug', u'syndic'] [u'polic', u'warn', u'parent', u'abduct', u'attempt'] [u'pork', u'produc', u'lose', u'high', u'court', u'import'] [u'power', u'plant', u'plan', u'spark', u'question'] [u'protest', u'turn', u'violent', u'apec'] [u'public', u'land', u'plan'] [u'push', u'continu', u'anaesthetist', u'young'] [u'pwcs', u'urg', u'lift', u'hunter', u'coal', u'export'] [u'rain', u'affect', u'bushfir', u'control', u'effort'] [u'rain', u'continu', u'hobart'] [u'region', u'highway', u'extrem', u'danger'] [u'region', u'child', u'disabl', u'advic', u'scheme'] [u'resid', u'fume', u'crematorium', u'court'] [u'resid', u'opportun', u'talk', u'wheatbelt', u'futur'] [u'resourc', u'boost', u'darfur', u'mission'] [u'resourc', u'push', u'share', u'market', u'higher'] [u'roadwork', u'help', u'traine', u'secur', u'construct'] [u'roar', u'turn', u'feng', u'shui', u'goal', u'drought'] [u'cast', u'doubt', u'bypass'] [u'ruddock', u'open', u'famili', u'confer'] [u'rumsfeld', u'hail', u'australia', u'relationship'] [u'rural', u'exhibit', u'centr', u'fund', u'prove', u'cost'] [u'deputi', u'opposit', u'leader', u'bow'] [u'good', u'posit', u'deal', u'outbreak'] [u'join', u'nlis', u'sheep', u'goat'] [u'pulp', u'expect', u'threaten', u'heywood'] [u'schooli', u'urg', u'parti', u'safe'] [u'site', u'choos', u'plan', u'sport', u'complex'] [u'socceroo', u'reveal', u'dirti', u'trick', u'inspir'] [u'solon', u'australia'] [u'solon', u'bear', u'grudg'] [u'specul', u'farrer', u'futur', u'elector'] [u'lankan', u'win', u'presidenti', u'elect'] [u'lankan', u'presidenti', u'elect', u'close'] [u'storm', u'respons', u'review', u'consid', u'emerg', u'plan'] [u'suspend', u'sentenc', u'driver', u'guilti', u'girl'] [u'suspici', u'packag', u'put', u'hospit'] [u'accus', u'illeg', u'grow', u'japanes'] [u'tasmania', u'test', u'bird', u'outbreak', u'respons'] [u'teen', u'accus', u'throw', u'blood', u'polic'] [u'terror', u'law', u'bristl', u'safeguard'] [u'terror', u'threat', u'remain', u'unchang', u'despit', u'warn'] [u'magic', u'mushi'] [u'thorn', u'phelp', u'star', u'domin', u'blue'] [u'heritag', u'worker', u'voluntari', u'redund'] [u'thwait', u'announc', u'water', u'plan'] [u'toll', u'pacif', u'highway', u'upgrad', u'inquiri'] [u'toll', u'hold', u'head', u'confid', u'takeov'] [u'earli', u'troop', u'return', u'iraq'] [u'tourist', u'number', u'drop', u'wimmera', u'malle'] [u'transport', u'minist', u'consid', u'road', u'charg', u'hike'] [u'trescothick', u'doubt', u'famili', u'accid'] [u'trescothick', u'remain', u'pakistan'] [u'trinidad', u'declar', u'holiday', u'soccer', u'world'] [u'trochus', u'shell', u'poacher', u'jail'] [u'turkey', u'lash', u'fifa', u'boss', u'blatter'] [u'accus', u'assault', u'win', u'extradit', u'fight'] [u'envoy', u'turn', u'guantanamo', u'visit'] [u'union', u'urg', u'busi', u'cash', u'courier'] [u'scienc', u'technic', u'support', u'staff'] [u'vivian', u'solon', u'return', u'australia'] [u'economi', u'dwarf', u'nation', u'growth', u'report'] [u'wallac', u'corps', u'bride', u'oscar', u'short', u'list'] [u'opposit', u'reject', u'anti', u'terror', u'search', u'claus'] [u'water', u'expert', u'head', u'gold', u'coast', u'gather'] [u'studi', u'women', u'farm', u'contribut'] [u'weah', u'cri', u'foul', u'elect', u'loss'] [u'whale', u'death', u'think', u'isol', u'incid'] [u'wildcat', u'sink', u'breaker'] [u'wine', u'qualiti', u'best', u'year'] [u'woman', u'win', u'continu', u'legal', u'action'] [u'wooli', u'awar', u'walkerston', u'delay'] [u'worri', u'air', u'council', u'buddhist', u'group', u'agreement'] [u'yeppoon', u'prepar', u'schooli', u'influx'] [u'arrest', u'schooli', u'celebr', u'begin'] [u'grandstand', u'speak', u'andi', u'bichel'] [u'grandstand', u'speak', u'angi', u'skirv'] [u'grandstand', u'speak', u'brad', u'hodg'] [u'cancer', u'patient', u'seek', u'treatment', u'sydney'] [u'afghan', u'blast', u'kill', u'portugues', u'peacekeep'] [u'amman', u'bomb', u'aim', u'muslim'] [u'amnesti', u'demand', u'detent', u'camp', u'investig'] [u'anti', u'terror', u'barrier', u'unveil', u'sydney'] [u'apec', u'leader', u'commit', u'bird', u'fight'] [u'apec', u'leader', u'push', u'export', u'subsidi'] [u'apec', u'leader', u'target', u'bird', u'trade'] [u'aussi', u'slide', u'golf', u'world'] [u'aust', u'track', u'meet', u'kyoto', u'target', u'campbel'] [u'australia', u'commit', u'bird', u'fight'] [u'australian', u'prostat', u'cancer', u'drug', u'show', u'promis'] [u'australia', u'urg', u'fight', u'death', u'penalti'] [u'best', u'intens', u'care'] [u'best', u'life', u'support', u'machin'] [u'bird', u'flare', u'vietnam', u'china'] [u'blue', u'domin', u'struggl', u'tiger'] [u'blue', u'cours', u'score'] [u'boomer', u'outclass'] [u'injur', u'rock', u'attack'] [u'breaker', u'start', u'season', u'win', u'note'] [u'buderus', u'relish', u'hostil', u'brit'] [u'bull', u'gain', u'ascend', u'bushrang'] [u'bushrang', u'inning', u'point', u'despit'] [u'bush', u'reject', u'timet', u'iraq', u'pullout'] [u'capsiz', u'yacht', u'alarm', u'polic'] [u'bomb', u'kill', u'baghdad', u'market'] [u'castro', u'shrug', u'health', u'report', u'marathon'] [u'chelsea', u'treat', u'like', u'danger', u'anim'] [u'coloni', u'couch', u'cost', u'consortium'] [u'concern', u'rais', u'perri', u'lake', u'develop'] [u'congreg', u'pray', u'australian', u'death'] [u'conrad', u'black', u'appear', u'court', u'tuesday'] [u'cost', u'couch', u'find', u'home'] [u'court', u'award', u'child', u'protect', u'worker', u'stress', u'payout'] [u'crow', u'fin', u'hotel', u'phone', u'assault'] [u'audio', u'highlight'] [u'devonport', u'crack', u'danger', u'drive'] [u'divid', u'senat', u'tabl', u'report'] [u'glori', u'play', u'entertain', u'draw'] [u'feder', u'face', u'nalbandian', u'master', u'final'] [u'firefight', u'union', u'push', u'resourc'] [u'ford', u'job'] [u'fuel', u'leak', u'disrupt', u'bind', u'flight'] [u'gaudio', u'set', u'feder', u'semi', u'final'] [u'georgeson', u'light', u'race', u'women', u'surf', u'crown'] [u'govt', u'action', u'urg', u'global', u'warm'] [u'govt', u'warn', u'spend', u'rat'] [u'greenhous', u'emiss', u'report', u'alarm'] [u'greenpeac', u'hunt', u'japanes', u'whale', u'ship'] [u'hodg', u'show', u'nerv', u'test', u'debut'] [u'howard', u'unveil', u'bird', u'program'] [u'hussey', u'fall', u'hobart'] [u'iaea', u'rap', u'iran', u'transpar'] [u'indonesia', u'pull', u'troop', u'aceh'] [u'indonesia', u'deport', u'lesli'] [u'irish', u'media', u'kean', u'sack', u'unit'] [u'japanes', u'firm', u'sniff', u'internet', u'opportun'] [u'kean', u'unit', u'career'] [u'king', u'outlast', u'razorback', u'tiger', u'toppl', u'taipan'] [u'kiwi', u'snatch', u'victori', u'french'] [u'kookaburra', u'world'] [u'labor', u'back', u'forc', u'train', u'plan'] [u'lenton', u'set'] [u'lesli', u'free', u'bali', u'jail'] [u'lesli', u'hop', u'free', u'today'] [u'lesli', u'lawyer', u'meet', u'immigr', u'offici'] [u'lesli', u'releas', u'jail'] [u'lose', u'look', u'gregan'] [u'madonna', u'lift', u'belgian', u'song', u'judg', u'rule'] [u'dead', u'woman', u'injur', u'domest', u'disput'] [u'mccaw', u'england', u'clash'] [u'mcgrath', u'leav', u'windi', u'tatter'] [u'mcgrath', u'rock', u'windi', u'order'] [u'methadon', u'program', u'closur', u'unaccept'] [u'milit', u'websit', u'outlin', u'jakarta', u'attack', u'scenario'] [u'candid', u'prompt', u'jackson', u'retir'] [u'port', u'secur', u'devic', u'unveil'] [u'lankan', u'presid', u'focus', u'peac'] [u'nguyen', u'expect'] [u'year', u'injur', u'cliff', u'fall'] [u'polic', u'overhaul', u'health', u'safeti'] [u'urg', u'advantag', u'mine', u'opportun'] [u'nurs', u'retent', u'rat', u'worri', u'say', u'feder'] [u'opposit', u'back', u'land', u'right', u'chang'] [u'pakistani', u'tour', u'impress', u'depress', u'annan'] [u'parent', u'upset', u'pingelli', u'school', u'closur'] [u'pentagon', u'review', u'iraq', u'intellig', u'unit'] [u'perren', u'eye', u'centuri', u'bull', u'gain', u'upper', u'hand'] [u'plane', u'make', u'belli', u'land', u'bathurst'] [u'polic', u'identifi', u'bali', u'bomber'] [u'polic', u'investig', u'fatal', u'domest', u'disput'] [u'pont', u'go', u'open'] [u'portsmouth', u'celtic', u'sniff', u'kean'] [u'premier', u'defend', u'give', u'refer', u'brigitt'] [u'princ', u'charl', u'take', u'action', u'tabloid'] [u'prostat', u'cancer', u'drug', u'show', u'promis'] [u'quak', u'donat', u'exceed', u'pakistan', u'need'] [u'queanbeyan', u'council', u'chang', u'manag', u'structur'] [u'ranger', u'trounc'] [u'region', u'telstra', u'worker', u'fear', u'job'] [u'ronaldo', u'extend', u'contract'] [u'rspca', u'condemn', u'live', u'export', u'goat', u'death'] [u'athlet', u'seek', u'beij', u'paralymp'] [u'santa', u'float', u'mayor', u'christma', u'parad'] [u'schooli', u'polic', u'arrang'] [u'shark', u'sight', u'close', u'perth', u'beach'] [u'soldier', u'kill', u'palestinian', u'west', u'bank'] [u'south', u'asia', u'quak', u'donor', u'confer', u'begin'] [u'sparrow', u'death', u'shock', u'nation'] [u'stock', u'boost', u'crude', u'price', u'drop'] [u'suicid', u'bomber', u'target', u'iraqi', u'mosqu'] [u'swimmer', u'warn', u'swan', u'river', u'sewag', u'spill'] [u'tendulkar', u'equal', u'akram', u'record'] [u'thorp', u'blitz', u'sydney', u'heat'] [u'thorp', u'shock', u'withdraw'] [u'thousand', u'flock'] [u'tiger', u'struggl', u'rampant', u'blue'] [u'truss', u'defend', u'airport', u'develop', u'process'] [u'accus', u'iran', u'extens', u'right', u'abus'] [u'expert', u'cancel', u'guantanamo', u'visit'] [u'fear', u'bird', u'hamper', u'aid', u'fight'] [u'fund', u'learn', u'program', u'disadvantag'] [u'summit', u'turn', u'spotlight', u'censorship'] [u'bird', u'warn'] [u'urg', u'intern', u'probe', u'iraqi', u'jail'] [u'actor', u'liabl', u'death', u'murder', u'wife'] [u'forc', u'train', u'plan', u'concern', u'katherin', u'mayor'] [u'vaughan', u'second', u'test'] [u'volunt', u'firefight', u'group', u'commiss'] [u'western', u'nation', u'warn', u'attack', u'indonesia'] [u'windi', u'fight'] [u'woman', u'honour', u'save', u'father'] [u'woman', u'send', u'polic', u'file', u'slam', u'privaci', u'commission'] [u'woolmer', u'happi', u'suspect', u'action'] [u'actu', u'seek', u'jam', u'hardi', u'compo', u'law'] [u'adelaid', u'disappoint', u'flame'] [u'troop', u'prais', u'iraq', u'progress'] [u'asio', u'check', u'alien', u'muslim', u'advoc'] [u'asio', u'intimid', u'muslim', u'advoc'] [u'audio', u'highlight'] [u'australian', u'step', u'taipei', u'challeng'] [u'barca', u'humbl', u'real', u'bernabeu'] [u'best', u'fight', u'life', u'london'] [u'blast', u'wind', u'thailand'] [u'brave', u'queensland', u'honour', u'award'] [u'bravo', u'dedic', u'trinidad', u'world', u'team'] [u'brisban', u'shrine', u'honour', u'rat', u'tobruk'] [u'burk', u'will', u'water', u'bottl', u'display'] [u'burst', u'water', u'main', u'damag', u'shop', u'complex'] [u'bush', u'hope', u'japan', u'lift', u'beef'] [u'bush', u'hold', u'talk', u'china'] [u'bush', u'urg', u'greater', u'china', u'freedom'] [u'busi', u'council', u'queanbeyan', u'tourist', u'centr'] [u'action', u'nguyen', u'prepar', u'fate'] [u'drug', u'law', u'tighten'] [u'amend', u'like', u'murray'] [u'canberra', u'need', u'unit', u'minist'] [u'bomb', u'kill', u'dozen', u'iraq'] [u'carrol', u'set', u'commonwealth', u'record'] [u'celtic', u'crush', u'ranger'] [u'childish', u'comment', u'wont', u'save', u'nguyen', u'downer'] [u'chines', u'explos', u'kill'] [u'coalit', u'begin', u'state', u'elect', u'preselect'] [u'coalit', u'call', u'public', u'hous', u'boost'] [u'cooper', u'confid', u'sharehold', u'resist', u'takeov'] [u'crime', u'victim', u'need', u'support'] [u'defeat', u'immin', u'valiant', u'windi'] [u'democrat', u'sanction', u'singapor'] [u'deport', u'lesli', u'rout', u'singapor'] [u'drug', u'drive', u'penalti', u'increas'] [u'win', u'maria', u'island', u'yact', u'race'] [u'emir', u'order', u'coup', u'boe'] [u'etsa', u'share', u'sale'] [u'fairfax', u'chief', u'push', u'ahead', u'compani', u'chang'] [u'firefight', u'contain', u'nation', u'park', u'blaze'] [u'ravag', u'disus', u'build'] [u'flintoff', u'halt', u'pakistan', u'march'] [u'franc', u'beat', u'tonga', u'fail', u'impress'] [u'franc', u'keep', u'watch', u'breatharian', u'retreat'] [u'french', u'pair', u'master', u'crown'] [u'gari', u'glitter', u'arrest', u'vietnam', u'report'] [u'gate', u'block', u'park', u'deter', u'danger', u'drive'] [u'gold', u'price', u'spark', u'increas', u'explor'] [u'govt', u'happi', u'assist', u'wheat', u'inquiri', u'vail'] [u'govt', u'push', u'airport', u'infrastructur'] [u'govt', u'monitor', u'telstra', u'mobil', u'phone', u'plan'] [u'gymnast', u'seek', u'glori', u'melbourn'] [u'habana', u'help', u'springbok', u'wale'] [u'half', u'time', u'rocket', u'fire', u'wallabi', u'victori', u'jone'] [u'henri', u'doubl', u'sink', u'wigan', u'chelsea', u'form'] [u'henri', u'humbl', u'black', u'hold', u'england'] [u'champ', u'win', u'burger', u'battl'] [u'indian', u'guard', u'kidnap', u'afghanistan'] [u'india', u'shatter', u'south', u'africa', u'world', u'record', u'dream'] [u'indonesian', u'fishermen', u'spot', u'ashor'] [u'iran', u'deni', u'nuclear', u'program', u'warrant', u'sanction'] [u'iraqi', u'grievanc', u'cairo', u'confer'] [u'israel', u'releas', u'whistleblow', u'vanunu', u'bail'] [u'jam', u'hardi', u'warn', u'compo', u'delay', u'backlash'] [u'japanes', u'tourist', u'die', u'reef', u'dive'] [u'jet', u'hold', u'defeat', u'roar'] [u'kangaroo', u'nation', u'final'] [u'kasper', u'put', u'bull', u'brisban'] [u'kennedi', u'consid', u'labor', u'nomin'] [u'labor', u'tight', u'lip', u'jackson', u'futur'] [u'lesli', u'expect', u'sydney', u'today'] [u'lesli', u'reliev'] [u'lesli', u'rest', u'singapor'] [u'lesli', u'speak'] [u'lesli', u'return', u'australia'] [u'liber', u'plan', u'eas', u'nurs', u'shortag'] [u'light', u'plane', u'crash', u'kill'] [u'charg', u'doubl', u'stab'] [u'rescu', u'hang'] [u'sharehold', u'telstra', u'chief'] [u'newman', u'unit', u'win', u'award'] [u'nguyen', u'lawyer', u'consid', u'intern', u'court'] [u'product', u'cut', u'opec', u'agenda'] [u'govt', u'anger', u'region', u'telstra', u'loss'] [u'opposit', u'alarm', u'public', u'hous', u'drop'] [u'opposit', u'criticis', u'singapor', u'govt'] [u'pacif', u'slow', u'tackl', u'aid', u'threat'] [u'pakistan', u'second', u'test'] [u'pakistan', u'look', u'comfort', u'england'] [u'pakistan', u'promis', u'account', u'donat'] [u'pakistan', u'assist', u'shabbir', u'bowl'] [u'parent', u'advic', u'hotlin', u'success'] [u'peter', u'newlind', u'speak', u'stuart', u'macgil'] [u'polic', u'seek', u'wit', u'trail', u'bike', u'collis'] [u'polic', u'urg', u'suspect', u'surrend', u'stab'] [u'princ', u'albert', u'monaco', u'enthron', u'complet'] [u'public', u'comment', u'seek', u'olymp', u'expans'] [u'putin', u'arriv', u'trade', u'talk', u'tokyo'] [u'putin', u'see', u'scope', u'project', u'north', u'korea'] [u'resid', u'fish', u'ranger'] [u'retail', u'urg', u'recycl'] [u'ruud', u'reveal', u'shock', u'kean', u'departur'] [u'scientist', u'hunt', u'asteroid', u'probe', u'space'] [u'senat', u'chang'] [u'socceroo', u'seek', u'european', u'friend'] [u'somali', u'pirat', u'releas', u'hijack', u'ship'] [u'spanish', u'mass', u'mark', u'franco', u'death'] [u'storm', u'power', u'south', u'east'] [u'strong', u'quak', u'hit', u'indonesia'] [u'tenni', u'boss', u'defend', u'gaudio', u'whitewash'] [u'thorp', u'drop', u'game', u'program'] [u'thousand', u'demand', u'fresh', u'elect', u'azerbaijan'] [u'thousand', u'join', u'schooli', u'celebr'] [u'kill', u'attack', u'afghan', u'warlord'] [u'tiger', u'triumph', u'japan'] [u'toll', u'rise', u'storm', u'lash', u'hondura'] [u'tour', u'seek', u'help', u'aussi', u'golfer'] [u'trezeguet', u'doubl', u'juve', u'crush', u'roma'] [u'troop', u'arriv', u'home', u'iraq'] [u'tropic', u'storm', u'gamma', u'hit', u'central', u'america'] [u'undef', u'blue', u'thrash', u'tiger'] [u'unit', u'domin', u'perform'] [u'detail', u'haditha', u'shoot'] [u'quiz', u'china', u'dissid', u'crackdown'] [u'wallabi', u'snap', u'lose', u'streak', u'ireland'] [u'welsh', u'forg', u'stroke', u'clear', u'world'] [u'west', u'indi', u'fight'] [u'wildcat', u'complet', u'doubl', u'hawk', u'sixer', u'bullet'] [u'wildcat', u'impress', u'away', u'home'] [u'windi', u'final', u'fight'] [u'windi', u'star', u'barrel'] [u'wind', u'trap', u'smoke', u'perth'] [u'woman', u'remain', u'critic', u'domest', u'disput'] [u'bushfir', u'victim', u'suffer', u'post', u'traumat', u'stress'] [u'hail', u'nation', u'recycl', u'leader'] [u'adelaid', u'wari', u'tiger'] [u'readi', u'attack'] [u'agent', u'pleas', u'hous', u'sale'] [u'alleg', u'crimin', u'deni', u'health', u'ploy'] [u'ecotour', u'award', u'kingfish', u'resort'] [u'atkinson', u'sign', u'subaru'] [u'attack', u'like', u'terror', u'expert', u'say'] [u'attorney', u'general', u'retir', u'polit'] [u'audit', u'examin', u'surgeri', u'death'] [u'australia', u'bat', u'hobart'] [u'australia', u'romp', u'seri', u'victori'] [u'australia', u'secur', u'wicket'] [u'aviat', u'secur', u'comment', u'prompt'] [u'award', u'recognis', u'pilbara', u'volunt'] [u'azahari', u'group', u'sell', u'phone', u'card', u'surviv'] [u'bank', u'drag', u'market'] [u'bashir', u'lawyer', u'seek', u'case', u'review'] [u'beazley', u'back', u'intern', u'court', u'action', u'save'] [u'believ', u'pray', u'jesus', u'imag', u'plant'] [u'betfair', u'law', u'attract', u'crimin'] [u'bird', u'earli', u'warn', u'track', u'migratori'] [u'bovil', u'honour', u'fair', u'dinkum', u'campaign'] [u'britain', u'admit', u'iraqi', u'deport'] [u'break', u'hill', u'urg', u'rethink', u'tourism', u'imag'] [u'builder', u'beat', u'punch', u'world'] [u'bush', u'thank', u'mongolia', u'iraq', u'presenc'] [u'busi', u'group', u'polic', u'liaison', u'point'] [u'caesarean', u'pose', u'greater', u'risk', u'futur', u'natur'] [u'log', u'halt', u'walk', u'trail'] [u'campaign', u'seek', u'green', u'preselect'] [u'canoeist', u'weekend', u'strand'] [u'catamaran', u'trigger', u'emerg', u'search'] [u'celta', u'atletico', u'madrid'] [u'cheer', u'crowd', u'honour'] [u'china', u'deleg', u'learn', u'australian', u'tourism'] [u'china', u'sensit', u'preced', u'free', u'trade'] [u'claim', u'fish', u'poacher', u'threaten', u'fashion', u'export'] [u'clark', u'drop', u'test'] [u'cleric', u'deni', u'expert', u'home', u'grow', u'terror', u'claim'] [u'colleg', u'back', u'abort', u'pill'] [u'compani', u'see', u'benefit', u'smelter', u'revamp'] [u'compani', u'fever', u'vaccin', u'decis'] [u'cooper', u'face', u'offer'] [u'cooper', u'takeov', u'challeng', u'heat'] [u'council', u'put', u'price', u'riverway', u'shade', u'tree'] [u'council', u'finalis', u'rotunda', u'build', u'tenant'] [u'crack', u'rotor', u'blame', u'fatal', u'helicopt', u'crash'] [u'crash', u'head', u'home'] [u'custom', u'accus', u'slow', u'respons', u'illeg'] [u'custom', u'unfair', u'criticis', u'port', u'crisi'] [u'dairi', u'industri', u'air', u'fever', u'vaccin', u'fear'] [u'dann', u'face', u'tribun'] [u'defenc', u'group', u'brush', u'delamer', u'bomb', u'fear'] [u'dept', u'interview', u'suspect', u'illeg', u'fisherman'] [u'develop', u'buy', u'grand', u'hotel'] [u'dont', u'forget', u'christma', u'school', u'remind'] [u'earthquak', u'rattl', u'darwin'] [u'eighth', u'journalist', u'kill', u'philippin'] [u'employ', u'warn', u'matern', u'leav'] [u'environment', u'report', u'delay', u'port', u'phillip'] [u'evan', u'dismiss', u'leadership', u'talk'] [u'evid', u'give', u'video', u'make', u'differ'] [u'falconio', u'accus', u'chang', u'car', u'court', u'hear'] [u'famili', u'farewel', u'nguyen'] [u'famili', u'visit', u'nguyen', u'death'] [u'farmer', u'extend', u'drought'] [u'farmer', u'welcom', u'iraqi', u'wheat', u'promis'] [u'north', u'win', u'tourism', u'award'] [u'fear', u'budget', u'woe', u'roadwork', u'project'] [u'fear', u'librari', u'cost', u'hurt', u'project'] [u'feder', u'fund', u'offer', u'life', u'pregnanc', u'support'] [u'turn', u'industri', u'estat'] [u'focus', u'turn', u'boost', u'indigen', u'forestri', u'job'] [u'forestri', u'industri', u'aborigin', u'soften', u'imag'] [u'european', u'champion', u'face', u'anxious', u'week'] [u'charg', u'polic', u'offic', u'assault'] [u'fundrais', u'highlight', u'level', u'wind', u'farm', u'support'] [u'fund', u'boost', u'gascoyn', u'marin', u'project'] [u'fund', u'address', u'feral', u'anim', u'woe'] [u'gloucest', u'council', u'reject', u'wast', u'plan'] [u'gold', u'product', u'sept', u'quarter'] [u'govt', u'accus', u'pay', u'bonus', u'director', u'general'] [u'govt', u'hide', u'timor', u'asylum', u'seeker', u'christma'] [u'govt', u'attack', u'olymp', u'guidelin'] [u'govt', u'seek', u'improv', u'music', u'educ', u'school'] [u'govt', u'open', u'mind', u'poki', u'machin', u'note'] [u'green', u'accus', u'lennon', u'anti', u'terror', u'backflip'] [u'gregan', u'deni', u'retir', u'report'] [u'guidelin', u'help', u'boost', u'emerg', u'prepar'] [u'gunman', u'open', u'shop', u'mall'] [u'hardi', u'forc', u'compens'] [u'hawk', u'deliv', u'road', u'trip', u'loss', u'croc'] [u'hohn', u'back', u'clark', u'rebound', u'test', u'ax'] [u'hope', u'remain', u'free', u'rang', u'farm'] [u'hospit', u'accus', u'play', u'polit', u'surgeri'] [u'hous', u'densiti', u'plan', u'worri', u'resid'] [u'huge', u'cottag', u'rent', u'rise', u'alarm', u'council'] [u'hundr', u'call', u'lesli', u'stori'] [u'huonvill', u'water', u'alert', u'remain'] [u'indigen', u'agreement', u'reach', u'gawler', u'miner'] [u'isra', u'ask', u'presid', u'elect'] [u'isra', u'polit', u'shake'] [u'jam', u'hardi', u'give', u'deadlin'] [u'joyc', u'submit', u'concern', u'welfar', u'work', u'chang'] [u'flight', u'land', u'belli'] [u'kasper', u'hope', u'test', u'recal'] [u'kasprowicz', u'demolish', u'bushrang'] [u'kate', u'dearaugo', u'australia', u'newest', u'idol'] [u'kemp', u'sidelin', u'groin', u'injuri'] [u'kokoda', u'track', u'threat', u'deni'] [u'kosciuszko', u'scheme', u'put', u'bite', u'wild', u'woe'] [u'land', u'council', u'seek', u'morisset', u'land', u'rezon'] [u'lesli', u'criticis'] [u'lesli', u'urg', u'model', u'career'] [u'levi', u'caus', u'wast', u'plant', u'rethink'] [u'liber', u'choos', u'gold', u'coast', u'candid'] [u'lion', u'nathan', u'cooper', u'offer', u'show', u'desper'] [u'littl', u'hope', u'court', u'intervent', u'nguyen', u'case'] [u'local', u'test', u'indonesian', u'die', u'bird'] [u'machineri', u'diamond', u'site'] [u'accus', u'rap', u'drug', u'woman'] [u'die', u'bailer', u'accid'] [u'die', u'crash'] [u'fight', u'terrorist', u'train', u'charg'] [u'guilti', u'cafe', u'swing'] [u'hurt', u'lake', u'illawarra', u'unit', u'blaze'] [u'hospit', u'riddoch', u'highway', u'crash'] [u'refus', u'bail', u'bomb', u'hoax'] [u'face', u'court', u'accus', u'cairn', u'tortur'] [u'face', u'court', u'laverton', u'stab'] [u'kill', u'wife', u'shop', u'centr', u'sack', u'lawyer'] [u'winch', u'bush', u'walk', u'mishap'] [u'terrorist', u'network', u'oper', u'say', u'expert'] [u'maryborough', u'busi', u'chamber', u'push', u'super', u'jail'] [u'mcgradi', u'fear', u'worsen', u'telstra', u'bush', u'servic'] [u'milan', u'sink', u'toni', u'doubl', u'inter', u'stay', u'fourth'] [u'miner', u'close', u'secur', u'north', u'west', u'project'] [u'minist', u'defend', u'hospit', u'upgrad', u'blow'] [u'minist', u'discuss', u'woman', u'medic', u'centr', u'death'] [u'minist', u'reject', u'illeg', u'fish', u'coast', u'guard', u'call'] [u'minist', u'work', u'polic', u'tackl', u'hous'] [u'miss', u'toddler', u'possibl', u'abduct', u'polic'] [u'storm', u'forecast', u'south', u'east'] [u'back', u'push', u'kiss', u'land', u'communiti', u'trust'] [u'unfaz', u'elector', u'shake'] [u'murder', u'accus', u'extradit', u'sydney'] [u'muslim', u'prais', u'multicultur', u'tasmania'] [u'nation', u'park', u'threaten', u'develop'] [u'review', u'king', u'pig', u'scuffl'] [u'nervous', u'flyer', u'court', u'flight', u'cigarett'] [u'sale', u'figur'] [u'deputi', u'leader', u'opposit'] [u'smoke', u'alarm', u'law', u'target', u'older', u'home'] [u'telescop', u'monitor', u'explod', u'star'] [u'demand', u'forum', u'hear'] [u'nuclear', u'wast', u'dump', u'spark', u'scienc', u'debat'] [u'offic', u'fear', u'prison', u'steal', u'court'] [u'ombudsman', u'probe', u'health', u'servic', u'figur'] [u'opposit', u'predict', u'tough', u'tussl', u'pittwat'] [u'opposit', u'promis', u'concess', u'self', u'fund'] [u'opposit', u'want', u'tougher', u'dope', u'law'] [u'optus', u'extend', u'central', u'victoria', u'broadband', u'access'] [u'organis', u'prais', u'soft', u'schooli', u'crowd'] [u'orica', u'approach', u'council', u'toxic', u'wast', u'dump'] [u'outback', u'town', u'lose', u'waltz', u'matilda', u'expo'] [u'paddl', u'steamer', u'plan', u'face', u'hurdl'] [u'pakistan', u'board', u'withdraw', u'shabbir', u'england'] [u'pakistan', u'surg', u'forward', u'inzamam', u'centuri'] [u'parti', u'planner', u'get', u'start', u'celebr'] [u'pipe', u'replac', u'aim', u'save', u'million', u'litr'] [u'plantat', u'timber', u'industri', u'fear', u'lessen', u'shire'] [u'polic', u'consid', u'effort', u'region', u'road', u'toll'] [u'polic', u'examin', u'schooli', u'rape', u'alleg'] [u'polic', u'hunt', u'cobram', u'firebug'] [u'polic', u'probe', u'town', u'camp', u'stab', u'death'] [u'politician', u'unit', u'highway', u'safeti', u'boost'] [u'premiership', u'holiday', u'swan'] [u'public', u'feedback', u'seek', u'jail', u'plan'] [u'public', u'urg', u'bushfir', u'readi'] [u'fever', u'vaccin', u'product', u'viabl'] [u'question', u'remain', u'nativ', u'titl', u'plan'] [u'racv', u'urg', u'calder', u'polit', u'bicker'] [u'raider', u'deni', u'sign', u'thompson'] [u'real', u'estat', u'agent', u'clerk', u'stand', u'trial', u'fraud'] [u'referendum', u'gaug', u'popular', u'elect'] [u'region', u'council', u'urg', u'focus', u'film'] [u'remedi', u'work', u'begin', u'worker', u'club', u'site'] [u'repair', u'leav', u'birdsvill', u'dark'] [u'report', u'cast', u'doubt', u'effluent', u'plan'] [u'research', u'consid', u'anger', u'asthma', u'link'] [u'resid', u'maintain', u'fight', u'council', u'law'] [u'resid', u'lobbi', u'govt', u'stop', u'brickwork'] [u'review', u'reveal', u'dubbo', u'crime', u'rise'] [u'ricki', u'pont', u'bowler', u'hobart'] [u'rise', u'gold', u'price', u'prompt', u'explor'] [u'roll', u'corner', u'resid', u'deal', u'latest', u'crash'] [u'offer', u'bypass', u'assur'] [u'schooli', u'behav', u'airli', u'beach'] [u'schooli', u'assault', u'complaint', u'withdraw'] [u'seafood', u'plan', u'aim', u'boost', u'industri', u'valu'] [u'seminar', u'help', u'break', u'mental', u'ill', u'barrier'] [u'senior', u'urg', u'heat', u'victim'] [u'seven', u'accus', u'gatecrash', u'schooli', u'week', u'parti'] [u'seven', u'charg', u'fake', u'design', u'cloth', u'haul'] [u'shark', u'forc', u'surf', u'event', u'cancel'] [u'sharon', u'leav', u'rule', u'likud', u'parti', u'report'] [u'shire', u'ask', u'plan'] [u'singapor', u'stand', u'hang'] [u'korean', u'cabinet', u'approv', u'iraq', u'troop'] [u'snowdon', u'seek', u'weapon', u'train', u'assur'] [u'solon', u'prepar', u'reunion', u'children'] [u'speed', u'skate', u'relay', u'team', u'learn', u'fate'] [u'plan', u'test', u'gippsland'] [u'state', u'seek', u'therapeut', u'clone'] [u'teen', u'die', u'rockhampton', u'road', u'mishap'] [u'telstra', u'cdma', u'network', u'plan', u'cost'] [u'test', u'swing', u'colonoscopi', u'patient'] [u'thousand', u'mark', u'anniversari', u'franco', u'death'] [u'time', u'face', u'realiti', u'costello', u'tell', u'nguyen'] [u'tourism', u'minist', u'prais', u'award', u'win', u'whitsunday'] [u'townsvill', u'hotel', u'win', u'tourism', u'award'] [u'twin', u'feel', u'guilt', u'nguyen', u'fate', u'lawyer'] [u'arrest', u'nhulunbuy', u'crime'] [u'union', u'urg', u'employ', u'protect', u'club', u'worker'] [u'investig', u'zarqawi', u'iraq', u'dead'] [u'vanston', u'dismiss', u'resign', u'call'] [u'vendi', u'contest', u'ballarat', u'mayor', u'race'] [u'vietnam', u'investig', u'glitter', u'child', u'claim'] [u'welfar', u'work', u'hurt', u'rural', u'australia', u'inquiri'] [u'wildlif', u'group', u'criticis', u'council', u'control'] [u'woman', u'face', u'conspiraci', u'charg', u'fake', u'death'] [u'woodsid', u'consid', u'broom', u'plant', u'site'] [u'yachti', u'lucki', u'surviv', u'sink', u'polic'] [u'youth', u'sentenc', u'detent', u'robberi', u'spree'] [u'bird', u'worst', u'case', u'scenario'] [u'accc', u'slap', u'industri', u'practic'] [u'accc', u'protect', u'betfair', u'sanction'] [u'prepar', u'possibl', u'iraq', u'elect', u'violenc'] [u'africa', u'urgent', u'need', u'aid', u'prevent', u'program'] [u'search', u'locat', u'boat', u'bight'] [u'andrew', u'dismiss', u'opinion', u'poll', u'slump'] [u'annan', u'deni', u'interfer', u'hariri', u'murder', u'probe'] [u'asylum', u'seeker', u'christma', u'cost'] [u'australia', u'host', u'nation'] [u'ban', u'jockey', u'make', u'race', u'return'] [u'beatti', u'rule', u'earli', u'elect'] [u'beatti', u'back', u'sippi', u'down', u'hospit'] [u'bell', u'pietersen', u'lead', u'england', u'fight'] [u'amend', u'allow', u'sentenc', u'option'] [u'bird', u'respons', u'exercis'] [u'bird', u'websit', u'launch'] [u'black', u'spot', u'intersect', u'light', u'camera'] [u'blueprint', u'urg', u'renmark', u'sturt', u'highway', u'bypass'] [u'brack', u'call', u'prison', u'exchang', u'save'] [u'burn', u'aim', u'deter', u'firebug'] [u'busi', u'readi', u'bird', u'pandem'] [u'busselton', u'brace', u'schooli', u'influx'] [u'hospit', u'fund', u'separ'] [u'attorney', u'general', u'legal'] [u'cane', u'farmer', u'beat', u'candi', u'feder', u'fund'] [u'caravan', u'park', u'play', u'evict', u'concern'] [u'cathol', u'church', u'oust', u'south', u'coast', u'priest'] [u'champion', u'gymnast', u'gather', u'melbourn'] [u'chennai', u'dayer', u'wash'] [u'chevron', u'announc', u'japan', u'deal'] [u'child', u'protect', u'posit', u'creat'] [u'china', u'welcom', u'tortur', u'investig'] [u'clark', u'come', u'term', u'ax'] [u'club', u'hear', u'opposit', u'plan'] [u'council', u'probe', u'tell', u'vote', u'block', u'claim', u'fanci'] [u'commerc', u'chief', u'keep', u'bush', u'blueprint'] [u'concern', u'surfac', u'pilbara', u'wast', u'plant', u'plan'] [u'continu', u'alcohol', u'sale', u'restrict', u'prompt', u'mix'] [u'corbi', u'mother', u'reject', u'lesli', u'case', u'comparison'] [u'costello', u'urg', u'lift', u'uranium', u'mine'] [u'council', u'await', u'main', u'tender'] [u'council', u'help', u'memori', u'repair'] [u'crop', u'plant', u'scheme', u'nation'] [u'custom', u'deni', u'ignor', u'warn'] [u'desert', u'wheelchair', u'makeov', u'project'] [u'doctor', u'claim', u'govt', u'stall', u'applic'] [u'doctor', u'hospit', u'board', u'disput', u'end'] [u'dont', u'player', u'tour', u'answer', u'scott'] [u'dravid', u'name', u'indian', u'captain', u'lanka', u'seri'] [u'driver', u'urg', u'slow', u'curb', u'road', u'kill'] [u'drought', u'extens', u'bourk', u'brewarrina', u'farmer'] [u'drug', u'firm', u'urg', u'continu', u'make', u'fever', u'vaccin'] [u'dylan', u'poem', u'sell', u'thousand', u'auction'] [u'einstein', u'famous', u'formula', u'turn'] [u'elliott', u'doubt', u'bushrang', u'clash'] [u'environ', u'dept', u'monitor', u'kooragang'] [u'laidley', u'council', u'reject', u'jail', u'plan'] [u'fair', u'dinkum', u'food', u'campaign', u'win', u'award'] [u'falconio', u'accus', u'distraught', u'convers'] [u'famili', u'hospit', u'home', u'blaze'] [u'famili', u'visit', u'death', u'aussi'] [u'father', u'satisfi', u'chang', u'death'] [u'fear', u'remain', u'hospit', u'job'] [u'fear', u'hous', u'plan', u'chang', u'port', u'fairi'] [u'feder', u'govt', u'urg', u'help', u'deliv', u'fever', u'vaccin'] [u'feder', u'chalk', u'centenari', u'hewitt', u'fourth'] [u'firewe', u'turn', u'monaro'] [u'fisherman', u'bodi', u'recov'] [u'form', u'slump', u'reason', u'ax', u'say', u'clark'] [u'fuel', u'reduct', u'burn'] [u'fugit', u'hide', u'church', u'polic'] [u'gallop', u'attack', u'liber', u'anti', u'terror', u'claus'] [u'gallop', u'insist', u'uranium', u'mine', u'stay'] [u'georg', u'best', u'awak', u'critic'] [u'glitter', u'deni', u'child', u'alleg', u'vietnam'] [u'glori', u'hope', u'hold', u'horsley'] [u'goldfield', u'school', u'embrac', u'school', u'report', u'scheme'] [u'govern', u'hit', u'slump'] [u'govt', u'approv', u'medicar', u'health', u'check', u'refuge'] [u'govt', u'downplay', u'opinion', u'poll', u'slide'] [u'govt', u'mull', u'custom', u'compo'] [u'govt', u'offer', u'rental', u'bond'] [u'govt', u'promis', u'bypass', u'option'] [u'govt', u'slow', u'train', u'arm', u'custom', u'offic'] [u'govt', u'urg', u'consid', u'rang', u'countri', u'health'] [u'govt', u'talk', u'servic', u'boost'] [u'govt', u'review', u'privaci', u'law', u'emerg', u'situat'] [u'green', u'group', u'air', u'wetland', u'fear'] [u'group', u'warn', u'welfar', u'work', u'exploit'] [u'harri', u'potter', u'work', u'wonder', u'offic'] [u'hiddink', u'eye', u'champion', u'leagu'] [u'infect', u'jump', u'million', u'report'] [u'hmas', u'newcastl', u'return', u'gulf', u'mission'] [u'horsley', u'quit', u'glori'] [u'hous', u'arson', u'attack', u'drug', u'payback', u'polic'] [u'howard', u'pakistani', u'quak', u'talk'] [u'law', u'away', u'famili', u'time', u'bishop', u'say'] [u'protest', u'cyclist', u'arriv', u'canberra'] [u'japanes', u'gymnast', u'fli', u'start'] [u'japan', u'get', u'militari'] [u'jone', u'call', u'gregan', u'rumour'] [u'kenyan', u'reject', u'referendum'] [u'kenyan', u'voter', u'reject', u'constitut'] [u'kiwi', u'assum', u'underdog', u'status'] [u'land', u'charg', u'drive', u'peopl', u'industri'] [u'minut', u'wind', u'chang', u'save', u'port', u'lincoln', u'inquest'] [u'laverton', u'aim', u'cheaper', u'perth', u'flight'] [u'council', u'urg', u'singapor', u'spare', u'nguyen'] [u'lawyer', u'warn', u'athlet'] [u'lesli', u'home'] [u'lesli', u'walk', u'media', u'frenzi'] [u'lesli', u'warn', u'speak'] [u'limit', u'place', u'bridg', u'open', u'number'] [u'lion', u'nathan', u'chang', u'tack', u'cooper', u'takeov'] [u'live', u'debat', u'expect', u'council', u'meet'] [u'long', u'term', u'sick', u'polic', u'leav', u'servic'] [u'guilti', u'children', u'bushland', u'murder'] [u'remand', u'custodi', u'coupl', u'murder'] [u'face', u'court', u'coupl', u'murder'] [u'welcom', u'rethink', u'road', u'structur', u'plan'] [u'mayor', u'doesnt', u'want', u'fluorid', u'debat', u'rush'] [u'mayor', u'talk', u'hous', u'plan'] [u'mayor', u'beat', u'rail', u'project'] [u'melbourn', u'teen', u'place', u'world', u'scrabbl'] [u'mental', u'ill', u'high', u'heroin', u'user', u'report'] [u'merkel', u'germani', u'woman', u'chancellor'] [u'minichiello', u'get', u'golden', u'boot'] [u'minist', u'consid', u'goulburn', u'develop', u'propos'] [u'minist', u'resign', u'custom', u'stuff'] [u'custom', u'offic', u'carri', u'gun'] [u'motor', u'award', u'highlight', u'australia', u'best', u'car'] [u'motorist', u'crash', u'seven', u'year', u'nrma'] [u'back', u'jezzin', u'barrack', u'option'] [u'defend', u'council', u'nuclear', u'request'] [u'highlight', u'hyden', u'sewerag', u'problem'] [u'look', u'oust', u'break', u'hill', u'mayor'] [u'reject', u'irrig', u'rise'] [u'machin', u'offer', u'toowoomba', u'boost'] [u'murdoch', u'face', u'court'] [u'murdoch', u'surpris', u'onetel', u'woe'] [u'murray', u'goulburn', u'boost', u'leongatha', u'plant'] [u'muslim', u'leader', u'deni', u'extremist', u'recruit', u'drive'] [u'nativ', u'titl', u'opinion', u'need', u'review'] [u'continu', u'push', u'asian', u'market'] [u'forb', u'sewag', u'treatment', u'plant', u'open'] [u'fund', u'child', u'care', u'posit'] [u'offic', u'plan', u'loxton', u'council'] [u'tourism', u'regim', u'north', u'west'] [u'nguyen', u'famili', u'head', u'singapor'] [u'nguyen', u'pay', u'visit'] [u'divin', u'right', u'play', u'test', u'waugh'] [u'need', u'panic', u'abbott', u'say'] [u'norman', u'back', u'scott', u'major', u'success'] [u'offer', u'help', u'start', u'indigen', u'fish'] [u'special', u'forc', u'return', u'afghanistan'] [u'octopus', u'age', u'come', u'shell'] [u'firm', u'look', u'gippsland', u'drill'] [u'monitor', u'bodi', u'warn', u'demand', u'outstrip'] [u'opposit', u'criticis', u'sentenc', u'chang'] [u'outback', u'mayor', u'push', u'basic', u'phone', u'servic'] [u'packer', u'break', u'onetel', u'meet', u'court', u'hear'] [u'peopl', u'smuggler', u'appeal', u'year', u'sentenc'] [u'pipelin', u'delay', u'airport', u'termin', u'open'] [u'plan', u'paper', u'expect', u'public'] [u'plea', u'merci', u'fell', u'deaf', u'ear', u'canberra', u'say'] [u'flag', u'margin', u'fine', u'tune'] [u'visit', u'troop'] [u'polic', u'arrest', u'trio', u'high', u'speed', u'chase'] [u'polic', u'investig', u'cobar', u'rape', u'claim'] [u'polic', u'investig', u'schooli', u'assault', u'claim'] [u'polic', u'look', u'identifi', u'beach', u'bodi'] [u'policemen', u'punish', u'email', u'photo', u'dead'] [u'polic', u'probe', u'tallangatta', u'cafe', u'theft'] [u'polic', u'question', u'driver', u'death', u'remot', u'road'] [u'polic', u'traine', u'sack', u'arrest'] [u'poll', u'predict', u'victori', u'sharon', u'parti'] [u'poll', u'govt', u'slide'] [u'protest', u'target', u'council', u'multi', u'lingual', u'park'] [u'public', u'ask', u'help', u'solv', u'croc', u'death', u'caus'] [u'public', u'urg', u'help', u'stamp', u'crime'] [u'push', u'lake', u'manag', u'plan'] [u'polic', u'investig', u'road', u'death'] [u'quirk', u'govt', u'sixth', u'femal', u'minist'] [u'rat', u'road'] [u'raul', u'face', u'lengthi', u'knee', u'injuri'] [u'light', u'camera', u'target', u'intersect', u'black'] [u'regist', u'includ', u'offend'] [u'regul', u'progress', u'biodiscoveri'] [u'resourc', u'share', u'see', u'futur', u'local', u'govt'] [u'fear', u'law', u'impact'] [u'rifl', u'wield', u'avoid', u'jail'] [u'rise', u'gold', u'price', u'pay', u'miner'] [u'attack', u'highway', u'consult'] [u'ruddock', u'talk', u'counter', u'terror', u'law'] [u'russian', u'aid', u'epidem', u'largest', u'europ'] [u'sacr', u'sit', u'propel', u'dump', u'fight', u'land', u'council', u'say'] [u'pass', u'crime', u'asset', u'seizur'] [u'schooli', u'hurt', u'drunken', u'merriment'] [u'scientist', u'unravel', u'puffer', u'fish', u'mysteri'] [u'search', u'begin', u'miss', u'boat', u'bight'] [u'senat', u'committe', u'recommend', u'chang'] [u'senat', u'inquiri', u'whitewash', u'opposit'] [u'senat', u'hand', u'look', u'wheatbelt', u'salin'] [u'share', u'market', u'retreat', u'earli', u'peak'] [u'sharon', u'quit', u'lukid', u'parti'] [u'singl', u'parent', u'wors', u'inquiri', u'tell'] [u'skill', u'migrant'] [u'student', u'associ', u'chief', u'stand'] [u'superman', u'stop', u'traffic', u'newcastl'] [u'worker', u'ralli', u'offic'] [u'tait', u'aim', u'immin', u'return'] [u'end', u'financi', u'year', u'healthi', u'state'] [u'tasmanian', u'anti', u'terror', u'law', u'tabl'] [u'rental', u'bond', u'author'] [u'teen', u'injur', u'ballarat', u'stab'] [u'territorian', u'treat', u'second', u'class', u'citizen', u'say'] [u'indigen', u'legal', u'servic', u'amalgam'] [u'town', u'water', u'ban', u'relief'] [u'townsvill', u'bauxit', u'plan'] [u'town', u'vote', u'renam', u'secretsantacom'] [u'travel', u'agent', u'tast', u'break', u'hill'] [u'underworld', u'lawyer', u'guilti', u'contempt', u'court'] [u'union', u'need', u'flexibl', u'club', u'say'] [u'unit', u'face', u'encount', u'ferguson'] [u'uranium', u'compani', u'plan', u'explor'] [u'market', u'headway'] [u'plan', u'carri', u'nuke', u'exercis'] [u'victorian', u'warn', u'season', u'approach'] [u'water', u'day', u'chines', u'citi'] [u'watson', u'hope', u'south', u'african', u'tour'] [u'weather', u'dictat', u'north', u'west', u'risk'] [u'welfar', u'work', u'law', u'petrol', u'sniff', u'inquiri'] [u'take'] [u'wildlif', u'confer', u'hear', u'research'] [u'windi', u'send', u'samuel', u'home'] [u'worksaf', u'beat', u'work', u'hour', u'code'] [u'vline', u'train', u'revamp'] [u'power', u'station', u'near', u'run'] [u'offic', u'look', u'return'] [u'allenbi', u'defend', u'attack', u'norman'] [u'say', u'casual', u'worker', u'threaten', u'chang'] [u'urg', u'renew', u'energi', u'work', u'parti'] [u'andrew', u'flexibl'] [u'andrew', u'like', u'allow', u'chang'] [u'angel', u'beach', u'win', u'northern', u'river', u'award'] [u'caution', u'chang', u'degre'] [u'aust', u'pledg', u'earthquak'] [u'defend', u'iraq', u'action'] [u'profit'] [u'bass', u'strait', u'fisheri', u'close'] [u'beatti', u'accus', u'mislead', u'parliament'] [u'bennett', u'keep', u'princ', u'reserv'] [u'warn', u'health', u'servic', u'cut'] [u'bird', u'statement', u'anger', u'farmer'] [u'busi', u'lobbi', u'warn', u'plan', u'chang'] [u'cairn', u'recal', u'black', u'cap', u'squad'] [u'cut', u'public', u'servic'] [u'canadian', u'union', u'threaten', u'jam', u'hardi'] [u'chemic', u'blast', u'china', u'contamin', u'major', u'river'] [u'child', u'death', u'investig', u'suffer'] [u'christian', u'volunt', u'label', u'brand', u'mad'] [u'warn', u'council', u'bulli', u'wit'] [u'coalit', u'hervey', u'preselect', u'postpon'] [u'concern', u'rais', u'sewerag', u'scheme', u'subsidi'] [u'cooper', u'reject', u'takeov'] [u'coron', u'attack', u'industri', u'drug', u'packag', u'error'] [u'council', u'back', u'makyb', u'diva', u'commemor', u'fund'] [u'council', u'give', u'condit', u'support', u'firework'] [u'councillor', u'divid', u'tree'] [u'council', u'offer', u'financi', u'boost', u'help', u'attract'] [u'council', u'reject', u'congest', u'charg', u'busi', u'road'] [u'council', u'urg', u'defer', u'widow', u'evict'] [u'court', u'grant', u'bail', u'alleg', u'melbourn', u'drug', u'dealer'] [u'croc', u'sight', u'prompt', u'broom', u'beach', u'closur'] [u'cruis', u'ship', u'propos', u'hervey'] [u'darwin', u'council', u'buy', u'scrap', u'metal', u'croc', u'sculptur'] [u'death', u'custodi', u'prompt', u'polic', u'rethink'] [u'death', u'prompt', u'tour', u'brochur', u'warn'] [u'democrat', u'face', u'deregistr'] [u'deport', u'melbourn', u'plead', u'return'] [u'diver', u'convict', u'lie', u'abalon', u'catch'] [u'doctor', u'shortag', u'forc', u'medic', u'centr', u'closur'] [u'doctor', u'speak', u'nuclear', u'dump', u'plan'] [u'downer', u'reconsid', u'court', u'nguyen'] [u'england', u'claim', u'late', u'wicket', u'faisalabad'] [u'environ', u'dept', u'add', u'weed', u'list'] [u'green', u'light', u'gippsland', u'water', u'dutson', u'down', u'plan'] [u'eurobodalla', u'council', u'accus', u'gag', u'councillor'] [u'examin', u'confirm', u'bodi', u'miss', u'plane'] [u'journo', u'death', u'prompt', u'appeal', u'inform'] [u'fan', u'vote', u'alonso', u'year'] [u'fake', u'virus', u'email', u'spread', u'worldwid'] [u'falconio', u'accus', u'carri'] [u'falconio', u'murder', u'trial', u'hear', u'road'] [u'famili', u'prais', u'polic', u'mother', u'rescu'] [u'farm', u'death', u'prompt', u'safeti', u'plea'] [u'farmer', u'plead', u'guilti', u'anim', u'cruelti'] [u'north', u'school', u'asbesto', u'roof', u'replac'] [u'fear', u'air', u'student', u'safeti'] [u'feder', u'polic', u'raid', u'melbourn', u'home'] [u'fewer', u'polic', u'long', u'term', u'sick', u'leav'] [u'fight', u'nguyen', u'continu', u'kirbi'] [u'destroy', u'hous', u'northern', u'perth'] [u'servic', u'gain', u'purpos', u'build', u'tanker'] [u'fishermen', u'spot', u'suspect', u'illeg', u'fish', u'boat'] [u'fisher', u'accus', u'ignor', u'croc', u'danger'] [u'fuel', u'reduct', u'burn', u'continu'] [u'futur', u'school', u'connect', u'littl', u'pebbl'] [u'gather', u'focus', u'marin', u'park', u'impact'] [u'german', u'sceptic', u'merkel', u'slash', u'jobless', u'total'] [u'gillespi', u'want', u'test', u'scalp'] [u'glitter', u'seek', u'freedom', u'detent'] [u'gold', u'project', u'promis', u'south', u'east', u'job', u'boost'] [u'govt', u'agre', u'bet', u'exchang', u'impact', u'studi'] [u'govt', u'like', u'allow', u'chang', u'costello'] [u'govt', u'reconsid', u'legal', u'nguyen'] [u'govt', u'provid', u'fish', u'industri', u'restructur'] [u'govt', u'take', u'control', u'high', u'rise', u'develop', u'area'] [u'govt', u'tri', u'budget', u'crisi', u'opposit'] [u'govt', u'warn', u'explor', u'compani', u'licenc'] [u'group', u'communiti', u'consult'] [u'grower', u'lose', u'xmas', u'cherri', u'crop'] [u'gunmen', u'iraqi', u'armi', u'uniform', u'shoot', u'baghdad', u'famili'] [u'har', u'race', u'club', u'air', u'fear'] [u'health', u'servic', u'back', u'call', u'oxicontin', u'regist'] [u'health', u'servic', u'clarifi', u'breast', u'prosthesi', u'blunder'] [u'henri', u'keep', u'shuffl', u'black', u'chang'] [u'hereditari', u'breast', u'cancer', u'research', u'fund'] [u'hick', u'challeng', u'british', u'passport', u'refus'] [u'hope', u'ecosystem', u'studi', u'stop', u'solar', u'salt', u'farm'] [u'hope', u'mine', u'royalti', u'chang', u'boost', u'invest'] [u'hop', u'steven', u'return', u'bull', u'squad'] [u'horsley', u'happi', u'decis', u'quit', u'glori'] [u'howard', u'pledg', u'pakistan'] [u'howard', u'visit', u'pakistani', u'quak', u'region'] [u'hull', u'merci', u'mission'] [u'inquest', u'tell', u'hospit', u'death', u'report', u'polic'] [u'inquiri', u'prompt', u'justic', u'overhaul'] [u'iran', u'reject', u'minist', u'nomine'] [u'campaign', u'expens', u'histori', u'advertis'] [u'protest', u'petit', u'deliv', u'senat'] [u'islam', u'leader', u'support', u'deport', u'anti', u'western'] [u'judg', u'rule', u'mother', u'regain', u'custodi'] [u'kangaroo', u'kid', u'harri', u'potter', u'star'] [u'kennett', u'prais', u'act', u'mental', u'health', u'polici'] [u'knee', u'injuri', u'end', u'giteaus', u'tour'] [u'land', u'council', u'merger', u'plan', u'spark', u'ident', u'concern'] [u'landhold', u'urg', u'bushfir', u'readi'] [u'legaci', u'urg', u'return', u'steal', u'donat'] [u'lesli', u'maintain', u'drug', u'charg', u'innoc'] [u'letter', u'neighbour', u'land', u'water'] [u'liber', u'preselect', u'bendigo', u'west', u'candid'] [u'liukin', u'lead', u'american', u'charg', u'final'] [u'mackay', u'sugar', u'record', u'profit'] [u'macquari', u'deadlin'] [u'charg', u'sydney', u'newsag', u'murder'] [u'charg', u'theft', u'journalist', u'murder'] [u'face', u'court', u'accus', u'bash', u'train', u'conductor'] [u'front', u'court', u'schooli', u'assault', u'charg'] [u'hospit', u'tailem', u'bend', u'stab'] [u'sentenc', u'life', u'children', u'murder'] [u'face', u'court', u'schooli', u'assault'] [u'mariah', u'carey', u'snub', u'american', u'music', u'award'] [u'maryborough', u'societi', u'stand', u'continu'] [u'matera', u'hang', u'boot'] [u'mayor', u'fuel', u'word'] [u'mayor', u'question', u'workload'] [u'mcwilliam', u'elect', u'deputi', u'mayor'] [u'medal', u'honour', u'local', u'wwii', u'vet'] [u'mental', u'health', u'scheme', u'urg', u'social', u'sport'] [u'microsoft', u'xbox', u'releas'] [u'millar', u'secur', u'tour', u'comeback'] [u'mine', u'farm', u'contribut', u'creek', u'woe'] [u'mine', u'resourc', u'drive', u'economi'] [u'minist', u'visit', u'australian', u'troop', u'sudan'] [u'modern', u'product', u'affect', u'boy', u'hormon'] [u'queri', u'water', u'agreement', u'delay'] [u'welcom', u'homeswest', u'boost'] [u'murdoch', u'know', u'onetel', u'monitor', u'court', u'hear'] [u'murdoch', u'memori', u'laps', u'surpris', u'judg'] [u'murray', u'play', u'australian', u'hardcourt', u'champ'] [u'consid', u'custom', u'fleet', u'sale'] [u'narromin', u'forb', u'run', u'grain', u'ethanol', u'plant'] [u'nasa', u'find', u'crack', u'space', u'shuttl', u'tank', u'foam'] [u'nation', u'fear', u'boat', u'lifter', u'cost', u'blow'] [u'nation', u'concern', u'easili', u'fix', u'vail'] [u'nestl', u'babi', u'milk', u'recal', u'storm', u'teacup'] [u'british', u'licens', u'law', u'target', u'bing', u'drinker'] [u'hospit', u'year', u'away'] [u'human', u'bird', u'case', u'vietnam'] [u'feedback', u'receiv', u'muswellbrook', u'bypass'] [u'norman', u'accus', u'desert', u'australian', u'golf'] [u'govt', u'fund', u'desalin', u'plant'] [u'stand', u'firm', u'anti', u'uranium', u'mine', u'stanc'] [u'offic', u'arrest', u'polic', u'anti', u'corrupt', u'bust'] [u'omodei', u'seek', u'shadow', u'ministri', u'spot'] [u'opposit', u'call', u'action', u'drug', u'driver'] [u'opposit', u'oppos', u'tier', u'higher', u'educ'] [u'opposit', u'question', u'turn', u'speed', u'camera'] [u'opposit', u'urg', u'joyc'] [u'pacif', u'island', u'minist', u'guilti', u'embezzl'] [u'pakistan', u'slow', u'progress', u'faisalabad'] [u'pakistan', u'solid', u'start', u'second', u'inning'] [u'parent', u'concern', u'remain', u'irrekerlanty', u'school'] [u'parti', u'tri', u'say', u'liber'] [u'pharmacist', u'face', u'drug', u'traffic', u'charg'] [u'plane', u'crash', u'inquest', u'tell', u'engin', u'heavi'] [u'polic', u'believ', u'theft', u'car', u'link'] [u'polic', u'continu', u'probe', u'toddler', u'death'] [u'polic', u'doorknock', u'fatal', u'toowoomba'] [u'polic', u'miss', u'bushwalk'] [u'polic', u'like', u'charg', u'driver'] [u'polic', u'monitor', u'harvest', u'time'] [u'polic', u'probe', u'polit', u'briberi', u'claim'] [u'potassium', u'chlorid', u'death', u'prompt', u'warn'] [u'public', u'develop', u'control', u'plan'] [u'putt', u'label', u'forestri', u'report', u'distress'] [u'urg', u'chang', u'uranium', u'mine', u'polici'] [u'rapist', u'investig', u'appeal', u'possibl'] [u'rebat', u'resid', u'water', u'leak'] [u'report', u'urg', u'salt', u'dispos', u'basin', u'develop'] [u'resourc', u'stock', u'drag', u'market'] [u'ronaldson', u'doubt', u'king', u'clash'] [u'rspca', u'life', u'membership', u'cancel', u'cruelti'] [u'russian', u'gymnast', u'final', u'video', u'review'] [u'safeguard', u'promis', u'welfar', u'work', u'famili'] [u'look', u'nation', u'geopark'] [u'strengthen', u'money', u'launder', u'law'] [u'seafood', u'industri', u'welcom', u'feder', u'packag'] [u'search', u'begin', u'miss', u'bushwalk'] [u'search', u'water', u'pipe', u'leak'] [u'shark', u'believ', u'scott', u'time', u'come'] [u'shark', u'close', u'sign', u'thompson'] [u'shark', u'dump', u'nutley', u'thompson'] [u'sharon', u'parti', u'offici', u'recognis'] [u'singaporean', u'lawyer', u'question', u'compulsori', u'death'] [u'skill', u'job', u'avail', u'fall'] [u'smaller', u'harvest', u'drag', u'graincorp', u'profit'] [u'soni', u'face', u'legal', u'action', u'protect'] [u'south', u'east', u'transport', u'plan'] [u'sport', u'oval', u'committe', u'member', u'quit'] [u'lanka', u'presid', u'clear', u'cabinet'] [u'state', u'urg', u'adopt', u'document', u'destruct', u'law'] [u'time', u'save', u'nguyen', u'say', u'expert'] [u'survey', u'highlight', u'drug', u'drive', u'attitud'] [u'suspend', u'sentenc', u'serial', u'thief'] [u'taipan', u'tiger', u'post', u'victori'] [u'fish', u'industri', u'say', u'feder', u'packag', u'provid'] [u'proposit', u'convinc', u'award'] [u'arrest', u'embassi', u'bomb', u'probe'] [u'sign', u'pioneer'] [u'timber', u'growth', u'boost', u'demand', u'border', u'road'] [u'tobacco', u'whistleblow', u'effort', u'recognis'] [u'kill', u'lasset', u'highway', u'crash'] [u'union', u'fear', u'vaccin', u'ax', u'trigger', u'meatwork'] [u'resum', u'indonesian', u'militari'] [u'vandal', u'prompt', u'council', u'secur', u'rethink'] [u'govt', u'play', u'pipelin', u'fund', u'threat'] [u'polic', u'union', u'want', u'integr', u'offic'] [u'victim', u'group', u'welcom', u'sentenc', u'law'] [u'polic', u'desert', u'forc'] [u'warn', u'fear', u'lara', u'test'] [u'warn', u'play', u'test'] [u'windi', u'look', u'finish', u'seri', u'win', u'note'] [u'wit', u'say', u'falconio', u'accus', u'suppli', u'drug'] [u'wood', u'overcom', u'poor', u'start', u'lead', u'hawaii'] [u'work', u'begin', u'flood', u'strategi', u'plan'] [u'worker', u'fail', u'inspect', u'darwin', u'base', u'king'] [u'young', u'gun', u'coach'] [u'yudhoyono', u'hail', u'militari', u'decis'] [u'anim', u'vaccin', u'plant', u'open', u'bendigo'] [u'tackl', u'alpin', u'nation', u'park', u'pest', u'control'] [u'abbott', u'push', u'poll', u'abort', u'pill'] [u'activist', u'acquit', u'illeg', u'firework', u'charg'] [u'africa', u'femal', u'leader', u'confirm', u'liberia'] [u'ail', u'allenbi', u'defi', u'pain', u'lead', u'open'] [u'alic', u'spring', u'youth', u'get', u'duke', u'edinburgh', u'award'] [u'alumina', u'produc', u'confid', u'ahead', u'expans'] [u'wit', u'link', u'murdoch'] [u'ant', u'leav', u'road', u'sign', u'studi'] [u'archbishop', u'urg', u'bill', u'delay'] [u'asda', u'say', u'test', u'posit'] [u'australia', u'macgil', u'bracken'] [u'australia', u'wari', u'dead', u'rubber', u'syndrom'] [u'babi', u'death', u'prompt', u'push', u'emerg', u'depart'] [u'urg', u'power', u'public', u'spot'] [u'beazley', u'unveil', u'infrastructur', u'blueprint'] [u'bestial', u'charg', u'drop', u'sydney'] [u'betfair', u'legisl', u'move', u'closer', u'realiti'] [u'save', u'south', u'east', u'lighthous', u'platform'] [u'bird', u'discov', u'aceh'] [u'boswel', u'urg', u'start', u'uranium'] [u'recov', u'life', u'chang', u'bladder', u'oper'] [u'bradman', u'go'] [u'briberi', u'claim', u'continu', u'quinn'] [u'britain', u'lift', u'hour', u'curb', u'booz'] [u'campaign', u'continu', u'nguyen'] [u'canadian', u'indian', u'receiv', u'compo', u'payout'] [u'bomb', u'kill', u'outsid', u'afghan', u'drug', u'summit'] [u'casa', u'inspector', u'give', u'evid', u'plane', u'crash'] [u'central', u'sydney', u'train', u'station', u'evacu'] [u'chamber', u'seek', u'start', u'transport', u'corridor', u'stage'] [u'cheeki', u'pinot', u'snatch', u'honour'] [u'code', u'conduct', u'crack', u'councillor'] [u'concern', u'wont', u'stop', u'chang', u'andrew', u'say'] [u'consum', u'confid', u'boost', u'market'] [u'cook', u'line', u'replac', u'strauss'] [u'costello', u'dodg', u'suggest', u'bigger', u'budget'] [u'costello', u'unveil', u'law', u'overhaul'] [u'council', u'aborigin', u'committe', u'quit'] [u'council', u'back', u'extend', u'nightclub', u'hour', u'trial'] [u'council', u'hold', u'develop', u'applic', u'inquiri'] [u'council', u'postpon', u'saleyard', u'meet'] [u'council', u'consid', u'power', u'station', u'plan'] [u'council', u'close', u'brown', u'hill', u'outdoor', u'pool'] [u'council', u'determin', u'futur', u'tree'] [u'council', u'lobbi', u'continu', u'fever', u'vaccin'] [u'court', u'jail', u'drug', u'traffick'] [u'crow', u'preseason', u'train'] [u'death', u'spark', u'power', u'pole', u'replac'] [u'death', u'trigger', u'mandatori', u'life', u'jacket'] [u'dentist', u'talk', u'fluorid'] [u'deport', u'probabl', u'entitl', u'visa', u'lawyer'] [u'deputi', u'coron', u'continu', u'bushfir', u'tragedi', u'tour'] [u'desalin', u'plant', u'build', u'sculli'] [u'disciplinari', u'action', u'chopper', u'safeti', u'check'] [u'doctor', u'hail', u'brain', u'machin'] [u'doubt', u'cast', u'vicforest', u'tender', u'scheme'] [u'draw', u'keep', u'england', u'seri', u'hop', u'aliv'] [u'elector', u'commission', u'want', u'briberi', u'claim'] [u'england', u'limp'] [u'fatal', u'hous', u'site', u'polic', u'guard'] [u'fatal', u'shoot', u'prompt', u'recommend'] [u'fear', u'singapor', u'execut', u'link', u'shorten'] [u'feder', u'fund', u'ensur', u'peel', u'deviat', u'construct'] [u'fisheri', u'investig', u'shark', u'poacher', u'sight'] [u'fishermen', u'haul', u'unexpect', u'christma', u'catch'] [u'fisher', u'expect', u'offer'] [u'fisher', u'urg', u'consid', u'licenc'] [u'fish', u'industri', u'shake', u'south', u'east'] [u'fish', u'boat', u'crew', u'miss', u'ranger'] [u'fish', u'industri', u'beat', u'rescu', u'packag'] [u'fish', u'price', u'hike', u'inevit', u'licenc'] [u'flaw', u'motorbik', u'camera', u'plan'] [u'fletcher', u'jone', u'factori', u'closur', u'year'] [u'govt', u'employe', u'plead', u'guilti', u'fraud', u'charg'] [u'minist', u'face', u'trial', u'forgeri', u'charg'] [u'student', u'tell', u'court', u'teacher', u'assault'] [u'french', u'rail', u'strike', u'end'] [u'german', u'tour', u'organis', u'donat', u'gillett', u'fund'] [u'time', u'say', u'correct', u'servic', u'chief'] [u'gladston', u'council', u'hold', u'elect'] [u'govt', u'back', u'mckinlay', u'shire', u'plan', u'scheme'] [u'govt', u'deni', u'fail', u'honour', u'natur', u'pledg'] [u'govt', u'reject', u'hearsay', u'evid', u'parliamentari'] [u'govt', u'reject', u'region', u'speed', u'camera', u'critic'] [u'govt', u'stand', u'essenc', u'reform'] [u'govt', u'pressur', u'help', u'save', u'life'] [u'govt', u'sympathet', u'plight', u'paradis'] [u'govt', u'gordon', u'inquiri', u'fallout'] [u'govt', u'urg', u'provid', u'water', u'pipelin', u'subsidi'] [u'govt', u'urg', u'rethink', u'suburb', u'boundari'] [u'green', u'group', u'clarifi', u'marin', u'park'] [u'harri', u'potter', u'cast', u'spell', u'space'] [u'harvey', u'reaffirm', u'myer'] [u'health', u'servic', u'job', u'specul', u'doesnt', u'faze'] [u'hensbi', u'doesnt', u'know', u'norman'] [u'host', u'crow', u'get', u'afi', u'broadcast'] [u'hull', u'plea', u'fail', u'save', u'nguyen'] [u'human', u'right', u'chief', u'head', u'bunburi'] [u'icci', u'expect', u'bali', u'busi', u'collaps'] [u'iemma', u'keen', u'resolv', u'health', u'servic', u'financi', u'woe'] [u'ignor', u'useless', u'inform', u'aid', u'memori'] [u'immigr', u'blame', u'man', u'deport', u'famili'] [u'impound', u'ship', u'crew', u'win', u'wag', u'battl'] [u'india', u'indonesia', u'agre', u'boost', u'tie'] [u'indonesian', u'fish', u'boat', u'nab'] [u'industri', u'fear', u'wine', u'surplus', u'year'] [u'interst', u'polic', u'lend', u'hand', u'road', u'safeti'] [u'iraqi', u'general', u'speak', u'secret', u'prison'] [u'iraqi', u'violenc', u'kill', u'past'] [u'jilt', u'pilot', u'plead', u'guilti', u'elect', u'night'] [u'job', u'indigen', u'legal', u'servic', u'fund'] [u'landslid', u'close', u'cunningham', u'highway'] [u'lewi', u'replac', u'rest', u'mcgrath', u'dayer'] [u'liverpool', u'chelsea', u'inter', u'champion', u'leagu'] [u'local', u'farmer', u'name', u'graincorp', u'chief'] [u'locust', u'spray', u'target', u'nation', u'park'] [u'magistr', u'anger', u'cuff', u'prison', u'appear'] [u'deport', u'bosnia'] [u'dead', u'sydney', u'park'] [u'hospit', u'kite', u'surf', u'accid'] [u'jail', u'fatal', u'road', u'rage', u'attack'] [u'plead', u'guilti', u'abduct', u'teen'] [u'mayor', u'fear', u'sale', u'katherin', u'resid'] [u'mayor', u'urg', u'brothel', u'licens', u'scheme'] [u'mckenzi', u'interest', u'coach', u'wallabi'] [u'memori', u'honour', u'hunter', u'polic', u'pair'] [u'mildura', u'council', u'pleas', u'rat', u'recoveri', u'effort'] [u'miller', u'secur', u'discount', u'divis', u'sale'] [u'miner', u'get', u'good', u'copper', u'cobalt', u'result'] [u'minist', u'assur', u'assault', u'refug', u'short', u'term'] [u'minist', u'wont', u'meet', u'anti', u'farmer'] [u'minist', u'receiv', u'mine', u'inquiri', u'request'] [u'hospit', u'voluntari', u'redund', u'possibl'] [u'blame', u'govt', u'medic', u'centr', u'closur'] [u'highlight', u'fuel', u'price', u'dispar'] [u'mum', u'drink', u'lead', u'teenag', u'alcohol', u'disord'] [u'murdoch', u'comfort', u'teari', u'packer', u'onetel', u'collaps'] [u'murdoch', u'deni', u'shift', u'blame', u'onetel', u'woe'] [u'murdoch', u'wrap', u'evid', u'onetel', u'trial'] [u'nation', u'park', u'blaze', u'week'] [u'nation', u'senat', u'urg', u'oppos', u'chang'] [u'nation', u'urg', u'oppos', u'legisl'] [u'nation', u'want', u'stop', u'super', u'fire'] [u'german', u'leader', u'push', u'closer', u'tie'] [u'patrol', u'help', u'tackl', u'alcohol', u'abus', u'say'] [u'penalti', u'attack', u'pregnant', u'women'] [u'tourism', u'boost', u'china', u'korea', u'visitor'] [u'nguyen', u'appeal', u'fall', u'deaf', u'ear'] [u'ombudsman', u'report', u'underlin', u'health', u'crisi'] [u'opposit', u'rais', u'detent', u'centr', u'safeti', u'concern'] [u'pace', u'spin', u'selector', u'dilemma'] [u'passeng', u'strand', u'bali', u'airlin', u'suspend'] [u'posit', u'leadership', u'unchang'] [u'wont', u'push', u'oversea', u'support', u'nguyen', u'case'] [u'polic', u'break', u'alleg', u'interst', u'drug', u'ring'] [u'polic', u'comment', u'prompt', u'magistr', u'review'] [u'polic', u'consid', u'hous', u'blaze', u'suspici'] [u'polic', u'hope', u'reward', u'yield', u'murder', u'inform'] [u'polic', u'investig', u'riverland', u'toddler', u'murder'] [u'polic', u'prais', u'better', u'behav', u'schooli'] [u'polic', u'question', u'secur', u'guard', u'stab'] [u'polic', u'search', u'drug', u'raid'] [u'polic', u'warn', u'open', u'window', u'night'] [u'pont', u'want', u'pressur', u'maintain'] [u'public', u'warn', u'electr', u'meter', u'tamper'] [u'qsia', u'claim', u'lesson', u'feder', u'fisheri'] [u'quinn', u'offer', u'cash'] [u'rain', u'help', u'boost', u'central', u'malle', u'harvest'] [u'rann', u'plan', u'ditch', u'upper', u'hous', u'meet', u'resist'] [u'record', u'break', u'allenbi', u'take', u'open', u'lead'] [u'referendum', u'seek', u'fluorid', u'debat'] [u'report', u'warn', u'massiv', u'worker', u'shortag'] [u'research', u'consid', u'altern', u'rock', u'blast'] [u'resid', u'green', u'lawn', u'level', u'drop'] [u'resourc', u'halt', u'market', u'negat'] [u'hail', u'unit', u'strike', u'forc', u'world', u'best'] [u'urg', u'ballina', u'bypass'] [u'ruddock', u'defend', u'indigen', u'legal', u'servic', u'cut'] [u'rural', u'medic', u'servic', u'crisi', u'loom'] [u'sartor', u'back', u'away', u'tower', u'stanc'] [u'scheme', u'aim', u'aborigin', u'youth', u'jail'] [u'school', u'crash', u'injur', u'children'] [u'school', u'crash', u'victim', u'airlift', u'adelaid'] [u'school', u'mark', u'aid', u'awar', u'debat'] [u'sharapova', u'schnyder', u'head', u'australian', u'hardcourt', u'field'] [u'shire', u'local', u'govt', u'merger'] [u'sponsor', u'hang'] [u'stanhop', u'criticis', u'muslim', u'extremist'] [u'star', u'kubrick', u'classic', u'visit', u'director', u'exhibit'] [u'stem', u'cell', u'pioneer', u'resign', u'scandal'] [u'studi', u'show', u'healthi', u'hast', u'river'] [u'surfer', u'abberton', u'face', u'jail'] [u'surfer', u'guilti', u'pervert', u'cours', u'justic'] [u'sydney', u'hospit', u'close', u'melanoma'] [u'tamworth', u'council', u'record', u'plus', u'surplus'] [u'tarnagulla', u'water', u'woe', u'spark', u'bushfir', u'worri'] [u'parliament', u'pass', u'betfair', u'law'] [u'tassi', u'tiger', u'star', u'nation', u'museum', u'exhibit'] [u'teen', u'charg', u'pinjarra', u'stab'] [u'teen', u'arrest', u'high', u'speed', u'chase'] [u'test', u'continu', u'boat', u'mysteri', u'disappear'] [u'thompson', u'vlaho', u'doubt', u'struggl', u'victori'] [u'bank', u'share', u'telstra', u'sale', u'duti'] [u'children', u'dead', u'flood', u'malaysia'] [u'hurt', u'mitchel', u'highway', u'crash'] [u'face', u'rape', u'charg'] [u'toxic', u'spill', u'hit', u'major', u'chines', u'citi'] [u'trade', u'sanction', u'wont', u'save', u'nguyen', u'downer'] [u'traeger', u'park', u'host', u'central', u'aust', u'match'] [u'tummi', u'bug', u'live', u'photo', u'film'] [u'union', u'seek', u'govt', u'help', u'attract', u'apprentic'] [u'union', u'seek', u'talk', u'student', u'associ', u'sack'] [u'staff', u'number'] [u'union', u'meet', u'stop', u'evict'] [u'plan', u'iraq', u'troop', u'reduct'] [u'widen', u'zimbabw', u'sanction'] [u'vail', u'continu', u'resourc', u'industri', u'tour'] [u'vietnam', u'charg', u'glitter', u'abus', u'offici'] [u'virgin', u'blue', u'appeal', u'discrimin', u'find'] [u'wale', u'drop', u'byrn', u'australia', u'clash'] [u'wallabi', u'confid', u'ahead', u'wale', u'test', u'jone'] [u'west', u'bank', u'milit', u'surrend', u'sieg'] [u'whistleblow', u'applaud', u'pacif', u'minist', u'convict'] [u'fire', u'open', u'japan'] [u'stake', u'reput', u'japanes'] [u'wind', u'farm', u'firm', u'challeng', u'council', u'unit', u'decis'] [u'wind', u'farm', u'protest', u'head', u'energi', u'util'] [u'windi', u'lack', u'spin', u'option', u'final', u'test'] [u'wine', u'oversuppli', u'mean', u'grower', u'contract'] [u'wit', u'falconio', u'alleg', u'attack'] [u'wood', u'captur', u'sixth', u'grand', u'slam'] [u'million', u'boost', u'busi'] [u'year', u'highway', u'death'] [u'invest', u'promis', u'faster', u'kalgoorli', u'perth'] [u'commentari', u'highlight'] [u'academ', u'play', u'coal', u'pollut', u'worri'] [u'accus', u'baxter', u'centr', u'arsonist', u'hold', u'secret'] [u'govt', u'urg', u'tougher', u'thiev'] [u'act', u'pledg', u'amend', u'govt', u'law'] [u'adelaid', u'wont', u'chang', u'game', u'plan', u'york', u'kosmina'] [u'announc', u'rule', u'chang'] [u'join', u'fight', u'famili', u'violenc'] [u'join', u'fight', u'violenc', u'women'] [u'allenbi', u'halfway', u'leader', u'australian', u'open'] [u'allenbi', u'hold', u'shoot', u'lead'] [u'urg', u'better', u'spread', u'coastal', u'health', u'resourc'] [u'ambul', u'servic', u'deni', u'paramed', u'shortag'] [u'appeal', u'court', u'dismiss', u'water', u'valv', u'accid', u'case'] [u'arsenal', u'rock', u'crisi'] [u'aspirin', u'caus', u'ulcer', u'studi'] [u'aussi', u'gymnast', u'win', u'bronz', u'world', u'champ'] [u'aussi', u'wing', u'prayer', u'kiwi', u'showdown'] [u'author', u'investig', u'bird', u'death', u'treatment'] [u'bali', u'mourner', u'target', u'document', u'reveal'] [u'bank', u'drag', u'market'] [u'battl', u'boro', u'reach', u'uefa', u'knockout'] [u'beatti', u'open', u'coal', u'methan'] [u'betfair', u'open', u'hobart', u'month'] [u'billiton', u'profit', u'strong', u'demand', u'energi'] [u'board', u'see', u'challeng', u'oversea', u'staff', u'recruit'] [u'bogut', u'wear', u'face', u'mask', u'surgeri'] [u'border', u'crackdown', u'drink', u'drive'] [u'bring', u'deport', u'home', u'beazley'] [u'bushfir', u'expert', u'give', u'evid', u'eyr', u'peninsula'] [u'busi', u'prepar', u'impact', u'fish', u'industri'] [u'bute', u'longer', u'threat'] [u'needl', u'exchang', u'program', u'jail'] [u'canegrow', u'back', u'subsidi', u'decis'] [u'carter', u'name', u'player', u'player', u'year'] [u'cervic', u'cancer', u'death', u'higher', u'indigen'] [u'chelsea', u'readi', u'portsmouth', u'woe'] [u'childcar', u'centr', u'owner', u'disappoint', u'minist'] [u'chines', u'compani', u'apologis', u'toxic', u'spill'] [u'chogm', u'summit', u'boost', u'talk'] [u'communiti', u'get', u'extend', u'life'] [u'compens', u'deal', u'shouldnt', u'rush', u'hardi'] [u'demand', u'gunn', u'apolog'] [u'contamin', u'diesel', u'caus', u'pump', u'closur'] [u'council', u'chairman', u'join', u'forestri', u'board'] [u'council', u'seek', u'legal', u'advic', u'perri', u'lake'] [u'council', u'mix', u'view', u'plan', u'chang'] [u'council', u'suggest', u'catchment', u'manag', u'author'] [u'council', u'consid', u'whistl', u'return'] [u'council', u'label', u'racist'] [u'council', u'underlin', u'import', u'plan'] [u'countri', u'forc', u'extra', u'game'] [u'coveni', u'propel', u'jet', u'victori'] [u'crash', u'prompt', u'govt', u'consid', u'school', u'seatbelt'] [u'david', u'jone', u'record', u'sale', u'slump'] [u'dead', u'hous', u'blaze', u'racial', u'motiv'] [u'deal', u'reach', u'anti', u'terror', u'legisl'] [u'detect', u'deni', u'murdoch', u'trial'] [u'diesel', u'contamin', u'unlik', u'affect'] [u'doctor', u'associ', u'support', u'nuclear', u'dump', u'call'] [u'doubl', u'murder', u'surgeri', u'appropri'] [u'doyl', u'quash', u'leadership', u'specul'] [u'driver', u'question', u'pedestrian'] [u'driver', u'urg', u'slow', u'live'] [u'drought', u'farmer', u'face', u'worm', u'threat'] [u'drug', u'raid', u'uncov', u'south', u'west', u'cannabi', u'crop'] [u'ducker', u'die'] [u'dump', u'clark', u'give', u'time', u'clear', u'mind'] [u'ecstasi', u'traffick', u'avoid', u'jail'] [u'subsidi', u'benefit', u'australian', u'cane', u'farmer'] [u'famili', u'deporte', u'share', u'blame', u'ruddock', u'say'] [u'fishermen', u'dinghi', u'owner', u'rescu', u'separ'] [u'fleme', u'miss', u'chappel', u'hadle', u'match'] [u'fletcher', u'jone', u'factori', u'shut', u'door'] [u'flinder', u'street', u'station', u'undergo', u'revamp'] [u'fume', u'forc', u'emerg', u'dept', u'evacu'] [u'glitter', u'charg', u'commit', u'obscen', u'act'] [u'golden', u'prospect', u'cala', u'resourc'] [u'govt', u'rule', u'final', u'legal', u'avenu', u'save', u'nguyen'] [u'govt', u'urg', u'reconsid', u'park', u'handback'] [u'grant', u'help', u'determin', u'warmun', u'import'] [u'graphic', u'campaign', u'target', u'smoke', u'teen'] [u'group', u'back', u'plan', u'indigen', u'home', u'ownership'] [u'group', u'say', u'ail', u'health', u'hurt', u'busi'] [u'harvey', u'norman', u'seek', u'myer', u'purchas'] [u'hatton', u'put', u'tszyu', u'sensat'] [u'hill', u'visit', u'troop', u'iraq'] [u'hope', u'tugun', u'bypass', u'work', u'begin', u'year'] [u'illeg', u'indonesian', u'fisher', u'like', u'charg'] [u'indigen', u'lover', u'take', u'award'] [u'indigen', u'group', u'get', u'commerci', u'crab'] [u'indigen', u'legal', u'servic', u'govt'] [u'indonesia', u'bar', u'terror', u'research'] [u'indonesian', u'polic', u'uncov', u'suicid', u'bomb', u'plot'] [u'iraq', u'ask', u'japan', u'extend', u'mission'] [u'chang', u'threaten', u'commiss', u'case'] [u'law', u'wont', u'pass', u'week', u'joyc'] [u'jam', u'hardi', u'compo', u'deadlin', u'pass', u'deal'] [u'japan', u'assur', u'iraq', u'continu', u'assist'] [u'japan', u'edg', u'allow', u'femal', u'emperor'] [u'japan', u'prepar', u'second', u'asteroid', u'land', u'attempt'] [u'joyc', u'keep', u'option', u'open'] [u'kalgoorli', u'lead', u'notic'] [u'katter', u'urg', u'cough', u'doctor', u'contact', u'number'] [u'knowledg', u'financi', u'control'] [u'lara', u'eye', u'border', u'record'] [u'lara', u'lead', u'windi', u'fight'] [u'lawyer', u'accus', u'give', u'mislead', u'statement'] [u'put', u'australia'] [u'lesli', u'keep', u'case', u'detail', u'quiet'] [u'lesli', u'speak', u'critic'] [u'lewi', u'shock'] [u'long', u'time', u'resid', u'escap', u'deport'] [u'loom', u'execut', u'prompt', u'suspend'] [u'lotto', u'winner', u'jail', u'centerlink', u'scam'] [u'luhrmann', u'eye', u'cattl', u'station', u'epic'] [u'malaysia', u'flood', u'death', u'toll', u'rise'] [u'get', u'life', u'jail', u'partner', u'murder'] [u'good', u'behaviour', u'bond', u'friend', u'death'] [u'court', u'polic', u'pursuit'] [u'flee', u'drug', u'raid', u'urg', u'surrend'] [u'marin', u'roar', u'play', u'excit', u'draw'] [u'matilda', u'draw', u'china'] [u'mayor', u'doesnt', u'want', u'mine', u'close', u'moranbah'] [u'mcenro', u'tip', u'young', u'gun', u'challeng', u'feder'] [u'meet', u'assess', u'support', u'timber', u'industri'] [u'mildura', u'woman', u'name', u'child', u'carer'] [u'million', u'face', u'food', u'shortag', u'niger'] [u'miner', u'beat', u'lead', u'zinc', u'prospect'] [u'minist', u'announc', u'hospit', u'boost'] [u'minist', u'meet', u'resid', u'plan'] [u'minist', u'welcom', u'fewer', u'great', u'lake', u'councillor'] [u'upset', u'albani', u'tourism', u'snub'] [u'monk', u'amok', u'fistfight', u'catch'] [u'rain', u'hail', u'batter', u'western', u'crop'] [u'support', u'urg', u'foreign', u'train', u'doctor'] [u'back', u'call', u'nullarbor', u'drought', u'declar'] [u'murder', u'trial', u'hear', u'detail', u'fatal', u'home', u'invas'] [u'nitti', u'slip', u'earli'] [u'convict', u'pair', u'charg', u'anti'] [u'legal', u'avenu', u'leav', u'nguyen', u'downer'] [u'north', u'revamp', u'help', u'xstrata', u'copper', u'award'] [u'water', u'contamin', u'link', u'council'] [u'govt', u'get', u'tough', u'truck', u'industri'] [u'govt', u'rule', u'recycl', u'drink', u'water'] [u'number', u'arrest', u'french', u'rioter', u'pass'] [u'miracl', u'save', u'nguyen', u'downer', u'say'] [u'opposit', u'highlight', u'dwindl', u'truck', u'check'] [u'orica', u'fin', u'chemic', u'spill'] [u'overdu', u'rail', u'overpass', u'near', u'complet'] [u'pair', u'face', u'court', u'illeg', u'fish'] [u'palestinian', u'open', u'rafah', u'border', u'cross', u'egypt'] [u'parrot', u'piec', u'secur', u'newcastl', u'poetri', u'prize'] [u'perman', u'resid', u'case', u'review'] [u'perrin', u'sack', u'pompey', u'boss'] [u'petrol', u'sniff', u'measur', u'dont'] [u'pierc', u'creek', u'decis', u'expect', u'short'] [u'pinochet', u'face', u'human', u'right', u'charg'] [u'plan', u'continu', u'retir', u'villag'] [u'plan', u'indigen', u'health', u'clinic'] [u'polic', u'corrupt', u'claim', u'refer'] [u'polic', u'domest', u'violenc', u'strategi', u'work'] [u'polic', u'hunt', u'servic', u'station', u'bandit'] [u'polic', u'investig', u'port', u'kembla', u'bash'] [u'polic', u'question', u'quinn', u'briberi', u'claim'] [u'polic', u'union', u'cast', u'doubt', u'hour', u'week', u'plan'] [u'poppi', u'grower', u'heavi', u'rain', u'bring', u'crop', u'miseri'] [u'postal', u'worker', u'face', u'action', u'ralli'] [u'power', u'firm', u'reject', u'summer', u'outag', u'fear'] [u'power', u'pole', u'inspect', u'collaps'] [u'prepar', u'expect', u'season'] [u'properti', u'industri', u'exec', u'brief', u'terror'] [u'public', u'warn', u'stab', u'theft'] [u'polic', u'brace', u'influx', u'interst', u'schooli'] [u'quarantin', u'probe', u'suspect', u'illeg', u'land'] [u'queen', u'urg', u'chogm', u'leader', u'step', u'fight'] [u'record', u'level', u'fuel', u'global', u'warm', u'fear'] [u'region', u'doubt', u'cast', u'higher', u'educ', u'plan'] [u'report', u'urg', u'counsel', u'bishopscourt', u'saga'] [u'resid', u'want', u'crackdown', u'problem', u'youth'] [u'ronaldo', u'clear', u'rape', u'claim'] [u'cop', u'critic', u'highway', u'consult'] [u'urg', u'clarifi', u'overload', u'limit'] [u'sack', u'council', u'sort', u'constitut', u'issu'] [u'sack', u'holden', u'worker', u'knock'] [u'saddam', u'defenc', u'team', u'end', u'trial', u'boycott'] [u'schifcofsk', u'name', u'raider', u'skipper'] [u'scientist', u'discov', u'sing', u'iceberg'] [u'secur', u'camera', u'plan', u'griffith'] [u'secur', u'money', u'tamworth'] [u'sentenc', u'extend', u'child', u'offend'] [u'seventi', u'fear', u'dead', u'fall', u'river'] [u'shark', u'attack', u'surfer', u'mornington', u'peninsula'] [u'shellharbour', u'launch', u'alcohol', u'accord'] [u'sixteen', u'kill', u'rescu', u'fall', u'river'] [u'size', u'boost', u'plan', u'molybdenum'] [u'solomon', u'polic', u'take', u'ramsi'] [u'state', u'feder', u'agreement', u'green', u'light', u'peel', u'deviat'] [u'state', u'urg', u'truck', u'rego', u'rise', u'compromis'] [u'strand', u'tourist', u'arriv', u'home'] [u'swim', u'dolphin', u'eas', u'depress', u'studi'] [u'govt', u'reject', u'tier', u'educ'] [u'tebbutt', u'say', u'state', u'skill'] [u'teen', u'accus', u'knife', u'attack'] [u'telstra', u'reject', u'fear', u'mass', u'staff', u'cut'] [u'thiev', u'target', u'unsecur', u'hous'] [u'threat', u'wont', u'save', u'nguyen', u'costello'] [u'qanta', u'employe', u'arrest', u'narcot'] [u'tougher', u'control', u'site', u'rehab'] [u'tourist', u'target', u'region'] [u'truck', u'driver', u'urg', u'strike', u'day'] [u'doctor', u'recruit', u'drive', u'begin'] [u'vail', u'play', u'law', u'revolt'] [u'vail', u'tri', u'quell', u'revolt'] [u'vail', u'tri', u'quell', u'nation', u'revolt'] [u'govt', u'back', u'pipelin', u'disput'] [u'wallabi', u'happi', u'jone', u'gregan', u'say', u'giteau'] [u'word', u'continu', u'nrma', u'smash', u'repair'] [u'warrior', u'reach', u'competit', u'total'] [u'watch', u'committe', u'disappoint', u'fund', u'decis'] [u'watchdog', u'ask', u'delay', u'indigen', u'school', u'closur'] [u'water', u'author', u'rais', u'saleyard', u'worri'] [u'water', u'author', u'stand', u'irrig', u'relief', u'fund'] [u'waugh', u'back', u'gregan', u'ahead', u'mileston', u'test'] [u'western', u'power', u'worker', u'strike', u'deal'] [u'western', u'power', u'worker', u'vote', u'stop', u'disconnect'] [u'wilko', u'undergo', u'groin', u'oper'] [u'woodsid', u'green', u'light', u'field'] [u'woolworth', u'boss', u'deni', u'bank', u'board', u'report'] [u'workco', u'stand', u'colleg', u'cut', u'push'] [u'world', u'vision', u'australia', u'chief', u'recognis', u'work'] [u'arrest', u'schooli'] [u'offic', u'fair', u'trade', u'releas', u'real', u'estat'] [u'adelaid', u'class', u'tiger'] [u'adelaid', u'townsvill', u'post', u'wnbl', u'win'] [u'jazeera', u'seek', u'answer', u'bomb', u'report'] [u'alleg', u'assault', u'prompt', u'polic', u'search'] [u'allenbi', u'hold', u'open', u'lead'] [u'allenbi', u'start', u'round', u'style'] [u'anti', u'protest', u'return', u'bush', u'retreat'] [u'arrog', u'go', u'say', u'mourinho'] [u'lover', u'rais', u'cane', u'toad', u'fight', u'fund'] [u'aussi', u'chase', u'lara', u'inspir', u'total'] [u'beach', u'restor', u'plan', u'unveil'] [u'beazley', u'reiter', u'pledg', u'tear', u'law'] [u'good', u'johnni', u'win', u'miracl', u'mile'] [u'best', u'enrich', u'live'] [u'bishop', u'urg', u'compass', u'nguyen'] [u'blast', u'hit', u'nato', u'soldier', u'afghanistan'] [u'blue', u'bowler', u'restrict', u'bull'] [u'border', u'say', u'lara', u'worthi', u'record'] [u'boy', u'abduct', u'claim', u'investig'] [u'bushfir', u'communic', u'season', u'late'] [u'busi', u'tycoon', u'set', u'balloon', u'record'] [u'canadian', u'plan', u'tackl', u'indigen', u'poverti'] [u'maker', u'open', u'talk', u'owner'] [u'chamber', u'predict', u'territorian', u'xmas'] [u'china', u'report', u'bird', u'outbreak', u'inner'] [u'chines', u'citi', u'water', u'toxic', u'spill'] [u'chogm', u'leader', u'discuss', u'trade', u'reform'] [u'cityrail', u'passeng', u'warn', u'disrupt'] [u'commentari', u'highlight', u'adelaid'] [u'confer', u'popular', u'renov', u'delay', u'govt'] [u'corbi', u'camp', u'hail', u'qanta', u'drug', u'arrest'] [u'count', u'begin', u'pittwat', u'elect'] [u'coveni', u'propel', u'jet', u'victori'] [u'lonergan', u'review', u'draft'] [u'dozen', u'arrest', u'schooli'] [u'drive', u'shoot', u'investig'] [u'east', u'china', u'quak', u'kill'] [u'eighti', u'fear', u'dead', u'india', u'crash'] [u'sugar', u'chang', u'push', u'price', u'higher'] [u'expert', u'panel', u'warn', u'desalin', u'plant'] [u'ferguson', u'rule', u'ballack'] [u'blood', u'lownd', u'titl', u'duel'] [u'injur', u'collis'] [u'kill', u'china', u'quak'] [u'footbal', u'legend', u'georg', u'best', u'pass', u'away'] [u'boss', u'head', u'elgin', u'marbl', u'effort'] [u'world', u'ralli', u'champion', u'richard', u'burn', u'die'] [u'friend', u'carri', u'support', u'messag', u'nguyen'] [u'frustrat', u'ahm', u'near', u'quit', u'bowl', u'action'] [u'germani', u'call', u'secret', u'flight', u'explan'] [u'gillespi', u'send', u'messag', u'merv'] [u'hera', u'face', u'prematur', u'career'] [u'heritag', u'list', u'bring', u'hope', u'richmond', u'bridg'] [u'hockeyroo', u'humbl', u'olymp', u'champ', u'germani'] [u'human', u'right', u'concern', u'domin', u'chogm'] [u'huxley', u'famili', u'appeal', u'public', u'help'] [u'indian', u'businessman', u'seek', u'balloon', u'record'] [u'indigen', u'kidney', u'diseas', u'rat', u'time', u'higher'] [u'indonesian', u'patient', u'test', u'posit', u'bird'] [u'indonesia', u'vow', u'bird', u'fight', u'pois', u'produc'] [u'injur', u'allenbi', u'hold', u'australian', u'open', u'lead'] [u'internet', u'monitor', u'blood', u'clot', u'patient', u'health'] [u'iran', u'stand', u'nuclear', u'enrich', u'ambit'] [u'japanes', u'probe', u'land', u'asteroid', u'agenc', u'say'] [u'karat', u'kid', u'morita', u'die'] [u'kemp', u'earn', u'south', u'african', u'test', u'recal'] [u'king', u'outlast', u'wildcat'] [u'kitzbichl', u'doubl', u'see', u'victori', u'home'] [u'langer', u'lead', u'aussi', u'chase'] [u'lara', u'break', u'border', u'record'] [u'lawyer', u'alleg', u'victorian', u'polic', u'corrupt'] [u'lesli', u'hit', u'public', u'anger'] [u'lesli', u'team', u'quiet', u'case', u'cost'] [u'liber', u'jitteri', u'ahead', u'pittwat', u'elect'] [u'liber', u'lose', u'elect'] [u'liber', u'tip', u'retain', u'pittwat'] [u'liukin', u'take', u'reveng', u'world', u'champ'] [u'mcewen', u'take', u'year', u'best', u'award'] [u'mislead', u'info', u'forc', u'cooper', u'postpon'] [u'monk', u'rent', u'mall', u'space', u'thailand'] [u'mornington', u'peninsula', u'shark', u'attack', u'year'] [u'murphi', u'take', u'draft'] [u'defenc', u'suburb', u'lack', u'plan'] [u'appeal', u'clemenc', u'nguyen'] [u'pressur', u'singapor', u'nguyen'] [u'pakistan', u'back', u'aust', u'anti', u'terror', u'law'] [u'palestinian', u'enjoy', u'breath', u'freedom', u'border'] [u'palm', u'year'] [u'polic', u'prais', u'schooli', u'behaviour'] [u'polic', u'prepar', u'schooli', u'arrest'] [u'pope', u'prais', u'victorian', u'doctor', u'famili', u'plan'] [u'power', u'problem', u'thunderstorm'] [u'qanta', u'worker', u'face', u'court', u'drug', u'charg'] [u'qanta', u'worker', u'sack'] [u'qanta', u'worker', u'unfair', u'dismiss', u'lawyer', u'say'] [u'nation', u'talk', u'accommod'] [u'ranger', u'bounc', u'defeat', u'flame'] [u'russia', u'brace', u'china', u'toxic', u'spill', u'fallout'] [u'smith', u'slam', u'india'] [u'sustain', u'develop', u'futur', u'shock'] [u'childcar', u'place', u'rais'] [u'teen', u'die', u'bruce', u'highway', u'crash'] [u'territori', u'best', u'young', u'athlet', u'compet', u'game'] [u'thanksgiv', u'mark', u'minut', u'turkey', u'gobbl'] [u'thousand', u'homeless', u'china', u'quak'] [u'thousand', u'build', u'collaps', u'china', u'quak'] [u'tiger', u'clinch', u'thrill'] [u'train', u'derail', u'scotland'] [u'tram', u'fund', u'better', u'spend', u'road', u'opposit'] [u'umaga', u'retir', u'scotland', u'test', u'report'] [u'unhcr', u'issu', u'plea', u'fund'] [u'upper', u'hous', u'say', u'speaker'] [u'vaughan', u'open', u'test'] [u'labor', u'reaffirm', u'uranium', u'mine'] [u'wall', u'street', u'extend', u'win', u'streak'] [u'wenger', u'call', u'chelsea', u'truce'] [u'west', u'indian', u'great', u'joel', u'garner', u'speak', u'peter', u'walsh'] [u'fail', u'japan'] [u'woman', u'kill', u'accid'] [u'aborigin', u'train', u'program', u'win', u'nation', u'award'] [u'actu', u'pressur', u'costello', u'jam', u'hardi', u'compo'] [u'black', u'golden', u'season', u'grand', u'slam'] [u'allenbi', u'cling', u'lead', u'final', u'round'] [u'allenbi', u'play'] [u'allenbi', u'scrap', u'home', u'claim', u'open'] [u'ambros', u'grab', u'race'] [u'australian', u'urg', u'wear', u'yellow', u'ribbon'] [u'azerbaijan', u'polic', u'break', u'elect', u'protest'] [u'beatti', u'pleas', u'schooli', u'festiv'] [u'beazley', u'repeat', u'nguyen', u'mission'] [u'bennett', u'leav', u'look', u'answer'] [u'blackwel', u'injur', u'gile'] [u'bulleen', u'kick', u'away', u'perth'] [u'elect', u'result', u'wake', u'liber'] [u'australian', u'support', u'yellow', u'ribbon'] [u'chelsea', u'charg', u'point', u'clear', u'wigan', u'slip'] [u'china', u'apologis', u'russia', u'river', u'contamin'] [u'climat', u'chang', u'expert', u'urg', u'govt', u'adapt'] [u'commentari', u'highlight', u'adelaid'] [u'cosgrov', u'devour', u'bushrang', u'attack'] [u'count', u'zimbabw'] [u'current', u'iraqi', u'right', u'abus', u'equal', u'saddam'] [u'day', u'domin', u'bennett'] [u'debut', u'lead', u'warrior', u'recoveri'] [u'doctor', u'warn', u'fever', u'vaccin', u'product', u'halt'] [u'singl', u'shoot', u'tough', u'shoot'] [u'foreign', u'illeg', u'fish', u'boat', u'spot', u'river'] [u'elect', u'presid'] [u'funk', u'winner', u'skin'] [u'gallop', u'label', u'dictat', u'uranium', u'debat'] [u'game', u'chief', u'talk', u'event', u'secur'] [u'girl', u'charg', u'schooli', u'assault'] [u'govt', u'deni', u'target', u'teenag', u'anti'] [u'govt', u'lawyer', u'examin', u'nguyen', u'propos'] [u'govt', u'invest', u'urban', u'redevelop'] [u'govt', u'trial', u'residenti', u'park', u'permit'] [u'green', u'reject', u'call', u'nuclear', u'power', u'studi'] [u'green', u'seek', u'singapor', u'defenc', u'deal', u'rethink'] [u'gregan', u'shrug', u'retir', u'talk'] [u'gungahlin', u'retail', u'suffer', u'storm', u'damag'] [u'hatton', u'unifi', u'world', u'titl'] [u'hockeyroo', u'overpow', u'south', u'korea'] [u'hospit', u'union', u'say', u'law', u'hurt', u'member'] [u'howard', u'make', u'inform', u'nguyen', u'plea'] [u'howard', u'recal', u'best', u'magic'] [u'hundr', u'saddam', u'execut'] [u'hundr', u'islamist', u'arrest', u'egypt', u'vote'] [u'hussey', u'centuri', u'give', u'aussi', u'lead'] [u'hussey', u'centuri', u'test', u'balanc'] [u'hussey', u'lead', u'aussi', u'fight'] [u'ingal', u'hang', u'championship'] [u'inquiri', u'launch', u'violent', u'bulli', u'claim'] [u'iranian', u'support', u'nuclear', u'program'] [u'iran', u'quak', u'toll', u'rise'] [u'jam', u'hardi', u'compo', u'deal', u'close', u'iemma'] [u'japanes', u'probe', u'collect', u'asteroid', u'sampl'] [u'jayasuriya', u'vow', u'regain', u'test', u'spot'] [u'jone', u'pleas', u'progress', u'pakistan'] [u'kiwi', u'crush', u'kangaroo', u'nation', u'final'] [u'liber', u'consid', u'establish', u'anti', u'corrupt', u'bodi'] [u'littl', u'fish', u'star', u'lead', u'award'] [u'littl', u'jewel', u'return', u'argentina'] [u'malik', u'fresh', u'bowl', u'test', u'perth'] [u'charg', u'hotel', u'attack'] [u'jail', u'fraud'] [u'kill', u'accid'] [u'nation', u'parti', u'concern', u'law', u'flaw', u'actu'] [u'nelson', u'defend', u'nation', u'test', u'year', u'old'] [u'nelson', u'seek', u'aust', u'nuclear', u'power', u'inquiri'] [u'agenc', u'youth', u'petrol', u'sniff'] [u'charg', u'burn', u'taliban', u'bodi'] [u'pinochet', u'mute', u'birthday', u'hous', u'arrest'] [u'pittwat', u'defeat', u'warn', u'liber', u'labor', u'say'] [u'pittwat', u'leadership', u'test', u'debnam', u'say'] [u'plan', u'garden', u'site', u'display'] [u'pleas', u'chogm', u'trade', u'statement'] [u'stand', u'firm', u'lesli', u'comment', u'warn'] [u'warn', u'singapor', u'nguyen', u'resent'] [u'polic', u'charg', u'cyclist', u'death'] [u'polic', u'smash', u'plot', u'kill', u'saddam', u'trial', u'judg'] [u'polic', u'warn', u'resid', u'conman'] [u'post', u'offic', u'gear', u'santa', u'mail'] [u'power', u'storm', u'sweep'] [u'plater', u'blow'] [u'polic', u'tell', u'southern', u'schooli', u'behav'] [u'quak', u'hit', u'iranian', u'coast'] [u'rain', u'wash'] [u'reason', u'council', u'sack', u'reveal'] [u'rech', u'doubl', u'adelaid', u'goal'] [u'russo', u'secur', u'fifth', u'place', u'final'] [u'pianist', u'win', u'young', u'perform', u'award'] [u'search', u'attempt', u'theft'] [u'crew', u'busi', u'storm'] [u'silenc', u'applaus', u'honour', u'best', u'memori'] [u'singapor', u'sack', u'hangman', u'execut'] [u'strong', u'contend', u'share', u'gong'] [u'suicid', u'bomber', u'target', u'petrol', u'station'] [u'supersub', u'inzaghi', u'keep', u'milan', u'titl', u'hop', u'aliv'] [u'hous', u'arrest', u'extend', u'report'] [u'sydney', u'water', u'deni', u'pollut', u'wast', u'claim'] [u'taipan', u'halt', u'hawk', u'streak'] [u'polic', u'offic', u'assault'] [u'toll', u'rise', u'indian', u'crash'] [u'umaga', u'deflect', u'retir', u'specul', u'grand'] [u'deni', u'guantanamo', u'style', u'prison', u'kosovo'] [u'valencia', u'claim', u'stubborn', u'celta'] [u'voter', u'apathi', u'hit', u'zimbabwean', u'poll'] [u'govt', u'consid', u'recycl', u'scheme'] [u'wallabi', u'lose', u'wale'] [u'wallabi', u'tour', u'review'] [u'warrior', u'scrambl', u'domin', u'posit'] [u'water', u'restor', u'toxic', u'spill', u'china'] [u'wont', u'fight', u'chang', u'gallop'] [u'wallabi'] [u'windi', u'regain', u'control', u'test'] [u'woolmer', u'hail', u'lara', u'great'] [u'youni', u'miss', u'final', u'test'] [u'kill', u'pacif', u'highway', u'crash'] [u'accid', u'trigger', u'drink', u'drive', u'charg'] [u'actu', u'say', u'messag', u'joyc', u'clear'] [u'airport', u'arrest', u'unrel', u'corbi', u'case', u'chief'] [u'airport', u'worker', u'ask', u'alert', u'organis'] [u'alderman', u'condemn', u'petrol', u'sniff', u'inact'] [u'member', u'block', u'preselect'] [u'altern', u'suggest', u'retain', u'wall', u'offer'] [u'warn', u'wait', u'list', u'worri'] [u'anti', u'adopt', u'cultur', u'alarm', u'inquiri'] [u'outsourc', u'job', u'india'] [u'kill', u'china', u'blast'] [u'australia', u'lose', u'quick', u'wicket'] [u'australia', u'verg', u'clean', u'sweep'] [u'aust', u'slow', u'nguyen', u'say', u'lawyer'] [u'banana', u'diseas', u'mullumbimbi'] [u'barcelona', u'thrash', u'race', u'real', u'struggl', u'draw'] [u'beatti', u'deni', u'politicis', u'health', u'staff'] [u'beekeep', u'forestri', u'chang', u'ensur'] [u'birney', u'face', u'question', u'share', u'disclosur'] [u'blaze', u'claim', u'chariti', u'donat'] [u'blue', u'rise', u'research', u'yield', u'altern'] [u'boati', u'urg', u'cyclon', u'readi'] [u'bodi', u'brisban', u'valley'] [u'boe', u'worker', u'hold', u'collect', u'agreement', u'ballot'] [u'bowen', u'look', u'boost', u'tourism'] [u'bravo', u'hop', u'emul', u'sober'] [u'break', u'hill', u'featur', u'feder', u'engin', u'driver'] [u'bushfir', u'inquest', u'hear', u'local'] [u'truck', u'crash', u'spark', u'plea', u'road'] [u'buyer', u'snap', u'vass', u'newtown', u'block'] [u'elect', u'criticis'] [u'great', u'southern', u'earli', u'power', u'pole'] [u'call', u'sedit', u'offenc'] [u'canberra', u'launch', u'summer', u'festiv'] [u'cane', u'grower', u'look', u'forward', u'crush', u'wrap'] [u'carter', u'win', u'rugbi', u'award'] [u'chappel', u'censur', u'finger', u'salut'] [u'chechen', u'elect', u'post', u'parliament'] [u'china', u'explos', u'toll', u'rise'] [u'chogm', u'back', u'push', u'slash', u'trade', u'barrier'] [u'clark', u'bounc', u'centuri'] [u'commentari', u'highlight', u'adelaid'] [u'committe', u'call', u'nation', u'pest', u'initi'] [u'commonwealth', u'leader', u'urg', u'match'] [u'communiti', u'health', u'group', u'establish'] [u'concern', u'grow', u'detaine', u'hunger', u'strike'] [u'coron', u'order', u'test', u'suspect', u'murder', u'weapon'] [u'costello', u'rule', u'compo', u'break', u'jam', u'hardi'] [u'council', u'issu', u'year', u'public', u'alcohol'] [u'council', u'meet', u'land', u'owner', u'concession', u'lot'] [u'council', u'beat', u'buchanan', u'park', u'work'] [u'cricket', u'decis', u'question'] [u'csiro', u'stay', u'griffith'] [u'cyclist', u'die', u'road', u'race'] [u'cyclist', u'die', u'road', u'ride'] [u'date', u'best', u'funer'] [u'defeat', u'councillor', u'air', u'rural', u'concern'] [u'defenc', u'offici', u'probe', u'crash', u'land', u'base'] [u'dividend', u'unlik', u'leagu', u'club', u'unsecur'] [u'doctor', u'urg', u'school', u'junk', u'food'] [u'attack', u'toll', u'local', u'farmer'] [u'doubt', u'rais', u'council', u'merger'] [u'downer', u'defend', u'govt', u'effort', u'save', u'nguyen'] [u'drill', u'test', u'leav', u'govt', u'approv', u'final', u'hurdl'] [u'driver', u'warn', u'loom', u'chang'] [u'drug', u'driver', u'worri', u'townsvill', u'polic'] [u'effort', u'boost', u'rock', u'lobster', u'export'] [u'elder', u'rider', u'take', u'campdraft', u'award'] [u'elect', u'produc', u'council', u'face'] [u'escap', u'croc', u'surpris', u'darwin', u'driver'] [u'agreement', u'forc', u'winemak', u'name'] [u'eurobodalla', u'council', u'ratifi', u'broule', u'alcohol', u'plan'] [u'explod', u'airbag', u'burn', u'skin', u'research'] [u'extradit', u'murder', u'charg'] [u'care', u'expon', u'name', u'region', u'hero'] [u'famili', u'homeless', u'blaze'] [u'farmer', u'assess', u'damag', u'sever', u'thunderstorm'] [u'firebreak', u'inspect', u'hold', u'earli'] [u'firefight', u'hous', u'blaze', u'rescu', u'recognit'] [u'servic', u'warn', u'danger', u'inquest', u'hear'] [u'firm', u'look', u'develop', u'pine', u'export'] [u'fitzroy', u'river', u'croc', u'prove', u'elus'] [u'fluorid', u'phone', u'survey', u'network'] [u'food', u'label', u'law', u'clarifi', u'health', u'benefit'] [u'foreign', u'worker', u'kidnap', u'iraq'] [u'forestri', u'industri', u'target', u'student'] [u'peopl', u'nomin', u'murdoch', u'suspect', u'court'] [u'fuda', u'secur', u'gambier', u'tenni', u'tournament'] [u'fund', u'safer', u'coast', u'road'] [u'funk', u'skin', u'oppon', u'california'] [u'gambl', u'geelong'] [u'govt', u'attack', u'press', u'freedom', u'sedit'] [u'govt', u'order', u'probe', u'household', u'water'] [u'govt', u'say', u'protest', u'misdirect'] [u'govt', u'spend', u'reef', u'fish', u'compo'] [u'govt', u'urg', u'spend', u'surplus', u'welfar', u'payment'] [u'green', u'refer', u'anti', u'terror', u'law'] [u'group', u'take', u'land', u'manag'] [u'harvey', u'like', u'see', u'fremantl'] [u'hawk', u'hopman'] [u'heavi', u'rain', u'fall', u'illawarra'] [u'high', u'demand', u'hit', u'crisi', u'accommod', u'servic'] [u'highway', u'remain', u'close', u'kill', u'head'] [u'hope', u'specialist', u'doctor', u'break', u'hill'] [u'hospit', u'supper', u'servic'] [u'howard', u'pressur', u'cancel', u'cricket', u'match'] [u'illeg', u'fish', u'vessel', u'evad', u'author'] [u'indigen', u'ranger', u'support', u'fish', u'patrol', u'plan'] [u'indonesian', u'polic', u'bomb', u'cach', u'sulawesi'] [u'inquest', u'tell', u'convict', u'murder', u'suspect'] [u'iraqi', u'presid', u'hit', u'allawi', u'abus', u'claim'] [u'iraqi', u'abroad', u'vote', u'decemb', u'elect'] [u'ireland', u'pursu', u'alleg', u'prison'] [u'law', u'campaign', u'head', u'region', u'victoria'] [u'law', u'pass'] [u'jam', u'hardi', u'give', u'hour', u'compens', u'deadlin'] [u'jone', u'upbeat', u'world', u'prospect'] [u'juve', u'restor', u'cushion', u'racism', u'overshadow', u'seri'] [u'lara', u'second', u'prove', u'decis'] [u'late', u'wicket', u'redback', u'momentum'] [u'lee', u'wit'] [u'lee', u'phone', u'scrutini'] [u'lightn', u'spark', u'south', u'east', u'fire'] [u'lion', u'seek', u'better', u'bond', u'kokoda', u'trek'] [u'local', u'win', u'region', u'tourism', u'gong'] [u'log', u'threat', u'tourism', u'expert'] [u'luca', u'look', u'highway', u'landslid'] [u'clear', u'bunburi', u'hotel', u'shoot'] [u'face', u'court', u'abduct'] [u'plead', u'guilti', u'abus', u'teen', u'boy'] [u'face', u'attempt', u'murder', u'charg', u'park'] [u'court', u'abduct', u'attempt'] [u'court', u'takeaway', u'hold'] [u'meet', u'offer', u'resid', u'detail'] [u'miner', u'welcom', u'grow', u'vanadium', u'demand'] [u'minist', u'hear', u'retir', u'resort', u'concern'] [u'minist', u'urg', u'probe', u'council', u'plan', u'decis'] [u'mix', u'weather', u'busselton', u'ironman'] [u'question', u'health', u'servic', u'vehicl', u'fleet', u'size'] [u'mugab', u'parti', u'win', u'zimbabw', u'upper', u'hous', u'elect'] [u'nelson', u'trust', u'nuclear', u'wast', u'group'] [u'councillor', u'say', u'conflict'] [u'council', u'posit', u'look', u'boost', u'cobar'] [u'hospit', u'manag', u'look', u'challeng'] [u'jail', u'seek', u'staff'] [u'nguyen', u'request', u'execut'] [u'korea', u'demand', u'compens', u'loss', u'reactor'] [u'green', u'secur', u'support', u'desalin', u'inquiri'] [u'liber', u'analys', u'pittwat', u'defeat'] [u'busi', u'confid', u'slip'] [u'govt', u'back', u'push', u'scientif', u'probe'] [u'resid', u'assur', u'high', u'level', u'nuclear', u'wast'] [u'offici', u'ponder', u'australian', u'open', u'date', u'chang'] [u'organis', u'stand', u'schooli', u'strategi'] [u'overpass', u'expect', u'help', u'eas', u'highway', u'woe'] [u'packer', u'deni', u'set', u'onetel', u'busi', u'strategi'] [u'packer', u'face', u'court'] [u'packer', u'nab', u'newspap'] [u'pair', u'accus', u'drug', u'drive'] [u'pair', u'lose', u'council', u'spot'] [u'plead', u'guilti', u'charg', u'travel', u'sick'] [u'paralymp', u'hope', u'head', u'europ'] [u'patrol', u'encourag', u'youth', u'leadership'] [u'plan', u'rfds', u'dubbo', u'expans'] [u'attend', u'cricket', u'despit', u'nguyen', u'execut'] [u'polic', u'attempt', u'high', u'rescu'] [u'polic', u'chief', u'offer', u'patel', u'assur'] [u'polic', u'investig', u'fatal', u'crash'] [u'polic', u'investig', u'fatal', u'crash'] [u'policeman', u'drag'] [u'polic', u'reveal', u'attempt', u'abduct', u'report', u'fals'] [u'polic', u'search', u'widen', u'leagu', u'player'] [u'poor', u'mango', u'harvest', u'prompt', u'warn', u'worker'] [u'premier', u'open', u'north', u'kiama', u'bypass'] [u'probe', u'order', u'student', u'drown', u'school'] [u'protea', u'surpris', u'ganguli', u'absenc'] [u'protest', u'mark', u'resumpt', u'saddam', u'trial'] [u'public', u'invit', u'mental', u'health'] [u'public', u'remand', u'centr', u'locat'] [u'puzzl', u'glitch', u'reason', u'payment'] [u'qanta', u'back', u'airport', u'polic', u'plan'] [u'coalit', u'surviv', u'nat'] [u'opposit', u'parti', u'commit', u'coalit'] [u'prepar', u'drug', u'driver', u'studi'] [u'quak', u'toll', u'wors', u'expert'] [u'rainfal', u'feed', u'sydney', u'dam'] [u'rain', u'help', u'eas', u'threat'] [u'releas', u'turtl', u'healthi', u'dunkin'] [u'report', u'highlight', u'public', u'servic', u'discrep'] [u'road', u'train', u'ignit', u'highway'] [u'saddam', u'trial', u'adjourn', u'decemb'] [u'govt', u'fast', u'track', u'asbesto', u'compo'] [u'scheme', u'offer', u'help', u'boy', u'home', u'survivor'] [u'scientist', u'embrac', u'plan', u'cyberhug'] [u'scrap', u'sedit', u'law', u'senat', u'urg'] [u'senat', u'request', u'welfar', u'work', u'chang'] [u'servic', u'honour', u'plane', u'crash', u'victim'] [u'share', u'market', u'begin', u'week', u'strong'] [u'singleton', u'bash', u'leav', u'hospit'] [u'slight', u'rise', u'octob', u'home', u'sale'] [u'smith', u'fail', u'secur', u'council', u'spot'] [u'speaker', u'debat'] [u'specialist', u'address', u'multipl', u'birth'] [u'staff', u'crisi', u'loom', u'hospit'] [u'john', u'offer', u'surgeri', u'assur'] [u'steal', u'water', u'truck', u'coolgardi'] [u'storm', u'batter', u'north', u'coast'] [u'storm', u'bring', u'damag', u'wind', u'hail'] [u'student', u'energi', u'event'] [u'student', u'reap', u'benefit', u'cultur', u'chang'] [u'surgeon', u'shortag', u'highlight', u'rural', u'threat'] [u'swiss', u'vote', u'crop'] [u'tamworth', u'countrylink', u'job', u'opposit'] [u'teen', u'die', u'injuri', u'hotel', u'attack'] [u'teen', u'hurt', u'polic', u'chase', u'crash'] [u'test', u'reveal', u'super', u'size', u'feral'] [u'thompson', u'sign', u'shark'] [u'briton', u'kill', u'baghdad', u'attack'] [u'tiger', u'rattl', u'late'] [u'tour', u'oper', u'urg', u'region', u'push'] [u'toyn', u'stand', u'prison', u'guard', u'decis'] [u'turin', u'game', u'torch', u'flame'] [u'fijian', u'soldier', u'remov'] [u'uranium', u'motion', u'make', u'debat'] [u'vendi', u'confid', u'retain', u'mayoralti'] [u'victori', u'unit', u'best', u'tribut'] [u'viduka', u'score', u'boro', u'draw'] [u'fee', u'trial', u'test', u'safeti'] [u'wallabi', u'home', u'snowi', u'nation', u'park'] [u'warn', u'report', u'dissent'] [u'warn', u'rip', u'windi'] [u'winemak', u'suspend', u'grape', u'suppli', u'contract'] [u'winton', u'pleas', u'film', u'award', u'recognit'] [u'woodsid', u'look', u'australian', u'bight'] [u'work', u'ensur', u'highway', u'upgrad', u'preserv', u'water'] [u'australian', u'age'] [u'abar', u'rais', u'crop', u'forecast'] [u'abort', u'pill', u'debat', u'continu'] [u'sexual', u'assault', u'polici', u'criticis'] [u'question', u'accus', u'paedophil', u'bail'] [u'albani', u'waterfront', u'develop', u'plan', u'revis'] [u'alleg', u'briberi', u'probe', u'thorough', u'polic', u'chief'] [u'allenbi', u'play', u'championship'] [u'urg', u'nation', u'approach', u'health'] [u'antisoci', u'behaviour', u'consult', u'slam'] [u'arm', u'robberi', u'increas', u'caus', u'concern'] [u'refus', u'rule', u'coach', u'chang'] [u'australia', u'complet', u'crush', u'seri', u'sweep'] [u'australia', u'near', u'crush', u'seri', u'sweep'] [u'author', u'investig', u'train', u'derail'] [u'author', u'probe', u'boat', u'strand'] [u'author', u'question', u'fijian', u'soldier'] [u'ballarat', u'staff', u'vote', u'offer'] [u'bash', u'victim', u'succumb', u'injuri'] [u'bashir', u'lawyer', u'demand', u'case', u'review'] [u'bayley', u'mear', u'head', u'world', u'team'] [u'beatti', u'wont', u'rush', u'cypress', u'pine', u'decis'] [u'beckham', u'launch', u'london', u'academi'] [u'best', u'funer', u'belfast', u'parliament'] [u'best', u'honour', u'stadium'] [u'censur', u'council', u'general', u'manag', u'fail'] [u'bigger', u'better', u'australian', u'astronom'] [u'bike', u'ride', u'continu', u'despit', u'death'] [u'bishop', u'condemn', u'singapor', u'execut'] [u'blair', u'deni', u'knowledg', u'jazeera', u'bomb', u'plan'] [u'blue', u'bull', u'play', u'draw'] [u'bomber', u'target', u'bangladesh', u'court'] [u'boulder', u'wast', u'pond', u'undergo', u'inspect'] [u'brack', u'talk', u'golden', u'opportun', u'ballarat'] [u'britain', u'face', u'tube', u'shoot', u'investig'] [u'british', u'featur', u'region'] [u'burk', u'water', u'bottl', u'sell'] [u'bushfir', u'inquiri', u'hear', u'radio', u'network', u'collaps'] [u'bushfir', u'caus', u'port', u'lincoln', u'hous', u'crisi'] [u'compani', u'face', u'train', u'levi'] [u'camporeal', u'nomin', u'preseason', u'draft'] [u'canadian', u'govt', u'toppl', u'confid', u'vote'] [u'crash', u'victim', u'take', u'drug'] [u'centrelink', u'review', u'lead', u'benefit', u'reduct'] [u'worker', u'accus', u'light', u'fire'] [u'chelsea', u'appeal', u'troubl', u'fine'] [u'cherri', u'varieti', u'caus', u'headach', u'grower'] [u'claim', u'gunn', u'overload', u'truck'] [u'claim', u'minist', u'legal', u'threat', u'radio'] [u'climat', u'confer', u'discuss', u'post', u'kyoto', u'target'] [u'coalit', u'invit', u'medic', u'brief'] [u'commentari', u'highlight', u'adelaid'] [u'compani', u'begin', u'exploratori', u'coal', u'seam', u'drill'] [u'concern', u'mount', u'lack', u'women', u'refug'] [u'cooper', u'upbeat', u'despit', u'takeov', u'battl'] [u'council', u'approv', u'develop'] [u'councillor', u'pay', u'perform', u'event', u'inquiri'] [u'croc', u'elud', u'searcher'] [u'crop', u'recov', u'despit', u'late', u'plant'] [u'cruis', u'ship', u'tourist', u'number', u'manag', u'wriedt'] [u'urg', u'continu', u'product'] [u'cyclist', u'await', u'compens', u'train', u'crash'] [u'unearth', u'histori', u'femal', u'convict'] [u'downer', u'condemn', u'zimbabw', u'poll'] [u'dravid', u'earn', u'india', u'draw', u'seri'] [u'driver', u'warn', u'high', u'wind', u'danger'] [u'drug', u'traffic', u'deserv', u'death', u'penalti', u'singapor'] [u'employ', u'favour', u'univers', u'graduat', u'report'] [u'england', u'player', u'greedi', u'beckham'] [u'worsley', u'alumina', u'decis'] [u'execution', u'hop', u'call', u'nguyen'] [u'execution', u'prepar', u'hang', u'nguyen'] [u'expert', u'seek', u'stop', u'diminish', u'tree', u'kangaroo'] [u'fall', u'tree', u'crush', u'kalorama', u'hous'] [u'famili', u'name', u'releas', u'horrif', u'crash'] [u'farmer', u'welcom', u'sensat', u'rain'] [u'west', u'record', u'drop', u'violent', u'crime'] [u'fatigu', u'issu', u'fatal', u'crash'] [u'fight', u'continu', u'milk', u'price', u'negoti'] [u'scare', u'prompt', u'shop', u'centr', u'evacu'] [u'fisheri', u'minist', u'reject', u'katter', u'fish'] [u'footi', u'leagu', u'season'] [u'forc', u'secur', u'staniforth', u'servic'] [u'condemn', u'nguyen', u'execut'] [u'charg', u'attempt', u'home', u'invas'] [u'jubil', u'australian', u'speak', u'grandstand'] [u'fremantl', u'firm', u'take', u'north', u'west', u'ship'] [u'french', u'consid', u'extra', u'game', u'wallabi'] [u'fresh', u'advic', u'save', u'nguyen', u'consid', u'ruddock'] [u'fresh', u'storm', u'appl', u'grower', u'worri'] [u'fuel', u'cost', u'prompt', u'region', u'busi', u'concern'] [u'game', u'maker', u'parent', u'control', u'content'] [u'glasson', u'head', u'newli', u'form', u'cancer', u'australia'] [u'lite', u'scientist', u'har', u'plant', u'defenc', u'mechan'] [u'govt', u'ask', u'gungahlin', u'drive', u'explain'] [u'govt', u'exploit', u'terror', u'fear', u'fraser', u'say'] [u'govt', u'get', u'expans', u'plan', u'recommend'] [u'govt', u'reject', u'busi', u'report', u'claim'] [u'govt', u'stand', u'sedit', u'claus'] [u'govt', u'intersect', u'safeti', u'advic'] [u'green', u'firm', u'parti', u'structur'] [u'group', u'fear', u'anim', u'caravan', u'park', u'tree'] [u'gympi', u'accus', u'coalit', u'vicious', u'campaign'] [u'hackett', u'jone', u'world'] [u'hardi', u'agreement', u'asbesto', u'compens'] [u'heart', u'patient', u'hospit', u'visit'] [u'hepburn', u'councillor', u'death', u'shock', u'council'] [u'hockeyroo', u'unbeaten', u'champion', u'trophi'] [u'hospit', u'care', u'scrutini', u'teen', u'die'] [u'hospit', u'patient', u'continu', u'test', u'cross'] [u'hospit', u'danger', u'travel'] [u'hotter', u'temperatur', u'forecast', u'mackay'] [u'hous', u'figur', u'mix', u'south', u'east'] [u'hous', u'retail', u'drag', u'market'] [u'hunter', u'record', u'fewer', u'break', u'enter'] [u'didnt', u'kill', u'falconio', u'murdoch', u'testifi'] [u'iemma', u'highlight', u'fall', u'kiama', u'crime', u'rate'] [u'independ', u'question', u'mitsubishi', u'viabil'] [u'indigen', u'life', u'expect', u'continu'] [u'indonesian', u'presid', u'remov', u'expert'] [u'iron', u'plan', u'appeal', u'hear'] [u'italian', u'footbal', u'unit', u'racism'] [u'jam', u'hardi', u'compo', u'deal', u'reach'] [u'expert', u'question', u'expuls', u'indonesia'] [u'jone', u'keen', u'wallabi'] [u'joyc', u'examin', u'union', u'payrol', u'fear'] [u'polit', u'abort', u'debat'] [u'larger', u'feder', u'court', u'role'] [u'launceston', u'forum', u'focus', u'health', u'research'] [u'legal', u'profess', u'challeng', u'address', u'women', u'need'] [u'lennon', u'consid', u'terror', u'law', u'delay'] [u'lesli', u'judg', u'investig'] [u'nguyen', u'australia', u'ask'] [u'life', u'jacket', u'compulsori', u'boat', u'user'] [u'local', u'staff', u'join', u'bird', u'exercis'] [u'lower', u'hous', u'approv', u'anti', u'terror'] [u'face', u'wyee', u'murder', u'charg', u'get', u'bail'] [u'mayor', u'play', u'pool', u'shade', u'concern'] [u'meet', u'focus', u'crown', u'land', u'manag'] [u'minist', u'promis', u'plan', u'consult'] [u'mitsubish', u'attack', u'damag', u'sale', u'claim'] [u'unhappi', u'women', u'elect', u'land', u'council'] [u'monkey', u'accent', u'research'] [u'cadet', u'ambul', u'skill', u'train'] [u'young', u'women', u'drug', u'drug'] [u'mother', u'say', u'compens', u'injur', u'cyclist'] [u'mottram', u'track', u'comm', u'game'] [u'happi', u'public', u'fuel', u'price', u'probe', u'input'] [u'urg', u'burn', u'clarif'] [u'urg', u'help', u'hail', u'affect', u'farmer'] [u'murdoch', u'press', u'falconio', u'disappear'] [u'murdoch', u'take', u'stand'] [u'murray', u'darl', u'predict', u'loss', u'feder'] [u'nation', u'maintain', u'western', u'chopper', u'push'] [u'deni', u'stifl', u'pierc', u'creek', u'debat'] [u'job', u'go', u'graduat', u'studi'] [u'swim', u'safeti', u'altern', u'expect', u'benefit'] [u'water', u'park', u'plan', u'coomera'] [u'nguyen', u'accept', u'fate'] [u'nguyen', u'respect', u'pay', u'privat', u'beatti'] [u'delay', u'gunghalin', u'drive', u'project', u'hargreav'] [u'need', u'delay', u'customari', u'carney'] [u'north', u'coast', u'sugar', u'industri', u'benefit'] [u'nrma', u'deni', u'quot', u'risk', u'live'] [u'nrma', u'repair', u'jeopardis', u'man', u'life'] [u'govt', u'keep', u'pressur', u'hardi'] [u'resid', u'lead', u'solar', u'energi'] [u'pakistan', u'bowl', u'review'] [u'pakistan', u'strike', u'england'] [u'pcyc', u'benefit', u'cloncurri', u'youth'] [u'penni', u'quit', u'injuri', u'battl'] [u'pike', u'pressur', u'deliv', u'rochest', u'hospit'] [u'pilgrim', u'kill', u'iraq', u'attack'] [u'support', u'abort', u'pill', u'conscienc', u'vote'] [u'pneumonia', u'hit', u'pakistan', u'quak', u'survivor'] [u'pont', u'call', u'umpir', u'instead'] [u'premier', u'urg', u'resolv', u'disput'] [u'probe', u'troubl', u'landmark', u'asteroid', u'mission'] [u'project', u'offic', u'help', u'resettl', u'irrkerlanty'] [u'propos', u'investig', u'combin', u'road', u'rail'] [u'racq', u'back', u'drug', u'driver', u'test'] [u'board', u'appointe', u'clear', u'disput', u'costello'] [u'board', u'appoint', u'question'] [u'board', u'appoint'] [u'redback', u'claim', u'second', u'straight'] [u'reef', u'pest', u'prove', u'problemat', u'dive', u'firm'] [u'remot', u'fire', u'control'] [u'report', u'recommend', u'tackl', u'feral', u'pest', u'issu'] [u'retail', u'back', u'park', u'plan'] [u'ring', u'road', u'plan', u'spark', u'mix', u'reaction'] [u'ruddock', u'stand', u'firm', u'sedit', u'provis'] [u'russia', u'move', u'secur', u'water', u'suppli', u'toxic'] [u'ryan', u'maintain', u'highway', u'overtak'] [u'scholarship', u'recognis', u'student', u'hard', u'work'] [u'school', u'student', u'gather', u'mount'] [u'senat', u'committe', u'back', u'nuclear', u'wast', u'dump'] [u'shark', u'fish', u'scrutini'] [u'slater', u'stake', u'case', u'clark'] [u'slimi', u'food', u'biggest', u'turn', u'studi'] [u'smith', u'doubt', u'australian', u'tour'] [u'spain', u'sign', u'arm', u'deal', u'venezuela', u'despit'] [u'springborg', u'urg', u'probe', u'disput'] [u'state', u'urg', u'step', u'feral', u'anim', u'control'] [u'statist', u'highlight', u'fewer', u'local', u'assault'] [u'stem', u'cell', u'abl', u'repair', u'damag', u'heart', u'muscl'] [u'georg', u'bank', u'custom', u'urg', u'check', u'account'] [u'strong', u'christma', u'sale', u'predict', u'break', u'hill'] [u'survey', u'reveal', u'busi', u'optim'] [u'suspend', u'secretari'] [u'tasmanian', u'advoc', u'fear', u'aid', u'patient', u'increas'] [u'tasmanian', u'institut', u'seek', u'support', u'affili'] [u'tiger', u'hope', u'victori'] [u'union', u'fight', u'focus', u'famili'] [u'lawmak', u'resign', u'bribe', u'admiss'] [u'pharmaceut', u'giant', u'job'] [u'slam', u'burma', u'extend', u'kyi', u'detent'] [u'vatican', u'stand', u'firm', u'priesthood'] [u'victorian', u'liber', u'expel', u'olexand'] [u'victoria', u'squar', u'shoot', u'charg', u'drop'] [u'victori', u'formal', u'say', u'warn'] [u'howard', u'christma', u'agenda'] [u'warn', u'clear', u'dissent'] [u'warn', u'deni', u'aussi', u'appeal'] [u'wattl', u'eucalypt', u'promis', u'salin', u'trial'] [u'welsh', u'rugbi', u'union', u'victori', u'bittersweet'] [u'welsh', u'rugbi', u'union', u'victori', u'bittersweet', u'cockbain'] [u'western', u'divis', u'continu', u'drought'] [u'white', u'hous', u'lawyer', u'saddam'] [u'widespread', u'sell', u'forc', u'market', u'lower'] [u'wild', u'storm', u'lash', u'south', u'east'] [u'wimmera', u'manufactur', u'rais', u'profil'] [u'wine', u'compani', u'grower', u'simmer'] [u'woolsh', u'street', u'work', u'near', u'complet'] [u'dead', u'injur', u'bangladesh', u'suicid', u'bomb'] [u'accus', u'deni', u'wrap', u'falconio', u'head', u'jacket'] [u'accus', u'plod', u'broom', u'falconio'] [u'hospit', u'wait', u'list', u'show', u'small', u'rise'] [u'allenbi', u'bother', u'hand', u'injuri'] [u'specul', u'western', u'seat', u'loss'] [u'amnesti', u'deni', u'glorifi', u'nguyen'] [u'analysi', u'begin', u'whale', u'migrat', u'survey'] [u'analyst', u'hop', u'gold', u'hike', u'boost', u'explor'] [u'anti', u'terror', u'law', u'withdraw', u'fail'] [u'archbishop', u'air', u'worri'] [u'asbesto', u'compo', u'celebr', u'hold', u'document'] [u'drop', u'despit', u'strong', u'start'] [u'aust', u'contribut', u'help', u'fund', u'million'] [u'australia', u'maintain', u'credit', u'rat'] [u'australian', u'arrest', u'mauritius', u'stay', u'jail'] [u'author', u'investig', u'port', u'phillip', u'prison', u'death'] [u'award', u'honour', u'braveri'] [u'flystrik', u'season', u'ahead', u'warn', u'rspca'] [u'benitez', u'hop', u'world', u'spur', u'harri'] [u'beslan', u'report', u'criticis', u'rescu', u'oper'] [u'deliv', u'high', u'school', u'comput', u'scholarship'] [u'cheer'] [u'die', u'caravan', u'blaze'] [u'brack', u'predict', u'littl', u'chang', u'ballarat'] [u'bush', u'fli', u'descend', u'adelaid'] [u'busi', u'growth', u'offset', u'soft', u'hous', u'demand'] [u'sunset', u'claus', u'asio', u'detent', u'power'] [u'canadian', u'announc', u'elect', u'date'] [u'canberra', u'dancer', u'win', u'award'] [u'candlelight', u'vigil', u'mark', u'protest', u'nguyen'] [u'carbon', u'trade', u'see', u'earner', u'farmer'] [u'member', u'evid', u'bushfir'] [u'cheat', u'sheet', u'leak', u'rais', u'budget', u'concern'] [u'citrus', u'packer', u'seek', u'govt', u'help', u'cover', u'fail'] [u'citrus', u'tree', u'destruct', u'near'] [u'probe', u'tell', u'rat', u'discount', u'shouldnt'] [u'coalit', u'meet', u'counter', u'terror', u'law'] [u'coalit', u'approv', u'chang', u'trio', u'bill'] [u'commission', u'hand', u'hospit', u'report'] [u'communic', u'unit', u'call', u'shot', u'labor'] [u'contract', u'spark', u'summer', u'health', u'woe'] [u'corrupt', u'mismanag', u'ruin', u'nauru', u'presid'] [u'costello', u'stand', u'appoint', u'gerard'] [u'costello', u'stand', u'firm', u'appoint'] [u'costner', u'sue', u'alleg', u'breach', u'movi', u'contract'] [u'council', u'boost', u'indigen', u'reconcili', u'effort'] [u'councillor', u'death', u'spark', u'elect'] [u'council', u'pave', u'visitor', u'centr'] [u'council', u'seek', u'work', u'newcastl', u'west', u'build'] [u'council', u'warn', u'road', u'fatal', u'prosecut'] [u'countrylink', u'staff', u'face', u'uncertain', u'futur'] [u'decis', u'dairi', u'futur'] [u'demand', u'soar', u'organ', u'chicken', u'meat'] [u'doctor', u'leav', u'condobolin', u'hunter', u'post'] [u'dokic', u'canberra', u'return'] [u'doncast', u'stun', u'villa', u'reach', u'leagu', u'quarter'] [u'dozen', u'kill', u'train', u'accid', u'congo'] [u'drought', u'extend', u'farmer'] [u'email', u'critic', u'bushfir', u'action', u'say'] [u'timor', u'say', u'wont', u'seek', u'compo', u'indonesian'] [u'servicemen', u'commemor', u'recruit', u'march'] [u'falconio', u'accus', u'address', u'evid'] [u'famili', u'senat', u'vote', u'chang'] [u'farm', u'group', u'highlight', u'drought', u'shortcom'] [u'fiji', u'reject', u'coup', u'prosper', u'say', u'ambassador'] [u'fish', u'group', u'support', u'coastguard', u'plan'] [u'fmit', u'fear', u'conflict', u'plan', u'chang'] [u'health', u'minist', u'patel'] [u'nation', u'park', u'offic', u'clear', u'thredbo'] [u'neighbour', u'actor', u'win', u'compens'] [u'fund', u'inject', u'health'] [u'crop', u'failur', u'warn', u'say', u'advis'] [u'govt', u'announc', u'indigen', u'hous', u'upgrad'] [u'govt', u'announc', u'share', u'respons'] [u'govt', u'ask', u'help', u'subsidis', u'life', u'jacket', u'cost'] [u'govt', u'breach', u'detent', u'agreement'] [u'govt', u'nguyen', u'fraser'] [u'govt', u'offer', u'opal', u'prospect', u'assur'] [u'govt', u'process', u'criticis', u'dump', u'decis'] [u'gower', u'back', u'kangaroo', u'coach', u'bennett'] [u'gower', u'defend', u'kangaroo', u'coach', u'bennett'] [u'green', u'group', u'urg', u'self', u'sustain', u'water', u'park'] [u'grinham', u'make', u'strong', u'start', u'hong', u'kong'] [u'group', u'establish', u'afford', u'hous', u'strategi'] [u'guilti', u'verdict', u'swansea', u'murder', u'trial'] [u'gunmen', u'kill', u'iraq', u'minibus', u'attack'] [u'gunn', u'govt', u'reject', u'truck', u'overload', u'claim'] [u'hardi', u'deal', u'hang', u'compo', u'break'] [u'hensbi', u'put', u'norman', u'controversi'] [u'hingi', u'offer', u'open', u'wildcard'] [u'hingi', u'comeback'] [u'homeless', u'rise'] [u'hospit', u'begin', u'screen', u'discoveri'] [u'hospit', u'escap', u'doctor', u'exodus', u'minist'] [u'iemma', u'announc', u'marin', u'park'] [u'immigr', u'look', u'deport', u'man', u'case'] [u'increas', u'video', u'surveil', u'like', u'french'] [u'indigen', u'maintain', u'customari', u'status'] [u'indigen', u'urg', u'reject', u'learn', u'centr'] [u'indonesian', u'death', u'prompt', u'bird', u'readi', u'fear'] [u'indonesia', u'presid', u'overturn', u'terror', u'expert'] [u'injur', u'smith', u'tour', u'australia'] [u'inquiri', u'call', u'dump', u'nation', u'sport', u'wrap'] [u'interst', u'migrat', u'popul', u'growth'] [u'interst', u'schooli', u'arriv', u'gold', u'coast'] [u'worker', u'sale', u'brief'] [u'jobless', u'rate', u'continu', u'declin'] [u'joyc', u'confid', u'concern', u'address'] [u'joyc', u'warn', u'cross', u'floor'] [u'judg', u'speak', u'nguyen', u'execut'] [u'kidnap', u'activist', u'show', u'jazeera', u'broadcast'] [u'label', u'campaign', u'fail', u'group'] [u'labor', u'maintain', u'pressur', u'appoint'] [u'lara', u'eye', u'bradman', u'record'] [u'shack', u'debat'] [u'societi', u'criticis', u'anti', u'terror'] [u'nguyen', u'lawyer'] [u'liber', u'blast', u'welfar', u'work', u'law'] [u'liber', u'stir', u'blame', u'prison', u'delay'] [u'liber', u'issu', u'fraser', u'statement'] [u'littl', u'chanc', u'repriev', u'nguyen', u'lawyer'] [u'rank', u'offic', u'blame', u'defenc', u'bulli'] [u'maloney', u'quit', u'vlga', u'chief'] [u'acquit', u'wife', u'murder', u'retrial'] [u'face', u'court', u'accus', u'child', u'assault'] [u'face', u'court', u'highway', u'incid'] [u'mcgradi', u'unveil', u'tsunami', u'memori'] [u'meatwork', u'end', u'worker', u'accept', u'deal'] [u'meet', u'focus', u'stawel', u'polic', u'shortag'] [u'melbourn', u'council', u'defend', u'park', u'rise'] [u'north', u'coast', u'marin', u'park'] [u'miner', u'make', u'sharehold', u'offer'] [u'minist', u'back', u'cape', u'york', u'communiti', u'bank'] [u'minist', u'outlin', u'coast', u'road', u'fund'] [u'minist', u'reject', u'apprentic', u'poach', u'levi'] [u'mislead', u'minist', u'deserv', u'sack', u'patel'] [u'civic', u'centr', u'fund', u'wont', u'affect', u'council'] [u'boost', u'fund', u'close', u'school'] [u'music', u'teacher', u'reach', u'high', u'note', u'award'] [u'chang', u'ultim', u'council', u'decis'] [u'nation', u'fund', u'moot', u'tackl', u'pest', u'anim'] [u'law', u'target', u'fine', u'default'] [u'mayor', u'ponder', u'fund'] [u'studio', u'expect', u'boost', u'product'] [u'chang', u'defenc', u'bulli', u'cultur', u'labor'] [u'death', u'repriev', u'nguyen', u'singapor', u'say'] [u'loung', u'ninth', u'time'] [u'govt', u'accus', u'secret', u'snowi', u'scheme', u'sale', u'plan'] [u'green', u'support', u'environ', u'packag'] [u'spend', u'environ'] [u'oceania', u'alter', u'format', u'world', u'qualifi'] [u'map', u'emerg', u'crew', u'send', u'wrong', u'suburb'] [u'dayer', u'upset', u'aussi', u'rhythm', u'pont'] [u'opposit', u'target', u'costello', u'appoint'] [u'origin', u'shadow', u'drummer', u'die'] [u'outdat', u'map', u'place', u'live', u'risk', u'opposit'] [u'packer', u'consult', u'onetel', u'move'] [u'pair', u'charg', u'shoot', u'kidnap'] [u'pakistan', u'inning', u'rescu', u'poor', u'start'] [u'pakistan', u'england', u'solid', u'start'] [u'park', u'victoria', u'investig', u'starv', u'koala'] [u'parliament', u'hear', u'liquor', u'licens', u'polici', u'chang'] [u'parliament', u'weigh', u'child', u'labour', u'law'] [u'parmalat', u'boost', u'payment', u'dairi', u'produc'] [u'pension', u'report', u'recommend', u'briton', u'work', u'longer'] [u'polic', u'question', u'employe', u'massiv', u'bank', u'raid'] [u'polic', u'work', u'year', u'secur', u'plan'] [u'pont', u'back', u'dizzi', u'test', u'return'] [u'priest', u'call', u'death', u'penalti', u'worldwid'] [u'prison', u'guard', u'walk', u'free', u'hospit', u'shoot'] [u'prison', u'worker', u'recognis', u'post', u'sieg', u'effort'] [u'privaci', u'offic', u'pull', u'field', u'day'] [u'profit', u'slight', u'renmark', u'club'] [u'public', u'urg', u'prepar', u'bushfir', u'season'] [u'ranger', u'slam', u'door', u'portsmouth', u'mcleish'] [u'rat', u'payback', u'worri', u'council'] [u'region', u'etsa', u'custom', u'urg', u'report', u'power', u'woe'] [u'report', u'highlight', u'fall', u'crime', u'rate'] [u'report', u'recommend', u'patel', u'manslaught', u'charg'] [u'report', u'show', u'women', u'work', u'forc'] [u'research', u'cast', u'doubt', u'water', u'save', u'weed'] [u'resid', u'lobbi', u'road', u'seal'] [u'resid', u'push', u'intersect', u'upgrad'] [u'retail', u'figur', u'patchi', u'recoveri'] [u'rigg', u'rule', u'vendi', u'mayor', u'challeng'] [u'road', u'fund', u'littl', u'late', u'mayor'] [u'robert', u'offic', u'reject', u'unfair', u'dismiss', u'claim'] [u'roma', u'feel', u'skill', u'shortag'] [u'rural', u'doctor', u'present', u'support', u'plan'] [u'introduc', u'tougher', u'aggrav', u'drive', u'penalti'] [u'uni', u'criticis', u'govt', u'unfair', u'rank'] [u'scullion', u'vote', u'nuclear', u'wast', u'dump'] [u'shire', u'join', u'push', u'reduc', u'child', u'obes'] [u'simplot', u'worker', u'face', u'redund'] [u'socceroo', u'turf', u'preserv', u'display'] [u'kyoto', u'agreement', u'unlik', u'convent'] [u'specul', u'minist', u'barl', u'beach'] [u'strong', u'sale', u'shift', u'apricot', u'backlog'] [u'student', u'kick', u'goal', u'footi', u'academi', u'select'] [u'studi', u'find', u'jellyfish', u'river', u'system'] [u'studi', u'find', u'small', u'gender', u'differ', u'academ'] [u'sunflow', u'hous', u'ask', u'fund', u'submiss'] [u'east', u'coast', u'log', u'ahead'] [u'stop', u'corpor', u'defam', u'suit'] [u'teacher', u'know', u'student', u'wrong'] [u'telstra', u'offer', u'farmer', u'phone', u'assur'] [u'test', u'confirm', u'plant', u'opium', u'poppi'] [u'thompson', u'track', u'game', u'return'] [u'thousand', u'tip', u'watch', u'barbara', u'mine', u'parad'] [u'tiger', u'deliv', u'warrior', u'fourth', u'straight', u'defeat'] [u'time', u'limit', u'urg', u'question', u'time', u'answer'] [u'toll', u'moot', u'speed', u'highway', u'upgrad'] [u'torr', u'strait', u'cultur', u'featur', u'nation', u'museum'] [u'tourism', u'project', u'plan', u'move', u'ahead'] [u'court', u'jazeera', u'bomb', u'leak'] [u'consid', u'nuclear', u'power', u'station'] [u'union', u'consid', u'airlin', u'action', u'nguyen'] [u'boost', u'gambier', u'presenc'] [u'union', u'face', u'offic', u'lockout'] [u'upgrad', u'plan', u'intersect', u'black', u'spot'] [u'market', u'recov', u'grind'] [u'util', u'complaint', u'jump', u'percent'] [u'virginia', u'governor', u'stop', u'mileston', u'execut'] [u'wad', u'bird', u'interfer', u'plant'] [u'farmer', u'lead', u'stat'] [u'pass', u'counter', u'terror', u'law'] [u'cane', u'toad', u'hunter', u'cross', u'border', u'train'] [u'wasim', u'criticis', u'chuck', u'law'] [u'weather', u'help', u'lift', u'winter', u'crop'] [u'welfar', u'report', u'highlight', u'famili', u'children', u'need'] [u'white', u'clear', u'dissent'] [u'wildcat', u'roger', u'add', u'boomer', u'squad'] [u'wine', u'compani', u'highlight', u'sell', u'benefit'] [u'winter', u'crop', u'boost', u'predict'] [u'wollongong', u'volunt', u'help', u'tsunami', u'homeless'] [u'woman', u'accus', u'sword', u'wield', u'phone', u'theft'] [u'woman', u'hurt', u'crash'] [u'scoop', u'walkley', u'award'] [u'activist', u'group', u'blame', u'occup', u'iraq'] [u'offer', u'evan', u'tate', u'sharehold', u'littl'] [u'aid', u'expert', u'report', u'progress', u'vaccin'] [u'foreshadow', u'program', u'cut'] [u'allenbi', u'shoot', u'pace'] [u'evid', u'tender', u'falconio', u'case'] [u'seek', u'effort', u'combat', u'defenc', u'forc', u'abus'] [u'urg', u'commonwealth', u'region', u'invest'] [u'antisoci', u'behaviour', u'law', u'legal', u'challeng'] [u'anti', u'terror', u'law', u'debat', u'legisl'] [u'australian', u'famili', u'year', u'honour', u'sale', u'clan'] [u'australia', u'wari', u'tormentor', u'bond'] [u'bennett', u'avoid', u'scrutini', u'kangaroo', u'arriv', u'home'] [u'bennett', u'escap', u'censur', u'media', u'dodg'] [u'best', u'receiv', u'royal', u'send'] [u'search', u'plan', u'miss', u'teen'] [u'bird', u'exercis', u'expos', u'prepar', u'flaw'] [u'birney', u'explain', u'share', u'disclosur', u'parliament'] [u'blade', u'allow', u'pompey', u'speak', u'warnock'] [u'blaze', u'rip', u'tumbarumba', u'shop'] [u'brindal', u'accus', u'lover', u'carer'] [u'break', u'hill', u'count', u'newspap'] [u'busi', u'chamber', u'want', u'violent', u'crime', u'crackdown'] [u'canberra', u'sombr', u'mood', u'prior', u'nguyen', u'execut'] [u'case', u'drop', u'milan', u'doctor'] [u'chang', u'approv', u'counter', u'terror', u'bill'] [u'channel', u'seven', u'drop', u'case'] [u'childcar', u'benefit', u'increas', u'worker'] [u'clean', u'storm'] [u'committe', u'probe', u'birney', u'share', u'disclosur'] [u'communiti', u'group', u'happi', u'road', u'regul'] [u'coonan', u'urg', u'telstra', u'rule'] [u'costello', u'escap', u'censur', u'gerard'] [u'councillor', u'report', u'seek', u'expens'] [u'council', u'maintain', u'weekend', u'park', u'polici'] [u'council', u'put', u'brake', u'skateboard'] [u'council', u'releas', u'subdivis', u'block'] [u'council', u'donat', u'flood', u'appeal'] [u'council', u'seek', u'cost', u'water', u'suppli', u'plan'] [u'council', u'govt', u'know', u'dive', u'concern'] [u'council', u'turn', u'attent', u'anthoni', u'cut'] [u'extend', u'fever', u'vaccin', u'suppli'] [u'depart', u'govt', u'advis', u'abandon'] [u'develop', u'seek', u'subdivis', u'north', u'orang'] [u'doctor', u'group', u'hop', u'better', u'specialist'] [u'domest', u'violenc', u'prevent', u'group', u'highlight'] [u'dope', u'victim', u'lagat', u'appeal', u'lose', u'earn'] [u'refus', u'seek', u'nguyen', u'extradit'] [u'wont', u'appeal', u'murder', u'acquitt'] [u'ban', u'corpor', u'manag'] [u'elder', u'appeal', u'court', u'nativ', u'titl'] [u'empir', u'rubber', u'sale', u'job'] [u'england', u'face', u'test', u'seri', u'defeat', u'say', u'fletcher'] [u'europ', u'warm', u'current', u'weaken', u'scientist'] [u'extradit', u'offer', u'nguyen', u'chanc'] [u'farmer', u'tell', u'bushfir', u'communic', u'problem'] [u'firefight', u'hope', u'educ', u'indigen', u'communiti'] [u'firefight', u'tackl', u'rail', u'blaze'] [u'forest', u'allianc', u'applaud', u'wilder'] [u'teacher', u'guilti', u'charg'] [u'fourth', u'face', u'bali', u'bomb', u'charg'] [u'fourth', u'race', u'code', u'pipelin'] [u'fund', u'help', u'celebr', u'cultur', u'divers'] [u'fund', u'help', u'farmer', u'land', u'clear', u'law'] [u'ganguli', u'riddl', u'puzzl', u'india', u'ahead', u'lanka'] [u'gold', u'coast', u'group', u'highlight', u'health', u'report', u'fail'] [u'govt', u'confus', u'prioriti', u'say', u'opposit'] [u'govt', u'cost', u'review', u'delay', u'budget'] [u'govt', u'reaffirm', u'hospit', u'commit'] [u'govt', u'reject', u'freight', u'rail', u'claim'] [u'grain', u'grower', u'blame', u'abb', u'singl', u'desk', u'price'] [u'green', u'tunnel', u'boycott'] [u'green', u'take', u'earli', u'lead'] [u'gregori', u'peck', u'star', u'steal'] [u'grow', u'concern', u'tortur', u'flight'] [u'haas', u'beat', u'africa', u'trade', u'opportun'] [u'hail', u'heavi', u'rain', u'lash', u'northern'] [u'hammer', u'keen'] [u'hardi', u'sign', u'compens', u'deal'] [u'manag', u'back', u'school', u'plan'] [u'hindmarsh', u'mayor', u'make', u'term'] [u'hingi', u'comeback', u'eager', u'anticip'] [u'hingi'] [u'hockeyroo', u'extend', u'unbeaten', u'streak'] [u'hop', u'marin', u'park', u'plan', u'limit', u'aquacultur'] [u'hundr', u'light', u'candl', u'nguyen'] [u'hunter', u'record', u'averag', u'rain'] [u'plan', u'umpir', u'elit', u'panel'] [u'indigen', u'women', u'suscept', u'cervic'] [u'indonesian', u'militari', u'command', u'offer', u'resign'] [u'injuri', u'agoni', u'get', u'owen'] [u'institut', u'forecast', u'chang', u'sunshin', u'coast'] [u'chief', u'hit', u'mercenari', u'athlet'] [u'warn', u'turin', u'brush', u'winter', u'game'] [u'iraqi', u'rebel', u'launch', u'assault', u'ramadi'] [u'debat', u'gag'] [u'jaeger', u'coach', u'lynch', u'show', u'door'] [u'jam', u'hardi', u'hop', u'deal', u'offer', u'comfort'] [u'jam', u'hardi', u'sign', u'compens', u'deal'] [u'joyc', u'taunt', u'save', u'christma', u'claim'] [u'kidman', u'trail', u'robert', u'hollywood', u'earn', u'contest'] [u'kyoto', u'protocol', u'kick'] [u'lacklustr', u'manufactur', u'figur', u'spread', u'christma'] [u'lara', u'like', u'australian', u'swansong'] [u'lara', u'australian', u'swansong'] [u'lawyer', u'refus', u'permiss', u'wit', u'hang'] [u'lennon', u'storm', u'parliament'] [u'life', u'jacket', u'law', u'predict', u'caus', u'border'] [u'lihir', u'share', u'price', u'drop', u'tinto', u'sell'] [u'local', u'brief', u'debat', u'unfair', u'dismiss', u'law'] [u'longest', u'serv', u'magistr', u'retir'] [u'lucki', u'rescu', u'wombat', u'burrow'] [u'accus', u'order', u'teen', u'fund'] [u'arrest', u'attack', u'teen'] [u'front', u'court', u'coral', u'drug', u'haul'] [u'jail', u'spread'] [u'media', u'concern', u'despit', u'anti', u'terror', u'chang'] [u'guilti', u'murder', u'time', u'drug', u'dealer'] [u'miner', u'pleas', u'pilbara', u'gold'] [u'minist', u'apologis', u'timber', u'bungl'] [u'minist', u'hit', u'health', u'inquiri', u'find'] [u'minist', u'warn', u'locust', u'plagu', u'spread'] [u'mother', u'accus', u'tri', u'smother', u'daughter'] [u'maintain', u'highway', u'plan', u'opposit'] [u'question', u'marin', u'park', u'plan'] [u'urg', u'south', u'east', u'polic'] [u'nativ', u'titl', u'claim', u'lodg', u'north', u'west', u'queensland'] [u'navi', u'respons', u'whale', u'death'] [u'emerg', u'depart', u'run'] [u'evict', u'rule', u'roll', u'anti', u'social'] [u'law', u'communiti', u'safer', u'henderson'] [u'pilotless', u'aircraft', u'research', u'centr', u'open'] [u'south', u'east', u'mayor', u'announc'] [u'nguyen', u'execut', u'certain'] [u'nguyen', u'lawyer', u'push', u'minut', u'plea'] [u'nguyen', u'permit', u'hold', u'hand', u'mother'] [u'nguyen', u'permit', u'hold', u'mother', u'hand'] [u'extra', u'dental', u'fund', u'anti', u'fluorid'] [u'proof', u'cane', u'toad', u'impact', u'expert'] [u'runner', u'stair', u'crazi'] [u'nude', u'beach', u'plan', u'away', u'communiti', u'object'] [u'kill', u'bangladesh', u'bomb'] [u'pakistan', u'chief', u'call', u'fewer', u'match'] [u'percept', u'inform', u'teen', u'bing', u'drink'] [u'petit', u'call', u'life', u'jacket', u'law', u'rethink'] [u'petrol', u'station', u'fin', u'price', u'fix'] [u'face', u'aid', u'epidem', u'downer'] [u'polic', u'track', u'charg', u'patel'] [u'polic', u'probe', u'alburi', u'vandal', u'spree'] [u'polic', u'probe', u'sydney', u'shop', u'centr', u'blaze'] [u'polic', u'focus', u'underag', u'drinker'] [u'politician', u'unit', u'push', u'republ'] [u'poll', u'find', u'support', u'highway', u'toll'] [u'primus', u'move', u'port', u'coach', u'role'] [u'public', u'urg', u'rais', u'portland', u'hospit', u'concern'] [u'quarantin', u'agenc', u'approv', u'appl', u'import'] [u'rail', u'invest', u'hundr', u'truck'] [u'rain', u'forc', u'suspens'] [u'rain', u'caus', u'long', u'noosa', u'road', u'closur'] [u'reef', u'health', u'check', u'get', u'pass', u'mark'] [u'region', u'implic', u'compo', u'packag', u'unclear'] [u'report', u'highlight', u'templ', u'plan', u'econom', u'boost'] [u'rescu', u'group', u'offer', u'dead', u'mutton', u'bird', u'assur'] [u'research', u'shed', u'light', u'turtl', u'breed', u'problem'] [u'resid', u'stamp', u'approv', u'cunnamulla'] [u'resid', u'voic', u'drag', u'concern'] [u'resourc', u'bank', u'push', u'share', u'market', u'lower'] [u'buy', u'dubbo', u'link'] [u'rich', u'secur', u'second', u'mayor', u'term'] [u'riverland', u'saff', u'wine', u'grape', u'meet'] [u'riverland', u'live', u'fossil'] [u'roar', u'slump', u'home', u'draw'] [u'rockhampton', u'fail', u'mention', u'health', u'report'] [u'rural', u'famili', u'lose', u'law', u'say'] [u'approv', u'dust', u'diseas', u'compo', u'law'] [u'scientist', u'question', u'ancient', u'footprint'] [u'scooter', u'user', u'warn', u'rid', u'requir'] [u'sedit', u'chang', u'protect', u'free', u'speech', u'ruddock'] [u'senat', u'pass', u'law', u'tomorrow'] [u'senat', u'frustrat', u'trauma', u'centr', u'delay'] [u'sexsomnia', u'suffer', u'clear', u'rape'] [u'solskjaer', u'career', u'near', u'unit', u'offer'] [u'south', u'african', u'court', u'overturn', u'marriag'] [u'south', u'africa', u'struggl', u'grow', u'aid', u'problem'] [u'southbound', u'swansea', u'bridg', u'stay'] [u'stanhop', u'underestim', u'jail', u'opposit', u'say'] [u'state', u'govt', u'announc', u'north', u'road', u'fund'] [u'storm', u'caus', u'flood', u'southern'] [u'storm', u'flood', u'noosa', u'busi'] [u'storm', u'halt'] [u'striker', u'woe', u'stop', u'red'] [u'surgeri', u'end', u'collymor', u'tour'] [u'symond', u'find', u'test', u'arena'] [u'parliament', u'scuttl', u'marriag'] [u'teen', u'warn', u'dont', u'cook', u'look'] [u'telstra', u'attack', u'restrict', u'regul'] [u'test', u'begin', u'basslink', u'project'] [u'test', u'reveal', u'contamin', u'town'] [u'thorp', u'appeal', u'steal', u'watch', u'return'] [u'thousand', u'cyclist', u'saddl', u'bike', u'ride'] [u'timor', u'border', u'disput', u'settl'] [u'toad', u'invas', u'unstopp', u'ecologist'] [u'tourist', u'disqualifi', u'drive', u'smash'] [u'trade', u'deficit', u'blow'] [u'treasur', u'accus', u'hide', u'fund', u'blowout'] [u'truanci', u'trial', u'target', u'indigen', u'student', u'get'] [u'truck', u'driver', u'blame', u'crash'] [u'trucki', u'urg', u'help', u'solv', u'fatal', u'crash', u'caus'] [u'turkish', u'bring', u'trade', u'mission', u'australia'] [u'union', u'help', u'famili', u'bash', u'girl'] [u'union', u'hop', u'stamp', u'duti', u'deal'] [u'union', u'member', u'face', u'lockout', u'rail', u'disput'] [u'union', u'work', u'forc', u'restructur'] [u'union', u'continu', u'simplot', u'kelso', u'talk'] [u'unit', u'tribut', u'best', u'west', u'brom'] [u'launch', u'massiv', u'appeal'] [u'growth', u'figur', u'fail', u'lift', u'market'] [u'player', u'miss', u'avoid', u'say', u'micheel'] [u'senat', u'ask', u'look', u'awb', u'iraq', u'activ'] [u'vcat', u'call', u'amend', u'hotel', u'plan'] [u'villeneuv', u'stay', u'sauber'] [u'word', u'erupt', u'children', u'commission'] [u'warrior', u'regroup', u'tourist'] [u'water', u'plan', u'critic', u'welcom', u'author', u'report'] [u'weather', u'predict', u'produc', u'stone', u'fruit'] [u'welsh', u'inventor', u'mosquito', u'make', u'noisi', u'teen', u'buzz'] [u'wiggl', u'entertain', u'export', u'award'] [u'wineri', u'move', u'smelli', u'problem'] [u'wit', u'deni', u'murdoch', u'match', u'secur', u'imag'] [u'woman', u'receiv', u'groundbreak', u'face', u'transplant'] [u'zimbabw', u'crisi', u'intern', u'matter'] [u'captain', u'taibu', u'head', u'bangladesh'] [u'say', u'smear', u'campaign', u'hurt', u'financ'] [u'accus', u'remand', u'teen', u'petrol', u'attack'] [u'activist', u'blame', u'homophob', u'stall'] [u'adelaid', u'extend', u'lead'] [u'adelaid', u'lack', u'mental', u'tough'] [u'agassi', u'confirm', u'kooyong', u'classic'] [u'alic', u'seek', u'lure', u'alexand', u'great'] [u'demand', u'sick', u'leav', u'chang'] [u'anti', u'wast', u'dump', u'group', u'open', u'offic'] [u'armi', u'roll', u'summernat'] [u'deni', u'dump', u'jone', u'releas'] [u'asst', u'commission', u'acknowledg', u'stawel', u'polic'] [u'auction', u'price', u'reflect', u'state', u'wool', u'market'] [u'australian', u'protest', u'nguyen', u'execut'] [u'author', u'learn', u'bird', u'exercis'] [u'bali', u'reunit', u'court'] [u'beef', u'properti', u'fetch', u'near'] [u'beethoven', u'manuscript', u'sell', u'near'] [u'benefit', u'see', u'specialist', u'status', u'region'] [u'best', u'goodby', u'kick', u'weekend', u'match'] [u'black', u'cap', u'look', u'aggress', u'overcom', u'australia'] [u'black', u'plead', u'guilti', u'fraud'] [u'blade', u'boss', u'turn', u'pompey'] [u'blaze', u'claim', u'southport', u'hous'] [u'bleiberg', u'posit', u'safe', u'ribot'] [u'bond', u'blow', u'kiwi', u'ahead', u'australia', u'clash'] [u'investig', u'refineri', u'leak'] [u'brief', u'aramac', u'storm', u'caus', u'widespread', u'damag'] [u'build', u'bendigo', u'bank', u'revamp'] [u'bundaberg', u'health', u'boss', u'face', u'misconduct', u'charg'] [u'bundaberg', u'hospit', u'act', u'avoid', u'patel', u'repeat'] [u'bushfir', u'inquest', u'hear', u'evid'] [u'cahil', u'hand', u'game'] [u'candl', u'condemn'] [u'caution', u'urg', u'aborigin', u'sale'] [u'celta', u'arsenal', u'develop', u'young', u'player'] [u'chaotic', u'start', u'west', u'asian', u'game'] [u'chappel', u'hadle', u'seri', u'loom', u'side'] [u'childer', u'inquest', u'resum', u'februari'] [u'china', u'environ', u'minist', u'resign', u'toxic'] [u'church', u'servic', u'hold', u'nguyen'] [u'colleg', u'oper', u'reject', u'financ', u'claim'] [u'compet', u'asia', u'urg', u'athlet'] [u'council', u'flood', u'year'] [u'councillor', u'readi', u'contest', u'mayoralti'] [u'council', u'maintain', u'push', u'princ', u'highway', u'work'] [u'council', u'name', u'area', u'polic'] [u'council', u'seek', u'retir', u'develop', u'law', u'exempt'] [u'council', u'tougher', u'park'] [u'council', u'work', u'chang', u'plan'] [u'counter', u'terror', u'law', u'enact'] [u'court', u'continu', u'terror', u'suspect', u'bail'] [u'award', u'intern', u'student', u'intak'] [u'cricket', u'battl', u'whitti', u'noblet', u'trophi'] [u'croc', u'look', u'consist', u'beat', u'king'] [u'deadlin', u'nguyen', u'execut', u'pass'] [u'demonstr', u'stage', u'independ', u'ralli', u'papua'] [u'air', u'water', u'weed', u'fear'] [u'england', u'face', u'tall', u'order', u'save', u'test'] [u'famili', u'mourn', u'nguyen', u'singapor', u'servic'] [u'famili', u'overwhelm', u'support', u'fatal', u'hous'] [u'farm', u'group', u'look', u'long', u'term', u'fever', u'vaccin'] [u'fifa', u'rule', u'electron', u'ball'] [u'offici', u'charg', u'young', u'firebug'] [u'coach', u'jail', u'sexual', u'abus', u'boy'] [u'schoolteach', u'jail', u'abus'] [u'fraser', u'creat', u'conserv', u'concern'] [u'game', u'baton', u'head', u'antarctica'] [u'ganguli', u'comeback', u'delay', u'rain'] [u'gather', u'promot', u'benefit'] [u'coupl', u'recognit'] [u'gerard', u'quit', u'board'] [u'gold', u'price', u'push', u'higher'] [u'slow', u'convoy', u'deliv', u'highway', u'upgrad', u'concern'] [u'govt', u'back', u'cambewarra', u'scenic', u'preserv', u'area'] [u'govt', u'consid', u'hail', u'help', u'farmer'] [u'govt', u'fund', u'boost', u'youth', u'facil'] [u'govt', u'sign', u'newcastl', u'hospit', u'contract'] [u'govt', u'tell', u'council', u'fail'] [u'govt', u'contract'] [u'govt', u'urg', u'boost', u'hospit', u'bed'] [u'green', u'group', u'back', u'south', u'east', u'forest', u'probe'] [u'green', u'urg', u'environment', u'check'] [u'griffith', u'choos', u'broadband', u'servic'] [u'grinham', u'sister', u'world', u'open', u'semi'] [u'group', u'oppos', u'highway', u'tree', u'remov'] [u'group', u'welcom', u'health', u'servic', u'chang'] [u'hadden', u'say', u'constitu', u'determin', u'seat'] [u'harri', u'hand', u'clive', u'saint'] [u'hearn', u'lake', u'region', u'develop', u'control', u'plan'] [u'hera', u'heavi', u'blow', u'cycl', u'indurain'] [u'histori', u'go', u'nation', u'librari'] [u'hodg', u'debut'] [u'hous', u'price', u'continu', u'declin'] [u'howard', u'criticis', u'clinic', u'singaporean', u'respons'] [u'immigr', u'tactic', u'exploit', u'doctor'] [u'canberra', u'politician', u'support', u'hold', u'vigil'] [u'independ', u'oppos', u'snowi', u'scheme', u'sell'] [u'independ', u'panel', u'review', u'govt', u'health', u'report'] [u'indigen', u'land', u'manag', u'plan', u'launch'] [u'law', u'generat', u'mix', u'feel'] [u'jail', u'term', u'strong', u'messag', u'illeg', u'fisher'] [u'jone', u'sack', u'wallabi', u'coach'] [u'joness', u'fate', u'arus', u'hand'] [u'joness', u'fate', u'hand'] [u'kerr', u'sanchez', u'add', u'pompey', u'list'] [u'labor', u'farewel', u'parti', u'stalwart', u'ducker'] [u'labor', u'push', u'costello', u'jam', u'hardi'] [u'land', u'valuat', u'fair', u'say', u'quinlan'] [u'lawyer', u'proud', u'courag', u'nguyen'] [u'lennon', u'promis', u'probe', u'road', u'work', u'contract'] [u'liber', u'refus', u'vote', u'welfar', u'work'] [u'liber', u'nation', u'rule', u'coalit'] [u'lobster', u'catch', u'disappoint'] [u'loddon', u'shire', u'look', u'appoint', u'soon'] [u'long', u'term', u'solut', u'seek', u'school'] [u'love', u'dreamworld', u'tiger'] [u'maclean', u'clean', u'sever', u'storm'] [u'maclean', u'declar', u'disast', u'area'] [u'accus', u'attempt', u'arm', u'robberi', u'refus', u'bail'] [u'charg', u'fatal', u'traffic', u'crash'] [u'charg', u'teen', u'petrol', u'attack'] [u'clear', u'murder', u'seek', u'compo', u'prison'] [u'face', u'court', u'martial', u'art', u'instructor', u'death'] [u'court', u'petrol', u'attack'] [u'maningrida', u'local', u'illeg', u'barra', u'fish'] [u'kill', u'storm', u'whip', u'canberra'] [u'kill', u'egypt', u'elect', u'violenc'] [u'escap', u'prison', u'term', u'robberi'] [u'face', u'court', u'indec', u'deal', u'charg'] [u'marin', u'park', u'plan', u'see', u'cater', u'fisher'] [u'market', u'follow', u'wall', u'higher'] [u'mayor', u'contest', u'vote', u'despit', u'sack'] [u'mcenro', u'comeback'] [u'mcguigan', u'suspend', u'contract', u'grower'] [u'medic', u'treatment', u'delay', u'solon', u'famili', u'reunion'] [u'group', u'back', u'mine', u'chang'] [u'minist', u'talk', u'fli', u'liquor', u'squad', u'effort'] [u'fund', u'seek', u'transit', u'hous'] [u'motorcyclist', u'kill', u'hunter', u'valley', u'collis'] [u'motorcyclist', u'chariti', u'ride'] [u'attack', u'anti', u'truanci', u'scheme'] [u'murder', u'trial', u'hear', u'teen', u'injuri'] [u'nauru', u'make', u'educ', u'prioriti'] [u'nelsen', u'glad', u'socceroo'] [u'nepal', u'rebel', u'extend', u'truce'] [u'make', u'children', u'safer', u'say', u'minist'] [u'nguyen', u'execut', u'lesson', u'australian', u'say'] [u'nguyen', u'hang', u'singapor'] [u'dead', u'german', u'homeless', u'centr'] [u'elect', u'save', u'shire', u'thousand'] [u'nude', u'paint', u'make', u'wave', u'surf', u'club'] [u'appl', u'lift'] [u'issu', u'threat', u'appl', u'import'] [u'olymp', u'champion', u'face', u'jail', u'term'] [u'opposit', u'boycott', u'silenc', u'nguyen'] [u'opposit', u'highlight', u'hospit', u'wait', u'time', u'woe'] [u'oversea', u'adopt', u'reach', u'record', u'level'] [u'pacif', u'nation', u'train', u'driver', u'cancel', u'plan'] [u'pakistan', u'hockey', u'captain', u'ban', u'hit'] [u'parliament', u'pass', u'chang'] [u'parliament', u'pass', u'jam', u'hardi', u'compo'] [u'parri', u'join', u'swift', u'lead'] [u'pedestrian', u'kill', u'highway'] [u'petrol', u'station', u'leak', u'close', u'highway'] [u'deni', u'gerard', u'push'] [u'toss', u'canberra'] [u'polic', u'look', u'person', u'plane', u'crash'] [u'polic', u'offic', u'guilti', u'sexual', u'assault'] [u'potato', u'farmer', u'peel', u'histor', u'farm'] [u'pricey', u'mango', u'pig', u'town'] [u'prime', u'stand', u'cobar', u'broadcast', u'plan'] [u'prison', u'worker', u'effort', u'recognis'] [u'beat', u'sugar', u'price'] [u'resid', u'count', u'cost', u'violent', u'storm'] [u'resid', u'happi', u'rout'] [u'match', u'link', u'dubbo', u'sydney', u'fare'] [u'riverland', u'crash', u'claim', u'life'] [u'robbin', u'support', u'comeback'] [u'roddick', u'wildcard', u'chanc', u'adelaid'] [u'royal', u'card', u'featur', u'camilla', u'time'] [u'asbesto', u'victim', u'see', u'histor'] [u'scientist', u'cook', u'cure', u'flatul'] [u'scientist', u'ventur', u'nullarbor', u'track', u'meteorit'] [u'secur', u'firm', u'fin', u'thousand', u'guard'] [u'senat', u'pass', u'law'] [u'servic', u'spend', u'say', u'welfar', u'group'] [u'simplot', u'worker', u'offer', u'train'] [u'singaporean', u'rule', u'pardon', u'nguyen'] [u'smoker', u'need', u'appli', u'say'] [u'stakehold', u'chanc', u'water'] [u'statement', u'clarifi', u'joness', u'futur'] [u'storm', u'toll', u'alburi', u'wodonga'] [u'student', u'injur', u'roof', u'collaps'] [u'swift', u'keegan', u'lead', u'rain', u'mar'] [u'sydney', u'hobart', u'entrant'] [u'team', u'effort', u'secur', u'award', u'cowboy'] [u'tension', u'rise', u'egyptian', u'poll'] [u'territorian', u'urg', u'report', u'anim', u'cruelti'] [u'test', u'begin', u'basslink', u'power', u'cabl'] [u'timor', u'deal', u'best', u'agre'] [u'tini', u'bug', u'cancel', u'portland', u'hospit', u'surgeri'] [u'tortur', u'rife', u'china', u'investig'] [u'tourist', u'strip', u'mop', u'storm', u'delug'] [u'town', u'camp', u'children', u'ignor', u'irrkerlanty', u'debat'] [u'townsvill', u'chopper', u'help', u'pakistan', u'quak'] [u'train', u'tackl', u'locust', u'threat'] [u'trauma', u'specialist', u'name', u'south', u'australian'] [u'trochus', u'shell', u'poacher', u'creat', u'worri'] [u'turkey', u'expect', u'sanction', u'swiss', u'match'] [u'turnberri', u'choos', u'british', u'open'] [u'plane', u'crash'] [u'campus', u'plan', u'begin'] [u'union', u'keen', u'settl', u'pacif', u'nation', u'disput'] [u'unit', u'arab', u'emir', u'hold', u'elect'] [u'carri', u'execut'] [u'presid', u'summon', u'juri', u'duti'] [u'vet', u'start', u'industri', u'campaign'] [u'vigil', u'await', u'condemn', u'man', u'execut'] [u'wall', u'ralli', u'inflat', u'fear', u'eas'] [u'support', u'hardi', u'compo', u'deal'] [u'watchdog', u'probe', u'mallard', u'evid', u'claim'] [u'waugh', u'admit', u'prestigi', u'laureus', u'academi'] [u'weather', u'bureau', u'predict', u'averag', u'south', u'east', u'summer'] [u'west', u'brom', u'confirm', u'kean', u'talk'] [u'wheat', u'export', u'fall', u'flex', u'muscl'] [u'white', u'hous', u'probe', u'iraq', u'propaganda', u'claim'] [u'wild', u'storm', u'sweep', u'east', u'coast'] [u'wild', u'weather', u'bring', u'good', u'news', u'farmer'] [u'windi', u'lose', u'rain', u'affect', u'tour', u'match'] [u'windsor', u'criticis', u'irrig', u'compo'] [u'workplac', u'law', u'pass', u'senat'] [u'world', u'finalist', u'decid', u'german', u'base'] [u'kill', u'chines', u'explos'] [u'rule', u'affect', u'counter', u'terror', u'law'] [u'adelaid', u'extend', u'lead'] [u'airlin', u'secur', u'restrict', u'stay'] [u'qaeda', u'command', u'kill', u'pakistan'] [u'aramac', u'storm', u'forc', u'stun', u'minist'] [u'author', u'pool', u'resourc', u'combat', u'problem', u'dog'] [u'bangladesh', u'polic', u'bomb', u'arrest'] [u'bangladesh', u'polic', u'round', u'hundr', u'blast'] [u'belarus', u'pass', u'sedit', u'law'] [u'blewett', u'cosgrov', u'guid', u'redback', u'victori'] [u'bomb', u'kill', u'marin', u'iraq'] [u'breaker', u'post', u'easi'] [u'breakthrough', u'offer', u'hope', u'kidney', u'transplant'] [u'britain', u'call', u'farm', u'subsidi'] [u'burma', u'confirm', u'extend', u'kyi', u'detent'] [u'bushrang', u'restrict', u'despit', u'klinger'] [u'cabomba', u'erad', u'program', u'suspend'] [u'strengthen', u'stanc', u'death', u'penalti'] [u'canberra', u'storm', u'clean', u'day'] [u'cattlebaron', u'kill', u'light', u'plane', u'crash'] [u'cattl', u'baron', u'death', u'mourn'] [u'china', u'toxic', u'spill', u'threaten', u'russia'] [u'chines', u'flood', u'trap'] [u'desert', u'barrier', u'enthusiast'] [u'disabl', u'task', u'forc', u'focus', u'accommod'] [u'dokic', u'arriv', u'australia'] [u'drag', u'race', u'accid', u'injur', u'driver'] [u'drink', u'drive', u'blitz', u'nab', u'dozen'] [u'ecstasi', u'great', u'potenti'] [u'burn', u'tent', u'fire', u'pakistan', u'quak', u'zone'] [u'england', u'honeymoon', u'end', u'pakistan'] [u'english', u'defend', u'cahil'] [u'ethiopia', u'investig', u'possibl', u'bird', u'outbreak'] [u'everton', u'talk', u'kean'] [u'exxonmobil', u'delay', u'anger', u'airport', u'manag'] [u'face', u'transplant', u'patient', u'recov'] [u'fatal', u'collis', u'shut', u'highway'] [u'fiji', u'parliament', u'vote', u'coup', u'amnesti'] [u'senat', u'cook', u'lose', u'cancer', u'fight'] [u'forsyth', u'lose', u'liber', u'parti', u'preselect'] [u'franc', u'investig', u'flight', u'stopov', u'claim'] [u'franc', u'join', u'nation'] [u'govt', u'rule', u'ratifi', u'kyoto', u'protocol'] [u'green', u'lead', u'stroke'] [u'greenspan', u'issu', u'deficit', u'warn'] [u'group', u'promis', u'test', u'ecstasi', u'pill', u'rave'] [u'harbour', u'prawn', u'fish', u'surpris'] [u'health', u'barrier', u'pinochet', u'trial', u'court', u'rule'] [u'heavi', u'rain', u'prompt', u'cave', u'eros', u'warn'] [u'hockeyroo', u'dutch', u'gold', u'medal', u'warm'] [u'hous', u'group', u'flag', u'drop', u'hous', u'price'] [u'impress', u'good', u'victori'] [u'india', u'lanka', u'test', u'head', u'wateri', u'grave'] [u'indigen', u'train', u'program', u'begin', u'januari'] [u'inzamam', u'vow', u'play'] [u'iraqi', u'group', u'threaten', u'kill', u'hostag'] [u'fight'] [u'isra', u'navi', u'shoot', u'palestinian', u'fisherman'] [u'keegan', u'hold', u'clubhous', u'lead', u'coolum'] [u'king', u'roll', u'cairn'] [u'fire', u'aussi', u'massiv', u'victori'] [u'lehmann', u'elect', u'bowl', u'victoria'] [u'lifesav', u'tasmanian', u'beach'] [u'macklin', u'make', u'promis'] [u'charg', u'alleg', u'sexual', u'assault'] [u'matilda', u'conclud', u'china', u'seri', u'draw'] [u'mix', u'feel', u'klinger'] [u'nevill', u'succeed', u'kean', u'unit', u'captain'] [u'hope', u'kidney', u'transplant', u'patient'] [u'look', u'aussi', u'line', u'black', u'cap'] [u'nguyen', u'famili', u'friend', u'head', u'home'] [u'nguyen', u'bodi', u'return', u'home'] [u'nguyen', u'famili', u'prepar', u'bring', u'execut', u'home'] [u'north', u'korea', u'urg', u'lift', u'sanction'] [u'put', u'confid', u'bird', u'prepar'] [u'govt', u'urg', u'provid', u'greenhous', u'strategi'] [u'offic', u'welcom', u'corrupt', u'inquiri'] [u'opposit', u'continu', u'hound', u'nuttal'] [u'oversea', u'adopt', u'tripl'] [u'pair', u'charg', u'cannabi', u'plant'] [u'stand', u'treasur', u'gerard', u'affair'] [u'polic', u'search', u'bushland', u'miss', u'teen', u'remain'] [u'polic', u'urg', u'caution', u'road', u'toll', u'rise'] [u'pont', u'applaud', u'easi'] [u'pont', u'katich', u'steer', u'australia', u'solid', u'total'] [u'prawn', u'fish', u'suspend', u'sydney', u'harbour'] [u'protea', u'prepar', u'verbal', u'barrag'] [u'protest', u'demand', u'climat', u'chang', u'action'] [u'quak', u'tent', u'suitabl', u'pakistan', u'winter'] [u'offer', u'free', u'public', u'transport', u'trip'] [u'ramadi', u'attack', u'kill', u'soldier'] [u'redknapp', u'walk', u'saint'] [u'rossi', u'readi', u'grand', u'slam'] [u'russian', u'citi', u'take', u'action', u'toxic', u'slick'] [u'schwarzer', u'dream', u'ash', u'reveng'] [u'search', u'resum', u'cattl', u'mogul', u'plane', u'crash'] [u'abus', u'victim', u'urg', u'come', u'forward'] [u'assault', u'case', u'prompt', u'warn', u'schooli'] [u'shorten', u'elect', u'victorian', u'presid'] [u'skill', u'shortag', u'forc', u'busi', u'close'] [u'slovakia', u'skipper', u'back', u'beck'] [u'slovak', u'croatian', u'level'] [u'snowi', u'sell', u'oppos', u'principl'] [u'solskjaer', u'surpris', u'unit', u'return'] [u'storm', u'clean'] [u'summit', u'seek', u'input', u'muslim', u'youth'] [u'support', u'long', u'go', u'jone', u'admit'] [u'text', u'messag', u'connect', u'rocker', u'audienc'] [u'feder', u'govern', u'follow'] [u'say', u'chang', u'good', u'job'] [u'thousand', u'ralli', u'pulp'] [u'kill', u'highway', u'collis'] [u'tiger', u'wildcat'] [u'attract', u'motorcyclist'] [u'trade', u'barrier', u'indefens', u'wolfowitz'] [u'souness', u'vow', u'wont', u'quit'] [u'merger', u'wont', u'harm', u'maritim', u'colleg'] [u'eas', u'airlin', u'secur', u'rule'] [u'welcom', u'discuss', u'burma'] [u'vietnam', u'find', u'bird', u'outbreak'] [u'virgin', u'passeng', u'treat', u'flight', u'emerg'] [u'build', u'approv', u'soar'] [u'watchdog', u'probe', u'virgin', u'blue', u'incid'] [u'weatheril', u'hint', u'hous', u'announc'] [u'boat', u'project', u'govt', u'grant'] [u'iraqi', u'troop', u'kill', u'ambush'] [u'abba', u'invit', u'pope', u'visit', u'jerusalem'] [u'storm', u'clean', u'continu'] [u'alcohol', u'factor', u'machet', u'attack'] [u'allenbi', u'secur', u'australian', u'doubl'] [u'allenbi', u'win', u'titl'] [u'archaeologist', u'ancient', u'palac', u'gate'] [u'arena', u'evacu', u'roof'] [u'soldier', u'kill', u'lanka', u'blast'] [u'aussi', u'lazaridi', u'take', u'hammer'] [u'author', u'search', u'miss', u'teen'] [u'beckham', u'send', u'real', u'hang'] [u'belfast', u'bid', u'farewel', u'footbal', u'hero', u'best'] [u'bird', u'detect', u'ukrain'] [u'breaker', u'complet', u'clean', u'sweep'] [u'cach', u'take', u'gong', u'european', u'film', u'award'] [u'action', u'timor', u'human', u'right', u'abus'] [u'chelsea', u'march', u'gunner', u'stumbl'] [u'comment', u'seek', u'wilder', u'area', u'plan'] [u'costello', u'mull', u'cut', u'welfar', u'unfit', u'parent'] [u'costello', u'seek', u'welfar', u'unfit', u'parent'] [u'costello', u'welfar', u'plan', u'distract'] [u'countri', u'worker', u'dont', u'street', u'worker'] [u'cricket', u'frustrat', u'chennai', u'rain'] [u'croatia', u'edg', u'closer', u'davi', u'triumph'] [u'crouch', u'brace', u'claim', u'back', u'benitez'] [u'death', u'letter', u'releas'] [u'death', u'toll', u'china', u'blast', u'reach'] [u'disabl', u'support', u'issu', u'affect', u'young'] [u'drink', u'drive', u'blitz', u'figur', u'worri', u'polic'] [u'dutch', u'defeat', u'hockeyroo', u'penalti', u'shoot'] [u'england', u'best', u'vaughan'] [u'england', u'whip', u'surpris', u'inzamam'] [u'campaign', u'depth'] [u'expert', u'seek', u'clue', u'lebanes', u'mass', u'grave'] [u'technic', u'expert', u'rule', u'radic', u'wing'] [u'fella', u'capit', u'notch', u'wnbl', u'win'] [u'festiv', u'launch', u'politicis', u'pratt'] [u'station', u'extens', u'futur', u'need', u'whan'] [u'cancer', u'council', u'chief', u'prais', u'cook', u'effort'] [u'forsyth', u'tight', u'lip', u'preselect', u'loss'] [u'fund', u'agreement', u'combat', u'weed'] [u'leader', u'push', u'continu', u'stall', u'trade', u'talk'] [u'gabon', u'govt', u'warn', u'troop', u'shoot', u'protest'] [u'gallop', u'commend', u'senat', u'cook', u'work'] [u'glori', u'marin', u'draw', u'perth'] [u'goggin', u'make', u'late', u'challeng'] [u'govt', u'wont', u'step', u'anti', u'capit', u'punish', u'lobbi'] [u'grinham', u'palmer', u'squash', u'decid'] [u'group', u'urg', u'leadership', u'fluorid'] [u'histor', u'christma', u'card', u'sell', u'auction'] [u'hockeyroo', u'halliday', u'confid'] [u'hockeyroo', u'fall', u'short'] [u'hope', u'remain', u'trap', u'chines', u'miner'] [u'indigen', u'communiti', u'voic', u'concern', u'pulp'] [u'indonesia', u'confirm', u'eighth', u'bird', u'death'] [u'injur', u'vaughan', u'return', u'home'] [u'iran', u'refus', u'nuclear', u'program'] [u'isra', u'plane', u'fire', u'missil', u'north', u'gaza', u'strip'] [u'wont', u'muscl', u'say', u'hingi'] [u'jone', u'reflect', u'sack'] [u'labor', u'say', u'forsyth', u'dump', u'speak'] [u'labor', u'chase', u'costello', u'gerard', u'deal'] [u'labor', u'urg', u'action', u'death', u'penalti'] [u'langer', u'continu', u'word'] [u'locust', u'thrive', u'unstabl', u'weather', u'condit'] [u'long', u'lead', u'walk', u'indigen', u'australian'] [u'charg', u'hour', u'sieg'] [u'kill', u'mackay', u'crash'] [u'mass', u'grave', u'uncov', u'lebanon'] [u'meteor', u'light', u'night'] [u'milit', u'video', u'claim', u'attack', u'troop'] [u'missil', u'hit', u'gaza', u'build', u'wit'] [u'miss', u'schooli', u'fear', u'drown'] [u'mock', u'attack', u'test', u'emerg', u'servic'] [u'monti', u'rule', u'hong', u'kong', u'kingston', u'meltdown'] [u'mourinho', u'dismiss', u'terri', u'gambl', u'concern'] [u'muslim', u'leader', u'seek', u'releas', u'hostag'] [u'muslim', u'youth', u'devis', u'plan', u'tackl', u'radic'] [u'nasal', u'stem', u'cell', u'transplant', u'promis'] [u'newli', u'elect', u'afghan', u'kill'] [u'memori', u'honour', u'soldier', u'kill', u'train'] [u'newsread', u'stab', u'fight'] [u'zealand', u'tighten', u'crowd', u'control'] [u'nguyen', u'bodi', u'arriv', u'australia'] [u'nguyen', u'bodi', u'flight', u'australia'] [u'nguyen', u'famili', u'arriv', u'home'] [u'excus', u'milan', u'titl', u'hop', u'dent'] [u'polic', u'urg', u'caution', u'road', u'fatal'] [u'onassi', u'wed', u'brazilian', u'olympian'] [u'pell', u'recognis', u'challeng', u'death', u'penalti'] [u'plane', u'crash', u'investig', u'bodi', u'miss'] [u'plan', u'releas', u'cope', u'sydney', u'popul'] [u'defend', u'gerard', u'appoint'] [u'pay', u'tribut', u'senat'] [u'rule', u'campaign', u'death', u'penalti'] [u'policeman', u'kill', u'wound', u'kashmir'] [u'polic', u'scour', u'coast', u'miss', u'fisherman'] [u'polic', u'search', u'suspect', u'stab'] [u'polic', u'urg', u'dedic', u'unit', u'theft', u'case'] [u'protest', u'demand', u'long', u'term', u'climat', u'chang', u'plan'] [u'qanta', u'board', u'consid', u'intern', u'jetstar'] [u'qanta', u'flag', u'intern', u'rout', u'jetstar'] [u'rain', u'prompt', u'road', u'safeti', u'warn'] [u'ranger', u'capit', u'triumphant', u'wnbl'] [u'research', u'record', u'near', u'whale'] [u'retail', u'hop', u'christma', u'sale'] [u'right', u'faction', u'take', u'liber', u'parti', u'iemma'] [u'roger', u'verg', u'game', u'withdraw'] [u'school', u'disciplin', u'polici', u'need', u'work', u'teacher'] [u'scott', u'seat', u'citi'] [u'search', u'abandon', u'miss', u'fisherman'] [u'search', u'continu', u'miss', u'surf'] [u'sedit', u'concern', u'unfound'] [u'servic', u'bank', u'improv', u'foster', u'children', u'live'] [u'storm', u'clean', u'keep', u'volunt', u'celebr'] [u'suspect', u'salmonella', u'case', u'investig'] [u'taiwan', u'rule', u'parti', u'lose', u'local', u'elect'] [u'taylor', u'retain', u'middleweight', u'world', u'titl'] [u'thousand', u'march', u'hong', u'kong', u'democraci'] [u'thousand', u'protest', u'italian', u'immigr'] [u'thousand', u'walk', u'highlight', u'indigen', u'issu'] [u'hospitalis', u'overdos', u'rave', u'parti'] [u'agenc', u'seek', u'urgent', u'pakistan', u'money'] [u'vote', u'test', u'kazakhstan', u'democraci'] [u'wadey', u'rioter', u'attack', u'polic'] [u'treat', u'meteor', u'light'] [u'arrest', u'drink', u'drive', u'blitz'] [u'abbott', u'gillard'] [u'accc', u'allow', u'cooper', u'takeov'] [u'accus', u'killer', u'collaps', u'dock'] [u'adelaid', u'runner', u'win', u'gambier', u'gift'] [u'forc', u'patrol', u'game'] [u'allenbi', u'eye', u'tripl', u'treat'] [u'ancic', u'hold', u'nerv', u'davi', u'croatia'] [u'angler', u'group', u'predict', u'backlash', u'marin'] [u'assess', u'storm', u'damag', u'continu'] [u'attack', u'plan', u'locust', u'plagu'] [u'aussi', u'pair', u'lose', u'squash', u'world', u'open', u'final'] [u'aussi', u'readi', u'protea', u'challeng'] [u'author', u'clean', u'electrolux', u'chemic', u'spill'] [u'bank', u'groom', u'tip', u'anger', u'staff'] [u'barca', u'real', u'luxemburgo'] [u'basso', u'attempt', u'giro', u'tour', u'doubl'] [u'beach', u'close', u'swimmer', u'sting'] [u'beatti', u'warn', u'mareeba', u'health', u'meet'] [u'prepar', u'save', u'strand', u'tourist'] [u'talk', u'yacht', u'nicorett', u'get'] [u'biker', u'partner', u'alleg', u'flaw', u'murder', u'probe'] [u'biker', u'deliv', u'tonn', u'toy'] [u'biki', u'gang', u'fight', u'effort', u'dismantl', u'secur'] [u'black', u'cap', u'run', u'scar', u'katich'] [u'black', u'cap', u'search', u'way', u'combat'] [u'blaze', u'forc', u'bluescop', u'evacu'] [u'bolton', u'look', u'impress', u'kean'] [u'brack', u'deni', u'minist', u'face', u'preselect', u'troubl'] [u'brack', u'sewerag', u'fund'] [u'busi', u'ask', u'way', u'boost', u'govt', u'effici'] [u'busi', u'facilit', u'island', u'enterpris'] [u'busi', u'busi', u'sale', u'robust'] [u'fund', u'spend', u'health', u'promot'] [u'canberra', u'level', u'year', u'high'] [u'canberra', u'storm', u'damag'] [u'cancer', u'patient', u'lose', u'medic', u'neglig', u'case'] [u'casa', u'fail', u'promot', u'good', u'airmanship', u'smith'] [u'case', u'forestri', u'tasmania', u'exempt', u'begin'] [u'cassava', u'pilot', u'ethanol', u'plant'] [u'chavez', u'alli', u'claim', u'elect', u'victori'] [u'chelsea', u'liverpool', u'seek', u'edg', u'dead'] [u'child', u'poverti', u'danger', u'high', u'level'] [u'chines', u'firm', u'interest', u'buy', u'north', u'west'] [u'urg', u'tougher', u'stanc', u'illeg', u'fish'] [u'cmcs', u'nuttal', u'investig', u'continu'] [u'code', u'conduct', u'form', u'fraser', u'safeti'] [u'cole', u'brace', u'help', u'citi', u'thump', u'charlton'] [u'commonwealth', u'challeng', u'cadet', u'discrimin', u'case'] [u'coron', u'report', u'windang', u'beach', u'drown'] [u'costello', u'laugh', u'gerard', u'question'] [u'council', u'reject', u'woodgat', u'develop'] [u'council', u'green', u'light', u'john', u'site', u'hous'] [u'council', u'urg', u'nurs', u'individu'] [u'council', u'urg', u'delay', u'citi', u'centr', u'strategi'] [u'crash', u'china', u'kill'] [u'deadlin', u'loom', u'centenari', u'celebr'] [u'dept', u'move', u'allay', u'fear', u'prawn', u'fish'] [u'disast', u'relief', u'fund', u'flow', u'storm', u'aramac'] [u'dokic', u'blame', u'departur'] [u'drown', u'student', u'swim', u'flag'] [u'elder', u'kill', u'singl', u'vehicl', u'crash'] [u'engin', u'firm', u'fin', u'nois'] [u'epic', u'trilog', u'top', u'favourit', u'film', u'poll'] [u'eriksson', u'back', u'beckham', u'latest', u'send'] [u'mayor', u'candid', u'stand', u'gladston'] [u'saddam', u'bodyguard', u'case', u'consid', u'order'] [u'famili', u'appeal', u'hostag', u'freedom'] [u'faulti', u'drive', u'caus', u'tripl', u'fatal'] [u'fifa', u'prepar', u'announc', u'world', u'seed'] [u'fisheri', u'closur', u'result', u'loss'] [u'dead', u'israel', u'suicid', u'bomb', u'attack'] [u'move', u'closer', u'pilbara', u'project'] [u'french', u'nation', u'kidnap', u'baghdad', u'polic'] [u'fund', u'seek', u'dialogu', u'centr'] [u'gambl', u'pay', u'cotton', u'grower'] [u'gambl', u'addict', u'jail', u'bank', u'fraud'] [u'game', u'ugli', u'ahead', u'world', u'draw'] [u'gold', u'surg', u'spur', u'mine'] [u'govt', u'keen', u'pass', u'bill', u'final', u'sit'] [u'govt', u'make', u'meander', u'fund', u'shortfal'] [u'govt', u'urg', u'rethink', u'child', u'care', u'fund'] [u'green', u'mundin', u'resolv', u'fight', u'order', u'disput'] [u'green', u'group', u'back', u'rail', u'freight', u'plan'] [u'green', u'group', u'hop', u'capel', u'impact'] [u'green', u'angri', u'debat', u'gag'] [u'group', u'use', u'letter', u'anti', u'saleyard', u'push'] [u'half', u'heart', u'vote', u'kazakhstan', u'capit'] [u'hall', u'creek', u'hop', u'crush', u'woe'] [u'health', u'servic', u'highlight', u'gippsland', u'dental', u'woe'] [u'health', u'servic', u'advisori', u'council'] [u'heat', u'help', u'thiev', u'gain', u'access'] [u'highway', u'panda', u'habitat', u'piec'] [u'highway', u'toll', u'see', u'option'] [u'hostil', u'forc', u'chopper'] [u'howard', u'costello', u'clash', u'respons'] [u'howard', u'prais', u'delight', u'storm', u'victim'] [u'hunt', u'driver', u'steal'] [u'idea', u'seek', u'indigen', u'road', u'toll'] [u'india', u'elect', u'rain', u'interrupt', u'test'] [u'indian', u'flood', u'forc', u'mass', u'evacu'] [u'indigen', u'group', u'appeal', u'fish'] [u'indigen', u'group', u'unfaz', u'talk', u'feder', u'probe'] [u'indonesian', u'babi', u'test', u'posit', u'bird'] [u'initi', u'maclean', u'storm', u'clean', u'complet'] [u'internet', u'rise'] [u'intrud', u'hold', u'babi'] [u'investig', u'continu', u'fatal', u'plane', u'crash'] [u'inzamam', u'happi', u'pakistan', u'rank', u'jump'] [u'iraq', u'escap', u'assassin'] [u'law', u'creat', u'public', u'holiday', u'sack', u'fear'] [u'islam', u'leader', u'misrepres', u'christma', u'claim'] [u'isra', u'armi', u'order', u'kill', u'milit'] [u'isra', u'shop', u'centr', u'attack', u'kill'] [u'juri', u'tell', u'falconio', u'dead'] [u'juve', u'ride', u'luck', u'land', u'sucker', u'punch'] [u'kangaroo', u'fear', u'sound', u'feet'] [u'kazakhstan', u'return', u'presid', u'power'] [u'labor', u'label', u'poll', u'smokescreen'] [u'launceston', u'angler', u'make', u'time'] [u'laverton', u'treasur', u'outback', u'highway', u'group'] [u'recommend', u'rise', u'councillor'] [u'local', u'chief', u'say', u'senat', u'irreplac'] [u'local', u'need', u'break', u'inquest', u'hear'] [u'charg', u'wadey', u'riot'] [u'face', u'court', u'rape', u'charg'] [u'mass', u'honour', u'vinni', u'volunt'] [u'math', u'stabilis', u'wobbl', u'tabl'] [u'measl', u'case', u'pakistani', u'camp'] [u'meet', u'tell', u'dubbo', u'crime', u'rise'] [u'meet', u'discuss', u'draft', u'plan', u'polici'] [u'meet', u'work', u'manag', u'plan'] [u'miss', u'schooli', u'bodi', u'gold', u'coast', u'beach'] [u'mix', u'trade', u'check', u'market', u'gain'] [u'move', u'afoot', u'eas', u'wine', u'invest', u'fund', u'worri'] [u'move', u'antisoci', u'behaviour', u'festiv'] [u'tribut', u'cook'] [u'home', u'road', u'build', u'cours'] [u'murdoch', u'near', u'murder', u'scene', u'defenc'] [u'narpi', u'school', u'close', u'forev'] [u'nelson', u'plan', u'nation', u'student', u'vote', u'law'] [u'urg', u'waterwis', u'plant'] [u'coal', u'announc', u'upper', u'hunter'] [u'mayor', u'seek', u'unit', u'latrob', u'region'] [u'nguyen', u'funer', u'wont', u'focus', u'death', u'penalti', u'debat'] [u'nigerian', u'polic', u'tear', u'separatist'] [u'product', u'better', u'expect'] [u'ormsbi', u'eye', u'master', u'titl'] [u'packer', u'admit', u'provid', u'inaccur', u'evid'] [u'packer', u'loos', u'word', u'asic', u'hear'] [u'pair', u'hospit', u'head', u'crash'] [u'pedestrian', u'death', u'dismay', u'safeti', u'bodi'] [u'perilya', u'eye', u'opportun'] [u'pianist', u'dossor', u'die', u'age'] [u'plane', u'land', u'safe', u'emerg'] [u'plan', u'patrol', u'sky', u'commonwealth', u'game'] [u'plan', u'move', u'ahead', u'giant', u'golf', u'cours'] [u'plan', u'attack', u'saddam', u'trial', u'foil'] [u'player', u'wallabi', u'coach'] [u'playwright', u'harold', u'pinter', u'hospitalis'] [u'flag', u'cut', u'wage', u'earner'] [u'polic', u'south', u'west', u'cannabi', u'crop'] [u'polic', u'hope', u'brake', u'theft'] [u'polic', u'investig', u'crawford', u'bodi'] [u'polic', u'crash', u'victim'] [u'polic', u'probe', u'fatal', u'highway', u'crash'] [u'polic', u'probe', u'sydney', u'newsread', u'stab'] [u'polic', u'relat', u'improv', u'riot', u'inquiri', u'hear'] [u'polic', u'continu', u'search', u'miss', u'angler'] [u'polic', u'charg', u'dampier', u'brawl'] [u'princ', u'eager', u'sign', u'tiger'] [u'probe', u'continu', u'fremantl', u'fuel', u'spill'] [u'protea', u'need', u'adapt', u'say', u'kalli'] [u'public', u'ask', u'help', u'escap'] [u'public', u'phone', u'road', u'woe'] [u'public', u'turn', u'barbara', u'festiv'] [u'public', u'urg', u'continu', u'water', u'wise'] [u'push', u'indigen', u'timber', u'worker'] [u'push', u'remain', u'boost', u'tafe', u'moral'] [u'qanta', u'restrict', u'access'] [u'raid', u'recov', u'illeg', u'import', u'bird'] [u'rain', u'boost', u'basin', u'catchment', u'storag', u'level'] [u'redknapp', u'rue', u'quit', u'pompey'] [u'report', u'illeg', u'fishermen', u'drown', u'australian'] [u'resid', u'say', u'lake', u'site', u'unsuit', u'scout'] [u'robert', u'reject', u'staffer', u'trip', u'claim'] [u'russian', u'swim', u'pool', u'roof', u'collaps', u'kill'] [u'saddam', u'bodyguard', u'visa', u'concern', u'howard'] [u'saddam', u'bodyguard', u'visa', u'error', u'vanston'] [u'saddam', u'bodyguard', u'visa', u'govt', u'decis', u'say'] [u'saddam', u'bodyguard', u'live', u'adelaid'] [u'saddam', u'lawyer', u'walk'] [u'saddam', u'trial', u'judg', u'step', u'murder', u'link'] [u'saddam', u'trial', u'resum', u'walk'] [u'salin', u'threat', u'overst', u'report'] [u'scheme', u'look', u'reduc', u'driver', u'licenc', u'breach'] [u'scott', u'lose', u'play', u'citi'] [u'search', u'continu', u'miss', u'schooli'] [u'search', u'fail', u'clue', u'teenag'] [u'search', u'find', u'miss', u'safe'] [u'senat', u'join', u'global', u'push', u'climat', u'chang', u'action'] [u'find', u'parent', u'bodi', u'garag'] [u'spawn', u'pattern', u'help', u'stinger', u'research'] [u'sport', u'week', u'school'] [u'stacker', u'beat', u'play', u'off', u'possibl'] [u'stanhop', u'legisl', u'review', u'rule'] [u'stock', u'hors', u'sale', u'record', u'tumbl'] [u'storm', u'leav', u'damag', u'central', u'victoria'] [u'storm', u'spare', u'vineyard'] [u'stress', u'caus', u'sick', u'studi'] [u'student', u'demand', u'choic', u'poll'] [u'survey', u'highlight', u'tassi', u'art', u'festiv', u'success'] [u'survey', u'show', u'rise', u'slight'] [u'teacher', u'protest', u'special', u'need', u'student'] [u'terror', u'suspect', u'custodi', u'condit', u'inhuman'] [u'mass', u'grave', u'uncov', u'lebanon'] [u'thousand', u'enjoy', u'barossa', u'concert'] [u'firm', u'tender', u'hospit'] [u'throne', u'home', u'user', u'survey'] [u'trade', u'hall', u'council', u'take', u'protest', u'maryborough'] [u'train', u'travel', u'warn', u'expect', u'delay'] [u'treasur', u'ask', u'explain', u'budget', u'discrep'] [u'treasur', u'question', u'gerard', u'claim'] [u'face', u'court', u'indonesia', u'drug', u'charg'] [u'union', u'applaud', u'cancel', u'surgeri', u'honesti'] [u'union', u'dark', u'health', u'servic', u'merger'] [u'union', u'target', u'govt', u'margin', u'seat'] [u'univers', u'condemn', u'poll', u'propos'] [u'risk', u'terrorist', u'attack'] [u'deni', u'send', u'suspect', u'abroad', u'tortur'] [u'vanuatu', u'resid', u'evacu', u'volcano', u'threaten'] [u'visa', u'law', u'godsend', u'horticultur'] [u'warrior', u'control', u'protea'] [u'warrnambool', u'mayor', u'elect', u'tonight'] [u'warship', u'crew', u'reflect', u'histori'] [u'welfar', u'work', u'plan', u'eas', u'poverti', u'govt'] [u'wit', u'seek', u'fatal', u'crash'] [u'woman', u'hospit', u'machet', u'attack'] [u'work', u'committe', u'head', u'north', u'highway', u'plan'] [u'dead', u'militari', u'plane', u'crash', u'tehran'] [u'bodi', u'western', u'iraq'] [u'aborigin', u'knowledg', u'mammal', u'research'] [u'abort', u'pill', u'vote', u'rule', u'women'] [u'academ', u'say', u'quinn', u'mistak', u'robert'] [u'prepar', u'patron', u'smoke'] [u'alo', u'vera', u'produc', u'sign', u'china', u'deal'] [u'anim', u'right', u'group', u'seek', u'council', u'polici'] [u'student', u'group', u'concern', u'fund'] [u'architect', u'question', u'footbridg', u'plan'] [u'aussi', u'improv', u'pont'] [u'australia', u'band', u'say', u'lara'] [u'australian', u'chang', u'hong', u'kong', u'smuggl', u'plea'] [u'averag', u'rain', u'predict', u'western', u'despit'] [u'face', u'call', u'broader', u'inquiri'] [u'weather', u'stop', u'diver', u'search', u'miss', u'angler'] [u'bail', u'grant', u'alleg', u'bird', u'smuggler'] [u'bendigo', u'properti', u'raid', u'illeg', u'wildlif'] [u'benitez', u'focus', u'liverpool', u'real'] [u'crowd', u'turn', u'marin', u'park', u'meet'] [u'disput', u'aris', u'littl', u'athlet'] [u'die', u'age'] [u'sea', u'solo', u'sail', u'record', u'attempt'] [u'blackout', u'strike', u'town'] [u'bomb', u'joke', u'land', u'fine'] [u'bottleneck', u'hinder', u'resourc', u'sector', u'approv'] [u'bracken', u'dayer'] [u'brack', u'convinc', u'hydro', u'scheme', u'sale'] [u'brack', u'stand', u'firm', u'abort', u'chang'] [u'branson', u'reveal', u'frequent', u'flyer', u'space', u'plan'] [u'briberi', u'claim', u'prove'] [u'brother', u'front', u'court', u'fatal', u'stab'] [u'burni', u'trial', u'high', u'speed', u'internet', u'technolog'] [u'bush', u'alli', u'face', u'trial', u'judg'] [u'bush', u'poem', u'pakistani', u'schoolbook'] [u'businesswoman', u'elect', u'unoppos', u'shepparton', u'mayor'] [u'caltex', u'sign', u'dalbi', u'refineri', u'deal'] [u'campbel', u'name', u'european', u'tour', u'best'] [u'catchment', u'author', u'maintain', u'worri'] [u'unit', u'lack', u'organis', u'inquest', u'hear'] [u'childcar', u'centr', u'treatment', u'disturb'] [u'china', u'sign', u'deal', u'airbus', u'plan'] [u'chines', u'blast', u'toll', u'settl'] [u'citi', u'seek', u'help', u'toxic', u'slick', u'approach'] [u'coff', u'strategi', u'aim', u'limit', u'urban', u'sprawl'] [u'confid', u'farmer'] [u'costello', u'renew', u'pressur', u'gerard', u'affair'] [u'council', u'look', u'govt', u'storm', u'clean', u'fund'] [u'council', u'promis', u'earli', u'noosa', u'drive'] [u'council', u'adopt', u'citi', u'centr', u'strategi'] [u'council', u'hear', u'truck', u'stop', u'recommend'] [u'court', u'hear', u'break', u'tourist', u'turn', u'prostitut'] [u'court', u'put', u'brake', u'driver'] [u'cricket', u'violenc', u'spark', u'tran', u'tasman', u'talk'] [u'defenc', u'await', u'bomb', u'rang', u'mishap', u'report'] [u'owner', u'warn', u'parvo', u'threat'] [u'drink', u'end', u'gazza', u'ketter', u'stint'] [u'dutch', u'tourist', u'injur', u'collis'] [u'elector', u'boundari', u'melt'] [u'pleas', u'chang', u'miner', u'sand', u'plan'] [u'ergon', u'investig', u'mackay', u'blackout'] [u'ergon', u'issu', u'christma', u'light', u'warn'] [u'exodus', u'real', u'madrid'] [u'export', u'rise', u'narrow', u'trade', u'deficit'] [u'falconio', u'live', u'juri', u'tell'] [u'farmer', u'ask', u'report', u'storm', u'damag'] [u'farmer', u'await', u'drought', u'news'] [u'father', u'jail', u'teacher', u'bash'] [u'fieri', u'vaa', u'rattl', u'india', u'draw', u'test'] [u'fight', u'labor', u'urg', u'abbott'] [u'fishermen', u'reject', u'illeg', u'fish', u'claim'] [u'fisher', u'observ', u'marin', u'park', u'closur'] [u'flight', u'centr', u'unconcern', u'qanta', u'chang'] [u'milan', u'midfield', u'albertini', u'retir'] [u'saddam', u'bodyguard', u'case', u'examin'] [u'teacher', u'month', u'jail', u'offenc'] [u'fuel', u'price', u'take', u'toll', u'volunt'] [u'fund', u'boost', u'rock', u'demonstr', u'power', u'plant'] [u'fyff', u'wont', u'rule', u'contest', u'mayoralti'] [u'gascoign', u'hold', u'suspicion', u'assault'] [u'genet', u'test', u'consid', u'skin', u'cancer', u'prevent'] [u'germani', u'solv', u'crowd', u'issu', u'fifa'] [u'govern', u'ask', u'combat', u'firewe'] [u'govt', u'push', u'leas', u'concess'] [u'govt', u'reassess', u'visa', u'bodyguard'] [u'govt', u'urg', u'scrap', u'water', u'plan'] [u'spend', u'time', u'patient', u'studi'] [u'green', u'focus', u'master', u'defenc'] [u'green', u'group', u'urg', u'stop', u'west', u'yamba', u'develop'] [u'green', u'group', u'want', u'stop', u'transgrid', u'powerlin', u'plan'] [u'group', u'gear', u'west', u'tiger', u'match'] [u'group', u'push', u'duck', u'shoot', u'backdown'] [u'gryll', u'urg', u'pilbara', u'land', u'releas'] [u'hammer', u'compound', u'birmingham', u'blue'] [u'heat', u'high', u'blood', u'pressur'] [u'hend', u'miss', u'tour', u'card'] [u'hill', u'lament', u'gerard', u'resign'] [u'driver', u'avoid', u'jail'] [u'hockeyroo', u'focus', u'commonwealth', u'game'] [u'hospit', u'decis', u'bring', u'mix', u'respons'] [u'hudson', u'till', u'final'] [u'indigen', u'health', u'grant', u'detail', u'reveal'] [u'inquiri', u'urg', u'govt', u'guidelin'] [u'interst', u'cocain', u'traffick', u'jail'] [u'investig', u'continu', u'menegazzo', u'crash', u'scene', u'probe'] [u'inzamam', u'hop', u'counti', u'cricket', u'chanc'] [u'israel', u'arrest', u'suicid', u'bomber', u'famili'] [u'japan', u'signal', u'iraq', u'mission', u'extens'] [u'jasmin', u'rice', u'aroma', u'gene'] [u'kalgoorli', u'boulder', u'name'] [u'kalgoorli', u'move', u'closer', u'solar', u'citi'] [u'kiln', u'blaze', u'forc', u'school', u'evacu'] [u'labor', u'attempt', u'censur', u'costello'] [u'labor', u'blame', u'law', u'liber', u'poll', u'slide'] [u'labor', u'demand', u'costello', u'face', u'gerard', u'question'] [u'lawyer', u'seek', u'charg', u'extradit', u'bali'] [u'lead', u'chines', u'dissid', u'writer', u'die'] [u'lee', u'evid', u'prove', u'murdoch', u'guilti', u'lawyer'] [u'levi', u'vote', u'put', u'banana', u'industri', u'risk'] [u'die', u'plane', u'crash'] [u'face', u'court', u'accus', u'shop', u'arson'] [u'custodi', u'accus', u'rap', u'cousin'] [u'jail', u'life', u'teen', u'bash', u'death'] [u'link', u'baggag', u'handler', u'jail'] [u'plead', u'guilti', u'underag', u'girl'] [u'mayor', u'back', u'plan', u'thursday', u'busi'] [u'meander', u'valley', u'mayor', u'see', u'benefit'] [u'media', u'grant', u'access', u'child', u'rape', u'trial'] [u'meet', u'focus', u'age', u'disabl', u'public', u'hous'] [u'melbourn', u'woman', u'pregnanc', u'beat', u'odd'] [u'militari', u'plane', u'crash', u'tehran'] [u'attack', u'kill', u'lankan', u'soldier'] [u'miner', u'boom', u'help', u'boost', u'region', u'job'] [u'minist', u'attack', u'drought', u'relief', u'payment'] [u'mission', u'australia', u'open', u'whyalla', u'port', u'augusta'] [u'mother', u'mourn', u'taxi', u'incid', u'victim'] [u'air', u'doctor', u'shortag', u'fear'] [u'reject', u'need', u'ethanol', u'legisl'] [u'urg', u'perman', u'shark', u'barrier'] [u'urg', u'tougher', u'stanc', u'crimin'] [u'muscat', u'cite'] [u'nail', u'shooter', u'fin'] [u'nation', u'hospit', u'standard', u'program', u'begin'] [u'nation', u'liber', u'odd'] [u'nervous', u'night', u'champion', u'leagu', u'team'] [u'newcastl', u'move', u'closer', u'solar', u'citi', u'project'] [u'facil', u'medic', u'research'] [u'flight', u'help', u'lift', u'kununurra', u'tourist', u'number'] [u'mammal', u'borneo'] [u'urg', u'oppos', u'incent', u'timber'] [u'korea', u'demand', u'lift', u'sanction'] [u'compo', u'seek', u'road', u'chang', u'tunnel', u'chief'] [u'pool', u'school', u'program', u'polit', u'leader'] [u'northern', u'busi', u'sight', u'southern', u'citi'] [u'smart', u'ball', u'world'] [u'water', u'pleas', u'paluma', u'water'] [u'opposit', u'urg', u'action', u'gang', u'crime'] [u'packer', u'draw', u'blank', u'onetel', u'cash', u'phase', u'meet'] [u'packer', u'fail', u'recal', u'onetel', u'cash', u'warn'] [u'pair', u'court', u'defraud', u'charg'] [u'pair', u'face', u'court', u'drug', u'charg'] [u'play', u'abandon', u'bushrang', u'blue', u'clash'] [u'poidevin', u'join', u'search', u'wallabi', u'coach'] [u'polic', u'issu', u'warn', u'vandal'] [u'policeman', u'bottl', u'arrest', u'attempt'] [u'policemen', u'kill', u'peruvian', u'jungl', u'ambush'] [u'polic', u'tripl', u'fatal', u'road', u'crash', u'name'] [u'polic', u'tell', u'bodyguard', u'crime', u'suspicion'] [u'probe', u'clear', u'asio', u'parkin', u'deport'] [u'propos', u'elector', u'reform', u'releas'] [u'protea', u'wilt', u'warrior', u'enforc', u'follow'] [u'protest', u'continu', u'chang'] [u'public', u'accept', u'drug', u'penalti', u'ambassador'] [u'public', u'wont', u'miss', u'drug', u'abbott', u'say'] [u'push', u'stawel', u'free'] [u'queanbeyan', u'busi', u'seek', u'closer', u'tie'] [u'rain', u'prevent', u'start', u'bushrang', u'blue', u'clash'] [u'rain', u'stop', u'locust', u'spray'] [u'sight', u'pose', u'natur', u'reserv', u'fear'] [u'real', u'caretak', u'coach', u'take', u'centr', u'stage'] [u'redknapp', u'doubt', u'saint', u'reject', u'offer'] [u'report', u'urg', u'spend', u'equex', u'centr'] [u'resid', u'group', u'unhappi', u'marina', u'develop'] [u'rise', u'sea', u'forc', u'island', u'inland', u'say'] [u'rise', u'temperatur', u'fisheri'] [u'rivcol', u'reject', u'plan', u'poll'] [u'rucker', u'whittl', u'player', u'award'] [u'russia', u'sign', u'missil', u'deal', u'iran'] [u'saddam', u'hussein', u'face', u'accus'] [u'safeti', u'award', u'recognis', u'fertilis', u'oper'] [u'safeti', u'campaign', u'urg', u'driver', u'stay', u'fresh'] [u'govt', u'back', u'murray', u'water', u'buy', u'plan'] [u'govt', u'reject', u'wast', u'dump'] [u'liber', u'grain', u'donat'] [u'take', u'approach', u'homeless'] [u'senat', u'pass', u'counter', u'terror', u'law'] [u'senat', u'urg', u'oppos', u'welfar', u'packag'] [u'alleg', u'bulldog', u'pair'] [u'sexual', u'assault', u'alleg', u'bulldog'] [u'singapor', u'maid', u'deni', u'basic', u'freedom'] [u'singapor', u'tell', u'spous', u'patient', u'status'] [u'solid', u'fleet', u'assembl', u'sydney', u'hobart', u'race'] [u'solo', u'sailor', u'arriv', u'repair'] [u'solskjaer', u'manchest', u'unit'] [u'south', u'africa', u'zuma', u'face', u'rape', u'charg'] [u'lankan', u'court', u'free', u'australian'] [u'stanhop', u'seek', u'input', u'terror', u'law'] [u'state', u'help', u'aramac', u'storm'] [u'storm', u'sign', u'thing', u'come', u'scientist'] [u'suicid', u'bomber', u'kill', u'baghdad'] [u'suicid', u'prevent', u'plan', u'need', u'work', u'liber'] [u'sydney', u'eye', u'clash', u'liverpool'] [u'sydney', u'problem', u'warn', u'busway'] [u'sydney', u'tunnel', u'oper', u'revers', u'road', u'closur'] [u'govt', u'address', u'financi', u'hardship'] [u'taxi', u'driver', u'charg', u'teen', u'murder'] [u'taxi', u'driver', u'face', u'court', u'teen', u'death'] [u'technic', u'hitch', u'hinder', u'saddam', u'trial'] [u'arrest', u'terror', u'plot'] [u'hurt', u'musk', u'crash'] [u'thwait', u'announc', u'communiti', u'centr', u'fund'] [u'townsvill', u'get', u'fund', u'solar', u'citi', u'busi'] [u'trio', u'take', u'hospit', u'stinger', u'attack'] [u'troubl', u'hann', u'british', u'grand', u'prix'] [u'tunnel', u'contract', u'secret', u'carr', u'say'] [u'charg', u'separ', u'shoot'] [u'union', u'target', u'coalit'] [u'student', u'guild', u'reject', u'ballot', u'plan'] [u'republican', u'leader', u'stand', u'trial'] [u'vanston', u'deni', u'laps', u'bodyguard', u'case'] [u'salin', u'major', u'problem', u'despit', u'report'] [u'weak', u'lead', u'leav', u'market', u'flat'] [u'whoop', u'cough', u'case', u'emerg'] [u'wild', u'storm', u'hit', u'break', u'hill'] [u'winegrap', u'grower', u'inspect', u'hail', u'damag'] [u'work', u'begin', u'boost', u'port', u'capac'] [u'hail', u'success', u'floriad'] [u'african', u'famili', u'gambier', u'home'] [u'agreement', u'expect', u'boost', u'indigen', u'servic'] [u'airport', u'evacu', u'road', u'close', u'spanish'] [u'alleg', u'brisban', u'bomb', u'hoaxer', u'refus', u'bail'] [u'allenbi', u'chase', u'tripl', u'crown'] [u'chaffey', u'candid', u'target', u'rival'] [u'anti', u'kurd', u'attack', u'kill'] [u'appl', u'scab', u'worri', u'grower'] [u'arm', u'attack', u'iraqi', u'hospit'] [u'arrest', u'second', u'cronulla', u'scuffl'] [u'asbesto', u'remov', u'basketbal', u'stadium'] [u'assault', u'charg', u'lay', u'attack', u'lifeguard'] [u'aussi', u'punter', u'bennett', u'return', u'vike'] [u'aussi', u'salvag', u'dramat'] [u'aust', u'place', u'summit', u'mahathir'] [u'australian', u'polic', u'link', u'keep', u'italian', u'cocain', u'case'] [u'australian', u'life', u'expect', u'rise'] [u'exceed', u'perform', u'target'] [u'billion', u'dollar', u'contract', u'improv', u'coastlin'] [u'lade', u'lead', u'qaeda', u'zawahri'] [u'black', u'cap', u'confid', u'save', u'seri'] [u'booklet', u'look', u'improv', u'protect'] [u'bosnian', u'croat', u'jail', u'crime'] [u'boyfriend', u'kill', u'chines', u'student', u'coron'] [u'bridgetown', u'bypass', u'battl', u'move', u'closer', u'resolut'] [u'broule', u'student', u'recognis', u'sport', u'effort'] [u'bushfir', u'threat', u'eas', u'slight'] [u'busi', u'chamber', u'reflect', u'contribut'] [u'campaign', u'continu', u'stop', u'farmer', u'compo'] [u'cdma', u'work', u'continu', u'despit', u'phase'] [u'ceberano', u'take', u'bill', u'valley', u'muster'] [u'chappel', u'play', u'ganguli'] [u'charg', u'recommend', u'minist'] [u'chines', u'offici', u'accus', u'spill', u'cover', u'die'] [u'coron', u'warn', u'drug', u'relat', u'psychosi'] [u'costello', u'cement', u'posit', u'treasur'] [u'costello', u'rule', u'leadership'] [u'costello', u'rule', u'leadership', u'challeng'] [u'costello', u'abandon', u'leadership', u'beazley'] [u'costello', u'welfar', u'plan', u'consider'] [u'council', u'accus', u'delay', u'park'] [u'council', u'tri', u'cross', u'crash', u'victim'] [u'countri', u'week', u'boss', u'fear', u'bigger', u'elector'] [u'croc', u'farmer', u'slam', u'theme', u'park', u'plan'] [u'staff', u'secur', u'enterpris', u'agreement'] [u'custom', u'get', u'fund', u'boost'] [u'daughter', u'deni', u'hancock', u'kill', u'biki'] [u'develop', u'claim', u'civic', u'task', u'forc', u'stack'] [u'dismiss', u'falconio', u'sight', u'evid', u'juror', u'tell'] [u'doctor', u'lose', u'appeal', u'incest', u'sentenc'] [u'eleph', u'pack', u'trunk'] [u'embattl', u'nuttal', u'quit', u'cabinet'] [u'erin', u'brockovich', u'lawyer', u'die'] [u'evacu', u'continu', u'volcano', u'settl'] [u'charter', u'tower', u'doctor', u'investig'] [u'export', u'demand', u'rock', u'lobster', u'price', u'increas'] [u'offici', u'awar', u'polit', u'interfer'] [u'factori', u'worker'] [u'fare', u'repriev', u'taxi', u'passeng', u'brief'] [u'farmer', u'count', u'cost', u'locust'] [u'farmer', u'veget', u'concern'] [u'figur', u'slow', u'growth'] [u'firm', u'fin', u'wetland', u'pollut'] [u'fluorid', u'decis', u'forc', u'resid', u'leav'] [u'forest', u'undergo', u'growth', u'audit'] [u'tour', u'franc', u'winner', u'gaul', u'die'] [u'dayer', u'fizz', u'junction', u'oval'] [u'villag', u'kill', u'chines', u'protest'] [u'french', u'partial', u'face', u'transplant', u'woman', u'seek', u'privaci'] [u'fruit', u'threaten', u'citrus'] [u'fuel', u'concern', u'propos', u'power', u'station'] [u'gadget', u'check', u'stress', u'level', u'spit'] [u'gardin', u'sight', u'master', u'place'] [u'gazza', u'arrest', u'assault'] [u'gold', u'coast', u'help', u'lift', u'lifesav', u'fund'] [u'govt', u'ask', u'consid', u'region', u'medic', u'school', u'plan'] [u'govt', u'urg', u'continu', u'milk', u'suppli', u'driver'] [u'govt', u'urg', u'lift', u'south', u'west', u'highway', u'spend'] [u'govt', u'urg', u'seek', u'wineri', u'grower', u'balanc'] [u'grammar', u'school', u'lose', u'roof', u'storm'] [u'grazier', u'kill', u'muster', u'sheep'] [u'greiner', u'defend', u'cross', u'citi', u'tunnel'] [u'group', u'continu', u'oppos', u'highway', u'plan'] [u'group', u'differ', u'fraser', u'palm'] [u'hayabusa', u'asteroid', u'mission', u'like', u'fail'] [u'high', u'speed', u'internet', u'subscript', u'surg'] [u'highway', u'reopen', u'crash'] [u'hop', u'femal', u'councillor', u'curb', u'petrol', u'sniff'] [u'hospit', u'doctor', u'shortag', u'isol', u'buladelah'] [u'hospit', u'rehab', u'bed', u'closur', u'like', u'remain'] [u'hostag', u'urg', u'blair', u'recal', u'troop'] [u'hundr', u'ralli', u'telstra', u'sale'] [u'inadequ', u'compens', u'payout', u'appeal'] [u'india', u'pakistan', u'world', u'hockey'] [u'indigen', u'centr', u'open', u'dubbo'] [u'indonesia', u'warn', u'christma', u'attack', u'threat'] [u'inquiri', u'urg', u'better', u'airport', u'worker'] [u'rat', u'leav', u'unchang'] [u'inverel', u'librari', u'revamp', u'ahead'] [u'iran', u'mourn', u'plane', u'crash', u'victim'] [u'iraqi', u'polic', u'academi', u'bomb', u'toll', u'rise'] [u'japan', u'watch', u'aust', u'iraq', u'withdraw'] [u'joyc', u'demand', u'amend'] [u'junior', u'mine', u'explor', u'list'] [u'juri', u'tell', u'murdoch', u'cun', u'killer'] [u'kiwi', u'open', u'punish'] [u'langer', u'claim', u'edg'] [u'lead', u'poison', u'kill', u'beethoven', u'test'] [u'leagu', u'club', u'shore', u'knight'] [u'lewi', u'clark', u'claim', u'kiwi', u'wicket'] [u'lewi', u'rock', u'black', u'cap'] [u'lion', u'nathan', u'takeov', u'predatori'] [u'lonard', u'knife'] [u'lunar', u'land', u'sale', u'beauti', u'illeg'] [u'kill', u'trench', u'collaps'] [u'sentenc', u'plead', u'guilti', u'drug'] [u'marijuana', u'intend', u'elder', u'arthriti', u'suffer'] [u'math', u'graduat', u'win', u'monash', u'scholarship'] [u'mayor', u'plead', u'guilti', u'briberi', u'charg'] [u'mayor', u'discuss', u'land', u'shortag'] [u'member', u'retir', u'upper', u'hous'] [u'mental', u'health', u'plan', u'includ', u'albani', u'residenti'] [u'miss', u'fisherman', u'dead'] [u'mitchel', u'rule', u'wallabi'] [u'mokbel', u'claim', u'asset', u'freez', u'invalid'] [u'morcomb', u'famili', u'mark', u'disappear', u'anniversari'] [u'park', u'space', u'plan', u'thoma'] [u'morwel', u'make', u'cut', u'plea'] [u'unhappi', u'broom', u'prison', u'closur', u'plan'] [u'muscat', u'violent', u'conduct', u'hear', u'adjourn'] [u'nation', u'urg', u'broad', u'base', u'cut'] [u'natur', u'disast', u'declar', u'storm', u'area'] [u'bendigo', u'mayor', u'offici'] [u'fuel', u'distribut', u'improv', u'boat', u'safeti'] [u'law', u'sterilis', u'fight', u'dog'] [u'medic', u'centr', u'open', u'cloncurri'] [u'organis', u'fight', u'dope'] [u'scheme', u'streamlin', u'disast'] [u'school', u'report', u'need', u'review', u'union'] [u'nguyen', u'farewel'] [u'nguyen', u'mourner', u'warn', u'vengeanc'] [u'bail', u'alleg', u'stabber'] [u'basi', u'ferri', u'fare', u'rise'] [u'brisban', u'heat'] [u'stakehold', u'discuss', u'world', u'schedul'] [u'discuss', u'player', u'burn'] [u'slow', u'progress', u'kilda'] [u'nuttal', u'step'] [u'open', u'design', u'win', u'portrait', u'galleri', u'competit'] [u'opinion', u'differ', u'extend', u'trade', u'hour'] [u'opposit', u'claim', u'govt', u'plan', u'sell'] [u'opposit', u'releas', u'race', u'fund', u'plan'] [u'ozdowski', u'urg', u'check', u'terror', u'law'] [u'pakistani', u'polic', u'arrest', u'suspect', u'separatist'] [u'palm', u'pilot', u'replac', u'paper', u'classroom'] [u'patel', u'face', u'malpractic', u'charg'] [u'plane', u'crash', u'kill', u'dozen'] [u'plane', u'crash', u'pilot', u'escap', u'injuri'] [u'want', u'pass', u'christma'] [u'polic', u'charg', u'geelong', u'murder'] [u'polic', u'issu', u'snatch', u'warn'] [u'policewomen', u'iraq', u'suicid', u'bomb', u'blast'] [u'pont', u'want', u'chang', u'super', u'rule'] [u'poor', u'weather', u'keep', u'lobster', u'menu'] [u'powerlin', u'promis', u'greater', u'reliabl'] [u'produc', u'toast', u'beer', u'paper', u'deal'] [u'program', u'aim', u'develop', u'cape', u'communiti', u'leader'] [u'prosecutor', u'want', u'close', u'court', u'terror', u'suspect'] [u'protea', u'panic', u'waca', u'collaps'] [u'protea', u'slide', u'tour', u'defeat'] [u'protea', u'struggl', u'perth'] [u'public', u'urg', u'storm', u'readi'] [u'public', u'urg', u'illeg', u'hostel'] [u'raaf', u'anti', u'terror', u'skill'] [u'rain', u'delay', u'grain', u'harvest'] [u'rain', u'delay', u'tougher', u'water', u'restrict', u'south'] [u'ranger', u'milan', u'progress', u'champion', u'leagu'] [u'reef', u'author', u'hook', u'illeg', u'fisher'] [u'refer', u'group', u'probe', u'crop', u'issu'] [u'resid', u'urg', u'bewar', u'door', u'door', u'salesmen'] [u'resourc', u'stock', u'drive', u'market', u'higher'] [u'retail', u'figur', u'hold', u'steadi', u'novemb'] [u'rural', u'confid', u'slide'] [u'rural', u'hospit', u'better', u'babi'] [u'saddam', u'trial', u'adjourn'] [u'safeti', u'bodi', u'complet', u'cattl', u'baron', u'plane', u'crash'] [u'receiv', u'fund'] [u'school', u'question', u'workshop', u'time'] [u'schumach', u'end', u'holiday', u'earli', u'resum', u'test'] [u'scientist', u'deep', u'measur', u'andrea', u'fault'] [u'senat', u'vote', u'wont', u'dump', u'fight'] [u'seymour', u'hospit', u'doctor', u'disput', u'resolv'] [u'shop', u'centr', u'revamp', u'finish'] [u'sid', u'kit', u'target', u'childcar', u'centr'] [u'korea', u'order', u'microsoft', u'split', u'program'] [u'sport', u'ident', u'entertain', u'join', u'fight'] [u'sugar', u'cane', u'crop', u'donat', u'rfds'] [u'sugar', u'price', u'surg'] [u'survey', u'highlight', u'rural', u'uncertainti'] [u'sydney', u'hobart', u'organis', u'safeti', u'prioriti'] [u'sydney', u'pump', u'world', u'club', u'championship'] [u'symond', u'clark', u'build', u'aussi', u'total'] [u'symond', u'lead', u'aussi', u'fight'] [u'symond', u'power', u'australia', u'total'] [u'aim', u'reduc', u'landfil', u'dramat'] [u'taxi', u'firm', u'call', u'fare', u'rise', u'understand'] [u'teacher', u'sidestep', u'law'] [u'telstra', u'drop', u'credit', u'rat'] [u'tori', u'elect', u'leader'] [u'treasur', u'confid', u'despit', u'sluggish', u'growth'] [u'trio', u'charg', u'yang', u'murder'] [u'kill', u'launceston', u'factori', u'explos'] [u'dump', u'elect', u'boss'] [u'union', u'blame', u'govt', u'loss'] [u'union', u'member', u'voic', u'fear'] [u'union', u'maintain', u'fight', u'chang'] [u'forc', u'kill', u'taliban', u'governor'] [u'professor', u'acquit', u'terror', u'charg'] [u'romania', u'sign', u'militari', u'base', u'deal'] [u'senat', u'urg', u'govt', u'join', u'global', u'warm', u'talk'] [u'shift', u'cruelti', u'detaine', u'abroad'] [u'vail', u'deni', u'govt', u'staff', u'aid', u'kickback'] [u'govt', u'accus', u'blow', u'water', u'electr'] [u'buck', u'nation', u'trade', u'trend'] [u'water', u'author', u'lobbi', u'fund', u'increas'] [u'water', u'board', u'warn', u'blue', u'green', u'alga', u'outbreak'] [u'weather', u'blame', u'stonefruit', u'product'] [u'welfar', u'group', u'highlight', u'port', u'lincoln', u'poverti'] [u'wenger', u'rule', u'real'] [u'wheatbelt', u'farmer', u'feel', u'frost', u'effect'] [u'wheat', u'kickback', u'claim', u'outrag', u'downer'] [u'wmds', u'terrorist', u'hand'] [u'woodsid', u'sell', u'north', u'asian', u'custom'] [u'wood', u'vote', u'player', u'year', u'seventh', u'time'] [u'yachti', u'use', u'newcastl', u'savvi', u'sydney', u'hobart'] [u'zimbabw', u'refus', u'offer', u'homeless', u'shelter'] [u'zoo', u'condit', u'approv', u'eleph'] [u'special', u'number', u'statist', u'bureau'] [u'aceh', u'tsunami', u'recoveri', u'year'] [u'accus', u'delay', u'cross', u'border', u'water'] [u'agforc', u'criticis', u'artesian', u'basin', u'water', u'plan'] [u'marshal', u'kill', u'american', u'airlin', u'passeng'] [u'allenbi', u'take', u'earli', u'lead', u'huntingdal'] [u'call', u'releas', u'abort', u'drug', u'research'] [u'challeng', u'minist', u'bird', u'hospit', u'claim'] [u'chairman', u'fall', u'victim', u'kiwi', u'anger'] [u'miner', u'miss', u'blast'] [u'aust', u'employ', u'rat', u'